Home
last modified time | relevance | path

Searched refs:GetLoadAddress (Results 1 – 25 of 84) sorted by relevance

1234

/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/
HDAddressRange.cpp97 addr_t load_base_addr = GetBaseAddress().GetLoadAddress(target); in ContainsLoadAddress()
101 addr_t load_addr = addr.GetLoadAddress(target); in ContainsLoadAddress()
115 addr_t load_base_addr = GetBaseAddress().GetLoadAddress(target); in ContainsLoadAddress()
178 vmaddr = m_base_addr.GetLoadAddress(target); in Dump()
HDValueObjectMemory.cpp56 lldb::addr_t load_address = m_address.GetLoadAddress(target_sp.get()); in ValueObjectMemory()
88 lldb::addr_t load_address = m_address.GetLoadAddress(target_sp.get()); in ValueObjectMemory()
187 lldb::addr_t load_addr = m_address.GetLoadAddress(target); in UpdateValue()
HDAddress.cpp310 addr_t Address::GetLoadAddress(Target *target) const { in GetLoadAddress() function in Address
347 code_addr = GetLoadAddress(target); in GetCallableLoadAddress()
369 addr_t code_addr = GetLoadAddress(target); in GetOpcodeLoadAddress()
453 addr_t load_addr = GetLoadAddress(target); in Dump()
744 addr_t load_addr = GetLoadAddress(target); in Dump()
908 addr_t a_load_addr = a.GetLoadAddress(target); in CompareLoadAddress()
909 addr_t b_load_addr = b.GetLoadAddress(target); in CompareLoadAddress()
/freebsd-11-stable/contrib/llvm-project/lldb/bindings/interface/
HDSBAddress.i84 GetLoadAddress (const lldb::SBTarget &target) const;
149 return self.GetLoadAddress (target)
158 return self.GetLoadAddress (target)
HDSBBreakpointLocation.i43 GetLoadAddress ();
HDSBSection.i73 GetLoadAddress (lldb::SBTarget &target);
HDSBValue.i418 GetLoadAddress();
498 …load_addr = property(GetLoadAddress, None, doc='''A read only property that returns the load addre…
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/Windows-DYLD/
HDDynamicLoaderWindowsDYLD.cpp100 lldb::addr_t DynamicLoaderWindowsDYLD::GetLoadAddress(ModuleSP executable) { in GetLoadAddress() function in DynamicLoaderWindowsDYLD
134 lldb::addr_t load_addr = GetLoadAddress(executable); in DidAttach()
161 lldb::addr_t load_addr = GetLoadAddress(executable); in DidLaunch()
HDDynamicLoaderWindowsDYLD.h46 lldb::addr_t GetLoadAddress(lldb::ModuleSP executable);
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/
HDSBAddress.cpp120 lldb::addr_t SBAddress::GetLoadAddress(const SBTarget &target) const { in GetLoadAddress() function in SBAddress
121 LLDB_RECORD_METHOD_CONST(lldb::addr_t, SBAddress, GetLoadAddress, in GetLoadAddress()
129 addr = m_opaque_up->GetLoadAddress(target_sp.get()); in GetLoadAddress()
306 LLDB_REGISTER_METHOD_CONST(lldb::addr_t, SBAddress, GetLoadAddress, in RegisterMethods()
HDSBBreakpointLocation.cpp89 addr_t SBBreakpointLocation::GetLoadAddress() { in GetLoadAddress() function in SBBreakpointLocation
91 GetLoadAddress); in GetLoadAddress()
99 ret_addr = loc_sp->GetLoadAddress(); in GetLoadAddress()
487 LLDB_REGISTER_METHOD(lldb::addr_t, SBBreakpointLocation, GetLoadAddress, in RegisterMethods()
HDSBSection.cpp134 lldb::addr_t SBSection::GetLoadAddress(lldb::SBTarget &sb_target) { in GetLoadAddress() function in SBSection
135 LLDB_RECORD_METHOD(lldb::addr_t, SBSection, GetLoadAddress, in GetLoadAddress()
311 LLDB_REGISTER_METHOD(lldb::addr_t, SBSection, GetLoadAddress, in RegisterMethods()
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/
HDThreadPlanCallFunction.cpp77 start_load_addr = m_start_addr.GetLoadAddress(&GetTarget()); in ConstructorSetup()
91 function_load_addr = m_function_addr.GetLoadAddress(&GetTarget()); in ConstructorSetup()
221 m_function_addr.GetLoadAddress(target_sp.get())); in GetDescription()
HDThreadPlanCallFunctionUsingABI.cpp54 m_function_addr.GetLoadAddress(target_sp.get())); in GetDescription()
HDThreadPlanStepInRange.cpp269 func_start_address.GetLoadAddress( in ShouldStop()
275 func_start_address.GetLoadAddress( in ShouldStop()
/freebsd-11-stable/contrib/llvm-project/lldb/source/Breakpoint/
HDBreakpointResolverAddress.cpp143 m_resolved_addr = m_addr.GetLoadAddress(&m_breakpoint->GetTarget()); in SearchCallback()
155 m_addr.GetLoadAddress(&m_breakpoint->GetTarget()); in SearchCallback()
HDBreakpointSiteList.cpp25 lldb::addr_t bp_site_load_addr = bp->GetLoadAddress(); in Add()
190 if (prev_bp->GetLoadAddress() + prev_bp->GetByteSize() > lower_bound) in FindInRange()
HDWatchpoint.cpp107 Address watch_address(GetLoadAddress()); in CaptureWatchedValue()
194 GetID(), GetLoadAddress(), m_byte_size, in DumpWithLevel()
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/
HDRegisterContextLLDB.cpp214 m_start_pc.GetLoadAddress(exe_ctx.GetTargetPtr())); in InitializeZerothFrame()
257 (uint64_t)m_current_pc.GetLoadAddress(exe_ctx.GetTargetPtr()), in InitializeZerothFrame()
497 m_current_offset = pc - m_start_pc.GetLoadAddress(&process->GetTarget()); in InitializeNonZerothFrame()
541 m_start_pc.GetLoadAddress(exe_ctx.GetTargetPtr())); in InitializeNonZerothFrame()
555 m_start_pc.GetLoadAddress(exe_ctx.GetTargetPtr())); in InitializeNonZerothFrame()
589 (uint64_t)m_current_pc.GetLoadAddress(exe_ctx.GetTargetPtr()), in InitializeNonZerothFrame()
723 m_current_pc.GetLoadAddress(exe_ctx.GetTargetPtr()); in GetFullUnwindPlanForFrame()
1785 m_current_pc.GetLoadAddress(target) - m_start_pc.GetLoadAddress(target); in PropagateTrapHandlerFlagFromUnwindPlan()
2118 start_pc = m_start_pc.GetLoadAddress(CalculateTarget().get()); in GetStartPC()
HDHistoryUnwind.cpp42 addr_t pc = frame->GetFrameCodeAddress().GetLoadAddress( in DoCreateRegisterContextForFrame()
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Breakpoint/
HDStoppointLocation.h31 virtual lldb::addr_t GetLoadAddress() const { return m_addr; } in GetLoadAddress() function
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/API/
HDSBSection.h43 lldb::addr_t GetLoadAddress(lldb::SBTarget &target);
HDSBBreakpointLocation.h36 lldb::addr_t GetLoadAddress();
HDSBAddress.h44 addr_t GetLoadAddress(const lldb::SBTarget &target) const;
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/
HDDynamicLoaderPOSIXDYLD.cpp126 if (addr.GetLoadAddress(&target) != LLDB_INVALID_ADDRESS) in DidAttach()
372 location->GetLoadAddress(), in SetRendezvousBreakpoint()
484 lldb::addr_t addr = range.GetBaseAddress().GetLoadAddress(&target); in GetStepThroughTrampolinePlan()

1234