forked from llvm/llvm-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMnemonicAlias.td
41 lines (30 loc) · 1.24 KB
/
MnemonicAlias.td
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
// RUN: llvm-tblgen -gen-asm-matcher -I %p/../../include %s | FileCheck %s
include "llvm/Target/Target.td"
def ArchInstrInfo : InstrInfo { }
def Arch : Target {
let InstructionSet = ArchInstrInfo;
}
def Reg : Register<"reg">;
def RegClass : RegisterClass<"foo", [i32], 0, (add Reg)>;
def AsmCond1 : SubtargetFeature<"cond1", "cond1", "true", "">;
def AsmCond2 : SubtargetFeature<"cond2", "cond2", "true", "">;
def Subtarget1 : Predicate<"Pred1">, AssemblerPredicate<(all_of AsmCond1)>;
def Subtarget2 : Predicate<"Pred2">, AssemblerPredicate<(all_of AsmCond2)>;
multiclass DefInstruction<string name, dag outs, dag ins, Predicate pred> {
def "" : Instruction {
let Size = 2;
let OutOperandList = outs;
let InOperandList = ins;
let AsmString = name;
let Predicates = [pred];
}
def : MnemonicAlias<name # "_alias", name>;
}
defm FooInst1 : DefInstruction<"foo", (outs), (ins), Subtarget1>;
defm FooInst2 : DefInstruction<"foo", (outs), (ins), Subtarget2>;
// Check that applyMnemonicAliases maps "foo_alias" to "foo" once only and
// without checking any predicates.
// CHECK: if (memcmp(Mnemonic.data()+0, "foo_alias", 9) != 0)
// CHECK-NEXT: break;
// CHECK-NEXT: Mnemonic = "foo"; // "foo_alias"
// CHECK-NEXT: return;