blob: 0853037fe3ed3e1e56f98b5c02045c49d0e8e9d4 [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 Lattner1b30e1ac2009-06-21 03:36:54 +000018#include "llvm/Support/SourceMgr.h"
Michael J. Spencerab425d82010-11-29 18:47:54 +000019#include "llvm/Support/DataTypes.h"
Daniel Dunbar38a22bf2009-07-03 00:10:29 +000020#include "llvm/Support/raw_ostream.h"
Chris Lattnerf5bd1b72003-10-05 19:27:59 +000021#include <map>
Chris Lattnerf5bd1b72003-10-05 19:27:59 +000022
Brian Gaeke960707c2003-11-11 22:41:34 +000023namespace llvm {
Daniel Dunbar38a22bf2009-07-03 00:10:29 +000024class raw_ostream;
Bob Wilson7248f862009-11-22 04:24:42 +000025
Chris Lattneref943742005-04-19 03:36:21 +000026// RecTy subclasses.
Chris Lattnerf5bd1b72003-10-05 19:27:59 +000027class BitRecTy;
28class BitsRecTy;
29class IntRecTy;
30class StringRecTy;
31class ListRecTy;
32class CodeRecTy;
33class DagRecTy;
34class RecordRecTy;
35
Chris Lattneref943742005-04-19 03:36:21 +000036// Init subclasses.
Chris Lattner7dfc2d22004-10-27 16:14:51 +000037struct Init;
Chris Lattnerf5bd1b72003-10-05 19:27:59 +000038class UnsetInit;
39class BitInit;
40class BitsInit;
41class IntInit;
42class StringInit;
43class CodeInit;
44class ListInit;
David Greenee8f3b272009-05-14 21:22:49 +000045class UnOpInit;
Chris Lattner51ffbf12006-03-31 21:53:49 +000046class BinOpInit;
David Greene98ed3c72009-05-14 21:54:42 +000047class TernOpInit;
Chris Lattnerf5bd1b72003-10-05 19:27:59 +000048class DefInit;
49class DagInit;
50class TypedInit;
51class VarInit;
52class FieldInit;
53class VarBitInit;
Chris Lattner577fc3f2004-07-27 01:01:21 +000054class VarListElementInit;
Chris Lattnerf5bd1b72003-10-05 19:27:59 +000055
Chris Lattneref943742005-04-19 03:36:21 +000056// Other classes.
Chris Lattnerf5bd1b72003-10-05 19:27:59 +000057class Record;
Chris Lattneref943742005-04-19 03:36:21 +000058class RecordVal;
Bob Wilson56d862542009-04-30 17:35:11 +000059struct MultiClass;
Chris Lattner77d369c2010-12-13 00:23:57 +000060class RecordKeeper;
Chris Lattnerf5bd1b72003-10-05 19:27:59 +000061
62//===----------------------------------------------------------------------===//
63// Type Classes
64//===----------------------------------------------------------------------===//
65
66struct RecTy {
67 virtual ~RecTy() {}
68
Chris Lattner8b9ecda2007-11-20 22:25:16 +000069 virtual std::string getAsString() const = 0;
Daniel Dunbar38a22bf2009-07-03 00:10:29 +000070 void print(raw_ostream &OS) const { OS << getAsString(); }
Chris Lattnerf5bd1b72003-10-05 19:27:59 +000071 void dump() const;
72
73 /// typeIsConvertibleTo - Return true if all values of 'this' type can be
74 /// converted to the specified type.
75 virtual bool typeIsConvertibleTo(const RecTy *RHS) const = 0;
76
77public: // These methods should only be called from subclasses of Init
78 virtual Init *convertValue( UnsetInit *UI) { return 0; }
79 virtual Init *convertValue( BitInit *BI) { return 0; }
80 virtual Init *convertValue( BitsInit *BI) { return 0; }
81 virtual Init *convertValue( IntInit *II) { return 0; }
82 virtual Init *convertValue(StringInit *SI) { return 0; }
83 virtual Init *convertValue( ListInit *LI) { return 0; }
David Greenee8f3b272009-05-14 21:22:49 +000084 virtual Init *convertValue( UnOpInit *UI) {
85 return convertValue((TypedInit*)UI);
86 }
David Greene196ac3c2009-04-23 21:25:15 +000087 virtual Init *convertValue( BinOpInit *UI) {
88 return convertValue((TypedInit*)UI);
89 }
David Greene98ed3c72009-05-14 21:54:42 +000090 virtual Init *convertValue( TernOpInit *UI) {
91 return convertValue((TypedInit*)UI);
92 }
Chris Lattnerf5bd1b72003-10-05 19:27:59 +000093 virtual Init *convertValue( CodeInit *CI) { return 0; }
94 virtual Init *convertValue(VarBitInit *VB) { return 0; }
95 virtual Init *convertValue( DefInit *DI) { return 0; }
96 virtual Init *convertValue( DagInit *DI) { return 0; }
97 virtual Init *convertValue( TypedInit *TI) { return 0; }
98 virtual Init *convertValue( VarInit *VI) {
99 return convertValue((TypedInit*)VI);
100 }
101 virtual Init *convertValue( FieldInit *FI) {
102 return convertValue((TypedInit*)FI);
103 }
104
105public: // These methods should only be called by subclasses of RecTy.
106 // baseClassOf - These virtual methods should be overloaded to return true iff
107 // all values of type 'RHS' can be converted to the 'this' type.
108 virtual bool baseClassOf(const BitRecTy *RHS) const { return false; }
109 virtual bool baseClassOf(const BitsRecTy *RHS) const { return false; }
110 virtual bool baseClassOf(const IntRecTy *RHS) const { return false; }
111 virtual bool baseClassOf(const StringRecTy *RHS) const { return false; }
112 virtual bool baseClassOf(const ListRecTy *RHS) const { return false; }
113 virtual bool baseClassOf(const CodeRecTy *RHS) const { return false; }
114 virtual bool baseClassOf(const DagRecTy *RHS) const { return false; }
115 virtual bool baseClassOf(const RecordRecTy *RHS) const { return false; }
116};
117
Daniel Dunbar38a22bf2009-07-03 00:10:29 +0000118inline raw_ostream &operator<<(raw_ostream &OS, const RecTy &Ty) {
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000119 Ty.print(OS);
120 return OS;
121}
122
123
124/// BitRecTy - 'bit' - Represent a single bit
125///
Chris Lattner7dfc2d22004-10-27 16:14:51 +0000126class BitRecTy : public RecTy {
127public:
Reid Spencer1c48c2d2004-12-06 23:42:37 +0000128 virtual Init *convertValue( UnsetInit *UI) { return (Init*)UI; }
129 virtual Init *convertValue( BitInit *BI) { return (Init*)BI; }
130 virtual Init *convertValue( BitsInit *BI);
131 virtual Init *convertValue( IntInit *II);
132 virtual Init *convertValue(StringInit *SI) { return 0; }
133 virtual Init *convertValue( ListInit *LI) { return 0; }
134 virtual Init *convertValue( CodeInit *CI) { return 0; }
135 virtual Init *convertValue(VarBitInit *VB) { return (Init*)VB; }
136 virtual Init *convertValue( DefInit *DI) { return 0; }
137 virtual Init *convertValue( DagInit *DI) { return 0; }
David Greenee8f3b272009-05-14 21:22:49 +0000138 virtual Init *convertValue( UnOpInit *UI) { return RecTy::convertValue(UI);}
David Greene196ac3c2009-04-23 21:25:15 +0000139 virtual Init *convertValue( BinOpInit *UI) { return RecTy::convertValue(UI);}
David Greene98ed3c72009-05-14 21:54:42 +0000140 virtual Init *convertValue( TernOpInit *UI) { return RecTy::convertValue(UI);}
Reid Spencer1c48c2d2004-12-06 23:42:37 +0000141 virtual Init *convertValue( TypedInit *TI);
142 virtual Init *convertValue( VarInit *VI) { return RecTy::convertValue(VI);}
143 virtual Init *convertValue( FieldInit *FI) { return RecTy::convertValue(FI);}
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000144
Chris Lattner8b9ecda2007-11-20 22:25:16 +0000145 std::string getAsString() const { return "bit"; }
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000146
147 bool typeIsConvertibleTo(const RecTy *RHS) const {
148 return RHS->baseClassOf(this);
149 }
Reid Spencer1c48c2d2004-12-06 23:42:37 +0000150 virtual bool baseClassOf(const BitRecTy *RHS) const { return true; }
151 virtual bool baseClassOf(const BitsRecTy *RHS) const;
152 virtual bool baseClassOf(const IntRecTy *RHS) const { return true; }
153 virtual bool baseClassOf(const StringRecTy *RHS) const { return false; }
154 virtual bool baseClassOf(const ListRecTy *RHS) const { return false; }
155 virtual bool baseClassOf(const CodeRecTy *RHS) const { return false; }
156 virtual bool baseClassOf(const DagRecTy *RHS) const { return false; }
157 virtual bool baseClassOf(const RecordRecTy *RHS) const { return false; }
158
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000159};
160
161
Misha Brukmanb4f20ea2004-04-15 15:30:15 +0000162// BitsRecTy - 'bits<n>' - Represent a fixed number of bits
163/// BitsRecTy - 'bits&lt;n&gt;' - Represent a fixed number of bits
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000164///
165class BitsRecTy : public RecTy {
166 unsigned Size;
167public:
Dan Gohman56e3f632008-07-07 18:00:37 +0000168 explicit BitsRecTy(unsigned Sz) : Size(Sz) {}
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000169
170 unsigned getNumBits() const { return Size; }
171
Reid Spencer1c48c2d2004-12-06 23:42:37 +0000172 virtual Init *convertValue( UnsetInit *UI);
173 virtual Init *convertValue( BitInit *UI);
174 virtual Init *convertValue( BitsInit *BI);
175 virtual Init *convertValue( IntInit *II);
176 virtual Init *convertValue(StringInit *SI) { return 0; }
177 virtual Init *convertValue( ListInit *LI) { return 0; }
178 virtual Init *convertValue( CodeInit *CI) { return 0; }
179 virtual Init *convertValue(VarBitInit *VB) { return 0; }
180 virtual Init *convertValue( DefInit *DI) { return 0; }
181 virtual Init *convertValue( DagInit *DI) { return 0; }
David Greenee8f3b272009-05-14 21:22:49 +0000182 virtual Init *convertValue( UnOpInit *UI) { return RecTy::convertValue(UI);}
David Greene196ac3c2009-04-23 21:25:15 +0000183 virtual Init *convertValue( BinOpInit *UI) { return RecTy::convertValue(UI);}
David Greene98ed3c72009-05-14 21:54:42 +0000184 virtual Init *convertValue( TernOpInit *UI) { return RecTy::convertValue(UI);}
Reid Spencer1c48c2d2004-12-06 23:42:37 +0000185 virtual Init *convertValue( TypedInit *TI);
186 virtual Init *convertValue( VarInit *VI) { return RecTy::convertValue(VI);}
187 virtual Init *convertValue( FieldInit *FI) { return RecTy::convertValue(FI);}
188
Chris Lattner8b9ecda2007-11-20 22:25:16 +0000189 std::string getAsString() const;
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000190
191 bool typeIsConvertibleTo(const RecTy *RHS) const {
192 return RHS->baseClassOf(this);
193 }
Reid Spencer1c48c2d2004-12-06 23:42:37 +0000194 virtual bool baseClassOf(const BitRecTy *RHS) const { return Size == 1; }
195 virtual bool baseClassOf(const BitsRecTy *RHS) const {
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000196 return RHS->Size == Size;
197 }
Reid Spencer1c48c2d2004-12-06 23:42:37 +0000198 virtual bool baseClassOf(const IntRecTy *RHS) const { return true; }
199 virtual bool baseClassOf(const StringRecTy *RHS) const { return false; }
200 virtual bool baseClassOf(const ListRecTy *RHS) const { return false; }
201 virtual bool baseClassOf(const CodeRecTy *RHS) const { return false; }
202 virtual bool baseClassOf(const DagRecTy *RHS) const { return false; }
203 virtual bool baseClassOf(const RecordRecTy *RHS) const { return false; }
204
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000205};
206
207
208/// IntRecTy - 'int' - Represent an integer value of no particular size
209///
Chris Lattner7dfc2d22004-10-27 16:14:51 +0000210class IntRecTy : public RecTy {
211public:
Reid Spencer1c48c2d2004-12-06 23:42:37 +0000212 virtual Init *convertValue( UnsetInit *UI) { return (Init*)UI; }
213 virtual Init *convertValue( BitInit *BI);
214 virtual Init *convertValue( BitsInit *BI);
215 virtual Init *convertValue( IntInit *II) { return (Init*)II; }
216 virtual Init *convertValue(StringInit *SI) { return 0; }
217 virtual Init *convertValue( ListInit *LI) { return 0; }
218 virtual Init *convertValue( CodeInit *CI) { return 0; }
219 virtual Init *convertValue(VarBitInit *VB) { return 0; }
220 virtual Init *convertValue( DefInit *DI) { return 0; }
221 virtual Init *convertValue( DagInit *DI) { return 0; }
David Greenee8f3b272009-05-14 21:22:49 +0000222 virtual Init *convertValue( UnOpInit *UI) { return RecTy::convertValue(UI);}
David Greene196ac3c2009-04-23 21:25:15 +0000223 virtual Init *convertValue( BinOpInit *UI) { return RecTy::convertValue(UI);}
David Greene98ed3c72009-05-14 21:54:42 +0000224 virtual Init *convertValue( TernOpInit *UI) { return RecTy::convertValue(UI);}
Reid Spencer1c48c2d2004-12-06 23:42:37 +0000225 virtual Init *convertValue( TypedInit *TI);
226 virtual Init *convertValue( VarInit *VI) { return RecTy::convertValue(VI);}
227 virtual Init *convertValue( FieldInit *FI) { return RecTy::convertValue(FI);}
228
Chris Lattner8b9ecda2007-11-20 22:25:16 +0000229 std::string getAsString() const { return "int"; }
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000230
231 bool typeIsConvertibleTo(const RecTy *RHS) const {
232 return RHS->baseClassOf(this);
233 }
234
Reid Spencer1c48c2d2004-12-06 23:42:37 +0000235 virtual bool baseClassOf(const BitRecTy *RHS) const { return true; }
236 virtual bool baseClassOf(const BitsRecTy *RHS) const { return true; }
237 virtual bool baseClassOf(const IntRecTy *RHS) const { return true; }
238 virtual bool baseClassOf(const StringRecTy *RHS) const { return false; }
239 virtual bool baseClassOf(const ListRecTy *RHS) const { return false; }
240 virtual bool baseClassOf(const CodeRecTy *RHS) const { return false; }
241 virtual bool baseClassOf(const DagRecTy *RHS) const { return false; }
242 virtual bool baseClassOf(const RecordRecTy *RHS) const { return false; }
243
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000244};
245
246/// StringRecTy - 'string' - Represent an string value
247///
Chris Lattner7dfc2d22004-10-27 16:14:51 +0000248class StringRecTy : public RecTy {
249public:
Reid Spencer1c48c2d2004-12-06 23:42:37 +0000250 virtual Init *convertValue( UnsetInit *UI) { return (Init*)UI; }
251 virtual Init *convertValue( BitInit *BI) { return 0; }
252 virtual Init *convertValue( BitsInit *BI) { return 0; }
253 virtual Init *convertValue( IntInit *II) { return 0; }
254 virtual Init *convertValue(StringInit *SI) { return (Init*)SI; }
255 virtual Init *convertValue( ListInit *LI) { return 0; }
David Greenee8f3b272009-05-14 21:22:49 +0000256 virtual Init *convertValue( UnOpInit *BO);
Chris Lattner51ffbf12006-03-31 21:53:49 +0000257 virtual Init *convertValue( BinOpInit *BO);
David Greene98ed3c72009-05-14 21:54:42 +0000258 virtual Init *convertValue( TernOpInit *BO) { return RecTy::convertValue(BO);}
David Greene5d0c0512009-05-14 20:54:48 +0000259
Reid Spencer1c48c2d2004-12-06 23:42:37 +0000260 virtual Init *convertValue( CodeInit *CI) { return 0; }
261 virtual Init *convertValue(VarBitInit *VB) { return 0; }
262 virtual Init *convertValue( DefInit *DI) { return 0; }
263 virtual Init *convertValue( DagInit *DI) { return 0; }
264 virtual Init *convertValue( TypedInit *TI);
265 virtual Init *convertValue( VarInit *VI) { return RecTy::convertValue(VI);}
266 virtual Init *convertValue( FieldInit *FI) { return RecTy::convertValue(FI);}
267
Chris Lattner8b9ecda2007-11-20 22:25:16 +0000268 std::string getAsString() const { return "string"; }
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000269
270 bool typeIsConvertibleTo(const RecTy *RHS) const {
271 return RHS->baseClassOf(this);
272 }
273
Reid Spencer1c48c2d2004-12-06 23:42:37 +0000274 virtual bool baseClassOf(const BitRecTy *RHS) const { return false; }
275 virtual bool baseClassOf(const BitsRecTy *RHS) const { return false; }
276 virtual bool baseClassOf(const IntRecTy *RHS) const { return false; }
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000277 virtual bool baseClassOf(const StringRecTy *RHS) const { return true; }
Reid Spencer1c48c2d2004-12-06 23:42:37 +0000278 virtual bool baseClassOf(const ListRecTy *RHS) const { return false; }
279 virtual bool baseClassOf(const CodeRecTy *RHS) const { return false; }
280 virtual bool baseClassOf(const DagRecTy *RHS) const { return false; }
281 virtual bool baseClassOf(const RecordRecTy *RHS) const { return false; }
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000282};
283
Misha Brukmanb4f20ea2004-04-15 15:30:15 +0000284// ListRecTy - 'list<Ty>' - Represent a list of values, all of which must be of
285// the specified type.
286/// ListRecTy - 'list&lt;Ty&gt;' - Represent a list of values, all of which must
287/// be of the specified type.
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000288///
289class ListRecTy : public RecTy {
290 RecTy *Ty;
291public:
Dan Gohman56e3f632008-07-07 18:00:37 +0000292 explicit ListRecTy(RecTy *T) : Ty(T) {}
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000293
294 RecTy *getElementType() const { return Ty; }
295
Reid Spencer1c48c2d2004-12-06 23:42:37 +0000296 virtual Init *convertValue( UnsetInit *UI) { return (Init*)UI; }
297 virtual Init *convertValue( BitInit *BI) { return 0; }
298 virtual Init *convertValue( BitsInit *BI) { return 0; }
299 virtual Init *convertValue( IntInit *II) { return 0; }
300 virtual Init *convertValue(StringInit *SI) { return 0; }
301 virtual Init *convertValue( ListInit *LI);
302 virtual Init *convertValue( CodeInit *CI) { return 0; }
303 virtual Init *convertValue(VarBitInit *VB) { return 0; }
304 virtual Init *convertValue( DefInit *DI) { return 0; }
305 virtual Init *convertValue( DagInit *DI) { return 0; }
David Greenee8f3b272009-05-14 21:22:49 +0000306 virtual Init *convertValue( UnOpInit *UI) { return RecTy::convertValue(UI);}
David Greene196ac3c2009-04-23 21:25:15 +0000307 virtual Init *convertValue( BinOpInit *UI) { return RecTy::convertValue(UI);}
David Greene98ed3c72009-05-14 21:54:42 +0000308 virtual Init *convertValue( TernOpInit *UI) { return RecTy::convertValue(UI);}
Reid Spencer1c48c2d2004-12-06 23:42:37 +0000309 virtual Init *convertValue( TypedInit *TI);
310 virtual Init *convertValue( VarInit *VI) { return RecTy::convertValue(VI);}
311 virtual Init *convertValue( FieldInit *FI) { return RecTy::convertValue(FI);}
Misha Brukman650ba8e2005-04-22 00:00:37 +0000312
Chris Lattner8b9ecda2007-11-20 22:25:16 +0000313 std::string getAsString() const;
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000314
315 bool typeIsConvertibleTo(const RecTy *RHS) const {
316 return RHS->baseClassOf(this);
317 }
318
Reid Spencer1c48c2d2004-12-06 23:42:37 +0000319 virtual bool baseClassOf(const BitRecTy *RHS) const { return false; }
320 virtual bool baseClassOf(const BitsRecTy *RHS) const { return false; }
321 virtual bool baseClassOf(const IntRecTy *RHS) const { return false; }
322 virtual bool baseClassOf(const StringRecTy *RHS) const { return false; }
323 virtual bool baseClassOf(const ListRecTy *RHS) const {
Misha Brukman650ba8e2005-04-22 00:00:37 +0000324 return RHS->getElementType()->typeIsConvertibleTo(Ty);
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000325 }
Reid Spencer1c48c2d2004-12-06 23:42:37 +0000326 virtual bool baseClassOf(const CodeRecTy *RHS) const { return false; }
327 virtual bool baseClassOf(const DagRecTy *RHS) const { return false; }
328 virtual bool baseClassOf(const RecordRecTy *RHS) const { return false; }
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000329};
330
331/// CodeRecTy - 'code' - Represent an code fragment, function or method.
332///
Chris Lattner7dfc2d22004-10-27 16:14:51 +0000333class CodeRecTy : public RecTy {
334public:
Reid Spencer1c48c2d2004-12-06 23:42:37 +0000335 virtual Init *convertValue( UnsetInit *UI) { return (Init*)UI; }
336 virtual Init *convertValue( BitInit *BI) { return 0; }
337 virtual Init *convertValue( BitsInit *BI) { return 0; }
338 virtual Init *convertValue( IntInit *II) { return 0; }
339 virtual Init *convertValue(StringInit *SI) { return 0; }
340 virtual Init *convertValue( ListInit *LI) { return 0; }
341 virtual Init *convertValue( CodeInit *CI) { return (Init*)CI; }
342 virtual Init *convertValue(VarBitInit *VB) { return 0; }
343 virtual Init *convertValue( DefInit *DI) { return 0; }
344 virtual Init *convertValue( DagInit *DI) { return 0; }
David Greenee8f3b272009-05-14 21:22:49 +0000345 virtual Init *convertValue( UnOpInit *UI) { return RecTy::convertValue(UI);}
David Greene196ac3c2009-04-23 21:25:15 +0000346 virtual Init *convertValue( BinOpInit *UI) { return RecTy::convertValue(UI);}
David Greene98ed3c72009-05-14 21:54:42 +0000347 virtual Init *convertValue( TernOpInit *UI) { return RecTy::convertValue(UI);}
Reid Spencer1c48c2d2004-12-06 23:42:37 +0000348 virtual Init *convertValue( TypedInit *TI);
349 virtual Init *convertValue( VarInit *VI) { return RecTy::convertValue(VI);}
350 virtual Init *convertValue( FieldInit *FI) { return RecTy::convertValue(FI);}
351
Chris Lattner8b9ecda2007-11-20 22:25:16 +0000352 std::string getAsString() const { return "code"; }
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000353
354 bool typeIsConvertibleTo(const RecTy *RHS) const {
355 return RHS->baseClassOf(this);
356 }
Reid Spencer1c48c2d2004-12-06 23:42:37 +0000357 virtual bool baseClassOf(const BitRecTy *RHS) const { return false; }
358 virtual bool baseClassOf(const BitsRecTy *RHS) const { return false; }
359 virtual bool baseClassOf(const IntRecTy *RHS) const { return false; }
360 virtual bool baseClassOf(const StringRecTy *RHS) const { return false; }
361 virtual bool baseClassOf(const ListRecTy *RHS) const { return false; }
362 virtual bool baseClassOf(const CodeRecTy *RHS) const { return true; }
363 virtual bool baseClassOf(const DagRecTy *RHS) const { return false; }
364 virtual bool baseClassOf(const RecordRecTy *RHS) const { return false; }
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000365};
366
367/// DagRecTy - 'dag' - Represent a dag fragment
368///
Chris Lattner7dfc2d22004-10-27 16:14:51 +0000369class DagRecTy : public RecTy {
370public:
Reid Spencer1c48c2d2004-12-06 23:42:37 +0000371 virtual Init *convertValue( UnsetInit *UI) { return (Init*)UI; }
372 virtual Init *convertValue( BitInit *BI) { return 0; }
373 virtual Init *convertValue( BitsInit *BI) { return 0; }
374 virtual Init *convertValue( IntInit *II) { return 0; }
375 virtual Init *convertValue(StringInit *SI) { return 0; }
376 virtual Init *convertValue( ListInit *LI) { return 0; }
377 virtual Init *convertValue( CodeInit *CI) { return 0; }
378 virtual Init *convertValue(VarBitInit *VB) { return 0; }
379 virtual Init *convertValue( DefInit *DI) { return 0; }
David Greenee8f3b272009-05-14 21:22:49 +0000380 virtual Init *convertValue( UnOpInit *BO);
Evan Chenga32dee22007-05-15 01:23:24 +0000381 virtual Init *convertValue( BinOpInit *BO);
David Greene98ed3c72009-05-14 21:54:42 +0000382 virtual Init *convertValue( TernOpInit *BO) { return RecTy::convertValue(BO);}
Reid Spencer1c48c2d2004-12-06 23:42:37 +0000383 virtual Init *convertValue( DagInit *CI) { return (Init*)CI; }
384 virtual Init *convertValue( TypedInit *TI);
385 virtual Init *convertValue( VarInit *VI) { return RecTy::convertValue(VI);}
386 virtual Init *convertValue( FieldInit *FI) { return RecTy::convertValue(FI);}
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000387
Chris Lattner8b9ecda2007-11-20 22:25:16 +0000388 std::string getAsString() const { return "dag"; }
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000389
390 bool typeIsConvertibleTo(const RecTy *RHS) const {
391 return RHS->baseClassOf(this);
392 }
Reid Spencer1c48c2d2004-12-06 23:42:37 +0000393
394 virtual bool baseClassOf(const BitRecTy *RHS) const { return false; }
395 virtual bool baseClassOf(const BitsRecTy *RHS) const { return false; }
396 virtual bool baseClassOf(const IntRecTy *RHS) const { return false; }
397 virtual bool baseClassOf(const StringRecTy *RHS) const { return false; }
398 virtual bool baseClassOf(const ListRecTy *RHS) const { return false; }
399 virtual bool baseClassOf(const CodeRecTy *RHS) const { return false; }
400 virtual bool baseClassOf(const DagRecTy *RHS) const { return true; }
401 virtual bool baseClassOf(const RecordRecTy *RHS) const { return false; }
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000402};
403
404
Misha Brukmanb4f20ea2004-04-15 15:30:15 +0000405/// RecordRecTy - '[classname]' - Represent an instance of a class, such as:
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000406/// (R32 X = EAX).
407///
408class RecordRecTy : public RecTy {
409 Record *Rec;
410public:
Dan Gohman56e3f632008-07-07 18:00:37 +0000411 explicit RecordRecTy(Record *R) : Rec(R) {}
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000412
413 Record *getRecord() const { return Rec; }
414
Reid Spencer1c48c2d2004-12-06 23:42:37 +0000415 virtual Init *convertValue( UnsetInit *UI) { return (Init*)UI; }
416 virtual Init *convertValue( BitInit *BI) { return 0; }
417 virtual Init *convertValue( BitsInit *BI) { return 0; }
418 virtual Init *convertValue( IntInit *II) { return 0; }
419 virtual Init *convertValue(StringInit *SI) { return 0; }
420 virtual Init *convertValue( ListInit *LI) { return 0; }
421 virtual Init *convertValue( CodeInit *CI) { return 0; }
422 virtual Init *convertValue(VarBitInit *VB) { return 0; }
David Greenee8f3b272009-05-14 21:22:49 +0000423 virtual Init *convertValue( UnOpInit *UI) { return RecTy::convertValue(UI);}
David Greene196ac3c2009-04-23 21:25:15 +0000424 virtual Init *convertValue( BinOpInit *UI) { return RecTy::convertValue(UI);}
David Greene98ed3c72009-05-14 21:54:42 +0000425 virtual Init *convertValue( TernOpInit *UI) { return RecTy::convertValue(UI);}
Reid Spencer1c48c2d2004-12-06 23:42:37 +0000426 virtual Init *convertValue( DefInit *DI);
427 virtual Init *convertValue( DagInit *DI) { return 0; }
Misha Brukman650ba8e2005-04-22 00:00:37 +0000428 virtual Init *convertValue( TypedInit *VI);
Reid Spencer1c48c2d2004-12-06 23:42:37 +0000429 virtual Init *convertValue( VarInit *VI) { return RecTy::convertValue(VI);}
430 virtual Init *convertValue( FieldInit *FI) { return RecTy::convertValue(FI);}
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000431
Chris Lattner8b9ecda2007-11-20 22:25:16 +0000432 std::string getAsString() const;
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000433
434 bool typeIsConvertibleTo(const RecTy *RHS) const {
435 return RHS->baseClassOf(this);
436 }
Reid Spencer1c48c2d2004-12-06 23:42:37 +0000437 virtual bool baseClassOf(const BitRecTy *RHS) const { return false; }
438 virtual bool baseClassOf(const BitsRecTy *RHS) const { return false; }
439 virtual bool baseClassOf(const IntRecTy *RHS) const { return false; }
440 virtual bool baseClassOf(const StringRecTy *RHS) const { return false; }
441 virtual bool baseClassOf(const ListRecTy *RHS) const { return false; }
442 virtual bool baseClassOf(const CodeRecTy *RHS) const { return false; }
443 virtual bool baseClassOf(const DagRecTy *RHS) const { return false; }
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000444 virtual bool baseClassOf(const RecordRecTy *RHS) const;
445};
446
Bob Wilson7248f862009-11-22 04:24:42 +0000447/// resolveTypes - Find a common type that T1 and T2 convert to.
David Greene8618f952009-06-08 20:23:18 +0000448/// Return 0 if no such type exists.
449///
450RecTy *resolveTypes(RecTy *T1, RecTy *T2);
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000451
452//===----------------------------------------------------------------------===//
453// Initializer Classes
454//===----------------------------------------------------------------------===//
455
456struct Init {
457 virtual ~Init() {}
458
459 /// isComplete - This virtual method should be overridden by values that may
460 /// not be completely specified yet.
461 virtual bool isComplete() const { return true; }
462
463 /// print - Print out this value.
Daniel Dunbar38a22bf2009-07-03 00:10:29 +0000464 void print(raw_ostream &OS) const { OS << getAsString(); }
Chris Lattner695506c2007-11-22 21:05:25 +0000465
466 /// getAsString - Convert this value to a string form.
467 virtual std::string getAsString() const = 0;
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000468
469 /// dump - Debugging method that may be called through a debugger, just
Daniel Dunbar38a22bf2009-07-03 00:10:29 +0000470 /// invokes print on stderr.
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000471 void dump() const;
472
473 /// convertInitializerTo - This virtual function is a simple call-back
474 /// function that should be overridden to call the appropriate
475 /// RecTy::convertValue method.
476 ///
477 virtual Init *convertInitializerTo(RecTy *Ty) = 0;
478
479 /// convertInitializerBitRange - This method is used to implement the bitrange
480 /// selection operator. Given an initializer, it selects the specified bits
481 /// out, returning them as a new init of bits type. If it is not legal to use
482 /// the bit subscript operator on this initializer, return null.
483 ///
484 virtual Init *convertInitializerBitRange(const std::vector<unsigned> &Bits) {
485 return 0;
486 }
487
Chris Lattner8bf9e062004-07-26 23:21:34 +0000488 /// convertInitListSlice - This method is used to implement the list slice
489 /// selection operator. Given an initializer, it selects the specified list
490 /// elements, returning them as a new init of list type. If it is not legal
491 /// to take a slice of this, return null.
492 ///
493 virtual Init *convertInitListSlice(const std::vector<unsigned> &Elements) {
494 return 0;
495 }
496
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000497 /// getFieldType - This method is used to implement the FieldInit class.
498 /// Implementors of this method should return the type of the named field if
499 /// they are of record type.
500 ///
501 virtual RecTy *getFieldType(const std::string &FieldName) const { return 0; }
502
503 /// getFieldInit - This method complements getFieldType to return the
504 /// initializer for the specified field. If getFieldType returns non-null
505 /// this method should return non-null, otherwise it returns null.
506 ///
Jakob Stoklund Olesen0e457622010-03-25 06:23:34 +0000507 virtual Init *getFieldInit(Record &R, const RecordVal *RV,
508 const std::string &FieldName) const {
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000509 return 0;
510 }
Misha Brukman650ba8e2005-04-22 00:00:37 +0000511
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000512 /// resolveReferences - This method is used by classes that refer to other
Bob Wilson159905a2009-11-21 22:44:20 +0000513 /// variables which may not be defined at the time the expression is formed.
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000514 /// If a value is set for the variable later, this method will be called on
515 /// users of the value to allow the value to propagate out.
516 ///
Chris Lattneref943742005-04-19 03:36:21 +0000517 virtual Init *resolveReferences(Record &R, const RecordVal *RV) {
518 return this;
519 }
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000520};
521
Daniel Dunbar38a22bf2009-07-03 00:10:29 +0000522inline raw_ostream &operator<<(raw_ostream &OS, const Init &I) {
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000523 I.print(OS); return OS;
524}
525
David Greenee917fff2009-05-14 22:23:47 +0000526/// TypedInit - This is the common super-class of types that have a specific,
527/// explicit, type.
528///
529class TypedInit : public Init {
530 RecTy *Ty;
531public:
532 explicit TypedInit(RecTy *T) : Ty(T) {}
533
534 RecTy *getType() const { return Ty; }
535
536 virtual Init *convertInitializerBitRange(const std::vector<unsigned> &Bits);
537 virtual Init *convertInitListSlice(const std::vector<unsigned> &Elements);
538
David Greene2a9de4d2010-09-03 21:00:49 +0000539 /// getFieldType - This method is used to implement the FieldInit class.
540 /// Implementors of this method should return the type of the named field if
541 /// they are of record type.
542 ///
543 virtual RecTy *getFieldType(const std::string &FieldName) const;
544
David Greenee917fff2009-05-14 22:23:47 +0000545 /// resolveBitReference - This method is used to implement
546 /// VarBitInit::resolveReferences. If the bit is able to be resolved, we
547 /// simply return the resolved value, otherwise we return null.
548 ///
549 virtual Init *resolveBitReference(Record &R, const RecordVal *RV,
550 unsigned Bit) = 0;
551
552 /// resolveListElementReference - This method is used to implement
553 /// VarListElementInit::resolveReferences. If the list element is resolvable
554 /// now, we return the resolved value, otherwise we return null.
555 virtual Init *resolveListElementReference(Record &R, const RecordVal *RV,
556 unsigned Elt) = 0;
557};
558
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000559
560/// UnsetInit - ? - Represents an uninitialized value
561///
Chris Lattner7dfc2d22004-10-27 16:14:51 +0000562class UnsetInit : public Init {
563public:
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000564 virtual Init *convertInitializerTo(RecTy *Ty) {
565 return Ty->convertValue(this);
566 }
567
568 virtual bool isComplete() const { return false; }
Chris Lattner695506c2007-11-22 21:05:25 +0000569 virtual std::string getAsString() const { return "?"; }
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000570};
571
572
573/// BitInit - true/false - Represent a concrete initializer for a bit.
574///
575class BitInit : public Init {
576 bool Value;
577public:
Dan Gohmanc60c67f2008-03-25 22:06:05 +0000578 explicit BitInit(bool V) : Value(V) {}
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000579
580 bool getValue() const { return Value; }
581
582 virtual Init *convertInitializerTo(RecTy *Ty) {
583 return Ty->convertValue(this);
584 }
585
Chris Lattner695506c2007-11-22 21:05:25 +0000586 virtual std::string getAsString() const { return Value ? "1" : "0"; }
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000587};
588
589/// BitsInit - { a, b, c } - Represents an initializer for a BitsRecTy value.
590/// It contains a vector of bits, whose size is determined by the type.
591///
592class BitsInit : public Init {
593 std::vector<Init*> Bits;
594public:
Dan Gohmanc60c67f2008-03-25 22:06:05 +0000595 explicit BitsInit(unsigned Size) : Bits(Size) {}
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000596
597 unsigned getNumBits() const { return Bits.size(); }
598
599 Init *getBit(unsigned Bit) const {
600 assert(Bit < Bits.size() && "Bit index out of range!");
601 return Bits[Bit];
602 }
603 void setBit(unsigned Bit, Init *V) {
604 assert(Bit < Bits.size() && "Bit index out of range!");
605 assert(Bits[Bit] == 0 && "Bit already set!");
606 Bits[Bit] = V;
607 }
608
609 virtual Init *convertInitializerTo(RecTy *Ty) {
610 return Ty->convertValue(this);
611 }
612 virtual Init *convertInitializerBitRange(const std::vector<unsigned> &Bits);
613
614 virtual bool isComplete() const {
615 for (unsigned i = 0; i != getNumBits(); ++i)
616 if (!getBit(i)->isComplete()) return false;
617 return true;
618 }
Johnny Chen4e8bd582010-04-09 21:01:02 +0000619 bool allInComplete() const {
620 for (unsigned i = 0; i != getNumBits(); ++i)
621 if (getBit(i)->isComplete()) return false;
622 return true;
623 }
Chris Lattner695506c2007-11-22 21:05:25 +0000624 virtual std::string getAsString() const;
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000625
Chris Lattneref943742005-04-19 03:36:21 +0000626 virtual Init *resolveReferences(Record &R, const RecordVal *RV);
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000627};
628
629
630/// IntInit - 7 - Represent an initalization by a literal integer value.
631///
David Greene8618f952009-06-08 20:23:18 +0000632class IntInit : public TypedInit {
Dan Gohmanca0546f2008-10-17 01:33:43 +0000633 int64_t Value;
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000634public:
David Greene8618f952009-06-08 20:23:18 +0000635 explicit IntInit(int64_t V) : TypedInit(new IntRecTy), Value(V) {}
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000636
Dan Gohmanca0546f2008-10-17 01:33:43 +0000637 int64_t getValue() const { return Value; }
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000638
639 virtual Init *convertInitializerTo(RecTy *Ty) {
640 return Ty->convertValue(this);
641 }
642 virtual Init *convertInitializerBitRange(const std::vector<unsigned> &Bits);
643
Chris Lattner695506c2007-11-22 21:05:25 +0000644 virtual std::string getAsString() const;
David Greene8618f952009-06-08 20:23:18 +0000645
646 /// resolveBitReference - This method is used to implement
647 /// VarBitInit::resolveReferences. If the bit is able to be resolved, we
648 /// simply return the resolved value, otherwise we return null.
649 ///
650 virtual Init *resolveBitReference(Record &R, const RecordVal *RV,
651 unsigned Bit) {
652 assert(0 && "Illegal bit reference off int");
653 return 0;
654 }
655
656 /// resolveListElementReference - This method is used to implement
657 /// VarListElementInit::resolveReferences. If the list element is resolvable
658 /// now, we return the resolved value, otherwise we return null.
659 virtual Init *resolveListElementReference(Record &R, const RecordVal *RV,
660 unsigned Elt) {
661 assert(0 && "Illegal element reference off int");
662 return 0;
663 }
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000664};
665
666
667/// StringInit - "foo" - Represent an initialization by a string value.
668///
David Greenee917fff2009-05-14 22:23:47 +0000669class StringInit : public TypedInit {
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000670 std::string Value;
671public:
Nick Lewyckyd449e7c2009-05-15 03:03:14 +0000672 explicit StringInit(const std::string &V)
673 : TypedInit(new StringRecTy), Value(V) {}
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000674
675 const std::string &getValue() const { return Value; }
676
677 virtual Init *convertInitializerTo(RecTy *Ty) {
678 return Ty->convertValue(this);
679 }
680
Chris Lattner695506c2007-11-22 21:05:25 +0000681 virtual std::string getAsString() const { return "\"" + Value + "\""; }
David Greenee917fff2009-05-14 22:23:47 +0000682
683 /// resolveBitReference - This method is used to implement
684 /// VarBitInit::resolveReferences. If the bit is able to be resolved, we
685 /// simply return the resolved value, otherwise we return null.
686 ///
687 virtual Init *resolveBitReference(Record &R, const RecordVal *RV,
688 unsigned Bit) {
689 assert(0 && "Illegal bit reference off string");
690 return 0;
691 }
692
693 /// resolveListElementReference - This method is used to implement
694 /// VarListElementInit::resolveReferences. If the list element is resolvable
695 /// now, we return the resolved value, otherwise we return null.
696 virtual Init *resolveListElementReference(Record &R, const RecordVal *RV,
697 unsigned Elt) {
698 assert(0 && "Illegal element reference off string");
699 return 0;
700 }
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000701};
702
703/// CodeInit - "[{...}]" - Represent a code fragment.
704///
705class CodeInit : public Init {
706 std::string Value;
707public:
Dan Gohmanc60c67f2008-03-25 22:06:05 +0000708 explicit CodeInit(const std::string &V) : Value(V) {}
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000709
710 const std::string getValue() const { return Value; }
711
712 virtual Init *convertInitializerTo(RecTy *Ty) {
713 return Ty->convertValue(this);
714 }
715
Chris Lattner695506c2007-11-22 21:05:25 +0000716 virtual std::string getAsString() const { return "[{" + Value + "}]"; }
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000717};
718
719/// ListInit - [AL, AH, CL] - Represent a list of defs
720///
David Greene8618f952009-06-08 20:23:18 +0000721class ListInit : public TypedInit {
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000722 std::vector<Init*> Values;
723public:
David Greened571b3c2009-05-14 22:38:31 +0000724 typedef std::vector<Init*>::iterator iterator;
725 typedef std::vector<Init*>::const_iterator const_iterator;
726
David Greene8618f952009-06-08 20:23:18 +0000727 explicit ListInit(std::vector<Init*> &Vs, RecTy *EltTy)
728 : TypedInit(new ListRecTy(EltTy)) {
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000729 Values.swap(Vs);
730 }
David Greene8618f952009-06-08 20:23:18 +0000731 explicit ListInit(iterator Start, iterator End, RecTy *EltTy)
732 : TypedInit(new ListRecTy(EltTy)), Values(Start, End) {}
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000733
734 unsigned getSize() const { return Values.size(); }
735 Init *getElement(unsigned i) const {
736 assert(i < Values.size() && "List element index out of range!");
737 return Values[i];
738 }
739
Chris Lattnercbebe462007-02-27 22:08:27 +0000740 Record *getElementAsRecord(unsigned i) const;
Bob Wilson7248f862009-11-22 04:24:42 +0000741
Chris Lattner8bf9e062004-07-26 23:21:34 +0000742 Init *convertInitListSlice(const std::vector<unsigned> &Elements);
743
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000744 virtual Init *convertInitializerTo(RecTy *Ty) {
745 return Ty->convertValue(this);
746 }
747
Chris Lattner577fc3f2004-07-27 01:01:21 +0000748 /// resolveReferences - This method is used by classes that refer to other
749 /// variables which may not be defined at the time they expression is formed.
750 /// If a value is set for the variable later, this method will be called on
751 /// users of the value to allow the value to propagate out.
752 ///
Chris Lattneref943742005-04-19 03:36:21 +0000753 virtual Init *resolveReferences(Record &R, const RecordVal *RV);
Chris Lattner577fc3f2004-07-27 01:01:21 +0000754
Chris Lattner695506c2007-11-22 21:05:25 +0000755 virtual std::string getAsString() const;
Anton Korobeynikove49cc262008-01-21 22:30:26 +0000756
Anton Korobeynikove49cc262008-01-21 22:30:26 +0000757 inline iterator begin() { return Values.begin(); }
758 inline const_iterator begin() const { return Values.begin(); }
759 inline iterator end () { return Values.end(); }
760 inline const_iterator end () const { return Values.end(); }
761
762 inline size_t size () const { return Values.size(); }
763 inline bool empty() const { return Values.empty(); }
David Greene8618f952009-06-08 20:23:18 +0000764
765 /// resolveBitReference - This method is used to implement
766 /// VarBitInit::resolveReferences. If the bit is able to be resolved, we
767 /// simply return the resolved value, otherwise we return null.
768 ///
769 virtual Init *resolveBitReference(Record &R, const RecordVal *RV,
770 unsigned Bit) {
771 assert(0 && "Illegal bit reference off list");
772 return 0;
773 }
774
775 /// resolveListElementReference - This method is used to implement
776 /// VarListElementInit::resolveReferences. If the list element is resolvable
777 /// now, we return the resolved value, otherwise we return null.
778 virtual Init *resolveListElementReference(Record &R, const RecordVal *RV,
779 unsigned Elt);
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000780};
781
782
David Greene5d0c0512009-05-14 20:54:48 +0000783/// OpInit - Base class for operators
David Greene196ac3c2009-04-23 21:25:15 +0000784///
David Greene5d0c0512009-05-14 20:54:48 +0000785class OpInit : public TypedInit {
David Greene196ac3c2009-04-23 21:25:15 +0000786public:
David Greene5d0c0512009-05-14 20:54:48 +0000787 OpInit(RecTy *Type) : TypedInit(Type) {}
788
789 // Clone - Clone this operator, replacing arguments with the new list
790 virtual OpInit *clone(std::vector<Init *> &Operands) = 0;
791
Dan Gohman1432ef82009-08-12 22:10:57 +0000792 virtual int getNumOperands() const = 0;
David Greene5d0c0512009-05-14 20:54:48 +0000793 virtual Init *getOperand(int i) = 0;
David Greene196ac3c2009-04-23 21:25:15 +0000794
795 // Fold - If possible, fold this to a simpler init. Return this if not
796 // possible to fold.
David Greene5d0c0512009-05-14 20:54:48 +0000797 virtual Init *Fold(Record *CurRec, MultiClass *CurMultiClass) = 0;
David Greene196ac3c2009-04-23 21:25:15 +0000798
799 virtual Init *convertInitializerTo(RecTy *Ty) {
800 return Ty->convertValue(this);
801 }
Bob Wilson7248f862009-11-22 04:24:42 +0000802
David Greene196ac3c2009-04-23 21:25:15 +0000803 virtual Init *resolveBitReference(Record &R, const RecordVal *RV,
804 unsigned Bit);
805 virtual Init *resolveListElementReference(Record &R, const RecordVal *RV,
806 unsigned Elt);
David Greene5d0c0512009-05-14 20:54:48 +0000807};
808
809
810/// UnOpInit - !op (X) - Transform an init.
811///
David Greenee8f3b272009-05-14 21:22:49 +0000812class UnOpInit : public OpInit {
813public:
David Greened571b3c2009-05-14 22:38:31 +0000814 enum UnaryOp { CAST, CAR, CDR, LNULL };
David Greenee8f3b272009-05-14 21:22:49 +0000815private:
816 UnaryOp Opc;
817 Init *LHS;
818public:
819 UnOpInit(UnaryOp opc, Init *lhs, RecTy *Type) :
820 OpInit(Type), Opc(opc), LHS(lhs) {
821 }
David Greene5d0c0512009-05-14 20:54:48 +0000822
David Greenee8f3b272009-05-14 21:22:49 +0000823 // Clone - Clone this operator, replacing arguments with the new list
824 virtual OpInit *clone(std::vector<Init *> &Operands) {
Nick Lewyckyd449e7c2009-05-15 03:03:14 +0000825 assert(Operands.size() == 1 &&
826 "Wrong number of operands for unary operation");
David Greenee8f3b272009-05-14 21:22:49 +0000827 return new UnOpInit(getOpcode(), *Operands.begin(), getType());
828 }
David Greene5d0c0512009-05-14 20:54:48 +0000829
Dan Gohman1432ef82009-08-12 22:10:57 +0000830 int getNumOperands() const { return 1; }
David Greenee8f3b272009-05-14 21:22:49 +0000831 Init *getOperand(int i) {
832 assert(i == 0 && "Invalid operand id for unary operator");
833 return getOperand();
834 }
Bob Wilson7248f862009-11-22 04:24:42 +0000835
David Greenee8f3b272009-05-14 21:22:49 +0000836 UnaryOp getOpcode() const { return Opc; }
837 Init *getOperand() const { return LHS; }
David Greene5d0c0512009-05-14 20:54:48 +0000838
David Greenee8f3b272009-05-14 21:22:49 +0000839 // Fold - If possible, fold this to a simpler init. Return this if not
840 // possible to fold.
841 Init *Fold(Record *CurRec, MultiClass *CurMultiClass);
David Greene5d0c0512009-05-14 20:54:48 +0000842
David Greenee8f3b272009-05-14 21:22:49 +0000843 virtual Init *resolveReferences(Record &R, const RecordVal *RV);
Bob Wilson7248f862009-11-22 04:24:42 +0000844
David Greenee8f3b272009-05-14 21:22:49 +0000845 virtual std::string getAsString() const;
846};
David Greene5d0c0512009-05-14 20:54:48 +0000847
848/// BinOpInit - !op (X, Y) - Combine two inits.
849///
850class BinOpInit : public OpInit {
851public:
Chris Lattner94026332010-10-06 00:19:21 +0000852 enum BinaryOp { SHL, SRA, SRL, STRCONCAT, CONCAT, EQ };
David Greene5d0c0512009-05-14 20:54:48 +0000853private:
854 BinaryOp Opc;
855 Init *LHS, *RHS;
856public:
857 BinOpInit(BinaryOp opc, Init *lhs, Init *rhs, RecTy *Type) :
858 OpInit(Type), Opc(opc), LHS(lhs), RHS(rhs) {
859 }
Bob Wilson7248f862009-11-22 04:24:42 +0000860
David Greene5d0c0512009-05-14 20:54:48 +0000861 // Clone - Clone this operator, replacing arguments with the new list
862 virtual OpInit *clone(std::vector<Init *> &Operands) {
Nick Lewyckyd449e7c2009-05-15 03:03:14 +0000863 assert(Operands.size() == 2 &&
864 "Wrong number of operands for binary operation");
David Greene5d0c0512009-05-14 20:54:48 +0000865 return new BinOpInit(getOpcode(), Operands[0], Operands[1], getType());
866 }
867
Dan Gohman1432ef82009-08-12 22:10:57 +0000868 int getNumOperands() const { return 2; }
David Greene5d0c0512009-05-14 20:54:48 +0000869 Init *getOperand(int i) {
Nick Lewyckyd449e7c2009-05-15 03:03:14 +0000870 assert((i == 0 || i == 1) && "Invalid operand id for binary operator");
David Greene5d0c0512009-05-14 20:54:48 +0000871 if (i == 0) {
872 return getLHS();
Bob Wilson7248f862009-11-22 04:24:42 +0000873 } else {
David Greene5d0c0512009-05-14 20:54:48 +0000874 return getRHS();
875 }
876 }
877
878 BinaryOp getOpcode() const { return Opc; }
879 Init *getLHS() const { return LHS; }
880 Init *getRHS() const { return RHS; }
881
882 // Fold - If possible, fold this to a simpler init. Return this if not
883 // possible to fold.
884 Init *Fold(Record *CurRec, MultiClass *CurMultiClass);
David Greene196ac3c2009-04-23 21:25:15 +0000885
886 virtual Init *resolveReferences(Record &R, const RecordVal *RV);
Bob Wilson7248f862009-11-22 04:24:42 +0000887
David Greene196ac3c2009-04-23 21:25:15 +0000888 virtual std::string getAsString() const;
889};
890
David Greene5d0c0512009-05-14 20:54:48 +0000891/// TernOpInit - !op (X, Y, Z) - Combine two inits.
892///
David Greene98ed3c72009-05-14 21:54:42 +0000893class TernOpInit : public OpInit {
894public:
David Greene58a6b762009-06-09 18:31:17 +0000895 enum TernaryOp { SUBST, FOREACH, IF };
David Greene98ed3c72009-05-14 21:54:42 +0000896private:
897 TernaryOp Opc;
898 Init *LHS, *MHS, *RHS;
899public:
900 TernOpInit(TernaryOp opc, Init *lhs, Init *mhs, Init *rhs, RecTy *Type) :
901 OpInit(Type), Opc(opc), LHS(lhs), MHS(mhs), RHS(rhs) {
902 }
Bob Wilson7248f862009-11-22 04:24:42 +0000903
David Greene98ed3c72009-05-14 21:54:42 +0000904 // Clone - Clone this operator, replacing arguments with the new list
905 virtual OpInit *clone(std::vector<Init *> &Operands) {
Nick Lewyckyd449e7c2009-05-15 03:03:14 +0000906 assert(Operands.size() == 3 &&
907 "Wrong number of operands for ternary operation");
908 return new TernOpInit(getOpcode(), Operands[0], Operands[1], Operands[2],
909 getType());
David Greene98ed3c72009-05-14 21:54:42 +0000910 }
David Greene5d0c0512009-05-14 20:54:48 +0000911
Dan Gohman1432ef82009-08-12 22:10:57 +0000912 int getNumOperands() const { return 3; }
David Greene98ed3c72009-05-14 21:54:42 +0000913 Init *getOperand(int i) {
Nick Lewyckyd449e7c2009-05-15 03:03:14 +0000914 assert((i == 0 || i == 1 || i == 2) &&
915 "Invalid operand id for ternary operator");
David Greene98ed3c72009-05-14 21:54:42 +0000916 if (i == 0) {
917 return getLHS();
Bob Wilson7248f862009-11-22 04:24:42 +0000918 } else if (i == 1) {
David Greene98ed3c72009-05-14 21:54:42 +0000919 return getMHS();
Bob Wilson7248f862009-11-22 04:24:42 +0000920 } else {
David Greene98ed3c72009-05-14 21:54:42 +0000921 return getRHS();
922 }
923 }
David Greene5d0c0512009-05-14 20:54:48 +0000924
David Greene98ed3c72009-05-14 21:54:42 +0000925 TernaryOp getOpcode() const { return Opc; }
926 Init *getLHS() const { return LHS; }
927 Init *getMHS() const { return MHS; }
928 Init *getRHS() const { return RHS; }
David Greene5d0c0512009-05-14 20:54:48 +0000929
David Greene98ed3c72009-05-14 21:54:42 +0000930 // Fold - If possible, fold this to a simpler init. Return this if not
931 // possible to fold.
932 Init *Fold(Record *CurRec, MultiClass *CurMultiClass);
Bob Wilson7248f862009-11-22 04:24:42 +0000933
David Greene98ed3c72009-05-14 21:54:42 +0000934 virtual Init *resolveReferences(Record &R, const RecordVal *RV);
Bob Wilson7248f862009-11-22 04:24:42 +0000935
David Greene98ed3c72009-05-14 21:54:42 +0000936 virtual std::string getAsString() const;
937};
David Greene5d0c0512009-05-14 20:54:48 +0000938
David Greene196ac3c2009-04-23 21:25:15 +0000939
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000940/// VarInit - 'Opcode' - Represent a reference to an entire variable object.
941///
942class VarInit : public TypedInit {
943 std::string VarName;
944public:
Dan Gohmanc60c67f2008-03-25 22:06:05 +0000945 explicit VarInit(const std::string &VN, RecTy *T)
946 : TypedInit(T), VarName(VN) {}
Misha Brukman650ba8e2005-04-22 00:00:37 +0000947
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000948 virtual Init *convertInitializerTo(RecTy *Ty) {
949 return Ty->convertValue(this);
950 }
951
952 const std::string &getName() const { return VarName; }
953
Chris Lattneref943742005-04-19 03:36:21 +0000954 virtual Init *resolveBitReference(Record &R, const RecordVal *RV,
955 unsigned Bit);
956 virtual Init *resolveListElementReference(Record &R, const RecordVal *RV,
957 unsigned Elt);
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000958
959 virtual RecTy *getFieldType(const std::string &FieldName) const;
Jakob Stoklund Olesen0e457622010-03-25 06:23:34 +0000960 virtual Init *getFieldInit(Record &R, const RecordVal *RV,
961 const std::string &FieldName) const;
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000962
963 /// resolveReferences - This method is used by classes that refer to other
964 /// variables which may not be defined at the time they expression is formed.
965 /// If a value is set for the variable later, this method will be called on
966 /// users of the value to allow the value to propagate out.
967 ///
Chris Lattneref943742005-04-19 03:36:21 +0000968 virtual Init *resolveReferences(Record &R, const RecordVal *RV);
Misha Brukman650ba8e2005-04-22 00:00:37 +0000969
Chris Lattner695506c2007-11-22 21:05:25 +0000970 virtual std::string getAsString() const { return VarName; }
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000971};
972
973
974/// VarBitInit - Opcode{0} - Represent access to one bit of a variable or field.
975///
976class VarBitInit : public Init {
977 TypedInit *TI;
978 unsigned Bit;
979public:
980 VarBitInit(TypedInit *T, unsigned B) : TI(T), Bit(B) {
981 assert(T->getType() && dynamic_cast<BitsRecTy*>(T->getType()) &&
982 ((BitsRecTy*)T->getType())->getNumBits() > B &&
983 "Illegal VarBitInit expression!");
984 }
985
986 virtual Init *convertInitializerTo(RecTy *Ty) {
987 return Ty->convertValue(this);
988 }
989
990 TypedInit *getVariable() const { return TI; }
991 unsigned getBitNum() const { return Bit; }
Misha Brukman650ba8e2005-04-22 00:00:37 +0000992
Chris Lattner695506c2007-11-22 21:05:25 +0000993 virtual std::string getAsString() const;
Chris Lattneref943742005-04-19 03:36:21 +0000994 virtual Init *resolveReferences(Record &R, const RecordVal *RV);
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000995};
996
Misha Brukman650ba8e2005-04-22 00:00:37 +0000997/// VarListElementInit - List[4] - Represent access to one element of a var or
Chris Lattner577fc3f2004-07-27 01:01:21 +0000998/// field.
999class VarListElementInit : public TypedInit {
1000 TypedInit *TI;
1001 unsigned Element;
1002public:
1003 VarListElementInit(TypedInit *T, unsigned E)
1004 : TypedInit(dynamic_cast<ListRecTy*>(T->getType())->getElementType()),
1005 TI(T), Element(E) {
1006 assert(T->getType() && dynamic_cast<ListRecTy*>(T->getType()) &&
1007 "Illegal VarBitInit expression!");
1008 }
1009
1010 virtual Init *convertInitializerTo(RecTy *Ty) {
1011 return Ty->convertValue(this);
1012 }
1013
1014 TypedInit *getVariable() const { return TI; }
1015 unsigned getElementNum() const { return Element; }
1016
Chris Lattneref943742005-04-19 03:36:21 +00001017 virtual Init *resolveBitReference(Record &R, const RecordVal *RV,
1018 unsigned Bit);
Chris Lattner577fc3f2004-07-27 01:01:21 +00001019
1020 /// resolveListElementReference - This method is used to implement
1021 /// VarListElementInit::resolveReferences. If the list element is resolvable
1022 /// now, we return the resolved value, otherwise we return null.
Chris Lattneref943742005-04-19 03:36:21 +00001023 virtual Init *resolveListElementReference(Record &R, const RecordVal *RV,
1024 unsigned Elt);
Chris Lattner577fc3f2004-07-27 01:01:21 +00001025
Chris Lattner695506c2007-11-22 21:05:25 +00001026 virtual std::string getAsString() const;
Chris Lattneref943742005-04-19 03:36:21 +00001027 virtual Init *resolveReferences(Record &R, const RecordVal *RV);
Chris Lattner577fc3f2004-07-27 01:01:21 +00001028};
Chris Lattnerf5bd1b72003-10-05 19:27:59 +00001029
1030/// DefInit - AL - Represent a reference to a 'def' in the description
1031///
David Greenee917fff2009-05-14 22:23:47 +00001032class DefInit : public TypedInit {
Chris Lattnerf5bd1b72003-10-05 19:27:59 +00001033 Record *Def;
1034public:
David Greenee917fff2009-05-14 22:23:47 +00001035 explicit DefInit(Record *D) : TypedInit(new RecordRecTy(D)), Def(D) {}
Misha Brukman650ba8e2005-04-22 00:00:37 +00001036
Chris Lattnerf5bd1b72003-10-05 19:27:59 +00001037 virtual Init *convertInitializerTo(RecTy *Ty) {
1038 return Ty->convertValue(this);
1039 }
1040
1041 Record *getDef() const { return Def; }
1042
1043 //virtual Init *convertInitializerBitRange(const std::vector<unsigned> &Bits);
1044
1045 virtual RecTy *getFieldType(const std::string &FieldName) const;
Jakob Stoklund Olesen0e457622010-03-25 06:23:34 +00001046 virtual Init *getFieldInit(Record &R, const RecordVal *RV,
1047 const std::string &FieldName) const;
Misha Brukman650ba8e2005-04-22 00:00:37 +00001048
Chris Lattner695506c2007-11-22 21:05:25 +00001049 virtual std::string getAsString() const;
David Greenee917fff2009-05-14 22:23:47 +00001050
1051 /// resolveBitReference - This method is used to implement
1052 /// VarBitInit::resolveReferences. If the bit is able to be resolved, we
1053 /// simply return the resolved value, otherwise we return null.
1054 ///
1055 virtual Init *resolveBitReference(Record &R, const RecordVal *RV,
1056 unsigned Bit) {
1057 assert(0 && "Illegal bit reference off def");
1058 return 0;
1059 }
1060
1061 /// resolveListElementReference - This method is used to implement
1062 /// VarListElementInit::resolveReferences. If the list element is resolvable
1063 /// now, we return the resolved value, otherwise we return null.
1064 virtual Init *resolveListElementReference(Record &R, const RecordVal *RV,
1065 unsigned Elt) {
1066 assert(0 && "Illegal element reference off def");
1067 return 0;
1068 }
Chris Lattnerf5bd1b72003-10-05 19:27:59 +00001069};
1070
1071
1072/// FieldInit - X.Y - Represent a reference to a subfield of a variable
1073///
1074class FieldInit : public TypedInit {
1075 Init *Rec; // Record we are referring to
1076 std::string FieldName; // Field we are accessing
1077public:
1078 FieldInit(Init *R, const std::string &FN)
1079 : TypedInit(R->getFieldType(FN)), Rec(R), FieldName(FN) {
1080 assert(getType() && "FieldInit with non-record type!");
1081 }
1082
1083 virtual Init *convertInitializerTo(RecTy *Ty) {
1084 return Ty->convertValue(this);
1085 }
1086
Chris Lattneref943742005-04-19 03:36:21 +00001087 virtual Init *resolveBitReference(Record &R, const RecordVal *RV,
1088 unsigned Bit);
1089 virtual Init *resolveListElementReference(Record &R, const RecordVal *RV,
1090 unsigned Elt);
Chris Lattnerf5bd1b72003-10-05 19:27:59 +00001091
Chris Lattneref943742005-04-19 03:36:21 +00001092 virtual Init *resolveReferences(Record &R, const RecordVal *RV);
Chris Lattnerf5bd1b72003-10-05 19:27:59 +00001093
Chris Lattner695506c2007-11-22 21:05:25 +00001094 virtual std::string getAsString() const {
1095 return Rec->getAsString() + "." + FieldName;
Chris Lattnerf5bd1b72003-10-05 19:27:59 +00001096 }
1097};
1098
Chris Lattnerb59cf3c2006-03-30 22:50:40 +00001099/// DagInit - (v a, b) - Represent a DAG tree value. DAG inits are required
1100/// to have at least one value then a (possibly empty) list of arguments. Each
1101/// argument can have a name associated with it.
Chris Lattnerf5bd1b72003-10-05 19:27:59 +00001102///
David Greenee917fff2009-05-14 22:23:47 +00001103class DagInit : public TypedInit {
Chris Lattnerb59cf3c2006-03-30 22:50:40 +00001104 Init *Val;
Nate Begemandbe3f772009-03-19 05:21:56 +00001105 std::string ValName;
Chris Lattnerf5bd1b72003-10-05 19:27:59 +00001106 std::vector<Init*> Args;
1107 std::vector<std::string> ArgNames;
1108public:
Bob Wilson7248f862009-11-22 04:24:42 +00001109 DagInit(Init *V, std::string VN,
Nate Begemandbe3f772009-03-19 05:21:56 +00001110 const std::vector<std::pair<Init*, std::string> > &args)
David Greenee917fff2009-05-14 22:23:47 +00001111 : TypedInit(new DagRecTy), Val(V), ValName(VN) {
Chris Lattnerf5bd1b72003-10-05 19:27:59 +00001112 Args.reserve(args.size());
1113 ArgNames.reserve(args.size());
1114 for (unsigned i = 0, e = args.size(); i != e; ++i) {
1115 Args.push_back(args[i].first);
1116 ArgNames.push_back(args[i].second);
1117 }
1118 }
Bob Wilson7248f862009-11-22 04:24:42 +00001119 DagInit(Init *V, std::string VN, const std::vector<Init*> &args,
Chris Lattner0d3ef402006-01-31 06:02:35 +00001120 const std::vector<std::string> &argNames)
Bob Wilson7248f862009-11-22 04:24:42 +00001121 : TypedInit(new DagRecTy), Val(V), ValName(VN), Args(args),
1122 ArgNames(argNames) { }
1123
Chris Lattnerf5bd1b72003-10-05 19:27:59 +00001124 virtual Init *convertInitializerTo(RecTy *Ty) {
1125 return Ty->convertValue(this);
1126 }
1127
Chris Lattnerb59cf3c2006-03-30 22:50:40 +00001128 Init *getOperator() const { return Val; }
Chris Lattnerf5bd1b72003-10-05 19:27:59 +00001129
Nate Begemandbe3f772009-03-19 05:21:56 +00001130 const std::string &getName() const { return ValName; }
1131
Chris Lattnerf5bd1b72003-10-05 19:27:59 +00001132 unsigned getNumArgs() const { return Args.size(); }
1133 Init *getArg(unsigned Num) const {
1134 assert(Num < Args.size() && "Arg number out of range!");
1135 return Args[Num];
1136 }
1137 const std::string &getArgName(unsigned Num) const {
1138 assert(Num < ArgNames.size() && "Arg number out of range!");
1139 return ArgNames[Num];
1140 }
1141
1142 void setArg(unsigned Num, Init *I) {
1143 assert(Num < Args.size() && "Arg number out of range!");
1144 Args[Num] = I;
1145 }
Bob Wilson7248f862009-11-22 04:24:42 +00001146
Chris Lattner0d3ef402006-01-31 06:02:35 +00001147 virtual Init *resolveReferences(Record &R, const RecordVal *RV);
Chris Lattnerf5bd1b72003-10-05 19:27:59 +00001148
Chris Lattner695506c2007-11-22 21:05:25 +00001149 virtual std::string getAsString() const;
Anton Korobeynikov010bd772008-01-22 11:00:07 +00001150
1151 typedef std::vector<Init*>::iterator arg_iterator;
1152 typedef std::vector<Init*>::const_iterator const_arg_iterator;
1153 typedef std::vector<std::string>::iterator name_iterator;
1154 typedef std::vector<std::string>::const_iterator const_name_iterator;
1155
1156 inline arg_iterator arg_begin() { return Args.begin(); }
1157 inline const_arg_iterator arg_begin() const { return Args.begin(); }
1158 inline arg_iterator arg_end () { return Args.end(); }
1159 inline const_arg_iterator arg_end () const { return Args.end(); }
1160
1161 inline size_t arg_size () const { return Args.size(); }
1162 inline bool arg_empty() const { return Args.empty(); }
1163
1164 inline name_iterator name_begin() { return ArgNames.begin(); }
1165 inline const_name_iterator name_begin() const { return ArgNames.begin(); }
1166 inline name_iterator name_end () { return ArgNames.end(); }
1167 inline const_name_iterator name_end () const { return ArgNames.end(); }
1168
1169 inline size_t name_size () const { return ArgNames.size(); }
1170 inline bool name_empty() const { return ArgNames.empty(); }
1171
David Greenee917fff2009-05-14 22:23:47 +00001172 virtual Init *resolveBitReference(Record &R, const RecordVal *RV,
1173 unsigned Bit) {
1174 assert(0 && "Illegal bit reference off dag");
1175 return 0;
1176 }
Bob Wilson7248f862009-11-22 04:24:42 +00001177
David Greenee917fff2009-05-14 22:23:47 +00001178 virtual Init *resolveListElementReference(Record &R, const RecordVal *RV,
1179 unsigned Elt) {
1180 assert(0 && "Illegal element reference off dag");
1181 return 0;
1182 }
Chris Lattnerf5bd1b72003-10-05 19:27:59 +00001183};
1184
1185//===----------------------------------------------------------------------===//
1186// High-Level Classes
1187//===----------------------------------------------------------------------===//
1188
1189class RecordVal {
1190 std::string Name;
1191 RecTy *Ty;
1192 unsigned Prefix;
1193 Init *Value;
1194public:
1195 RecordVal(const std::string &N, RecTy *T, unsigned P);
1196
1197 const std::string &getName() const { return Name; }
1198
1199 unsigned getPrefix() const { return Prefix; }
1200 RecTy *getType() const { return Ty; }
1201 Init *getValue() const { return Value; }
1202
1203 bool setValue(Init *V) {
1204 if (V) {
1205 Value = V->convertInitializerTo(Ty);
1206 return Value == 0;
1207 }
1208 Value = 0;
1209 return false;
1210 }
1211
1212 void dump() const;
Daniel Dunbar38a22bf2009-07-03 00:10:29 +00001213 void print(raw_ostream &OS, bool PrintSem = true) const;
Chris Lattnerf5bd1b72003-10-05 19:27:59 +00001214};
1215
Daniel Dunbar38a22bf2009-07-03 00:10:29 +00001216inline raw_ostream &operator<<(raw_ostream &OS, const RecordVal &RV) {
Chris Lattnerf5bd1b72003-10-05 19:27:59 +00001217 RV.print(OS << " ");
1218 return OS;
1219}
1220
Chris Lattner87a10612004-10-23 04:58:50 +00001221class Record {
Daniel Dunbarced00812009-08-23 09:47:37 +00001222 static unsigned LastID;
1223
1224 // Unique record ID.
1225 unsigned ID;
Chris Lattnerf9b2edb2005-08-19 17:58:49 +00001226 std::string Name;
Chris Lattner526c8cb2009-06-21 03:39:35 +00001227 SMLoc Loc;
Chris Lattnerf5bd1b72003-10-05 19:27:59 +00001228 std::vector<std::string> TemplateArgs;
1229 std::vector<RecordVal> Values;
1230 std::vector<Record*> SuperClasses;
Chris Lattner77d369c2010-12-13 00:23:57 +00001231
1232 // Tracks Record instances. Not owned by Record.
1233 RecordKeeper &TrackedRecords;
1234
Chris Lattnerf5bd1b72003-10-05 19:27:59 +00001235public:
1236
Chris Lattner77d369c2010-12-13 00:23:57 +00001237 // Constructs a record. See also RecordKeeper::createRecord.
1238 explicit Record(const std::string &N, SMLoc loc, RecordKeeper& records) :
1239 ID(LastID++), Name(N), Loc(loc), TrackedRecords(records) {}
Chris Lattnerf5bd1b72003-10-05 19:27:59 +00001240 ~Record() {}
Bob Wilson7248f862009-11-22 04:24:42 +00001241
Mikhail Glushenkov5be67642010-09-21 14:59:50 +00001242
Chris Lattnerd39f75b2010-03-01 22:09:11 +00001243 static unsigned getNewUID() { return LastID++; }
Mikhail Glushenkov5be67642010-09-21 14:59:50 +00001244
1245
Daniel Dunbarced00812009-08-23 09:47:37 +00001246 unsigned getID() const { return ID; }
1247
Chris Lattnerf5bd1b72003-10-05 19:27:59 +00001248 const std::string &getName() const { return Name; }
Chris Lattnerac284252005-08-19 17:58:11 +00001249 void setName(const std::string &Name); // Also updates RecordKeeper.
Bob Wilson7248f862009-11-22 04:24:42 +00001250
Chris Lattner526c8cb2009-06-21 03:39:35 +00001251 SMLoc getLoc() const { return Loc; }
Bob Wilson7248f862009-11-22 04:24:42 +00001252
Chris Lattnerf5bd1b72003-10-05 19:27:59 +00001253 const std::vector<std::string> &getTemplateArgs() const {
1254 return TemplateArgs;
1255 }
1256 const std::vector<RecordVal> &getValues() const { return Values; }
1257 const std::vector<Record*> &getSuperClasses() const { return SuperClasses; }
1258
Chris Lattner42bb0c12009-09-18 18:31:37 +00001259 bool isTemplateArg(StringRef Name) const {
Chris Lattnerf5bd1b72003-10-05 19:27:59 +00001260 for (unsigned i = 0, e = TemplateArgs.size(); i != e; ++i)
1261 if (TemplateArgs[i] == Name) return true;
1262 return false;
1263 }
1264
Chris Lattner42bb0c12009-09-18 18:31:37 +00001265 const RecordVal *getValue(StringRef Name) const {
Chris Lattnerf5bd1b72003-10-05 19:27:59 +00001266 for (unsigned i = 0, e = Values.size(); i != e; ++i)
1267 if (Values[i].getName() == Name) return &Values[i];
1268 return 0;
1269 }
Chris Lattner42bb0c12009-09-18 18:31:37 +00001270 RecordVal *getValue(StringRef Name) {
Chris Lattnerf5bd1b72003-10-05 19:27:59 +00001271 for (unsigned i = 0, e = Values.size(); i != e; ++i)
1272 if (Values[i].getName() == Name) return &Values[i];
1273 return 0;
1274 }
1275
Chris Lattner42bb0c12009-09-18 18:31:37 +00001276 void addTemplateArg(StringRef Name) {
Chris Lattnerf5bd1b72003-10-05 19:27:59 +00001277 assert(!isTemplateArg(Name) && "Template arg already defined!");
1278 TemplateArgs.push_back(Name);
1279 }
1280
1281 void addValue(const RecordVal &RV) {
1282 assert(getValue(RV.getName()) == 0 && "Value already added!");
1283 Values.push_back(RV);
1284 }
1285
Chris Lattner42bb0c12009-09-18 18:31:37 +00001286 void removeValue(StringRef Name) {
Chris Lattnerf5bd1b72003-10-05 19:27:59 +00001287 for (unsigned i = 0, e = Values.size(); i != e; ++i)
1288 if (Values[i].getName() == Name) {
1289 Values.erase(Values.begin()+i);
1290 return;
1291 }
Bob Wilson3b793a42009-11-21 22:39:27 +00001292 assert(0 && "Cannot remove an entry that does not exist!");
Chris Lattnerf5bd1b72003-10-05 19:27:59 +00001293 }
1294
Ted Kremenek58e32872009-03-13 22:20:10 +00001295 bool isSubClassOf(const Record *R) const {
Chris Lattnerf5bd1b72003-10-05 19:27:59 +00001296 for (unsigned i = 0, e = SuperClasses.size(); i != e; ++i)
1297 if (SuperClasses[i] == R)
Jeff Cohen88e7b722005-04-22 04:13:13 +00001298 return true;
Chris Lattnerf5bd1b72003-10-05 19:27:59 +00001299 return false;
1300 }
1301
Chris Lattner42bb0c12009-09-18 18:31:37 +00001302 bool isSubClassOf(StringRef Name) const {
Chris Lattnerf5bd1b72003-10-05 19:27:59 +00001303 for (unsigned i = 0, e = SuperClasses.size(); i != e; ++i)
1304 if (SuperClasses[i]->getName() == Name)
1305 return true;
1306 return false;
1307 }
1308
1309 void addSuperClass(Record *R) {
1310 assert(!isSubClassOf(R) && "Already subclassing record!");
1311 SuperClasses.push_back(R);
1312 }
1313
Chris Lattneref943742005-04-19 03:36:21 +00001314 /// resolveReferences - If there are any field references that refer to fields
1315 /// that have been filled in, we can propagate the values now.
1316 ///
1317 void resolveReferences() { resolveReferencesTo(0); }
1318
1319 /// resolveReferencesTo - If anything in this record refers to RV, replace the
1320 /// reference to RV with the RHS of RV. If RV is null, we resolve all
1321 /// possible references.
1322 void resolveReferencesTo(const RecordVal *RV);
Chris Lattnerf5bd1b72003-10-05 19:27:59 +00001323
Chris Lattner77d369c2010-12-13 00:23:57 +00001324 RecordKeeper &getRecords() const {
1325 return(TrackedRecords);
1326 }
1327
Chris Lattnerf5bd1b72003-10-05 19:27:59 +00001328 void dump() const;
1329
1330 //===--------------------------------------------------------------------===//
1331 // High-level methods useful to tablegen back-ends
1332 //
1333
1334 /// getValueInit - Return the initializer for a value with the specified name,
1335 /// or throw an exception if the field does not exist.
1336 ///
Chris Lattner42bb0c12009-09-18 18:31:37 +00001337 Init *getValueInit(StringRef FieldName) const;
Chris Lattnerf5bd1b72003-10-05 19:27:59 +00001338
1339 /// getValueAsString - This method looks up the specified field and returns
1340 /// its value as a string, throwing an exception if the field does not exist
1341 /// or if the value is not a string.
1342 ///
Chris Lattner42bb0c12009-09-18 18:31:37 +00001343 std::string getValueAsString(StringRef FieldName) const;
Chris Lattnerf5bd1b72003-10-05 19:27:59 +00001344
1345 /// getValueAsBitsInit - This method looks up the specified field and returns
1346 /// its value as a BitsInit, throwing an exception if the field does not exist
1347 /// or if the value is not the right type.
1348 ///
Chris Lattner42bb0c12009-09-18 18:31:37 +00001349 BitsInit *getValueAsBitsInit(StringRef FieldName) const;
Chris Lattnerf5bd1b72003-10-05 19:27:59 +00001350
1351 /// getValueAsListInit - This method looks up the specified field and returns
1352 /// its value as a ListInit, throwing an exception if the field does not exist
1353 /// or if the value is not the right type.
1354 ///
Chris Lattner42bb0c12009-09-18 18:31:37 +00001355 ListInit *getValueAsListInit(StringRef FieldName) const;
Chris Lattnerf5bd1b72003-10-05 19:27:59 +00001356
Chris Lattner7ad0bed2005-10-28 22:49:02 +00001357 /// getValueAsListOfDefs - This method looks up the specified field and
Anton Korobeynikova468a112007-11-11 11:19:37 +00001358 /// returns its value as a vector of records, throwing an exception if the
Chris Lattner7ad0bed2005-10-28 22:49:02 +00001359 /// field does not exist or if the value is not the right type.
Jim Laskeyb04feb62005-10-28 21:46:31 +00001360 ///
Chris Lattner42bb0c12009-09-18 18:31:37 +00001361 std::vector<Record*> getValueAsListOfDefs(StringRef FieldName) const;
Jim Laskeyb04feb62005-10-28 21:46:31 +00001362
Mikhail Glushenkov5be67642010-09-21 14:59:50 +00001363 /// getValueAsListOfInts - This method looks up the specified field and
1364 /// returns its value as a vector of integers, throwing an exception if the
1365 /// field does not exist or if the value is not the right type.
Anton Korobeynikova468a112007-11-11 11:19:37 +00001366 ///
Chris Lattner42bb0c12009-09-18 18:31:37 +00001367 std::vector<int64_t> getValueAsListOfInts(StringRef FieldName) const;
Bob Wilson7248f862009-11-22 04:24:42 +00001368
Chris Lattnerf5bd1b72003-10-05 19:27:59 +00001369 /// getValueAsDef - This method looks up the specified field and returns its
1370 /// value as a Record, throwing an exception if the field does not exist or if
1371 /// the value is not the right type.
1372 ///
Chris Lattner42bb0c12009-09-18 18:31:37 +00001373 Record *getValueAsDef(StringRef FieldName) const;
Chris Lattnerf5bd1b72003-10-05 19:27:59 +00001374
1375 /// getValueAsBit - This method looks up the specified field and returns its
1376 /// value as a bit, throwing an exception if the field does not exist or if
1377 /// the value is not the right type.
1378 ///
Chris Lattner42bb0c12009-09-18 18:31:37 +00001379 bool getValueAsBit(StringRef FieldName) const;
Chris Lattnerf5bd1b72003-10-05 19:27:59 +00001380
1381 /// getValueAsInt - This method looks up the specified field and returns its
Dan Gohmanca0546f2008-10-17 01:33:43 +00001382 /// value as an int64_t, throwing an exception if the field does not exist or
1383 /// if the value is not the right type.
Chris Lattnerf5bd1b72003-10-05 19:27:59 +00001384 ///
Chris Lattner42bb0c12009-09-18 18:31:37 +00001385 int64_t getValueAsInt(StringRef FieldName) const;
Chris Lattnerf5bd1b72003-10-05 19:27:59 +00001386
1387 /// getValueAsDag - This method looks up the specified field and returns its
1388 /// value as an Dag, throwing an exception if the field does not exist or if
1389 /// the value is not the right type.
1390 ///
Chris Lattner42bb0c12009-09-18 18:31:37 +00001391 DagInit *getValueAsDag(StringRef FieldName) const;
Bob Wilson7248f862009-11-22 04:24:42 +00001392
Chris Lattnerae939eb2005-09-13 21:44:28 +00001393 /// getValueAsCode - This method looks up the specified field and returns
1394 /// its value as the string data in a CodeInit, throwing an exception if the
1395 /// field does not exist or if the value is not a code object.
1396 ///
Chris Lattner42bb0c12009-09-18 18:31:37 +00001397 std::string getValueAsCode(StringRef FieldName) const;
Chris Lattnerf5bd1b72003-10-05 19:27:59 +00001398};
1399
Daniel Dunbar38a22bf2009-07-03 00:10:29 +00001400raw_ostream &operator<<(raw_ostream &OS, const Record &R);
Chris Lattnerf5bd1b72003-10-05 19:27:59 +00001401
David Greenea9c6c5d2009-04-22 20:18:10 +00001402struct MultiClass {
1403 Record Rec; // Placeholder for template args and Name.
1404 typedef std::vector<Record*> RecordVector;
1405 RecordVector DefPrototypes;
David Greene7049e792009-04-24 16:55:41 +00001406
1407 void dump() const;
1408
Chris Lattner77d369c2010-12-13 00:23:57 +00001409 MultiClass(const std::string &Name, SMLoc Loc, RecordKeeper &Records) :
1410 Rec(Name, Loc, Records) {}
David Greenea9c6c5d2009-04-22 20:18:10 +00001411};
1412
Chris Lattnerf5bd1b72003-10-05 19:27:59 +00001413class RecordKeeper {
1414 std::map<std::string, Record*> Classes, Defs;
1415public:
1416 ~RecordKeeper() {
1417 for (std::map<std::string, Record*>::iterator I = Classes.begin(),
Jeff Cohen88e7b722005-04-22 04:13:13 +00001418 E = Classes.end(); I != E; ++I)
Chris Lattnerf5bd1b72003-10-05 19:27:59 +00001419 delete I->second;
1420 for (std::map<std::string, Record*>::iterator I = Defs.begin(),
Jeff Cohen88e7b722005-04-22 04:13:13 +00001421 E = Defs.end(); I != E; ++I)
Chris Lattnerf5bd1b72003-10-05 19:27:59 +00001422 delete I->second;
1423 }
Misha Brukman650ba8e2005-04-22 00:00:37 +00001424
Chris Lattnerf5bd1b72003-10-05 19:27:59 +00001425 const std::map<std::string, Record*> &getClasses() const { return Classes; }
1426 const std::map<std::string, Record*> &getDefs() const { return Defs; }
1427
1428 Record *getClass(const std::string &Name) const {
1429 std::map<std::string, Record*>::const_iterator I = Classes.find(Name);
1430 return I == Classes.end() ? 0 : I->second;
1431 }
1432 Record *getDef(const std::string &Name) const {
1433 std::map<std::string, Record*>::const_iterator I = Defs.find(Name);
1434 return I == Defs.end() ? 0 : I->second;
1435 }
1436 void addClass(Record *R) {
1437 assert(getClass(R->getName()) == 0 && "Class already exists!");
1438 Classes.insert(std::make_pair(R->getName(), R));
1439 }
1440 void addDef(Record *R) {
1441 assert(getDef(R->getName()) == 0 && "Def already exists!");
1442 Defs.insert(std::make_pair(R->getName(), R));
1443 }
1444
Chris Lattnerac284252005-08-19 17:58:11 +00001445 /// removeClass - Remove, but do not delete, the specified record.
1446 ///
1447 void removeClass(const std::string &Name) {
1448 assert(Classes.count(Name) && "Class does not exist!");
1449 Classes.erase(Name);
1450 }
1451 /// removeDef - Remove, but do not delete, the specified record.
1452 ///
1453 void removeDef(const std::string &Name) {
1454 assert(Defs.count(Name) && "Def does not exist!");
1455 Defs.erase(Name);
1456 }
Bob Wilson7248f862009-11-22 04:24:42 +00001457
Chris Lattnerf5bd1b72003-10-05 19:27:59 +00001458 //===--------------------------------------------------------------------===//
1459 // High-level helper methods, useful for tablegen backends...
1460
1461 /// getAllDerivedDefinitions - This method returns all concrete definitions
1462 /// that derive from the specified class name. If a class with the specified
1463 /// name does not exist, an exception is thrown.
1464 std::vector<Record*>
1465 getAllDerivedDefinitions(const std::string &ClassName) const;
1466
Chris Lattner77d369c2010-12-13 00:23:57 +00001467 // allocates and returns a record.
1468 Record *createRecord(const std::string &N, SMLoc loc) {
1469 return(new Record(N, loc, *this));
1470 }
1471
Chris Lattnerf5bd1b72003-10-05 19:27:59 +00001472
1473 void dump() const;
1474};
1475
Chris Lattnerbd7ccd012008-08-26 06:43:25 +00001476/// LessRecord - Sorting predicate to sort record pointers by name.
1477///
1478struct LessRecord {
1479 bool operator()(const Record *Rec1, const Record *Rec2) const {
Jakob Stoklund Olesend1d7ed62010-05-26 21:47:28 +00001480 return StringRef(Rec1->getName()).compare_numeric(Rec2->getName()) < 0;
Chris Lattnerbd7ccd012008-08-26 06:43:25 +00001481 }
1482};
1483
Bob Wilson7248f862009-11-22 04:24:42 +00001484/// LessRecordFieldName - Sorting predicate to sort record pointers by their
Jim Grosbach56938af2008-09-11 17:05:32 +00001485/// name field.
Chris Lattnerbd7ccd012008-08-26 06:43:25 +00001486///
1487struct LessRecordFieldName {
1488 bool operator()(const Record *Rec1, const Record *Rec2) const {
1489 return Rec1->getValueAsString("Name") < Rec2->getValueAsString("Name");
1490 }
1491};
1492
Chris Lattnerba42e492009-03-13 16:25:21 +00001493
1494class TGError {
Chris Lattner526c8cb2009-06-21 03:39:35 +00001495 SMLoc Loc;
Chris Lattnerba42e492009-03-13 16:25:21 +00001496 std::string Message;
1497public:
Chris Lattner526c8cb2009-06-21 03:39:35 +00001498 TGError(SMLoc loc, const std::string &message) : Loc(loc), Message(message) {}
Bob Wilson7248f862009-11-22 04:24:42 +00001499
Chris Lattner526c8cb2009-06-21 03:39:35 +00001500 SMLoc getLoc() const { return Loc; }
Chris Lattnerba42e492009-03-13 16:25:21 +00001501 const std::string &getMessage() const { return Message; }
1502};
Bob Wilson7248f862009-11-22 04:24:42 +00001503
1504
Daniel Dunbar38a22bf2009-07-03 00:10:29 +00001505raw_ostream &operator<<(raw_ostream &OS, const RecordKeeper &RK);
Chris Lattnerf5bd1b72003-10-05 19:27:59 +00001506
Benjamin Kramerc7583112010-09-27 17:42:11 +00001507void PrintError(SMLoc ErrorLoc, const Twine &Msg);
Chris Lattnerbd9b9212009-03-13 16:09:24 +00001508
Brian Gaeke960707c2003-11-11 22:41:34 +00001509} // End llvm namespace
1510
Chris Lattnerf5bd1b72003-10-05 19:27:59 +00001511#endif