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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
|
{
"cells": [
{
"cell_type": "markdown",
"id": "c45bc113",
"metadata": {},
"source": [
"# LLVM TableGen Kernel"
]
},
{
"cell_type": "markdown",
"id": "483313fc",
"metadata": {},
"source": [
"This notebook is running `llvm-tblgen`."
]
},
{
"cell_type": "code",
"execution_count": 1,
"id": "e238dd42",
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"------------- Classes -----------------\n",
"class Foo {\n",
"}\n",
"------------- Defs -----------------\n"
]
}
],
"source": [
"%reset\n",
"// This is some tablegen\n",
"class Foo {}"
]
},
{
"cell_type": "markdown",
"id": "27f5aa83",
"metadata": {},
"source": [
"Errors printed to stderr are shown."
]
},
{
"cell_type": "code",
"execution_count": 2,
"id": "e8b10293",
"metadata": {
"scrolled": true
},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"<stdin>:1:1: error: Unexpected token at top level\n",
"This is not tablegen.\n",
"^\n"
]
}
],
"source": [
"%reset\n",
"This is not tablegen."
]
},
{
"cell_type": "markdown",
"id": "83907141",
"metadata": {},
"source": [
"Add some classes to get some output."
]
},
{
"cell_type": "code",
"execution_count": 3,
"id": "4ca8a9cb",
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"------------- Classes -----------------\n",
"class Stuff {\n",
"}\n",
"------------- Defs -----------------\n",
"def thing {\t// Stuff\n",
"}\n"
]
}
],
"source": [
"%reset\n",
"class Stuff {}\n",
"def thing : Stuff {}"
]
},
{
"cell_type": "markdown",
"id": "3f29d1a0",
"metadata": {},
"source": [
"By default cells are connected. Meaning that we cache the code and magic directives from the previously run cells.\n",
"\n",
"This means that the next cell still sees the `Stuff` class."
]
},
{
"cell_type": "code",
"execution_count": 4,
"id": "3a204c70",
"metadata": {
"scrolled": true
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"------------- Classes -----------------\n",
"class Stuff {\n",
"}\n",
"------------- Defs -----------------\n",
"def other_thing {\t// Stuff\n",
"}\n",
"def thing {\t// Stuff\n",
"}\n"
]
}
],
"source": [
"def other_thing : Stuff {}"
]
},
{
"cell_type": "markdown",
"id": "473b0a1c",
"metadata": {},
"source": [
"You can use the magic `%reset` to clear this cache and start fresh."
]
},
{
"cell_type": "code",
"execution_count": 5,
"id": "1f674a03",
"metadata": {},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"<stdin>:1:19: error: Couldn't find class 'Stuff'\n",
"def other_thing : Stuff {}\n",
" ^\n"
]
}
],
"source": [
"%reset\n",
"def other_thing : Stuff {}"
]
},
{
"cell_type": "markdown",
"id": "f6d4613b",
"metadata": {},
"source": [
"There is a \"magic\" directive `%args` that you can use to send command line arguments to `llvm-tblgen`.\n",
"\n",
"For example, here we have some code that shows a warning."
]
},
{
"cell_type": "code",
"execution_count": 6,
"id": "2586893b",
"metadata": {},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"<stdin>:1:25: warning: unused template argument: Thing:B\n",
"class Thing <int A, int B> {\n",
" ^\n"
]
}
],
"source": [
"%reset\n",
"class Thing <int A, int B> {\n",
" int num = A;\n",
"}"
]
},
{
"cell_type": "markdown",
"id": "41be44e7",
"metadata": {},
"source": [
"We can pass an argument to ignore that warning."
]
},
{
"cell_type": "code",
"execution_count": 7,
"id": "ae078bc4",
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"------------- Classes -----------------\n",
"class Thing<int Thing:A = ?, int Thing:B = ?> {\n",
" int num = Thing:A;\n",
"}\n",
"------------- Defs -----------------\n"
]
}
],
"source": [
"%args --no-warn-on-unused-template-args"
]
},
{
"cell_type": "markdown",
"id": "316b9543",
"metadata": {},
"source": [
"If you have a run of cells without a `%reset`, the most recent `%args` is used."
]
},
{
"cell_type": "code",
"execution_count": 8,
"id": "9634170c",
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"------------- Classes -----------------\n",
"class Thing<int Thing:A = ?, int Thing:B = ?> {\n",
" int num = Thing:A;\n",
"}\n",
"------------- Defs -----------------\n"
]
}
],
"source": [
"// This passes --no-warn-on-unused-template-args"
]
},
{
"cell_type": "code",
"execution_count": 9,
"id": "fa15b542",
"metadata": {},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"<stdin>:1:25: warning: unused template argument: Thing:B\n",
"class Thing <int A, int B> {\n",
" ^\n"
]
}
],
"source": [
"%args\n",
"// Now we're not passing the argument so the warning comes back."
]
},
{
"cell_type": "markdown",
"id": "e112f1d4",
"metadata": {},
"source": [
"If there are many `%args` in a cell, the last one is used."
]
},
{
"cell_type": "code",
"execution_count": 10,
"id": "2ac46c7a",
"metadata": {},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"<stdin>:1:18: warning: unused template argument: Thing:A\n",
"class Thing <int A, int B> {}\n",
" ^\n",
"<stdin>:1:25: warning: unused template argument: Thing:B\n",
"class Thing <int A, int B> {}\n",
" ^\n"
]
}
],
"source": [
"%reset\n",
"%args --no-warn-on-unused-template-args\n",
"%args\n",
"class Thing <int A, int B> {}"
]
}
],
"metadata": {
"kernelspec": {
"display_name": "LLVM TableGen",
"language": "tablegen",
"name": "tablegen"
},
"language_info": {
"file_extension": ".td",
"mimetype": "text/x-tablegen",
"name": "tablegen",
"pygments_lexer": "text"
}
},
"nbformat": 4,
"nbformat_minor": 5
}
|