| /freebsd-13.1/contrib/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;
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Process/elf-core/ |
| H A D | ThreadElfCore.cpp | 289 pr_sigpend = data.GetAddress(&offset); in Parse() 290 pr_sighold = data.GetAddress(&offset); in Parse() 297 pr_utime.tv_sec = data.GetAddress(&offset); in Parse() 298 pr_utime.tv_usec = data.GetAddress(&offset); in Parse() 300 pr_stime.tv_sec = data.GetAddress(&offset); in Parse() 301 pr_stime.tv_usec = data.GetAddress(&offset); in Parse() 303 pr_cutime.tv_sec = data.GetAddress(&offset); in Parse() 304 pr_cutime.tv_usec = data.GetAddress(&offset); in Parse() 306 pr_cstime.tv_sec = data.GetAddress(&offset); in Parse() 307 pr_cstime.tv_usec = data.GetAddress(&offset); in Parse() [all …]
|
| H A D | ProcessElfCore.cpp | 866 const uint64_t count = note.data.GetAddress(&offset); in parseLinuxNotes() 867 note.data.GetAddress(&offset); // Skip page size in parseLinuxNotes() 870 entry.start = note.data.GetAddress(&offset); in parseLinuxNotes() 871 entry.end = note.data.GetAddress(&offset); in parseLinuxNotes() 872 entry.file_ofs = note.data.GetAddress(&offset); in parseLinuxNotes()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/API/ |
| H A D | SBQueueItem.cpp | 78 SBAddress SBQueueItem::GetAddress() const { in GetAddress() function in SBQueueItem 79 LLDB_RECORD_METHOD_CONST_NO_ARGS(lldb::SBAddress, SBQueueItem, GetAddress); in GetAddress() 83 result.SetAddress(m_queue_item_sp->GetAddress()); in GetAddress() 133 LLDB_REGISTER_METHOD_CONST(lldb::SBAddress, SBQueueItem, GetAddress, ()); in RegisterMethods()
|
| H A D | SBInstruction.cpp | 104 SBAddress SBInstruction::GetAddress() { in GetAddress() function in SBInstruction 105 LLDB_RECORD_METHOD_NO_ARGS(lldb::SBAddress, SBInstruction, GetAddress); in GetAddress() 109 if (inst_sp && inst_sp->GetAddress().IsValid()) in GetAddress() 110 sb_addr.SetAddress(inst_sp->GetAddress()); in GetAddress() 244 const Address &addr = inst_sp->GetAddress(); in GetDescription() 279 const Address &addr = inst_sp->GetAddress(); in Print() 357 LLDB_REGISTER_METHOD(lldb::SBAddress, SBInstruction, GetAddress, ()); in RegisterMethods()
|
| H A D | SBBreakpointLocation.cpp | 78 SBAddress SBBreakpointLocation::GetAddress() { in GetAddress() function in SBBreakpointLocation 79 LLDB_RECORD_METHOD_NO_ARGS(lldb::SBAddress, SBBreakpointLocation, GetAddress); in GetAddress() 83 return LLDB_RECORD_RESULT(SBAddress(loc_sp->GetAddress())); in GetAddress() 486 LLDB_REGISTER_METHOD(lldb::SBAddress, SBBreakpointLocation, GetAddress, ()); in RegisterMethods()
|
| H A D | SBInstructionList.cpp | 91 addr = GetInstructionAtIndex(i).GetAddress(); in GetInstructionsCount() 170 const Address &addr = inst->GetAddress(); in GetDescription()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Breakpoint/ |
| H A D | BreakpointLocationList.cpp | 88 SectionSP section_sp(break_loc->GetAddress().GetSection()); in FindInModule() 230 m_address_to_location.erase(to_location_sp->GetAddress()); in SwapLocation() 233 m_address_to_location[to_location_sp->GetAddress()] = to_location_sp; in SwapLocation() 242 m_address_to_location.erase(bp_loc_sp->GetAddress()); in RemoveLocation() 257 m_address_to_location.erase(m_locations[idx]->GetAddress()); in RemoveLocationByIndex() 268 if (bp_loc->GetAddress().SectionWasDeleted()) { in RemoveInvalidLocations() 275 ModuleSP module_sp(bp_loc->GetAddress().GetModule()); in RemoveInvalidLocations()
|
| H A D | Breakpoint.cpp | 520 Address section_addr(break_loc_sp->GetAddress()); in ModulesChanged() 579 SectionSP section_sp(break_loc_sp->GetAddress().GetSection()); in ModulesChanged() 654 SectionSP section_sp = break_loc_sp->GetAddress().GetSection(); in ModuleReplaced() 698 if (old_loc_sp->GetAddress().CalculateSymbolContext(&old_sc) == in ModuleReplaced() 699 new_loc_sp->GetAddress().CalculateSymbolContext(&new_sc)) { in ModuleReplaced() 720 bp_loc_sp->GetAddress().CalculateSymbolContext(&old_sc_map[loc_id]); in ModuleReplaced() 728 bp_loc_sp->GetAddress().CalculateSymbolContext(&new_sc_map[loc_id]); in ModuleReplaced()
|
| /freebsd-13.1/contrib/llvm-project/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;
|
| H A D | SBBreakpointLocation.i | 40 GetAddress();
|
| H A D | SBValue.i | 417 GetAddress(); 495 …addr = property(GetAddress, None, doc='''A read only property that returns an lldb.SBAddress that …
|
| /freebsd-13.1/contrib/llvm-project/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()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/ |
| H A D | AppleObjCTrampolineHandler.cpp | 321 m_next_region = data.GetAddress(&offset); in SetUpRegion() 481 const Address changed_symbol_addr = changed_symbol->GetAddress(); in InitializeVTableSymbols() 546 lldb::addr_t region_addr = data.GetAddress(&offset); in RefreshTrampolines() 707 class_getMethodImplementation->GetAddress().GetOpcodeLoadAddress( in AppleObjCTrampolineHandler() 711 class_getMethodImplementation_stret->GetAddress().GetOpcodeLoadAddress( in AppleObjCTrampolineHandler() 714 m_msg_forward_addr = msg_forward->GetAddress().GetOpcodeLoadAddress(target); in AppleObjCTrampolineHandler() 717 msg_forward_stret->GetAddress().GetOpcodeLoadAddress(target); in AppleObjCTrampolineHandler()
|
| H A D | AppleObjCRuntime.cpp | 255 std::make_unique<Address>(context.symbol->GetAddress()); in GetPrintForDebuggerAddr() 551 auto dict_entry_key = data.GetAddress(&data_offset); in GetBacktraceThreadFromException() 552 auto dict_entry_value = data.GetAddress(&data_offset); in GetBacktraceThreadFromException()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/JITLoader/GDB/ |
| H A D | JITLoaderGDB.cpp | 139 entry->next_entry = extractor.GetAddress(&offset); in ReadJITEntry() 140 entry->prev_entry = extractor.GetAddress(&offset); in ReadJITEntry() 141 entry->symfile_addr = extractor.GetAddress(&offset); in ReadJITEntry() 475 const Address jit_descriptor_addr = sym_ctx.symbol->GetAddress(); in GetSymbolAddress()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Target/ |
| H A D | ThreadPlanShouldStopHere.cpp | 116 Address symbol_end = sc.symbol->GetAddress(); in DefaultStepFromHereCallback() 118 if (range.ContainsFileAddress(sc.symbol->GetAddress()) && in DefaultStepFromHereCallback()
|
| H A D | QueueItem.cpp | 39 Address &QueueItem::GetAddress() { return m_address; } in GetAddress() function in QueueItem
|
| /freebsd-13.1/contrib/llvm-project/lldb/include/lldb/API/ |
| H A D | SBQueueItem.h | 35 lldb::SBAddress GetAddress() const;
|
| H A D | SBInstruction.h | 38 SBAddress GetAddress();
|
| H A D | SBBreakpointLocation.h | 34 lldb::SBAddress GetAddress();
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/UnwindAssembly/InstEmulation/ |
| H A D | UnwindAssemblyInstEmulation.cpp | 106 const lldb::addr_t base_addr = inst->GetAddress().GetFileAddress(); in GetNonCallSiteUnwindPlanFromAssembly() 148 inst->GetAddress().GetFileAddress() - base_addr; in GetNonCallSiteUnwindPlanFromAssembly() 184 inst->GetAddress(), nullptr); in GetNonCallSiteUnwindPlanFromAssembly() 258 range.ContainsFileAddress(inst->GetAddress().GetFileAddress() + in GetNonCallSiteUnwindPlanFromAssembly()
|
| /freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Target/ |
| H A D | QueueItem.h | 62 lldb_private::Address &GetAddress();
|
| /freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Breakpoint/ |
| H A D | BreakpointLocation.h | 49 Address &GetAddress();
|