Home
last modified time | relevance | path

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

12

/external/lldb/source/API/
DSBFunction.cpp143 ModuleSP module_sp (m_opaque_ptr->GetAddressRange().GetBaseAddress().GetModule()); in GetInstructions()
150 … m_opaque_ptr->GetAddressRange())); in GetInstructions()
173 addr.SetAddress (&m_opaque_ptr->GetAddressRange().GetBaseAddress()); in GetStartAddress()
183 addr_t byte_size = m_opaque_ptr->GetAddressRange().GetByteSize(); in GetEndAddress()
186 addr.SetAddress (&m_opaque_ptr->GetAddressRange().GetBaseAddress()); in GetEndAddress()
DSBBlock.cpp196 … sc.function->GetAddressRange().GetBaseAddress().GetFileAddress()); in GetDescription()
/external/lldb/source/Symbol/
DUnwindTable.cpp94 …if (!sc.GetAddressRange(eSymbolContextFunction | eSymbolContextSymbol, 0, false, range) || !range.… in GetFuncUnwindersContainingAddress()
97 if (m_eh_frame == NULL || !m_eh_frame->GetAddressRange (addr, range)) in GetFuncUnwindersContainingAddress()
121 …if (!sc.GetAddressRange(eSymbolContextFunction | eSymbolContextSymbol, 0, false, range) || !range.… in GetUncachedFuncUnwindersContainingAddress()
124 if (m_eh_frame == NULL || !m_eh_frame->GetAddressRange (addr, range)) in GetUncachedFuncUnwindersContainingAddress()
DBlock.cpp53 base_addr = function->GetAddressRange().GetBaseAddress().GetLoadAddress(target); in GetDescription()
55 base_addr = function->GetAddressRange().GetBaseAddress().GetFileAddress(); in GetDescription()
295 const AddressRange &func_range = function->GetAddressRange(); in GetRangeContainingAddress()
336 const AddressRange &func_range = function->GetAddressRange(); in GetRangeIndexContainingAddress()
360 range.GetBaseAddress() = function->GetAddressRange().GetBaseAddress(); in GetRangeAtIndex()
378 addr = function->GetAddressRange().GetBaseAddress(); in GetStartAddress()
403 … const addr_t function_file_addr = function->GetAddressRange().GetBaseAddress().GetFileAddress(); in AddRange()
DFunction.cpp270 … if (line_table->FindLineEntryByAddress (GetAddressRange().GetBaseAddress(), line_entry, NULL)) in GetStartLineSourceInfo()
286 Address scratch_addr(GetAddressRange().GetBaseAddress()); in GetEndLineSourceInfo()
287 scratch_addr.SetOffset (scratch_addr.GetOffset() + GetAddressRange().GetByteSize() - 1); in GetEndLineSourceInfo()
350 GetAddressRange().Dump(s, target, Address::DumpStyleLoadAddress, fallback_style); in GetDescription()
504 …if (line_table->FindLineEntryByAddress(GetAddressRange().GetBaseAddress(), first_line_entry, &firs… in GetPrologueByteSize()
DVariable.cpp145 … loclist_base_addr = variable_sc.function->GetAddressRange().GetBaseAddress().GetFileAddress(); in Dump()
226 …addr_t loclist_base_load_addr = function->GetAddressRange().GetBaseAddress().GetLoadAddress (targe… in LocationIsValidForFrame()
259 … addr_t loclist_base_file_addr = sc.function->GetAddressRange().GetBaseAddress().GetFileAddress(); in LocationIsValidForAddress()
499 if (sc.function->GetAddressRange().ContainsFileAddress(address)) in DumpLocationForAddress()
501 … addr_t loclist_base_file_addr = sc.function->GetAddressRange().GetBaseAddress().GetFileAddress(); in DumpLocationForAddress()
DSymbolContext.cpp157 …const addr_t function_offset = addr.GetOffset() - function->GetAddressRange().GetBaseAddress().Get… in DumpStopContext()
346 …function->GetAddressRange().Dump(s, target, Address::DumpStyleLoadAddress, Address::DumpStyleModul… in Dump()
401 SymbolContext::GetAddressRange (uint32_t scope, in GetAddressRange() function in SymbolContext
430 range = function->GetAddressRange(); in GetAddressRange()
644 … if (function->GetAddressRange().GetBaseAddress().CalculateSymbolContextLineEntry(line_entry)) in GetFunctionStartLineEntry()
1032 … if (pos->function->GetAddressRange().GetBaseAddress() == sc.symbol->GetAddress()) in AppendIfUnique()
1074 … if (function_sc.function->GetAddressRange().GetBaseAddress() == symbol_sc.symbol->GetAddress()) in MergeSymbolContextIntoFunctionContext()
/external/lldb/source/Core/
DAddressResolverName.cpp169 … if (sc.function->GetAddressRange().GetBaseAddress() == symbol_sc.symbol->GetAddress()) in SearchCallback()
187 func_addr = sc.function->GetAddressRange().GetBaseAddress(); in SearchCallback()
188 addr_t byte_size = sc.function->GetAddressRange().GetByteSize(); in SearchCallback()
DDisassembler.cpp151 …for (uint32_t range_idx = 0; sc.GetAddressRange(scope, range_idx, use_inline_block_range, range); … in Disassemble()
442 sc.GetAddressRange (scope, 0, use_inline_block_range, sc_range); in PrintInstructions()
527 range = sc.function->GetAddressRange(); in Disassemble()
DValueObjectVariable.cpp152 … loclist_base_load_addr = sc.function->GetAddressRange().GetBaseAddress().GetLoadAddress (target); in UpdateValue()
DSourceManager.cpp305 … if (sc.function->GetAddressRange().GetBaseAddress().CalculateSymbolContextLineEntry (line_entry)) in GetDefaultFileAndLine()
/external/lldb/source/Plugins/Process/Utility/
DInferiorCallPOSIX.cpp76 if (sc.GetAddressRange(range_scope, 0, use_inline_block_range, mmap_range)) in InferiorCallMmap()
170 if (sc.GetAddressRange(range_scope, 0, use_inline_block_range, munmap_range)) in InferiorCallMunmap()
DUnwindMacOSXFrameBackchain.cpp144 addr_range_ptr = &first_frame_sc.function->GetAddressRange(); in GetStackFrameData_i386()
243 addr_range_ptr = &first_frame_sc.function->GetAddressRange(); in GetStackFrameData_x86_64()
DRegisterContextLLDB.cpp138 m_sym_ctx.GetAddressRange (eSymbolContextFunction | eSymbolContextSymbol, 0, false, addr_range); in InitializeZerothFrame()
379 …if (!m_sym_ctx.GetAddressRange (eSymbolContextFunction | eSymbolContextSymbol, 0, false, addr_rang… in InitializeNonZerothFrame()
416 …if (!m_sym_ctx.GetAddressRange (eSymbolContextFunction | eSymbolContextSymbol, 0, false, addr_ran… in InitializeNonZerothFrame()
/external/lldb/source/Commands/
DCommandObjectDisassemble.cpp459 … sc.GetAddressRange (eSymbolContextFunction | eSymbolContextSymbol, 0, false, range); in DoExecute()
490 range.GetBaseAddress() = sc.function->GetAddressRange().GetBaseAddress(); in DoExecute()
533 range = sc.function->GetAddressRange(); in DoExecute()
/external/lldb/include/lldb/Symbol/
DDWARFCallFrameInfo.h50 GetAddressRange (Address addr, AddressRange &range);
DFunction.h435 GetAddressRange() in GetAddressRange() function
DSymbolContext.h209 GetAddressRange (uint32_t scope,
DUnwindPlan.h414 GetAddressRange () const in GetAddressRange() function
/external/lldb/source/Breakpoint/
DBreakpointResolverFileLine.cpp180 … Address prologue_addr(sc.function->GetAddressRange().GetBaseAddress()); in SearchCallback()
DBreakpointResolverName.cpp282 break_addr = sc.function->GetAddressRange().GetBaseAddress(); in SearchCallback()
/external/lldb/source/Target/
DThreadPlanStepInRange.cpp216 func_start_address = sc.function->GetAddressRange().GetBaseAddress(); in ShouldStop()
DThreadPlanStepRange.cpp221 …return m_addr_context.function->GetAddressRange().ContainsLoadAddress (cur_pc, m_thread.CalculateT… in InSymbol()
/external/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/
DDynamicLoaderPOSIXDYLD.cpp379 context.GetAddressRange(eSymbolContextEverything, 0, false, range); in GetStepThroughTrampolinePlan()
/external/lldb/source/Expression/
DClangFunction.cpp95 m_function_addr = m_function_ptr->GetAddressRange().GetBaseAddress(); in ClangFunction()

12