/external/llvm/include/llvm/ExecutionEngine/Orc/ |
D | JITSymbol.h | 52 JITSymbol(GetAddressFtor GetAddress, JITSymbolFlags Flags) in JITSymbol() argument 53 : JITSymbolBase(Flags), GetAddress(std::move(GetAddress)), CachedAddr(0) {} in JITSymbol() 56 explicit operator bool() const { return CachedAddr || GetAddress; } 61 if (GetAddress) { in getAddress() 62 CachedAddr = GetAddress(); in getAddress() 64 GetAddress = nullptr; in getAddress() 70 GetAddressFtor GetAddress;
|
D | ObjectLinkingLayer.h | 244 auto GetAddress = in findSymbolIn() 253 return JITSymbol(std::move(GetAddress), Flags); in findSymbolIn()
|
/external/lldb/scripts/Python/interface/ |
D | SBInstruction.i | 31 GetAddress(); 77 return self.GetAddress ().GetFileAddress() 90 __swig_getmethods__["addr"] = GetAddress 91 …if _newclass: addr = property(GetAddress, None, doc='''A read only property that returns an lldb o…
|
D | SBValue.i | 404 GetAddress(); 448 __swig_getmethods__["addr"] = GetAddress 449 …if _newclass: addr = property(GetAddress, None, doc='''A read only property that returns an lldb.S…
|
D | SBBreakpointLocation.i | 39 GetAddress();
|
/external/lldb/source/API/ |
D | SBSymbol.cpp | 138 ModuleSP module_sp (m_opaque_ptr->GetAddress().GetModule()); in GetInstructions() 141 AddressRange symbol_range (m_opaque_ptr->GetAddress(), m_opaque_ptr->GetByteSize()); in GetInstructions() 171 addr.SetAddress (&m_opaque_ptr->GetAddress()); in GetStartAddress() 185 addr.SetAddress (&m_opaque_ptr->GetAddress()); in GetEndAddress()
|
D | SBInstruction.cpp | 64 SBInstruction::GetAddress() in GetAddress() function in SBInstruction 67 if (m_opaque_sp && m_opaque_sp->GetAddress().IsValid()) in GetAddress() 68 sb_addr.SetAddress(&m_opaque_sp->GetAddress()); in GetAddress()
|
D | SBBreakpointLocation.cpp | 75 SBBreakpointLocation::GetAddress () in GetAddress() function in SBBreakpointLocation 78 return SBAddress(&m_opaque_sp->GetAddress()); in GetAddress()
|
/external/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/ |
D | AppleObjCTrampolineHandler.cpp | 462 if (!trampoline_symbol->GetAddress().IsValid()) in InitializeVTableSymbols() 465 m_trampoline_header = trampoline_symbol->GetAddress().GetLoadAddress(&target); in InitializeVTableSymbols() 475 if (!changed_symbol->GetAddress().IsValid()) in InitializeVTableSymbols() 478 … lldb::addr_t changed_addr = changed_symbol->GetAddress().GetOpcodeLoadAddress (&target); in InitializeVTableSymbols() 652 m_impl_fn_addr = class_getMethodImplementation->GetAddress().GetOpcodeLoadAddress (target); in AppleObjCTrampolineHandler() 654 …m_impl_stret_fn_addr = class_getMethodImplementation_stret->GetAddress().GetOpcodeLoadAddress (tar… in AppleObjCTrampolineHandler() 656 m_msg_forward_addr = msg_forward->GetAddress().GetOpcodeLoadAddress(target); in AppleObjCTrampolineHandler() 658 m_msg_forward_stret_addr = msg_forward_stret->GetAddress().GetOpcodeLoadAddress(target); in AppleObjCTrampolineHandler() 700 lldb::addr_t sym_addr = msgSend_symbol->GetAddress().GetOpcodeLoadAddress(target); in AppleObjCTrampolineHandler() 742 impl_code_address = sc.symbol->GetAddress(); in SetupDispatchFunction()
|
/external/lldb/test/functionalities/type_completion/ |
D | main.cpp | 18 std::string& GetAddress() { return *m_address; } in GetAddress() function in NameAndAddress 46 …erson " << j << " is named " << guy.GetName() << " and lives at " << guy.GetAddress() << std::endl; in main()
|
/external/lldb/source/Plugins/SymbolFile/DWARF/ |
D | DWARFLocationList.cpp | 78 dw_addr_t start_addr = debug_loc_data.GetAddress(&offset); in Size() 79 dw_addr_t end_addr = debug_loc_data.GetAddress(&offset); in Size()
|
/external/lldb/source/Plugins/SymbolFile/Symtab/ |
D | SymbolFileSymtab.cpp | 217 AddressRange func_range(curr_symbol->GetAddress(), 0); in ParseCompileUnitFunctions() 228 …func_range.SetByteSize(next_symbol->GetAddress().GetOffset() - curr_symbol->GetAddress().GetOffset… in ParseCompileUnitFunctions()
|
/external/lldb/include/lldb/Symbol/ |
D | Symbol.h | 79 GetAddress() in GetAddress() function 90 GetAddress() const in GetAddress() function
|
/external/lldb/source/Expression/ |
D | DWARFExpression.cpp | 318 …case DW_OP_addr: *s << "DW_OP_addr(" << m_data.GetAddress(&offset) << ") "; break; // 0… in DumpLocation() 576 s->Printf("DW_OP_call_ref(0x%8.8" PRIx64 ")", m_data.GetAddress(&offset)); in DumpLocation() 673 lldb::addr_t begin_addr_offset = m_data.GetAddress(&offset); in GetDescription() 674 lldb::addr_t end_addr_offset = m_data.GetAddress(&offset); in GetDescription() 1027 const lldb::addr_t op_file_addr = m_data.GetAddress(&offset); in GetLocation_DW_OP_addr() 1113 addr_t lo_pc = m_data.GetAddress(&offset); in LocationListContainsAddress() 1114 addr_t hi_pc = m_data.GetAddress(&offset); in LocationListContainsAddress() 1149 addr_t lo_pc = m_data.GetAddress(&offset); in GetLocation() 1150 addr_t hi_pc = m_data.GetAddress(&offset); in GetLocation() 1256 addr_t lo_pc = m_data.GetAddress(&offset); in Evaluate() [all …]
|
/external/lldb/source/Core/ |
D | AddressResolverName.cpp | 169 … if (sc.function->GetAddressRange().GetBaseAddress() == symbol_sc.symbol->GetAddress()) in SearchCallback() 215 func_addr = sc.symbol->GetAddress(); in SearchCallback()
|
/external/lldb/test/python_api/default-constructor/ |
D | sb_instruction.py | 9 obj.GetAddress()
|
D | sb_breakpointlocation.py | 9 obj.GetAddress()
|
/external/lldb/source/Plugins/ObjectFile/Mach-O/ |
D | ObjectFileMachO.cpp | 794 SectionSP section_sp (symbol->GetAddress().GetSection()); in GetAddressClass() 1024 load_cmd.vmaddr = m_data.GetAddress(&offset); in CreateSections() 1025 load_cmd.vmsize = m_data.GetAddress(&offset); in CreateSections() 1026 load_cmd.fileoff = m_data.GetAddress(&offset); in CreateSections() 1027 load_cmd.filesize = m_data.GetAddress(&offset); in CreateSections() 1119 sect64.addr = m_data.GetAddress(&offset); in CreateSections() 1120 sect64.size = m_data.GetAddress(&offset); in CreateSections() 2659 … sym[GSYM_sym_idx].GetAddress().SetSection (symbol_section); in ParseSymtab() 2660 … sym[GSYM_sym_idx].GetAddress().SetOffset (symbol_value); in ParseSymtab() 2673 … sym[sym_idx].GetAddress().SetSection (symbol_section); in ParseSymtab() [all …]
|
/external/lldb/source/Symbol/ |
D | Symbol.cpp | 419 sc->module_sp = GetAddress().GetModule(); in CalculateSymbolContext() 428 return GetAddress().GetModule(); in CalculateSymbolContextModule() 444 ModuleSP module_sp (GetAddress().GetModule()); in DumpSymbolContext()
|
/external/lldb/test/expression_command/issue_11588/ |
D | s11588.py | 5 self.addr = valobj.GetAddress()
|
/external/lldb/source/Plugins/UnwindAssembly/InstEmulation/ |
D | UnwindAssemblyInstEmulation.cpp | 96 const addr_t base_addr = inst->GetAddress().GetFileAddress(); in GetNonCallSiteUnwindPlanFromAssembly() 152 inst->GetAddress(), in GetNonCallSiteUnwindPlanFromAssembly() 161 …m_curr_row->SetOffset (inst->GetAddress().GetFileAddress() + inst->GetOpcode().GetByteSize() - bas… in GetNonCallSiteUnwindPlanFromAssembly() 231 …m_curr_row->SetOffset (inst->GetAddress().GetFileAddress() + inst->GetOpcode().GetByteSize() - bas… in GetNonCallSiteUnwindPlanFromAssembly()
|
/external/lldb/include/lldb/API/ |
D | SBInstruction.h | 40 GetAddress();
|
D | SBBreakpointLocation.h | 38 GetAddress ();
|
/external/lldb/source/Commands/ |
D | CommandObjectDisassemble.cpp | 404 range.GetBaseAddress() = symbol->GetAddress(); in DoExecute() 492 range.GetBaseAddress() = sc.symbol->GetAddress(); in DoExecute() 536 range.GetBaseAddress() = sc.symbol->GetAddress(); in DoExecute()
|
/external/lldb/test/functionalities/fat_archives/ |
D | TestFatArchives.py | 51 bp_loc_addr = bp_loc.GetAddress()
|