Home
last modified time | relevance | path

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

/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-16.0/llvm/lib/ObjectYAML/
DDWARFEmitter.cpp517 uint8_t OpcodeBase, uint8_t AddrSize, in writeLineTableOpcode() argument
522 } else if (Op.Opcode < OpcodeBase) { in writeLineTableOpcode()
556 getStandardOpcodeLengths(uint16_t Version, std::optional<uint8_t> OpcodeBase) { in getStandardOpcodeLengths() argument
564 } else if (OpcodeBase) { in getStandardOpcodeLengths()
565 StandardOpcodeLengths.resize(*OpcodeBase > 0 ? *OpcodeBase - 1 : 0, 0); in getStandardOpcodeLengths()
587 getStandardOpcodeLengths(LineTable.Version, LineTable.OpcodeBase)); in emitDebugLine()
588 uint8_t OpcodeBase = LineTable.OpcodeBase in emitDebugLine() local
589 ? *LineTable.OpcodeBase in emitDebugLine()
591 writeInteger(OpcodeBase, BufferOS, DI.IsLittleEndian); in emitDebugLine()
609 writeLineTableOpcode(Op, OpcodeBase, DI.Is64BitAddrSize ? 8 : 4, BufferOS, in emitDebugLine()
DDWARFYAML.cpp247 IO.mapOptional("OpcodeBase", LineTable.OpcodeBase); in mapping()
/external/swiftshader/third_party/llvm-16.0/llvm/lib/DebugInfo/DWARF/
DDWARFDebugLine.cpp109 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()
604 static StringRef getOpcodeName(uint8_t Opcode, uint8_t OpcodeBase) { in getOpcodeName() argument
606 if (Opcode < OpcodeBase) in getOpcodeName()
614 StringRef OpcodeName = getOpcodeName(Opcode, LineTable->Prologue.OpcodeBase); in advanceAddr()
646 Opcode >= LineTable->Prologue.OpcodeBase); in advanceAddrForOpcode()
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/DWARF/
DDWARFDebugLine.cpp92 OpcodeBase = 0; in clear()
114 << format(" opcode_base: %u\n", OpcodeBase); in dump()
341 OpcodeBase = DebugLineData.getU8(OffsetPtr); in parse()
343 StandardOpcodeLengths.reserve(OpcodeBase - 1); in parse()
344 for (uint32_t I = 1; I < OpcodeBase; ++I) { in parse()
693 } else if (Opcode < Prologue.OpcodeBase) { in parse()
772 uint8_t AdjustOpcode = 255 - Prologue.OpcodeBase; in parse()
871 uint8_t AdjustOpcode = Opcode - Prologue.OpcodeBase; in parse()
/external/llvm/include/llvm/DebugInfo/DWARF/
DDWARFDebugLine.h61 uint8_t OpcodeBase; member
/external/swiftshader/third_party/llvm-10.0/llvm/lib/ObjectYAML/
DDWARFEmitter.cpp225 writeInteger((uint8_t)LineTable.OpcodeBase, OS, DI.IsLittleEndian); in EmitDebugLine()
260 } else if (Op.Opcode < LineTable.OpcodeBase) { in EmitDebugLine()
DDWARFYAML.cpp159 IO.mapRequired("OpcodeBase", LineTable.OpcodeBase); in mapping()
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/DWARF/
DDWARFDebugLine.h92 uint8_t OpcodeBase; member
/external/swiftshader/third_party/llvm-16.0/llvm/include/llvm/DebugInfo/DWARF/
DDWARFDebugLine.h88 uint8_t OpcodeBase; member
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ObjectYAML/
DDWARFYAML.h136 uint8_t OpcodeBase; member
/external/swiftshader/third_party/llvm-16.0/llvm/lib/DWARFLinker/
DDWARFStreamer.cpp666 unsigned OpcodeBase = Data.getU8(&Offset); in translateLineTable() local
667 Offset += OpcodeBase - 1; in translateLineTable()
DDWARFLinker.cpp1881 LineTable.Prologue.OpcodeBase > 13) in patchLineTableForUnit()
1891 Params.DWARF2LineOpcodeBase = LineTable.Prologue.OpcodeBase; in patchLineTableForUnit()
/external/swiftshader/third_party/llvm-16.0/llvm/include/llvm/ObjectYAML/
DDWARFYAML.h149 std::optional<uint8_t> OpcodeBase; member
/external/llvm/tools/dsymutil/
DDwarfLinker.cpp3094 LineTable.Prologue.OpcodeBase > 13) in patchLineTableForUnit()
3098 Params.DWARF2LineOpcodeBase = LineTable.Prologue.OpcodeBase; in patchLineTableForUnit()