| /llvm-project-15.0.7/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-15.0.7/lldb/source/Plugins/Process/elf-core/ |
| H A D | ThreadElfCore.cpp | 282 pr_sigpend = data.GetAddress(&offset); in Parse() 283 pr_sighold = data.GetAddress(&offset); in Parse() 290 pr_utime.tv_sec = data.GetAddress(&offset); in Parse() 291 pr_utime.tv_usec = data.GetAddress(&offset); in Parse() 293 pr_stime.tv_sec = data.GetAddress(&offset); in Parse() 294 pr_stime.tv_usec = data.GetAddress(&offset); in Parse() 296 pr_cutime.tv_sec = data.GetAddress(&offset); in Parse() 297 pr_cutime.tv_usec = data.GetAddress(&offset); in Parse() 299 pr_cstime.tv_sec = data.GetAddress(&offset); in Parse() 300 pr_cstime.tv_usec = data.GetAddress(&offset); in Parse() [all …]
|
| /llvm-project-15.0.7/lldb/source/Breakpoint/ |
| H A D | BreakpointLocationList.cpp | 87 SectionSP section_sp(break_loc->GetAddress().GetSection()); in FindInModule() 229 m_address_to_location.erase(to_location_sp->GetAddress()); in SwapLocation() 232 m_address_to_location[to_location_sp->GetAddress()] = to_location_sp; in SwapLocation() 241 m_address_to_location.erase(bp_loc_sp->GetAddress()); in RemoveLocation() 256 m_address_to_location.erase(m_locations[idx]->GetAddress()); in RemoveLocationByIndex() 267 if (bp_loc->GetAddress().SectionWasDeleted()) { in RemoveInvalidLocations() 274 ModuleSP module_sp(bp_loc->GetAddress().GetModule()); in RemoveInvalidLocations()
|
| /llvm-project-15.0.7/lldb/bindings/interface/ |
| H A D | SBInstruction.i | 35 GetAddress(); 91 return self.GetAddress ().GetFileAddress() 98 …addr = property(GetAddress, None, doc='''A read only property that returns an lldb object that rep…
|
| H A D | SBQueueItem.i | 38 GetAddress () const;
|
| /llvm-project-15.0.7/lldb/unittests/ObjectFile/ELF/ |
| H A D | TestObjectFileELF.cpp | 108 EXPECT_EQ(bss_sp, X->GetAddress().GetSection()); in TEST_F() 113 EXPECT_EQ(data_sp, Y->GetAddress().GetSection()); in TEST_F() 118 EXPECT_EQ(text_sp, start->GetAddress().GetSection()); in TEST_F()
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/breakpoint/objc/ |
| H A D | TestObjCBreakpoints.py | 43 function_name = bp_loc.GetAddress().GetSymbol().GetName() 94 function_name = bp_loc.GetAddress().GetSymbol().GetName() 114 function_name = bp_loc.GetAddress().GetSymbol().GetName()
|
| /llvm-project-15.0.7/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() 235 const Address &addr = inst_sp->GetAddress(); in GetDescription() 271 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() 160 const Address &addr = inst->GetAddress(); in GetDescription()
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/breakpoint/breakpoint_by_line_and_column/ |
| H A D | TestBreakpointByLineAndColumn.py | 26 b_loc = breakpoint.GetLocationAtIndex(i).GetAddress().GetLineEntry() 43 b_loc = breakpoint.GetLocationAtIndex(i).GetAddress().GetLineEntry() 97 bpkt_loc_addr = bpkt_loc.GetAddress()
|
| /llvm-project-15.0.7/lldb/test/API/lang/cpp/namespace/ |
| H A D | TestNamespace.py | 40 name = bp_loc.GetAddress().GetFunction().GetName() 67 name = bp_loc.GetAddress().GetFunction().GetName() 92 name = bp_loc.GetAddress().GetFunction().GetName()
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/breakpoint/breakpoint_in_delayslot/ |
| H A D | TestAvoidBreakpointInDelaySlot.py | 55 branchinstaddress = inst.GetAddress().GetLoadAddress(target) 59 delayinstaddr = delayinst.GetAddress().GetLoadAddress(target)
|
| /llvm-project-15.0.7/lldb/source/Plugins/Process/Utility/ |
| H A D | AuxVector.cpp | 21 const uint64_t type = data.GetAddress(&offset); in ParseAuxv() 22 const uint64_t value = data.GetAddress(&offset); in ParseAuxv()
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/breakpoint/cpp/ |
| H A D | TestCPPBreakpointLocations.py | 33 bp_loc_names.append(bp_loc.GetAddress().GetFunction().GetName()) 88 bp_loc_names = {bp_loc.GetAddress().GetFunction().GetName()
|
| /llvm-project-15.0.7/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-15.0.7/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/ |
| H A D | AppleObjCTrampolineHandler.cpp | 221 m_next_region = data.GetAddress(&offset); in SetUpRegion() 381 const Address changed_symbol_addr = changed_symbol->GetAddress(); in InitializeVTableSymbols() 446 lldb::addr_t region_addr = data.GetAddress(&offset); in RefreshTrampolines() 607 class_getMethodImplementation->GetAddress().GetOpcodeLoadAddress( in AppleObjCTrampolineHandler() 611 class_getMethodImplementation_stret->GetAddress().GetOpcodeLoadAddress( in AppleObjCTrampolineHandler() 614 m_msg_forward_addr = msg_forward->GetAddress().GetOpcodeLoadAddress(target); in AppleObjCTrampolineHandler() 617 msg_forward_stret->GetAddress().GetOpcodeLoadAddress(target); in AppleObjCTrampolineHandler()
|
| /llvm-project-15.0.7/lldb/source/Plugins/JITLoader/GDB/ |
| H A D | JITLoaderGDB.cpp | 136 entry->next_entry = extractor.GetAddress(&offset); in ReadJITEntry() 137 entry->prev_entry = extractor.GetAddress(&offset); in ReadJITEntry() 138 entry->symfile_addr = extractor.GetAddress(&offset); in ReadJITEntry() 458 const Address jit_descriptor_addr = sym_ctx.symbol->GetAddress(); in GetSymbolAddress()
|
| /llvm-project-15.0.7/lldb/test/API/python_api/sbdata/ |
| H A D | TestSBData.py | 28 addr = data.GetAddress(error, 0) 31 addr = data.GetAddress(error, 0) 34 addr = data.GetAddress(error, 0) 37 addr = data.GetAddress(error, 0) 48 addr = data.GetAddress(error, 0)
|
| /llvm-project-15.0.7/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-15.0.7/lldb/test/API/functionalities/breakpoint/step_over_breakpoint/ |
| H A D | TestStepOverBreakpoint.py | 60 addr_1 = self.breakpoint1.GetLocationAtIndex(0).GetAddress() 61 addr_4 = self.breakpoint4.GetLocationAtIndex(0).GetAddress()
|
| /llvm-project-15.0.7/lldb/test/API/python_api/default-constructor/ |
| H A D | sb_instruction.py | 9 obj.GetAddress()
|
| /llvm-project-15.0.7/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/ |
| H A D | DynamicLoaderMacOSXDYLD.cpp | 491 m_dyld_all_image_infos.dylib_info_addr = data.GetAddress(&offset); in ReadAllImageInfosStructure() 492 m_dyld_all_image_infos.notification = data.GetAddress(&offset); in ReadAllImageInfosStructure() 498 m_dyld_all_image_infos.dyldImageLoadAddress = data.GetAddress(&offset); in ReadAllImageInfosStructure() 501 uint64_t dyld_all_image_infos_addr = data.GetAddress(&offset); in ReadAllImageInfosStructure() 684 image_infos[i].address = info_data_ref.GetAddress(&info_data_offset); in ReadImageInfos() 685 lldb::addr_t path_addr = info_data_ref.GetAddress(&info_data_offset); in ReadImageInfos() 686 image_infos[i].mod_date = info_data_ref.GetAddress(&info_data_offset); in ReadImageInfos()
|
| /llvm-project-15.0.7/lldb/source/Plugins/SystemRuntime/MacOSX/ |
| H A D | SystemRuntimeMacOSX.cpp | 800 item.item_ref = extractor.GetAddress(&offset); in GetPendingItemRefsForQueue() 801 item.code_address = extractor.GetAddress(&offset); in GetPendingItemRefsForQueue() 811 item.item_ref = extractor.GetAddress(&offset); in GetPendingItemRefsForQueue() 918 addr_t queue = extractor.GetAddress(&offset); in PopulateQueuesUsingLibBTR() 959 item.item_that_enqueued_this = extractor.GetAddress(&offset); in ExtractItemInfoFromBuffer() 960 item.function_or_block = extractor.GetAddress(&offset); in ExtractItemInfoFromBuffer() 970 item.enqueuing_callstack.push_back(extractor.GetAddress(&offset)); in ExtractItemInfoFromBuffer()
|
| /llvm-project-15.0.7/lldb/include/lldb/API/ |
| H A D | SBQueueItem.h | 35 lldb::SBAddress GetAddress() const;
|