/llvm-project/llvm/include/llvm/ExecutionEngine/ |
H A D | JITSymbol.h | 296 JITSymbol(GetAddressFtor GetAddress, JITSymbolFlags Flags) in JITSymbol() argument 297 : GetAddress(std::move(GetAddress)), CachedAddr(0), Flags(Flags) {} in JITSymbol() 303 : GetAddress(std::move(Other.GetAddress)), Flags(std::move(Other.Flags)) { in JITSymbol() 311 GetAddress = std::move(Other.GetAddress); 329 return !Flags.hasError() && (CachedAddr || GetAddress); 343 if (GetAddress) { in getAddress() 344 if (auto CachedAddrOrErr = GetAddress()) { in getAddress() 345 GetAddress = nullptr; in getAddress() 357 GetAddressFtor GetAddress;
|
/llvm-project/lldb/source/Plugins/Process/elf-core/ |
H A D | ThreadElfCore.cpp | 319 pr_sigpend = data.GetAddress(&offset); in Parse() 320 pr_sighold = data.GetAddress(&offset); 327 pr_utime.tv_sec = data.GetAddress(&offset); in GetSize() 328 pr_utime.tv_usec = data.GetAddress(&offset); in GetSize() 330 pr_stime.tv_sec = data.GetAddress(&offset); in GetSize() 331 pr_stime.tv_usec = data.GetAddress(&offset); in GetSize() 333 pr_cutime.tv_sec = data.GetAddress(&offset); in GetSize() 334 pr_cutime.tv_usec = data.GetAddress(&offset); in GetSize() 336 pr_cstime.tv_sec = data.GetAddress(&offset); in GetSize() 337 pr_cstime.tv_usec = data.GetAddress( in GetSize() [all...] |
/llvm-project/lldb/bindings/interface/ |
H A D | SBInstructionExtensions.i | 8 return self.GetAddress() 21 return self.GetAddress ().GetFileAddress() 28 …addr = property(GetAddress, None, doc='''A read only property that returns an lldb object that rep…
|
H A D | SBQueueItemExtensions.i | 5 return self.GetAddress()
|
/llvm-project/lldb/source/Breakpoint/ |
H A D | BreakpointLocationList.cpp | 87 SectionSP section_sp(break_loc->GetAddress().GetSection()); in FindInModule() 234 m_address_to_location.erase(to_location_sp->GetAddress()); in SwapLocation() 237 m_address_to_location[to_location_sp->GetAddress()] = to_location_sp; in SwapLocation() 246 m_address_to_location.erase(bp_loc_sp->GetAddress()); in RemoveLocation() 261 m_address_to_location.erase(m_locations[idx]->GetAddress()); in RemoveLocationByIndex() 272 if (bp_loc->GetAddress().SectionWasDeleted()) { in RemoveInvalidLocations() 279 ModuleSP module_sp(bp_loc->GetAddress().GetModule()); in RemoveInvalidLocations()
|
/llvm-project/lldb/test/API/python_api/address_range/ |
H A D | TestAddressRange.py | 31 self.addr1 = self.bp1.GetLocationAtIndex(0).GetAddress() 32 self.addr2 = self.bp2.GetLocationAtIndex(0).GetAddress() 33 self.addr3 = self.bp3.GetLocationAtIndex(0).GetAddress() 66 loc_addr = loc.GetAddress() 84 loc_addr = loc.GetAddress() 207 loc_addr = loc.GetAddress()
|
/llvm-project/lldb/test/API/functionalities/breakpoint/objc/ |
H A D | TestObjCBreakpoints.py | 44 function_name = bp_loc.GetAddress().GetSymbol().GetName() 111 function_name = bp_loc.GetAddress().GetSymbol().GetName() 136 function_name = bp_loc.GetAddress().GetSymbol().GetName()
|
/llvm-project/lldb/source/API/ |
H A D | SBInstruction.cpp | 100 SBAddress SBInstruction::GetAddress() { in GetAddress() function in SBInstruction 105 if (inst_sp && inst_sp->GetAddress().IsValid()) in GetAddress() 106 sb_addr.SetAddress(inst_sp->GetAddress()); in GetAddress() 254 const Address &addr = inst_sp->GetAddress(); in GetDescription() 290 const Address &addr = inst_sp->GetAddress(); in Print()
|
H A D | SBQueueItem.cpp | 74 SBAddress SBQueueItem::GetAddress() const { in GetAddress() function in SBQueueItem 79 result.SetAddress(m_queue_item_sp->GetAddress()); in GetAddress()
|
H A D | SBInstructionList.cpp | 83 addr = GetInstructionAtIndex(i).GetAddress(); in GetInstructionsCount() 164 const Address &addr = inst->GetAddress(); in GetDescription()
|
/llvm-project/lldb/unittests/ObjectFile/ELF/ |
H A D | TestObjectFileELF.cpp | 107 EXPECT_EQ(bss_sp, X->GetAddress().GetSection()); in TEST_F() 112 EXPECT_EQ(data_sp, Y->GetAddress().GetSection()); in TEST_F() 117 EXPECT_EQ(text_sp, start->GetAddress().GetSection()); in TEST_F()
|
/llvm-project/lldb/test/API/functionalities/breakpoint/breakpoint_by_line_and_column/ |
H A D | TestBreakpointByLineAndColumn.py | 25 b_loc = breakpoint.GetLocationAtIndex(i).GetAddress().GetLineEntry() 42 b_loc = breakpoint.GetLocationAtIndex(i).GetAddress().GetLineEntry() 99 bpkt_loc_addr = bpkt_loc.GetAddress()
|
/llvm-project/lldb/test/API/functionalities/unwind/zeroth_frame/ |
H A D | TestZerothFrame.py | 64 bp1.GetLocationAtIndex(0).GetAddress().GetLineEntry().GetLine(), 80 bp2.GetLocationAtIndex(0).GetAddress().GetLineEntry().GetLine(),
|
/llvm-project/lldb/test/API/lang/cpp/namespace/ |
H A D | TestNamespace.py | 34 name = bp_loc.GetAddress().GetFunction().GetName() 64 name = bp_loc.GetAddress().GetFunction().GetName() 92 name = bp_loc.GetAddress().GetFunction().GetName()
|
/llvm-project/lldb/test/API/functionalities/breakpoint/breakpoint_in_delayslot/ |
H A D | TestAvoidBreakpointInDelaySlot.py | 49 branchinstaddress = inst.GetAddress().GetLoadAddress(target) 53 delayinstaddr = delayinst.GetAddress().GetLoadAddress(target)
|
/llvm-project/lldb/tools/intel-features/intel-mpx/ |
H A D | cli-wrapper-mpxtable.cpp | 128 lldb::addr_t bd_entry = data.GetAddress(error, 0); in GetBTEntryAddr() 184 lbound = data.GetAddress(error, size * 0); in GetBTEntry() 185 ubound = data.GetAddress(error, size * 1); in GetBTEntry() 186 value = data.GetAddress(error, size * 2); in GetBTEntry() 187 meta = data.GetAddress(error, size * 3); in GetBTEntry()
|
/llvm-project/lldb/source/Plugins/Process/Utility/ |
H A D | AuxVector.cpp | 22 const uint64_t type = data.GetAddress(&offset); in ParseAuxv() 23 const uint64_t value = data.GetAddress(&offset); in ParseAuxv()
|
/llvm-project/lldb/test/API/functionalities/breakpoint/cpp/ |
H A D | TestCPPBreakpointLocations.py | 40 bp_loc_names.append(bp_loc.GetAddress().GetFunction().GetName()) 158 bp_loc.GetAddress().GetFunction().GetName() for bp_loc in bp
|
/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/ |
H A D | AppleObjCTrampolineHandler.cpp | 220 m_next_region = data.GetAddress(&offset); in SetUpRegion() 380 const Address changed_symbol_addr = changed_symbol->GetAddress(); in InitializeVTableSymbols() 445 lldb::addr_t region_addr = data.GetAddress(&offset); in RefreshTrampolines() 606 class_getMethodImplementation->GetAddress().GetOpcodeLoadAddress( in AppleObjCTrampolineHandler() 610 class_getMethodImplementation_stret->GetAddress().GetOpcodeLoadAddress( in AppleObjCTrampolineHandler() 613 m_msg_forward_addr = msg_forward->GetAddress().GetOpcodeLoadAddress(target); in AppleObjCTrampolineHandler() 616 msg_forward_stret->GetAddress().GetOpcodeLoadAddress(target); in AppleObjCTrampolineHandler()
|
/llvm-project/lldb/source/Plugins/JITLoader/GDB/ |
H A D | JITLoaderGDB.cpp | 137 entry->next_entry = extractor.GetAddress(&offset); in ReadJITEntry() 138 entry->prev_entry = extractor.GetAddress(&offset); in ReadJITEntry() 139 entry->symfile_addr = extractor.GetAddress(&offset); in ReadJITEntry() 456 const Address jit_descriptor_addr = sym_ctx.symbol->GetAddress(); in GetSymbolAddress()
|
/llvm-project/lldb/test/API/python_api/sbdata/ |
H A D | TestSBData.py | 27 addr = data.GetAddress(error, 0) 30 addr = data.GetAddress(error, 0) 33 addr = data.GetAddress(error, 0) 36 addr = data.GetAddress(error, 0) 47 addr = data.GetAddress(error, 0)
|
/llvm-project/lldb/source/Target/ |
H A D | ThreadPlanShouldStopHere.cpp | 117 Address symbol_end = sc.symbol->GetAddress(); in DefaultStepFromHereCallback() 119 if (range.ContainsFileAddress(sc.symbol->GetAddress()) && in DefaultStepFromHereCallback()
|
/llvm-project/lldb/test/API/functionalities/breakpoint/step_over_breakpoint/ |
H A D | TestStepOverBreakpoint.py | 67 addr_1 = self.breakpoint1.GetLocationAtIndex(0).GetAddress() 68 addr_4 = self.breakpoint4.GetLocationAtIndex(0).GetAddress()
|
/llvm-project/lldb/source/Plugins/SystemRuntime/MacOSX/ |
H A D | SystemRuntimeMacOSX.cpp | 846 item.item_ref = extractor.GetAddress(&offset); in GetPendingItemRefsForQueue() 847 item.code_address = extractor.GetAddress(&offset); in GetPendingItemRefsForQueue() 857 item.item_ref = extractor.GetAddress(&offset); in GetPendingItemRefsForQueue() 964 addr_t queue = extractor.GetAddress(&offset); in PopulateQueuesUsingLibBTR() 1005 item.item_that_enqueued_this = extractor.GetAddress(&offset); in ExtractItemInfoFromBuffer() 1006 item.function_or_block = extractor.GetAddress(&offset); in ExtractItemInfoFromBuffer() 1016 item.enqueuing_callstack.push_back(extractor.GetAddress(&offset)); in ExtractItemInfoFromBuffer()
|
/llvm-project/lldb/source/Plugins/DynamicLoader/FreeBSD-Kernel/ |
H A D | DynamicLoaderFreeBSDKernel.cpp | 603 kld_off_address_symbol->GetAddress().GetLoadAddress( in ReadAllKmods() 609 kld_off_next_symbol->GetAddress().GetLoadAddress(&m_process->GetTarget()), in ReadAllKmods() 614 kld_off_filename_symbol->GetAddress().GetLoadAddress( in ReadAllKmods() 621 kld_off_pathname_symbol->GetAddress().GetLoadAddress( in ReadAllKmods() 737 m_linker_file_list_struct_addr = symbol->GetAddress(); in LoadKernelModules()
|