[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / llvm / test / TableGen / RegisterEncoder.td
blobb5fe2d206729c089389754093995b8ef98606a37
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 foo : 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 ::foo: {
32 // CHECK:   op = barEncoder
33 // CHECK:   op &= UINT64_C(255);
34 // CHECK:   Value |= op;
35 // CHECK:   break;
36 // CHECK: }