Re-land [openmp] Fix warnings when building on Windows with latest MSVC or Clang...
[llvm-project.git] / llvm / test / TableGen / RegisterEncoder.td
blob3038eab42411ce2db3c4543ce084c9f5029673f7
1 // RUN: llvm-tblgen -gen-emitter -I %p/../../include %s | FileCheck %s
3 // Check that EncoderMethod for RegisterOperand is working correctly
5 include "llvm/Target/Target.td"
7 def ArchInstrInfo : InstrInfo { }
9 def Arch : Target {
10   let InstructionSet = ArchInstrInfo;
13 def Reg : Register<"reg">;
15 def RegClass : RegisterClass<"foo", [i32], 0, (add Reg)>;
17 def RegOperand : RegisterOperand<RegClass> {
18   let EncoderMethod = "barEncoder";
21 def foo1 : Instruction {
22   let Size = 1;
24   let OutOperandList = (outs);
25   let InOperandList = (ins RegOperand:$bar);
27   bits<8> bar;
28   bits<8> Inst = bar;
31 // CHECK: case ::foo1: {
32 // CHECK:   op = barEncoder
33 // CHECK:   op &= UINT64_C(255);
34 // CHECK:   Value |= op;
35 // CHECK:   break;
36 // CHECK: }
39 // Also check that it works from a complex operand.
41 def RegPair : Operand<i32> {
42   let MIOperandInfo = (ops RegOperand, RegOperand);
45 def foo2 : Instruction {
46   let Size = 1;
48   let OutOperandList = (outs);
49   let InOperandList = (ins (RegPair $r1, $r2):$r12);
51   bits<4> r1;
52   bits<4> r2;
53   bits<8> Inst;
54   let Inst{3-0} = r1;
55   let Inst{7-4} = r2;
58 // CHECK: case ::foo2: {
59 // CHECK:   op = barEncoder
60 // CHECK:   op &= UINT64_C(15);
61 // CHECK:   Value |= op;
62 // CHECK:   op = barEncoder
63 // CHECK:   op &= UINT64_C(15);
64 // CHECK:   Value |= op;
65 // CHECK:   break;
66 // CHECK: }