1 // RUN: llvm-tblgen -gen-disassembler -I %p/../../include %s | FileCheck %s
3 // Check that if decoding of an instruction fails and the instruction does not
4 // have a complete decoder method that can determine if the bitpattern is valid
5 // or not then the decoder tries to find a more general instruction that
6 // matches the bitpattern too.
8 include "llvm/Target/Target.td"
10 def archInstrInfo : InstrInfo { }
13 let InstructionSet = archInstrInfo;
16 class TestInstruction : Instruction {
18 let OutOperandList = (outs);
19 let InOperandList = (ins);
21 field bits<8> SoftFail = 0;
24 def InstA : TestInstruction {
25 let Inst = {0,0,0,0,?,?,?,?};
26 let AsmString = "InstA";
29 def InstB : TestInstruction {
30 let Inst = {0,0,0,0,0,0,?,?};
31 let AsmString = "InstB";
32 let DecoderMethod = "DecodeInstB";
33 let hasCompleteDecoder = 0;
36 // CHECK: /* 0 */ MCD::OPC_ExtractField, 4, 4, // Inst{7-4} ...
37 // CHECK-NEXT: /* 3 */ MCD::OPC_FilterValue, 0, 14, 0, // Skip to: 21
38 // CHECK-NEXT: /* 7 */ MCD::OPC_CheckField, 2, 2, 0, 5, 0, // Skip to: 18
39 // CHECK-NEXT: /* 13 */ MCD::OPC_TryDecode, 24, 0, 0, 0, // Opcode: InstB, skip to: 18
40 // CHECK-NEXT: /* 18 */ MCD::OPC_Decode, 23, 1, // Opcode: InstA
41 // CHECK-NEXT: /* 21 */ MCD::OPC_Fail,
43 // CHECK: if (DecodeInstB(MI, insn, Address, Decoder) == MCDisassembler::Fail) { DecodeComplete = false; return MCDisassembler::Fail; }