Home
last modified time | relevance | path

Searched refs:GetAddress (Results 1 – 25 of 66) sorted by relevance

123

/freebsd-12.1/contrib/llvm/include/llvm/ExecutionEngine/
H A DJITSymbol.h269 JITSymbol(GetAddressFtor GetAddress, JITSymbolFlags Flags) in JITSymbol() argument
270 : GetAddress(std::move(GetAddress)), CachedAddr(0), Flags(Flags) {} in JITSymbol()
276 : GetAddress(std::move(Other.GetAddress)), Flags(std::move(Other.Flags)) { in JITSymbol()
284 GetAddress = std::move(Other.GetAddress);
302 return !Flags.hasError() && (CachedAddr || GetAddress);
316 if (GetAddress) { in getAddress()
317 if (auto CachedAddrOrErr = GetAddress()) { in getAddress()
318 GetAddress = nullptr; in getAddress()
330 GetAddressFtor GetAddress;
/freebsd-12.1/contrib/llvm/tools/lldb/source/Breakpoint/
H A DBreakpointLocationList.cpp89 SectionSP section_sp(break_loc->GetAddress().GetSection()); in FindInModule()
231 m_address_to_location.erase(to_location_sp->GetAddress()); in SwapLocation()
234 m_address_to_location[to_location_sp->GetAddress()] = to_location_sp; in SwapLocation()
243 m_address_to_location.erase(bp_loc_sp->GetAddress()); in RemoveLocation()
258 m_address_to_location.erase(m_locations[idx]->GetAddress()); in RemoveLocationByIndex()
269 if (bp_loc->GetAddress().SectionWasDeleted()) { in RemoveInvalidLocations()
276 ModuleSP module_sp(bp_loc->GetAddress().GetModule()); in RemoveInvalidLocations()
H A DBreakpoint.cpp539 Address section_addr(break_loc_sp->GetAddress()); in ModulesChanged()
600 SectionSP section_sp(break_loc_sp->GetAddress().GetSection()); in ModulesChanged()
675 SectionSP section_sp = break_loc_sp->GetAddress().GetSection(); in ModuleReplaced()
719 if (old_loc_sp->GetAddress().CalculateSymbolContext(&old_sc) == in ModuleReplaced()
720 new_loc_sp->GetAddress().CalculateSymbolContext(&new_sc)) { in ModuleReplaced()
741 bp_loc_sp->GetAddress().CalculateSymbolContext(&old_sc_map[loc_id]); in ModuleReplaced()
749 bp_loc_sp->GetAddress().CalculateSymbolContext(&new_sc_map[loc_id]); in ModuleReplaced()
H A DBreakpointResolverName.cpp357 break_addr = actual_symbol->GetAddress(); in SearchCallback()
360 break_addr = sc.symbol->GetAddress(); in SearchCallback()
/freebsd-12.1/contrib/llvm/tools/lldb/source/API/
H A DSBInstruction.cpp86 SBAddress SBInstruction::GetAddress() { in GetAddress() function in SBInstruction
89 if (inst_sp && inst_sp->GetAddress().IsValid()) in GetAddress()
90 sb_addr.SetAddress(&inst_sp->GetAddress()); in GetAddress()
201 const Address &addr = inst_sp->GetAddress(); in GetDescription()
223 const Address &addr = inst_sp->GetAddress(); in Print()
H A DSBQueueItem.cpp78 SBAddress SBQueueItem::GetAddress() const { in GetAddress() function in SBQueueItem
82 result.SetAddress(&m_queue_item_sp->GetAddress()); in GetAddress()
H A DSBInstructionList.cpp63 addr = GetInstructionAtIndex(i).GetAddress(); in GetInstructionsCount()
110 const Address &addr = inst->GetAddress(); in GetDescription()
H A DSBBreakpointLocation.cpp64 SBAddress SBBreakpointLocation::GetAddress() { in GetAddress() function in SBBreakpointLocation
67 return SBAddress(&loc_sp->GetAddress()); in GetAddress()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Target/
H A DThreadPlanShouldStopHere.cpp120 Address symbol_end = sc.symbol->GetAddress(); in DefaultStepFromHereCallback()
122 if (range.ContainsFileAddress(sc.symbol->GetAddress()) && in DefaultStepFromHereCallback()
H A DQueueItem.cpp40 Address &QueueItem::GetAddress() { return m_address; } in GetAddress() function in QueueItem
H A DThreadPlanStepRange.cpp330 run_to_address = last_inst->GetAddress(); in SetNextBranchBreakpoint()
335 instructions->GetInstructionAtIndex(branch_index)->GetAddress(); in SetNextBranchBreakpoint()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/
H A DProcessElfCore.cpp676 const uint64_t count = note.data.GetAddress(&offset); in parseLinuxNotes()
677 note.data.GetAddress(&offset); // Skip page size in parseLinuxNotes()
680 entry.start = note.data.GetAddress(&offset); in parseLinuxNotes()
681 entry.end = note.data.GetAddress(&offset); in parseLinuxNotes()
682 entry.file_ofs = note.data.GetAddress(&offset); in parseLinuxNotes()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCTrampolineHandler.cpp484 const Address changed_symbol_addr = changed_symbol->GetAddress(); in InitializeVTableSymbols()
686 class_getMethodImplementation->GetAddress().GetOpcodeLoadAddress( in AppleObjCTrampolineHandler()
690 class_getMethodImplementation_stret->GetAddress().GetOpcodeLoadAddress( in AppleObjCTrampolineHandler()
693 m_msg_forward_addr = msg_forward->GetAddress().GetOpcodeLoadAddress(target); in AppleObjCTrampolineHandler()
696 msg_forward_stret->GetAddress().GetOpcodeLoadAddress(target); in AppleObjCTrampolineHandler()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/API/
H A DSBQueueItem.h34 lldb::SBAddress GetAddress() const;
H A DSBInstruction.h37 SBAddress GetAddress();
H A DSBBreakpointLocation.h33 lldb::SBAddress GetAddress();
/freebsd-12.1/contrib/llvm/include/llvm/ExecutionEngine/Orc/
H A DLazyEmittingLayer.h58 auto GetAddress = in find()
76 return JITSymbol(std::move(GetAddress), Flags); in find()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/UnwindAssembly/InstEmulation/
H A DUnwindAssemblyInstEmulation.cpp107 const lldb::addr_t base_addr = inst->GetAddress().GetFileAddress(); in GetNonCallSiteUnwindPlanFromAssembly()
155 inst->GetAddress().GetFileAddress() - base_addr; in GetNonCallSiteUnwindPlanFromAssembly()
174 inst->GetAddress(), nullptr); in GetNonCallSiteUnwindPlanFromAssembly()
231 range.ContainsFileAddress(inst->GetAddress().GetFileAddress() + in GetNonCallSiteUnwindPlanFromAssembly()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/
H A DUnwindMacOSXFrameBackchain.cpp128 range.GetBaseAddress() = first_frame_sc.symbol->GetAddress(); in GetStackFrameData_i386()
219 range.GetBaseAddress() = first_frame_sc.symbol->GetAddress(); in GetStackFrameData_x86_64()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Platform/FreeBSD/
H A DPlatformFreeBSD.cpp227 addr_class = bp_loc_sp->GetAddress().GetAddressClass(); in GetSoftwareBreakpointTrapOpcode()
229 (bp_loc_sp->GetAddress().GetFileAddress() & 1)) in GetSoftwareBreakpointTrapOpcode()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Commands/
H A DCommandObjectDisassemble.cpp367 range.GetBaseAddress() = symbol->GetAddress(); in DoExecute()
475 range.GetBaseAddress() = sc.symbol->GetAddress(); in DoExecute()
520 range.GetBaseAddress() = sc.symbol->GetAddress(); in DoExecute()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Target/
H A DQueueItem.h71 lldb_private::Address &GetAddress();
/freebsd-12.1/contrib/llvm/tools/lldb/source/Core/
H A DDisassembler.cpp429 const Address &addr = inst->GetAddress(); in PrintInstructions()
480 const Address &addr = inst->GetAddress(); in PrintInstructions()
748 insn_emulator_ap->SetInstruction(GetOpcode(), GetAddress(), nullptr); in DumpEmulation()
1022 insn_emulator_ap->SetInstruction(GetOpcode(), GetAddress(), nullptr); in Emulate()
1119 target.ReadMemory(m_instructions[i]->GetAddress(), prefer_file_cache, in GetIndexOfNextBranchInstruction()
1147 if (m_instructions[i]->GetAddress() == address) { in GetIndexOfInstructionAtAddress()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Breakpoint/
H A DBreakpointLocation.h59 Address &GetAddress();
/freebsd-12.1/contrib/llvm/tools/lldb/source/Expression/
H A DDWARFExpression.cpp168 *s << "DW_OP_addr(" << m_data.GetAddress(&offset) << ") "; in DumpLocation()
492 s->Printf("DW_OP_call_ref(0x%8.8" PRIx64 ")", m_data.GetAddress(&offset)); in DumpLocation()
956 const lldb::addr_t op_file_addr = m_data.GetAddress(&offset); in GetLocation_DW_OP_addr()
1383 stack.push_back(Scalar(opcodes.GetAddress(&offset))); in Evaluate()
3036 low_pc = debug_loc_data.GetAddress(offset_ptr); in AddressRangeForLocationListEntry()
3037 high_pc = debug_loc_data.GetAddress(offset_ptr); in AddressRangeForLocationListEntry()
3061 low_pc = debug_loc_data.GetAddress(offset_ptr); in AddressRangeForLocationListEntry()
3066 low_pc = debug_loc_data.GetAddress(offset_ptr); in AddressRangeForLocationListEntry()
3067 high_pc = debug_loc_data.GetAddress(offset_ptr); in AddressRangeForLocationListEntry()

123