Lines Matching defs:OpcodeBase
109 OpcodeBase = 0;
139 << format(" opcode_base: %u\n", OpcodeBase);
423 OpcodeBase = DebugLineData.getU8(Cursor);
425 if (Cursor && OpcodeBase == 0) {
435 StandardOpcodeLengths.reserve(OpcodeBase - 1);
436 for (uint32_t I = 1; I < OpcodeBase; ++I) {
627 static StringRef getOpcodeName(uint8_t Opcode, uint8_t OpcodeBase) {
629 if (Opcode < OpcodeBase)
638 StringRef OpcodeName = getOpcodeName(Opcode, LineTable->Prologue.OpcodeBase);
705 Opcode >= LineTable->Prologue.OpcodeBase);
708 getOpcodeName(Opcode, LineTable->Prologue.OpcodeBase);
722 uint8_t AdjustedOpcode = OpcodeValue - LineTable->Prologue.OpcodeBase;
1057 } else if (Opcode < Prologue.OpcodeBase) {