Searched refs:OpcodeBase (Results 1 – 8 of 8) sorted by relevance
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ObjectYAML/ |
H A D | DWARFEmitter.cpp | 516 uint8_t OpcodeBase, uint8_t AddrSize, in writeLineTableOpcode() argument 521 } else if (Op.Opcode < OpcodeBase) { in writeLineTableOpcode() 555 getStandardOpcodeLengths(uint16_t Version, Optional<uint8_t> OpcodeBase) { in getStandardOpcodeLengths() argument 563 } else if (OpcodeBase) { in getStandardOpcodeLengths() 564 StandardOpcodeLengths.resize(*OpcodeBase > 0 ? *OpcodeBase - 1 : 0, 0); in getStandardOpcodeLengths() 586 getStandardOpcodeLengths(LineTable.Version, LineTable.OpcodeBase)); in emitDebugLine() 587 uint8_t OpcodeBase = LineTable.OpcodeBase in emitDebugLine() local 588 ? *LineTable.OpcodeBase in emitDebugLine() 590 writeInteger(OpcodeBase, BufferOS, DI.IsLittleEndian); in emitDebugLine() 608 writeLineTableOpcode(Op, OpcodeBase, DI.Is64BitAddrSize ? 8 : 4, BufferOS, in emitDebugLine()
|
H A D | DWARFYAML.cpp | 247 IO.mapOptional("OpcodeBase", LineTable.OpcodeBase); in mapping()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/DebugInfo/DWARF/ |
H A D | DWARFDebugLine.cpp | 109 OpcodeBase = 0; in clear() 139 << format(" opcode_base: %u\n", OpcodeBase); in dump() 403 OpcodeBase = DebugLineData.getU8(Cursor); in parse() 405 if (Cursor && OpcodeBase == 0) { in parse() 415 StandardOpcodeLengths.reserve(OpcodeBase - 1); in parse() 416 for (uint32_t I = 1; I < OpcodeBase; ++I) { in parse() 600 static StringRef getOpcodeName(uint8_t Opcode, uint8_t OpcodeBase) { in getOpcodeName() argument 602 if (Opcode < OpcodeBase) in getOpcodeName() 610 StringRef OpcodeName = getOpcodeName(Opcode, LineTable->Prologue.OpcodeBase); in advanceAddr() 642 Opcode >= LineTable->Prologue.OpcodeBase); in advanceAddrForOpcode() [all …]
|
/netbsd-src/external/apache2/llvm/dist/llvm/tools/obj2yaml/ |
H A D | dwarf2yaml.cpp | 379 DebugLines.OpcodeBase = LineData.getU8(&Offset); in dumpDebugLines() 382 for (uint8_t i = 1; i < DebugLines.OpcodeBase; ++i) in dumpDebugLines() 425 } else if (NewOp.Opcode < *DebugLines.OpcodeBase) { in dumpDebugLines()
|
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/DWARF/ |
H A D | DWARFDebugLine.h | 92 uint8_t OpcodeBase; member
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/DWARFLinker/ |
H A D | DWARFStreamer.cpp | 674 unsigned OpcodeBase = Data.getU8(&Offset); in translateLineTable() local 675 Offset += OpcodeBase - 1; in translateLineTable()
|
H A D | DWARFLinker.cpp | 1763 LineTable.Prologue.OpcodeBase > 13) in patchLineTableForUnit() 1773 Params.DWARF2LineOpcodeBase = LineTable.Prologue.OpcodeBase; in patchLineTableForUnit()
|
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ObjectYAML/ |
H A D | DWARFYAML.h | 148 Optional<uint8_t> OpcodeBase; member
|