blob: b9f9887ca38687a60a9053daf70d7c282b2c7dc5 [file] [log] [blame]
Chris Lattner00950542001-06-06 20:29:01 +00001//===-- llvmAsmParser.y - Parser for llvm assembly files ---------*- C++ -*--=//
2//
3// This file implements the bison parser for LLVM assembly languages files.
4//
5//===------------------------------------------------------------------------=//
6
Chris Lattner00950542001-06-06 20:29:01 +00007%{
8#include "ParserInternals.h"
Chris Lattner70cc3392001-09-10 07:58:01 +00009#include "llvm/Assembly/Parser.h"
Chris Lattner00950542001-06-06 20:29:01 +000010#include "llvm/SymbolTable.h"
11#include "llvm/Module.h"
Chris Lattner70cc3392001-09-10 07:58:01 +000012#include "llvm/GlobalVariable.h"
Chris Lattner79df7c02002-03-26 18:01:55 +000013#include "llvm/Function.h"
Chris Lattner70cc3392001-09-10 07:58:01 +000014#include "llvm/BasicBlock.h"
Chris Lattner00950542001-06-06 20:29:01 +000015#include "llvm/DerivedTypes.h"
Chris Lattner00950542001-06-06 20:29:01 +000016#include "llvm/iTerminators.h"
17#include "llvm/iMemory.h"
Chris Lattner7061dc52001-12-03 18:02:31 +000018#include "llvm/iPHINode.h"
Chris Lattnercee8f9a2001-11-27 00:03:19 +000019#include "Support/STLExtras.h"
20#include "Support/DepthFirstIterator.h"
Chris Lattner00950542001-06-06 20:29:01 +000021#include <list>
22#include <utility> // Get definition of pair class
Chris Lattner30c89792001-09-07 16:35:17 +000023#include <algorithm>
Chris Lattner00950542001-06-06 20:29:01 +000024#include <stdio.h> // This embarasment is due to our flex lexer...
Chris Lattner697954c2002-01-20 22:54:45 +000025#include <iostream>
26using std::list;
27using std::vector;
28using std::pair;
29using std::map;
30using std::pair;
31using std::make_pair;
32using std::cerr;
33using std::string;
Chris Lattner00950542001-06-06 20:29:01 +000034
Chris Lattner386a3b72001-10-16 19:54:17 +000035int yyerror(const char *ErrorMsg); // Forward declarations to prevent "implicit
Chris Lattner09083092001-07-08 04:57:15 +000036int yylex(); // declaration" of xxx warnings.
Chris Lattner00950542001-06-06 20:29:01 +000037int yyparse();
38
39static Module *ParserResult;
Chris Lattnera2850432001-07-22 18:36:00 +000040string CurFilename;
Chris Lattner00950542001-06-06 20:29:01 +000041
Chris Lattner30c89792001-09-07 16:35:17 +000042// DEBUG_UPREFS - Define this symbol if you want to enable debugging output
43// relating to upreferences in the input stream.
44//
45//#define DEBUG_UPREFS 1
46#ifdef DEBUG_UPREFS
47#define UR_OUT(X) cerr << X
48#else
49#define UR_OUT(X)
50#endif
51
Chris Lattner00950542001-06-06 20:29:01 +000052// This contains info used when building the body of a method. It is destroyed
53// when the method is completed.
54//
55typedef vector<Value *> ValueList; // Numbered defs
Chris Lattner386a3b72001-10-16 19:54:17 +000056static void ResolveDefinitions(vector<ValueList> &LateResolvers,
57 vector<ValueList> *FutureLateResolvers = 0);
Chris Lattner00950542001-06-06 20:29:01 +000058
59static struct PerModuleInfo {
60 Module *CurrentModule;
Chris Lattner30c89792001-09-07 16:35:17 +000061 vector<ValueList> Values; // Module level numbered definitions
62 vector<ValueList> LateResolveValues;
Chris Lattner8b88b3b2002-04-04 19:23:55 +000063 vector<PATypeHolder> Types;
64 map<ValID, PATypeHolder> LateResolveTypes;
Chris Lattner00950542001-06-06 20:29:01 +000065
Chris Lattner2079fde2001-10-13 06:41:08 +000066 // GlobalRefs - This maintains a mapping between <Type, ValID>'s and forward
67 // references to global values. Global values may be referenced before they
68 // are defined, and if so, the temporary object that they represent is held
Chris Lattnere9bb2df2001-12-03 22:26:30 +000069 // here. This is used for forward references of ConstantPointerRefs.
Chris Lattner2079fde2001-10-13 06:41:08 +000070 //
71 typedef map<pair<const PointerType *, ValID>, GlobalVariable*> GlobalRefsType;
72 GlobalRefsType GlobalRefs;
73
Chris Lattner00950542001-06-06 20:29:01 +000074 void ModuleDone() {
Chris Lattner30c89792001-09-07 16:35:17 +000075 // If we could not resolve some methods at method compilation time (calls to
76 // methods before they are defined), resolve them now... Types are resolved
77 // when the constant pool has been completely parsed.
78 //
Chris Lattner00950542001-06-06 20:29:01 +000079 ResolveDefinitions(LateResolveValues);
80
Chris Lattner2079fde2001-10-13 06:41:08 +000081 // Check to make sure that all global value forward references have been
82 // resolved!
83 //
84 if (!GlobalRefs.empty()) {
Chris Lattner749ce032002-03-11 22:12:39 +000085 string UndefinedReferences = "Unresolved global references exist:\n";
86
87 for (GlobalRefsType::iterator I = GlobalRefs.begin(), E =GlobalRefs.end();
88 I != E; ++I) {
89 UndefinedReferences += " " + I->first.first->getDescription() + " " +
90 I->first.second.getName() + "\n";
91 }
92 ThrowException(UndefinedReferences);
Chris Lattner2079fde2001-10-13 06:41:08 +000093 }
94
Chris Lattner00950542001-06-06 20:29:01 +000095 Values.clear(); // Clear out method local definitions
Chris Lattner30c89792001-09-07 16:35:17 +000096 Types.clear();
Chris Lattner00950542001-06-06 20:29:01 +000097 CurrentModule = 0;
98 }
Chris Lattner2079fde2001-10-13 06:41:08 +000099
100
101 // DeclareNewGlobalValue - Called every type a new GV has been defined. This
102 // is used to remove things from the forward declaration map, resolving them
103 // to the correct thing as needed.
104 //
105 void DeclareNewGlobalValue(GlobalValue *GV, ValID D) {
106 // Check to see if there is a forward reference to this global variable...
107 // if there is, eliminate it and patch the reference to use the new def'n.
108 GlobalRefsType::iterator I = GlobalRefs.find(make_pair(GV->getType(), D));
109
110 if (I != GlobalRefs.end()) {
111 GlobalVariable *OldGV = I->second; // Get the placeholder...
112 I->first.second.destroy(); // Free string memory if neccesary
113
114 // Loop over all of the uses of the GlobalValue. The only thing they are
Chris Lattnere9bb2df2001-12-03 22:26:30 +0000115 // allowed to be at this point is ConstantPointerRef's.
Chris Lattner2079fde2001-10-13 06:41:08 +0000116 assert(OldGV->use_size() == 1 && "Only one reference should exist!");
117 while (!OldGV->use_empty()) {
Chris Lattnere9bb2df2001-12-03 22:26:30 +0000118 User *U = OldGV->use_back(); // Must be a ConstantPointerRef...
119 ConstantPointerRef *CPPR = cast<ConstantPointerRef>(U);
Chris Lattner2079fde2001-10-13 06:41:08 +0000120 assert(CPPR->getValue() == OldGV && "Something isn't happy");
121
122 // Change the const pool reference to point to the real global variable
123 // now. This should drop a use from the OldGV.
124 CPPR->mutateReference(GV);
125 }
126
127 // Remove GV from the module...
128 CurrentModule->getGlobalList().remove(OldGV);
129 delete OldGV; // Delete the old placeholder
130
131 // Remove the map entry for the global now that it has been created...
132 GlobalRefs.erase(I);
133 }
134 }
135
Chris Lattner00950542001-06-06 20:29:01 +0000136} CurModule;
137
Chris Lattner79df7c02002-03-26 18:01:55 +0000138static struct PerFunctionInfo {
139 Function *CurrentFunction; // Pointer to current method being created
Chris Lattner00950542001-06-06 20:29:01 +0000140
Chris Lattnere1815642001-07-15 06:35:53 +0000141 vector<ValueList> Values; // Keep track of numbered definitions
Chris Lattner00950542001-06-06 20:29:01 +0000142 vector<ValueList> LateResolveValues;
Chris Lattner8b88b3b2002-04-04 19:23:55 +0000143 vector<PATypeHolder> Types;
144 map<ValID, PATypeHolder> LateResolveTypes;
Chris Lattnere1815642001-07-15 06:35:53 +0000145 bool isDeclare; // Is this method a forward declararation?
Chris Lattner00950542001-06-06 20:29:01 +0000146
Chris Lattner79df7c02002-03-26 18:01:55 +0000147 inline PerFunctionInfo() {
148 CurrentFunction = 0;
Chris Lattnere1815642001-07-15 06:35:53 +0000149 isDeclare = false;
Chris Lattner00950542001-06-06 20:29:01 +0000150 }
151
Chris Lattner79df7c02002-03-26 18:01:55 +0000152 inline ~PerFunctionInfo() {}
Chris Lattner00950542001-06-06 20:29:01 +0000153
Chris Lattner79df7c02002-03-26 18:01:55 +0000154 inline void FunctionStart(Function *M) {
155 CurrentFunction = M;
Chris Lattner00950542001-06-06 20:29:01 +0000156 }
157
Chris Lattner79df7c02002-03-26 18:01:55 +0000158 void FunctionDone() {
Chris Lattner00950542001-06-06 20:29:01 +0000159 // If we could not resolve some blocks at parsing time (forward branches)
160 // resolve the branches now...
Chris Lattner386a3b72001-10-16 19:54:17 +0000161 ResolveDefinitions(LateResolveValues, &CurModule.LateResolveValues);
Chris Lattner00950542001-06-06 20:29:01 +0000162
163 Values.clear(); // Clear out method local definitions
Chris Lattner30c89792001-09-07 16:35:17 +0000164 Types.clear();
Chris Lattner79df7c02002-03-26 18:01:55 +0000165 CurrentFunction = 0;
Chris Lattnere1815642001-07-15 06:35:53 +0000166 isDeclare = false;
Chris Lattner00950542001-06-06 20:29:01 +0000167 }
168} CurMeth; // Info for the current method...
169
Chris Lattner79df7c02002-03-26 18:01:55 +0000170static bool inFunctionScope() { return CurMeth.CurrentFunction != 0; }
Chris Lattnerb7474512001-10-03 15:39:04 +0000171
Chris Lattner00950542001-06-06 20:29:01 +0000172
173//===----------------------------------------------------------------------===//
174// Code to handle definitions of all the types
175//===----------------------------------------------------------------------===//
176
Chris Lattner2079fde2001-10-13 06:41:08 +0000177static int InsertValue(Value *D, vector<ValueList> &ValueTab = CurMeth.Values) {
178 if (D->hasName()) return -1; // Is this a numbered definition?
179
180 // Yes, insert the value into the value table...
181 unsigned type = D->getType()->getUniqueID();
182 if (ValueTab.size() <= type)
183 ValueTab.resize(type+1, ValueList());
184 //printf("Values[%d][%d] = %d\n", type, ValueTab[type].size(), D);
185 ValueTab[type].push_back(D);
186 return ValueTab[type].size()-1;
Chris Lattner00950542001-06-06 20:29:01 +0000187}
188
Chris Lattner30c89792001-09-07 16:35:17 +0000189// TODO: FIXME when Type are not const
Chris Lattner8b88b3b2002-04-04 19:23:55 +0000190static void InsertType(const Type *Ty, vector<PATypeHolder> &Types) {
Chris Lattner30c89792001-09-07 16:35:17 +0000191 Types.push_back(Ty);
192}
193
194static const Type *getTypeVal(const ValID &D, bool DoNotImprovise = false) {
Chris Lattner00950542001-06-06 20:29:01 +0000195 switch (D.Type) {
196 case 0: { // Is it a numbered definition?
Chris Lattner30c89792001-09-07 16:35:17 +0000197 unsigned Num = (unsigned)D.Num;
198
199 // Module constants occupy the lowest numbered slots...
200 if (Num < CurModule.Types.size())
201 return CurModule.Types[Num];
202
203 Num -= CurModule.Types.size();
204
205 // Check that the number is within bounds...
206 if (Num <= CurMeth.Types.size())
207 return CurMeth.Types[Num];
Chris Lattner42c9e772001-10-20 09:32:59 +0000208 break;
Chris Lattner30c89792001-09-07 16:35:17 +0000209 }
210 case 1: { // Is it a named definition?
211 string Name(D.Name);
212 SymbolTable *SymTab = 0;
Chris Lattner79df7c02002-03-26 18:01:55 +0000213 if (inFunctionScope()) SymTab = CurMeth.CurrentFunction->getSymbolTable();
Chris Lattner30c89792001-09-07 16:35:17 +0000214 Value *N = SymTab ? SymTab->lookup(Type::TypeTy, Name) : 0;
215
216 if (N == 0) {
217 // Symbol table doesn't automatically chain yet... because the method
218 // hasn't been added to the module...
219 //
220 SymTab = CurModule.CurrentModule->getSymbolTable();
221 if (SymTab)
222 N = SymTab->lookup(Type::TypeTy, Name);
223 if (N == 0) break;
224 }
225
226 D.destroy(); // Free old strdup'd memory...
Chris Lattnercfe26c92001-10-01 18:26:53 +0000227 return cast<const Type>(N);
Chris Lattner30c89792001-09-07 16:35:17 +0000228 }
229 default:
230 ThrowException("Invalid symbol type reference!");
231 }
232
233 // If we reached here, we referenced either a symbol that we don't know about
234 // or an id number that hasn't been read yet. We may be referencing something
235 // forward, so just create an entry to be resolved later and get to it...
236 //
237 if (DoNotImprovise) return 0; // Do we just want a null to be returned?
238
Chris Lattner8b88b3b2002-04-04 19:23:55 +0000239 map<ValID, PATypeHolder> &LateResolver = inFunctionScope() ?
Chris Lattner4a42e902001-10-22 05:56:09 +0000240 CurMeth.LateResolveTypes : CurModule.LateResolveTypes;
241
Chris Lattner8b88b3b2002-04-04 19:23:55 +0000242 map<ValID, PATypeHolder>::iterator I = LateResolver.find(D);
Chris Lattner4a42e902001-10-22 05:56:09 +0000243 if (I != LateResolver.end()) {
244 return I->second;
245 }
Chris Lattner30c89792001-09-07 16:35:17 +0000246
Chris Lattner82269592001-10-22 06:01:08 +0000247 Type *Typ = OpaqueType::get();
Chris Lattner4a42e902001-10-22 05:56:09 +0000248 LateResolver.insert(make_pair(D, Typ));
Chris Lattner30c89792001-09-07 16:35:17 +0000249 return Typ;
250}
251
Chris Lattnerf4ba6c72001-10-03 06:12:09 +0000252static Value *lookupInSymbolTable(const Type *Ty, const string &Name) {
253 SymbolTable *SymTab =
Chris Lattner79df7c02002-03-26 18:01:55 +0000254 inFunctionScope() ? CurMeth.CurrentFunction->getSymbolTable() : 0;
Chris Lattnerf4ba6c72001-10-03 06:12:09 +0000255 Value *N = SymTab ? SymTab->lookup(Ty, Name) : 0;
256
257 if (N == 0) {
258 // Symbol table doesn't automatically chain yet... because the method
259 // hasn't been added to the module...
260 //
261 SymTab = CurModule.CurrentModule->getSymbolTable();
262 if (SymTab)
263 N = SymTab->lookup(Ty, Name);
264 }
265
266 return N;
267}
268
Chris Lattner2079fde2001-10-13 06:41:08 +0000269// getValNonImprovising - Look up the value specified by the provided type and
270// the provided ValID. If the value exists and has already been defined, return
271// it. Otherwise return null.
272//
273static Value *getValNonImprovising(const Type *Ty, const ValID &D) {
Chris Lattner79df7c02002-03-26 18:01:55 +0000274 if (isa<FunctionType>(Ty))
275 ThrowException("Functions are not values and "
276 "must be referenced as pointers");
Chris Lattner386a3b72001-10-16 19:54:17 +0000277
Chris Lattner30c89792001-09-07 16:35:17 +0000278 switch (D.Type) {
Chris Lattner1a1cb112001-09-30 22:46:54 +0000279 case ValID::NumberVal: { // Is it a numbered definition?
Chris Lattner30c89792001-09-07 16:35:17 +0000280 unsigned type = Ty->getUniqueID();
Chris Lattner00950542001-06-06 20:29:01 +0000281 unsigned Num = (unsigned)D.Num;
282
283 // Module constants occupy the lowest numbered slots...
284 if (type < CurModule.Values.size()) {
285 if (Num < CurModule.Values[type].size())
286 return CurModule.Values[type][Num];
287
288 Num -= CurModule.Values[type].size();
289 }
290
291 // Make sure that our type is within bounds
Chris Lattner2079fde2001-10-13 06:41:08 +0000292 if (CurMeth.Values.size() <= type) return 0;
Chris Lattner00950542001-06-06 20:29:01 +0000293
294 // Check that the number is within bounds...
Chris Lattner2079fde2001-10-13 06:41:08 +0000295 if (CurMeth.Values[type].size() <= Num) return 0;
Chris Lattner00950542001-06-06 20:29:01 +0000296
297 return CurMeth.Values[type][Num];
298 }
Chris Lattner2079fde2001-10-13 06:41:08 +0000299
Chris Lattner1a1cb112001-09-30 22:46:54 +0000300 case ValID::NameVal: { // Is it a named definition?
Chris Lattner2079fde2001-10-13 06:41:08 +0000301 Value *N = lookupInSymbolTable(Ty, string(D.Name));
302 if (N == 0) return 0;
Chris Lattner00950542001-06-06 20:29:01 +0000303
304 D.destroy(); // Free old strdup'd memory...
305 return N;
306 }
307
Chris Lattner2079fde2001-10-13 06:41:08 +0000308 // Check to make sure that "Ty" is an integral type, and that our
309 // value will fit into the specified type...
310 case ValID::ConstSIntVal: // Is it a constant pool reference??
311 if (Ty == Type::BoolTy) { // Special handling for boolean data
Chris Lattnere9bb2df2001-12-03 22:26:30 +0000312 return ConstantBool::get(D.ConstPool64 != 0);
Chris Lattner2079fde2001-10-13 06:41:08 +0000313 } else {
Chris Lattnere9bb2df2001-12-03 22:26:30 +0000314 if (!ConstantSInt::isValueValidForType(Ty, D.ConstPool64))
Chris Lattner2079fde2001-10-13 06:41:08 +0000315 ThrowException("Symbolic constant pool value '" +
316 itostr(D.ConstPool64) + "' is invalid for type '" +
Chris Lattner72e00252001-12-14 16:28:42 +0000317 Ty->getDescription() + "'!");
Chris Lattnere9bb2df2001-12-03 22:26:30 +0000318 return ConstantSInt::get(Ty, D.ConstPool64);
Chris Lattner00950542001-06-06 20:29:01 +0000319 }
Chris Lattner2079fde2001-10-13 06:41:08 +0000320
321 case ValID::ConstUIntVal: // Is it an unsigned const pool reference?
Chris Lattnere9bb2df2001-12-03 22:26:30 +0000322 if (!ConstantUInt::isValueValidForType(Ty, D.UConstPool64)) {
323 if (!ConstantSInt::isValueValidForType(Ty, D.ConstPool64)) {
Chris Lattner2079fde2001-10-13 06:41:08 +0000324 ThrowException("Integral constant pool reference is invalid!");
325 } else { // This is really a signed reference. Transmogrify.
Chris Lattnere9bb2df2001-12-03 22:26:30 +0000326 return ConstantSInt::get(Ty, D.ConstPool64);
Chris Lattner2079fde2001-10-13 06:41:08 +0000327 }
328 } else {
Chris Lattnere9bb2df2001-12-03 22:26:30 +0000329 return ConstantUInt::get(Ty, D.UConstPool64);
Chris Lattner2079fde2001-10-13 06:41:08 +0000330 }
331
332 case ValID::ConstStringVal: // Is it a string const pool reference?
333 cerr << "FIXME: TODO: String constants [sbyte] not implemented yet!\n";
334 abort();
335 return 0;
336
337 case ValID::ConstFPVal: // Is it a floating point const pool reference?
Chris Lattnere9bb2df2001-12-03 22:26:30 +0000338 if (!ConstantFP::isValueValidForType(Ty, D.ConstPoolFP))
Chris Lattner2079fde2001-10-13 06:41:08 +0000339 ThrowException("FP constant invalid for type!!");
Chris Lattnere9bb2df2001-12-03 22:26:30 +0000340 return ConstantFP::get(Ty, D.ConstPoolFP);
Chris Lattner2079fde2001-10-13 06:41:08 +0000341
342 case ValID::ConstNullVal: // Is it a null value?
343 if (!Ty->isPointerType())
344 ThrowException("Cannot create a a non pointer null!");
Chris Lattnere9bb2df2001-12-03 22:26:30 +0000345 return ConstantPointerNull::get(cast<PointerType>(Ty));
Chris Lattner2079fde2001-10-13 06:41:08 +0000346
Chris Lattner30c89792001-09-07 16:35:17 +0000347 default:
348 assert(0 && "Unhandled case!");
Chris Lattner2079fde2001-10-13 06:41:08 +0000349 return 0;
Chris Lattner00950542001-06-06 20:29:01 +0000350 } // End of switch
351
Chris Lattner2079fde2001-10-13 06:41:08 +0000352 assert(0 && "Unhandled case!");
353 return 0;
354}
355
356
357// getVal - This function is identical to getValNonImprovising, except that if a
358// value is not already defined, it "improvises" by creating a placeholder var
359// that looks and acts just like the requested variable. When the value is
360// defined later, all uses of the placeholder variable are replaced with the
361// real thing.
362//
363static Value *getVal(const Type *Ty, const ValID &D) {
364 assert(Ty != Type::TypeTy && "Should use getTypeVal for types!");
365
366 // See if the value has already been defined...
367 Value *V = getValNonImprovising(Ty, D);
368 if (V) return V;
Chris Lattner00950542001-06-06 20:29:01 +0000369
370 // If we reached here, we referenced either a symbol that we don't know about
371 // or an id number that hasn't been read yet. We may be referencing something
372 // forward, so just create an entry to be resolved later and get to it...
373 //
Chris Lattner00950542001-06-06 20:29:01 +0000374 Value *d = 0;
Chris Lattner30c89792001-09-07 16:35:17 +0000375 switch (Ty->getPrimitiveID()) {
376 case Type::LabelTyID: d = new BBPlaceHolder(Ty, D); break;
Chris Lattner30c89792001-09-07 16:35:17 +0000377 default: d = new ValuePlaceHolder(Ty, D); break;
Chris Lattner00950542001-06-06 20:29:01 +0000378 }
379
380 assert(d != 0 && "How did we not make something?");
Chris Lattner79df7c02002-03-26 18:01:55 +0000381 if (inFunctionScope())
Chris Lattner386a3b72001-10-16 19:54:17 +0000382 InsertValue(d, CurMeth.LateResolveValues);
383 else
384 InsertValue(d, CurModule.LateResolveValues);
Chris Lattner00950542001-06-06 20:29:01 +0000385 return d;
386}
387
388
389//===----------------------------------------------------------------------===//
390// Code to handle forward references in instructions
391//===----------------------------------------------------------------------===//
392//
393// This code handles the late binding needed with statements that reference
394// values not defined yet... for example, a forward branch, or the PHI node for
395// a loop body.
396//
397// This keeps a table (CurMeth.LateResolveValues) of all such forward references
398// and back patchs after we are done.
399//
400
401// ResolveDefinitions - If we could not resolve some defs at parsing
402// time (forward branches, phi functions for loops, etc...) resolve the
403// defs now...
404//
Chris Lattner386a3b72001-10-16 19:54:17 +0000405static void ResolveDefinitions(vector<ValueList> &LateResolvers,
406 vector<ValueList> *FutureLateResolvers = 0) {
Chris Lattner00950542001-06-06 20:29:01 +0000407 // Loop over LateResolveDefs fixing up stuff that couldn't be resolved
408 for (unsigned ty = 0; ty < LateResolvers.size(); ty++) {
409 while (!LateResolvers[ty].empty()) {
410 Value *V = LateResolvers[ty].back();
Chris Lattner386a3b72001-10-16 19:54:17 +0000411 assert(!isa<Type>(V) && "Types should be in LateResolveTypes!");
412
Chris Lattner00950542001-06-06 20:29:01 +0000413 LateResolvers[ty].pop_back();
414 ValID &DID = getValIDFromPlaceHolder(V);
415
Chris Lattner2079fde2001-10-13 06:41:08 +0000416 Value *TheRealValue = getValNonImprovising(Type::getUniqueIDType(ty),DID);
Chris Lattner386a3b72001-10-16 19:54:17 +0000417 if (TheRealValue) {
418 V->replaceAllUsesWith(TheRealValue);
419 delete V;
420 } else if (FutureLateResolvers) {
Chris Lattner79df7c02002-03-26 18:01:55 +0000421 // Functions have their unresolved items forwarded to the module late
Chris Lattner386a3b72001-10-16 19:54:17 +0000422 // resolver table
423 InsertValue(V, *FutureLateResolvers);
424 } else {
Chris Lattner30c89792001-09-07 16:35:17 +0000425 if (DID.Type == 1)
426 ThrowException("Reference to an invalid definition: '" +DID.getName()+
427 "' of type '" + V->getType()->getDescription() + "'",
428 getLineNumFromPlaceHolder(V));
429 else
430 ThrowException("Reference to an invalid definition: #" +
431 itostr(DID.Num) + " of type '" +
432 V->getType()->getDescription() + "'",
433 getLineNumFromPlaceHolder(V));
434 }
Chris Lattner00950542001-06-06 20:29:01 +0000435 }
436 }
437
438 LateResolvers.clear();
439}
440
Chris Lattner4a42e902001-10-22 05:56:09 +0000441// ResolveTypeTo - A brand new type was just declared. This means that (if
442// name is not null) things referencing Name can be resolved. Otherwise, things
443// refering to the number can be resolved. Do this now.
Chris Lattner00950542001-06-06 20:29:01 +0000444//
Chris Lattner4a42e902001-10-22 05:56:09 +0000445static void ResolveTypeTo(char *Name, const Type *ToTy) {
Chris Lattner8b88b3b2002-04-04 19:23:55 +0000446 vector<PATypeHolder> &Types = inFunctionScope() ?
Chris Lattner4a42e902001-10-22 05:56:09 +0000447 CurMeth.Types : CurModule.Types;
Chris Lattner00950542001-06-06 20:29:01 +0000448
Chris Lattner4a42e902001-10-22 05:56:09 +0000449 ValID D;
450 if (Name) D = ValID::create(Name);
451 else D = ValID::create((int)Types.size());
Chris Lattner30c89792001-09-07 16:35:17 +0000452
Chris Lattner8b88b3b2002-04-04 19:23:55 +0000453 map<ValID, PATypeHolder> &LateResolver = inFunctionScope() ?
Chris Lattner4a42e902001-10-22 05:56:09 +0000454 CurMeth.LateResolveTypes : CurModule.LateResolveTypes;
455
Chris Lattner8b88b3b2002-04-04 19:23:55 +0000456 map<ValID, PATypeHolder>::iterator I = LateResolver.find(D);
Chris Lattner4a42e902001-10-22 05:56:09 +0000457 if (I != LateResolver.end()) {
458 cast<DerivedType>(I->second.get())->refineAbstractTypeTo(ToTy);
459 LateResolver.erase(I);
460 }
461}
462
463// ResolveTypes - At this point, all types should be resolved. Any that aren't
464// are errors.
465//
Chris Lattner8b88b3b2002-04-04 19:23:55 +0000466static void ResolveTypes(map<ValID, PATypeHolder> &LateResolveTypes) {
Chris Lattner4a42e902001-10-22 05:56:09 +0000467 if (!LateResolveTypes.empty()) {
Chris Lattner82269592001-10-22 06:01:08 +0000468 const ValID &DID = LateResolveTypes.begin()->first;
Chris Lattner4a42e902001-10-22 05:56:09 +0000469
470 if (DID.Type == ValID::NameVal)
Chris Lattner82269592001-10-22 06:01:08 +0000471 ThrowException("Reference to an invalid type: '" +DID.getName() + "'");
Chris Lattner4a42e902001-10-22 05:56:09 +0000472 else
Chris Lattner82269592001-10-22 06:01:08 +0000473 ThrowException("Reference to an invalid type: #" + itostr(DID.Num));
Chris Lattner30c89792001-09-07 16:35:17 +0000474 }
475}
476
Chris Lattnerdf7306f2001-10-03 01:49:25 +0000477
Chris Lattner1781aca2001-09-18 04:00:54 +0000478// setValueName - Set the specified value to the name given. The name may be
479// null potentially, in which case this is a noop. The string passed in is
480// assumed to be a malloc'd string buffer, and is freed by this function.
481//
Chris Lattnerb7474512001-10-03 15:39:04 +0000482// This function returns true if the value has already been defined, but is
483// allowed to be redefined in the specified context. If the name is a new name
484// for the typeplane, false is returned.
485//
486static bool setValueName(Value *V, char *NameStr) {
487 if (NameStr == 0) return false;
Chris Lattner386a3b72001-10-16 19:54:17 +0000488
Chris Lattner1781aca2001-09-18 04:00:54 +0000489 string Name(NameStr); // Copy string
490 free(NameStr); // Free old string
491
Chris Lattner2079fde2001-10-13 06:41:08 +0000492 if (V->getType() == Type::VoidTy)
493 ThrowException("Can't assign name '" + Name +
494 "' to a null valued instruction!");
495
Chris Lattner79df7c02002-03-26 18:01:55 +0000496 SymbolTable *ST = inFunctionScope() ?
497 CurMeth.CurrentFunction->getSymbolTableSure() :
Chris Lattner30c89792001-09-07 16:35:17 +0000498 CurModule.CurrentModule->getSymbolTableSure();
499
500 Value *Existing = ST->lookup(V->getType(), Name);
501 if (Existing) { // Inserting a name that is already defined???
502 // There is only one case where this is allowed: when we are refining an
503 // opaque type. In this case, Existing will be an opaque type.
Chris Lattnerdf7306f2001-10-03 01:49:25 +0000504 if (const Type *Ty = dyn_cast<const Type>(Existing)) {
Chris Lattnerb00c5822001-10-02 03:41:24 +0000505 if (OpaqueType *OpTy = dyn_cast<OpaqueType>(Ty)) {
Chris Lattner30c89792001-09-07 16:35:17 +0000506 // We ARE replacing an opaque type!
Chris Lattnerb00c5822001-10-02 03:41:24 +0000507 OpTy->refineAbstractTypeTo(cast<Type>(V));
Chris Lattnerb7474512001-10-03 15:39:04 +0000508 return true;
Chris Lattner30c89792001-09-07 16:35:17 +0000509 }
Chris Lattnerdf7306f2001-10-03 01:49:25 +0000510 }
Chris Lattner30c89792001-09-07 16:35:17 +0000511
Chris Lattner9636a912001-10-01 16:18:37 +0000512 // Otherwise, we are a simple redefinition of a value, check to see if it
513 // is defined the same as the old one...
514 if (const Type *Ty = dyn_cast<const Type>(Existing)) {
Chris Lattnerb7474512001-10-03 15:39:04 +0000515 if (Ty == cast<const Type>(V)) return true; // Yes, it's equal.
516 // cerr << "Type: " << Ty->getDescription() << " != "
517 // << cast<const Type>(V)->getDescription() << "!\n";
518 } else if (GlobalVariable *EGV = dyn_cast<GlobalVariable>(Existing)) {
Chris Lattner43efcbf2001-10-03 19:35:57 +0000519 // We are allowed to redefine a global variable in two circumstances:
520 // 1. If at least one of the globals is uninitialized or
521 // 2. If both initializers have the same value.
522 //
523 // This can only be done if the const'ness of the vars is the same.
524 //
Chris Lattner89219832001-10-03 19:35:04 +0000525 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(V)) {
526 if (EGV->isConstant() == GV->isConstant() &&
527 (!EGV->hasInitializer() || !GV->hasInitializer() ||
528 EGV->getInitializer() == GV->getInitializer())) {
Chris Lattnerb7474512001-10-03 15:39:04 +0000529
Chris Lattner89219832001-10-03 19:35:04 +0000530 // Make sure the existing global version gets the initializer!
531 if (GV->hasInitializer() && !EGV->hasInitializer())
532 EGV->setInitializer(GV->getInitializer());
533
Chris Lattner2079fde2001-10-13 06:41:08 +0000534 delete GV; // Destroy the duplicate!
Chris Lattner89219832001-10-03 19:35:04 +0000535 return true; // They are equivalent!
536 }
Chris Lattnerb7474512001-10-03 15:39:04 +0000537 }
Chris Lattner9636a912001-10-01 16:18:37 +0000538 }
Chris Lattner2079fde2001-10-13 06:41:08 +0000539 ThrowException("Redefinition of value named '" + Name + "' in the '" +
Chris Lattner30c89792001-09-07 16:35:17 +0000540 V->getType()->getDescription() + "' type plane!");
Chris Lattner93750fa2001-07-28 17:48:55 +0000541 }
Chris Lattner00950542001-06-06 20:29:01 +0000542
Chris Lattner30c89792001-09-07 16:35:17 +0000543 V->setName(Name, ST);
Chris Lattnerb7474512001-10-03 15:39:04 +0000544 return false;
Chris Lattner00950542001-06-06 20:29:01 +0000545}
546
Chris Lattner8896eda2001-07-09 19:38:36 +0000547
Chris Lattner30c89792001-09-07 16:35:17 +0000548//===----------------------------------------------------------------------===//
549// Code for handling upreferences in type names...
Chris Lattner8896eda2001-07-09 19:38:36 +0000550//
Chris Lattner8896eda2001-07-09 19:38:36 +0000551
Chris Lattner30c89792001-09-07 16:35:17 +0000552// TypeContains - Returns true if Ty contains E in it.
553//
554static bool TypeContains(const Type *Ty, const Type *E) {
Chris Lattner3ff43872001-09-28 22:56:31 +0000555 return find(df_begin(Ty), df_end(Ty), E) != df_end(Ty);
Chris Lattner30c89792001-09-07 16:35:17 +0000556}
Chris Lattner698b56e2001-07-20 19:15:08 +0000557
Chris Lattner30c89792001-09-07 16:35:17 +0000558
559static vector<pair<unsigned, OpaqueType *> > UpRefs;
560
Chris Lattner8b88b3b2002-04-04 19:23:55 +0000561static PATypeHolder HandleUpRefs(const Type *ty) {
562 PATypeHolder Ty(ty);
Chris Lattner5084d032001-11-02 07:46:26 +0000563 UR_OUT("Type '" << ty->getDescription() <<
564 "' newly formed. Resolving upreferences.\n" <<
565 UpRefs.size() << " upreferences active!\n");
Chris Lattner30c89792001-09-07 16:35:17 +0000566 for (unsigned i = 0; i < UpRefs.size(); ) {
Chris Lattner5084d032001-11-02 07:46:26 +0000567 UR_OUT(" UR#" << i << " - TypeContains(" << Ty->getDescription() << ", "
Chris Lattner30c89792001-09-07 16:35:17 +0000568 << UpRefs[i].second->getDescription() << ") = "
Chris Lattner5084d032001-11-02 07:46:26 +0000569 << (TypeContains(Ty, UpRefs[i].second) ? "true" : "false") << endl);
Chris Lattner30c89792001-09-07 16:35:17 +0000570 if (TypeContains(Ty, UpRefs[i].second)) {
571 unsigned Level = --UpRefs[i].first; // Decrement level of upreference
Chris Lattner5084d032001-11-02 07:46:26 +0000572 UR_OUT(" Uplevel Ref Level = " << Level << endl);
Chris Lattner30c89792001-09-07 16:35:17 +0000573 if (Level == 0) { // Upreference should be resolved!
Chris Lattner5084d032001-11-02 07:46:26 +0000574 UR_OUT(" * Resolving upreference for "
575 << UpRefs[i].second->getDescription() << endl;
Chris Lattner30c89792001-09-07 16:35:17 +0000576 string OldName = UpRefs[i].second->getDescription());
577 UpRefs[i].second->refineAbstractTypeTo(Ty);
578 UpRefs.erase(UpRefs.begin()+i); // Remove from upreference list...
Chris Lattner5084d032001-11-02 07:46:26 +0000579 UR_OUT(" * Type '" << OldName << "' refined upreference to: "
Chris Lattner30c89792001-09-07 16:35:17 +0000580 << (const void*)Ty << ", " << Ty->getDescription() << endl);
581 continue;
582 }
583 }
584
585 ++i; // Otherwise, no resolve, move on...
Chris Lattner8896eda2001-07-09 19:38:36 +0000586 }
Chris Lattner30c89792001-09-07 16:35:17 +0000587 // FIXME: TODO: this should return the updated type
Chris Lattner8896eda2001-07-09 19:38:36 +0000588 return Ty;
589}
590
Chris Lattner30c89792001-09-07 16:35:17 +0000591
Chris Lattner00950542001-06-06 20:29:01 +0000592//===----------------------------------------------------------------------===//
593// RunVMAsmParser - Define an interface to this parser
594//===----------------------------------------------------------------------===//
595//
Chris Lattnera2850432001-07-22 18:36:00 +0000596Module *RunVMAsmParser(const string &Filename, FILE *F) {
Chris Lattner00950542001-06-06 20:29:01 +0000597 llvmAsmin = F;
Chris Lattnera2850432001-07-22 18:36:00 +0000598 CurFilename = Filename;
Chris Lattner00950542001-06-06 20:29:01 +0000599 llvmAsmlineno = 1; // Reset the current line number...
600
601 CurModule.CurrentModule = new Module(); // Allocate a new module to read
602 yyparse(); // Parse the file.
603 Module *Result = ParserResult;
Chris Lattner00950542001-06-06 20:29:01 +0000604 llvmAsmin = stdin; // F is about to go away, don't use it anymore...
605 ParserResult = 0;
606
607 return Result;
608}
609
610%}
611
612%union {
Chris Lattner30c89792001-09-07 16:35:17 +0000613 Module *ModuleVal;
Chris Lattner79df7c02002-03-26 18:01:55 +0000614 Function *FunctionVal;
615 std::pair<FunctionArgument*,char*> *MethArgVal;
Chris Lattner30c89792001-09-07 16:35:17 +0000616 BasicBlock *BasicBlockVal;
617 TerminatorInst *TermInstVal;
618 Instruction *InstVal;
Chris Lattnere9bb2df2001-12-03 22:26:30 +0000619 Constant *ConstVal;
Chris Lattner00950542001-06-06 20:29:01 +0000620
Chris Lattner30c89792001-09-07 16:35:17 +0000621 const Type *PrimType;
Chris Lattner8b88b3b2002-04-04 19:23:55 +0000622 PATypeHolder *TypeVal;
Chris Lattner30c89792001-09-07 16:35:17 +0000623 Value *ValueVal;
624
Chris Lattner79df7c02002-03-26 18:01:55 +0000625 std::list<std::pair<FunctionArgument*,char*> > *FunctionArgList;
Chris Lattner697954c2002-01-20 22:54:45 +0000626 std::vector<Value*> *ValueList;
Chris Lattner8b88b3b2002-04-04 19:23:55 +0000627 std::list<PATypeHolder> *TypeList;
Chris Lattner697954c2002-01-20 22:54:45 +0000628 std::list<std::pair<Value*,
629 BasicBlock*> > *PHIList; // Represent the RHS of PHI node
630 std::list<std::pair<Constant*, BasicBlock*> > *JumpTable;
631 std::vector<Constant*> *ConstVector;
Chris Lattner00950542001-06-06 20:29:01 +0000632
Chris Lattner30c89792001-09-07 16:35:17 +0000633 int64_t SInt64Val;
634 uint64_t UInt64Val;
635 int SIntVal;
636 unsigned UIntVal;
637 double FPVal;
Chris Lattner1781aca2001-09-18 04:00:54 +0000638 bool BoolVal;
Chris Lattner00950542001-06-06 20:29:01 +0000639
Chris Lattner30c89792001-09-07 16:35:17 +0000640 char *StrVal; // This memory is strdup'd!
641 ValID ValIDVal; // strdup'd memory maybe!
Chris Lattner00950542001-06-06 20:29:01 +0000642
Chris Lattner30c89792001-09-07 16:35:17 +0000643 Instruction::UnaryOps UnaryOpVal;
644 Instruction::BinaryOps BinaryOpVal;
645 Instruction::TermOps TermOpVal;
646 Instruction::MemoryOps MemOpVal;
647 Instruction::OtherOps OtherOpVal;
Chris Lattner00950542001-06-06 20:29:01 +0000648}
649
Chris Lattner79df7c02002-03-26 18:01:55 +0000650%type <ModuleVal> Module FunctionList
651%type <FunctionVal> Function FunctionProto FunctionHeader BasicBlockList
Chris Lattner00950542001-06-06 20:29:01 +0000652%type <BasicBlockVal> BasicBlock InstructionList
653%type <TermInstVal> BBTerminatorInst
654%type <InstVal> Inst InstVal MemoryInst
Chris Lattnerdf7306f2001-10-03 01:49:25 +0000655%type <ConstVal> ConstVal
Chris Lattner6cdb0112001-11-26 16:54:11 +0000656%type <ConstVector> ConstVector
Chris Lattner79df7c02002-03-26 18:01:55 +0000657%type <FunctionArgList> ArgList ArgListH
Chris Lattner00950542001-06-06 20:29:01 +0000658%type <MethArgVal> ArgVal
Chris Lattnerc24d2082001-06-11 15:04:20 +0000659%type <PHIList> PHIList
Chris Lattnerab5ac6b2001-07-08 23:22:50 +0000660%type <ValueList> ValueRefList ValueRefListE // For call param lists
Chris Lattner6cdb0112001-11-26 16:54:11 +0000661%type <ValueList> IndexList // For GEP derived indices
Chris Lattner30c89792001-09-07 16:35:17 +0000662%type <TypeList> TypeListI ArgTypeListI
Chris Lattner00950542001-06-06 20:29:01 +0000663%type <JumpTable> JumpTable
Chris Lattnerdda71962001-11-26 18:54:16 +0000664%type <BoolVal> GlobalType OptInternal // GLOBAL or CONSTANT? Intern?
Chris Lattner00950542001-06-06 20:29:01 +0000665
Chris Lattner2079fde2001-10-13 06:41:08 +0000666// ValueRef - Unresolved reference to a definition or BB
667%type <ValIDVal> ValueRef ConstValueRef SymbolicValueRef
Chris Lattnerbcbf6ba2001-07-26 16:29:15 +0000668%type <ValueVal> ResolvedVal // <type> <valref> pair
Chris Lattner00950542001-06-06 20:29:01 +0000669// Tokens and types for handling constant integer values
670//
671// ESINT64VAL - A negative number within long long range
672%token <SInt64Val> ESINT64VAL
673
674// EUINT64VAL - A positive number within uns. long long range
675%token <UInt64Val> EUINT64VAL
676%type <SInt64Val> EINT64VAL
677
678%token <SIntVal> SINTVAL // Signed 32 bit ints...
679%token <UIntVal> UINTVAL // Unsigned 32 bit ints...
680%type <SIntVal> INTVAL
Chris Lattner3d52b2f2001-07-15 00:17:01 +0000681%token <FPVal> FPVAL // Float or Double constant
Chris Lattner00950542001-06-06 20:29:01 +0000682
683// Built in types...
Chris Lattner30c89792001-09-07 16:35:17 +0000684%type <TypeVal> Types TypesV UpRTypes UpRTypesV
685%type <PrimType> SIntType UIntType IntType FPType PrimType // Classifications
Chris Lattner30c89792001-09-07 16:35:17 +0000686%token <PrimType> VOID BOOL SBYTE UBYTE SHORT USHORT INT UINT LONG ULONG
687%token <PrimType> FLOAT DOUBLE TYPE LABEL
Chris Lattner00950542001-06-06 20:29:01 +0000688
689%token <StrVal> VAR_ID LABELSTR STRINGCONSTANT
690%type <StrVal> OptVAR_ID OptAssign
691
692
Chris Lattner1781aca2001-09-18 04:00:54 +0000693%token IMPLEMENTATION TRUE FALSE BEGINTOK END DECLARE GLOBAL CONSTANT UNINIT
Chris Lattner8b88b3b2002-04-04 19:23:55 +0000694%token TO EXCEPT DOTDOTDOT STRING NULL_TOK CONST INTERNAL OPAQUE
Chris Lattner00950542001-06-06 20:29:01 +0000695
696// Basic Block Terminating Operators
697%token <TermOpVal> RET BR SWITCH
698
699// Unary Operators
700%type <UnaryOpVal> UnaryOps // all the unary operators
Chris Lattner71496b32001-07-08 19:03:27 +0000701%token <UnaryOpVal> NOT
Chris Lattner00950542001-06-06 20:29:01 +0000702
703// Binary Operators
704%type <BinaryOpVal> BinaryOps // all the binary operators
Chris Lattner42c9e772001-10-20 09:32:59 +0000705%token <BinaryOpVal> ADD SUB MUL DIV REM AND OR XOR
Chris Lattner027dcc52001-07-08 21:10:27 +0000706%token <BinaryOpVal> SETLE SETGE SETLT SETGT SETEQ SETNE // Binary Comarators
Chris Lattner00950542001-06-06 20:29:01 +0000707
708// Memory Instructions
Chris Lattnerab5ac6b2001-07-08 23:22:50 +0000709%token <MemoryOpVal> MALLOC ALLOCA FREE LOAD STORE GETELEMENTPTR
Chris Lattner00950542001-06-06 20:29:01 +0000710
Chris Lattner027dcc52001-07-08 21:10:27 +0000711// Other Operators
712%type <OtherOpVal> ShiftOps
Chris Lattner2079fde2001-10-13 06:41:08 +0000713%token <OtherOpVal> PHI CALL INVOKE CAST SHL SHR
Chris Lattner027dcc52001-07-08 21:10:27 +0000714
Chris Lattner00950542001-06-06 20:29:01 +0000715%start Module
716%%
717
718// Handle constant integer size restriction and conversion...
719//
720
721INTVAL : SINTVAL
722INTVAL : UINTVAL {
723 if ($1 > (uint32_t)INT32_MAX) // Outside of my range!
724 ThrowException("Value too large for type!");
725 $$ = (int32_t)$1;
726}
727
728
729EINT64VAL : ESINT64VAL // These have same type and can't cause problems...
730EINT64VAL : EUINT64VAL {
731 if ($1 > (uint64_t)INT64_MAX) // Outside of my range!
732 ThrowException("Value too large for type!");
733 $$ = (int64_t)$1;
734}
735
Chris Lattner00950542001-06-06 20:29:01 +0000736// Operations that are notably excluded from this list include:
737// RET, BR, & SWITCH because they end basic blocks and are treated specially.
738//
Chris Lattner09083092001-07-08 04:57:15 +0000739UnaryOps : NOT
Chris Lattner42c9e772001-10-20 09:32:59 +0000740BinaryOps : ADD | SUB | MUL | DIV | REM | AND | OR | XOR
Chris Lattner00950542001-06-06 20:29:01 +0000741BinaryOps : SETLE | SETGE | SETLT | SETGT | SETEQ | SETNE
Chris Lattner027dcc52001-07-08 21:10:27 +0000742ShiftOps : SHL | SHR
Chris Lattner00950542001-06-06 20:29:01 +0000743
Chris Lattnere98dda62001-07-14 06:10:16 +0000744// These are some types that allow classification if we only want a particular
745// thing... for example, only a signed, unsigned, or integral type.
Chris Lattner00950542001-06-06 20:29:01 +0000746SIntType : LONG | INT | SHORT | SBYTE
747UIntType : ULONG | UINT | USHORT | UBYTE
Chris Lattner30c89792001-09-07 16:35:17 +0000748IntType : SIntType | UIntType
749FPType : FLOAT | DOUBLE
Chris Lattner00950542001-06-06 20:29:01 +0000750
Chris Lattnere98dda62001-07-14 06:10:16 +0000751// OptAssign - Value producing statements have an optional assignment component
Chris Lattner00950542001-06-06 20:29:01 +0000752OptAssign : VAR_ID '=' {
753 $$ = $1;
754 }
755 | /*empty*/ {
756 $$ = 0;
757 }
758
Chris Lattnerdda71962001-11-26 18:54:16 +0000759OptInternal : INTERNAL { $$ = true; } | /*empty*/ { $$ = false; }
Chris Lattner30c89792001-09-07 16:35:17 +0000760
761//===----------------------------------------------------------------------===//
762// Types includes all predefined types... except void, because it can only be
763// used in specific contexts (method returning void for example). To have
764// access to it, a user must explicitly use TypesV.
765//
766
767// TypesV includes all of 'Types', but it also includes the void type.
Chris Lattner8b88b3b2002-04-04 19:23:55 +0000768TypesV : Types | VOID { $$ = new PATypeHolder($1); }
769UpRTypesV : UpRTypes | VOID { $$ = new PATypeHolder($1); }
Chris Lattner30c89792001-09-07 16:35:17 +0000770
771Types : UpRTypes {
Chris Lattner8b88b3b2002-04-04 19:23:55 +0000772 if (UpRefs.size())
773 ThrowException("Invalid upreference in type: " + (*$1)->getDescription());
774 $$ = $1;
Chris Lattner30c89792001-09-07 16:35:17 +0000775 }
776
777
778// Derived types are added later...
779//
780PrimType : BOOL | SBYTE | UBYTE | SHORT | USHORT | INT | UINT
781PrimType : LONG | ULONG | FLOAT | DOUBLE | TYPE | LABEL
Chris Lattner8b88b3b2002-04-04 19:23:55 +0000782UpRTypes : OPAQUE {
783 $$ = new PATypeHolder(OpaqueType::get());
784 }
785 | PrimType {
786 $$ = new PATypeHolder($1);
787 }
Chris Lattner30c89792001-09-07 16:35:17 +0000788UpRTypes : ValueRef { // Named types are also simple types...
Chris Lattner8b88b3b2002-04-04 19:23:55 +0000789 $$ = new PATypeHolder(getTypeVal($1));
Chris Lattner30c89792001-09-07 16:35:17 +0000790}
791
Chris Lattner30c89792001-09-07 16:35:17 +0000792// Include derived types in the Types production.
793//
794UpRTypes : '\\' EUINT64VAL { // Type UpReference
795 if ($2 > (uint64_t)INT64_MAX) ThrowException("Value out of range!");
796 OpaqueType *OT = OpaqueType::get(); // Use temporary placeholder
797 UpRefs.push_back(make_pair((unsigned)$2, OT)); // Add to vector...
Chris Lattner8b88b3b2002-04-04 19:23:55 +0000798 $$ = new PATypeHolder(OT);
Chris Lattner30c89792001-09-07 16:35:17 +0000799 UR_OUT("New Upreference!\n");
800 }
Chris Lattner79df7c02002-03-26 18:01:55 +0000801 | UpRTypesV '(' ArgTypeListI ')' { // Function derived type?
Chris Lattner30c89792001-09-07 16:35:17 +0000802 vector<const Type*> Params;
Chris Lattner697954c2002-01-20 22:54:45 +0000803 mapto($3->begin(), $3->end(), std::back_inserter(Params),
804 std::mem_fun_ref(&PATypeHandle<Type>::get));
Chris Lattner2079fde2001-10-13 06:41:08 +0000805 bool isVarArg = Params.size() && Params.back() == Type::VoidTy;
806 if (isVarArg) Params.pop_back();
807
Chris Lattner8b88b3b2002-04-04 19:23:55 +0000808 $$ = new PATypeHolder(HandleUpRefs(FunctionType::get(*$1,Params,isVarArg)));
Chris Lattner30c89792001-09-07 16:35:17 +0000809 delete $3; // Delete the argument list
810 delete $1; // Delete the old type handle
811 }
Chris Lattnerd05adbc2001-10-03 03:19:33 +0000812 | '[' EUINT64VAL 'x' UpRTypes ']' { // Sized array type?
Chris Lattner8b88b3b2002-04-04 19:23:55 +0000813 $$ = new PATypeHolder(HandleUpRefs(ArrayType::get(*$4, (unsigned)$2)));
Chris Lattnerd05adbc2001-10-03 03:19:33 +0000814 delete $4;
Chris Lattner30c89792001-09-07 16:35:17 +0000815 }
Chris Lattnerd05adbc2001-10-03 03:19:33 +0000816 | '{' TypeListI '}' { // Structure type?
817 vector<const Type*> Elements;
Chris Lattner697954c2002-01-20 22:54:45 +0000818 mapto($2->begin(), $2->end(), std::back_inserter(Elements),
819 std::mem_fun_ref(&PATypeHandle<Type>::get));
Chris Lattner30c89792001-09-07 16:35:17 +0000820
Chris Lattner8b88b3b2002-04-04 19:23:55 +0000821 $$ = new PATypeHolder(HandleUpRefs(StructType::get(Elements)));
Chris Lattnerd05adbc2001-10-03 03:19:33 +0000822 delete $2;
823 }
824 | '{' '}' { // Empty structure type?
Chris Lattner8b88b3b2002-04-04 19:23:55 +0000825 $$ = new PATypeHolder(StructType::get(vector<const Type*>()));
Chris Lattnerd05adbc2001-10-03 03:19:33 +0000826 }
827 | UpRTypes '*' { // Pointer type?
Chris Lattner8b88b3b2002-04-04 19:23:55 +0000828 $$ = new PATypeHolder(HandleUpRefs(PointerType::get(*$1)));
Chris Lattnerd05adbc2001-10-03 03:19:33 +0000829 delete $1;
830 }
Chris Lattner30c89792001-09-07 16:35:17 +0000831
832// TypeList - Used for struct declarations and as a basis for method type
833// declaration type lists
834//
835TypeListI : UpRTypes {
Chris Lattner8b88b3b2002-04-04 19:23:55 +0000836 $$ = new list<PATypeHolder>();
Chris Lattner30c89792001-09-07 16:35:17 +0000837 $$->push_back(*$1); delete $1;
838 }
839 | TypeListI ',' UpRTypes {
840 ($$=$1)->push_back(*$3); delete $3;
841 }
842
843// ArgTypeList - List of types for a method type declaration...
844ArgTypeListI : TypeListI
845 | TypeListI ',' DOTDOTDOT {
846 ($$=$1)->push_back(Type::VoidTy);
847 }
848 | DOTDOTDOT {
Chris Lattner8b88b3b2002-04-04 19:23:55 +0000849 ($$ = new list<PATypeHolder>())->push_back(Type::VoidTy);
Chris Lattner30c89792001-09-07 16:35:17 +0000850 }
851 | /*empty*/ {
Chris Lattner8b88b3b2002-04-04 19:23:55 +0000852 $$ = new list<PATypeHolder>();
Chris Lattner30c89792001-09-07 16:35:17 +0000853 }
854
855
Chris Lattnere98dda62001-07-14 06:10:16 +0000856// ConstVal - The various declarations that go into the constant pool. This
857// includes all forward declarations of types, constants, and functions.
858//
Chris Lattnerd05adbc2001-10-03 03:19:33 +0000859ConstVal: Types '[' ConstVector ']' { // Nonempty unsized arr
860 const ArrayType *ATy = dyn_cast<const ArrayType>($1->get());
861 if (ATy == 0)
862 ThrowException("Cannot make array constant with type: '" +
863 (*$1)->getDescription() + "'!");
Chris Lattner30c89792001-09-07 16:35:17 +0000864 const Type *ETy = ATy->getElementType();
865 int NumElements = ATy->getNumElements();
Chris Lattner00950542001-06-06 20:29:01 +0000866
Chris Lattner30c89792001-09-07 16:35:17 +0000867 // Verify that we have the correct size...
868 if (NumElements != -1 && NumElements != (int)$3->size())
Chris Lattner00950542001-06-06 20:29:01 +0000869 ThrowException("Type mismatch: constant sized array initialized with " +
Chris Lattner30c89792001-09-07 16:35:17 +0000870 utostr($3->size()) + " arguments, but has size of " +
871 itostr(NumElements) + "!");
Chris Lattner00950542001-06-06 20:29:01 +0000872
Chris Lattner30c89792001-09-07 16:35:17 +0000873 // Verify all elements are correct type!
874 for (unsigned i = 0; i < $3->size(); i++) {
875 if (ETy != (*$3)[i]->getType())
Chris Lattner00950542001-06-06 20:29:01 +0000876 ThrowException("Element #" + utostr(i) + " is not of type '" +
Chris Lattner72e00252001-12-14 16:28:42 +0000877 ETy->getDescription() +"' as required!\nIt is of type '"+
878 (*$3)[i]->getType()->getDescription() + "'.");
Chris Lattner00950542001-06-06 20:29:01 +0000879 }
880
Chris Lattnere9bb2df2001-12-03 22:26:30 +0000881 $$ = ConstantArray::get(ATy, *$3);
Chris Lattner30c89792001-09-07 16:35:17 +0000882 delete $1; delete $3;
Chris Lattner00950542001-06-06 20:29:01 +0000883 }
Chris Lattnerd05adbc2001-10-03 03:19:33 +0000884 | Types '[' ']' {
885 const ArrayType *ATy = dyn_cast<const ArrayType>($1->get());
886 if (ATy == 0)
887 ThrowException("Cannot make array constant with type: '" +
888 (*$1)->getDescription() + "'!");
889
890 int NumElements = ATy->getNumElements();
Chris Lattner30c89792001-09-07 16:35:17 +0000891 if (NumElements != -1 && NumElements != 0)
Chris Lattner00950542001-06-06 20:29:01 +0000892 ThrowException("Type mismatch: constant sized array initialized with 0"
Chris Lattner30c89792001-09-07 16:35:17 +0000893 " arguments, but has size of " + itostr(NumElements) +"!");
Chris Lattnere9bb2df2001-12-03 22:26:30 +0000894 $$ = ConstantArray::get(ATy, vector<Constant*>());
Chris Lattner30c89792001-09-07 16:35:17 +0000895 delete $1;
Chris Lattner00950542001-06-06 20:29:01 +0000896 }
Chris Lattnerd05adbc2001-10-03 03:19:33 +0000897 | Types 'c' STRINGCONSTANT {
898 const ArrayType *ATy = dyn_cast<const ArrayType>($1->get());
899 if (ATy == 0)
900 ThrowException("Cannot make array constant with type: '" +
901 (*$1)->getDescription() + "'!");
902
Chris Lattner30c89792001-09-07 16:35:17 +0000903 int NumElements = ATy->getNumElements();
904 const Type *ETy = ATy->getElementType();
905 char *EndStr = UnEscapeLexed($3, true);
906 if (NumElements != -1 && NumElements != (EndStr-$3))
Chris Lattner93750fa2001-07-28 17:48:55 +0000907 ThrowException("Can't build string constant of size " +
Chris Lattner30c89792001-09-07 16:35:17 +0000908 itostr((int)(EndStr-$3)) +
909 " when array has size " + itostr(NumElements) + "!");
Chris Lattnere9bb2df2001-12-03 22:26:30 +0000910 vector<Constant*> Vals;
Chris Lattner30c89792001-09-07 16:35:17 +0000911 if (ETy == Type::SByteTy) {
912 for (char *C = $3; C != EndStr; ++C)
Chris Lattnere9bb2df2001-12-03 22:26:30 +0000913 Vals.push_back(ConstantSInt::get(ETy, *C));
Chris Lattner30c89792001-09-07 16:35:17 +0000914 } else if (ETy == Type::UByteTy) {
915 for (char *C = $3; C != EndStr; ++C)
Chris Lattnere9bb2df2001-12-03 22:26:30 +0000916 Vals.push_back(ConstantUInt::get(ETy, *C));
Chris Lattner93750fa2001-07-28 17:48:55 +0000917 } else {
Chris Lattner30c89792001-09-07 16:35:17 +0000918 free($3);
Chris Lattner93750fa2001-07-28 17:48:55 +0000919 ThrowException("Cannot build string arrays of non byte sized elements!");
920 }
Chris Lattner30c89792001-09-07 16:35:17 +0000921 free($3);
Chris Lattnere9bb2df2001-12-03 22:26:30 +0000922 $$ = ConstantArray::get(ATy, Vals);
Chris Lattner30c89792001-09-07 16:35:17 +0000923 delete $1;
Chris Lattner93750fa2001-07-28 17:48:55 +0000924 }
Chris Lattnerd05adbc2001-10-03 03:19:33 +0000925 | Types '{' ConstVector '}' {
926 const StructType *STy = dyn_cast<const StructType>($1->get());
927 if (STy == 0)
928 ThrowException("Cannot make struct constant with type: '" +
929 (*$1)->getDescription() + "'!");
Chris Lattner30c89792001-09-07 16:35:17 +0000930 // FIXME: TODO: Check to see that the constants are compatible with the type
931 // initializer!
Chris Lattnere9bb2df2001-12-03 22:26:30 +0000932 $$ = ConstantStruct::get(STy, *$3);
Chris Lattner30c89792001-09-07 16:35:17 +0000933 delete $1; delete $3;
Chris Lattner00950542001-06-06 20:29:01 +0000934 }
Chris Lattnerd05adbc2001-10-03 03:19:33 +0000935 | Types NULL_TOK {
936 const PointerType *PTy = dyn_cast<const PointerType>($1->get());
937 if (PTy == 0)
938 ThrowException("Cannot make null pointer constant with type: '" +
939 (*$1)->getDescription() + "'!");
940
Chris Lattnere9bb2df2001-12-03 22:26:30 +0000941 $$ = ConstantPointerNull::get(PTy);
Chris Lattnerdf7306f2001-10-03 01:49:25 +0000942 delete $1;
943 }
Chris Lattner2079fde2001-10-13 06:41:08 +0000944 | Types SymbolicValueRef {
Chris Lattnerf4ba6c72001-10-03 06:12:09 +0000945 const PointerType *Ty = dyn_cast<const PointerType>($1->get());
946 if (Ty == 0)
947 ThrowException("Global const reference must be a pointer type!");
948
Chris Lattner2079fde2001-10-13 06:41:08 +0000949 Value *V = getValNonImprovising(Ty, $2);
Chris Lattnerf4ba6c72001-10-03 06:12:09 +0000950
Chris Lattner2079fde2001-10-13 06:41:08 +0000951 // If this is an initializer for a constant pointer, which is referencing a
952 // (currently) undefined variable, create a stub now that shall be replaced
953 // in the future with the right type of variable.
954 //
955 if (V == 0) {
956 assert(isa<PointerType>(Ty) && "Globals may only be used as pointers!");
957 const PointerType *PT = cast<PointerType>(Ty);
958
959 // First check to see if the forward references value is already created!
960 PerModuleInfo::GlobalRefsType::iterator I =
961 CurModule.GlobalRefs.find(make_pair(PT, $2));
962
963 if (I != CurModule.GlobalRefs.end()) {
964 V = I->second; // Placeholder already exists, use it...
965 } else {
966 // TODO: Include line number info by creating a subclass of
967 // TODO: GlobalVariable here that includes the said information!
968
969 // Create a placeholder for the global variable reference...
Chris Lattner7a176752001-12-04 00:03:30 +0000970 GlobalVariable *GV = new GlobalVariable(PT->getElementType(),
971 false, true);
Chris Lattner2079fde2001-10-13 06:41:08 +0000972 // Keep track of the fact that we have a forward ref to recycle it
973 CurModule.GlobalRefs.insert(make_pair(make_pair(PT, $2), GV));
974
975 // Must temporarily push this value into the module table...
976 CurModule.CurrentModule->getGlobalList().push_back(GV);
977 V = GV;
978 }
Chris Lattnerf4ba6c72001-10-03 06:12:09 +0000979 }
980
Chris Lattner2079fde2001-10-13 06:41:08 +0000981 GlobalValue *GV = cast<GlobalValue>(V);
Chris Lattnere9bb2df2001-12-03 22:26:30 +0000982 $$ = ConstantPointerRef::get(GV);
Chris Lattner2079fde2001-10-13 06:41:08 +0000983 delete $1; // Free the type handle
Chris Lattner00950542001-06-06 20:29:01 +0000984 }
Chris Lattnerf4ba6c72001-10-03 06:12:09 +0000985
Chris Lattner00950542001-06-06 20:29:01 +0000986
Chris Lattnerdf7306f2001-10-03 01:49:25 +0000987ConstVal : SIntType EINT64VAL { // integral constants
Chris Lattnere9bb2df2001-12-03 22:26:30 +0000988 if (!ConstantSInt::isValueValidForType($1, $2))
Chris Lattnerbcbf6ba2001-07-26 16:29:15 +0000989 ThrowException("Constant value doesn't fit in type!");
Chris Lattnere9bb2df2001-12-03 22:26:30 +0000990 $$ = ConstantSInt::get($1, $2);
Chris Lattnerbcbf6ba2001-07-26 16:29:15 +0000991 }
992 | UIntType EUINT64VAL { // integral constants
Chris Lattnere9bb2df2001-12-03 22:26:30 +0000993 if (!ConstantUInt::isValueValidForType($1, $2))
Chris Lattnerbcbf6ba2001-07-26 16:29:15 +0000994 ThrowException("Constant value doesn't fit in type!");
Chris Lattnere9bb2df2001-12-03 22:26:30 +0000995 $$ = ConstantUInt::get($1, $2);
Chris Lattnerbcbf6ba2001-07-26 16:29:15 +0000996 }
997 | BOOL TRUE { // Boolean constants
Chris Lattnere9bb2df2001-12-03 22:26:30 +0000998 $$ = ConstantBool::True;
Chris Lattnerbcbf6ba2001-07-26 16:29:15 +0000999 }
1000 | BOOL FALSE { // Boolean constants
Chris Lattnere9bb2df2001-12-03 22:26:30 +00001001 $$ = ConstantBool::False;
Chris Lattnerbcbf6ba2001-07-26 16:29:15 +00001002 }
1003 | FPType FPVAL { // Float & Double constants
Chris Lattnere9bb2df2001-12-03 22:26:30 +00001004 $$ = ConstantFP::get($1, $2);
Chris Lattnerbcbf6ba2001-07-26 16:29:15 +00001005 }
Chris Lattnerbcbf6ba2001-07-26 16:29:15 +00001006
Chris Lattnere98dda62001-07-14 06:10:16 +00001007// ConstVector - A list of comma seperated constants.
Chris Lattner00950542001-06-06 20:29:01 +00001008ConstVector : ConstVector ',' ConstVal {
Chris Lattner30c89792001-09-07 16:35:17 +00001009 ($$ = $1)->push_back($3);
Chris Lattner00950542001-06-06 20:29:01 +00001010 }
1011 | ConstVal {
Chris Lattnere9bb2df2001-12-03 22:26:30 +00001012 $$ = new vector<Constant*>();
Chris Lattner30c89792001-09-07 16:35:17 +00001013 $$->push_back($1);
Chris Lattner00950542001-06-06 20:29:01 +00001014 }
1015
Chris Lattnerbcbf6ba2001-07-26 16:29:15 +00001016
Chris Lattner1781aca2001-09-18 04:00:54 +00001017// GlobalType - Match either GLOBAL or CONSTANT for global declarations...
1018GlobalType : GLOBAL { $$ = false; } | CONSTANT { $$ = true; }
1019
Chris Lattner00950542001-06-06 20:29:01 +00001020
Chris Lattnere98dda62001-07-14 06:10:16 +00001021// ConstPool - Constants with optional names assigned to them.
Chris Lattnerdf7306f2001-10-03 01:49:25 +00001022ConstPool : ConstPool OptAssign CONST ConstVal {
Chris Lattnerb7474512001-10-03 15:39:04 +00001023 if (setValueName($4, $2)) { assert(0 && "No redefinitions allowed!"); }
Chris Lattnerdf7306f2001-10-03 01:49:25 +00001024 InsertValue($4);
Chris Lattner00950542001-06-06 20:29:01 +00001025 }
Chris Lattner30c89792001-09-07 16:35:17 +00001026 | ConstPool OptAssign TYPE TypesV { // Types can be defined in the const pool
Chris Lattner4a42e902001-10-22 05:56:09 +00001027 // Eagerly resolve types. This is not an optimization, this is a
1028 // requirement that is due to the fact that we could have this:
1029 //
1030 // %list = type { %list * }
1031 // %list = type { %list * } ; repeated type decl
1032 //
1033 // If types are not resolved eagerly, then the two types will not be
1034 // determined to be the same type!
1035 //
1036 ResolveTypeTo($2, $4->get());
1037
Chris Lattner1781aca2001-09-18 04:00:54 +00001038 // TODO: FIXME when Type are not const
Chris Lattnerb7474512001-10-03 15:39:04 +00001039 if (!setValueName(const_cast<Type*>($4->get()), $2)) {
1040 // If this is not a redefinition of a type...
1041 if (!$2) {
1042 InsertType($4->get(),
Chris Lattner79df7c02002-03-26 18:01:55 +00001043 inFunctionScope() ? CurMeth.Types : CurModule.Types);
Chris Lattnerb7474512001-10-03 15:39:04 +00001044 }
Chris Lattner30c89792001-09-07 16:35:17 +00001045 }
Chris Lattnerc9a21b52001-10-21 23:02:41 +00001046
1047 delete $4;
Chris Lattner30c89792001-09-07 16:35:17 +00001048 }
Chris Lattner79df7c02002-03-26 18:01:55 +00001049 | ConstPool FunctionProto { // Function prototypes can be in const pool
Chris Lattner93750fa2001-07-28 17:48:55 +00001050 }
Chris Lattnerdda71962001-11-26 18:54:16 +00001051 | ConstPool OptAssign OptInternal GlobalType ConstVal {
1052 const Type *Ty = $5->getType();
Chris Lattner1781aca2001-09-18 04:00:54 +00001053 // Global declarations appear in Constant Pool
Chris Lattnere9bb2df2001-12-03 22:26:30 +00001054 Constant *Initializer = $5;
Chris Lattner1781aca2001-09-18 04:00:54 +00001055 if (Initializer == 0)
1056 ThrowException("Global value initializer is not a constant!");
1057
Chris Lattnerdda71962001-11-26 18:54:16 +00001058 GlobalVariable *GV = new GlobalVariable(Ty, $4, $3, Initializer);
Chris Lattnerb7474512001-10-03 15:39:04 +00001059 if (!setValueName(GV, $2)) { // If not redefining...
1060 CurModule.CurrentModule->getGlobalList().push_back(GV);
Chris Lattner2079fde2001-10-13 06:41:08 +00001061 int Slot = InsertValue(GV, CurModule.Values);
1062
1063 if (Slot != -1) {
1064 CurModule.DeclareNewGlobalValue(GV, ValID::create(Slot));
1065 } else {
1066 CurModule.DeclareNewGlobalValue(GV, ValID::create(
1067 (char*)GV->getName().c_str()));
1068 }
Chris Lattnerb7474512001-10-03 15:39:04 +00001069 }
Chris Lattner1781aca2001-09-18 04:00:54 +00001070 }
Chris Lattnerdda71962001-11-26 18:54:16 +00001071 | ConstPool OptAssign OptInternal UNINIT GlobalType Types {
1072 const Type *Ty = *$6;
Chris Lattner1781aca2001-09-18 04:00:54 +00001073 // Global declarations appear in Constant Pool
Chris Lattnerdda71962001-11-26 18:54:16 +00001074 GlobalVariable *GV = new GlobalVariable(Ty, $5, $3);
Chris Lattnerb7474512001-10-03 15:39:04 +00001075 if (!setValueName(GV, $2)) { // If not redefining...
1076 CurModule.CurrentModule->getGlobalList().push_back(GV);
Chris Lattner2079fde2001-10-13 06:41:08 +00001077 int Slot = InsertValue(GV, CurModule.Values);
1078
1079 if (Slot != -1) {
1080 CurModule.DeclareNewGlobalValue(GV, ValID::create(Slot));
1081 } else {
1082 assert(GV->hasName() && "Not named and not numbered!?");
1083 CurModule.DeclareNewGlobalValue(GV, ValID::create(
1084 (char*)GV->getName().c_str()));
1085 }
Chris Lattnerb7474512001-10-03 15:39:04 +00001086 }
Chris Lattner09c07532002-03-31 07:16:49 +00001087 delete $6;
Chris Lattnere98dda62001-07-14 06:10:16 +00001088 }
Chris Lattner00950542001-06-06 20:29:01 +00001089 | /* empty: end of list */ {
1090 }
1091
1092
1093//===----------------------------------------------------------------------===//
1094// Rules to match Modules
1095//===----------------------------------------------------------------------===//
1096
1097// Module rule: Capture the result of parsing the whole file into a result
1098// variable...
1099//
Chris Lattner79df7c02002-03-26 18:01:55 +00001100Module : FunctionList {
Chris Lattner00950542001-06-06 20:29:01 +00001101 $$ = ParserResult = $1;
1102 CurModule.ModuleDone();
1103}
1104
Chris Lattner79df7c02002-03-26 18:01:55 +00001105// FunctionList - A list of methods, preceeded by a constant pool.
Chris Lattnere98dda62001-07-14 06:10:16 +00001106//
Chris Lattner79df7c02002-03-26 18:01:55 +00001107FunctionList : FunctionList Function {
Chris Lattner00950542001-06-06 20:29:01 +00001108 $$ = $1;
Chris Lattner79df7c02002-03-26 18:01:55 +00001109 assert($2->getParent() == 0 && "Function already in module!");
1110 $1->getFunctionList().push_back($2);
1111 CurMeth.FunctionDone();
Chris Lattner00950542001-06-06 20:29:01 +00001112 }
Chris Lattner79df7c02002-03-26 18:01:55 +00001113 | FunctionList FunctionProto {
Chris Lattnere1815642001-07-15 06:35:53 +00001114 $$ = $1;
Chris Lattnere1815642001-07-15 06:35:53 +00001115 }
Chris Lattner00950542001-06-06 20:29:01 +00001116 | ConstPool IMPLEMENTATION {
1117 $$ = CurModule.CurrentModule;
Chris Lattner30c89792001-09-07 16:35:17 +00001118 // Resolve circular types before we parse the body of the module
1119 ResolveTypes(CurModule.LateResolveTypes);
Chris Lattner00950542001-06-06 20:29:01 +00001120 }
1121
1122
1123//===----------------------------------------------------------------------===//
Chris Lattner79df7c02002-03-26 18:01:55 +00001124// Rules to match Function Headers
Chris Lattner00950542001-06-06 20:29:01 +00001125//===----------------------------------------------------------------------===//
1126
1127OptVAR_ID : VAR_ID | /*empty*/ { $$ = 0; }
1128
1129ArgVal : Types OptVAR_ID {
Chris Lattner79df7c02002-03-26 18:01:55 +00001130 $$ = new pair<FunctionArgument*,char*>(new FunctionArgument(*$1), $2);
Chris Lattnerf28d6c92002-03-08 18:41:32 +00001131 delete $1; // Delete the type handle..
Chris Lattner00950542001-06-06 20:29:01 +00001132}
1133
1134ArgListH : ArgVal ',' ArgListH {
1135 $$ = $3;
Chris Lattnerf28d6c92002-03-08 18:41:32 +00001136 $3->push_front(*$1);
1137 delete $1;
Chris Lattner00950542001-06-06 20:29:01 +00001138 }
1139 | ArgVal {
Chris Lattner79df7c02002-03-26 18:01:55 +00001140 $$ = new list<pair<FunctionArgument*,char*> >();
Chris Lattnerf28d6c92002-03-08 18:41:32 +00001141 $$->push_front(*$1);
1142 delete $1;
Chris Lattner00950542001-06-06 20:29:01 +00001143 }
Chris Lattner8b81bf52001-07-25 22:47:46 +00001144 | DOTDOTDOT {
Chris Lattner79df7c02002-03-26 18:01:55 +00001145 $$ = new list<pair<FunctionArgument*, char*> >();
1146 $$->push_front(pair<FunctionArgument*,char*>(
1147 new FunctionArgument(Type::VoidTy), 0));
Chris Lattner8b81bf52001-07-25 22:47:46 +00001148 }
Chris Lattner00950542001-06-06 20:29:01 +00001149
1150ArgList : ArgListH {
1151 $$ = $1;
1152 }
1153 | /* empty */ {
1154 $$ = 0;
1155 }
1156
Chris Lattner79df7c02002-03-26 18:01:55 +00001157FunctionHeaderH : OptInternal TypesV STRINGCONSTANT '(' ArgList ')' {
Chris Lattnerdda71962001-11-26 18:54:16 +00001158 UnEscapeLexed($3);
Chris Lattner79df7c02002-03-26 18:01:55 +00001159 string FunctionName($3);
Chris Lattnerdda71962001-11-26 18:54:16 +00001160
Chris Lattner30c89792001-09-07 16:35:17 +00001161 vector<const Type*> ParamTypeList;
Chris Lattnerdda71962001-11-26 18:54:16 +00001162 if ($5)
Chris Lattner79df7c02002-03-26 18:01:55 +00001163 for (list<pair<FunctionArgument*,char*> >::iterator I = $5->begin();
Chris Lattnerf28d6c92002-03-08 18:41:32 +00001164 I != $5->end(); ++I)
1165 ParamTypeList.push_back(I->first->getType());
Chris Lattner00950542001-06-06 20:29:01 +00001166
Chris Lattner2079fde2001-10-13 06:41:08 +00001167 bool isVarArg = ParamTypeList.size() && ParamTypeList.back() == Type::VoidTy;
1168 if (isVarArg) ParamTypeList.pop_back();
1169
Chris Lattner79df7c02002-03-26 18:01:55 +00001170 const FunctionType *MT = FunctionType::get(*$2, ParamTypeList, isVarArg);
Chris Lattneref9c23f2001-10-03 14:53:21 +00001171 const PointerType *PMT = PointerType::get(MT);
Chris Lattnerdda71962001-11-26 18:54:16 +00001172 delete $2;
Chris Lattner00950542001-06-06 20:29:01 +00001173
Chris Lattner79df7c02002-03-26 18:01:55 +00001174 Function *M = 0;
Chris Lattnere1815642001-07-15 06:35:53 +00001175 if (SymbolTable *ST = CurModule.CurrentModule->getSymbolTable()) {
Chris Lattner79df7c02002-03-26 18:01:55 +00001176 // Is the function already in symtab?
1177 if (Value *V = ST->lookup(PMT, FunctionName)) {
1178 M = cast<Function>(V);
Chris Lattner00950542001-06-06 20:29:01 +00001179
Chris Lattnere1815642001-07-15 06:35:53 +00001180 // Yes it is. If this is the case, either we need to be a forward decl,
1181 // or it needs to be.
1182 if (!CurMeth.isDeclare && !M->isExternal())
Chris Lattner79df7c02002-03-26 18:01:55 +00001183 ThrowException("Redefinition of method '" + FunctionName + "'!");
Chris Lattner34538142002-03-08 19:11:42 +00001184
1185 // If we found a preexisting method prototype, remove it from the module,
1186 // so that we don't get spurious conflicts with global & local variables.
1187 //
Chris Lattner79df7c02002-03-26 18:01:55 +00001188 CurModule.CurrentModule->getFunctionList().remove(M);
Chris Lattnere1815642001-07-15 06:35:53 +00001189 }
1190 }
1191
1192 if (M == 0) { // Not already defined?
Chris Lattner79df7c02002-03-26 18:01:55 +00001193 M = new Function(MT, $1, FunctionName);
Chris Lattnere1815642001-07-15 06:35:53 +00001194 InsertValue(M, CurModule.Values);
Chris Lattnerdda71962001-11-26 18:54:16 +00001195 CurModule.DeclareNewGlobalValue(M, ValID::create($3));
Chris Lattnere1815642001-07-15 06:35:53 +00001196 }
Chris Lattnerdda71962001-11-26 18:54:16 +00001197 free($3); // Free strdup'd memory!
Chris Lattner00950542001-06-06 20:29:01 +00001198
Chris Lattner79df7c02002-03-26 18:01:55 +00001199 CurMeth.FunctionStart(M);
Chris Lattner00950542001-06-06 20:29:01 +00001200
1201 // Add all of the arguments we parsed to the method...
Chris Lattnerdda71962001-11-26 18:54:16 +00001202 if ($5 && !CurMeth.isDeclare) { // Is null if empty...
Chris Lattner79df7c02002-03-26 18:01:55 +00001203 Function::ArgumentListType &ArgList = M->getArgumentList();
Chris Lattner00950542001-06-06 20:29:01 +00001204
Chris Lattner79df7c02002-03-26 18:01:55 +00001205 for (list<pair<FunctionArgument*, char*> >::iterator I = $5->begin();
Chris Lattnerf28d6c92002-03-08 18:41:32 +00001206 I != $5->end(); ++I) {
1207 if (setValueName(I->first, I->second)) { // Insert into symtab...
1208 assert(0 && "No arg redef allowed!");
1209 }
1210
1211 InsertValue(I->first);
1212 ArgList.push_back(I->first);
Chris Lattner00950542001-06-06 20:29:01 +00001213 }
Chris Lattnerdda71962001-11-26 18:54:16 +00001214 delete $5; // We're now done with the argument list
Chris Lattner9176fe42002-03-08 18:57:56 +00001215 } else if ($5) {
1216 // If we are a declaration, we should free the memory for the argument list!
Chris Lattner79df7c02002-03-26 18:01:55 +00001217 for (list<pair<FunctionArgument*, char*> >::iterator I = $5->begin();
Chris Lattner09c07532002-03-31 07:16:49 +00001218 I != $5->end(); ++I) {
Chris Lattner9176fe42002-03-08 18:57:56 +00001219 if (I->second) free(I->second); // Free the memory for the name...
Chris Lattner09c07532002-03-31 07:16:49 +00001220 delete I->first; // Free the unused function argument
1221 }
Chris Lattner9176fe42002-03-08 18:57:56 +00001222 delete $5; // Free the memory for the list itself
Chris Lattner00950542001-06-06 20:29:01 +00001223 }
1224}
1225
Chris Lattner79df7c02002-03-26 18:01:55 +00001226FunctionHeader : FunctionHeaderH ConstPool BEGINTOK {
1227 $$ = CurMeth.CurrentFunction;
Chris Lattner30c89792001-09-07 16:35:17 +00001228
1229 // Resolve circular types before we parse the body of the method.
1230 ResolveTypes(CurMeth.LateResolveTypes);
Chris Lattner00950542001-06-06 20:29:01 +00001231}
1232
Chris Lattner79df7c02002-03-26 18:01:55 +00001233Function : BasicBlockList END {
Chris Lattner00950542001-06-06 20:29:01 +00001234 $$ = $1;
1235}
1236
Chris Lattner79df7c02002-03-26 18:01:55 +00001237FunctionProto : DECLARE { CurMeth.isDeclare = true; } FunctionHeaderH {
1238 $$ = CurMeth.CurrentFunction;
1239 assert($$->getParent() == 0 && "Function already in module!");
1240 CurModule.CurrentModule->getFunctionList().push_back($$);
1241 CurMeth.FunctionDone();
Chris Lattnere1815642001-07-15 06:35:53 +00001242}
Chris Lattner00950542001-06-06 20:29:01 +00001243
1244//===----------------------------------------------------------------------===//
1245// Rules to match Basic Blocks
1246//===----------------------------------------------------------------------===//
1247
1248ConstValueRef : ESINT64VAL { // A reference to a direct constant
1249 $$ = ValID::create($1);
1250 }
1251 | EUINT64VAL {
1252 $$ = ValID::create($1);
1253 }
Chris Lattner3d52b2f2001-07-15 00:17:01 +00001254 | FPVAL { // Perhaps it's an FP constant?
1255 $$ = ValID::create($1);
1256 }
Chris Lattner00950542001-06-06 20:29:01 +00001257 | TRUE {
1258 $$ = ValID::create((int64_t)1);
1259 }
1260 | FALSE {
1261 $$ = ValID::create((int64_t)0);
1262 }
Chris Lattner1a1cb112001-09-30 22:46:54 +00001263 | NULL_TOK {
1264 $$ = ValID::createNull();
1265 }
1266
Chris Lattner93750fa2001-07-28 17:48:55 +00001267/*
Chris Lattner00950542001-06-06 20:29:01 +00001268 | STRINGCONSTANT { // Quoted strings work too... especially for methods
1269 $$ = ValID::create_conststr($1);
1270 }
Chris Lattner93750fa2001-07-28 17:48:55 +00001271*/
Chris Lattner00950542001-06-06 20:29:01 +00001272
Chris Lattner2079fde2001-10-13 06:41:08 +00001273// SymbolicValueRef - Reference to one of two ways of symbolically refering to
1274// another value.
1275//
1276SymbolicValueRef : INTVAL { // Is it an integer reference...?
Chris Lattner00950542001-06-06 20:29:01 +00001277 $$ = ValID::create($1);
1278 }
Chris Lattner3d52b2f2001-07-15 00:17:01 +00001279 | VAR_ID { // Is it a named reference...?
Chris Lattner00950542001-06-06 20:29:01 +00001280 $$ = ValID::create($1);
1281 }
Chris Lattner2079fde2001-10-13 06:41:08 +00001282
1283// ValueRef - A reference to a definition... either constant or symbolic
1284ValueRef : SymbolicValueRef | ConstValueRef
1285
Chris Lattner00950542001-06-06 20:29:01 +00001286
Chris Lattnerbcbf6ba2001-07-26 16:29:15 +00001287// ResolvedVal - a <type> <value> pair. This is used only in cases where the
1288// type immediately preceeds the value reference, and allows complex constant
1289// pool references (for things like: 'ret [2 x int] [ int 12, int 42]')
Chris Lattnerdf7306f2001-10-03 01:49:25 +00001290ResolvedVal : Types ValueRef {
Chris Lattner30c89792001-09-07 16:35:17 +00001291 $$ = getVal(*$1, $2); delete $1;
Chris Lattner93750fa2001-07-28 17:48:55 +00001292 }
Chris Lattner8b81bf52001-07-25 22:47:46 +00001293
Chris Lattner00950542001-06-06 20:29:01 +00001294
1295BasicBlockList : BasicBlockList BasicBlock {
Chris Lattner89219832001-10-03 19:35:04 +00001296 ($$ = $1)->getBasicBlocks().push_back($2);
Chris Lattner00950542001-06-06 20:29:01 +00001297 }
Chris Lattner79df7c02002-03-26 18:01:55 +00001298 | FunctionHeader BasicBlock { // Do not allow methods with 0 basic blocks
Chris Lattner89219832001-10-03 19:35:04 +00001299 ($$ = $1)->getBasicBlocks().push_back($2);
Chris Lattner00950542001-06-06 20:29:01 +00001300 }
1301
1302
1303// Basic blocks are terminated by branching instructions:
1304// br, br/cc, switch, ret
1305//
Chris Lattner2079fde2001-10-13 06:41:08 +00001306BasicBlock : InstructionList OptAssign BBTerminatorInst {
1307 if (setValueName($3, $2)) { assert(0 && "No redefn allowed!"); }
1308 InsertValue($3);
1309
1310 $1->getInstList().push_back($3);
Chris Lattner00950542001-06-06 20:29:01 +00001311 InsertValue($1);
1312 $$ = $1;
1313 }
Chris Lattner2079fde2001-10-13 06:41:08 +00001314 | LABELSTR InstructionList OptAssign BBTerminatorInst {
1315 if (setValueName($4, $3)) { assert(0 && "No redefn allowed!"); }
1316 InsertValue($4);
1317
1318 $2->getInstList().push_back($4);
Chris Lattnerb7474512001-10-03 15:39:04 +00001319 if (setValueName($2, $1)) { assert(0 && "No label redef allowed!"); }
Chris Lattner00950542001-06-06 20:29:01 +00001320
1321 InsertValue($2);
1322 $$ = $2;
1323 }
1324
1325InstructionList : InstructionList Inst {
1326 $1->getInstList().push_back($2);
1327 $$ = $1;
1328 }
1329 | /* empty */ {
1330 $$ = new BasicBlock();
1331 }
1332
Chris Lattnerbcbf6ba2001-07-26 16:29:15 +00001333BBTerminatorInst : RET ResolvedVal { // Return with a result...
1334 $$ = new ReturnInst($2);
Chris Lattner00950542001-06-06 20:29:01 +00001335 }
1336 | RET VOID { // Return with no result...
1337 $$ = new ReturnInst();
1338 }
1339 | BR LABEL ValueRef { // Unconditional Branch...
Chris Lattner9636a912001-10-01 16:18:37 +00001340 $$ = new BranchInst(cast<BasicBlock>(getVal(Type::LabelTy, $3)));
Chris Lattner00950542001-06-06 20:29:01 +00001341 } // Conditional Branch...
1342 | BR BOOL ValueRef ',' LABEL ValueRef ',' LABEL ValueRef {
Chris Lattner9636a912001-10-01 16:18:37 +00001343 $$ = new BranchInst(cast<BasicBlock>(getVal(Type::LabelTy, $6)),
1344 cast<BasicBlock>(getVal(Type::LabelTy, $9)),
Chris Lattner00950542001-06-06 20:29:01 +00001345 getVal(Type::BoolTy, $3));
1346 }
1347 | SWITCH IntType ValueRef ',' LABEL ValueRef '[' JumpTable ']' {
1348 SwitchInst *S = new SwitchInst(getVal($2, $3),
Chris Lattner9636a912001-10-01 16:18:37 +00001349 cast<BasicBlock>(getVal(Type::LabelTy, $6)));
Chris Lattner00950542001-06-06 20:29:01 +00001350 $$ = S;
1351
Chris Lattnere9bb2df2001-12-03 22:26:30 +00001352 list<pair<Constant*, BasicBlock*> >::iterator I = $8->begin(),
Chris Lattner00950542001-06-06 20:29:01 +00001353 end = $8->end();
Chris Lattner7fc9fe32001-06-27 23:41:11 +00001354 for (; I != end; ++I)
Chris Lattner00950542001-06-06 20:29:01 +00001355 S->dest_push_back(I->first, I->second);
1356 }
Chris Lattner2079fde2001-10-13 06:41:08 +00001357 | INVOKE TypesV ValueRef '(' ValueRefListE ')' TO ResolvedVal
1358 EXCEPT ResolvedVal {
1359 const PointerType *PMTy;
Chris Lattner79df7c02002-03-26 18:01:55 +00001360 const FunctionType *Ty;
Chris Lattner2079fde2001-10-13 06:41:08 +00001361
1362 if (!(PMTy = dyn_cast<PointerType>($2->get())) ||
Chris Lattner79df7c02002-03-26 18:01:55 +00001363 !(Ty = dyn_cast<FunctionType>(PMTy->getElementType()))) {
Chris Lattner2079fde2001-10-13 06:41:08 +00001364 // Pull out the types of all of the arguments...
1365 vector<const Type*> ParamTypes;
1366 if ($5) {
Chris Lattner6cdb0112001-11-26 16:54:11 +00001367 for (vector<Value*>::iterator I = $5->begin(), E = $5->end(); I!=E; ++I)
Chris Lattner2079fde2001-10-13 06:41:08 +00001368 ParamTypes.push_back((*I)->getType());
1369 }
1370
1371 bool isVarArg = ParamTypes.size() && ParamTypes.back() == Type::VoidTy;
1372 if (isVarArg) ParamTypes.pop_back();
1373
Chris Lattner79df7c02002-03-26 18:01:55 +00001374 Ty = FunctionType::get($2->get(), ParamTypes, isVarArg);
Chris Lattner2079fde2001-10-13 06:41:08 +00001375 PMTy = PointerType::get(Ty);
1376 }
1377 delete $2;
1378
1379 Value *V = getVal(PMTy, $3); // Get the method we're calling...
1380
1381 BasicBlock *Normal = dyn_cast<BasicBlock>($8);
1382 BasicBlock *Except = dyn_cast<BasicBlock>($10);
1383
1384 if (Normal == 0 || Except == 0)
1385 ThrowException("Invoke instruction without label destinations!");
1386
1387 // Create the call node...
1388 if (!$5) { // Has no arguments?
Chris Lattner386a3b72001-10-16 19:54:17 +00001389 $$ = new InvokeInst(V, Normal, Except, vector<Value*>());
Chris Lattner2079fde2001-10-13 06:41:08 +00001390 } else { // Has arguments?
Chris Lattner79df7c02002-03-26 18:01:55 +00001391 // Loop through FunctionType's arguments and ensure they are specified
Chris Lattner2079fde2001-10-13 06:41:08 +00001392 // correctly!
1393 //
Chris Lattner79df7c02002-03-26 18:01:55 +00001394 FunctionType::ParamTypes::const_iterator I = Ty->getParamTypes().begin();
1395 FunctionType::ParamTypes::const_iterator E = Ty->getParamTypes().end();
Chris Lattner6cdb0112001-11-26 16:54:11 +00001396 vector<Value*>::iterator ArgI = $5->begin(), ArgE = $5->end();
Chris Lattner2079fde2001-10-13 06:41:08 +00001397
1398 for (; ArgI != ArgE && I != E; ++ArgI, ++I)
1399 if ((*ArgI)->getType() != *I)
1400 ThrowException("Parameter " +(*ArgI)->getName()+ " is not of type '" +
Chris Lattner72e00252001-12-14 16:28:42 +00001401 (*I)->getDescription() + "'!");
Chris Lattner2079fde2001-10-13 06:41:08 +00001402
1403 if (I != E || (ArgI != ArgE && !Ty->isVarArg()))
1404 ThrowException("Invalid number of parameters detected!");
1405
Chris Lattner6cdb0112001-11-26 16:54:11 +00001406 $$ = new InvokeInst(V, Normal, Except, *$5);
Chris Lattner2079fde2001-10-13 06:41:08 +00001407 }
1408 delete $5;
1409 }
1410
1411
Chris Lattner00950542001-06-06 20:29:01 +00001412
1413JumpTable : JumpTable IntType ConstValueRef ',' LABEL ValueRef {
1414 $$ = $1;
Chris Lattnere9bb2df2001-12-03 22:26:30 +00001415 Constant *V = cast<Constant>(getValNonImprovising($2, $3));
Chris Lattner00950542001-06-06 20:29:01 +00001416 if (V == 0)
1417 ThrowException("May only switch on a constant pool value!");
1418
Chris Lattner9636a912001-10-01 16:18:37 +00001419 $$->push_back(make_pair(V, cast<BasicBlock>(getVal($5, $6))));
Chris Lattner00950542001-06-06 20:29:01 +00001420 }
1421 | IntType ConstValueRef ',' LABEL ValueRef {
Chris Lattnere9bb2df2001-12-03 22:26:30 +00001422 $$ = new list<pair<Constant*, BasicBlock*> >();
1423 Constant *V = cast<Constant>(getValNonImprovising($1, $2));
Chris Lattner00950542001-06-06 20:29:01 +00001424
1425 if (V == 0)
1426 ThrowException("May only switch on a constant pool value!");
1427
Chris Lattner9636a912001-10-01 16:18:37 +00001428 $$->push_back(make_pair(V, cast<BasicBlock>(getVal($4, $5))));
Chris Lattner00950542001-06-06 20:29:01 +00001429 }
1430
1431Inst : OptAssign InstVal {
Chris Lattnerb7474512001-10-03 15:39:04 +00001432 // Is this definition named?? if so, assign the name...
1433 if (setValueName($2, $1)) { assert(0 && "No redefin allowed!"); }
Chris Lattner00950542001-06-06 20:29:01 +00001434 InsertValue($2);
1435 $$ = $2;
1436}
1437
Chris Lattnerc24d2082001-06-11 15:04:20 +00001438PHIList : Types '[' ValueRef ',' ValueRef ']' { // Used for PHI nodes
1439 $$ = new list<pair<Value*, BasicBlock*> >();
Chris Lattner30c89792001-09-07 16:35:17 +00001440 $$->push_back(make_pair(getVal(*$1, $3),
Chris Lattner9636a912001-10-01 16:18:37 +00001441 cast<BasicBlock>(getVal(Type::LabelTy, $5))));
Chris Lattner30c89792001-09-07 16:35:17 +00001442 delete $1;
Chris Lattnerc24d2082001-06-11 15:04:20 +00001443 }
1444 | PHIList ',' '[' ValueRef ',' ValueRef ']' {
1445 $$ = $1;
1446 $1->push_back(make_pair(getVal($1->front().first->getType(), $4),
Chris Lattner9636a912001-10-01 16:18:37 +00001447 cast<BasicBlock>(getVal(Type::LabelTy, $6))));
Chris Lattnerc24d2082001-06-11 15:04:20 +00001448 }
1449
1450
Chris Lattner30c89792001-09-07 16:35:17 +00001451ValueRefList : ResolvedVal { // Used for call statements, and memory insts...
Chris Lattner6cdb0112001-11-26 16:54:11 +00001452 $$ = new vector<Value*>();
Chris Lattnerbcbf6ba2001-07-26 16:29:15 +00001453 $$->push_back($1);
Chris Lattner00950542001-06-06 20:29:01 +00001454 }
Chris Lattnerbcbf6ba2001-07-26 16:29:15 +00001455 | ValueRefList ',' ResolvedVal {
Chris Lattner00950542001-06-06 20:29:01 +00001456 $$ = $1;
Chris Lattnerbcbf6ba2001-07-26 16:29:15 +00001457 $1->push_back($3);
Chris Lattner00950542001-06-06 20:29:01 +00001458 }
1459
1460// ValueRefListE - Just like ValueRefList, except that it may also be empty!
1461ValueRefListE : ValueRefList | /*empty*/ { $$ = 0; }
1462
1463InstVal : BinaryOps Types ValueRef ',' ValueRef {
Chris Lattner30c89792001-09-07 16:35:17 +00001464 $$ = BinaryOperator::create($1, getVal(*$2, $3), getVal(*$2, $5));
Chris Lattner00950542001-06-06 20:29:01 +00001465 if ($$ == 0)
1466 ThrowException("binary operator returned null!");
Chris Lattner30c89792001-09-07 16:35:17 +00001467 delete $2;
Chris Lattner00950542001-06-06 20:29:01 +00001468 }
Chris Lattnerbcbf6ba2001-07-26 16:29:15 +00001469 | UnaryOps ResolvedVal {
1470 $$ = UnaryOperator::create($1, $2);
Chris Lattner00950542001-06-06 20:29:01 +00001471 if ($$ == 0)
1472 ThrowException("unary operator returned null!");
Chris Lattner09083092001-07-08 04:57:15 +00001473 }
Chris Lattnerbcbf6ba2001-07-26 16:29:15 +00001474 | ShiftOps ResolvedVal ',' ResolvedVal {
1475 if ($4->getType() != Type::UByteTy)
1476 ThrowException("Shift amount must be ubyte!");
1477 $$ = new ShiftInst($1, $2, $4);
Chris Lattner027dcc52001-07-08 21:10:27 +00001478 }
Chris Lattnerbcbf6ba2001-07-26 16:29:15 +00001479 | CAST ResolvedVal TO Types {
Chris Lattner30c89792001-09-07 16:35:17 +00001480 $$ = new CastInst($2, *$4);
1481 delete $4;
Chris Lattner09083092001-07-08 04:57:15 +00001482 }
Chris Lattnerc24d2082001-06-11 15:04:20 +00001483 | PHI PHIList {
1484 const Type *Ty = $2->front().first->getType();
1485 $$ = new PHINode(Ty);
Chris Lattner00950542001-06-06 20:29:01 +00001486 while ($2->begin() != $2->end()) {
Chris Lattnerc24d2082001-06-11 15:04:20 +00001487 if ($2->front().first->getType() != Ty)
1488 ThrowException("All elements of a PHI node must be of the same type!");
Chris Lattnerb00c5822001-10-02 03:41:24 +00001489 cast<PHINode>($$)->addIncoming($2->front().first, $2->front().second);
Chris Lattner00950542001-06-06 20:29:01 +00001490 $2->pop_front();
1491 }
1492 delete $2; // Free the list...
1493 }
Chris Lattner93750fa2001-07-28 17:48:55 +00001494 | CALL TypesV ValueRef '(' ValueRefListE ')' {
Chris Lattneref9c23f2001-10-03 14:53:21 +00001495 const PointerType *PMTy;
Chris Lattner79df7c02002-03-26 18:01:55 +00001496 const FunctionType *Ty;
Chris Lattner00950542001-06-06 20:29:01 +00001497
Chris Lattneref9c23f2001-10-03 14:53:21 +00001498 if (!(PMTy = dyn_cast<PointerType>($2->get())) ||
Chris Lattner79df7c02002-03-26 18:01:55 +00001499 !(Ty = dyn_cast<FunctionType>(PMTy->getElementType()))) {
Chris Lattner8b81bf52001-07-25 22:47:46 +00001500 // Pull out the types of all of the arguments...
1501 vector<const Type*> ParamTypes;
Chris Lattneref9c23f2001-10-03 14:53:21 +00001502 if ($5) {
Chris Lattner6cdb0112001-11-26 16:54:11 +00001503 for (vector<Value*>::iterator I = $5->begin(), E = $5->end(); I!=E; ++I)
Chris Lattneref9c23f2001-10-03 14:53:21 +00001504 ParamTypes.push_back((*I)->getType());
1505 }
Chris Lattner2079fde2001-10-13 06:41:08 +00001506
1507 bool isVarArg = ParamTypes.size() && ParamTypes.back() == Type::VoidTy;
1508 if (isVarArg) ParamTypes.pop_back();
1509
Chris Lattner79df7c02002-03-26 18:01:55 +00001510 Ty = FunctionType::get($2->get(), ParamTypes, isVarArg);
Chris Lattneref9c23f2001-10-03 14:53:21 +00001511 PMTy = PointerType::get(Ty);
Chris Lattner8b81bf52001-07-25 22:47:46 +00001512 }
Chris Lattner30c89792001-09-07 16:35:17 +00001513 delete $2;
Chris Lattner00950542001-06-06 20:29:01 +00001514
Chris Lattneref9c23f2001-10-03 14:53:21 +00001515 Value *V = getVal(PMTy, $3); // Get the method we're calling...
Chris Lattner00950542001-06-06 20:29:01 +00001516
Chris Lattner8b81bf52001-07-25 22:47:46 +00001517 // Create the call node...
1518 if (!$5) { // Has no arguments?
Chris Lattner386a3b72001-10-16 19:54:17 +00001519 $$ = new CallInst(V, vector<Value*>());
Chris Lattner8b81bf52001-07-25 22:47:46 +00001520 } else { // Has arguments?
Chris Lattner79df7c02002-03-26 18:01:55 +00001521 // Loop through FunctionType's arguments and ensure they are specified
Chris Lattner00950542001-06-06 20:29:01 +00001522 // correctly!
1523 //
Chris Lattner79df7c02002-03-26 18:01:55 +00001524 FunctionType::ParamTypes::const_iterator I = Ty->getParamTypes().begin();
1525 FunctionType::ParamTypes::const_iterator E = Ty->getParamTypes().end();
Chris Lattner6cdb0112001-11-26 16:54:11 +00001526 vector<Value*>::iterator ArgI = $5->begin(), ArgE = $5->end();
Chris Lattner8b81bf52001-07-25 22:47:46 +00001527
1528 for (; ArgI != ArgE && I != E; ++ArgI, ++I)
1529 if ((*ArgI)->getType() != *I)
1530 ThrowException("Parameter " +(*ArgI)->getName()+ " is not of type '" +
Chris Lattner72e00252001-12-14 16:28:42 +00001531 (*I)->getDescription() + "'!");
Chris Lattner00950542001-06-06 20:29:01 +00001532
Chris Lattner8b81bf52001-07-25 22:47:46 +00001533 if (I != E || (ArgI != ArgE && !Ty->isVarArg()))
Chris Lattner00950542001-06-06 20:29:01 +00001534 ThrowException("Invalid number of parameters detected!");
Chris Lattner00950542001-06-06 20:29:01 +00001535
Chris Lattner6cdb0112001-11-26 16:54:11 +00001536 $$ = new CallInst(V, *$5);
Chris Lattner8b81bf52001-07-25 22:47:46 +00001537 }
1538 delete $5;
Chris Lattner00950542001-06-06 20:29:01 +00001539 }
1540 | MemoryInst {
1541 $$ = $1;
1542 }
1543
Chris Lattner6cdb0112001-11-26 16:54:11 +00001544
1545// IndexList - List of indices for GEP based instructions...
1546IndexList : ',' ValueRefList {
Chris Lattner027dcc52001-07-08 21:10:27 +00001547 $$ = $2;
1548} | /* empty */ {
Chris Lattner6cdb0112001-11-26 16:54:11 +00001549 $$ = new vector<Value*>();
Chris Lattner027dcc52001-07-08 21:10:27 +00001550}
1551
Chris Lattner00950542001-06-06 20:29:01 +00001552MemoryInst : MALLOC Types {
Chris Lattner30c89792001-09-07 16:35:17 +00001553 $$ = new MallocInst(PointerType::get(*$2));
1554 delete $2;
Chris Lattner00950542001-06-06 20:29:01 +00001555 }
1556 | MALLOC Types ',' UINT ValueRef {
Chris Lattner30c89792001-09-07 16:35:17 +00001557 const Type *Ty = PointerType::get(*$2);
Chris Lattner8896eda2001-07-09 19:38:36 +00001558 $$ = new MallocInst(Ty, getVal($4, $5));
Chris Lattner30c89792001-09-07 16:35:17 +00001559 delete $2;
Chris Lattner00950542001-06-06 20:29:01 +00001560 }
1561 | ALLOCA Types {
Chris Lattner30c89792001-09-07 16:35:17 +00001562 $$ = new AllocaInst(PointerType::get(*$2));
1563 delete $2;
Chris Lattner00950542001-06-06 20:29:01 +00001564 }
1565 | ALLOCA Types ',' UINT ValueRef {
Chris Lattner30c89792001-09-07 16:35:17 +00001566 const Type *Ty = PointerType::get(*$2);
Chris Lattner00950542001-06-06 20:29:01 +00001567 Value *ArrSize = getVal($4, $5);
Chris Lattnerf0d0e9c2001-07-07 08:36:30 +00001568 $$ = new AllocaInst(Ty, ArrSize);
Chris Lattner30c89792001-09-07 16:35:17 +00001569 delete $2;
Chris Lattner00950542001-06-06 20:29:01 +00001570 }
Chris Lattnerbcbf6ba2001-07-26 16:29:15 +00001571 | FREE ResolvedVal {
1572 if (!$2->getType()->isPointerType())
1573 ThrowException("Trying to free nonpointer type " +
Chris Lattner72e00252001-12-14 16:28:42 +00001574 $2->getType()->getDescription() + "!");
Chris Lattnerbcbf6ba2001-07-26 16:29:15 +00001575 $$ = new FreeInst($2);
Chris Lattner00950542001-06-06 20:29:01 +00001576 }
1577
Chris Lattner6cdb0112001-11-26 16:54:11 +00001578 | LOAD Types ValueRef IndexList {
Chris Lattner30c89792001-09-07 16:35:17 +00001579 if (!(*$2)->isPointerType())
Chris Lattner2079fde2001-10-13 06:41:08 +00001580 ThrowException("Can't load from nonpointer type: " +
1581 (*$2)->getDescription());
Chris Lattner30c89792001-09-07 16:35:17 +00001582 if (LoadInst::getIndexedType(*$2, *$4) == 0)
Chris Lattner027dcc52001-07-08 21:10:27 +00001583 ThrowException("Invalid indices for load instruction!");
1584
Chris Lattner30c89792001-09-07 16:35:17 +00001585 $$ = new LoadInst(getVal(*$2, $3), *$4);
Chris Lattner027dcc52001-07-08 21:10:27 +00001586 delete $4; // Free the vector...
Chris Lattner30c89792001-09-07 16:35:17 +00001587 delete $2;
Chris Lattner027dcc52001-07-08 21:10:27 +00001588 }
Chris Lattner6cdb0112001-11-26 16:54:11 +00001589 | STORE ResolvedVal ',' Types ValueRef IndexList {
Chris Lattner30c89792001-09-07 16:35:17 +00001590 if (!(*$4)->isPointerType())
Chris Lattner72e00252001-12-14 16:28:42 +00001591 ThrowException("Can't store to a nonpointer type: " +
1592 (*$4)->getDescription());
Chris Lattner30c89792001-09-07 16:35:17 +00001593 const Type *ElTy = StoreInst::getIndexedType(*$4, *$6);
Chris Lattnerab5ac6b2001-07-08 23:22:50 +00001594 if (ElTy == 0)
1595 ThrowException("Can't store into that field list!");
Chris Lattnerbcbf6ba2001-07-26 16:29:15 +00001596 if (ElTy != $2->getType())
Chris Lattner72e00252001-12-14 16:28:42 +00001597 ThrowException("Can't store '" + $2->getType()->getDescription() +
1598 "' into space of type '" + ElTy->getDescription() + "'!");
Chris Lattner30c89792001-09-07 16:35:17 +00001599 $$ = new StoreInst($2, getVal(*$4, $5), *$6);
1600 delete $4; delete $6;
Chris Lattnerab5ac6b2001-07-08 23:22:50 +00001601 }
Chris Lattner6cdb0112001-11-26 16:54:11 +00001602 | GETELEMENTPTR Types ValueRef IndexList {
Chris Lattner30c89792001-09-07 16:35:17 +00001603 if (!(*$2)->isPointerType())
Chris Lattnerab5ac6b2001-07-08 23:22:50 +00001604 ThrowException("getelementptr insn requires pointer operand!");
Chris Lattner30c89792001-09-07 16:35:17 +00001605 if (!GetElementPtrInst::getIndexedType(*$2, *$4, true))
Chris Lattner72e00252001-12-14 16:28:42 +00001606 ThrowException("Can't get element ptr '" + (*$2)->getDescription()+ "'!");
Chris Lattner30c89792001-09-07 16:35:17 +00001607 $$ = new GetElementPtrInst(getVal(*$2, $3), *$4);
1608 delete $2; delete $4;
Chris Lattnerab5ac6b2001-07-08 23:22:50 +00001609 }
Chris Lattner027dcc52001-07-08 21:10:27 +00001610
Chris Lattner00950542001-06-06 20:29:01 +00001611%%
Chris Lattner09083092001-07-08 04:57:15 +00001612int yyerror(const char *ErrorMsg) {
Chris Lattner00950542001-06-06 20:29:01 +00001613 ThrowException(string("Parse error: ") + ErrorMsg);
1614 return 0;
1615}