Searched refs:target_sp (Results 51 - 75 of 78) sorted by relevance

1234

/freebsd-10.2-release/contrib/llvm/tools/lldb/source/Target/
H A DThreadPlanCallFunction.cpp260 TargetSP target_sp (m_thread.CalculateTarget());
261 s->Printf("Thread plan to call 0x%" PRIx64, m_function_addr.GetLoadAddress(target_sp.get()));
H A DThreadPlanStepOut.cpp428 inlined_sc.target_sp = GetTarget().shared_from_this();
H A DThread.cpp1589 TargetSP target_sp; local
1592 target_sp = process_sp->CalculateTarget();
1593 return target_sp;
1784 TargetSP target_sp = exe_ctx.GetTargetSP(); local
1791 target->GetImages().FindAddressesForLine (target_sp, file, line, sc.function, within_function, outside_function);
H A DTarget.cpp1842 // the "target_sp" member of SymbolContext. This accessor helper function
1847 target = sc_ptr->target_sp.get();
2450 Target::StopHook::StopHook (lldb::TargetSP target_sp, lldb::user_id_t uid) : argument
2452 m_target_sp (target_sp),
3132 TargetSP target_sp; local
3136 target_sp = data->m_target_sp;
3138 return target_sp;
/freebsd-10.2-release/contrib/llvm/tools/lldb/source/Core/
H A DDisassembler.cpp84 Disassembler::FindPluginForTarget(const TargetSP target_sp, const ArchSpec &arch, const char *flavor, const char *plugin_name) argument
86 if (target_sp && flavor == NULL)
92 flavor = target_sp->GetDisassemblyFlavor();
416 TargetSP target_sp (exe_ctx.GetTargetSP());
417 SourceManager &source_manager = target_sp ? target_sp->GetSourceManager() : debugger.GetSourceManager();
H A DValueObject.cpp2264 TargetSP target_sp(GetTargetSP());
2265 if (target_sp && target_sp->GetEnableSyntheticValue() == false)
3654 TargetSP target_sp (exe_ctx.GetTargetSP());
3655 if (target_sp)
3657 m_exe_ctx_ref.SetTargetSP (target_sp);
3660 process_sp = target_sp->GetProcessSP();
3837 lldb::TargetSP target_sp(exe_ctx.GetTargetSP());
3838 if (!target_sp)
3842 target_sp
[all...]
H A DModuleList.cpp667 ModuleList::FindAddressesForLine (const lldb::TargetSP target_sp, argument
676 (*pos)->FindAddressesForLine(target_sp, file, line, function, output_local, output_extern);
H A DModule.cpp832 Module::FindAddressesForLine (const lldb::TargetSP target_sp, argument
837 SearchFilterByModule filter(target_sp, m_file);
/freebsd-10.2-release/contrib/llvm/tools/lldb/source/Plugins/ABI/MacOSX-arm/
H A DABIMacOSX_arm.cpp252 TargetSP target_sp (thread.CalculateTarget());
258 so_addr.SetLoadAddress (return_addr, target_sp.get());
259 return_addr = so_addr.GetCallableLoadAddress (target_sp.get());
271 so_addr.SetLoadAddress (function_addr, target_sp.get());
272 function_addr = so_addr.GetCallableLoadAddress (target_sp.get());
/freebsd-10.2-release/contrib/llvm/tools/lldb/source/Symbol/
H A DVariable.cpp224 TargetSP target_sp (frame->CalculateTarget());
226 addr_t loclist_base_load_addr = function->GetAddressRange().GetBaseAddress().GetLoadAddress (target_sp.get());
233 frame->GetFrameCodeAddress().GetLoadAddress (target_sp.get()));
H A DUnwindPlan.cpp442 TargetSP target_sp(thread->CalculateTarget());
443 m_plan_valid_address_range.Dump (&s, target_sp.get(), Address::DumpStyleSectionNameOffset);
/freebsd-10.2-release/contrib/llvm/tools/lldb/include/lldb/API/
H A DSBTarget.h251 SBTarget (const lldb::TargetSP& target_sp);
873 SetSP (const lldb::TargetSP& target_sp);
/freebsd-10.2-release/contrib/llvm/tools/lldb/include/lldb/Core/
H A DDisassembler.h269 FindPluginForTarget(const lldb::TargetSP target_sp, const ArchSpec &arch, const char *flavor, const char *plugin_name);
H A DModuleList.h447 /// @param[in] target_sp
465 void FindAddressesForLine (const lldb::TargetSP target_sp,
H A DModule.h361 /// @param[in] target_sp
379 void FindAddressesForLine (const lldb::TargetSP target_sp,
/freebsd-10.2-release/contrib/llvm/tools/lldb/include/lldb/Expression/
H A DIRExecutionUnit.h72 const lldb::TargetSP &target_sp,
/freebsd-10.2-release/contrib/llvm/tools/lldb/source/API/
H A DSBModule.cpp496 TargetSP target_sp (target.GetSP());
497 valobj_sp = ValueObjectVariable::Create (target_sp.get(), variable_list.GetVariableAtIndex(i));
H A DSBProcess.cpp312 TargetSP target_sp; local
316 target_sp = process_sp->GetTarget().shared_from_this();
317 sb_target.SetSP (target_sp);
321 log->Printf ("SBProcess(%p)::GetTarget () => SBTarget(%p)", process_sp.get(), target_sp.get());
/freebsd-10.2-release/contrib/llvm/tools/lldb/source/Expression/
H A DIRExecutionUnit.cpp31 const lldb::TargetSP &target_sp,
33 IRMemoryMap(target_sp),
28 IRExecutionUnit(std::unique_ptr<llvm::LLVMContext> &context_ap, std::unique_ptr<llvm::Module> &module_ap, ConstString &name, const lldb::TargetSP &target_sp, std::vector<std::string> &cpu_features) argument
H A DClangExpressionDeclMap.cpp94 m_parser_vars->m_sym_ctx.target_sp = exe_ctx.GetTargetSP();
99 m_parser_vars->m_sym_ctx.target_sp = exe_ctx.GetTargetSP();
504 if (!sc_list.GetSize() && sym_ctx.target_sp)
505 sym_ctx.target_sp->GetImages().FindSymbolsWithNameAndType(name, eSymbolTypeAny, temp_sc_list);
544 if (!m_parser_vars->m_sym_ctx.target_sp)
/freebsd-10.2-release/contrib/llvm/tools/lldb/include/lldb/Interpreter/
H A DScriptInterpreter.h151 const lldb::TargetSP& target_sp);
/freebsd-10.2-release/contrib/llvm/tools/lldb/source/Interpreter/
H A DOptions.cpp961 lldb::TargetSP target_sp = m_interpreter.GetDebugger().GetSelectedTarget(); local
963 if (target_sp)
964 filter_ap.reset (new SearchFilterByModule (target_sp, module_spec));
H A DScriptInterpreterPython.cpp1619 TargetSP target_sp(target->shared_from_this());
1620 reply_pyobj = (PyObject*)g_swig_plugin_get(plugin_module_sp->GetObject(),setting_name,target_sp);
2150 TargetSP target_sp(target->shared_from_this());
2152 ret_val = g_swig_run_script_keyword_target (impl_function, m_dictionary_name.c_str(), target_sp, output);
H A DCommandInterpreter.cpp2951 TargetSP target_sp (m_debugger.GetTargetList().GetSelectedTarget());
2952 if (target_sp)
2954 ProcessSP process_sp (target_sp->GetProcessSP());
/freebsd-10.2-release/contrib/llvm/tools/lldb/include/lldb/Target/
H A DTarget.h1182 StopHook (lldb::TargetSP target_sp, lldb::user_id_t uid);

Completed in 190 milliseconds

1234