Home
last modified time | relevance | path

Searched full:opcodebase (Results 1 – 20 of 20) sorted by relevance

/external/swiftshader/third_party/LLVM/lib/DebugInfo/
DDWARFDebugLine.cpp27 << 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()
DDWARFDebugLine.h36 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/
DDWARFDebugLine.cpp25 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/
Ddwarf2yaml.cpp265 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/
DDWARFDebugLine.cpp73 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/
DDWARFYAML.cpp160 IO.mapRequired("OpcodeBase", LineTable.OpcodeBase); in mapping()
DDWARFEmitter.cpp226 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/
DDWARF-debug_line.yaml504 OpcodeBase: 13
546 #CHECK: OpcodeBase: 13
DDWARF5-debug_info.yaml466 OpcodeBase: 13
DDWARF-debug_info.yaml465 OpcodeBase: 13
/external/llvm/include/llvm/DebugInfo/DWARF/
DDWARFDebugLine.h61 uint8_t OpcodeBase; member
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/DebugInfo/DWARF/
DDwarfGenerator.cpp180 P.OpcodeBase = 13; in createBasicPrologue()
359 Asm.emitInt8(Prologue.OpcodeBase); in writeProloguePayload()
DDWARFDebugInfoTest.cpp2067 OpcodeBase: 13 in TEST()
2137 OpcodeBase: 13 in TEST()
2209 OpcodeBase: 13 in TEST()
2282 OpcodeBase: 13 in TEST()
2370 OpcodeBase: 13 in TEST()
DDWARFDebugLineTest.cpp184 EXPECT_EQ(Prologue.OpcodeBase, 13u); in checkDefaultPrologue()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ObjectYAML/
DDWARFYAML.h137 uint8_t OpcodeBase; member
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/DWARF/
DDWARFDebugLine.h92 uint8_t OpcodeBase; member
/external/swiftshader/third_party/llvm-7.0/llvm/tools/dsymutil/
DDwarfLinker.cpp1795 LineTable.Prologue.OpcodeBase > 13) in patchLineTableForUnit()
1805 Params.DWARF2LineOpcodeBase = LineTable.Prologue.OpcodeBase; in patchLineTableForUnit()
/external/llvm/tools/dsymutil/
DDwarfLinker.cpp3094 LineTable.Prologue.OpcodeBase > 13) in patchLineTableForUnit()
3098 Params.DWARF2LineOpcodeBase = LineTable.Prologue.OpcodeBase; in patchLineTableForUnit()
/external/v8/src/ppc/
Dconstants-ppc.h2816 inline Opcode OpcodeBase() const { in OpcodeBase() function
Dsimulator-ppc.cc1626 uint32_t opcode = instr->OpcodeBase(); in ExecuteGeneric()