Searched refs:AddressRange (Results 1 - 25 of 61) sorted by relevance

123

/freebsd-10.0-release/contrib/llvm/tools/lldb/source/Core/
H A DAddressRange.cpp1 //===-- AddressRange.cpp ----------------------------------------*- C++ -*-===//
10 #include "lldb/Core/AddressRange.h"
19 AddressRange::AddressRange () : function in class:AddressRange
25 AddressRange::AddressRange (addr_t file_addr, addr_t byte_size, const SectionList *section_list) : function in class:AddressRange
31 AddressRange::AddressRange (const lldb::SectionSP &section, addr_t offset, addr_t byte_size) : function in class:AddressRange
37 AddressRange::AddressRange (cons function in class:AddressRange
[all...]
H A DAddressResolver.cpp51 std::vector<AddressRange> &
63 AddressRange &
H A DAddressResolverFileLine.cpp68 AddressRange new_range (line_start, byte_size);
H A DAddressResolverName.cpp201 AddressRange new_range (func_addr, byte_size);
230 AddressRange new_range (func_addr, byte_size);
/freebsd-10.0-release/contrib/llvm/tools/lldb/include/lldb/Core/
H A DAddressRange.h1 //===-- AddressRange.h ------------------------------------------*- C++ -*-===//
18 /// @class AddressRange AddressRange.h "lldb/Core/AddressRange.h"
21 class AddressRange class in namespace:lldb_private
30 AddressRange ();
48 AddressRange (const lldb::SectionSP &section, lldb::addr_t offset, lldb::addr_t byte_size);
65 AddressRange (lldb::addr_t file_addr, lldb::addr_t byte_size, const SectionList *section_list = NULL);
79 AddressRange (const Address& so_addr, lldb::addr_t byte_size);
86 ~AddressRange ();
[all...]
H A DAddressResolver.h21 #include "lldb/Core/AddressRange.h"
70 std::vector<AddressRange> &
76 AddressRange &
81 std::vector<AddressRange> m_address_ranges;
/freebsd-10.0-release/contrib/llvm/tools/lldb/include/lldb/Target/
H A DUnwindAssembly.h30 GetNonCallSiteUnwindPlanFromAssembly (AddressRange& func,
35 GetFastUnwindPlan (AddressRange& func,
41 FirstNonPrologueInsn (AddressRange& func,
H A DThreadPlanStepInRange.h17 #include "lldb/Core/AddressRange.h"
31 const AddressRange &range,
36 const AddressRange &range,
82 const AddressRange &range,
87 const AddressRange &range,
H A DThreadPlanStepRange.h17 #include "lldb/Core/AddressRange.h"
31 const AddressRange &range,
49 void AddRange(const AddressRange &new_range);
77 std::vector<AddressRange> m_address_ranges;
H A DThreadPlanStepOverRange.h17 #include "lldb/Core/AddressRange.h"
29 const AddressRange &range,
/freebsd-10.0-release/contrib/llvm/tools/lldb/source/Plugins/UnwindAssembly/x86/
H A DUnwindAssembly-x86.h25 GetNonCallSiteUnwindPlanFromAssembly (lldb_private::AddressRange& func,
30 GetFastUnwindPlan (lldb_private::AddressRange& func,
36 FirstNonPrologueInsn (lldb_private::AddressRange& func,
H A DUnwindAssembly-x86.cpp120 AssemblyParse_x86 (const ExecutionContext &exe_ctx, int cpu, ArchSpec &arch, AddressRange func);
126 bool get_fast_unwind_plan (AddressRange& func, UnwindPlan &unwind_plan);
147 AddressRange m_func_bounds;
168 AssemblyParse_x86::AssemblyParse_x86 (const ExecutionContext &exe_ctx, int cpu, ArchSpec &arch, AddressRange func) :
674 // Now look at the byte at the end of the AddressRange for a limited attempt at describing the
754 AssemblyParse_x86::get_fast_unwind_plan (AddressRange& func, UnwindPlan &unwind_plan)
896 UnwindAssembly_x86::GetNonCallSiteUnwindPlanFromAssembly (AddressRange& func, Thread& thread, UnwindPlan& unwind_plan)
904 UnwindAssembly_x86::GetFastUnwindPlan (AddressRange& func, Thread& thread, UnwindPlan &unwind_plan)
912 UnwindAssembly_x86::FirstNonPrologueInsn (AddressRange& func, const ExecutionContext &exe_ctx, Address& first_non_prologue_insn)
/freebsd-10.0-release/contrib/llvm/tools/lldb/include/lldb/Symbol/
H A DFuncUnwinders.h4 #include "lldb/Core/AddressRange.h"
6 #include "lldb/Core/AddressRange.h"
34 FuncUnwinders (lldb_private::UnwindTable& unwind_table, lldb_private::UnwindAssembly *assembly_profiler, AddressRange range);
81 AddressRange m_range;
H A DBlock.h14 #include "lldb/Core/AddressRange.h"
448 GetRangeContainingAddress (const Address& addr, AddressRange &range);
451 GetRangeContainingLoadAddress (lldb::addr_t load_addr, Target &target, AddressRange &range);
462 AddressRange &range);
H A DFunction.h14 #include "lldb/Core/AddressRange.h"
371 const AddressRange& range);
410 const AddressRange& range);
434 const AddressRange &
628 AddressRange m_range; ///< The function address range that covers the widest range needed to contain all blocks
H A DLineEntry.h14 #include "lldb/Core/AddressRange.h"
147 AddressRange range; ///< The section offset address range for this line entry.
H A DSymbol.h14 #include "lldb/Core/AddressRange.h"
52 const AddressRange &range,
74 // Access the address value. Do NOT hand out the AddressRange as an
85 // Access the address value. Do NOT hand out the AddressRange as an
248 // SetValue (const AddressRange &range)
311 AddressRange m_addr_range; // Contains the value, or the section offset address when the value is an address in a section, and the size (if any)
H A DSymbolContext.h212 AddressRange &range) const;
399 std::unique_ptr<AddressRange> m_address_range_ap;
H A DDWARFCallFrameInfo.h15 #include "lldb/Core/AddressRange.h"
46 // Locate an AddressRange that includes the provided Address in this
50 GetAddressRange (Address addr, AddressRange &range);
/freebsd-10.0-release/contrib/llvm/tools/lldb/source/Plugins/UnwindAssembly/InstEmulation/
H A DUnwindAssemblyInstEmulation.h29 GetNonCallSiteUnwindPlanFromAssembly (lldb_private::AddressRange& func,
34 GetFastUnwindPlan (lldb_private::AddressRange& func,
40 FirstNonPrologueInsn (lldb_private::AddressRange& func,
161 lldb_private::AddressRange* m_range_ptr;
/freebsd-10.0-release/contrib/llvm/lib/DebugInfo/
H A DDWARFDebugFrame.cpp252 int64_t LinkedCIEOffset, uint64_t InitialLocation, uint64_t AddressRange)
254 InitialLocation(InitialLocation), AddressRange(AddressRange),
266 (uint32_t)InitialLocation + (uint32_t)AddressRange);
280 uint64_t AddressRange; member in class:__anon2248::FDE
358 uint64_t AddressRange = Data.getAddress(&Offset); local
361 InitialLocation, AddressRange);
251 FDE(DataExtractor D, uint64_t Offset, uint64_t Length, int64_t LinkedCIEOffset, uint64_t InitialLocation, uint64_t AddressRange) argument
/freebsd-10.0-release/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDebugRanges.cpp153 s.AddressRange(begin, end, sizeof (dw_addr_t), " offsets = ");
174 s.AddressRange(begin_addr, end_addr, sizeof (dw_addr_t), verbose ? " ==> addrs = " : NULL);
/freebsd-10.0-release/contrib/llvm/tools/lldb/source/Symbol/
H A DUnwindTable.cpp93 AddressRange range;
120 AddressRange range;
H A DBlock.cpp61 s->AddressRange(base_addr + range.GetRangeBase(), base_addr + range.GetRangeEnd(), 4);
112 s->AddressRange(base_addr + range.GetRangeBase(), base_addr + range.GetRangeEnd(), 4);
209 s->AddressRange(base_addr + range.GetRangeBase(), base_addr + range.GetRangeEnd(), 4);
290 Block::GetRangeContainingAddress (const Address& addr, AddressRange &range)
295 const AddressRange &func_range = function->GetAddressRange();
321 Block::GetRangeContainingLoadAddress (lldb::addr_t load_addr, Target &target, AddressRange &range)
325 AddressRange containing_range;
336 const AddressRange &func_range = function->GetAddressRange();
352 Block::GetRangeAtIndex (uint32_t range_idx, AddressRange &range)
/freebsd-10.0-release/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/
H A DUnwindMacOSXFrameBackchain.cpp141 const AddressRange *addr_range_ptr = NULL;
142 AddressRange range;
240 const AddressRange *addr_range_ptr = NULL;
241 AddressRange range;

Completed in 143 milliseconds

123