2011-10-06 15:39:59 +02:00
|
|
|
// RUN: llvm-tblgen %s | FileCheck %s
|
2010-06-18 21:53:41 +02:00
|
|
|
|
|
|
|
class XD { bits<4> Prefix = 11; }
|
|
|
|
// CHECK: Prefix = { 1, 1, 0, 0 };
|
|
|
|
class XS { bits<4> Prefix = 12; }
|
|
|
|
class VEX { bit hasVEX_4VPrefix = 1; }
|
|
|
|
|
|
|
|
def xd : XD;
|
|
|
|
|
|
|
|
class BaseI {
|
|
|
|
bits<4> Prefix = 0;
|
|
|
|
bit hasVEX_4VPrefix = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
class I<bits<4> op> : BaseI {
|
|
|
|
bits<4> opcode = op;
|
|
|
|
int val = !if(!eq(Prefix, xd.Prefix), 7, 21);
|
2010-06-22 22:30:50 +02:00
|
|
|
int check = !if(hasVEX_4VPrefix, 0, 10);
|
2010-06-18 21:53:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
multiclass R {
|
|
|
|
def rr : I<4>;
|
|
|
|
}
|
|
|
|
|
|
|
|
multiclass M {
|
|
|
|
def rm : I<2>;
|
|
|
|
}
|
|
|
|
|
|
|
|
multiclass Y {
|
|
|
|
defm SS : R, M, XD;
|
|
|
|
// CHECK: Prefix = { 1, 1, 0, 0 };
|
|
|
|
// CHECK: Prefix = { 1, 1, 0, 0 };
|
|
|
|
defm SD : R, M, XS;
|
|
|
|
}
|
|
|
|
|
2010-06-22 22:30:50 +02:00
|
|
|
// CHECK: int check = 0;
|
2010-06-18 21:53:41 +02:00
|
|
|
defm Instr : Y, VEX;
|
2010-10-06 00:51:56 +02:00
|
|
|
|
|
|
|
|
|
|
|
// Anonymous defm.
|
|
|
|
|
|
|
|
multiclass SomeAnonymous<int x> {
|
|
|
|
def rm;
|
|
|
|
def mr;
|
|
|
|
}
|
|
|
|
|
|
|
|
// These multiclasses shouldn't conflict.
|
|
|
|
defm : SomeAnonymous<1>;
|
|
|
|
defm : SomeAnonymous<2>;
|