blob: 9aa81ea8dcc6c8e6ce5247b9bf56f80a13e80874 [file] [log] [blame]
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001//===-- llvmAsmParser.y - Parser for llvm assembly files --------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file was developed by the LLVM research group and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the bison parser for LLVM assembly languages files.
11//
12//===----------------------------------------------------------------------===//
13
14%{
15#include "ParserInternals.h"
16#include "llvm/CallingConv.h"
17#include "llvm/InlineAsm.h"
18#include "llvm/Instructions.h"
19#include "llvm/Module.h"
Reid Spencer3aaaa0b2007-02-05 20:47:22 +000020#include "llvm/ValueSymbolTable.h"
Chris Lattnerf20e61f2006-02-15 07:22:58 +000021#include "llvm/Support/GetElementPtrTypeIterator.h"
Reid Spencer42f0cbe2006-12-31 05:40:51 +000022#include "llvm/Support/CommandLine.h"
Chris Lattner55ce85c2007-01-31 04:44:08 +000023#include "llvm/ADT/SmallVector.h"
Chris Lattnerf20e61f2006-02-15 07:22:58 +000024#include "llvm/ADT/STLExtras.h"
25#include "llvm/Support/MathExtras.h"
Reid Spencerd5e19442006-12-01 00:33:46 +000026#include "llvm/Support/Streams.h"
Chris Lattnerf20e61f2006-02-15 07:22:58 +000027#include <algorithm>
Chris Lattnerf20e61f2006-02-15 07:22:58 +000028#include <list>
Chris Lattnerac26f382007-02-11 21:40:10 +000029#include <map>
Chris Lattnerf20e61f2006-02-15 07:22:58 +000030#include <utility>
Reid Spencer42f0cbe2006-12-31 05:40:51 +000031#ifndef NDEBUG
32#define YYDEBUG 1
33#endif
Chris Lattnerf20e61f2006-02-15 07:22:58 +000034
Reid Spencerb50974a2006-08-18 17:32:55 +000035// The following is a gross hack. In order to rid the libAsmParser library of
36// exceptions, we have to have a way of getting the yyparse function to go into
37// an error situation. So, whenever we want an error to occur, the GenerateError
38// function (see bottom of file) sets TriggerError. Then, at the end of each
39// production in the grammer we use CHECK_FOR_ERROR which will invoke YYERROR
40// (a goto) to put YACC in error state. Furthermore, several calls to
41// GenerateError are made from inside productions and they must simulate the
42// previous exception behavior by exiting the production immediately. We have
43// replaced these with the GEN_ERROR macro which calls GeneratError and then
44// immediately invokes YYERROR. This would be so much cleaner if it was a
45// recursive descent parser.
Reid Spencer713eedc2006-08-18 08:43:06 +000046static bool TriggerError = false;
Reid Spencerff359002006-10-09 17:36:59 +000047#define CHECK_FOR_ERROR { if (TriggerError) { TriggerError = false; YYABORT; } }
Reid Spencer713eedc2006-08-18 08:43:06 +000048#define GEN_ERROR(msg) { GenerateError(msg); YYERROR; }
49
Chris Lattnerf20e61f2006-02-15 07:22:58 +000050int yyerror(const char *ErrorMsg); // Forward declarations to prevent "implicit
51int yylex(); // declaration" of xxx warnings.
52int yyparse();
53
54namespace llvm {
55 std::string CurFilename;
Reid Spencer42f0cbe2006-12-31 05:40:51 +000056#if YYDEBUG
57static cl::opt<bool>
58Debug("debug-yacc", cl::desc("Print yacc debug state changes"),
59 cl::Hidden, cl::init(false));
60#endif
Chris Lattnerf20e61f2006-02-15 07:22:58 +000061}
62using namespace llvm;
63
64static Module *ParserResult;
65
66// DEBUG_UPREFS - Define this symbol if you want to enable debugging output
67// relating to upreferences in the input stream.
68//
69//#define DEBUG_UPREFS 1
70#ifdef DEBUG_UPREFS
Bill Wendlingf3baad32006-12-07 01:30:32 +000071#define UR_OUT(X) cerr << X
Chris Lattnerf20e61f2006-02-15 07:22:58 +000072#else
73#define UR_OUT(X)
74#endif
75
76#define YYERROR_VERBOSE 1
77
Chris Lattnerf20e61f2006-02-15 07:22:58 +000078static GlobalVariable *CurGV;
79
80
81// This contains info used when building the body of a function. It is
82// destroyed when the function is completed.
83//
84typedef std::vector<Value *> ValueList; // Numbered defs
Reid Spencer42f0cbe2006-12-31 05:40:51 +000085
Chris Lattnerf20e61f2006-02-15 07:22:58 +000086static void
Reid Spencerd0e8d382007-03-19 18:40:50 +000087ResolveDefinitions(ValueList &LateResolvers, ValueList *FutureLateResolvers=0);
Chris Lattnerf20e61f2006-02-15 07:22:58 +000088
89static struct PerModuleInfo {
90 Module *CurrentModule;
Reid Spencerd0e8d382007-03-19 18:40:50 +000091 ValueList Values; // Module level numbered definitions
92 ValueList LateResolveValues;
Reid Spencer55f1fbe2006-11-28 07:29:44 +000093 std::vector<PATypeHolder> Types;
94 std::map<ValID, PATypeHolder> LateResolveTypes;
Chris Lattnerf20e61f2006-02-15 07:22:58 +000095
96 /// PlaceHolderInfo - When temporary placeholder objects are created, remember
Chris Lattner7aa45902006-06-21 16:53:00 +000097 /// how they were referenced and on which line of the input they came from so
Chris Lattnerf20e61f2006-02-15 07:22:58 +000098 /// that we can resolve them later and print error messages as appropriate.
99 std::map<Value*, std::pair<ValID, int> > PlaceHolderInfo;
100
101 // GlobalRefs - This maintains a mapping between <Type, ValID>'s and forward
102 // references to global values. Global values may be referenced before they
103 // are defined, and if so, the temporary object that they represent is held
104 // here. This is used for forward references of GlobalValues.
105 //
106 typedef std::map<std::pair<const PointerType *,
107 ValID>, GlobalValue*> GlobalRefsType;
108 GlobalRefsType GlobalRefs;
109
110 void ModuleDone() {
111 // If we could not resolve some functions at function compilation time
112 // (calls to functions before they are defined), resolve them now... Types
113 // are resolved when the constant pool has been completely parsed.
114 //
115 ResolveDefinitions(LateResolveValues);
Reid Spencer309080a2006-09-28 19:28:24 +0000116 if (TriggerError)
117 return;
Chris Lattnerf20e61f2006-02-15 07:22:58 +0000118
119 // Check to make sure that all global value forward references have been
120 // resolved!
121 //
122 if (!GlobalRefs.empty()) {
123 std::string UndefinedReferences = "Unresolved global references exist:\n";
124
125 for (GlobalRefsType::iterator I = GlobalRefs.begin(), E =GlobalRefs.end();
126 I != E; ++I) {
127 UndefinedReferences += " " + I->first.first->getDescription() + " " +
128 I->first.second.getName() + "\n";
129 }
Reid Spencer713eedc2006-08-18 08:43:06 +0000130 GenerateError(UndefinedReferences);
Reid Spencer309080a2006-09-28 19:28:24 +0000131 return;
Chris Lattnerf20e61f2006-02-15 07:22:58 +0000132 }
133
Chris Lattnerf20e61f2006-02-15 07:22:58 +0000134 Values.clear(); // Clear out function local definitions
135 Types.clear();
136 CurrentModule = 0;
137 }
138
139 // GetForwardRefForGlobal - Check to see if there is a forward reference
140 // for this global. If so, remove it from the GlobalRefs map and return it.
141 // If not, just return null.
142 GlobalValue *GetForwardRefForGlobal(const PointerType *PTy, ValID ID) {
143 // Check to see if there is a forward reference to this global variable...
144 // if there is, eliminate it and patch the reference to use the new def'n.
145 GlobalRefsType::iterator I = GlobalRefs.find(std::make_pair(PTy, ID));
146 GlobalValue *Ret = 0;
147 if (I != GlobalRefs.end()) {
148 Ret = I->second;
149 GlobalRefs.erase(I);
150 }
151 return Ret;
152 }
Reid Spencer87622ae2007-01-02 21:54:12 +0000153
154 bool TypeIsUnresolved(PATypeHolder* PATy) {
155 // If it isn't abstract, its resolved
156 const Type* Ty = PATy->get();
157 if (!Ty->isAbstract())
158 return false;
159 // Traverse the type looking for abstract types. If it isn't abstract then
160 // we don't need to traverse that leg of the type.
161 std::vector<const Type*> WorkList, SeenList;
162 WorkList.push_back(Ty);
163 while (!WorkList.empty()) {
164 const Type* Ty = WorkList.back();
165 SeenList.push_back(Ty);
166 WorkList.pop_back();
167 if (const OpaqueType* OpTy = dyn_cast<OpaqueType>(Ty)) {
168 // Check to see if this is an unresolved type
169 std::map<ValID, PATypeHolder>::iterator I = LateResolveTypes.begin();
170 std::map<ValID, PATypeHolder>::iterator E = LateResolveTypes.end();
171 for ( ; I != E; ++I) {
172 if (I->second.get() == OpTy)
173 return true;
174 }
175 } else if (const SequentialType* SeqTy = dyn_cast<SequentialType>(Ty)) {
176 const Type* TheTy = SeqTy->getElementType();
177 if (TheTy->isAbstract() && TheTy != Ty) {
178 std::vector<const Type*>::iterator I = SeenList.begin(),
179 E = SeenList.end();
180 for ( ; I != E; ++I)
181 if (*I == TheTy)
182 break;
183 if (I == E)
184 WorkList.push_back(TheTy);
185 }
186 } else if (const StructType* StrTy = dyn_cast<StructType>(Ty)) {
187 for (unsigned i = 0; i < StrTy->getNumElements(); ++i) {
188 const Type* TheTy = StrTy->getElementType(i);
189 if (TheTy->isAbstract() && TheTy != Ty) {
190 std::vector<const Type*>::iterator I = SeenList.begin(),
191 E = SeenList.end();
192 for ( ; I != E; ++I)
193 if (*I == TheTy)
194 break;
195 if (I == E)
196 WorkList.push_back(TheTy);
197 }
198 }
199 }
200 }
201 return false;
202 }
Chris Lattnerf20e61f2006-02-15 07:22:58 +0000203} CurModule;
204
205static struct PerFunctionInfo {
206 Function *CurrentFunction; // Pointer to current function being created
207
Reid Spencerd0e8d382007-03-19 18:40:50 +0000208 ValueList Values; // Keep track of #'d definitions
209 unsigned NextValNum;
210 ValueList LateResolveValues;
Reid Spencer3aaaa0b2007-02-05 20:47:22 +0000211 bool isDeclare; // Is this function a forward declararation?
Anton Korobeynikovd61d39e2006-09-14 18:23:27 +0000212 GlobalValue::LinkageTypes Linkage; // Linkage for forward declaration.
Anton Korobeynikova0554d92007-01-12 19:20:47 +0000213 GlobalValue::VisibilityTypes Visibility;
Chris Lattnerf20e61f2006-02-15 07:22:58 +0000214
215 /// BBForwardRefs - When we see forward references to basic blocks, keep
216 /// track of them here.
Reid Spencerd0e8d382007-03-19 18:40:50 +0000217 std::map<ValID, BasicBlock*> BBForwardRefs;
Chris Lattnerf20e61f2006-02-15 07:22:58 +0000218
219 inline PerFunctionInfo() {
220 CurrentFunction = 0;
221 isDeclare = false;
Anton Korobeynikova0554d92007-01-12 19:20:47 +0000222 Linkage = GlobalValue::ExternalLinkage;
223 Visibility = GlobalValue::DefaultVisibility;
Chris Lattnerf20e61f2006-02-15 07:22:58 +0000224 }
225
226 inline void FunctionStart(Function *M) {
227 CurrentFunction = M;
Reid Spencerd0e8d382007-03-19 18:40:50 +0000228 NextValNum = 0;
Chris Lattnerf20e61f2006-02-15 07:22:58 +0000229 }
230
231 void FunctionDone() {
Chris Lattnerf20e61f2006-02-15 07:22:58 +0000232 // Any forward referenced blocks left?
Reid Spencer309080a2006-09-28 19:28:24 +0000233 if (!BBForwardRefs.empty()) {
Reid Spencer713eedc2006-08-18 08:43:06 +0000234 GenerateError("Undefined reference to label " +
Reid Spencerd0e8d382007-03-19 18:40:50 +0000235 BBForwardRefs.begin()->second->getName());
Reid Spencer309080a2006-09-28 19:28:24 +0000236 return;
237 }
Chris Lattnerf20e61f2006-02-15 07:22:58 +0000238
239 // Resolve all forward references now.
240 ResolveDefinitions(LateResolveValues, &CurModule.LateResolveValues);
241
242 Values.clear(); // Clear out function local definitions
Reid Spencerd0e8d382007-03-19 18:40:50 +0000243 BBForwardRefs.clear();
Chris Lattnerf20e61f2006-02-15 07:22:58 +0000244 CurrentFunction = 0;
245 isDeclare = false;
Anton Korobeynikovd61d39e2006-09-14 18:23:27 +0000246 Linkage = GlobalValue::ExternalLinkage;
Anton Korobeynikova0554d92007-01-12 19:20:47 +0000247 Visibility = GlobalValue::DefaultVisibility;
Chris Lattnerf20e61f2006-02-15 07:22:58 +0000248 }
249} CurFun; // Info for the current function...
250
251static bool inFunctionScope() { return CurFun.CurrentFunction != 0; }
252
253
254//===----------------------------------------------------------------------===//
255// Code to handle definitions of all the types
256//===----------------------------------------------------------------------===//
257
Reid Spencerd0e8d382007-03-19 18:40:50 +0000258static void InsertValue(Value *V, ValueList &ValueTab = CurFun.Values) {
259 // Things that have names or are void typed don't get slot numbers
260 if (V->hasName() || (V->getType() == Type::VoidTy))
261 return;
Chris Lattnerf20e61f2006-02-15 07:22:58 +0000262
Reid Spencerd0e8d382007-03-19 18:40:50 +0000263 // In the case of function values, we have to allow for the forward reference
264 // of basic blocks, which are included in the numbering. Consequently, we keep
265 // track of the next insertion location with NextValNum. When a BB gets
266 // inserted, it could change the size of the CurFun.Values vector.
267 if (&ValueTab == &CurFun.Values) {
268 if (ValueTab.size() <= CurFun.NextValNum)
269 ValueTab.resize(CurFun.NextValNum+1);
270 ValueTab[CurFun.NextValNum++] = V;
271 return;
272 }
273 // For all other lists, its okay to just tack it on the back of the vector.
274 ValueTab.push_back(V);
Chris Lattnerf20e61f2006-02-15 07:22:58 +0000275}
276
277static const Type *getTypeVal(const ValID &D, bool DoNotImprovise = false) {
278 switch (D.Type) {
Reid Spencer8d6d4b8e2007-01-26 08:05:27 +0000279 case ValID::LocalID: // Is it a numbered definition?
Chris Lattnerf20e61f2006-02-15 07:22:58 +0000280 // Module constants occupy the lowest numbered slots...
Reid Spencer8d6d4b8e2007-01-26 08:05:27 +0000281 if (D.Num < CurModule.Types.size())
282 return CurModule.Types[D.Num];
Chris Lattnerf20e61f2006-02-15 07:22:58 +0000283 break;
Reid Spencer8d6d4b8e2007-01-26 08:05:27 +0000284 case ValID::LocalName: // Is it a named definition?
Chris Lattnerf20e61f2006-02-15 07:22:58 +0000285 if (const Type *N = CurModule.CurrentModule->getTypeByName(D.Name)) {
286 D.destroy(); // Free old strdup'd memory...
287 return N;
288 }
289 break;
290 default:
Reid Spencera7bb3e92007-02-05 10:18:06 +0000291 GenerateError("Internal parser error: Invalid symbol type reference");
Reid Spencer309080a2006-09-28 19:28:24 +0000292 return 0;
Chris Lattnerf20e61f2006-02-15 07:22:58 +0000293 }
294
295 // If we reached here, we referenced either a symbol that we don't know about
296 // or an id number that hasn't been read yet. We may be referencing something
297 // forward, so just create an entry to be resolved later and get to it...
298 //
299 if (DoNotImprovise) return 0; // Do we just want a null to be returned?
300
301
302 if (inFunctionScope()) {
Reid Spencer8d6d4b8e2007-01-26 08:05:27 +0000303 if (D.Type == ValID::LocalName) {
Reid Spencer713eedc2006-08-18 08:43:06 +0000304 GenerateError("Reference to an undefined type: '" + D.getName() + "'");
Reid Spencer309080a2006-09-28 19:28:24 +0000305 return 0;
306 } else {
Reid Spencer8d6d4b8e2007-01-26 08:05:27 +0000307 GenerateError("Reference to an undefined type: #" + utostr(D.Num));
Reid Spencer309080a2006-09-28 19:28:24 +0000308 return 0;
309 }
Chris Lattnerf20e61f2006-02-15 07:22:58 +0000310 }
311
Reid Spencer55f1fbe2006-11-28 07:29:44 +0000312 std::map<ValID, PATypeHolder>::iterator I =CurModule.LateResolveTypes.find(D);
Chris Lattnerf20e61f2006-02-15 07:22:58 +0000313 if (I != CurModule.LateResolveTypes.end())
Reid Spencer55f1fbe2006-11-28 07:29:44 +0000314 return I->second;
Chris Lattnerf20e61f2006-02-15 07:22:58 +0000315
Reid Spencer55f1fbe2006-11-28 07:29:44 +0000316 Type *Typ = OpaqueType::get();
317 CurModule.LateResolveTypes.insert(std::make_pair(D, Typ));
318 return Typ;
Reid Spencere2c32da2006-12-03 05:46:11 +0000319 }
Chris Lattnerf20e61f2006-02-15 07:22:58 +0000320
Reid Spencerd0e8d382007-03-19 18:40:50 +0000321// getExistingVal - Look up the value specified by the provided type and
Chris Lattnerf20e61f2006-02-15 07:22:58 +0000322// the provided ValID. If the value exists and has already been defined, return
323// it. Otherwise return null.
324//
Reid Spencerd0e8d382007-03-19 18:40:50 +0000325static Value *getExistingVal(const Type *Ty, const ValID &D) {
Reid Spencer309080a2006-09-28 19:28:24 +0000326 if (isa<FunctionType>(Ty)) {
Reid Spencer713eedc2006-08-18 08:43:06 +0000327 GenerateError("Functions are not values and "
Chris Lattnerf20e61f2006-02-15 07:22:58 +0000328 "must be referenced as pointers");
Reid Spencer309080a2006-09-28 19:28:24 +0000329 return 0;
330 }
Chris Lattnerf20e61f2006-02-15 07:22:58 +0000331
332 switch (D.Type) {
Reid Spencer8d6d4b8e2007-01-26 08:05:27 +0000333 case ValID::LocalID: { // Is it a numbered definition?
Reid Spencer8d6d4b8e2007-01-26 08:05:27 +0000334 // Check that the number is within bounds.
Reid Spencerd0e8d382007-03-19 18:40:50 +0000335 if (D.Num >= CurFun.Values.size())
336 return 0;
337 Value *Result = CurFun.Values[D.Num];
338 if (Ty != Result->getType()) {
339 GenerateError("Numbered value (%" + utostr(D.Num) + ") of type '" +
340 Result->getType()->getDescription() + "' does not match "
341 "expected type, '" + Ty->getDescription() + "'");
342 return 0;
343 }
344 return Result;
Reid Spencer8d6d4b8e2007-01-26 08:05:27 +0000345 }
346 case ValID::GlobalID: { // Is it a numbered definition?
Reid Spencerd0e8d382007-03-19 18:40:50 +0000347 if (D.Num >= CurModule.Values.size())
Reid Spencer3aaaa0b2007-02-05 20:47:22 +0000348 return 0;
Reid Spencerd0e8d382007-03-19 18:40:50 +0000349 Value *Result = CurModule.Values[D.Num];
350 if (Ty != Result->getType()) {
351 GenerateError("Numbered value (@" + utostr(D.Num) + ") of type '" +
352 Result->getType()->getDescription() + "' does not match "
353 "expected type, '" + Ty->getDescription() + "'");
Reid Spencer3aaaa0b2007-02-05 20:47:22 +0000354 return 0;
Reid Spencerd0e8d382007-03-19 18:40:50 +0000355 }
356 return Result;
Chris Lattnerf20e61f2006-02-15 07:22:58 +0000357 }
Reid Spencer8d6d4b8e2007-01-26 08:05:27 +0000358
359 case ValID::LocalName: { // Is it a named definition?
Reid Spencer3aaaa0b2007-02-05 20:47:22 +0000360 if (!inFunctionScope())
361 return 0;
362 ValueSymbolTable &SymTab = CurFun.CurrentFunction->getValueSymbolTable();
363 Value *N = SymTab.lookup(D.Name);
364 if (N == 0)
365 return 0;
366 if (N->getType() != Ty)
367 return 0;
Reid Spencer8d6d4b8e2007-01-26 08:05:27 +0000368
369 D.destroy(); // Free old strdup'd memory...
370 return N;
371 }
372 case ValID::GlobalName: { // Is it a named definition?
Reid Spencer3aaaa0b2007-02-05 20:47:22 +0000373 ValueSymbolTable &SymTab = CurModule.CurrentModule->getValueSymbolTable();
374 Value *N = SymTab.lookup(D.Name);
375 if (N == 0)
376 return 0;
377 if (N->getType() != Ty)
378 return 0;
Chris Lattnerf20e61f2006-02-15 07:22:58 +0000379
380 D.destroy(); // Free old strdup'd memory...
381 return N;
382 }
383
384 // Check to make sure that "Ty" is an integral type, and that our
385 // value will fit into the specified type...
386 case ValID::ConstSIntVal: // Is it a constant pool reference??
Reid Spencere0fc4df2006-10-20 07:07:24 +0000387 if (!ConstantInt::isValueValidForType(Ty, D.ConstPool64)) {
Reid Spencer713eedc2006-08-18 08:43:06 +0000388 GenerateError("Signed integral constant '" +
Chris Lattnerf20e61f2006-02-15 07:22:58 +0000389 itostr(D.ConstPool64) + "' is invalid for type '" +
Reid Spencera7bb3e92007-02-05 10:18:06 +0000390 Ty->getDescription() + "'");
Reid Spencer309080a2006-09-28 19:28:24 +0000391 return 0;
392 }
Reid Spencera7bed60a2007-03-19 20:40:51 +0000393 return ConstantInt::get(Ty, D.ConstPool64, true);
Chris Lattnerf20e61f2006-02-15 07:22:58 +0000394
395 case ValID::ConstUIntVal: // Is it an unsigned const pool reference?
Reid Spencere0fc4df2006-10-20 07:07:24 +0000396 if (!ConstantInt::isValueValidForType(Ty, D.UConstPool64)) {
397 if (!ConstantInt::isValueValidForType(Ty, D.ConstPool64)) {
Reid Spencer713eedc2006-08-18 08:43:06 +0000398 GenerateError("Integral constant '" + utostr(D.UConstPool64) +
Reid Spencera7bb3e92007-02-05 10:18:06 +0000399 "' is invalid or out of range");
Reid Spencer309080a2006-09-28 19:28:24 +0000400 return 0;
Chris Lattnerf20e61f2006-02-15 07:22:58 +0000401 } else { // This is really a signed reference. Transmogrify.
Reid Spencera7bed60a2007-03-19 20:40:51 +0000402 return ConstantInt::get(Ty, D.ConstPool64, true);
Chris Lattnerf20e61f2006-02-15 07:22:58 +0000403 }
404 } else {
Reid Spencere0fc4df2006-10-20 07:07:24 +0000405 return ConstantInt::get(Ty, D.UConstPool64);
Chris Lattnerf20e61f2006-02-15 07:22:58 +0000406 }
407
408 case ValID::ConstFPVal: // Is it a floating point const pool reference?
Reid Spencer309080a2006-09-28 19:28:24 +0000409 if (!ConstantFP::isValueValidForType(Ty, D.ConstPoolFP)) {
Reid Spencera7bb3e92007-02-05 10:18:06 +0000410 GenerateError("FP constant invalid for type");
Reid Spencer309080a2006-09-28 19:28:24 +0000411 return 0;
412 }
Chris Lattnerf20e61f2006-02-15 07:22:58 +0000413 return ConstantFP::get(Ty, D.ConstPoolFP);
414
415 case ValID::ConstNullVal: // Is it a null value?
Reid Spencer309080a2006-09-28 19:28:24 +0000416 if (!isa<PointerType>(Ty)) {
Reid Spencera7bb3e92007-02-05 10:18:06 +0000417 GenerateError("Cannot create a a non pointer null");
Reid Spencer309080a2006-09-28 19:28:24 +0000418 return 0;
419 }
Chris Lattnerf20e61f2006-02-15 07:22:58 +0000420 return ConstantPointerNull::get(cast<PointerType>(Ty));
421
422 case ValID::ConstUndefVal: // Is it an undef value?
423 return UndefValue::get(Ty);
424
425 case ValID::ConstZeroVal: // Is it a zero value?
426 return Constant::getNullValue(Ty);
427
428 case ValID::ConstantVal: // Fully resolved constant?
Reid Spencer309080a2006-09-28 19:28:24 +0000429 if (D.ConstantValue->getType() != Ty) {
Reid Spencera7bb3e92007-02-05 10:18:06 +0000430 GenerateError("Constant expression type different from required type");
Reid Spencer309080a2006-09-28 19:28:24 +0000431 return 0;
432 }
Chris Lattnerf20e61f2006-02-15 07:22:58 +0000433 return D.ConstantValue;
434
435 case ValID::InlineAsmVal: { // Inline asm expression
436 const PointerType *PTy = dyn_cast<PointerType>(Ty);
437 const FunctionType *FTy =
438 PTy ? dyn_cast<FunctionType>(PTy->getElementType()) : 0;
Reid Spencer309080a2006-09-28 19:28:24 +0000439 if (!FTy || !InlineAsm::Verify(FTy, D.IAD->Constraints)) {
Reid Spencera7bb3e92007-02-05 10:18:06 +0000440 GenerateError("Invalid type for asm constraint string");
Reid Spencer309080a2006-09-28 19:28:24 +0000441 return 0;
442 }
Chris Lattnerf20e61f2006-02-15 07:22:58 +0000443 InlineAsm *IA = InlineAsm::get(FTy, D.IAD->AsmString, D.IAD->Constraints,
444 D.IAD->HasSideEffects);
445 D.destroy(); // Free InlineAsmDescriptor.
446 return IA;
447 }
448 default:
Reid Spencerac6bfc52007-02-05 17:04:00 +0000449 assert(0 && "Unhandled case!");
Chris Lattnerf20e61f2006-02-15 07:22:58 +0000450 return 0;
451 } // End of switch
452
Reid Spencerac6bfc52007-02-05 17:04:00 +0000453 assert(0 && "Unhandled case!");
Chris Lattnerf20e61f2006-02-15 07:22:58 +0000454 return 0;
455}
456
Reid Spencerd0e8d382007-03-19 18:40:50 +0000457// getVal - This function is identical to getExistingVal, except that if a
Chris Lattnerf20e61f2006-02-15 07:22:58 +0000458// value is not already defined, it "improvises" by creating a placeholder var
459// that looks and acts just like the requested variable. When the value is
460// defined later, all uses of the placeholder variable are replaced with the
461// real thing.
462//
463static Value *getVal(const Type *Ty, const ValID &ID) {
Reid Spencer309080a2006-09-28 19:28:24 +0000464 if (Ty == Type::LabelTy) {
Reid Spencer713eedc2006-08-18 08:43:06 +0000465 GenerateError("Cannot use a basic block here");
Reid Spencer309080a2006-09-28 19:28:24 +0000466 return 0;
467 }
Chris Lattnerf20e61f2006-02-15 07:22:58 +0000468
469 // See if the value has already been defined.
Reid Spencerd0e8d382007-03-19 18:40:50 +0000470 Value *V = getExistingVal(Ty, ID);
Chris Lattnerf20e61f2006-02-15 07:22:58 +0000471 if (V) return V;
Reid Spencer309080a2006-09-28 19:28:24 +0000472 if (TriggerError) return 0;
Chris Lattnerf20e61f2006-02-15 07:22:58 +0000473
Reid Spencer309080a2006-09-28 19:28:24 +0000474 if (!Ty->isFirstClassType() && !isa<OpaqueType>(Ty)) {
Reid Spencera7bb3e92007-02-05 10:18:06 +0000475 GenerateError("Invalid use of a composite type");
Reid Spencer309080a2006-09-28 19:28:24 +0000476 return 0;
477 }
Chris Lattnerf20e61f2006-02-15 07:22:58 +0000478
479 // If we reached here, we referenced either a symbol that we don't know about
480 // or an id number that hasn't been read yet. We may be referencing something
481 // forward, so just create an entry to be resolved later and get to it...
482 //
483 V = new Argument(Ty);
484
485 // Remember where this forward reference came from. FIXME, shouldn't we try
486 // to recycle these things??
487 CurModule.PlaceHolderInfo.insert(std::make_pair(V, std::make_pair(ID,
488 llvmAsmlineno)));
489
490 if (inFunctionScope())
491 InsertValue(V, CurFun.LateResolveValues);
492 else
493 InsertValue(V, CurModule.LateResolveValues);
494 return V;
495}
496
Reid Spencerd0e8d382007-03-19 18:40:50 +0000497/// defineBBVal - This is a definition of a new basic block with the specified
498/// identifier which must be the same as CurFun.NextValNum, if its numeric.
499static BasicBlock *defineBBVal(const ValID &ID) {
Reid Spencerac6bfc52007-02-05 17:04:00 +0000500 assert(inFunctionScope() && "Can't get basic block at global scope!");
Chris Lattnerf20e61f2006-02-15 07:22:58 +0000501
Chris Lattnerf20e61f2006-02-15 07:22:58 +0000502 BasicBlock *BB = 0;
Chris Lattnerf20e61f2006-02-15 07:22:58 +0000503
Reid Spencerd0e8d382007-03-19 18:40:50 +0000504 // First, see if this was forward referenced
Chris Lattnerf20e61f2006-02-15 07:22:58 +0000505
Reid Spencerd0e8d382007-03-19 18:40:50 +0000506 std::map<ValID, BasicBlock*>::iterator BBI = CurFun.BBForwardRefs.find(ID);
507 if (BBI != CurFun.BBForwardRefs.end()) {
508 BB = BBI->second;
Chris Lattnerf20e61f2006-02-15 07:22:58 +0000509 // The forward declaration could have been inserted anywhere in the
510 // function: insert it into the correct place now.
511 CurFun.CurrentFunction->getBasicBlockList().remove(BB);
512 CurFun.CurrentFunction->getBasicBlockList().push_back(BB);
Reid Spencerd0e8d382007-03-19 18:40:50 +0000513
Reid Spencer6fb989c2007-03-20 01:13:36 +0000514 // We're about to erase the entry, save the key so we can clean it up.
515 ValID Tmp = BBI->first;
516
Reid Spencerd0e8d382007-03-19 18:40:50 +0000517 // Erase the forward ref from the map as its no longer "forward"
518 CurFun.BBForwardRefs.erase(ID);
519
Reid Spencer6fb989c2007-03-20 01:13:36 +0000520 // The key has been removed from the map but so we don't want to leave
521 // strdup'd memory around so destroy it too.
522 Tmp.destroy();
523
Reid Spencerd0e8d382007-03-19 18:40:50 +0000524 // If its a numbered definition, bump the number and set the BB value.
525 if (ID.Type == ValID::LocalID) {
526 assert(ID.Num == CurFun.NextValNum && "Invalid new block number");
527 InsertValue(BB);
528 }
529
530 ID.destroy();
531 return BB;
532 }
533
534 // We haven't seen this BB before and its first mention is a definition.
535 // Just create it and return it.
536 std::string Name (ID.Type == ValID::LocalName ? ID.Name : "");
537 BB = new BasicBlock(Name, CurFun.CurrentFunction);
538 if (ID.Type == ValID::LocalID) {
539 assert(ID.Num == CurFun.NextValNum && "Invalid new block number");
540 InsertValue(BB);
Chris Lattnerf20e61f2006-02-15 07:22:58 +0000541 }
Reid Spencerd0e8d382007-03-19 18:40:50 +0000542
543 ID.destroy(); // Free strdup'd memory
544 return BB;
545}
546
547/// getBBVal - get an existing BB value or create a forward reference for it.
548///
549static BasicBlock *getBBVal(const ValID &ID) {
550 assert(inFunctionScope() && "Can't get basic block at global scope!");
551
552 BasicBlock *BB = 0;
553
554 std::map<ValID, BasicBlock*>::iterator BBI = CurFun.BBForwardRefs.find(ID);
555 if (BBI != CurFun.BBForwardRefs.end()) {
556 BB = BBI->second;
557 } if (ID.Type == ValID::LocalName) {
558 std::string Name = ID.Name;
559 Value *N = CurFun.CurrentFunction->getValueSymbolTable().lookup(Name);
560 if (N)
561 if (N->getType()->getTypeID() == Type::LabelTyID)
562 BB = cast<BasicBlock>(N);
563 else
564 GenerateError("Reference to label '" + Name + "' is actually of type '"+
565 N->getType()->getDescription() + "'");
566 } else if (ID.Type == ValID::LocalID) {
567 if (ID.Num < CurFun.NextValNum && ID.Num < CurFun.Values.size()) {
568 if (CurFun.Values[ID.Num]->getType()->getTypeID() == Type::LabelTyID)
569 BB = cast<BasicBlock>(CurFun.Values[ID.Num]);
570 else
571 GenerateError("Reference to label '%" + utostr(ID.Num) +
572 "' is actually of type '"+
573 CurFun.Values[ID.Num]->getType()->getDescription() + "'");
574 }
575 } else {
576 GenerateError("Illegal label reference " + ID.getName());
577 return 0;
578 }
579
580 // If its already been defined, return it now.
581 if (BB) {
582 ID.destroy(); // Free strdup'd memory.
583 return BB;
584 }
585
586 // Otherwise, this block has not been seen before, create it.
587 std::string Name;
588 if (ID.Type == ValID::LocalName)
589 Name = ID.Name;
590 BB = new BasicBlock(Name, CurFun.CurrentFunction);
591
592 // Insert it in the forward refs map.
593 CurFun.BBForwardRefs[ID] = BB;
594
Chris Lattnerf20e61f2006-02-15 07:22:58 +0000595 return BB;
596}
597
598
599//===----------------------------------------------------------------------===//
600// Code to handle forward references in instructions
601//===----------------------------------------------------------------------===//
602//
603// This code handles the late binding needed with statements that reference
604// values not defined yet... for example, a forward branch, or the PHI node for
605// a loop body.
606//
607// This keeps a table (CurFun.LateResolveValues) of all such forward references
608// and back patchs after we are done.
609//
610
611// ResolveDefinitions - If we could not resolve some defs at parsing
612// time (forward branches, phi functions for loops, etc...) resolve the
613// defs now...
614//
615static void
Reid Spencerd0e8d382007-03-19 18:40:50 +0000616ResolveDefinitions(ValueList &LateResolvers, ValueList *FutureLateResolvers) {
Chris Lattnerf20e61f2006-02-15 07:22:58 +0000617 // Loop over LateResolveDefs fixing up stuff that couldn't be resolved
Reid Spencerd0e8d382007-03-19 18:40:50 +0000618 while (!LateResolvers.empty()) {
619 Value *V = LateResolvers.back();
620 LateResolvers.pop_back();
Chris Lattnerf20e61f2006-02-15 07:22:58 +0000621
Reid Spencerd0e8d382007-03-19 18:40:50 +0000622 std::map<Value*, std::pair<ValID, int> >::iterator PHI =
623 CurModule.PlaceHolderInfo.find(V);
624 assert(PHI != CurModule.PlaceHolderInfo.end() && "Placeholder error!");
Chris Lattnerf20e61f2006-02-15 07:22:58 +0000625
Reid Spencerd0e8d382007-03-19 18:40:50 +0000626 ValID &DID = PHI->second.first;
Chris Lattnerf20e61f2006-02-15 07:22:58 +0000627
Reid Spencerd0e8d382007-03-19 18:40:50 +0000628 Value *TheRealValue = getExistingVal(V->getType(), DID);
629 if (TriggerError)
630 return;
631 if (TheRealValue) {
632 V->replaceAllUsesWith(TheRealValue);
633 delete V;
634 CurModule.PlaceHolderInfo.erase(PHI);
635 } else if (FutureLateResolvers) {
636 // Functions have their unresolved items forwarded to the module late
637 // resolver table
638 InsertValue(V, *FutureLateResolvers);
639 } else {
640 if (DID.Type == ValID::LocalName || DID.Type == ValID::GlobalName) {
641 GenerateError("Reference to an invalid definition: '" +DID.getName()+
642 "' of type '" + V->getType()->getDescription() + "'",
643 PHI->second.second);
Reid Spencer309080a2006-09-28 19:28:24 +0000644 return;
Chris Lattnerf20e61f2006-02-15 07:22:58 +0000645 } else {
Reid Spencerd0e8d382007-03-19 18:40:50 +0000646 GenerateError("Reference to an invalid definition: #" +
647 itostr(DID.Num) + " of type '" +
648 V->getType()->getDescription() + "'",
649 PHI->second.second);
650 return;
Chris Lattnerf20e61f2006-02-15 07:22:58 +0000651 }
652 }
653 }
Chris Lattnerf20e61f2006-02-15 07:22:58 +0000654 LateResolvers.clear();
655}
656
657// ResolveTypeTo - A brand new type was just declared. This means that (if
658// name is not null) things referencing Name can be resolved. Otherwise, things
659// refering to the number can be resolved. Do this now.
660//
661static void ResolveTypeTo(char *Name, const Type *ToTy) {
662 ValID D;
Reid Spencer8d6d4b8e2007-01-26 08:05:27 +0000663 if (Name) D = ValID::createLocalName(Name);
664 else D = ValID::createLocalID(CurModule.Types.size());
Chris Lattnerf20e61f2006-02-15 07:22:58 +0000665
Reid Spencer55f1fbe2006-11-28 07:29:44 +0000666 std::map<ValID, PATypeHolder>::iterator I =
Chris Lattnerf20e61f2006-02-15 07:22:58 +0000667 CurModule.LateResolveTypes.find(D);
668 if (I != CurModule.LateResolveTypes.end()) {
Reid Spencer55f1fbe2006-11-28 07:29:44 +0000669 ((DerivedType*)I->second.get())->refineAbstractTypeTo(ToTy);
Chris Lattnerf20e61f2006-02-15 07:22:58 +0000670 CurModule.LateResolveTypes.erase(I);
671 }
672}
673
674// setValueName - Set the specified value to the name given. The name may be
675// null potentially, in which case this is a noop. The string passed in is
676// assumed to be a malloc'd string buffer, and is free'd by this function.
677//
678static void setValueName(Value *V, char *NameStr) {
Reid Spencer8d6d4b8e2007-01-26 08:05:27 +0000679 if (!NameStr) return;
680 std::string Name(NameStr); // Copy string
681 free(NameStr); // Free old string
Chris Lattnerf20e61f2006-02-15 07:22:58 +0000682
Reid Spencer8d6d4b8e2007-01-26 08:05:27 +0000683 if (V->getType() == Type::VoidTy) {
Reid Spencera7bb3e92007-02-05 10:18:06 +0000684 GenerateError("Can't assign name '" + Name+"' to value with void type");
Reid Spencer8d6d4b8e2007-01-26 08:05:27 +0000685 return;
Chris Lattnerf20e61f2006-02-15 07:22:58 +0000686 }
Reid Spencer8d6d4b8e2007-01-26 08:05:27 +0000687
Reid Spencerac6bfc52007-02-05 17:04:00 +0000688 assert(inFunctionScope() && "Must be in function scope!");
Reid Spencer3aaaa0b2007-02-05 20:47:22 +0000689 ValueSymbolTable &ST = CurFun.CurrentFunction->getValueSymbolTable();
690 if (ST.lookup(Name)) {
Reid Spencer8d6d4b8e2007-01-26 08:05:27 +0000691 GenerateError("Redefinition of value '" + Name + "' of type '" +
Reid Spencera7bb3e92007-02-05 10:18:06 +0000692 V->getType()->getDescription() + "'");
Reid Spencer8d6d4b8e2007-01-26 08:05:27 +0000693 return;
694 }
695
696 // Set the name.
697 V->setName(Name);
Chris Lattnerf20e61f2006-02-15 07:22:58 +0000698}
699
700/// ParseGlobalVariable - Handle parsing of a global. If Initializer is null,
701/// this is a declaration, otherwise it is a definition.
702static GlobalVariable *
Anton Korobeynikova0554d92007-01-12 19:20:47 +0000703ParseGlobalVariable(char *NameStr,
704 GlobalValue::LinkageTypes Linkage,
705 GlobalValue::VisibilityTypes Visibility,
Chris Lattnerf20e61f2006-02-15 07:22:58 +0000706 bool isConstantGlobal, const Type *Ty,
Lauro Ramos Venancio749e4662007-04-12 18:32:50 +0000707 Constant *Initializer, bool IsThreadLocal) {
Reid Spencer309080a2006-09-28 19:28:24 +0000708 if (isa<FunctionType>(Ty)) {
Reid Spencera7bb3e92007-02-05 10:18:06 +0000709 GenerateError("Cannot declare global vars of function type");
Reid Spencer309080a2006-09-28 19:28:24 +0000710 return 0;
711 }
Chris Lattnerf20e61f2006-02-15 07:22:58 +0000712
713 const PointerType *PTy = PointerType::get(Ty);
714
715 std::string Name;
716 if (NameStr) {
717 Name = NameStr; // Copy string
718 free(NameStr); // Free old string
719 }
720
721 // See if this global value was forward referenced. If so, recycle the
722 // object.
723 ValID ID;
724 if (!Name.empty()) {
Reid Spencer8d6d4b8e2007-01-26 08:05:27 +0000725 ID = ValID::createGlobalName((char*)Name.c_str());
Chris Lattnerf20e61f2006-02-15 07:22:58 +0000726 } else {
Reid Spencerd0e8d382007-03-19 18:40:50 +0000727 ID = ValID::createGlobalID(CurModule.Values.size());
Chris Lattnerf20e61f2006-02-15 07:22:58 +0000728 }
729
730 if (GlobalValue *FWGV = CurModule.GetForwardRefForGlobal(PTy, ID)) {
731 // Move the global to the end of the list, from whereever it was
732 // previously inserted.
733 GlobalVariable *GV = cast<GlobalVariable>(FWGV);
734 CurModule.CurrentModule->getGlobalList().remove(GV);
735 CurModule.CurrentModule->getGlobalList().push_back(GV);
736 GV->setInitializer(Initializer);
737 GV->setLinkage(Linkage);
Anton Korobeynikova0554d92007-01-12 19:20:47 +0000738 GV->setVisibility(Visibility);
Chris Lattnerf20e61f2006-02-15 07:22:58 +0000739 GV->setConstant(isConstantGlobal);
Lauro Ramos Venancio749e4662007-04-12 18:32:50 +0000740 GV->setThreadLocal(IsThreadLocal);
Chris Lattnerf20e61f2006-02-15 07:22:58 +0000741 InsertValue(GV, CurModule.Values);
742 return GV;
743 }
744
Reid Spencer3aaaa0b2007-02-05 20:47:22 +0000745 // If this global has a name
Chris Lattnerf20e61f2006-02-15 07:22:58 +0000746 if (!Name.empty()) {
Reid Spencer3aaaa0b2007-02-05 20:47:22 +0000747 // if the global we're parsing has an initializer (is a definition) and
748 // has external linkage.
749 if (Initializer && Linkage != GlobalValue::InternalLinkage)
750 // If there is already a global with external linkage with this name
751 if (CurModule.CurrentModule->getGlobalVariable(Name, false)) {
752 // If we allow this GVar to get created, it will be renamed in the
753 // symbol table because it conflicts with an existing GVar. We can't
754 // allow redefinition of GVars whose linking indicates that their name
755 // must stay the same. Issue the error.
756 GenerateError("Redefinition of global variable named '" + Name +
757 "' of type '" + Ty->getDescription() + "'");
758 return 0;
759 }
Chris Lattnerf20e61f2006-02-15 07:22:58 +0000760 }
761
762 // Otherwise there is no existing GV to use, create one now.
763 GlobalVariable *GV =
764 new GlobalVariable(Ty, isConstantGlobal, Linkage, Initializer, Name,
Lauro Ramos Venancio749e4662007-04-12 18:32:50 +0000765 CurModule.CurrentModule, IsThreadLocal);
Anton Korobeynikova0554d92007-01-12 19:20:47 +0000766 GV->setVisibility(Visibility);
Chris Lattnerf20e61f2006-02-15 07:22:58 +0000767 InsertValue(GV, CurModule.Values);
768 return GV;
769}
770
771// setTypeName - Set the specified type to the name given. The name may be
772// null potentially, in which case this is a noop. The string passed in is
773// assumed to be a malloc'd string buffer, and is freed by this function.
774//
775// This function returns true if the type has already been defined, but is
776// allowed to be redefined in the specified context. If the name is a new name
777// for the type plane, it is inserted and false is returned.
778static bool setTypeName(const Type *T, char *NameStr) {
Reid Spencerac6bfc52007-02-05 17:04:00 +0000779 assert(!inFunctionScope() && "Can't give types function-local names!");
Chris Lattnerf20e61f2006-02-15 07:22:58 +0000780 if (NameStr == 0) return false;
781
782 std::string Name(NameStr); // Copy string
783 free(NameStr); // Free old string
784
785 // We don't allow assigning names to void type
Reid Spencer309080a2006-09-28 19:28:24 +0000786 if (T == Type::VoidTy) {
Reid Spencera7bb3e92007-02-05 10:18:06 +0000787 GenerateError("Can't assign name '" + Name + "' to the void type");
Reid Spencer309080a2006-09-28 19:28:24 +0000788 return false;
789 }
Chris Lattnerf20e61f2006-02-15 07:22:58 +0000790
791 // Set the type name, checking for conflicts as we do so.
792 bool AlreadyExists = CurModule.CurrentModule->addTypeName(Name, T);
793
794 if (AlreadyExists) { // Inserting a name that is already defined???
795 const Type *Existing = CurModule.CurrentModule->getTypeByName(Name);
Reid Spencerac6bfc52007-02-05 17:04:00 +0000796 assert(Existing && "Conflict but no matching type?!");
Chris Lattnerf20e61f2006-02-15 07:22:58 +0000797
798 // There is only one case where this is allowed: when we are refining an
799 // opaque type. In this case, Existing will be an opaque type.
800 if (const OpaqueType *OpTy = dyn_cast<OpaqueType>(Existing)) {
801 // We ARE replacing an opaque type!
802 const_cast<OpaqueType*>(OpTy)->refineAbstractTypeTo(T);
803 return true;
804 }
805
806 // Otherwise, this is an attempt to redefine a type. That's okay if
807 // the redefinition is identical to the original. This will be so if
808 // Existing and T point to the same Type object. In this one case we
809 // allow the equivalent redefinition.
810 if (Existing == T) return true; // Yes, it's equal.
811
812 // Any other kind of (non-equivalent) redefinition is an error.
Reid Spencer33259082007-01-05 21:51:07 +0000813 GenerateError("Redefinition of type named '" + Name + "' of type '" +
Reid Spencera7bb3e92007-02-05 10:18:06 +0000814 T->getDescription() + "'");
Chris Lattnerf20e61f2006-02-15 07:22:58 +0000815 }
816
817 return false;
818}
819
820//===----------------------------------------------------------------------===//
821// Code for handling upreferences in type names...
822//
823
824// TypeContains - Returns true if Ty directly contains E in it.
825//
826static bool TypeContains(const Type *Ty, const Type *E) {
827 return std::find(Ty->subtype_begin(), Ty->subtype_end(),
828 E) != Ty->subtype_end();
829}
830
831namespace {
832 struct UpRefRecord {
833 // NestingLevel - The number of nesting levels that need to be popped before
834 // this type is resolved.
835 unsigned NestingLevel;
836
837 // LastContainedTy - This is the type at the current binding level for the
838 // type. Every time we reduce the nesting level, this gets updated.
839 const Type *LastContainedTy;
840
841 // UpRefTy - This is the actual opaque type that the upreference is
842 // represented with.
843 OpaqueType *UpRefTy;
844
845 UpRefRecord(unsigned NL, OpaqueType *URTy)
846 : NestingLevel(NL), LastContainedTy(URTy), UpRefTy(URTy) {}
847 };
848}
849
850// UpRefs - A list of the outstanding upreferences that need to be resolved.
851static std::vector<UpRefRecord> UpRefs;
852
853/// HandleUpRefs - Every time we finish a new layer of types, this function is
854/// called. It loops through the UpRefs vector, which is a list of the
855/// currently active types. For each type, if the up reference is contained in
856/// the newly completed type, we decrement the level count. When the level
857/// count reaches zero, the upreferenced type is the type that is passed in:
858/// thus we can complete the cycle.
859///
860static PATypeHolder HandleUpRefs(const Type *ty) {
Chris Lattner680aab62006-08-18 17:34:45 +0000861 // If Ty isn't abstract, or if there are no up-references in it, then there is
862 // nothing to resolve here.
863 if (!ty->isAbstract() || UpRefs.empty()) return ty;
864
Chris Lattnerf20e61f2006-02-15 07:22:58 +0000865 PATypeHolder Ty(ty);
866 UR_OUT("Type '" << Ty->getDescription() <<
867 "' newly formed. Resolving upreferences.\n" <<
868 UpRefs.size() << " upreferences active!\n");
869
870 // If we find any resolvable upreferences (i.e., those whose NestingLevel goes
871 // to zero), we resolve them all together before we resolve them to Ty. At
872 // the end of the loop, if there is anything to resolve to Ty, it will be in
873 // this variable.
874 OpaqueType *TypeToResolve = 0;
875
876 for (unsigned i = 0; i != UpRefs.size(); ++i) {
877 UR_OUT(" UR#" << i << " - TypeContains(" << Ty->getDescription() << ", "
878 << UpRefs[i].second->getDescription() << ") = "
879 << (TypeContains(Ty, UpRefs[i].second) ? "true" : "false") << "\n");
880 if (TypeContains(Ty, UpRefs[i].LastContainedTy)) {
881 // Decrement level of upreference
882 unsigned Level = --UpRefs[i].NestingLevel;
883 UpRefs[i].LastContainedTy = Ty;
884 UR_OUT(" Uplevel Ref Level = " << Level << "\n");
885 if (Level == 0) { // Upreference should be resolved!
886 if (!TypeToResolve) {
887 TypeToResolve = UpRefs[i].UpRefTy;
888 } else {
889 UR_OUT(" * Resolving upreference for "
890 << UpRefs[i].second->getDescription() << "\n";
891 std::string OldName = UpRefs[i].UpRefTy->getDescription());
892 UpRefs[i].UpRefTy->refineAbstractTypeTo(TypeToResolve);
893 UR_OUT(" * Type '" << OldName << "' refined upreference to: "
894 << (const void*)Ty << ", " << Ty->getDescription() << "\n");
895 }
896 UpRefs.erase(UpRefs.begin()+i); // Remove from upreference list...
897 --i; // Do not skip the next element...
898 }
899 }
900 }
901
902 if (TypeToResolve) {
903 UR_OUT(" * Resolving upreference for "
904 << UpRefs[i].second->getDescription() << "\n";
905 std::string OldName = TypeToResolve->getDescription());
906 TypeToResolve->refineAbstractTypeTo(Ty);
907 }
908
909 return Ty;
910}
911
Chris Lattnerf20e61f2006-02-15 07:22:58 +0000912//===----------------------------------------------------------------------===//
913// RunVMAsmParser - Define an interface to this parser
914//===----------------------------------------------------------------------===//
915//
Reid Spencer42f0cbe2006-12-31 05:40:51 +0000916static Module* RunParser(Module * M);
917
Chris Lattnerf20e61f2006-02-15 07:22:58 +0000918Module *llvm::RunVMAsmParser(const std::string &Filename, FILE *F) {
919 set_scan_file(F);
920
921 CurFilename = Filename;
922 return RunParser(new Module(CurFilename));
923}
924
925Module *llvm::RunVMAsmParser(const char * AsmString, Module * M) {
926 set_scan_string(AsmString);
927
928 CurFilename = "from_memory";
929 if (M == NULL) {
930 return RunParser(new Module (CurFilename));
931 } else {
932 return RunParser(M);
933 }
934}
935
936%}
937
938%union {
939 llvm::Module *ModuleVal;
940 llvm::Function *FunctionVal;
Chris Lattnerf20e61f2006-02-15 07:22:58 +0000941 llvm::BasicBlock *BasicBlockVal;
942 llvm::TerminatorInst *TermInstVal;
943 llvm::Instruction *InstVal;
Reid Spencere2c32da2006-12-03 05:46:11 +0000944 llvm::Constant *ConstVal;
Chris Lattnerf20e61f2006-02-15 07:22:58 +0000945
Reid Spencere2c32da2006-12-03 05:46:11 +0000946 const llvm::Type *PrimType;
Reid Spencer42f0cbe2006-12-31 05:40:51 +0000947 std::list<llvm::PATypeHolder> *TypeList;
Reid Spencere2c32da2006-12-03 05:46:11 +0000948 llvm::PATypeHolder *TypeVal;
949 llvm::Value *ValueVal;
Reid Spencere2c32da2006-12-03 05:46:11 +0000950 std::vector<llvm::Value*> *ValueList;
Reid Spencer42f0cbe2006-12-31 05:40:51 +0000951 llvm::ArgListType *ArgList;
952 llvm::TypeWithAttrs TypeWithAttrs;
953 llvm::TypeWithAttrsList *TypeWithAttrsList;
954 llvm::ValueRefList *ValueRefList;
955
Chris Lattnerf20e61f2006-02-15 07:22:58 +0000956 // Represent the RHS of PHI node
Reid Spencere2c32da2006-12-03 05:46:11 +0000957 std::list<std::pair<llvm::Value*,
958 llvm::BasicBlock*> > *PHIList;
Chris Lattnerf20e61f2006-02-15 07:22:58 +0000959 std::vector<std::pair<llvm::Constant*, llvm::BasicBlock*> > *JumpTable;
Reid Spencere2c32da2006-12-03 05:46:11 +0000960 std::vector<llvm::Constant*> *ConstVector;
Chris Lattnerf20e61f2006-02-15 07:22:58 +0000961
962 llvm::GlobalValue::LinkageTypes Linkage;
Anton Korobeynikova0554d92007-01-12 19:20:47 +0000963 llvm::GlobalValue::VisibilityTypes Visibility;
Reid Spencerf51a7052007-04-09 06:16:21 +0000964 uint16_t ParamAttrs;
Reid Spencerc7a686b2007-02-28 02:24:54 +0000965 llvm::APInt *APIntVal;
Chris Lattnerf20e61f2006-02-15 07:22:58 +0000966 int64_t SInt64Val;
967 uint64_t UInt64Val;
968 int SIntVal;
969 unsigned UIntVal;
970 double FPVal;
971 bool BoolVal;
972
973 char *StrVal; // This memory is strdup'd!
Reid Spencer7e80b0b2006-10-26 06:15:43 +0000974 llvm::ValID ValIDVal; // strdup'd memory maybe!
Chris Lattnerf20e61f2006-02-15 07:22:58 +0000975
Reid Spencere2c32da2006-12-03 05:46:11 +0000976 llvm::Instruction::BinaryOps BinaryOpVal;
977 llvm::Instruction::TermOps TermOpVal;
978 llvm::Instruction::MemoryOps MemOpVal;
979 llvm::Instruction::CastOps CastOpVal;
980 llvm::Instruction::OtherOps OtherOpVal;
Reid Spencere2c32da2006-12-03 05:46:11 +0000981 llvm::ICmpInst::Predicate IPredicate;
982 llvm::FCmpInst::Predicate FPredicate;
Chris Lattnerf20e61f2006-02-15 07:22:58 +0000983}
984
Reid Spencer42f0cbe2006-12-31 05:40:51 +0000985%type <ModuleVal> Module
Chris Lattnerf20e61f2006-02-15 07:22:58 +0000986%type <FunctionVal> Function FunctionProto FunctionHeader BasicBlockList
987%type <BasicBlockVal> BasicBlock InstructionList
988%type <TermInstVal> BBTerminatorInst
989%type <InstVal> Inst InstVal MemoryInst
990%type <ConstVal> ConstVal ConstExpr
991%type <ConstVector> ConstVector
992%type <ArgList> ArgList ArgListH
Chris Lattnerf20e61f2006-02-15 07:22:58 +0000993%type <PHIList> PHIList
Reid Spencer42f0cbe2006-12-31 05:40:51 +0000994%type <ValueRefList> ValueRefList // For call param lists & GEP indices
995%type <ValueList> IndexList // For GEP indices
996%type <TypeList> TypeListI
997%type <TypeWithAttrsList> ArgTypeList ArgTypeListI
Reid Spencerbf48e3c2007-01-05 17:07:23 +0000998%type <TypeWithAttrs> ArgType
Chris Lattnerf20e61f2006-02-15 07:22:58 +0000999%type <JumpTable> JumpTable
1000%type <BoolVal> GlobalType // GLOBAL or CONSTANT?
Lauro Ramos Venancio749e4662007-04-12 18:32:50 +00001001%type <BoolVal> ThreadLocal // 'thread_local' or not
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001002%type <BoolVal> OptVolatile // 'volatile' or not
1003%type <BoolVal> OptTailCall // TAIL CALL or plain CALL.
1004%type <BoolVal> OptSideEffect // 'sideeffect' or not.
Reid Spencer42f0cbe2006-12-31 05:40:51 +00001005%type <Linkage> GVInternalLinkage GVExternalLinkage
1006%type <Linkage> FunctionDefineLinkage FunctionDeclareLinkage
Anton Korobeynikova0554d92007-01-12 19:20:47 +00001007%type <Visibility> GVVisibilityStyle
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001008
1009// ValueRef - Unresolved reference to a definition or BB
1010%type <ValIDVal> ValueRef ConstValueRef SymbolicValueRef
1011%type <ValueVal> ResolvedVal // <type> <valref> pair
1012// Tokens and types for handling constant integer values
1013//
1014// ESINT64VAL - A negative number within long long range
1015%token <SInt64Val> ESINT64VAL
1016
1017// EUINT64VAL - A positive number within uns. long long range
1018%token <UInt64Val> EUINT64VAL
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001019
Reid Spencerc7a686b2007-02-28 02:24:54 +00001020// ESAPINTVAL - A negative number with arbitrary precision
1021%token <APIntVal> ESAPINTVAL
1022
1023// EUAPINTVAL - A positive number with arbitrary precision
1024%token <APIntVal> EUAPINTVAL
1025
Reid Spencer8d6d4b8e2007-01-26 08:05:27 +00001026%token <UIntVal> LOCALVAL_ID GLOBALVAL_ID // %123 @123
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001027%token <FPVal> FPVAL // Float or Double constant
1028
1029// Built in types...
Reid Spencerbf48e3c2007-01-05 17:07:23 +00001030%type <TypeVal> Types ResultTypes
Reid Spencer42f0cbe2006-12-31 05:40:51 +00001031%type <PrimType> IntType FPType PrimType // Classifications
Reid Spencer58a8db02007-01-13 05:00:46 +00001032%token <PrimType> VOID INTTYPE
Reid Spencerdc0a3a22006-12-29 20:35:03 +00001033%token <PrimType> FLOAT DOUBLE LABEL
1034%token TYPE
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001035
Reid Spencer8d6d4b8e2007-01-26 08:05:27 +00001036%token<StrVal> LOCALVAR GLOBALVAR LABELSTR STRINGCONSTANT ATSTRINGCONSTANT
1037%type <StrVal> LocalName OptLocalName OptLocalAssign
1038%type <StrVal> GlobalName OptGlobalAssign
1039%type <UIntVal> OptAlign OptCAlign
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001040%type <StrVal> OptSection SectionString
1041
Reid Spencer7ae03fc2007-04-09 01:56:05 +00001042%token ZEROINITIALIZER TRUETOK FALSETOK BEGINTOK ENDTOK
Lauro Ramos Venancio749e4662007-04-12 18:32:50 +00001043%token DECLARE DEFINE GLOBAL CONSTANT SECTION VOLATILE THREAD_LOCAL
Reid Spencer42f0cbe2006-12-31 05:40:51 +00001044%token TO DOTDOTDOT NULL_TOK UNDEF INTERNAL LINKONCE WEAK APPENDING
Anton Korobeynikovd61d39e2006-09-14 18:23:27 +00001045%token DLLIMPORT DLLEXPORT EXTERN_WEAK
Reid Spencer8d6d4b8e2007-01-26 08:05:27 +00001046%token OPAQUE EXTERNAL TARGET TRIPLE ALIGN
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001047%token DEPLIBS CALL TAIL ASM_TOK MODULE SIDEEFFECT
Anton Korobeynikov037c8672007-01-28 13:31:35 +00001048%token CC_TOK CCC_TOK FASTCC_TOK COLDCC_TOK X86_STDCALLCC_TOK X86_FASTCALLCC_TOK
Chris Lattner7d1d0342006-10-22 06:08:13 +00001049%token DATALAYOUT
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001050%type <UIntVal> OptCallingConv
Reid Spencerbf48e3c2007-01-05 17:07:23 +00001051%type <ParamAttrs> OptParamAttrs ParamAttr
1052%type <ParamAttrs> OptFuncAttrs FuncAttr
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001053
1054// Basic Block Terminating Operators
1055%token <TermOpVal> RET BR SWITCH INVOKE UNWIND UNREACHABLE
1056
1057// Binary Operators
Reid Spencer266e42b2006-12-23 06:05:41 +00001058%type <BinaryOpVal> ArithmeticOps LogicalOps // Binops Subcatagories
Reid Spencerde46e482006-11-02 20:25:50 +00001059%token <BinaryOpVal> ADD SUB MUL UDIV SDIV FDIV UREM SREM FREM AND OR XOR
Reid Spencer2341c222007-02-02 02:16:23 +00001060%token <BinaryOpVal> SHL LSHR ASHR
1061
Reid Spencere2c32da2006-12-03 05:46:11 +00001062%token <OtherOpVal> ICMP FCMP
Reid Spencere2c32da2006-12-03 05:46:11 +00001063%type <IPredicate> IPredicates
Reid Spencere2c32da2006-12-03 05:46:11 +00001064%type <FPredicate> FPredicates
Reid Spencer1960ef32006-12-03 06:59:29 +00001065%token EQ NE SLT SGT SLE SGE ULT UGT ULE UGE
1066%token OEQ ONE OLT OGT OLE OGE ORD UNO UEQ UNE
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001067
1068// Memory Instructions
1069%token <MemOpVal> MALLOC ALLOCA FREE LOAD STORE GETELEMENTPTR
1070
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001071// Cast Operators
1072%type <CastOpVal> CastOps
1073%token <CastOpVal> TRUNC ZEXT SEXT FPTRUNC FPEXT BITCAST
1074%token <CastOpVal> UITOFP SITOFP FPTOUI FPTOSI INTTOPTR PTRTOINT
1075
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001076// Other Operators
Reid Spencer2341c222007-02-02 02:16:23 +00001077%token <OtherOpVal> PHI_TOK SELECT VAARG
Chris Lattner9ff96a72006-04-08 01:18:56 +00001078%token <OtherOpVal> EXTRACTELEMENT INSERTELEMENT SHUFFLEVECTOR
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001079
Reid Spencerbf48e3c2007-01-05 17:07:23 +00001080// Function Attributes
Reid Spencer32096782007-03-22 02:14:08 +00001081%token NORETURN INREG SRET NOUNWIND
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001082
Anton Korobeynikova0554d92007-01-12 19:20:47 +00001083// Visibility Styles
1084%token DEFAULT HIDDEN
1085
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001086%start Module
1087%%
1088
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001089
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001090// Operations that are notably excluded from this list include:
1091// RET, BR, & SWITCH because they end basic blocks and are treated specially.
1092//
Reid Spencerde46e482006-11-02 20:25:50 +00001093ArithmeticOps: ADD | SUB | MUL | UDIV | SDIV | FDIV | UREM | SREM | FREM;
Reid Spencer2341c222007-02-02 02:16:23 +00001094LogicalOps : SHL | LSHR | ASHR | AND | OR | XOR;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001095CastOps : TRUNC | ZEXT | SEXT | FPTRUNC | FPEXT | BITCAST |
1096 UITOFP | SITOFP | FPTOUI | FPTOSI | INTTOPTR | PTRTOINT;
Reid Spencer2341c222007-02-02 02:16:23 +00001097
Reid Spencer1960ef32006-12-03 06:59:29 +00001098IPredicates
Reid Spencerd2e0c342006-12-04 05:24:24 +00001099 : EQ { $$ = ICmpInst::ICMP_EQ; } | NE { $$ = ICmpInst::ICMP_NE; }
Reid Spencer1960ef32006-12-03 06:59:29 +00001100 | SLT { $$ = ICmpInst::ICMP_SLT; } | SGT { $$ = ICmpInst::ICMP_SGT; }
1101 | SLE { $$ = ICmpInst::ICMP_SLE; } | SGE { $$ = ICmpInst::ICMP_SGE; }
1102 | ULT { $$ = ICmpInst::ICMP_ULT; } | UGT { $$ = ICmpInst::ICMP_UGT; }
1103 | ULE { $$ = ICmpInst::ICMP_ULE; } | UGE { $$ = ICmpInst::ICMP_UGE; }
1104 ;
1105
1106FPredicates
1107 : OEQ { $$ = FCmpInst::FCMP_OEQ; } | ONE { $$ = FCmpInst::FCMP_ONE; }
1108 | OLT { $$ = FCmpInst::FCMP_OLT; } | OGT { $$ = FCmpInst::FCMP_OGT; }
1109 | OLE { $$ = FCmpInst::FCMP_OLE; } | OGE { $$ = FCmpInst::FCMP_OGE; }
1110 | ORD { $$ = FCmpInst::FCMP_ORD; } | UNO { $$ = FCmpInst::FCMP_UNO; }
1111 | UEQ { $$ = FCmpInst::FCMP_UEQ; } | UNE { $$ = FCmpInst::FCMP_UNE; }
1112 | ULT { $$ = FCmpInst::FCMP_ULT; } | UGT { $$ = FCmpInst::FCMP_UGT; }
1113 | ULE { $$ = FCmpInst::FCMP_ULE; } | UGE { $$ = FCmpInst::FCMP_UGE; }
1114 | TRUETOK { $$ = FCmpInst::FCMP_TRUE; }
1115 | FALSETOK { $$ = FCmpInst::FCMP_FALSE; }
1116 ;
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001117
1118// These are some types that allow classification if we only want a particular
1119// thing... for example, only a signed, unsigned, or integral type.
Reid Spencer7a9c62b2007-01-12 07:05:14 +00001120IntType : INTTYPE;
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001121FPType : FLOAT | DOUBLE;
1122
Reid Spencer8d6d4b8e2007-01-26 08:05:27 +00001123LocalName : LOCALVAR | STRINGCONSTANT;
1124OptLocalName : LocalName | /*empty*/ { $$ = 0; };
1125
1126/// OptLocalAssign - Value producing statements have an optional assignment
1127/// component.
1128OptLocalAssign : LocalName '=' {
1129 $$ = $1;
1130 CHECK_FOR_ERROR
1131 }
1132 | /*empty*/ {
1133 $$ = 0;
1134 CHECK_FOR_ERROR
1135 };
1136
1137GlobalName : GLOBALVAR | ATSTRINGCONSTANT;
1138
1139OptGlobalAssign : GlobalName '=' {
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001140 $$ = $1;
Reid Spencer713eedc2006-08-18 08:43:06 +00001141 CHECK_FOR_ERROR
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001142 }
1143 | /*empty*/ {
1144 $$ = 0;
Reid Spencer713eedc2006-08-18 08:43:06 +00001145 CHECK_FOR_ERROR
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001146 };
1147
Reid Spencerdc0a3a22006-12-29 20:35:03 +00001148GVInternalLinkage
1149 : INTERNAL { $$ = GlobalValue::InternalLinkage; }
1150 | WEAK { $$ = GlobalValue::WeakLinkage; }
1151 | LINKONCE { $$ = GlobalValue::LinkOnceLinkage; }
1152 | APPENDING { $$ = GlobalValue::AppendingLinkage; }
1153 | DLLEXPORT { $$ = GlobalValue::DLLExportLinkage; }
1154 ;
1155
1156GVExternalLinkage
1157 : DLLIMPORT { $$ = GlobalValue::DLLImportLinkage; }
1158 | EXTERN_WEAK { $$ = GlobalValue::ExternalWeakLinkage; }
1159 | EXTERNAL { $$ = GlobalValue::ExternalLinkage; }
1160 ;
1161
Anton Korobeynikova0554d92007-01-12 19:20:47 +00001162GVVisibilityStyle
1163 : /*empty*/ { $$ = GlobalValue::DefaultVisibility; }
1164 | HIDDEN { $$ = GlobalValue::HiddenVisibility; }
1165 ;
1166
Reid Spencer42f0cbe2006-12-31 05:40:51 +00001167FunctionDeclareLinkage
1168 : /*empty*/ { $$ = GlobalValue::ExternalLinkage; }
1169 | DLLIMPORT { $$ = GlobalValue::DLLImportLinkage; }
1170 | EXTERN_WEAK { $$ = GlobalValue::ExternalWeakLinkage; }
Reid Spencerdc0a3a22006-12-29 20:35:03 +00001171 ;
1172
Reid Spencer42f0cbe2006-12-31 05:40:51 +00001173FunctionDefineLinkage
1174 : /*empty*/ { $$ = GlobalValue::ExternalLinkage; }
1175 | INTERNAL { $$ = GlobalValue::InternalLinkage; }
Reid Spencerdc0a3a22006-12-29 20:35:03 +00001176 | LINKONCE { $$ = GlobalValue::LinkOnceLinkage; }
1177 | WEAK { $$ = GlobalValue::WeakLinkage; }
1178 | DLLEXPORT { $$ = GlobalValue::DLLExportLinkage; }
Reid Spencerdc0a3a22006-12-29 20:35:03 +00001179 ;
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001180
Anton Korobeynikov6f7072c2006-09-17 20:25:45 +00001181OptCallingConv : /*empty*/ { $$ = CallingConv::C; } |
1182 CCC_TOK { $$ = CallingConv::C; } |
Anton Korobeynikov6f7072c2006-09-17 20:25:45 +00001183 FASTCC_TOK { $$ = CallingConv::Fast; } |
1184 COLDCC_TOK { $$ = CallingConv::Cold; } |
1185 X86_STDCALLCC_TOK { $$ = CallingConv::X86_StdCall; } |
1186 X86_FASTCALLCC_TOK { $$ = CallingConv::X86_FastCall; } |
1187 CC_TOK EUINT64VAL {
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001188 if ((unsigned)$2 != $2)
Reid Spencera7bb3e92007-02-05 10:18:06 +00001189 GEN_ERROR("Calling conv too large");
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001190 $$ = $2;
Reid Spencer713eedc2006-08-18 08:43:06 +00001191 CHECK_FOR_ERROR
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001192 };
1193
Reid Spencera472f662007-04-11 02:44:20 +00001194ParamAttr : ZEXT { $$ = ParamAttr::ZExt; }
1195 | SEXT { $$ = ParamAttr::SExt; }
1196 | INREG { $$ = ParamAttr::InReg; }
1197 | SRET { $$ = ParamAttr::StructRet; }
Reid Spencer42f0cbe2006-12-31 05:40:51 +00001198 ;
1199
Reid Spencera472f662007-04-11 02:44:20 +00001200OptParamAttrs : /* empty */ { $$ = ParamAttr::None; }
Reid Spencerbf48e3c2007-01-05 17:07:23 +00001201 | OptParamAttrs ParamAttr {
Reid Spencerf51a7052007-04-09 06:16:21 +00001202 $$ = $1 | $2;
Reid Spencer42f0cbe2006-12-31 05:40:51 +00001203 }
1204 ;
1205
Reid Spencera472f662007-04-11 02:44:20 +00001206FuncAttr : NORETURN { $$ = ParamAttr::NoReturn; }
1207 | NOUNWIND { $$ = ParamAttr::NoUnwind; }
Reid Spencerbf48e3c2007-01-05 17:07:23 +00001208 | ParamAttr
1209 ;
1210
Reid Spencera472f662007-04-11 02:44:20 +00001211OptFuncAttrs : /* empty */ { $$ = ParamAttr::None; }
Reid Spencerbf48e3c2007-01-05 17:07:23 +00001212 | OptFuncAttrs FuncAttr {
Reid Spencerf51a7052007-04-09 06:16:21 +00001213 $$ = $1 | $2;
Reid Spencerbf48e3c2007-01-05 17:07:23 +00001214 }
Reid Spencer42f0cbe2006-12-31 05:40:51 +00001215 ;
1216
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001217// OptAlign/OptCAlign - An optional alignment, and an optional alignment with
1218// a comma before it.
1219OptAlign : /*empty*/ { $$ = 0; } |
1220 ALIGN EUINT64VAL {
1221 $$ = $2;
1222 if ($$ != 0 && !isPowerOf2_32($$))
Reid Spencera7bb3e92007-02-05 10:18:06 +00001223 GEN_ERROR("Alignment must be a power of two");
Reid Spencer713eedc2006-08-18 08:43:06 +00001224 CHECK_FOR_ERROR
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001225};
1226OptCAlign : /*empty*/ { $$ = 0; } |
1227 ',' ALIGN EUINT64VAL {
1228 $$ = $3;
1229 if ($$ != 0 && !isPowerOf2_32($$))
Reid Spencera7bb3e92007-02-05 10:18:06 +00001230 GEN_ERROR("Alignment must be a power of two");
Reid Spencer713eedc2006-08-18 08:43:06 +00001231 CHECK_FOR_ERROR
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001232};
1233
1234
1235SectionString : SECTION STRINGCONSTANT {
1236 for (unsigned i = 0, e = strlen($2); i != e; ++i)
1237 if ($2[i] == '"' || $2[i] == '\\')
Reid Spencera7bb3e92007-02-05 10:18:06 +00001238 GEN_ERROR("Invalid character in section name");
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001239 $$ = $2;
Reid Spencer713eedc2006-08-18 08:43:06 +00001240 CHECK_FOR_ERROR
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001241};
1242
1243OptSection : /*empty*/ { $$ = 0; } |
1244 SectionString { $$ = $1; };
1245
1246// GlobalVarAttributes - Used to pass the attributes string on a global. CurGV
1247// is set to be the global we are processing.
1248//
1249GlobalVarAttributes : /* empty */ {} |
1250 ',' GlobalVarAttribute GlobalVarAttributes {};
1251GlobalVarAttribute : SectionString {
1252 CurGV->setSection($1);
1253 free($1);
Reid Spencer713eedc2006-08-18 08:43:06 +00001254 CHECK_FOR_ERROR
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001255 }
1256 | ALIGN EUINT64VAL {
1257 if ($2 != 0 && !isPowerOf2_32($2))
Reid Spencera7bb3e92007-02-05 10:18:06 +00001258 GEN_ERROR("Alignment must be a power of two");
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001259 CurGV->setAlignment($2);
Reid Spencer713eedc2006-08-18 08:43:06 +00001260 CHECK_FOR_ERROR
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001261 };
1262
1263//===----------------------------------------------------------------------===//
1264// Types includes all predefined types... except void, because it can only be
Reid Spencer42f0cbe2006-12-31 05:40:51 +00001265// used in specific contexts (function returning void for example).
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001266
1267// Derived types are added later...
1268//
Reid Spencer58a8db02007-01-13 05:00:46 +00001269PrimType : INTTYPE | FLOAT | DOUBLE | LABEL ;
Reid Spencer42f0cbe2006-12-31 05:40:51 +00001270
1271Types
1272 : OPAQUE {
Reid Spencere2c32da2006-12-03 05:46:11 +00001273 $$ = new PATypeHolder(OpaqueType::get());
Reid Spencer713eedc2006-08-18 08:43:06 +00001274 CHECK_FOR_ERROR
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001275 }
1276 | PrimType {
Reid Spencere2c32da2006-12-03 05:46:11 +00001277 $$ = new PATypeHolder($1);
Reid Spencer713eedc2006-08-18 08:43:06 +00001278 CHECK_FOR_ERROR
Reid Spencer42f0cbe2006-12-31 05:40:51 +00001279 }
1280 | Types '*' { // Pointer type?
1281 if (*$1 == Type::LabelTy)
1282 GEN_ERROR("Cannot form a pointer to a basic block");
1283 $$ = new PATypeHolder(HandleUpRefs(PointerType::get(*$1)));
1284 delete $1;
1285 CHECK_FOR_ERROR
1286 }
1287 | SymbolicValueRef { // Named types are also simple types...
1288 const Type* tmp = getTypeVal($1);
1289 CHECK_FOR_ERROR
1290 $$ = new PATypeHolder(tmp);
1291 }
1292 | '\\' EUINT64VAL { // Type UpReference
Reid Spencera7bb3e92007-02-05 10:18:06 +00001293 if ($2 > (uint64_t)~0U) GEN_ERROR("Value out of range");
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001294 OpaqueType *OT = OpaqueType::get(); // Use temporary placeholder
1295 UpRefs.push_back(UpRefRecord((unsigned)$2, OT)); // Add to vector...
Reid Spencere2c32da2006-12-03 05:46:11 +00001296 $$ = new PATypeHolder(OT);
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001297 UR_OUT("New Upreference!\n");
Reid Spencer713eedc2006-08-18 08:43:06 +00001298 CHECK_FOR_ERROR
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001299 }
Reid Spencerbf48e3c2007-01-05 17:07:23 +00001300 | Types '(' ArgTypeListI ')' OptFuncAttrs {
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001301 std::vector<const Type*> Params;
Reid Spencerf51a7052007-04-09 06:16:21 +00001302 ParamAttrsList Attrs;
Reid Spencera472f662007-04-11 02:44:20 +00001303 if ($5 != ParamAttr::None)
Reid Spencerf51a7052007-04-09 06:16:21 +00001304 Attrs.addAttributes(0, $5);
1305 unsigned index = 1;
1306 TypeWithAttrsList::iterator I = $3->begin(), E = $3->end();
1307 for (; I != E; ++I, ++index) {
Reid Spencer6fb989c2007-03-20 01:13:36 +00001308 const Type *Ty = I->Ty->get();
Reid Spencer6fb989c2007-03-20 01:13:36 +00001309 Params.push_back(Ty);
1310 if (Ty != Type::VoidTy)
Reid Spencera472f662007-04-11 02:44:20 +00001311 if (I->Attrs != ParamAttr::None)
Reid Spencerf51a7052007-04-09 06:16:21 +00001312 Attrs.addAttributes(index, I->Attrs);
Reid Spencer42f0cbe2006-12-31 05:40:51 +00001313 }
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001314 bool isVarArg = Params.size() && Params.back() == Type::VoidTy;
1315 if (isVarArg) Params.pop_back();
1316
Reid Spencerf51a7052007-04-09 06:16:21 +00001317 ParamAttrsList *ActualAttrs = 0;
1318 if (!Attrs.empty())
1319 ActualAttrs = new ParamAttrsList(Attrs);
1320 FunctionType *FT = FunctionType::get(*$1, Params, isVarArg, ActualAttrs);
Anton Korobeynikova0554d92007-01-12 19:20:47 +00001321 delete $3; // Delete the argument list
Reid Spencer42f0cbe2006-12-31 05:40:51 +00001322 delete $1; // Delete the return type handle
1323 $$ = new PATypeHolder(HandleUpRefs(FT));
Reid Spencer713eedc2006-08-18 08:43:06 +00001324 CHECK_FOR_ERROR
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001325 }
Reid Spencerbf48e3c2007-01-05 17:07:23 +00001326 | VOID '(' ArgTypeListI ')' OptFuncAttrs {
Reid Spencer42f0cbe2006-12-31 05:40:51 +00001327 std::vector<const Type*> Params;
Reid Spencerf51a7052007-04-09 06:16:21 +00001328 ParamAttrsList Attrs;
Reid Spencera472f662007-04-11 02:44:20 +00001329 if ($5 != ParamAttr::None)
Reid Spencerf51a7052007-04-09 06:16:21 +00001330 Attrs.addAttributes(0, $5);
1331 TypeWithAttrsList::iterator I = $3->begin(), E = $3->end();
1332 unsigned index = 1;
1333 for ( ; I != E; ++I, ++index) {
Reid Spencer6fb989c2007-03-20 01:13:36 +00001334 const Type* Ty = I->Ty->get();
Reid Spencer6fb989c2007-03-20 01:13:36 +00001335 Params.push_back(Ty);
1336 if (Ty != Type::VoidTy)
Reid Spencera472f662007-04-11 02:44:20 +00001337 if (I->Attrs != ParamAttr::None)
Reid Spencerf51a7052007-04-09 06:16:21 +00001338 Attrs.addAttributes(index, I->Attrs);
Reid Spencer42f0cbe2006-12-31 05:40:51 +00001339 }
1340 bool isVarArg = Params.size() && Params.back() == Type::VoidTy;
1341 if (isVarArg) Params.pop_back();
1342
Reid Spencerf51a7052007-04-09 06:16:21 +00001343 ParamAttrsList *ActualAttrs = 0;
1344 if (!Attrs.empty())
1345 ActualAttrs = new ParamAttrsList(Attrs);
1346
1347 FunctionType *FT = FunctionType::get($1, Params, isVarArg, ActualAttrs);
Reid Spencerbf48e3c2007-01-05 17:07:23 +00001348 delete $3; // Delete the argument list
Reid Spencer42f0cbe2006-12-31 05:40:51 +00001349 $$ = new PATypeHolder(HandleUpRefs(FT));
1350 CHECK_FOR_ERROR
1351 }
1352
1353 | '[' EUINT64VAL 'x' Types ']' { // Sized array type?
Reid Spencere2c32da2006-12-03 05:46:11 +00001354 $$ = new PATypeHolder(HandleUpRefs(ArrayType::get(*$4, (unsigned)$2)));
1355 delete $4;
Reid Spencer713eedc2006-08-18 08:43:06 +00001356 CHECK_FOR_ERROR
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001357 }
Chris Lattner4669b0b2007-02-19 07:44:24 +00001358 | '<' EUINT64VAL 'x' Types '>' { // Vector type?
Reid Spencere2c32da2006-12-03 05:46:11 +00001359 const llvm::Type* ElemTy = $4->get();
1360 if ((unsigned)$2 != $2)
1361 GEN_ERROR("Unsigned result not equal to signed result");
Chris Lattner03c49532007-01-15 02:27:26 +00001362 if (!ElemTy->isFloatingPoint() && !ElemTy->isInteger())
Reid Spencerd84d35b2007-02-15 02:26:10 +00001363 GEN_ERROR("Element type of a VectorType must be primitive");
Reid Spencere2c32da2006-12-03 05:46:11 +00001364 if (!isPowerOf2_32($2))
Reid Spencera7bb3e92007-02-05 10:18:06 +00001365 GEN_ERROR("Vector length should be a power of 2");
Reid Spencerd84d35b2007-02-15 02:26:10 +00001366 $$ = new PATypeHolder(HandleUpRefs(VectorType::get(*$4, (unsigned)$2)));
Reid Spencere2c32da2006-12-03 05:46:11 +00001367 delete $4;
1368 CHECK_FOR_ERROR
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001369 }
1370 | '{' TypeListI '}' { // Structure type?
1371 std::vector<const Type*> Elements;
Reid Spencere2c32da2006-12-03 05:46:11 +00001372 for (std::list<llvm::PATypeHolder>::iterator I = $2->begin(),
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001373 E = $2->end(); I != E; ++I)
Reid Spencere2c32da2006-12-03 05:46:11 +00001374 Elements.push_back(*I);
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001375
Reid Spencere2c32da2006-12-03 05:46:11 +00001376 $$ = new PATypeHolder(HandleUpRefs(StructType::get(Elements)));
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001377 delete $2;
Reid Spencer713eedc2006-08-18 08:43:06 +00001378 CHECK_FOR_ERROR
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001379 }
1380 | '{' '}' { // Empty structure type?
Reid Spencere2c32da2006-12-03 05:46:11 +00001381 $$ = new PATypeHolder(StructType::get(std::vector<const Type*>()));
Reid Spencer713eedc2006-08-18 08:43:06 +00001382 CHECK_FOR_ERROR
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001383 }
Andrew Lenharth2d189ff2006-12-08 18:07:09 +00001384 | '<' '{' TypeListI '}' '>' {
1385 std::vector<const Type*> Elements;
1386 for (std::list<llvm::PATypeHolder>::iterator I = $3->begin(),
1387 E = $3->end(); I != E; ++I)
1388 Elements.push_back(*I);
1389
1390 $$ = new PATypeHolder(HandleUpRefs(StructType::get(Elements, true)));
1391 delete $3;
1392 CHECK_FOR_ERROR
1393 }
1394 | '<' '{' '}' '>' { // Empty structure type?
1395 $$ = new PATypeHolder(StructType::get(std::vector<const Type*>(), true));
1396 CHECK_FOR_ERROR
1397 }
Reid Spencer42f0cbe2006-12-31 05:40:51 +00001398 ;
1399
1400ArgType
1401 : Types OptParamAttrs {
1402 $$.Ty = $1;
1403 $$.Attrs = $2;
1404 }
1405 ;
1406
Reid Spencerbf48e3c2007-01-05 17:07:23 +00001407ResultTypes
1408 : Types {
Reid Spencer42f0cbe2006-12-31 05:40:51 +00001409 if (!UpRefs.empty())
1410 GEN_ERROR("Invalid upreference in type: " + (*$1)->getDescription());
1411 if (!(*$1)->isFirstClassType())
Reid Spencera7bb3e92007-02-05 10:18:06 +00001412 GEN_ERROR("LLVM functions cannot return aggregate types");
Reid Spencerbf48e3c2007-01-05 17:07:23 +00001413 $$ = $1;
Reid Spencer42f0cbe2006-12-31 05:40:51 +00001414 }
Reid Spencerbf48e3c2007-01-05 17:07:23 +00001415 | VOID {
1416 $$ = new PATypeHolder(Type::VoidTy);
Reid Spencer42f0cbe2006-12-31 05:40:51 +00001417 }
1418 ;
1419
1420ArgTypeList : ArgType {
1421 $$ = new TypeWithAttrsList();
1422 $$->push_back($1);
1423 CHECK_FOR_ERROR
1424 }
1425 | ArgTypeList ',' ArgType {
1426 ($$=$1)->push_back($3);
1427 CHECK_FOR_ERROR
1428 }
1429 ;
1430
1431ArgTypeListI
1432 : ArgTypeList
1433 | ArgTypeList ',' DOTDOTDOT {
1434 $$=$1;
Reid Spencera472f662007-04-11 02:44:20 +00001435 TypeWithAttrs TWA; TWA.Attrs = ParamAttr::None;
Reid Spencer42f0cbe2006-12-31 05:40:51 +00001436 TWA.Ty = new PATypeHolder(Type::VoidTy);
1437 $$->push_back(TWA);
1438 CHECK_FOR_ERROR
1439 }
1440 | DOTDOTDOT {
1441 $$ = new TypeWithAttrsList;
Reid Spencera472f662007-04-11 02:44:20 +00001442 TypeWithAttrs TWA; TWA.Attrs = ParamAttr::None;
Reid Spencer42f0cbe2006-12-31 05:40:51 +00001443 TWA.Ty = new PATypeHolder(Type::VoidTy);
1444 $$->push_back(TWA);
1445 CHECK_FOR_ERROR
1446 }
1447 | /*empty*/ {
1448 $$ = new TypeWithAttrsList();
Reid Spencer713eedc2006-08-18 08:43:06 +00001449 CHECK_FOR_ERROR
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001450 };
1451
1452// TypeList - Used for struct declarations and as a basis for function type
1453// declaration type lists
1454//
Reid Spencer42f0cbe2006-12-31 05:40:51 +00001455TypeListI : Types {
Reid Spencere2c32da2006-12-03 05:46:11 +00001456 $$ = new std::list<PATypeHolder>();
Reid Spencer6fb989c2007-03-20 01:13:36 +00001457 $$->push_back(*$1);
1458 delete $1;
Reid Spencer713eedc2006-08-18 08:43:06 +00001459 CHECK_FOR_ERROR
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001460 }
Reid Spencer42f0cbe2006-12-31 05:40:51 +00001461 | TypeListI ',' Types {
Reid Spencer6fb989c2007-03-20 01:13:36 +00001462 ($$=$1)->push_back(*$3);
1463 delete $3;
Reid Spencer713eedc2006-08-18 08:43:06 +00001464 CHECK_FOR_ERROR
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001465 };
1466
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001467// ConstVal - The various declarations that go into the constant pool. This
1468// production is used ONLY to represent constants that show up AFTER a 'const',
1469// 'constant' or 'global' token at global scope. Constants that can be inlined
1470// into other expressions (such as integers and constexprs) are handled by the
1471// ResolvedVal, ValueRef and ConstValueRef productions.
1472//
1473ConstVal: Types '[' ConstVector ']' { // Nonempty unsized arr
Reid Spencer42f0cbe2006-12-31 05:40:51 +00001474 if (!UpRefs.empty())
1475 GEN_ERROR("Invalid upreference in type: " + (*$1)->getDescription());
Reid Spencere2c32da2006-12-03 05:46:11 +00001476 const ArrayType *ATy = dyn_cast<ArrayType>($1->get());
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001477 if (ATy == 0)
Reid Spencer713eedc2006-08-18 08:43:06 +00001478 GEN_ERROR("Cannot make array constant with type: '" +
Reid Spencera7bb3e92007-02-05 10:18:06 +00001479 (*$1)->getDescription() + "'");
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001480 const Type *ETy = ATy->getElementType();
1481 int NumElements = ATy->getNumElements();
1482
1483 // Verify that we have the correct size...
1484 if (NumElements != -1 && NumElements != (int)$3->size())
Reid Spencer713eedc2006-08-18 08:43:06 +00001485 GEN_ERROR("Type mismatch: constant sized array initialized with " +
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001486 utostr($3->size()) + " arguments, but has size of " +
Reid Spencera7bb3e92007-02-05 10:18:06 +00001487 itostr(NumElements) + "");
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001488
1489 // Verify all elements are correct type!
1490 for (unsigned i = 0; i < $3->size(); i++) {
Reid Spencere2c32da2006-12-03 05:46:11 +00001491 if (ETy != (*$3)[i]->getType())
Reid Spencer713eedc2006-08-18 08:43:06 +00001492 GEN_ERROR("Element #" + utostr(i) + " is not of type '" +
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001493 ETy->getDescription() +"' as required!\nIt is of type '"+
Reid Spencere2c32da2006-12-03 05:46:11 +00001494 (*$3)[i]->getType()->getDescription() + "'.");
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001495 }
1496
Reid Spencere2c32da2006-12-03 05:46:11 +00001497 $$ = ConstantArray::get(ATy, *$3);
1498 delete $1; delete $3;
Reid Spencer713eedc2006-08-18 08:43:06 +00001499 CHECK_FOR_ERROR
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001500 }
1501 | Types '[' ']' {
Reid Spencer42f0cbe2006-12-31 05:40:51 +00001502 if (!UpRefs.empty())
1503 GEN_ERROR("Invalid upreference in type: " + (*$1)->getDescription());
Reid Spencere2c32da2006-12-03 05:46:11 +00001504 const ArrayType *ATy = dyn_cast<ArrayType>($1->get());
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001505 if (ATy == 0)
Reid Spencer713eedc2006-08-18 08:43:06 +00001506 GEN_ERROR("Cannot make array constant with type: '" +
Reid Spencera7bb3e92007-02-05 10:18:06 +00001507 (*$1)->getDescription() + "'");
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001508
1509 int NumElements = ATy->getNumElements();
1510 if (NumElements != -1 && NumElements != 0)
Reid Spencer713eedc2006-08-18 08:43:06 +00001511 GEN_ERROR("Type mismatch: constant sized array initialized with 0"
Reid Spencera7bb3e92007-02-05 10:18:06 +00001512 " arguments, but has size of " + itostr(NumElements) +"");
Reid Spencere2c32da2006-12-03 05:46:11 +00001513 $$ = ConstantArray::get(ATy, std::vector<Constant*>());
1514 delete $1;
Reid Spencer713eedc2006-08-18 08:43:06 +00001515 CHECK_FOR_ERROR
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001516 }
1517 | Types 'c' STRINGCONSTANT {
Reid Spencer42f0cbe2006-12-31 05:40:51 +00001518 if (!UpRefs.empty())
1519 GEN_ERROR("Invalid upreference in type: " + (*$1)->getDescription());
Reid Spencere2c32da2006-12-03 05:46:11 +00001520 const ArrayType *ATy = dyn_cast<ArrayType>($1->get());
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001521 if (ATy == 0)
Reid Spencer713eedc2006-08-18 08:43:06 +00001522 GEN_ERROR("Cannot make array constant with type: '" +
Reid Spencera7bb3e92007-02-05 10:18:06 +00001523 (*$1)->getDescription() + "'");
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001524
1525 int NumElements = ATy->getNumElements();
1526 const Type *ETy = ATy->getElementType();
1527 char *EndStr = UnEscapeLexed($3, true);
1528 if (NumElements != -1 && NumElements != (EndStr-$3))
Reid Spencer713eedc2006-08-18 08:43:06 +00001529 GEN_ERROR("Can't build string constant of size " +
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001530 itostr((int)(EndStr-$3)) +
Reid Spencera7bb3e92007-02-05 10:18:06 +00001531 " when array has size " + itostr(NumElements) + "");
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001532 std::vector<Constant*> Vals;
Reid Spencer42f0cbe2006-12-31 05:40:51 +00001533 if (ETy == Type::Int8Ty) {
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001534 for (unsigned char *C = (unsigned char *)$3;
Reid Spencer42f0cbe2006-12-31 05:40:51 +00001535 C != (unsigned char*)EndStr; ++C)
1536 Vals.push_back(ConstantInt::get(ETy, *C));
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001537 } else {
1538 free($3);
Reid Spencera7bb3e92007-02-05 10:18:06 +00001539 GEN_ERROR("Cannot build string arrays of non byte sized elements");
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001540 }
1541 free($3);
Reid Spencere2c32da2006-12-03 05:46:11 +00001542 $$ = ConstantArray::get(ATy, Vals);
1543 delete $1;
Reid Spencer713eedc2006-08-18 08:43:06 +00001544 CHECK_FOR_ERROR
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001545 }
1546 | Types '<' ConstVector '>' { // Nonempty unsized arr
Reid Spencer42f0cbe2006-12-31 05:40:51 +00001547 if (!UpRefs.empty())
1548 GEN_ERROR("Invalid upreference in type: " + (*$1)->getDescription());
Reid Spencerd84d35b2007-02-15 02:26:10 +00001549 const VectorType *PTy = dyn_cast<VectorType>($1->get());
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001550 if (PTy == 0)
Reid Spencer713eedc2006-08-18 08:43:06 +00001551 GEN_ERROR("Cannot make packed constant with type: '" +
Reid Spencera7bb3e92007-02-05 10:18:06 +00001552 (*$1)->getDescription() + "'");
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001553 const Type *ETy = PTy->getElementType();
1554 int NumElements = PTy->getNumElements();
1555
1556 // Verify that we have the correct size...
1557 if (NumElements != -1 && NumElements != (int)$3->size())
Reid Spencer713eedc2006-08-18 08:43:06 +00001558 GEN_ERROR("Type mismatch: constant sized packed initialized with " +
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001559 utostr($3->size()) + " arguments, but has size of " +
Reid Spencera7bb3e92007-02-05 10:18:06 +00001560 itostr(NumElements) + "");
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001561
1562 // Verify all elements are correct type!
1563 for (unsigned i = 0; i < $3->size(); i++) {
Reid Spencere2c32da2006-12-03 05:46:11 +00001564 if (ETy != (*$3)[i]->getType())
Reid Spencer713eedc2006-08-18 08:43:06 +00001565 GEN_ERROR("Element #" + utostr(i) + " is not of type '" +
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001566 ETy->getDescription() +"' as required!\nIt is of type '"+
Reid Spencere2c32da2006-12-03 05:46:11 +00001567 (*$3)[i]->getType()->getDescription() + "'.");
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001568 }
1569
Reid Spencerd84d35b2007-02-15 02:26:10 +00001570 $$ = ConstantVector::get(PTy, *$3);
Reid Spencere2c32da2006-12-03 05:46:11 +00001571 delete $1; delete $3;
Reid Spencer713eedc2006-08-18 08:43:06 +00001572 CHECK_FOR_ERROR
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001573 }
1574 | Types '{' ConstVector '}' {
Reid Spencere2c32da2006-12-03 05:46:11 +00001575 const StructType *STy = dyn_cast<StructType>($1->get());
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001576 if (STy == 0)
Reid Spencer713eedc2006-08-18 08:43:06 +00001577 GEN_ERROR("Cannot make struct constant with type: '" +
Reid Spencera7bb3e92007-02-05 10:18:06 +00001578 (*$1)->getDescription() + "'");
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001579
1580 if ($3->size() != STy->getNumContainedTypes())
Reid Spencera7bb3e92007-02-05 10:18:06 +00001581 GEN_ERROR("Illegal number of initializers for structure type");
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001582
1583 // Check to ensure that constants are compatible with the type initializer!
1584 for (unsigned i = 0, e = $3->size(); i != e; ++i)
Reid Spencere2c32da2006-12-03 05:46:11 +00001585 if ((*$3)[i]->getType() != STy->getElementType(i))
Reid Spencer713eedc2006-08-18 08:43:06 +00001586 GEN_ERROR("Expected type '" +
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001587 STy->getElementType(i)->getDescription() +
1588 "' for element #" + utostr(i) +
Reid Spencera7bb3e92007-02-05 10:18:06 +00001589 " of structure initializer");
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001590
Zhou Sheng75b871f2007-01-11 12:24:14 +00001591 // Check to ensure that Type is not packed
1592 if (STy->isPacked())
Chris Lattner4669b0b2007-02-19 07:44:24 +00001593 GEN_ERROR("Unpacked Initializer to vector type '" + STy->getDescription() + "'");
Zhou Sheng75b871f2007-01-11 12:24:14 +00001594
Reid Spencere2c32da2006-12-03 05:46:11 +00001595 $$ = ConstantStruct::get(STy, *$3);
1596 delete $1; delete $3;
Reid Spencer713eedc2006-08-18 08:43:06 +00001597 CHECK_FOR_ERROR
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001598 }
1599 | Types '{' '}' {
Reid Spencer42f0cbe2006-12-31 05:40:51 +00001600 if (!UpRefs.empty())
1601 GEN_ERROR("Invalid upreference in type: " + (*$1)->getDescription());
Reid Spencere2c32da2006-12-03 05:46:11 +00001602 const StructType *STy = dyn_cast<StructType>($1->get());
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001603 if (STy == 0)
Reid Spencer713eedc2006-08-18 08:43:06 +00001604 GEN_ERROR("Cannot make struct constant with type: '" +
Reid Spencera7bb3e92007-02-05 10:18:06 +00001605 (*$1)->getDescription() + "'");
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001606
1607 if (STy->getNumContainedTypes() != 0)
Reid Spencera7bb3e92007-02-05 10:18:06 +00001608 GEN_ERROR("Illegal number of initializers for structure type");
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001609
Zhou Sheng75b871f2007-01-11 12:24:14 +00001610 // Check to ensure that Type is not packed
1611 if (STy->isPacked())
Chris Lattner4669b0b2007-02-19 07:44:24 +00001612 GEN_ERROR("Unpacked Initializer to vector type '" + STy->getDescription() + "'");
Zhou Sheng75b871f2007-01-11 12:24:14 +00001613
1614 $$ = ConstantStruct::get(STy, std::vector<Constant*>());
1615 delete $1;
1616 CHECK_FOR_ERROR
1617 }
1618 | Types '<' '{' ConstVector '}' '>' {
1619 const StructType *STy = dyn_cast<StructType>($1->get());
1620 if (STy == 0)
1621 GEN_ERROR("Cannot make struct constant with type: '" +
Reid Spencera7bb3e92007-02-05 10:18:06 +00001622 (*$1)->getDescription() + "'");
Zhou Sheng75b871f2007-01-11 12:24:14 +00001623
1624 if ($4->size() != STy->getNumContainedTypes())
Reid Spencera7bb3e92007-02-05 10:18:06 +00001625 GEN_ERROR("Illegal number of initializers for structure type");
Zhou Sheng75b871f2007-01-11 12:24:14 +00001626
1627 // Check to ensure that constants are compatible with the type initializer!
1628 for (unsigned i = 0, e = $4->size(); i != e; ++i)
1629 if ((*$4)[i]->getType() != STy->getElementType(i))
1630 GEN_ERROR("Expected type '" +
1631 STy->getElementType(i)->getDescription() +
1632 "' for element #" + utostr(i) +
Reid Spencera7bb3e92007-02-05 10:18:06 +00001633 " of structure initializer");
Zhou Sheng75b871f2007-01-11 12:24:14 +00001634
1635 // Check to ensure that Type is packed
1636 if (!STy->isPacked())
Chris Lattner4669b0b2007-02-19 07:44:24 +00001637 GEN_ERROR("Vector initializer to non-vector type '" +
1638 STy->getDescription() + "'");
Zhou Sheng75b871f2007-01-11 12:24:14 +00001639
1640 $$ = ConstantStruct::get(STy, *$4);
1641 delete $1; delete $4;
1642 CHECK_FOR_ERROR
1643 }
1644 | Types '<' '{' '}' '>' {
1645 if (!UpRefs.empty())
1646 GEN_ERROR("Invalid upreference in type: " + (*$1)->getDescription());
1647 const StructType *STy = dyn_cast<StructType>($1->get());
1648 if (STy == 0)
1649 GEN_ERROR("Cannot make struct constant with type: '" +
Reid Spencera7bb3e92007-02-05 10:18:06 +00001650 (*$1)->getDescription() + "'");
Zhou Sheng75b871f2007-01-11 12:24:14 +00001651
1652 if (STy->getNumContainedTypes() != 0)
Reid Spencera7bb3e92007-02-05 10:18:06 +00001653 GEN_ERROR("Illegal number of initializers for structure type");
Zhou Sheng75b871f2007-01-11 12:24:14 +00001654
1655 // Check to ensure that Type is packed
1656 if (!STy->isPacked())
Chris Lattner4669b0b2007-02-19 07:44:24 +00001657 GEN_ERROR("Vector initializer to non-vector type '" +
1658 STy->getDescription() + "'");
Zhou Sheng75b871f2007-01-11 12:24:14 +00001659
Reid Spencere2c32da2006-12-03 05:46:11 +00001660 $$ = ConstantStruct::get(STy, std::vector<Constant*>());
1661 delete $1;
Reid Spencer713eedc2006-08-18 08:43:06 +00001662 CHECK_FOR_ERROR
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001663 }
1664 | Types NULL_TOK {
Reid Spencer42f0cbe2006-12-31 05:40:51 +00001665 if (!UpRefs.empty())
1666 GEN_ERROR("Invalid upreference in type: " + (*$1)->getDescription());
Reid Spencere2c32da2006-12-03 05:46:11 +00001667 const PointerType *PTy = dyn_cast<PointerType>($1->get());
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001668 if (PTy == 0)
Reid Spencer713eedc2006-08-18 08:43:06 +00001669 GEN_ERROR("Cannot make null pointer constant with type: '" +
Reid Spencera7bb3e92007-02-05 10:18:06 +00001670 (*$1)->getDescription() + "'");
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001671
Reid Spencere2c32da2006-12-03 05:46:11 +00001672 $$ = ConstantPointerNull::get(PTy);
1673 delete $1;
Reid Spencer713eedc2006-08-18 08:43:06 +00001674 CHECK_FOR_ERROR
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001675 }
1676 | Types UNDEF {
Reid Spencer42f0cbe2006-12-31 05:40:51 +00001677 if (!UpRefs.empty())
1678 GEN_ERROR("Invalid upreference in type: " + (*$1)->getDescription());
Reid Spencere2c32da2006-12-03 05:46:11 +00001679 $$ = UndefValue::get($1->get());
1680 delete $1;
Reid Spencer713eedc2006-08-18 08:43:06 +00001681 CHECK_FOR_ERROR
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001682 }
1683 | Types SymbolicValueRef {
Reid Spencer42f0cbe2006-12-31 05:40:51 +00001684 if (!UpRefs.empty())
1685 GEN_ERROR("Invalid upreference in type: " + (*$1)->getDescription());
Reid Spencere2c32da2006-12-03 05:46:11 +00001686 const PointerType *Ty = dyn_cast<PointerType>($1->get());
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001687 if (Ty == 0)
Reid Spencera7bb3e92007-02-05 10:18:06 +00001688 GEN_ERROR("Global const reference must be a pointer type");
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001689
1690 // ConstExprs can exist in the body of a function, thus creating
1691 // GlobalValues whenever they refer to a variable. Because we are in
Reid Spencerd0e8d382007-03-19 18:40:50 +00001692 // the context of a function, getExistingVal will search the functions
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001693 // symbol table instead of the module symbol table for the global symbol,
1694 // which throws things all off. To get around this, we just tell
Reid Spencerd0e8d382007-03-19 18:40:50 +00001695 // getExistingVal that we are at global scope here.
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001696 //
1697 Function *SavedCurFn = CurFun.CurrentFunction;
1698 CurFun.CurrentFunction = 0;
1699
Reid Spencerd0e8d382007-03-19 18:40:50 +00001700 Value *V = getExistingVal(Ty, $2);
Reid Spencer309080a2006-09-28 19:28:24 +00001701 CHECK_FOR_ERROR
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001702
1703 CurFun.CurrentFunction = SavedCurFn;
1704
1705 // If this is an initializer for a constant pointer, which is referencing a
1706 // (currently) undefined variable, create a stub now that shall be replaced
1707 // in the future with the right type of variable.
1708 //
1709 if (V == 0) {
Reid Spencerac6bfc52007-02-05 17:04:00 +00001710 assert(isa<PointerType>(Ty) && "Globals may only be used as pointers!");
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001711 const PointerType *PT = cast<PointerType>(Ty);
1712
1713 // First check to see if the forward references value is already created!
1714 PerModuleInfo::GlobalRefsType::iterator I =
1715 CurModule.GlobalRefs.find(std::make_pair(PT, $2));
1716
1717 if (I != CurModule.GlobalRefs.end()) {
1718 V = I->second; // Placeholder already exists, use it...
1719 $2.destroy();
1720 } else {
1721 std::string Name;
Reid Spencer8d6d4b8e2007-01-26 08:05:27 +00001722 if ($2.Type == ValID::GlobalName)
1723 Name = $2.Name;
1724 else if ($2.Type != ValID::GlobalID)
1725 GEN_ERROR("Invalid reference to global");
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001726
1727 // Create the forward referenced global.
1728 GlobalValue *GV;
1729 if (const FunctionType *FTy =
1730 dyn_cast<FunctionType>(PT->getElementType())) {
1731 GV = new Function(FTy, GlobalValue::ExternalLinkage, Name,
1732 CurModule.CurrentModule);
1733 } else {
1734 GV = new GlobalVariable(PT->getElementType(), false,
1735 GlobalValue::ExternalLinkage, 0,
1736 Name, CurModule.CurrentModule);
1737 }
1738
1739 // Keep track of the fact that we have a forward ref to recycle it
1740 CurModule.GlobalRefs.insert(std::make_pair(std::make_pair(PT, $2), GV));
1741 V = GV;
1742 }
1743 }
1744
Reid Spencere2c32da2006-12-03 05:46:11 +00001745 $$ = cast<GlobalValue>(V);
1746 delete $1; // Free the type handle
Reid Spencer713eedc2006-08-18 08:43:06 +00001747 CHECK_FOR_ERROR
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001748 }
1749 | Types ConstExpr {
Reid Spencer42f0cbe2006-12-31 05:40:51 +00001750 if (!UpRefs.empty())
1751 GEN_ERROR("Invalid upreference in type: " + (*$1)->getDescription());
Reid Spencere2c32da2006-12-03 05:46:11 +00001752 if ($1->get() != $2->getType())
Reid Spencerca3d1cb2007-01-04 00:06:14 +00001753 GEN_ERROR("Mismatched types for constant expression: " +
1754 (*$1)->getDescription() + " and " + $2->getType()->getDescription());
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001755 $$ = $2;
Reid Spencere2c32da2006-12-03 05:46:11 +00001756 delete $1;
Reid Spencer713eedc2006-08-18 08:43:06 +00001757 CHECK_FOR_ERROR
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001758 }
1759 | Types ZEROINITIALIZER {
Reid Spencer42f0cbe2006-12-31 05:40:51 +00001760 if (!UpRefs.empty())
1761 GEN_ERROR("Invalid upreference in type: " + (*$1)->getDescription());
Reid Spencere2c32da2006-12-03 05:46:11 +00001762 const Type *Ty = $1->get();
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001763 if (isa<FunctionType>(Ty) || Ty == Type::LabelTy || isa<OpaqueType>(Ty))
Reid Spencera7bb3e92007-02-05 10:18:06 +00001764 GEN_ERROR("Cannot create a null initialized value of this type");
Reid Spencere2c32da2006-12-03 05:46:11 +00001765 $$ = Constant::getNullValue(Ty);
1766 delete $1;
Reid Spencer713eedc2006-08-18 08:43:06 +00001767 CHECK_FOR_ERROR
Reid Spencere2c32da2006-12-03 05:46:11 +00001768 }
Reid Spencer42f0cbe2006-12-31 05:40:51 +00001769 | IntType ESINT64VAL { // integral constants
Reid Spencer266e42b2006-12-23 06:05:41 +00001770 if (!ConstantInt::isValueValidForType($1, $2))
Reid Spencera7bb3e92007-02-05 10:18:06 +00001771 GEN_ERROR("Constant value doesn't fit in type");
Reid Spencera7bed60a2007-03-19 20:40:51 +00001772 $$ = ConstantInt::get($1, $2, true);
Reid Spencerc7a686b2007-02-28 02:24:54 +00001773 CHECK_FOR_ERROR
1774 }
1775 | IntType ESAPINTVAL { // arbitrary precision integer constants
1776 uint32_t BitWidth = cast<IntegerType>($1)->getBitWidth();
1777 if ($2->getBitWidth() > BitWidth) {
1778 GEN_ERROR("Constant value does not fit in type");
Reid Spencer8ad254d2007-03-01 19:41:47 +00001779 }
1780 $2->sextOrTrunc(BitWidth);
1781 $$ = ConstantInt::get(*$2);
Reid Spencerc7a686b2007-02-28 02:24:54 +00001782 delete $2;
Reid Spencer266e42b2006-12-23 06:05:41 +00001783 CHECK_FOR_ERROR
1784 }
Reid Spencer42f0cbe2006-12-31 05:40:51 +00001785 | IntType EUINT64VAL { // integral constants
Reid Spencer266e42b2006-12-23 06:05:41 +00001786 if (!ConstantInt::isValueValidForType($1, $2))
Reid Spencera7bb3e92007-02-05 10:18:06 +00001787 GEN_ERROR("Constant value doesn't fit in type");
Reid Spencera7bed60a2007-03-19 20:40:51 +00001788 $$ = ConstantInt::get($1, $2, false);
Reid Spencerc7a686b2007-02-28 02:24:54 +00001789 CHECK_FOR_ERROR
1790 }
1791 | IntType EUAPINTVAL { // arbitrary precision integer constants
1792 uint32_t BitWidth = cast<IntegerType>($1)->getBitWidth();
1793 if ($2->getBitWidth() > BitWidth) {
1794 GEN_ERROR("Constant value does not fit in type");
Reid Spencer8ad254d2007-03-01 19:41:47 +00001795 }
1796 $2->zextOrTrunc(BitWidth);
1797 $$ = ConstantInt::get(*$2);
Reid Spencerc7a686b2007-02-28 02:24:54 +00001798 delete $2;
Reid Spencer266e42b2006-12-23 06:05:41 +00001799 CHECK_FOR_ERROR
1800 }
Reid Spencer58a8db02007-01-13 05:00:46 +00001801 | INTTYPE TRUETOK { // Boolean constants
1802 assert(cast<IntegerType>($1)->getBitWidth() == 1 && "Not Bool?");
Zhou Sheng75b871f2007-01-11 12:24:14 +00001803 $$ = ConstantInt::getTrue();
Reid Spencer713eedc2006-08-18 08:43:06 +00001804 CHECK_FOR_ERROR
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001805 }
Reid Spencer58a8db02007-01-13 05:00:46 +00001806 | INTTYPE FALSETOK { // Boolean constants
1807 assert(cast<IntegerType>($1)->getBitWidth() == 1 && "Not Bool?");
Zhou Sheng75b871f2007-01-11 12:24:14 +00001808 $$ = ConstantInt::getFalse();
Reid Spencer713eedc2006-08-18 08:43:06 +00001809 CHECK_FOR_ERROR
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001810 }
1811 | FPType FPVAL { // Float & Double constants
Reid Spencere2c32da2006-12-03 05:46:11 +00001812 if (!ConstantFP::isValueValidForType($1, $2))
Reid Spencera7bb3e92007-02-05 10:18:06 +00001813 GEN_ERROR("Floating point constant invalid for type");
Reid Spencere2c32da2006-12-03 05:46:11 +00001814 $$ = ConstantFP::get($1, $2);
Reid Spencer713eedc2006-08-18 08:43:06 +00001815 CHECK_FOR_ERROR
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001816 };
1817
1818
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001819ConstExpr: CastOps '(' ConstVal TO Types ')' {
Reid Spencer42f0cbe2006-12-31 05:40:51 +00001820 if (!UpRefs.empty())
1821 GEN_ERROR("Invalid upreference in type: " + (*$5)->getDescription());
Reid Spencere2c32da2006-12-03 05:46:11 +00001822 Constant *Val = $3;
Reid Spencerceb84592007-01-17 02:48:45 +00001823 const Type *DestTy = $5->get();
1824 if (!CastInst::castIsValid($1, $3, DestTy))
1825 GEN_ERROR("invalid cast opcode for cast from '" +
1826 Val->getType()->getDescription() + "' to '" +
Reid Spencera7bb3e92007-02-05 10:18:06 +00001827 DestTy->getDescription() + "'");
Reid Spencerceb84592007-01-17 02:48:45 +00001828 $$ = ConstantExpr::getCast($1, $3, DestTy);
Reid Spencere2c32da2006-12-03 05:46:11 +00001829 delete $5;
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001830 }
1831 | GETELEMENTPTR '(' ConstVal IndexList ')' {
Reid Spencere2c32da2006-12-03 05:46:11 +00001832 if (!isa<PointerType>($3->getType()))
Reid Spencera7bb3e92007-02-05 10:18:06 +00001833 GEN_ERROR("GetElementPtr requires a pointer operand");
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001834
Reid Spencere2c32da2006-12-03 05:46:11 +00001835 const Type *IdxTy =
Chris Lattnerf79508f2007-02-13 00:58:01 +00001836 GetElementPtrInst::getIndexedType($3->getType(), &(*$4)[0], $4->size(),
1837 true);
Reid Spencere2c32da2006-12-03 05:46:11 +00001838 if (!IdxTy)
Reid Spencera7bb3e92007-02-05 10:18:06 +00001839 GEN_ERROR("Index list invalid for constant getelementptr");
Reid Spencere2c32da2006-12-03 05:46:11 +00001840
Chris Lattner55ce85c2007-01-31 04:44:08 +00001841 SmallVector<Constant*, 8> IdxVec;
Reid Spencere2c32da2006-12-03 05:46:11 +00001842 for (unsigned i = 0, e = $4->size(); i != e; ++i)
1843 if (Constant *C = dyn_cast<Constant>((*$4)[i]))
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001844 IdxVec.push_back(C);
1845 else
Reid Spencera7bb3e92007-02-05 10:18:06 +00001846 GEN_ERROR("Indices to constant getelementptr must be constants");
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001847
1848 delete $4;
1849
Chris Lattner55ce85c2007-01-31 04:44:08 +00001850 $$ = ConstantExpr::getGetElementPtr($3, &IdxVec[0], IdxVec.size());
Reid Spencer713eedc2006-08-18 08:43:06 +00001851 CHECK_FOR_ERROR
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001852 }
1853 | SELECT '(' ConstVal ',' ConstVal ',' ConstVal ')' {
Reid Spencer542964f2007-01-11 18:21:29 +00001854 if ($3->getType() != Type::Int1Ty)
Reid Spencera7bb3e92007-02-05 10:18:06 +00001855 GEN_ERROR("Select condition must be of boolean type");
Reid Spencere2c32da2006-12-03 05:46:11 +00001856 if ($5->getType() != $7->getType())
Reid Spencera7bb3e92007-02-05 10:18:06 +00001857 GEN_ERROR("Select operand types must match");
Reid Spencere2c32da2006-12-03 05:46:11 +00001858 $$ = ConstantExpr::getSelect($3, $5, $7);
Reid Spencer713eedc2006-08-18 08:43:06 +00001859 CHECK_FOR_ERROR
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001860 }
1861 | ArithmeticOps '(' ConstVal ',' ConstVal ')' {
Reid Spencere2c32da2006-12-03 05:46:11 +00001862 if ($3->getType() != $5->getType())
Reid Spencera7bb3e92007-02-05 10:18:06 +00001863 GEN_ERROR("Binary operator types must match");
Reid Spencer7e80b0b2006-10-26 06:15:43 +00001864 CHECK_FOR_ERROR;
Reid Spencer844668d2006-12-05 19:16:11 +00001865 $$ = ConstantExpr::get($1, $3, $5);
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001866 }
1867 | LogicalOps '(' ConstVal ',' ConstVal ')' {
Reid Spencere2c32da2006-12-03 05:46:11 +00001868 if ($3->getType() != $5->getType())
Reid Spencera7bb3e92007-02-05 10:18:06 +00001869 GEN_ERROR("Logical operator types must match");
Chris Lattner03c49532007-01-15 02:27:26 +00001870 if (!$3->getType()->isInteger()) {
Reid Spencerd84d35b2007-02-15 02:26:10 +00001871 if (Instruction::isShift($1) || !isa<VectorType>($3->getType()) ||
1872 !cast<VectorType>($3->getType())->getElementType()->isInteger())
Reid Spencera7bb3e92007-02-05 10:18:06 +00001873 GEN_ERROR("Logical operator requires integral operands");
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001874 }
Reid Spencere2c32da2006-12-03 05:46:11 +00001875 $$ = ConstantExpr::get($1, $3, $5);
Reid Spencer713eedc2006-08-18 08:43:06 +00001876 CHECK_FOR_ERROR
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001877 }
Reid Spencerd2e0c342006-12-04 05:24:24 +00001878 | ICMP IPredicates '(' ConstVal ',' ConstVal ')' {
1879 if ($4->getType() != $6->getType())
Reid Spencera7bb3e92007-02-05 10:18:06 +00001880 GEN_ERROR("icmp operand types must match");
Reid Spencerd2e0c342006-12-04 05:24:24 +00001881 $$ = ConstantExpr::getICmp($2, $4, $6);
Reid Spencere2c32da2006-12-03 05:46:11 +00001882 }
Reid Spencerd2e0c342006-12-04 05:24:24 +00001883 | FCMP FPredicates '(' ConstVal ',' ConstVal ')' {
1884 if ($4->getType() != $6->getType())
Reid Spencera7bb3e92007-02-05 10:18:06 +00001885 GEN_ERROR("fcmp operand types must match");
Reid Spencerd2e0c342006-12-04 05:24:24 +00001886 $$ = ConstantExpr::getFCmp($2, $4, $6);
Reid Spencere2c32da2006-12-03 05:46:11 +00001887 }
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001888 | EXTRACTELEMENT '(' ConstVal ',' ConstVal ')' {
Reid Spencere2c32da2006-12-03 05:46:11 +00001889 if (!ExtractElementInst::isValidOperands($3, $5))
Reid Spencera7bb3e92007-02-05 10:18:06 +00001890 GEN_ERROR("Invalid extractelement operands");
Reid Spencere2c32da2006-12-03 05:46:11 +00001891 $$ = ConstantExpr::getExtractElement($3, $5);
Reid Spencer713eedc2006-08-18 08:43:06 +00001892 CHECK_FOR_ERROR
Chris Lattneraebccf82006-04-08 03:55:17 +00001893 }
1894 | INSERTELEMENT '(' ConstVal ',' ConstVal ',' ConstVal ')' {
Reid Spencere2c32da2006-12-03 05:46:11 +00001895 if (!InsertElementInst::isValidOperands($3, $5, $7))
Reid Spencera7bb3e92007-02-05 10:18:06 +00001896 GEN_ERROR("Invalid insertelement operands");
Reid Spencere2c32da2006-12-03 05:46:11 +00001897 $$ = ConstantExpr::getInsertElement($3, $5, $7);
Reid Spencer713eedc2006-08-18 08:43:06 +00001898 CHECK_FOR_ERROR
Chris Lattneraebccf82006-04-08 03:55:17 +00001899 }
1900 | SHUFFLEVECTOR '(' ConstVal ',' ConstVal ',' ConstVal ')' {
Reid Spencere2c32da2006-12-03 05:46:11 +00001901 if (!ShuffleVectorInst::isValidOperands($3, $5, $7))
Reid Spencera7bb3e92007-02-05 10:18:06 +00001902 GEN_ERROR("Invalid shufflevector operands");
Reid Spencere2c32da2006-12-03 05:46:11 +00001903 $$ = ConstantExpr::getShuffleVector($3, $5, $7);
Reid Spencer713eedc2006-08-18 08:43:06 +00001904 CHECK_FOR_ERROR
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001905 };
1906
Chris Lattneraebccf82006-04-08 03:55:17 +00001907
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001908// ConstVector - A list of comma separated constants.
1909ConstVector : ConstVector ',' ConstVal {
1910 ($$ = $1)->push_back($3);
Reid Spencer713eedc2006-08-18 08:43:06 +00001911 CHECK_FOR_ERROR
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001912 }
1913 | ConstVal {
Reid Spencere2c32da2006-12-03 05:46:11 +00001914 $$ = new std::vector<Constant*>();
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001915 $$->push_back($1);
Reid Spencer713eedc2006-08-18 08:43:06 +00001916 CHECK_FOR_ERROR
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001917 };
1918
1919
1920// GlobalType - Match either GLOBAL or CONSTANT for global declarations...
1921GlobalType : GLOBAL { $$ = false; } | CONSTANT { $$ = true; };
1922
Lauro Ramos Venancio749e4662007-04-12 18:32:50 +00001923// ThreadLocal
1924ThreadLocal : THREAD_LOCAL { $$ = true; } | { $$ = false; };
1925
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001926
1927//===----------------------------------------------------------------------===//
1928// Rules to match Modules
1929//===----------------------------------------------------------------------===//
1930
1931// Module rule: Capture the result of parsing the whole file into a result
1932// variable...
1933//
Reid Spencerdc0a3a22006-12-29 20:35:03 +00001934Module
1935 : DefinitionList {
1936 $$ = ParserResult = CurModule.CurrentModule;
1937 CurModule.ModuleDone();
1938 CHECK_FOR_ERROR;
1939 }
1940 | /*empty*/ {
1941 $$ = ParserResult = CurModule.CurrentModule;
1942 CurModule.ModuleDone();
1943 CHECK_FOR_ERROR;
1944 }
1945 ;
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001946
Reid Spencerdc0a3a22006-12-29 20:35:03 +00001947DefinitionList
1948 : Definition
1949 | DefinitionList Definition
1950 ;
1951
1952Definition
Jeff Cohen5d956e42007-01-21 19:19:31 +00001953 : DEFINE { CurFun.isDeclare = false; } Function {
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001954 CurFun.FunctionDone();
Reid Spencer713eedc2006-08-18 08:43:06 +00001955 CHECK_FOR_ERROR
Reid Spencerdc0a3a22006-12-29 20:35:03 +00001956 }
1957 | DECLARE { CurFun.isDeclare = true; } FunctionProto {
Reid Spencer713eedc2006-08-18 08:43:06 +00001958 CHECK_FOR_ERROR
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001959 }
Reid Spencerdc0a3a22006-12-29 20:35:03 +00001960 | MODULE ASM_TOK AsmBlock {
Reid Spencer713eedc2006-08-18 08:43:06 +00001961 CHECK_FOR_ERROR
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001962 }
Reid Spencer8d6d4b8e2007-01-26 08:05:27 +00001963 | OptLocalAssign TYPE Types {
Reid Spencer42f0cbe2006-12-31 05:40:51 +00001964 if (!UpRefs.empty())
1965 GEN_ERROR("Invalid upreference in type: " + (*$3)->getDescription());
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001966 // Eagerly resolve types. This is not an optimization, this is a
1967 // requirement that is due to the fact that we could have this:
1968 //
1969 // %list = type { %list * }
1970 // %list = type { %list * } ; repeated type decl
1971 //
1972 // If types are not resolved eagerly, then the two types will not be
1973 // determined to be the same type!
1974 //
Reid Spencerdc0a3a22006-12-29 20:35:03 +00001975 ResolveTypeTo($1, *$3);
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001976
Reid Spencerdc0a3a22006-12-29 20:35:03 +00001977 if (!setTypeName(*$3, $1) && !$1) {
Reid Spencer309080a2006-09-28 19:28:24 +00001978 CHECK_FOR_ERROR
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001979 // If this is a named type that is not a redefinition, add it to the slot
1980 // table.
Reid Spencerdc0a3a22006-12-29 20:35:03 +00001981 CurModule.Types.push_back(*$3);
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001982 }
Reid Spencere2c32da2006-12-03 05:46:11 +00001983
Reid Spencerdc0a3a22006-12-29 20:35:03 +00001984 delete $3;
Reid Spencer713eedc2006-08-18 08:43:06 +00001985 CHECK_FOR_ERROR
Chris Lattnerf20e61f2006-02-15 07:22:58 +00001986 }
Reid Spencer8d6d4b8e2007-01-26 08:05:27 +00001987 | OptLocalAssign TYPE VOID {
Reid Spencer42f0cbe2006-12-31 05:40:51 +00001988 ResolveTypeTo($1, $3);
1989
1990 if (!setTypeName($3, $1) && !$1) {
1991 CHECK_FOR_ERROR
1992 // If this is a named type that is not a redefinition, add it to the slot
1993 // table.
1994 CurModule.Types.push_back($3);
1995 }
1996 CHECK_FOR_ERROR
1997 }
Lauro Ramos Venancio749e4662007-04-12 18:32:50 +00001998 | OptGlobalAssign GVVisibilityStyle ThreadLocal GlobalType ConstVal {
Reid Spencer8d6d4b8e2007-01-26 08:05:27 +00001999 /* "Externally Visible" Linkage */
Anton Korobeynikova0554d92007-01-12 19:20:47 +00002000 if ($5 == 0)
Reid Spencera7bb3e92007-02-05 10:18:06 +00002001 GEN_ERROR("Global value initializer is not a constant");
Lauro Ramos Venancio749e4662007-04-12 18:32:50 +00002002 CurGV = ParseGlobalVariable($1, GlobalValue::ExternalLinkage,
2003 $2, $4, $5->getType(), $5, $3);
Reid Spencerdc0a3a22006-12-29 20:35:03 +00002004 CHECK_FOR_ERROR
Anton Korobeynikova0554d92007-01-12 19:20:47 +00002005 } GlobalVarAttributes {
2006 CurGV = 0;
2007 }
Lauro Ramos Venancio749e4662007-04-12 18:32:50 +00002008 | OptGlobalAssign GVInternalLinkage GVVisibilityStyle ThreadLocal GlobalType ConstVal {
2009 if ($6 == 0)
2010 GEN_ERROR("Global value initializer is not a constant");
2011 CurGV = ParseGlobalVariable($1, $2, $3, $5, $6->getType(), $6, $4);
Anton Korobeynikova0554d92007-01-12 19:20:47 +00002012 CHECK_FOR_ERROR
Lauro Ramos Venancio749e4662007-04-12 18:32:50 +00002013 } GlobalVarAttributes {
2014 CurGV = 0;
2015 }
2016 | OptGlobalAssign GVExternalLinkage GVVisibilityStyle ThreadLocal GlobalType Types {
2017 if (!UpRefs.empty())
2018 GEN_ERROR("Invalid upreference in type: " + (*$6)->getDescription());
2019 CurGV = ParseGlobalVariable($1, $2, $3, $5, *$6, 0, $4);
2020 CHECK_FOR_ERROR
2021 delete $6;
Reid Spencer309080a2006-09-28 19:28:24 +00002022 } GlobalVarAttributes {
Anton Korobeynikovd61d39e2006-09-14 18:23:27 +00002023 CurGV = 0;
2024 CHECK_FOR_ERROR
2025 }
Reid Spencerdc0a3a22006-12-29 20:35:03 +00002026 | TARGET TargetDefinition {
Anton Korobeynikovd61d39e2006-09-14 18:23:27 +00002027 CHECK_FOR_ERROR
2028 }
Reid Spencerdc0a3a22006-12-29 20:35:03 +00002029 | DEPLIBS '=' LibrariesDefinition {
Reid Spencer713eedc2006-08-18 08:43:06 +00002030 CHECK_FOR_ERROR
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002031 }
Reid Spencerdc0a3a22006-12-29 20:35:03 +00002032 ;
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002033
2034
2035AsmBlock : STRINGCONSTANT {
2036 const std::string &AsmSoFar = CurModule.CurrentModule->getModuleInlineAsm();
2037 char *EndStr = UnEscapeLexed($1, true);
2038 std::string NewAsm($1, EndStr);
2039 free($1);
2040
2041 if (AsmSoFar.empty())
2042 CurModule.CurrentModule->setModuleInlineAsm(NewAsm);
2043 else
2044 CurModule.CurrentModule->setModuleInlineAsm(AsmSoFar+"\n"+NewAsm);
Reid Spencer713eedc2006-08-18 08:43:06 +00002045 CHECK_FOR_ERROR
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002046};
2047
Reid Spencer8d6d4b8e2007-01-26 08:05:27 +00002048TargetDefinition : TRIPLE '=' STRINGCONSTANT {
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002049 CurModule.CurrentModule->setTargetTriple($3);
2050 free($3);
John Criswell6af0b122006-10-24 19:09:48 +00002051 }
Chris Lattner7d1d0342006-10-22 06:08:13 +00002052 | DATALAYOUT '=' STRINGCONSTANT {
Owen Anderson85690f32006-10-18 02:21:48 +00002053 CurModule.CurrentModule->setDataLayout($3);
2054 free($3);
Owen Anderson85690f32006-10-18 02:21:48 +00002055 };
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002056
2057LibrariesDefinition : '[' LibList ']';
2058
2059LibList : LibList ',' STRINGCONSTANT {
2060 CurModule.CurrentModule->addLibrary($3);
2061 free($3);
Reid Spencer713eedc2006-08-18 08:43:06 +00002062 CHECK_FOR_ERROR
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002063 }
2064 | STRINGCONSTANT {
2065 CurModule.CurrentModule->addLibrary($1);
2066 free($1);
Reid Spencer713eedc2006-08-18 08:43:06 +00002067 CHECK_FOR_ERROR
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002068 }
2069 | /* empty: end of list */ {
Reid Spencer713eedc2006-08-18 08:43:06 +00002070 CHECK_FOR_ERROR
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002071 }
2072 ;
2073
2074//===----------------------------------------------------------------------===//
2075// Rules to match Function Headers
2076//===----------------------------------------------------------------------===//
2077
Reid Spencer8d6d4b8e2007-01-26 08:05:27 +00002078ArgListH : ArgListH ',' Types OptParamAttrs OptLocalName {
Reid Spencer42f0cbe2006-12-31 05:40:51 +00002079 if (!UpRefs.empty())
2080 GEN_ERROR("Invalid upreference in type: " + (*$3)->getDescription());
2081 if (*$3 == Type::VoidTy)
Reid Spencera7bb3e92007-02-05 10:18:06 +00002082 GEN_ERROR("void typed arguments are invalid");
Reid Spencer42f0cbe2006-12-31 05:40:51 +00002083 ArgListEntry E; E.Attrs = $4; E.Ty = $3; E.Name = $5;
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002084 $$ = $1;
Reid Spencer42f0cbe2006-12-31 05:40:51 +00002085 $1->push_back(E);
Reid Spencer713eedc2006-08-18 08:43:06 +00002086 CHECK_FOR_ERROR
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002087 }
Reid Spencer8d6d4b8e2007-01-26 08:05:27 +00002088 | Types OptParamAttrs OptLocalName {
Reid Spencer42f0cbe2006-12-31 05:40:51 +00002089 if (!UpRefs.empty())
2090 GEN_ERROR("Invalid upreference in type: " + (*$1)->getDescription());
2091 if (*$1 == Type::VoidTy)
Reid Spencera7bb3e92007-02-05 10:18:06 +00002092 GEN_ERROR("void typed arguments are invalid");
Reid Spencer42f0cbe2006-12-31 05:40:51 +00002093 ArgListEntry E; E.Attrs = $2; E.Ty = $1; E.Name = $3;
2094 $$ = new ArgListType;
2095 $$->push_back(E);
Reid Spencer713eedc2006-08-18 08:43:06 +00002096 CHECK_FOR_ERROR
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002097 };
2098
2099ArgList : ArgListH {
2100 $$ = $1;
Reid Spencer713eedc2006-08-18 08:43:06 +00002101 CHECK_FOR_ERROR
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002102 }
2103 | ArgListH ',' DOTDOTDOT {
2104 $$ = $1;
Reid Spencer42f0cbe2006-12-31 05:40:51 +00002105 struct ArgListEntry E;
2106 E.Ty = new PATypeHolder(Type::VoidTy);
2107 E.Name = 0;
Reid Spencera472f662007-04-11 02:44:20 +00002108 E.Attrs = ParamAttr::None;
Reid Spencer42f0cbe2006-12-31 05:40:51 +00002109 $$->push_back(E);
Reid Spencer713eedc2006-08-18 08:43:06 +00002110 CHECK_FOR_ERROR
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002111 }
2112 | DOTDOTDOT {
Reid Spencer42f0cbe2006-12-31 05:40:51 +00002113 $$ = new ArgListType;
2114 struct ArgListEntry E;
2115 E.Ty = new PATypeHolder(Type::VoidTy);
2116 E.Name = 0;
Reid Spencera472f662007-04-11 02:44:20 +00002117 E.Attrs = ParamAttr::None;
Reid Spencer42f0cbe2006-12-31 05:40:51 +00002118 $$->push_back(E);
Reid Spencer713eedc2006-08-18 08:43:06 +00002119 CHECK_FOR_ERROR
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002120 }
2121 | /* empty */ {
2122 $$ = 0;
Reid Spencer713eedc2006-08-18 08:43:06 +00002123 CHECK_FOR_ERROR
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002124 };
2125
Reid Spencer8d6d4b8e2007-01-26 08:05:27 +00002126FunctionHeaderH : OptCallingConv ResultTypes GlobalName '(' ArgList ')'
Reid Spencerbf48e3c2007-01-05 17:07:23 +00002127 OptFuncAttrs OptSection OptAlign {
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002128 UnEscapeLexed($3);
2129 std::string FunctionName($3);
2130 free($3); // Free strdup'd memory!
2131
Reid Spencer87622ae2007-01-02 21:54:12 +00002132 // Check the function result for abstractness if this is a define. We should
2133 // have no abstract types at this point
Reid Spencerbf48e3c2007-01-05 17:07:23 +00002134 if (!CurFun.isDeclare && CurModule.TypeIsUnresolved($2))
2135 GEN_ERROR("Reference to abstract result: "+ $2->get()->getDescription());
Reid Spencer87622ae2007-01-02 21:54:12 +00002136
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002137 std::vector<const Type*> ParamTypeList;
Reid Spencerf51a7052007-04-09 06:16:21 +00002138 ParamAttrsList ParamAttrs;
Reid Spencera472f662007-04-11 02:44:20 +00002139 if ($7 != ParamAttr::None)
Reid Spencerf51a7052007-04-09 06:16:21 +00002140 ParamAttrs.addAttributes(0, $7);
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002141 if ($5) { // If there are arguments...
Reid Spencerf51a7052007-04-09 06:16:21 +00002142 unsigned index = 1;
2143 for (ArgListType::iterator I = $5->begin(); I != $5->end(); ++I, ++index) {
Reid Spencer42f0cbe2006-12-31 05:40:51 +00002144 const Type* Ty = I->Ty->get();
Reid Spencer87622ae2007-01-02 21:54:12 +00002145 if (!CurFun.isDeclare && CurModule.TypeIsUnresolved(I->Ty))
2146 GEN_ERROR("Reference to abstract argument: " + Ty->getDescription());
Reid Spencer42f0cbe2006-12-31 05:40:51 +00002147 ParamTypeList.push_back(Ty);
2148 if (Ty != Type::VoidTy)
Reid Spencera472f662007-04-11 02:44:20 +00002149 if (I->Attrs != ParamAttr::None)
Reid Spencerf51a7052007-04-09 06:16:21 +00002150 ParamAttrs.addAttributes(index, I->Attrs);
Reid Spencer42f0cbe2006-12-31 05:40:51 +00002151 }
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002152 }
2153
2154 bool isVarArg = ParamTypeList.size() && ParamTypeList.back() == Type::VoidTy;
2155 if (isVarArg) ParamTypeList.pop_back();
2156
Reid Spencerf51a7052007-04-09 06:16:21 +00002157 ParamAttrsList *ActualAttrs = 0;
2158 if (!ParamAttrs.empty())
2159 ActualAttrs = new ParamAttrsList(ParamAttrs);
2160
2161 FunctionType *FT = FunctionType::get(*$2, ParamTypeList, isVarArg,
2162 ActualAttrs);
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002163 const PointerType *PFT = PointerType::get(FT);
Reid Spencerbf48e3c2007-01-05 17:07:23 +00002164 delete $2;
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002165
2166 ValID ID;
2167 if (!FunctionName.empty()) {
Reid Spencer8d6d4b8e2007-01-26 08:05:27 +00002168 ID = ValID::createGlobalName((char*)FunctionName.c_str());
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002169 } else {
Reid Spencerd0e8d382007-03-19 18:40:50 +00002170 ID = ValID::createGlobalID(CurModule.Values.size());
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002171 }
2172
2173 Function *Fn = 0;
2174 // See if this function was forward referenced. If so, recycle the object.
2175 if (GlobalValue *FWRef = CurModule.GetForwardRefForGlobal(PFT, ID)) {
2176 // Move the function to the end of the list, from whereever it was
2177 // previously inserted.
2178 Fn = cast<Function>(FWRef);
2179 CurModule.CurrentModule->getFunctionList().remove(Fn);
2180 CurModule.CurrentModule->getFunctionList().push_back(Fn);
2181 } else if (!FunctionName.empty() && // Merge with an earlier prototype?
Reid Spencer3aaaa0b2007-02-05 20:47:22 +00002182 (Fn = CurModule.CurrentModule->getFunction(FunctionName))) {
2183 if (Fn->getFunctionType() != FT ) {
2184 // The existing function doesn't have the same type. This is an overload
2185 // error.
2186 GEN_ERROR("Overload of function '" + FunctionName + "' not permitted.");
2187 } else if (!CurFun.isDeclare && !Fn->isDeclaration()) {
2188 // Neither the existing or the current function is a declaration and they
2189 // have the same name and same type. Clearly this is a redefinition.
Reid Spencera7bb3e92007-02-05 10:18:06 +00002190 GEN_ERROR("Redefinition of function '" + FunctionName + "'");
Reid Spencer3aaaa0b2007-02-05 20:47:22 +00002191 } if (Fn->isDeclaration()) {
2192 // Make sure to strip off any argument names so we can't get conflicts.
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002193 for (Function::arg_iterator AI = Fn->arg_begin(), AE = Fn->arg_end();
2194 AI != AE; ++AI)
2195 AI->setName("");
Reid Spencer3aaaa0b2007-02-05 20:47:22 +00002196 }
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002197 } else { // Not already defined?
2198 Fn = new Function(FT, GlobalValue::ExternalLinkage, FunctionName,
2199 CurModule.CurrentModule);
Anton Korobeynikovd61d39e2006-09-14 18:23:27 +00002200
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002201 InsertValue(Fn, CurModule.Values);
2202 }
2203
2204 CurFun.FunctionStart(Fn);
Anton Korobeynikov0ab01ff2006-09-17 13:06:18 +00002205
2206 if (CurFun.isDeclare) {
2207 // If we have declaration, always overwrite linkage. This will allow us to
2208 // correctly handle cases, when pointer to function is passed as argument to
2209 // another function.
2210 Fn->setLinkage(CurFun.Linkage);
Anton Korobeynikova0554d92007-01-12 19:20:47 +00002211 Fn->setVisibility(CurFun.Visibility);
Anton Korobeynikov0ab01ff2006-09-17 13:06:18 +00002212 }
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002213 Fn->setCallingConv($1);
Reid Spencerbf48e3c2007-01-05 17:07:23 +00002214 Fn->setAlignment($9);
2215 if ($8) {
2216 Fn->setSection($8);
2217 free($8);
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002218 }
2219
2220 // Add all of the arguments we parsed to the function...
2221 if ($5) { // Is null if empty...
2222 if (isVarArg) { // Nuke the last entry
Reid Spencer3aaaa0b2007-02-05 20:47:22 +00002223 assert($5->back().Ty->get() == Type::VoidTy && $5->back().Name == 0 &&
Reid Spencerac6bfc52007-02-05 17:04:00 +00002224 "Not a varargs marker!");
Reid Spencer42f0cbe2006-12-31 05:40:51 +00002225 delete $5->back().Ty;
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002226 $5->pop_back(); // Delete the last entry
2227 }
2228 Function::arg_iterator ArgIt = Fn->arg_begin();
Reid Spencer3aaaa0b2007-02-05 20:47:22 +00002229 Function::arg_iterator ArgEnd = Fn->arg_end();
Reid Spencer42f0cbe2006-12-31 05:40:51 +00002230 unsigned Idx = 1;
Reid Spencer3aaaa0b2007-02-05 20:47:22 +00002231 for (ArgListType::iterator I = $5->begin();
2232 I != $5->end() && ArgIt != ArgEnd; ++I, ++ArgIt) {
Reid Spencer42f0cbe2006-12-31 05:40:51 +00002233 delete I->Ty; // Delete the typeholder...
Reid Spencer3aaaa0b2007-02-05 20:47:22 +00002234 setValueName(ArgIt, I->Name); // Insert arg into symtab...
Reid Spencer309080a2006-09-28 19:28:24 +00002235 CHECK_FOR_ERROR
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002236 InsertValue(ArgIt);
Reid Spencer42f0cbe2006-12-31 05:40:51 +00002237 Idx++;
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002238 }
Reid Spencere2c32da2006-12-03 05:46:11 +00002239
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002240 delete $5; // We're now done with the argument list
2241 }
Reid Spencer713eedc2006-08-18 08:43:06 +00002242 CHECK_FOR_ERROR
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002243};
2244
2245BEGIN : BEGINTOK | '{'; // Allow BEGIN or '{' to start a function
2246
Anton Korobeynikova0554d92007-01-12 19:20:47 +00002247FunctionHeader : FunctionDefineLinkage GVVisibilityStyle FunctionHeaderH BEGIN {
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002248 $$ = CurFun.CurrentFunction;
2249
2250 // Make sure that we keep track of the linkage type even if there was a
2251 // previous "declare".
2252 $$->setLinkage($1);
Anton Korobeynikova0554d92007-01-12 19:20:47 +00002253 $$->setVisibility($2);
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002254};
2255
2256END : ENDTOK | '}'; // Allow end of '}' to end a function
2257
2258Function : BasicBlockList END {
2259 $$ = $1;
Reid Spencer713eedc2006-08-18 08:43:06 +00002260 CHECK_FOR_ERROR
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002261};
2262
Anton Korobeynikova0554d92007-01-12 19:20:47 +00002263FunctionProto : FunctionDeclareLinkage GVVisibilityStyle FunctionHeaderH {
Reid Spencer42f0cbe2006-12-31 05:40:51 +00002264 CurFun.CurrentFunction->setLinkage($1);
Anton Korobeynikova0554d92007-01-12 19:20:47 +00002265 CurFun.CurrentFunction->setVisibility($2);
Anton Korobeynikovd61d39e2006-09-14 18:23:27 +00002266 $$ = CurFun.CurrentFunction;
2267 CurFun.FunctionDone();
2268 CHECK_FOR_ERROR
2269 };
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002270
2271//===----------------------------------------------------------------------===//
2272// Rules to match Basic Blocks
2273//===----------------------------------------------------------------------===//
2274
2275OptSideEffect : /* empty */ {
2276 $$ = false;
Reid Spencer713eedc2006-08-18 08:43:06 +00002277 CHECK_FOR_ERROR
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002278 }
2279 | SIDEEFFECT {
2280 $$ = true;
Reid Spencer713eedc2006-08-18 08:43:06 +00002281 CHECK_FOR_ERROR
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002282 };
2283
2284ConstValueRef : ESINT64VAL { // A reference to a direct constant
2285 $$ = ValID::create($1);
Reid Spencer713eedc2006-08-18 08:43:06 +00002286 CHECK_FOR_ERROR
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002287 }
2288 | EUINT64VAL {
2289 $$ = ValID::create($1);
Reid Spencer713eedc2006-08-18 08:43:06 +00002290 CHECK_FOR_ERROR
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002291 }
2292 | FPVAL { // Perhaps it's an FP constant?
2293 $$ = ValID::create($1);
Reid Spencer713eedc2006-08-18 08:43:06 +00002294 CHECK_FOR_ERROR
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002295 }
2296 | TRUETOK {
Zhou Sheng75b871f2007-01-11 12:24:14 +00002297 $$ = ValID::create(ConstantInt::getTrue());
Reid Spencer713eedc2006-08-18 08:43:06 +00002298 CHECK_FOR_ERROR
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002299 }
2300 | FALSETOK {
Zhou Sheng75b871f2007-01-11 12:24:14 +00002301 $$ = ValID::create(ConstantInt::getFalse());
Reid Spencer713eedc2006-08-18 08:43:06 +00002302 CHECK_FOR_ERROR
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002303 }
2304 | NULL_TOK {
2305 $$ = ValID::createNull();
Reid Spencer713eedc2006-08-18 08:43:06 +00002306 CHECK_FOR_ERROR
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002307 }
2308 | UNDEF {
2309 $$ = ValID::createUndef();
Reid Spencer713eedc2006-08-18 08:43:06 +00002310 CHECK_FOR_ERROR
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002311 }
2312 | ZEROINITIALIZER { // A vector zero constant.
2313 $$ = ValID::createZeroInit();
Reid Spencer713eedc2006-08-18 08:43:06 +00002314 CHECK_FOR_ERROR
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002315 }
2316 | '<' ConstVector '>' { // Nonempty unsized packed vector
Reid Spencere2c32da2006-12-03 05:46:11 +00002317 const Type *ETy = (*$2)[0]->getType();
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002318 int NumElements = $2->size();
2319
Reid Spencerd84d35b2007-02-15 02:26:10 +00002320 VectorType* pt = VectorType::get(ETy, NumElements);
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002321 PATypeHolder* PTy = new PATypeHolder(
Reid Spencere2c32da2006-12-03 05:46:11 +00002322 HandleUpRefs(
Reid Spencerd84d35b2007-02-15 02:26:10 +00002323 VectorType::get(
Reid Spencere2c32da2006-12-03 05:46:11 +00002324 ETy,
2325 NumElements)
2326 )
2327 );
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002328
2329 // Verify all elements are correct type!
2330 for (unsigned i = 0; i < $2->size(); i++) {
Reid Spencere2c32da2006-12-03 05:46:11 +00002331 if (ETy != (*$2)[i]->getType())
Reid Spencer713eedc2006-08-18 08:43:06 +00002332 GEN_ERROR("Element #" + utostr(i) + " is not of type '" +
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002333 ETy->getDescription() +"' as required!\nIt is of type '" +
Reid Spencere2c32da2006-12-03 05:46:11 +00002334 (*$2)[i]->getType()->getDescription() + "'.");
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002335 }
2336
Reid Spencerd84d35b2007-02-15 02:26:10 +00002337 $$ = ValID::create(ConstantVector::get(pt, *$2));
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002338 delete PTy; delete $2;
Reid Spencer713eedc2006-08-18 08:43:06 +00002339 CHECK_FOR_ERROR
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002340 }
2341 | ConstExpr {
Reid Spencere2c32da2006-12-03 05:46:11 +00002342 $$ = ValID::create($1);
Reid Spencer713eedc2006-08-18 08:43:06 +00002343 CHECK_FOR_ERROR
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002344 }
2345 | ASM_TOK OptSideEffect STRINGCONSTANT ',' STRINGCONSTANT {
2346 char *End = UnEscapeLexed($3, true);
2347 std::string AsmStr = std::string($3, End);
2348 End = UnEscapeLexed($5, true);
2349 std::string Constraints = std::string($5, End);
2350 $$ = ValID::createInlineAsm(AsmStr, Constraints, $2);
2351 free($3);
2352 free($5);
Reid Spencer713eedc2006-08-18 08:43:06 +00002353 CHECK_FOR_ERROR
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002354 };
2355
2356// SymbolicValueRef - Reference to one of two ways of symbolically refering to
2357// another value.
2358//
Reid Spencer8d6d4b8e2007-01-26 08:05:27 +00002359SymbolicValueRef : LOCALVAL_ID { // Is it an integer reference...?
2360 $$ = ValID::createLocalID($1);
Reid Spencer713eedc2006-08-18 08:43:06 +00002361 CHECK_FOR_ERROR
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002362 }
Reid Spencer8d6d4b8e2007-01-26 08:05:27 +00002363 | GLOBALVAL_ID {
2364 $$ = ValID::createGlobalID($1);
2365 CHECK_FOR_ERROR
2366 }
2367 | LocalName { // Is it a named reference...?
2368 $$ = ValID::createLocalName($1);
2369 CHECK_FOR_ERROR
2370 }
2371 | GlobalName { // Is it a named reference...?
2372 $$ = ValID::createGlobalName($1);
Reid Spencer713eedc2006-08-18 08:43:06 +00002373 CHECK_FOR_ERROR
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002374 };
2375
2376// ValueRef - A reference to a definition... either constant or symbolic
2377ValueRef : SymbolicValueRef | ConstValueRef;
2378
2379
2380// ResolvedVal - a <type> <value> pair. This is used only in cases where the
2381// type immediately preceeds the value reference, and allows complex constant
2382// pool references (for things like: 'ret [2 x int] [ int 12, int 42]')
2383ResolvedVal : Types ValueRef {
Reid Spencer42f0cbe2006-12-31 05:40:51 +00002384 if (!UpRefs.empty())
2385 GEN_ERROR("Invalid upreference in type: " + (*$1)->getDescription());
2386 $$ = getVal(*$1, $2);
2387 delete $1;
Reid Spencer713eedc2006-08-18 08:43:06 +00002388 CHECK_FOR_ERROR
Reid Spencer42f0cbe2006-12-31 05:40:51 +00002389 }
2390 ;
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002391
2392BasicBlockList : BasicBlockList BasicBlock {
2393 $$ = $1;
Reid Spencer713eedc2006-08-18 08:43:06 +00002394 CHECK_FOR_ERROR
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002395 }
2396 | FunctionHeader BasicBlock { // Do not allow functions with 0 basic blocks
2397 $$ = $1;
Reid Spencer713eedc2006-08-18 08:43:06 +00002398 CHECK_FOR_ERROR
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002399 };
2400
2401
2402// Basic blocks are terminated by branching instructions:
2403// br, br/cc, switch, ret
2404//
Reid Spencer8d6d4b8e2007-01-26 08:05:27 +00002405BasicBlock : InstructionList OptLocalAssign BBTerminatorInst {
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002406 setValueName($3, $2);
Reid Spencer309080a2006-09-28 19:28:24 +00002407 CHECK_FOR_ERROR
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002408 InsertValue($3);
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002409 $1->getInstList().push_back($3);
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002410 $$ = $1;
Reid Spencer713eedc2006-08-18 08:43:06 +00002411 CHECK_FOR_ERROR
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002412 };
2413
2414InstructionList : InstructionList Inst {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002415 if (CastInst *CI1 = dyn_cast<CastInst>($2))
2416 if (CastInst *CI2 = dyn_cast<CastInst>(CI1->getOperand(0)))
2417 if (CI2->getParent() == 0)
2418 $1->getInstList().push_back(CI2);
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002419 $1->getInstList().push_back($2);
2420 $$ = $1;
Reid Spencer713eedc2006-08-18 08:43:06 +00002421 CHECK_FOR_ERROR
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002422 }
Reid Spencerd0e8d382007-03-19 18:40:50 +00002423 | /* empty */ { // Empty space between instruction lists
2424 $$ = defineBBVal(ValID::createLocalID(CurFun.NextValNum));
Reid Spencer713eedc2006-08-18 08:43:06 +00002425 CHECK_FOR_ERROR
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002426 }
Reid Spencerd0e8d382007-03-19 18:40:50 +00002427 | LABELSTR { // Labelled (named) basic block
2428 $$ = defineBBVal(ValID::createLocalName($1));
Reid Spencer713eedc2006-08-18 08:43:06 +00002429 CHECK_FOR_ERROR
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002430 };
2431
2432BBTerminatorInst : RET ResolvedVal { // Return with a result...
Reid Spencere2c32da2006-12-03 05:46:11 +00002433 $$ = new ReturnInst($2);
Reid Spencer713eedc2006-08-18 08:43:06 +00002434 CHECK_FOR_ERROR
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002435 }
Reid Spencerd0e8d382007-03-19 18:40:50 +00002436 | RET VOID { // Return with no result...
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002437 $$ = new ReturnInst();
Reid Spencer713eedc2006-08-18 08:43:06 +00002438 CHECK_FOR_ERROR
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002439 }
Reid Spencerd0e8d382007-03-19 18:40:50 +00002440 | BR LABEL ValueRef { // Unconditional Branch...
Reid Spencer309080a2006-09-28 19:28:24 +00002441 BasicBlock* tmpBB = getBBVal($3);
Reid Spencer713eedc2006-08-18 08:43:06 +00002442 CHECK_FOR_ERROR
Reid Spencer309080a2006-09-28 19:28:24 +00002443 $$ = new BranchInst(tmpBB);
Reid Spencerd0e8d382007-03-19 18:40:50 +00002444 } // Conditional Branch...
Reid Spencer58a8db02007-01-13 05:00:46 +00002445 | BR INTTYPE ValueRef ',' LABEL ValueRef ',' LABEL ValueRef {
2446 assert(cast<IntegerType>($2)->getBitWidth() == 1 && "Not Bool?");
Reid Spencer309080a2006-09-28 19:28:24 +00002447 BasicBlock* tmpBBA = getBBVal($6);
Reid Spencer713eedc2006-08-18 08:43:06 +00002448 CHECK_FOR_ERROR
Reid Spencer309080a2006-09-28 19:28:24 +00002449 BasicBlock* tmpBBB = getBBVal($9);
2450 CHECK_FOR_ERROR
Reid Spencer542964f2007-01-11 18:21:29 +00002451 Value* tmpVal = getVal(Type::Int1Ty, $3);
Reid Spencer309080a2006-09-28 19:28:24 +00002452 CHECK_FOR_ERROR
2453 $$ = new BranchInst(tmpBBA, tmpBBB, tmpVal);
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002454 }
2455 | SWITCH IntType ValueRef ',' LABEL ValueRef '[' JumpTable ']' {
Reid Spencere2c32da2006-12-03 05:46:11 +00002456 Value* tmpVal = getVal($2, $3);
Reid Spencer309080a2006-09-28 19:28:24 +00002457 CHECK_FOR_ERROR
2458 BasicBlock* tmpBB = getBBVal($6);
2459 CHECK_FOR_ERROR
2460 SwitchInst *S = new SwitchInst(tmpVal, tmpBB, $8->size());
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002461 $$ = S;
2462
2463 std::vector<std::pair<Constant*,BasicBlock*> >::iterator I = $8->begin(),
2464 E = $8->end();
2465 for (; I != E; ++I) {
2466 if (ConstantInt *CI = dyn_cast<ConstantInt>(I->first))
2467 S->addCase(CI, I->second);
2468 else
Reid Spencera7bb3e92007-02-05 10:18:06 +00002469 GEN_ERROR("Switch case is constant, but not a simple integer");
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002470 }
2471 delete $8;
Reid Spencer713eedc2006-08-18 08:43:06 +00002472 CHECK_FOR_ERROR
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002473 }
2474 | SWITCH IntType ValueRef ',' LABEL ValueRef '[' ']' {
Reid Spencere2c32da2006-12-03 05:46:11 +00002475 Value* tmpVal = getVal($2, $3);
Reid Spencer309080a2006-09-28 19:28:24 +00002476 CHECK_FOR_ERROR
2477 BasicBlock* tmpBB = getBBVal($6);
2478 CHECK_FOR_ERROR
2479 SwitchInst *S = new SwitchInst(tmpVal, tmpBB, 0);
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002480 $$ = S;
Reid Spencer713eedc2006-08-18 08:43:06 +00002481 CHECK_FOR_ERROR
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002482 }
Reid Spencerbf48e3c2007-01-05 17:07:23 +00002483 | INVOKE OptCallingConv ResultTypes ValueRef '(' ValueRefList ')' OptFuncAttrs
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002484 TO LABEL ValueRef UNWIND LABEL ValueRef {
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002485
Reid Spencer42f0cbe2006-12-31 05:40:51 +00002486 // Handle the short syntax
2487 const PointerType *PFTy = 0;
2488 const FunctionType *Ty = 0;
Reid Spencerbf48e3c2007-01-05 17:07:23 +00002489 if (!(PFTy = dyn_cast<PointerType>($3->get())) ||
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002490 !(Ty = dyn_cast<FunctionType>(PFTy->getElementType()))) {
2491 // Pull out the types of all of the arguments...
2492 std::vector<const Type*> ParamTypes;
Reid Spencerf51a7052007-04-09 06:16:21 +00002493 ParamAttrsList ParamAttrs;
Reid Spencera472f662007-04-11 02:44:20 +00002494 if ($8 != ParamAttr::None)
Reid Spencerf51a7052007-04-09 06:16:21 +00002495 ParamAttrs.addAttributes(0, $8);
2496 ValueRefList::iterator I = $6->begin(), E = $6->end();
2497 unsigned index = 1;
2498 for (; I != E; ++I, ++index) {
Reid Spencer42f0cbe2006-12-31 05:40:51 +00002499 const Type *Ty = I->Val->getType();
2500 if (Ty == Type::VoidTy)
2501 GEN_ERROR("Short call syntax cannot be used with varargs");
2502 ParamTypes.push_back(Ty);
Reid Spencera472f662007-04-11 02:44:20 +00002503 if (I->Attrs != ParamAttr::None)
Reid Spencerf51a7052007-04-09 06:16:21 +00002504 ParamAttrs.addAttributes(index, I->Attrs);
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002505 }
2506
Reid Spencerf51a7052007-04-09 06:16:21 +00002507 ParamAttrsList *Attrs = 0;
2508 if (!ParamAttrs.empty())
2509 Attrs = new ParamAttrsList(ParamAttrs);
2510 Ty = FunctionType::get($3->get(), ParamTypes, false, Attrs);
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002511 PFTy = PointerType::get(Ty);
2512 }
2513
Reid Spencer6fb989c2007-03-20 01:13:36 +00002514 delete $3;
2515
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002516 Value *V = getVal(PFTy, $4); // Get the function we're calling...
Reid Spencer309080a2006-09-28 19:28:24 +00002517 CHECK_FOR_ERROR
Reid Spencerbf48e3c2007-01-05 17:07:23 +00002518 BasicBlock *Normal = getBBVal($11);
Reid Spencer309080a2006-09-28 19:28:24 +00002519 CHECK_FOR_ERROR
Reid Spencerbf48e3c2007-01-05 17:07:23 +00002520 BasicBlock *Except = getBBVal($14);
Reid Spencer309080a2006-09-28 19:28:24 +00002521 CHECK_FOR_ERROR
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002522
Reid Spencer42f0cbe2006-12-31 05:40:51 +00002523 // Check the arguments
2524 ValueList Args;
2525 if ($6->empty()) { // Has no arguments?
2526 // Make sure no arguments is a good thing!
2527 if (Ty->getNumParams() != 0)
2528 GEN_ERROR("No arguments passed to a function that "
Reid Spencera7bb3e92007-02-05 10:18:06 +00002529 "expects arguments");
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002530 } else { // Has arguments?
2531 // Loop through FunctionType's arguments and ensure they are specified
2532 // correctly!
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002533 FunctionType::param_iterator I = Ty->param_begin();
2534 FunctionType::param_iterator E = Ty->param_end();
Reid Spencer42f0cbe2006-12-31 05:40:51 +00002535 ValueRefList::iterator ArgI = $6->begin(), ArgE = $6->end();
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002536
Reid Spencer42f0cbe2006-12-31 05:40:51 +00002537 for (; ArgI != ArgE && I != E; ++ArgI, ++I) {
2538 if (ArgI->Val->getType() != *I)
2539 GEN_ERROR("Parameter " + ArgI->Val->getName()+ " is not of type '" +
Reid Spencera7bb3e92007-02-05 10:18:06 +00002540 (*I)->getDescription() + "'");
Reid Spencer42f0cbe2006-12-31 05:40:51 +00002541 Args.push_back(ArgI->Val);
2542 }
Reid Spencere2c32da2006-12-03 05:46:11 +00002543
Reid Spencer42f0cbe2006-12-31 05:40:51 +00002544 if (Ty->isVarArg()) {
2545 if (I == E)
2546 for (; ArgI != ArgE; ++ArgI)
2547 Args.push_back(ArgI->Val); // push the remaining varargs
2548 } else if (I != E || ArgI != ArgE)
Reid Spencera7bb3e92007-02-05 10:18:06 +00002549 GEN_ERROR("Invalid number of parameters detected");
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002550 }
Reid Spencer42f0cbe2006-12-31 05:40:51 +00002551
2552 // Create the InvokeInst
Chris Lattnerd8028242007-02-13 05:53:56 +00002553 InvokeInst *II = new InvokeInst(V, Normal, Except, &Args[0], Args.size());
Reid Spencer42f0cbe2006-12-31 05:40:51 +00002554 II->setCallingConv($2);
2555 $$ = II;
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002556 delete $6;
Reid Spencer713eedc2006-08-18 08:43:06 +00002557 CHECK_FOR_ERROR
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002558 }
2559 | UNWIND {
2560 $$ = new UnwindInst();
Reid Spencer713eedc2006-08-18 08:43:06 +00002561 CHECK_FOR_ERROR
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002562 }
2563 | UNREACHABLE {
2564 $$ = new UnreachableInst();
Reid Spencer713eedc2006-08-18 08:43:06 +00002565 CHECK_FOR_ERROR
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002566 };
2567
2568
2569
2570JumpTable : JumpTable IntType ConstValueRef ',' LABEL ValueRef {
2571 $$ = $1;
Reid Spencerd0e8d382007-03-19 18:40:50 +00002572 Constant *V = cast<Constant>(getExistingVal($2, $3));
Reid Spencer309080a2006-09-28 19:28:24 +00002573 CHECK_FOR_ERROR
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002574 if (V == 0)
Reid Spencera7bb3e92007-02-05 10:18:06 +00002575 GEN_ERROR("May only switch on a constant pool value");
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002576
Reid Spencer309080a2006-09-28 19:28:24 +00002577 BasicBlock* tmpBB = getBBVal($6);
Reid Spencer713eedc2006-08-18 08:43:06 +00002578 CHECK_FOR_ERROR
Reid Spencer309080a2006-09-28 19:28:24 +00002579 $$->push_back(std::make_pair(V, tmpBB));
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002580 }
2581 | IntType ConstValueRef ',' LABEL ValueRef {
2582 $$ = new std::vector<std::pair<Constant*, BasicBlock*> >();
Reid Spencerd0e8d382007-03-19 18:40:50 +00002583 Constant *V = cast<Constant>(getExistingVal($1, $2));
Reid Spencer309080a2006-09-28 19:28:24 +00002584 CHECK_FOR_ERROR
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002585
2586 if (V == 0)
Reid Spencera7bb3e92007-02-05 10:18:06 +00002587 GEN_ERROR("May only switch on a constant pool value");
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002588
Reid Spencer309080a2006-09-28 19:28:24 +00002589 BasicBlock* tmpBB = getBBVal($5);
Reid Spencer713eedc2006-08-18 08:43:06 +00002590 CHECK_FOR_ERROR
Reid Spencer309080a2006-09-28 19:28:24 +00002591 $$->push_back(std::make_pair(V, tmpBB));
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002592 };
2593
Reid Spencer8d6d4b8e2007-01-26 08:05:27 +00002594Inst : OptLocalAssign InstVal {
Reid Spencer3aaaa0b2007-02-05 20:47:22 +00002595 // Is this definition named?? if so, assign the name...
2596 setValueName($2, $1);
2597 CHECK_FOR_ERROR
2598 InsertValue($2);
2599 $$ = $2;
2600 CHECK_FOR_ERROR
2601 };
2602
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002603
2604PHIList : Types '[' ValueRef ',' ValueRef ']' { // Used for PHI nodes
Reid Spencer42f0cbe2006-12-31 05:40:51 +00002605 if (!UpRefs.empty())
2606 GEN_ERROR("Invalid upreference in type: " + (*$1)->getDescription());
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002607 $$ = new std::list<std::pair<Value*, BasicBlock*> >();
Reid Spencere2c32da2006-12-03 05:46:11 +00002608 Value* tmpVal = getVal(*$1, $3);
Reid Spencer713eedc2006-08-18 08:43:06 +00002609 CHECK_FOR_ERROR
Reid Spencer309080a2006-09-28 19:28:24 +00002610 BasicBlock* tmpBB = getBBVal($5);
2611 CHECK_FOR_ERROR
2612 $$->push_back(std::make_pair(tmpVal, tmpBB));
Reid Spencere2c32da2006-12-03 05:46:11 +00002613 delete $1;
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002614 }
2615 | PHIList ',' '[' ValueRef ',' ValueRef ']' {
2616 $$ = $1;
Reid Spencer309080a2006-09-28 19:28:24 +00002617 Value* tmpVal = getVal($1->front().first->getType(), $4);
Reid Spencer713eedc2006-08-18 08:43:06 +00002618 CHECK_FOR_ERROR
Reid Spencer309080a2006-09-28 19:28:24 +00002619 BasicBlock* tmpBB = getBBVal($6);
2620 CHECK_FOR_ERROR
2621 $1->push_back(std::make_pair(tmpVal, tmpBB));
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002622 };
2623
2624
Reid Spencer42f0cbe2006-12-31 05:40:51 +00002625ValueRefList : Types ValueRef OptParamAttrs {
2626 if (!UpRefs.empty())
2627 GEN_ERROR("Invalid upreference in type: " + (*$1)->getDescription());
2628 // Used for call and invoke instructions
2629 $$ = new ValueRefList();
2630 ValueRefListEntry E; E.Attrs = $3; E.Val = getVal($1->get(), $2);
2631 $$->push_back(E);
Reid Spencer6fb989c2007-03-20 01:13:36 +00002632 delete $1;
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002633 }
Reid Spencer42f0cbe2006-12-31 05:40:51 +00002634 | ValueRefList ',' Types ValueRef OptParamAttrs {
2635 if (!UpRefs.empty())
2636 GEN_ERROR("Invalid upreference in type: " + (*$3)->getDescription());
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002637 $$ = $1;
Reid Spencer42f0cbe2006-12-31 05:40:51 +00002638 ValueRefListEntry E; E.Attrs = $5; E.Val = getVal($3->get(), $4);
2639 $$->push_back(E);
Reid Spencer6fb989c2007-03-20 01:13:36 +00002640 delete $3;
Reid Spencer713eedc2006-08-18 08:43:06 +00002641 CHECK_FOR_ERROR
Reid Spencer42f0cbe2006-12-31 05:40:51 +00002642 }
2643 | /*empty*/ { $$ = new ValueRefList(); };
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002644
Reid Spencer42f0cbe2006-12-31 05:40:51 +00002645IndexList // Used for gep instructions and constant expressions
Reid Spencerd0da3e22006-12-31 21:47:02 +00002646 : /*empty*/ { $$ = new std::vector<Value*>(); }
Reid Spencer42f0cbe2006-12-31 05:40:51 +00002647 | IndexList ',' ResolvedVal {
2648 $$ = $1;
2649 $$->push_back($3);
2650 CHECK_FOR_ERROR
2651 }
Reid Spencerd0da3e22006-12-31 21:47:02 +00002652 ;
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002653
2654OptTailCall : TAIL CALL {
2655 $$ = true;
Reid Spencer713eedc2006-08-18 08:43:06 +00002656 CHECK_FOR_ERROR
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002657 }
2658 | CALL {
2659 $$ = false;
Reid Spencer713eedc2006-08-18 08:43:06 +00002660 CHECK_FOR_ERROR
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002661 };
2662
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002663InstVal : ArithmeticOps Types ValueRef ',' ValueRef {
Reid Spencer42f0cbe2006-12-31 05:40:51 +00002664 if (!UpRefs.empty())
2665 GEN_ERROR("Invalid upreference in type: " + (*$2)->getDescription());
Chris Lattner03c49532007-01-15 02:27:26 +00002666 if (!(*$2)->isInteger() && !(*$2)->isFloatingPoint() &&
Reid Spencerd84d35b2007-02-15 02:26:10 +00002667 !isa<VectorType>((*$2).get()))
Reid Spencer713eedc2006-08-18 08:43:06 +00002668 GEN_ERROR(
Reid Spencera7bb3e92007-02-05 10:18:06 +00002669 "Arithmetic operator requires integer, FP, or packed operands");
Reid Spencerd84d35b2007-02-15 02:26:10 +00002670 if (isa<VectorType>((*$2).get()) &&
Reid Spencere2c32da2006-12-03 05:46:11 +00002671 ($1 == Instruction::URem ||
2672 $1 == Instruction::SRem ||
2673 $1 == Instruction::FRem))
Chris Lattner4669b0b2007-02-19 07:44:24 +00002674 GEN_ERROR("Remainder not supported on vector types");
Reid Spencere2c32da2006-12-03 05:46:11 +00002675 Value* val1 = getVal(*$2, $3);
Reid Spencer309080a2006-09-28 19:28:24 +00002676 CHECK_FOR_ERROR
Reid Spencere2c32da2006-12-03 05:46:11 +00002677 Value* val2 = getVal(*$2, $5);
Reid Spencer309080a2006-09-28 19:28:24 +00002678 CHECK_FOR_ERROR
Reid Spencere2c32da2006-12-03 05:46:11 +00002679 $$ = BinaryOperator::create($1, val1, val2);
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002680 if ($$ == 0)
Reid Spencera7bb3e92007-02-05 10:18:06 +00002681 GEN_ERROR("binary operator returned null");
Reid Spencere2c32da2006-12-03 05:46:11 +00002682 delete $2;
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002683 }
2684 | LogicalOps Types ValueRef ',' ValueRef {
Reid Spencer42f0cbe2006-12-31 05:40:51 +00002685 if (!UpRefs.empty())
2686 GEN_ERROR("Invalid upreference in type: " + (*$2)->getDescription());
Chris Lattner03c49532007-01-15 02:27:26 +00002687 if (!(*$2)->isInteger()) {
Reid Spencerd84d35b2007-02-15 02:26:10 +00002688 if (Instruction::isShift($1) || !isa<VectorType>($2->get()) ||
2689 !cast<VectorType>($2->get())->getElementType()->isInteger())
Reid Spencera7bb3e92007-02-05 10:18:06 +00002690 GEN_ERROR("Logical operator requires integral operands");
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002691 }
Reid Spencere2c32da2006-12-03 05:46:11 +00002692 Value* tmpVal1 = getVal(*$2, $3);
Reid Spencer309080a2006-09-28 19:28:24 +00002693 CHECK_FOR_ERROR
Reid Spencere2c32da2006-12-03 05:46:11 +00002694 Value* tmpVal2 = getVal(*$2, $5);
Reid Spencer309080a2006-09-28 19:28:24 +00002695 CHECK_FOR_ERROR
Reid Spencere2c32da2006-12-03 05:46:11 +00002696 $$ = BinaryOperator::create($1, tmpVal1, tmpVal2);
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002697 if ($$ == 0)
Reid Spencera7bb3e92007-02-05 10:18:06 +00002698 GEN_ERROR("binary operator returned null");
Reid Spencere2c32da2006-12-03 05:46:11 +00002699 delete $2;
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002700 }
Reid Spencere2c32da2006-12-03 05:46:11 +00002701 | ICMP IPredicates Types ValueRef ',' ValueRef {
Reid Spencer42f0cbe2006-12-31 05:40:51 +00002702 if (!UpRefs.empty())
2703 GEN_ERROR("Invalid upreference in type: " + (*$3)->getDescription());
Reid Spencerd84d35b2007-02-15 02:26:10 +00002704 if (isa<VectorType>((*$3).get()))
Chris Lattner4669b0b2007-02-19 07:44:24 +00002705 GEN_ERROR("Vector types not supported by icmp instruction");
Reid Spencere2c32da2006-12-03 05:46:11 +00002706 Value* tmpVal1 = getVal(*$3, $4);
2707 CHECK_FOR_ERROR
2708 Value* tmpVal2 = getVal(*$3, $6);
2709 CHECK_FOR_ERROR
2710 $$ = CmpInst::create($1, $2, tmpVal1, tmpVal2);
2711 if ($$ == 0)
Reid Spencera7bb3e92007-02-05 10:18:06 +00002712 GEN_ERROR("icmp operator returned null");
Reid Spencer6fb989c2007-03-20 01:13:36 +00002713 delete $3;
Reid Spencere2c32da2006-12-03 05:46:11 +00002714 }
2715 | FCMP FPredicates Types ValueRef ',' ValueRef {
Reid Spencer42f0cbe2006-12-31 05:40:51 +00002716 if (!UpRefs.empty())
2717 GEN_ERROR("Invalid upreference in type: " + (*$3)->getDescription());
Reid Spencerd84d35b2007-02-15 02:26:10 +00002718 if (isa<VectorType>((*$3).get()))
Chris Lattner4669b0b2007-02-19 07:44:24 +00002719 GEN_ERROR("Vector types not supported by fcmp instruction");
Reid Spencere2c32da2006-12-03 05:46:11 +00002720 Value* tmpVal1 = getVal(*$3, $4);
2721 CHECK_FOR_ERROR
2722 Value* tmpVal2 = getVal(*$3, $6);
2723 CHECK_FOR_ERROR
2724 $$ = CmpInst::create($1, $2, tmpVal1, tmpVal2);
2725 if ($$ == 0)
Reid Spencera7bb3e92007-02-05 10:18:06 +00002726 GEN_ERROR("fcmp operator returned null");
Reid Spencer6fb989c2007-03-20 01:13:36 +00002727 delete $3;
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002728 }
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002729 | CastOps ResolvedVal TO Types {
Reid Spencer42f0cbe2006-12-31 05:40:51 +00002730 if (!UpRefs.empty())
2731 GEN_ERROR("Invalid upreference in type: " + (*$4)->getDescription());
Reid Spencere2c32da2006-12-03 05:46:11 +00002732 Value* Val = $2;
Reid Spencerceb84592007-01-17 02:48:45 +00002733 const Type* DestTy = $4->get();
2734 if (!CastInst::castIsValid($1, Val, DestTy))
2735 GEN_ERROR("invalid cast opcode for cast from '" +
2736 Val->getType()->getDescription() + "' to '" +
Reid Spencera7bb3e92007-02-05 10:18:06 +00002737 DestTy->getDescription() + "'");
Reid Spencerceb84592007-01-17 02:48:45 +00002738 $$ = CastInst::create($1, Val, DestTy);
Reid Spencere2c32da2006-12-03 05:46:11 +00002739 delete $4;
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002740 }
2741 | SELECT ResolvedVal ',' ResolvedVal ',' ResolvedVal {
Reid Spencer542964f2007-01-11 18:21:29 +00002742 if ($2->getType() != Type::Int1Ty)
Reid Spencera7bb3e92007-02-05 10:18:06 +00002743 GEN_ERROR("select condition must be boolean");
Reid Spencere2c32da2006-12-03 05:46:11 +00002744 if ($4->getType() != $6->getType())
Reid Spencera7bb3e92007-02-05 10:18:06 +00002745 GEN_ERROR("select value types should match");
Reid Spencere2c32da2006-12-03 05:46:11 +00002746 $$ = new SelectInst($2, $4, $6);
Reid Spencer713eedc2006-08-18 08:43:06 +00002747 CHECK_FOR_ERROR
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002748 }
2749 | VAARG ResolvedVal ',' Types {
Reid Spencer42f0cbe2006-12-31 05:40:51 +00002750 if (!UpRefs.empty())
2751 GEN_ERROR("Invalid upreference in type: " + (*$4)->getDescription());
Reid Spencere2c32da2006-12-03 05:46:11 +00002752 $$ = new VAArgInst($2, *$4);
2753 delete $4;
Reid Spencer713eedc2006-08-18 08:43:06 +00002754 CHECK_FOR_ERROR
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002755 }
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002756 | EXTRACTELEMENT ResolvedVal ',' ResolvedVal {
Reid Spencere2c32da2006-12-03 05:46:11 +00002757 if (!ExtractElementInst::isValidOperands($2, $4))
Reid Spencera7bb3e92007-02-05 10:18:06 +00002758 GEN_ERROR("Invalid extractelement operands");
Reid Spencere2c32da2006-12-03 05:46:11 +00002759 $$ = new ExtractElementInst($2, $4);
Reid Spencer713eedc2006-08-18 08:43:06 +00002760 CHECK_FOR_ERROR
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002761 }
2762 | INSERTELEMENT ResolvedVal ',' ResolvedVal ',' ResolvedVal {
Reid Spencere2c32da2006-12-03 05:46:11 +00002763 if (!InsertElementInst::isValidOperands($2, $4, $6))
Reid Spencera7bb3e92007-02-05 10:18:06 +00002764 GEN_ERROR("Invalid insertelement operands");
Reid Spencere2c32da2006-12-03 05:46:11 +00002765 $$ = new InsertElementInst($2, $4, $6);
Reid Spencer713eedc2006-08-18 08:43:06 +00002766 CHECK_FOR_ERROR
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002767 }
Chris Lattner9ff96a72006-04-08 01:18:56 +00002768 | SHUFFLEVECTOR ResolvedVal ',' ResolvedVal ',' ResolvedVal {
Reid Spencere2c32da2006-12-03 05:46:11 +00002769 if (!ShuffleVectorInst::isValidOperands($2, $4, $6))
Reid Spencera7bb3e92007-02-05 10:18:06 +00002770 GEN_ERROR("Invalid shufflevector operands");
Reid Spencere2c32da2006-12-03 05:46:11 +00002771 $$ = new ShuffleVectorInst($2, $4, $6);
Reid Spencer713eedc2006-08-18 08:43:06 +00002772 CHECK_FOR_ERROR
Chris Lattner9ff96a72006-04-08 01:18:56 +00002773 }
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002774 | PHI_TOK PHIList {
2775 const Type *Ty = $2->front().first->getType();
2776 if (!Ty->isFirstClassType())
Reid Spencera7bb3e92007-02-05 10:18:06 +00002777 GEN_ERROR("PHI node operands must be of first class type");
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002778 $$ = new PHINode(Ty);
2779 ((PHINode*)$$)->reserveOperandSpace($2->size());
2780 while ($2->begin() != $2->end()) {
2781 if ($2->front().first->getType() != Ty)
Reid Spencera7bb3e92007-02-05 10:18:06 +00002782 GEN_ERROR("All elements of a PHI node must be of the same type");
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002783 cast<PHINode>($$)->addIncoming($2->front().first, $2->front().second);
2784 $2->pop_front();
2785 }
2786 delete $2; // Free the list...
Reid Spencer713eedc2006-08-18 08:43:06 +00002787 CHECK_FOR_ERROR
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002788 }
Reid Spencerbf48e3c2007-01-05 17:07:23 +00002789 | OptTailCall OptCallingConv ResultTypes ValueRef '(' ValueRefList ')'
2790 OptFuncAttrs {
Reid Spencer42f0cbe2006-12-31 05:40:51 +00002791
2792 // Handle the short syntax
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002793 const PointerType *PFTy = 0;
2794 const FunctionType *Ty = 0;
Reid Spencerbf48e3c2007-01-05 17:07:23 +00002795 if (!(PFTy = dyn_cast<PointerType>($3->get())) ||
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002796 !(Ty = dyn_cast<FunctionType>(PFTy->getElementType()))) {
2797 // Pull out the types of all of the arguments...
2798 std::vector<const Type*> ParamTypes;
Reid Spencerf51a7052007-04-09 06:16:21 +00002799 ParamAttrsList ParamAttrs;
Reid Spencera472f662007-04-11 02:44:20 +00002800 if ($8 != ParamAttr::None)
Reid Spencerf51a7052007-04-09 06:16:21 +00002801 ParamAttrs.addAttributes(0, $8);
2802 unsigned index = 1;
2803 ValueRefList::iterator I = $6->begin(), E = $6->end();
2804 for (; I != E; ++I, ++index) {
Reid Spencer42f0cbe2006-12-31 05:40:51 +00002805 const Type *Ty = I->Val->getType();
2806 if (Ty == Type::VoidTy)
2807 GEN_ERROR("Short call syntax cannot be used with varargs");
2808 ParamTypes.push_back(Ty);
Reid Spencera472f662007-04-11 02:44:20 +00002809 if (I->Attrs != ParamAttr::None)
Reid Spencerf51a7052007-04-09 06:16:21 +00002810 ParamAttrs.addAttributes(index, I->Attrs);
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002811 }
2812
Reid Spencerf51a7052007-04-09 06:16:21 +00002813 ParamAttrsList *Attrs = 0;
2814 if (!ParamAttrs.empty())
2815 Attrs = new ParamAttrsList(ParamAttrs);
2816
2817 Ty = FunctionType::get($3->get(), ParamTypes, false, Attrs);
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002818 PFTy = PointerType::get(Ty);
2819 }
2820
2821 Value *V = getVal(PFTy, $4); // Get the function we're calling...
Reid Spencer309080a2006-09-28 19:28:24 +00002822 CHECK_FOR_ERROR
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002823
Reid Spencer42f0cbe2006-12-31 05:40:51 +00002824 // Check the arguments
2825 ValueList Args;
2826 if ($6->empty()) { // Has no arguments?
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002827 // Make sure no arguments is a good thing!
2828 if (Ty->getNumParams() != 0)
Reid Spencer713eedc2006-08-18 08:43:06 +00002829 GEN_ERROR("No arguments passed to a function that "
Reid Spencera7bb3e92007-02-05 10:18:06 +00002830 "expects arguments");
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002831 } else { // Has arguments?
2832 // Loop through FunctionType's arguments and ensure they are specified
2833 // correctly!
2834 //
2835 FunctionType::param_iterator I = Ty->param_begin();
2836 FunctionType::param_iterator E = Ty->param_end();
Reid Spencer42f0cbe2006-12-31 05:40:51 +00002837 ValueRefList::iterator ArgI = $6->begin(), ArgE = $6->end();
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002838
Reid Spencer42f0cbe2006-12-31 05:40:51 +00002839 for (; ArgI != ArgE && I != E; ++ArgI, ++I) {
2840 if (ArgI->Val->getType() != *I)
2841 GEN_ERROR("Parameter " + ArgI->Val->getName()+ " is not of type '" +
Reid Spencera7bb3e92007-02-05 10:18:06 +00002842 (*I)->getDescription() + "'");
Reid Spencer42f0cbe2006-12-31 05:40:51 +00002843 Args.push_back(ArgI->Val);
2844 }
2845 if (Ty->isVarArg()) {
2846 if (I == E)
2847 for (; ArgI != ArgE; ++ArgI)
2848 Args.push_back(ArgI->Val); // push the remaining varargs
2849 } else if (I != E || ArgI != ArgE)
Reid Spencera7bb3e92007-02-05 10:18:06 +00002850 GEN_ERROR("Invalid number of parameters detected");
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002851 }
Reid Spencer42f0cbe2006-12-31 05:40:51 +00002852 // Create the call node
Chris Lattnerd8028242007-02-13 05:53:56 +00002853 CallInst *CI = new CallInst(V, &Args[0], Args.size());
Reid Spencer42f0cbe2006-12-31 05:40:51 +00002854 CI->setTailCall($1);
2855 CI->setCallingConv($2);
2856 $$ = CI;
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002857 delete $6;
Reid Spencer8d6d4b8e2007-01-26 08:05:27 +00002858 delete $3;
Reid Spencer713eedc2006-08-18 08:43:06 +00002859 CHECK_FOR_ERROR
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002860 }
2861 | MemoryInst {
2862 $$ = $1;
Reid Spencer713eedc2006-08-18 08:43:06 +00002863 CHECK_FOR_ERROR
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002864 };
2865
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002866OptVolatile : VOLATILE {
2867 $$ = true;
Reid Spencer713eedc2006-08-18 08:43:06 +00002868 CHECK_FOR_ERROR
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002869 }
2870 | /* empty */ {
2871 $$ = false;
Reid Spencer713eedc2006-08-18 08:43:06 +00002872 CHECK_FOR_ERROR
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002873 };
2874
2875
2876
2877MemoryInst : MALLOC Types OptCAlign {
Reid Spencer42f0cbe2006-12-31 05:40:51 +00002878 if (!UpRefs.empty())
2879 GEN_ERROR("Invalid upreference in type: " + (*$2)->getDescription());
Reid Spencere2c32da2006-12-03 05:46:11 +00002880 $$ = new MallocInst(*$2, 0, $3);
2881 delete $2;
Reid Spencer713eedc2006-08-18 08:43:06 +00002882 CHECK_FOR_ERROR
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002883 }
Reid Spencer7a9c62b2007-01-12 07:05:14 +00002884 | MALLOC Types ',' INTTYPE ValueRef OptCAlign {
Reid Spencer42f0cbe2006-12-31 05:40:51 +00002885 if (!UpRefs.empty())
2886 GEN_ERROR("Invalid upreference in type: " + (*$2)->getDescription());
Reid Spencere2c32da2006-12-03 05:46:11 +00002887 Value* tmpVal = getVal($4, $5);
Reid Spencer713eedc2006-08-18 08:43:06 +00002888 CHECK_FOR_ERROR
Reid Spencere2c32da2006-12-03 05:46:11 +00002889 $$ = new MallocInst(*$2, tmpVal, $6);
2890 delete $2;
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002891 }
2892 | ALLOCA Types OptCAlign {
Reid Spencer42f0cbe2006-12-31 05:40:51 +00002893 if (!UpRefs.empty())
2894 GEN_ERROR("Invalid upreference in type: " + (*$2)->getDescription());
Reid Spencere2c32da2006-12-03 05:46:11 +00002895 $$ = new AllocaInst(*$2, 0, $3);
2896 delete $2;
Reid Spencer713eedc2006-08-18 08:43:06 +00002897 CHECK_FOR_ERROR
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002898 }
Reid Spencer7a9c62b2007-01-12 07:05:14 +00002899 | ALLOCA Types ',' INTTYPE ValueRef OptCAlign {
Reid Spencer42f0cbe2006-12-31 05:40:51 +00002900 if (!UpRefs.empty())
2901 GEN_ERROR("Invalid upreference in type: " + (*$2)->getDescription());
Reid Spencere2c32da2006-12-03 05:46:11 +00002902 Value* tmpVal = getVal($4, $5);
Reid Spencer713eedc2006-08-18 08:43:06 +00002903 CHECK_FOR_ERROR
Reid Spencere2c32da2006-12-03 05:46:11 +00002904 $$ = new AllocaInst(*$2, tmpVal, $6);
2905 delete $2;
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002906 }
2907 | FREE ResolvedVal {
Reid Spencere2c32da2006-12-03 05:46:11 +00002908 if (!isa<PointerType>($2->getType()))
Reid Spencer713eedc2006-08-18 08:43:06 +00002909 GEN_ERROR("Trying to free nonpointer type " +
Reid Spencera7bb3e92007-02-05 10:18:06 +00002910 $2->getType()->getDescription() + "");
Reid Spencere2c32da2006-12-03 05:46:11 +00002911 $$ = new FreeInst($2);
Reid Spencer713eedc2006-08-18 08:43:06 +00002912 CHECK_FOR_ERROR
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002913 }
2914
2915 | OptVolatile LOAD Types ValueRef {
Reid Spencer42f0cbe2006-12-31 05:40:51 +00002916 if (!UpRefs.empty())
2917 GEN_ERROR("Invalid upreference in type: " + (*$3)->getDescription());
Reid Spencere2c32da2006-12-03 05:46:11 +00002918 if (!isa<PointerType>($3->get()))
Reid Spencer713eedc2006-08-18 08:43:06 +00002919 GEN_ERROR("Can't load from nonpointer type: " +
Reid Spencere2c32da2006-12-03 05:46:11 +00002920 (*$3)->getDescription());
2921 if (!cast<PointerType>($3->get())->getElementType()->isFirstClassType())
Reid Spencer713eedc2006-08-18 08:43:06 +00002922 GEN_ERROR("Can't load from pointer of non-first-class type: " +
Reid Spencere2c32da2006-12-03 05:46:11 +00002923 (*$3)->getDescription());
2924 Value* tmpVal = getVal(*$3, $4);
Reid Spencer713eedc2006-08-18 08:43:06 +00002925 CHECK_FOR_ERROR
Reid Spencer309080a2006-09-28 19:28:24 +00002926 $$ = new LoadInst(tmpVal, "", $1);
Reid Spencere2c32da2006-12-03 05:46:11 +00002927 delete $3;
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002928 }
2929 | OptVolatile STORE ResolvedVal ',' Types ValueRef {
Reid Spencer42f0cbe2006-12-31 05:40:51 +00002930 if (!UpRefs.empty())
2931 GEN_ERROR("Invalid upreference in type: " + (*$5)->getDescription());
Reid Spencere2c32da2006-12-03 05:46:11 +00002932 const PointerType *PT = dyn_cast<PointerType>($5->get());
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002933 if (!PT)
Reid Spencer713eedc2006-08-18 08:43:06 +00002934 GEN_ERROR("Can't store to a nonpointer type: " +
Reid Spencere2c32da2006-12-03 05:46:11 +00002935 (*$5)->getDescription());
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002936 const Type *ElTy = PT->getElementType();
Reid Spencere2c32da2006-12-03 05:46:11 +00002937 if (ElTy != $3->getType())
2938 GEN_ERROR("Can't store '" + $3->getType()->getDescription() +
Reid Spencera7bb3e92007-02-05 10:18:06 +00002939 "' into space of type '" + ElTy->getDescription() + "'");
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002940
Reid Spencere2c32da2006-12-03 05:46:11 +00002941 Value* tmpVal = getVal(*$5, $6);
Reid Spencer713eedc2006-08-18 08:43:06 +00002942 CHECK_FOR_ERROR
Reid Spencere2c32da2006-12-03 05:46:11 +00002943 $$ = new StoreInst($3, tmpVal, $1);
2944 delete $5;
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002945 }
2946 | GETELEMENTPTR Types ValueRef IndexList {
Reid Spencer42f0cbe2006-12-31 05:40:51 +00002947 if (!UpRefs.empty())
2948 GEN_ERROR("Invalid upreference in type: " + (*$2)->getDescription());
Reid Spencere2c32da2006-12-03 05:46:11 +00002949 if (!isa<PointerType>($2->get()))
Reid Spencera7bb3e92007-02-05 10:18:06 +00002950 GEN_ERROR("getelementptr insn requires pointer operand");
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002951
Chris Lattnerf79508f2007-02-13 00:58:01 +00002952 if (!GetElementPtrInst::getIndexedType(*$2, &(*$4)[0], $4->size(), true))
Reid Spencer713eedc2006-08-18 08:43:06 +00002953 GEN_ERROR("Invalid getelementptr indices for type '" +
Reid Spencera7bb3e92007-02-05 10:18:06 +00002954 (*$2)->getDescription()+ "'");
Reid Spencere2c32da2006-12-03 05:46:11 +00002955 Value* tmpVal = getVal(*$2, $3);
Reid Spencer713eedc2006-08-18 08:43:06 +00002956 CHECK_FOR_ERROR
Chris Lattnerf79508f2007-02-13 00:58:01 +00002957 $$ = new GetElementPtrInst(tmpVal, &(*$4)[0], $4->size());
Reid Spencere2c32da2006-12-03 05:46:11 +00002958 delete $2;
Reid Spencer309080a2006-09-28 19:28:24 +00002959 delete $4;
Chris Lattnerf20e61f2006-02-15 07:22:58 +00002960 };
2961
2962
2963%%
Reid Spencer713eedc2006-08-18 08:43:06 +00002964
Reid Spencer42f0cbe2006-12-31 05:40:51 +00002965// common code from the two 'RunVMAsmParser' functions
2966static Module* RunParser(Module * M) {
2967
2968 llvmAsmlineno = 1; // Reset the current line number...
2969 CurModule.CurrentModule = M;
2970#if YYDEBUG
2971 yydebug = Debug;
2972#endif
2973
2974 // Check to make sure the parser succeeded
2975 if (yyparse()) {
2976 if (ParserResult)
2977 delete ParserResult;
2978 return 0;
2979 }
2980
Reid Spenceref01c472007-03-30 01:37:39 +00002981 // Emit an error if there are any unresolved types left.
2982 if (!CurModule.LateResolveTypes.empty()) {
2983 const ValID &DID = CurModule.LateResolveTypes.begin()->first;
2984 if (DID.Type == ValID::LocalName) {
2985 GenerateError("Undefined type remains at eof: '"+DID.getName() + "'");
2986 } else {
2987 GenerateError("Undefined type remains at eof: #" + itostr(DID.Num));
2988 }
2989 if (ParserResult)
2990 delete ParserResult;
2991 return 0;
2992 }
2993
2994 // Emit an error if there are any unresolved values left.
2995 if (!CurModule.LateResolveValues.empty()) {
2996 Value *V = CurModule.LateResolveValues.back();
2997 std::map<Value*, std::pair<ValID, int> >::iterator I =
2998 CurModule.PlaceHolderInfo.find(V);
2999
3000 if (I != CurModule.PlaceHolderInfo.end()) {
3001 ValID &DID = I->second.first;
3002 if (DID.Type == ValID::LocalName) {
3003 GenerateError("Undefined value remains at eof: "+DID.getName() + "'");
3004 } else {
3005 GenerateError("Undefined value remains at eof: #" + itostr(DID.Num));
3006 }
3007 if (ParserResult)
3008 delete ParserResult;
3009 return 0;
3010 }
3011 }
3012
Reid Spencer42f0cbe2006-12-31 05:40:51 +00003013 // Check to make sure that parsing produced a result
3014 if (!ParserResult)
3015 return 0;
3016
3017 // Reset ParserResult variable while saving its value for the result.
3018 Module *Result = ParserResult;
3019 ParserResult = 0;
3020
3021 return Result;
3022}
3023
Reid Spencer713eedc2006-08-18 08:43:06 +00003024void llvm::GenerateError(const std::string &message, int LineNo) {
3025 if (LineNo == -1) LineNo = llvmAsmlineno;
3026 // TODO: column number in exception
3027 if (TheParseError)
3028 TheParseError->setError(CurFilename, message, LineNo);
3029 TriggerError = 1;
3030}
3031
Chris Lattnerf20e61f2006-02-15 07:22:58 +00003032int yyerror(const char *ErrorMsg) {
3033 std::string where
3034 = std::string((CurFilename == "-") ? std::string("<stdin>") : CurFilename)
3035 + ":" + utostr((unsigned) llvmAsmlineno) + ": ";
Reid Spencer3aaaa0b2007-02-05 20:47:22 +00003036 std::string errMsg = where + "error: " + std::string(ErrorMsg);
3037 if (yychar != YYEMPTY && yychar != 0)
3038 errMsg += " while reading token: '" + std::string(llvmAsmtext, llvmAsmleng)+
3039 "'";
Reid Spencer713eedc2006-08-18 08:43:06 +00003040 GenerateError(errMsg);
Chris Lattnerf20e61f2006-02-15 07:22:58 +00003041 return 0;
3042}