blob: d8e151c48d52b0f609feb874926377f96e408ca6 [file] [log] [blame]
Chris Lattner58af2a12006-02-15 07:22:58 +00001//===-- llvmAsmParser.y - Parser for llvm assembly files --------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file was developed by the LLVM research group and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the bison parser for LLVM assembly languages files.
11//
12//===----------------------------------------------------------------------===//
13
14%{
15#include "ParserInternals.h"
16#include "llvm/CallingConv.h"
17#include "llvm/InlineAsm.h"
18#include "llvm/Instructions.h"
19#include "llvm/Module.h"
Reid Spenceref9b9a72007-02-05 20:47:22 +000020#include "llvm/ValueSymbolTable.h"
Chris Lattner58af2a12006-02-15 07:22:58 +000021#include "llvm/Support/GetElementPtrTypeIterator.h"
Reid Spencer14310612006-12-31 05:40:51 +000022#include "llvm/Support/CommandLine.h"
Chris Lattnerf7469af2007-01-31 04:44:08 +000023#include "llvm/ADT/SmallVector.h"
Chris Lattner58af2a12006-02-15 07:22:58 +000024#include "llvm/ADT/STLExtras.h"
25#include "llvm/Support/MathExtras.h"
Reid Spencer481169e2006-12-01 00:33:46 +000026#include "llvm/Support/Streams.h"
Chris Lattner58af2a12006-02-15 07:22:58 +000027#include <algorithm>
Chris Lattner58af2a12006-02-15 07:22:58 +000028#include <list>
Chris Lattner8adde282007-02-11 21:40:10 +000029#include <map>
Chris Lattner58af2a12006-02-15 07:22:58 +000030#include <utility>
Reid Spencer14310612006-12-31 05:40:51 +000031#ifndef NDEBUG
32#define YYDEBUG 1
33#endif
Chris Lattner58af2a12006-02-15 07:22:58 +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 Lattner58af2a12006-02-15 07:22:58 +000050int yyerror(const char *ErrorMsg); // Forward declarations to prevent "implicit
51int yylex(); // declaration" of xxx warnings.
52int yyparse();
53
54namespace llvm {
55 std::string CurFilename;
Reid Spencer14310612006-12-31 05:40:51 +000056#if YYDEBUG
57static cl::opt<bool>
58Debug("debug-yacc", cl::desc("Print yacc debug state changes"),
59 cl::Hidden, cl::init(false));
60#endif
Chris Lattner58af2a12006-02-15 07:22:58 +000061}
62using namespace llvm;
63
64static Module *ParserResult;
65
66// DEBUG_UPREFS - Define this symbol if you want to enable debugging output
67// relating to upreferences in the input stream.
68//
69//#define DEBUG_UPREFS 1
70#ifdef DEBUG_UPREFS
Bill Wendlinge8156192006-12-07 01:30:32 +000071#define UR_OUT(X) cerr << X
Chris Lattner58af2a12006-02-15 07:22:58 +000072#else
73#define UR_OUT(X)
74#endif
75
76#define YYERROR_VERBOSE 1
77
Chris Lattner58af2a12006-02-15 07:22:58 +000078static GlobalVariable *CurGV;
79
80
81// This contains info used when building the body of a function. It is
82// destroyed when the function is completed.
83//
84typedef std::vector<Value *> ValueList; // Numbered defs
Reid Spencer14310612006-12-31 05:40:51 +000085
Chris Lattner58af2a12006-02-15 07:22:58 +000086static void
Reid Spencer93c40032007-03-19 18:40:50 +000087ResolveDefinitions(ValueList &LateResolvers, ValueList *FutureLateResolvers=0);
Chris Lattner58af2a12006-02-15 07:22:58 +000088
89static struct PerModuleInfo {
90 Module *CurrentModule;
Reid Spencer93c40032007-03-19 18:40:50 +000091 ValueList Values; // Module level numbered definitions
92 ValueList LateResolveValues;
Reid Spencer861d9d62006-11-28 07:29:44 +000093 std::vector<PATypeHolder> Types;
94 std::map<ValID, PATypeHolder> LateResolveTypes;
Chris Lattner58af2a12006-02-15 07:22:58 +000095
96 /// PlaceHolderInfo - When temporary placeholder objects are created, remember
Chris Lattner0ad19702006-06-21 16:53:00 +000097 /// how they were referenced and on which line of the input they came from so
Chris Lattner58af2a12006-02-15 07:22:58 +000098 /// that we can resolve them later and print error messages as appropriate.
99 std::map<Value*, std::pair<ValID, int> > PlaceHolderInfo;
100
101 // GlobalRefs - This maintains a mapping between <Type, ValID>'s and forward
102 // references to global values. Global values may be referenced before they
103 // are defined, and if so, the temporary object that they represent is held
104 // here. This is used for forward references of GlobalValues.
105 //
106 typedef std::map<std::pair<const PointerType *,
107 ValID>, GlobalValue*> GlobalRefsType;
108 GlobalRefsType GlobalRefs;
109
110 void ModuleDone() {
111 // If we could not resolve some functions at function compilation time
112 // (calls to functions before they are defined), resolve them now... Types
113 // are resolved when the constant pool has been completely parsed.
114 //
115 ResolveDefinitions(LateResolveValues);
Reid Spencer5b7e7532006-09-28 19:28:24 +0000116 if (TriggerError)
117 return;
Chris Lattner58af2a12006-02-15 07:22:58 +0000118
119 // Check to make sure that all global value forward references have been
120 // resolved!
121 //
122 if (!GlobalRefs.empty()) {
123 std::string UndefinedReferences = "Unresolved global references exist:\n";
124
125 for (GlobalRefsType::iterator I = GlobalRefs.begin(), E =GlobalRefs.end();
126 I != E; ++I) {
127 UndefinedReferences += " " + I->first.first->getDescription() + " " +
128 I->first.second.getName() + "\n";
129 }
Reid Spencer61c83e02006-08-18 08:43:06 +0000130 GenerateError(UndefinedReferences);
Reid Spencer5b7e7532006-09-28 19:28:24 +0000131 return;
Chris Lattner58af2a12006-02-15 07:22:58 +0000132 }
133
Chris Lattner58af2a12006-02-15 07:22:58 +0000134 Values.clear(); // Clear out function local definitions
135 Types.clear();
136 CurrentModule = 0;
137 }
138
139 // GetForwardRefForGlobal - Check to see if there is a forward reference
140 // for this global. If so, remove it from the GlobalRefs map and return it.
141 // If not, just return null.
142 GlobalValue *GetForwardRefForGlobal(const PointerType *PTy, ValID ID) {
143 // Check to see if there is a forward reference to this global variable...
144 // if there is, eliminate it and patch the reference to use the new def'n.
145 GlobalRefsType::iterator I = GlobalRefs.find(std::make_pair(PTy, ID));
146 GlobalValue *Ret = 0;
147 if (I != GlobalRefs.end()) {
148 Ret = I->second;
149 GlobalRefs.erase(I);
150 }
151 return Ret;
152 }
Reid Spencer8c8a2dc2007-01-02 21:54:12 +0000153
154 bool TypeIsUnresolved(PATypeHolder* PATy) {
155 // If it isn't abstract, its resolved
156 const Type* Ty = PATy->get();
157 if (!Ty->isAbstract())
158 return false;
159 // Traverse the type looking for abstract types. If it isn't abstract then
160 // we don't need to traverse that leg of the type.
161 std::vector<const Type*> WorkList, SeenList;
162 WorkList.push_back(Ty);
163 while (!WorkList.empty()) {
164 const Type* Ty = WorkList.back();
165 SeenList.push_back(Ty);
166 WorkList.pop_back();
167 if (const OpaqueType* OpTy = dyn_cast<OpaqueType>(Ty)) {
168 // Check to see if this is an unresolved type
169 std::map<ValID, PATypeHolder>::iterator I = LateResolveTypes.begin();
170 std::map<ValID, PATypeHolder>::iterator E = LateResolveTypes.end();
171 for ( ; I != E; ++I) {
172 if (I->second.get() == OpTy)
173 return true;
174 }
175 } else if (const SequentialType* SeqTy = dyn_cast<SequentialType>(Ty)) {
176 const Type* TheTy = SeqTy->getElementType();
177 if (TheTy->isAbstract() && TheTy != Ty) {
178 std::vector<const Type*>::iterator I = SeenList.begin(),
179 E = SeenList.end();
180 for ( ; I != E; ++I)
181 if (*I == TheTy)
182 break;
183 if (I == E)
184 WorkList.push_back(TheTy);
185 }
186 } else if (const StructType* StrTy = dyn_cast<StructType>(Ty)) {
187 for (unsigned i = 0; i < StrTy->getNumElements(); ++i) {
188 const Type* TheTy = StrTy->getElementType(i);
189 if (TheTy->isAbstract() && TheTy != Ty) {
190 std::vector<const Type*>::iterator I = SeenList.begin(),
191 E = SeenList.end();
192 for ( ; I != E; ++I)
193 if (*I == TheTy)
194 break;
195 if (I == E)
196 WorkList.push_back(TheTy);
197 }
198 }
199 }
200 }
201 return false;
202 }
Chris Lattner58af2a12006-02-15 07:22:58 +0000203} CurModule;
204
205static struct PerFunctionInfo {
206 Function *CurrentFunction; // Pointer to current function being created
207
Reid Spencer93c40032007-03-19 18:40:50 +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 Lattner58af2a12006-02-15 07:22:58 +0000214
215 /// BBForwardRefs - When we see forward references to basic blocks, keep
216 /// track of them here.
Reid Spencer93c40032007-03-19 18:40:50 +0000217 std::map<ValID, BasicBlock*> BBForwardRefs;
Chris Lattner58af2a12006-02-15 07:22:58 +0000218
219 inline PerFunctionInfo() {
220 CurrentFunction = 0;
221 isDeclare = false;
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000222 Linkage = GlobalValue::ExternalLinkage;
223 Visibility = GlobalValue::DefaultVisibility;
Chris Lattner58af2a12006-02-15 07:22:58 +0000224 }
225
226 inline void FunctionStart(Function *M) {
227 CurrentFunction = M;
Reid Spencer93c40032007-03-19 18:40:50 +0000228 NextValNum = 0;
Chris Lattner58af2a12006-02-15 07:22:58 +0000229 }
230
231 void FunctionDone() {
Chris Lattner58af2a12006-02-15 07:22:58 +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 Spencer93c40032007-03-19 18:40:50 +0000235 BBForwardRefs.begin()->second->getName());
Reid Spencer5b7e7532006-09-28 19:28:24 +0000236 return;
237 }
Chris Lattner58af2a12006-02-15 07:22:58 +0000238
239 // Resolve all forward references now.
240 ResolveDefinitions(LateResolveValues, &CurModule.LateResolveValues);
241
242 Values.clear(); // Clear out function local definitions
Reid Spencer93c40032007-03-19 18:40:50 +0000243 BBForwardRefs.clear();
Chris Lattner58af2a12006-02-15 07:22:58 +0000244 CurrentFunction = 0;
245 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 Lattner58af2a12006-02-15 07:22:58 +0000248 }
249} CurFun; // Info for the current function...
250
251static bool inFunctionScope() { return CurFun.CurrentFunction != 0; }
252
253
254//===----------------------------------------------------------------------===//
255// Code to handle definitions of all the types
256//===----------------------------------------------------------------------===//
257
Reid Spencer93c40032007-03-19 18:40:50 +0000258static void InsertValue(Value *V, ValueList &ValueTab = CurFun.Values) {
259 // Things that have names or are void typed don't get slot numbers
260 if (V->hasName() || (V->getType() == Type::VoidTy))
261 return;
Chris Lattner58af2a12006-02-15 07:22:58 +0000262
Reid Spencer93c40032007-03-19 18:40:50 +0000263 // In the case of function values, we have to allow for the forward reference
264 // of basic blocks, which are included in the numbering. Consequently, we keep
265 // track of the next insertion location with NextValNum. When a BB gets
266 // inserted, it could change the size of the CurFun.Values vector.
267 if (&ValueTab == &CurFun.Values) {
268 if (ValueTab.size() <= CurFun.NextValNum)
269 ValueTab.resize(CurFun.NextValNum+1);
270 ValueTab[CurFun.NextValNum++] = V;
271 return;
272 }
273 // For all other lists, its okay to just tack it on the back of the vector.
274 ValueTab.push_back(V);
Chris Lattner58af2a12006-02-15 07:22:58 +0000275}
276
277static const Type *getTypeVal(const ValID &D, bool DoNotImprovise = false) {
278 switch (D.Type) {
Reid Spencer41dff5e2007-01-26 08:05:27 +0000279 case ValID::LocalID: // Is it a numbered definition?
Chris Lattner58af2a12006-02-15 07:22:58 +0000280 // Module constants occupy the lowest numbered slots...
Reid Spencer41dff5e2007-01-26 08:05:27 +0000281 if (D.Num < CurModule.Types.size())
282 return CurModule.Types[D.Num];
Chris Lattner58af2a12006-02-15 07:22:58 +0000283 break;
Reid Spencer41dff5e2007-01-26 08:05:27 +0000284 case ValID::LocalName: // Is it a named definition?
Chris Lattner58af2a12006-02-15 07:22:58 +0000285 if (const Type *N = CurModule.CurrentModule->getTypeByName(D.Name)) {
286 D.destroy(); // Free old strdup'd memory...
287 return N;
288 }
289 break;
290 default:
Reid Spencerb5334b02007-02-05 10:18:06 +0000291 GenerateError("Internal parser error: Invalid symbol type reference");
Reid Spencer5b7e7532006-09-28 19:28:24 +0000292 return 0;
Chris Lattner58af2a12006-02-15 07:22:58 +0000293 }
294
295 // If we reached here, we referenced either a symbol that we don't know about
296 // or an id number that hasn't been read yet. We may be referencing something
297 // forward, so just create an entry to be resolved later and get to it...
298 //
299 if (DoNotImprovise) return 0; // Do we just want a null to be returned?
300
301
302 if (inFunctionScope()) {
Reid Spencer41dff5e2007-01-26 08:05:27 +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 Spencer41dff5e2007-01-26 08:05:27 +0000307 GenerateError("Reference to an undefined type: #" + utostr(D.Num));
Reid Spencer5b7e7532006-09-28 19:28:24 +0000308 return 0;
309 }
Chris Lattner58af2a12006-02-15 07:22:58 +0000310 }
311
Reid Spencer861d9d62006-11-28 07:29:44 +0000312 std::map<ValID, PATypeHolder>::iterator I =CurModule.LateResolveTypes.find(D);
Chris Lattner58af2a12006-02-15 07:22:58 +0000313 if (I != CurModule.LateResolveTypes.end())
Reid Spencer861d9d62006-11-28 07:29:44 +0000314 return I->second;
Chris Lattner58af2a12006-02-15 07:22:58 +0000315
Reid Spencer861d9d62006-11-28 07:29:44 +0000316 Type *Typ = OpaqueType::get();
317 CurModule.LateResolveTypes.insert(std::make_pair(D, Typ));
318 return Typ;
Reid Spencera132e042006-12-03 05:46:11 +0000319 }
Chris Lattner58af2a12006-02-15 07:22:58 +0000320
Reid Spencer93c40032007-03-19 18:40:50 +0000321// getExistingVal - Look up the value specified by the provided type and
Chris Lattner58af2a12006-02-15 07:22:58 +0000322// the provided ValID. If the value exists and has already been defined, return
323// it. Otherwise return null.
324//
Reid Spencer93c40032007-03-19 18:40:50 +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 Lattner58af2a12006-02-15 07:22:58 +0000328 "must be referenced as pointers");
Reid Spencer5b7e7532006-09-28 19:28:24 +0000329 return 0;
330 }
Chris Lattner58af2a12006-02-15 07:22:58 +0000331
332 switch (D.Type) {
Reid Spencer41dff5e2007-01-26 08:05:27 +0000333 case ValID::LocalID: { // Is it a numbered definition?
Reid Spencer41dff5e2007-01-26 08:05:27 +0000334 // Check that the number is within bounds.
Reid Spencer93c40032007-03-19 18:40:50 +0000335 if (D.Num >= CurFun.Values.size())
336 return 0;
337 Value *Result = CurFun.Values[D.Num];
338 if (Ty != Result->getType()) {
339 GenerateError("Numbered value (%" + utostr(D.Num) + ") of type '" +
340 Result->getType()->getDescription() + "' does not match "
341 "expected type, '" + Ty->getDescription() + "'");
342 return 0;
343 }
344 return Result;
Reid Spencer41dff5e2007-01-26 08:05:27 +0000345 }
346 case ValID::GlobalID: { // Is it a numbered definition?
Reid Spencer93c40032007-03-19 18:40:50 +0000347 if (D.Num >= CurModule.Values.size())
Reid Spenceref9b9a72007-02-05 20:47:22 +0000348 return 0;
Reid Spencer93c40032007-03-19 18:40:50 +0000349 Value *Result = CurModule.Values[D.Num];
350 if (Ty != Result->getType()) {
351 GenerateError("Numbered value (@" + utostr(D.Num) + ") of type '" +
352 Result->getType()->getDescription() + "' does not match "
353 "expected type, '" + Ty->getDescription() + "'");
Reid Spenceref9b9a72007-02-05 20:47:22 +0000354 return 0;
Reid Spencer93c40032007-03-19 18:40:50 +0000355 }
356 return Result;
Chris Lattner58af2a12006-02-15 07:22:58 +0000357 }
Reid Spencer41dff5e2007-01-26 08:05:27 +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();
363 Value *N = SymTab.lookup(D.Name);
364 if (N == 0)
365 return 0;
366 if (N->getType() != Ty)
367 return 0;
Reid Spencer41dff5e2007-01-26 08:05:27 +0000368
369 D.destroy(); // Free old strdup'd memory...
370 return N;
371 }
372 case ValID::GlobalName: { // Is it a named definition?
Reid Spenceref9b9a72007-02-05 20:47:22 +0000373 ValueSymbolTable &SymTab = CurModule.CurrentModule->getValueSymbolTable();
374 Value *N = SymTab.lookup(D.Name);
375 if (N == 0)
376 return 0;
377 if (N->getType() != Ty)
378 return 0;
Chris Lattner58af2a12006-02-15 07:22:58 +0000379
380 D.destroy(); // Free old strdup'd memory...
381 return N;
382 }
383
384 // Check to make sure that "Ty" is an integral type, and that our
385 // value will fit into the specified type...
386 case ValID::ConstSIntVal: // Is it a constant pool reference??
Reid 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 '" +
Chris Lattner58af2a12006-02-15 07:22:58 +0000389 itostr(D.ConstPool64) + "' is invalid for type '" +
Reid Spencerb5334b02007-02-05 10:18:06 +0000390 Ty->getDescription() + "'");
Reid Spencer5b7e7532006-09-28 19:28:24 +0000391 return 0;
392 }
Reid Spencer49d273e2007-03-19 20:40:51 +0000393 return ConstantInt::get(Ty, D.ConstPool64, true);
Chris Lattner58af2a12006-02-15 07:22:58 +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 Spencerb5334b02007-02-05 10:18:06 +0000399 "' is invalid or out of range");
Reid Spencer5b7e7532006-09-28 19:28:24 +0000400 return 0;
Chris Lattner58af2a12006-02-15 07:22:58 +0000401 } else { // This is really a signed reference. Transmogrify.
Reid Spencer49d273e2007-03-19 20:40:51 +0000402 return ConstantInt::get(Ty, D.ConstPool64, true);
Chris Lattner58af2a12006-02-15 07:22:58 +0000403 }
404 } else {
Reid Spencerb83eb642006-10-20 07:07:24 +0000405 return ConstantInt::get(Ty, D.UConstPool64);
Chris Lattner58af2a12006-02-15 07:22:58 +0000406 }
407
408 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 Spencerb5334b02007-02-05 10:18:06 +0000410 GenerateError("FP constant invalid for type");
Reid Spencer5b7e7532006-09-28 19:28:24 +0000411 return 0;
412 }
Chris Lattner58af2a12006-02-15 07:22:58 +0000413 return ConstantFP::get(Ty, D.ConstPoolFP);
414
415 case ValID::ConstNullVal: // Is it a null value?
Reid Spencer5b7e7532006-09-28 19:28:24 +0000416 if (!isa<PointerType>(Ty)) {
Reid Spencerb5334b02007-02-05 10:18:06 +0000417 GenerateError("Cannot create a a non pointer null");
Reid Spencer5b7e7532006-09-28 19:28:24 +0000418 return 0;
419 }
Chris Lattner58af2a12006-02-15 07:22:58 +0000420 return ConstantPointerNull::get(cast<PointerType>(Ty));
421
422 case ValID::ConstUndefVal: // Is it an undef value?
423 return UndefValue::get(Ty);
424
425 case ValID::ConstZeroVal: // Is it a zero value?
426 return Constant::getNullValue(Ty);
427
428 case ValID::ConstantVal: // Fully resolved constant?
Reid Spencer5b7e7532006-09-28 19:28:24 +0000429 if (D.ConstantValue->getType() != Ty) {
Reid Spencerb5334b02007-02-05 10:18:06 +0000430 GenerateError("Constant expression type different from required type");
Reid Spencer5b7e7532006-09-28 19:28:24 +0000431 return 0;
432 }
Chris Lattner58af2a12006-02-15 07:22:58 +0000433 return D.ConstantValue;
434
435 case ValID::InlineAsmVal: { // Inline asm expression
436 const PointerType *PTy = dyn_cast<PointerType>(Ty);
437 const FunctionType *FTy =
438 PTy ? dyn_cast<FunctionType>(PTy->getElementType()) : 0;
Reid Spencer5b7e7532006-09-28 19:28:24 +0000439 if (!FTy || !InlineAsm::Verify(FTy, D.IAD->Constraints)) {
Reid Spencerb5334b02007-02-05 10:18:06 +0000440 GenerateError("Invalid type for asm constraint string");
Reid Spencer5b7e7532006-09-28 19:28:24 +0000441 return 0;
442 }
Chris Lattner58af2a12006-02-15 07:22:58 +0000443 InlineAsm *IA = InlineAsm::get(FTy, D.IAD->AsmString, D.IAD->Constraints,
444 D.IAD->HasSideEffects);
445 D.destroy(); // Free InlineAsmDescriptor.
446 return IA;
447 }
448 default:
Reid Spencera9720f52007-02-05 17:04:00 +0000449 assert(0 && "Unhandled case!");
Chris Lattner58af2a12006-02-15 07:22:58 +0000450 return 0;
451 } // End of switch
452
Reid Spencera9720f52007-02-05 17:04:00 +0000453 assert(0 && "Unhandled case!");
Chris Lattner58af2a12006-02-15 07:22:58 +0000454 return 0;
455}
456
Reid Spencer93c40032007-03-19 18:40:50 +0000457// getVal - This function is identical to getExistingVal, except that if a
Chris Lattner58af2a12006-02-15 07:22:58 +0000458// value is not already defined, it "improvises" by creating a placeholder var
459// that looks and acts just like the requested variable. When the value is
460// defined later, all uses of the placeholder variable are replaced with the
461// real thing.
462//
463static Value *getVal(const Type *Ty, const ValID &ID) {
Reid 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 Lattner58af2a12006-02-15 07:22:58 +0000468
469 // See if the value has already been defined.
Reid Spencer93c40032007-03-19 18:40:50 +0000470 Value *V = getExistingVal(Ty, ID);
Chris Lattner58af2a12006-02-15 07:22:58 +0000471 if (V) return V;
Reid Spencer5b7e7532006-09-28 19:28:24 +0000472 if (TriggerError) return 0;
Chris Lattner58af2a12006-02-15 07:22:58 +0000473
Reid Spencer5b7e7532006-09-28 19:28:24 +0000474 if (!Ty->isFirstClassType() && !isa<OpaqueType>(Ty)) {
Reid Spencerb5334b02007-02-05 10:18:06 +0000475 GenerateError("Invalid use of a composite type");
Reid Spencer5b7e7532006-09-28 19:28:24 +0000476 return 0;
477 }
Chris Lattner58af2a12006-02-15 07:22:58 +0000478
479 // If we reached here, we referenced either a symbol that we don't know about
480 // or an id number that hasn't been read yet. We may be referencing something
481 // forward, so just create an entry to be resolved later and get to it...
482 //
Anton Korobeynikov38e09802007-04-28 13:48:45 +0000483 switch (ID.Type) {
484 case ValID::GlobalName:
Reid Spencer9c9b63a2007-04-28 16:07:31 +0000485 case ValID::GlobalID: {
Anton Korobeynikov38e09802007-04-28 13:48:45 +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 Spencer9c9b63a2007-04-28 16:07:31 +0000497 }
Anton Korobeynikov38e09802007-04-28 13:48:45 +0000498 default:
499 V = new Argument(Ty);
500 }
501
Chris Lattner58af2a12006-02-15 07:22:58 +0000502 // Remember where this forward reference came from. FIXME, shouldn't we try
503 // to recycle these things??
504 CurModule.PlaceHolderInfo.insert(std::make_pair(V, std::make_pair(ID,
505 llvmAsmlineno)));
506
507 if (inFunctionScope())
508 InsertValue(V, CurFun.LateResolveValues);
509 else
510 InsertValue(V, CurModule.LateResolveValues);
511 return V;
512}
513
Reid Spencer93c40032007-03-19 18:40:50 +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 Spencera9720f52007-02-05 17:04:00 +0000517 assert(inFunctionScope() && "Can't get basic block at global scope!");
Chris Lattner58af2a12006-02-15 07:22:58 +0000518
Chris Lattner58af2a12006-02-15 07:22:58 +0000519 BasicBlock *BB = 0;
Chris Lattner58af2a12006-02-15 07:22:58 +0000520
Reid Spencer93c40032007-03-19 18:40:50 +0000521 // First, see if this was forward referenced
Chris Lattner58af2a12006-02-15 07:22:58 +0000522
Reid Spencer93c40032007-03-19 18:40:50 +0000523 std::map<ValID, BasicBlock*>::iterator BBI = CurFun.BBForwardRefs.find(ID);
524 if (BBI != CurFun.BBForwardRefs.end()) {
525 BB = BBI->second;
Chris Lattner58af2a12006-02-15 07:22:58 +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 Spencer93c40032007-03-19 18:40:50 +0000530
Reid Spencer66728ef2007-03-20 01:13:36 +0000531 // We're about to erase the entry, save the key so we can clean it up.
532 ValID Tmp = BBI->first;
533
Reid Spencer93c40032007-03-19 18:40:50 +0000534 // Erase the forward ref from the map as its no longer "forward"
535 CurFun.BBForwardRefs.erase(ID);
536
Reid Spencer66728ef2007-03-20 01:13:36 +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 Spencer93c40032007-03-19 18:40:50 +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.
553 std::string Name (ID.Type == ValID::LocalName ? ID.Name : "");
554 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 Lattner58af2a12006-02-15 07:22:58 +0000558 }
Reid Spencer93c40032007-03-19 18:40:50 +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) {
575 std::string Name = ID.Name;
576 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)
606 Name = ID.Name;
607 BB = new BasicBlock(Name, CurFun.CurrentFunction);
608
609 // Insert it in the forward refs map.
610 CurFun.BBForwardRefs[ID] = BB;
611
Chris Lattner58af2a12006-02-15 07:22:58 +0000612 return BB;
613}
614
615
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//
624// This keeps a table (CurFun.LateResolveValues) of all such forward references
625// and back patchs after we are done.
626//
627
628// ResolveDefinitions - If we could not resolve some defs at parsing
629// time (forward branches, phi functions for loops, etc...) resolve the
630// defs now...
631//
632static void
Reid Spencer93c40032007-03-19 18:40:50 +0000633ResolveDefinitions(ValueList &LateResolvers, ValueList *FutureLateResolvers) {
Chris Lattner58af2a12006-02-15 07:22:58 +0000634 // Loop over LateResolveDefs fixing up stuff that couldn't be resolved
Reid Spencer93c40032007-03-19 18:40:50 +0000635 while (!LateResolvers.empty()) {
636 Value *V = LateResolvers.back();
637 LateResolvers.pop_back();
Chris Lattner58af2a12006-02-15 07:22:58 +0000638
Reid Spencer93c40032007-03-19 18:40:50 +0000639 std::map<Value*, std::pair<ValID, int> >::iterator PHI =
640 CurModule.PlaceHolderInfo.find(V);
641 assert(PHI != CurModule.PlaceHolderInfo.end() && "Placeholder error!");
Chris Lattner58af2a12006-02-15 07:22:58 +0000642
Reid Spencer93c40032007-03-19 18:40:50 +0000643 ValID &DID = PHI->second.first;
Chris Lattner58af2a12006-02-15 07:22:58 +0000644
Reid Spencer93c40032007-03-19 18:40:50 +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 Lattner58af2a12006-02-15 07:22:58 +0000662 } else {
Reid Spencer93c40032007-03-19 18:40:50 +0000663 GenerateError("Reference to an invalid definition: #" +
664 itostr(DID.Num) + " of type '" +
665 V->getType()->getDescription() + "'",
666 PHI->second.second);
667 return;
Chris Lattner58af2a12006-02-15 07:22:58 +0000668 }
669 }
670 }
Chris Lattner58af2a12006-02-15 07:22:58 +0000671 LateResolvers.clear();
672}
673
674// 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.
677//
678static void ResolveTypeTo(char *Name, const Type *ToTy) {
679 ValID D;
Reid Spencer41dff5e2007-01-26 08:05:27 +0000680 if (Name) D = ValID::createLocalName(Name);
681 else D = ValID::createLocalID(CurModule.Types.size());
Chris Lattner58af2a12006-02-15 07:22:58 +0000682
Reid Spencer861d9d62006-11-28 07:29:44 +0000683 std::map<ValID, PATypeHolder>::iterator I =
Chris Lattner58af2a12006-02-15 07:22:58 +0000684 CurModule.LateResolveTypes.find(D);
685 if (I != CurModule.LateResolveTypes.end()) {
Reid Spencer861d9d62006-11-28 07:29:44 +0000686 ((DerivedType*)I->second.get())->refineAbstractTypeTo(ToTy);
Chris Lattner58af2a12006-02-15 07:22:58 +0000687 CurModule.LateResolveTypes.erase(I);
688 }
689}
690
691// setValueName - Set the specified value to the name given. The name may be
692// null potentially, in which case this is a noop. The string passed in is
693// assumed to be a malloc'd string buffer, and is free'd by this function.
694//
695static void setValueName(Value *V, char *NameStr) {
Reid Spencer41dff5e2007-01-26 08:05:27 +0000696 if (!NameStr) return;
697 std::string Name(NameStr); // Copy string
698 free(NameStr); // Free old string
Chris Lattner58af2a12006-02-15 07:22:58 +0000699
Reid Spencer41dff5e2007-01-26 08:05:27 +0000700 if (V->getType() == Type::VoidTy) {
Reid Spencerb5334b02007-02-05 10:18:06 +0000701 GenerateError("Can't assign name '" + Name+"' to value with void type");
Reid Spencer41dff5e2007-01-26 08:05:27 +0000702 return;
Chris Lattner58af2a12006-02-15 07:22:58 +0000703 }
Reid Spencer41dff5e2007-01-26 08:05:27 +0000704
Reid Spencera9720f52007-02-05 17:04:00 +0000705 assert(inFunctionScope() && "Must be in function scope!");
Reid Spenceref9b9a72007-02-05 20:47:22 +0000706 ValueSymbolTable &ST = CurFun.CurrentFunction->getValueSymbolTable();
707 if (ST.lookup(Name)) {
Reid Spencer41dff5e2007-01-26 08:05:27 +0000708 GenerateError("Redefinition of value '" + Name + "' of type '" +
Reid Spencerb5334b02007-02-05 10:18:06 +0000709 V->getType()->getDescription() + "'");
Reid Spencer41dff5e2007-01-26 08:05:27 +0000710 return;
711 }
712
713 // Set the name.
714 V->setName(Name);
Chris Lattner58af2a12006-02-15 07:22:58 +0000715}
716
717/// ParseGlobalVariable - Handle parsing of a global. If Initializer is null,
718/// this is a declaration, otherwise it is a definition.
719static GlobalVariable *
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000720ParseGlobalVariable(char *NameStr,
721 GlobalValue::LinkageTypes Linkage,
722 GlobalValue::VisibilityTypes Visibility,
Chris Lattner58af2a12006-02-15 07:22:58 +0000723 bool isConstantGlobal, const Type *Ty,
Lauro Ramos Venancioc7635522007-04-12 18:32:50 +0000724 Constant *Initializer, bool IsThreadLocal) {
Reid Spencer5b7e7532006-09-28 19:28:24 +0000725 if (isa<FunctionType>(Ty)) {
Reid Spencerb5334b02007-02-05 10:18:06 +0000726 GenerateError("Cannot declare global vars of function type");
Reid Spencer5b7e7532006-09-28 19:28:24 +0000727 return 0;
728 }
Chris Lattner58af2a12006-02-15 07:22:58 +0000729
730 const PointerType *PTy = PointerType::get(Ty);
731
732 std::string Name;
733 if (NameStr) {
734 Name = NameStr; // Copy string
735 free(NameStr); // Free old string
736 }
737
738 // See if this global value was forward referenced. If so, recycle the
739 // object.
740 ValID ID;
741 if (!Name.empty()) {
Reid Spencer41dff5e2007-01-26 08:05:27 +0000742 ID = ValID::createGlobalName((char*)Name.c_str());
Chris Lattner58af2a12006-02-15 07:22:58 +0000743 } else {
Reid Spencer93c40032007-03-19 18:40:50 +0000744 ID = ValID::createGlobalID(CurModule.Values.size());
Chris Lattner58af2a12006-02-15 07:22:58 +0000745 }
746
747 if (GlobalValue *FWGV = CurModule.GetForwardRefForGlobal(PTy, ID)) {
748 // Move the global to the end of the list, from whereever it was
749 // previously inserted.
750 GlobalVariable *GV = cast<GlobalVariable>(FWGV);
751 CurModule.CurrentModule->getGlobalList().remove(GV);
752 CurModule.CurrentModule->getGlobalList().push_back(GV);
753 GV->setInitializer(Initializer);
754 GV->setLinkage(Linkage);
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000755 GV->setVisibility(Visibility);
Chris Lattner58af2a12006-02-15 07:22:58 +0000756 GV->setConstant(isConstantGlobal);
Lauro Ramos Venancioc7635522007-04-12 18:32:50 +0000757 GV->setThreadLocal(IsThreadLocal);
Chris Lattner58af2a12006-02-15 07:22:58 +0000758 InsertValue(GV, CurModule.Values);
759 return GV;
760 }
761
Reid Spenceref9b9a72007-02-05 20:47:22 +0000762 // If this global has a name
Chris Lattner58af2a12006-02-15 07:22:58 +0000763 if (!Name.empty()) {
Reid Spenceref9b9a72007-02-05 20:47:22 +0000764 // if the global we're parsing has an initializer (is a definition) and
765 // has external linkage.
766 if (Initializer && Linkage != GlobalValue::InternalLinkage)
767 // If there is already a global with external linkage with this name
768 if (CurModule.CurrentModule->getGlobalVariable(Name, false)) {
769 // If we allow this GVar to get created, it will be renamed in the
770 // symbol table because it conflicts with an existing GVar. We can't
771 // allow redefinition of GVars whose linking indicates that their name
772 // must stay the same. Issue the error.
773 GenerateError("Redefinition of global variable named '" + Name +
774 "' of type '" + Ty->getDescription() + "'");
775 return 0;
776 }
Chris Lattner58af2a12006-02-15 07:22:58 +0000777 }
778
779 // Otherwise there is no existing GV to use, create one now.
780 GlobalVariable *GV =
781 new GlobalVariable(Ty, isConstantGlobal, Linkage, Initializer, Name,
Lauro Ramos Venancioc7635522007-04-12 18:32:50 +0000782 CurModule.CurrentModule, IsThreadLocal);
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000783 GV->setVisibility(Visibility);
Chris Lattner58af2a12006-02-15 07:22:58 +0000784 InsertValue(GV, CurModule.Values);
785 return GV;
786}
787
788// setTypeName - Set the specified type to the name given. The name may be
789// null potentially, in which case this is a noop. The string passed in is
790// assumed to be a malloc'd string buffer, and is freed by this function.
791//
792// This function returns true if the type has already been defined, but is
793// allowed to be redefined in the specified context. If the name is a new name
794// for the type plane, it is inserted and false is returned.
795static bool setTypeName(const Type *T, char *NameStr) {
Reid Spencera9720f52007-02-05 17:04:00 +0000796 assert(!inFunctionScope() && "Can't give types function-local names!");
Chris Lattner58af2a12006-02-15 07:22:58 +0000797 if (NameStr == 0) return false;
798
799 std::string Name(NameStr); // Copy string
800 free(NameStr); // Free old string
801
802 // We don't allow assigning names to void type
Reid Spencer5b7e7532006-09-28 19:28:24 +0000803 if (T == Type::VoidTy) {
Reid Spencerb5334b02007-02-05 10:18:06 +0000804 GenerateError("Can't assign name '" + Name + "' to the void type");
Reid Spencer5b7e7532006-09-28 19:28:24 +0000805 return false;
806 }
Chris Lattner58af2a12006-02-15 07:22:58 +0000807
808 // Set the type name, checking for conflicts as we do so.
809 bool AlreadyExists = CurModule.CurrentModule->addTypeName(Name, T);
810
811 if (AlreadyExists) { // Inserting a name that is already defined???
812 const Type *Existing = CurModule.CurrentModule->getTypeByName(Name);
Reid Spencera9720f52007-02-05 17:04:00 +0000813 assert(Existing && "Conflict but no matching type?!");
Chris Lattner58af2a12006-02-15 07:22:58 +0000814
815 // There is only one case where this is allowed: when we are refining an
816 // opaque type. In this case, Existing will be an opaque type.
817 if (const OpaqueType *OpTy = dyn_cast<OpaqueType>(Existing)) {
818 // We ARE replacing an opaque type!
819 const_cast<OpaqueType*>(OpTy)->refineAbstractTypeTo(T);
820 return true;
821 }
822
823 // Otherwise, this is an attempt to redefine a type. That's okay if
824 // the redefinition is identical to the original. This will be so if
825 // Existing and T point to the same Type object. In this one case we
826 // allow the equivalent redefinition.
827 if (Existing == T) return true; // Yes, it's equal.
828
829 // Any other kind of (non-equivalent) redefinition is an error.
Reid Spencer63c34452007-01-05 21:51:07 +0000830 GenerateError("Redefinition of type named '" + Name + "' of type '" +
Reid Spencerb5334b02007-02-05 10:18:06 +0000831 T->getDescription() + "'");
Chris Lattner58af2a12006-02-15 07:22:58 +0000832 }
833
834 return false;
835}
836
837//===----------------------------------------------------------------------===//
838// Code for handling upreferences in type names...
839//
840
841// TypeContains - Returns true if Ty directly contains E in it.
842//
843static bool TypeContains(const Type *Ty, const Type *E) {
844 return std::find(Ty->subtype_begin(), Ty->subtype_end(),
845 E) != Ty->subtype_end();
846}
847
848namespace {
849 struct UpRefRecord {
850 // NestingLevel - The number of nesting levels that need to be popped before
851 // this type is resolved.
852 unsigned NestingLevel;
853
854 // LastContainedTy - This is the type at the current binding level for the
855 // type. Every time we reduce the nesting level, this gets updated.
856 const Type *LastContainedTy;
857
858 // UpRefTy - This is the actual opaque type that the upreference is
859 // represented with.
860 OpaqueType *UpRefTy;
861
862 UpRefRecord(unsigned NL, OpaqueType *URTy)
863 : NestingLevel(NL), LastContainedTy(URTy), UpRefTy(URTy) {}
864 };
865}
866
867// UpRefs - A list of the outstanding upreferences that need to be resolved.
868static std::vector<UpRefRecord> UpRefs;
869
870/// HandleUpRefs - Every time we finish a new layer of types, this function is
871/// called. It loops through the UpRefs vector, which is a list of the
872/// currently active types. For each type, if the up reference is contained in
873/// the newly completed type, we decrement the level count. When the level
874/// count reaches zero, the upreferenced type is the type that is passed in:
875/// thus we can complete the cycle.
876///
877static PATypeHolder HandleUpRefs(const Type *ty) {
Chris Lattner224f84f2006-08-18 17:34:45 +0000878 // If Ty isn't abstract, or if there are no up-references in it, then there is
879 // nothing to resolve here.
880 if (!ty->isAbstract() || UpRefs.empty()) return ty;
881
Chris Lattner58af2a12006-02-15 07:22:58 +0000882 PATypeHolder Ty(ty);
883 UR_OUT("Type '" << Ty->getDescription() <<
884 "' newly formed. Resolving upreferences.\n" <<
885 UpRefs.size() << " upreferences active!\n");
886
887 // If we find any resolvable upreferences (i.e., those whose NestingLevel goes
888 // to zero), we resolve them all together before we resolve them to Ty. At
889 // the end of the loop, if there is anything to resolve to Ty, it will be in
890 // this variable.
891 OpaqueType *TypeToResolve = 0;
892
893 for (unsigned i = 0; i != UpRefs.size(); ++i) {
894 UR_OUT(" UR#" << i << " - TypeContains(" << Ty->getDescription() << ", "
895 << UpRefs[i].second->getDescription() << ") = "
896 << (TypeContains(Ty, UpRefs[i].second) ? "true" : "false") << "\n");
897 if (TypeContains(Ty, UpRefs[i].LastContainedTy)) {
898 // Decrement level of upreference
899 unsigned Level = --UpRefs[i].NestingLevel;
900 UpRefs[i].LastContainedTy = Ty;
901 UR_OUT(" Uplevel Ref Level = " << Level << "\n");
902 if (Level == 0) { // Upreference should be resolved!
903 if (!TypeToResolve) {
904 TypeToResolve = UpRefs[i].UpRefTy;
905 } else {
906 UR_OUT(" * Resolving upreference for "
907 << UpRefs[i].second->getDescription() << "\n";
908 std::string OldName = UpRefs[i].UpRefTy->getDescription());
909 UpRefs[i].UpRefTy->refineAbstractTypeTo(TypeToResolve);
910 UR_OUT(" * Type '" << OldName << "' refined upreference to: "
911 << (const void*)Ty << ", " << Ty->getDescription() << "\n");
912 }
913 UpRefs.erase(UpRefs.begin()+i); // Remove from upreference list...
914 --i; // Do not skip the next element...
915 }
916 }
917 }
918
919 if (TypeToResolve) {
920 UR_OUT(" * Resolving upreference for "
921 << UpRefs[i].second->getDescription() << "\n";
922 std::string OldName = TypeToResolve->getDescription());
923 TypeToResolve->refineAbstractTypeTo(Ty);
924 }
925
926 return Ty;
927}
928
Chris Lattner58af2a12006-02-15 07:22:58 +0000929//===----------------------------------------------------------------------===//
930// RunVMAsmParser - Define an interface to this parser
931//===----------------------------------------------------------------------===//
932//
Reid Spencer14310612006-12-31 05:40:51 +0000933static Module* RunParser(Module * M);
934
Chris Lattner58af2a12006-02-15 07:22:58 +0000935Module *llvm::RunVMAsmParser(const std::string &Filename, FILE *F) {
936 set_scan_file(F);
937
938 CurFilename = Filename;
939 return RunParser(new Module(CurFilename));
940}
941
942Module *llvm::RunVMAsmParser(const char * AsmString, Module * M) {
943 set_scan_string(AsmString);
944
945 CurFilename = "from_memory";
946 if (M == NULL) {
947 return RunParser(new Module (CurFilename));
948 } else {
949 return RunParser(M);
950 }
951}
952
953%}
954
955%union {
956 llvm::Module *ModuleVal;
957 llvm::Function *FunctionVal;
Chris Lattner58af2a12006-02-15 07:22:58 +0000958 llvm::BasicBlock *BasicBlockVal;
959 llvm::TerminatorInst *TermInstVal;
960 llvm::Instruction *InstVal;
Reid Spencera132e042006-12-03 05:46:11 +0000961 llvm::Constant *ConstVal;
Chris Lattner58af2a12006-02-15 07:22:58 +0000962
Reid Spencera132e042006-12-03 05:46:11 +0000963 const llvm::Type *PrimType;
Reid Spencer14310612006-12-31 05:40:51 +0000964 std::list<llvm::PATypeHolder> *TypeList;
Reid Spencera132e042006-12-03 05:46:11 +0000965 llvm::PATypeHolder *TypeVal;
966 llvm::Value *ValueVal;
Reid Spencera132e042006-12-03 05:46:11 +0000967 std::vector<llvm::Value*> *ValueList;
Reid Spencer14310612006-12-31 05:40:51 +0000968 llvm::ArgListType *ArgList;
969 llvm::TypeWithAttrs TypeWithAttrs;
970 llvm::TypeWithAttrsList *TypeWithAttrsList;
971 llvm::ValueRefList *ValueRefList;
972
Chris Lattner58af2a12006-02-15 07:22:58 +0000973 // Represent the RHS of PHI node
Reid Spencera132e042006-12-03 05:46:11 +0000974 std::list<std::pair<llvm::Value*,
975 llvm::BasicBlock*> > *PHIList;
Chris Lattner58af2a12006-02-15 07:22:58 +0000976 std::vector<std::pair<llvm::Constant*, llvm::BasicBlock*> > *JumpTable;
Reid Spencera132e042006-12-03 05:46:11 +0000977 std::vector<llvm::Constant*> *ConstVector;
Chris Lattner58af2a12006-02-15 07:22:58 +0000978
979 llvm::GlobalValue::LinkageTypes Linkage;
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000980 llvm::GlobalValue::VisibilityTypes Visibility;
Reid Spencer7b5d4662007-04-09 06:16:21 +0000981 uint16_t ParamAttrs;
Reid Spencer38c91a92007-02-28 02:24:54 +0000982 llvm::APInt *APIntVal;
Chris Lattner58af2a12006-02-15 07:22:58 +0000983 int64_t SInt64Val;
984 uint64_t UInt64Val;
985 int SIntVal;
986 unsigned UIntVal;
987 double FPVal;
988 bool BoolVal;
989
990 char *StrVal; // This memory is strdup'd!
Reid Spencer1628cec2006-10-26 06:15:43 +0000991 llvm::ValID ValIDVal; // strdup'd memory maybe!
Chris Lattner58af2a12006-02-15 07:22:58 +0000992
Reid Spencera132e042006-12-03 05:46:11 +0000993 llvm::Instruction::BinaryOps BinaryOpVal;
994 llvm::Instruction::TermOps TermOpVal;
995 llvm::Instruction::MemoryOps MemOpVal;
996 llvm::Instruction::CastOps CastOpVal;
997 llvm::Instruction::OtherOps OtherOpVal;
Reid Spencera132e042006-12-03 05:46:11 +0000998 llvm::ICmpInst::Predicate IPredicate;
999 llvm::FCmpInst::Predicate FPredicate;
Chris Lattner58af2a12006-02-15 07:22:58 +00001000}
1001
Reid Spencer14310612006-12-31 05:40:51 +00001002%type <ModuleVal> Module
Chris Lattner58af2a12006-02-15 07:22:58 +00001003%type <FunctionVal> Function FunctionProto FunctionHeader BasicBlockList
1004%type <BasicBlockVal> BasicBlock InstructionList
1005%type <TermInstVal> BBTerminatorInst
1006%type <InstVal> Inst InstVal MemoryInst
Anton Korobeynikov38e09802007-04-28 13:48:45 +00001007%type <ConstVal> ConstVal ConstExpr AliaseeRef
Chris Lattner58af2a12006-02-15 07:22:58 +00001008%type <ConstVector> ConstVector
1009%type <ArgList> ArgList ArgListH
Chris Lattner58af2a12006-02-15 07:22:58 +00001010%type <PHIList> PHIList
Reid Spencer14310612006-12-31 05:40:51 +00001011%type <ValueRefList> ValueRefList // For call param lists & GEP indices
1012%type <ValueList> IndexList // For GEP indices
1013%type <TypeList> TypeListI
1014%type <TypeWithAttrsList> ArgTypeList ArgTypeListI
Reid Spencer218ded22007-01-05 17:07:23 +00001015%type <TypeWithAttrs> ArgType
Chris Lattner58af2a12006-02-15 07:22:58 +00001016%type <JumpTable> JumpTable
1017%type <BoolVal> GlobalType // GLOBAL or CONSTANT?
Lauro Ramos Venancioc7635522007-04-12 18:32:50 +00001018%type <BoolVal> ThreadLocal // 'thread_local' or not
Chris Lattner58af2a12006-02-15 07:22:58 +00001019%type <BoolVal> OptVolatile // 'volatile' or not
1020%type <BoolVal> OptTailCall // TAIL CALL or plain CALL.
1021%type <BoolVal> OptSideEffect // 'sideeffect' or not.
Reid Spencer14310612006-12-31 05:40:51 +00001022%type <Linkage> GVInternalLinkage GVExternalLinkage
1023%type <Linkage> FunctionDefineLinkage FunctionDeclareLinkage
Anton Korobeynikov77d0f972007-04-25 14:29:12 +00001024%type <Linkage> AliasLinkage
Anton Korobeynikov7f705592007-01-12 19:20:47 +00001025%type <Visibility> GVVisibilityStyle
Chris Lattner58af2a12006-02-15 07:22:58 +00001026
1027// ValueRef - Unresolved reference to a definition or BB
1028%type <ValIDVal> ValueRef ConstValueRef SymbolicValueRef
1029%type <ValueVal> ResolvedVal // <type> <valref> pair
1030// Tokens and types for handling constant integer values
1031//
1032// ESINT64VAL - A negative number within long long range
1033%token <SInt64Val> ESINT64VAL
1034
1035// EUINT64VAL - A positive number within uns. long long range
1036%token <UInt64Val> EUINT64VAL
Chris Lattner58af2a12006-02-15 07:22:58 +00001037
Reid Spencer38c91a92007-02-28 02:24:54 +00001038// ESAPINTVAL - A negative number with arbitrary precision
1039%token <APIntVal> ESAPINTVAL
1040
1041// EUAPINTVAL - A positive number with arbitrary precision
1042%token <APIntVal> EUAPINTVAL
1043
Reid Spencer41dff5e2007-01-26 08:05:27 +00001044%token <UIntVal> LOCALVAL_ID GLOBALVAL_ID // %123 @123
Chris Lattner58af2a12006-02-15 07:22:58 +00001045%token <FPVal> FPVAL // Float or Double constant
1046
1047// Built in types...
Reid Spencer218ded22007-01-05 17:07:23 +00001048%type <TypeVal> Types ResultTypes
Reid Spencer14310612006-12-31 05:40:51 +00001049%type <PrimType> IntType FPType PrimType // Classifications
Reid Spencer6f407902007-01-13 05:00:46 +00001050%token <PrimType> VOID INTTYPE
Reid Spencer6fd36ab2006-12-29 20:35:03 +00001051%token <PrimType> FLOAT DOUBLE LABEL
1052%token TYPE
Chris Lattner58af2a12006-02-15 07:22:58 +00001053
Reid Spencer41dff5e2007-01-26 08:05:27 +00001054%token<StrVal> LOCALVAR GLOBALVAR LABELSTR STRINGCONSTANT ATSTRINGCONSTANT
1055%type <StrVal> LocalName OptLocalName OptLocalAssign
Anton Korobeynikov77d0f972007-04-25 14:29:12 +00001056%type <StrVal> GlobalName OptGlobalAssign GlobalAssign
Reid Spencer41dff5e2007-01-26 08:05:27 +00001057%type <UIntVal> OptAlign OptCAlign
Chris Lattner58af2a12006-02-15 07:22:58 +00001058%type <StrVal> OptSection SectionString
1059
Reid Spencer3d6b71e2007-04-09 01:56:05 +00001060%token ZEROINITIALIZER TRUETOK FALSETOK BEGINTOK ENDTOK
Anton Korobeynikov77d0f972007-04-25 14:29:12 +00001061%token DECLARE DEFINE GLOBAL CONSTANT SECTION ALIAS VOLATILE THREAD_LOCAL
Reid Spencer14310612006-12-31 05:40:51 +00001062%token TO DOTDOTDOT NULL_TOK UNDEF INTERNAL LINKONCE WEAK APPENDING
Anton Korobeynikovb74ed072006-09-14 18:23:27 +00001063%token DLLIMPORT DLLEXPORT EXTERN_WEAK
Reid Spencer41dff5e2007-01-26 08:05:27 +00001064%token OPAQUE EXTERNAL TARGET TRIPLE ALIGN
Chris Lattner58af2a12006-02-15 07:22:58 +00001065%token DEPLIBS CALL TAIL ASM_TOK MODULE SIDEEFFECT
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00001066%token CC_TOK CCC_TOK FASTCC_TOK COLDCC_TOK X86_STDCALLCC_TOK X86_FASTCALLCC_TOK
Chris Lattner1ae022f2006-10-22 06:08:13 +00001067%token DATALAYOUT
Chris Lattner58af2a12006-02-15 07:22:58 +00001068%type <UIntVal> OptCallingConv
Reid Spencer218ded22007-01-05 17:07:23 +00001069%type <ParamAttrs> OptParamAttrs ParamAttr
1070%type <ParamAttrs> OptFuncAttrs FuncAttr
Chris Lattner58af2a12006-02-15 07:22:58 +00001071
1072// Basic Block Terminating Operators
1073%token <TermOpVal> RET BR SWITCH INVOKE UNWIND UNREACHABLE
1074
1075// Binary Operators
Reid Spencere4d87aa2006-12-23 06:05:41 +00001076%type <BinaryOpVal> ArithmeticOps LogicalOps // Binops Subcatagories
Reid Spencer3ed469c2006-11-02 20:25:50 +00001077%token <BinaryOpVal> ADD SUB MUL UDIV SDIV FDIV UREM SREM FREM AND OR XOR
Reid Spencer832254e2007-02-02 02:16:23 +00001078%token <BinaryOpVal> SHL LSHR ASHR
1079
Reid Spencera132e042006-12-03 05:46:11 +00001080%token <OtherOpVal> ICMP FCMP
Reid Spencera132e042006-12-03 05:46:11 +00001081%type <IPredicate> IPredicates
Reid Spencera132e042006-12-03 05:46:11 +00001082%type <FPredicate> FPredicates
Reid Spencer6e18b7d2006-12-03 06:59:29 +00001083%token EQ NE SLT SGT SLE SGE ULT UGT ULE UGE
1084%token OEQ ONE OLT OGT OLE OGE ORD UNO UEQ UNE
Chris Lattner58af2a12006-02-15 07:22:58 +00001085
1086// Memory Instructions
1087%token <MemOpVal> MALLOC ALLOCA FREE LOAD STORE GETELEMENTPTR
1088
Reid Spencer3da59db2006-11-27 01:05:10 +00001089// Cast Operators
1090%type <CastOpVal> CastOps
1091%token <CastOpVal> TRUNC ZEXT SEXT FPTRUNC FPEXT BITCAST
1092%token <CastOpVal> UITOFP SITOFP FPTOUI FPTOSI INTTOPTR PTRTOINT
1093
Chris Lattner58af2a12006-02-15 07:22:58 +00001094// Other Operators
Reid Spencer832254e2007-02-02 02:16:23 +00001095%token <OtherOpVal> PHI_TOK SELECT VAARG
Chris Lattnerd5efe842006-04-08 01:18:56 +00001096%token <OtherOpVal> EXTRACTELEMENT INSERTELEMENT SHUFFLEVECTOR
Chris Lattner58af2a12006-02-15 07:22:58 +00001097
Reid Spencer218ded22007-01-05 17:07:23 +00001098// Function Attributes
Reid Spencer67d8ed92007-03-22 02:14:08 +00001099%token NORETURN INREG SRET NOUNWIND
Chris Lattner58af2a12006-02-15 07:22:58 +00001100
Anton Korobeynikov7f705592007-01-12 19:20:47 +00001101// Visibility Styles
Anton Korobeynikov6f9896f2007-04-29 18:35:00 +00001102%token DEFAULT HIDDEN PROTECTED
Anton Korobeynikov7f705592007-01-12 19:20:47 +00001103
Chris Lattner58af2a12006-02-15 07:22:58 +00001104%start Module
1105%%
1106
Chris Lattner58af2a12006-02-15 07:22:58 +00001107
Chris Lattner58af2a12006-02-15 07:22:58 +00001108// Operations that are notably excluded from this list include:
1109// RET, BR, & SWITCH because they end basic blocks and are treated specially.
1110//
Reid Spencer3ed469c2006-11-02 20:25:50 +00001111ArithmeticOps: ADD | SUB | MUL | UDIV | SDIV | FDIV | UREM | SREM | FREM;
Reid Spencer832254e2007-02-02 02:16:23 +00001112LogicalOps : SHL | LSHR | ASHR | AND | OR | XOR;
Reid Spencer3da59db2006-11-27 01:05:10 +00001113CastOps : TRUNC | ZEXT | SEXT | FPTRUNC | FPEXT | BITCAST |
1114 UITOFP | SITOFP | FPTOUI | FPTOSI | INTTOPTR | PTRTOINT;
Reid Spencer832254e2007-02-02 02:16:23 +00001115
Reid Spencer6e18b7d2006-12-03 06:59:29 +00001116IPredicates
Reid Spencer4012e832006-12-04 05:24:24 +00001117 : EQ { $$ = ICmpInst::ICMP_EQ; } | NE { $$ = ICmpInst::ICMP_NE; }
Reid Spencer6e18b7d2006-12-03 06:59:29 +00001118 | SLT { $$ = ICmpInst::ICMP_SLT; } | SGT { $$ = ICmpInst::ICMP_SGT; }
1119 | SLE { $$ = ICmpInst::ICMP_SLE; } | SGE { $$ = ICmpInst::ICMP_SGE; }
1120 | ULT { $$ = ICmpInst::ICMP_ULT; } | UGT { $$ = ICmpInst::ICMP_UGT; }
1121 | ULE { $$ = ICmpInst::ICMP_ULE; } | UGE { $$ = ICmpInst::ICMP_UGE; }
1122 ;
1123
1124FPredicates
1125 : OEQ { $$ = FCmpInst::FCMP_OEQ; } | ONE { $$ = FCmpInst::FCMP_ONE; }
1126 | OLT { $$ = FCmpInst::FCMP_OLT; } | OGT { $$ = FCmpInst::FCMP_OGT; }
1127 | OLE { $$ = FCmpInst::FCMP_OLE; } | OGE { $$ = FCmpInst::FCMP_OGE; }
1128 | ORD { $$ = FCmpInst::FCMP_ORD; } | UNO { $$ = FCmpInst::FCMP_UNO; }
1129 | UEQ { $$ = FCmpInst::FCMP_UEQ; } | UNE { $$ = FCmpInst::FCMP_UNE; }
1130 | ULT { $$ = FCmpInst::FCMP_ULT; } | UGT { $$ = FCmpInst::FCMP_UGT; }
1131 | ULE { $$ = FCmpInst::FCMP_ULE; } | UGE { $$ = FCmpInst::FCMP_UGE; }
1132 | TRUETOK { $$ = FCmpInst::FCMP_TRUE; }
1133 | FALSETOK { $$ = FCmpInst::FCMP_FALSE; }
1134 ;
Chris Lattner58af2a12006-02-15 07:22:58 +00001135
1136// These are some types that allow classification if we only want a particular
1137// thing... for example, only a signed, unsigned, or integral type.
Reid Spencera54b7cb2007-01-12 07:05:14 +00001138IntType : INTTYPE;
Chris Lattner58af2a12006-02-15 07:22:58 +00001139FPType : FLOAT | DOUBLE;
1140
Reid Spencer41dff5e2007-01-26 08:05:27 +00001141LocalName : LOCALVAR | STRINGCONSTANT;
1142OptLocalName : LocalName | /*empty*/ { $$ = 0; };
1143
1144/// OptLocalAssign - Value producing statements have an optional assignment
1145/// component.
1146OptLocalAssign : LocalName '=' {
1147 $$ = $1;
1148 CHECK_FOR_ERROR
1149 }
1150 | /*empty*/ {
1151 $$ = 0;
1152 CHECK_FOR_ERROR
1153 };
1154
1155GlobalName : GLOBALVAR | ATSTRINGCONSTANT;
1156
Anton Korobeynikov77d0f972007-04-25 14:29:12 +00001157OptGlobalAssign : GlobalAssign
Chris Lattner58af2a12006-02-15 07:22:58 +00001158 | /*empty*/ {
1159 $$ = 0;
Reid Spencer61c83e02006-08-18 08:43:06 +00001160 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001161 };
1162
Anton Korobeynikov77d0f972007-04-25 14:29:12 +00001163GlobalAssign : GlobalName '=' {
1164 $$ = $1;
1165 CHECK_FOR_ERROR
Chris Lattner6cdc6822007-04-26 05:31:05 +00001166 };
Anton Korobeynikov77d0f972007-04-25 14:29:12 +00001167
Reid Spencer6fd36ab2006-12-29 20:35:03 +00001168GVInternalLinkage
1169 : INTERNAL { $$ = GlobalValue::InternalLinkage; }
1170 | WEAK { $$ = GlobalValue::WeakLinkage; }
1171 | LINKONCE { $$ = GlobalValue::LinkOnceLinkage; }
1172 | APPENDING { $$ = GlobalValue::AppendingLinkage; }
1173 | DLLEXPORT { $$ = GlobalValue::DLLExportLinkage; }
1174 ;
1175
1176GVExternalLinkage
1177 : DLLIMPORT { $$ = GlobalValue::DLLImportLinkage; }
1178 | EXTERN_WEAK { $$ = GlobalValue::ExternalWeakLinkage; }
1179 | EXTERNAL { $$ = GlobalValue::ExternalLinkage; }
1180 ;
1181
Anton Korobeynikov7f705592007-01-12 19:20:47 +00001182GVVisibilityStyle
Anton Korobeynikov6f9896f2007-04-29 18:35:00 +00001183 : /*empty*/ { $$ = GlobalValue::DefaultVisibility; }
1184 | DEFAULT { $$ = GlobalValue::DefaultVisibility; }
1185 | HIDDEN { $$ = GlobalValue::HiddenVisibility; }
1186 | PROTECTED { $$ = GlobalValue::ProtectedVisibility; }
Anton Korobeynikov7f705592007-01-12 19:20:47 +00001187 ;
1188
Reid Spencer14310612006-12-31 05:40:51 +00001189FunctionDeclareLinkage
1190 : /*empty*/ { $$ = GlobalValue::ExternalLinkage; }
1191 | DLLIMPORT { $$ = GlobalValue::DLLImportLinkage; }
1192 | EXTERN_WEAK { $$ = GlobalValue::ExternalWeakLinkage; }
Reid Spencer6fd36ab2006-12-29 20:35:03 +00001193 ;
1194
Anton Korobeynikov77d0f972007-04-25 14:29:12 +00001195FunctionDefineLinkage
Reid Spencer14310612006-12-31 05:40:51 +00001196 : /*empty*/ { $$ = GlobalValue::ExternalLinkage; }
1197 | INTERNAL { $$ = GlobalValue::InternalLinkage; }
Reid Spencer6fd36ab2006-12-29 20:35:03 +00001198 | LINKONCE { $$ = GlobalValue::LinkOnceLinkage; }
1199 | WEAK { $$ = GlobalValue::WeakLinkage; }
1200 | DLLEXPORT { $$ = GlobalValue::DLLExportLinkage; }
Reid Spencer6fd36ab2006-12-29 20:35:03 +00001201 ;
Chris Lattner58af2a12006-02-15 07:22:58 +00001202
Anton Korobeynikov77d0f972007-04-25 14:29:12 +00001203AliasLinkage
1204 : /*empty*/ { $$ = GlobalValue::ExternalLinkage; }
1205 | WEAK { $$ = GlobalValue::WeakLinkage; }
1206 | INTERNAL { $$ = GlobalValue::InternalLinkage; }
1207 ;
1208
Anton Korobeynikovbcb97702006-09-17 20:25:45 +00001209OptCallingConv : /*empty*/ { $$ = CallingConv::C; } |
1210 CCC_TOK { $$ = CallingConv::C; } |
Anton Korobeynikovbcb97702006-09-17 20:25:45 +00001211 FASTCC_TOK { $$ = CallingConv::Fast; } |
1212 COLDCC_TOK { $$ = CallingConv::Cold; } |
1213 X86_STDCALLCC_TOK { $$ = CallingConv::X86_StdCall; } |
1214 X86_FASTCALLCC_TOK { $$ = CallingConv::X86_FastCall; } |
1215 CC_TOK EUINT64VAL {
Chris Lattner58af2a12006-02-15 07:22:58 +00001216 if ((unsigned)$2 != $2)
Reid Spencerb5334b02007-02-05 10:18:06 +00001217 GEN_ERROR("Calling conv too large");
Chris Lattner58af2a12006-02-15 07:22:58 +00001218 $$ = $2;
Reid Spencer61c83e02006-08-18 08:43:06 +00001219 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001220 };
1221
Reid Spencer18da0722007-04-11 02:44:20 +00001222ParamAttr : ZEXT { $$ = ParamAttr::ZExt; }
1223 | SEXT { $$ = ParamAttr::SExt; }
1224 | INREG { $$ = ParamAttr::InReg; }
1225 | SRET { $$ = ParamAttr::StructRet; }
Reid Spencer14310612006-12-31 05:40:51 +00001226 ;
1227
Reid Spencer18da0722007-04-11 02:44:20 +00001228OptParamAttrs : /* empty */ { $$ = ParamAttr::None; }
Reid Spencer218ded22007-01-05 17:07:23 +00001229 | OptParamAttrs ParamAttr {
Reid Spencer7b5d4662007-04-09 06:16:21 +00001230 $$ = $1 | $2;
Reid Spencer14310612006-12-31 05:40:51 +00001231 }
1232 ;
1233
Reid Spencer18da0722007-04-11 02:44:20 +00001234FuncAttr : NORETURN { $$ = ParamAttr::NoReturn; }
1235 | NOUNWIND { $$ = ParamAttr::NoUnwind; }
Reid Spencer218ded22007-01-05 17:07:23 +00001236 | ParamAttr
1237 ;
1238
Reid Spencer18da0722007-04-11 02:44:20 +00001239OptFuncAttrs : /* empty */ { $$ = ParamAttr::None; }
Reid Spencer218ded22007-01-05 17:07:23 +00001240 | OptFuncAttrs FuncAttr {
Reid Spencer7b5d4662007-04-09 06:16:21 +00001241 $$ = $1 | $2;
Reid Spencer218ded22007-01-05 17:07:23 +00001242 }
Reid Spencer14310612006-12-31 05:40:51 +00001243 ;
1244
Chris Lattner58af2a12006-02-15 07:22:58 +00001245// OptAlign/OptCAlign - An optional alignment, and an optional alignment with
1246// a comma before it.
1247OptAlign : /*empty*/ { $$ = 0; } |
1248 ALIGN EUINT64VAL {
1249 $$ = $2;
1250 if ($$ != 0 && !isPowerOf2_32($$))
Reid Spencerb5334b02007-02-05 10:18:06 +00001251 GEN_ERROR("Alignment must be a power of two");
Reid Spencer61c83e02006-08-18 08:43:06 +00001252 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001253};
1254OptCAlign : /*empty*/ { $$ = 0; } |
1255 ',' ALIGN EUINT64VAL {
1256 $$ = $3;
1257 if ($$ != 0 && !isPowerOf2_32($$))
Reid Spencerb5334b02007-02-05 10:18:06 +00001258 GEN_ERROR("Alignment must be a power of two");
Reid Spencer61c83e02006-08-18 08:43:06 +00001259 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001260};
1261
1262
1263SectionString : SECTION STRINGCONSTANT {
1264 for (unsigned i = 0, e = strlen($2); i != e; ++i)
1265 if ($2[i] == '"' || $2[i] == '\\')
Reid Spencerb5334b02007-02-05 10:18:06 +00001266 GEN_ERROR("Invalid character in section name");
Chris Lattner58af2a12006-02-15 07:22:58 +00001267 $$ = $2;
Reid Spencer61c83e02006-08-18 08:43:06 +00001268 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001269};
1270
1271OptSection : /*empty*/ { $$ = 0; } |
1272 SectionString { $$ = $1; };
1273
1274// GlobalVarAttributes - Used to pass the attributes string on a global. CurGV
1275// is set to be the global we are processing.
1276//
1277GlobalVarAttributes : /* empty */ {} |
1278 ',' GlobalVarAttribute GlobalVarAttributes {};
1279GlobalVarAttribute : SectionString {
1280 CurGV->setSection($1);
1281 free($1);
Reid Spencer61c83e02006-08-18 08:43:06 +00001282 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001283 }
1284 | ALIGN EUINT64VAL {
1285 if ($2 != 0 && !isPowerOf2_32($2))
Reid Spencerb5334b02007-02-05 10:18:06 +00001286 GEN_ERROR("Alignment must be a power of two");
Chris Lattner58af2a12006-02-15 07:22:58 +00001287 CurGV->setAlignment($2);
Reid Spencer61c83e02006-08-18 08:43:06 +00001288 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001289 };
1290
1291//===----------------------------------------------------------------------===//
1292// Types includes all predefined types... except void, because it can only be
Reid Spencer14310612006-12-31 05:40:51 +00001293// used in specific contexts (function returning void for example).
Chris Lattner58af2a12006-02-15 07:22:58 +00001294
1295// Derived types are added later...
1296//
Reid Spencer6f407902007-01-13 05:00:46 +00001297PrimType : INTTYPE | FLOAT | DOUBLE | LABEL ;
Reid Spencer14310612006-12-31 05:40:51 +00001298
1299Types
1300 : OPAQUE {
Reid Spencera132e042006-12-03 05:46:11 +00001301 $$ = new PATypeHolder(OpaqueType::get());
Reid Spencer61c83e02006-08-18 08:43:06 +00001302 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001303 }
1304 | PrimType {
Reid Spencera132e042006-12-03 05:46:11 +00001305 $$ = new PATypeHolder($1);
Reid Spencer61c83e02006-08-18 08:43:06 +00001306 CHECK_FOR_ERROR
Reid Spencer14310612006-12-31 05:40:51 +00001307 }
1308 | Types '*' { // Pointer type?
1309 if (*$1 == Type::LabelTy)
1310 GEN_ERROR("Cannot form a pointer to a basic block");
1311 $$ = new PATypeHolder(HandleUpRefs(PointerType::get(*$1)));
1312 delete $1;
1313 CHECK_FOR_ERROR
1314 }
1315 | SymbolicValueRef { // Named types are also simple types...
1316 const Type* tmp = getTypeVal($1);
1317 CHECK_FOR_ERROR
1318 $$ = new PATypeHolder(tmp);
1319 }
1320 | '\\' EUINT64VAL { // Type UpReference
Reid Spencerb5334b02007-02-05 10:18:06 +00001321 if ($2 > (uint64_t)~0U) GEN_ERROR("Value out of range");
Chris Lattner58af2a12006-02-15 07:22:58 +00001322 OpaqueType *OT = OpaqueType::get(); // Use temporary placeholder
1323 UpRefs.push_back(UpRefRecord((unsigned)$2, OT)); // Add to vector...
Reid Spencera132e042006-12-03 05:46:11 +00001324 $$ = new PATypeHolder(OT);
Chris Lattner58af2a12006-02-15 07:22:58 +00001325 UR_OUT("New Upreference!\n");
Reid Spencer61c83e02006-08-18 08:43:06 +00001326 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001327 }
Reid Spencer218ded22007-01-05 17:07:23 +00001328 | Types '(' ArgTypeListI ')' OptFuncAttrs {
Chris Lattner58af2a12006-02-15 07:22:58 +00001329 std::vector<const Type*> Params;
Christopher Lamb5c104242007-04-22 20:09:11 +00001330 ParamAttrsVector Attrs;
1331 if ($5 != ParamAttr::None) {
1332 ParamAttrsWithIndex X; X.index = 0; X.attrs = $5;
1333 Attrs.push_back(X);
1334 }
Reid Spencer7b5d4662007-04-09 06:16:21 +00001335 unsigned index = 1;
1336 TypeWithAttrsList::iterator I = $3->begin(), E = $3->end();
1337 for (; I != E; ++I, ++index) {
Reid Spencer66728ef2007-03-20 01:13:36 +00001338 const Type *Ty = I->Ty->get();
Reid Spencer66728ef2007-03-20 01:13:36 +00001339 Params.push_back(Ty);
1340 if (Ty != Type::VoidTy)
Christopher Lamb5c104242007-04-22 20:09:11 +00001341 if (I->Attrs != ParamAttr::None) {
1342 ParamAttrsWithIndex X; X.index = index; X.attrs = I->Attrs;
1343 Attrs.push_back(X);
1344 }
Reid Spencer14310612006-12-31 05:40:51 +00001345 }
Chris Lattner58af2a12006-02-15 07:22:58 +00001346 bool isVarArg = Params.size() && Params.back() == Type::VoidTy;
1347 if (isVarArg) Params.pop_back();
1348
Reid Spencer7b5d4662007-04-09 06:16:21 +00001349 ParamAttrsList *ActualAttrs = 0;
1350 if (!Attrs.empty())
Christopher Lamb5c104242007-04-22 20:09:11 +00001351 ActualAttrs = ParamAttrsList::get(Attrs);
Reid Spencer7b5d4662007-04-09 06:16:21 +00001352 FunctionType *FT = FunctionType::get(*$1, Params, isVarArg, ActualAttrs);
Anton Korobeynikov7f705592007-01-12 19:20:47 +00001353 delete $3; // Delete the argument list
Reid Spencer14310612006-12-31 05:40:51 +00001354 delete $1; // Delete the return type handle
1355 $$ = new PATypeHolder(HandleUpRefs(FT));
Reid Spencer61c83e02006-08-18 08:43:06 +00001356 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001357 }
Reid Spencer218ded22007-01-05 17:07:23 +00001358 | VOID '(' ArgTypeListI ')' OptFuncAttrs {
Reid Spencer14310612006-12-31 05:40:51 +00001359 std::vector<const Type*> Params;
Christopher Lamb5c104242007-04-22 20:09:11 +00001360 ParamAttrsVector Attrs;
1361 if ($5 != ParamAttr::None) {
1362 ParamAttrsWithIndex X; X.index = 0; X.attrs = $5;
1363 Attrs.push_back(X);
1364 }
Reid Spencer7b5d4662007-04-09 06:16:21 +00001365 TypeWithAttrsList::iterator I = $3->begin(), E = $3->end();
1366 unsigned index = 1;
1367 for ( ; I != E; ++I, ++index) {
Reid Spencer66728ef2007-03-20 01:13:36 +00001368 const Type* Ty = I->Ty->get();
Reid Spencer66728ef2007-03-20 01:13:36 +00001369 Params.push_back(Ty);
1370 if (Ty != Type::VoidTy)
Christopher Lamb5c104242007-04-22 20:09:11 +00001371 if (I->Attrs != ParamAttr::None) {
1372 ParamAttrsWithIndex X; X.index = index; X.attrs = I->Attrs;
1373 Attrs.push_back(X);
1374 }
Reid Spencer14310612006-12-31 05:40:51 +00001375 }
1376 bool isVarArg = Params.size() && Params.back() == Type::VoidTy;
1377 if (isVarArg) Params.pop_back();
1378
Reid Spencer7b5d4662007-04-09 06:16:21 +00001379 ParamAttrsList *ActualAttrs = 0;
1380 if (!Attrs.empty())
Christopher Lamb5c104242007-04-22 20:09:11 +00001381 ActualAttrs = ParamAttrsList::get(Attrs);
Reid Spencer7b5d4662007-04-09 06:16:21 +00001382
1383 FunctionType *FT = FunctionType::get($1, Params, isVarArg, ActualAttrs);
Reid Spencer218ded22007-01-05 17:07:23 +00001384 delete $3; // Delete the argument list
Reid Spencer14310612006-12-31 05:40:51 +00001385 $$ = new PATypeHolder(HandleUpRefs(FT));
1386 CHECK_FOR_ERROR
1387 }
1388
1389 | '[' EUINT64VAL 'x' Types ']' { // Sized array type?
Reid Spencera132e042006-12-03 05:46:11 +00001390 $$ = new PATypeHolder(HandleUpRefs(ArrayType::get(*$4, (unsigned)$2)));
1391 delete $4;
Reid Spencer61c83e02006-08-18 08:43:06 +00001392 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001393 }
Chris Lattner32980692007-02-19 07:44:24 +00001394 | '<' EUINT64VAL 'x' Types '>' { // Vector type?
Reid Spencera132e042006-12-03 05:46:11 +00001395 const llvm::Type* ElemTy = $4->get();
1396 if ((unsigned)$2 != $2)
1397 GEN_ERROR("Unsigned result not equal to signed result");
Chris Lattner42a75512007-01-15 02:27:26 +00001398 if (!ElemTy->isFloatingPoint() && !ElemTy->isInteger())
Reid Spencer9d6565a2007-02-15 02:26:10 +00001399 GEN_ERROR("Element type of a VectorType must be primitive");
Reid Spencera132e042006-12-03 05:46:11 +00001400 if (!isPowerOf2_32($2))
Reid Spencerb5334b02007-02-05 10:18:06 +00001401 GEN_ERROR("Vector length should be a power of 2");
Reid Spencer9d6565a2007-02-15 02:26:10 +00001402 $$ = new PATypeHolder(HandleUpRefs(VectorType::get(*$4, (unsigned)$2)));
Reid Spencera132e042006-12-03 05:46:11 +00001403 delete $4;
1404 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001405 }
1406 | '{' TypeListI '}' { // Structure type?
1407 std::vector<const Type*> Elements;
Reid Spencera132e042006-12-03 05:46:11 +00001408 for (std::list<llvm::PATypeHolder>::iterator I = $2->begin(),
Chris Lattner58af2a12006-02-15 07:22:58 +00001409 E = $2->end(); I != E; ++I)
Reid Spencera132e042006-12-03 05:46:11 +00001410 Elements.push_back(*I);
Chris Lattner58af2a12006-02-15 07:22:58 +00001411
Reid Spencera132e042006-12-03 05:46:11 +00001412 $$ = new PATypeHolder(HandleUpRefs(StructType::get(Elements)));
Chris Lattner58af2a12006-02-15 07:22:58 +00001413 delete $2;
Reid Spencer61c83e02006-08-18 08:43:06 +00001414 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001415 }
1416 | '{' '}' { // Empty structure type?
Reid Spencera132e042006-12-03 05:46:11 +00001417 $$ = new PATypeHolder(StructType::get(std::vector<const Type*>()));
Reid Spencer61c83e02006-08-18 08:43:06 +00001418 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001419 }
Andrew Lenharth6353e052006-12-08 18:07:09 +00001420 | '<' '{' TypeListI '}' '>' {
1421 std::vector<const Type*> Elements;
1422 for (std::list<llvm::PATypeHolder>::iterator I = $3->begin(),
1423 E = $3->end(); I != E; ++I)
1424 Elements.push_back(*I);
1425
1426 $$ = new PATypeHolder(HandleUpRefs(StructType::get(Elements, true)));
1427 delete $3;
1428 CHECK_FOR_ERROR
1429 }
1430 | '<' '{' '}' '>' { // Empty structure type?
1431 $$ = new PATypeHolder(StructType::get(std::vector<const Type*>(), true));
1432 CHECK_FOR_ERROR
1433 }
Reid Spencer14310612006-12-31 05:40:51 +00001434 ;
1435
1436ArgType
1437 : Types OptParamAttrs {
1438 $$.Ty = $1;
1439 $$.Attrs = $2;
1440 }
1441 ;
1442
Reid Spencer218ded22007-01-05 17:07:23 +00001443ResultTypes
1444 : Types {
Reid Spencer14310612006-12-31 05:40:51 +00001445 if (!UpRefs.empty())
1446 GEN_ERROR("Invalid upreference in type: " + (*$1)->getDescription());
1447 if (!(*$1)->isFirstClassType())
Reid Spencerb5334b02007-02-05 10:18:06 +00001448 GEN_ERROR("LLVM functions cannot return aggregate types");
Reid Spencer218ded22007-01-05 17:07:23 +00001449 $$ = $1;
Reid Spencer14310612006-12-31 05:40:51 +00001450 }
Reid Spencer218ded22007-01-05 17:07:23 +00001451 | VOID {
1452 $$ = new PATypeHolder(Type::VoidTy);
Reid Spencer14310612006-12-31 05:40:51 +00001453 }
1454 ;
1455
1456ArgTypeList : ArgType {
1457 $$ = new TypeWithAttrsList();
1458 $$->push_back($1);
1459 CHECK_FOR_ERROR
1460 }
1461 | ArgTypeList ',' ArgType {
1462 ($$=$1)->push_back($3);
1463 CHECK_FOR_ERROR
1464 }
1465 ;
1466
1467ArgTypeListI
1468 : ArgTypeList
1469 | ArgTypeList ',' DOTDOTDOT {
1470 $$=$1;
Reid Spencer18da0722007-04-11 02:44:20 +00001471 TypeWithAttrs TWA; TWA.Attrs = ParamAttr::None;
Reid Spencer14310612006-12-31 05:40:51 +00001472 TWA.Ty = new PATypeHolder(Type::VoidTy);
1473 $$->push_back(TWA);
1474 CHECK_FOR_ERROR
1475 }
1476 | DOTDOTDOT {
1477 $$ = new TypeWithAttrsList;
Reid Spencer18da0722007-04-11 02:44:20 +00001478 TypeWithAttrs TWA; TWA.Attrs = ParamAttr::None;
Reid Spencer14310612006-12-31 05:40:51 +00001479 TWA.Ty = new PATypeHolder(Type::VoidTy);
1480 $$->push_back(TWA);
1481 CHECK_FOR_ERROR
1482 }
1483 | /*empty*/ {
1484 $$ = new TypeWithAttrsList();
Reid Spencer61c83e02006-08-18 08:43:06 +00001485 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001486 };
1487
1488// TypeList - Used for struct declarations and as a basis for function type
1489// declaration type lists
1490//
Reid Spencer14310612006-12-31 05:40:51 +00001491TypeListI : Types {
Reid Spencera132e042006-12-03 05:46:11 +00001492 $$ = new std::list<PATypeHolder>();
Reid Spencer66728ef2007-03-20 01:13:36 +00001493 $$->push_back(*$1);
1494 delete $1;
Reid Spencer61c83e02006-08-18 08:43:06 +00001495 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001496 }
Reid Spencer14310612006-12-31 05:40:51 +00001497 | TypeListI ',' Types {
Reid Spencer66728ef2007-03-20 01:13:36 +00001498 ($$=$1)->push_back(*$3);
1499 delete $3;
Reid Spencer61c83e02006-08-18 08:43:06 +00001500 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001501 };
1502
Chris Lattner58af2a12006-02-15 07:22:58 +00001503// ConstVal - The various declarations that go into the constant pool. This
1504// production is used ONLY to represent constants that show up AFTER a 'const',
1505// 'constant' or 'global' token at global scope. Constants that can be inlined
1506// into other expressions (such as integers and constexprs) are handled by the
1507// ResolvedVal, ValueRef and ConstValueRef productions.
1508//
1509ConstVal: Types '[' ConstVector ']' { // Nonempty unsized arr
Reid Spencer14310612006-12-31 05:40:51 +00001510 if (!UpRefs.empty())
1511 GEN_ERROR("Invalid upreference in type: " + (*$1)->getDescription());
Reid Spencera132e042006-12-03 05:46:11 +00001512 const ArrayType *ATy = dyn_cast<ArrayType>($1->get());
Chris Lattner58af2a12006-02-15 07:22:58 +00001513 if (ATy == 0)
Reid Spencer61c83e02006-08-18 08:43:06 +00001514 GEN_ERROR("Cannot make array constant with type: '" +
Reid Spencerb5334b02007-02-05 10:18:06 +00001515 (*$1)->getDescription() + "'");
Chris Lattner58af2a12006-02-15 07:22:58 +00001516 const Type *ETy = ATy->getElementType();
1517 int NumElements = ATy->getNumElements();
1518
1519 // Verify that we have the correct size...
1520 if (NumElements != -1 && NumElements != (int)$3->size())
Reid Spencer61c83e02006-08-18 08:43:06 +00001521 GEN_ERROR("Type mismatch: constant sized array initialized with " +
Chris Lattner58af2a12006-02-15 07:22:58 +00001522 utostr($3->size()) + " arguments, but has size of " +
Reid Spencerb5334b02007-02-05 10:18:06 +00001523 itostr(NumElements) + "");
Chris Lattner58af2a12006-02-15 07:22:58 +00001524
1525 // Verify all elements are correct type!
1526 for (unsigned i = 0; i < $3->size(); i++) {
Reid Spencera132e042006-12-03 05:46:11 +00001527 if (ETy != (*$3)[i]->getType())
Reid Spencer61c83e02006-08-18 08:43:06 +00001528 GEN_ERROR("Element #" + utostr(i) + " is not of type '" +
Chris Lattner58af2a12006-02-15 07:22:58 +00001529 ETy->getDescription() +"' as required!\nIt is of type '"+
Reid Spencera132e042006-12-03 05:46:11 +00001530 (*$3)[i]->getType()->getDescription() + "'.");
Chris Lattner58af2a12006-02-15 07:22:58 +00001531 }
1532
Reid Spencera132e042006-12-03 05:46:11 +00001533 $$ = ConstantArray::get(ATy, *$3);
1534 delete $1; delete $3;
Reid Spencer61c83e02006-08-18 08:43:06 +00001535 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001536 }
1537 | Types '[' ']' {
Reid Spencer14310612006-12-31 05:40:51 +00001538 if (!UpRefs.empty())
1539 GEN_ERROR("Invalid upreference in type: " + (*$1)->getDescription());
Reid Spencera132e042006-12-03 05:46:11 +00001540 const ArrayType *ATy = dyn_cast<ArrayType>($1->get());
Chris Lattner58af2a12006-02-15 07:22:58 +00001541 if (ATy == 0)
Reid Spencer61c83e02006-08-18 08:43:06 +00001542 GEN_ERROR("Cannot make array constant with type: '" +
Reid Spencerb5334b02007-02-05 10:18:06 +00001543 (*$1)->getDescription() + "'");
Chris Lattner58af2a12006-02-15 07:22:58 +00001544
1545 int NumElements = ATy->getNumElements();
1546 if (NumElements != -1 && NumElements != 0)
Reid Spencer61c83e02006-08-18 08:43:06 +00001547 GEN_ERROR("Type mismatch: constant sized array initialized with 0"
Reid Spencerb5334b02007-02-05 10:18:06 +00001548 " arguments, but has size of " + itostr(NumElements) +"");
Reid Spencera132e042006-12-03 05:46:11 +00001549 $$ = ConstantArray::get(ATy, std::vector<Constant*>());
1550 delete $1;
Reid Spencer61c83e02006-08-18 08:43:06 +00001551 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001552 }
1553 | Types 'c' STRINGCONSTANT {
Reid Spencer14310612006-12-31 05:40:51 +00001554 if (!UpRefs.empty())
1555 GEN_ERROR("Invalid upreference in type: " + (*$1)->getDescription());
Reid Spencera132e042006-12-03 05:46:11 +00001556 const ArrayType *ATy = dyn_cast<ArrayType>($1->get());
Chris Lattner58af2a12006-02-15 07:22:58 +00001557 if (ATy == 0)
Reid Spencer61c83e02006-08-18 08:43:06 +00001558 GEN_ERROR("Cannot make array constant with type: '" +
Reid Spencerb5334b02007-02-05 10:18:06 +00001559 (*$1)->getDescription() + "'");
Chris Lattner58af2a12006-02-15 07:22:58 +00001560
1561 int NumElements = ATy->getNumElements();
1562 const Type *ETy = ATy->getElementType();
1563 char *EndStr = UnEscapeLexed($3, true);
1564 if (NumElements != -1 && NumElements != (EndStr-$3))
Reid Spencer61c83e02006-08-18 08:43:06 +00001565 GEN_ERROR("Can't build string constant of size " +
Chris Lattner58af2a12006-02-15 07:22:58 +00001566 itostr((int)(EndStr-$3)) +
Reid Spencerb5334b02007-02-05 10:18:06 +00001567 " when array has size " + itostr(NumElements) + "");
Chris Lattner58af2a12006-02-15 07:22:58 +00001568 std::vector<Constant*> Vals;
Reid Spencer14310612006-12-31 05:40:51 +00001569 if (ETy == Type::Int8Ty) {
Chris Lattner58af2a12006-02-15 07:22:58 +00001570 for (unsigned char *C = (unsigned char *)$3;
Reid Spencer14310612006-12-31 05:40:51 +00001571 C != (unsigned char*)EndStr; ++C)
1572 Vals.push_back(ConstantInt::get(ETy, *C));
Chris Lattner58af2a12006-02-15 07:22:58 +00001573 } else {
1574 free($3);
Reid Spencerb5334b02007-02-05 10:18:06 +00001575 GEN_ERROR("Cannot build string arrays of non byte sized elements");
Chris Lattner58af2a12006-02-15 07:22:58 +00001576 }
1577 free($3);
Reid Spencera132e042006-12-03 05:46:11 +00001578 $$ = ConstantArray::get(ATy, Vals);
1579 delete $1;
Reid Spencer61c83e02006-08-18 08:43:06 +00001580 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001581 }
1582 | Types '<' ConstVector '>' { // Nonempty unsized arr
Reid Spencer14310612006-12-31 05:40:51 +00001583 if (!UpRefs.empty())
1584 GEN_ERROR("Invalid upreference in type: " + (*$1)->getDescription());
Reid Spencer9d6565a2007-02-15 02:26:10 +00001585 const VectorType *PTy = dyn_cast<VectorType>($1->get());
Chris Lattner58af2a12006-02-15 07:22:58 +00001586 if (PTy == 0)
Reid Spencer61c83e02006-08-18 08:43:06 +00001587 GEN_ERROR("Cannot make packed constant with type: '" +
Reid Spencerb5334b02007-02-05 10:18:06 +00001588 (*$1)->getDescription() + "'");
Chris Lattner58af2a12006-02-15 07:22:58 +00001589 const Type *ETy = PTy->getElementType();
1590 int NumElements = PTy->getNumElements();
1591
1592 // Verify that we have the correct size...
1593 if (NumElements != -1 && NumElements != (int)$3->size())
Reid Spencer61c83e02006-08-18 08:43:06 +00001594 GEN_ERROR("Type mismatch: constant sized packed initialized with " +
Chris Lattner58af2a12006-02-15 07:22:58 +00001595 utostr($3->size()) + " arguments, but has size of " +
Reid Spencerb5334b02007-02-05 10:18:06 +00001596 itostr(NumElements) + "");
Chris Lattner58af2a12006-02-15 07:22:58 +00001597
1598 // Verify all elements are correct type!
1599 for (unsigned i = 0; i < $3->size(); i++) {
Reid Spencera132e042006-12-03 05:46:11 +00001600 if (ETy != (*$3)[i]->getType())
Reid Spencer61c83e02006-08-18 08:43:06 +00001601 GEN_ERROR("Element #" + utostr(i) + " is not of type '" +
Chris Lattner58af2a12006-02-15 07:22:58 +00001602 ETy->getDescription() +"' as required!\nIt is of type '"+
Reid Spencera132e042006-12-03 05:46:11 +00001603 (*$3)[i]->getType()->getDescription() + "'.");
Chris Lattner58af2a12006-02-15 07:22:58 +00001604 }
1605
Reid Spencer9d6565a2007-02-15 02:26:10 +00001606 $$ = ConstantVector::get(PTy, *$3);
Reid Spencera132e042006-12-03 05:46:11 +00001607 delete $1; delete $3;
Reid Spencer61c83e02006-08-18 08:43:06 +00001608 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001609 }
1610 | Types '{' ConstVector '}' {
Reid Spencera132e042006-12-03 05:46:11 +00001611 const StructType *STy = dyn_cast<StructType>($1->get());
Chris Lattner58af2a12006-02-15 07:22:58 +00001612 if (STy == 0)
Reid Spencer61c83e02006-08-18 08:43:06 +00001613 GEN_ERROR("Cannot make struct constant with type: '" +
Reid Spencerb5334b02007-02-05 10:18:06 +00001614 (*$1)->getDescription() + "'");
Chris Lattner58af2a12006-02-15 07:22:58 +00001615
1616 if ($3->size() != STy->getNumContainedTypes())
Reid Spencerb5334b02007-02-05 10:18:06 +00001617 GEN_ERROR("Illegal number of initializers for structure type");
Chris Lattner58af2a12006-02-15 07:22:58 +00001618
1619 // Check to ensure that constants are compatible with the type initializer!
1620 for (unsigned i = 0, e = $3->size(); i != e; ++i)
Reid Spencera132e042006-12-03 05:46:11 +00001621 if ((*$3)[i]->getType() != STy->getElementType(i))
Reid Spencer61c83e02006-08-18 08:43:06 +00001622 GEN_ERROR("Expected type '" +
Chris Lattner58af2a12006-02-15 07:22:58 +00001623 STy->getElementType(i)->getDescription() +
1624 "' for element #" + utostr(i) +
Reid Spencerb5334b02007-02-05 10:18:06 +00001625 " of structure initializer");
Chris Lattner58af2a12006-02-15 07:22:58 +00001626
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00001627 // Check to ensure that Type is not packed
1628 if (STy->isPacked())
Chris Lattner6cdc6822007-04-26 05:31:05 +00001629 GEN_ERROR("Unpacked Initializer to vector type '" +
1630 STy->getDescription() + "'");
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00001631
Reid Spencera132e042006-12-03 05:46:11 +00001632 $$ = ConstantStruct::get(STy, *$3);
1633 delete $1; delete $3;
Reid Spencer61c83e02006-08-18 08:43:06 +00001634 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001635 }
1636 | Types '{' '}' {
Reid Spencer14310612006-12-31 05:40:51 +00001637 if (!UpRefs.empty())
1638 GEN_ERROR("Invalid upreference in type: " + (*$1)->getDescription());
Reid Spencera132e042006-12-03 05:46:11 +00001639 const StructType *STy = dyn_cast<StructType>($1->get());
Chris Lattner58af2a12006-02-15 07:22:58 +00001640 if (STy == 0)
Reid Spencer61c83e02006-08-18 08:43:06 +00001641 GEN_ERROR("Cannot make struct constant with type: '" +
Reid Spencerb5334b02007-02-05 10:18:06 +00001642 (*$1)->getDescription() + "'");
Chris Lattner58af2a12006-02-15 07:22:58 +00001643
1644 if (STy->getNumContainedTypes() != 0)
Reid Spencerb5334b02007-02-05 10:18:06 +00001645 GEN_ERROR("Illegal number of initializers for structure type");
Chris Lattner58af2a12006-02-15 07:22:58 +00001646
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00001647 // Check to ensure that Type is not packed
1648 if (STy->isPacked())
Chris Lattner6cdc6822007-04-26 05:31:05 +00001649 GEN_ERROR("Unpacked Initializer to vector type '" +
1650 STy->getDescription() + "'");
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00001651
1652 $$ = ConstantStruct::get(STy, std::vector<Constant*>());
1653 delete $1;
1654 CHECK_FOR_ERROR
1655 }
1656 | Types '<' '{' ConstVector '}' '>' {
1657 const StructType *STy = dyn_cast<StructType>($1->get());
1658 if (STy == 0)
1659 GEN_ERROR("Cannot make struct constant with type: '" +
Reid Spencerb5334b02007-02-05 10:18:06 +00001660 (*$1)->getDescription() + "'");
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00001661
1662 if ($4->size() != STy->getNumContainedTypes())
Reid Spencerb5334b02007-02-05 10:18:06 +00001663 GEN_ERROR("Illegal number of initializers for structure type");
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00001664
1665 // Check to ensure that constants are compatible with the type initializer!
1666 for (unsigned i = 0, e = $4->size(); i != e; ++i)
1667 if ((*$4)[i]->getType() != STy->getElementType(i))
1668 GEN_ERROR("Expected type '" +
1669 STy->getElementType(i)->getDescription() +
1670 "' for element #" + utostr(i) +
Reid Spencerb5334b02007-02-05 10:18:06 +00001671 " of structure initializer");
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00001672
1673 // Check to ensure that Type is packed
1674 if (!STy->isPacked())
Chris Lattner32980692007-02-19 07:44:24 +00001675 GEN_ERROR("Vector initializer to non-vector type '" +
1676 STy->getDescription() + "'");
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00001677
1678 $$ = ConstantStruct::get(STy, *$4);
1679 delete $1; delete $4;
1680 CHECK_FOR_ERROR
1681 }
1682 | Types '<' '{' '}' '>' {
1683 if (!UpRefs.empty())
1684 GEN_ERROR("Invalid upreference in type: " + (*$1)->getDescription());
1685 const StructType *STy = dyn_cast<StructType>($1->get());
1686 if (STy == 0)
1687 GEN_ERROR("Cannot make struct constant with type: '" +
Reid Spencerb5334b02007-02-05 10:18:06 +00001688 (*$1)->getDescription() + "'");
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00001689
1690 if (STy->getNumContainedTypes() != 0)
Reid Spencerb5334b02007-02-05 10:18:06 +00001691 GEN_ERROR("Illegal number of initializers for structure type");
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00001692
1693 // Check to ensure that Type is packed
1694 if (!STy->isPacked())
Chris Lattner32980692007-02-19 07:44:24 +00001695 GEN_ERROR("Vector initializer to non-vector type '" +
1696 STy->getDescription() + "'");
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00001697
Reid Spencera132e042006-12-03 05:46:11 +00001698 $$ = ConstantStruct::get(STy, std::vector<Constant*>());
1699 delete $1;
Reid Spencer61c83e02006-08-18 08:43:06 +00001700 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001701 }
1702 | Types NULL_TOK {
Reid Spencer14310612006-12-31 05:40:51 +00001703 if (!UpRefs.empty())
1704 GEN_ERROR("Invalid upreference in type: " + (*$1)->getDescription());
Reid Spencera132e042006-12-03 05:46:11 +00001705 const PointerType *PTy = dyn_cast<PointerType>($1->get());
Chris Lattner58af2a12006-02-15 07:22:58 +00001706 if (PTy == 0)
Reid Spencer61c83e02006-08-18 08:43:06 +00001707 GEN_ERROR("Cannot make null pointer constant with type: '" +
Reid Spencerb5334b02007-02-05 10:18:06 +00001708 (*$1)->getDescription() + "'");
Chris Lattner58af2a12006-02-15 07:22:58 +00001709
Reid Spencera132e042006-12-03 05:46:11 +00001710 $$ = ConstantPointerNull::get(PTy);
1711 delete $1;
Reid Spencer61c83e02006-08-18 08:43:06 +00001712 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001713 }
1714 | Types UNDEF {
Reid Spencer14310612006-12-31 05:40:51 +00001715 if (!UpRefs.empty())
1716 GEN_ERROR("Invalid upreference in type: " + (*$1)->getDescription());
Reid Spencera132e042006-12-03 05:46:11 +00001717 $$ = UndefValue::get($1->get());
1718 delete $1;
Reid Spencer61c83e02006-08-18 08:43:06 +00001719 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001720 }
1721 | Types SymbolicValueRef {
Reid Spencer14310612006-12-31 05:40:51 +00001722 if (!UpRefs.empty())
1723 GEN_ERROR("Invalid upreference in type: " + (*$1)->getDescription());
Reid Spencera132e042006-12-03 05:46:11 +00001724 const PointerType *Ty = dyn_cast<PointerType>($1->get());
Chris Lattner58af2a12006-02-15 07:22:58 +00001725 if (Ty == 0)
Reid Spencerb5334b02007-02-05 10:18:06 +00001726 GEN_ERROR("Global const reference must be a pointer type");
Chris Lattner58af2a12006-02-15 07:22:58 +00001727
1728 // ConstExprs can exist in the body of a function, thus creating
1729 // GlobalValues whenever they refer to a variable. Because we are in
Reid Spencer93c40032007-03-19 18:40:50 +00001730 // the context of a function, getExistingVal will search the functions
Chris Lattner58af2a12006-02-15 07:22:58 +00001731 // symbol table instead of the module symbol table for the global symbol,
1732 // which throws things all off. To get around this, we just tell
Reid Spencer93c40032007-03-19 18:40:50 +00001733 // getExistingVal that we are at global scope here.
Chris Lattner58af2a12006-02-15 07:22:58 +00001734 //
1735 Function *SavedCurFn = CurFun.CurrentFunction;
1736 CurFun.CurrentFunction = 0;
1737
Reid Spencer93c40032007-03-19 18:40:50 +00001738 Value *V = getExistingVal(Ty, $2);
Reid Spencer5b7e7532006-09-28 19:28:24 +00001739 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001740
1741 CurFun.CurrentFunction = SavedCurFn;
1742
1743 // If this is an initializer for a constant pointer, which is referencing a
1744 // (currently) undefined variable, create a stub now that shall be replaced
1745 // in the future with the right type of variable.
1746 //
1747 if (V == 0) {
Reid Spencera9720f52007-02-05 17:04:00 +00001748 assert(isa<PointerType>(Ty) && "Globals may only be used as pointers!");
Chris Lattner58af2a12006-02-15 07:22:58 +00001749 const PointerType *PT = cast<PointerType>(Ty);
1750
1751 // First check to see if the forward references value is already created!
1752 PerModuleInfo::GlobalRefsType::iterator I =
1753 CurModule.GlobalRefs.find(std::make_pair(PT, $2));
1754
1755 if (I != CurModule.GlobalRefs.end()) {
1756 V = I->second; // Placeholder already exists, use it...
1757 $2.destroy();
1758 } else {
1759 std::string Name;
Reid Spencer41dff5e2007-01-26 08:05:27 +00001760 if ($2.Type == ValID::GlobalName)
1761 Name = $2.Name;
1762 else if ($2.Type != ValID::GlobalID)
1763 GEN_ERROR("Invalid reference to global");
Chris Lattner58af2a12006-02-15 07:22:58 +00001764
1765 // Create the forward referenced global.
1766 GlobalValue *GV;
1767 if (const FunctionType *FTy =
1768 dyn_cast<FunctionType>(PT->getElementType())) {
Chris Lattner6cdc6822007-04-26 05:31:05 +00001769 GV = new Function(FTy, GlobalValue::ExternalWeakLinkage, Name,
Chris Lattner58af2a12006-02-15 07:22:58 +00001770 CurModule.CurrentModule);
1771 } else {
1772 GV = new GlobalVariable(PT->getElementType(), false,
Chris Lattner6cdc6822007-04-26 05:31:05 +00001773 GlobalValue::ExternalWeakLinkage, 0,
Chris Lattner58af2a12006-02-15 07:22:58 +00001774 Name, CurModule.CurrentModule);
1775 }
1776
1777 // Keep track of the fact that we have a forward ref to recycle it
1778 CurModule.GlobalRefs.insert(std::make_pair(std::make_pair(PT, $2), GV));
1779 V = GV;
1780 }
1781 }
1782
Reid Spencera132e042006-12-03 05:46:11 +00001783 $$ = cast<GlobalValue>(V);
1784 delete $1; // Free the type handle
Reid Spencer61c83e02006-08-18 08:43:06 +00001785 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001786 }
1787 | Types ConstExpr {
Reid Spencer14310612006-12-31 05:40:51 +00001788 if (!UpRefs.empty())
1789 GEN_ERROR("Invalid upreference in type: " + (*$1)->getDescription());
Reid Spencera132e042006-12-03 05:46:11 +00001790 if ($1->get() != $2->getType())
Reid Spencere68853b2007-01-04 00:06:14 +00001791 GEN_ERROR("Mismatched types for constant expression: " +
1792 (*$1)->getDescription() + " and " + $2->getType()->getDescription());
Chris Lattner58af2a12006-02-15 07:22:58 +00001793 $$ = $2;
Reid Spencera132e042006-12-03 05:46:11 +00001794 delete $1;
Reid Spencer61c83e02006-08-18 08:43:06 +00001795 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001796 }
1797 | Types ZEROINITIALIZER {
Reid Spencer14310612006-12-31 05:40:51 +00001798 if (!UpRefs.empty())
1799 GEN_ERROR("Invalid upreference in type: " + (*$1)->getDescription());
Reid Spencera132e042006-12-03 05:46:11 +00001800 const Type *Ty = $1->get();
Chris Lattner58af2a12006-02-15 07:22:58 +00001801 if (isa<FunctionType>(Ty) || Ty == Type::LabelTy || isa<OpaqueType>(Ty))
Reid Spencerb5334b02007-02-05 10:18:06 +00001802 GEN_ERROR("Cannot create a null initialized value of this type");
Reid Spencera132e042006-12-03 05:46:11 +00001803 $$ = Constant::getNullValue(Ty);
1804 delete $1;
Reid Spencer61c83e02006-08-18 08:43:06 +00001805 CHECK_FOR_ERROR
Reid Spencera132e042006-12-03 05:46:11 +00001806 }
Reid Spencer14310612006-12-31 05:40:51 +00001807 | IntType ESINT64VAL { // integral constants
Reid Spencere4d87aa2006-12-23 06:05:41 +00001808 if (!ConstantInt::isValueValidForType($1, $2))
Reid Spencerb5334b02007-02-05 10:18:06 +00001809 GEN_ERROR("Constant value doesn't fit in type");
Reid Spencer49d273e2007-03-19 20:40:51 +00001810 $$ = ConstantInt::get($1, $2, true);
Reid Spencer38c91a92007-02-28 02:24:54 +00001811 CHECK_FOR_ERROR
1812 }
1813 | IntType ESAPINTVAL { // arbitrary precision integer constants
1814 uint32_t BitWidth = cast<IntegerType>($1)->getBitWidth();
1815 if ($2->getBitWidth() > BitWidth) {
1816 GEN_ERROR("Constant value does not fit in type");
Reid Spencer10794272007-03-01 19:41:47 +00001817 }
1818 $2->sextOrTrunc(BitWidth);
1819 $$ = ConstantInt::get(*$2);
Reid Spencer38c91a92007-02-28 02:24:54 +00001820 delete $2;
Reid Spencere4d87aa2006-12-23 06:05:41 +00001821 CHECK_FOR_ERROR
1822 }
Reid Spencer14310612006-12-31 05:40:51 +00001823 | IntType EUINT64VAL { // integral constants
Reid Spencere4d87aa2006-12-23 06:05:41 +00001824 if (!ConstantInt::isValueValidForType($1, $2))
Reid Spencerb5334b02007-02-05 10:18:06 +00001825 GEN_ERROR("Constant value doesn't fit in type");
Reid Spencer49d273e2007-03-19 20:40:51 +00001826 $$ = ConstantInt::get($1, $2, false);
Reid Spencer38c91a92007-02-28 02:24:54 +00001827 CHECK_FOR_ERROR
1828 }
1829 | IntType EUAPINTVAL { // arbitrary precision integer constants
1830 uint32_t BitWidth = cast<IntegerType>($1)->getBitWidth();
1831 if ($2->getBitWidth() > BitWidth) {
1832 GEN_ERROR("Constant value does not fit in type");
Reid Spencer10794272007-03-01 19:41:47 +00001833 }
1834 $2->zextOrTrunc(BitWidth);
1835 $$ = ConstantInt::get(*$2);
Reid Spencer38c91a92007-02-28 02:24:54 +00001836 delete $2;
Reid Spencere4d87aa2006-12-23 06:05:41 +00001837 CHECK_FOR_ERROR
1838 }
Reid Spencer6f407902007-01-13 05:00:46 +00001839 | INTTYPE TRUETOK { // Boolean constants
1840 assert(cast<IntegerType>($1)->getBitWidth() == 1 && "Not Bool?");
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00001841 $$ = ConstantInt::getTrue();
Reid Spencer61c83e02006-08-18 08:43:06 +00001842 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001843 }
Reid Spencer6f407902007-01-13 05:00:46 +00001844 | INTTYPE FALSETOK { // Boolean constants
1845 assert(cast<IntegerType>($1)->getBitWidth() == 1 && "Not Bool?");
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00001846 $$ = ConstantInt::getFalse();
Reid Spencer61c83e02006-08-18 08:43:06 +00001847 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001848 }
1849 | FPType FPVAL { // Float & Double constants
Reid Spencera132e042006-12-03 05:46:11 +00001850 if (!ConstantFP::isValueValidForType($1, $2))
Reid Spencerb5334b02007-02-05 10:18:06 +00001851 GEN_ERROR("Floating point constant invalid for type");
Reid Spencera132e042006-12-03 05:46:11 +00001852 $$ = ConstantFP::get($1, $2);
Reid Spencer61c83e02006-08-18 08:43:06 +00001853 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001854 };
1855
1856
Reid Spencer3da59db2006-11-27 01:05:10 +00001857ConstExpr: CastOps '(' ConstVal TO Types ')' {
Reid Spencer14310612006-12-31 05:40:51 +00001858 if (!UpRefs.empty())
1859 GEN_ERROR("Invalid upreference in type: " + (*$5)->getDescription());
Reid Spencera132e042006-12-03 05:46:11 +00001860 Constant *Val = $3;
Reid Spencerb0fcf8f2007-01-17 02:48:45 +00001861 const Type *DestTy = $5->get();
1862 if (!CastInst::castIsValid($1, $3, DestTy))
1863 GEN_ERROR("invalid cast opcode for cast from '" +
1864 Val->getType()->getDescription() + "' to '" +
Reid Spencerb5334b02007-02-05 10:18:06 +00001865 DestTy->getDescription() + "'");
Reid Spencerb0fcf8f2007-01-17 02:48:45 +00001866 $$ = ConstantExpr::getCast($1, $3, DestTy);
Reid Spencera132e042006-12-03 05:46:11 +00001867 delete $5;
Chris Lattner58af2a12006-02-15 07:22:58 +00001868 }
1869 | GETELEMENTPTR '(' ConstVal IndexList ')' {
Reid Spencera132e042006-12-03 05:46:11 +00001870 if (!isa<PointerType>($3->getType()))
Reid Spencerb5334b02007-02-05 10:18:06 +00001871 GEN_ERROR("GetElementPtr requires a pointer operand");
Chris Lattner58af2a12006-02-15 07:22:58 +00001872
Reid Spencera132e042006-12-03 05:46:11 +00001873 const Type *IdxTy =
Chris Lattner7d9801d2007-02-13 00:58:01 +00001874 GetElementPtrInst::getIndexedType($3->getType(), &(*$4)[0], $4->size(),
1875 true);
Reid Spencera132e042006-12-03 05:46:11 +00001876 if (!IdxTy)
Reid Spencerb5334b02007-02-05 10:18:06 +00001877 GEN_ERROR("Index list invalid for constant getelementptr");
Reid Spencera132e042006-12-03 05:46:11 +00001878
Chris Lattnerf7469af2007-01-31 04:44:08 +00001879 SmallVector<Constant*, 8> IdxVec;
Reid Spencera132e042006-12-03 05:46:11 +00001880 for (unsigned i = 0, e = $4->size(); i != e; ++i)
1881 if (Constant *C = dyn_cast<Constant>((*$4)[i]))
Chris Lattner58af2a12006-02-15 07:22:58 +00001882 IdxVec.push_back(C);
1883 else
Reid Spencerb5334b02007-02-05 10:18:06 +00001884 GEN_ERROR("Indices to constant getelementptr must be constants");
Chris Lattner58af2a12006-02-15 07:22:58 +00001885
1886 delete $4;
1887
Chris Lattnerf7469af2007-01-31 04:44:08 +00001888 $$ = ConstantExpr::getGetElementPtr($3, &IdxVec[0], IdxVec.size());
Reid Spencer61c83e02006-08-18 08:43:06 +00001889 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001890 }
1891 | SELECT '(' ConstVal ',' ConstVal ',' ConstVal ')' {
Reid Spencer4fe16d62007-01-11 18:21:29 +00001892 if ($3->getType() != Type::Int1Ty)
Reid Spencerb5334b02007-02-05 10:18:06 +00001893 GEN_ERROR("Select condition must be of boolean type");
Reid Spencera132e042006-12-03 05:46:11 +00001894 if ($5->getType() != $7->getType())
Reid Spencerb5334b02007-02-05 10:18:06 +00001895 GEN_ERROR("Select operand types must match");
Reid Spencera132e042006-12-03 05:46:11 +00001896 $$ = ConstantExpr::getSelect($3, $5, $7);
Reid Spencer61c83e02006-08-18 08:43:06 +00001897 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001898 }
1899 | ArithmeticOps '(' ConstVal ',' ConstVal ')' {
Reid Spencera132e042006-12-03 05:46:11 +00001900 if ($3->getType() != $5->getType())
Reid Spencerb5334b02007-02-05 10:18:06 +00001901 GEN_ERROR("Binary operator types must match");
Reid Spencer1628cec2006-10-26 06:15:43 +00001902 CHECK_FOR_ERROR;
Reid Spencer9eef56f2006-12-05 19:16:11 +00001903 $$ = ConstantExpr::get($1, $3, $5);
Chris Lattner58af2a12006-02-15 07:22:58 +00001904 }
1905 | LogicalOps '(' ConstVal ',' ConstVal ')' {
Reid Spencera132e042006-12-03 05:46:11 +00001906 if ($3->getType() != $5->getType())
Reid Spencerb5334b02007-02-05 10:18:06 +00001907 GEN_ERROR("Logical operator types must match");
Chris Lattner42a75512007-01-15 02:27:26 +00001908 if (!$3->getType()->isInteger()) {
Reid Spencer9d6565a2007-02-15 02:26:10 +00001909 if (Instruction::isShift($1) || !isa<VectorType>($3->getType()) ||
1910 !cast<VectorType>($3->getType())->getElementType()->isInteger())
Reid Spencerb5334b02007-02-05 10:18:06 +00001911 GEN_ERROR("Logical operator requires integral operands");
Chris Lattner58af2a12006-02-15 07:22:58 +00001912 }
Reid Spencera132e042006-12-03 05:46:11 +00001913 $$ = ConstantExpr::get($1, $3, $5);
Reid Spencer61c83e02006-08-18 08:43:06 +00001914 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001915 }
Reid Spencer4012e832006-12-04 05:24:24 +00001916 | ICMP IPredicates '(' ConstVal ',' ConstVal ')' {
1917 if ($4->getType() != $6->getType())
Reid Spencerb5334b02007-02-05 10:18:06 +00001918 GEN_ERROR("icmp operand types must match");
Reid Spencer4012e832006-12-04 05:24:24 +00001919 $$ = ConstantExpr::getICmp($2, $4, $6);
Reid Spencera132e042006-12-03 05:46:11 +00001920 }
Reid Spencer4012e832006-12-04 05:24:24 +00001921 | FCMP FPredicates '(' ConstVal ',' ConstVal ')' {
1922 if ($4->getType() != $6->getType())
Reid Spencerb5334b02007-02-05 10:18:06 +00001923 GEN_ERROR("fcmp operand types must match");
Reid Spencer4012e832006-12-04 05:24:24 +00001924 $$ = ConstantExpr::getFCmp($2, $4, $6);
Reid Spencera132e042006-12-03 05:46:11 +00001925 }
Chris Lattner58af2a12006-02-15 07:22:58 +00001926 | EXTRACTELEMENT '(' ConstVal ',' ConstVal ')' {
Reid Spencera132e042006-12-03 05:46:11 +00001927 if (!ExtractElementInst::isValidOperands($3, $5))
Reid Spencerb5334b02007-02-05 10:18:06 +00001928 GEN_ERROR("Invalid extractelement operands");
Reid Spencera132e042006-12-03 05:46:11 +00001929 $$ = ConstantExpr::getExtractElement($3, $5);
Reid Spencer61c83e02006-08-18 08:43:06 +00001930 CHECK_FOR_ERROR
Chris Lattnerd25db202006-04-08 03:55:17 +00001931 }
1932 | INSERTELEMENT '(' ConstVal ',' ConstVal ',' ConstVal ')' {
Reid Spencera132e042006-12-03 05:46:11 +00001933 if (!InsertElementInst::isValidOperands($3, $5, $7))
Reid Spencerb5334b02007-02-05 10:18:06 +00001934 GEN_ERROR("Invalid insertelement operands");
Reid Spencera132e042006-12-03 05:46:11 +00001935 $$ = ConstantExpr::getInsertElement($3, $5, $7);
Reid Spencer61c83e02006-08-18 08:43:06 +00001936 CHECK_FOR_ERROR
Chris Lattnerd25db202006-04-08 03:55:17 +00001937 }
1938 | SHUFFLEVECTOR '(' ConstVal ',' ConstVal ',' ConstVal ')' {
Reid Spencera132e042006-12-03 05:46:11 +00001939 if (!ShuffleVectorInst::isValidOperands($3, $5, $7))
Reid Spencerb5334b02007-02-05 10:18:06 +00001940 GEN_ERROR("Invalid shufflevector operands");
Reid Spencera132e042006-12-03 05:46:11 +00001941 $$ = ConstantExpr::getShuffleVector($3, $5, $7);
Reid Spencer61c83e02006-08-18 08:43:06 +00001942 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001943 };
1944
Chris Lattnerd25db202006-04-08 03:55:17 +00001945
Chris Lattner58af2a12006-02-15 07:22:58 +00001946// ConstVector - A list of comma separated constants.
1947ConstVector : ConstVector ',' ConstVal {
1948 ($$ = $1)->push_back($3);
Reid Spencer61c83e02006-08-18 08:43:06 +00001949 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001950 }
1951 | ConstVal {
Reid Spencera132e042006-12-03 05:46:11 +00001952 $$ = new std::vector<Constant*>();
Chris Lattner58af2a12006-02-15 07:22:58 +00001953 $$->push_back($1);
Reid Spencer61c83e02006-08-18 08:43:06 +00001954 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001955 };
1956
1957
1958// GlobalType - Match either GLOBAL or CONSTANT for global declarations...
1959GlobalType : GLOBAL { $$ = false; } | CONSTANT { $$ = true; };
1960
Lauro Ramos Venancioc7635522007-04-12 18:32:50 +00001961// ThreadLocal
1962ThreadLocal : THREAD_LOCAL { $$ = true; } | { $$ = false; };
1963
Anton Korobeynikov38e09802007-04-28 13:48:45 +00001964// AliaseeRef - Match either GlobalValue or bitcast to GlobalValue.
1965AliaseeRef : ResultTypes SymbolicValueRef {
1966 const Type* VTy = $1->get();
1967 Value *V = getVal(VTy, $2);
1968 GlobalValue* Aliasee = dyn_cast<GlobalValue>(V);
1969 if (!Aliasee)
1970 GEN_ERROR("Aliases can be created only to global values");
1971
1972 $$ = Aliasee;
1973 CHECK_FOR_ERROR
1974 delete $1;
1975 }
1976 | BITCAST '(' AliaseeRef TO Types ')' {
1977 Constant *Val = $3;
1978 const Type *DestTy = $5->get();
1979 if (!CastInst::castIsValid($1, $3, DestTy))
1980 GEN_ERROR("invalid cast opcode for cast from '" +
1981 Val->getType()->getDescription() + "' to '" +
1982 DestTy->getDescription() + "'");
1983
1984 $$ = ConstantExpr::getCast($1, $3, DestTy);
1985 CHECK_FOR_ERROR
1986 delete $5;
1987 };
Chris Lattner58af2a12006-02-15 07:22:58 +00001988
1989//===----------------------------------------------------------------------===//
1990// Rules to match Modules
1991//===----------------------------------------------------------------------===//
1992
1993// Module rule: Capture the result of parsing the whole file into a result
1994// variable...
1995//
Reid Spencer6fd36ab2006-12-29 20:35:03 +00001996Module
1997 : DefinitionList {
1998 $$ = ParserResult = CurModule.CurrentModule;
1999 CurModule.ModuleDone();
2000 CHECK_FOR_ERROR;
2001 }
2002 | /*empty*/ {
2003 $$ = ParserResult = CurModule.CurrentModule;
2004 CurModule.ModuleDone();
2005 CHECK_FOR_ERROR;
2006 }
2007 ;
Chris Lattner58af2a12006-02-15 07:22:58 +00002008
Reid Spencer6fd36ab2006-12-29 20:35:03 +00002009DefinitionList
2010 : Definition
2011 | DefinitionList Definition
2012 ;
2013
2014Definition
Jeff Cohen361c3ef2007-01-21 19:19:31 +00002015 : DEFINE { CurFun.isDeclare = false; } Function {
Chris Lattner58af2a12006-02-15 07:22:58 +00002016 CurFun.FunctionDone();
Reid Spencer61c83e02006-08-18 08:43:06 +00002017 CHECK_FOR_ERROR
Reid Spencer6fd36ab2006-12-29 20:35:03 +00002018 }
2019 | DECLARE { CurFun.isDeclare = true; } FunctionProto {
Reid Spencer61c83e02006-08-18 08:43:06 +00002020 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002021 }
Reid Spencer6fd36ab2006-12-29 20:35:03 +00002022 | MODULE ASM_TOK AsmBlock {
Reid Spencer61c83e02006-08-18 08:43:06 +00002023 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002024 }
Reid Spencer41dff5e2007-01-26 08:05:27 +00002025 | OptLocalAssign TYPE Types {
Reid Spencer14310612006-12-31 05:40:51 +00002026 if (!UpRefs.empty())
2027 GEN_ERROR("Invalid upreference in type: " + (*$3)->getDescription());
Chris Lattner58af2a12006-02-15 07:22:58 +00002028 // Eagerly resolve types. This is not an optimization, this is a
2029 // requirement that is due to the fact that we could have this:
2030 //
2031 // %list = type { %list * }
2032 // %list = type { %list * } ; repeated type decl
2033 //
2034 // If types are not resolved eagerly, then the two types will not be
2035 // determined to be the same type!
2036 //
Reid Spencer6fd36ab2006-12-29 20:35:03 +00002037 ResolveTypeTo($1, *$3);
Chris Lattner58af2a12006-02-15 07:22:58 +00002038
Reid Spencer6fd36ab2006-12-29 20:35:03 +00002039 if (!setTypeName(*$3, $1) && !$1) {
Reid Spencer5b7e7532006-09-28 19:28:24 +00002040 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002041 // If this is a named type that is not a redefinition, add it to the slot
2042 // table.
Reid Spencer6fd36ab2006-12-29 20:35:03 +00002043 CurModule.Types.push_back(*$3);
Chris Lattner58af2a12006-02-15 07:22:58 +00002044 }
Reid Spencera132e042006-12-03 05:46:11 +00002045
Reid Spencer6fd36ab2006-12-29 20:35:03 +00002046 delete $3;
Reid Spencer61c83e02006-08-18 08:43:06 +00002047 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002048 }
Reid Spencer41dff5e2007-01-26 08:05:27 +00002049 | OptLocalAssign TYPE VOID {
Reid Spencer14310612006-12-31 05:40:51 +00002050 ResolveTypeTo($1, $3);
2051
2052 if (!setTypeName($3, $1) && !$1) {
2053 CHECK_FOR_ERROR
2054 // If this is a named type that is not a redefinition, add it to the slot
2055 // table.
2056 CurModule.Types.push_back($3);
2057 }
2058 CHECK_FOR_ERROR
2059 }
Lauro Ramos Venancioc7635522007-04-12 18:32:50 +00002060 | OptGlobalAssign GVVisibilityStyle ThreadLocal GlobalType ConstVal {
Reid Spencer41dff5e2007-01-26 08:05:27 +00002061 /* "Externally Visible" Linkage */
Anton Korobeynikov7f705592007-01-12 19:20:47 +00002062 if ($5 == 0)
Reid Spencerb5334b02007-02-05 10:18:06 +00002063 GEN_ERROR("Global value initializer is not a constant");
Lauro Ramos Venancioc7635522007-04-12 18:32:50 +00002064 CurGV = ParseGlobalVariable($1, GlobalValue::ExternalLinkage,
2065 $2, $4, $5->getType(), $5, $3);
Reid Spencer6fd36ab2006-12-29 20:35:03 +00002066 CHECK_FOR_ERROR
Anton Korobeynikov7f705592007-01-12 19:20:47 +00002067 } GlobalVarAttributes {
2068 CurGV = 0;
2069 }
Chris Lattner6cdc6822007-04-26 05:31:05 +00002070 | OptGlobalAssign GVInternalLinkage GVVisibilityStyle ThreadLocal GlobalType
2071 ConstVal {
Lauro Ramos Venancioc7635522007-04-12 18:32:50 +00002072 if ($6 == 0)
2073 GEN_ERROR("Global value initializer is not a constant");
2074 CurGV = ParseGlobalVariable($1, $2, $3, $5, $6->getType(), $6, $4);
Anton Korobeynikov7f705592007-01-12 19:20:47 +00002075 CHECK_FOR_ERROR
Lauro Ramos Venancioc7635522007-04-12 18:32:50 +00002076 } GlobalVarAttributes {
2077 CurGV = 0;
2078 }
Chris Lattner6cdc6822007-04-26 05:31:05 +00002079 | OptGlobalAssign GVExternalLinkage GVVisibilityStyle ThreadLocal GlobalType
2080 Types {
Lauro Ramos Venancioc7635522007-04-12 18:32:50 +00002081 if (!UpRefs.empty())
2082 GEN_ERROR("Invalid upreference in type: " + (*$6)->getDescription());
2083 CurGV = ParseGlobalVariable($1, $2, $3, $5, *$6, 0, $4);
2084 CHECK_FOR_ERROR
2085 delete $6;
Reid Spencer5b7e7532006-09-28 19:28:24 +00002086 } GlobalVarAttributes {
Anton Korobeynikovb74ed072006-09-14 18:23:27 +00002087 CurGV = 0;
2088 CHECK_FOR_ERROR
2089 }
Anton Korobeynikov38e09802007-04-28 13:48:45 +00002090 | OptGlobalAssign GVVisibilityStyle ALIAS AliasLinkage AliaseeRef {
Anton Korobeynikov77d0f972007-04-25 14:29:12 +00002091 std::string Name($1);
2092 if (Name.empty())
Anton Korobeynikov38e09802007-04-28 13:48:45 +00002093 GEN_ERROR("Alias name cannot be empty");
2094
2095 Constant* Aliasee = $5;
2096 if (Aliasee == 0)
Anton Korobeynikov77d0f972007-04-25 14:29:12 +00002097 GEN_ERROR(std::string("Invalid aliasee for alias: ") + $1);
Anton Korobeynikov38e09802007-04-28 13:48:45 +00002098
2099 GlobalAlias* GA = new GlobalAlias(Aliasee->getType(), $4, Name, Aliasee,
2100 CurModule.CurrentModule);
2101 GA->setVisibility($2);
2102 InsertValue(GA, CurModule.Values);
Anton Korobeynikov77d0f972007-04-25 14:29:12 +00002103 CHECK_FOR_ERROR
Anton Korobeynikov77d0f972007-04-25 14:29:12 +00002104 }
Reid Spencer6fd36ab2006-12-29 20:35:03 +00002105 | TARGET TargetDefinition {
Anton Korobeynikovb74ed072006-09-14 18:23:27 +00002106 CHECK_FOR_ERROR
2107 }
Reid Spencer6fd36ab2006-12-29 20:35:03 +00002108 | DEPLIBS '=' LibrariesDefinition {
Reid Spencer61c83e02006-08-18 08:43:06 +00002109 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002110 }
Reid Spencer6fd36ab2006-12-29 20:35:03 +00002111 ;
Chris Lattner58af2a12006-02-15 07:22:58 +00002112
2113
2114AsmBlock : STRINGCONSTANT {
2115 const std::string &AsmSoFar = CurModule.CurrentModule->getModuleInlineAsm();
2116 char *EndStr = UnEscapeLexed($1, true);
2117 std::string NewAsm($1, EndStr);
2118 free($1);
2119
2120 if (AsmSoFar.empty())
2121 CurModule.CurrentModule->setModuleInlineAsm(NewAsm);
2122 else
2123 CurModule.CurrentModule->setModuleInlineAsm(AsmSoFar+"\n"+NewAsm);
Reid Spencer61c83e02006-08-18 08:43:06 +00002124 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002125};
2126
Reid Spencer41dff5e2007-01-26 08:05:27 +00002127TargetDefinition : TRIPLE '=' STRINGCONSTANT {
Chris Lattner58af2a12006-02-15 07:22:58 +00002128 CurModule.CurrentModule->setTargetTriple($3);
2129 free($3);
John Criswell2f6a8b12006-10-24 19:09:48 +00002130 }
Chris Lattner1ae022f2006-10-22 06:08:13 +00002131 | DATALAYOUT '=' STRINGCONSTANT {
Owen Anderson1dc69692006-10-18 02:21:48 +00002132 CurModule.CurrentModule->setDataLayout($3);
2133 free($3);
Owen Anderson1dc69692006-10-18 02:21:48 +00002134 };
Chris Lattner58af2a12006-02-15 07:22:58 +00002135
2136LibrariesDefinition : '[' LibList ']';
2137
2138LibList : LibList ',' STRINGCONSTANT {
2139 CurModule.CurrentModule->addLibrary($3);
2140 free($3);
Reid Spencer61c83e02006-08-18 08:43:06 +00002141 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002142 }
2143 | STRINGCONSTANT {
2144 CurModule.CurrentModule->addLibrary($1);
2145 free($1);
Reid Spencer61c83e02006-08-18 08:43:06 +00002146 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002147 }
2148 | /* empty: end of list */ {
Reid Spencer61c83e02006-08-18 08:43:06 +00002149 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002150 }
2151 ;
2152
2153//===----------------------------------------------------------------------===//
2154// Rules to match Function Headers
2155//===----------------------------------------------------------------------===//
2156
Reid Spencer41dff5e2007-01-26 08:05:27 +00002157ArgListH : ArgListH ',' Types OptParamAttrs OptLocalName {
Reid Spencer14310612006-12-31 05:40:51 +00002158 if (!UpRefs.empty())
2159 GEN_ERROR("Invalid upreference in type: " + (*$3)->getDescription());
2160 if (*$3 == Type::VoidTy)
Reid Spencerb5334b02007-02-05 10:18:06 +00002161 GEN_ERROR("void typed arguments are invalid");
Reid Spencer14310612006-12-31 05:40:51 +00002162 ArgListEntry E; E.Attrs = $4; E.Ty = $3; E.Name = $5;
Chris Lattner58af2a12006-02-15 07:22:58 +00002163 $$ = $1;
Reid Spencer14310612006-12-31 05:40:51 +00002164 $1->push_back(E);
Reid Spencer61c83e02006-08-18 08:43:06 +00002165 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002166 }
Reid Spencer41dff5e2007-01-26 08:05:27 +00002167 | Types OptParamAttrs OptLocalName {
Reid Spencer14310612006-12-31 05:40:51 +00002168 if (!UpRefs.empty())
2169 GEN_ERROR("Invalid upreference in type: " + (*$1)->getDescription());
2170 if (*$1 == Type::VoidTy)
Reid Spencerb5334b02007-02-05 10:18:06 +00002171 GEN_ERROR("void typed arguments are invalid");
Reid Spencer14310612006-12-31 05:40:51 +00002172 ArgListEntry E; E.Attrs = $2; E.Ty = $1; E.Name = $3;
2173 $$ = new ArgListType;
2174 $$->push_back(E);
Reid Spencer61c83e02006-08-18 08:43:06 +00002175 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002176 };
2177
2178ArgList : ArgListH {
2179 $$ = $1;
Reid Spencer61c83e02006-08-18 08:43:06 +00002180 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002181 }
2182 | ArgListH ',' DOTDOTDOT {
2183 $$ = $1;
Reid Spencer14310612006-12-31 05:40:51 +00002184 struct ArgListEntry E;
2185 E.Ty = new PATypeHolder(Type::VoidTy);
2186 E.Name = 0;
Reid Spencer18da0722007-04-11 02:44:20 +00002187 E.Attrs = ParamAttr::None;
Reid Spencer14310612006-12-31 05:40:51 +00002188 $$->push_back(E);
Reid Spencer61c83e02006-08-18 08:43:06 +00002189 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002190 }
2191 | DOTDOTDOT {
Reid Spencer14310612006-12-31 05:40:51 +00002192 $$ = new ArgListType;
2193 struct ArgListEntry E;
2194 E.Ty = new PATypeHolder(Type::VoidTy);
2195 E.Name = 0;
Reid Spencer18da0722007-04-11 02:44:20 +00002196 E.Attrs = ParamAttr::None;
Reid Spencer14310612006-12-31 05:40:51 +00002197 $$->push_back(E);
Reid Spencer61c83e02006-08-18 08:43:06 +00002198 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002199 }
2200 | /* empty */ {
2201 $$ = 0;
Reid Spencer61c83e02006-08-18 08:43:06 +00002202 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002203 };
2204
Reid Spencer41dff5e2007-01-26 08:05:27 +00002205FunctionHeaderH : OptCallingConv ResultTypes GlobalName '(' ArgList ')'
Reid Spencer218ded22007-01-05 17:07:23 +00002206 OptFuncAttrs OptSection OptAlign {
Chris Lattner58af2a12006-02-15 07:22:58 +00002207 UnEscapeLexed($3);
2208 std::string FunctionName($3);
2209 free($3); // Free strdup'd memory!
2210
Reid Spencer8c8a2dc2007-01-02 21:54:12 +00002211 // Check the function result for abstractness if this is a define. We should
2212 // have no abstract types at this point
Reid Spencer218ded22007-01-05 17:07:23 +00002213 if (!CurFun.isDeclare && CurModule.TypeIsUnresolved($2))
2214 GEN_ERROR("Reference to abstract result: "+ $2->get()->getDescription());
Reid Spencer8c8a2dc2007-01-02 21:54:12 +00002215
Chris Lattner58af2a12006-02-15 07:22:58 +00002216 std::vector<const Type*> ParamTypeList;
Christopher Lamb5c104242007-04-22 20:09:11 +00002217 ParamAttrsVector Attrs;
2218 if ($7 != ParamAttr::None) {
2219 ParamAttrsWithIndex PAWI; PAWI.index = 0; PAWI.attrs = $7;
2220 Attrs.push_back(PAWI);
2221 }
Chris Lattner58af2a12006-02-15 07:22:58 +00002222 if ($5) { // If there are arguments...
Reid Spencer7b5d4662007-04-09 06:16:21 +00002223 unsigned index = 1;
2224 for (ArgListType::iterator I = $5->begin(); I != $5->end(); ++I, ++index) {
Reid Spencer14310612006-12-31 05:40:51 +00002225 const Type* Ty = I->Ty->get();
Reid Spencer8c8a2dc2007-01-02 21:54:12 +00002226 if (!CurFun.isDeclare && CurModule.TypeIsUnresolved(I->Ty))
2227 GEN_ERROR("Reference to abstract argument: " + Ty->getDescription());
Reid Spencer14310612006-12-31 05:40:51 +00002228 ParamTypeList.push_back(Ty);
2229 if (Ty != Type::VoidTy)
Christopher Lamb5c104242007-04-22 20:09:11 +00002230 if (I->Attrs != ParamAttr::None) {
2231 ParamAttrsWithIndex PAWI; PAWI.index = index; PAWI.attrs = I->Attrs;
2232 Attrs.push_back(PAWI);
2233 }
Reid Spencer14310612006-12-31 05:40:51 +00002234 }
Chris Lattner58af2a12006-02-15 07:22:58 +00002235 }
2236
2237 bool isVarArg = ParamTypeList.size() && ParamTypeList.back() == Type::VoidTy;
2238 if (isVarArg) ParamTypeList.pop_back();
2239
Christopher Lamb5c104242007-04-22 20:09:11 +00002240 ParamAttrsList *PAL = 0;
2241 if (!Attrs.empty())
2242 PAL = ParamAttrsList::get(Attrs);
Reid Spencer7b5d4662007-04-09 06:16:21 +00002243
Christopher Lamb5c104242007-04-22 20:09:11 +00002244 FunctionType *FT = FunctionType::get(*$2, ParamTypeList, isVarArg, PAL);
Chris Lattner58af2a12006-02-15 07:22:58 +00002245 const PointerType *PFT = PointerType::get(FT);
Reid Spencer218ded22007-01-05 17:07:23 +00002246 delete $2;
Chris Lattner58af2a12006-02-15 07:22:58 +00002247
2248 ValID ID;
2249 if (!FunctionName.empty()) {
Reid Spencer41dff5e2007-01-26 08:05:27 +00002250 ID = ValID::createGlobalName((char*)FunctionName.c_str());
Chris Lattner58af2a12006-02-15 07:22:58 +00002251 } else {
Reid Spencer93c40032007-03-19 18:40:50 +00002252 ID = ValID::createGlobalID(CurModule.Values.size());
Chris Lattner58af2a12006-02-15 07:22:58 +00002253 }
2254
2255 Function *Fn = 0;
2256 // See if this function was forward referenced. If so, recycle the object.
2257 if (GlobalValue *FWRef = CurModule.GetForwardRefForGlobal(PFT, ID)) {
2258 // Move the function to the end of the list, from whereever it was
2259 // previously inserted.
2260 Fn = cast<Function>(FWRef);
2261 CurModule.CurrentModule->getFunctionList().remove(Fn);
2262 CurModule.CurrentModule->getFunctionList().push_back(Fn);
2263 } else if (!FunctionName.empty() && // Merge with an earlier prototype?
Reid Spenceref9b9a72007-02-05 20:47:22 +00002264 (Fn = CurModule.CurrentModule->getFunction(FunctionName))) {
Chris Lattner6cdc6822007-04-26 05:31:05 +00002265 if (Fn->getFunctionType() != FT) {
Reid Spenceref9b9a72007-02-05 20:47:22 +00002266 // The existing function doesn't have the same type. This is an overload
2267 // error.
2268 GEN_ERROR("Overload of function '" + FunctionName + "' not permitted.");
2269 } else if (!CurFun.isDeclare && !Fn->isDeclaration()) {
Chris Lattner6cdc6822007-04-26 05:31:05 +00002270 // Neither the existing or the current function is a declaration and they
2271 // have the same name and same type. Clearly this is a redefinition.
2272 GEN_ERROR("Redefinition of function '" + FunctionName + "'");
Reid Spenceref9b9a72007-02-05 20:47:22 +00002273 } if (Fn->isDeclaration()) {
2274 // Make sure to strip off any argument names so we can't get conflicts.
Chris Lattner58af2a12006-02-15 07:22:58 +00002275 for (Function::arg_iterator AI = Fn->arg_begin(), AE = Fn->arg_end();
2276 AI != AE; ++AI)
2277 AI->setName("");
Reid Spenceref9b9a72007-02-05 20:47:22 +00002278 }
Chris Lattner58af2a12006-02-15 07:22:58 +00002279 } else { // Not already defined?
Chris Lattner6cdc6822007-04-26 05:31:05 +00002280 Fn = new Function(FT, GlobalValue::ExternalWeakLinkage, FunctionName,
Chris Lattner58af2a12006-02-15 07:22:58 +00002281 CurModule.CurrentModule);
Anton Korobeynikovb74ed072006-09-14 18:23:27 +00002282
Chris Lattner58af2a12006-02-15 07:22:58 +00002283 InsertValue(Fn, CurModule.Values);
2284 }
2285
2286 CurFun.FunctionStart(Fn);
Anton Korobeynikov93c2b372006-09-17 13:06:18 +00002287
2288 if (CurFun.isDeclare) {
2289 // If we have declaration, always overwrite linkage. This will allow us to
2290 // correctly handle cases, when pointer to function is passed as argument to
2291 // another function.
2292 Fn->setLinkage(CurFun.Linkage);
Anton Korobeynikov7f705592007-01-12 19:20:47 +00002293 Fn->setVisibility(CurFun.Visibility);
Anton Korobeynikov93c2b372006-09-17 13:06:18 +00002294 }
Chris Lattner58af2a12006-02-15 07:22:58 +00002295 Fn->setCallingConv($1);
Reid Spencer218ded22007-01-05 17:07:23 +00002296 Fn->setAlignment($9);
2297 if ($8) {
2298 Fn->setSection($8);
2299 free($8);
Chris Lattner58af2a12006-02-15 07:22:58 +00002300 }
2301
2302 // Add all of the arguments we parsed to the function...
2303 if ($5) { // Is null if empty...
2304 if (isVarArg) { // Nuke the last entry
Reid Spenceref9b9a72007-02-05 20:47:22 +00002305 assert($5->back().Ty->get() == Type::VoidTy && $5->back().Name == 0 &&
Reid Spencera9720f52007-02-05 17:04:00 +00002306 "Not a varargs marker!");
Reid Spencer14310612006-12-31 05:40:51 +00002307 delete $5->back().Ty;
Chris Lattner58af2a12006-02-15 07:22:58 +00002308 $5->pop_back(); // Delete the last entry
2309 }
2310 Function::arg_iterator ArgIt = Fn->arg_begin();
Reid Spenceref9b9a72007-02-05 20:47:22 +00002311 Function::arg_iterator ArgEnd = Fn->arg_end();
Reid Spencer14310612006-12-31 05:40:51 +00002312 unsigned Idx = 1;
Reid Spenceref9b9a72007-02-05 20:47:22 +00002313 for (ArgListType::iterator I = $5->begin();
2314 I != $5->end() && ArgIt != ArgEnd; ++I, ++ArgIt) {
Reid Spencer14310612006-12-31 05:40:51 +00002315 delete I->Ty; // Delete the typeholder...
Reid Spenceref9b9a72007-02-05 20:47:22 +00002316 setValueName(ArgIt, I->Name); // Insert arg into symtab...
Reid Spencer5b7e7532006-09-28 19:28:24 +00002317 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002318 InsertValue(ArgIt);
Reid Spencer14310612006-12-31 05:40:51 +00002319 Idx++;
Chris Lattner58af2a12006-02-15 07:22:58 +00002320 }
Reid Spencera132e042006-12-03 05:46:11 +00002321
Chris Lattner58af2a12006-02-15 07:22:58 +00002322 delete $5; // We're now done with the argument list
2323 }
Reid Spencer61c83e02006-08-18 08:43:06 +00002324 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002325};
2326
2327BEGIN : BEGINTOK | '{'; // Allow BEGIN or '{' to start a function
2328
Anton Korobeynikov7f705592007-01-12 19:20:47 +00002329FunctionHeader : FunctionDefineLinkage GVVisibilityStyle FunctionHeaderH BEGIN {
Chris Lattner58af2a12006-02-15 07:22:58 +00002330 $$ = CurFun.CurrentFunction;
2331
2332 // Make sure that we keep track of the linkage type even if there was a
2333 // previous "declare".
2334 $$->setLinkage($1);
Anton Korobeynikov7f705592007-01-12 19:20:47 +00002335 $$->setVisibility($2);
Chris Lattner58af2a12006-02-15 07:22:58 +00002336};
2337
2338END : ENDTOK | '}'; // Allow end of '}' to end a function
2339
2340Function : BasicBlockList END {
2341 $$ = $1;
Reid Spencer61c83e02006-08-18 08:43:06 +00002342 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002343};
2344
Anton Korobeynikov7f705592007-01-12 19:20:47 +00002345FunctionProto : FunctionDeclareLinkage GVVisibilityStyle FunctionHeaderH {
Reid Spencer14310612006-12-31 05:40:51 +00002346 CurFun.CurrentFunction->setLinkage($1);
Anton Korobeynikov7f705592007-01-12 19:20:47 +00002347 CurFun.CurrentFunction->setVisibility($2);
Anton Korobeynikovb74ed072006-09-14 18:23:27 +00002348 $$ = CurFun.CurrentFunction;
2349 CurFun.FunctionDone();
2350 CHECK_FOR_ERROR
2351 };
Chris Lattner58af2a12006-02-15 07:22:58 +00002352
2353//===----------------------------------------------------------------------===//
2354// Rules to match Basic Blocks
2355//===----------------------------------------------------------------------===//
2356
2357OptSideEffect : /* empty */ {
2358 $$ = false;
Reid Spencer61c83e02006-08-18 08:43:06 +00002359 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002360 }
2361 | SIDEEFFECT {
2362 $$ = true;
Reid Spencer61c83e02006-08-18 08:43:06 +00002363 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002364 };
2365
2366ConstValueRef : ESINT64VAL { // A reference to a direct constant
2367 $$ = ValID::create($1);
Reid Spencer61c83e02006-08-18 08:43:06 +00002368 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002369 }
2370 | EUINT64VAL {
2371 $$ = ValID::create($1);
Reid Spencer61c83e02006-08-18 08:43:06 +00002372 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002373 }
2374 | FPVAL { // Perhaps it's an FP constant?
2375 $$ = ValID::create($1);
Reid Spencer61c83e02006-08-18 08:43:06 +00002376 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002377 }
2378 | TRUETOK {
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00002379 $$ = ValID::create(ConstantInt::getTrue());
Reid Spencer61c83e02006-08-18 08:43:06 +00002380 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002381 }
2382 | FALSETOK {
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00002383 $$ = ValID::create(ConstantInt::getFalse());
Reid Spencer61c83e02006-08-18 08:43:06 +00002384 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002385 }
2386 | NULL_TOK {
2387 $$ = ValID::createNull();
Reid Spencer61c83e02006-08-18 08:43:06 +00002388 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002389 }
2390 | UNDEF {
2391 $$ = ValID::createUndef();
Reid Spencer61c83e02006-08-18 08:43:06 +00002392 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002393 }
2394 | ZEROINITIALIZER { // A vector zero constant.
2395 $$ = ValID::createZeroInit();
Reid Spencer61c83e02006-08-18 08:43:06 +00002396 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002397 }
2398 | '<' ConstVector '>' { // Nonempty unsized packed vector
Reid Spencera132e042006-12-03 05:46:11 +00002399 const Type *ETy = (*$2)[0]->getType();
Chris Lattner58af2a12006-02-15 07:22:58 +00002400 int NumElements = $2->size();
2401
Reid Spencer9d6565a2007-02-15 02:26:10 +00002402 VectorType* pt = VectorType::get(ETy, NumElements);
Chris Lattner58af2a12006-02-15 07:22:58 +00002403 PATypeHolder* PTy = new PATypeHolder(
Reid Spencera132e042006-12-03 05:46:11 +00002404 HandleUpRefs(
Reid Spencer9d6565a2007-02-15 02:26:10 +00002405 VectorType::get(
Reid Spencera132e042006-12-03 05:46:11 +00002406 ETy,
2407 NumElements)
2408 )
2409 );
Chris Lattner58af2a12006-02-15 07:22:58 +00002410
2411 // Verify all elements are correct type!
2412 for (unsigned i = 0; i < $2->size(); i++) {
Reid Spencera132e042006-12-03 05:46:11 +00002413 if (ETy != (*$2)[i]->getType())
Reid Spencer61c83e02006-08-18 08:43:06 +00002414 GEN_ERROR("Element #" + utostr(i) + " is not of type '" +
Chris Lattner58af2a12006-02-15 07:22:58 +00002415 ETy->getDescription() +"' as required!\nIt is of type '" +
Reid Spencera132e042006-12-03 05:46:11 +00002416 (*$2)[i]->getType()->getDescription() + "'.");
Chris Lattner58af2a12006-02-15 07:22:58 +00002417 }
2418
Reid Spencer9d6565a2007-02-15 02:26:10 +00002419 $$ = ValID::create(ConstantVector::get(pt, *$2));
Chris Lattner58af2a12006-02-15 07:22:58 +00002420 delete PTy; delete $2;
Reid Spencer61c83e02006-08-18 08:43:06 +00002421 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002422 }
2423 | ConstExpr {
Reid Spencera132e042006-12-03 05:46:11 +00002424 $$ = ValID::create($1);
Reid Spencer61c83e02006-08-18 08:43:06 +00002425 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002426 }
2427 | ASM_TOK OptSideEffect STRINGCONSTANT ',' STRINGCONSTANT {
2428 char *End = UnEscapeLexed($3, true);
2429 std::string AsmStr = std::string($3, End);
2430 End = UnEscapeLexed($5, true);
2431 std::string Constraints = std::string($5, End);
2432 $$ = ValID::createInlineAsm(AsmStr, Constraints, $2);
2433 free($3);
2434 free($5);
Reid Spencer61c83e02006-08-18 08:43:06 +00002435 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002436 };
2437
2438// SymbolicValueRef - Reference to one of two ways of symbolically refering to
2439// another value.
2440//
Reid Spencer41dff5e2007-01-26 08:05:27 +00002441SymbolicValueRef : LOCALVAL_ID { // Is it an integer reference...?
2442 $$ = ValID::createLocalID($1);
Reid Spencer61c83e02006-08-18 08:43:06 +00002443 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002444 }
Reid Spencer41dff5e2007-01-26 08:05:27 +00002445 | GLOBALVAL_ID {
2446 $$ = ValID::createGlobalID($1);
2447 CHECK_FOR_ERROR
2448 }
2449 | LocalName { // Is it a named reference...?
2450 $$ = ValID::createLocalName($1);
2451 CHECK_FOR_ERROR
2452 }
2453 | GlobalName { // Is it a named reference...?
2454 $$ = ValID::createGlobalName($1);
Reid Spencer61c83e02006-08-18 08:43:06 +00002455 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002456 };
2457
2458// ValueRef - A reference to a definition... either constant or symbolic
2459ValueRef : SymbolicValueRef | ConstValueRef;
2460
2461
2462// ResolvedVal - a <type> <value> pair. This is used only in cases where the
2463// type immediately preceeds the value reference, and allows complex constant
2464// pool references (for things like: 'ret [2 x int] [ int 12, int 42]')
2465ResolvedVal : Types ValueRef {
Reid Spencer14310612006-12-31 05:40:51 +00002466 if (!UpRefs.empty())
2467 GEN_ERROR("Invalid upreference in type: " + (*$1)->getDescription());
2468 $$ = getVal(*$1, $2);
2469 delete $1;
Reid Spencer61c83e02006-08-18 08:43:06 +00002470 CHECK_FOR_ERROR
Reid Spencer14310612006-12-31 05:40:51 +00002471 }
2472 ;
Chris Lattner58af2a12006-02-15 07:22:58 +00002473
2474BasicBlockList : BasicBlockList BasicBlock {
2475 $$ = $1;
Reid Spencer61c83e02006-08-18 08:43:06 +00002476 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002477 }
2478 | FunctionHeader BasicBlock { // Do not allow functions with 0 basic blocks
2479 $$ = $1;
Reid Spencer61c83e02006-08-18 08:43:06 +00002480 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002481 };
2482
2483
2484// Basic blocks are terminated by branching instructions:
2485// br, br/cc, switch, ret
2486//
Reid Spencer41dff5e2007-01-26 08:05:27 +00002487BasicBlock : InstructionList OptLocalAssign BBTerminatorInst {
Chris Lattner58af2a12006-02-15 07:22:58 +00002488 setValueName($3, $2);
Reid Spencer5b7e7532006-09-28 19:28:24 +00002489 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002490 InsertValue($3);
Chris Lattner58af2a12006-02-15 07:22:58 +00002491 $1->getInstList().push_back($3);
Chris Lattner58af2a12006-02-15 07:22:58 +00002492 $$ = $1;
Reid Spencer61c83e02006-08-18 08:43:06 +00002493 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002494 };
2495
2496InstructionList : InstructionList Inst {
Reid Spencer3da59db2006-11-27 01:05:10 +00002497 if (CastInst *CI1 = dyn_cast<CastInst>($2))
2498 if (CastInst *CI2 = dyn_cast<CastInst>(CI1->getOperand(0)))
2499 if (CI2->getParent() == 0)
2500 $1->getInstList().push_back(CI2);
Chris Lattner58af2a12006-02-15 07:22:58 +00002501 $1->getInstList().push_back($2);
2502 $$ = $1;
Reid Spencer61c83e02006-08-18 08:43:06 +00002503 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002504 }
Reid Spencer93c40032007-03-19 18:40:50 +00002505 | /* empty */ { // Empty space between instruction lists
2506 $$ = defineBBVal(ValID::createLocalID(CurFun.NextValNum));
Reid Spencer61c83e02006-08-18 08:43:06 +00002507 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002508 }
Reid Spencer93c40032007-03-19 18:40:50 +00002509 | LABELSTR { // Labelled (named) basic block
2510 $$ = defineBBVal(ValID::createLocalName($1));
Reid Spencer61c83e02006-08-18 08:43:06 +00002511 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002512 };
2513
2514BBTerminatorInst : RET ResolvedVal { // Return with a result...
Reid Spencera132e042006-12-03 05:46:11 +00002515 $$ = new ReturnInst($2);
Reid Spencer61c83e02006-08-18 08:43:06 +00002516 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002517 }
Reid Spencer93c40032007-03-19 18:40:50 +00002518 | RET VOID { // Return with no result...
Chris Lattner58af2a12006-02-15 07:22:58 +00002519 $$ = new ReturnInst();
Reid Spencer61c83e02006-08-18 08:43:06 +00002520 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002521 }
Reid Spencer93c40032007-03-19 18:40:50 +00002522 | BR LABEL ValueRef { // Unconditional Branch...
Reid Spencer5b7e7532006-09-28 19:28:24 +00002523 BasicBlock* tmpBB = getBBVal($3);
Reid Spencer61c83e02006-08-18 08:43:06 +00002524 CHECK_FOR_ERROR
Reid Spencer5b7e7532006-09-28 19:28:24 +00002525 $$ = new BranchInst(tmpBB);
Reid Spencer93c40032007-03-19 18:40:50 +00002526 } // Conditional Branch...
Reid Spencer6f407902007-01-13 05:00:46 +00002527 | BR INTTYPE ValueRef ',' LABEL ValueRef ',' LABEL ValueRef {
2528 assert(cast<IntegerType>($2)->getBitWidth() == 1 && "Not Bool?");
Reid Spencer5b7e7532006-09-28 19:28:24 +00002529 BasicBlock* tmpBBA = getBBVal($6);
Reid Spencer61c83e02006-08-18 08:43:06 +00002530 CHECK_FOR_ERROR
Reid Spencer5b7e7532006-09-28 19:28:24 +00002531 BasicBlock* tmpBBB = getBBVal($9);
2532 CHECK_FOR_ERROR
Reid Spencer4fe16d62007-01-11 18:21:29 +00002533 Value* tmpVal = getVal(Type::Int1Ty, $3);
Reid Spencer5b7e7532006-09-28 19:28:24 +00002534 CHECK_FOR_ERROR
2535 $$ = new BranchInst(tmpBBA, tmpBBB, tmpVal);
Chris Lattner58af2a12006-02-15 07:22:58 +00002536 }
2537 | SWITCH IntType ValueRef ',' LABEL ValueRef '[' JumpTable ']' {
Reid Spencera132e042006-12-03 05:46:11 +00002538 Value* tmpVal = getVal($2, $3);
Reid Spencer5b7e7532006-09-28 19:28:24 +00002539 CHECK_FOR_ERROR
2540 BasicBlock* tmpBB = getBBVal($6);
2541 CHECK_FOR_ERROR
2542 SwitchInst *S = new SwitchInst(tmpVal, tmpBB, $8->size());
Chris Lattner58af2a12006-02-15 07:22:58 +00002543 $$ = S;
2544
2545 std::vector<std::pair<Constant*,BasicBlock*> >::iterator I = $8->begin(),
2546 E = $8->end();
2547 for (; I != E; ++I) {
2548 if (ConstantInt *CI = dyn_cast<ConstantInt>(I->first))
2549 S->addCase(CI, I->second);
2550 else
Reid Spencerb5334b02007-02-05 10:18:06 +00002551 GEN_ERROR("Switch case is constant, but not a simple integer");
Chris Lattner58af2a12006-02-15 07:22:58 +00002552 }
2553 delete $8;
Reid Spencer61c83e02006-08-18 08:43:06 +00002554 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002555 }
2556 | SWITCH IntType ValueRef ',' LABEL ValueRef '[' ']' {
Reid Spencera132e042006-12-03 05:46:11 +00002557 Value* tmpVal = getVal($2, $3);
Reid Spencer5b7e7532006-09-28 19:28:24 +00002558 CHECK_FOR_ERROR
2559 BasicBlock* tmpBB = getBBVal($6);
2560 CHECK_FOR_ERROR
2561 SwitchInst *S = new SwitchInst(tmpVal, tmpBB, 0);
Chris Lattner58af2a12006-02-15 07:22:58 +00002562 $$ = S;
Reid Spencer61c83e02006-08-18 08:43:06 +00002563 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002564 }
Reid Spencer218ded22007-01-05 17:07:23 +00002565 | INVOKE OptCallingConv ResultTypes ValueRef '(' ValueRefList ')' OptFuncAttrs
Chris Lattner58af2a12006-02-15 07:22:58 +00002566 TO LABEL ValueRef UNWIND LABEL ValueRef {
Chris Lattner58af2a12006-02-15 07:22:58 +00002567
Reid Spencer14310612006-12-31 05:40:51 +00002568 // Handle the short syntax
2569 const PointerType *PFTy = 0;
2570 const FunctionType *Ty = 0;
Reid Spencer218ded22007-01-05 17:07:23 +00002571 if (!(PFTy = dyn_cast<PointerType>($3->get())) ||
Chris Lattner58af2a12006-02-15 07:22:58 +00002572 !(Ty = dyn_cast<FunctionType>(PFTy->getElementType()))) {
2573 // Pull out the types of all of the arguments...
2574 std::vector<const Type*> ParamTypes;
Christopher Lamb5c104242007-04-22 20:09:11 +00002575 ParamAttrsVector Attrs;
2576 if ($8 != ParamAttr::None) {
Chris Lattner39b2e8b2007-05-04 04:01:37 +00002577 ParamAttrsWithIndex PAWI; PAWI.index = 0; PAWI.attrs = $8;
Christopher Lamb5c104242007-04-22 20:09:11 +00002578 Attrs.push_back(PAWI);
2579 }
Reid Spencer7b5d4662007-04-09 06:16:21 +00002580 ValueRefList::iterator I = $6->begin(), E = $6->end();
2581 unsigned index = 1;
2582 for (; I != E; ++I, ++index) {
Reid Spencer14310612006-12-31 05:40:51 +00002583 const Type *Ty = I->Val->getType();
2584 if (Ty == Type::VoidTy)
2585 GEN_ERROR("Short call syntax cannot be used with varargs");
2586 ParamTypes.push_back(Ty);
Christopher Lamb5c104242007-04-22 20:09:11 +00002587 if (I->Attrs != ParamAttr::None) {
2588 ParamAttrsWithIndex PAWI; PAWI.index = index; PAWI.attrs = I->Attrs;
2589 Attrs.push_back(PAWI);
2590 }
Chris Lattner58af2a12006-02-15 07:22:58 +00002591 }
2592
Christopher Lamb5c104242007-04-22 20:09:11 +00002593 ParamAttrsList *PAL = 0;
2594 if (!Attrs.empty())
2595 PAL = ParamAttrsList::get(Attrs);
2596 Ty = FunctionType::get($3->get(), ParamTypes, false, PAL);
Chris Lattner58af2a12006-02-15 07:22:58 +00002597 PFTy = PointerType::get(Ty);
2598 }
2599
Reid Spencer66728ef2007-03-20 01:13:36 +00002600 delete $3;
2601
Chris Lattner58af2a12006-02-15 07:22:58 +00002602 Value *V = getVal(PFTy, $4); // Get the function we're calling...
Reid Spencer5b7e7532006-09-28 19:28:24 +00002603 CHECK_FOR_ERROR
Reid Spencer218ded22007-01-05 17:07:23 +00002604 BasicBlock *Normal = getBBVal($11);
Reid Spencer5b7e7532006-09-28 19:28:24 +00002605 CHECK_FOR_ERROR
Reid Spencer218ded22007-01-05 17:07:23 +00002606 BasicBlock *Except = getBBVal($14);
Reid Spencer5b7e7532006-09-28 19:28:24 +00002607 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002608
Reid Spencer14310612006-12-31 05:40:51 +00002609 // Check the arguments
2610 ValueList Args;
2611 if ($6->empty()) { // Has no arguments?
2612 // Make sure no arguments is a good thing!
2613 if (Ty->getNumParams() != 0)
2614 GEN_ERROR("No arguments passed to a function that "
Reid Spencerb5334b02007-02-05 10:18:06 +00002615 "expects arguments");
Chris Lattner58af2a12006-02-15 07:22:58 +00002616 } else { // Has arguments?
2617 // Loop through FunctionType's arguments and ensure they are specified
2618 // correctly!
Chris Lattner58af2a12006-02-15 07:22:58 +00002619 FunctionType::param_iterator I = Ty->param_begin();
2620 FunctionType::param_iterator E = Ty->param_end();
Reid Spencer14310612006-12-31 05:40:51 +00002621 ValueRefList::iterator ArgI = $6->begin(), ArgE = $6->end();
Chris Lattner58af2a12006-02-15 07:22:58 +00002622
Reid Spencer14310612006-12-31 05:40:51 +00002623 for (; ArgI != ArgE && I != E; ++ArgI, ++I) {
2624 if (ArgI->Val->getType() != *I)
2625 GEN_ERROR("Parameter " + ArgI->Val->getName()+ " is not of type '" +
Reid Spencerb5334b02007-02-05 10:18:06 +00002626 (*I)->getDescription() + "'");
Reid Spencer14310612006-12-31 05:40:51 +00002627 Args.push_back(ArgI->Val);
2628 }
Reid Spencera132e042006-12-03 05:46:11 +00002629
Reid Spencer14310612006-12-31 05:40:51 +00002630 if (Ty->isVarArg()) {
2631 if (I == E)
2632 for (; ArgI != ArgE; ++ArgI)
2633 Args.push_back(ArgI->Val); // push the remaining varargs
2634 } else if (I != E || ArgI != ArgE)
Reid Spencerb5334b02007-02-05 10:18:06 +00002635 GEN_ERROR("Invalid number of parameters detected");
Chris Lattner58af2a12006-02-15 07:22:58 +00002636 }
Reid Spencer14310612006-12-31 05:40:51 +00002637
2638 // Create the InvokeInst
Chris Lattner9d2fda62007-02-13 05:53:56 +00002639 InvokeInst *II = new InvokeInst(V, Normal, Except, &Args[0], Args.size());
Reid Spencer14310612006-12-31 05:40:51 +00002640 II->setCallingConv($2);
2641 $$ = II;
Chris Lattner58af2a12006-02-15 07:22:58 +00002642 delete $6;
Reid Spencer61c83e02006-08-18 08:43:06 +00002643 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002644 }
2645 | UNWIND {
2646 $$ = new UnwindInst();
Reid Spencer61c83e02006-08-18 08:43:06 +00002647 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002648 }
2649 | UNREACHABLE {
2650 $$ = new UnreachableInst();
Reid Spencer61c83e02006-08-18 08:43:06 +00002651 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002652 };
2653
2654
2655
2656JumpTable : JumpTable IntType ConstValueRef ',' LABEL ValueRef {
2657 $$ = $1;
Reid Spencer93c40032007-03-19 18:40:50 +00002658 Constant *V = cast<Constant>(getExistingVal($2, $3));
Reid Spencer5b7e7532006-09-28 19:28:24 +00002659 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002660 if (V == 0)
Reid Spencerb5334b02007-02-05 10:18:06 +00002661 GEN_ERROR("May only switch on a constant pool value");
Chris Lattner58af2a12006-02-15 07:22:58 +00002662
Reid Spencer5b7e7532006-09-28 19:28:24 +00002663 BasicBlock* tmpBB = getBBVal($6);
Reid Spencer61c83e02006-08-18 08:43:06 +00002664 CHECK_FOR_ERROR
Reid Spencer5b7e7532006-09-28 19:28:24 +00002665 $$->push_back(std::make_pair(V, tmpBB));
Chris Lattner58af2a12006-02-15 07:22:58 +00002666 }
2667 | IntType ConstValueRef ',' LABEL ValueRef {
2668 $$ = new std::vector<std::pair<Constant*, BasicBlock*> >();
Reid Spencer93c40032007-03-19 18:40:50 +00002669 Constant *V = cast<Constant>(getExistingVal($1, $2));
Reid Spencer5b7e7532006-09-28 19:28:24 +00002670 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002671
2672 if (V == 0)
Reid Spencerb5334b02007-02-05 10:18:06 +00002673 GEN_ERROR("May only switch on a constant pool value");
Chris Lattner58af2a12006-02-15 07:22:58 +00002674
Reid Spencer5b7e7532006-09-28 19:28:24 +00002675 BasicBlock* tmpBB = getBBVal($5);
Reid Spencer61c83e02006-08-18 08:43:06 +00002676 CHECK_FOR_ERROR
Reid Spencer5b7e7532006-09-28 19:28:24 +00002677 $$->push_back(std::make_pair(V, tmpBB));
Chris Lattner58af2a12006-02-15 07:22:58 +00002678 };
2679
Reid Spencer41dff5e2007-01-26 08:05:27 +00002680Inst : OptLocalAssign InstVal {
Reid Spenceref9b9a72007-02-05 20:47:22 +00002681 // Is this definition named?? if so, assign the name...
2682 setValueName($2, $1);
2683 CHECK_FOR_ERROR
2684 InsertValue($2);
2685 $$ = $2;
2686 CHECK_FOR_ERROR
2687 };
2688
Chris Lattner58af2a12006-02-15 07:22:58 +00002689
2690PHIList : Types '[' ValueRef ',' ValueRef ']' { // Used for PHI nodes
Reid Spencer14310612006-12-31 05:40:51 +00002691 if (!UpRefs.empty())
2692 GEN_ERROR("Invalid upreference in type: " + (*$1)->getDescription());
Chris Lattner58af2a12006-02-15 07:22:58 +00002693 $$ = new std::list<std::pair<Value*, BasicBlock*> >();
Reid Spencera132e042006-12-03 05:46:11 +00002694 Value* tmpVal = getVal(*$1, $3);
Reid Spencer61c83e02006-08-18 08:43:06 +00002695 CHECK_FOR_ERROR
Reid Spencer5b7e7532006-09-28 19:28:24 +00002696 BasicBlock* tmpBB = getBBVal($5);
2697 CHECK_FOR_ERROR
2698 $$->push_back(std::make_pair(tmpVal, tmpBB));
Reid Spencera132e042006-12-03 05:46:11 +00002699 delete $1;
Chris Lattner58af2a12006-02-15 07:22:58 +00002700 }
2701 | PHIList ',' '[' ValueRef ',' ValueRef ']' {
2702 $$ = $1;
Reid Spencer5b7e7532006-09-28 19:28:24 +00002703 Value* tmpVal = getVal($1->front().first->getType(), $4);
Reid Spencer61c83e02006-08-18 08:43:06 +00002704 CHECK_FOR_ERROR
Reid Spencer5b7e7532006-09-28 19:28:24 +00002705 BasicBlock* tmpBB = getBBVal($6);
2706 CHECK_FOR_ERROR
2707 $1->push_back(std::make_pair(tmpVal, tmpBB));
Chris Lattner58af2a12006-02-15 07:22:58 +00002708 };
2709
2710
Reid Spencer14310612006-12-31 05:40:51 +00002711ValueRefList : Types ValueRef OptParamAttrs {
2712 if (!UpRefs.empty())
2713 GEN_ERROR("Invalid upreference in type: " + (*$1)->getDescription());
2714 // Used for call and invoke instructions
2715 $$ = new ValueRefList();
2716 ValueRefListEntry E; E.Attrs = $3; E.Val = getVal($1->get(), $2);
2717 $$->push_back(E);
Reid Spencer66728ef2007-03-20 01:13:36 +00002718 delete $1;
Chris Lattner58af2a12006-02-15 07:22:58 +00002719 }
Reid Spencer14310612006-12-31 05:40:51 +00002720 | ValueRefList ',' Types ValueRef OptParamAttrs {
2721 if (!UpRefs.empty())
2722 GEN_ERROR("Invalid upreference in type: " + (*$3)->getDescription());
Chris Lattner58af2a12006-02-15 07:22:58 +00002723 $$ = $1;
Reid Spencer14310612006-12-31 05:40:51 +00002724 ValueRefListEntry E; E.Attrs = $5; E.Val = getVal($3->get(), $4);
2725 $$->push_back(E);
Reid Spencer66728ef2007-03-20 01:13:36 +00002726 delete $3;
Reid Spencer61c83e02006-08-18 08:43:06 +00002727 CHECK_FOR_ERROR
Reid Spencer14310612006-12-31 05:40:51 +00002728 }
2729 | /*empty*/ { $$ = new ValueRefList(); };
Chris Lattner58af2a12006-02-15 07:22:58 +00002730
Reid Spencer14310612006-12-31 05:40:51 +00002731IndexList // Used for gep instructions and constant expressions
Reid Spencerc6c59fd2006-12-31 21:47:02 +00002732 : /*empty*/ { $$ = new std::vector<Value*>(); }
Reid Spencer14310612006-12-31 05:40:51 +00002733 | IndexList ',' ResolvedVal {
2734 $$ = $1;
2735 $$->push_back($3);
2736 CHECK_FOR_ERROR
2737 }
Reid Spencerc6c59fd2006-12-31 21:47:02 +00002738 ;
Chris Lattner58af2a12006-02-15 07:22:58 +00002739
2740OptTailCall : TAIL CALL {
2741 $$ = true;
Reid Spencer61c83e02006-08-18 08:43:06 +00002742 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002743 }
2744 | CALL {
2745 $$ = false;
Reid Spencer61c83e02006-08-18 08:43:06 +00002746 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002747 };
2748
Chris Lattner58af2a12006-02-15 07:22:58 +00002749InstVal : ArithmeticOps Types ValueRef ',' ValueRef {
Reid Spencer14310612006-12-31 05:40:51 +00002750 if (!UpRefs.empty())
2751 GEN_ERROR("Invalid upreference in type: " + (*$2)->getDescription());
Chris Lattner42a75512007-01-15 02:27:26 +00002752 if (!(*$2)->isInteger() && !(*$2)->isFloatingPoint() &&
Reid Spencer9d6565a2007-02-15 02:26:10 +00002753 !isa<VectorType>((*$2).get()))
Reid Spencer61c83e02006-08-18 08:43:06 +00002754 GEN_ERROR(
Reid Spencerb5334b02007-02-05 10:18:06 +00002755 "Arithmetic operator requires integer, FP, or packed operands");
Reid Spencer9d6565a2007-02-15 02:26:10 +00002756 if (isa<VectorType>((*$2).get()) &&
Reid Spencera132e042006-12-03 05:46:11 +00002757 ($1 == Instruction::URem ||
2758 $1 == Instruction::SRem ||
2759 $1 == Instruction::FRem))
Chris Lattner32980692007-02-19 07:44:24 +00002760 GEN_ERROR("Remainder not supported on vector types");
Reid Spencera132e042006-12-03 05:46:11 +00002761 Value* val1 = getVal(*$2, $3);
Reid Spencer5b7e7532006-09-28 19:28:24 +00002762 CHECK_FOR_ERROR
Reid Spencera132e042006-12-03 05:46:11 +00002763 Value* val2 = getVal(*$2, $5);
Reid Spencer5b7e7532006-09-28 19:28:24 +00002764 CHECK_FOR_ERROR
Reid Spencera132e042006-12-03 05:46:11 +00002765 $$ = BinaryOperator::create($1, val1, val2);
Chris Lattner58af2a12006-02-15 07:22:58 +00002766 if ($$ == 0)
Reid Spencerb5334b02007-02-05 10:18:06 +00002767 GEN_ERROR("binary operator returned null");
Reid Spencera132e042006-12-03 05:46:11 +00002768 delete $2;
Chris Lattner58af2a12006-02-15 07:22:58 +00002769 }
2770 | LogicalOps Types ValueRef ',' ValueRef {
Reid Spencer14310612006-12-31 05:40:51 +00002771 if (!UpRefs.empty())
2772 GEN_ERROR("Invalid upreference in type: " + (*$2)->getDescription());
Chris Lattner42a75512007-01-15 02:27:26 +00002773 if (!(*$2)->isInteger()) {
Reid Spencer9d6565a2007-02-15 02:26:10 +00002774 if (Instruction::isShift($1) || !isa<VectorType>($2->get()) ||
2775 !cast<VectorType>($2->get())->getElementType()->isInteger())
Reid Spencerb5334b02007-02-05 10:18:06 +00002776 GEN_ERROR("Logical operator requires integral operands");
Chris Lattner58af2a12006-02-15 07:22:58 +00002777 }
Reid Spencera132e042006-12-03 05:46:11 +00002778 Value* tmpVal1 = getVal(*$2, $3);
Reid Spencer5b7e7532006-09-28 19:28:24 +00002779 CHECK_FOR_ERROR
Reid Spencera132e042006-12-03 05:46:11 +00002780 Value* tmpVal2 = getVal(*$2, $5);
Reid Spencer5b7e7532006-09-28 19:28:24 +00002781 CHECK_FOR_ERROR
Reid Spencera132e042006-12-03 05:46:11 +00002782 $$ = BinaryOperator::create($1, tmpVal1, tmpVal2);
Chris Lattner58af2a12006-02-15 07:22:58 +00002783 if ($$ == 0)
Reid Spencerb5334b02007-02-05 10:18:06 +00002784 GEN_ERROR("binary operator returned null");
Reid Spencera132e042006-12-03 05:46:11 +00002785 delete $2;
Chris Lattner58af2a12006-02-15 07:22:58 +00002786 }
Reid Spencera132e042006-12-03 05:46:11 +00002787 | ICMP IPredicates Types ValueRef ',' ValueRef {
Reid Spencer14310612006-12-31 05:40:51 +00002788 if (!UpRefs.empty())
2789 GEN_ERROR("Invalid upreference in type: " + (*$3)->getDescription());
Reid Spencer9d6565a2007-02-15 02:26:10 +00002790 if (isa<VectorType>((*$3).get()))
Chris Lattner32980692007-02-19 07:44:24 +00002791 GEN_ERROR("Vector types not supported by icmp instruction");
Reid Spencera132e042006-12-03 05:46:11 +00002792 Value* tmpVal1 = getVal(*$3, $4);
2793 CHECK_FOR_ERROR
2794 Value* tmpVal2 = getVal(*$3, $6);
2795 CHECK_FOR_ERROR
2796 $$ = CmpInst::create($1, $2, tmpVal1, tmpVal2);
2797 if ($$ == 0)
Reid Spencerb5334b02007-02-05 10:18:06 +00002798 GEN_ERROR("icmp operator returned null");
Reid Spencer66728ef2007-03-20 01:13:36 +00002799 delete $3;
Reid Spencera132e042006-12-03 05:46:11 +00002800 }
2801 | FCMP FPredicates Types ValueRef ',' ValueRef {
Reid Spencer14310612006-12-31 05:40:51 +00002802 if (!UpRefs.empty())
2803 GEN_ERROR("Invalid upreference in type: " + (*$3)->getDescription());
Reid Spencer9d6565a2007-02-15 02:26:10 +00002804 if (isa<VectorType>((*$3).get()))
Chris Lattner32980692007-02-19 07:44:24 +00002805 GEN_ERROR("Vector types not supported by fcmp instruction");
Reid Spencera132e042006-12-03 05:46:11 +00002806 Value* tmpVal1 = getVal(*$3, $4);
2807 CHECK_FOR_ERROR
2808 Value* tmpVal2 = getVal(*$3, $6);
2809 CHECK_FOR_ERROR
2810 $$ = CmpInst::create($1, $2, tmpVal1, tmpVal2);
2811 if ($$ == 0)
Reid Spencerb5334b02007-02-05 10:18:06 +00002812 GEN_ERROR("fcmp operator returned null");
Reid Spencer66728ef2007-03-20 01:13:36 +00002813 delete $3;
Chris Lattner58af2a12006-02-15 07:22:58 +00002814 }
Reid Spencer3da59db2006-11-27 01:05:10 +00002815 | CastOps ResolvedVal TO Types {
Reid Spencer14310612006-12-31 05:40:51 +00002816 if (!UpRefs.empty())
2817 GEN_ERROR("Invalid upreference in type: " + (*$4)->getDescription());
Reid Spencera132e042006-12-03 05:46:11 +00002818 Value* Val = $2;
Reid Spencerb0fcf8f2007-01-17 02:48:45 +00002819 const Type* DestTy = $4->get();
2820 if (!CastInst::castIsValid($1, Val, DestTy))
2821 GEN_ERROR("invalid cast opcode for cast from '" +
2822 Val->getType()->getDescription() + "' to '" +
Reid Spencerb5334b02007-02-05 10:18:06 +00002823 DestTy->getDescription() + "'");
Reid Spencerb0fcf8f2007-01-17 02:48:45 +00002824 $$ = CastInst::create($1, Val, DestTy);
Reid Spencera132e042006-12-03 05:46:11 +00002825 delete $4;
Chris Lattner58af2a12006-02-15 07:22:58 +00002826 }
2827 | SELECT ResolvedVal ',' ResolvedVal ',' ResolvedVal {
Reid Spencer4fe16d62007-01-11 18:21:29 +00002828 if ($2->getType() != Type::Int1Ty)
Reid Spencerb5334b02007-02-05 10:18:06 +00002829 GEN_ERROR("select condition must be boolean");
Reid Spencera132e042006-12-03 05:46:11 +00002830 if ($4->getType() != $6->getType())
Reid Spencerb5334b02007-02-05 10:18:06 +00002831 GEN_ERROR("select value types should match");
Reid Spencera132e042006-12-03 05:46:11 +00002832 $$ = new SelectInst($2, $4, $6);
Reid Spencer61c83e02006-08-18 08:43:06 +00002833 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002834 }
2835 | VAARG ResolvedVal ',' Types {
Reid Spencer14310612006-12-31 05:40:51 +00002836 if (!UpRefs.empty())
2837 GEN_ERROR("Invalid upreference in type: " + (*$4)->getDescription());
Reid Spencera132e042006-12-03 05:46:11 +00002838 $$ = new VAArgInst($2, *$4);
2839 delete $4;
Reid Spencer61c83e02006-08-18 08:43:06 +00002840 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002841 }
Chris Lattner58af2a12006-02-15 07:22:58 +00002842 | EXTRACTELEMENT ResolvedVal ',' ResolvedVal {
Reid Spencera132e042006-12-03 05:46:11 +00002843 if (!ExtractElementInst::isValidOperands($2, $4))
Reid Spencerb5334b02007-02-05 10:18:06 +00002844 GEN_ERROR("Invalid extractelement operands");
Reid Spencera132e042006-12-03 05:46:11 +00002845 $$ = new ExtractElementInst($2, $4);
Reid Spencer61c83e02006-08-18 08:43:06 +00002846 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002847 }
2848 | INSERTELEMENT ResolvedVal ',' ResolvedVal ',' ResolvedVal {
Reid Spencera132e042006-12-03 05:46:11 +00002849 if (!InsertElementInst::isValidOperands($2, $4, $6))
Reid Spencerb5334b02007-02-05 10:18:06 +00002850 GEN_ERROR("Invalid insertelement operands");
Reid Spencera132e042006-12-03 05:46:11 +00002851 $$ = new InsertElementInst($2, $4, $6);
Reid Spencer61c83e02006-08-18 08:43:06 +00002852 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002853 }
Chris Lattnerd5efe842006-04-08 01:18:56 +00002854 | SHUFFLEVECTOR ResolvedVal ',' ResolvedVal ',' ResolvedVal {
Reid Spencera132e042006-12-03 05:46:11 +00002855 if (!ShuffleVectorInst::isValidOperands($2, $4, $6))
Reid Spencerb5334b02007-02-05 10:18:06 +00002856 GEN_ERROR("Invalid shufflevector operands");
Reid Spencera132e042006-12-03 05:46:11 +00002857 $$ = new ShuffleVectorInst($2, $4, $6);
Reid Spencer61c83e02006-08-18 08:43:06 +00002858 CHECK_FOR_ERROR
Chris Lattnerd5efe842006-04-08 01:18:56 +00002859 }
Chris Lattner58af2a12006-02-15 07:22:58 +00002860 | PHI_TOK PHIList {
2861 const Type *Ty = $2->front().first->getType();
2862 if (!Ty->isFirstClassType())
Reid Spencerb5334b02007-02-05 10:18:06 +00002863 GEN_ERROR("PHI node operands must be of first class type");
Chris Lattner58af2a12006-02-15 07:22:58 +00002864 $$ = new PHINode(Ty);
2865 ((PHINode*)$$)->reserveOperandSpace($2->size());
2866 while ($2->begin() != $2->end()) {
2867 if ($2->front().first->getType() != Ty)
Reid Spencerb5334b02007-02-05 10:18:06 +00002868 GEN_ERROR("All elements of a PHI node must be of the same type");
Chris Lattner58af2a12006-02-15 07:22:58 +00002869 cast<PHINode>($$)->addIncoming($2->front().first, $2->front().second);
2870 $2->pop_front();
2871 }
2872 delete $2; // Free the list...
Reid Spencer61c83e02006-08-18 08:43:06 +00002873 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002874 }
Reid Spencer218ded22007-01-05 17:07:23 +00002875 | OptTailCall OptCallingConv ResultTypes ValueRef '(' ValueRefList ')'
2876 OptFuncAttrs {
Reid Spencer14310612006-12-31 05:40:51 +00002877
2878 // Handle the short syntax
Reid Spencer3da59db2006-11-27 01:05:10 +00002879 const PointerType *PFTy = 0;
2880 const FunctionType *Ty = 0;
Reid Spencer218ded22007-01-05 17:07:23 +00002881 if (!(PFTy = dyn_cast<PointerType>($3->get())) ||
Chris Lattner58af2a12006-02-15 07:22:58 +00002882 !(Ty = dyn_cast<FunctionType>(PFTy->getElementType()))) {
2883 // Pull out the types of all of the arguments...
2884 std::vector<const Type*> ParamTypes;
Christopher Lamb5c104242007-04-22 20:09:11 +00002885 ParamAttrsVector Attrs;
2886 if ($8 != ParamAttr::None) {
2887 ParamAttrsWithIndex PAWI; PAWI.index = 0; PAWI.attrs = $8;
2888 Attrs.push_back(PAWI);
2889 }
Reid Spencer7b5d4662007-04-09 06:16:21 +00002890 unsigned index = 1;
2891 ValueRefList::iterator I = $6->begin(), E = $6->end();
2892 for (; I != E; ++I, ++index) {
Reid Spencer14310612006-12-31 05:40:51 +00002893 const Type *Ty = I->Val->getType();
2894 if (Ty == Type::VoidTy)
2895 GEN_ERROR("Short call syntax cannot be used with varargs");
2896 ParamTypes.push_back(Ty);
Christopher Lamb5c104242007-04-22 20:09:11 +00002897 if (I->Attrs != ParamAttr::None) {
2898 ParamAttrsWithIndex PAWI; PAWI.index = index; PAWI.attrs = I->Attrs;
2899 Attrs.push_back(PAWI);
2900 }
Chris Lattner58af2a12006-02-15 07:22:58 +00002901 }
2902
Christopher Lamb5c104242007-04-22 20:09:11 +00002903 ParamAttrsList *PAL = 0;
2904 if (!Attrs.empty())
2905 PAL = ParamAttrsList::get(Attrs);
Reid Spencer7b5d4662007-04-09 06:16:21 +00002906
Christopher Lamb5c104242007-04-22 20:09:11 +00002907 Ty = FunctionType::get($3->get(), ParamTypes, false, PAL);
Chris Lattner58af2a12006-02-15 07:22:58 +00002908 PFTy = PointerType::get(Ty);
2909 }
Chris Lattner6cdc6822007-04-26 05:31:05 +00002910
Chris Lattner58af2a12006-02-15 07:22:58 +00002911 Value *V = getVal(PFTy, $4); // Get the function we're calling...
Reid Spencer5b7e7532006-09-28 19:28:24 +00002912 CHECK_FOR_ERROR
Chris Lattner6cdc6822007-04-26 05:31:05 +00002913
Reid Spencer7780acb2007-04-16 06:56:07 +00002914 // Check for call to invalid intrinsic to avoid crashing later.
2915 if (Function *theF = dyn_cast<Function>(V)) {
Reid Spencered48de22007-04-16 22:02:23 +00002916 if (theF->hasName() && (theF->getValueName()->getKeyLength() >= 5) &&
Reid Spencer36fdde12007-04-16 20:35:38 +00002917 (0 == strncmp(theF->getValueName()->getKeyData(), "llvm.", 5)) &&
2918 !theF->getIntrinsicID(true))
Reid Spencer7780acb2007-04-16 06:56:07 +00002919 GEN_ERROR("Call to invalid LLVM intrinsic function '" +
2920 theF->getName() + "'");
2921 }
2922
Reid Spencer14310612006-12-31 05:40:51 +00002923 // Check the arguments
2924 ValueList Args;
2925 if ($6->empty()) { // Has no arguments?
Chris Lattner58af2a12006-02-15 07:22:58 +00002926 // Make sure no arguments is a good thing!
2927 if (Ty->getNumParams() != 0)
Reid Spencer61c83e02006-08-18 08:43:06 +00002928 GEN_ERROR("No arguments passed to a function that "
Reid Spencerb5334b02007-02-05 10:18:06 +00002929 "expects arguments");
Chris Lattner58af2a12006-02-15 07:22:58 +00002930 } else { // Has arguments?
2931 // Loop through FunctionType's arguments and ensure they are specified
2932 // correctly!
2933 //
2934 FunctionType::param_iterator I = Ty->param_begin();
2935 FunctionType::param_iterator E = Ty->param_end();
Reid Spencer14310612006-12-31 05:40:51 +00002936 ValueRefList::iterator ArgI = $6->begin(), ArgE = $6->end();
Chris Lattner58af2a12006-02-15 07:22:58 +00002937
Reid Spencer14310612006-12-31 05:40:51 +00002938 for (; ArgI != ArgE && I != E; ++ArgI, ++I) {
2939 if (ArgI->Val->getType() != *I)
2940 GEN_ERROR("Parameter " + ArgI->Val->getName()+ " is not of type '" +
Reid Spencerb5334b02007-02-05 10:18:06 +00002941 (*I)->getDescription() + "'");
Reid Spencer14310612006-12-31 05:40:51 +00002942 Args.push_back(ArgI->Val);
2943 }
2944 if (Ty->isVarArg()) {
2945 if (I == E)
2946 for (; ArgI != ArgE; ++ArgI)
2947 Args.push_back(ArgI->Val); // push the remaining varargs
2948 } else if (I != E || ArgI != ArgE)
Reid Spencerb5334b02007-02-05 10:18:06 +00002949 GEN_ERROR("Invalid number of parameters detected");
Chris Lattner58af2a12006-02-15 07:22:58 +00002950 }
Reid Spencer14310612006-12-31 05:40:51 +00002951 // Create the call node
Chris Lattner9d2fda62007-02-13 05:53:56 +00002952 CallInst *CI = new CallInst(V, &Args[0], Args.size());
Reid Spencer14310612006-12-31 05:40:51 +00002953 CI->setTailCall($1);
2954 CI->setCallingConv($2);
2955 $$ = CI;
Chris Lattner58af2a12006-02-15 07:22:58 +00002956 delete $6;
Reid Spencer41dff5e2007-01-26 08:05:27 +00002957 delete $3;
Reid Spencer61c83e02006-08-18 08:43:06 +00002958 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002959 }
2960 | MemoryInst {
2961 $$ = $1;
Reid Spencer61c83e02006-08-18 08:43:06 +00002962 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002963 };
2964
Chris Lattner58af2a12006-02-15 07:22:58 +00002965OptVolatile : VOLATILE {
2966 $$ = true;
Reid Spencer61c83e02006-08-18 08:43:06 +00002967 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002968 }
2969 | /* empty */ {
2970 $$ = false;
Reid Spencer61c83e02006-08-18 08:43:06 +00002971 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002972 };
2973
2974
2975
2976MemoryInst : MALLOC Types OptCAlign {
Reid Spencer14310612006-12-31 05:40:51 +00002977 if (!UpRefs.empty())
2978 GEN_ERROR("Invalid upreference in type: " + (*$2)->getDescription());
Reid Spencera132e042006-12-03 05:46:11 +00002979 $$ = new MallocInst(*$2, 0, $3);
2980 delete $2;
Reid Spencer61c83e02006-08-18 08:43:06 +00002981 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002982 }
Reid Spencera54b7cb2007-01-12 07:05:14 +00002983 | MALLOC Types ',' INTTYPE ValueRef OptCAlign {
Reid Spencer14310612006-12-31 05:40:51 +00002984 if (!UpRefs.empty())
2985 GEN_ERROR("Invalid upreference in type: " + (*$2)->getDescription());
Reid Spencera132e042006-12-03 05:46:11 +00002986 Value* tmpVal = getVal($4, $5);
Reid Spencer61c83e02006-08-18 08:43:06 +00002987 CHECK_FOR_ERROR
Reid Spencera132e042006-12-03 05:46:11 +00002988 $$ = new MallocInst(*$2, tmpVal, $6);
2989 delete $2;
Chris Lattner58af2a12006-02-15 07:22:58 +00002990 }
2991 | ALLOCA Types OptCAlign {
Reid Spencer14310612006-12-31 05:40:51 +00002992 if (!UpRefs.empty())
2993 GEN_ERROR("Invalid upreference in type: " + (*$2)->getDescription());
Reid Spencera132e042006-12-03 05:46:11 +00002994 $$ = new AllocaInst(*$2, 0, $3);
2995 delete $2;
Reid Spencer61c83e02006-08-18 08:43:06 +00002996 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002997 }
Reid Spencera54b7cb2007-01-12 07:05:14 +00002998 | ALLOCA Types ',' INTTYPE ValueRef OptCAlign {
Reid Spencer14310612006-12-31 05:40:51 +00002999 if (!UpRefs.empty())
3000 GEN_ERROR("Invalid upreference in type: " + (*$2)->getDescription());
Reid Spencera132e042006-12-03 05:46:11 +00003001 Value* tmpVal = getVal($4, $5);
Reid Spencer61c83e02006-08-18 08:43:06 +00003002 CHECK_FOR_ERROR
Reid Spencera132e042006-12-03 05:46:11 +00003003 $$ = new AllocaInst(*$2, tmpVal, $6);
3004 delete $2;
Chris Lattner58af2a12006-02-15 07:22:58 +00003005 }
3006 | FREE ResolvedVal {
Reid Spencera132e042006-12-03 05:46:11 +00003007 if (!isa<PointerType>($2->getType()))
Reid Spencer61c83e02006-08-18 08:43:06 +00003008 GEN_ERROR("Trying to free nonpointer type " +
Reid Spencerb5334b02007-02-05 10:18:06 +00003009 $2->getType()->getDescription() + "");
Reid Spencera132e042006-12-03 05:46:11 +00003010 $$ = new FreeInst($2);
Reid Spencer61c83e02006-08-18 08:43:06 +00003011 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00003012 }
3013
Christopher Lamb5c104242007-04-22 20:09:11 +00003014 | OptVolatile LOAD Types ValueRef OptCAlign {
Reid Spencer14310612006-12-31 05:40:51 +00003015 if (!UpRefs.empty())
3016 GEN_ERROR("Invalid upreference in type: " + (*$3)->getDescription());
Reid Spencera132e042006-12-03 05:46:11 +00003017 if (!isa<PointerType>($3->get()))
Reid Spencer61c83e02006-08-18 08:43:06 +00003018 GEN_ERROR("Can't load from nonpointer type: " +
Reid Spencera132e042006-12-03 05:46:11 +00003019 (*$3)->getDescription());
3020 if (!cast<PointerType>($3->get())->getElementType()->isFirstClassType())
Reid Spencer61c83e02006-08-18 08:43:06 +00003021 GEN_ERROR("Can't load from pointer of non-first-class type: " +
Reid Spencera132e042006-12-03 05:46:11 +00003022 (*$3)->getDescription());
3023 Value* tmpVal = getVal(*$3, $4);
Reid Spencer61c83e02006-08-18 08:43:06 +00003024 CHECK_FOR_ERROR
Christopher Lamb5c104242007-04-22 20:09:11 +00003025 $$ = new LoadInst(tmpVal, "", $1, $5);
Reid Spencera132e042006-12-03 05:46:11 +00003026 delete $3;
Chris Lattner58af2a12006-02-15 07:22:58 +00003027 }
Christopher Lamb5c104242007-04-22 20:09:11 +00003028 | OptVolatile STORE ResolvedVal ',' Types ValueRef OptCAlign {
Reid Spencer14310612006-12-31 05:40:51 +00003029 if (!UpRefs.empty())
3030 GEN_ERROR("Invalid upreference in type: " + (*$5)->getDescription());
Reid Spencera132e042006-12-03 05:46:11 +00003031 const PointerType *PT = dyn_cast<PointerType>($5->get());
Chris Lattner58af2a12006-02-15 07:22:58 +00003032 if (!PT)
Reid Spencer61c83e02006-08-18 08:43:06 +00003033 GEN_ERROR("Can't store to a nonpointer type: " +
Reid Spencera132e042006-12-03 05:46:11 +00003034 (*$5)->getDescription());
Chris Lattner58af2a12006-02-15 07:22:58 +00003035 const Type *ElTy = PT->getElementType();
Reid Spencera132e042006-12-03 05:46:11 +00003036 if (ElTy != $3->getType())
3037 GEN_ERROR("Can't store '" + $3->getType()->getDescription() +
Reid Spencerb5334b02007-02-05 10:18:06 +00003038 "' into space of type '" + ElTy->getDescription() + "'");
Chris Lattner58af2a12006-02-15 07:22:58 +00003039
Reid Spencera132e042006-12-03 05:46:11 +00003040 Value* tmpVal = getVal(*$5, $6);
Reid Spencer61c83e02006-08-18 08:43:06 +00003041 CHECK_FOR_ERROR
Christopher Lamb5c104242007-04-22 20:09:11 +00003042 $$ = new StoreInst($3, tmpVal, $1, $7);
Reid Spencera132e042006-12-03 05:46:11 +00003043 delete $5;
Chris Lattner58af2a12006-02-15 07:22:58 +00003044 }
3045 | GETELEMENTPTR Types ValueRef IndexList {
Reid Spencer14310612006-12-31 05:40:51 +00003046 if (!UpRefs.empty())
3047 GEN_ERROR("Invalid upreference in type: " + (*$2)->getDescription());
Reid Spencera132e042006-12-03 05:46:11 +00003048 if (!isa<PointerType>($2->get()))
Reid Spencerb5334b02007-02-05 10:18:06 +00003049 GEN_ERROR("getelementptr insn requires pointer operand");
Chris Lattner58af2a12006-02-15 07:22:58 +00003050
Chris Lattner7d9801d2007-02-13 00:58:01 +00003051 if (!GetElementPtrInst::getIndexedType(*$2, &(*$4)[0], $4->size(), true))
Reid Spencer61c83e02006-08-18 08:43:06 +00003052 GEN_ERROR("Invalid getelementptr indices for type '" +
Reid Spencerb5334b02007-02-05 10:18:06 +00003053 (*$2)->getDescription()+ "'");
Reid Spencera132e042006-12-03 05:46:11 +00003054 Value* tmpVal = getVal(*$2, $3);
Reid Spencer61c83e02006-08-18 08:43:06 +00003055 CHECK_FOR_ERROR
Chris Lattner7d9801d2007-02-13 00:58:01 +00003056 $$ = new GetElementPtrInst(tmpVal, &(*$4)[0], $4->size());
Reid Spencera132e042006-12-03 05:46:11 +00003057 delete $2;
Reid Spencer5b7e7532006-09-28 19:28:24 +00003058 delete $4;
Chris Lattner58af2a12006-02-15 07:22:58 +00003059 };
3060
3061
3062%%
Reid Spencer61c83e02006-08-18 08:43:06 +00003063
Reid Spencer14310612006-12-31 05:40:51 +00003064// common code from the two 'RunVMAsmParser' functions
3065static Module* RunParser(Module * M) {
3066
3067 llvmAsmlineno = 1; // Reset the current line number...
3068 CurModule.CurrentModule = M;
3069#if YYDEBUG
3070 yydebug = Debug;
3071#endif
3072
3073 // Check to make sure the parser succeeded
3074 if (yyparse()) {
3075 if (ParserResult)
3076 delete ParserResult;
3077 return 0;
3078 }
3079
Reid Spencer0d60b5a2007-03-30 01:37:39 +00003080 // Emit an error if there are any unresolved types left.
3081 if (!CurModule.LateResolveTypes.empty()) {
3082 const ValID &DID = CurModule.LateResolveTypes.begin()->first;
3083 if (DID.Type == ValID::LocalName) {
3084 GenerateError("Undefined type remains at eof: '"+DID.getName() + "'");
3085 } else {
3086 GenerateError("Undefined type remains at eof: #" + itostr(DID.Num));
3087 }
3088 if (ParserResult)
3089 delete ParserResult;
3090 return 0;
3091 }
3092
3093 // Emit an error if there are any unresolved values left.
3094 if (!CurModule.LateResolveValues.empty()) {
3095 Value *V = CurModule.LateResolveValues.back();
3096 std::map<Value*, std::pair<ValID, int> >::iterator I =
3097 CurModule.PlaceHolderInfo.find(V);
3098
3099 if (I != CurModule.PlaceHolderInfo.end()) {
3100 ValID &DID = I->second.first;
3101 if (DID.Type == ValID::LocalName) {
3102 GenerateError("Undefined value remains at eof: "+DID.getName() + "'");
3103 } else {
3104 GenerateError("Undefined value remains at eof: #" + itostr(DID.Num));
3105 }
3106 if (ParserResult)
3107 delete ParserResult;
3108 return 0;
3109 }
3110 }
3111
Reid Spencer14310612006-12-31 05:40:51 +00003112 // Check to make sure that parsing produced a result
3113 if (!ParserResult)
3114 return 0;
3115
3116 // Reset ParserResult variable while saving its value for the result.
3117 Module *Result = ParserResult;
3118 ParserResult = 0;
3119
3120 return Result;
3121}
3122
Reid Spencer61c83e02006-08-18 08:43:06 +00003123void llvm::GenerateError(const std::string &message, int LineNo) {
3124 if (LineNo == -1) LineNo = llvmAsmlineno;
3125 // TODO: column number in exception
3126 if (TheParseError)
3127 TheParseError->setError(CurFilename, message, LineNo);
3128 TriggerError = 1;
3129}
3130
Chris Lattner58af2a12006-02-15 07:22:58 +00003131int yyerror(const char *ErrorMsg) {
3132 std::string where
3133 = std::string((CurFilename == "-") ? std::string("<stdin>") : CurFilename)
3134 + ":" + utostr((unsigned) llvmAsmlineno) + ": ";
Reid Spenceref9b9a72007-02-05 20:47:22 +00003135 std::string errMsg = where + "error: " + std::string(ErrorMsg);
3136 if (yychar != YYEMPTY && yychar != 0)
3137 errMsg += " while reading token: '" + std::string(llvmAsmtext, llvmAsmleng)+
3138 "'";
Reid Spencer61c83e02006-08-18 08:43:06 +00003139 GenerateError(errMsg);
Chris Lattner58af2a12006-02-15 07:22:58 +00003140 return 0;
3141}