blob: 77c7a6796ee4c8ab4022a54c7e45316c23c6d188 [file] [log] [blame]
Jakob Stoklund Olesena2da7882012-03-07 16:39:35 +00001// RUN: llvm-tblgen %s | FileCheck %s
NAKAMURA Takumia22657f2013-11-10 14:26:08 +00002// XFAIL: vg_leak
Jakob Stoklund Olesena2da7882012-03-07 16:39:35 +00003
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
Craig Topperb3379c32016-01-13 07:53:11 +000024multiclass 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
Jakob Stoklund Olesena2da7882012-03-07 16:39:35 +000039// CHECK: _v16i8
40// CHECK: Length = 16
41// CHECK: Width = 8
42
43// CHECK: _v1i8
44// CHECK: Length = 1
45// CHECK: Width = 8
46
47// CHECK: _v2i8
48// CHECK: Length = 2
49// CHECK: Width = 8
50
Craig Topperb3379c32016-01-13 07:53:11 +000051// CHECK: def _v32i16
52// CHECK: Length = 32
53// CHECK: Width = 16
54
Jakob Stoklund Olesena2da7882012-03-07 16:39:35 +000055// CHECK: _v3i8
56// CHECK: Length = 3
57// CHECK: Width = 8
58
59// CHECK: _v4i8
60// CHECK: Length = 4
61// CHECK: Width = 8
62
Craig Topperb3379c32016-01-13 07:53:11 +000063// CHECK: _v64i16
64// CHECK: Length = 64
65// CHECK: Width = 16
66
Jakob Stoklund Olesena2da7882012-03-07 16:39:35 +000067// CHECK: _v8i8
68// CHECK: Length = 8
69// CHECK: Width = 8
Craig Topperb3379c32016-01-13 07:53:11 +000070