| /openbsd-src/gnu/llvm/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;
|
| /openbsd-src/gnu/llvm/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 …]
|
| /openbsd-src/gnu/llvm/lldb/source/Breakpoint/ |
| H A D | BreakpointLocationList.cpp | 87 SectionSP section_sp(break_loc->GetAddress().GetSection()); in FindInModule() 235 m_address_to_location.erase(to_location_sp->GetAddress()); in SwapLocation() 238 m_address_to_location[to_location_sp->GetAddress()] = to_location_sp; in SwapLocation() 247 m_address_to_location.erase(bp_loc_sp->GetAddress()); in RemoveLocation() 262 m_address_to_location.erase(m_locations[idx]->GetAddress()); in RemoveLocationByIndex() 273 if (bp_loc->GetAddress().SectionWasDeleted()) { in RemoveInvalidLocations() 280 ModuleSP module_sp(bp_loc->GetAddress().GetModule()); in RemoveInvalidLocations()
|
| H A D | Breakpoint.cpp | 530 Address section_addr(break_loc_sp->GetAddress()); in ModulesChanged() 589 SectionSP section_sp(break_loc_sp->GetAddress().GetSection()); in ModulesChanged() 662 SectionSP section_sp = break_loc_sp->GetAddress().GetSection(); in ModuleReplaced() 706 if (old_loc_sp->GetAddress().CalculateSymbolContext(&old_sc) == in ModuleReplaced() 707 new_loc_sp->GetAddress().CalculateSymbolContext(&new_sc)) { in ModuleReplaced() 728 bp_loc_sp->GetAddress().CalculateSymbolContext(&old_sc_map[loc_id]); in ModuleReplaced() 736 bp_loc_sp->GetAddress().CalculateSymbolContext(&new_sc_map[loc_id]); in ModuleReplaced()
|
| /openbsd-src/gnu/llvm/lldb/bindings/interface/ |
| H A D | SBInstruction.i | 35 GetAddress(); 94 return self.GetAddress ().GetFileAddress() 101 …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();
|
| /openbsd-src/gnu/llvm/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() 160 const Address &addr = inst->GetAddress(); in GetDescription()
|
| /openbsd-src/gnu/llvm/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()
|
| /openbsd-src/gnu/llvm/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()
|
| /openbsd-src/gnu/llvm/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()
|
| H A D | AppleObjCRuntime.cpp | 257 std::make_unique<Address>(context.symbol->GetAddress()); in GetPrintForDebuggerAddr() 552 auto dict_entry_key = data.GetAddress(&data_offset); in GetBacktraceThreadFromException() 553 auto dict_entry_value = data.GetAddress(&data_offset); in GetBacktraceThreadFromException()
|
| /openbsd-src/gnu/llvm/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() 456 const Address jit_descriptor_addr = sym_ctx.symbol->GetAddress(); in GetSymbolAddress()
|
| /openbsd-src/gnu/llvm/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()
|
| H A D | QueueItem.cpp | 39 Address &QueueItem::GetAddress() { return m_address; } in GetAddress() function in QueueItem
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/ |
| H A D | DynamicLoaderMacOSXDYLD.cpp | 501 m_dyld_all_image_infos.dylib_info_addr = data.GetAddress(&offset); in ReadAllImageInfosStructure() 502 m_dyld_all_image_infos.notification = data.GetAddress(&offset); in ReadAllImageInfosStructure() 508 m_dyld_all_image_infos.dyldImageLoadAddress = data.GetAddress(&offset); in ReadAllImageInfosStructure() 511 uint64_t dyld_all_image_infos_addr = data.GetAddress(&offset); in ReadAllImageInfosStructure() 694 image_infos[i].address = info_data_ref.GetAddress(&info_data_offset); in ReadImageInfos() 695 lldb::addr_t path_addr = info_data_ref.GetAddress(&info_data_offset); in ReadImageInfos() 696 image_infos[i].mod_date = info_data_ref.GetAddress(&info_data_offset); in ReadImageInfos()
|
| H A D | DynamicLoaderDarwin.cpp | 926 actual_symbol->GetAddress(); in GetStepThroughTrampolinePlan() 975 Address target_addr(actual_symbol->GetAddress()); in GetStepThroughTrampolinePlan() 997 Address symbol_address = symbol->GetAddress(); in GetStepThroughTrampolinePlan() 1069 m_pthread_getspecific_addr = sc.symbol->GetAddress(); in GetPthreadSetSpecificAddress() 1098 const lldb::addr_t pthread_key = data.GetAddress(&offset); in GetThreadLocalData() 1099 const lldb::addr_t tls_offset = data.GetAddress(&offset); in GetThreadLocalData()
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/SystemRuntime/MacOSX/ |
| H A D | SystemRuntimeMacOSX.cpp | 841 item.item_ref = extractor.GetAddress(&offset); in GetPendingItemRefsForQueue() 842 item.code_address = extractor.GetAddress(&offset); in GetPendingItemRefsForQueue() 852 item.item_ref = extractor.GetAddress(&offset); in GetPendingItemRefsForQueue() 959 addr_t queue = extractor.GetAddress(&offset); in PopulateQueuesUsingLibBTR() 1000 item.item_that_enqueued_this = extractor.GetAddress(&offset); in ExtractItemInfoFromBuffer() 1001 item.function_or_block = extractor.GetAddress(&offset); in ExtractItemInfoFromBuffer() 1011 item.enqueuing_callstack.push_back(extractor.GetAddress(&offset)); in ExtractItemInfoFromBuffer()
|
| /openbsd-src/gnu/llvm/lldb/source/Host/openbsd/ |
| H A D | Host.cpp | 77 arg_addr = data.GetAddress(&offset); in GetOpenBSDProcessArgs() 97 arg_addr = data.GetAddress(&offset); in GetOpenBSDProcessArgs()
|
| /openbsd-src/gnu/llvm/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();
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/UnwindAssembly/InstEmulation/ |
| H A D | UnwindAssemblyInstEmulation.cpp | 106 const lldb::addr_t base_addr = inst->GetAddress().GetFileAddress(); in GetNonCallSiteUnwindPlanFromAssembly() 147 inst->GetAddress().GetFileAddress() - base_addr; in GetNonCallSiteUnwindPlanFromAssembly() 183 inst->GetAddress(), nullptr); in GetNonCallSiteUnwindPlanFromAssembly() 258 range.ContainsFileAddress(inst->GetAddress().GetFileAddress() + in GetNonCallSiteUnwindPlanFromAssembly()
|