HomeSort by relevance Sort by last modified time
    Searched full:debug_line_data (Results 1 - 4 of 4) sorted by null

  /external/lldb/source/Plugins/SymbolFile/DWARF/
DWARFDebugLine.cpp 31 // Parse all information in the debug_line_data into an internal
35 DWARFDebugLine::Parse(const DataExtractor& debug_line_data)
40 while (debug_line_data.ValidOffset(offset))
47 if (ParseStatementTable(debug_line_data, &offset, line_table_sp.get()))
62 DWARFDebugLine::ParseIfNeeded(const DataExtractor& debug_line_data)
65 Parse(debug_line_data);
113 const DataExtractor& debug_line_data = dwarf2Data->get_debug_line_data(); local
119 while (debug_line_data.ValidOffset(debug_line_offset))
120 debug_line_offset = DumpStatementTable (log, debug_line_data, debug_line_offset);
125 DumpStatementTable (log, debug_line_data, debug_line_offset)
159 const DataExtractor& debug_line_data = dwarf2Data->get_debug_line_data(); local
    [all...]
DWARFDebugLine.h 228 static bool ParseSupportFiles(const lldb::ModuleSP &module_sp, const lldb_private::DataExtractor& debug_line_data, const char *cu_comp_dir, dw_offset_t stmt_list, lldb_private::FileSpecList &support_files);
229 static bool ParsePrologue(const lldb_private::DataExtractor& debug_line_data, lldb::offset_t* offset_ptr, Prologue* prologue);
230 static bool ParseStatementTable(const lldb_private::DataExtractor& debug_line_data, lldb::offset_t* offset_ptr, State::Callback callback, void* userData);
231 static dw_offset_t DumpStatementTable(lldb_private::Log *log, const lldb_private::DataExtractor& debug_line_data, const dw_offset_t line_offset);
232 static dw_offset_t DumpStatementOpcodes(lldb_private::Log *log, const lldb_private::DataExtractor& debug_line_data, const dw_offset_t line_offset, uint32_t flags);
233 static bool ParseStatementTable(const lldb_private::DataExtractor& debug_line_data, lldb::offset_t *offset_ptr, LineTable* line_table);
234 static void Parse(const lldb_private::DataExtractor& debug_line_data, DWARFDebugLine::State::Callback callback, void* userData);
235 // static void AppendLineTableData(const DWARFDebugLine::Prologue* prologue, const DWARFDebugLine::Row::collection& state_coll, const uint32_t addr_size, BinaryStreamBuf &debug_line_data);
242 void Parse(const lldb_private::DataExtractor& debug_line_data);
243 void ParseIfNeeded(const lldb_private::DataExtractor& debug_line_data);
    [all...]
  /external/llvm/lib/DebugInfo/DWARF/
DWARFDebugLine.cpp 68 bool DWARFDebugLine::Prologue::parse(DataExtractor debug_line_data,
73 TotalLength = debug_line_data.getU32(offset_ptr);
74 Version = debug_line_data.getU16(offset_ptr);
78 PrologueLength = debug_line_data.getU32(offset_ptr);
80 MinInstLength = debug_line_data.getU8(offset_ptr);
82 MaxOpsPerInst = debug_line_data.getU8(offset_ptr);
83 DefaultIsStmt = debug_line_data.getU8(offset_ptr);
84 LineBase = debug_line_data.getU8(offset_ptr);
85 LineRange = debug_line_data.getU8(offset_ptr);
86 OpcodeBase = debug_line_data.getU8(offset_ptr)
    [all...]
  /external/llvm/include/llvm/DebugInfo/DWARF/
DWARFDebugLine.h 81 bool parse(DataExtractor debug_line_data, uint32_t *offset_ptr);
196 bool parse(DataExtractor debug_line_data, const RelocAddrMap *RMap,
209 const LineTable *getOrParseLineTable(DataExtractor debug_line_data,

Completed in 257 milliseconds