Home
last modified time | relevance | path

Searched refs:func_range (Results 1 – 9 of 9) sorted by relevance

/external/llvm-project/lldb/source/Plugins/UnwindAssembly/x86/
Dx86AssemblyInspectionEngine.h68 lldb_private::AddressRange &func_range,
85 lldb_private::AddressRange &func_range,
120 const lldb_private::AddressRange &func_range,
123 const lldb_private::AddressRange &func_range,
Dx86AssemblyInspectionEngine.cpp816 const AddressRange &func_range, in local_branch_p() argument
826 if (offset + next_pc_value > func_range.GetByteSize()) { in local_branch_p()
843 const AddressRange &func_range, in non_local_branch_p() argument
848 … return !local_branch_p(current_func_text_offset,func_range,instruction_length,target_insn_offset); in non_local_branch_p()
916 uint8_t *data, size_t size, AddressRange &func_range, in GetNonCallSiteUnwindPlanFromAssembly() argument
932 unwind_plan.SetPlanValidAddressRange(func_range); in GetNonCallSiteUnwindPlanFromAssembly()
1238 non_local_branch_p (current_func_text_offset, func_range, insn_len) || in GetNonCallSiteUnwindPlanFromAssembly()
1337 uint8_t *data, size_t size, AddressRange &func_range, in AugmentUnwindPlanFromCallSite() argument
1339 Address addr_start = func_range.GetBaseAddress(); in AugmentUnwindPlanFromCallSite()
1569 unwind_plan.SetPlanValidAddressRange(func_range); in AugmentUnwindPlanFromCallSite()
/external/llvm-project/lldb/source/Plugins/SymbolFile/Symtab/
DSymbolFileSymtab.cpp172 AddressRange func_range(curr_symbol->GetAddress(), 0); in ParseFunctions() local
173 if (func_range.GetBaseAddress().IsSectionOffset()) { in ParseFunctions()
176 func_range.SetByteSize(symbol_size); in ParseFunctions()
180 func_range.SetByteSize( in ParseFunctions()
193 func_range)); // first address range in ParseFunctions()
/external/llvm-project/lldb/source/Symbol/
DBlock.cpp243 const AddressRange &func_range = function->GetAddressRange(); in GetRangeContainingAddress() local
244 if (addr.GetSection() == func_range.GetBaseAddress().GetSection()) { in GetRangeContainingAddress()
246 const addr_t func_offset = func_range.GetBaseAddress().GetOffset(); in GetRangeContainingAddress()
248 addr_offset < func_offset + func_range.GetByteSize()) { in GetRangeContainingAddress()
254 range.GetBaseAddress() = func_range.GetBaseAddress(); in GetRangeContainingAddress()
278 const AddressRange &func_range = function->GetAddressRange(); in GetRangeIndexContainingAddress() local
279 if (addr.GetSection() == func_range.GetBaseAddress().GetSection()) { in GetRangeIndexContainingAddress()
281 const addr_t func_offset = func_range.GetBaseAddress().GetOffset(); in GetRangeIndexContainingAddress()
283 addr_offset < func_offset + func_range.GetByteSize()) { in GetRangeIndexContainingAddress()
DCompactUnwindInfo.cpp204 AddressRange func_range(func_range_start_file_addr, in GetUnwindPlan() local
208 unwind_plan.SetPlanValidAddressRange(func_range); in GetUnwindPlan()
/external/llvm-project/lldb/source/Expression/
DIRExecutionUnit.cpp130 std::pair<lldb::addr_t, lldb::addr_t> func_range; in DisassembleFunction() local
132 func_range = GetRemoteRangeForLocal(func_local_addr); in DisassembleFunction()
134 if (func_range.first == 0 && func_range.second == 0) { in DisassembleFunction()
142 func_range.first, func_range.second); in DisassembleFunction()
151 lldb::DataBufferSP buffer_sp(new DataBufferHeap(func_range.second, 0)); in DisassembleFunction()
422 AddrRange func_range = in GetRunnableInfo() local
424 m_function_end_load_addr = func_range.first + func_range.second; in GetRunnableInfo()
/external/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
DDWARFASTParserClang.cpp2253 AddressRange func_range; in ParseFunctionFromDWARF() local
2259 func_range.GetBaseAddress().ResolveAddressUsingFileSections( in ParseFunctionFromDWARF()
2261 if (func_range.GetBaseAddress().IsValid()) in ParseFunctionFromDWARF()
2262 func_range.SetByteSize(highest_func_addr - lowest_func_addr); in ParseFunctionFromDWARF()
2265 if (func_range.GetBaseAddress().IsValid()) { in ParseFunctionFromDWARF()
2323 if (dwarf->FixupAddress(func_range.GetBaseAddress())) { in ParseFunctionFromDWARF()
2329 func_range); // first address range in ParseFunctionFromDWARF()
/external/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
DSymbolFileNativePDB.cpp380 AddressRange func_range(file_vm_addr, sol.length, in CreateFunction() local
382 if (!func_range.GetBaseAddress().IsValid()) in CreateFunction()
397 func_type.get(), func_range); in CreateFunction()
/external/llvm-project/lldb/source/Plugins/SymbolFile/PDB/
DSymbolFilePDB.cpp285 AddressRange func_range = in ParseCompileUnitFunctionForPDBFunc() local
288 if (!func_range.GetBaseAddress().IsValid()) in ParseCompileUnitFunctionForPDBFunc()
301 func_type_uid, mangled, func_type, func_range); in ParseCompileUnitFunctionForPDBFunc()