Searched refs:target_sp (Results 26 - 50 of 78) sorted by relevance

1234

/freebsd-10.2-release/contrib/llvm/tools/lldb/source/Symbol/
H A DSymbolContext.cpp30 target_sp (),
41 target_sp (),
54 target_sp (t),
67 target_sp (rhs.target_sp),
79 target_sp (),
99 target_sp = rhs.target_sp;
114 target_sp.reset();
312 if (target_sp) resolved_mas
656 SymbolContextSpecifier(const TargetSP &target_sp) argument
[all...]
/freebsd-10.2-release/contrib/llvm/tools/lldb/source/Core/
H A DValueObjectMemory.cpp67 TargetSP target_sp (GetTargetSP());
68 lldb::addr_t load_address = m_address.GetLoadAddress(target_sp.get());
103 TargetSP target_sp (GetTargetSP());
108 lldb::addr_t load_address = m_address.GetLoadAddress (target_sp.get());
H A DDebugger.cpp166 TargetSP target_sp; local
170 target_sp = exe_ctx->GetTargetSP();
171 load_script_old_value = target_sp->TargetProperties::GetLoadScriptFromSymbolFile();
192 else if (is_load_script && target_sp && load_script_old_value == eLoadScriptFromSymFileWarn)
194 if (target_sp->TargetProperties::GetLoadScriptFromSymbolFile() == eLoadScriptFromSymFileTrue)
198 if (!target_sp->LoadScriptingResources(errors,&feedback_stream))
580 TargetSP target_sp; local
588 target_sp = (*pos)->GetTargetList().FindTargetWithProcessID (pid);
589 if (target_sp)
593 return target_sp;
599 TargetSP target_sp; local
2712 TargetSP target_sp = GetTargetList().GetSelectedTarget(); local
2744 TargetSP target_sp = GetTargetList().GetSelectedTarget(); local
[all...]
H A DDataExtractor.cpp1437 TargetSP target_sp; local
1439 target_sp = exe_scope->CalculateTarget();
1440 if (target_sp)
1442 DisassemblerSP disassembler_sp (Disassembler::FindPlugin(target_sp->GetArchitecture(), NULL, NULL));
1448 if (target_sp->GetSectionLoadList().ResolveLoadAddress(addr, so_addr))
1454 if (target_sp->GetSectionLoadList().IsEmpty() || !target_sp->GetImages().ResolveFileAddress(addr, so_addr))
1806 TargetSP target_sp; local
1809 target_sp = exe_scope->CalculateTarget();
1810 if (target_sp)
[all...]
H A DValueObjectDynamicValue.cpp297 lldb::TargetSP target_sp (GetTargetSP());
298 lldb::addr_t load_address = m_address.GetLoadAddress(target_sp.get());
H A DAddress.cpp34 TargetSP target_sp (exe_scope->CalculateTarget());
35 if (target_sp)
39 return target_sp->ReadMemory (address, prefer_file_cache, dst, dst_len, error);
52 TargetSP target_sp (exe_scope->CalculateTarget());
53 if (target_sp)
55 byte_order = target_sp->GetArchitecture().GetByteOrder();
56 addr_size = target_sp->GetArchitecture().GetAddressByteSize();
/freebsd-10.2-release/contrib/llvm/tools/lldb/source/Expression/
H A DClangExpressionParser.cpp201 lldb::TargetSP target_sp; local
203 target_sp = exe_scope->CalculateTarget();
210 if (target_sp && target_sp->GetArchitecture().IsValid())
212 std::string triple = target_sp->GetArchitecture().GetTriple().str();
233 if (target_sp->GetArchitecture().GetMachine() == llvm::Triple::x86 ||
234 target_sp->GetArchitecture().GetMachine() == llvm::Triple::x86_64)
H A DClangUserExpression.cpp340 lldb::TargetSP &target_sp,
351 target_sp = exe_ctx.GetTargetSP();
359 return (0 == Address::CompareLoadAddress(m_address, frame_sp->GetFrameCodeAddress(), target_sp.get()));
368 lldb::TargetSP target_sp; local
372 return LockAndCheckContext(exe_ctx, target_sp, process_sp, frame_sp);
339 LockAndCheckContext(ExecutionContext &exe_ctx, lldb::TargetSP &target_sp, lldb::ProcessSP &process_sp, lldb::StackFrameSP &frame_sp) argument
H A DMaterializer.cpp812 lldb::TargetSP target_sp = exe_scope->CalculateTarget(); local
814 if (!target_sp)
820 ConstString name = target_sp->GetPersistentVariables().GetNextPersistentVariableName();
824 ret = target_sp->GetPersistentVariables().CreateVariable(exe_scope,
1018 lldb::TargetSP target_sp; local
1021 target_sp = map.GetBestExecutionContextScope()->CalculateTarget();
1023 if (!target_sp)
1029 lldb::addr_t resolved_address = sym_address.GetLoadAddress(target_sp.get());
/freebsd-10.2-release/contrib/llvm/tools/lldb/source/DataFormatters/
H A DLibCxx.cpp257 TargetSP target_sp(valobj_sp->GetTargetSP());
259 if (!target_sp)
415 TargetSP target_sp(valobj_sp->GetTargetSP());
416 if (!target_sp)
419 m_byte_order = target_sp->GetArchitecture().GetByteOrder();
420 m_ptr_size = target_sp->GetArchitecture().GetAddressByteSize();
H A DNSDictionary.cpp31 GetLLDBNSPairType (TargetSP target_sp) argument
35 ClangASTContext *target_ast_context = target_sp->GetScratchClangASTContext();
382 TargetSP target_sp(m_backend.GetTargetSP());
383 if (!target_sp)
385 m_pair_type = GetLLDBNSPairType(target_sp);
546 TargetSP target_sp(m_backend.GetTargetSP());
547 if (!target_sp)
549 m_pair_type = GetLLDBNSPairType(target_sp);
H A DLibStdcpp.cpp231 TargetSP target_sp(valobj_sp->GetTargetSP());
233 if (!target_sp)
236 bool is_64bit = (target_sp->GetArchitecture().GetAddressByteSize() == 8);
/freebsd-10.2-release/contrib/llvm/tools/lldb/include/lldb/Expression/
H A DClangExpressionDeclMap.h413 else if (m_sym_ctx.target_sp)
414 m_sym_ctx.target_sp.get();
H A DClangUserExpression.h330 lldb::TargetSP &target_sp,
H A DIRMemoryMap.h40 IRMemoryMap (lldb::TargetSP target_sp);
/freebsd-10.2-release/contrib/llvm/tools/lldb/source/API/
H A DSBBlock.cpp328 TargetSP target_sp(target.GetSP());
363 if (target_sp)
364 value_list.Append (ValueObjectVariable::Create (target_sp.get(), variable_sp));
H A DSBSection.cpp147 TargetSP target_sp(sb_target.GetSP());
148 if (target_sp)
152 return section_sp->GetLoadBaseAddress(target_sp.get());
/freebsd-10.2-release/contrib/llvm/tools/lldb/source/Commands/
H A DCommandCompletions.cpp112 lldb::TargetSP target_sp = interpreter.GetDebugger().GetSelectedTarget(); local
113 SearchFilter null_searcher (target_sp);
384 lldb::TargetSP target_sp = interpreter.GetDebugger().GetSelectedTarget(); local
385 SearchFilter null_searcher (target_sp);
415 lldb::TargetSP target_sp = interpreter.GetDebugger().GetSelectedTarget(); local
416 SearchFilter null_searcher (target_sp);
H A DCommandObjectProcess.cpp1045 TargetSP target_sp (m_interpreter.GetDebugger().GetSelectedTarget());
1059 if (!target_sp)
1068 target_sp);
1069 if (!target_sp || error.Fail())
1075 m_interpreter.GetDebugger().GetTargetList().SetSelectedTarget(target_sp.get());
1085 process = target_sp->CreateProcess (m_interpreter.GetDebugger().GetListener(), plugin_name, NULL).get();
1095 target_sp->DeleteCurrentProcess();
1709 TargetSP target_sp = m_interpreter.GetDebugger().GetSelectedTarget(); local
1711 if (!target_sp)
1719 ProcessSP process_sp = target_sp
[all...]
H A DCommandObjectTarget.cpp131 TargetSP target_sp (target_list.GetTargetAtIndex (i));
132 if (target_sp)
134 bool is_selected = target_sp.get() == selected_target_sp.get();
136 target_sp.get(),
309 TargetSP target_sp; local
318 target_sp));
320 if (target_sp)
324 ModuleSP module_sp (target_sp->GetExecutableModule());
332 target_sp->SetArg0(remote_path.c_str());
338 debugger.GetTargetList().SetSelectedTarget(target_sp
585 TargetSP target_sp; local
[all...]
/freebsd-10.2-release/contrib/llvm/tools/lldb/source/Plugins/OperatingSystem/Python/
H A DOperatingSystemPython.cpp96 TargetSP target_sp = process->CalculateTarget();
97 if (!target_sp)
99 m_interpreter = target_sp->GetDebugger().GetCommandInterpreter().GetScriptInterpreter();
/freebsd-10.2-release/contrib/llvm/tools/lldb/source/Target/
H A DLanguageRuntime.cpp21 ExceptionSearchFilter (const lldb::TargetSP &target_sp, argument
23 SearchFilter (target_sp),
H A DRegisterContext.cpp128 TargetSP target_sp = m_thread.CalculateTarget(); local
129 Target *target = target_sp.get();
/freebsd-10.2-release/contrib/llvm/tools/lldb/include/lldb/Core/
H A DSearchFilter.h104 SearchFilter (const lldb::TargetSP &target_sp);
H A DSourceManager.h126 SourceManager (const lldb::TargetSP &target_sp);

Completed in 292 milliseconds

1234