Home
last modified time | relevance | path

Searched refs:GetAddressRange (Results 1 – 25 of 45) sorted by relevance

12

/freebsd-12.1/contrib/llvm/tools/lldb/source/Symbol/
H A DUnwindTable.cpp79 llvm::Optional<AddressRange> UnwindTable::GetAddressRange(const Address &addr, in GetAddressRange() function in UnwindTable
84 if (sc.GetAddressRange(eSymbolContextFunction | eSymbolContextSymbol, 0, in GetAddressRange()
90 if (m_eh_frame_up && m_eh_frame_up->GetAddressRange(addr, range)) in GetAddressRange()
94 if (m_debug_frame_up && m_debug_frame_up->GetAddressRange(addr, range)) in GetAddressRange()
123 auto range_or = GetAddressRange(addr, sc); in GetFuncUnwindersContainingAddress()
143 auto range_or = GetAddressRange(addr, sc); in GetUncachedFuncUnwindersContainingAddress()
H A DFunction.cpp182 const Address &base = caller.GetAddressRange().GetBaseAddress(); in GetReturnPCAddress()
221 if (line_table->FindLineEntryByAddress(GetAddressRange().GetBaseAddress(), in GetStartLineSourceInfo()
235 Address scratch_addr(GetAddressRange().GetBaseAddress()); in GetEndLineSourceInfo()
237 GetAddressRange().GetByteSize() - 1); in GetEndLineSourceInfo()
324 GetAddressRange().Dump(s, target, Address::DumpStyleLoadAddress, in GetDescription()
369 ModuleSP module_sp(GetAddressRange().GetBaseAddress().GetModule()); in GetInstructions()
373 flavor, exe_ctx, GetAddressRange(), in GetInstructions()
493 if (line_table->FindLineEntryByAddress(GetAddressRange().GetBaseAddress(), in GetPrologueByteSize()
H A DBlock.cpp40 function->GetAddressRange().GetBaseAddress().GetLoadAddress(target); in GetDescription()
42 base_addr = function->GetAddressRange().GetBaseAddress().GetFileAddress(); in GetDescription()
228 const AddressRange &func_range = function->GetAddressRange(); in GetRangeContainingAddress()
263 const AddressRange &func_range = function->GetAddressRange(); in GetRangeIndexContainingAddress()
282 range.GetBaseAddress() = function->GetAddressRange().GetBaseAddress(); in GetRangeAtIndex()
297 addr = function->GetAddressRange().GetBaseAddress(); in GetStartAddress()
317 function->GetAddressRange().GetBaseAddress().GetFileAddress(); in AddRange()
H A DVariable.cpp156 loclist_base_addr = variable_sc.function->GetAddressRange() in Dump()
239 function->GetAddressRange().GetBaseAddress().GetLoadAddress( in LocationIsValidForFrame()
268 sc.function->GetAddressRange().GetBaseAddress().GetFileAddress(); in LocationIsValidForAddress()
471 if (sc.function->GetAddressRange().ContainsFileAddress(address)) { in DumpLocationForAddress()
473 sc.function->GetAddressRange().GetBaseAddress().GetFileAddress(); in DumpLocationForAddress()
H A DSymbolContext.cpp124 function->GetAddressRange().GetBaseAddress().GetOffset(); in DumpStopContext()
346 function->GetAddressRange().Dump(s, target, Address::DumpStyleLoadAddress, in Dump()
399 bool SymbolContext::GetAddressRange(uint32_t scope, uint32_t range_idx, in GetAddressRange() function in SymbolContext
419 range = function->GetAddressRange(); in GetAddressRange()
722 if (function->GetAddressRange() in GetFunctionStartLineEntry()
1265 if (pos->function->GetAddressRange().GetBaseAddress() == in AppendIfUnique()
/freebsd-12.1/contrib/llvm/tools/lldb/source/API/
H A DSBFunction.cpp133 m_opaque_ptr->GetAddressRange().GetBaseAddress().GetModule()); in GetInstructions()
138 m_opaque_ptr->GetAddressRange(), prefer_file_cache)); in GetInstructions()
153 addr.SetAddress(&m_opaque_ptr->GetAddressRange().GetBaseAddress()); in GetStartAddress()
160 addr_t byte_size = m_opaque_ptr->GetAddressRange().GetByteSize(); in GetEndAddress()
162 addr.SetAddress(&m_opaque_ptr->GetAddressRange().GetBaseAddress()); in GetEndAddress()
H A DSBBlock.cpp154 sc.function->GetAddressRange().GetBaseAddress().GetFileAddress()); in GetDescription()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Core/
H A DAddressResolverName.cpp130 if (sc.function->GetAddressRange().GetBaseAddress() == in SearchCallback()
145 func_addr = sc.function->GetAddressRange().GetBaseAddress(); in SearchCallback()
146 addr_t byte_size = sc.function->GetAddressRange().GetByteSize(); in SearchCallback()
H A DDisassembler.cpp149 sc.GetAddressRange(scope, range_idx, use_inline_block_range, range); in Disassemble()
533 sc.GetAddressRange(scope, 0, use_inline_block_range, in PrintInstructions()
540 sc.GetAddressRange(scope, 0, use_inline_block_range, in PrintInstructions()
654 range = sc.function->GetAddressRange(); in Disassemble()
H A DValueObjectVariable.cpp155 sc.function->GetAddressRange().GetBaseAddress().GetLoadAddress( in UpdateValue()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Commands/
H A DCommandObjectDisassemble.cpp420 sc.GetAddressRange(eSymbolContextFunction | in DoExecute()
451 sc.GetAddressRange(eSymbolContextFunction | in DoExecute()
473 sc.function->GetAddressRange().GetBaseAddress(); in DoExecute()
518 range = sc.function->GetAddressRange(); in DoExecute()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/
H A DInferiorCallPOSIX.cpp81 if (sc.GetAddressRange(range_scope, 0, use_inline_block_range, in InferiorCallMmap()
156 if (sc.GetAddressRange(range_scope, 0, use_inline_block_range, in InferiorCallMunmap()
H A DUnwindMacOSXFrameBackchain.cpp126 addr_range_ptr = &first_frame_sc.function->GetAddressRange(); in GetStackFrameData_i386()
217 addr_range_ptr = &first_frame_sc.function->GetAddressRange(); in GetStackFrameData_x86_64()
H A DRegisterContextLLDB.cpp175 m_sym_ctx.GetAddressRange(resolve_scope, 0, false, addr_range); in InitializeZerothFrame()
470 if (!m_sym_ctx.GetAddressRange(resolve_scope, 0, false, addr_range)) { in InitializeNonZerothFrame()
513 if (m_sym_ctx.GetAddressRange(resolve_scope, 0, false, addr_range)) in InitializeNonZerothFrame()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Target/
H A DCPPLanguageRuntime.cpp234 sc2.GetAddressRange(eSymbolContextEverything, 0, false, range); in FindLibCppStdFunctionCallableInfo()
317 sc.GetAddressRange(eSymbolContextEverything, 0, false, range_of_curr_func); in GetStepThroughTrampolinePlan()
H A DThreadPlanStepInRange.cpp268 func_start_address = sc.function->GetAddressRange().GetBaseAddress(); in ShouldStop()
H A DThreadPlanStepRange.cpp197 return m_addr_context.function->GetAddressRange().ContainsLoadAddress( in InSymbol()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Symbol/
H A DUnwindTable.h59 llvm::Optional<AddressRange> GetAddressRange(const Address &addr,
H A DDWARFCallFrameInfo.h46 bool GetAddressRange(Address addr, AddressRange &range);
H A DFunction.h428 const AddressRange &GetAddressRange() { return m_range; } in GetAddressRange() function
H A DSymbolContext.h226 bool GetAddressRange(uint32_t scope, uint32_t range_idx,
H A DUnwindPlan.h428 const AddressRange &GetAddressRange() const { in GetAddressRange() function
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Architecture/Mips/
H A DArchitectureMips.cpp105 sym_addr = sc.function->GetAddressRange().GetBaseAddress(); in GetBreakableLoadAddress()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/
H A DDynamicLoaderPOSIXDYLD.cpp488 context.GetAddressRange(eSymbolContextEverything, 0, false, range); in GetStepThroughTrampolinePlan()
765 sym_ctx.function->GetAddressRange().GetBaseAddress().GetModule(); in AlwaysRelyOnEHUnwindInfo()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Breakpoint/
H A DBreakpointResolver.cpp317 Address prologue_addr(sc.function->GetAddressRange().GetBaseAddress()); in AddLocation()

12