Home
last modified time | relevance | path

Searched refs:OpcodeBase (Results 1 – 9 of 9) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFDebugLine.cpp109 OpcodeBase = 0; in clear()
139 << format(" opcode_base: %u\n", OpcodeBase); in dump()
423 OpcodeBase = DebugLineData.getU8(Cursor); in parse()
425 if (Cursor && OpcodeBase == 0) { in parse()
435 StandardOpcodeLengths.reserve(OpcodeBase - 1); in parse()
436 for (uint32_t I = 1; I < OpcodeBase; ++I) { in parse()
627 static StringRef getOpcodeName(uint8_t Opcode, uint8_t OpcodeBase) { in getOpcodeName() argument
629 if (Opcode < OpcodeBase) in getOpcodeName()
638 StringRef OpcodeName = getOpcodeName(Opcode, LineTable->Prologue.OpcodeBase); in advanceAddrOpIndex()
705 Opcode >= LineTable->Prologue.OpcodeBase); in advanceForOpcode()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DDWARFEmitter.cpp544 uint8_t OpcodeBase, uint8_t AddrSize, in writeLineTableOpcode() argument
549 } else if (Op.Opcode < OpcodeBase) { in writeLineTableOpcode()
583 getStandardOpcodeLengths(uint16_t Version, std::optional<uint8_t> OpcodeBase) { in getStandardOpcodeLengths() argument
591 } else if (OpcodeBase) { in getStandardOpcodeLengths()
592 StandardOpcodeLengths.resize(*OpcodeBase > 0 ? *OpcodeBase - 1 : 0, 0); in getStandardOpcodeLengths()
614 getStandardOpcodeLengths(LineTable.Version, LineTable.OpcodeBase)); in emitDebugLine()
615 uint8_t OpcodeBase = LineTable.OpcodeBase in emitDebugLine() local
616 ? *LineTable.OpcodeBase in emitDebugLine()
618 writeInteger(OpcodeBase, BufferOS, DI.IsLittleEndian); in emitDebugLine()
636 writeLineTableOpcode(Op, OpcodeBase, DI.Is64BitAddrSize ? 8 : 4, BufferOS, in emitDebugLine()
H A DDWARFYAML.cpp290 IO.mapOptional("OpcodeBase", LineTable.OpcodeBase); in mapping()
/freebsd/contrib/llvm-project/llvm/lib/DWARFLinker/Parallel/
H A DDebugLineSectionEmitter.h283 Section.emitIntVal(P.OpcodeBase, 1); in emitLineTableProloguePayload()
299 Params.DWARF2LineOpcodeBase = LineTable.Prologue.OpcodeBase; in emitLineTableRows()
H A DDWARFLinkerTypeUnit.cpp34 LineTable.Prologue.OpcodeBase = 13; in TypeUnit()
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFDebugLine.h89 uint8_t OpcodeBase; member
/freebsd/contrib/llvm-project/llvm/lib/DWARFLinker/
H A DDWARFStreamer.cpp
/freebsd/contrib/llvm-project/llvm/lib/DWARFLinker/Classic/
H A DDWARFStreamer.cpp1021 MS->emitInt8(P.OpcodeBase); in emitLineTableProloguePayload()
1043 Params.DWARF2LineOpcodeBase = LineTable.Prologue.OpcodeBase; in emitLineTableRows()
/freebsd/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DDWARFYAML.h175 std::optional<uint8_t> OpcodeBase; member