summaryrefslogtreecommitdiffstats
path: root/llvm/test/TableGen/MultiClassDefName.td
blob: e3a77968f5f7fefcf48237687dba907390da4c57 (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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
// RUN: llvm-tblgen %s | FileCheck %s
// XFAIL: vg_leak

// CHECK: WorldHelloCC
// CHECK-NOT: WorldHelloCC

class C<string n> {
  string name = n;
}

multiclass Names<string n, string m> {
   def CC : C<n>;
   def World#NAME#CC : C<m>;
}

defm Hello : Names<"hello", "world">;

// Ensure that the same anonymous name is used as the prefix for all defs in an
// anonymous multiclass.

class Outer<C i> {
  C Inner = i;
}

multiclass MC<string name> {
  def hi : C<name>;
  def there : Outer<!cast<C>(!strconcat(NAME, "hi"))>;
}

defm : MC<"foo">;

multiclass MC2<string name> {
  def there : Outer<C<name> >;
}

// Ensure that we've correctly captured the reference to name from the implicit
// anonymous C def in the template parameter list of Outer.
// CHECK-NOT: MC2::name

defm : MC2<"bar">;

multiclass MC3<string s> {
  def ZFizz#s : C<s>;
}

defm "" : MC3<"Buzz">;

// CHECK: def ZFizzBuzz
// CHECK: string name = "Buzz";
// CHECK-NOT: MC3::s

multiclass MC4<string s> {
  def NAME#s : C<s>;
}

defm ZTagazok : MC4<"AToi">;

// CHECK: def ZTagazokAToi
// CHECK: string name = "AToi";
// CHECK-NOT: MC4::s

multiclass MC5<C c> {
  def NAME#c.name : C<c.name>;
}

def CTiger : C<"Tiger">;
defm Zebra : MC5<CTiger>;

// CHECK: def ZebraTiger
// CHECK: string name = "Tiger";
// CHECK-NOT: MC5::c

multiclass MC6<C c> {
  def NAME#Tiger#c.name : C<c.name>;
}

def CAligator : C<"Aligator">;
defm Zebra : MC6<CAligator>;

// CHECK: def ZebraTigerAligator
// CHECK: string name = "Aligator";
// CHECK-NOT: MC6::c

OpenPOWER on IntegriCloud