71 lines · plain
1// RUN: llvm-tblgen %s | FileCheck %s2// XFAIL: vg_leak3 4class Type<string name, int length, int width> {5 string Name = name;6 int Length = length;7 int Width = width;8}9 10multiclass OT1<string ss, int l, int w> {11 def _#NAME# : Type<ss, l, w>;12}13multiclass OT2<string ss, int w> {14 defm v1#NAME# : OT1<!strconcat( "v1", ss), 1, w>;15 defm v2#NAME# : OT1<!strconcat( "v2", ss), 2, w>;16 defm v3#NAME# : OT1<!strconcat( "v3", ss), 3, w>;17 defm v4#NAME# : OT1<!strconcat( "v4", ss), 4, w>;18 defm v8#NAME# : OT1<!strconcat( "v8", ss), 8, w>;19 defm v16#NAME# : OT1<!strconcat("v16", ss), 16, w>;20}21 22defm i8 : OT2<"i8", 8>;23 24multiclass OT3<string ss, int w> {25 defm v32#NAME : OT1<!strconcat("v32", ss), 32, w>;26}27 28multiclass OT4<string ss, int w> {29 defm v64#NAME : OT1<!strconcat("v64", ss), 64, w>;30}31 32multiclass OT5<string ss, int w> {33 defm NAME : OT3<ss, w>;34 defm NAME : OT4<ss, w>;35}36 37defm i16 : OT5<"i16", 16>;38 39// CHECK: _v16i840// CHECK: Length = 1641// CHECK: Width = 842 43// CHECK: _v1i844// CHECK: Length = 145// CHECK: Width = 846 47// CHECK: _v2i848// CHECK: Length = 249// CHECK: Width = 850 51// CHECK: def _v32i1652// CHECK: Length = 3253// CHECK: Width = 1654 55// CHECK: _v3i856// CHECK: Length = 357// CHECK: Width = 858 59// CHECK: _v4i860// CHECK: Length = 461// CHECK: Width = 862 63// CHECK: _v64i1664// CHECK: Length = 6465// CHECK: Width = 1666 67// CHECK: _v8i868// CHECK: Length = 869// CHECK: Width = 870 71