blob: 074c7c53e85c442de04498ac73e38eb63d9c1b6c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
// RUN: not llvm-tblgen -gen-disassembler -I %p/../../../include %s -DTEST1 2>&1 | FileCheck %s --check-prefix=CHECK-TEST1
// RUN: not llvm-tblgen -gen-disassembler -I %p/../../../include %s -DTEST2 2>&1 | FileCheck %s --check-prefix=CHECK-TEST2
// RUN: not llvm-tblgen -gen-disassembler -I %p/../../../include %s -DTEST3 2>&1 | FileCheck %s --check-prefix=CHECK-TEST3
include "llvm/Target/Target.td"
def archInstrInfo : InstrInfo { }
def arch : Target {
let InstructionSet = archInstrInfo;
}
#ifdef TEST1
// CHECK-TEST1: [[#@LINE+1]]:5: error: foo: Size is 16 bits, but Inst bits beyond that are not zero/unset
def foo : Instruction {
let OutOperandList = (outs);
let InOperandList = (ins i32imm:$factor);
let Size = 2;
field bits<24> Inst;
field bits<24> SoftFail = 0;
bits<8> factor;
let Inst{15...8} = factor{7...0};
let Inst{20} = 1;
}
#endif
#ifdef TEST2
// CHECK-TEST2: [[#@LINE+1]]:5: error: foo: Size is 16 bits, but SoftFail bits beyond that are not zero/unset
def foo : Instruction {
let OutOperandList = (outs);
let InOperandList = (ins i32imm:$factor);
let Size = 2;
field bits<24> Inst;
field bits<24> SoftFail = 0;
bits<8> factor;
let Inst{15...8} = factor{7...0};
let Inst{23...16} = 0;
let SoftFail{20} = 1;
}
#endif
#ifdef TEST3
// CHECK-TEST3: [[#@LINE+1]]:5: error: bar: Size is 16 bits, but Inst specifies only 8 bits
def bar : Instruction {
let OutOperandList = (outs);
let InOperandList = (ins i32imm:$factor);
let Size = 2;
field bits<8> Inst;
field bits<8> SoftFail = 0;
bits<4> factor;
let Inst{4...1} = factor{3...0};
}
#endif
|