blob: 5eb07eb1e996c6dbfbea2737caea4a2ff5895fe1 [file] [log] [blame]
Chris Lattnerf5bd1b72003-10-05 19:27:59 +00001//===- Record.h - Classes to represent Table Records ------------*- C++ -*-===//
Misha Brukman650ba8e2005-04-22 00:00:37 +00002//
John Criswelld3032032003-10-20 20:20:30 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattner8adcd9f2007-12-29 20:37:13 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukman650ba8e2005-04-22 00:00:37 +00007//
John Criswelld3032032003-10-20 20:20:30 +00008//===----------------------------------------------------------------------===//
Chris Lattnerf5bd1b72003-10-05 19:27:59 +00009//
10// This file defines the main TableGen data structures, including the TableGen
11// types, values, and high-level data structures.
12//
13//===----------------------------------------------------------------------===//
14
15#ifndef RECORD_H
16#define RECORD_H
17
Chris Lattnerbd9b9212009-03-13 16:09:24 +000018#include "TGSourceMgr.h"
Argyrios Kyrtzidis9e50bff2008-10-22 09:54:13 +000019#include "llvm/Support/DataTypes.h"
Chris Lattnerf5bd1b72003-10-05 19:27:59 +000020#include <map>
Bill Wendling9bfb1e12006-12-07 22:21:48 +000021#include <ostream>
Chris Lattnerf5bd1b72003-10-05 19:27:59 +000022
Brian Gaeke960707c2003-11-11 22:41:34 +000023namespace llvm {
Chris Lattnerbd9b9212009-03-13 16:09:24 +000024
Chris Lattneref943742005-04-19 03:36:21 +000025// RecTy subclasses.
Chris Lattnerf5bd1b72003-10-05 19:27:59 +000026class BitRecTy;
27class BitsRecTy;
28class IntRecTy;
29class StringRecTy;
30class ListRecTy;
31class CodeRecTy;
32class DagRecTy;
33class RecordRecTy;
34
Chris Lattneref943742005-04-19 03:36:21 +000035// Init subclasses.
Chris Lattner7dfc2d22004-10-27 16:14:51 +000036struct Init;
Chris Lattnerf5bd1b72003-10-05 19:27:59 +000037class UnsetInit;
38class BitInit;
39class BitsInit;
40class IntInit;
41class StringInit;
42class CodeInit;
43class ListInit;
Chris Lattner51ffbf12006-03-31 21:53:49 +000044class BinOpInit;
Chris Lattnerf5bd1b72003-10-05 19:27:59 +000045class DefInit;
46class DagInit;
47class TypedInit;
48class VarInit;
49class FieldInit;
50class VarBitInit;
Chris Lattner577fc3f2004-07-27 01:01:21 +000051class VarListElementInit;
Chris Lattnerf5bd1b72003-10-05 19:27:59 +000052
Chris Lattneref943742005-04-19 03:36:21 +000053// Other classes.
Chris Lattnerf5bd1b72003-10-05 19:27:59 +000054class Record;
Chris Lattneref943742005-04-19 03:36:21 +000055class RecordVal;
Chris Lattnerf5bd1b72003-10-05 19:27:59 +000056
57//===----------------------------------------------------------------------===//
58// Type Classes
59//===----------------------------------------------------------------------===//
60
61struct RecTy {
62 virtual ~RecTy() {}
63
Chris Lattner8b9ecda2007-11-20 22:25:16 +000064 virtual std::string getAsString() const = 0;
Chris Lattner1b1e96b2007-11-22 20:51:34 +000065 void print(std::ostream &OS) const { OS << getAsString(); }
Chris Lattnerf5bd1b72003-10-05 19:27:59 +000066 void dump() const;
67
68 /// typeIsConvertibleTo - Return true if all values of 'this' type can be
69 /// converted to the specified type.
70 virtual bool typeIsConvertibleTo(const RecTy *RHS) const = 0;
71
72public: // These methods should only be called from subclasses of Init
73 virtual Init *convertValue( UnsetInit *UI) { return 0; }
74 virtual Init *convertValue( BitInit *BI) { return 0; }
75 virtual Init *convertValue( BitsInit *BI) { return 0; }
76 virtual Init *convertValue( IntInit *II) { return 0; }
77 virtual Init *convertValue(StringInit *SI) { return 0; }
78 virtual Init *convertValue( ListInit *LI) { return 0; }
Chris Lattner51ffbf12006-03-31 21:53:49 +000079 virtual Init *convertValue( BinOpInit *UI) { return 0; }
Chris Lattnerf5bd1b72003-10-05 19:27:59 +000080 virtual Init *convertValue( CodeInit *CI) { return 0; }
81 virtual Init *convertValue(VarBitInit *VB) { return 0; }
82 virtual Init *convertValue( DefInit *DI) { return 0; }
83 virtual Init *convertValue( DagInit *DI) { return 0; }
84 virtual Init *convertValue( TypedInit *TI) { return 0; }
85 virtual Init *convertValue( VarInit *VI) {
86 return convertValue((TypedInit*)VI);
87 }
88 virtual Init *convertValue( FieldInit *FI) {
89 return convertValue((TypedInit*)FI);
90 }
91
92public: // These methods should only be called by subclasses of RecTy.
93 // baseClassOf - These virtual methods should be overloaded to return true iff
94 // all values of type 'RHS' can be converted to the 'this' type.
95 virtual bool baseClassOf(const BitRecTy *RHS) const { return false; }
96 virtual bool baseClassOf(const BitsRecTy *RHS) const { return false; }
97 virtual bool baseClassOf(const IntRecTy *RHS) const { return false; }
98 virtual bool baseClassOf(const StringRecTy *RHS) const { return false; }
99 virtual bool baseClassOf(const ListRecTy *RHS) const { return false; }
100 virtual bool baseClassOf(const CodeRecTy *RHS) const { return false; }
101 virtual bool baseClassOf(const DagRecTy *RHS) const { return false; }
102 virtual bool baseClassOf(const RecordRecTy *RHS) const { return false; }
103};
104
105inline std::ostream &operator<<(std::ostream &OS, const RecTy &Ty) {
106 Ty.print(OS);
107 return OS;
108}
109
110
111/// BitRecTy - 'bit' - Represent a single bit
112///
Chris Lattner7dfc2d22004-10-27 16:14:51 +0000113class BitRecTy : public RecTy {
114public:
Reid Spencer1c48c2d2004-12-06 23:42:37 +0000115 virtual Init *convertValue( UnsetInit *UI) { return (Init*)UI; }
116 virtual Init *convertValue( BitInit *BI) { return (Init*)BI; }
117 virtual Init *convertValue( BitsInit *BI);
118 virtual Init *convertValue( IntInit *II);
119 virtual Init *convertValue(StringInit *SI) { return 0; }
120 virtual Init *convertValue( ListInit *LI) { return 0; }
121 virtual Init *convertValue( CodeInit *CI) { return 0; }
122 virtual Init *convertValue(VarBitInit *VB) { return (Init*)VB; }
123 virtual Init *convertValue( DefInit *DI) { return 0; }
124 virtual Init *convertValue( DagInit *DI) { return 0; }
Reid Spencer97c59802006-08-28 00:12:25 +0000125 virtual Init *convertValue( BinOpInit *UI) { return 0; }
Reid Spencer1c48c2d2004-12-06 23:42:37 +0000126 virtual Init *convertValue( TypedInit *TI);
127 virtual Init *convertValue( VarInit *VI) { return RecTy::convertValue(VI);}
128 virtual Init *convertValue( FieldInit *FI) { return RecTy::convertValue(FI);}
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000129
Chris Lattner8b9ecda2007-11-20 22:25:16 +0000130 std::string getAsString() const { return "bit"; }
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000131
132 bool typeIsConvertibleTo(const RecTy *RHS) const {
133 return RHS->baseClassOf(this);
134 }
Reid Spencer1c48c2d2004-12-06 23:42:37 +0000135 virtual bool baseClassOf(const BitRecTy *RHS) const { return true; }
136 virtual bool baseClassOf(const BitsRecTy *RHS) const;
137 virtual bool baseClassOf(const IntRecTy *RHS) const { return true; }
138 virtual bool baseClassOf(const StringRecTy *RHS) const { return false; }
139 virtual bool baseClassOf(const ListRecTy *RHS) const { return false; }
140 virtual bool baseClassOf(const CodeRecTy *RHS) const { return false; }
141 virtual bool baseClassOf(const DagRecTy *RHS) const { return false; }
142 virtual bool baseClassOf(const RecordRecTy *RHS) const { return false; }
143
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000144};
145
146
Misha Brukmanb4f20ea2004-04-15 15:30:15 +0000147// BitsRecTy - 'bits<n>' - Represent a fixed number of bits
148/// BitsRecTy - 'bits&lt;n&gt;' - Represent a fixed number of bits
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000149///
150class BitsRecTy : public RecTy {
151 unsigned Size;
152public:
Dan Gohman56e3f632008-07-07 18:00:37 +0000153 explicit BitsRecTy(unsigned Sz) : Size(Sz) {}
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000154
155 unsigned getNumBits() const { return Size; }
156
Reid Spencer1c48c2d2004-12-06 23:42:37 +0000157 virtual Init *convertValue( UnsetInit *UI);
158 virtual Init *convertValue( BitInit *UI);
159 virtual Init *convertValue( BitsInit *BI);
160 virtual Init *convertValue( IntInit *II);
161 virtual Init *convertValue(StringInit *SI) { return 0; }
162 virtual Init *convertValue( ListInit *LI) { return 0; }
163 virtual Init *convertValue( CodeInit *CI) { return 0; }
164 virtual Init *convertValue(VarBitInit *VB) { return 0; }
165 virtual Init *convertValue( DefInit *DI) { return 0; }
166 virtual Init *convertValue( DagInit *DI) { return 0; }
Reid Spencer97c59802006-08-28 00:12:25 +0000167 virtual Init *convertValue( BinOpInit *UI) { return 0; }
Reid Spencer1c48c2d2004-12-06 23:42:37 +0000168 virtual Init *convertValue( TypedInit *TI);
169 virtual Init *convertValue( VarInit *VI) { return RecTy::convertValue(VI);}
170 virtual Init *convertValue( FieldInit *FI) { return RecTy::convertValue(FI);}
171
Chris Lattner8b9ecda2007-11-20 22:25:16 +0000172 std::string getAsString() const;
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000173
174 bool typeIsConvertibleTo(const RecTy *RHS) const {
175 return RHS->baseClassOf(this);
176 }
Reid Spencer1c48c2d2004-12-06 23:42:37 +0000177 virtual bool baseClassOf(const BitRecTy *RHS) const { return Size == 1; }
178 virtual bool baseClassOf(const BitsRecTy *RHS) const {
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000179 return RHS->Size == Size;
180 }
Reid Spencer1c48c2d2004-12-06 23:42:37 +0000181 virtual bool baseClassOf(const IntRecTy *RHS) const { return true; }
182 virtual bool baseClassOf(const StringRecTy *RHS) const { return false; }
183 virtual bool baseClassOf(const ListRecTy *RHS) const { return false; }
184 virtual bool baseClassOf(const CodeRecTy *RHS) const { return false; }
185 virtual bool baseClassOf(const DagRecTy *RHS) const { return false; }
186 virtual bool baseClassOf(const RecordRecTy *RHS) const { return false; }
187
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000188};
189
190
191/// IntRecTy - 'int' - Represent an integer value of no particular size
192///
Chris Lattner7dfc2d22004-10-27 16:14:51 +0000193class IntRecTy : public RecTy {
194public:
Reid Spencer1c48c2d2004-12-06 23:42:37 +0000195 virtual Init *convertValue( UnsetInit *UI) { return (Init*)UI; }
196 virtual Init *convertValue( BitInit *BI);
197 virtual Init *convertValue( BitsInit *BI);
198 virtual Init *convertValue( IntInit *II) { return (Init*)II; }
199 virtual Init *convertValue(StringInit *SI) { return 0; }
200 virtual Init *convertValue( ListInit *LI) { return 0; }
201 virtual Init *convertValue( CodeInit *CI) { return 0; }
202 virtual Init *convertValue(VarBitInit *VB) { return 0; }
203 virtual Init *convertValue( DefInit *DI) { return 0; }
204 virtual Init *convertValue( DagInit *DI) { return 0; }
Reid Spencer97c59802006-08-28 00:12:25 +0000205 virtual Init *convertValue( BinOpInit *UI) { return 0; }
Reid Spencer1c48c2d2004-12-06 23:42:37 +0000206 virtual Init *convertValue( TypedInit *TI);
207 virtual Init *convertValue( VarInit *VI) { return RecTy::convertValue(VI);}
208 virtual Init *convertValue( FieldInit *FI) { return RecTy::convertValue(FI);}
209
Chris Lattner8b9ecda2007-11-20 22:25:16 +0000210 std::string getAsString() const { return "int"; }
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000211
212 bool typeIsConvertibleTo(const RecTy *RHS) const {
213 return RHS->baseClassOf(this);
214 }
215
Reid Spencer1c48c2d2004-12-06 23:42:37 +0000216 virtual bool baseClassOf(const BitRecTy *RHS) const { return true; }
217 virtual bool baseClassOf(const BitsRecTy *RHS) const { return true; }
218 virtual bool baseClassOf(const IntRecTy *RHS) const { return true; }
219 virtual bool baseClassOf(const StringRecTy *RHS) const { return false; }
220 virtual bool baseClassOf(const ListRecTy *RHS) const { return false; }
221 virtual bool baseClassOf(const CodeRecTy *RHS) const { return false; }
222 virtual bool baseClassOf(const DagRecTy *RHS) const { return false; }
223 virtual bool baseClassOf(const RecordRecTy *RHS) const { return false; }
224
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000225};
226
227/// StringRecTy - 'string' - Represent an string value
228///
Chris Lattner7dfc2d22004-10-27 16:14:51 +0000229class StringRecTy : public RecTy {
230public:
Reid Spencer1c48c2d2004-12-06 23:42:37 +0000231 virtual Init *convertValue( UnsetInit *UI) { return (Init*)UI; }
232 virtual Init *convertValue( BitInit *BI) { return 0; }
233 virtual Init *convertValue( BitsInit *BI) { return 0; }
234 virtual Init *convertValue( IntInit *II) { return 0; }
235 virtual Init *convertValue(StringInit *SI) { return (Init*)SI; }
236 virtual Init *convertValue( ListInit *LI) { return 0; }
Chris Lattner51ffbf12006-03-31 21:53:49 +0000237 virtual Init *convertValue( BinOpInit *BO);
Reid Spencer1c48c2d2004-12-06 23:42:37 +0000238 virtual Init *convertValue( CodeInit *CI) { return 0; }
239 virtual Init *convertValue(VarBitInit *VB) { return 0; }
240 virtual Init *convertValue( DefInit *DI) { return 0; }
241 virtual Init *convertValue( DagInit *DI) { return 0; }
242 virtual Init *convertValue( TypedInit *TI);
243 virtual Init *convertValue( VarInit *VI) { return RecTy::convertValue(VI);}
244 virtual Init *convertValue( FieldInit *FI) { return RecTy::convertValue(FI);}
245
Chris Lattner8b9ecda2007-11-20 22:25:16 +0000246 std::string getAsString() const { return "string"; }
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000247
248 bool typeIsConvertibleTo(const RecTy *RHS) const {
249 return RHS->baseClassOf(this);
250 }
251
Reid Spencer1c48c2d2004-12-06 23:42:37 +0000252 virtual bool baseClassOf(const BitRecTy *RHS) const { return false; }
253 virtual bool baseClassOf(const BitsRecTy *RHS) const { return false; }
254 virtual bool baseClassOf(const IntRecTy *RHS) const { return false; }
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000255 virtual bool baseClassOf(const StringRecTy *RHS) const { return true; }
Reid Spencer1c48c2d2004-12-06 23:42:37 +0000256 virtual bool baseClassOf(const ListRecTy *RHS) const { return false; }
257 virtual bool baseClassOf(const CodeRecTy *RHS) const { return false; }
258 virtual bool baseClassOf(const DagRecTy *RHS) const { return false; }
259 virtual bool baseClassOf(const RecordRecTy *RHS) const { return false; }
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000260};
261
Misha Brukmanb4f20ea2004-04-15 15:30:15 +0000262// ListRecTy - 'list<Ty>' - Represent a list of values, all of which must be of
263// the specified type.
264/// ListRecTy - 'list&lt;Ty&gt;' - Represent a list of values, all of which must
265/// be of the specified type.
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000266///
267class ListRecTy : public RecTy {
268 RecTy *Ty;
269public:
Dan Gohman56e3f632008-07-07 18:00:37 +0000270 explicit ListRecTy(RecTy *T) : Ty(T) {}
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000271
272 RecTy *getElementType() const { return Ty; }
273
Reid Spencer1c48c2d2004-12-06 23:42:37 +0000274 virtual Init *convertValue( UnsetInit *UI) { return (Init*)UI; }
275 virtual Init *convertValue( BitInit *BI) { return 0; }
276 virtual Init *convertValue( BitsInit *BI) { return 0; }
277 virtual Init *convertValue( IntInit *II) { return 0; }
278 virtual Init *convertValue(StringInit *SI) { return 0; }
279 virtual Init *convertValue( ListInit *LI);
280 virtual Init *convertValue( CodeInit *CI) { return 0; }
281 virtual Init *convertValue(VarBitInit *VB) { return 0; }
282 virtual Init *convertValue( DefInit *DI) { return 0; }
283 virtual Init *convertValue( DagInit *DI) { return 0; }
Reid Spencer97c59802006-08-28 00:12:25 +0000284 virtual Init *convertValue( BinOpInit *UI) { return 0; }
Reid Spencer1c48c2d2004-12-06 23:42:37 +0000285 virtual Init *convertValue( TypedInit *TI);
286 virtual Init *convertValue( VarInit *VI) { return RecTy::convertValue(VI);}
287 virtual Init *convertValue( FieldInit *FI) { return RecTy::convertValue(FI);}
Misha Brukman650ba8e2005-04-22 00:00:37 +0000288
Chris Lattner8b9ecda2007-11-20 22:25:16 +0000289 std::string getAsString() const;
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000290
291 bool typeIsConvertibleTo(const RecTy *RHS) const {
292 return RHS->baseClassOf(this);
293 }
294
Reid Spencer1c48c2d2004-12-06 23:42:37 +0000295 virtual bool baseClassOf(const BitRecTy *RHS) const { return false; }
296 virtual bool baseClassOf(const BitsRecTy *RHS) const { return false; }
297 virtual bool baseClassOf(const IntRecTy *RHS) const { return false; }
298 virtual bool baseClassOf(const StringRecTy *RHS) const { return false; }
299 virtual bool baseClassOf(const ListRecTy *RHS) const {
Misha Brukman650ba8e2005-04-22 00:00:37 +0000300 return RHS->getElementType()->typeIsConvertibleTo(Ty);
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000301 }
Reid Spencer1c48c2d2004-12-06 23:42:37 +0000302 virtual bool baseClassOf(const CodeRecTy *RHS) const { return false; }
303 virtual bool baseClassOf(const DagRecTy *RHS) const { return false; }
304 virtual bool baseClassOf(const RecordRecTy *RHS) const { return false; }
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000305};
306
307/// CodeRecTy - 'code' - Represent an code fragment, function or method.
308///
Chris Lattner7dfc2d22004-10-27 16:14:51 +0000309class CodeRecTy : public RecTy {
310public:
Reid Spencer1c48c2d2004-12-06 23:42:37 +0000311 virtual Init *convertValue( UnsetInit *UI) { return (Init*)UI; }
312 virtual Init *convertValue( BitInit *BI) { return 0; }
313 virtual Init *convertValue( BitsInit *BI) { return 0; }
314 virtual Init *convertValue( IntInit *II) { return 0; }
315 virtual Init *convertValue(StringInit *SI) { return 0; }
316 virtual Init *convertValue( ListInit *LI) { return 0; }
317 virtual Init *convertValue( CodeInit *CI) { return (Init*)CI; }
318 virtual Init *convertValue(VarBitInit *VB) { return 0; }
319 virtual Init *convertValue( DefInit *DI) { return 0; }
320 virtual Init *convertValue( DagInit *DI) { return 0; }
Reid Spencer97c59802006-08-28 00:12:25 +0000321 virtual Init *convertValue( BinOpInit *UI) { return 0; }
Reid Spencer1c48c2d2004-12-06 23:42:37 +0000322 virtual Init *convertValue( TypedInit *TI);
323 virtual Init *convertValue( VarInit *VI) { return RecTy::convertValue(VI);}
324 virtual Init *convertValue( FieldInit *FI) { return RecTy::convertValue(FI);}
325
Chris Lattner8b9ecda2007-11-20 22:25:16 +0000326 std::string getAsString() const { return "code"; }
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000327
328 bool typeIsConvertibleTo(const RecTy *RHS) const {
329 return RHS->baseClassOf(this);
330 }
Reid Spencer1c48c2d2004-12-06 23:42:37 +0000331 virtual bool baseClassOf(const BitRecTy *RHS) const { return false; }
332 virtual bool baseClassOf(const BitsRecTy *RHS) const { return false; }
333 virtual bool baseClassOf(const IntRecTy *RHS) const { return false; }
334 virtual bool baseClassOf(const StringRecTy *RHS) const { return false; }
335 virtual bool baseClassOf(const ListRecTy *RHS) const { return false; }
336 virtual bool baseClassOf(const CodeRecTy *RHS) const { return true; }
337 virtual bool baseClassOf(const DagRecTy *RHS) const { return false; }
338 virtual bool baseClassOf(const RecordRecTy *RHS) const { return false; }
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000339};
340
341/// DagRecTy - 'dag' - Represent a dag fragment
342///
Chris Lattner7dfc2d22004-10-27 16:14:51 +0000343class DagRecTy : public RecTy {
344public:
Reid Spencer1c48c2d2004-12-06 23:42:37 +0000345 virtual Init *convertValue( UnsetInit *UI) { return (Init*)UI; }
346 virtual Init *convertValue( BitInit *BI) { return 0; }
347 virtual Init *convertValue( BitsInit *BI) { return 0; }
348 virtual Init *convertValue( IntInit *II) { return 0; }
349 virtual Init *convertValue(StringInit *SI) { return 0; }
350 virtual Init *convertValue( ListInit *LI) { return 0; }
351 virtual Init *convertValue( CodeInit *CI) { return 0; }
352 virtual Init *convertValue(VarBitInit *VB) { return 0; }
353 virtual Init *convertValue( DefInit *DI) { return 0; }
Evan Chenga32dee22007-05-15 01:23:24 +0000354 virtual Init *convertValue( BinOpInit *BO);
Reid Spencer1c48c2d2004-12-06 23:42:37 +0000355 virtual Init *convertValue( DagInit *CI) { return (Init*)CI; }
356 virtual Init *convertValue( TypedInit *TI);
357 virtual Init *convertValue( VarInit *VI) { return RecTy::convertValue(VI);}
358 virtual Init *convertValue( FieldInit *FI) { return RecTy::convertValue(FI);}
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000359
Chris Lattner8b9ecda2007-11-20 22:25:16 +0000360 std::string getAsString() const { return "dag"; }
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000361
362 bool typeIsConvertibleTo(const RecTy *RHS) const {
363 return RHS->baseClassOf(this);
364 }
Reid Spencer1c48c2d2004-12-06 23:42:37 +0000365
366 virtual bool baseClassOf(const BitRecTy *RHS) const { return false; }
367 virtual bool baseClassOf(const BitsRecTy *RHS) const { return false; }
368 virtual bool baseClassOf(const IntRecTy *RHS) const { return false; }
369 virtual bool baseClassOf(const StringRecTy *RHS) const { return false; }
370 virtual bool baseClassOf(const ListRecTy *RHS) const { return false; }
371 virtual bool baseClassOf(const CodeRecTy *RHS) const { return false; }
372 virtual bool baseClassOf(const DagRecTy *RHS) const { return true; }
373 virtual bool baseClassOf(const RecordRecTy *RHS) const { return false; }
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000374};
375
376
Misha Brukmanb4f20ea2004-04-15 15:30:15 +0000377/// RecordRecTy - '[classname]' - Represent an instance of a class, such as:
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000378/// (R32 X = EAX).
379///
380class RecordRecTy : public RecTy {
381 Record *Rec;
382public:
Dan Gohman56e3f632008-07-07 18:00:37 +0000383 explicit RecordRecTy(Record *R) : Rec(R) {}
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000384
385 Record *getRecord() const { return Rec; }
386
Reid Spencer1c48c2d2004-12-06 23:42:37 +0000387 virtual Init *convertValue( UnsetInit *UI) { return (Init*)UI; }
388 virtual Init *convertValue( BitInit *BI) { return 0; }
389 virtual Init *convertValue( BitsInit *BI) { return 0; }
390 virtual Init *convertValue( IntInit *II) { return 0; }
391 virtual Init *convertValue(StringInit *SI) { return 0; }
392 virtual Init *convertValue( ListInit *LI) { return 0; }
393 virtual Init *convertValue( CodeInit *CI) { return 0; }
394 virtual Init *convertValue(VarBitInit *VB) { return 0; }
Reid Spencer97c59802006-08-28 00:12:25 +0000395 virtual Init *convertValue( BinOpInit *UI) { return 0; }
Reid Spencer1c48c2d2004-12-06 23:42:37 +0000396 virtual Init *convertValue( DefInit *DI);
397 virtual Init *convertValue( DagInit *DI) { return 0; }
Misha Brukman650ba8e2005-04-22 00:00:37 +0000398 virtual Init *convertValue( TypedInit *VI);
Reid Spencer1c48c2d2004-12-06 23:42:37 +0000399 virtual Init *convertValue( VarInit *VI) { return RecTy::convertValue(VI);}
400 virtual Init *convertValue( FieldInit *FI) { return RecTy::convertValue(FI);}
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000401
Chris Lattner8b9ecda2007-11-20 22:25:16 +0000402 std::string getAsString() const;
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000403
404 bool typeIsConvertibleTo(const RecTy *RHS) const {
405 return RHS->baseClassOf(this);
406 }
Reid Spencer1c48c2d2004-12-06 23:42:37 +0000407 virtual bool baseClassOf(const BitRecTy *RHS) const { return false; }
408 virtual bool baseClassOf(const BitsRecTy *RHS) const { return false; }
409 virtual bool baseClassOf(const IntRecTy *RHS) const { return false; }
410 virtual bool baseClassOf(const StringRecTy *RHS) const { return false; }
411 virtual bool baseClassOf(const ListRecTy *RHS) const { return false; }
412 virtual bool baseClassOf(const CodeRecTy *RHS) const { return false; }
413 virtual bool baseClassOf(const DagRecTy *RHS) const { return false; }
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000414 virtual bool baseClassOf(const RecordRecTy *RHS) const;
415};
416
417
418
419//===----------------------------------------------------------------------===//
420// Initializer Classes
421//===----------------------------------------------------------------------===//
422
423struct Init {
424 virtual ~Init() {}
425
426 /// isComplete - This virtual method should be overridden by values that may
427 /// not be completely specified yet.
428 virtual bool isComplete() const { return true; }
429
430 /// print - Print out this value.
Chris Lattner695506c2007-11-22 21:05:25 +0000431 void print(std::ostream &OS) const { OS << getAsString(); }
432
433 /// getAsString - Convert this value to a string form.
434 virtual std::string getAsString() const = 0;
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000435
436 /// dump - Debugging method that may be called through a debugger, just
437 /// invokes print on cerr.
438 void dump() const;
439
440 /// convertInitializerTo - This virtual function is a simple call-back
441 /// function that should be overridden to call the appropriate
442 /// RecTy::convertValue method.
443 ///
444 virtual Init *convertInitializerTo(RecTy *Ty) = 0;
445
446 /// convertInitializerBitRange - This method is used to implement the bitrange
447 /// selection operator. Given an initializer, it selects the specified bits
448 /// out, returning them as a new init of bits type. If it is not legal to use
449 /// the bit subscript operator on this initializer, return null.
450 ///
451 virtual Init *convertInitializerBitRange(const std::vector<unsigned> &Bits) {
452 return 0;
453 }
454
Chris Lattner8bf9e062004-07-26 23:21:34 +0000455 /// convertInitListSlice - This method is used to implement the list slice
456 /// selection operator. Given an initializer, it selects the specified list
457 /// elements, returning them as a new init of list type. If it is not legal
458 /// to take a slice of this, return null.
459 ///
460 virtual Init *convertInitListSlice(const std::vector<unsigned> &Elements) {
461 return 0;
462 }
463
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000464 /// getFieldType - This method is used to implement the FieldInit class.
465 /// Implementors of this method should return the type of the named field if
466 /// they are of record type.
467 ///
468 virtual RecTy *getFieldType(const std::string &FieldName) const { return 0; }
469
470 /// getFieldInit - This method complements getFieldType to return the
471 /// initializer for the specified field. If getFieldType returns non-null
472 /// this method should return non-null, otherwise it returns null.
473 ///
474 virtual Init *getFieldInit(Record &R, const std::string &FieldName) const {
475 return 0;
476 }
Misha Brukman650ba8e2005-04-22 00:00:37 +0000477
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000478 /// resolveReferences - This method is used by classes that refer to other
479 /// variables which may not be defined at the time they expression is formed.
480 /// If a value is set for the variable later, this method will be called on
481 /// users of the value to allow the value to propagate out.
482 ///
Chris Lattneref943742005-04-19 03:36:21 +0000483 virtual Init *resolveReferences(Record &R, const RecordVal *RV) {
484 return this;
485 }
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000486};
487
488inline std::ostream &operator<<(std::ostream &OS, const Init &I) {
489 I.print(OS); return OS;
490}
491
492
493/// UnsetInit - ? - Represents an uninitialized value
494///
Chris Lattner7dfc2d22004-10-27 16:14:51 +0000495class UnsetInit : public Init {
496public:
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000497 virtual Init *convertInitializerTo(RecTy *Ty) {
498 return Ty->convertValue(this);
499 }
500
501 virtual bool isComplete() const { return false; }
Chris Lattner695506c2007-11-22 21:05:25 +0000502 virtual std::string getAsString() const { return "?"; }
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000503};
504
505
506/// BitInit - true/false - Represent a concrete initializer for a bit.
507///
508class BitInit : public Init {
509 bool Value;
510public:
Dan Gohmanc60c67f2008-03-25 22:06:05 +0000511 explicit BitInit(bool V) : Value(V) {}
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000512
513 bool getValue() const { return Value; }
514
515 virtual Init *convertInitializerTo(RecTy *Ty) {
516 return Ty->convertValue(this);
517 }
518
Chris Lattner695506c2007-11-22 21:05:25 +0000519 virtual std::string getAsString() const { return Value ? "1" : "0"; }
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000520};
521
522/// BitsInit - { a, b, c } - Represents an initializer for a BitsRecTy value.
523/// It contains a vector of bits, whose size is determined by the type.
524///
525class BitsInit : public Init {
526 std::vector<Init*> Bits;
527public:
Dan Gohmanc60c67f2008-03-25 22:06:05 +0000528 explicit BitsInit(unsigned Size) : Bits(Size) {}
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000529
530 unsigned getNumBits() const { return Bits.size(); }
531
532 Init *getBit(unsigned Bit) const {
533 assert(Bit < Bits.size() && "Bit index out of range!");
534 return Bits[Bit];
535 }
536 void setBit(unsigned Bit, Init *V) {
537 assert(Bit < Bits.size() && "Bit index out of range!");
538 assert(Bits[Bit] == 0 && "Bit already set!");
539 Bits[Bit] = V;
540 }
541
542 virtual Init *convertInitializerTo(RecTy *Ty) {
543 return Ty->convertValue(this);
544 }
545 virtual Init *convertInitializerBitRange(const std::vector<unsigned> &Bits);
546
547 virtual bool isComplete() const {
548 for (unsigned i = 0; i != getNumBits(); ++i)
549 if (!getBit(i)->isComplete()) return false;
550 return true;
551 }
Chris Lattner695506c2007-11-22 21:05:25 +0000552 virtual std::string getAsString() const;
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000553
Chris Lattneref943742005-04-19 03:36:21 +0000554 virtual Init *resolveReferences(Record &R, const RecordVal *RV);
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000555
556 // printXX - Print this bitstream with the specified format, returning true if
557 // it is not possible.
558 bool printInHex(std::ostream &OS) const;
559 bool printAsVariable(std::ostream &OS) const;
560 bool printAsUnset(std::ostream &OS) const;
561};
562
563
564/// IntInit - 7 - Represent an initalization by a literal integer value.
565///
566class IntInit : public Init {
Dan Gohmanca0546f2008-10-17 01:33:43 +0000567 int64_t Value;
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000568public:
Dan Gohmanca0546f2008-10-17 01:33:43 +0000569 explicit IntInit(int64_t V) : Value(V) {}
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000570
Dan Gohmanca0546f2008-10-17 01:33:43 +0000571 int64_t getValue() const { return Value; }
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000572
573 virtual Init *convertInitializerTo(RecTy *Ty) {
574 return Ty->convertValue(this);
575 }
576 virtual Init *convertInitializerBitRange(const std::vector<unsigned> &Bits);
577
Chris Lattner695506c2007-11-22 21:05:25 +0000578 virtual std::string getAsString() const;
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000579};
580
581
582/// StringInit - "foo" - Represent an initialization by a string value.
583///
584class StringInit : public Init {
585 std::string Value;
586public:
Dan Gohmanc60c67f2008-03-25 22:06:05 +0000587 explicit StringInit(const std::string &V) : Value(V) {}
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000588
589 const std::string &getValue() const { return Value; }
590
591 virtual Init *convertInitializerTo(RecTy *Ty) {
592 return Ty->convertValue(this);
593 }
594
Chris Lattner695506c2007-11-22 21:05:25 +0000595 virtual std::string getAsString() const { return "\"" + Value + "\""; }
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000596};
597
598/// CodeInit - "[{...}]" - Represent a code fragment.
599///
600class CodeInit : public Init {
601 std::string Value;
602public:
Dan Gohmanc60c67f2008-03-25 22:06:05 +0000603 explicit CodeInit(const std::string &V) : Value(V) {}
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000604
605 const std::string getValue() const { return Value; }
606
607 virtual Init *convertInitializerTo(RecTy *Ty) {
608 return Ty->convertValue(this);
609 }
610
Chris Lattner695506c2007-11-22 21:05:25 +0000611 virtual std::string getAsString() const { return "[{" + Value + "}]"; }
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000612};
613
614/// ListInit - [AL, AH, CL] - Represent a list of defs
615///
616class ListInit : public Init {
617 std::vector<Init*> Values;
618public:
Dan Gohmanc60c67f2008-03-25 22:06:05 +0000619 explicit ListInit(std::vector<Init*> &Vs) {
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000620 Values.swap(Vs);
621 }
622
623 unsigned getSize() const { return Values.size(); }
624 Init *getElement(unsigned i) const {
625 assert(i < Values.size() && "List element index out of range!");
626 return Values[i];
627 }
628
Chris Lattnercbebe462007-02-27 22:08:27 +0000629 Record *getElementAsRecord(unsigned i) const;
630
Chris Lattner8bf9e062004-07-26 23:21:34 +0000631 Init *convertInitListSlice(const std::vector<unsigned> &Elements);
632
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000633 virtual Init *convertInitializerTo(RecTy *Ty) {
634 return Ty->convertValue(this);
635 }
636
Chris Lattner577fc3f2004-07-27 01:01:21 +0000637 /// resolveReferences - This method is used by classes that refer to other
638 /// variables which may not be defined at the time they expression is formed.
639 /// If a value is set for the variable later, this method will be called on
640 /// users of the value to allow the value to propagate out.
641 ///
Chris Lattneref943742005-04-19 03:36:21 +0000642 virtual Init *resolveReferences(Record &R, const RecordVal *RV);
Chris Lattner577fc3f2004-07-27 01:01:21 +0000643
Chris Lattner695506c2007-11-22 21:05:25 +0000644 virtual std::string getAsString() const;
Anton Korobeynikove49cc262008-01-21 22:30:26 +0000645
646 typedef std::vector<Init*>::iterator iterator;
647 typedef std::vector<Init*>::const_iterator const_iterator;
648
649 inline iterator begin() { return Values.begin(); }
650 inline const_iterator begin() const { return Values.begin(); }
651 inline iterator end () { return Values.end(); }
652 inline const_iterator end () const { return Values.end(); }
653
654 inline size_t size () const { return Values.size(); }
655 inline bool empty() const { return Values.empty(); }
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000656};
657
Chris Lattner51ffbf12006-03-31 21:53:49 +0000658/// BinOpInit - !op (X, Y) - Combine two inits.
659///
660class BinOpInit : public Init {
661public:
Evan Chenga32dee22007-05-15 01:23:24 +0000662 enum BinaryOp { SHL, SRA, SRL, STRCONCAT, CONCAT };
Chris Lattner51ffbf12006-03-31 21:53:49 +0000663private:
664 BinaryOp Opc;
665 Init *LHS, *RHS;
666public:
667 BinOpInit(BinaryOp opc, Init *lhs, Init *rhs) : Opc(opc), LHS(lhs), RHS(rhs) {
668 }
669
670 BinaryOp getOpcode() const { return Opc; }
671 Init *getLHS() const { return LHS; }
672 Init *getRHS() const { return RHS; }
673
674 // Fold - If possible, fold this to a simpler init. Return this if not
675 // possible to fold.
676 Init *Fold();
677
678 virtual Init *convertInitializerTo(RecTy *Ty) {
679 return Ty->convertValue(this);
680 }
681
682 virtual Init *resolveReferences(Record &R, const RecordVal *RV);
683
Chris Lattner695506c2007-11-22 21:05:25 +0000684 virtual std::string getAsString() const;
Chris Lattner51ffbf12006-03-31 21:53:49 +0000685};
686
687
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000688
689/// TypedInit - This is the common super-class of types that have a specific,
690/// explicit, type.
691///
692class TypedInit : public Init {
693 RecTy *Ty;
Misha Brukman650ba8e2005-04-22 00:00:37 +0000694public:
Dan Gohmanc60c67f2008-03-25 22:06:05 +0000695 explicit TypedInit(RecTy *T) : Ty(T) {}
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000696
697 RecTy *getType() const { return Ty; }
698
Chris Lattner577fc3f2004-07-27 01:01:21 +0000699 virtual Init *convertInitializerBitRange(const std::vector<unsigned> &Bits);
700 virtual Init *convertInitListSlice(const std::vector<unsigned> &Elements);
701
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000702 /// resolveBitReference - This method is used to implement
703 /// VarBitInit::resolveReferences. If the bit is able to be resolved, we
Chris Lattner577fc3f2004-07-27 01:01:21 +0000704 /// simply return the resolved value, otherwise we return null.
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000705 ///
Chris Lattneref943742005-04-19 03:36:21 +0000706 virtual Init *resolveBitReference(Record &R, const RecordVal *RV,
707 unsigned Bit) = 0;
Chris Lattner577fc3f2004-07-27 01:01:21 +0000708
709 /// resolveListElementReference - This method is used to implement
710 /// VarListElementInit::resolveReferences. If the list element is resolvable
711 /// now, we return the resolved value, otherwise we return null.
Chris Lattneref943742005-04-19 03:36:21 +0000712 virtual Init *resolveListElementReference(Record &R, const RecordVal *RV,
713 unsigned Elt) = 0;
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000714};
715
716/// VarInit - 'Opcode' - Represent a reference to an entire variable object.
717///
718class VarInit : public TypedInit {
719 std::string VarName;
720public:
Dan Gohmanc60c67f2008-03-25 22:06:05 +0000721 explicit VarInit(const std::string &VN, RecTy *T)
722 : TypedInit(T), VarName(VN) {}
Misha Brukman650ba8e2005-04-22 00:00:37 +0000723
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000724 virtual Init *convertInitializerTo(RecTy *Ty) {
725 return Ty->convertValue(this);
726 }
727
728 const std::string &getName() const { return VarName; }
729
Chris Lattneref943742005-04-19 03:36:21 +0000730 virtual Init *resolveBitReference(Record &R, const RecordVal *RV,
731 unsigned Bit);
732 virtual Init *resolveListElementReference(Record &R, const RecordVal *RV,
733 unsigned Elt);
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000734
735 virtual RecTy *getFieldType(const std::string &FieldName) const;
736 virtual Init *getFieldInit(Record &R, const std::string &FieldName) const;
737
738 /// resolveReferences - This method is used by classes that refer to other
739 /// variables which may not be defined at the time they expression is formed.
740 /// If a value is set for the variable later, this method will be called on
741 /// users of the value to allow the value to propagate out.
742 ///
Chris Lattneref943742005-04-19 03:36:21 +0000743 virtual Init *resolveReferences(Record &R, const RecordVal *RV);
Misha Brukman650ba8e2005-04-22 00:00:37 +0000744
Chris Lattner695506c2007-11-22 21:05:25 +0000745 virtual std::string getAsString() const { return VarName; }
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000746};
747
748
749/// VarBitInit - Opcode{0} - Represent access to one bit of a variable or field.
750///
751class VarBitInit : public Init {
752 TypedInit *TI;
753 unsigned Bit;
754public:
755 VarBitInit(TypedInit *T, unsigned B) : TI(T), Bit(B) {
756 assert(T->getType() && dynamic_cast<BitsRecTy*>(T->getType()) &&
757 ((BitsRecTy*)T->getType())->getNumBits() > B &&
758 "Illegal VarBitInit expression!");
759 }
760
761 virtual Init *convertInitializerTo(RecTy *Ty) {
762 return Ty->convertValue(this);
763 }
764
765 TypedInit *getVariable() const { return TI; }
766 unsigned getBitNum() const { return Bit; }
Misha Brukman650ba8e2005-04-22 00:00:37 +0000767
Chris Lattner695506c2007-11-22 21:05:25 +0000768 virtual std::string getAsString() const;
Chris Lattneref943742005-04-19 03:36:21 +0000769 virtual Init *resolveReferences(Record &R, const RecordVal *RV);
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000770};
771
Misha Brukman650ba8e2005-04-22 00:00:37 +0000772/// VarListElementInit - List[4] - Represent access to one element of a var or
Chris Lattner577fc3f2004-07-27 01:01:21 +0000773/// field.
774class VarListElementInit : public TypedInit {
775 TypedInit *TI;
776 unsigned Element;
777public:
778 VarListElementInit(TypedInit *T, unsigned E)
779 : TypedInit(dynamic_cast<ListRecTy*>(T->getType())->getElementType()),
780 TI(T), Element(E) {
781 assert(T->getType() && dynamic_cast<ListRecTy*>(T->getType()) &&
782 "Illegal VarBitInit expression!");
783 }
784
785 virtual Init *convertInitializerTo(RecTy *Ty) {
786 return Ty->convertValue(this);
787 }
788
789 TypedInit *getVariable() const { return TI; }
790 unsigned getElementNum() const { return Element; }
791
Chris Lattneref943742005-04-19 03:36:21 +0000792 virtual Init *resolveBitReference(Record &R, const RecordVal *RV,
793 unsigned Bit);
Chris Lattner577fc3f2004-07-27 01:01:21 +0000794
795 /// resolveListElementReference - This method is used to implement
796 /// VarListElementInit::resolveReferences. If the list element is resolvable
797 /// now, we return the resolved value, otherwise we return null.
Chris Lattneref943742005-04-19 03:36:21 +0000798 virtual Init *resolveListElementReference(Record &R, const RecordVal *RV,
799 unsigned Elt);
Chris Lattner577fc3f2004-07-27 01:01:21 +0000800
Chris Lattner695506c2007-11-22 21:05:25 +0000801 virtual std::string getAsString() const;
Chris Lattneref943742005-04-19 03:36:21 +0000802 virtual Init *resolveReferences(Record &R, const RecordVal *RV);
Chris Lattner577fc3f2004-07-27 01:01:21 +0000803};
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000804
805/// DefInit - AL - Represent a reference to a 'def' in the description
806///
807class DefInit : public Init {
808 Record *Def;
809public:
Dan Gohmanc60c67f2008-03-25 22:06:05 +0000810 explicit DefInit(Record *D) : Def(D) {}
Misha Brukman650ba8e2005-04-22 00:00:37 +0000811
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000812 virtual Init *convertInitializerTo(RecTy *Ty) {
813 return Ty->convertValue(this);
814 }
815
816 Record *getDef() const { return Def; }
817
818 //virtual Init *convertInitializerBitRange(const std::vector<unsigned> &Bits);
819
820 virtual RecTy *getFieldType(const std::string &FieldName) const;
821 virtual Init *getFieldInit(Record &R, const std::string &FieldName) const;
Misha Brukman650ba8e2005-04-22 00:00:37 +0000822
Chris Lattner695506c2007-11-22 21:05:25 +0000823 virtual std::string getAsString() const;
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000824};
825
826
827/// FieldInit - X.Y - Represent a reference to a subfield of a variable
828///
829class FieldInit : public TypedInit {
830 Init *Rec; // Record we are referring to
831 std::string FieldName; // Field we are accessing
832public:
833 FieldInit(Init *R, const std::string &FN)
834 : TypedInit(R->getFieldType(FN)), Rec(R), FieldName(FN) {
835 assert(getType() && "FieldInit with non-record type!");
836 }
837
838 virtual Init *convertInitializerTo(RecTy *Ty) {
839 return Ty->convertValue(this);
840 }
841
Chris Lattneref943742005-04-19 03:36:21 +0000842 virtual Init *resolveBitReference(Record &R, const RecordVal *RV,
843 unsigned Bit);
844 virtual Init *resolveListElementReference(Record &R, const RecordVal *RV,
845 unsigned Elt);
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000846
Chris Lattneref943742005-04-19 03:36:21 +0000847 virtual Init *resolveReferences(Record &R, const RecordVal *RV);
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000848
Chris Lattner695506c2007-11-22 21:05:25 +0000849 virtual std::string getAsString() const {
850 return Rec->getAsString() + "." + FieldName;
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000851 }
852};
853
Chris Lattnerb59cf3c2006-03-30 22:50:40 +0000854/// DagInit - (v a, b) - Represent a DAG tree value. DAG inits are required
855/// to have at least one value then a (possibly empty) list of arguments. Each
856/// argument can have a name associated with it.
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000857///
858class DagInit : public Init {
Chris Lattnerb59cf3c2006-03-30 22:50:40 +0000859 Init *Val;
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000860 std::vector<Init*> Args;
861 std::vector<std::string> ArgNames;
862public:
Chris Lattnerb59cf3c2006-03-30 22:50:40 +0000863 DagInit(Init *V, const std::vector<std::pair<Init*, std::string> > &args)
864 : Val(V) {
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000865 Args.reserve(args.size());
866 ArgNames.reserve(args.size());
867 for (unsigned i = 0, e = args.size(); i != e; ++i) {
868 Args.push_back(args[i].first);
869 ArgNames.push_back(args[i].second);
870 }
871 }
Chris Lattnerb59cf3c2006-03-30 22:50:40 +0000872 DagInit(Init *V, const std::vector<Init*> &args,
Chris Lattner0d3ef402006-01-31 06:02:35 +0000873 const std::vector<std::string> &argNames)
Chris Lattnerb59cf3c2006-03-30 22:50:40 +0000874 : Val(V), Args(args), ArgNames(argNames) {
Chris Lattner0d3ef402006-01-31 06:02:35 +0000875 }
876
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000877 virtual Init *convertInitializerTo(RecTy *Ty) {
878 return Ty->convertValue(this);
879 }
880
Chris Lattnerb59cf3c2006-03-30 22:50:40 +0000881 Init *getOperator() const { return Val; }
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000882
883 unsigned getNumArgs() const { return Args.size(); }
884 Init *getArg(unsigned Num) const {
885 assert(Num < Args.size() && "Arg number out of range!");
886 return Args[Num];
887 }
888 const std::string &getArgName(unsigned Num) const {
889 assert(Num < ArgNames.size() && "Arg number out of range!");
890 return ArgNames[Num];
891 }
892
893 void setArg(unsigned Num, Init *I) {
894 assert(Num < Args.size() && "Arg number out of range!");
895 Args[Num] = I;
896 }
Chris Lattner0d3ef402006-01-31 06:02:35 +0000897
898 virtual Init *resolveReferences(Record &R, const RecordVal *RV);
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000899
Chris Lattner695506c2007-11-22 21:05:25 +0000900 virtual std::string getAsString() const;
Anton Korobeynikov010bd772008-01-22 11:00:07 +0000901
902 typedef std::vector<Init*>::iterator arg_iterator;
903 typedef std::vector<Init*>::const_iterator const_arg_iterator;
904 typedef std::vector<std::string>::iterator name_iterator;
905 typedef std::vector<std::string>::const_iterator const_name_iterator;
906
907 inline arg_iterator arg_begin() { return Args.begin(); }
908 inline const_arg_iterator arg_begin() const { return Args.begin(); }
909 inline arg_iterator arg_end () { return Args.end(); }
910 inline const_arg_iterator arg_end () const { return Args.end(); }
911
912 inline size_t arg_size () const { return Args.size(); }
913 inline bool arg_empty() const { return Args.empty(); }
914
915 inline name_iterator name_begin() { return ArgNames.begin(); }
916 inline const_name_iterator name_begin() const { return ArgNames.begin(); }
917 inline name_iterator name_end () { return ArgNames.end(); }
918 inline const_name_iterator name_end () const { return ArgNames.end(); }
919
920 inline size_t name_size () const { return ArgNames.size(); }
921 inline bool name_empty() const { return ArgNames.empty(); }
922
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000923};
924
925//===----------------------------------------------------------------------===//
926// High-Level Classes
927//===----------------------------------------------------------------------===//
928
929class RecordVal {
930 std::string Name;
931 RecTy *Ty;
932 unsigned Prefix;
933 Init *Value;
934public:
935 RecordVal(const std::string &N, RecTy *T, unsigned P);
936
937 const std::string &getName() const { return Name; }
938
939 unsigned getPrefix() const { return Prefix; }
940 RecTy *getType() const { return Ty; }
941 Init *getValue() const { return Value; }
942
943 bool setValue(Init *V) {
944 if (V) {
945 Value = V->convertInitializerTo(Ty);
946 return Value == 0;
947 }
948 Value = 0;
949 return false;
950 }
951
952 void dump() const;
953 void print(std::ostream &OS, bool PrintSem = true) const;
954};
955
956inline std::ostream &operator<<(std::ostream &OS, const RecordVal &RV) {
957 RV.print(OS << " ");
958 return OS;
959}
960
Chris Lattner87a10612004-10-23 04:58:50 +0000961class Record {
Chris Lattnerf9b2edb2005-08-19 17:58:49 +0000962 std::string Name;
Chris Lattnerbd9b9212009-03-13 16:09:24 +0000963 TGLoc Loc;
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000964 std::vector<std::string> TemplateArgs;
965 std::vector<RecordVal> Values;
966 std::vector<Record*> SuperClasses;
967public:
968
Chris Lattnerbd9b9212009-03-13 16:09:24 +0000969 explicit Record(const std::string &N, TGLoc loc) : Name(N), Loc(loc) {}
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000970 ~Record() {}
Chris Lattnerbd9b9212009-03-13 16:09:24 +0000971
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000972 const std::string &getName() const { return Name; }
Chris Lattnerac284252005-08-19 17:58:11 +0000973 void setName(const std::string &Name); // Also updates RecordKeeper.
Chris Lattnerbd9b9212009-03-13 16:09:24 +0000974
975 TGLoc getLoc() const { return Loc; }
976
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000977 const std::vector<std::string> &getTemplateArgs() const {
978 return TemplateArgs;
979 }
980 const std::vector<RecordVal> &getValues() const { return Values; }
981 const std::vector<Record*> &getSuperClasses() const { return SuperClasses; }
982
983 bool isTemplateArg(const std::string &Name) const {
984 for (unsigned i = 0, e = TemplateArgs.size(); i != e; ++i)
985 if (TemplateArgs[i] == Name) return true;
986 return false;
987 }
988
989 const RecordVal *getValue(const std::string &Name) const {
990 for (unsigned i = 0, e = Values.size(); i != e; ++i)
991 if (Values[i].getName() == Name) return &Values[i];
992 return 0;
993 }
994 RecordVal *getValue(const std::string &Name) {
995 for (unsigned i = 0, e = Values.size(); i != e; ++i)
996 if (Values[i].getName() == Name) return &Values[i];
997 return 0;
998 }
999
1000 void addTemplateArg(const std::string &Name) {
1001 assert(!isTemplateArg(Name) && "Template arg already defined!");
1002 TemplateArgs.push_back(Name);
1003 }
1004
1005 void addValue(const RecordVal &RV) {
1006 assert(getValue(RV.getName()) == 0 && "Value already added!");
1007 Values.push_back(RV);
1008 }
1009
1010 void removeValue(const std::string &Name) {
1011 assert(getValue(Name) && "Cannot remove an entry that does not exist!");
1012 for (unsigned i = 0, e = Values.size(); i != e; ++i)
1013 if (Values[i].getName() == Name) {
1014 Values.erase(Values.begin()+i);
1015 return;
1016 }
1017 assert(0 && "Name does not exist in record!");
1018 }
1019
1020 bool isSubClassOf(Record *R) const {
1021 for (unsigned i = 0, e = SuperClasses.size(); i != e; ++i)
1022 if (SuperClasses[i] == R)
Jeff Cohen88e7b722005-04-22 04:13:13 +00001023 return true;
Chris Lattnerf5bd1b72003-10-05 19:27:59 +00001024 return false;
1025 }
1026
1027 bool isSubClassOf(const std::string &Name) const {
1028 for (unsigned i = 0, e = SuperClasses.size(); i != e; ++i)
1029 if (SuperClasses[i]->getName() == Name)
1030 return true;
1031 return false;
1032 }
1033
1034 void addSuperClass(Record *R) {
1035 assert(!isSubClassOf(R) && "Already subclassing record!");
1036 SuperClasses.push_back(R);
1037 }
1038
Chris Lattneref943742005-04-19 03:36:21 +00001039 /// resolveReferences - If there are any field references that refer to fields
1040 /// that have been filled in, we can propagate the values now.
1041 ///
1042 void resolveReferences() { resolveReferencesTo(0); }
1043
1044 /// resolveReferencesTo - If anything in this record refers to RV, replace the
1045 /// reference to RV with the RHS of RV. If RV is null, we resolve all
1046 /// possible references.
1047 void resolveReferencesTo(const RecordVal *RV);
Chris Lattnerf5bd1b72003-10-05 19:27:59 +00001048
1049 void dump() const;
1050
1051 //===--------------------------------------------------------------------===//
1052 // High-level methods useful to tablegen back-ends
1053 //
1054
1055 /// getValueInit - Return the initializer for a value with the specified name,
1056 /// or throw an exception if the field does not exist.
1057 ///
1058 Init *getValueInit(const std::string &FieldName) const;
1059
1060 /// getValueAsString - This method looks up the specified field and returns
1061 /// its value as a string, throwing an exception if the field does not exist
1062 /// or if the value is not a string.
1063 ///
1064 std::string getValueAsString(const std::string &FieldName) const;
1065
1066 /// getValueAsBitsInit - This method looks up the specified field and returns
1067 /// its value as a BitsInit, throwing an exception if the field does not exist
1068 /// or if the value is not the right type.
1069 ///
1070 BitsInit *getValueAsBitsInit(const std::string &FieldName) const;
1071
1072 /// getValueAsListInit - This method looks up the specified field and returns
1073 /// its value as a ListInit, throwing an exception if the field does not exist
1074 /// or if the value is not the right type.
1075 ///
1076 ListInit *getValueAsListInit(const std::string &FieldName) const;
1077
Chris Lattner7ad0bed2005-10-28 22:49:02 +00001078 /// getValueAsListOfDefs - This method looks up the specified field and
Anton Korobeynikova468a112007-11-11 11:19:37 +00001079 /// returns its value as a vector of records, throwing an exception if the
Chris Lattner7ad0bed2005-10-28 22:49:02 +00001080 /// field does not exist or if the value is not the right type.
Jim Laskeyb04feb62005-10-28 21:46:31 +00001081 ///
Chris Lattner7ad0bed2005-10-28 22:49:02 +00001082 std::vector<Record*> getValueAsListOfDefs(const std::string &FieldName) const;
Jim Laskeyb04feb62005-10-28 21:46:31 +00001083
Anton Korobeynikova468a112007-11-11 11:19:37 +00001084 /// getValueAsListOfInts - This method looks up the specified field and returns
1085 /// its value as a vector of integers, throwing an exception if the field does
1086 /// not exist or if the value is not the right type.
1087 ///
Dan Gohmanca0546f2008-10-17 01:33:43 +00001088 std::vector<int64_t> getValueAsListOfInts(const std::string &FieldName) const;
Anton Korobeynikova468a112007-11-11 11:19:37 +00001089
Chris Lattnerf5bd1b72003-10-05 19:27:59 +00001090 /// getValueAsDef - This method looks up the specified field and returns its
1091 /// value as a Record, throwing an exception if the field does not exist or if
1092 /// the value is not the right type.
1093 ///
1094 Record *getValueAsDef(const std::string &FieldName) const;
1095
1096 /// getValueAsBit - This method looks up the specified field and returns its
1097 /// value as a bit, throwing an exception if the field does not exist or if
1098 /// the value is not the right type.
1099 ///
1100 bool getValueAsBit(const std::string &FieldName) const;
1101
1102 /// getValueAsInt - This method looks up the specified field and returns its
Dan Gohmanca0546f2008-10-17 01:33:43 +00001103 /// value as an int64_t, throwing an exception if the field does not exist or
1104 /// if the value is not the right type.
Chris Lattnerf5bd1b72003-10-05 19:27:59 +00001105 ///
Dan Gohmanca0546f2008-10-17 01:33:43 +00001106 int64_t getValueAsInt(const std::string &FieldName) const;
Chris Lattnerf5bd1b72003-10-05 19:27:59 +00001107
1108 /// getValueAsDag - This method looks up the specified field and returns its
1109 /// value as an Dag, throwing an exception if the field does not exist or if
1110 /// the value is not the right type.
1111 ///
1112 DagInit *getValueAsDag(const std::string &FieldName) const;
Chris Lattnerae939eb2005-09-13 21:44:28 +00001113
1114 /// getValueAsCode - This method looks up the specified field and returns
1115 /// its value as the string data in a CodeInit, throwing an exception if the
1116 /// field does not exist or if the value is not a code object.
1117 ///
1118 std::string getValueAsCode(const std::string &FieldName) const;
Chris Lattnerf5bd1b72003-10-05 19:27:59 +00001119};
1120
1121std::ostream &operator<<(std::ostream &OS, const Record &R);
1122
1123class RecordKeeper {
1124 std::map<std::string, Record*> Classes, Defs;
1125public:
1126 ~RecordKeeper() {
1127 for (std::map<std::string, Record*>::iterator I = Classes.begin(),
Jeff Cohen88e7b722005-04-22 04:13:13 +00001128 E = Classes.end(); I != E; ++I)
Chris Lattnerf5bd1b72003-10-05 19:27:59 +00001129 delete I->second;
1130 for (std::map<std::string, Record*>::iterator I = Defs.begin(),
Jeff Cohen88e7b722005-04-22 04:13:13 +00001131 E = Defs.end(); I != E; ++I)
Chris Lattnerf5bd1b72003-10-05 19:27:59 +00001132 delete I->second;
1133 }
Misha Brukman650ba8e2005-04-22 00:00:37 +00001134
Chris Lattnerf5bd1b72003-10-05 19:27:59 +00001135 const std::map<std::string, Record*> &getClasses() const { return Classes; }
1136 const std::map<std::string, Record*> &getDefs() const { return Defs; }
1137
1138 Record *getClass(const std::string &Name) const {
1139 std::map<std::string, Record*>::const_iterator I = Classes.find(Name);
1140 return I == Classes.end() ? 0 : I->second;
1141 }
1142 Record *getDef(const std::string &Name) const {
1143 std::map<std::string, Record*>::const_iterator I = Defs.find(Name);
1144 return I == Defs.end() ? 0 : I->second;
1145 }
1146 void addClass(Record *R) {
1147 assert(getClass(R->getName()) == 0 && "Class already exists!");
1148 Classes.insert(std::make_pair(R->getName(), R));
1149 }
1150 void addDef(Record *R) {
1151 assert(getDef(R->getName()) == 0 && "Def already exists!");
1152 Defs.insert(std::make_pair(R->getName(), R));
1153 }
1154
Chris Lattnerac284252005-08-19 17:58:11 +00001155 /// removeClass - Remove, but do not delete, the specified record.
1156 ///
1157 void removeClass(const std::string &Name) {
1158 assert(Classes.count(Name) && "Class does not exist!");
1159 Classes.erase(Name);
1160 }
1161 /// removeDef - Remove, but do not delete, the specified record.
1162 ///
1163 void removeDef(const std::string &Name) {
1164 assert(Defs.count(Name) && "Def does not exist!");
1165 Defs.erase(Name);
1166 }
1167
Chris Lattnerf5bd1b72003-10-05 19:27:59 +00001168 //===--------------------------------------------------------------------===//
1169 // High-level helper methods, useful for tablegen backends...
1170
1171 /// getAllDerivedDefinitions - This method returns all concrete definitions
1172 /// that derive from the specified class name. If a class with the specified
1173 /// name does not exist, an exception is thrown.
1174 std::vector<Record*>
1175 getAllDerivedDefinitions(const std::string &ClassName) const;
1176
1177
1178 void dump() const;
1179};
1180
Chris Lattnerbd7ccd012008-08-26 06:43:25 +00001181/// LessRecord - Sorting predicate to sort record pointers by name.
1182///
1183struct LessRecord {
1184 bool operator()(const Record *Rec1, const Record *Rec2) const {
1185 return Rec1->getName() < Rec2->getName();
1186 }
1187};
1188
Jim Grosbach56938af2008-09-11 17:05:32 +00001189/// LessRecordFieldName - Sorting predicate to sort record pointers by their
1190/// name field.
Chris Lattnerbd7ccd012008-08-26 06:43:25 +00001191///
1192struct LessRecordFieldName {
1193 bool operator()(const Record *Rec1, const Record *Rec2) const {
1194 return Rec1->getValueAsString("Name") < Rec2->getValueAsString("Name");
1195 }
1196};
1197
1198
Chris Lattnerf5bd1b72003-10-05 19:27:59 +00001199std::ostream &operator<<(std::ostream &OS, const RecordKeeper &RK);
1200
1201extern RecordKeeper Records;
1202
Chris Lattnerbd9b9212009-03-13 16:09:24 +00001203void PrintError(TGLoc ErrorLoc, const std::string &Msg);
1204
1205
Brian Gaeke960707c2003-11-11 22:41:34 +00001206} // End llvm namespace
1207
Chris Lattnerf5bd1b72003-10-05 19:27:59 +00001208#endif