blob: 0936af3a4d047156e98bd60e51b095304d17ff9f [file] [log] [blame]
Chris Lattnercf3056d2003-10-13 03:32:08 +00001//===-- llvmAsmParser.y - Parser for llvm assembly files --------*- C++ -*-===//
Misha Brukman5a2a3822005-05-10 22:02:28 +00002//
John Criswell856ba762003-10-21 15:17:13 +00003// 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.
Misha Brukman5a2a3822005-05-10 22:02:28 +00007//
John Criswell856ba762003-10-21 15:17:13 +00008//===----------------------------------------------------------------------===//
Chris Lattner00950542001-06-06 20:29:01 +00009//
10// This file implements the bison parser for LLVM assembly languages files.
11//
Chris Lattnercf3056d2003-10-13 03:32:08 +000012//===----------------------------------------------------------------------===//
Chris Lattner00950542001-06-06 20:29:01 +000013
Chris Lattner00950542001-06-06 20:29:01 +000014%{
15#include "ParserInternals.h"
Chris Lattnera8e8f162005-05-06 20:27:19 +000016#include "llvm/CallingConv.h"
Chris Lattneraa2c8532006-01-25 22:26:43 +000017#include "llvm/InlineAsm.h"
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +000018#include "llvm/Instructions.h"
Chris Lattner00950542001-06-06 20:29:01 +000019#include "llvm/Module.h"
Reid Spenceref9b9a72007-02-05 20:47:22 +000020#include "llvm/ValueSymbolTable.h"
Chris Lattner830b6f92004-04-05 01:30:04 +000021#include "llvm/Support/GetElementPtrTypeIterator.h"
Reid Spencere1553cc2006-12-31 05:40:12 +000022#include "llvm/Support/CommandLine.h"
Chris Lattnere0135402007-01-31 04:43:46 +000023#include "llvm/ADT/SmallVector.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000024#include "llvm/ADT/STLExtras.h"
Chris Lattner87ac9722005-11-06 06:46:28 +000025#include "llvm/Support/MathExtras.h"
Bill Wendling3e3bcbf2006-11-28 22:47:12 +000026#include "llvm/Support/Streams.h"
Reid Spencer8ce1da72004-07-04 12:19:05 +000027#include <algorithm>
Chris Lattner00950542001-06-06 20:29:01 +000028#include <list>
Chris Lattnerc02659f2007-02-11 21:39:35 +000029#include <map>
Chris Lattnerc188eeb2002-07-30 18:54:25 +000030#include <utility>
Reid Spencere1553cc2006-12-31 05:40:12 +000031#ifndef NDEBUG
32#define YYDEBUG 1
33#endif
Chris Lattner00950542001-06-06 20:29:01 +000034
Reid Spencere4f47592006-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 Spencer61c83e02006-08-18 08:43:06 +000046static bool TriggerError = false;
Reid Spencerf63697d2006-10-09 17:36:59 +000047#define CHECK_FOR_ERROR { if (TriggerError) { TriggerError = false; YYABORT; } }
Reid Spencer61c83e02006-08-18 08:43:06 +000048#define GEN_ERROR(msg) { GenerateError(msg); YYERROR; }
49
Chris Lattner386a3b72001-10-16 19:54:17 +000050int yyerror(const char *ErrorMsg); // Forward declarations to prevent "implicit
Chris Lattner09083092001-07-08 04:57:15 +000051int yylex(); // declaration" of xxx warnings.
Chris Lattner00950542001-06-06 20:29:01 +000052int yyparse();
53
Brian Gaeked0fde302003-11-11 22:41:34 +000054namespace llvm {
Chris Lattner86427632004-07-14 06:39:48 +000055 std::string CurFilename;
Reid Spencere1553cc2006-12-31 05:40:12 +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 Lattner86427632004-07-14 06:39:48 +000061}
62using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000063
Chris Lattner00950542001-06-06 20:29:01 +000064static Module *ParserResult;
Chris Lattner00950542001-06-06 20:29:01 +000065
Chris Lattner30c89792001-09-07 16:35:17 +000066// 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 Wendlinge8156192006-12-07 01:30:32 +000071#define UR_OUT(X) cerr << X
Chris Lattner30c89792001-09-07 16:35:17 +000072#else
73#define UR_OUT(X)
74#endif
75
Vikram S. Adved3f7eb02002-07-14 22:59:28 +000076#define YYERROR_VERBOSE 1
77
Chris Lattnerb2b96672005-11-12 18:21:21 +000078static GlobalVariable *CurGV;
Andrew Lenharth558bc882005-06-18 18:34:52 +000079
80
Chris Lattner7e708292002-06-25 16:13:24 +000081// This contains info used when building the body of a function. It is
82// destroyed when the function is completed.
Chris Lattner00950542001-06-06 20:29:01 +000083//
Chris Lattner9232b992003-04-22 18:42:41 +000084typedef std::vector<Value *> ValueList; // Numbered defs
Reid Spencere1553cc2006-12-31 05:40:12 +000085
Misha Brukman5a2a3822005-05-10 22:02:28 +000086static void
Reid Spencer186a43f2007-03-19 18:39:36 +000087ResolveDefinitions(ValueList &LateResolvers, ValueList *FutureLateResolvers=0);
Chris Lattner00950542001-06-06 20:29:01 +000088
89static struct PerModuleInfo {
90 Module *CurrentModule;
Reid Spencer186a43f2007-03-19 18:39:36 +000091 ValueList Values; // Module level numbered definitions
92 ValueList LateResolveValues;
Reid Spencerb78b9082006-11-28 07:28:14 +000093 std::vector<PATypeHolder> Types;
94 std::map<ValID, PATypeHolder> LateResolveTypes;
Chris Lattner00950542001-06-06 20:29:01 +000095
Chris Lattnerbc721ed2004-07-13 08:28:21 +000096 /// PlaceHolderInfo - When temporary placeholder objects are created, remember
Reid Spencerfd20c0a2006-05-29 02:34:34 +000097 /// how they were referenced and on which line of the input they came from so
Chris Lattner22ae2322004-07-13 08:39:15 +000098 /// that we can resolve them later and print error messages as appropriate.
Chris Lattnerbc721ed2004-07-13 08:28:21 +000099 std::map<Value*, std::pair<ValID, int> > PlaceHolderInfo;
100
Chris Lattner2079fde2001-10-13 06:41:08 +0000101 // 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
Reid Spencer3271ed52004-07-18 00:08:11 +0000104 // here. This is used for forward references of GlobalValues.
Chris Lattner2079fde2001-10-13 06:41:08 +0000105 //
Chris Lattner9232b992003-04-22 18:42:41 +0000106 typedef std::map<std::pair<const PointerType *,
Chris Lattnerbc207592004-03-08 06:09:57 +0000107 ValID>, GlobalValue*> GlobalRefsType;
Chris Lattner2079fde2001-10-13 06:41:08 +0000108 GlobalRefsType GlobalRefs;
109
Chris Lattner00950542001-06-06 20:29:01 +0000110 void ModuleDone() {
Chris Lattner7e708292002-06-25 16:13:24 +0000111 // 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.
Chris Lattner30c89792001-09-07 16:35:17 +0000114 //
Chris Lattner00950542001-06-06 20:29:01 +0000115 ResolveDefinitions(LateResolveValues);
Reid Spencer5b7e7532006-09-28 19:28:24 +0000116 if (TriggerError)
117 return;
Chris Lattner00950542001-06-06 20:29:01 +0000118
Chris Lattner2079fde2001-10-13 06:41:08 +0000119 // Check to make sure that all global value forward references have been
120 // resolved!
121 //
122 if (!GlobalRefs.empty()) {
Chris Lattner9232b992003-04-22 18:42:41 +0000123 std::string UndefinedReferences = "Unresolved global references exist:\n";
Misha Brukman5a2a3822005-05-10 22:02:28 +0000124
Chris Lattner749ce032002-03-11 22:12:39 +0000125 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 Spencer61c83e02006-08-18 08:43:06 +0000130 GenerateError(UndefinedReferences);
Reid Spencer5b7e7532006-09-28 19:28:24 +0000131 return;
Chris Lattner2079fde2001-10-13 06:41:08 +0000132 }
133
Chris Lattner7e708292002-06-25 16:13:24 +0000134 Values.clear(); // Clear out function local definitions
Chris Lattner30c89792001-09-07 16:35:17 +0000135 Types.clear();
Chris Lattner00950542001-06-06 20:29:01 +0000136 CurrentModule = 0;
137 }
Chris Lattner2079fde2001-10-13 06:41:08 +0000138
Chris Lattner8a327842004-07-14 21:44:00 +0000139 // 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.
Reid Spencer863dd882007-04-28 16:06:50 +0000142 GlobalValue *GetForwardRefForGlobal(const PointerType *PTy, ValID ID) {
Chris Lattner8a327842004-07-14 21:44:00 +0000143 // 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;
Reid Spencer863dd882007-04-28 16:06:50 +0000149 GlobalRefs.erase(I);
Chris Lattner8a327842004-07-14 21:44:00 +0000150 }
151 return Ret;
152 }
Reid Spencer98b3c5c2007-01-02 21:53:43 +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 Lattner00950542001-06-06 20:29:01 +0000203} CurModule;
204
Chris Lattner79df7c02002-03-26 18:01:55 +0000205static struct PerFunctionInfo {
Chris Lattner7e708292002-06-25 16:13:24 +0000206 Function *CurrentFunction; // Pointer to current function being created
Chris Lattner00950542001-06-06 20:29:01 +0000207
Reid Spencer186a43f2007-03-19 18:39:36 +0000208 ValueList Values; // Keep track of #'d definitions
209 unsigned NextValNum;
210 ValueList LateResolveValues;
Reid Spenceref9b9a72007-02-05 20:47:22 +0000211 bool isDeclare; // Is this function a forward declararation?
Anton Korobeynikovb74ed072006-09-14 18:23:27 +0000212 GlobalValue::LinkageTypes Linkage; // Linkage for forward declaration.
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000213 GlobalValue::VisibilityTypes Visibility;
Chris Lattner00950542001-06-06 20:29:01 +0000214
Chris Lattner2e2ed292004-07-14 06:28:35 +0000215 /// BBForwardRefs - When we see forward references to basic blocks, keep
216 /// track of them here.
Reid Spencer186a43f2007-03-19 18:39:36 +0000217 std::map<ValID, BasicBlock*> BBForwardRefs;
Chris Lattner2e2ed292004-07-14 06:28:35 +0000218
Chris Lattner79df7c02002-03-26 18:01:55 +0000219 inline PerFunctionInfo() {
220 CurrentFunction = 0;
Chris Lattnere1815642001-07-15 06:35:53 +0000221 isDeclare = false;
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000222 Linkage = GlobalValue::ExternalLinkage;
223 Visibility = GlobalValue::DefaultVisibility;
Chris Lattner00950542001-06-06 20:29:01 +0000224 }
225
Chris Lattner79df7c02002-03-26 18:01:55 +0000226 inline void FunctionStart(Function *M) {
227 CurrentFunction = M;
Reid Spencer186a43f2007-03-19 18:39:36 +0000228 NextValNum = 0;
Chris Lattner00950542001-06-06 20:29:01 +0000229 }
230
Chris Lattner79df7c02002-03-26 18:01:55 +0000231 void FunctionDone() {
Chris Lattner2e2ed292004-07-14 06:28:35 +0000232 // Any forward referenced blocks left?
Reid Spencer5b7e7532006-09-28 19:28:24 +0000233 if (!BBForwardRefs.empty()) {
Reid Spencer61c83e02006-08-18 08:43:06 +0000234 GenerateError("Undefined reference to label " +
Reid Spencer186a43f2007-03-19 18:39:36 +0000235 BBForwardRefs.begin()->second->getName());
Reid Spencer5b7e7532006-09-28 19:28:24 +0000236 return;
237 }
Chris Lattner2e2ed292004-07-14 06:28:35 +0000238
239 // Resolve all forward references now.
Chris Lattner386a3b72001-10-16 19:54:17 +0000240 ResolveDefinitions(LateResolveValues, &CurModule.LateResolveValues);
Chris Lattner00950542001-06-06 20:29:01 +0000241
Chris Lattner7e708292002-06-25 16:13:24 +0000242 Values.clear(); // Clear out function local definitions
Reid Spencer186a43f2007-03-19 18:39:36 +0000243 BBForwardRefs.clear();
Chris Lattner79df7c02002-03-26 18:01:55 +0000244 CurrentFunction = 0;
Chris Lattnere1815642001-07-15 06:35:53 +0000245 isDeclare = false;
Anton Korobeynikovb74ed072006-09-14 18:23:27 +0000246 Linkage = GlobalValue::ExternalLinkage;
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000247 Visibility = GlobalValue::DefaultVisibility;
Chris Lattner00950542001-06-06 20:29:01 +0000248 }
Chris Lattner394f2eb2003-10-16 20:12:13 +0000249} CurFun; // Info for the current function...
Chris Lattner00950542001-06-06 20:29:01 +0000250
Chris Lattner394f2eb2003-10-16 20:12:13 +0000251static bool inFunctionScope() { return CurFun.CurrentFunction != 0; }
Chris Lattnerb7474512001-10-03 15:39:04 +0000252
Chris Lattner00950542001-06-06 20:29:01 +0000253
254//===----------------------------------------------------------------------===//
255// Code to handle definitions of all the types
256//===----------------------------------------------------------------------===//
257
Reid Spencer186a43f2007-03-19 18:39:36 +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 Lattner2079fde2001-10-13 06:41:08 +0000262
Reid Spencer186a43f2007-03-19 18:39:36 +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 Lattner00950542001-06-06 20:29:01 +0000275}
276
Chris Lattner30c89792001-09-07 16:35:17 +0000277static const Type *getTypeVal(const ValID &D, bool DoNotImprovise = false) {
Chris Lattner00950542001-06-06 20:29:01 +0000278 switch (D.Type) {
Reid Spencerb2d17862007-01-26 08:04:51 +0000279 case ValID::LocalID: // Is it a numbered definition?
Chris Lattner30c89792001-09-07 16:35:17 +0000280 // Module constants occupy the lowest numbered slots...
Reid Spencerb2d17862007-01-26 08:04:51 +0000281 if (D.Num < CurModule.Types.size())
282 return CurModule.Types[D.Num];
Chris Lattner42c9e772001-10-20 09:32:59 +0000283 break;
Reid Spencerb2d17862007-01-26 08:04:51 +0000284 case ValID::LocalName: // Is it a named definition?
Reid Spencer6ecdcc12007-05-22 18:52:21 +0000285 if (const Type *N = CurModule.CurrentModule->getTypeByName(D.getName())) {
Chris Lattnera09000d2004-07-14 23:03:46 +0000286 D.destroy(); // Free old strdup'd memory...
287 return N;
Chris Lattner6e6026b2002-11-20 18:36:02 +0000288 }
Chris Lattnera09000d2004-07-14 23:03:46 +0000289 break;
Chris Lattner30c89792001-09-07 16:35:17 +0000290 default:
Reid Spencerf4fa5902007-02-05 10:16:10 +0000291 GenerateError("Internal parser error: Invalid symbol type reference");
Reid Spencer5b7e7532006-09-28 19:28:24 +0000292 return 0;
Chris Lattner30c89792001-09-07 16:35:17 +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
Chris Lattner355ad1f2005-03-21 06:27:42 +0000301
302 if (inFunctionScope()) {
Reid Spencerb2d17862007-01-26 08:04:51 +0000303 if (D.Type == ValID::LocalName) {
Reid Spencer61c83e02006-08-18 08:43:06 +0000304 GenerateError("Reference to an undefined type: '" + D.getName() + "'");
Reid Spencer5b7e7532006-09-28 19:28:24 +0000305 return 0;
306 } else {
Reid Spencerb2d17862007-01-26 08:04:51 +0000307 GenerateError("Reference to an undefined type: #" + utostr(D.Num));
Reid Spencer5b7e7532006-09-28 19:28:24 +0000308 return 0;
309 }
Chris Lattner4a42e902001-10-22 05:56:09 +0000310 }
Chris Lattner30c89792001-09-07 16:35:17 +0000311
Reid Spencerb78b9082006-11-28 07:28:14 +0000312 std::map<ValID, PATypeHolder>::iterator I =CurModule.LateResolveTypes.find(D);
Chris Lattner355ad1f2005-03-21 06:27:42 +0000313 if (I != CurModule.LateResolveTypes.end())
Reid Spencerb78b9082006-11-28 07:28:14 +0000314 return I->second;
Chris Lattner355ad1f2005-03-21 06:27:42 +0000315
Reid Spencerb78b9082006-11-28 07:28:14 +0000316 Type *Typ = OpaqueType::get();
317 CurModule.LateResolveTypes.insert(std::make_pair(D, Typ));
318 return Typ;
Reid Spencer08de34b2006-12-03 05:45:44 +0000319 }
Chris Lattner30c89792001-09-07 16:35:17 +0000320
Reid Spencer186a43f2007-03-19 18:39:36 +0000321// getExistingVal - Look up the value specified by the provided type and
Chris Lattner2079fde2001-10-13 06:41:08 +0000322// the provided ValID. If the value exists and has already been defined, return
323// it. Otherwise return null.
324//
Reid Spencer186a43f2007-03-19 18:39:36 +0000325static Value *getExistingVal(const Type *Ty, const ValID &D) {
Reid Spencer5b7e7532006-09-28 19:28:24 +0000326 if (isa<FunctionType>(Ty)) {
Reid Spencer61c83e02006-08-18 08:43:06 +0000327 GenerateError("Functions are not values and "
Chris Lattner79df7c02002-03-26 18:01:55 +0000328 "must be referenced as pointers");
Reid Spencer5b7e7532006-09-28 19:28:24 +0000329 return 0;
330 }
Chris Lattner386a3b72001-10-16 19:54:17 +0000331
Chris Lattner30c89792001-09-07 16:35:17 +0000332 switch (D.Type) {
Reid Spencerb2d17862007-01-26 08:04:51 +0000333 case ValID::LocalID: { // Is it a numbered definition?
Reid Spencerb2d17862007-01-26 08:04:51 +0000334 // Check that the number is within bounds.
Reid Spencer186a43f2007-03-19 18:39:36 +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 Spencerb2d17862007-01-26 08:04:51 +0000345 }
346 case ValID::GlobalID: { // Is it a numbered definition?
Reid Spencer186a43f2007-03-19 18:39:36 +0000347 if (D.Num >= CurModule.Values.size())
Reid Spenceref9b9a72007-02-05 20:47:22 +0000348 return 0;
Reid Spencer186a43f2007-03-19 18:39:36 +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 Spenceref9b9a72007-02-05 20:47:22 +0000354 return 0;
Reid Spencer186a43f2007-03-19 18:39:36 +0000355 }
356 return Result;
Chris Lattner00950542001-06-06 20:29:01 +0000357 }
Reid Spencerb2d17862007-01-26 08:04:51 +0000358
359 case ValID::LocalName: { // Is it a named definition?
Reid Spenceref9b9a72007-02-05 20:47:22 +0000360 if (!inFunctionScope())
361 return 0;
362 ValueSymbolTable &SymTab = CurFun.CurrentFunction->getValueSymbolTable();
Reid Spencer6ecdcc12007-05-22 18:52:21 +0000363 Value *N = SymTab.lookup(D.getName());
Reid Spenceref9b9a72007-02-05 20:47:22 +0000364 if (N == 0)
365 return 0;
366 if (N->getType() != Ty)
367 return 0;
Reid Spencerb2d17862007-01-26 08:04:51 +0000368
369 D.destroy(); // Free old strdup'd memory...
370 return N;
371 }
372 case ValID::GlobalName: { // Is it a named definition?
Reid Spenceref9b9a72007-02-05 20:47:22 +0000373 ValueSymbolTable &SymTab = CurModule.CurrentModule->getValueSymbolTable();
Reid Spencer6ecdcc12007-05-22 18:52:21 +0000374 Value *N = SymTab.lookup(D.getName());
Reid Spenceref9b9a72007-02-05 20:47:22 +0000375 if (N == 0)
376 return 0;
377 if (N->getType() != Ty)
378 return 0;
Chris Lattner00950542001-06-06 20:29:01 +0000379
380 D.destroy(); // Free old strdup'd memory...
381 return N;
382 }
383
Misha Brukman5a2a3822005-05-10 22:02:28 +0000384 // Check to make sure that "Ty" is an integral type, and that our
Chris Lattner2079fde2001-10-13 06:41:08 +0000385 // value will fit into the specified type...
386 case ValID::ConstSIntVal: // Is it a constant pool reference??
Reid Spencerb83eb642006-10-20 07:07:24 +0000387 if (!ConstantInt::isValueValidForType(Ty, D.ConstPool64)) {
Reid Spencer61c83e02006-08-18 08:43:06 +0000388 GenerateError("Signed integral constant '" +
Misha Brukman5a2a3822005-05-10 22:02:28 +0000389 itostr(D.ConstPool64) + "' is invalid for type '" +
Reid Spencerf4fa5902007-02-05 10:16:10 +0000390 Ty->getDescription() + "'");
Reid Spencer5b7e7532006-09-28 19:28:24 +0000391 return 0;
392 }
Reid Spencereac65742007-03-19 20:40:22 +0000393 return ConstantInt::get(Ty, D.ConstPool64, true);
Chris Lattner2079fde2001-10-13 06:41:08 +0000394
395 case ValID::ConstUIntVal: // Is it an unsigned const pool reference?
Reid Spencerb83eb642006-10-20 07:07:24 +0000396 if (!ConstantInt::isValueValidForType(Ty, D.UConstPool64)) {
397 if (!ConstantInt::isValueValidForType(Ty, D.ConstPool64)) {
Reid Spencer61c83e02006-08-18 08:43:06 +0000398 GenerateError("Integral constant '" + utostr(D.UConstPool64) +
Reid Spencerf4fa5902007-02-05 10:16:10 +0000399 "' is invalid or out of range");
Reid Spencer5b7e7532006-09-28 19:28:24 +0000400 return 0;
Chris Lattner2079fde2001-10-13 06:41:08 +0000401 } else { // This is really a signed reference. Transmogrify.
Reid Spencereac65742007-03-19 20:40:22 +0000402 return ConstantInt::get(Ty, D.ConstPool64, true);
Chris Lattner2079fde2001-10-13 06:41:08 +0000403 }
404 } else {
Reid Spencerb83eb642006-10-20 07:07:24 +0000405 return ConstantInt::get(Ty, D.UConstPool64);
Chris Lattner2079fde2001-10-13 06:41:08 +0000406 }
407
Chris Lattner2079fde2001-10-13 06:41:08 +0000408 case ValID::ConstFPVal: // Is it a floating point const pool reference?
Reid Spencer5b7e7532006-09-28 19:28:24 +0000409 if (!ConstantFP::isValueValidForType(Ty, D.ConstPoolFP)) {
Reid Spencerf4fa5902007-02-05 10:16:10 +0000410 GenerateError("FP constant invalid for type");
Reid Spencer5b7e7532006-09-28 19:28:24 +0000411 return 0;
412 }
Chris Lattnere9bb2df2001-12-03 22:26:30 +0000413 return ConstantFP::get(Ty, D.ConstPoolFP);
Misha Brukman5a2a3822005-05-10 22:02:28 +0000414
Chris Lattner2079fde2001-10-13 06:41:08 +0000415 case ValID::ConstNullVal: // Is it a null value?
Reid Spencer5b7e7532006-09-28 19:28:24 +0000416 if (!isa<PointerType>(Ty)) {
Reid Spencerf4fa5902007-02-05 10:16:10 +0000417 GenerateError("Cannot create a a non pointer null");
Reid Spencer5b7e7532006-09-28 19:28:24 +0000418 return 0;
419 }
Chris Lattnere9bb2df2001-12-03 22:26:30 +0000420 return ConstantPointerNull::get(cast<PointerType>(Ty));
Misha Brukman5a2a3822005-05-10 22:02:28 +0000421
Chris Lattner16710e92004-10-16 18:17:13 +0000422 case ValID::ConstUndefVal: // Is it an undef value?
423 return UndefValue::get(Ty);
Misha Brukman5a2a3822005-05-10 22:02:28 +0000424
Chris Lattnerf1f03df2005-12-21 17:53:02 +0000425 case ValID::ConstZeroVal: // Is it a zero value?
426 return Constant::getNullValue(Ty);
427
Chris Lattnerd78700d2002-08-16 21:14:40 +0000428 case ValID::ConstantVal: // Fully resolved constant?
Reid Spencer5b7e7532006-09-28 19:28:24 +0000429 if (D.ConstantValue->getType() != Ty) {
Reid Spencerf4fa5902007-02-05 10:16:10 +0000430 GenerateError("Constant expression type different from required type");
Reid Spencer5b7e7532006-09-28 19:28:24 +0000431 return 0;
432 }
Chris Lattnerd78700d2002-08-16 21:14:40 +0000433 return D.ConstantValue;
434
Chris Lattneraa2c8532006-01-25 22:26:43 +0000435 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 Spencer5b7e7532006-09-28 19:28:24 +0000439 if (!FTy || !InlineAsm::Verify(FTy, D.IAD->Constraints)) {
Reid Spencerf4fa5902007-02-05 10:16:10 +0000440 GenerateError("Invalid type for asm constraint string");
Reid Spencer5b7e7532006-09-28 19:28:24 +0000441 return 0;
442 }
Chris Lattneraa2c8532006-01-25 22:26:43 +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 }
Chris Lattner30c89792001-09-07 16:35:17 +0000448 default:
Reid Spencer1755a9a2007-02-05 17:01:20 +0000449 assert(0 && "Unhandled case!");
Chris Lattner2079fde2001-10-13 06:41:08 +0000450 return 0;
Chris Lattner00950542001-06-06 20:29:01 +0000451 } // End of switch
452
Reid Spencer1755a9a2007-02-05 17:01:20 +0000453 assert(0 && "Unhandled case!");
Chris Lattner2079fde2001-10-13 06:41:08 +0000454 return 0;
455}
456
Reid Spencer186a43f2007-03-19 18:39:36 +0000457// getVal - This function is identical to getExistingVal, except that if a
Chris Lattner2079fde2001-10-13 06:41:08 +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//
Chris Lattner64116f92004-07-14 01:33:11 +0000463static Value *getVal(const Type *Ty, const ValID &ID) {
Reid Spencer5b7e7532006-09-28 19:28:24 +0000464 if (Ty == Type::LabelTy) {
Reid Spencer61c83e02006-08-18 08:43:06 +0000465 GenerateError("Cannot use a basic block here");
Reid Spencer5b7e7532006-09-28 19:28:24 +0000466 return 0;
467 }
Chris Lattner2079fde2001-10-13 06:41:08 +0000468
Chris Lattner64116f92004-07-14 01:33:11 +0000469 // See if the value has already been defined.
Reid Spencer186a43f2007-03-19 18:39:36 +0000470 Value *V = getExistingVal(Ty, ID);
Chris Lattner2079fde2001-10-13 06:41:08 +0000471 if (V) return V;
Reid Spencer5b7e7532006-09-28 19:28:24 +0000472 if (TriggerError) return 0;
Chris Lattner00950542001-06-06 20:29:01 +0000473
Reid Spencer5b7e7532006-09-28 19:28:24 +0000474 if (!Ty->isFirstClassType() && !isa<OpaqueType>(Ty)) {
Reid Spencerf4fa5902007-02-05 10:16:10 +0000475 GenerateError("Invalid use of a composite type");
Reid Spencer5b7e7532006-09-28 19:28:24 +0000476 return 0;
477 }
Chris Lattner60cd9552005-03-23 01:29:26 +0000478
Chris Lattner00950542001-06-06 20:29:01 +0000479 // 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 //
Anton Korobeynikova80e1182007-04-28 13:45:00 +0000483 switch (ID.Type) {
484 case ValID::GlobalName:
Reid Spencer3cb4dda2007-04-28 14:13:42 +0000485 case ValID::GlobalID: {
Anton Korobeynikova80e1182007-04-28 13:45:00 +0000486 const PointerType *PTy = dyn_cast<PointerType>(Ty);
487 if (!PTy) {
488 GenerateError("Invalid type for reference to global" );
489 return 0;
490 }
491 const Type* ElTy = PTy->getElementType();
492 if (const FunctionType *FTy = dyn_cast<FunctionType>(ElTy))
493 V = new Function(FTy, GlobalValue::ExternalLinkage);
494 else
495 V = new GlobalVariable(ElTy, false, GlobalValue::ExternalLinkage);
496 break;
Reid Spencer3cb4dda2007-04-28 14:13:42 +0000497 }
Anton Korobeynikova80e1182007-04-28 13:45:00 +0000498 default:
499 V = new Argument(Ty);
500 }
501
Chris Lattnerbc721ed2004-07-13 08:28:21 +0000502 // Remember where this forward reference came from. FIXME, shouldn't we try
503 // to recycle these things??
Chris Lattner64116f92004-07-14 01:33:11 +0000504 CurModule.PlaceHolderInfo.insert(std::make_pair(V, std::make_pair(ID,
Chris Lattnerbc721ed2004-07-13 08:28:21 +0000505 llvmAsmlineno)));
506
Chris Lattner79df7c02002-03-26 18:01:55 +0000507 if (inFunctionScope())
Chris Lattnerbc721ed2004-07-13 08:28:21 +0000508 InsertValue(V, CurFun.LateResolveValues);
Misha Brukman5a2a3822005-05-10 22:02:28 +0000509 else
Chris Lattnerbc721ed2004-07-13 08:28:21 +0000510 InsertValue(V, CurModule.LateResolveValues);
511 return V;
Chris Lattner00950542001-06-06 20:29:01 +0000512}
513
Reid Spencer186a43f2007-03-19 18:39:36 +0000514/// defineBBVal - This is a definition of a new basic block with the specified
515/// identifier which must be the same as CurFun.NextValNum, if its numeric.
516static BasicBlock *defineBBVal(const ValID &ID) {
Reid Spencer1755a9a2007-02-05 17:01:20 +0000517 assert(inFunctionScope() && "Can't get basic block at global scope!");
Chris Lattner64116f92004-07-14 01:33:11 +0000518
Chris Lattner2e2ed292004-07-14 06:28:35 +0000519 BasicBlock *BB = 0;
Chris Lattner64116f92004-07-14 01:33:11 +0000520
Reid Spencer186a43f2007-03-19 18:39:36 +0000521 // First, see if this was forward referenced
Chris Lattner64116f92004-07-14 01:33:11 +0000522
Reid Spencer186a43f2007-03-19 18:39:36 +0000523 std::map<ValID, BasicBlock*>::iterator BBI = CurFun.BBForwardRefs.find(ID);
524 if (BBI != CurFun.BBForwardRefs.end()) {
525 BB = BBI->second;
Chris Lattner2e2ed292004-07-14 06:28:35 +0000526 // The forward declaration could have been inserted anywhere in the
527 // function: insert it into the correct place now.
528 CurFun.CurrentFunction->getBasicBlockList().remove(BB);
529 CurFun.CurrentFunction->getBasicBlockList().push_back(BB);
Reid Spencer186a43f2007-03-19 18:39:36 +0000530
Reid Spencer2c9df212007-03-20 01:13:00 +0000531 // We're about to erase the entry, save the key so we can clean it up.
532 ValID Tmp = BBI->first;
533
Reid Spencer186a43f2007-03-19 18:39:36 +0000534 // Erase the forward ref from the map as its no longer "forward"
535 CurFun.BBForwardRefs.erase(ID);
536
Reid Spencer2c9df212007-03-20 01:13:00 +0000537 // The key has been removed from the map but so we don't want to leave
538 // strdup'd memory around so destroy it too.
539 Tmp.destroy();
540
Reid Spencer186a43f2007-03-19 18:39:36 +0000541 // If its a numbered definition, bump the number and set the BB value.
542 if (ID.Type == ValID::LocalID) {
543 assert(ID.Num == CurFun.NextValNum && "Invalid new block number");
544 InsertValue(BB);
545 }
546
547 ID.destroy();
548 return BB;
549 }
550
551 // We haven't seen this BB before and its first mention is a definition.
552 // Just create it and return it.
Reid Spencer6ecdcc12007-05-22 18:52:21 +0000553 std::string Name (ID.Type == ValID::LocalName ? ID.getName() : "");
Reid Spencer186a43f2007-03-19 18:39:36 +0000554 BB = new BasicBlock(Name, CurFun.CurrentFunction);
555 if (ID.Type == ValID::LocalID) {
556 assert(ID.Num == CurFun.NextValNum && "Invalid new block number");
557 InsertValue(BB);
Chris Lattner2e2ed292004-07-14 06:28:35 +0000558 }
Reid Spencer186a43f2007-03-19 18:39:36 +0000559
560 ID.destroy(); // Free strdup'd memory
561 return BB;
562}
563
564/// getBBVal - get an existing BB value or create a forward reference for it.
565///
566static BasicBlock *getBBVal(const ValID &ID) {
567 assert(inFunctionScope() && "Can't get basic block at global scope!");
568
569 BasicBlock *BB = 0;
570
571 std::map<ValID, BasicBlock*>::iterator BBI = CurFun.BBForwardRefs.find(ID);
572 if (BBI != CurFun.BBForwardRefs.end()) {
573 BB = BBI->second;
574 } if (ID.Type == ValID::LocalName) {
Reid Spencer6ecdcc12007-05-22 18:52:21 +0000575 std::string Name = ID.getName();
Reid Spencer186a43f2007-03-19 18:39:36 +0000576 Value *N = CurFun.CurrentFunction->getValueSymbolTable().lookup(Name);
577 if (N)
578 if (N->getType()->getTypeID() == Type::LabelTyID)
579 BB = cast<BasicBlock>(N);
580 else
581 GenerateError("Reference to label '" + Name + "' is actually of type '"+
582 N->getType()->getDescription() + "'");
583 } else if (ID.Type == ValID::LocalID) {
584 if (ID.Num < CurFun.NextValNum && ID.Num < CurFun.Values.size()) {
585 if (CurFun.Values[ID.Num]->getType()->getTypeID() == Type::LabelTyID)
586 BB = cast<BasicBlock>(CurFun.Values[ID.Num]);
587 else
588 GenerateError("Reference to label '%" + utostr(ID.Num) +
589 "' is actually of type '"+
590 CurFun.Values[ID.Num]->getType()->getDescription() + "'");
591 }
592 } else {
593 GenerateError("Illegal label reference " + ID.getName());
594 return 0;
595 }
596
597 // If its already been defined, return it now.
598 if (BB) {
599 ID.destroy(); // Free strdup'd memory.
600 return BB;
601 }
602
603 // Otherwise, this block has not been seen before, create it.
604 std::string Name;
605 if (ID.Type == ValID::LocalName)
Reid Spencer6ecdcc12007-05-22 18:52:21 +0000606 Name = ID.getName();
Reid Spencer186a43f2007-03-19 18:39:36 +0000607 BB = new BasicBlock(Name, CurFun.CurrentFunction);
608
609 // Insert it in the forward refs map.
610 CurFun.BBForwardRefs[ID] = BB;
611
Chris Lattner64116f92004-07-14 01:33:11 +0000612 return BB;
613}
614
Chris Lattner00950542001-06-06 20:29:01 +0000615
616//===----------------------------------------------------------------------===//
617// Code to handle forward references in instructions
618//===----------------------------------------------------------------------===//
619//
620// This code handles the late binding needed with statements that reference
621// values not defined yet... for example, a forward branch, or the PHI node for
622// a loop body.
623//
Chris Lattner394f2eb2003-10-16 20:12:13 +0000624// This keeps a table (CurFun.LateResolveValues) of all such forward references
Chris Lattner00950542001-06-06 20:29:01 +0000625// and back patchs after we are done.
626//
627
Misha Brukman5a2a3822005-05-10 22:02:28 +0000628// ResolveDefinitions - If we could not resolve some defs at parsing
629// time (forward branches, phi functions for loops, etc...) resolve the
Chris Lattner00950542001-06-06 20:29:01 +0000630// defs now...
631//
Misha Brukman5a2a3822005-05-10 22:02:28 +0000632static void
Reid Spencer186a43f2007-03-19 18:39:36 +0000633ResolveDefinitions(ValueList &LateResolvers, ValueList *FutureLateResolvers) {
Chris Lattner00950542001-06-06 20:29:01 +0000634 // Loop over LateResolveDefs fixing up stuff that couldn't be resolved
Reid Spencer186a43f2007-03-19 18:39:36 +0000635 while (!LateResolvers.empty()) {
636 Value *V = LateResolvers.back();
637 LateResolvers.pop_back();
Chris Lattnerbc721ed2004-07-13 08:28:21 +0000638
Reid Spencer186a43f2007-03-19 18:39:36 +0000639 std::map<Value*, std::pair<ValID, int> >::iterator PHI =
640 CurModule.PlaceHolderInfo.find(V);
641 assert(PHI != CurModule.PlaceHolderInfo.end() && "Placeholder error!");
Chris Lattnerbc721ed2004-07-13 08:28:21 +0000642
Reid Spencer186a43f2007-03-19 18:39:36 +0000643 ValID &DID = PHI->second.first;
Chris Lattner00950542001-06-06 20:29:01 +0000644
Reid Spencer186a43f2007-03-19 18:39:36 +0000645 Value *TheRealValue = getExistingVal(V->getType(), DID);
646 if (TriggerError)
647 return;
648 if (TheRealValue) {
649 V->replaceAllUsesWith(TheRealValue);
650 delete V;
651 CurModule.PlaceHolderInfo.erase(PHI);
652 } else if (FutureLateResolvers) {
653 // Functions have their unresolved items forwarded to the module late
654 // resolver table
655 InsertValue(V, *FutureLateResolvers);
656 } else {
657 if (DID.Type == ValID::LocalName || DID.Type == ValID::GlobalName) {
658 GenerateError("Reference to an invalid definition: '" +DID.getName()+
659 "' of type '" + V->getType()->getDescription() + "'",
660 PHI->second.second);
Reid Spencer5b7e7532006-09-28 19:28:24 +0000661 return;
Chris Lattner386a3b72001-10-16 19:54:17 +0000662 } else {
Reid Spencer186a43f2007-03-19 18:39:36 +0000663 GenerateError("Reference to an invalid definition: #" +
664 itostr(DID.Num) + " of type '" +
665 V->getType()->getDescription() + "'",
666 PHI->second.second);
667 return;
Chris Lattner30c89792001-09-07 16:35:17 +0000668 }
Chris Lattner00950542001-06-06 20:29:01 +0000669 }
670 }
Chris Lattner00950542001-06-06 20:29:01 +0000671 LateResolvers.clear();
672}
673
Chris Lattner4a42e902001-10-22 05:56:09 +0000674// ResolveTypeTo - A brand new type was just declared. This means that (if
675// name is not null) things referencing Name can be resolved. Otherwise, things
676// refering to the number can be resolved. Do this now.
Chris Lattner00950542001-06-06 20:29:01 +0000677//
Reid Spencer6ecdcc12007-05-22 18:52:21 +0000678static void ResolveTypeTo(std::string *Name, const Type *ToTy) {
Chris Lattner355ad1f2005-03-21 06:27:42 +0000679 ValID D;
Reid Spencer6ecdcc12007-05-22 18:52:21 +0000680 if (Name)
681 D = ValID::createLocalName(*Name);
682 else
683 D = ValID::createLocalID(CurModule.Types.size());
Chris Lattner00950542001-06-06 20:29:01 +0000684
Reid Spencerb78b9082006-11-28 07:28:14 +0000685 std::map<ValID, PATypeHolder>::iterator I =
Chris Lattner355ad1f2005-03-21 06:27:42 +0000686 CurModule.LateResolveTypes.find(D);
687 if (I != CurModule.LateResolveTypes.end()) {
Reid Spencerb78b9082006-11-28 07:28:14 +0000688 ((DerivedType*)I->second.get())->refineAbstractTypeTo(ToTy);
Chris Lattner355ad1f2005-03-21 06:27:42 +0000689 CurModule.LateResolveTypes.erase(I);
Chris Lattner30c89792001-09-07 16:35:17 +0000690 }
691}
692
Chris Lattner1781aca2001-09-18 04:00:54 +0000693// setValueName - Set the specified value to the name given. The name may be
694// null potentially, in which case this is a noop. The string passed in is
Chris Lattner8ab406d2004-07-13 07:59:27 +0000695// assumed to be a malloc'd string buffer, and is free'd by this function.
696//
Reid Spencer6ecdcc12007-05-22 18:52:21 +0000697static void setValueName(Value *V, std::string *NameStr) {
Reid Spencerb2d17862007-01-26 08:04:51 +0000698 if (!NameStr) return;
Reid Spencer6ecdcc12007-05-22 18:52:21 +0000699 std::string Name(*NameStr); // Copy string
700 delete NameStr; // Free old string
Chris Lattnerc9aea522004-07-13 08:12:39 +0000701
Reid Spencerb2d17862007-01-26 08:04:51 +0000702 if (V->getType() == Type::VoidTy) {
Reid Spencerf4fa5902007-02-05 10:16:10 +0000703 GenerateError("Can't assign name '" + Name+"' to value with void type");
Reid Spencerb2d17862007-01-26 08:04:51 +0000704 return;
Chris Lattner8ab406d2004-07-13 07:59:27 +0000705 }
Reid Spencerb2d17862007-01-26 08:04:51 +0000706
Reid Spencer1755a9a2007-02-05 17:01:20 +0000707 assert(inFunctionScope() && "Must be in function scope!");
Reid Spenceref9b9a72007-02-05 20:47:22 +0000708 ValueSymbolTable &ST = CurFun.CurrentFunction->getValueSymbolTable();
709 if (ST.lookup(Name)) {
Reid Spencerb2d17862007-01-26 08:04:51 +0000710 GenerateError("Redefinition of value '" + Name + "' of type '" +
Reid Spencerf4fa5902007-02-05 10:16:10 +0000711 V->getType()->getDescription() + "'");
Reid Spencerb2d17862007-01-26 08:04:51 +0000712 return;
713 }
714
715 // Set the name.
716 V->setName(Name);
Chris Lattner8ab406d2004-07-13 07:59:27 +0000717}
718
Chris Lattnerd88998d2004-07-14 08:23:52 +0000719/// ParseGlobalVariable - Handle parsing of a global. If Initializer is null,
720/// this is a declaration, otherwise it is a definition.
Chris Lattnerb2b96672005-11-12 18:21:21 +0000721static GlobalVariable *
Reid Spencer6ecdcc12007-05-22 18:52:21 +0000722ParseGlobalVariable(std::string *NameStr,
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000723 GlobalValue::LinkageTypes Linkage,
724 GlobalValue::VisibilityTypes Visibility,
Chris Lattnerb2b96672005-11-12 18:21:21 +0000725 bool isConstantGlobal, const Type *Ty,
Lauro Ramos Venancioc7635522007-04-12 18:32:50 +0000726 Constant *Initializer, bool IsThreadLocal) {
Reid Spencer5b7e7532006-09-28 19:28:24 +0000727 if (isa<FunctionType>(Ty)) {
Reid Spencerf4fa5902007-02-05 10:16:10 +0000728 GenerateError("Cannot declare global vars of function type");
Reid Spencer5b7e7532006-09-28 19:28:24 +0000729 return 0;
730 }
Chris Lattnercb9d6a82004-07-14 20:42:57 +0000731
Misha Brukman5a2a3822005-05-10 22:02:28 +0000732 const PointerType *PTy = PointerType::get(Ty);
Chris Lattnera09000d2004-07-14 23:03:46 +0000733
Chris Lattnercb9d6a82004-07-14 20:42:57 +0000734 std::string Name;
735 if (NameStr) {
Reid Spencer6ecdcc12007-05-22 18:52:21 +0000736 Name = *NameStr; // Copy string
737 delete NameStr; // Free old string
Chris Lattnerd88998d2004-07-14 08:23:52 +0000738 }
Chris Lattnercb9d6a82004-07-14 20:42:57 +0000739
Chris Lattner8a327842004-07-14 21:44:00 +0000740 // See if this global value was forward referenced. If so, recycle the
741 // object.
Misha Brukman5a2a3822005-05-10 22:02:28 +0000742 ValID ID;
Chris Lattner8a327842004-07-14 21:44:00 +0000743 if (!Name.empty()) {
Reid Spencer6ecdcc12007-05-22 18:52:21 +0000744 ID = ValID::createGlobalName(Name);
Chris Lattnercb9d6a82004-07-14 20:42:57 +0000745 } else {
Reid Spencer186a43f2007-03-19 18:39:36 +0000746 ID = ValID::createGlobalID(CurModule.Values.size());
Chris Lattner8a327842004-07-14 21:44:00 +0000747 }
748
Reid Spencer863dd882007-04-28 16:06:50 +0000749 if (GlobalValue *FWGV = CurModule.GetForwardRefForGlobal(PTy, ID)) {
Misha Brukman5a2a3822005-05-10 22:02:28 +0000750 // Move the global to the end of the list, from whereever it was
Chris Lattner8a327842004-07-14 21:44:00 +0000751 // previously inserted.
752 GlobalVariable *GV = cast<GlobalVariable>(FWGV);
753 CurModule.CurrentModule->getGlobalList().remove(GV);
754 CurModule.CurrentModule->getGlobalList().push_back(GV);
755 GV->setInitializer(Initializer);
756 GV->setLinkage(Linkage);
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000757 GV->setVisibility(Visibility);
Chris Lattner8a327842004-07-14 21:44:00 +0000758 GV->setConstant(isConstantGlobal);
Lauro Ramos Venancioc7635522007-04-12 18:32:50 +0000759 GV->setThreadLocal(IsThreadLocal);
Chris Lattnera2d4b3c2004-07-16 01:18:09 +0000760 InsertValue(GV, CurModule.Values);
Chris Lattnerb2b96672005-11-12 18:21:21 +0000761 return GV;
Chris Lattnercb9d6a82004-07-14 20:42:57 +0000762 }
Chris Lattnera09000d2004-07-14 23:03:46 +0000763
Reid Spenceref9b9a72007-02-05 20:47:22 +0000764 // If this global has a name
Chris Lattnera09000d2004-07-14 23:03:46 +0000765 if (!Name.empty()) {
Reid Spenceref9b9a72007-02-05 20:47:22 +0000766 // if the global we're parsing has an initializer (is a definition) and
767 // has external linkage.
768 if (Initializer && Linkage != GlobalValue::InternalLinkage)
769 // If there is already a global with external linkage with this name
770 if (CurModule.CurrentModule->getGlobalVariable(Name, false)) {
771 // If we allow this GVar to get created, it will be renamed in the
772 // symbol table because it conflicts with an existing GVar. We can't
773 // allow redefinition of GVars whose linking indicates that their name
774 // must stay the same. Issue the error.
775 GenerateError("Redefinition of global variable named '" + Name +
776 "' of type '" + Ty->getDescription() + "'");
777 return 0;
778 }
Chris Lattnera09000d2004-07-14 23:03:46 +0000779 }
780
781 // Otherwise there is no existing GV to use, create one now.
Chris Lattnera2d4b3c2004-07-16 01:18:09 +0000782 GlobalVariable *GV =
Misha Brukman5a2a3822005-05-10 22:02:28 +0000783 new GlobalVariable(Ty, isConstantGlobal, Linkage, Initializer, Name,
Lauro Ramos Venancioc7635522007-04-12 18:32:50 +0000784 CurModule.CurrentModule, IsThreadLocal);
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000785 GV->setVisibility(Visibility);
Chris Lattnera2d4b3c2004-07-16 01:18:09 +0000786 InsertValue(GV, CurModule.Values);
Chris Lattnerb2b96672005-11-12 18:21:21 +0000787 return GV;
Chris Lattnerd88998d2004-07-14 08:23:52 +0000788}
Chris Lattner8ab406d2004-07-13 07:59:27 +0000789
Reid Spencer75719bf2004-05-26 21:48:31 +0000790// setTypeName - Set the specified type to the name given. The name may be
791// null potentially, in which case this is a noop. The string passed in is
792// assumed to be a malloc'd string buffer, and is freed by this function.
793//
794// This function returns true if the type has already been defined, but is
795// allowed to be redefined in the specified context. If the name is a new name
796// for the type plane, it is inserted and false is returned.
Reid Spencer6ecdcc12007-05-22 18:52:21 +0000797static bool setTypeName(const Type *T, std::string *NameStr) {
Reid Spencer1755a9a2007-02-05 17:01:20 +0000798 assert(!inFunctionScope() && "Can't give types function-local names!");
Reid Spencer75719bf2004-05-26 21:48:31 +0000799 if (NameStr == 0) return false;
Misha Brukman5a2a3822005-05-10 22:02:28 +0000800
Reid Spencer6ecdcc12007-05-22 18:52:21 +0000801 std::string Name(*NameStr); // Copy string
802 delete NameStr; // Free old string
Reid Spencer75719bf2004-05-26 21:48:31 +0000803
804 // We don't allow assigning names to void type
Reid Spencer5b7e7532006-09-28 19:28:24 +0000805 if (T == Type::VoidTy) {
Reid Spencerf4fa5902007-02-05 10:16:10 +0000806 GenerateError("Can't assign name '" + Name + "' to the void type");
Reid Spencer5b7e7532006-09-28 19:28:24 +0000807 return false;
808 }
Reid Spencer75719bf2004-05-26 21:48:31 +0000809
Chris Lattnera09000d2004-07-14 23:03:46 +0000810 // Set the type name, checking for conflicts as we do so.
811 bool AlreadyExists = CurModule.CurrentModule->addTypeName(Name, T);
Reid Spencer75719bf2004-05-26 21:48:31 +0000812
Chris Lattnera09000d2004-07-14 23:03:46 +0000813 if (AlreadyExists) { // Inserting a name that is already defined???
814 const Type *Existing = CurModule.CurrentModule->getTypeByName(Name);
Reid Spencer1755a9a2007-02-05 17:01:20 +0000815 assert(Existing && "Conflict but no matching type?!");
Chris Lattnera09000d2004-07-14 23:03:46 +0000816
Reid Spencer75719bf2004-05-26 21:48:31 +0000817 // There is only one case where this is allowed: when we are refining an
818 // opaque type. In this case, Existing will be an opaque type.
819 if (const OpaqueType *OpTy = dyn_cast<OpaqueType>(Existing)) {
820 // We ARE replacing an opaque type!
Chris Lattner8c89a0a2004-07-13 08:10:10 +0000821 const_cast<OpaqueType*>(OpTy)->refineAbstractTypeTo(T);
Reid Spencer75719bf2004-05-26 21:48:31 +0000822 return true;
823 }
824
825 // Otherwise, this is an attempt to redefine a type. That's okay if
826 // the redefinition is identical to the original. This will be so if
827 // Existing and T point to the same Type object. In this one case we
828 // allow the equivalent redefinition.
829 if (Existing == T) return true; // Yes, it's equal.
830
831 // Any other kind of (non-equivalent) redefinition is an error.
Reid Spencer90e2f632007-01-05 21:50:38 +0000832 GenerateError("Redefinition of type named '" + Name + "' of type '" +
Reid Spencerf4fa5902007-02-05 10:16:10 +0000833 T->getDescription() + "'");
Reid Spencer75719bf2004-05-26 21:48:31 +0000834 }
835
Reid Spencer75719bf2004-05-26 21:48:31 +0000836 return false;
837}
Chris Lattner8896eda2001-07-09 19:38:36 +0000838
Chris Lattner30c89792001-09-07 16:35:17 +0000839//===----------------------------------------------------------------------===//
840// Code for handling upreferences in type names...
Chris Lattner8896eda2001-07-09 19:38:36 +0000841//
Chris Lattner8896eda2001-07-09 19:38:36 +0000842
Chris Lattner3b073862004-02-09 03:19:29 +0000843// TypeContains - Returns true if Ty directly contains E in it.
Chris Lattner30c89792001-09-07 16:35:17 +0000844//
845static bool TypeContains(const Type *Ty, const Type *E) {
Misha Brukman5a2a3822005-05-10 22:02:28 +0000846 return std::find(Ty->subtype_begin(), Ty->subtype_end(),
Chris Lattner6d8dbec2004-12-08 16:13:53 +0000847 E) != Ty->subtype_end();
Chris Lattner3b073862004-02-09 03:19:29 +0000848}
849
850namespace {
851 struct UpRefRecord {
852 // NestingLevel - The number of nesting levels that need to be popped before
853 // this type is resolved.
854 unsigned NestingLevel;
Misha Brukman5a2a3822005-05-10 22:02:28 +0000855
Chris Lattner3b073862004-02-09 03:19:29 +0000856 // LastContainedTy - This is the type at the current binding level for the
857 // type. Every time we reduce the nesting level, this gets updated.
858 const Type *LastContainedTy;
859
860 // UpRefTy - This is the actual opaque type that the upreference is
861 // represented with.
862 OpaqueType *UpRefTy;
863
864 UpRefRecord(unsigned NL, OpaqueType *URTy)
865 : NestingLevel(NL), LastContainedTy(URTy), UpRefTy(URTy) {}
866 };
Chris Lattner30c89792001-09-07 16:35:17 +0000867}
Chris Lattner698b56e2001-07-20 19:15:08 +0000868
Chris Lattnerc7d3f6b2003-12-31 02:18:11 +0000869// UpRefs - A list of the outstanding upreferences that need to be resolved.
Chris Lattner3b073862004-02-09 03:19:29 +0000870static std::vector<UpRefRecord> UpRefs;
Chris Lattner30c89792001-09-07 16:35:17 +0000871
Chris Lattnerc7d3f6b2003-12-31 02:18:11 +0000872/// HandleUpRefs - Every time we finish a new layer of types, this function is
873/// called. It loops through the UpRefs vector, which is a list of the
874/// currently active types. For each type, if the up reference is contained in
875/// the newly completed type, we decrement the level count. When the level
876/// count reaches zero, the upreferenced type is the type that is passed in:
877/// thus we can complete the cycle.
878///
Chris Lattner8b88b3b2002-04-04 19:23:55 +0000879static PATypeHolder HandleUpRefs(const Type *ty) {
Chris Lattner703e92f2006-08-18 17:34:24 +0000880 // If Ty isn't abstract, or if there are no up-references in it, then there is
881 // nothing to resolve here.
882 if (!ty->isAbstract() || UpRefs.empty()) return ty;
883
Chris Lattner8b88b3b2002-04-04 19:23:55 +0000884 PATypeHolder Ty(ty);
Misha Brukman5a2a3822005-05-10 22:02:28 +0000885 UR_OUT("Type '" << Ty->getDescription() <<
Chris Lattner5084d032001-11-02 07:46:26 +0000886 "' newly formed. Resolving upreferences.\n" <<
887 UpRefs.size() << " upreferences active!\n");
Chris Lattner026a8ce2004-02-09 18:53:54 +0000888
889 // If we find any resolvable upreferences (i.e., those whose NestingLevel goes
890 // to zero), we resolve them all together before we resolve them to Ty. At
891 // the end of the loop, if there is anything to resolve to Ty, it will be in
892 // this variable.
893 OpaqueType *TypeToResolve = 0;
894
Chris Lattnerc7d3f6b2003-12-31 02:18:11 +0000895 for (unsigned i = 0; i != UpRefs.size(); ++i) {
Misha Brukman5a2a3822005-05-10 22:02:28 +0000896 UR_OUT(" UR#" << i << " - TypeContains(" << Ty->getDescription() << ", "
897 << UpRefs[i].second->getDescription() << ") = "
Reid Spencer3271ed52004-07-18 00:08:11 +0000898 << (TypeContains(Ty, UpRefs[i].second) ? "true" : "false") << "\n");
Chris Lattner3b073862004-02-09 03:19:29 +0000899 if (TypeContains(Ty, UpRefs[i].LastContainedTy)) {
900 // Decrement level of upreference
901 unsigned Level = --UpRefs[i].NestingLevel;
902 UpRefs[i].LastContainedTy = Ty;
Chris Lattnerc7d3f6b2003-12-31 02:18:11 +0000903 UR_OUT(" Uplevel Ref Level = " << Level << "\n");
Misha Brukman5a2a3822005-05-10 22:02:28 +0000904 if (Level == 0) { // Upreference should be resolved!
Chris Lattner026a8ce2004-02-09 18:53:54 +0000905 if (!TypeToResolve) {
906 TypeToResolve = UpRefs[i].UpRefTy;
907 } else {
908 UR_OUT(" * Resolving upreference for "
909 << UpRefs[i].second->getDescription() << "\n";
910 std::string OldName = UpRefs[i].UpRefTy->getDescription());
911 UpRefs[i].UpRefTy->refineAbstractTypeTo(TypeToResolve);
912 UR_OUT(" * Type '" << OldName << "' refined upreference to: "
913 << (const void*)Ty << ", " << Ty->getDescription() << "\n");
914 }
Reid Spencer3271ed52004-07-18 00:08:11 +0000915 UpRefs.erase(UpRefs.begin()+i); // Remove from upreference list...
Chris Lattnerc7d3f6b2003-12-31 02:18:11 +0000916 --i; // Do not skip the next element...
Chris Lattner30c89792001-09-07 16:35:17 +0000917 }
918 }
Chris Lattner8896eda2001-07-09 19:38:36 +0000919 }
Chris Lattnerc7d3f6b2003-12-31 02:18:11 +0000920
Chris Lattner026a8ce2004-02-09 18:53:54 +0000921 if (TypeToResolve) {
922 UR_OUT(" * Resolving upreference for "
923 << UpRefs[i].second->getDescription() << "\n";
Chris Lattner16af11d2004-02-09 21:03:38 +0000924 std::string OldName = TypeToResolve->getDescription());
Chris Lattner026a8ce2004-02-09 18:53:54 +0000925 TypeToResolve->refineAbstractTypeTo(Ty);
926 }
927
Chris Lattner8896eda2001-07-09 19:38:36 +0000928 return Ty;
929}
930
Chris Lattner00950542001-06-06 20:29:01 +0000931//===----------------------------------------------------------------------===//
932// RunVMAsmParser - Define an interface to this parser
933//===----------------------------------------------------------------------===//
934//
Reid Spencere1553cc2006-12-31 05:40:12 +0000935static Module* RunParser(Module * M);
936
Chris Lattner86427632004-07-14 06:39:48 +0000937Module *llvm::RunVMAsmParser(const std::string &Filename, FILE *F) {
Chris Lattner6184feb2005-05-20 03:25:47 +0000938 set_scan_file(F);
939
Chris Lattnera2850432001-07-22 18:36:00 +0000940 CurFilename = Filename;
Chris Lattner6184feb2005-05-20 03:25:47 +0000941 return RunParser(new Module(CurFilename));
942}
Chris Lattner00950542001-06-06 20:29:01 +0000943
Chris Lattner6184feb2005-05-20 03:25:47 +0000944Module *llvm::RunVMAsmParser(const char * AsmString, Module * M) {
945 set_scan_string(AsmString);
Chris Lattner42570982003-11-26 07:24:58 +0000946
Chris Lattner6184feb2005-05-20 03:25:47 +0000947 CurFilename = "from_memory";
948 if (M == NULL) {
949 return RunParser(new Module (CurFilename));
950 } else {
951 return RunParser(M);
952 }
Chris Lattner00950542001-06-06 20:29:01 +0000953}
954
955%}
956
957%union {
Brian Gaeked0fde302003-11-11 22:41:34 +0000958 llvm::Module *ModuleVal;
959 llvm::Function *FunctionVal;
Brian Gaeked0fde302003-11-11 22:41:34 +0000960 llvm::BasicBlock *BasicBlockVal;
961 llvm::TerminatorInst *TermInstVal;
962 llvm::Instruction *InstVal;
Reid Spencer08de34b2006-12-03 05:45:44 +0000963 llvm::Constant *ConstVal;
Chris Lattner30c89792001-09-07 16:35:17 +0000964
Reid Spencer08de34b2006-12-03 05:45:44 +0000965 const llvm::Type *PrimType;
Reid Spencere1553cc2006-12-31 05:40:12 +0000966 std::list<llvm::PATypeHolder> *TypeList;
Reid Spencer08de34b2006-12-03 05:45:44 +0000967 llvm::PATypeHolder *TypeVal;
968 llvm::Value *ValueVal;
Reid Spencer08de34b2006-12-03 05:45:44 +0000969 std::vector<llvm::Value*> *ValueList;
Reid Spencere1553cc2006-12-31 05:40:12 +0000970 llvm::ArgListType *ArgList;
971 llvm::TypeWithAttrs TypeWithAttrs;
972 llvm::TypeWithAttrsList *TypeWithAttrsList;
973 llvm::ValueRefList *ValueRefList;
974
Misha Brukman5a2a3822005-05-10 22:02:28 +0000975 // Represent the RHS of PHI node
Reid Spencer08de34b2006-12-03 05:45:44 +0000976 std::list<std::pair<llvm::Value*,
977 llvm::BasicBlock*> > *PHIList;
Brian Gaeked0fde302003-11-11 22:41:34 +0000978 std::vector<std::pair<llvm::Constant*, llvm::BasicBlock*> > *JumpTable;
Reid Spencer08de34b2006-12-03 05:45:44 +0000979 std::vector<llvm::Constant*> *ConstVector;
Chris Lattner00950542001-06-06 20:29:01 +0000980
Brian Gaeked0fde302003-11-11 22:41:34 +0000981 llvm::GlobalValue::LinkageTypes Linkage;
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000982 llvm::GlobalValue::VisibilityTypes Visibility;
Reid Spencer5694b6e2007-04-09 06:17:21 +0000983 uint16_t ParamAttrs;
Reid Spencerf2310042007-02-28 02:23:44 +0000984 llvm::APInt *APIntVal;
Chris Lattner30c89792001-09-07 16:35:17 +0000985 int64_t SInt64Val;
986 uint64_t UInt64Val;
987 int SIntVal;
988 unsigned UIntVal;
989 double FPVal;
Chris Lattner1781aca2001-09-18 04:00:54 +0000990 bool BoolVal;
Chris Lattner00950542001-06-06 20:29:01 +0000991
Reid Spencer6ecdcc12007-05-22 18:52:21 +0000992 std::string *StrVal; // This memory must be deleted
993 llvm::ValID ValIDVal;
Chris Lattner00950542001-06-06 20:29:01 +0000994
Reid Spencer08de34b2006-12-03 05:45:44 +0000995 llvm::Instruction::BinaryOps BinaryOpVal;
996 llvm::Instruction::TermOps TermOpVal;
997 llvm::Instruction::MemoryOps MemOpVal;
998 llvm::Instruction::CastOps CastOpVal;
999 llvm::Instruction::OtherOps OtherOpVal;
Reid Spencer08de34b2006-12-03 05:45:44 +00001000 llvm::ICmpInst::Predicate IPredicate;
1001 llvm::FCmpInst::Predicate FPredicate;
Chris Lattner00950542001-06-06 20:29:01 +00001002}
1003
Reid Spencere1553cc2006-12-31 05:40:12 +00001004%type <ModuleVal> Module
Chris Lattner79df7c02002-03-26 18:01:55 +00001005%type <FunctionVal> Function FunctionProto FunctionHeader BasicBlockList
Chris Lattner00950542001-06-06 20:29:01 +00001006%type <BasicBlockVal> BasicBlock InstructionList
1007%type <TermInstVal> BBTerminatorInst
1008%type <InstVal> Inst InstVal MemoryInst
Anton Korobeynikova80e1182007-04-28 13:45:00 +00001009%type <ConstVal> ConstVal ConstExpr AliaseeRef
Chris Lattner6cdb0112001-11-26 16:54:11 +00001010%type <ConstVector> ConstVector
Chris Lattner46748042002-04-09 19:41:42 +00001011%type <ArgList> ArgList ArgListH
Chris Lattnerc24d2082001-06-11 15:04:20 +00001012%type <PHIList> PHIList
Reid Spencere1553cc2006-12-31 05:40:12 +00001013%type <ValueRefList> ValueRefList // For call param lists & GEP indices
1014%type <ValueList> IndexList // For GEP indices
1015%type <TypeList> TypeListI
1016%type <TypeWithAttrsList> ArgTypeList ArgTypeListI
Reid Spencer2c261782007-01-05 17:06:19 +00001017%type <TypeWithAttrs> ArgType
Chris Lattner00950542001-06-06 20:29:01 +00001018%type <JumpTable> JumpTable
Chris Lattner4ad02e72003-04-16 20:28:45 +00001019%type <BoolVal> GlobalType // GLOBAL or CONSTANT?
Lauro Ramos Venancioc7635522007-04-12 18:32:50 +00001020%type <BoolVal> ThreadLocal // 'thread_local' or not
Chris Lattner15c9c032003-09-08 18:20:29 +00001021%type <BoolVal> OptVolatile // 'volatile' or not
Chris Lattnerddb6db42005-05-06 05:51:46 +00001022%type <BoolVal> OptTailCall // TAIL CALL or plain CALL.
Chris Lattneraa2c8532006-01-25 22:26:43 +00001023%type <BoolVal> OptSideEffect // 'sideeffect' or not.
Reid Spencere1553cc2006-12-31 05:40:12 +00001024%type <Linkage> GVInternalLinkage GVExternalLinkage
1025%type <Linkage> FunctionDefineLinkage FunctionDeclareLinkage
Anton Korobeynikov8b0a8c82007-04-25 14:27:10 +00001026%type <Linkage> AliasLinkage
Anton Korobeynikov7f705592007-01-12 19:20:47 +00001027%type <Visibility> GVVisibilityStyle
Chris Lattner00950542001-06-06 20:29:01 +00001028
Chris Lattner2079fde2001-10-13 06:41:08 +00001029// ValueRef - Unresolved reference to a definition or BB
1030%type <ValIDVal> ValueRef ConstValueRef SymbolicValueRef
Chris Lattnerbcbf6ba2001-07-26 16:29:15 +00001031%type <ValueVal> ResolvedVal // <type> <valref> pair
Chris Lattner00950542001-06-06 20:29:01 +00001032// Tokens and types for handling constant integer values
1033//
1034// ESINT64VAL - A negative number within long long range
1035%token <SInt64Val> ESINT64VAL
1036
1037// EUINT64VAL - A positive number within uns. long long range
1038%token <UInt64Val> EUINT64VAL
Chris Lattner00950542001-06-06 20:29:01 +00001039
Reid Spencerf2310042007-02-28 02:23:44 +00001040// ESAPINTVAL - A negative number with arbitrary precision
1041%token <APIntVal> ESAPINTVAL
1042
1043// EUAPINTVAL - A positive number with arbitrary precision
1044%token <APIntVal> EUAPINTVAL
1045
Reid Spencerb2d17862007-01-26 08:04:51 +00001046%token <UIntVal> LOCALVAL_ID GLOBALVAL_ID // %123 @123
Chris Lattner3d52b2f2001-07-15 00:17:01 +00001047%token <FPVal> FPVAL // Float or Double constant
Chris Lattner00950542001-06-06 20:29:01 +00001048
1049// Built in types...
Reid Spencer2c261782007-01-05 17:06:19 +00001050%type <TypeVal> Types ResultTypes
Reid Spencere1553cc2006-12-31 05:40:12 +00001051%type <PrimType> IntType FPType PrimType // Classifications
Reid Spencer8088e9d2007-01-13 05:00:20 +00001052%token <PrimType> VOID INTTYPE
Reid Spencerb951bc02006-12-29 20:29:48 +00001053%token <PrimType> FLOAT DOUBLE LABEL
1054%token TYPE
Chris Lattner00950542001-06-06 20:29:01 +00001055
Reid Spencer6ecdcc12007-05-22 18:52:21 +00001056
Reid Spenceraa7c2f82007-05-19 07:21:26 +00001057%token<StrVal> LOCALVAR GLOBALVAR LABELSTR
1058%token<StrVal> STRINGCONSTANT ATSTRINGCONSTANT PCTSTRINGCONSTANT
Reid Spencerb2d17862007-01-26 08:04:51 +00001059%type <StrVal> LocalName OptLocalName OptLocalAssign
Anton Korobeynikov8b0a8c82007-04-25 14:27:10 +00001060%type <StrVal> GlobalName OptGlobalAssign GlobalAssign
Chris Lattnerb2b96672005-11-12 18:21:21 +00001061%type <StrVal> OptSection SectionString
Chris Lattner00950542001-06-06 20:29:01 +00001062
Reid Spencer6ecdcc12007-05-22 18:52:21 +00001063%type <UIntVal> OptAlign OptCAlign
1064
Reid Spencer744d0362007-04-09 01:55:42 +00001065%token ZEROINITIALIZER TRUETOK FALSETOK BEGINTOK ENDTOK
Anton Korobeynikov8b0a8c82007-04-25 14:27:10 +00001066%token DECLARE DEFINE GLOBAL CONSTANT SECTION ALIAS VOLATILE THREAD_LOCAL
Reid Spencere1553cc2006-12-31 05:40:12 +00001067%token TO DOTDOTDOT NULL_TOK UNDEF INTERNAL LINKONCE WEAK APPENDING
Anton Korobeynikovb74ed072006-09-14 18:23:27 +00001068%token DLLIMPORT DLLEXPORT EXTERN_WEAK
Reid Spencerb2d17862007-01-26 08:04:51 +00001069%token OPAQUE EXTERNAL TARGET TRIPLE ALIGN
Chris Lattneraa2c8532006-01-25 22:26:43 +00001070%token DEPLIBS CALL TAIL ASM_TOK MODULE SIDEEFFECT
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00001071%token CC_TOK CCC_TOK FASTCC_TOK COLDCC_TOK X86_STDCALLCC_TOK X86_FASTCALLCC_TOK
Chris Lattner10b27112006-10-22 06:07:41 +00001072%token DATALAYOUT
Chris Lattnera8e8f162005-05-06 20:27:19 +00001073%type <UIntVal> OptCallingConv
Reid Spencer2c261782007-01-05 17:06:19 +00001074%type <ParamAttrs> OptParamAttrs ParamAttr
1075%type <ParamAttrs> OptFuncAttrs FuncAttr
Chris Lattner00950542001-06-06 20:29:01 +00001076
Misha Brukman5a2a3822005-05-10 22:02:28 +00001077// Basic Block Terminating Operators
Chris Lattner16710e92004-10-16 18:17:13 +00001078%token <TermOpVal> RET BR SWITCH INVOKE UNWIND UNREACHABLE
Chris Lattner00950542001-06-06 20:29:01 +00001079
Misha Brukman5a2a3822005-05-10 22:02:28 +00001080// Binary Operators
Reid Spencere4d87aa2006-12-23 06:05:41 +00001081%type <BinaryOpVal> ArithmeticOps LogicalOps // Binops Subcatagories
Reid Spencer0a783f72006-11-02 01:53:59 +00001082%token <BinaryOpVal> ADD SUB MUL UDIV SDIV FDIV UREM SREM FREM AND OR XOR
Reid Spencer832254e2007-02-02 02:16:23 +00001083%token <BinaryOpVal> SHL LSHR ASHR
1084
Reid Spencer08de34b2006-12-03 05:45:44 +00001085%token <OtherOpVal> ICMP FCMP
Reid Spencer08de34b2006-12-03 05:45:44 +00001086%type <IPredicate> IPredicates
Reid Spencer08de34b2006-12-03 05:45:44 +00001087%type <FPredicate> FPredicates
Reid Spencer9f746f42006-12-03 06:58:07 +00001088%token EQ NE SLT SGT SLE SGE ULT UGT ULE UGE
1089%token OEQ ONE OLT OGT OLE OGE ORD UNO UEQ UNE
Chris Lattner00950542001-06-06 20:29:01 +00001090
1091// Memory Instructions
Vikram S. Adved3f7eb02002-07-14 22:59:28 +00001092%token <MemOpVal> MALLOC ALLOCA FREE LOAD STORE GETELEMENTPTR
Chris Lattner00950542001-06-06 20:29:01 +00001093
Reid Spencer3da59db2006-11-27 01:05:10 +00001094// Cast Operators
1095%type <CastOpVal> CastOps
1096%token <CastOpVal> TRUNC ZEXT SEXT FPTRUNC FPEXT BITCAST
1097%token <CastOpVal> UITOFP SITOFP FPTOUI FPTOSI INTTOPTR PTRTOINT
1098
Chris Lattner027dcc52001-07-08 21:10:27 +00001099// Other Operators
Reid Spencer832254e2007-02-02 02:16:23 +00001100%token <OtherOpVal> PHI_TOK SELECT VAARG
Chris Lattner4c949082006-04-08 01:18:35 +00001101%token <OtherOpVal> EXTRACTELEMENT INSERTELEMENT SHUFFLEVECTOR
Chris Lattnerddb6db42005-05-06 05:51:46 +00001102
Reid Spencer2c261782007-01-05 17:06:19 +00001103// Function Attributes
Reid Spencer9445e9a2007-07-19 23:13:04 +00001104%token SIGNEXT ZEROEXT NORETURN INREG SRET NOUNWIND NOALIAS BYVAL
Chris Lattner027dcc52001-07-08 21:10:27 +00001105
Anton Korobeynikov7f705592007-01-12 19:20:47 +00001106// Visibility Styles
Anton Korobeynikov6f9896f2007-04-29 18:35:00 +00001107%token DEFAULT HIDDEN PROTECTED
Anton Korobeynikov7f705592007-01-12 19:20:47 +00001108
Chris Lattner00950542001-06-06 20:29:01 +00001109%start Module
1110%%
1111
Chris Lattner00950542001-06-06 20:29:01 +00001112
Misha Brukman5a2a3822005-05-10 22:02:28 +00001113// Operations that are notably excluded from this list include:
Chris Lattner00950542001-06-06 20:29:01 +00001114// RET, BR, & SWITCH because they end basic blocks and are treated specially.
1115//
Reid Spencer0a783f72006-11-02 01:53:59 +00001116ArithmeticOps: ADD | SUB | MUL | UDIV | SDIV | FDIV | UREM | SREM | FREM;
Reid Spencer832254e2007-02-02 02:16:23 +00001117LogicalOps : SHL | LSHR | ASHR | AND | OR | XOR;
Reid Spencer3da59db2006-11-27 01:05:10 +00001118CastOps : TRUNC | ZEXT | SEXT | FPTRUNC | FPEXT | BITCAST |
1119 UITOFP | SITOFP | FPTOUI | FPTOSI | INTTOPTR | PTRTOINT;
Reid Spencer832254e2007-02-02 02:16:23 +00001120
Reid Spencer9f746f42006-12-03 06:58:07 +00001121IPredicates
Reid Spencer763ed5e2006-12-04 05:20:06 +00001122 : EQ { $$ = ICmpInst::ICMP_EQ; } | NE { $$ = ICmpInst::ICMP_NE; }
Reid Spencer9f746f42006-12-03 06:58:07 +00001123 | SLT { $$ = ICmpInst::ICMP_SLT; } | SGT { $$ = ICmpInst::ICMP_SGT; }
1124 | SLE { $$ = ICmpInst::ICMP_SLE; } | SGE { $$ = ICmpInst::ICMP_SGE; }
1125 | ULT { $$ = ICmpInst::ICMP_ULT; } | UGT { $$ = ICmpInst::ICMP_UGT; }
1126 | ULE { $$ = ICmpInst::ICMP_ULE; } | UGE { $$ = ICmpInst::ICMP_UGE; }
1127 ;
1128
1129FPredicates
1130 : OEQ { $$ = FCmpInst::FCMP_OEQ; } | ONE { $$ = FCmpInst::FCMP_ONE; }
1131 | OLT { $$ = FCmpInst::FCMP_OLT; } | OGT { $$ = FCmpInst::FCMP_OGT; }
1132 | OLE { $$ = FCmpInst::FCMP_OLE; } | OGE { $$ = FCmpInst::FCMP_OGE; }
1133 | ORD { $$ = FCmpInst::FCMP_ORD; } | UNO { $$ = FCmpInst::FCMP_UNO; }
1134 | UEQ { $$ = FCmpInst::FCMP_UEQ; } | UNE { $$ = FCmpInst::FCMP_UNE; }
1135 | ULT { $$ = FCmpInst::FCMP_ULT; } | UGT { $$ = FCmpInst::FCMP_UGT; }
1136 | ULE { $$ = FCmpInst::FCMP_ULE; } | UGE { $$ = FCmpInst::FCMP_UGE; }
1137 | TRUETOK { $$ = FCmpInst::FCMP_TRUE; }
1138 | FALSETOK { $$ = FCmpInst::FCMP_FALSE; }
1139 ;
Chris Lattner00950542001-06-06 20:29:01 +00001140
Chris Lattnere98dda62001-07-14 06:10:16 +00001141// These are some types that allow classification if we only want a particular
1142// thing... for example, only a signed, unsigned, or integral type.
Reid Spencera54b7cb2007-01-12 07:05:14 +00001143IntType : INTTYPE;
Chris Lattner51727be2002-06-04 21:58:56 +00001144FPType : FLOAT | DOUBLE;
Chris Lattner00950542001-06-06 20:29:01 +00001145
Reid Spencer6ecdcc12007-05-22 18:52:21 +00001146LocalName : LOCALVAR | STRINGCONSTANT | PCTSTRINGCONSTANT ;
Reid Spencerb2d17862007-01-26 08:04:51 +00001147OptLocalName : LocalName | /*empty*/ { $$ = 0; };
1148
1149/// OptLocalAssign - Value producing statements have an optional assignment
1150/// component.
1151OptLocalAssign : LocalName '=' {
1152 $$ = $1;
1153 CHECK_FOR_ERROR
1154 }
1155 | /*empty*/ {
1156 $$ = 0;
1157 CHECK_FOR_ERROR
1158 };
1159
Reid Spencer6ecdcc12007-05-22 18:52:21 +00001160GlobalName : GLOBALVAR | ATSTRINGCONSTANT ;
Reid Spencerb2d17862007-01-26 08:04:51 +00001161
Anton Korobeynikov8b0a8c82007-04-25 14:27:10 +00001162OptGlobalAssign : GlobalAssign
Misha Brukman5a2a3822005-05-10 22:02:28 +00001163 | /*empty*/ {
1164 $$ = 0;
Reid Spencer61c83e02006-08-18 08:43:06 +00001165 CHECK_FOR_ERROR
Chris Lattner51727be2002-06-04 21:58:56 +00001166 };
Chris Lattner00950542001-06-06 20:29:01 +00001167
Anton Korobeynikov8b0a8c82007-04-25 14:27:10 +00001168GlobalAssign : GlobalName '=' {
1169 $$ = $1;
1170 CHECK_FOR_ERROR
Anton Korobeynikovc0fabcb2007-04-25 18:07:40 +00001171 };
Anton Korobeynikov8b0a8c82007-04-25 14:27:10 +00001172
Reid Spencerb951bc02006-12-29 20:29:48 +00001173GVInternalLinkage
1174 : INTERNAL { $$ = GlobalValue::InternalLinkage; }
1175 | WEAK { $$ = GlobalValue::WeakLinkage; }
1176 | LINKONCE { $$ = GlobalValue::LinkOnceLinkage; }
1177 | APPENDING { $$ = GlobalValue::AppendingLinkage; }
1178 | DLLEXPORT { $$ = GlobalValue::DLLExportLinkage; }
1179 ;
1180
1181GVExternalLinkage
1182 : DLLIMPORT { $$ = GlobalValue::DLLImportLinkage; }
1183 | EXTERN_WEAK { $$ = GlobalValue::ExternalWeakLinkage; }
1184 | EXTERNAL { $$ = GlobalValue::ExternalLinkage; }
1185 ;
1186
Anton Korobeynikov7f705592007-01-12 19:20:47 +00001187GVVisibilityStyle
Anton Korobeynikov6f9896f2007-04-29 18:35:00 +00001188 : /*empty*/ { $$ = GlobalValue::DefaultVisibility; }
1189 | DEFAULT { $$ = GlobalValue::DefaultVisibility; }
1190 | HIDDEN { $$ = GlobalValue::HiddenVisibility; }
1191 | PROTECTED { $$ = GlobalValue::ProtectedVisibility; }
Anton Korobeynikov7f705592007-01-12 19:20:47 +00001192 ;
1193
Reid Spencere1553cc2006-12-31 05:40:12 +00001194FunctionDeclareLinkage
1195 : /*empty*/ { $$ = GlobalValue::ExternalLinkage; }
1196 | DLLIMPORT { $$ = GlobalValue::DLLImportLinkage; }
1197 | EXTERN_WEAK { $$ = GlobalValue::ExternalWeakLinkage; }
Reid Spencerb951bc02006-12-29 20:29:48 +00001198 ;
1199
Anton Korobeynikov8b0a8c82007-04-25 14:27:10 +00001200FunctionDefineLinkage
Reid Spencere1553cc2006-12-31 05:40:12 +00001201 : /*empty*/ { $$ = GlobalValue::ExternalLinkage; }
1202 | INTERNAL { $$ = GlobalValue::InternalLinkage; }
Reid Spencerb951bc02006-12-29 20:29:48 +00001203 | LINKONCE { $$ = GlobalValue::LinkOnceLinkage; }
1204 | WEAK { $$ = GlobalValue::WeakLinkage; }
1205 | DLLEXPORT { $$ = GlobalValue::DLLExportLinkage; }
Reid Spencerb951bc02006-12-29 20:29:48 +00001206 ;
Chris Lattner30c89792001-09-07 16:35:17 +00001207
Anton Korobeynikov8b0a8c82007-04-25 14:27:10 +00001208AliasLinkage
1209 : /*empty*/ { $$ = GlobalValue::ExternalLinkage; }
1210 | WEAK { $$ = GlobalValue::WeakLinkage; }
1211 | INTERNAL { $$ = GlobalValue::InternalLinkage; }
1212 ;
1213
Anton Korobeynikovbcb97702006-09-17 20:25:45 +00001214OptCallingConv : /*empty*/ { $$ = CallingConv::C; } |
1215 CCC_TOK { $$ = CallingConv::C; } |
Anton Korobeynikovbcb97702006-09-17 20:25:45 +00001216 FASTCC_TOK { $$ = CallingConv::Fast; } |
1217 COLDCC_TOK { $$ = CallingConv::Cold; } |
1218 X86_STDCALLCC_TOK { $$ = CallingConv::X86_StdCall; } |
1219 X86_FASTCALLCC_TOK { $$ = CallingConv::X86_FastCall; } |
1220 CC_TOK EUINT64VAL {
Chris Lattnera8e8f162005-05-06 20:27:19 +00001221 if ((unsigned)$2 != $2)
Reid Spencerf4fa5902007-02-05 10:16:10 +00001222 GEN_ERROR("Calling conv too large");
Chris Lattnera8e8f162005-05-06 20:27:19 +00001223 $$ = $2;
Reid Spencer61c83e02006-08-18 08:43:06 +00001224 CHECK_FOR_ERROR
Chris Lattnera8e8f162005-05-06 20:27:19 +00001225 };
1226
Reid Spencer9445e9a2007-07-19 23:13:04 +00001227ParamAttr : ZEROEXT { $$ = ParamAttr::ZExt; }
1228 | SIGNEXT { $$ = ParamAttr::SExt; }
Zhou Shengfebca342007-06-05 05:28:26 +00001229 | INREG { $$ = ParamAttr::InReg; }
1230 | SRET { $$ = ParamAttr::StructRet; }
1231 | NOALIAS { $$ = ParamAttr::NoAlias; }
Rafael Espindola1aa7efb2007-07-06 10:57:03 +00001232 | BYVAL { $$ = ParamAttr::ByVal; }
Reid Spencere1553cc2006-12-31 05:40:12 +00001233 ;
1234
Reid Spencer18da0722007-04-11 02:44:20 +00001235OptParamAttrs : /* empty */ { $$ = ParamAttr::None; }
Reid Spencer2c261782007-01-05 17:06:19 +00001236 | OptParamAttrs ParamAttr {
Reid Spencer5694b6e2007-04-09 06:17:21 +00001237 $$ = $1 | $2;
Reid Spencere1553cc2006-12-31 05:40:12 +00001238 }
1239 ;
1240
Reid Spencer18da0722007-04-11 02:44:20 +00001241FuncAttr : NORETURN { $$ = ParamAttr::NoReturn; }
1242 | NOUNWIND { $$ = ParamAttr::NoUnwind; }
Reid Spencer9445e9a2007-07-19 23:13:04 +00001243 | ZEROEXT { $$ = ParamAttr::ZExt; }
1244 | SIGNEXT { $$ = ParamAttr::SExt; }
Reid Spencer2c261782007-01-05 17:06:19 +00001245 ;
1246
Reid Spencer18da0722007-04-11 02:44:20 +00001247OptFuncAttrs : /* empty */ { $$ = ParamAttr::None; }
Reid Spencer2c261782007-01-05 17:06:19 +00001248 | OptFuncAttrs FuncAttr {
Reid Spencer5694b6e2007-04-09 06:17:21 +00001249 $$ = $1 | $2;
Reid Spencer2c261782007-01-05 17:06:19 +00001250 }
Reid Spencere1553cc2006-12-31 05:40:12 +00001251 ;
1252
Chris Lattner66db8e42005-11-06 06:34:12 +00001253// OptAlign/OptCAlign - An optional alignment, and an optional alignment with
1254// a comma before it.
Chris Lattner87ac9722005-11-06 06:46:28 +00001255OptAlign : /*empty*/ { $$ = 0; } |
Chris Lattnerb2b96672005-11-12 18:21:21 +00001256 ALIGN EUINT64VAL {
1257 $$ = $2;
1258 if ($$ != 0 && !isPowerOf2_32($$))
Reid Spencerf4fa5902007-02-05 10:16:10 +00001259 GEN_ERROR("Alignment must be a power of two");
Reid Spencer61c83e02006-08-18 08:43:06 +00001260 CHECK_FOR_ERROR
Chris Lattnerb2b96672005-11-12 18:21:21 +00001261};
Chris Lattner66db8e42005-11-06 06:34:12 +00001262OptCAlign : /*empty*/ { $$ = 0; } |
Chris Lattnerb2b96672005-11-12 18:21:21 +00001263 ',' ALIGN EUINT64VAL {
1264 $$ = $3;
1265 if ($$ != 0 && !isPowerOf2_32($$))
Reid Spencerf4fa5902007-02-05 10:16:10 +00001266 GEN_ERROR("Alignment must be a power of two");
Reid Spencer61c83e02006-08-18 08:43:06 +00001267 CHECK_FOR_ERROR
Chris Lattnerb2b96672005-11-12 18:21:21 +00001268};
1269
Chris Lattner66db8e42005-11-06 06:34:12 +00001270
Chris Lattner164c3782005-11-12 00:11:10 +00001271SectionString : SECTION STRINGCONSTANT {
Reid Spencer6ecdcc12007-05-22 18:52:21 +00001272 for (unsigned i = 0, e = $2->length(); i != e; ++i)
1273 if ((*$2)[i] == '"' || (*$2)[i] == '\\')
Reid Spencerf4fa5902007-02-05 10:16:10 +00001274 GEN_ERROR("Invalid character in section name");
Chris Lattner164c3782005-11-12 00:11:10 +00001275 $$ = $2;
Reid Spencer61c83e02006-08-18 08:43:06 +00001276 CHECK_FOR_ERROR
Chris Lattner164c3782005-11-12 00:11:10 +00001277};
1278
1279OptSection : /*empty*/ { $$ = 0; } |
1280 SectionString { $$ = $1; };
Chris Lattner164c3782005-11-12 00:11:10 +00001281
Chris Lattnerb2b96672005-11-12 18:21:21 +00001282// GlobalVarAttributes - Used to pass the attributes string on a global. CurGV
1283// is set to be the global we are processing.
1284//
1285GlobalVarAttributes : /* empty */ {} |
1286 ',' GlobalVarAttribute GlobalVarAttributes {};
1287GlobalVarAttribute : SectionString {
Reid Spencer6ecdcc12007-05-22 18:52:21 +00001288 CurGV->setSection(*$1);
1289 delete $1;
Reid Spencer61c83e02006-08-18 08:43:06 +00001290 CHECK_FOR_ERROR
Chris Lattnerb2b96672005-11-12 18:21:21 +00001291 }
1292 | ALIGN EUINT64VAL {
1293 if ($2 != 0 && !isPowerOf2_32($2))
Reid Spencerf4fa5902007-02-05 10:16:10 +00001294 GEN_ERROR("Alignment must be a power of two");
Chris Lattnerb2b96672005-11-12 18:21:21 +00001295 CurGV->setAlignment($2);
Reid Spencer61c83e02006-08-18 08:43:06 +00001296 CHECK_FOR_ERROR
Chris Lattnerb2b96672005-11-12 18:21:21 +00001297 };
Chris Lattner164c3782005-11-12 00:11:10 +00001298
Chris Lattner30c89792001-09-07 16:35:17 +00001299//===----------------------------------------------------------------------===//
1300// Types includes all predefined types... except void, because it can only be
Reid Spencere1553cc2006-12-31 05:40:12 +00001301// used in specific contexts (function returning void for example).
Chris Lattner30c89792001-09-07 16:35:17 +00001302
1303// Derived types are added later...
1304//
Reid Spencer8088e9d2007-01-13 05:00:20 +00001305PrimType : INTTYPE | FLOAT | DOUBLE | LABEL ;
Reid Spencere1553cc2006-12-31 05:40:12 +00001306
1307Types
1308 : OPAQUE {
Reid Spencer08de34b2006-12-03 05:45:44 +00001309 $$ = new PATypeHolder(OpaqueType::get());
Reid Spencer61c83e02006-08-18 08:43:06 +00001310 CHECK_FOR_ERROR
Chris Lattner8b88b3b2002-04-04 19:23:55 +00001311 }
1312 | PrimType {
Reid Spencer08de34b2006-12-03 05:45:44 +00001313 $$ = new PATypeHolder($1);
Reid Spencer61c83e02006-08-18 08:43:06 +00001314 CHECK_FOR_ERROR
Reid Spencere1553cc2006-12-31 05:40:12 +00001315 }
1316 | Types '*' { // Pointer type?
1317 if (*$1 == Type::LabelTy)
1318 GEN_ERROR("Cannot form a pointer to a basic block");
1319 $$ = new PATypeHolder(HandleUpRefs(PointerType::get(*$1)));
1320 delete $1;
1321 CHECK_FOR_ERROR
1322 }
1323 | SymbolicValueRef { // Named types are also simple types...
1324 const Type* tmp = getTypeVal($1);
1325 CHECK_FOR_ERROR
1326 $$ = new PATypeHolder(tmp);
1327 }
1328 | '\\' EUINT64VAL { // Type UpReference
Reid Spencerf4fa5902007-02-05 10:16:10 +00001329 if ($2 > (uint64_t)~0U) GEN_ERROR("Value out of range");
Chris Lattner30c89792001-09-07 16:35:17 +00001330 OpaqueType *OT = OpaqueType::get(); // Use temporary placeholder
Chris Lattner3b073862004-02-09 03:19:29 +00001331 UpRefs.push_back(UpRefRecord((unsigned)$2, OT)); // Add to vector...
Reid Spencer08de34b2006-12-03 05:45:44 +00001332 $$ = new PATypeHolder(OT);
Chris Lattner30c89792001-09-07 16:35:17 +00001333 UR_OUT("New Upreference!\n");
Reid Spencer61c83e02006-08-18 08:43:06 +00001334 CHECK_FOR_ERROR
Chris Lattner30c89792001-09-07 16:35:17 +00001335 }
Reid Spencer863dd882007-04-28 16:06:50 +00001336 | Types '(' ArgTypeListI ')' OptFuncAttrs {
Chris Lattner9232b992003-04-22 18:42:41 +00001337 std::vector<const Type*> Params;
Reid Spencer863dd882007-04-28 16:06:50 +00001338 ParamAttrsVector Attrs;
1339 if ($5 != ParamAttr::None) {
1340 ParamAttrsWithIndex X; X.index = 0; X.attrs = $5;
1341 Attrs.push_back(X);
1342 }
Reid Spencer5694b6e2007-04-09 06:17:21 +00001343 unsigned index = 1;
1344 TypeWithAttrsList::iterator I = $3->begin(), E = $3->end();
1345 for (; I != E; ++I, ++index) {
Reid Spencer2c9df212007-03-20 01:13:00 +00001346 const Type *Ty = I->Ty->get();
Reid Spencer2c9df212007-03-20 01:13:00 +00001347 Params.push_back(Ty);
Reid Spencer863dd882007-04-28 16:06:50 +00001348 if (Ty != Type::VoidTy)
1349 if (I->Attrs != ParamAttr::None) {
1350 ParamAttrsWithIndex X; X.index = index; X.attrs = I->Attrs;
1351 Attrs.push_back(X);
1352 }
Reid Spencere1553cc2006-12-31 05:40:12 +00001353 }
Chris Lattner2079fde2001-10-13 06:41:08 +00001354 bool isVarArg = Params.size() && Params.back() == Type::VoidTy;
1355 if (isVarArg) Params.pop_back();
1356
Reid Spencer863dd882007-04-28 16:06:50 +00001357 ParamAttrsList *ActualAttrs = 0;
1358 if (!Attrs.empty())
1359 ActualAttrs = ParamAttrsList::get(Attrs);
1360 FunctionType *FT = FunctionType::get(*$1, Params, isVarArg, ActualAttrs);
Anton Korobeynikov7f705592007-01-12 19:20:47 +00001361 delete $3; // Delete the argument list
Reid Spencere1553cc2006-12-31 05:40:12 +00001362 delete $1; // Delete the return type handle
1363 $$ = new PATypeHolder(HandleUpRefs(FT));
Reid Spencer61c83e02006-08-18 08:43:06 +00001364 CHECK_FOR_ERROR
Chris Lattner30c89792001-09-07 16:35:17 +00001365 }
Reid Spencer863dd882007-04-28 16:06:50 +00001366 | VOID '(' ArgTypeListI ')' OptFuncAttrs {
Reid Spencere1553cc2006-12-31 05:40:12 +00001367 std::vector<const Type*> Params;
Reid Spencer863dd882007-04-28 16:06:50 +00001368 ParamAttrsVector Attrs;
1369 if ($5 != ParamAttr::None) {
1370 ParamAttrsWithIndex X; X.index = 0; X.attrs = $5;
1371 Attrs.push_back(X);
1372 }
Reid Spencer5694b6e2007-04-09 06:17:21 +00001373 TypeWithAttrsList::iterator I = $3->begin(), E = $3->end();
1374 unsigned index = 1;
1375 for ( ; I != E; ++I, ++index) {
Reid Spencer2c9df212007-03-20 01:13:00 +00001376 const Type* Ty = I->Ty->get();
Reid Spencer2c9df212007-03-20 01:13:00 +00001377 Params.push_back(Ty);
Reid Spencer863dd882007-04-28 16:06:50 +00001378 if (Ty != Type::VoidTy)
1379 if (I->Attrs != ParamAttr::None) {
1380 ParamAttrsWithIndex X; X.index = index; X.attrs = I->Attrs;
1381 Attrs.push_back(X);
1382 }
Reid Spencere1553cc2006-12-31 05:40:12 +00001383 }
1384 bool isVarArg = Params.size() && Params.back() == Type::VoidTy;
1385 if (isVarArg) Params.pop_back();
1386
Reid Spencer863dd882007-04-28 16:06:50 +00001387 ParamAttrsList *ActualAttrs = 0;
1388 if (!Attrs.empty())
1389 ActualAttrs = ParamAttrsList::get(Attrs);
1390
1391 FunctionType *FT = FunctionType::get($1, Params, isVarArg, ActualAttrs);
Reid Spencer2c261782007-01-05 17:06:19 +00001392 delete $3; // Delete the argument list
Reid Spencere1553cc2006-12-31 05:40:12 +00001393 $$ = new PATypeHolder(HandleUpRefs(FT));
1394 CHECK_FOR_ERROR
1395 }
1396
1397 | '[' EUINT64VAL 'x' Types ']' { // Sized array type?
Reid Spencer08de34b2006-12-03 05:45:44 +00001398 $$ = new PATypeHolder(HandleUpRefs(ArrayType::get(*$4, (unsigned)$2)));
1399 delete $4;
Reid Spencer61c83e02006-08-18 08:43:06 +00001400 CHECK_FOR_ERROR
Chris Lattner30c89792001-09-07 16:35:17 +00001401 }
Reid Spencerac9dcb92007-02-15 03:39:18 +00001402 | '<' EUINT64VAL 'x' Types '>' { // Vector type?
Reid Spencer08de34b2006-12-03 05:45:44 +00001403 const llvm::Type* ElemTy = $4->get();
1404 if ((unsigned)$2 != $2)
1405 GEN_ERROR("Unsigned result not equal to signed result");
Chris Lattner42a75512007-01-15 02:27:26 +00001406 if (!ElemTy->isFloatingPoint() && !ElemTy->isInteger())
Reid Spencer9d6565a2007-02-15 02:26:10 +00001407 GEN_ERROR("Element type of a VectorType must be primitive");
Reid Spencer08de34b2006-12-03 05:45:44 +00001408 if (!isPowerOf2_32($2))
Reid Spencerf4fa5902007-02-05 10:16:10 +00001409 GEN_ERROR("Vector length should be a power of 2");
Reid Spencer9d6565a2007-02-15 02:26:10 +00001410 $$ = new PATypeHolder(HandleUpRefs(VectorType::get(*$4, (unsigned)$2)));
Reid Spencer08de34b2006-12-03 05:45:44 +00001411 delete $4;
1412 CHECK_FOR_ERROR
Brian Gaeke715c90b2004-08-20 06:00:58 +00001413 }
Chris Lattnerd05adbc2001-10-03 03:19:33 +00001414 | '{' TypeListI '}' { // Structure type?
Chris Lattner9232b992003-04-22 18:42:41 +00001415 std::vector<const Type*> Elements;
Reid Spencer08de34b2006-12-03 05:45:44 +00001416 for (std::list<llvm::PATypeHolder>::iterator I = $2->begin(),
Chris Lattnera08976b2005-02-22 23:13:58 +00001417 E = $2->end(); I != E; ++I)
Reid Spencer08de34b2006-12-03 05:45:44 +00001418 Elements.push_back(*I);
Misha Brukman5a2a3822005-05-10 22:02:28 +00001419
Reid Spencer08de34b2006-12-03 05:45:44 +00001420 $$ = new PATypeHolder(HandleUpRefs(StructType::get(Elements)));
Chris Lattnerd05adbc2001-10-03 03:19:33 +00001421 delete $2;
Reid Spencer61c83e02006-08-18 08:43:06 +00001422 CHECK_FOR_ERROR
Chris Lattnerd05adbc2001-10-03 03:19:33 +00001423 }
1424 | '{' '}' { // Empty structure type?
Reid Spencer08de34b2006-12-03 05:45:44 +00001425 $$ = new PATypeHolder(StructType::get(std::vector<const Type*>()));
Reid Spencer61c83e02006-08-18 08:43:06 +00001426 CHECK_FOR_ERROR
Chris Lattnerd05adbc2001-10-03 03:19:33 +00001427 }
Andrew Lenharth38ecbf12006-12-08 18:06:16 +00001428 | '<' '{' TypeListI '}' '>' {
1429 std::vector<const Type*> Elements;
1430 for (std::list<llvm::PATypeHolder>::iterator I = $3->begin(),
1431 E = $3->end(); I != E; ++I)
1432 Elements.push_back(*I);
1433
1434 $$ = new PATypeHolder(HandleUpRefs(StructType::get(Elements, true)));
1435 delete $3;
1436 CHECK_FOR_ERROR
1437 }
1438 | '<' '{' '}' '>' { // Empty structure type?
1439 $$ = new PATypeHolder(StructType::get(std::vector<const Type*>(), true));
1440 CHECK_FOR_ERROR
1441 }
Reid Spencere1553cc2006-12-31 05:40:12 +00001442 ;
1443
1444ArgType
Reid Spencer863dd882007-04-28 16:06:50 +00001445 : Types OptParamAttrs {
Reid Spencere1553cc2006-12-31 05:40:12 +00001446 $$.Ty = $1;
Reid Spencer863dd882007-04-28 16:06:50 +00001447 $$.Attrs = $2;
Reid Spencere1553cc2006-12-31 05:40:12 +00001448 }
1449 ;
1450
Reid Spencer2c261782007-01-05 17:06:19 +00001451ResultTypes
1452 : Types {
Reid Spencere1553cc2006-12-31 05:40:12 +00001453 if (!UpRefs.empty())
1454 GEN_ERROR("Invalid upreference in type: " + (*$1)->getDescription());
1455 if (!(*$1)->isFirstClassType())
Reid Spencerf4fa5902007-02-05 10:16:10 +00001456 GEN_ERROR("LLVM functions cannot return aggregate types");
Reid Spencer2c261782007-01-05 17:06:19 +00001457 $$ = $1;
Reid Spencere1553cc2006-12-31 05:40:12 +00001458 }
Reid Spencer2c261782007-01-05 17:06:19 +00001459 | VOID {
1460 $$ = new PATypeHolder(Type::VoidTy);
Reid Spencere1553cc2006-12-31 05:40:12 +00001461 }
1462 ;
1463
1464ArgTypeList : ArgType {
1465 $$ = new TypeWithAttrsList();
1466 $$->push_back($1);
1467 CHECK_FOR_ERROR
1468 }
1469 | ArgTypeList ',' ArgType {
1470 ($$=$1)->push_back($3);
1471 CHECK_FOR_ERROR
1472 }
1473 ;
1474
1475ArgTypeListI
1476 : ArgTypeList
1477 | ArgTypeList ',' DOTDOTDOT {
1478 $$=$1;
Reid Spencer18da0722007-04-11 02:44:20 +00001479 TypeWithAttrs TWA; TWA.Attrs = ParamAttr::None;
Reid Spencere1553cc2006-12-31 05:40:12 +00001480 TWA.Ty = new PATypeHolder(Type::VoidTy);
1481 $$->push_back(TWA);
1482 CHECK_FOR_ERROR
1483 }
1484 | DOTDOTDOT {
1485 $$ = new TypeWithAttrsList;
Reid Spencer18da0722007-04-11 02:44:20 +00001486 TypeWithAttrs TWA; TWA.Attrs = ParamAttr::None;
Reid Spencere1553cc2006-12-31 05:40:12 +00001487 TWA.Ty = new PATypeHolder(Type::VoidTy);
1488 $$->push_back(TWA);
1489 CHECK_FOR_ERROR
1490 }
1491 | /*empty*/ {
1492 $$ = new TypeWithAttrsList();
Reid Spencer61c83e02006-08-18 08:43:06 +00001493 CHECK_FOR_ERROR
Chris Lattner51727be2002-06-04 21:58:56 +00001494 };
Chris Lattner30c89792001-09-07 16:35:17 +00001495
Chris Lattner7e708292002-06-25 16:13:24 +00001496// TypeList - Used for struct declarations and as a basis for function type
Chris Lattner30c89792001-09-07 16:35:17 +00001497// declaration type lists
1498//
Reid Spencere1553cc2006-12-31 05:40:12 +00001499TypeListI : Types {
Reid Spencer08de34b2006-12-03 05:45:44 +00001500 $$ = new std::list<PATypeHolder>();
Reid Spencer2c9df212007-03-20 01:13:00 +00001501 $$->push_back(*$1);
1502 delete $1;
Reid Spencer61c83e02006-08-18 08:43:06 +00001503 CHECK_FOR_ERROR
Chris Lattner30c89792001-09-07 16:35:17 +00001504 }
Reid Spencere1553cc2006-12-31 05:40:12 +00001505 | TypeListI ',' Types {
Reid Spencer2c9df212007-03-20 01:13:00 +00001506 ($$=$1)->push_back(*$3);
1507 delete $3;
Reid Spencer61c83e02006-08-18 08:43:06 +00001508 CHECK_FOR_ERROR
Chris Lattner51727be2002-06-04 21:58:56 +00001509 };
Chris Lattner30c89792001-09-07 16:35:17 +00001510
Chris Lattnere98dda62001-07-14 06:10:16 +00001511// ConstVal - The various declarations that go into the constant pool. This
Chris Lattnerd78700d2002-08-16 21:14:40 +00001512// production is used ONLY to represent constants that show up AFTER a 'const',
1513// 'constant' or 'global' token at global scope. Constants that can be inlined
1514// into other expressions (such as integers and constexprs) are handled by the
1515// ResolvedVal, ValueRef and ConstValueRef productions.
Chris Lattnere98dda62001-07-14 06:10:16 +00001516//
Chris Lattnerd05adbc2001-10-03 03:19:33 +00001517ConstVal: Types '[' ConstVector ']' { // Nonempty unsized arr
Reid Spencere1553cc2006-12-31 05:40:12 +00001518 if (!UpRefs.empty())
1519 GEN_ERROR("Invalid upreference in type: " + (*$1)->getDescription());
Reid Spencer08de34b2006-12-03 05:45:44 +00001520 const ArrayType *ATy = dyn_cast<ArrayType>($1->get());
Chris Lattnerd05adbc2001-10-03 03:19:33 +00001521 if (ATy == 0)
Reid Spencer61c83e02006-08-18 08:43:06 +00001522 GEN_ERROR("Cannot make array constant with type: '" +
Reid Spencerf4fa5902007-02-05 10:16:10 +00001523 (*$1)->getDescription() + "'");
Chris Lattner30c89792001-09-07 16:35:17 +00001524 const Type *ETy = ATy->getElementType();
1525 int NumElements = ATy->getNumElements();
Chris Lattner00950542001-06-06 20:29:01 +00001526
Chris Lattner30c89792001-09-07 16:35:17 +00001527 // Verify that we have the correct size...
1528 if (NumElements != -1 && NumElements != (int)$3->size())
Reid Spencer61c83e02006-08-18 08:43:06 +00001529 GEN_ERROR("Type mismatch: constant sized array initialized with " +
Reid Spencer3271ed52004-07-18 00:08:11 +00001530 utostr($3->size()) + " arguments, but has size of " +
Reid Spencerf4fa5902007-02-05 10:16:10 +00001531 itostr(NumElements) + "");
Chris Lattner00950542001-06-06 20:29:01 +00001532
Chris Lattner30c89792001-09-07 16:35:17 +00001533 // Verify all elements are correct type!
1534 for (unsigned i = 0; i < $3->size(); i++) {
Reid Spencer08de34b2006-12-03 05:45:44 +00001535 if (ETy != (*$3)[i]->getType())
Reid Spencer61c83e02006-08-18 08:43:06 +00001536 GEN_ERROR("Element #" + utostr(i) + " is not of type '" +
Reid Spencer3271ed52004-07-18 00:08:11 +00001537 ETy->getDescription() +"' as required!\nIt is of type '"+
Reid Spencer08de34b2006-12-03 05:45:44 +00001538 (*$3)[i]->getType()->getDescription() + "'.");
Chris Lattner00950542001-06-06 20:29:01 +00001539 }
1540
Reid Spencer08de34b2006-12-03 05:45:44 +00001541 $$ = ConstantArray::get(ATy, *$3);
1542 delete $1; delete $3;
Reid Spencer61c83e02006-08-18 08:43:06 +00001543 CHECK_FOR_ERROR
Chris Lattner00950542001-06-06 20:29:01 +00001544 }
Chris Lattnerd05adbc2001-10-03 03:19:33 +00001545 | Types '[' ']' {
Reid Spencere1553cc2006-12-31 05:40:12 +00001546 if (!UpRefs.empty())
1547 GEN_ERROR("Invalid upreference in type: " + (*$1)->getDescription());
Reid Spencer08de34b2006-12-03 05:45:44 +00001548 const ArrayType *ATy = dyn_cast<ArrayType>($1->get());
Chris Lattnerd05adbc2001-10-03 03:19:33 +00001549 if (ATy == 0)
Reid Spencer61c83e02006-08-18 08:43:06 +00001550 GEN_ERROR("Cannot make array constant with type: '" +
Reid Spencerf4fa5902007-02-05 10:16:10 +00001551 (*$1)->getDescription() + "'");
Chris Lattnerd05adbc2001-10-03 03:19:33 +00001552
1553 int NumElements = ATy->getNumElements();
Chris Lattner30c89792001-09-07 16:35:17 +00001554 if (NumElements != -1 && NumElements != 0)
Reid Spencer61c83e02006-08-18 08:43:06 +00001555 GEN_ERROR("Type mismatch: constant sized array initialized with 0"
Reid Spencerf4fa5902007-02-05 10:16:10 +00001556 " arguments, but has size of " + itostr(NumElements) +"");
Reid Spencer08de34b2006-12-03 05:45:44 +00001557 $$ = ConstantArray::get(ATy, std::vector<Constant*>());
1558 delete $1;
Reid Spencer61c83e02006-08-18 08:43:06 +00001559 CHECK_FOR_ERROR
Chris Lattner00950542001-06-06 20:29:01 +00001560 }
Chris Lattnerd05adbc2001-10-03 03:19:33 +00001561 | Types 'c' STRINGCONSTANT {
Reid Spencere1553cc2006-12-31 05:40:12 +00001562 if (!UpRefs.empty())
1563 GEN_ERROR("Invalid upreference in type: " + (*$1)->getDescription());
Reid Spencer08de34b2006-12-03 05:45:44 +00001564 const ArrayType *ATy = dyn_cast<ArrayType>($1->get());
Chris Lattnerd05adbc2001-10-03 03:19:33 +00001565 if (ATy == 0)
Reid Spencer61c83e02006-08-18 08:43:06 +00001566 GEN_ERROR("Cannot make array constant with type: '" +
Reid Spencerf4fa5902007-02-05 10:16:10 +00001567 (*$1)->getDescription() + "'");
Chris Lattnerd05adbc2001-10-03 03:19:33 +00001568
Chris Lattner30c89792001-09-07 16:35:17 +00001569 int NumElements = ATy->getNumElements();
1570 const Type *ETy = ATy->getElementType();
Reid Spencer6ecdcc12007-05-22 18:52:21 +00001571 if (NumElements != -1 && NumElements != int($3->length()))
Reid Spencer61c83e02006-08-18 08:43:06 +00001572 GEN_ERROR("Can't build string constant of size " +
Reid Spencer6ecdcc12007-05-22 18:52:21 +00001573 itostr((int)($3->length())) +
Reid Spencerf4fa5902007-02-05 10:16:10 +00001574 " when array has size " + itostr(NumElements) + "");
Chris Lattner9232b992003-04-22 18:42:41 +00001575 std::vector<Constant*> Vals;
Reid Spencere1553cc2006-12-31 05:40:12 +00001576 if (ETy == Type::Int8Ty) {
Reid Spencer6ecdcc12007-05-22 18:52:21 +00001577 for (unsigned i = 0; i < $3->length(); ++i)
1578 Vals.push_back(ConstantInt::get(ETy, (*$3)[i]));
Chris Lattner93750fa2001-07-28 17:48:55 +00001579 } else {
Reid Spencer6ecdcc12007-05-22 18:52:21 +00001580 delete $3;
Reid Spencerf4fa5902007-02-05 10:16:10 +00001581 GEN_ERROR("Cannot build string arrays of non byte sized elements");
Chris Lattner93750fa2001-07-28 17:48:55 +00001582 }
Reid Spencer6ecdcc12007-05-22 18:52:21 +00001583 delete $3;
Reid Spencer08de34b2006-12-03 05:45:44 +00001584 $$ = ConstantArray::get(ATy, Vals);
1585 delete $1;
Reid Spencer61c83e02006-08-18 08:43:06 +00001586 CHECK_FOR_ERROR
Chris Lattner93750fa2001-07-28 17:48:55 +00001587 }
Brian Gaeke715c90b2004-08-20 06:00:58 +00001588 | Types '<' ConstVector '>' { // Nonempty unsized arr
Reid Spencere1553cc2006-12-31 05:40:12 +00001589 if (!UpRefs.empty())
1590 GEN_ERROR("Invalid upreference in type: " + (*$1)->getDescription());
Reid Spencer9d6565a2007-02-15 02:26:10 +00001591 const VectorType *PTy = dyn_cast<VectorType>($1->get());
Brian Gaeke715c90b2004-08-20 06:00:58 +00001592 if (PTy == 0)
Reid Spencer61c83e02006-08-18 08:43:06 +00001593 GEN_ERROR("Cannot make packed constant with type: '" +
Reid Spencerf4fa5902007-02-05 10:16:10 +00001594 (*$1)->getDescription() + "'");
Brian Gaeke715c90b2004-08-20 06:00:58 +00001595 const Type *ETy = PTy->getElementType();
1596 int NumElements = PTy->getNumElements();
1597
1598 // Verify that we have the correct size...
1599 if (NumElements != -1 && NumElements != (int)$3->size())
Reid Spencer61c83e02006-08-18 08:43:06 +00001600 GEN_ERROR("Type mismatch: constant sized packed initialized with " +
Brian Gaeke715c90b2004-08-20 06:00:58 +00001601 utostr($3->size()) + " arguments, but has size of " +
Reid Spencerf4fa5902007-02-05 10:16:10 +00001602 itostr(NumElements) + "");
Brian Gaeke715c90b2004-08-20 06:00:58 +00001603
1604 // Verify all elements are correct type!
1605 for (unsigned i = 0; i < $3->size(); i++) {
Reid Spencer08de34b2006-12-03 05:45:44 +00001606 if (ETy != (*$3)[i]->getType())
Reid Spencer61c83e02006-08-18 08:43:06 +00001607 GEN_ERROR("Element #" + utostr(i) + " is not of type '" +
Brian Gaeke715c90b2004-08-20 06:00:58 +00001608 ETy->getDescription() +"' as required!\nIt is of type '"+
Reid Spencer08de34b2006-12-03 05:45:44 +00001609 (*$3)[i]->getType()->getDescription() + "'.");
Brian Gaeke715c90b2004-08-20 06:00:58 +00001610 }
1611
Reid Spencer9d6565a2007-02-15 02:26:10 +00001612 $$ = ConstantVector::get(PTy, *$3);
Reid Spencer08de34b2006-12-03 05:45:44 +00001613 delete $1; delete $3;
Reid Spencer61c83e02006-08-18 08:43:06 +00001614 CHECK_FOR_ERROR
Brian Gaeke715c90b2004-08-20 06:00:58 +00001615 }
Chris Lattnerd05adbc2001-10-03 03:19:33 +00001616 | Types '{' ConstVector '}' {
Reid Spencer08de34b2006-12-03 05:45:44 +00001617 const StructType *STy = dyn_cast<StructType>($1->get());
Chris Lattnerd05adbc2001-10-03 03:19:33 +00001618 if (STy == 0)
Reid Spencer61c83e02006-08-18 08:43:06 +00001619 GEN_ERROR("Cannot make struct constant with type: '" +
Reid Spencerf4fa5902007-02-05 10:16:10 +00001620 (*$1)->getDescription() + "'");
Chris Lattneraf76d0e2003-04-15 16:09:31 +00001621
Chris Lattnerc6212f12003-05-21 16:06:56 +00001622 if ($3->size() != STy->getNumContainedTypes())
Reid Spencerf4fa5902007-02-05 10:16:10 +00001623 GEN_ERROR("Illegal number of initializers for structure type");
Chris Lattnerc6212f12003-05-21 16:06:56 +00001624
Chris Lattneraf76d0e2003-04-15 16:09:31 +00001625 // Check to ensure that constants are compatible with the type initializer!
1626 for (unsigned i = 0, e = $3->size(); i != e; ++i)
Reid Spencer08de34b2006-12-03 05:45:44 +00001627 if ((*$3)[i]->getType() != STy->getElementType(i))
Reid Spencer61c83e02006-08-18 08:43:06 +00001628 GEN_ERROR("Expected type '" +
Chris Lattnerd21cd802004-02-09 04:37:31 +00001629 STy->getElementType(i)->getDescription() +
Chris Lattneraf76d0e2003-04-15 16:09:31 +00001630 "' for element #" + utostr(i) +
Reid Spencerf4fa5902007-02-05 10:16:10 +00001631 " of structure initializer");
Chris Lattneraf76d0e2003-04-15 16:09:31 +00001632
Andrew Lenharth1acc5a42007-01-08 18:16:47 +00001633 // Check to ensure that Type is not packed
1634 if (STy->isPacked())
Chris Lattner4989b842007-04-26 05:30:35 +00001635 GEN_ERROR("Unpacked Initializer to vector type '" +
1636 STy->getDescription() + "'");
Andrew Lenharth1acc5a42007-01-08 18:16:47 +00001637
Reid Spencer08de34b2006-12-03 05:45:44 +00001638 $$ = ConstantStruct::get(STy, *$3);
1639 delete $1; delete $3;
Reid Spencer61c83e02006-08-18 08:43:06 +00001640 CHECK_FOR_ERROR
Chris Lattner00950542001-06-06 20:29:01 +00001641 }
Chris Lattnerc6212f12003-05-21 16:06:56 +00001642 | Types '{' '}' {
Reid Spencere1553cc2006-12-31 05:40:12 +00001643 if (!UpRefs.empty())
1644 GEN_ERROR("Invalid upreference in type: " + (*$1)->getDescription());
Reid Spencer08de34b2006-12-03 05:45:44 +00001645 const StructType *STy = dyn_cast<StructType>($1->get());
Chris Lattnerc6212f12003-05-21 16:06:56 +00001646 if (STy == 0)
Reid Spencer61c83e02006-08-18 08:43:06 +00001647 GEN_ERROR("Cannot make struct constant with type: '" +
Reid Spencerf4fa5902007-02-05 10:16:10 +00001648 (*$1)->getDescription() + "'");
Chris Lattnerc6212f12003-05-21 16:06:56 +00001649
1650 if (STy->getNumContainedTypes() != 0)
Reid Spencerf4fa5902007-02-05 10:16:10 +00001651 GEN_ERROR("Illegal number of initializers for structure type");
Chris Lattnerc6212f12003-05-21 16:06:56 +00001652
Andrew Lenharth1acc5a42007-01-08 18:16:47 +00001653 // Check to ensure that Type is not packed
1654 if (STy->isPacked())
Chris Lattner4989b842007-04-26 05:30:35 +00001655 GEN_ERROR("Unpacked Initializer to vector type '" +
1656 STy->getDescription() + "'");
Andrew Lenharth1acc5a42007-01-08 18:16:47 +00001657
1658 $$ = ConstantStruct::get(STy, std::vector<Constant*>());
1659 delete $1;
1660 CHECK_FOR_ERROR
1661 }
1662 | Types '<' '{' ConstVector '}' '>' {
1663 const StructType *STy = dyn_cast<StructType>($1->get());
1664 if (STy == 0)
1665 GEN_ERROR("Cannot make struct constant with type: '" +
Reid Spencerf4fa5902007-02-05 10:16:10 +00001666 (*$1)->getDescription() + "'");
Andrew Lenharth1acc5a42007-01-08 18:16:47 +00001667
1668 if ($4->size() != STy->getNumContainedTypes())
Reid Spencerf4fa5902007-02-05 10:16:10 +00001669 GEN_ERROR("Illegal number of initializers for structure type");
Andrew Lenharth1acc5a42007-01-08 18:16:47 +00001670
1671 // Check to ensure that constants are compatible with the type initializer!
1672 for (unsigned i = 0, e = $4->size(); i != e; ++i)
1673 if ((*$4)[i]->getType() != STy->getElementType(i))
1674 GEN_ERROR("Expected type '" +
1675 STy->getElementType(i)->getDescription() +
1676 "' for element #" + utostr(i) +
Reid Spencerf4fa5902007-02-05 10:16:10 +00001677 " of structure initializer");
Andrew Lenharth1acc5a42007-01-08 18:16:47 +00001678
1679 // Check to ensure that Type is packed
1680 if (!STy->isPacked())
Reid Spencerac9dcb92007-02-15 03:39:18 +00001681 GEN_ERROR("Vector initializer to non-vector type '" +
1682 STy->getDescription() + "'");
Andrew Lenharth1acc5a42007-01-08 18:16:47 +00001683
1684 $$ = ConstantStruct::get(STy, *$4);
1685 delete $1; delete $4;
1686 CHECK_FOR_ERROR
1687 }
1688 | Types '<' '{' '}' '>' {
1689 if (!UpRefs.empty())
1690 GEN_ERROR("Invalid upreference in type: " + (*$1)->getDescription());
1691 const StructType *STy = dyn_cast<StructType>($1->get());
1692 if (STy == 0)
1693 GEN_ERROR("Cannot make struct constant with type: '" +
Reid Spencerf4fa5902007-02-05 10:16:10 +00001694 (*$1)->getDescription() + "'");
Andrew Lenharth1acc5a42007-01-08 18:16:47 +00001695
1696 if (STy->getNumContainedTypes() != 0)
Reid Spencerf4fa5902007-02-05 10:16:10 +00001697 GEN_ERROR("Illegal number of initializers for structure type");
Andrew Lenharth1acc5a42007-01-08 18:16:47 +00001698
1699 // Check to ensure that Type is packed
1700 if (!STy->isPacked())
Reid Spencerac9dcb92007-02-15 03:39:18 +00001701 GEN_ERROR("Vector initializer to non-vector type '" +
1702 STy->getDescription() + "'");
Andrew Lenharth1acc5a42007-01-08 18:16:47 +00001703
Reid Spencer08de34b2006-12-03 05:45:44 +00001704 $$ = ConstantStruct::get(STy, std::vector<Constant*>());
1705 delete $1;
Reid Spencer61c83e02006-08-18 08:43:06 +00001706 CHECK_FOR_ERROR
Chris Lattnerc6212f12003-05-21 16:06:56 +00001707 }
Chris Lattnerd05adbc2001-10-03 03:19:33 +00001708 | Types NULL_TOK {
Reid Spencere1553cc2006-12-31 05:40:12 +00001709 if (!UpRefs.empty())
1710 GEN_ERROR("Invalid upreference in type: " + (*$1)->getDescription());
Reid Spencer08de34b2006-12-03 05:45:44 +00001711 const PointerType *PTy = dyn_cast<PointerType>($1->get());
Chris Lattnerd05adbc2001-10-03 03:19:33 +00001712 if (PTy == 0)
Reid Spencer61c83e02006-08-18 08:43:06 +00001713 GEN_ERROR("Cannot make null pointer constant with type: '" +
Reid Spencerf4fa5902007-02-05 10:16:10 +00001714 (*$1)->getDescription() + "'");
Chris Lattnerd05adbc2001-10-03 03:19:33 +00001715
Reid Spencer08de34b2006-12-03 05:45:44 +00001716 $$ = ConstantPointerNull::get(PTy);
1717 delete $1;
Reid Spencer61c83e02006-08-18 08:43:06 +00001718 CHECK_FOR_ERROR
Chris Lattnerdf7306f2001-10-03 01:49:25 +00001719 }
Chris Lattner16710e92004-10-16 18:17:13 +00001720 | Types UNDEF {
Reid Spencere1553cc2006-12-31 05:40:12 +00001721 if (!UpRefs.empty())
1722 GEN_ERROR("Invalid upreference in type: " + (*$1)->getDescription());
Reid Spencer08de34b2006-12-03 05:45:44 +00001723 $$ = UndefValue::get($1->get());
1724 delete $1;
Reid Spencer61c83e02006-08-18 08:43:06 +00001725 CHECK_FOR_ERROR
Chris Lattner16710e92004-10-16 18:17:13 +00001726 }
Chris Lattner2079fde2001-10-13 06:41:08 +00001727 | Types SymbolicValueRef {
Reid Spencere1553cc2006-12-31 05:40:12 +00001728 if (!UpRefs.empty())
1729 GEN_ERROR("Invalid upreference in type: " + (*$1)->getDescription());
Reid Spencer08de34b2006-12-03 05:45:44 +00001730 const PointerType *Ty = dyn_cast<PointerType>($1->get());
Chris Lattnerf4ba6c72001-10-03 06:12:09 +00001731 if (Ty == 0)
Reid Spencerf4fa5902007-02-05 10:16:10 +00001732 GEN_ERROR("Global const reference must be a pointer type");
Chris Lattnerf4ba6c72001-10-03 06:12:09 +00001733
Chris Lattner3101c252002-08-15 17:58:33 +00001734 // ConstExprs can exist in the body of a function, thus creating
Reid Spencer3271ed52004-07-18 00:08:11 +00001735 // GlobalValues whenever they refer to a variable. Because we are in
Reid Spencer186a43f2007-03-19 18:39:36 +00001736 // the context of a function, getExistingVal will search the functions
Chris Lattner3101c252002-08-15 17:58:33 +00001737 // symbol table instead of the module symbol table for the global symbol,
1738 // which throws things all off. To get around this, we just tell
Reid Spencer186a43f2007-03-19 18:39:36 +00001739 // getExistingVal that we are at global scope here.
Chris Lattner3101c252002-08-15 17:58:33 +00001740 //
Chris Lattner394f2eb2003-10-16 20:12:13 +00001741 Function *SavedCurFn = CurFun.CurrentFunction;
1742 CurFun.CurrentFunction = 0;
Chris Lattner3101c252002-08-15 17:58:33 +00001743
Reid Spencer186a43f2007-03-19 18:39:36 +00001744 Value *V = getExistingVal(Ty, $2);
Reid Spencer5b7e7532006-09-28 19:28:24 +00001745 CHECK_FOR_ERROR
Chris Lattnerf4ba6c72001-10-03 06:12:09 +00001746
Chris Lattner394f2eb2003-10-16 20:12:13 +00001747 CurFun.CurrentFunction = SavedCurFn;
Chris Lattner3101c252002-08-15 17:58:33 +00001748
Chris Lattner2079fde2001-10-13 06:41:08 +00001749 // If this is an initializer for a constant pointer, which is referencing a
1750 // (currently) undefined variable, create a stub now that shall be replaced
1751 // in the future with the right type of variable.
1752 //
1753 if (V == 0) {
Reid Spencer1755a9a2007-02-05 17:01:20 +00001754 assert(isa<PointerType>(Ty) && "Globals may only be used as pointers!");
Chris Lattner2079fde2001-10-13 06:41:08 +00001755 const PointerType *PT = cast<PointerType>(Ty);
1756
1757 // First check to see if the forward references value is already created!
1758 PerModuleInfo::GlobalRefsType::iterator I =
Reid Spencer3271ed52004-07-18 00:08:11 +00001759 CurModule.GlobalRefs.find(std::make_pair(PT, $2));
Chris Lattner2079fde2001-10-13 06:41:08 +00001760
1761 if (I != CurModule.GlobalRefs.end()) {
Reid Spencer3271ed52004-07-18 00:08:11 +00001762 V = I->second; // Placeholder already exists, use it...
Chris Lattnera989b232003-12-23 20:05:15 +00001763 $2.destroy();
Chris Lattner2079fde2001-10-13 06:41:08 +00001764 } else {
Chris Lattner8a327842004-07-14 21:44:00 +00001765 std::string Name;
Reid Spencerb2d17862007-01-26 08:04:51 +00001766 if ($2.Type == ValID::GlobalName)
Reid Spencer6ecdcc12007-05-22 18:52:21 +00001767 Name = $2.getName();
Reid Spencerb2d17862007-01-26 08:04:51 +00001768 else if ($2.Type != ValID::GlobalID)
1769 GEN_ERROR("Invalid reference to global");
Chris Lattner8a327842004-07-14 21:44:00 +00001770
Reid Spencer3271ed52004-07-18 00:08:11 +00001771 // Create the forward referenced global.
Chris Lattnera09000d2004-07-14 23:03:46 +00001772 GlobalValue *GV;
1773 if (const FunctionType *FTy =
1774 dyn_cast<FunctionType>(PT->getElementType())) {
Chris Lattner4989b842007-04-26 05:30:35 +00001775 GV = new Function(FTy, GlobalValue::ExternalWeakLinkage, Name,
Chris Lattnera09000d2004-07-14 23:03:46 +00001776 CurModule.CurrentModule);
1777 } else {
Reid Spencer3271ed52004-07-18 00:08:11 +00001778 GV = new GlobalVariable(PT->getElementType(), false,
Chris Lattner4989b842007-04-26 05:30:35 +00001779 GlobalValue::ExternalWeakLinkage, 0,
Chris Lattnera09000d2004-07-14 23:03:46 +00001780 Name, CurModule.CurrentModule);
1781 }
Chris Lattner8a327842004-07-14 21:44:00 +00001782
Reid Spencer3271ed52004-07-18 00:08:11 +00001783 // Keep track of the fact that we have a forward ref to recycle it
1784 CurModule.GlobalRefs.insert(std::make_pair(std::make_pair(PT, $2), GV));
1785 V = GV;
Chris Lattner2079fde2001-10-13 06:41:08 +00001786 }
Chris Lattnerf4ba6c72001-10-03 06:12:09 +00001787 }
1788
Reid Spencer08de34b2006-12-03 05:45:44 +00001789 $$ = cast<GlobalValue>(V);
1790 delete $1; // Free the type handle
Reid Spencer61c83e02006-08-18 08:43:06 +00001791 CHECK_FOR_ERROR
Vikram S. Adved3f7eb02002-07-14 22:59:28 +00001792 }
Chris Lattnerd78700d2002-08-16 21:14:40 +00001793 | Types ConstExpr {
Reid Spencere1553cc2006-12-31 05:40:12 +00001794 if (!UpRefs.empty())
1795 GEN_ERROR("Invalid upreference in type: " + (*$1)->getDescription());
Reid Spencer08de34b2006-12-03 05:45:44 +00001796 if ($1->get() != $2->getType())
Reid Spencerb4fdfdb2007-01-04 00:05:48 +00001797 GEN_ERROR("Mismatched types for constant expression: " +
1798 (*$1)->getDescription() + " and " + $2->getType()->getDescription());
Chris Lattnerd78700d2002-08-16 21:14:40 +00001799 $$ = $2;
Reid Spencer08de34b2006-12-03 05:45:44 +00001800 delete $1;
Reid Spencer61c83e02006-08-18 08:43:06 +00001801 CHECK_FOR_ERROR
Chris Lattnerf4600482003-06-28 20:01:34 +00001802 }
1803 | Types ZEROINITIALIZER {
Reid Spencere1553cc2006-12-31 05:40:12 +00001804 if (!UpRefs.empty())
1805 GEN_ERROR("Invalid upreference in type: " + (*$1)->getDescription());
Reid Spencer08de34b2006-12-03 05:45:44 +00001806 const Type *Ty = $1->get();
Chris Lattner78915932004-11-28 16:45:45 +00001807 if (isa<FunctionType>(Ty) || Ty == Type::LabelTy || isa<OpaqueType>(Ty))
Reid Spencerf4fa5902007-02-05 10:16:10 +00001808 GEN_ERROR("Cannot create a null initialized value of this type");
Reid Spencer08de34b2006-12-03 05:45:44 +00001809 $$ = Constant::getNullValue(Ty);
1810 delete $1;
Reid Spencer61c83e02006-08-18 08:43:06 +00001811 CHECK_FOR_ERROR
Reid Spencer08de34b2006-12-03 05:45:44 +00001812 }
Reid Spencere1553cc2006-12-31 05:40:12 +00001813 | IntType ESINT64VAL { // integral constants
Reid Spencer9ffad0a2006-12-20 17:20:09 +00001814 if (!ConstantInt::isValueValidForType($1, $2))
Reid Spencerf4fa5902007-02-05 10:16:10 +00001815 GEN_ERROR("Constant value doesn't fit in type");
Reid Spencereac65742007-03-19 20:40:22 +00001816 $$ = ConstantInt::get($1, $2, true);
Reid Spencerf2310042007-02-28 02:23:44 +00001817 CHECK_FOR_ERROR
1818 }
1819 | IntType ESAPINTVAL { // arbitrary precision integer constants
1820 uint32_t BitWidth = cast<IntegerType>($1)->getBitWidth();
1821 if ($2->getBitWidth() > BitWidth) {
1822 GEN_ERROR("Constant value does not fit in type");
Reid Spenceraf1aacd2007-03-01 19:32:01 +00001823 }
1824 $2->sextOrTrunc(BitWidth);
1825 $$ = ConstantInt::get(*$2);
Reid Spencerf2310042007-02-28 02:23:44 +00001826 delete $2;
Reid Spencer9ffad0a2006-12-20 17:20:09 +00001827 CHECK_FOR_ERROR
1828 }
Reid Spencere1553cc2006-12-31 05:40:12 +00001829 | IntType EUINT64VAL { // integral constants
Reid Spencer9ffad0a2006-12-20 17:20:09 +00001830 if (!ConstantInt::isValueValidForType($1, $2))
Reid Spencerf4fa5902007-02-05 10:16:10 +00001831 GEN_ERROR("Constant value doesn't fit in type");
Reid Spencereac65742007-03-19 20:40:22 +00001832 $$ = ConstantInt::get($1, $2, false);
Reid Spencerf2310042007-02-28 02:23:44 +00001833 CHECK_FOR_ERROR
1834 }
1835 | IntType EUAPINTVAL { // arbitrary precision integer constants
1836 uint32_t BitWidth = cast<IntegerType>($1)->getBitWidth();
1837 if ($2->getBitWidth() > BitWidth) {
1838 GEN_ERROR("Constant value does not fit in type");
Reid Spenceraf1aacd2007-03-01 19:32:01 +00001839 }
1840 $2->zextOrTrunc(BitWidth);
1841 $$ = ConstantInt::get(*$2);
Reid Spencerf2310042007-02-28 02:23:44 +00001842 delete $2;
Reid Spencer9ffad0a2006-12-20 17:20:09 +00001843 CHECK_FOR_ERROR
1844 }
Reid Spencer8088e9d2007-01-13 05:00:20 +00001845 | INTTYPE TRUETOK { // Boolean constants
1846 assert(cast<IntegerType>($1)->getBitWidth() == 1 && "Not Bool?");
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00001847 $$ = ConstantInt::getTrue();
Reid Spencer61c83e02006-08-18 08:43:06 +00001848 CHECK_FOR_ERROR
Chris Lattnerd05e3592002-08-15 18:17:28 +00001849 }
Reid Spencer8088e9d2007-01-13 05:00:20 +00001850 | INTTYPE FALSETOK { // Boolean constants
1851 assert(cast<IntegerType>($1)->getBitWidth() == 1 && "Not Bool?");
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00001852 $$ = ConstantInt::getFalse();
Reid Spencer61c83e02006-08-18 08:43:06 +00001853 CHECK_FOR_ERROR
Chris Lattnerd05e3592002-08-15 18:17:28 +00001854 }
1855 | FPType FPVAL { // Float & Double constants
Reid Spencer08de34b2006-12-03 05:45:44 +00001856 if (!ConstantFP::isValueValidForType($1, $2))
Reid Spencerf4fa5902007-02-05 10:16:10 +00001857 GEN_ERROR("Floating point constant invalid for type");
Reid Spencer08de34b2006-12-03 05:45:44 +00001858 $$ = ConstantFP::get($1, $2);
Reid Spencer61c83e02006-08-18 08:43:06 +00001859 CHECK_FOR_ERROR
Chris Lattnerd05e3592002-08-15 18:17:28 +00001860 };
1861
Chris Lattner00950542001-06-06 20:29:01 +00001862
Reid Spencer3da59db2006-11-27 01:05:10 +00001863ConstExpr: CastOps '(' ConstVal TO Types ')' {
Reid Spencere1553cc2006-12-31 05:40:12 +00001864 if (!UpRefs.empty())
1865 GEN_ERROR("Invalid upreference in type: " + (*$5)->getDescription());
Reid Spencer08de34b2006-12-03 05:45:44 +00001866 Constant *Val = $3;
Reid Spencer93947c32007-01-17 02:47:33 +00001867 const Type *DestTy = $5->get();
1868 if (!CastInst::castIsValid($1, $3, DestTy))
1869 GEN_ERROR("invalid cast opcode for cast from '" +
1870 Val->getType()->getDescription() + "' to '" +
Reid Spencerf4fa5902007-02-05 10:16:10 +00001871 DestTy->getDescription() + "'");
Reid Spencer93947c32007-01-17 02:47:33 +00001872 $$ = ConstantExpr::getCast($1, $3, DestTy);
Reid Spencer08de34b2006-12-03 05:45:44 +00001873 delete $5;
Vikram S. Adved3f7eb02002-07-14 22:59:28 +00001874 }
Chris Lattnerd78700d2002-08-16 21:14:40 +00001875 | GETELEMENTPTR '(' ConstVal IndexList ')' {
Reid Spencer08de34b2006-12-03 05:45:44 +00001876 if (!isa<PointerType>($3->getType()))
Reid Spencerf4fa5902007-02-05 10:16:10 +00001877 GEN_ERROR("GetElementPtr requires a pointer operand");
Chris Lattnerc188eeb2002-07-30 18:54:25 +00001878
Reid Spencer08de34b2006-12-03 05:45:44 +00001879 const Type *IdxTy =
Chris Lattnerc856c7a2007-02-13 00:57:40 +00001880 GetElementPtrInst::getIndexedType($3->getType(), &(*$4)[0], $4->size(),
1881 true);
Reid Spencer08de34b2006-12-03 05:45:44 +00001882 if (!IdxTy)
Reid Spencerf4fa5902007-02-05 10:16:10 +00001883 GEN_ERROR("Index list invalid for constant getelementptr");
Reid Spencer08de34b2006-12-03 05:45:44 +00001884
Chris Lattnere0135402007-01-31 04:43:46 +00001885 SmallVector<Constant*, 8> IdxVec;
Reid Spencer08de34b2006-12-03 05:45:44 +00001886 for (unsigned i = 0, e = $4->size(); i != e; ++i)
1887 if (Constant *C = dyn_cast<Constant>((*$4)[i]))
Chris Lattnercc4b6ec2002-07-18 00:14:27 +00001888 IdxVec.push_back(C);
1889 else
Reid Spencerf4fa5902007-02-05 10:16:10 +00001890 GEN_ERROR("Indices to constant getelementptr must be constants");
Chris Lattnercc4b6ec2002-07-18 00:14:27 +00001891
Chris Lattnerd78700d2002-08-16 21:14:40 +00001892 delete $4;
Chris Lattnercc4b6ec2002-07-18 00:14:27 +00001893
Chris Lattnere0135402007-01-31 04:43:46 +00001894 $$ = ConstantExpr::getGetElementPtr($3, &IdxVec[0], IdxVec.size());
Reid Spencer61c83e02006-08-18 08:43:06 +00001895 CHECK_FOR_ERROR
Vikram S. Adved3f7eb02002-07-14 22:59:28 +00001896 }
Chris Lattner76f0ff32004-03-12 05:51:36 +00001897 | SELECT '(' ConstVal ',' ConstVal ',' ConstVal ')' {
Reid Spencer4fe16d62007-01-11 18:21:29 +00001898 if ($3->getType() != Type::Int1Ty)
Reid Spencerf4fa5902007-02-05 10:16:10 +00001899 GEN_ERROR("Select condition must be of boolean type");
Reid Spencer08de34b2006-12-03 05:45:44 +00001900 if ($5->getType() != $7->getType())
Reid Spencerf4fa5902007-02-05 10:16:10 +00001901 GEN_ERROR("Select operand types must match");
Reid Spencer08de34b2006-12-03 05:45:44 +00001902 $$ = ConstantExpr::getSelect($3, $5, $7);
Reid Spencer61c83e02006-08-18 08:43:06 +00001903 CHECK_FOR_ERROR
Chris Lattner76f0ff32004-03-12 05:51:36 +00001904 }
Chris Lattnerc6d2f152004-08-17 17:26:41 +00001905 | ArithmeticOps '(' ConstVal ',' ConstVal ')' {
Reid Spencer08de34b2006-12-03 05:45:44 +00001906 if ($3->getType() != $5->getType())
Reid Spencerf4fa5902007-02-05 10:16:10 +00001907 GEN_ERROR("Binary operator types must match");
Reid Spencer1628cec2006-10-26 06:15:43 +00001908 CHECK_FOR_ERROR;
Reid Spencerc6e956e2006-12-05 19:15:41 +00001909 $$ = ConstantExpr::get($1, $3, $5);
Chris Lattnerc6d2f152004-08-17 17:26:41 +00001910 }
1911 | LogicalOps '(' ConstVal ',' ConstVal ')' {
Reid Spencer08de34b2006-12-03 05:45:44 +00001912 if ($3->getType() != $5->getType())
Reid Spencerf4fa5902007-02-05 10:16:10 +00001913 GEN_ERROR("Logical operator types must match");
Chris Lattner42a75512007-01-15 02:27:26 +00001914 if (!$3->getType()->isInteger()) {
Reid Spencer9d6565a2007-02-15 02:26:10 +00001915 if (Instruction::isShift($1) || !isa<VectorType>($3->getType()) ||
1916 !cast<VectorType>($3->getType())->getElementType()->isInteger())
Reid Spencerf4fa5902007-02-05 10:16:10 +00001917 GEN_ERROR("Logical operator requires integral operands");
Chris Lattner0a017832005-12-21 18:31:29 +00001918 }
Reid Spencer08de34b2006-12-03 05:45:44 +00001919 $$ = ConstantExpr::get($1, $3, $5);
Reid Spencer61c83e02006-08-18 08:43:06 +00001920 CHECK_FOR_ERROR
Chris Lattnerc6d2f152004-08-17 17:26:41 +00001921 }
Reid Spencer763ed5e2006-12-04 05:20:06 +00001922 | ICMP IPredicates '(' ConstVal ',' ConstVal ')' {
1923 if ($4->getType() != $6->getType())
Reid Spencerf4fa5902007-02-05 10:16:10 +00001924 GEN_ERROR("icmp operand types must match");
Reid Spencer763ed5e2006-12-04 05:20:06 +00001925 $$ = ConstantExpr::getICmp($2, $4, $6);
Reid Spencer08de34b2006-12-03 05:45:44 +00001926 }
Reid Spencer763ed5e2006-12-04 05:20:06 +00001927 | FCMP FPredicates '(' ConstVal ',' ConstVal ')' {
1928 if ($4->getType() != $6->getType())
Reid Spencerf4fa5902007-02-05 10:16:10 +00001929 GEN_ERROR("fcmp operand types must match");
Reid Spencer763ed5e2006-12-04 05:20:06 +00001930 $$ = ConstantExpr::getFCmp($2, $4, $6);
Reid Spencer08de34b2006-12-03 05:45:44 +00001931 }
Robert Bocchino9c62b562006-01-10 19:04:32 +00001932 | EXTRACTELEMENT '(' ConstVal ',' ConstVal ')' {
Reid Spencer08de34b2006-12-03 05:45:44 +00001933 if (!ExtractElementInst::isValidOperands($3, $5))
Reid Spencerf4fa5902007-02-05 10:16:10 +00001934 GEN_ERROR("Invalid extractelement operands");
Reid Spencer08de34b2006-12-03 05:45:44 +00001935 $$ = ConstantExpr::getExtractElement($3, $5);
Reid Spencer61c83e02006-08-18 08:43:06 +00001936 CHECK_FOR_ERROR
Chris Lattnerca73cd82006-04-08 03:53:34 +00001937 }
1938 | INSERTELEMENT '(' ConstVal ',' ConstVal ',' ConstVal ')' {
Reid Spencer08de34b2006-12-03 05:45:44 +00001939 if (!InsertElementInst::isValidOperands($3, $5, $7))
Reid Spencerf4fa5902007-02-05 10:16:10 +00001940 GEN_ERROR("Invalid insertelement operands");
Reid Spencer08de34b2006-12-03 05:45:44 +00001941 $$ = ConstantExpr::getInsertElement($3, $5, $7);
Reid Spencer61c83e02006-08-18 08:43:06 +00001942 CHECK_FOR_ERROR
Chris Lattnerca73cd82006-04-08 03:53:34 +00001943 }
1944 | SHUFFLEVECTOR '(' ConstVal ',' ConstVal ',' ConstVal ')' {
Reid Spencer08de34b2006-12-03 05:45:44 +00001945 if (!ShuffleVectorInst::isValidOperands($3, $5, $7))
Reid Spencerf4fa5902007-02-05 10:16:10 +00001946 GEN_ERROR("Invalid shufflevector operands");
Reid Spencer08de34b2006-12-03 05:45:44 +00001947 $$ = ConstantExpr::getShuffleVector($3, $5, $7);
Reid Spencer61c83e02006-08-18 08:43:06 +00001948 CHECK_FOR_ERROR
Chris Lattner699f1eb2002-08-14 17:12:33 +00001949 };
Vikram S. Adved3f7eb02002-07-14 22:59:28 +00001950
Chris Lattnerca73cd82006-04-08 03:53:34 +00001951
Misha Brukmanbc0e9982003-07-14 17:20:40 +00001952// ConstVector - A list of comma separated constants.
Chris Lattner00950542001-06-06 20:29:01 +00001953ConstVector : ConstVector ',' ConstVal {
Chris Lattner30c89792001-09-07 16:35:17 +00001954 ($$ = $1)->push_back($3);
Reid Spencer61c83e02006-08-18 08:43:06 +00001955 CHECK_FOR_ERROR
Chris Lattner00950542001-06-06 20:29:01 +00001956 }
1957 | ConstVal {
Reid Spencer08de34b2006-12-03 05:45:44 +00001958 $$ = new std::vector<Constant*>();
Chris Lattner30c89792001-09-07 16:35:17 +00001959 $$->push_back($1);
Reid Spencer61c83e02006-08-18 08:43:06 +00001960 CHECK_FOR_ERROR
Chris Lattner51727be2002-06-04 21:58:56 +00001961 };
Chris Lattner00950542001-06-06 20:29:01 +00001962
Chris Lattnerbcbf6ba2001-07-26 16:29:15 +00001963
Chris Lattner1781aca2001-09-18 04:00:54 +00001964// GlobalType - Match either GLOBAL or CONSTANT for global declarations...
Chris Lattner51727be2002-06-04 21:58:56 +00001965GlobalType : GLOBAL { $$ = false; } | CONSTANT { $$ = true; };
Chris Lattner1781aca2001-09-18 04:00:54 +00001966
Lauro Ramos Venancioc7635522007-04-12 18:32:50 +00001967// ThreadLocal
1968ThreadLocal : THREAD_LOCAL { $$ = true; } | { $$ = false; };
1969
Anton Korobeynikova80e1182007-04-28 13:45:00 +00001970// AliaseeRef - Match either GlobalValue or bitcast to GlobalValue.
1971AliaseeRef : ResultTypes SymbolicValueRef {
1972 const Type* VTy = $1->get();
1973 Value *V = getVal(VTy, $2);
1974 GlobalValue* Aliasee = dyn_cast<GlobalValue>(V);
1975 if (!Aliasee)
1976 GEN_ERROR("Aliases can be created only to global values");
1977
1978 $$ = Aliasee;
1979 CHECK_FOR_ERROR
1980 delete $1;
1981 }
1982 | BITCAST '(' AliaseeRef TO Types ')' {
1983 Constant *Val = $3;
1984 const Type *DestTy = $5->get();
1985 if (!CastInst::castIsValid($1, $3, DestTy))
1986 GEN_ERROR("invalid cast opcode for cast from '" +
1987 Val->getType()->getDescription() + "' to '" +
1988 DestTy->getDescription() + "'");
1989
1990 $$ = ConstantExpr::getCast($1, $3, DestTy);
1991 CHECK_FOR_ERROR
1992 delete $5;
1993 };
Chris Lattner00950542001-06-06 20:29:01 +00001994
Chris Lattner0e73ce62002-05-02 19:11:13 +00001995//===----------------------------------------------------------------------===//
1996// Rules to match Modules
1997//===----------------------------------------------------------------------===//
1998
1999// Module rule: Capture the result of parsing the whole file into a result
2000// variable...
2001//
Reid Spencerb951bc02006-12-29 20:29:48 +00002002Module
2003 : DefinitionList {
2004 $$ = ParserResult = CurModule.CurrentModule;
2005 CurModule.ModuleDone();
2006 CHECK_FOR_ERROR;
2007 }
2008 | /*empty*/ {
2009 $$ = ParserResult = CurModule.CurrentModule;
2010 CurModule.ModuleDone();
2011 CHECK_FOR_ERROR;
2012 }
2013 ;
Chris Lattner0e73ce62002-05-02 19:11:13 +00002014
Reid Spencerb951bc02006-12-29 20:29:48 +00002015DefinitionList
2016 : Definition
2017 | DefinitionList Definition
2018 ;
2019
2020Definition
Jeff Cohen361c3ef2007-01-21 19:19:31 +00002021 : DEFINE { CurFun.isDeclare = false; } Function {
Chris Lattner394f2eb2003-10-16 20:12:13 +00002022 CurFun.FunctionDone();
Reid Spencer61c83e02006-08-18 08:43:06 +00002023 CHECK_FOR_ERROR
Reid Spencerb951bc02006-12-29 20:29:48 +00002024 }
2025 | DECLARE { CurFun.isDeclare = true; } FunctionProto {
Reid Spencer61c83e02006-08-18 08:43:06 +00002026 CHECK_FOR_ERROR
Chris Lattner0e73ce62002-05-02 19:11:13 +00002027 }
Reid Spencerb951bc02006-12-29 20:29:48 +00002028 | MODULE ASM_TOK AsmBlock {
Reid Spencer61c83e02006-08-18 08:43:06 +00002029 CHECK_FOR_ERROR
Chris Lattneree454772006-01-23 23:05:15 +00002030 }
Reid Spencerb2d17862007-01-26 08:04:51 +00002031 | OptLocalAssign TYPE Types {
Reid Spencere1553cc2006-12-31 05:40:12 +00002032 if (!UpRefs.empty())
2033 GEN_ERROR("Invalid upreference in type: " + (*$3)->getDescription());
Chris Lattner4a42e902001-10-22 05:56:09 +00002034 // Eagerly resolve types. This is not an optimization, this is a
2035 // requirement that is due to the fact that we could have this:
2036 //
2037 // %list = type { %list * }
2038 // %list = type { %list * } ; repeated type decl
2039 //
2040 // If types are not resolved eagerly, then the two types will not be
2041 // determined to be the same type!
2042 //
Reid Spencerb951bc02006-12-29 20:29:48 +00002043 ResolveTypeTo($1, *$3);
Chris Lattner4a42e902001-10-22 05:56:09 +00002044
Reid Spencerb951bc02006-12-29 20:29:48 +00002045 if (!setTypeName(*$3, $1) && !$1) {
Reid Spencer5b7e7532006-09-28 19:28:24 +00002046 CHECK_FOR_ERROR
Chris Lattner8c89a0a2004-07-13 08:10:10 +00002047 // If this is a named type that is not a redefinition, add it to the slot
2048 // table.
Reid Spencerb951bc02006-12-29 20:29:48 +00002049 CurModule.Types.push_back(*$3);
Chris Lattner30c89792001-09-07 16:35:17 +00002050 }
Reid Spencer08de34b2006-12-03 05:45:44 +00002051
Reid Spencerb951bc02006-12-29 20:29:48 +00002052 delete $3;
Reid Spencer61c83e02006-08-18 08:43:06 +00002053 CHECK_FOR_ERROR
Chris Lattner30c89792001-09-07 16:35:17 +00002054 }
Reid Spencerb2d17862007-01-26 08:04:51 +00002055 | OptLocalAssign TYPE VOID {
Reid Spencere1553cc2006-12-31 05:40:12 +00002056 ResolveTypeTo($1, $3);
2057
2058 if (!setTypeName($3, $1) && !$1) {
2059 CHECK_FOR_ERROR
2060 // If this is a named type that is not a redefinition, add it to the slot
2061 // table.
2062 CurModule.Types.push_back($3);
2063 }
2064 CHECK_FOR_ERROR
2065 }
Lauro Ramos Venancioc7635522007-04-12 18:32:50 +00002066 | OptGlobalAssign GVVisibilityStyle ThreadLocal GlobalType ConstVal {
Reid Spencerb2d17862007-01-26 08:04:51 +00002067 /* "Externally Visible" Linkage */
Anton Korobeynikov7f705592007-01-12 19:20:47 +00002068 if ($5 == 0)
Reid Spencerf4fa5902007-02-05 10:16:10 +00002069 GEN_ERROR("Global value initializer is not a constant");
Lauro Ramos Venancioc7635522007-04-12 18:32:50 +00002070 CurGV = ParseGlobalVariable($1, GlobalValue::ExternalLinkage,
2071 $2, $4, $5->getType(), $5, $3);
Reid Spencerb951bc02006-12-29 20:29:48 +00002072 CHECK_FOR_ERROR
Anton Korobeynikov7f705592007-01-12 19:20:47 +00002073 } GlobalVarAttributes {
2074 CurGV = 0;
2075 }
Chris Lattner4989b842007-04-26 05:30:35 +00002076 | OptGlobalAssign GVInternalLinkage GVVisibilityStyle ThreadLocal GlobalType
2077 ConstVal {
Lauro Ramos Venancioc7635522007-04-12 18:32:50 +00002078 if ($6 == 0)
2079 GEN_ERROR("Global value initializer is not a constant");
2080 CurGV = ParseGlobalVariable($1, $2, $3, $5, $6->getType(), $6, $4);
Anton Korobeynikov7f705592007-01-12 19:20:47 +00002081 CHECK_FOR_ERROR
Lauro Ramos Venancioc7635522007-04-12 18:32:50 +00002082 } GlobalVarAttributes {
2083 CurGV = 0;
2084 }
Chris Lattner4989b842007-04-26 05:30:35 +00002085 | OptGlobalAssign GVExternalLinkage GVVisibilityStyle ThreadLocal GlobalType
2086 Types {
Lauro Ramos Venancioc7635522007-04-12 18:32:50 +00002087 if (!UpRefs.empty())
2088 GEN_ERROR("Invalid upreference in type: " + (*$6)->getDescription());
2089 CurGV = ParseGlobalVariable($1, $2, $3, $5, *$6, 0, $4);
2090 CHECK_FOR_ERROR
2091 delete $6;
Reid Spencer5b7e7532006-09-28 19:28:24 +00002092 } GlobalVarAttributes {
Anton Korobeynikovb74ed072006-09-14 18:23:27 +00002093 CurGV = 0;
2094 CHECK_FOR_ERROR
2095 }
Anton Korobeynikova80e1182007-04-28 13:45:00 +00002096 | OptGlobalAssign GVVisibilityStyle ALIAS AliasLinkage AliaseeRef {
Reid Spencer6ecdcc12007-05-22 18:52:21 +00002097 std::string Name;
2098 if ($1) {
2099 Name = *$1;
2100 delete $1;
2101 }
Anton Korobeynikov8b0a8c82007-04-25 14:27:10 +00002102 if (Name.empty())
Anton Korobeynikova80e1182007-04-28 13:45:00 +00002103 GEN_ERROR("Alias name cannot be empty");
2104
2105 Constant* Aliasee = $5;
2106 if (Aliasee == 0)
Reid Spencer6ecdcc12007-05-22 18:52:21 +00002107 GEN_ERROR(std::string("Invalid aliasee for alias: ") + Name);
Anton Korobeynikova80e1182007-04-28 13:45:00 +00002108
2109 GlobalAlias* GA = new GlobalAlias(Aliasee->getType(), $4, Name, Aliasee,
2110 CurModule.CurrentModule);
2111 GA->setVisibility($2);
2112 InsertValue(GA, CurModule.Values);
Anton Korobeynikov8b0a8c82007-04-25 14:27:10 +00002113 CHECK_FOR_ERROR
Anton Korobeynikov8b0a8c82007-04-25 14:27:10 +00002114 }
Reid Spencerb951bc02006-12-29 20:29:48 +00002115 | TARGET TargetDefinition {
Anton Korobeynikovb74ed072006-09-14 18:23:27 +00002116 CHECK_FOR_ERROR
2117 }
Reid Spencerb951bc02006-12-29 20:29:48 +00002118 | DEPLIBS '=' LibrariesDefinition {
Reid Spencer61c83e02006-08-18 08:43:06 +00002119 CHECK_FOR_ERROR
Chris Lattnere98dda62001-07-14 06:10:16 +00002120 }
Reid Spencerb951bc02006-12-29 20:29:48 +00002121 ;
Chris Lattner00950542001-06-06 20:29:01 +00002122
2123
Chris Lattneree454772006-01-23 23:05:15 +00002124AsmBlock : STRINGCONSTANT {
Chris Lattner66316012006-01-24 04:14:29 +00002125 const std::string &AsmSoFar = CurModule.CurrentModule->getModuleInlineAsm();
Chris Lattneree454772006-01-23 23:05:15 +00002126 if (AsmSoFar.empty())
Reid Spencer6ecdcc12007-05-22 18:52:21 +00002127 CurModule.CurrentModule->setModuleInlineAsm(*$1);
Chris Lattneree454772006-01-23 23:05:15 +00002128 else
Reid Spencer6ecdcc12007-05-22 18:52:21 +00002129 CurModule.CurrentModule->setModuleInlineAsm(AsmSoFar+"\n"+*$1);
2130 delete $1;
Reid Spencer61c83e02006-08-18 08:43:06 +00002131 CHECK_FOR_ERROR
Chris Lattneree454772006-01-23 23:05:15 +00002132};
Chris Lattnerb9bcbb52003-04-22 19:07:06 +00002133
Reid Spencerb2d17862007-01-26 08:04:51 +00002134TargetDefinition : TRIPLE '=' STRINGCONSTANT {
Reid Spencer6ecdcc12007-05-22 18:52:21 +00002135 CurModule.CurrentModule->setTargetTriple(*$3);
2136 delete $3;
John Criswell2f6a8b12006-10-24 19:09:48 +00002137 }
Chris Lattner10b27112006-10-22 06:07:41 +00002138 | DATALAYOUT '=' STRINGCONSTANT {
Reid Spencer6ecdcc12007-05-22 18:52:21 +00002139 CurModule.CurrentModule->setDataLayout(*$3);
2140 delete $3;
Owen Andersoncf7ff2b2006-10-18 02:21:12 +00002141 };
Chris Lattnerb9bcbb52003-04-22 19:07:06 +00002142
Reid Spencerfeaf10e2004-07-25 21:30:51 +00002143LibrariesDefinition : '[' LibList ']';
Reid Spencer0be13e72004-07-25 17:58:28 +00002144
2145LibList : LibList ',' STRINGCONSTANT {
Reid Spencer6ecdcc12007-05-22 18:52:21 +00002146 CurModule.CurrentModule->addLibrary(*$3);
2147 delete $3;
Reid Spencer61c83e02006-08-18 08:43:06 +00002148 CHECK_FOR_ERROR
Reid Spencer0be13e72004-07-25 17:58:28 +00002149 }
2150 | STRINGCONSTANT {
Reid Spencer6ecdcc12007-05-22 18:52:21 +00002151 CurModule.CurrentModule->addLibrary(*$1);
2152 delete $1;
Reid Spencer61c83e02006-08-18 08:43:06 +00002153 CHECK_FOR_ERROR
Reid Spencer0be13e72004-07-25 17:58:28 +00002154 }
2155 | /* empty: end of list */ {
Reid Spencer61c83e02006-08-18 08:43:06 +00002156 CHECK_FOR_ERROR
Reid Spencer0be13e72004-07-25 17:58:28 +00002157 }
2158 ;
Chris Lattnerb9bcbb52003-04-22 19:07:06 +00002159
Chris Lattner00950542001-06-06 20:29:01 +00002160//===----------------------------------------------------------------------===//
Chris Lattner79df7c02002-03-26 18:01:55 +00002161// Rules to match Function Headers
Chris Lattner00950542001-06-06 20:29:01 +00002162//===----------------------------------------------------------------------===//
2163
Reid Spencerb2d17862007-01-26 08:04:51 +00002164ArgListH : ArgListH ',' Types OptParamAttrs OptLocalName {
Reid Spencere1553cc2006-12-31 05:40:12 +00002165 if (!UpRefs.empty())
2166 GEN_ERROR("Invalid upreference in type: " + (*$3)->getDescription());
2167 if (*$3 == Type::VoidTy)
Reid Spencerf4fa5902007-02-05 10:16:10 +00002168 GEN_ERROR("void typed arguments are invalid");
Reid Spencere1553cc2006-12-31 05:40:12 +00002169 ArgListEntry E; E.Attrs = $4; E.Ty = $3; E.Name = $5;
Chris Lattner69da5cf2002-10-13 20:57:00 +00002170 $$ = $1;
Reid Spencere1553cc2006-12-31 05:40:12 +00002171 $1->push_back(E);
Reid Spencer61c83e02006-08-18 08:43:06 +00002172 CHECK_FOR_ERROR
Chris Lattner00950542001-06-06 20:29:01 +00002173 }
Reid Spencerb2d17862007-01-26 08:04:51 +00002174 | Types OptParamAttrs OptLocalName {
Reid Spencere1553cc2006-12-31 05:40:12 +00002175 if (!UpRefs.empty())
2176 GEN_ERROR("Invalid upreference in type: " + (*$1)->getDescription());
2177 if (*$1 == Type::VoidTy)
Reid Spencerf4fa5902007-02-05 10:16:10 +00002178 GEN_ERROR("void typed arguments are invalid");
Reid Spencere1553cc2006-12-31 05:40:12 +00002179 ArgListEntry E; E.Attrs = $2; E.Ty = $1; E.Name = $3;
2180 $$ = new ArgListType;
2181 $$->push_back(E);
Reid Spencer61c83e02006-08-18 08:43:06 +00002182 CHECK_FOR_ERROR
Chris Lattner51727be2002-06-04 21:58:56 +00002183 };
Chris Lattner00950542001-06-06 20:29:01 +00002184
2185ArgList : ArgListH {
2186 $$ = $1;
Reid Spencer61c83e02006-08-18 08:43:06 +00002187 CHECK_FOR_ERROR
Chris Lattner00950542001-06-06 20:29:01 +00002188 }
Chris Lattner69da5cf2002-10-13 20:57:00 +00002189 | ArgListH ',' DOTDOTDOT {
2190 $$ = $1;
Reid Spencere1553cc2006-12-31 05:40:12 +00002191 struct ArgListEntry E;
2192 E.Ty = new PATypeHolder(Type::VoidTy);
2193 E.Name = 0;
Reid Spencer18da0722007-04-11 02:44:20 +00002194 E.Attrs = ParamAttr::None;
Reid Spencere1553cc2006-12-31 05:40:12 +00002195 $$->push_back(E);
Reid Spencer61c83e02006-08-18 08:43:06 +00002196 CHECK_FOR_ERROR
Chris Lattner69da5cf2002-10-13 20:57:00 +00002197 }
2198 | DOTDOTDOT {
Reid Spencere1553cc2006-12-31 05:40:12 +00002199 $$ = new ArgListType;
2200 struct ArgListEntry E;
2201 E.Ty = new PATypeHolder(Type::VoidTy);
2202 E.Name = 0;
Reid Spencer18da0722007-04-11 02:44:20 +00002203 E.Attrs = ParamAttr::None;
Reid Spencere1553cc2006-12-31 05:40:12 +00002204 $$->push_back(E);
Reid Spencer61c83e02006-08-18 08:43:06 +00002205 CHECK_FOR_ERROR
Chris Lattner69da5cf2002-10-13 20:57:00 +00002206 }
Chris Lattner00950542001-06-06 20:29:01 +00002207 | /* empty */ {
2208 $$ = 0;
Reid Spencer61c83e02006-08-18 08:43:06 +00002209 CHECK_FOR_ERROR
Chris Lattner51727be2002-06-04 21:58:56 +00002210 };
Chris Lattner00950542001-06-06 20:29:01 +00002211
Reid Spencerb2d17862007-01-26 08:04:51 +00002212FunctionHeaderH : OptCallingConv ResultTypes GlobalName '(' ArgList ')'
Reid Spencer2c261782007-01-05 17:06:19 +00002213 OptFuncAttrs OptSection OptAlign {
Reid Spencer6ecdcc12007-05-22 18:52:21 +00002214 std::string FunctionName(*$3);
2215 delete $3; // Free strdup'd memory!
Chris Lattnerdda71962001-11-26 18:54:16 +00002216
Reid Spencer98b3c5c2007-01-02 21:53:43 +00002217 // Check the function result for abstractness if this is a define. We should
2218 // have no abstract types at this point
Reid Spencer2c261782007-01-05 17:06:19 +00002219 if (!CurFun.isDeclare && CurModule.TypeIsUnresolved($2))
2220 GEN_ERROR("Reference to abstract result: "+ $2->get()->getDescription());
Reid Spencer98b3c5c2007-01-02 21:53:43 +00002221
Chris Lattner9232b992003-04-22 18:42:41 +00002222 std::vector<const Type*> ParamTypeList;
Reid Spencer4f859aa2007-04-22 05:46:44 +00002223 ParamAttrsVector Attrs;
2224 if ($7 != ParamAttr::None) {
2225 ParamAttrsWithIndex PAWI; PAWI.index = 0; PAWI.attrs = $7;
2226 Attrs.push_back(PAWI);
2227 }
Chris Lattnera8e8f162005-05-06 20:27:19 +00002228 if ($5) { // If there are arguments...
Reid Spencer5694b6e2007-04-09 06:17:21 +00002229 unsigned index = 1;
2230 for (ArgListType::iterator I = $5->begin(); I != $5->end(); ++I, ++index) {
Reid Spencere1553cc2006-12-31 05:40:12 +00002231 const Type* Ty = I->Ty->get();
Reid Spencer98b3c5c2007-01-02 21:53:43 +00002232 if (!CurFun.isDeclare && CurModule.TypeIsUnresolved(I->Ty))
2233 GEN_ERROR("Reference to abstract argument: " + Ty->getDescription());
Reid Spencere1553cc2006-12-31 05:40:12 +00002234 ParamTypeList.push_back(Ty);
2235 if (Ty != Type::VoidTy)
Reid Spencer4f859aa2007-04-22 05:46:44 +00002236 if (I->Attrs != ParamAttr::None) {
2237 ParamAttrsWithIndex PAWI; PAWI.index = index; PAWI.attrs = I->Attrs;
2238 Attrs.push_back(PAWI);
2239 }
Reid Spencere1553cc2006-12-31 05:40:12 +00002240 }
Chris Lattnerbf0a37b2002-10-15 21:41:14 +00002241 }
Chris Lattner00950542001-06-06 20:29:01 +00002242
Chris Lattner2079fde2001-10-13 06:41:08 +00002243 bool isVarArg = ParamTypeList.size() && ParamTypeList.back() == Type::VoidTy;
2244 if (isVarArg) ParamTypeList.pop_back();
2245
Reid Spencer4f859aa2007-04-22 05:46:44 +00002246 ParamAttrsList *PAL = 0;
2247 if (!Attrs.empty())
2248 PAL = ParamAttrsList::get(Attrs);
Reid Spencer5694b6e2007-04-09 06:17:21 +00002249
Reid Spencer863dd882007-04-28 16:06:50 +00002250 FunctionType *FT = FunctionType::get(*$2, ParamTypeList, isVarArg, PAL);
Chris Lattnerbf0a37b2002-10-15 21:41:14 +00002251 const PointerType *PFT = PointerType::get(FT);
Reid Spencer2c261782007-01-05 17:06:19 +00002252 delete $2;
Chris Lattner00950542001-06-06 20:29:01 +00002253
Chris Lattnera09000d2004-07-14 23:03:46 +00002254 ValID ID;
2255 if (!FunctionName.empty()) {
Reid Spencerb2d17862007-01-26 08:04:51 +00002256 ID = ValID::createGlobalName((char*)FunctionName.c_str());
Chris Lattnera09000d2004-07-14 23:03:46 +00002257 } else {
Reid Spencer186a43f2007-03-19 18:39:36 +00002258 ID = ValID::createGlobalID(CurModule.Values.size());
Chris Lattnera09000d2004-07-14 23:03:46 +00002259 }
2260
Chris Lattnerd9ce6ad2004-07-14 19:33:47 +00002261 Function *Fn = 0;
Chris Lattnera09000d2004-07-14 23:03:46 +00002262 // See if this function was forward referenced. If so, recycle the object.
Reid Spencer863dd882007-04-28 16:06:50 +00002263 if (GlobalValue *FWRef = CurModule.GetForwardRefForGlobal(PFT, ID)) {
Chris Lattnera09000d2004-07-14 23:03:46 +00002264 // Move the function to the end of the list, from whereever it was
2265 // previously inserted.
2266 Fn = cast<Function>(FWRef);
2267 CurModule.CurrentModule->getFunctionList().remove(Fn);
2268 CurModule.CurrentModule->getFunctionList().push_back(Fn);
2269 } else if (!FunctionName.empty() && // Merge with an earlier prototype?
Reid Spenceref9b9a72007-02-05 20:47:22 +00002270 (Fn = CurModule.CurrentModule->getFunction(FunctionName))) {
Reid Spencer863dd882007-04-28 16:06:50 +00002271 if (Fn->getFunctionType() != FT) {
Reid Spenceref9b9a72007-02-05 20:47:22 +00002272 // The existing function doesn't have the same type. This is an overload
2273 // error.
2274 GEN_ERROR("Overload of function '" + FunctionName + "' not permitted.");
2275 } else if (!CurFun.isDeclare && !Fn->isDeclaration()) {
2276 // Neither the existing or the current function is a declaration and they
2277 // have the same name and same type. Clearly this is a redefinition.
Reid Spencerf4fa5902007-02-05 10:16:10 +00002278 GEN_ERROR("Redefinition of function '" + FunctionName + "'");
Reid Spenceref9b9a72007-02-05 20:47:22 +00002279 } if (Fn->isDeclaration()) {
2280 // Make sure to strip off any argument names so we can't get conflicts.
Chris Lattnere4d5c442005-03-15 04:54:21 +00002281 for (Function::arg_iterator AI = Fn->arg_begin(), AE = Fn->arg_end();
Chris Lattnera09000d2004-07-14 23:03:46 +00002282 AI != AE; ++AI)
2283 AI->setName("");
Reid Spenceref9b9a72007-02-05 20:47:22 +00002284 }
Chris Lattnerd9ce6ad2004-07-14 19:33:47 +00002285 } else { // Not already defined?
Chris Lattner4989b842007-04-26 05:30:35 +00002286 Fn = new Function(FT, GlobalValue::ExternalWeakLinkage, FunctionName,
Chris Lattnerd9ce6ad2004-07-14 19:33:47 +00002287 CurModule.CurrentModule);
Anton Korobeynikovb74ed072006-09-14 18:23:27 +00002288
Chris Lattnerd9ce6ad2004-07-14 19:33:47 +00002289 InsertValue(Fn, CurModule.Values);
Chris Lattnerd9ce6ad2004-07-14 19:33:47 +00002290 }
Chris Lattner00950542001-06-06 20:29:01 +00002291
Chris Lattner394f2eb2003-10-16 20:12:13 +00002292 CurFun.FunctionStart(Fn);
Anton Korobeynikov93c2b372006-09-17 13:06:18 +00002293
2294 if (CurFun.isDeclare) {
2295 // If we have declaration, always overwrite linkage. This will allow us to
2296 // correctly handle cases, when pointer to function is passed as argument to
2297 // another function.
2298 Fn->setLinkage(CurFun.Linkage);
Anton Korobeynikov7f705592007-01-12 19:20:47 +00002299 Fn->setVisibility(CurFun.Visibility);
Anton Korobeynikov93c2b372006-09-17 13:06:18 +00002300 }
Chris Lattnera8e8f162005-05-06 20:27:19 +00002301 Fn->setCallingConv($1);
Reid Spencer2c261782007-01-05 17:06:19 +00002302 Fn->setAlignment($9);
2303 if ($8) {
Reid Spencer6ecdcc12007-05-22 18:52:21 +00002304 Fn->setSection(*$8);
2305 delete $8;
Chris Lattner164c3782005-11-12 00:11:10 +00002306 }
Chris Lattner00950542001-06-06 20:29:01 +00002307
Chris Lattner7e708292002-06-25 16:13:24 +00002308 // Add all of the arguments we parsed to the function...
Chris Lattnera8e8f162005-05-06 20:27:19 +00002309 if ($5) { // Is null if empty...
Chris Lattner69da5cf2002-10-13 20:57:00 +00002310 if (isVarArg) { // Nuke the last entry
Reid Spenceref9b9a72007-02-05 20:47:22 +00002311 assert($5->back().Ty->get() == Type::VoidTy && $5->back().Name == 0 &&
Reid Spencer1755a9a2007-02-05 17:01:20 +00002312 "Not a varargs marker!");
Reid Spencere1553cc2006-12-31 05:40:12 +00002313 delete $5->back().Ty;
Chris Lattnera8e8f162005-05-06 20:27:19 +00002314 $5->pop_back(); // Delete the last entry
Chris Lattner69da5cf2002-10-13 20:57:00 +00002315 }
Chris Lattnere4d5c442005-03-15 04:54:21 +00002316 Function::arg_iterator ArgIt = Fn->arg_begin();
Reid Spenceref9b9a72007-02-05 20:47:22 +00002317 Function::arg_iterator ArgEnd = Fn->arg_end();
Reid Spencere1553cc2006-12-31 05:40:12 +00002318 unsigned Idx = 1;
Reid Spenceref9b9a72007-02-05 20:47:22 +00002319 for (ArgListType::iterator I = $5->begin();
2320 I != $5->end() && ArgIt != ArgEnd; ++I, ++ArgIt) {
Reid Spencere1553cc2006-12-31 05:40:12 +00002321 delete I->Ty; // Delete the typeholder...
Reid Spencer6ecdcc12007-05-22 18:52:21 +00002322 setValueName(ArgIt, I->Name); // Insert arg into symtab...
Reid Spencer5b7e7532006-09-28 19:28:24 +00002323 CHECK_FOR_ERROR
Chris Lattner69da5cf2002-10-13 20:57:00 +00002324 InsertValue(ArgIt);
Reid Spencere1553cc2006-12-31 05:40:12 +00002325 Idx++;
Chris Lattner00950542001-06-06 20:29:01 +00002326 }
Reid Spencer08de34b2006-12-03 05:45:44 +00002327
Chris Lattnera8e8f162005-05-06 20:27:19 +00002328 delete $5; // We're now done with the argument list
Chris Lattner00950542001-06-06 20:29:01 +00002329 }
Reid Spencer61c83e02006-08-18 08:43:06 +00002330 CHECK_FOR_ERROR
Chris Lattner51727be2002-06-04 21:58:56 +00002331};
Chris Lattner00950542001-06-06 20:29:01 +00002332
Chris Lattner9b02cc32002-05-03 18:23:48 +00002333BEGIN : BEGINTOK | '{'; // Allow BEGIN or '{' to start a function
2334
Anton Korobeynikov7f705592007-01-12 19:20:47 +00002335FunctionHeader : FunctionDefineLinkage GVVisibilityStyle FunctionHeaderH BEGIN {
Chris Lattner394f2eb2003-10-16 20:12:13 +00002336 $$ = CurFun.CurrentFunction;
Chris Lattner30c89792001-09-07 16:35:17 +00002337
Chris Lattner4ad02e72003-04-16 20:28:45 +00002338 // Make sure that we keep track of the linkage type even if there was a
2339 // previous "declare".
2340 $$->setLinkage($1);
Anton Korobeynikov7f705592007-01-12 19:20:47 +00002341 $$->setVisibility($2);
Chris Lattner51727be2002-06-04 21:58:56 +00002342};
Chris Lattner00950542001-06-06 20:29:01 +00002343
Chris Lattner9b02cc32002-05-03 18:23:48 +00002344END : ENDTOK | '}'; // Allow end of '}' to end a function
2345
Chris Lattner79df7c02002-03-26 18:01:55 +00002346Function : BasicBlockList END {
Chris Lattner00950542001-06-06 20:29:01 +00002347 $$ = $1;
Reid Spencer61c83e02006-08-18 08:43:06 +00002348 CHECK_FOR_ERROR
Chris Lattner51727be2002-06-04 21:58:56 +00002349};
Chris Lattner00950542001-06-06 20:29:01 +00002350
Anton Korobeynikov7f705592007-01-12 19:20:47 +00002351FunctionProto : FunctionDeclareLinkage GVVisibilityStyle FunctionHeaderH {
Reid Spencere1553cc2006-12-31 05:40:12 +00002352 CurFun.CurrentFunction->setLinkage($1);
Anton Korobeynikov7f705592007-01-12 19:20:47 +00002353 CurFun.CurrentFunction->setVisibility($2);
Anton Korobeynikovb74ed072006-09-14 18:23:27 +00002354 $$ = CurFun.CurrentFunction;
2355 CurFun.FunctionDone();
2356 CHECK_FOR_ERROR
2357 };
Chris Lattner00950542001-06-06 20:29:01 +00002358
2359//===----------------------------------------------------------------------===//
2360// Rules to match Basic Blocks
2361//===----------------------------------------------------------------------===//
2362
Chris Lattneraa2c8532006-01-25 22:26:43 +00002363OptSideEffect : /* empty */ {
2364 $$ = false;
Reid Spencer61c83e02006-08-18 08:43:06 +00002365 CHECK_FOR_ERROR
Chris Lattneraa2c8532006-01-25 22:26:43 +00002366 }
2367 | SIDEEFFECT {
2368 $$ = true;
Reid Spencer61c83e02006-08-18 08:43:06 +00002369 CHECK_FOR_ERROR
Chris Lattneraa2c8532006-01-25 22:26:43 +00002370 };
2371
Chris Lattner00950542001-06-06 20:29:01 +00002372ConstValueRef : ESINT64VAL { // A reference to a direct constant
2373 $$ = ValID::create($1);
Reid Spencer61c83e02006-08-18 08:43:06 +00002374 CHECK_FOR_ERROR
Chris Lattner00950542001-06-06 20:29:01 +00002375 }
2376 | EUINT64VAL {
2377 $$ = ValID::create($1);
Reid Spencer61c83e02006-08-18 08:43:06 +00002378 CHECK_FOR_ERROR
Chris Lattner00950542001-06-06 20:29:01 +00002379 }
Chris Lattner3d52b2f2001-07-15 00:17:01 +00002380 | FPVAL { // Perhaps it's an FP constant?
2381 $$ = ValID::create($1);
Reid Spencer61c83e02006-08-18 08:43:06 +00002382 CHECK_FOR_ERROR
Chris Lattner3d52b2f2001-07-15 00:17:01 +00002383 }
Chris Lattner91ef4602004-03-31 03:49:47 +00002384 | TRUETOK {
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00002385 $$ = ValID::create(ConstantInt::getTrue());
Reid Spencer61c83e02006-08-18 08:43:06 +00002386 CHECK_FOR_ERROR
Chris Lattner00950542001-06-06 20:29:01 +00002387 }
Chris Lattner91ef4602004-03-31 03:49:47 +00002388 | FALSETOK {
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00002389 $$ = ValID::create(ConstantInt::getFalse());
Reid Spencer61c83e02006-08-18 08:43:06 +00002390 CHECK_FOR_ERROR
Chris Lattner00950542001-06-06 20:29:01 +00002391 }
Chris Lattner1a1cb112001-09-30 22:46:54 +00002392 | NULL_TOK {
2393 $$ = ValID::createNull();
Reid Spencer61c83e02006-08-18 08:43:06 +00002394 CHECK_FOR_ERROR
Vikram S. Adved3f7eb02002-07-14 22:59:28 +00002395 }
Chris Lattner16710e92004-10-16 18:17:13 +00002396 | UNDEF {
2397 $$ = ValID::createUndef();
Reid Spencer61c83e02006-08-18 08:43:06 +00002398 CHECK_FOR_ERROR
Chris Lattner16710e92004-10-16 18:17:13 +00002399 }
Chris Lattnerf1f03df2005-12-21 17:53:02 +00002400 | ZEROINITIALIZER { // A vector zero constant.
2401 $$ = ValID::createZeroInit();
Reid Spencer61c83e02006-08-18 08:43:06 +00002402 CHECK_FOR_ERROR
Chris Lattnerf1f03df2005-12-21 17:53:02 +00002403 }
Brian Gaeke715c90b2004-08-20 06:00:58 +00002404 | '<' ConstVector '>' { // Nonempty unsized packed vector
Reid Spencer08de34b2006-12-03 05:45:44 +00002405 const Type *ETy = (*$2)[0]->getType();
Brian Gaeke715c90b2004-08-20 06:00:58 +00002406 int NumElements = $2->size();
2407
Reid Spencer9d6565a2007-02-15 02:26:10 +00002408 VectorType* pt = VectorType::get(ETy, NumElements);
Brian Gaeke715c90b2004-08-20 06:00:58 +00002409 PATypeHolder* PTy = new PATypeHolder(
Reid Spencer08de34b2006-12-03 05:45:44 +00002410 HandleUpRefs(
Reid Spencer9d6565a2007-02-15 02:26:10 +00002411 VectorType::get(
Reid Spencer08de34b2006-12-03 05:45:44 +00002412 ETy,
2413 NumElements)
2414 )
2415 );
Brian Gaeke715c90b2004-08-20 06:00:58 +00002416
2417 // Verify all elements are correct type!
2418 for (unsigned i = 0; i < $2->size(); i++) {
Reid Spencer08de34b2006-12-03 05:45:44 +00002419 if (ETy != (*$2)[i]->getType())
Reid Spencer61c83e02006-08-18 08:43:06 +00002420 GEN_ERROR("Element #" + utostr(i) + " is not of type '" +
Brian Gaeke715c90b2004-08-20 06:00:58 +00002421 ETy->getDescription() +"' as required!\nIt is of type '" +
Reid Spencer08de34b2006-12-03 05:45:44 +00002422 (*$2)[i]->getType()->getDescription() + "'.");
Brian Gaeke715c90b2004-08-20 06:00:58 +00002423 }
2424
Reid Spencer9d6565a2007-02-15 02:26:10 +00002425 $$ = ValID::create(ConstantVector::get(pt, *$2));
Brian Gaeke715c90b2004-08-20 06:00:58 +00002426 delete PTy; delete $2;
Reid Spencer61c83e02006-08-18 08:43:06 +00002427 CHECK_FOR_ERROR
Brian Gaeke715c90b2004-08-20 06:00:58 +00002428 }
Chris Lattnerd78700d2002-08-16 21:14:40 +00002429 | ConstExpr {
Reid Spencer08de34b2006-12-03 05:45:44 +00002430 $$ = ValID::create($1);
Reid Spencer61c83e02006-08-18 08:43:06 +00002431 CHECK_FOR_ERROR
Chris Lattneraa2c8532006-01-25 22:26:43 +00002432 }
2433 | ASM_TOK OptSideEffect STRINGCONSTANT ',' STRINGCONSTANT {
Reid Spencer6ecdcc12007-05-22 18:52:21 +00002434 $$ = ValID::createInlineAsm(*$3, *$5, $2);
2435 delete $3;
2436 delete $5;
Reid Spencer61c83e02006-08-18 08:43:06 +00002437 CHECK_FOR_ERROR
Chris Lattnerd78700d2002-08-16 21:14:40 +00002438 };
Chris Lattner1a1cb112001-09-30 22:46:54 +00002439
Chris Lattner2079fde2001-10-13 06:41:08 +00002440// SymbolicValueRef - Reference to one of two ways of symbolically refering to
2441// another value.
2442//
Reid Spencerb2d17862007-01-26 08:04:51 +00002443SymbolicValueRef : LOCALVAL_ID { // Is it an integer reference...?
2444 $$ = ValID::createLocalID($1);
Reid Spencer61c83e02006-08-18 08:43:06 +00002445 CHECK_FOR_ERROR
Chris Lattner00950542001-06-06 20:29:01 +00002446 }
Reid Spencerb2d17862007-01-26 08:04:51 +00002447 | GLOBALVAL_ID {
2448 $$ = ValID::createGlobalID($1);
2449 CHECK_FOR_ERROR
2450 }
2451 | LocalName { // Is it a named reference...?
Reid Spencer6ecdcc12007-05-22 18:52:21 +00002452 $$ = ValID::createLocalName(*$1);
2453 delete $1;
Reid Spencerb2d17862007-01-26 08:04:51 +00002454 CHECK_FOR_ERROR
2455 }
2456 | GlobalName { // Is it a named reference...?
Reid Spencer6ecdcc12007-05-22 18:52:21 +00002457 $$ = ValID::createGlobalName(*$1);
2458 delete $1;
Reid Spencer61c83e02006-08-18 08:43:06 +00002459 CHECK_FOR_ERROR
Chris Lattner51727be2002-06-04 21:58:56 +00002460 };
Chris Lattner2079fde2001-10-13 06:41:08 +00002461
2462// ValueRef - A reference to a definition... either constant or symbolic
Chris Lattner51727be2002-06-04 21:58:56 +00002463ValueRef : SymbolicValueRef | ConstValueRef;
Chris Lattner2079fde2001-10-13 06:41:08 +00002464
Chris Lattner00950542001-06-06 20:29:01 +00002465
Chris Lattnerbcbf6ba2001-07-26 16:29:15 +00002466// ResolvedVal - a <type> <value> pair. This is used only in cases where the
2467// type immediately preceeds the value reference, and allows complex constant
2468// pool references (for things like: 'ret [2 x int] [ int 12, int 42]')
Chris Lattnerdf7306f2001-10-03 01:49:25 +00002469ResolvedVal : Types ValueRef {
Reid Spencere1553cc2006-12-31 05:40:12 +00002470 if (!UpRefs.empty())
2471 GEN_ERROR("Invalid upreference in type: " + (*$1)->getDescription());
2472 $$ = getVal(*$1, $2);
2473 delete $1;
Reid Spencer61c83e02006-08-18 08:43:06 +00002474 CHECK_FOR_ERROR
Reid Spencere1553cc2006-12-31 05:40:12 +00002475 }
2476 ;
Chris Lattner8b81bf52001-07-25 22:47:46 +00002477
Chris Lattner00950542001-06-06 20:29:01 +00002478BasicBlockList : BasicBlockList BasicBlock {
Chris Lattner8ab406d2004-07-13 07:59:27 +00002479 $$ = $1;
Reid Spencer61c83e02006-08-18 08:43:06 +00002480 CHECK_FOR_ERROR
Chris Lattner00950542001-06-06 20:29:01 +00002481 }
Chris Lattner7e708292002-06-25 16:13:24 +00002482 | FunctionHeader BasicBlock { // Do not allow functions with 0 basic blocks
Chris Lattner8ab406d2004-07-13 07:59:27 +00002483 $$ = $1;
Reid Spencer61c83e02006-08-18 08:43:06 +00002484 CHECK_FOR_ERROR
Chris Lattner51727be2002-06-04 21:58:56 +00002485 };
Chris Lattner00950542001-06-06 20:29:01 +00002486
2487
2488// Basic blocks are terminated by branching instructions:
2489// br, br/cc, switch, ret
2490//
Reid Spencerb2d17862007-01-26 08:04:51 +00002491BasicBlock : InstructionList OptLocalAssign BBTerminatorInst {
Chris Lattner8ab406d2004-07-13 07:59:27 +00002492 setValueName($3, $2);
Reid Spencer5b7e7532006-09-28 19:28:24 +00002493 CHECK_FOR_ERROR
Chris Lattner2079fde2001-10-13 06:41:08 +00002494 InsertValue($3);
Chris Lattner2079fde2001-10-13 06:41:08 +00002495 $1->getInstList().push_back($3);
Chris Lattner00950542001-06-06 20:29:01 +00002496 $$ = $1;
Reid Spencer61c83e02006-08-18 08:43:06 +00002497 CHECK_FOR_ERROR
Chris Lattner51727be2002-06-04 21:58:56 +00002498 };
Chris Lattner00950542001-06-06 20:29:01 +00002499
2500InstructionList : InstructionList Inst {
Reid Spencer3da59db2006-11-27 01:05:10 +00002501 if (CastInst *CI1 = dyn_cast<CastInst>($2))
2502 if (CastInst *CI2 = dyn_cast<CastInst>(CI1->getOperand(0)))
2503 if (CI2->getParent() == 0)
2504 $1->getInstList().push_back(CI2);
Chris Lattner00950542001-06-06 20:29:01 +00002505 $1->getInstList().push_back($2);
2506 $$ = $1;
Reid Spencer61c83e02006-08-18 08:43:06 +00002507 CHECK_FOR_ERROR
Chris Lattner00950542001-06-06 20:29:01 +00002508 }
Reid Spencer186a43f2007-03-19 18:39:36 +00002509 | /* empty */ { // Empty space between instruction lists
2510 $$ = defineBBVal(ValID::createLocalID(CurFun.NextValNum));
Reid Spencer61c83e02006-08-18 08:43:06 +00002511 CHECK_FOR_ERROR
Chris Lattner22ae2322004-07-13 08:39:15 +00002512 }
Reid Spencer186a43f2007-03-19 18:39:36 +00002513 | LABELSTR { // Labelled (named) basic block
Reid Spencer6ecdcc12007-05-22 18:52:21 +00002514 $$ = defineBBVal(ValID::createLocalName(*$1));
2515 delete $1;
Reid Spencer61c83e02006-08-18 08:43:06 +00002516 CHECK_FOR_ERROR
Reid Spencer6ecdcc12007-05-22 18:52:21 +00002517
Chris Lattner51727be2002-06-04 21:58:56 +00002518 };
Chris Lattner00950542001-06-06 20:29:01 +00002519
Chris Lattnerbcbf6ba2001-07-26 16:29:15 +00002520BBTerminatorInst : RET ResolvedVal { // Return with a result...
Reid Spencer08de34b2006-12-03 05:45:44 +00002521 $$ = new ReturnInst($2);
Reid Spencer61c83e02006-08-18 08:43:06 +00002522 CHECK_FOR_ERROR
Chris Lattner00950542001-06-06 20:29:01 +00002523 }
Reid Spencer186a43f2007-03-19 18:39:36 +00002524 | RET VOID { // Return with no result...
Chris Lattner00950542001-06-06 20:29:01 +00002525 $$ = new ReturnInst();
Reid Spencer61c83e02006-08-18 08:43:06 +00002526 CHECK_FOR_ERROR
Chris Lattner00950542001-06-06 20:29:01 +00002527 }
Reid Spencer186a43f2007-03-19 18:39:36 +00002528 | BR LABEL ValueRef { // Unconditional Branch...
Reid Spencer5b7e7532006-09-28 19:28:24 +00002529 BasicBlock* tmpBB = getBBVal($3);
Reid Spencer61c83e02006-08-18 08:43:06 +00002530 CHECK_FOR_ERROR
Reid Spencer5b7e7532006-09-28 19:28:24 +00002531 $$ = new BranchInst(tmpBB);
Reid Spencer186a43f2007-03-19 18:39:36 +00002532 } // Conditional Branch...
Reid Spencer8088e9d2007-01-13 05:00:20 +00002533 | BR INTTYPE ValueRef ',' LABEL ValueRef ',' LABEL ValueRef {
2534 assert(cast<IntegerType>($2)->getBitWidth() == 1 && "Not Bool?");
Reid Spencer5b7e7532006-09-28 19:28:24 +00002535 BasicBlock* tmpBBA = getBBVal($6);
Reid Spencer61c83e02006-08-18 08:43:06 +00002536 CHECK_FOR_ERROR
Reid Spencer5b7e7532006-09-28 19:28:24 +00002537 BasicBlock* tmpBBB = getBBVal($9);
2538 CHECK_FOR_ERROR
Reid Spencer4fe16d62007-01-11 18:21:29 +00002539 Value* tmpVal = getVal(Type::Int1Ty, $3);
Reid Spencer5b7e7532006-09-28 19:28:24 +00002540 CHECK_FOR_ERROR
2541 $$ = new BranchInst(tmpBBA, tmpBBB, tmpVal);
Chris Lattner00950542001-06-06 20:29:01 +00002542 }
2543 | SWITCH IntType ValueRef ',' LABEL ValueRef '[' JumpTable ']' {
Reid Spencer08de34b2006-12-03 05:45:44 +00002544 Value* tmpVal = getVal($2, $3);
Reid Spencer5b7e7532006-09-28 19:28:24 +00002545 CHECK_FOR_ERROR
2546 BasicBlock* tmpBB = getBBVal($6);
2547 CHECK_FOR_ERROR
2548 SwitchInst *S = new SwitchInst(tmpVal, tmpBB, $8->size());
Chris Lattner00950542001-06-06 20:29:01 +00002549 $$ = S;
2550
Chris Lattner9232b992003-04-22 18:42:41 +00002551 std::vector<std::pair<Constant*,BasicBlock*> >::iterator I = $8->begin(),
Chris Lattner46748042002-04-09 19:41:42 +00002552 E = $8->end();
Chris Lattner69331f52005-02-24 05:25:17 +00002553 for (; I != E; ++I) {
2554 if (ConstantInt *CI = dyn_cast<ConstantInt>(I->first))
2555 S->addCase(CI, I->second);
2556 else
Reid Spencerf4fa5902007-02-05 10:16:10 +00002557 GEN_ERROR("Switch case is constant, but not a simple integer");
Chris Lattner69331f52005-02-24 05:25:17 +00002558 }
Chris Lattnerf57a43d2004-04-17 23:49:15 +00002559 delete $8;
Reid Spencer61c83e02006-08-18 08:43:06 +00002560 CHECK_FOR_ERROR
Chris Lattner00950542001-06-06 20:29:01 +00002561 }
Chris Lattner196850c2003-05-15 21:30:00 +00002562 | SWITCH IntType ValueRef ',' LABEL ValueRef '[' ']' {
Reid Spencer08de34b2006-12-03 05:45:44 +00002563 Value* tmpVal = getVal($2, $3);
Reid Spencer5b7e7532006-09-28 19:28:24 +00002564 CHECK_FOR_ERROR
2565 BasicBlock* tmpBB = getBBVal($6);
2566 CHECK_FOR_ERROR
2567 SwitchInst *S = new SwitchInst(tmpVal, tmpBB, 0);
Chris Lattner196850c2003-05-15 21:30:00 +00002568 $$ = S;
Reid Spencer61c83e02006-08-18 08:43:06 +00002569 CHECK_FOR_ERROR
Chris Lattner196850c2003-05-15 21:30:00 +00002570 }
Reid Spencer2c261782007-01-05 17:06:19 +00002571 | INVOKE OptCallingConv ResultTypes ValueRef '(' ValueRefList ')' OptFuncAttrs
Chris Lattnera8e8f162005-05-06 20:27:19 +00002572 TO LABEL ValueRef UNWIND LABEL ValueRef {
Chris Lattner2079fde2001-10-13 06:41:08 +00002573
Reid Spencere1553cc2006-12-31 05:40:12 +00002574 // Handle the short syntax
2575 const PointerType *PFTy = 0;
2576 const FunctionType *Ty = 0;
Reid Spencer2c261782007-01-05 17:06:19 +00002577 if (!(PFTy = dyn_cast<PointerType>($3->get())) ||
Chris Lattnerbf0a37b2002-10-15 21:41:14 +00002578 !(Ty = dyn_cast<FunctionType>(PFTy->getElementType()))) {
Chris Lattner2079fde2001-10-13 06:41:08 +00002579 // Pull out the types of all of the arguments...
Chris Lattner9232b992003-04-22 18:42:41 +00002580 std::vector<const Type*> ParamTypes;
Reid Spencer863dd882007-04-28 16:06:50 +00002581 ParamAttrsVector Attrs;
2582 if ($8 != ParamAttr::None) {
Chris Lattnerdd3094a2007-05-04 04:01:07 +00002583 ParamAttrsWithIndex PAWI; PAWI.index = 0; PAWI.attrs = $8;
Reid Spencer863dd882007-04-28 16:06:50 +00002584 Attrs.push_back(PAWI);
2585 }
Reid Spencer5694b6e2007-04-09 06:17:21 +00002586 ValueRefList::iterator I = $6->begin(), E = $6->end();
Reid Spencer863dd882007-04-28 16:06:50 +00002587 unsigned index = 1;
2588 for (; I != E; ++I, ++index) {
Reid Spencere1553cc2006-12-31 05:40:12 +00002589 const Type *Ty = I->Val->getType();
2590 if (Ty == Type::VoidTy)
2591 GEN_ERROR("Short call syntax cannot be used with varargs");
2592 ParamTypes.push_back(Ty);
Reid Spencer863dd882007-04-28 16:06:50 +00002593 if (I->Attrs != ParamAttr::None) {
2594 ParamAttrsWithIndex PAWI; PAWI.index = index; PAWI.attrs = I->Attrs;
2595 Attrs.push_back(PAWI);
2596 }
Chris Lattner2079fde2001-10-13 06:41:08 +00002597 }
Reid Spencer863dd882007-04-28 16:06:50 +00002598
2599 ParamAttrsList *PAL = 0;
2600 if (!Attrs.empty())
2601 PAL = ParamAttrsList::get(Attrs);
2602 Ty = FunctionType::get($3->get(), ParamTypes, false, PAL);
Chris Lattnerbf0a37b2002-10-15 21:41:14 +00002603 PFTy = PointerType::get(Ty);
Chris Lattner2079fde2001-10-13 06:41:08 +00002604 }
Chris Lattner2079fde2001-10-13 06:41:08 +00002605
Reid Spencer2c9df212007-03-20 01:13:00 +00002606 delete $3;
2607
Chris Lattnera8e8f162005-05-06 20:27:19 +00002608 Value *V = getVal(PFTy, $4); // Get the function we're calling...
Reid Spencer5b7e7532006-09-28 19:28:24 +00002609 CHECK_FOR_ERROR
Reid Spencer2c261782007-01-05 17:06:19 +00002610 BasicBlock *Normal = getBBVal($11);
Reid Spencer5b7e7532006-09-28 19:28:24 +00002611 CHECK_FOR_ERROR
Reid Spencer2c261782007-01-05 17:06:19 +00002612 BasicBlock *Except = getBBVal($14);
Reid Spencer5b7e7532006-09-28 19:28:24 +00002613 CHECK_FOR_ERROR
Chris Lattner2079fde2001-10-13 06:41:08 +00002614
Reid Spencere1553cc2006-12-31 05:40:12 +00002615 // Check the arguments
2616 ValueList Args;
2617 if ($6->empty()) { // Has no arguments?
2618 // Make sure no arguments is a good thing!
2619 if (Ty->getNumParams() != 0)
2620 GEN_ERROR("No arguments passed to a function that "
Reid Spencerf4fa5902007-02-05 10:16:10 +00002621 "expects arguments");
Chris Lattner2079fde2001-10-13 06:41:08 +00002622 } else { // Has arguments?
Chris Lattner79df7c02002-03-26 18:01:55 +00002623 // Loop through FunctionType's arguments and ensure they are specified
Chris Lattner2079fde2001-10-13 06:41:08 +00002624 // correctly!
Chris Lattnerd5d89962004-02-09 04:14:01 +00002625 FunctionType::param_iterator I = Ty->param_begin();
2626 FunctionType::param_iterator E = Ty->param_end();
Reid Spencere1553cc2006-12-31 05:40:12 +00002627 ValueRefList::iterator ArgI = $6->begin(), ArgE = $6->end();
Reid Spencer863dd882007-04-28 16:06:50 +00002628
Reid Spencere1553cc2006-12-31 05:40:12 +00002629 for (; ArgI != ArgE && I != E; ++ArgI, ++I) {
2630 if (ArgI->Val->getType() != *I)
2631 GEN_ERROR("Parameter " + ArgI->Val->getName()+ " is not of type '" +
Reid Spencerf4fa5902007-02-05 10:16:10 +00002632 (*I)->getDescription() + "'");
Reid Spencere1553cc2006-12-31 05:40:12 +00002633 Args.push_back(ArgI->Val);
2634 }
Reid Spencer08de34b2006-12-03 05:45:44 +00002635
Reid Spencere1553cc2006-12-31 05:40:12 +00002636 if (Ty->isVarArg()) {
2637 if (I == E)
2638 for (; ArgI != ArgE; ++ArgI)
2639 Args.push_back(ArgI->Val); // push the remaining varargs
2640 } else if (I != E || ArgI != ArgE)
Reid Spencerf4fa5902007-02-05 10:16:10 +00002641 GEN_ERROR("Invalid number of parameters detected");
Chris Lattner2079fde2001-10-13 06:41:08 +00002642 }
Reid Spencere1553cc2006-12-31 05:40:12 +00002643
2644 // Create the InvokeInst
Chris Lattner9d2fda62007-02-13 05:53:56 +00002645 InvokeInst *II = new InvokeInst(V, Normal, Except, &Args[0], Args.size());
Reid Spencere1553cc2006-12-31 05:40:12 +00002646 II->setCallingConv($2);
2647 $$ = II;
Chris Lattnera8e8f162005-05-06 20:27:19 +00002648 delete $6;
Reid Spencer61c83e02006-08-18 08:43:06 +00002649 CHECK_FOR_ERROR
Chris Lattner36143fc2003-09-08 18:54:55 +00002650 }
2651 | UNWIND {
2652 $$ = new UnwindInst();
Reid Spencer61c83e02006-08-18 08:43:06 +00002653 CHECK_FOR_ERROR
Chris Lattner16710e92004-10-16 18:17:13 +00002654 }
2655 | UNREACHABLE {
2656 $$ = new UnreachableInst();
Reid Spencer61c83e02006-08-18 08:43:06 +00002657 CHECK_FOR_ERROR
Chris Lattner51727be2002-06-04 21:58:56 +00002658 };
Chris Lattner2079fde2001-10-13 06:41:08 +00002659
2660
Chris Lattner00950542001-06-06 20:29:01 +00002661
2662JumpTable : JumpTable IntType ConstValueRef ',' LABEL ValueRef {
2663 $$ = $1;
Reid Spencer186a43f2007-03-19 18:39:36 +00002664 Constant *V = cast<Constant>(getExistingVal($2, $3));
Reid Spencer5b7e7532006-09-28 19:28:24 +00002665 CHECK_FOR_ERROR
Chris Lattner00950542001-06-06 20:29:01 +00002666 if (V == 0)
Reid Spencerf4fa5902007-02-05 10:16:10 +00002667 GEN_ERROR("May only switch on a constant pool value");
Chris Lattner00950542001-06-06 20:29:01 +00002668
Reid Spencer5b7e7532006-09-28 19:28:24 +00002669 BasicBlock* tmpBB = getBBVal($6);
Reid Spencer61c83e02006-08-18 08:43:06 +00002670 CHECK_FOR_ERROR
Reid Spencer5b7e7532006-09-28 19:28:24 +00002671 $$->push_back(std::make_pair(V, tmpBB));
Chris Lattner00950542001-06-06 20:29:01 +00002672 }
2673 | IntType ConstValueRef ',' LABEL ValueRef {
Chris Lattner9232b992003-04-22 18:42:41 +00002674 $$ = new std::vector<std::pair<Constant*, BasicBlock*> >();
Reid Spencer186a43f2007-03-19 18:39:36 +00002675 Constant *V = cast<Constant>(getExistingVal($1, $2));
Reid Spencer5b7e7532006-09-28 19:28:24 +00002676 CHECK_FOR_ERROR
Chris Lattner00950542001-06-06 20:29:01 +00002677
2678 if (V == 0)
Reid Spencerf4fa5902007-02-05 10:16:10 +00002679 GEN_ERROR("May only switch on a constant pool value");
Chris Lattner00950542001-06-06 20:29:01 +00002680
Reid Spencer5b7e7532006-09-28 19:28:24 +00002681 BasicBlock* tmpBB = getBBVal($5);
Reid Spencer61c83e02006-08-18 08:43:06 +00002682 CHECK_FOR_ERROR
Reid Spencer5b7e7532006-09-28 19:28:24 +00002683 $$->push_back(std::make_pair(V, tmpBB));
Chris Lattner51727be2002-06-04 21:58:56 +00002684 };
Chris Lattner00950542001-06-06 20:29:01 +00002685
Reid Spencerb2d17862007-01-26 08:04:51 +00002686Inst : OptLocalAssign InstVal {
Reid Spenceref9b9a72007-02-05 20:47:22 +00002687 // Is this definition named?? if so, assign the name...
2688 setValueName($2, $1);
2689 CHECK_FOR_ERROR
2690 InsertValue($2);
2691 $$ = $2;
2692 CHECK_FOR_ERROR
2693 };
2694
Chris Lattner00950542001-06-06 20:29:01 +00002695
Chris Lattnerc24d2082001-06-11 15:04:20 +00002696PHIList : Types '[' ValueRef ',' ValueRef ']' { // Used for PHI nodes
Reid Spencere1553cc2006-12-31 05:40:12 +00002697 if (!UpRefs.empty())
2698 GEN_ERROR("Invalid upreference in type: " + (*$1)->getDescription());
Chris Lattner9232b992003-04-22 18:42:41 +00002699 $$ = new std::list<std::pair<Value*, BasicBlock*> >();
Reid Spencer08de34b2006-12-03 05:45:44 +00002700 Value* tmpVal = getVal(*$1, $3);
Reid Spencer61c83e02006-08-18 08:43:06 +00002701 CHECK_FOR_ERROR
Reid Spencer5b7e7532006-09-28 19:28:24 +00002702 BasicBlock* tmpBB = getBBVal($5);
2703 CHECK_FOR_ERROR
2704 $$->push_back(std::make_pair(tmpVal, tmpBB));
Reid Spencer08de34b2006-12-03 05:45:44 +00002705 delete $1;
Chris Lattnerc24d2082001-06-11 15:04:20 +00002706 }
2707 | PHIList ',' '[' ValueRef ',' ValueRef ']' {
2708 $$ = $1;
Reid Spencer5b7e7532006-09-28 19:28:24 +00002709 Value* tmpVal = getVal($1->front().first->getType(), $4);
Reid Spencer61c83e02006-08-18 08:43:06 +00002710 CHECK_FOR_ERROR
Reid Spencer5b7e7532006-09-28 19:28:24 +00002711 BasicBlock* tmpBB = getBBVal($6);
2712 CHECK_FOR_ERROR
2713 $1->push_back(std::make_pair(tmpVal, tmpBB));
Chris Lattner51727be2002-06-04 21:58:56 +00002714 };
Chris Lattnerc24d2082001-06-11 15:04:20 +00002715
2716
Reid Spencere1553cc2006-12-31 05:40:12 +00002717ValueRefList : Types ValueRef OptParamAttrs {
2718 if (!UpRefs.empty())
2719 GEN_ERROR("Invalid upreference in type: " + (*$1)->getDescription());
2720 // Used for call and invoke instructions
2721 $$ = new ValueRefList();
2722 ValueRefListEntry E; E.Attrs = $3; E.Val = getVal($1->get(), $2);
2723 $$->push_back(E);
Reid Spencer2c9df212007-03-20 01:13:00 +00002724 delete $1;
Chris Lattner00950542001-06-06 20:29:01 +00002725 }
Reid Spencere1553cc2006-12-31 05:40:12 +00002726 | ValueRefList ',' Types ValueRef OptParamAttrs {
2727 if (!UpRefs.empty())
2728 GEN_ERROR("Invalid upreference in type: " + (*$3)->getDescription());
Chris Lattner00950542001-06-06 20:29:01 +00002729 $$ = $1;
Reid Spencere1553cc2006-12-31 05:40:12 +00002730 ValueRefListEntry E; E.Attrs = $5; E.Val = getVal($3->get(), $4);
2731 $$->push_back(E);
Reid Spencer2c9df212007-03-20 01:13:00 +00002732 delete $3;
Reid Spencer61c83e02006-08-18 08:43:06 +00002733 CHECK_FOR_ERROR
Reid Spencere1553cc2006-12-31 05:40:12 +00002734 }
2735 | /*empty*/ { $$ = new ValueRefList(); };
Chris Lattner00950542001-06-06 20:29:01 +00002736
Reid Spencere1553cc2006-12-31 05:40:12 +00002737IndexList // Used for gep instructions and constant expressions
Reid Spencere03969f2006-12-31 21:46:36 +00002738 : /*empty*/ { $$ = new std::vector<Value*>(); }
Reid Spencere1553cc2006-12-31 05:40:12 +00002739 | IndexList ',' ResolvedVal {
2740 $$ = $1;
2741 $$->push_back($3);
2742 CHECK_FOR_ERROR
2743 }
Reid Spencer71305d72006-12-31 21:25:25 +00002744 ;
Chris Lattner00950542001-06-06 20:29:01 +00002745
Chris Lattnerddb6db42005-05-06 05:51:46 +00002746OptTailCall : TAIL CALL {
2747 $$ = true;
Reid Spencer61c83e02006-08-18 08:43:06 +00002748 CHECK_FOR_ERROR
Chris Lattnerddb6db42005-05-06 05:51:46 +00002749 }
2750 | CALL {
2751 $$ = false;
Reid Spencer61c83e02006-08-18 08:43:06 +00002752 CHECK_FOR_ERROR
Chris Lattnerddb6db42005-05-06 05:51:46 +00002753 };
2754
Chris Lattner4a6482b2002-09-10 19:57:26 +00002755InstVal : ArithmeticOps Types ValueRef ',' ValueRef {
Reid Spencere1553cc2006-12-31 05:40:12 +00002756 if (!UpRefs.empty())
2757 GEN_ERROR("Invalid upreference in type: " + (*$2)->getDescription());
Chris Lattner42a75512007-01-15 02:27:26 +00002758 if (!(*$2)->isInteger() && !(*$2)->isFloatingPoint() &&
Reid Spencer9d6565a2007-02-15 02:26:10 +00002759 !isa<VectorType>((*$2).get()))
Reid Spencer61c83e02006-08-18 08:43:06 +00002760 GEN_ERROR(
Reid Spencerf4fa5902007-02-05 10:16:10 +00002761 "Arithmetic operator requires integer, FP, or packed operands");
Reid Spencer9d6565a2007-02-15 02:26:10 +00002762 if (isa<VectorType>((*$2).get()) &&
Reid Spencer08de34b2006-12-03 05:45:44 +00002763 ($1 == Instruction::URem ||
2764 $1 == Instruction::SRem ||
2765 $1 == Instruction::FRem))
Reid Spencerac9dcb92007-02-15 03:39:18 +00002766 GEN_ERROR("Remainder not supported on vector types");
Reid Spencer08de34b2006-12-03 05:45:44 +00002767 Value* val1 = getVal(*$2, $3);
Reid Spencer5b7e7532006-09-28 19:28:24 +00002768 CHECK_FOR_ERROR
Reid Spencer08de34b2006-12-03 05:45:44 +00002769 Value* val2 = getVal(*$2, $5);
Reid Spencer5b7e7532006-09-28 19:28:24 +00002770 CHECK_FOR_ERROR
Reid Spencer08de34b2006-12-03 05:45:44 +00002771 $$ = BinaryOperator::create($1, val1, val2);
Chris Lattner4a6482b2002-09-10 19:57:26 +00002772 if ($$ == 0)
Reid Spencerf4fa5902007-02-05 10:16:10 +00002773 GEN_ERROR("binary operator returned null");
Reid Spencer08de34b2006-12-03 05:45:44 +00002774 delete $2;
Chris Lattner4a6482b2002-09-10 19:57:26 +00002775 }
2776 | LogicalOps Types ValueRef ',' ValueRef {
Reid Spencere1553cc2006-12-31 05:40:12 +00002777 if (!UpRefs.empty())
2778 GEN_ERROR("Invalid upreference in type: " + (*$2)->getDescription());
Chris Lattner42a75512007-01-15 02:27:26 +00002779 if (!(*$2)->isInteger()) {
Reid Spencer9d6565a2007-02-15 02:26:10 +00002780 if (Instruction::isShift($1) || !isa<VectorType>($2->get()) ||
2781 !cast<VectorType>($2->get())->getElementType()->isInteger())
Reid Spencerf4fa5902007-02-05 10:16:10 +00002782 GEN_ERROR("Logical operator requires integral operands");
Chris Lattner0a017832005-12-21 18:31:29 +00002783 }
Reid Spencer08de34b2006-12-03 05:45:44 +00002784 Value* tmpVal1 = getVal(*$2, $3);
Reid Spencer5b7e7532006-09-28 19:28:24 +00002785 CHECK_FOR_ERROR
Reid Spencer08de34b2006-12-03 05:45:44 +00002786 Value* tmpVal2 = getVal(*$2, $5);
Reid Spencer5b7e7532006-09-28 19:28:24 +00002787 CHECK_FOR_ERROR
Reid Spencer08de34b2006-12-03 05:45:44 +00002788 $$ = BinaryOperator::create($1, tmpVal1, tmpVal2);
Chris Lattner4a6482b2002-09-10 19:57:26 +00002789 if ($$ == 0)
Reid Spencerf4fa5902007-02-05 10:16:10 +00002790 GEN_ERROR("binary operator returned null");
Reid Spencer08de34b2006-12-03 05:45:44 +00002791 delete $2;
Chris Lattner4a6482b2002-09-10 19:57:26 +00002792 }
Reid Spencer08de34b2006-12-03 05:45:44 +00002793 | ICMP IPredicates Types ValueRef ',' ValueRef {
Reid Spencere1553cc2006-12-31 05:40:12 +00002794 if (!UpRefs.empty())
2795 GEN_ERROR("Invalid upreference in type: " + (*$3)->getDescription());
Reid Spencer9d6565a2007-02-15 02:26:10 +00002796 if (isa<VectorType>((*$3).get()))
Reid Spencerac9dcb92007-02-15 03:39:18 +00002797 GEN_ERROR("Vector types not supported by icmp instruction");
Reid Spencer08de34b2006-12-03 05:45:44 +00002798 Value* tmpVal1 = getVal(*$3, $4);
2799 CHECK_FOR_ERROR
2800 Value* tmpVal2 = getVal(*$3, $6);
2801 CHECK_FOR_ERROR
2802 $$ = CmpInst::create($1, $2, tmpVal1, tmpVal2);
2803 if ($$ == 0)
Reid Spencerf4fa5902007-02-05 10:16:10 +00002804 GEN_ERROR("icmp operator returned null");
Reid Spencer2c9df212007-03-20 01:13:00 +00002805 delete $3;
Reid Spencer08de34b2006-12-03 05:45:44 +00002806 }
2807 | FCMP FPredicates Types ValueRef ',' ValueRef {
Reid Spencere1553cc2006-12-31 05:40:12 +00002808 if (!UpRefs.empty())
2809 GEN_ERROR("Invalid upreference in type: " + (*$3)->getDescription());
Reid Spencer9d6565a2007-02-15 02:26:10 +00002810 if (isa<VectorType>((*$3).get()))
Reid Spencerac9dcb92007-02-15 03:39:18 +00002811 GEN_ERROR("Vector types not supported by fcmp instruction");
Reid Spencer08de34b2006-12-03 05:45:44 +00002812 Value* tmpVal1 = getVal(*$3, $4);
2813 CHECK_FOR_ERROR
2814 Value* tmpVal2 = getVal(*$3, $6);
2815 CHECK_FOR_ERROR
2816 $$ = CmpInst::create($1, $2, tmpVal1, tmpVal2);
2817 if ($$ == 0)
Reid Spencerf4fa5902007-02-05 10:16:10 +00002818 GEN_ERROR("fcmp operator returned null");
Reid Spencer2c9df212007-03-20 01:13:00 +00002819 delete $3;
Chris Lattner00950542001-06-06 20:29:01 +00002820 }
Reid Spencer3da59db2006-11-27 01:05:10 +00002821 | CastOps ResolvedVal TO Types {
Reid Spencere1553cc2006-12-31 05:40:12 +00002822 if (!UpRefs.empty())
2823 GEN_ERROR("Invalid upreference in type: " + (*$4)->getDescription());
Reid Spencer08de34b2006-12-03 05:45:44 +00002824 Value* Val = $2;
Reid Spencer93947c32007-01-17 02:47:33 +00002825 const Type* DestTy = $4->get();
2826 if (!CastInst::castIsValid($1, Val, DestTy))
2827 GEN_ERROR("invalid cast opcode for cast from '" +
2828 Val->getType()->getDescription() + "' to '" +
Reid Spencerf4fa5902007-02-05 10:16:10 +00002829 DestTy->getDescription() + "'");
Reid Spencer93947c32007-01-17 02:47:33 +00002830 $$ = CastInst::create($1, Val, DestTy);
Reid Spencer08de34b2006-12-03 05:45:44 +00002831 delete $4;
Chris Lattner09083092001-07-08 04:57:15 +00002832 }
Chris Lattner76f0ff32004-03-12 05:51:36 +00002833 | SELECT ResolvedVal ',' ResolvedVal ',' ResolvedVal {
Reid Spencer4fe16d62007-01-11 18:21:29 +00002834 if ($2->getType() != Type::Int1Ty)
Reid Spencerf4fa5902007-02-05 10:16:10 +00002835 GEN_ERROR("select condition must be boolean");
Reid Spencer08de34b2006-12-03 05:45:44 +00002836 if ($4->getType() != $6->getType())
Reid Spencerf4fa5902007-02-05 10:16:10 +00002837 GEN_ERROR("select value types should match");
Reid Spencer08de34b2006-12-03 05:45:44 +00002838 $$ = new SelectInst($2, $4, $6);
Reid Spencer61c83e02006-08-18 08:43:06 +00002839 CHECK_FOR_ERROR
Chris Lattner76f0ff32004-03-12 05:51:36 +00002840 }
Chris Lattner99e7ab72003-10-18 05:53:13 +00002841 | VAARG ResolvedVal ',' Types {
Reid Spencere1553cc2006-12-31 05:40:12 +00002842 if (!UpRefs.empty())
2843 GEN_ERROR("Invalid upreference in type: " + (*$4)->getDescription());
Reid Spencer08de34b2006-12-03 05:45:44 +00002844 $$ = new VAArgInst($2, *$4);
2845 delete $4;
Reid Spencer61c83e02006-08-18 08:43:06 +00002846 CHECK_FOR_ERROR
Chris Lattner99e7ab72003-10-18 05:53:13 +00002847 }
Robert Bocchino9c62b562006-01-10 19:04:32 +00002848 | EXTRACTELEMENT ResolvedVal ',' ResolvedVal {
Reid Spencer08de34b2006-12-03 05:45:44 +00002849 if (!ExtractElementInst::isValidOperands($2, $4))
Reid Spencerf4fa5902007-02-05 10:16:10 +00002850 GEN_ERROR("Invalid extractelement operands");
Reid Spencer08de34b2006-12-03 05:45:44 +00002851 $$ = new ExtractElementInst($2, $4);
Reid Spencer61c83e02006-08-18 08:43:06 +00002852 CHECK_FOR_ERROR
Robert Bocchino9c62b562006-01-10 19:04:32 +00002853 }
Robert Bocchino2def1b32006-01-17 20:06:25 +00002854 | INSERTELEMENT ResolvedVal ',' ResolvedVal ',' ResolvedVal {
Reid Spencer08de34b2006-12-03 05:45:44 +00002855 if (!InsertElementInst::isValidOperands($2, $4, $6))
Reid Spencerf4fa5902007-02-05 10:16:10 +00002856 GEN_ERROR("Invalid insertelement operands");
Reid Spencer08de34b2006-12-03 05:45:44 +00002857 $$ = new InsertElementInst($2, $4, $6);
Reid Spencer61c83e02006-08-18 08:43:06 +00002858 CHECK_FOR_ERROR
Robert Bocchino2def1b32006-01-17 20:06:25 +00002859 }
Chris Lattner4c949082006-04-08 01:18:35 +00002860 | SHUFFLEVECTOR ResolvedVal ',' ResolvedVal ',' ResolvedVal {
Reid Spencer08de34b2006-12-03 05:45:44 +00002861 if (!ShuffleVectorInst::isValidOperands($2, $4, $6))
Reid Spencerf4fa5902007-02-05 10:16:10 +00002862 GEN_ERROR("Invalid shufflevector operands");
Reid Spencer08de34b2006-12-03 05:45:44 +00002863 $$ = new ShuffleVectorInst($2, $4, $6);
Reid Spencer61c83e02006-08-18 08:43:06 +00002864 CHECK_FOR_ERROR
Chris Lattner4c949082006-04-08 01:18:35 +00002865 }
Chris Lattner3b237fc2003-10-19 21:34:28 +00002866 | PHI_TOK PHIList {
Chris Lattnerc24d2082001-06-11 15:04:20 +00002867 const Type *Ty = $2->front().first->getType();
Chris Lattner8ea8f362003-10-30 01:38:18 +00002868 if (!Ty->isFirstClassType())
Reid Spencerf4fa5902007-02-05 10:16:10 +00002869 GEN_ERROR("PHI node operands must be of first class type");
Chris Lattnerc24d2082001-06-11 15:04:20 +00002870 $$ = new PHINode(Ty);
Chris Lattnerce1df9e2005-01-29 00:35:55 +00002871 ((PHINode*)$$)->reserveOperandSpace($2->size());
Chris Lattner00950542001-06-06 20:29:01 +00002872 while ($2->begin() != $2->end()) {
Chris Lattnerc24d2082001-06-11 15:04:20 +00002873 if ($2->front().first->getType() != Ty)
Reid Spencerf4fa5902007-02-05 10:16:10 +00002874 GEN_ERROR("All elements of a PHI node must be of the same type");
Chris Lattnerb00c5822001-10-02 03:41:24 +00002875 cast<PHINode>($$)->addIncoming($2->front().first, $2->front().second);
Chris Lattner00950542001-06-06 20:29:01 +00002876 $2->pop_front();
2877 }
2878 delete $2; // Free the list...
Reid Spencer61c83e02006-08-18 08:43:06 +00002879 CHECK_FOR_ERROR
Chris Lattnerddb6db42005-05-06 05:51:46 +00002880 }
Reid Spencer2c261782007-01-05 17:06:19 +00002881 | OptTailCall OptCallingConv ResultTypes ValueRef '(' ValueRefList ')'
2882 OptFuncAttrs {
Reid Spencere1553cc2006-12-31 05:40:12 +00002883
2884 // Handle the short syntax
Bill Wendlingb39a55a2006-11-12 11:10:39 +00002885 const PointerType *PFTy = 0;
2886 const FunctionType *Ty = 0;
Reid Spencer2c261782007-01-05 17:06:19 +00002887 if (!(PFTy = dyn_cast<PointerType>($3->get())) ||
Chris Lattnerbf0a37b2002-10-15 21:41:14 +00002888 !(Ty = dyn_cast<FunctionType>(PFTy->getElementType()))) {
Chris Lattner8b81bf52001-07-25 22:47:46 +00002889 // Pull out the types of all of the arguments...
Chris Lattner9232b992003-04-22 18:42:41 +00002890 std::vector<const Type*> ParamTypes;
Reid Spencer863dd882007-04-28 16:06:50 +00002891 ParamAttrsVector Attrs;
2892 if ($8 != ParamAttr::None) {
2893 ParamAttrsWithIndex PAWI; PAWI.index = 0; PAWI.attrs = $8;
2894 Attrs.push_back(PAWI);
2895 }
2896 unsigned index = 1;
Reid Spencer5694b6e2007-04-09 06:17:21 +00002897 ValueRefList::iterator I = $6->begin(), E = $6->end();
Reid Spencer863dd882007-04-28 16:06:50 +00002898 for (; I != E; ++I, ++index) {
Reid Spencere1553cc2006-12-31 05:40:12 +00002899 const Type *Ty = I->Val->getType();
2900 if (Ty == Type::VoidTy)
2901 GEN_ERROR("Short call syntax cannot be used with varargs");
2902 ParamTypes.push_back(Ty);
Reid Spencer863dd882007-04-28 16:06:50 +00002903 if (I->Attrs != ParamAttr::None) {
2904 ParamAttrsWithIndex PAWI; PAWI.index = index; PAWI.attrs = I->Attrs;
2905 Attrs.push_back(PAWI);
2906 }
Chris Lattneref9c23f2001-10-03 14:53:21 +00002907 }
Reid Spencer863dd882007-04-28 16:06:50 +00002908
2909 ParamAttrsList *PAL = 0;
2910 if (!Attrs.empty())
2911 PAL = ParamAttrsList::get(Attrs);
2912
2913 Ty = FunctionType::get($3->get(), ParamTypes, false, PAL);
Chris Lattnerbf0a37b2002-10-15 21:41:14 +00002914 PFTy = PointerType::get(Ty);
Chris Lattner8b81bf52001-07-25 22:47:46 +00002915 }
Chris Lattner00950542001-06-06 20:29:01 +00002916
Chris Lattnera8e8f162005-05-06 20:27:19 +00002917 Value *V = getVal(PFTy, $4); // Get the function we're calling...
Reid Spencer5b7e7532006-09-28 19:28:24 +00002918 CHECK_FOR_ERROR
Chris Lattner00950542001-06-06 20:29:01 +00002919
Reid Spencerebff55c2007-04-16 06:55:42 +00002920 // Check for call to invalid intrinsic to avoid crashing later.
2921 if (Function *theF = dyn_cast<Function>(V)) {
Reid Spencerce1e8ef2007-04-16 22:01:57 +00002922 if (theF->hasName() && (theF->getValueName()->getKeyLength() >= 5) &&
Reid Spencer43e60732007-04-16 20:31:06 +00002923 (0 == strncmp(theF->getValueName()->getKeyData(), "llvm.", 5)) &&
2924 !theF->getIntrinsicID(true))
Reid Spencerebff55c2007-04-16 06:55:42 +00002925 GEN_ERROR("Call to invalid LLVM intrinsic function '" +
2926 theF->getName() + "'");
2927 }
2928
Reid Spencere1553cc2006-12-31 05:40:12 +00002929 // Check the arguments
2930 ValueList Args;
2931 if ($6->empty()) { // Has no arguments?
Chris Lattnera4e25182002-07-25 20:52:56 +00002932 // Make sure no arguments is a good thing!
2933 if (Ty->getNumParams() != 0)
Reid Spencer61c83e02006-08-18 08:43:06 +00002934 GEN_ERROR("No arguments passed to a function that "
Reid Spencerf4fa5902007-02-05 10:16:10 +00002935 "expects arguments");
Chris Lattner8b81bf52001-07-25 22:47:46 +00002936 } else { // Has arguments?
Chris Lattner79df7c02002-03-26 18:01:55 +00002937 // Loop through FunctionType's arguments and ensure they are specified
Reid Spencer863dd882007-04-28 16:06:50 +00002938 // correctly!
2939 //
Chris Lattnerd5d89962004-02-09 04:14:01 +00002940 FunctionType::param_iterator I = Ty->param_begin();
2941 FunctionType::param_iterator E = Ty->param_end();
Reid Spencere1553cc2006-12-31 05:40:12 +00002942 ValueRefList::iterator ArgI = $6->begin(), ArgE = $6->end();
Reid Spencer863dd882007-04-28 16:06:50 +00002943
Reid Spencere1553cc2006-12-31 05:40:12 +00002944 for (; ArgI != ArgE && I != E; ++ArgI, ++I) {
2945 if (ArgI->Val->getType() != *I)
2946 GEN_ERROR("Parameter " + ArgI->Val->getName()+ " is not of type '" +
Reid Spencerf4fa5902007-02-05 10:16:10 +00002947 (*I)->getDescription() + "'");
Reid Spencere1553cc2006-12-31 05:40:12 +00002948 Args.push_back(ArgI->Val);
2949 }
2950 if (Ty->isVarArg()) {
2951 if (I == E)
2952 for (; ArgI != ArgE; ++ArgI)
2953 Args.push_back(ArgI->Val); // push the remaining varargs
2954 } else if (I != E || ArgI != ArgE)
Reid Spencerf4fa5902007-02-05 10:16:10 +00002955 GEN_ERROR("Invalid number of parameters detected");
Chris Lattner8b81bf52001-07-25 22:47:46 +00002956 }
Reid Spencere1553cc2006-12-31 05:40:12 +00002957 // Create the call node
Chris Lattner9d2fda62007-02-13 05:53:56 +00002958 CallInst *CI = new CallInst(V, &Args[0], Args.size());
Reid Spencere1553cc2006-12-31 05:40:12 +00002959 CI->setTailCall($1);
2960 CI->setCallingConv($2);
2961 $$ = CI;
Chris Lattnera8e8f162005-05-06 20:27:19 +00002962 delete $6;
Reid Spencerb2d17862007-01-26 08:04:51 +00002963 delete $3;
Reid Spencer61c83e02006-08-18 08:43:06 +00002964 CHECK_FOR_ERROR
Chris Lattner00950542001-06-06 20:29:01 +00002965 }
2966 | MemoryInst {
2967 $$ = $1;
Reid Spencer61c83e02006-08-18 08:43:06 +00002968 CHECK_FOR_ERROR
Chris Lattner51727be2002-06-04 21:58:56 +00002969 };
Chris Lattner00950542001-06-06 20:29:01 +00002970
Chris Lattner15c9c032003-09-08 18:20:29 +00002971OptVolatile : VOLATILE {
2972 $$ = true;
Reid Spencer61c83e02006-08-18 08:43:06 +00002973 CHECK_FOR_ERROR
Chris Lattner15c9c032003-09-08 18:20:29 +00002974 }
2975 | /* empty */ {
2976 $$ = false;
Reid Spencer61c83e02006-08-18 08:43:06 +00002977 CHECK_FOR_ERROR
Chris Lattner15c9c032003-09-08 18:20:29 +00002978 };
2979
Chris Lattner027dcc52001-07-08 21:10:27 +00002980
Chris Lattnerddb6db42005-05-06 05:51:46 +00002981
Chris Lattner66db8e42005-11-06 06:34:12 +00002982MemoryInst : MALLOC Types OptCAlign {
Reid Spencere1553cc2006-12-31 05:40:12 +00002983 if (!UpRefs.empty())
2984 GEN_ERROR("Invalid upreference in type: " + (*$2)->getDescription());
Reid Spencer08de34b2006-12-03 05:45:44 +00002985 $$ = new MallocInst(*$2, 0, $3);
2986 delete $2;
Reid Spencer61c83e02006-08-18 08:43:06 +00002987 CHECK_FOR_ERROR
Chris Lattner00950542001-06-06 20:29:01 +00002988 }
Reid Spencera54b7cb2007-01-12 07:05:14 +00002989 | MALLOC Types ',' INTTYPE ValueRef OptCAlign {
Reid Spencere1553cc2006-12-31 05:40:12 +00002990 if (!UpRefs.empty())
2991 GEN_ERROR("Invalid upreference in type: " + (*$2)->getDescription());
Reid Spencer08de34b2006-12-03 05:45:44 +00002992 Value* tmpVal = getVal($4, $5);
Reid Spencer61c83e02006-08-18 08:43:06 +00002993 CHECK_FOR_ERROR
Reid Spencer08de34b2006-12-03 05:45:44 +00002994 $$ = new MallocInst(*$2, tmpVal, $6);
2995 delete $2;
Nate Begeman14b05292005-11-05 09:21:28 +00002996 }
Chris Lattner66db8e42005-11-06 06:34:12 +00002997 | ALLOCA Types OptCAlign {
Reid Spencere1553cc2006-12-31 05:40:12 +00002998 if (!UpRefs.empty())
2999 GEN_ERROR("Invalid upreference in type: " + (*$2)->getDescription());
Reid Spencer08de34b2006-12-03 05:45:44 +00003000 $$ = new AllocaInst(*$2, 0, $3);
3001 delete $2;
Reid Spencer61c83e02006-08-18 08:43:06 +00003002 CHECK_FOR_ERROR
Nate Begeman14b05292005-11-05 09:21:28 +00003003 }
Reid Spencera54b7cb2007-01-12 07:05:14 +00003004 | ALLOCA Types ',' INTTYPE ValueRef OptCAlign {
Reid Spencere1553cc2006-12-31 05:40:12 +00003005 if (!UpRefs.empty())
3006 GEN_ERROR("Invalid upreference in type: " + (*$2)->getDescription());
Reid Spencer08de34b2006-12-03 05:45:44 +00003007 Value* tmpVal = getVal($4, $5);
Reid Spencer61c83e02006-08-18 08:43:06 +00003008 CHECK_FOR_ERROR
Reid Spencer08de34b2006-12-03 05:45:44 +00003009 $$ = new AllocaInst(*$2, tmpVal, $6);
3010 delete $2;
Nate Begeman14b05292005-11-05 09:21:28 +00003011 }
Chris Lattnerbcbf6ba2001-07-26 16:29:15 +00003012 | FREE ResolvedVal {
Reid Spencer08de34b2006-12-03 05:45:44 +00003013 if (!isa<PointerType>($2->getType()))
Reid Spencer61c83e02006-08-18 08:43:06 +00003014 GEN_ERROR("Trying to free nonpointer type " +
Reid Spencerf4fa5902007-02-05 10:16:10 +00003015 $2->getType()->getDescription() + "");
Reid Spencer08de34b2006-12-03 05:45:44 +00003016 $$ = new FreeInst($2);
Reid Spencer61c83e02006-08-18 08:43:06 +00003017 CHECK_FOR_ERROR
Chris Lattner00950542001-06-06 20:29:01 +00003018 }
3019
Christopher Lamb43c7f372007-04-22 19:24:39 +00003020 | OptVolatile LOAD Types ValueRef OptCAlign {
Reid Spencere1553cc2006-12-31 05:40:12 +00003021 if (!UpRefs.empty())
3022 GEN_ERROR("Invalid upreference in type: " + (*$3)->getDescription());
Reid Spencer08de34b2006-12-03 05:45:44 +00003023 if (!isa<PointerType>($3->get()))
Reid Spencer61c83e02006-08-18 08:43:06 +00003024 GEN_ERROR("Can't load from nonpointer type: " +
Reid Spencer08de34b2006-12-03 05:45:44 +00003025 (*$3)->getDescription());
3026 if (!cast<PointerType>($3->get())->getElementType()->isFirstClassType())
Reid Spencer61c83e02006-08-18 08:43:06 +00003027 GEN_ERROR("Can't load from pointer of non-first-class type: " +
Reid Spencer08de34b2006-12-03 05:45:44 +00003028 (*$3)->getDescription());
3029 Value* tmpVal = getVal(*$3, $4);
Reid Spencer61c83e02006-08-18 08:43:06 +00003030 CHECK_FOR_ERROR
Christopher Lamb43c7f372007-04-22 19:24:39 +00003031 $$ = new LoadInst(tmpVal, "", $1, $5);
Reid Spencer08de34b2006-12-03 05:45:44 +00003032 delete $3;
Chris Lattner027dcc52001-07-08 21:10:27 +00003033 }
Christopher Lamb43c7f372007-04-22 19:24:39 +00003034 | OptVolatile STORE ResolvedVal ',' Types ValueRef OptCAlign {
Reid Spencere1553cc2006-12-31 05:40:12 +00003035 if (!UpRefs.empty())
3036 GEN_ERROR("Invalid upreference in type: " + (*$5)->getDescription());
Reid Spencer08de34b2006-12-03 05:45:44 +00003037 const PointerType *PT = dyn_cast<PointerType>($5->get());
Chris Lattner8c8418d2003-09-01 16:31:28 +00003038 if (!PT)
Reid Spencer61c83e02006-08-18 08:43:06 +00003039 GEN_ERROR("Can't store to a nonpointer type: " +
Reid Spencer08de34b2006-12-03 05:45:44 +00003040 (*$5)->getDescription());
Chris Lattner8c8418d2003-09-01 16:31:28 +00003041 const Type *ElTy = PT->getElementType();
Reid Spencer08de34b2006-12-03 05:45:44 +00003042 if (ElTy != $3->getType())
3043 GEN_ERROR("Can't store '" + $3->getType()->getDescription() +
Reid Spencerf4fa5902007-02-05 10:16:10 +00003044 "' into space of type '" + ElTy->getDescription() + "'");
Chris Lattner0383cc42002-08-21 23:51:21 +00003045
Reid Spencer08de34b2006-12-03 05:45:44 +00003046 Value* tmpVal = getVal(*$5, $6);
Reid Spencer61c83e02006-08-18 08:43:06 +00003047 CHECK_FOR_ERROR
Christopher Lamb43c7f372007-04-22 19:24:39 +00003048 $$ = new StoreInst($3, tmpVal, $1, $7);
Reid Spencer08de34b2006-12-03 05:45:44 +00003049 delete $5;
Chris Lattnerab5ac6b2001-07-08 23:22:50 +00003050 }
Chris Lattner6cdb0112001-11-26 16:54:11 +00003051 | GETELEMENTPTR Types ValueRef IndexList {
Reid Spencere1553cc2006-12-31 05:40:12 +00003052 if (!UpRefs.empty())
3053 GEN_ERROR("Invalid upreference in type: " + (*$2)->getDescription());
Reid Spencer08de34b2006-12-03 05:45:44 +00003054 if (!isa<PointerType>($2->get()))
Reid Spencerf4fa5902007-02-05 10:16:10 +00003055 GEN_ERROR("getelementptr insn requires pointer operand");
Chris Lattner830b6f92004-04-05 01:30:04 +00003056
Chris Lattnerc856c7a2007-02-13 00:57:40 +00003057 if (!GetElementPtrInst::getIndexedType(*$2, &(*$4)[0], $4->size(), true))
Reid Spencer61c83e02006-08-18 08:43:06 +00003058 GEN_ERROR("Invalid getelementptr indices for type '" +
Reid Spencerf4fa5902007-02-05 10:16:10 +00003059 (*$2)->getDescription()+ "'");
Reid Spencer08de34b2006-12-03 05:45:44 +00003060 Value* tmpVal = getVal(*$2, $3);
Reid Spencer61c83e02006-08-18 08:43:06 +00003061 CHECK_FOR_ERROR
Chris Lattnerc856c7a2007-02-13 00:57:40 +00003062 $$ = new GetElementPtrInst(tmpVal, &(*$4)[0], $4->size());
Reid Spencer08de34b2006-12-03 05:45:44 +00003063 delete $2;
Reid Spencer5b7e7532006-09-28 19:28:24 +00003064 delete $4;
Chris Lattner51727be2002-06-04 21:58:56 +00003065 };
Chris Lattner027dcc52001-07-08 21:10:27 +00003066
Brian Gaeked0fde302003-11-11 22:41:34 +00003067
Chris Lattner00950542001-06-06 20:29:01 +00003068%%
Reid Spencer61c83e02006-08-18 08:43:06 +00003069
Reid Spencere1553cc2006-12-31 05:40:12 +00003070// common code from the two 'RunVMAsmParser' functions
3071static Module* RunParser(Module * M) {
3072
3073 llvmAsmlineno = 1; // Reset the current line number...
3074 CurModule.CurrentModule = M;
3075#if YYDEBUG
3076 yydebug = Debug;
3077#endif
3078
3079 // Check to make sure the parser succeeded
3080 if (yyparse()) {
3081 if (ParserResult)
3082 delete ParserResult;
3083 return 0;
3084 }
3085
Reid Spencercd5bd902007-03-30 01:37:13 +00003086 // Emit an error if there are any unresolved types left.
3087 if (!CurModule.LateResolveTypes.empty()) {
3088 const ValID &DID = CurModule.LateResolveTypes.begin()->first;
3089 if (DID.Type == ValID::LocalName) {
3090 GenerateError("Undefined type remains at eof: '"+DID.getName() + "'");
3091 } else {
3092 GenerateError("Undefined type remains at eof: #" + itostr(DID.Num));
3093 }
3094 if (ParserResult)
3095 delete ParserResult;
3096 return 0;
3097 }
3098
3099 // Emit an error if there are any unresolved values left.
3100 if (!CurModule.LateResolveValues.empty()) {
3101 Value *V = CurModule.LateResolveValues.back();
3102 std::map<Value*, std::pair<ValID, int> >::iterator I =
3103 CurModule.PlaceHolderInfo.find(V);
3104
3105 if (I != CurModule.PlaceHolderInfo.end()) {
3106 ValID &DID = I->second.first;
3107 if (DID.Type == ValID::LocalName) {
3108 GenerateError("Undefined value remains at eof: "+DID.getName() + "'");
3109 } else {
3110 GenerateError("Undefined value remains at eof: #" + itostr(DID.Num));
3111 }
3112 if (ParserResult)
3113 delete ParserResult;
3114 return 0;
3115 }
3116 }
3117
Reid Spencere1553cc2006-12-31 05:40:12 +00003118 // Check to make sure that parsing produced a result
3119 if (!ParserResult)
3120 return 0;
3121
3122 // Reset ParserResult variable while saving its value for the result.
3123 Module *Result = ParserResult;
3124 ParserResult = 0;
3125
3126 return Result;
3127}
3128
Reid Spencer61c83e02006-08-18 08:43:06 +00003129void llvm::GenerateError(const std::string &message, int LineNo) {
3130 if (LineNo == -1) LineNo = llvmAsmlineno;
3131 // TODO: column number in exception
3132 if (TheParseError)
3133 TheParseError->setError(CurFilename, message, LineNo);
3134 TriggerError = 1;
3135}
3136
Chris Lattner09083092001-07-08 04:57:15 +00003137int yyerror(const char *ErrorMsg) {
Chris Lattner9232b992003-04-22 18:42:41 +00003138 std::string where
3139 = std::string((CurFilename == "-") ? std::string("<stdin>") : CurFilename)
Vikram S. Adved3f7eb02002-07-14 22:59:28 +00003140 + ":" + utostr((unsigned) llvmAsmlineno) + ": ";
Reid Spenceref9b9a72007-02-05 20:47:22 +00003141 std::string errMsg = where + "error: " + std::string(ErrorMsg);
3142 if (yychar != YYEMPTY && yychar != 0)
3143 errMsg += " while reading token: '" + std::string(llvmAsmtext, llvmAsmleng)+
3144 "'";
Reid Spencer61c83e02006-08-18 08:43:06 +00003145 GenerateError(errMsg);
Chris Lattner00950542001-06-06 20:29:01 +00003146 return 0;
3147}