Searched refs:line_base (Results 1 – 9 of 9) sorted by relevance
/external/lldb/source/Plugins/SymbolFile/DWARF/ |
D | DWARFDebugLine.h | 62 line_base(0), in Prologue() 78 …int8_t line_base; // This parameter affects the meaning of the special opcodes. See belo… member 89 … int32_t MaxLineIncrementForSpecialOpcode() const { return line_base + (int8_t)line_range - 1; } in MaxLineIncrementForSpecialOpcode() 95 …total_length = version = prologue_length = min_inst_length = line_base = line_range = opcode_base … in Clear() 96 line_base = 0; in Clear()
|
D | DWARFDebugLine.cpp | 364 … int32_t line_offset = prologue.line_base + (adjust_opcode % prologue.line_range); in DumpStatementOpcodes() 422 prologue->line_base = debug_line_data.GetU8(offset_ptr); in ParsePrologue() 832 int32_t line_offset = prologue->line_base + (adjust_opcode % prologue->line_range); in ParseStatementTable() 902 log->Printf( " line_base: %i", line_base); in Dump()
|
/external/google-breakpad/src/processor/ |
D | fast_source_line_resolver.cc | 90 MemAddr line_base; in LookupAddress() local 91 if (func->lines.RetrieveRange(address, line_ptr, &line_base, NULL)) { in LookupAddress() 99 frame->source_line_base = frame->module->base_address() + line_base; in LookupAddress()
|
D | basic_source_line_resolver.cc | 211 MemAddr line_base; in LookupAddress() local 212 if (func->lines.RetrieveRange(address, &line, &line_base, NULL)) { in LookupAddress() 218 frame->source_line_base = frame->module->base_address() + line_base; in LookupAddress()
|
/external/elfutils/src/libdw/ |
D | dwarf_getsrclines.c | 156 int_fast8_t line_base = (int8_t) *linep++; in read_srclines() local 395 int line_increment = (line_base in read_srclines()
|
/external/v8/src/ |
D | gdb-jit.cc | 1436 const int8_t line_base = 1; in WriteBodyInternal() local 1438 const int8_t max_line_incr = (line_base + line_range - 1); in WriteBodyInternal() 1446 w->Write<int8_t>(line_base); // Field line_base. in WriteBodyInternal() 1506 intptr_t special_opcode = (line_diff - line_base) + in WriteBodyInternal() 1515 (line_diff <= max_line_incr) && (line_diff >= line_base)) { in WriteBodyInternal()
|
/external/google-breakpad/src/common/dwarf/ |
D | dwarf2reader.h | 73 int8 line_base; member
|
D | dwarf2reader.cc | 560 header_.line_base = *reinterpret_cast<const int8*>(lineptr); in ReadHeader() 637 + header.line_base; in ProcessOneOpcode()
|
/external/elfutils/src/src/ |
D | readelf.c | 6435 int_fast8_t line_base = *((const int_fast8_t *) linep); in print_debug_line_section() local 6459 "is_stmt", default_is_stmt, line_base, in print_debug_line_section() 6618 int line_increment = (line_base in print_debug_line_section()
|