Searched full:opcodebase (Results 1 – 20 of 20) sorted by relevance
/external/swiftshader/third_party/LLVM/lib/DebugInfo/ |
D | DWARFDebugLine.cpp | 27 << format(" opcode_base: %u\n", OpcodeBase); in dump() 148 prologue->OpcodeBase = debug_line_data.getU8(offset_ptr); in parsePrologue() 150 prologue->StandardOpcodeLengths.reserve(prologue->OpcodeBase-1); in parsePrologue() 151 for (uint32_t i = 1; i < prologue->OpcodeBase; ++i) { in parsePrologue() 276 } else if (opcode < prologue->OpcodeBase) { in parseStatementTable() 337 uint8_t adjust_opcode = 255 - prologue->OpcodeBase; in parseStatementTable() 421 uint8_t adjust_opcode = opcode - prologue->OpcodeBase; in parseStatementTable()
|
D | DWARFDebugLine.h | 36 DefaultIsStmt(0), LineBase(0), LineRange(0), OpcodeBase(0) {} in Prologue() 57 uint8_t OpcodeBase; member 77 MinInstLength = LineBase = LineRange = OpcodeBase = 0; in clear()
|
/external/llvm/lib/DebugInfo/DWARF/ |
D | DWARFDebugLine.cpp | 25 OpcodeBase = 0; in clear() 42 << format(" opcode_base: %u\n", OpcodeBase); in dump() 92 OpcodeBase = debug_line_data.getU8(offset_ptr); in parse() 94 StandardOpcodeLengths.reserve(OpcodeBase - 1); in parse() 95 for (uint32_t i = 1; i < OpcodeBase; ++i) { in parse() 349 } else if (opcode < Prologue.OpcodeBase) { in parse() 410 uint8_t adjust_opcode = 255 - Prologue.OpcodeBase; in parse() 494 uint8_t adjust_opcode = opcode - Prologue.OpcodeBase; in parse()
|
/external/swiftshader/third_party/llvm-7.0/llvm/tools/obj2yaml/ |
D | dwarf2yaml.cpp | 265 DebugLines.OpcodeBase = LineData.getU8(&Offset); in dumpDebugLines() 267 DebugLines.StandardOpcodeLengths.reserve(DebugLines.OpcodeBase - 1); in dumpDebugLines() 268 for (uint8_t i = 1; i < DebugLines.OpcodeBase; ++i) in dumpDebugLines() 311 } else if (NewOp.Opcode < DebugLines.OpcodeBase) { in dumpDebugLines()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/DWARF/ |
D | DWARFDebugLine.cpp | 73 OpcodeBase = 0; in clear() 95 << format(" opcode_base: %u\n", OpcodeBase); in dump() 333 OpcodeBase = DebugLineData.getU8(OffsetPtr); in parse() 335 StandardOpcodeLengths.reserve(OpcodeBase - 1); in parse() 336 for (uint32_t I = 1; I < OpcodeBase; ++I) { in parse() 646 } else if (Opcode < Prologue.OpcodeBase) { in parse() 726 uint8_t AdjustOpcode = 255 - Prologue.OpcodeBase; in parse() 825 uint8_t AdjustOpcode = Opcode - Prologue.OpcodeBase; in parse()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/ObjectYAML/ |
D | DWARFYAML.cpp | 160 IO.mapRequired("OpcodeBase", LineTable.OpcodeBase); in mapping()
|
D | DWARFEmitter.cpp | 226 writeInteger((uint8_t)LineTable.OpcodeBase, OS, DI.IsLittleEndian); in EmitDebugLine() 261 } else if (Op.Opcode < LineTable.OpcodeBase) { in EmitDebugLine()
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/ObjectYAML/MachO/ |
D | DWARF-debug_line.yaml | 504 OpcodeBase: 13 546 #CHECK: OpcodeBase: 13
|
D | DWARF5-debug_info.yaml | 466 OpcodeBase: 13
|
D | DWARF-debug_info.yaml | 465 OpcodeBase: 13
|
/external/llvm/include/llvm/DebugInfo/DWARF/ |
D | DWARFDebugLine.h | 61 uint8_t OpcodeBase; member
|
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/DebugInfo/DWARF/ |
D | DwarfGenerator.cpp | 180 P.OpcodeBase = 13; in createBasicPrologue() 359 Asm.emitInt8(Prologue.OpcodeBase); in writeProloguePayload()
|
D | DWARFDebugInfoTest.cpp | 2067 OpcodeBase: 13 in TEST() 2137 OpcodeBase: 13 in TEST() 2209 OpcodeBase: 13 in TEST() 2282 OpcodeBase: 13 in TEST() 2370 OpcodeBase: 13 in TEST()
|
D | DWARFDebugLineTest.cpp | 184 EXPECT_EQ(Prologue.OpcodeBase, 13u); in checkDefaultPrologue()
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ObjectYAML/ |
D | DWARFYAML.h | 137 uint8_t OpcodeBase; member
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/DWARF/ |
D | DWARFDebugLine.h | 92 uint8_t OpcodeBase; member
|
/external/swiftshader/third_party/llvm-7.0/llvm/tools/dsymutil/ |
D | DwarfLinker.cpp | 1795 LineTable.Prologue.OpcodeBase > 13) in patchLineTableForUnit() 1805 Params.DWARF2LineOpcodeBase = LineTable.Prologue.OpcodeBase; in patchLineTableForUnit()
|
/external/llvm/tools/dsymutil/ |
D | DwarfLinker.cpp | 3094 LineTable.Prologue.OpcodeBase > 13) in patchLineTableForUnit() 3098 Params.DWARF2LineOpcodeBase = LineTable.Prologue.OpcodeBase; in patchLineTableForUnit()
|
/external/v8/src/ppc/ |
D | constants-ppc.h | 2816 inline Opcode OpcodeBase() const { in OpcodeBase() function
|
D | simulator-ppc.cc | 1626 uint32_t opcode = instr->OpcodeBase(); in ExecuteGeneric()
|