blob: 5cfc47dc9d7d75c480ebfbf6678a5ca50139b4dd [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//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Chris Lattner58af2a12006-02-15 07:22:58 +00007//
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"
Chandler Carruth02202192007-08-04 01:56:21 +000021#include "llvm/AutoUpgrade.h"
Chris Lattner58af2a12006-02-15 07:22:58 +000022#include "llvm/Support/GetElementPtrTypeIterator.h"
Reid Spencer14310612006-12-31 05:40:51 +000023#include "llvm/Support/CommandLine.h"
Chris Lattnerf7469af2007-01-31 04:44:08 +000024#include "llvm/ADT/SmallVector.h"
Chris Lattner58af2a12006-02-15 07:22:58 +000025#include "llvm/ADT/STLExtras.h"
26#include "llvm/Support/MathExtras.h"
Reid Spencer481169e2006-12-01 00:33:46 +000027#include "llvm/Support/Streams.h"
Chris Lattner58af2a12006-02-15 07:22:58 +000028#include <algorithm>
Chris Lattner58af2a12006-02-15 07:22:58 +000029#include <list>
Chris Lattner8adde282007-02-11 21:40:10 +000030#include <map>
Chris Lattner58af2a12006-02-15 07:22:58 +000031#include <utility>
32
Reid Spencere4f47592006-08-18 17:32:55 +000033// The following is a gross hack. In order to rid the libAsmParser library of
34// exceptions, we have to have a way of getting the yyparse function to go into
35// an error situation. So, whenever we want an error to occur, the GenerateError
36// function (see bottom of file) sets TriggerError. Then, at the end of each
37// production in the grammer we use CHECK_FOR_ERROR which will invoke YYERROR
38// (a goto) to put YACC in error state. Furthermore, several calls to
39// GenerateError are made from inside productions and they must simulate the
40// previous exception behavior by exiting the production immediately. We have
41// replaced these with the GEN_ERROR macro which calls GeneratError and then
42// immediately invokes YYERROR. This would be so much cleaner if it was a
43// recursive descent parser.
Reid Spencer61c83e02006-08-18 08:43:06 +000044static bool TriggerError = false;
Reid Spencerf63697d2006-10-09 17:36:59 +000045#define CHECK_FOR_ERROR { if (TriggerError) { TriggerError = false; YYABORT; } }
Reid Spencer61c83e02006-08-18 08:43:06 +000046#define GEN_ERROR(msg) { GenerateError(msg); YYERROR; }
47
Chris Lattner58af2a12006-02-15 07:22:58 +000048int yyerror(const char *ErrorMsg); // Forward declarations to prevent "implicit
49int yylex(); // declaration" of xxx warnings.
50int yyparse();
Chris Lattner58af2a12006-02-15 07:22:58 +000051using namespace llvm;
52
53static Module *ParserResult;
54
55// DEBUG_UPREFS - Define this symbol if you want to enable debugging output
56// relating to upreferences in the input stream.
57//
58//#define DEBUG_UPREFS 1
59#ifdef DEBUG_UPREFS
Bill Wendlinge8156192006-12-07 01:30:32 +000060#define UR_OUT(X) cerr << X
Chris Lattner58af2a12006-02-15 07:22:58 +000061#else
62#define UR_OUT(X)
63#endif
64
65#define YYERROR_VERBOSE 1
66
Chris Lattner58af2a12006-02-15 07:22:58 +000067static GlobalVariable *CurGV;
68
69
70// This contains info used when building the body of a function. It is
71// destroyed when the function is completed.
72//
73typedef std::vector<Value *> ValueList; // Numbered defs
Reid Spencer14310612006-12-31 05:40:51 +000074
Chris Lattner58af2a12006-02-15 07:22:58 +000075static void
Reid Spencer93c40032007-03-19 18:40:50 +000076ResolveDefinitions(ValueList &LateResolvers, ValueList *FutureLateResolvers=0);
Chris Lattner58af2a12006-02-15 07:22:58 +000077
78static struct PerModuleInfo {
79 Module *CurrentModule;
Reid Spencer93c40032007-03-19 18:40:50 +000080 ValueList Values; // Module level numbered definitions
81 ValueList LateResolveValues;
Reid Spencer861d9d62006-11-28 07:29:44 +000082 std::vector<PATypeHolder> Types;
83 std::map<ValID, PATypeHolder> LateResolveTypes;
Chris Lattner58af2a12006-02-15 07:22:58 +000084
85 /// PlaceHolderInfo - When temporary placeholder objects are created, remember
Chris Lattner0ad19702006-06-21 16:53:00 +000086 /// how they were referenced and on which line of the input they came from so
Chris Lattner58af2a12006-02-15 07:22:58 +000087 /// that we can resolve them later and print error messages as appropriate.
88 std::map<Value*, std::pair<ValID, int> > PlaceHolderInfo;
89
90 // GlobalRefs - This maintains a mapping between <Type, ValID>'s and forward
91 // references to global values. Global values may be referenced before they
92 // are defined, and if so, the temporary object that they represent is held
93 // here. This is used for forward references of GlobalValues.
94 //
95 typedef std::map<std::pair<const PointerType *,
96 ValID>, GlobalValue*> GlobalRefsType;
97 GlobalRefsType GlobalRefs;
98
99 void ModuleDone() {
100 // If we could not resolve some functions at function compilation time
101 // (calls to functions before they are defined), resolve them now... Types
102 // are resolved when the constant pool has been completely parsed.
103 //
104 ResolveDefinitions(LateResolveValues);
Reid Spencer5b7e7532006-09-28 19:28:24 +0000105 if (TriggerError)
106 return;
Chris Lattner58af2a12006-02-15 07:22:58 +0000107
108 // Check to make sure that all global value forward references have been
109 // resolved!
110 //
111 if (!GlobalRefs.empty()) {
112 std::string UndefinedReferences = "Unresolved global references exist:\n";
113
114 for (GlobalRefsType::iterator I = GlobalRefs.begin(), E =GlobalRefs.end();
115 I != E; ++I) {
116 UndefinedReferences += " " + I->first.first->getDescription() + " " +
117 I->first.second.getName() + "\n";
118 }
Reid Spencer61c83e02006-08-18 08:43:06 +0000119 GenerateError(UndefinedReferences);
Reid Spencer5b7e7532006-09-28 19:28:24 +0000120 return;
Chris Lattner58af2a12006-02-15 07:22:58 +0000121 }
122
Chandler Carruth02202192007-08-04 01:56:21 +0000123 // Look for intrinsic functions and CallInst that need to be upgraded
124 for (Module::iterator FI = CurrentModule->begin(),
125 FE = CurrentModule->end(); FI != FE; )
126 UpgradeCallsToIntrinsic(FI++); // must be post-increment, as we remove
127
Chris Lattner58af2a12006-02-15 07:22:58 +0000128 Values.clear(); // Clear out function local definitions
129 Types.clear();
130 CurrentModule = 0;
131 }
132
133 // GetForwardRefForGlobal - Check to see if there is a forward reference
134 // for this global. If so, remove it from the GlobalRefs map and return it.
135 // If not, just return null.
136 GlobalValue *GetForwardRefForGlobal(const PointerType *PTy, ValID ID) {
137 // Check to see if there is a forward reference to this global variable...
138 // if there is, eliminate it and patch the reference to use the new def'n.
139 GlobalRefsType::iterator I = GlobalRefs.find(std::make_pair(PTy, ID));
140 GlobalValue *Ret = 0;
141 if (I != GlobalRefs.end()) {
142 Ret = I->second;
143 GlobalRefs.erase(I);
144 }
145 return Ret;
146 }
Reid Spencer8c8a2dc2007-01-02 21:54:12 +0000147
148 bool TypeIsUnresolved(PATypeHolder* PATy) {
149 // If it isn't abstract, its resolved
150 const Type* Ty = PATy->get();
151 if (!Ty->isAbstract())
152 return false;
153 // Traverse the type looking for abstract types. If it isn't abstract then
154 // we don't need to traverse that leg of the type.
155 std::vector<const Type*> WorkList, SeenList;
156 WorkList.push_back(Ty);
157 while (!WorkList.empty()) {
158 const Type* Ty = WorkList.back();
159 SeenList.push_back(Ty);
160 WorkList.pop_back();
161 if (const OpaqueType* OpTy = dyn_cast<OpaqueType>(Ty)) {
162 // Check to see if this is an unresolved type
163 std::map<ValID, PATypeHolder>::iterator I = LateResolveTypes.begin();
164 std::map<ValID, PATypeHolder>::iterator E = LateResolveTypes.end();
165 for ( ; I != E; ++I) {
166 if (I->second.get() == OpTy)
167 return true;
168 }
169 } else if (const SequentialType* SeqTy = dyn_cast<SequentialType>(Ty)) {
170 const Type* TheTy = SeqTy->getElementType();
171 if (TheTy->isAbstract() && TheTy != Ty) {
172 std::vector<const Type*>::iterator I = SeenList.begin(),
173 E = SeenList.end();
174 for ( ; I != E; ++I)
175 if (*I == TheTy)
176 break;
177 if (I == E)
178 WorkList.push_back(TheTy);
179 }
180 } else if (const StructType* StrTy = dyn_cast<StructType>(Ty)) {
181 for (unsigned i = 0; i < StrTy->getNumElements(); ++i) {
182 const Type* TheTy = StrTy->getElementType(i);
183 if (TheTy->isAbstract() && TheTy != Ty) {
184 std::vector<const Type*>::iterator I = SeenList.begin(),
185 E = SeenList.end();
186 for ( ; I != E; ++I)
187 if (*I == TheTy)
188 break;
189 if (I == E)
190 WorkList.push_back(TheTy);
191 }
192 }
193 }
194 }
195 return false;
196 }
Chris Lattner58af2a12006-02-15 07:22:58 +0000197} CurModule;
198
199static struct PerFunctionInfo {
200 Function *CurrentFunction; // Pointer to current function being created
201
Reid Spencer93c40032007-03-19 18:40:50 +0000202 ValueList Values; // Keep track of #'d definitions
203 unsigned NextValNum;
204 ValueList LateResolveValues;
Reid Spenceref9b9a72007-02-05 20:47:22 +0000205 bool isDeclare; // Is this function a forward declararation?
Anton Korobeynikovb74ed072006-09-14 18:23:27 +0000206 GlobalValue::LinkageTypes Linkage; // Linkage for forward declaration.
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000207 GlobalValue::VisibilityTypes Visibility;
Chris Lattner58af2a12006-02-15 07:22:58 +0000208
209 /// BBForwardRefs - When we see forward references to basic blocks, keep
210 /// track of them here.
Reid Spencer93c40032007-03-19 18:40:50 +0000211 std::map<ValID, BasicBlock*> BBForwardRefs;
Chris Lattner58af2a12006-02-15 07:22:58 +0000212
213 inline PerFunctionInfo() {
214 CurrentFunction = 0;
215 isDeclare = false;
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000216 Linkage = GlobalValue::ExternalLinkage;
217 Visibility = GlobalValue::DefaultVisibility;
Chris Lattner58af2a12006-02-15 07:22:58 +0000218 }
219
220 inline void FunctionStart(Function *M) {
221 CurrentFunction = M;
Reid Spencer93c40032007-03-19 18:40:50 +0000222 NextValNum = 0;
Chris Lattner58af2a12006-02-15 07:22:58 +0000223 }
224
225 void FunctionDone() {
Chris Lattner58af2a12006-02-15 07:22:58 +0000226 // Any forward referenced blocks left?
Reid Spencer5b7e7532006-09-28 19:28:24 +0000227 if (!BBForwardRefs.empty()) {
Reid Spencer61c83e02006-08-18 08:43:06 +0000228 GenerateError("Undefined reference to label " +
Reid Spencer93c40032007-03-19 18:40:50 +0000229 BBForwardRefs.begin()->second->getName());
Reid Spencer5b7e7532006-09-28 19:28:24 +0000230 return;
231 }
Chris Lattner58af2a12006-02-15 07:22:58 +0000232
233 // Resolve all forward references now.
234 ResolveDefinitions(LateResolveValues, &CurModule.LateResolveValues);
235
236 Values.clear(); // Clear out function local definitions
Reid Spencer93c40032007-03-19 18:40:50 +0000237 BBForwardRefs.clear();
Chris Lattner58af2a12006-02-15 07:22:58 +0000238 CurrentFunction = 0;
239 isDeclare = false;
Anton Korobeynikovb74ed072006-09-14 18:23:27 +0000240 Linkage = GlobalValue::ExternalLinkage;
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000241 Visibility = GlobalValue::DefaultVisibility;
Chris Lattner58af2a12006-02-15 07:22:58 +0000242 }
243} CurFun; // Info for the current function...
244
245static bool inFunctionScope() { return CurFun.CurrentFunction != 0; }
246
247
248//===----------------------------------------------------------------------===//
249// Code to handle definitions of all the types
250//===----------------------------------------------------------------------===//
251
Chris Lattner15bd0952008-08-29 17:20:18 +0000252/// InsertValue - Insert a value into the value table. If it is named, this
253/// returns -1, otherwise it returns the slot number for the value.
254static int InsertValue(Value *V, ValueList &ValueTab = CurFun.Values) {
Reid Spencer93c40032007-03-19 18:40:50 +0000255 // Things that have names or are void typed don't get slot numbers
256 if (V->hasName() || (V->getType() == Type::VoidTy))
Chris Lattner15bd0952008-08-29 17:20:18 +0000257 return -1;
Chris Lattner58af2a12006-02-15 07:22:58 +0000258
Reid Spencer93c40032007-03-19 18:40:50 +0000259 // In the case of function values, we have to allow for the forward reference
260 // of basic blocks, which are included in the numbering. Consequently, we keep
261 // track of the next insertion location with NextValNum. When a BB gets
262 // inserted, it could change the size of the CurFun.Values vector.
263 if (&ValueTab == &CurFun.Values) {
264 if (ValueTab.size() <= CurFun.NextValNum)
265 ValueTab.resize(CurFun.NextValNum+1);
266 ValueTab[CurFun.NextValNum++] = V;
Chris Lattner15bd0952008-08-29 17:20:18 +0000267 return CurFun.NextValNum-1;
Reid Spencer93c40032007-03-19 18:40:50 +0000268 }
269 // For all other lists, its okay to just tack it on the back of the vector.
270 ValueTab.push_back(V);
Chris Lattner15bd0952008-08-29 17:20:18 +0000271 return ValueTab.size()-1;
Chris Lattner58af2a12006-02-15 07:22:58 +0000272}
273
274static const Type *getTypeVal(const ValID &D, bool DoNotImprovise = false) {
275 switch (D.Type) {
Reid Spencer41dff5e2007-01-26 08:05:27 +0000276 case ValID::LocalID: // Is it a numbered definition?
Chris Lattner58af2a12006-02-15 07:22:58 +0000277 // Module constants occupy the lowest numbered slots...
Reid Spencer41dff5e2007-01-26 08:05:27 +0000278 if (D.Num < CurModule.Types.size())
279 return CurModule.Types[D.Num];
Chris Lattner58af2a12006-02-15 07:22:58 +0000280 break;
Reid Spencer41dff5e2007-01-26 08:05:27 +0000281 case ValID::LocalName: // Is it a named definition?
Reid Spencer0a8a16b2007-05-22 18:52:55 +0000282 if (const Type *N = CurModule.CurrentModule->getTypeByName(D.getName())) {
Chris Lattner58af2a12006-02-15 07:22:58 +0000283 D.destroy(); // Free old strdup'd memory...
284 return N;
285 }
286 break;
287 default:
Reid Spencerb5334b02007-02-05 10:18:06 +0000288 GenerateError("Internal parser error: Invalid symbol type reference");
Reid Spencer5b7e7532006-09-28 19:28:24 +0000289 return 0;
Chris Lattner58af2a12006-02-15 07:22:58 +0000290 }
291
292 // If we reached here, we referenced either a symbol that we don't know about
293 // or an id number that hasn't been read yet. We may be referencing something
294 // forward, so just create an entry to be resolved later and get to it...
295 //
296 if (DoNotImprovise) return 0; // Do we just want a null to be returned?
297
298
299 if (inFunctionScope()) {
Reid Spencer41dff5e2007-01-26 08:05:27 +0000300 if (D.Type == ValID::LocalName) {
Reid Spencer61c83e02006-08-18 08:43:06 +0000301 GenerateError("Reference to an undefined type: '" + D.getName() + "'");
Reid Spencer5b7e7532006-09-28 19:28:24 +0000302 return 0;
303 } else {
Reid Spencer41dff5e2007-01-26 08:05:27 +0000304 GenerateError("Reference to an undefined type: #" + utostr(D.Num));
Reid Spencer5b7e7532006-09-28 19:28:24 +0000305 return 0;
306 }
Chris Lattner58af2a12006-02-15 07:22:58 +0000307 }
308
Reid Spencer861d9d62006-11-28 07:29:44 +0000309 std::map<ValID, PATypeHolder>::iterator I =CurModule.LateResolveTypes.find(D);
Chris Lattner58af2a12006-02-15 07:22:58 +0000310 if (I != CurModule.LateResolveTypes.end())
Reid Spencer861d9d62006-11-28 07:29:44 +0000311 return I->second;
Chris Lattner58af2a12006-02-15 07:22:58 +0000312
Reid Spencer861d9d62006-11-28 07:29:44 +0000313 Type *Typ = OpaqueType::get();
314 CurModule.LateResolveTypes.insert(std::make_pair(D, Typ));
315 return Typ;
Reid Spencera132e042006-12-03 05:46:11 +0000316 }
Chris Lattner58af2a12006-02-15 07:22:58 +0000317
Reid Spencer93c40032007-03-19 18:40:50 +0000318// getExistingVal - Look up the value specified by the provided type and
Chris Lattner58af2a12006-02-15 07:22:58 +0000319// the provided ValID. If the value exists and has already been defined, return
320// it. Otherwise return null.
321//
Reid Spencer93c40032007-03-19 18:40:50 +0000322static Value *getExistingVal(const Type *Ty, const ValID &D) {
Reid Spencer5b7e7532006-09-28 19:28:24 +0000323 if (isa<FunctionType>(Ty)) {
Reid Spencer61c83e02006-08-18 08:43:06 +0000324 GenerateError("Functions are not values and "
Chris Lattner58af2a12006-02-15 07:22:58 +0000325 "must be referenced as pointers");
Reid Spencer5b7e7532006-09-28 19:28:24 +0000326 return 0;
327 }
Chris Lattner58af2a12006-02-15 07:22:58 +0000328
329 switch (D.Type) {
Reid Spencer41dff5e2007-01-26 08:05:27 +0000330 case ValID::LocalID: { // Is it a numbered definition?
Reid Spencer41dff5e2007-01-26 08:05:27 +0000331 // Check that the number is within bounds.
Reid Spencer93c40032007-03-19 18:40:50 +0000332 if (D.Num >= CurFun.Values.size())
333 return 0;
334 Value *Result = CurFun.Values[D.Num];
335 if (Ty != Result->getType()) {
336 GenerateError("Numbered value (%" + utostr(D.Num) + ") of type '" +
337 Result->getType()->getDescription() + "' does not match "
338 "expected type, '" + Ty->getDescription() + "'");
339 return 0;
340 }
341 return Result;
Reid Spencer41dff5e2007-01-26 08:05:27 +0000342 }
343 case ValID::GlobalID: { // Is it a numbered definition?
Reid Spencer93c40032007-03-19 18:40:50 +0000344 if (D.Num >= CurModule.Values.size())
Reid Spenceref9b9a72007-02-05 20:47:22 +0000345 return 0;
Reid Spencer93c40032007-03-19 18:40:50 +0000346 Value *Result = CurModule.Values[D.Num];
347 if (Ty != Result->getType()) {
348 GenerateError("Numbered value (@" + utostr(D.Num) + ") of type '" +
349 Result->getType()->getDescription() + "' does not match "
350 "expected type, '" + Ty->getDescription() + "'");
Reid Spenceref9b9a72007-02-05 20:47:22 +0000351 return 0;
Reid Spencer93c40032007-03-19 18:40:50 +0000352 }
353 return Result;
Chris Lattner58af2a12006-02-15 07:22:58 +0000354 }
Reid Spencer41dff5e2007-01-26 08:05:27 +0000355
356 case ValID::LocalName: { // Is it a named definition?
Reid Spenceref9b9a72007-02-05 20:47:22 +0000357 if (!inFunctionScope())
358 return 0;
359 ValueSymbolTable &SymTab = CurFun.CurrentFunction->getValueSymbolTable();
Reid Spencer0a8a16b2007-05-22 18:52:55 +0000360 Value *N = SymTab.lookup(D.getName());
Reid Spenceref9b9a72007-02-05 20:47:22 +0000361 if (N == 0)
362 return 0;
363 if (N->getType() != Ty)
364 return 0;
Reid Spencer41dff5e2007-01-26 08:05:27 +0000365
366 D.destroy(); // Free old strdup'd memory...
367 return N;
368 }
369 case ValID::GlobalName: { // Is it a named definition?
Reid Spenceref9b9a72007-02-05 20:47:22 +0000370 ValueSymbolTable &SymTab = CurModule.CurrentModule->getValueSymbolTable();
Reid Spencer0a8a16b2007-05-22 18:52:55 +0000371 Value *N = SymTab.lookup(D.getName());
Reid Spenceref9b9a72007-02-05 20:47:22 +0000372 if (N == 0)
373 return 0;
374 if (N->getType() != Ty)
375 return 0;
Chris Lattner58af2a12006-02-15 07:22:58 +0000376
377 D.destroy(); // Free old strdup'd memory...
378 return N;
379 }
380
381 // Check to make sure that "Ty" is an integral type, and that our
382 // value will fit into the specified type...
383 case ValID::ConstSIntVal: // Is it a constant pool reference??
Chris Lattner38905612008-02-19 04:36:25 +0000384 if (!isa<IntegerType>(Ty) ||
385 !ConstantInt::isValueValidForType(Ty, D.ConstPool64)) {
Reid Spencer61c83e02006-08-18 08:43:06 +0000386 GenerateError("Signed integral constant '" +
Chris Lattner58af2a12006-02-15 07:22:58 +0000387 itostr(D.ConstPool64) + "' is invalid for type '" +
Reid Spencerb5334b02007-02-05 10:18:06 +0000388 Ty->getDescription() + "'");
Reid Spencer5b7e7532006-09-28 19:28:24 +0000389 return 0;
390 }
Reid Spencer49d273e2007-03-19 20:40:51 +0000391 return ConstantInt::get(Ty, D.ConstPool64, true);
Chris Lattner58af2a12006-02-15 07:22:58 +0000392
393 case ValID::ConstUIntVal: // Is it an unsigned const pool reference?
Chris Lattner38905612008-02-19 04:36:25 +0000394 if (isa<IntegerType>(Ty) &&
395 ConstantInt::isValueValidForType(Ty, D.UConstPool64))
Reid Spencerb83eb642006-10-20 07:07:24 +0000396 return ConstantInt::get(Ty, D.UConstPool64);
Chris Lattner38905612008-02-19 04:36:25 +0000397
398 if (!isa<IntegerType>(Ty) ||
399 !ConstantInt::isValueValidForType(Ty, D.ConstPool64)) {
400 GenerateError("Integral constant '" + utostr(D.UConstPool64) +
401 "' is invalid or out of range for type '" +
402 Ty->getDescription() + "'");
403 return 0;
Chris Lattner58af2a12006-02-15 07:22:58 +0000404 }
Chris Lattner38905612008-02-19 04:36:25 +0000405 // This is really a signed reference. Transmogrify.
406 return ConstantInt::get(Ty, D.ConstPool64, true);
Chris Lattner58af2a12006-02-15 07:22:58 +0000407
Chris Lattner1913b942008-07-11 00:30:39 +0000408 case ValID::ConstAPInt: // Is it an unsigned const pool reference?
409 if (!isa<IntegerType>(Ty)) {
410 GenerateError("Integral constant '" + D.getName() +
411 "' is invalid or out of range for type '" +
412 Ty->getDescription() + "'");
413 return 0;
414 }
415
416 {
417 APSInt Tmp = *D.ConstPoolInt;
418 Tmp.extOrTrunc(Ty->getPrimitiveSizeInBits());
419 return ConstantInt::get(Tmp);
420 }
421
Chris Lattner58af2a12006-02-15 07:22:58 +0000422 case ValID::ConstFPVal: // Is it a floating point const pool reference?
Chris Lattner38905612008-02-19 04:36:25 +0000423 if (!Ty->isFloatingPoint() ||
424 !ConstantFP::isValueValidForType(Ty, *D.ConstPoolFP)) {
Reid Spencerb5334b02007-02-05 10:18:06 +0000425 GenerateError("FP constant invalid for type");
Reid Spencer5b7e7532006-09-28 19:28:24 +0000426 return 0;
427 }
Chris Lattnerd8eb63f2008-04-20 00:41:19 +0000428 // Lexer has no type info, so builds all float and double FP constants
Dale Johannesenc72cd7e2007-09-11 18:33:39 +0000429 // as double. Fix this here. Long double does not need this.
430 if (&D.ConstPoolFP->getSemantics() == &APFloat::IEEEdouble &&
431 Ty==Type::FloatTy)
Dale Johannesen43421b32007-09-06 18:13:44 +0000432 D.ConstPoolFP->convert(APFloat::IEEEsingle, APFloat::rmNearestTiesToEven);
Chris Lattnerd8eb63f2008-04-20 00:41:19 +0000433 return ConstantFP::get(*D.ConstPoolFP);
Chris Lattner58af2a12006-02-15 07:22:58 +0000434
435 case ValID::ConstNullVal: // Is it a null value?
Reid Spencer5b7e7532006-09-28 19:28:24 +0000436 if (!isa<PointerType>(Ty)) {
Reid Spencerb5334b02007-02-05 10:18:06 +0000437 GenerateError("Cannot create a a non pointer null");
Reid Spencer5b7e7532006-09-28 19:28:24 +0000438 return 0;
439 }
Chris Lattner58af2a12006-02-15 07:22:58 +0000440 return ConstantPointerNull::get(cast<PointerType>(Ty));
441
442 case ValID::ConstUndefVal: // Is it an undef value?
443 return UndefValue::get(Ty);
444
445 case ValID::ConstZeroVal: // Is it a zero value?
446 return Constant::getNullValue(Ty);
447
448 case ValID::ConstantVal: // Fully resolved constant?
Reid Spencer5b7e7532006-09-28 19:28:24 +0000449 if (D.ConstantValue->getType() != Ty) {
Reid Spencerb5334b02007-02-05 10:18:06 +0000450 GenerateError("Constant expression type different from required type");
Reid Spencer5b7e7532006-09-28 19:28:24 +0000451 return 0;
452 }
Chris Lattner58af2a12006-02-15 07:22:58 +0000453 return D.ConstantValue;
454
455 case ValID::InlineAsmVal: { // Inline asm expression
456 const PointerType *PTy = dyn_cast<PointerType>(Ty);
457 const FunctionType *FTy =
458 PTy ? dyn_cast<FunctionType>(PTy->getElementType()) : 0;
Reid Spencer5b7e7532006-09-28 19:28:24 +0000459 if (!FTy || !InlineAsm::Verify(FTy, D.IAD->Constraints)) {
Reid Spencerb5334b02007-02-05 10:18:06 +0000460 GenerateError("Invalid type for asm constraint string");
Reid Spencer5b7e7532006-09-28 19:28:24 +0000461 return 0;
462 }
Chris Lattner58af2a12006-02-15 07:22:58 +0000463 InlineAsm *IA = InlineAsm::get(FTy, D.IAD->AsmString, D.IAD->Constraints,
464 D.IAD->HasSideEffects);
465 D.destroy(); // Free InlineAsmDescriptor.
466 return IA;
467 }
468 default:
Reid Spencera9720f52007-02-05 17:04:00 +0000469 assert(0 && "Unhandled case!");
Chris Lattner58af2a12006-02-15 07:22:58 +0000470 return 0;
471 } // End of switch
472
Reid Spencera9720f52007-02-05 17:04:00 +0000473 assert(0 && "Unhandled case!");
Chris Lattner58af2a12006-02-15 07:22:58 +0000474 return 0;
475}
476
Reid Spencer93c40032007-03-19 18:40:50 +0000477// getVal - This function is identical to getExistingVal, except that if a
Chris Lattner58af2a12006-02-15 07:22:58 +0000478// value is not already defined, it "improvises" by creating a placeholder var
479// that looks and acts just like the requested variable. When the value is
480// defined later, all uses of the placeholder variable are replaced with the
481// real thing.
482//
483static Value *getVal(const Type *Ty, const ValID &ID) {
Reid Spencer5b7e7532006-09-28 19:28:24 +0000484 if (Ty == Type::LabelTy) {
Reid Spencer61c83e02006-08-18 08:43:06 +0000485 GenerateError("Cannot use a basic block here");
Reid Spencer5b7e7532006-09-28 19:28:24 +0000486 return 0;
487 }
Chris Lattner58af2a12006-02-15 07:22:58 +0000488
489 // See if the value has already been defined.
Reid Spencer93c40032007-03-19 18:40:50 +0000490 Value *V = getExistingVal(Ty, ID);
Chris Lattner58af2a12006-02-15 07:22:58 +0000491 if (V) return V;
Reid Spencer5b7e7532006-09-28 19:28:24 +0000492 if (TriggerError) return 0;
Chris Lattner58af2a12006-02-15 07:22:58 +0000493
Reid Spencer5b7e7532006-09-28 19:28:24 +0000494 if (!Ty->isFirstClassType() && !isa<OpaqueType>(Ty)) {
Dan Gohmane4977cf2008-05-23 01:55:30 +0000495 GenerateError("Invalid use of a non-first-class type");
Reid Spencer5b7e7532006-09-28 19:28:24 +0000496 return 0;
497 }
Chris Lattner58af2a12006-02-15 07:22:58 +0000498
499 // If we reached here, we referenced either a symbol that we don't know about
500 // or an id number that hasn't been read yet. We may be referencing something
501 // forward, so just create an entry to be resolved later and get to it...
502 //
Anton Korobeynikov38e09802007-04-28 13:48:45 +0000503 switch (ID.Type) {
504 case ValID::GlobalName:
Reid Spencer9c9b63a2007-04-28 16:07:31 +0000505 case ValID::GlobalID: {
Anton Korobeynikov38e09802007-04-28 13:48:45 +0000506 const PointerType *PTy = dyn_cast<PointerType>(Ty);
507 if (!PTy) {
508 GenerateError("Invalid type for reference to global" );
509 return 0;
510 }
511 const Type* ElTy = PTy->getElementType();
512 if (const FunctionType *FTy = dyn_cast<FunctionType>(ElTy))
Gabor Greife64d2482008-04-06 23:07:54 +0000513 V = Function::Create(FTy, GlobalValue::ExternalLinkage);
Anton Korobeynikov38e09802007-04-28 13:48:45 +0000514 else
Christopher Lamba8ed9bf2007-12-11 09:02:08 +0000515 V = new GlobalVariable(ElTy, false, GlobalValue::ExternalLinkage, 0, "",
516 (Module*)0, false, PTy->getAddressSpace());
Anton Korobeynikov38e09802007-04-28 13:48:45 +0000517 break;
Reid Spencer9c9b63a2007-04-28 16:07:31 +0000518 }
Anton Korobeynikov38e09802007-04-28 13:48:45 +0000519 default:
520 V = new Argument(Ty);
521 }
522
Chris Lattner58af2a12006-02-15 07:22:58 +0000523 // Remember where this forward reference came from. FIXME, shouldn't we try
524 // to recycle these things??
525 CurModule.PlaceHolderInfo.insert(std::make_pair(V, std::make_pair(ID,
Duncan Sandsdc024672007-11-27 13:23:08 +0000526 LLLgetLineNo())));
Chris Lattner58af2a12006-02-15 07:22:58 +0000527
528 if (inFunctionScope())
529 InsertValue(V, CurFun.LateResolveValues);
530 else
531 InsertValue(V, CurModule.LateResolveValues);
532 return V;
533}
534
Reid Spencer93c40032007-03-19 18:40:50 +0000535/// defineBBVal - This is a definition of a new basic block with the specified
536/// identifier which must be the same as CurFun.NextValNum, if its numeric.
Nick Lewycky280a6e62008-04-25 16:53:59 +0000537static BasicBlock *defineBBVal(const ValID &ID) {
Reid Spencera9720f52007-02-05 17:04:00 +0000538 assert(inFunctionScope() && "Can't get basic block at global scope!");
Chris Lattner58af2a12006-02-15 07:22:58 +0000539
Chris Lattner58af2a12006-02-15 07:22:58 +0000540 BasicBlock *BB = 0;
Chris Lattner58af2a12006-02-15 07:22:58 +0000541
Reid Spencer93c40032007-03-19 18:40:50 +0000542 // First, see if this was forward referenced
Chris Lattner58af2a12006-02-15 07:22:58 +0000543
Reid Spencer93c40032007-03-19 18:40:50 +0000544 std::map<ValID, BasicBlock*>::iterator BBI = CurFun.BBForwardRefs.find(ID);
545 if (BBI != CurFun.BBForwardRefs.end()) {
546 BB = BBI->second;
Chris Lattner58af2a12006-02-15 07:22:58 +0000547 // The forward declaration could have been inserted anywhere in the
548 // function: insert it into the correct place now.
549 CurFun.CurrentFunction->getBasicBlockList().remove(BB);
550 CurFun.CurrentFunction->getBasicBlockList().push_back(BB);
Reid Spencer93c40032007-03-19 18:40:50 +0000551
Reid Spencer66728ef2007-03-20 01:13:36 +0000552 // We're about to erase the entry, save the key so we can clean it up.
553 ValID Tmp = BBI->first;
554
Reid Spencer93c40032007-03-19 18:40:50 +0000555 // Erase the forward ref from the map as its no longer "forward"
556 CurFun.BBForwardRefs.erase(ID);
557
Reid Spencer66728ef2007-03-20 01:13:36 +0000558 // The key has been removed from the map but so we don't want to leave
559 // strdup'd memory around so destroy it too.
560 Tmp.destroy();
561
Reid Spencer93c40032007-03-19 18:40:50 +0000562 // If its a numbered definition, bump the number and set the BB value.
563 if (ID.Type == ValID::LocalID) {
564 assert(ID.Num == CurFun.NextValNum && "Invalid new block number");
565 InsertValue(BB);
566 }
Devang Patel67909432008-03-03 18:58:47 +0000567 } else {
568 // We haven't seen this BB before and its first mention is a definition.
569 // Just create it and return it.
570 std::string Name (ID.Type == ValID::LocalName ? ID.getName() : "");
Gabor Greife64d2482008-04-06 23:07:54 +0000571 BB = BasicBlock::Create(Name, CurFun.CurrentFunction);
Devang Patel67909432008-03-03 18:58:47 +0000572 if (ID.Type == ValID::LocalID) {
573 assert(ID.Num == CurFun.NextValNum && "Invalid new block number");
574 InsertValue(BB);
575 }
Chris Lattner58af2a12006-02-15 07:22:58 +0000576 }
Reid Spencer93c40032007-03-19 18:40:50 +0000577
Devang Patel67909432008-03-03 18:58:47 +0000578 ID.destroy();
Reid Spencer93c40032007-03-19 18:40:50 +0000579 return BB;
580}
581
582/// getBBVal - get an existing BB value or create a forward reference for it.
583///
584static BasicBlock *getBBVal(const ValID &ID) {
585 assert(inFunctionScope() && "Can't get basic block at global scope!");
586
587 BasicBlock *BB = 0;
588
589 std::map<ValID, BasicBlock*>::iterator BBI = CurFun.BBForwardRefs.find(ID);
590 if (BBI != CurFun.BBForwardRefs.end()) {
591 BB = BBI->second;
592 } if (ID.Type == ValID::LocalName) {
Reid Spencer0a8a16b2007-05-22 18:52:55 +0000593 std::string Name = ID.getName();
Reid Spencer93c40032007-03-19 18:40:50 +0000594 Value *N = CurFun.CurrentFunction->getValueSymbolTable().lookup(Name);
Anton Korobeynikov4aefd6b2008-02-20 12:07:57 +0000595 if (N) {
Reid Spencer93c40032007-03-19 18:40:50 +0000596 if (N->getType()->getTypeID() == Type::LabelTyID)
597 BB = cast<BasicBlock>(N);
598 else
599 GenerateError("Reference to label '" + Name + "' is actually of type '"+
600 N->getType()->getDescription() + "'");
Anton Korobeynikov4aefd6b2008-02-20 12:07:57 +0000601 }
Reid Spencer93c40032007-03-19 18:40:50 +0000602 } else if (ID.Type == ValID::LocalID) {
603 if (ID.Num < CurFun.NextValNum && ID.Num < CurFun.Values.size()) {
604 if (CurFun.Values[ID.Num]->getType()->getTypeID() == Type::LabelTyID)
605 BB = cast<BasicBlock>(CurFun.Values[ID.Num]);
606 else
607 GenerateError("Reference to label '%" + utostr(ID.Num) +
608 "' is actually of type '"+
609 CurFun.Values[ID.Num]->getType()->getDescription() + "'");
610 }
611 } else {
612 GenerateError("Illegal label reference " + ID.getName());
613 return 0;
614 }
615
616 // If its already been defined, return it now.
617 if (BB) {
618 ID.destroy(); // Free strdup'd memory.
619 return BB;
620 }
621
622 // Otherwise, this block has not been seen before, create it.
623 std::string Name;
624 if (ID.Type == ValID::LocalName)
Reid Spencer0a8a16b2007-05-22 18:52:55 +0000625 Name = ID.getName();
Gabor Greife64d2482008-04-06 23:07:54 +0000626 BB = BasicBlock::Create(Name, CurFun.CurrentFunction);
Reid Spencer93c40032007-03-19 18:40:50 +0000627
628 // Insert it in the forward refs map.
629 CurFun.BBForwardRefs[ID] = BB;
630
Chris Lattner58af2a12006-02-15 07:22:58 +0000631 return BB;
632}
633
634
635//===----------------------------------------------------------------------===//
636// Code to handle forward references in instructions
637//===----------------------------------------------------------------------===//
638//
639// This code handles the late binding needed with statements that reference
640// values not defined yet... for example, a forward branch, or the PHI node for
641// a loop body.
642//
643// This keeps a table (CurFun.LateResolveValues) of all such forward references
644// and back patchs after we are done.
645//
646
647// ResolveDefinitions - If we could not resolve some defs at parsing
648// time (forward branches, phi functions for loops, etc...) resolve the
649// defs now...
650//
651static void
Reid Spencer93c40032007-03-19 18:40:50 +0000652ResolveDefinitions(ValueList &LateResolvers, ValueList *FutureLateResolvers) {
Chris Lattner58af2a12006-02-15 07:22:58 +0000653 // Loop over LateResolveDefs fixing up stuff that couldn't be resolved
Reid Spencer93c40032007-03-19 18:40:50 +0000654 while (!LateResolvers.empty()) {
655 Value *V = LateResolvers.back();
656 LateResolvers.pop_back();
Chris Lattner58af2a12006-02-15 07:22:58 +0000657
Reid Spencer93c40032007-03-19 18:40:50 +0000658 std::map<Value*, std::pair<ValID, int> >::iterator PHI =
659 CurModule.PlaceHolderInfo.find(V);
660 assert(PHI != CurModule.PlaceHolderInfo.end() && "Placeholder error!");
Chris Lattner58af2a12006-02-15 07:22:58 +0000661
Reid Spencer93c40032007-03-19 18:40:50 +0000662 ValID &DID = PHI->second.first;
Chris Lattner58af2a12006-02-15 07:22:58 +0000663
Reid Spencer93c40032007-03-19 18:40:50 +0000664 Value *TheRealValue = getExistingVal(V->getType(), DID);
665 if (TriggerError)
666 return;
667 if (TheRealValue) {
668 V->replaceAllUsesWith(TheRealValue);
669 delete V;
670 CurModule.PlaceHolderInfo.erase(PHI);
671 } else if (FutureLateResolvers) {
672 // Functions have their unresolved items forwarded to the module late
673 // resolver table
674 InsertValue(V, *FutureLateResolvers);
675 } else {
676 if (DID.Type == ValID::LocalName || DID.Type == ValID::GlobalName) {
677 GenerateError("Reference to an invalid definition: '" +DID.getName()+
678 "' of type '" + V->getType()->getDescription() + "'",
679 PHI->second.second);
Reid Spencer5b7e7532006-09-28 19:28:24 +0000680 return;
Chris Lattner58af2a12006-02-15 07:22:58 +0000681 } else {
Reid Spencer93c40032007-03-19 18:40:50 +0000682 GenerateError("Reference to an invalid definition: #" +
683 itostr(DID.Num) + " of type '" +
684 V->getType()->getDescription() + "'",
685 PHI->second.second);
686 return;
Chris Lattner58af2a12006-02-15 07:22:58 +0000687 }
688 }
689 }
Chris Lattner58af2a12006-02-15 07:22:58 +0000690 LateResolvers.clear();
691}
692
693// ResolveTypeTo - A brand new type was just declared. This means that (if
694// name is not null) things referencing Name can be resolved. Otherwise, things
695// refering to the number can be resolved. Do this now.
696//
Reid Spencer0a8a16b2007-05-22 18:52:55 +0000697static void ResolveTypeTo(std::string *Name, const Type *ToTy) {
Chris Lattner58af2a12006-02-15 07:22:58 +0000698 ValID D;
Reid Spencer0a8a16b2007-05-22 18:52:55 +0000699 if (Name)
700 D = ValID::createLocalName(*Name);
701 else
702 D = ValID::createLocalID(CurModule.Types.size());
Chris Lattner58af2a12006-02-15 07:22:58 +0000703
Reid Spencer861d9d62006-11-28 07:29:44 +0000704 std::map<ValID, PATypeHolder>::iterator I =
Chris Lattner58af2a12006-02-15 07:22:58 +0000705 CurModule.LateResolveTypes.find(D);
706 if (I != CurModule.LateResolveTypes.end()) {
Reid Spencer861d9d62006-11-28 07:29:44 +0000707 ((DerivedType*)I->second.get())->refineAbstractTypeTo(ToTy);
Chris Lattner58af2a12006-02-15 07:22:58 +0000708 CurModule.LateResolveTypes.erase(I);
709 }
710}
711
712// setValueName - Set the specified value to the name given. The name may be
713// null potentially, in which case this is a noop. The string passed in is
714// assumed to be a malloc'd string buffer, and is free'd by this function.
715//
Reid Spencer0a8a16b2007-05-22 18:52:55 +0000716static void setValueName(Value *V, std::string *NameStr) {
Reid Spencer41dff5e2007-01-26 08:05:27 +0000717 if (!NameStr) return;
Reid Spencer0a8a16b2007-05-22 18:52:55 +0000718 std::string Name(*NameStr); // Copy string
719 delete NameStr; // Free old string
Chris Lattner58af2a12006-02-15 07:22:58 +0000720
Reid Spencer41dff5e2007-01-26 08:05:27 +0000721 if (V->getType() == Type::VoidTy) {
Reid Spencerb5334b02007-02-05 10:18:06 +0000722 GenerateError("Can't assign name '" + Name+"' to value with void type");
Reid Spencer41dff5e2007-01-26 08:05:27 +0000723 return;
Chris Lattner58af2a12006-02-15 07:22:58 +0000724 }
Reid Spencer41dff5e2007-01-26 08:05:27 +0000725
Reid Spencera9720f52007-02-05 17:04:00 +0000726 assert(inFunctionScope() && "Must be in function scope!");
Reid Spenceref9b9a72007-02-05 20:47:22 +0000727 ValueSymbolTable &ST = CurFun.CurrentFunction->getValueSymbolTable();
728 if (ST.lookup(Name)) {
Reid Spencer41dff5e2007-01-26 08:05:27 +0000729 GenerateError("Redefinition of value '" + Name + "' of type '" +
Reid Spencerb5334b02007-02-05 10:18:06 +0000730 V->getType()->getDescription() + "'");
Reid Spencer41dff5e2007-01-26 08:05:27 +0000731 return;
732 }
733
734 // Set the name.
735 V->setName(Name);
Chris Lattner58af2a12006-02-15 07:22:58 +0000736}
737
738/// ParseGlobalVariable - Handle parsing of a global. If Initializer is null,
739/// this is a declaration, otherwise it is a definition.
740static GlobalVariable *
Reid Spencer0a8a16b2007-05-22 18:52:55 +0000741ParseGlobalVariable(std::string *NameStr,
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000742 GlobalValue::LinkageTypes Linkage,
743 GlobalValue::VisibilityTypes Visibility,
Chris Lattner58af2a12006-02-15 07:22:58 +0000744 bool isConstantGlobal, const Type *Ty,
Christopher Lamba8ed9bf2007-12-11 09:02:08 +0000745 Constant *Initializer, bool IsThreadLocal,
746 unsigned AddressSpace = 0) {
Reid Spencer5b7e7532006-09-28 19:28:24 +0000747 if (isa<FunctionType>(Ty)) {
Reid Spencerb5334b02007-02-05 10:18:06 +0000748 GenerateError("Cannot declare global vars of function type");
Reid Spencer5b7e7532006-09-28 19:28:24 +0000749 return 0;
750 }
Dan Gohman81a0c0b2008-05-31 00:58:22 +0000751 if (Ty == Type::LabelTy) {
752 GenerateError("Cannot declare global vars of label type");
753 return 0;
754 }
Chris Lattner58af2a12006-02-15 07:22:58 +0000755
Christopher Lamba8ed9bf2007-12-11 09:02:08 +0000756 const PointerType *PTy = PointerType::get(Ty, AddressSpace);
Chris Lattner58af2a12006-02-15 07:22:58 +0000757
758 std::string Name;
759 if (NameStr) {
Reid Spencer0a8a16b2007-05-22 18:52:55 +0000760 Name = *NameStr; // Copy string
761 delete NameStr; // Free old string
Chris Lattner58af2a12006-02-15 07:22:58 +0000762 }
763
764 // See if this global value was forward referenced. If so, recycle the
765 // object.
766 ValID ID;
767 if (!Name.empty()) {
Reid Spencer0a8a16b2007-05-22 18:52:55 +0000768 ID = ValID::createGlobalName(Name);
Chris Lattner58af2a12006-02-15 07:22:58 +0000769 } else {
Reid Spencer93c40032007-03-19 18:40:50 +0000770 ID = ValID::createGlobalID(CurModule.Values.size());
Chris Lattner58af2a12006-02-15 07:22:58 +0000771 }
772
773 if (GlobalValue *FWGV = CurModule.GetForwardRefForGlobal(PTy, ID)) {
774 // Move the global to the end of the list, from whereever it was
775 // previously inserted.
776 GlobalVariable *GV = cast<GlobalVariable>(FWGV);
777 CurModule.CurrentModule->getGlobalList().remove(GV);
778 CurModule.CurrentModule->getGlobalList().push_back(GV);
779 GV->setInitializer(Initializer);
780 GV->setLinkage(Linkage);
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000781 GV->setVisibility(Visibility);
Chris Lattner58af2a12006-02-15 07:22:58 +0000782 GV->setConstant(isConstantGlobal);
Lauro Ramos Venancioc7635522007-04-12 18:32:50 +0000783 GV->setThreadLocal(IsThreadLocal);
Chris Lattner58af2a12006-02-15 07:22:58 +0000784 InsertValue(GV, CurModule.Values);
785 return GV;
786 }
787
Reid Spenceref9b9a72007-02-05 20:47:22 +0000788 // If this global has a name
Chris Lattner58af2a12006-02-15 07:22:58 +0000789 if (!Name.empty()) {
Reid Spenceref9b9a72007-02-05 20:47:22 +0000790 // if the global we're parsing has an initializer (is a definition) and
791 // has external linkage.
792 if (Initializer && Linkage != GlobalValue::InternalLinkage)
793 // If there is already a global with external linkage with this name
794 if (CurModule.CurrentModule->getGlobalVariable(Name, false)) {
795 // If we allow this GVar to get created, it will be renamed in the
796 // symbol table because it conflicts with an existing GVar. We can't
797 // allow redefinition of GVars whose linking indicates that their name
798 // must stay the same. Issue the error.
799 GenerateError("Redefinition of global variable named '" + Name +
800 "' of type '" + Ty->getDescription() + "'");
801 return 0;
802 }
Chris Lattner58af2a12006-02-15 07:22:58 +0000803 }
804
805 // Otherwise there is no existing GV to use, create one now.
806 GlobalVariable *GV =
807 new GlobalVariable(Ty, isConstantGlobal, Linkage, Initializer, Name,
Christopher Lamba8ed9bf2007-12-11 09:02:08 +0000808 CurModule.CurrentModule, IsThreadLocal, AddressSpace);
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000809 GV->setVisibility(Visibility);
Chris Lattner58af2a12006-02-15 07:22:58 +0000810 InsertValue(GV, CurModule.Values);
811 return GV;
812}
813
814// setTypeName - Set the specified type to the name given. The name may be
815// null potentially, in which case this is a noop. The string passed in is
816// assumed to be a malloc'd string buffer, and is freed by this function.
817//
818// This function returns true if the type has already been defined, but is
819// allowed to be redefined in the specified context. If the name is a new name
820// for the type plane, it is inserted and false is returned.
Reid Spencer0a8a16b2007-05-22 18:52:55 +0000821static bool setTypeName(const Type *T, std::string *NameStr) {
Reid Spencera9720f52007-02-05 17:04:00 +0000822 assert(!inFunctionScope() && "Can't give types function-local names!");
Chris Lattner58af2a12006-02-15 07:22:58 +0000823 if (NameStr == 0) return false;
824
Reid Spencer0a8a16b2007-05-22 18:52:55 +0000825 std::string Name(*NameStr); // Copy string
826 delete NameStr; // Free old string
Chris Lattner58af2a12006-02-15 07:22:58 +0000827
828 // We don't allow assigning names to void type
Reid Spencer5b7e7532006-09-28 19:28:24 +0000829 if (T == Type::VoidTy) {
Reid Spencerb5334b02007-02-05 10:18:06 +0000830 GenerateError("Can't assign name '" + Name + "' to the void type");
Reid Spencer5b7e7532006-09-28 19:28:24 +0000831 return false;
832 }
Chris Lattner58af2a12006-02-15 07:22:58 +0000833
834 // Set the type name, checking for conflicts as we do so.
835 bool AlreadyExists = CurModule.CurrentModule->addTypeName(Name, T);
836
837 if (AlreadyExists) { // Inserting a name that is already defined???
838 const Type *Existing = CurModule.CurrentModule->getTypeByName(Name);
Reid Spencera9720f52007-02-05 17:04:00 +0000839 assert(Existing && "Conflict but no matching type?!");
Chris Lattner58af2a12006-02-15 07:22:58 +0000840
841 // There is only one case where this is allowed: when we are refining an
842 // opaque type. In this case, Existing will be an opaque type.
843 if (const OpaqueType *OpTy = dyn_cast<OpaqueType>(Existing)) {
844 // We ARE replacing an opaque type!
845 const_cast<OpaqueType*>(OpTy)->refineAbstractTypeTo(T);
846 return true;
847 }
848
849 // Otherwise, this is an attempt to redefine a type. That's okay if
850 // the redefinition is identical to the original. This will be so if
851 // Existing and T point to the same Type object. In this one case we
852 // allow the equivalent redefinition.
853 if (Existing == T) return true; // Yes, it's equal.
854
855 // Any other kind of (non-equivalent) redefinition is an error.
Reid Spencer63c34452007-01-05 21:51:07 +0000856 GenerateError("Redefinition of type named '" + Name + "' of type '" +
Reid Spencerb5334b02007-02-05 10:18:06 +0000857 T->getDescription() + "'");
Chris Lattner58af2a12006-02-15 07:22:58 +0000858 }
859
860 return false;
861}
862
863//===----------------------------------------------------------------------===//
864// Code for handling upreferences in type names...
865//
866
867// TypeContains - Returns true if Ty directly contains E in it.
868//
869static bool TypeContains(const Type *Ty, const Type *E) {
870 return std::find(Ty->subtype_begin(), Ty->subtype_end(),
871 E) != Ty->subtype_end();
872}
873
874namespace {
875 struct UpRefRecord {
876 // NestingLevel - The number of nesting levels that need to be popped before
877 // this type is resolved.
878 unsigned NestingLevel;
879
880 // LastContainedTy - This is the type at the current binding level for the
881 // type. Every time we reduce the nesting level, this gets updated.
882 const Type *LastContainedTy;
883
884 // UpRefTy - This is the actual opaque type that the upreference is
885 // represented with.
886 OpaqueType *UpRefTy;
887
888 UpRefRecord(unsigned NL, OpaqueType *URTy)
889 : NestingLevel(NL), LastContainedTy(URTy), UpRefTy(URTy) {}
890 };
891}
892
893// UpRefs - A list of the outstanding upreferences that need to be resolved.
894static std::vector<UpRefRecord> UpRefs;
895
896/// HandleUpRefs - Every time we finish a new layer of types, this function is
897/// called. It loops through the UpRefs vector, which is a list of the
898/// currently active types. For each type, if the up reference is contained in
899/// the newly completed type, we decrement the level count. When the level
900/// count reaches zero, the upreferenced type is the type that is passed in:
901/// thus we can complete the cycle.
902///
903static PATypeHolder HandleUpRefs(const Type *ty) {
Chris Lattner224f84f2006-08-18 17:34:45 +0000904 // If Ty isn't abstract, or if there are no up-references in it, then there is
905 // nothing to resolve here.
906 if (!ty->isAbstract() || UpRefs.empty()) return ty;
907
Chris Lattner58af2a12006-02-15 07:22:58 +0000908 PATypeHolder Ty(ty);
909 UR_OUT("Type '" << Ty->getDescription() <<
910 "' newly formed. Resolving upreferences.\n" <<
911 UpRefs.size() << " upreferences active!\n");
912
913 // If we find any resolvable upreferences (i.e., those whose NestingLevel goes
914 // to zero), we resolve them all together before we resolve them to Ty. At
915 // the end of the loop, if there is anything to resolve to Ty, it will be in
916 // this variable.
917 OpaqueType *TypeToResolve = 0;
918
919 for (unsigned i = 0; i != UpRefs.size(); ++i) {
920 UR_OUT(" UR#" << i << " - TypeContains(" << Ty->getDescription() << ", "
921 << UpRefs[i].second->getDescription() << ") = "
922 << (TypeContains(Ty, UpRefs[i].second) ? "true" : "false") << "\n");
923 if (TypeContains(Ty, UpRefs[i].LastContainedTy)) {
924 // Decrement level of upreference
925 unsigned Level = --UpRefs[i].NestingLevel;
926 UpRefs[i].LastContainedTy = Ty;
927 UR_OUT(" Uplevel Ref Level = " << Level << "\n");
928 if (Level == 0) { // Upreference should be resolved!
929 if (!TypeToResolve) {
930 TypeToResolve = UpRefs[i].UpRefTy;
931 } else {
932 UR_OUT(" * Resolving upreference for "
933 << UpRefs[i].second->getDescription() << "\n";
934 std::string OldName = UpRefs[i].UpRefTy->getDescription());
935 UpRefs[i].UpRefTy->refineAbstractTypeTo(TypeToResolve);
936 UR_OUT(" * Type '" << OldName << "' refined upreference to: "
937 << (const void*)Ty << ", " << Ty->getDescription() << "\n");
938 }
939 UpRefs.erase(UpRefs.begin()+i); // Remove from upreference list...
940 --i; // Do not skip the next element...
941 }
942 }
943 }
944
945 if (TypeToResolve) {
946 UR_OUT(" * Resolving upreference for "
947 << UpRefs[i].second->getDescription() << "\n";
948 std::string OldName = TypeToResolve->getDescription());
949 TypeToResolve->refineAbstractTypeTo(Ty);
950 }
951
952 return Ty;
953}
954
Chris Lattner58af2a12006-02-15 07:22:58 +0000955//===----------------------------------------------------------------------===//
956// RunVMAsmParser - Define an interface to this parser
957//===----------------------------------------------------------------------===//
958//
Reid Spencer14310612006-12-31 05:40:51 +0000959static Module* RunParser(Module * M);
960
Duncan Sandsdc024672007-11-27 13:23:08 +0000961Module *llvm::RunVMAsmParser(llvm::MemoryBuffer *MB) {
962 InitLLLexer(MB);
963 Module *M = RunParser(new Module(LLLgetFilename()));
964 FreeLexer();
965 return M;
Chris Lattner58af2a12006-02-15 07:22:58 +0000966}
967
968%}
969
970%union {
971 llvm::Module *ModuleVal;
972 llvm::Function *FunctionVal;
Chris Lattner58af2a12006-02-15 07:22:58 +0000973 llvm::BasicBlock *BasicBlockVal;
974 llvm::TerminatorInst *TermInstVal;
975 llvm::Instruction *InstVal;
Reid Spencera132e042006-12-03 05:46:11 +0000976 llvm::Constant *ConstVal;
Chris Lattner58af2a12006-02-15 07:22:58 +0000977
Reid Spencera132e042006-12-03 05:46:11 +0000978 const llvm::Type *PrimType;
Reid Spencer14310612006-12-31 05:40:51 +0000979 std::list<llvm::PATypeHolder> *TypeList;
Reid Spencera132e042006-12-03 05:46:11 +0000980 llvm::PATypeHolder *TypeVal;
981 llvm::Value *ValueVal;
Reid Spencera132e042006-12-03 05:46:11 +0000982 std::vector<llvm::Value*> *ValueList;
Dan Gohman81a0c0b2008-05-31 00:58:22 +0000983 std::vector<unsigned> *ConstantList;
Reid Spencer14310612006-12-31 05:40:51 +0000984 llvm::ArgListType *ArgList;
985 llvm::TypeWithAttrs TypeWithAttrs;
986 llvm::TypeWithAttrsList *TypeWithAttrsList;
Dale Johanneseneb57ea72007-11-05 21:20:28 +0000987 llvm::ParamList *ParamList;
Reid Spencer14310612006-12-31 05:40:51 +0000988
Chris Lattner58af2a12006-02-15 07:22:58 +0000989 // Represent the RHS of PHI node
Reid Spencera132e042006-12-03 05:46:11 +0000990 std::list<std::pair<llvm::Value*,
991 llvm::BasicBlock*> > *PHIList;
Chris Lattner58af2a12006-02-15 07:22:58 +0000992 std::vector<std::pair<llvm::Constant*, llvm::BasicBlock*> > *JumpTable;
Reid Spencera132e042006-12-03 05:46:11 +0000993 std::vector<llvm::Constant*> *ConstVector;
Chris Lattner58af2a12006-02-15 07:22:58 +0000994
995 llvm::GlobalValue::LinkageTypes Linkage;
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000996 llvm::GlobalValue::VisibilityTypes Visibility;
Dale Johannesen222ebf72008-02-19 21:40:51 +0000997 llvm::ParameterAttributes ParamAttrs;
Devang Pateld9b4a5f2008-09-23 22:35:17 +0000998 llvm::ParameterAttributes FunctionNotes;
Reid Spencer38c91a92007-02-28 02:24:54 +0000999 llvm::APInt *APIntVal;
Chris Lattner58af2a12006-02-15 07:22:58 +00001000 int64_t SInt64Val;
1001 uint64_t UInt64Val;
1002 int SIntVal;
1003 unsigned UIntVal;
Dale Johannesen43421b32007-09-06 18:13:44 +00001004 llvm::APFloat *FPVal;
Chris Lattner58af2a12006-02-15 07:22:58 +00001005 bool BoolVal;
1006
Reid Spencer0a8a16b2007-05-22 18:52:55 +00001007 std::string *StrVal; // This memory must be deleted
1008 llvm::ValID ValIDVal;
Chris Lattner58af2a12006-02-15 07:22:58 +00001009
Reid Spencera132e042006-12-03 05:46:11 +00001010 llvm::Instruction::BinaryOps BinaryOpVal;
1011 llvm::Instruction::TermOps TermOpVal;
1012 llvm::Instruction::MemoryOps MemOpVal;
1013 llvm::Instruction::CastOps CastOpVal;
1014 llvm::Instruction::OtherOps OtherOpVal;
Reid Spencera132e042006-12-03 05:46:11 +00001015 llvm::ICmpInst::Predicate IPredicate;
1016 llvm::FCmpInst::Predicate FPredicate;
Chris Lattner58af2a12006-02-15 07:22:58 +00001017}
1018
Reid Spencer14310612006-12-31 05:40:51 +00001019%type <ModuleVal> Module
Chris Lattner58af2a12006-02-15 07:22:58 +00001020%type <FunctionVal> Function FunctionProto FunctionHeader BasicBlockList
1021%type <BasicBlockVal> BasicBlock InstructionList
1022%type <TermInstVal> BBTerminatorInst
1023%type <InstVal> Inst InstVal MemoryInst
Anton Korobeynikov38e09802007-04-28 13:48:45 +00001024%type <ConstVal> ConstVal ConstExpr AliaseeRef
Chris Lattner58af2a12006-02-15 07:22:58 +00001025%type <ConstVector> ConstVector
1026%type <ArgList> ArgList ArgListH
Chris Lattner58af2a12006-02-15 07:22:58 +00001027%type <PHIList> PHIList
Dale Johanneseneb57ea72007-11-05 21:20:28 +00001028%type <ParamList> ParamList // For call param lists & GEP indices
Reid Spencer14310612006-12-31 05:40:51 +00001029%type <ValueList> IndexList // For GEP indices
Dan Gohman81a0c0b2008-05-31 00:58:22 +00001030%type <ConstantList> ConstantIndexList // For insertvalue/extractvalue indices
Reid Spencer14310612006-12-31 05:40:51 +00001031%type <TypeList> TypeListI
1032%type <TypeWithAttrsList> ArgTypeList ArgTypeListI
Reid Spencer218ded22007-01-05 17:07:23 +00001033%type <TypeWithAttrs> ArgType
Chris Lattner58af2a12006-02-15 07:22:58 +00001034%type <JumpTable> JumpTable
1035%type <BoolVal> GlobalType // GLOBAL or CONSTANT?
Lauro Ramos Venancioc7635522007-04-12 18:32:50 +00001036%type <BoolVal> ThreadLocal // 'thread_local' or not
Chris Lattner58af2a12006-02-15 07:22:58 +00001037%type <BoolVal> OptVolatile // 'volatile' or not
1038%type <BoolVal> OptTailCall // TAIL CALL or plain CALL.
1039%type <BoolVal> OptSideEffect // 'sideeffect' or not.
Reid Spencer14310612006-12-31 05:40:51 +00001040%type <Linkage> GVInternalLinkage GVExternalLinkage
1041%type <Linkage> FunctionDefineLinkage FunctionDeclareLinkage
Anton Korobeynikov77d0f972007-04-25 14:29:12 +00001042%type <Linkage> AliasLinkage
Anton Korobeynikov7f705592007-01-12 19:20:47 +00001043%type <Visibility> GVVisibilityStyle
Chris Lattner58af2a12006-02-15 07:22:58 +00001044
1045// ValueRef - Unresolved reference to a definition or BB
1046%type <ValIDVal> ValueRef ConstValueRef SymbolicValueRef
1047%type <ValueVal> ResolvedVal // <type> <valref> pair
Devang Patel7990dc72008-02-20 22:40:23 +00001048%type <ValueList> ReturnedVal
Chris Lattner58af2a12006-02-15 07:22:58 +00001049// Tokens and types for handling constant integer values
1050//
1051// ESINT64VAL - A negative number within long long range
1052%token <SInt64Val> ESINT64VAL
1053
1054// EUINT64VAL - A positive number within uns. long long range
1055%token <UInt64Val> EUINT64VAL
Chris Lattner58af2a12006-02-15 07:22:58 +00001056
Reid Spencer38c91a92007-02-28 02:24:54 +00001057// ESAPINTVAL - A negative number with arbitrary precision
1058%token <APIntVal> ESAPINTVAL
1059
1060// EUAPINTVAL - A positive number with arbitrary precision
1061%token <APIntVal> EUAPINTVAL
1062
Reid Spencer41dff5e2007-01-26 08:05:27 +00001063%token <UIntVal> LOCALVAL_ID GLOBALVAL_ID // %123 @123
Chris Lattner58af2a12006-02-15 07:22:58 +00001064%token <FPVal> FPVAL // Float or Double constant
1065
1066// Built in types...
Reid Spencer218ded22007-01-05 17:07:23 +00001067%type <TypeVal> Types ResultTypes
Reid Spencer14310612006-12-31 05:40:51 +00001068%type <PrimType> IntType FPType PrimType // Classifications
Reid Spencer6f407902007-01-13 05:00:46 +00001069%token <PrimType> VOID INTTYPE
Dale Johannesen320fc8a2007-08-03 01:03:46 +00001070%token <PrimType> FLOAT DOUBLE X86_FP80 FP128 PPC_FP128 LABEL
Reid Spencer6fd36ab2006-12-29 20:35:03 +00001071%token TYPE
Chris Lattner58af2a12006-02-15 07:22:58 +00001072
Reid Spencer0a8a16b2007-05-22 18:52:55 +00001073
Reid Spencered951ea2007-05-19 07:22:10 +00001074%token<StrVal> LOCALVAR GLOBALVAR LABELSTR
1075%token<StrVal> STRINGCONSTANT ATSTRINGCONSTANT PCTSTRINGCONSTANT
Reid Spencer41dff5e2007-01-26 08:05:27 +00001076%type <StrVal> LocalName OptLocalName OptLocalAssign
Anton Korobeynikov77d0f972007-04-25 14:29:12 +00001077%type <StrVal> GlobalName OptGlobalAssign GlobalAssign
Gordon Henriksen80a75bf2007-12-10 03:18:06 +00001078%type <StrVal> OptSection SectionString OptGC
Chris Lattner58af2a12006-02-15 07:22:58 +00001079
Christopher Lambbf3348d2007-12-12 08:45:45 +00001080%type <UIntVal> OptAlign OptCAlign OptAddrSpace
Reid Spencer0a8a16b2007-05-22 18:52:55 +00001081
Reid Spencer3d6b71e2007-04-09 01:56:05 +00001082%token ZEROINITIALIZER TRUETOK FALSETOK BEGINTOK ENDTOK
Anton Korobeynikov77d0f972007-04-25 14:29:12 +00001083%token DECLARE DEFINE GLOBAL CONSTANT SECTION ALIAS VOLATILE THREAD_LOCAL
Reid Spencer14310612006-12-31 05:40:51 +00001084%token TO DOTDOTDOT NULL_TOK UNDEF INTERNAL LINKONCE WEAK APPENDING
Dale Johannesenc7071cc2008-05-14 20:13:36 +00001085%token DLLIMPORT DLLEXPORT EXTERN_WEAK COMMON
Christopher Lamba8ed9bf2007-12-11 09:02:08 +00001086%token OPAQUE EXTERNAL TARGET TRIPLE ALIGN ADDRSPACE
Chris Lattner58af2a12006-02-15 07:22:58 +00001087%token DEPLIBS CALL TAIL ASM_TOK MODULE SIDEEFFECT
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00001088%token CC_TOK CCC_TOK FASTCC_TOK COLDCC_TOK X86_STDCALLCC_TOK X86_FASTCALLCC_TOK
Dale Johannesen20ab78b2008-08-13 18:41:46 +00001089%token X86_SSECALLCC_TOK
Nick Lewycky280a6e62008-04-25 16:53:59 +00001090%token DATALAYOUT
Chris Lattner15bd0952008-08-29 17:20:18 +00001091%type <UIntVal> OptCallingConv LocalNumber
Reid Spencer218ded22007-01-05 17:07:23 +00001092%type <ParamAttrs> OptParamAttrs ParamAttr
1093%type <ParamAttrs> OptFuncAttrs FuncAttr
Devang Pateld9b4a5f2008-09-23 22:35:17 +00001094%type <ParamAttrs> OptFuncNotes FuncNote
1095%type <ParamAttrs> FuncNoteList
Chris Lattner58af2a12006-02-15 07:22:58 +00001096
1097// Basic Block Terminating Operators
1098%token <TermOpVal> RET BR SWITCH INVOKE UNWIND UNREACHABLE
1099
1100// Binary Operators
Reid Spencere4d87aa2006-12-23 06:05:41 +00001101%type <BinaryOpVal> ArithmeticOps LogicalOps // Binops Subcatagories
Reid Spencer3ed469c2006-11-02 20:25:50 +00001102%token <BinaryOpVal> ADD SUB MUL UDIV SDIV FDIV UREM SREM FREM AND OR XOR
Reid Spencer832254e2007-02-02 02:16:23 +00001103%token <BinaryOpVal> SHL LSHR ASHR
1104
Dan Gohmand8ee59b2008-09-09 01:13:24 +00001105%token <OtherOpVal> ICMP FCMP VICMP VFCMP
Reid Spencera132e042006-12-03 05:46:11 +00001106%type <IPredicate> IPredicates
Reid Spencera132e042006-12-03 05:46:11 +00001107%type <FPredicate> FPredicates
Reid Spencer6e18b7d2006-12-03 06:59:29 +00001108%token EQ NE SLT SGT SLE SGE ULT UGT ULE UGE
1109%token OEQ ONE OLT OGT OLE OGE ORD UNO UEQ UNE
Chris Lattner58af2a12006-02-15 07:22:58 +00001110
1111// Memory Instructions
1112%token <MemOpVal> MALLOC ALLOCA FREE LOAD STORE GETELEMENTPTR
1113
Reid Spencer3da59db2006-11-27 01:05:10 +00001114// Cast Operators
1115%type <CastOpVal> CastOps
1116%token <CastOpVal> TRUNC ZEXT SEXT FPTRUNC FPEXT BITCAST
1117%token <CastOpVal> UITOFP SITOFP FPTOUI FPTOSI INTTOPTR PTRTOINT
1118
Chris Lattner58af2a12006-02-15 07:22:58 +00001119// Other Operators
Reid Spencer832254e2007-02-02 02:16:23 +00001120%token <OtherOpVal> PHI_TOK SELECT VAARG
Chris Lattnerd5efe842006-04-08 01:18:56 +00001121%token <OtherOpVal> EXTRACTELEMENT INSERTELEMENT SHUFFLEVECTOR
Devang Patel5a970972008-02-19 22:27:01 +00001122%token <OtherOpVal> GETRESULT
Dan Gohmane4977cf2008-05-23 01:55:30 +00001123%token <OtherOpVal> EXTRACTVALUE INSERTVALUE
Chris Lattner58af2a12006-02-15 07:22:58 +00001124
Reid Spencer218ded22007-01-05 17:07:23 +00001125// Function Attributes
Reid Spencerb8f85052007-07-31 03:50:36 +00001126%token SIGNEXT ZEROEXT NORETURN INREG SRET NOUNWIND NOALIAS BYVAL NEST
Gordon Henriksen80a75bf2007-12-10 03:18:06 +00001127%token READNONE READONLY GC
Chris Lattner58af2a12006-02-15 07:22:58 +00001128
Devang Pateld4980812008-09-02 20:52:40 +00001129// Function Notes
1130%token FNNOTE INLINE ALWAYS NEVER OPTIMIZEFORSIZE
1131
Anton Korobeynikov7f705592007-01-12 19:20:47 +00001132// Visibility Styles
Anton Korobeynikov6f9896f2007-04-29 18:35:00 +00001133%token DEFAULT HIDDEN PROTECTED
Anton Korobeynikov7f705592007-01-12 19:20:47 +00001134
Chris Lattner58af2a12006-02-15 07:22:58 +00001135%start Module
1136%%
1137
Chris Lattner58af2a12006-02-15 07:22:58 +00001138
Chris Lattner58af2a12006-02-15 07:22:58 +00001139// Operations that are notably excluded from this list include:
1140// RET, BR, & SWITCH because they end basic blocks and are treated specially.
1141//
Reid Spencer3ed469c2006-11-02 20:25:50 +00001142ArithmeticOps: ADD | SUB | MUL | UDIV | SDIV | FDIV | UREM | SREM | FREM;
Reid Spencer832254e2007-02-02 02:16:23 +00001143LogicalOps : SHL | LSHR | ASHR | AND | OR | XOR;
Reid Spencer3da59db2006-11-27 01:05:10 +00001144CastOps : TRUNC | ZEXT | SEXT | FPTRUNC | FPEXT | BITCAST |
1145 UITOFP | SITOFP | FPTOUI | FPTOSI | INTTOPTR | PTRTOINT;
Reid Spencer832254e2007-02-02 02:16:23 +00001146
Reid Spencer6e18b7d2006-12-03 06:59:29 +00001147IPredicates
Reid Spencer4012e832006-12-04 05:24:24 +00001148 : EQ { $$ = ICmpInst::ICMP_EQ; } | NE { $$ = ICmpInst::ICMP_NE; }
Reid Spencer6e18b7d2006-12-03 06:59:29 +00001149 | SLT { $$ = ICmpInst::ICMP_SLT; } | SGT { $$ = ICmpInst::ICMP_SGT; }
1150 | SLE { $$ = ICmpInst::ICMP_SLE; } | SGE { $$ = ICmpInst::ICMP_SGE; }
1151 | ULT { $$ = ICmpInst::ICMP_ULT; } | UGT { $$ = ICmpInst::ICMP_UGT; }
1152 | ULE { $$ = ICmpInst::ICMP_ULE; } | UGE { $$ = ICmpInst::ICMP_UGE; }
1153 ;
1154
1155FPredicates
1156 : OEQ { $$ = FCmpInst::FCMP_OEQ; } | ONE { $$ = FCmpInst::FCMP_ONE; }
1157 | OLT { $$ = FCmpInst::FCMP_OLT; } | OGT { $$ = FCmpInst::FCMP_OGT; }
1158 | OLE { $$ = FCmpInst::FCMP_OLE; } | OGE { $$ = FCmpInst::FCMP_OGE; }
1159 | ORD { $$ = FCmpInst::FCMP_ORD; } | UNO { $$ = FCmpInst::FCMP_UNO; }
1160 | UEQ { $$ = FCmpInst::FCMP_UEQ; } | UNE { $$ = FCmpInst::FCMP_UNE; }
1161 | ULT { $$ = FCmpInst::FCMP_ULT; } | UGT { $$ = FCmpInst::FCMP_UGT; }
1162 | ULE { $$ = FCmpInst::FCMP_ULE; } | UGE { $$ = FCmpInst::FCMP_UGE; }
1163 | TRUETOK { $$ = FCmpInst::FCMP_TRUE; }
1164 | FALSETOK { $$ = FCmpInst::FCMP_FALSE; }
1165 ;
Chris Lattner58af2a12006-02-15 07:22:58 +00001166
1167// These are some types that allow classification if we only want a particular
1168// thing... for example, only a signed, unsigned, or integral type.
Reid Spencera54b7cb2007-01-12 07:05:14 +00001169IntType : INTTYPE;
Dale Johannesen320fc8a2007-08-03 01:03:46 +00001170FPType : FLOAT | DOUBLE | PPC_FP128 | FP128 | X86_FP80;
Chris Lattner58af2a12006-02-15 07:22:58 +00001171
Reid Spencer0a8a16b2007-05-22 18:52:55 +00001172LocalName : LOCALVAR | STRINGCONSTANT | PCTSTRINGCONSTANT ;
Reid Spencer41dff5e2007-01-26 08:05:27 +00001173OptLocalName : LocalName | /*empty*/ { $$ = 0; };
1174
Christopher Lambbf3348d2007-12-12 08:45:45 +00001175OptAddrSpace : ADDRSPACE '(' EUINT64VAL ')' { $$=$3; }
1176 | /*empty*/ { $$=0; };
1177
Reid Spencer41dff5e2007-01-26 08:05:27 +00001178/// OptLocalAssign - Value producing statements have an optional assignment
1179/// component.
1180OptLocalAssign : LocalName '=' {
1181 $$ = $1;
1182 CHECK_FOR_ERROR
1183 }
1184 | /*empty*/ {
1185 $$ = 0;
1186 CHECK_FOR_ERROR
1187 };
1188
Chris Lattner15bd0952008-08-29 17:20:18 +00001189LocalNumber : LOCALVAL_ID '=' {
1190 $$ = $1;
1191 CHECK_FOR_ERROR
1192};
1193
1194
Reid Spencer0a8a16b2007-05-22 18:52:55 +00001195GlobalName : GLOBALVAR | ATSTRINGCONSTANT ;
Reid Spencer41dff5e2007-01-26 08:05:27 +00001196
Anton Korobeynikov77d0f972007-04-25 14:29:12 +00001197OptGlobalAssign : GlobalAssign
Chris Lattner58af2a12006-02-15 07:22:58 +00001198 | /*empty*/ {
1199 $$ = 0;
Reid Spencer61c83e02006-08-18 08:43:06 +00001200 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001201 };
1202
Anton Korobeynikov77d0f972007-04-25 14:29:12 +00001203GlobalAssign : GlobalName '=' {
1204 $$ = $1;
1205 CHECK_FOR_ERROR
Chris Lattner6cdc6822007-04-26 05:31:05 +00001206 };
Anton Korobeynikov77d0f972007-04-25 14:29:12 +00001207
Reid Spencer6fd36ab2006-12-29 20:35:03 +00001208GVInternalLinkage
1209 : INTERNAL { $$ = GlobalValue::InternalLinkage; }
1210 | WEAK { $$ = GlobalValue::WeakLinkage; }
1211 | LINKONCE { $$ = GlobalValue::LinkOnceLinkage; }
1212 | APPENDING { $$ = GlobalValue::AppendingLinkage; }
1213 | DLLEXPORT { $$ = GlobalValue::DLLExportLinkage; }
Dale Johannesenc7071cc2008-05-14 20:13:36 +00001214 | COMMON { $$ = GlobalValue::CommonLinkage; }
Reid Spencer6fd36ab2006-12-29 20:35:03 +00001215 ;
1216
1217GVExternalLinkage
1218 : DLLIMPORT { $$ = GlobalValue::DLLImportLinkage; }
1219 | EXTERN_WEAK { $$ = GlobalValue::ExternalWeakLinkage; }
1220 | EXTERNAL { $$ = GlobalValue::ExternalLinkage; }
1221 ;
1222
Anton Korobeynikov7f705592007-01-12 19:20:47 +00001223GVVisibilityStyle
Anton Korobeynikov6f9896f2007-04-29 18:35:00 +00001224 : /*empty*/ { $$ = GlobalValue::DefaultVisibility; }
1225 | DEFAULT { $$ = GlobalValue::DefaultVisibility; }
1226 | HIDDEN { $$ = GlobalValue::HiddenVisibility; }
1227 | PROTECTED { $$ = GlobalValue::ProtectedVisibility; }
Anton Korobeynikov7f705592007-01-12 19:20:47 +00001228 ;
1229
Reid Spencer14310612006-12-31 05:40:51 +00001230FunctionDeclareLinkage
1231 : /*empty*/ { $$ = GlobalValue::ExternalLinkage; }
1232 | DLLIMPORT { $$ = GlobalValue::DLLImportLinkage; }
1233 | EXTERN_WEAK { $$ = GlobalValue::ExternalWeakLinkage; }
Reid Spencer6fd36ab2006-12-29 20:35:03 +00001234 ;
1235
Anton Korobeynikov77d0f972007-04-25 14:29:12 +00001236FunctionDefineLinkage
Reid Spencer14310612006-12-31 05:40:51 +00001237 : /*empty*/ { $$ = GlobalValue::ExternalLinkage; }
1238 | INTERNAL { $$ = GlobalValue::InternalLinkage; }
Reid Spencer6fd36ab2006-12-29 20:35:03 +00001239 | LINKONCE { $$ = GlobalValue::LinkOnceLinkage; }
1240 | WEAK { $$ = GlobalValue::WeakLinkage; }
1241 | DLLEXPORT { $$ = GlobalValue::DLLExportLinkage; }
Reid Spencer6fd36ab2006-12-29 20:35:03 +00001242 ;
Chris Lattner58af2a12006-02-15 07:22:58 +00001243
Anton Korobeynikov77d0f972007-04-25 14:29:12 +00001244AliasLinkage
1245 : /*empty*/ { $$ = GlobalValue::ExternalLinkage; }
1246 | WEAK { $$ = GlobalValue::WeakLinkage; }
1247 | INTERNAL { $$ = GlobalValue::InternalLinkage; }
1248 ;
1249
Anton Korobeynikovbcb97702006-09-17 20:25:45 +00001250OptCallingConv : /*empty*/ { $$ = CallingConv::C; } |
1251 CCC_TOK { $$ = CallingConv::C; } |
Anton Korobeynikovbcb97702006-09-17 20:25:45 +00001252 FASTCC_TOK { $$ = CallingConv::Fast; } |
1253 COLDCC_TOK { $$ = CallingConv::Cold; } |
1254 X86_STDCALLCC_TOK { $$ = CallingConv::X86_StdCall; } |
1255 X86_FASTCALLCC_TOK { $$ = CallingConv::X86_FastCall; } |
Dale Johannesen20ab78b2008-08-13 18:41:46 +00001256 X86_SSECALLCC_TOK { $$ = CallingConv::X86_SSECall; } |
Anton Korobeynikovbcb97702006-09-17 20:25:45 +00001257 CC_TOK EUINT64VAL {
Chris Lattner58af2a12006-02-15 07:22:58 +00001258 if ((unsigned)$2 != $2)
Reid Spencerb5334b02007-02-05 10:18:06 +00001259 GEN_ERROR("Calling conv too large");
Chris Lattner58af2a12006-02-15 07:22:58 +00001260 $$ = $2;
Reid Spencer61c83e02006-08-18 08:43:06 +00001261 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001262 };
1263
Reid Spencerb8f85052007-07-31 03:50:36 +00001264ParamAttr : ZEROEXT { $$ = ParamAttr::ZExt; }
1265 | ZEXT { $$ = ParamAttr::ZExt; }
1266 | SIGNEXT { $$ = ParamAttr::SExt; }
Chris Lattnerce5f24e2007-07-05 17:26:49 +00001267 | SEXT { $$ = ParamAttr::SExt; }
1268 | INREG { $$ = ParamAttr::InReg; }
1269 | SRET { $$ = ParamAttr::StructRet; }
1270 | NOALIAS { $$ = ParamAttr::NoAlias; }
Reid Spencerb8f85052007-07-31 03:50:36 +00001271 | BYVAL { $$ = ParamAttr::ByVal; }
1272 | NEST { $$ = ParamAttr::Nest; }
Dale Johannesendc6c0f12008-02-22 17:50:51 +00001273 | ALIGN EUINT64VAL { $$ =
1274 ParamAttr::constructAlignmentFromInt($2); }
Reid Spencer14310612006-12-31 05:40:51 +00001275 ;
1276
Reid Spencer18da0722007-04-11 02:44:20 +00001277OptParamAttrs : /* empty */ { $$ = ParamAttr::None; }
Reid Spencer218ded22007-01-05 17:07:23 +00001278 | OptParamAttrs ParamAttr {
Reid Spencer7b5d4662007-04-09 06:16:21 +00001279 $$ = $1 | $2;
Reid Spencer14310612006-12-31 05:40:51 +00001280 }
1281 ;
1282
Reid Spencer18da0722007-04-11 02:44:20 +00001283FuncAttr : NORETURN { $$ = ParamAttr::NoReturn; }
1284 | NOUNWIND { $$ = ParamAttr::NoUnwind; }
Chris Lattnerccef6b52008-09-23 21:18:31 +00001285 | INREG { $$ = ParamAttr::InReg; }
Reid Spencerb8f85052007-07-31 03:50:36 +00001286 | ZEROEXT { $$ = ParamAttr::ZExt; }
1287 | SIGNEXT { $$ = ParamAttr::SExt; }
Duncan Sandsdc024672007-11-27 13:23:08 +00001288 | READNONE { $$ = ParamAttr::ReadNone; }
1289 | READONLY { $$ = ParamAttr::ReadOnly; }
Reid Spencer218ded22007-01-05 17:07:23 +00001290 ;
1291
Reid Spencer18da0722007-04-11 02:44:20 +00001292OptFuncAttrs : /* empty */ { $$ = ParamAttr::None; }
Reid Spencer218ded22007-01-05 17:07:23 +00001293 | OptFuncAttrs FuncAttr {
Reid Spencer7b5d4662007-04-09 06:16:21 +00001294 $$ = $1 | $2;
Reid Spencer218ded22007-01-05 17:07:23 +00001295 }
Reid Spencer14310612006-12-31 05:40:51 +00001296 ;
1297
Devang Pateld4980812008-09-02 20:52:40 +00001298FuncNoteList : FuncNote { $$ = $1; }
1299 | FuncNoteList ',' FuncNote {
Devang Pateld9b4a5f2008-09-23 22:35:17 +00001300 unsigned tmp = $1 | $3;
1301 if ($3 == ParamAttr::FN_NOTE_NoInline
1302 && ($1 & ParamAttr::FN_NOTE_AlwaysInline))
Devang Pateld4980812008-09-02 20:52:40 +00001303 GEN_ERROR("Function Notes may include only one inline notes!")
Devang Pateld9b4a5f2008-09-23 22:35:17 +00001304 if ($3 == ParamAttr::FN_NOTE_AlwaysInline
1305 && ($1 & ParamAttr::FN_NOTE_NoInline))
Devang Pateld4980812008-09-02 20:52:40 +00001306 GEN_ERROR("Function Notes may include only one inline notes!")
1307 $$ = tmp;
1308 CHECK_FOR_ERROR
1309 }
1310 ;
1311
Devang Pateld9b4a5f2008-09-23 22:35:17 +00001312FuncNote : INLINE '=' NEVER { $$ = ParamAttr::FN_NOTE_NoInline; }
1313 | INLINE '=' ALWAYS { $$ = ParamAttr::FN_NOTE_AlwaysInline; }
1314 | OPTIMIZEFORSIZE { $$ = ParamAttr::FN_NOTE_OptimizeForSize; }
Devang Pateld4980812008-09-02 20:52:40 +00001315 ;
1316
Devang Pateld9b4a5f2008-09-23 22:35:17 +00001317OptFuncNotes : /* empty */ { $$ = ParamAttr::FN_NOTE_None; }
Devang Pateld4980812008-09-02 20:52:40 +00001318 | FNNOTE '(' FuncNoteList ')' {
1319 $$ = $3;
1320 }
1321 ;
1322
Gordon Henriksen80a75bf2007-12-10 03:18:06 +00001323OptGC : /* empty */ { $$ = 0; }
1324 | GC STRINGCONSTANT {
1325 $$ = $2;
1326 }
1327 ;
1328
Chris Lattner58af2a12006-02-15 07:22:58 +00001329// OptAlign/OptCAlign - An optional alignment, and an optional alignment with
1330// a comma before it.
1331OptAlign : /*empty*/ { $$ = 0; } |
1332 ALIGN EUINT64VAL {
1333 $$ = $2;
1334 if ($$ != 0 && !isPowerOf2_32($$))
Reid Spencerb5334b02007-02-05 10:18:06 +00001335 GEN_ERROR("Alignment must be a power of two");
Reid Spencer61c83e02006-08-18 08:43:06 +00001336 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001337};
1338OptCAlign : /*empty*/ { $$ = 0; } |
1339 ',' ALIGN EUINT64VAL {
1340 $$ = $3;
1341 if ($$ != 0 && !isPowerOf2_32($$))
Reid Spencerb5334b02007-02-05 10:18:06 +00001342 GEN_ERROR("Alignment must be a power of two");
Reid Spencer61c83e02006-08-18 08:43:06 +00001343 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001344};
1345
1346
Christopher Lamba8ed9bf2007-12-11 09:02:08 +00001347
Chris Lattner58af2a12006-02-15 07:22:58 +00001348SectionString : SECTION STRINGCONSTANT {
Reid Spencer0a8a16b2007-05-22 18:52:55 +00001349 for (unsigned i = 0, e = $2->length(); i != e; ++i)
1350 if ((*$2)[i] == '"' || (*$2)[i] == '\\')
Reid Spencerb5334b02007-02-05 10:18:06 +00001351 GEN_ERROR("Invalid character in section name");
Chris Lattner58af2a12006-02-15 07:22:58 +00001352 $$ = $2;
Reid Spencer61c83e02006-08-18 08:43:06 +00001353 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001354};
1355
1356OptSection : /*empty*/ { $$ = 0; } |
1357 SectionString { $$ = $1; };
1358
1359// GlobalVarAttributes - Used to pass the attributes string on a global. CurGV
1360// is set to be the global we are processing.
1361//
1362GlobalVarAttributes : /* empty */ {} |
1363 ',' GlobalVarAttribute GlobalVarAttributes {};
1364GlobalVarAttribute : SectionString {
Reid Spencer0a8a16b2007-05-22 18:52:55 +00001365 CurGV->setSection(*$1);
1366 delete $1;
Reid Spencer61c83e02006-08-18 08:43:06 +00001367 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001368 }
1369 | ALIGN EUINT64VAL {
1370 if ($2 != 0 && !isPowerOf2_32($2))
Reid Spencerb5334b02007-02-05 10:18:06 +00001371 GEN_ERROR("Alignment must be a power of two");
Chris Lattner58af2a12006-02-15 07:22:58 +00001372 CurGV->setAlignment($2);
Reid Spencer61c83e02006-08-18 08:43:06 +00001373 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001374 };
1375
1376//===----------------------------------------------------------------------===//
1377// Types includes all predefined types... except void, because it can only be
Reid Spencer14310612006-12-31 05:40:51 +00001378// used in specific contexts (function returning void for example).
Chris Lattner58af2a12006-02-15 07:22:58 +00001379
1380// Derived types are added later...
1381//
Dale Johannesen320fc8a2007-08-03 01:03:46 +00001382PrimType : INTTYPE | FLOAT | DOUBLE | PPC_FP128 | FP128 | X86_FP80 | LABEL ;
Reid Spencer14310612006-12-31 05:40:51 +00001383
1384Types
1385 : OPAQUE {
Reid Spencera132e042006-12-03 05:46:11 +00001386 $$ = new PATypeHolder(OpaqueType::get());
Reid Spencer61c83e02006-08-18 08:43:06 +00001387 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001388 }
1389 | PrimType {
Reid Spencera132e042006-12-03 05:46:11 +00001390 $$ = new PATypeHolder($1);
Reid Spencer61c83e02006-08-18 08:43:06 +00001391 CHECK_FOR_ERROR
Reid Spencer14310612006-12-31 05:40:51 +00001392 }
Christopher Lambbf3348d2007-12-12 08:45:45 +00001393 | Types OptAddrSpace '*' { // Pointer type?
Reid Spencer14310612006-12-31 05:40:51 +00001394 if (*$1 == Type::LabelTy)
1395 GEN_ERROR("Cannot form a pointer to a basic block");
Christopher Lambbf3348d2007-12-12 08:45:45 +00001396 $$ = new PATypeHolder(HandleUpRefs(PointerType::get(*$1, $2)));
Christopher Lamba8ed9bf2007-12-11 09:02:08 +00001397 delete $1;
1398 CHECK_FOR_ERROR
1399 }
Reid Spencer14310612006-12-31 05:40:51 +00001400 | SymbolicValueRef { // Named types are also simple types...
1401 const Type* tmp = getTypeVal($1);
1402 CHECK_FOR_ERROR
1403 $$ = new PATypeHolder(tmp);
1404 }
1405 | '\\' EUINT64VAL { // Type UpReference
Reid Spencerb5334b02007-02-05 10:18:06 +00001406 if ($2 > (uint64_t)~0U) GEN_ERROR("Value out of range");
Chris Lattner58af2a12006-02-15 07:22:58 +00001407 OpaqueType *OT = OpaqueType::get(); // Use temporary placeholder
1408 UpRefs.push_back(UpRefRecord((unsigned)$2, OT)); // Add to vector...
Reid Spencera132e042006-12-03 05:46:11 +00001409 $$ = new PATypeHolder(OT);
Chris Lattner58af2a12006-02-15 07:22:58 +00001410 UR_OUT("New Upreference!\n");
Reid Spencer61c83e02006-08-18 08:43:06 +00001411 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001412 }
Reid Spencer218ded22007-01-05 17:07:23 +00001413 | Types '(' ArgTypeListI ')' OptFuncAttrs {
Duncan Sandsdc024672007-11-27 13:23:08 +00001414 // Allow but ignore attributes on function types; this permits auto-upgrade.
1415 // FIXME: remove in LLVM 3.0.
Chris Lattnera925a142008-04-23 05:37:08 +00001416 const Type *RetTy = *$1;
1417 if (!FunctionType::isValidReturnType(RetTy))
1418 GEN_ERROR("Invalid result type for LLVM function");
1419
Chris Lattner58af2a12006-02-15 07:22:58 +00001420 std::vector<const Type*> Params;
Reid Spencer7b5d4662007-04-09 06:16:21 +00001421 TypeWithAttrsList::iterator I = $3->begin(), E = $3->end();
Duncan Sandsdc024672007-11-27 13:23:08 +00001422 for (; I != E; ++I ) {
Reid Spencer66728ef2007-03-20 01:13:36 +00001423 const Type *Ty = I->Ty->get();
Reid Spencer66728ef2007-03-20 01:13:36 +00001424 Params.push_back(Ty);
Reid Spencer14310612006-12-31 05:40:51 +00001425 }
Anton Korobeynikovc1d848d2007-12-03 19:16:54 +00001426
Chris Lattner58af2a12006-02-15 07:22:58 +00001427 bool isVarArg = Params.size() && Params.back() == Type::VoidTy;
1428 if (isVarArg) Params.pop_back();
1429
Anton Korobeynikov05e5a742007-12-03 21:01:29 +00001430 for (unsigned i = 0; i != Params.size(); ++i)
1431 if (!(Params[i]->isFirstClassType() || isa<OpaqueType>(Params[i])))
1432 GEN_ERROR("Function arguments must be value types!");
1433
1434 CHECK_FOR_ERROR
1435
Anton Korobeynikovc1d848d2007-12-03 19:16:54 +00001436 FunctionType *FT = FunctionType::get(RetTy, Params, isVarArg);
Anton Korobeynikov7f705592007-01-12 19:20:47 +00001437 delete $3; // Delete the argument list
Reid Spencer14310612006-12-31 05:40:51 +00001438 delete $1; // Delete the return type handle
1439 $$ = new PATypeHolder(HandleUpRefs(FT));
Reid Spencer61c83e02006-08-18 08:43:06 +00001440 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001441 }
Reid Spencer218ded22007-01-05 17:07:23 +00001442 | VOID '(' ArgTypeListI ')' OptFuncAttrs {
Duncan Sandsdc024672007-11-27 13:23:08 +00001443 // Allow but ignore attributes on function types; this permits auto-upgrade.
1444 // FIXME: remove in LLVM 3.0.
Reid Spencer14310612006-12-31 05:40:51 +00001445 std::vector<const Type*> Params;
Reid Spencer7b5d4662007-04-09 06:16:21 +00001446 TypeWithAttrsList::iterator I = $3->begin(), E = $3->end();
Duncan Sandsdc024672007-11-27 13:23:08 +00001447 for ( ; I != E; ++I ) {
Reid Spencer66728ef2007-03-20 01:13:36 +00001448 const Type* Ty = I->Ty->get();
Reid Spencer66728ef2007-03-20 01:13:36 +00001449 Params.push_back(Ty);
Reid Spencer14310612006-12-31 05:40:51 +00001450 }
Anton Korobeynikovc1d848d2007-12-03 19:16:54 +00001451
Reid Spencer14310612006-12-31 05:40:51 +00001452 bool isVarArg = Params.size() && Params.back() == Type::VoidTy;
1453 if (isVarArg) Params.pop_back();
1454
Anton Korobeynikov05e5a742007-12-03 21:01:29 +00001455 for (unsigned i = 0; i != Params.size(); ++i)
1456 if (!(Params[i]->isFirstClassType() || isa<OpaqueType>(Params[i])))
1457 GEN_ERROR("Function arguments must be value types!");
1458
1459 CHECK_FOR_ERROR
1460
Duncan Sandsdc024672007-11-27 13:23:08 +00001461 FunctionType *FT = FunctionType::get($1, Params, isVarArg);
Reid Spencer218ded22007-01-05 17:07:23 +00001462 delete $3; // Delete the argument list
Reid Spencer14310612006-12-31 05:40:51 +00001463 $$ = new PATypeHolder(HandleUpRefs(FT));
1464 CHECK_FOR_ERROR
1465 }
1466
1467 | '[' EUINT64VAL 'x' Types ']' { // Sized array type?
Dan Gohman81a0c0b2008-05-31 00:58:22 +00001468 $$ = new PATypeHolder(HandleUpRefs(ArrayType::get(*$4, $2)));
Reid Spencera132e042006-12-03 05:46:11 +00001469 delete $4;
Reid Spencer61c83e02006-08-18 08:43:06 +00001470 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001471 }
Chris Lattner32980692007-02-19 07:44:24 +00001472 | '<' EUINT64VAL 'x' Types '>' { // Vector type?
Reid Spencera132e042006-12-03 05:46:11 +00001473 const llvm::Type* ElemTy = $4->get();
1474 if ((unsigned)$2 != $2)
1475 GEN_ERROR("Unsigned result not equal to signed result");
Chris Lattner42a75512007-01-15 02:27:26 +00001476 if (!ElemTy->isFloatingPoint() && !ElemTy->isInteger())
Reid Spencer9d6565a2007-02-15 02:26:10 +00001477 GEN_ERROR("Element type of a VectorType must be primitive");
Reid Spencer9d6565a2007-02-15 02:26:10 +00001478 $$ = new PATypeHolder(HandleUpRefs(VectorType::get(*$4, (unsigned)$2)));
Reid Spencera132e042006-12-03 05:46:11 +00001479 delete $4;
1480 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001481 }
1482 | '{' TypeListI '}' { // Structure type?
1483 std::vector<const Type*> Elements;
Reid Spencera132e042006-12-03 05:46:11 +00001484 for (std::list<llvm::PATypeHolder>::iterator I = $2->begin(),
Chris Lattner58af2a12006-02-15 07:22:58 +00001485 E = $2->end(); I != E; ++I)
Reid Spencera132e042006-12-03 05:46:11 +00001486 Elements.push_back(*I);
Chris Lattner58af2a12006-02-15 07:22:58 +00001487
Reid Spencera132e042006-12-03 05:46:11 +00001488 $$ = new PATypeHolder(HandleUpRefs(StructType::get(Elements)));
Chris Lattner58af2a12006-02-15 07:22:58 +00001489 delete $2;
Reid Spencer61c83e02006-08-18 08:43:06 +00001490 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001491 }
1492 | '{' '}' { // Empty structure type?
Reid Spencera132e042006-12-03 05:46:11 +00001493 $$ = new PATypeHolder(StructType::get(std::vector<const Type*>()));
Reid Spencer61c83e02006-08-18 08:43:06 +00001494 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001495 }
Andrew Lenharth6353e052006-12-08 18:07:09 +00001496 | '<' '{' TypeListI '}' '>' {
1497 std::vector<const Type*> Elements;
1498 for (std::list<llvm::PATypeHolder>::iterator I = $3->begin(),
1499 E = $3->end(); I != E; ++I)
1500 Elements.push_back(*I);
1501
1502 $$ = new PATypeHolder(HandleUpRefs(StructType::get(Elements, true)));
1503 delete $3;
1504 CHECK_FOR_ERROR
1505 }
1506 | '<' '{' '}' '>' { // Empty structure type?
1507 $$ = new PATypeHolder(StructType::get(std::vector<const Type*>(), true));
1508 CHECK_FOR_ERROR
1509 }
Reid Spencer14310612006-12-31 05:40:51 +00001510 ;
1511
1512ArgType
Duncan Sandsdc024672007-11-27 13:23:08 +00001513 : Types OptParamAttrs {
1514 // Allow but ignore attributes on function types; this permits auto-upgrade.
1515 // FIXME: remove in LLVM 3.0.
Reid Spencer14310612006-12-31 05:40:51 +00001516 $$.Ty = $1;
Duncan Sandsdc024672007-11-27 13:23:08 +00001517 $$.Attrs = ParamAttr::None;
Reid Spencer14310612006-12-31 05:40:51 +00001518 }
1519 ;
1520
Reid Spencer218ded22007-01-05 17:07:23 +00001521ResultTypes
1522 : Types {
Reid Spencer14310612006-12-31 05:40:51 +00001523 if (!UpRefs.empty())
1524 GEN_ERROR("Invalid upreference in type: " + (*$1)->getDescription());
Devang Patel20071732008-02-23 01:17:37 +00001525 if (!(*$1)->isFirstClassType() && !isa<StructType>($1->get()))
Reid Spencerb5334b02007-02-05 10:18:06 +00001526 GEN_ERROR("LLVM functions cannot return aggregate types");
Reid Spencer218ded22007-01-05 17:07:23 +00001527 $$ = $1;
Reid Spencer14310612006-12-31 05:40:51 +00001528 }
Reid Spencer218ded22007-01-05 17:07:23 +00001529 | VOID {
1530 $$ = new PATypeHolder(Type::VoidTy);
Reid Spencer14310612006-12-31 05:40:51 +00001531 }
1532 ;
1533
1534ArgTypeList : ArgType {
1535 $$ = new TypeWithAttrsList();
1536 $$->push_back($1);
1537 CHECK_FOR_ERROR
1538 }
1539 | ArgTypeList ',' ArgType {
1540 ($$=$1)->push_back($3);
1541 CHECK_FOR_ERROR
1542 }
1543 ;
1544
1545ArgTypeListI
1546 : ArgTypeList
1547 | ArgTypeList ',' DOTDOTDOT {
1548 $$=$1;
Reid Spencer18da0722007-04-11 02:44:20 +00001549 TypeWithAttrs TWA; TWA.Attrs = ParamAttr::None;
Reid Spencer14310612006-12-31 05:40:51 +00001550 TWA.Ty = new PATypeHolder(Type::VoidTy);
1551 $$->push_back(TWA);
1552 CHECK_FOR_ERROR
1553 }
1554 | DOTDOTDOT {
1555 $$ = new TypeWithAttrsList;
Reid Spencer18da0722007-04-11 02:44:20 +00001556 TypeWithAttrs TWA; TWA.Attrs = ParamAttr::None;
Reid Spencer14310612006-12-31 05:40:51 +00001557 TWA.Ty = new PATypeHolder(Type::VoidTy);
1558 $$->push_back(TWA);
1559 CHECK_FOR_ERROR
1560 }
1561 | /*empty*/ {
1562 $$ = new TypeWithAttrsList();
Reid Spencer61c83e02006-08-18 08:43:06 +00001563 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001564 };
1565
1566// TypeList - Used for struct declarations and as a basis for function type
1567// declaration type lists
1568//
Reid Spencer14310612006-12-31 05:40:51 +00001569TypeListI : Types {
Reid Spencera132e042006-12-03 05:46:11 +00001570 $$ = new std::list<PATypeHolder>();
Reid Spencer66728ef2007-03-20 01:13:36 +00001571 $$->push_back(*$1);
1572 delete $1;
Reid Spencer61c83e02006-08-18 08:43:06 +00001573 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001574 }
Reid Spencer14310612006-12-31 05:40:51 +00001575 | TypeListI ',' Types {
Reid Spencer66728ef2007-03-20 01:13:36 +00001576 ($$=$1)->push_back(*$3);
1577 delete $3;
Reid Spencer61c83e02006-08-18 08:43:06 +00001578 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001579 };
1580
Chris Lattner58af2a12006-02-15 07:22:58 +00001581// ConstVal - The various declarations that go into the constant pool. This
1582// production is used ONLY to represent constants that show up AFTER a 'const',
1583// 'constant' or 'global' token at global scope. Constants that can be inlined
1584// into other expressions (such as integers and constexprs) are handled by the
1585// ResolvedVal, ValueRef and ConstValueRef productions.
1586//
1587ConstVal: Types '[' ConstVector ']' { // Nonempty unsized arr
Reid Spencer14310612006-12-31 05:40:51 +00001588 if (!UpRefs.empty())
1589 GEN_ERROR("Invalid upreference in type: " + (*$1)->getDescription());
Reid Spencera132e042006-12-03 05:46:11 +00001590 const ArrayType *ATy = dyn_cast<ArrayType>($1->get());
Chris Lattner58af2a12006-02-15 07:22:58 +00001591 if (ATy == 0)
Reid Spencer61c83e02006-08-18 08:43:06 +00001592 GEN_ERROR("Cannot make array constant with type: '" +
Reid Spencerb5334b02007-02-05 10:18:06 +00001593 (*$1)->getDescription() + "'");
Chris Lattner58af2a12006-02-15 07:22:58 +00001594 const Type *ETy = ATy->getElementType();
Dan Gohman180c1692008-06-23 18:43:26 +00001595 uint64_t NumElements = ATy->getNumElements();
Chris Lattner58af2a12006-02-15 07:22:58 +00001596
1597 // Verify that we have the correct size...
Mon P Wang28873102008-06-25 08:15:39 +00001598 if (NumElements != uint64_t(-1) && NumElements != $3->size())
Reid Spencer61c83e02006-08-18 08:43:06 +00001599 GEN_ERROR("Type mismatch: constant sized array initialized with " +
Chris Lattner58af2a12006-02-15 07:22:58 +00001600 utostr($3->size()) + " arguments, but has size of " +
Mon P Wang28873102008-06-25 08:15:39 +00001601 utostr(NumElements) + "");
Chris Lattner58af2a12006-02-15 07:22:58 +00001602
1603 // Verify all elements are correct type!
1604 for (unsigned i = 0; i < $3->size(); i++) {
Reid Spencera132e042006-12-03 05:46:11 +00001605 if (ETy != (*$3)[i]->getType())
Reid Spencer61c83e02006-08-18 08:43:06 +00001606 GEN_ERROR("Element #" + utostr(i) + " is not of type '" +
Chris Lattner58af2a12006-02-15 07:22:58 +00001607 ETy->getDescription() +"' as required!\nIt is of type '"+
Reid Spencera132e042006-12-03 05:46:11 +00001608 (*$3)[i]->getType()->getDescription() + "'.");
Chris Lattner58af2a12006-02-15 07:22:58 +00001609 }
1610
Reid Spencera132e042006-12-03 05:46:11 +00001611 $$ = ConstantArray::get(ATy, *$3);
1612 delete $1; delete $3;
Reid Spencer61c83e02006-08-18 08:43:06 +00001613 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001614 }
1615 | Types '[' ']' {
Reid Spencer14310612006-12-31 05:40:51 +00001616 if (!UpRefs.empty())
1617 GEN_ERROR("Invalid upreference in type: " + (*$1)->getDescription());
Reid Spencera132e042006-12-03 05:46:11 +00001618 const ArrayType *ATy = dyn_cast<ArrayType>($1->get());
Chris Lattner58af2a12006-02-15 07:22:58 +00001619 if (ATy == 0)
Reid Spencer61c83e02006-08-18 08:43:06 +00001620 GEN_ERROR("Cannot make array constant with type: '" +
Reid Spencerb5334b02007-02-05 10:18:06 +00001621 (*$1)->getDescription() + "'");
Chris Lattner58af2a12006-02-15 07:22:58 +00001622
Dan Gohman180c1692008-06-23 18:43:26 +00001623 uint64_t NumElements = ATy->getNumElements();
Mon P Wang28873102008-06-25 08:15:39 +00001624 if (NumElements != uint64_t(-1) && NumElements != 0)
Reid Spencer61c83e02006-08-18 08:43:06 +00001625 GEN_ERROR("Type mismatch: constant sized array initialized with 0"
Mon P Wang28873102008-06-25 08:15:39 +00001626 " arguments, but has size of " + utostr(NumElements) +"");
Reid Spencera132e042006-12-03 05:46:11 +00001627 $$ = ConstantArray::get(ATy, std::vector<Constant*>());
1628 delete $1;
Reid Spencer61c83e02006-08-18 08:43:06 +00001629 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001630 }
1631 | Types 'c' STRINGCONSTANT {
Reid Spencer14310612006-12-31 05:40:51 +00001632 if (!UpRefs.empty())
1633 GEN_ERROR("Invalid upreference in type: " + (*$1)->getDescription());
Reid Spencera132e042006-12-03 05:46:11 +00001634 const ArrayType *ATy = dyn_cast<ArrayType>($1->get());
Chris Lattner58af2a12006-02-15 07:22:58 +00001635 if (ATy == 0)
Reid Spencer61c83e02006-08-18 08:43:06 +00001636 GEN_ERROR("Cannot make array constant with type: '" +
Reid Spencerb5334b02007-02-05 10:18:06 +00001637 (*$1)->getDescription() + "'");
Chris Lattner58af2a12006-02-15 07:22:58 +00001638
Dan Gohman180c1692008-06-23 18:43:26 +00001639 uint64_t NumElements = ATy->getNumElements();
Chris Lattner58af2a12006-02-15 07:22:58 +00001640 const Type *ETy = ATy->getElementType();
Mon P Wang28873102008-06-25 08:15:39 +00001641 if (NumElements != uint64_t(-1) && NumElements != $3->length())
Reid Spencer61c83e02006-08-18 08:43:06 +00001642 GEN_ERROR("Can't build string constant of size " +
Mon P Wang28873102008-06-25 08:15:39 +00001643 utostr($3->length()) +
1644 " when array has size " + utostr(NumElements) + "");
Chris Lattner58af2a12006-02-15 07:22:58 +00001645 std::vector<Constant*> Vals;
Reid Spencer14310612006-12-31 05:40:51 +00001646 if (ETy == Type::Int8Ty) {
Mon P Wang28873102008-06-25 08:15:39 +00001647 for (uint64_t i = 0; i < $3->length(); ++i)
Reid Spencer0a8a16b2007-05-22 18:52:55 +00001648 Vals.push_back(ConstantInt::get(ETy, (*$3)[i]));
Chris Lattner58af2a12006-02-15 07:22:58 +00001649 } else {
Reid Spencer0a8a16b2007-05-22 18:52:55 +00001650 delete $3;
Reid Spencerb5334b02007-02-05 10:18:06 +00001651 GEN_ERROR("Cannot build string arrays of non byte sized elements");
Chris Lattner58af2a12006-02-15 07:22:58 +00001652 }
Reid Spencer0a8a16b2007-05-22 18:52:55 +00001653 delete $3;
Reid Spencera132e042006-12-03 05:46:11 +00001654 $$ = ConstantArray::get(ATy, Vals);
1655 delete $1;
Reid Spencer61c83e02006-08-18 08:43:06 +00001656 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001657 }
1658 | Types '<' ConstVector '>' { // Nonempty unsized arr
Reid Spencer14310612006-12-31 05:40:51 +00001659 if (!UpRefs.empty())
1660 GEN_ERROR("Invalid upreference in type: " + (*$1)->getDescription());
Reid Spencer9d6565a2007-02-15 02:26:10 +00001661 const VectorType *PTy = dyn_cast<VectorType>($1->get());
Chris Lattner58af2a12006-02-15 07:22:58 +00001662 if (PTy == 0)
Reid Spencer61c83e02006-08-18 08:43:06 +00001663 GEN_ERROR("Cannot make packed constant with type: '" +
Reid Spencerb5334b02007-02-05 10:18:06 +00001664 (*$1)->getDescription() + "'");
Chris Lattner58af2a12006-02-15 07:22:58 +00001665 const Type *ETy = PTy->getElementType();
Dan Gohman180c1692008-06-23 18:43:26 +00001666 unsigned NumElements = PTy->getNumElements();
Chris Lattner58af2a12006-02-15 07:22:58 +00001667
1668 // Verify that we have the correct size...
Mon P Wang28873102008-06-25 08:15:39 +00001669 if (NumElements != unsigned(-1) && NumElements != (unsigned)$3->size())
Reid Spencer61c83e02006-08-18 08:43:06 +00001670 GEN_ERROR("Type mismatch: constant sized packed initialized with " +
Chris Lattner58af2a12006-02-15 07:22:58 +00001671 utostr($3->size()) + " arguments, but has size of " +
Mon P Wang28873102008-06-25 08:15:39 +00001672 utostr(NumElements) + "");
Chris Lattner58af2a12006-02-15 07:22:58 +00001673
1674 // Verify all elements are correct type!
1675 for (unsigned i = 0; i < $3->size(); i++) {
Reid Spencera132e042006-12-03 05:46:11 +00001676 if (ETy != (*$3)[i]->getType())
Reid Spencer61c83e02006-08-18 08:43:06 +00001677 GEN_ERROR("Element #" + utostr(i) + " is not of type '" +
Chris Lattner58af2a12006-02-15 07:22:58 +00001678 ETy->getDescription() +"' as required!\nIt is of type '"+
Reid Spencera132e042006-12-03 05:46:11 +00001679 (*$3)[i]->getType()->getDescription() + "'.");
Chris Lattner58af2a12006-02-15 07:22:58 +00001680 }
1681
Reid Spencer9d6565a2007-02-15 02:26:10 +00001682 $$ = ConstantVector::get(PTy, *$3);
Reid Spencera132e042006-12-03 05:46:11 +00001683 delete $1; delete $3;
Reid Spencer61c83e02006-08-18 08:43:06 +00001684 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001685 }
1686 | Types '{' ConstVector '}' {
Reid Spencera132e042006-12-03 05:46:11 +00001687 const StructType *STy = dyn_cast<StructType>($1->get());
Chris Lattner58af2a12006-02-15 07:22:58 +00001688 if (STy == 0)
Reid Spencer61c83e02006-08-18 08:43:06 +00001689 GEN_ERROR("Cannot make struct constant with type: '" +
Reid Spencerb5334b02007-02-05 10:18:06 +00001690 (*$1)->getDescription() + "'");
Chris Lattner58af2a12006-02-15 07:22:58 +00001691
1692 if ($3->size() != STy->getNumContainedTypes())
Reid Spencerb5334b02007-02-05 10:18:06 +00001693 GEN_ERROR("Illegal number of initializers for structure type");
Chris Lattner58af2a12006-02-15 07:22:58 +00001694
1695 // Check to ensure that constants are compatible with the type initializer!
1696 for (unsigned i = 0, e = $3->size(); i != e; ++i)
Reid Spencera132e042006-12-03 05:46:11 +00001697 if ((*$3)[i]->getType() != STy->getElementType(i))
Reid Spencer61c83e02006-08-18 08:43:06 +00001698 GEN_ERROR("Expected type '" +
Chris Lattner58af2a12006-02-15 07:22:58 +00001699 STy->getElementType(i)->getDescription() +
1700 "' for element #" + utostr(i) +
Reid Spencerb5334b02007-02-05 10:18:06 +00001701 " of structure initializer");
Chris Lattner58af2a12006-02-15 07:22:58 +00001702
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00001703 // Check to ensure that Type is not packed
1704 if (STy->isPacked())
Chris Lattner6cdc6822007-04-26 05:31:05 +00001705 GEN_ERROR("Unpacked Initializer to vector type '" +
1706 STy->getDescription() + "'");
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00001707
Reid Spencera132e042006-12-03 05:46:11 +00001708 $$ = ConstantStruct::get(STy, *$3);
1709 delete $1; delete $3;
Reid Spencer61c83e02006-08-18 08:43:06 +00001710 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001711 }
1712 | Types '{' '}' {
Reid Spencer14310612006-12-31 05:40:51 +00001713 if (!UpRefs.empty())
1714 GEN_ERROR("Invalid upreference in type: " + (*$1)->getDescription());
Reid Spencera132e042006-12-03 05:46:11 +00001715 const StructType *STy = dyn_cast<StructType>($1->get());
Chris Lattner58af2a12006-02-15 07:22:58 +00001716 if (STy == 0)
Reid Spencer61c83e02006-08-18 08:43:06 +00001717 GEN_ERROR("Cannot make struct constant with type: '" +
Reid Spencerb5334b02007-02-05 10:18:06 +00001718 (*$1)->getDescription() + "'");
Chris Lattner58af2a12006-02-15 07:22:58 +00001719
1720 if (STy->getNumContainedTypes() != 0)
Reid Spencerb5334b02007-02-05 10:18:06 +00001721 GEN_ERROR("Illegal number of initializers for structure type");
Chris Lattner58af2a12006-02-15 07:22:58 +00001722
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00001723 // Check to ensure that Type is not packed
1724 if (STy->isPacked())
Chris Lattner6cdc6822007-04-26 05:31:05 +00001725 GEN_ERROR("Unpacked Initializer to vector type '" +
1726 STy->getDescription() + "'");
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00001727
1728 $$ = ConstantStruct::get(STy, std::vector<Constant*>());
1729 delete $1;
1730 CHECK_FOR_ERROR
1731 }
1732 | Types '<' '{' ConstVector '}' '>' {
1733 const StructType *STy = dyn_cast<StructType>($1->get());
1734 if (STy == 0)
1735 GEN_ERROR("Cannot make struct constant with type: '" +
Reid Spencerb5334b02007-02-05 10:18:06 +00001736 (*$1)->getDescription() + "'");
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00001737
1738 if ($4->size() != STy->getNumContainedTypes())
Reid Spencerb5334b02007-02-05 10:18:06 +00001739 GEN_ERROR("Illegal number of initializers for structure type");
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00001740
1741 // Check to ensure that constants are compatible with the type initializer!
1742 for (unsigned i = 0, e = $4->size(); i != e; ++i)
1743 if ((*$4)[i]->getType() != STy->getElementType(i))
1744 GEN_ERROR("Expected type '" +
1745 STy->getElementType(i)->getDescription() +
1746 "' for element #" + utostr(i) +
Reid Spencerb5334b02007-02-05 10:18:06 +00001747 " of structure initializer");
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00001748
1749 // Check to ensure that Type is packed
1750 if (!STy->isPacked())
Chris Lattner32980692007-02-19 07:44:24 +00001751 GEN_ERROR("Vector initializer to non-vector type '" +
1752 STy->getDescription() + "'");
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00001753
1754 $$ = ConstantStruct::get(STy, *$4);
1755 delete $1; delete $4;
1756 CHECK_FOR_ERROR
1757 }
1758 | Types '<' '{' '}' '>' {
1759 if (!UpRefs.empty())
1760 GEN_ERROR("Invalid upreference in type: " + (*$1)->getDescription());
1761 const StructType *STy = dyn_cast<StructType>($1->get());
1762 if (STy == 0)
1763 GEN_ERROR("Cannot make struct constant with type: '" +
Reid Spencerb5334b02007-02-05 10:18:06 +00001764 (*$1)->getDescription() + "'");
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00001765
1766 if (STy->getNumContainedTypes() != 0)
Reid Spencerb5334b02007-02-05 10:18:06 +00001767 GEN_ERROR("Illegal number of initializers for structure type");
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00001768
1769 // Check to ensure that Type is packed
1770 if (!STy->isPacked())
Chris Lattner32980692007-02-19 07:44:24 +00001771 GEN_ERROR("Vector initializer to non-vector type '" +
1772 STy->getDescription() + "'");
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00001773
Reid Spencera132e042006-12-03 05:46:11 +00001774 $$ = ConstantStruct::get(STy, std::vector<Constant*>());
1775 delete $1;
Reid Spencer61c83e02006-08-18 08:43:06 +00001776 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001777 }
1778 | Types NULL_TOK {
Reid Spencer14310612006-12-31 05:40:51 +00001779 if (!UpRefs.empty())
1780 GEN_ERROR("Invalid upreference in type: " + (*$1)->getDescription());
Reid Spencera132e042006-12-03 05:46:11 +00001781 const PointerType *PTy = dyn_cast<PointerType>($1->get());
Chris Lattner58af2a12006-02-15 07:22:58 +00001782 if (PTy == 0)
Reid Spencer61c83e02006-08-18 08:43:06 +00001783 GEN_ERROR("Cannot make null pointer constant with type: '" +
Reid Spencerb5334b02007-02-05 10:18:06 +00001784 (*$1)->getDescription() + "'");
Chris Lattner58af2a12006-02-15 07:22:58 +00001785
Reid Spencera132e042006-12-03 05:46:11 +00001786 $$ = ConstantPointerNull::get(PTy);
1787 delete $1;
Reid Spencer61c83e02006-08-18 08:43:06 +00001788 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001789 }
1790 | Types UNDEF {
Reid Spencer14310612006-12-31 05:40:51 +00001791 if (!UpRefs.empty())
1792 GEN_ERROR("Invalid upreference in type: " + (*$1)->getDescription());
Reid Spencera132e042006-12-03 05:46:11 +00001793 $$ = UndefValue::get($1->get());
1794 delete $1;
Reid Spencer61c83e02006-08-18 08:43:06 +00001795 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001796 }
1797 | Types SymbolicValueRef {
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 PointerType *Ty = dyn_cast<PointerType>($1->get());
Chris Lattner58af2a12006-02-15 07:22:58 +00001801 if (Ty == 0)
Devang Patel5a970972008-02-19 22:27:01 +00001802 GEN_ERROR("Global const reference must be a pointer type " + (*$1)->getDescription());
Chris Lattner58af2a12006-02-15 07:22:58 +00001803
1804 // ConstExprs can exist in the body of a function, thus creating
1805 // GlobalValues whenever they refer to a variable. Because we are in
Reid Spencer93c40032007-03-19 18:40:50 +00001806 // the context of a function, getExistingVal will search the functions
Chris Lattner58af2a12006-02-15 07:22:58 +00001807 // symbol table instead of the module symbol table for the global symbol,
1808 // which throws things all off. To get around this, we just tell
Reid Spencer93c40032007-03-19 18:40:50 +00001809 // getExistingVal that we are at global scope here.
Chris Lattner58af2a12006-02-15 07:22:58 +00001810 //
1811 Function *SavedCurFn = CurFun.CurrentFunction;
1812 CurFun.CurrentFunction = 0;
1813
Reid Spencer93c40032007-03-19 18:40:50 +00001814 Value *V = getExistingVal(Ty, $2);
Reid Spencer5b7e7532006-09-28 19:28:24 +00001815 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001816
1817 CurFun.CurrentFunction = SavedCurFn;
1818
1819 // If this is an initializer for a constant pointer, which is referencing a
1820 // (currently) undefined variable, create a stub now that shall be replaced
1821 // in the future with the right type of variable.
1822 //
1823 if (V == 0) {
Reid Spencera9720f52007-02-05 17:04:00 +00001824 assert(isa<PointerType>(Ty) && "Globals may only be used as pointers!");
Chris Lattner58af2a12006-02-15 07:22:58 +00001825 const PointerType *PT = cast<PointerType>(Ty);
1826
1827 // First check to see if the forward references value is already created!
1828 PerModuleInfo::GlobalRefsType::iterator I =
1829 CurModule.GlobalRefs.find(std::make_pair(PT, $2));
1830
1831 if (I != CurModule.GlobalRefs.end()) {
1832 V = I->second; // Placeholder already exists, use it...
1833 $2.destroy();
1834 } else {
1835 std::string Name;
Reid Spencer41dff5e2007-01-26 08:05:27 +00001836 if ($2.Type == ValID::GlobalName)
Reid Spencer0a8a16b2007-05-22 18:52:55 +00001837 Name = $2.getName();
Reid Spencer41dff5e2007-01-26 08:05:27 +00001838 else if ($2.Type != ValID::GlobalID)
1839 GEN_ERROR("Invalid reference to global");
Chris Lattner58af2a12006-02-15 07:22:58 +00001840
1841 // Create the forward referenced global.
1842 GlobalValue *GV;
1843 if (const FunctionType *FTy =
1844 dyn_cast<FunctionType>(PT->getElementType())) {
Gabor Greife64d2482008-04-06 23:07:54 +00001845 GV = Function::Create(FTy, GlobalValue::ExternalWeakLinkage, Name,
1846 CurModule.CurrentModule);
Chris Lattner58af2a12006-02-15 07:22:58 +00001847 } else {
1848 GV = new GlobalVariable(PT->getElementType(), false,
Chris Lattner6cdc6822007-04-26 05:31:05 +00001849 GlobalValue::ExternalWeakLinkage, 0,
Chris Lattner58af2a12006-02-15 07:22:58 +00001850 Name, CurModule.CurrentModule);
1851 }
1852
1853 // Keep track of the fact that we have a forward ref to recycle it
1854 CurModule.GlobalRefs.insert(std::make_pair(std::make_pair(PT, $2), GV));
1855 V = GV;
1856 }
1857 }
1858
Reid Spencera132e042006-12-03 05:46:11 +00001859 $$ = cast<GlobalValue>(V);
1860 delete $1; // Free the type handle
Reid Spencer61c83e02006-08-18 08:43:06 +00001861 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001862 }
1863 | Types ConstExpr {
Reid Spencer14310612006-12-31 05:40:51 +00001864 if (!UpRefs.empty())
1865 GEN_ERROR("Invalid upreference in type: " + (*$1)->getDescription());
Reid Spencera132e042006-12-03 05:46:11 +00001866 if ($1->get() != $2->getType())
Reid Spencere68853b2007-01-04 00:06:14 +00001867 GEN_ERROR("Mismatched types for constant expression: " +
1868 (*$1)->getDescription() + " and " + $2->getType()->getDescription());
Chris Lattner58af2a12006-02-15 07:22:58 +00001869 $$ = $2;
Reid Spencera132e042006-12-03 05:46:11 +00001870 delete $1;
Reid Spencer61c83e02006-08-18 08:43:06 +00001871 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001872 }
1873 | Types ZEROINITIALIZER {
Reid Spencer14310612006-12-31 05:40:51 +00001874 if (!UpRefs.empty())
1875 GEN_ERROR("Invalid upreference in type: " + (*$1)->getDescription());
Reid Spencera132e042006-12-03 05:46:11 +00001876 const Type *Ty = $1->get();
Chris Lattner58af2a12006-02-15 07:22:58 +00001877 if (isa<FunctionType>(Ty) || Ty == Type::LabelTy || isa<OpaqueType>(Ty))
Reid Spencerb5334b02007-02-05 10:18:06 +00001878 GEN_ERROR("Cannot create a null initialized value of this type");
Reid Spencera132e042006-12-03 05:46:11 +00001879 $$ = Constant::getNullValue(Ty);
1880 delete $1;
Reid Spencer61c83e02006-08-18 08:43:06 +00001881 CHECK_FOR_ERROR
Reid Spencera132e042006-12-03 05:46:11 +00001882 }
Reid Spencer14310612006-12-31 05:40:51 +00001883 | IntType ESINT64VAL { // integral constants
Reid Spencere4d87aa2006-12-23 06:05:41 +00001884 if (!ConstantInt::isValueValidForType($1, $2))
Reid Spencerb5334b02007-02-05 10:18:06 +00001885 GEN_ERROR("Constant value doesn't fit in type");
Reid Spencer49d273e2007-03-19 20:40:51 +00001886 $$ = ConstantInt::get($1, $2, true);
Reid Spencer38c91a92007-02-28 02:24:54 +00001887 CHECK_FOR_ERROR
1888 }
1889 | IntType ESAPINTVAL { // arbitrary precision integer constants
1890 uint32_t BitWidth = cast<IntegerType>($1)->getBitWidth();
1891 if ($2->getBitWidth() > BitWidth) {
1892 GEN_ERROR("Constant value does not fit in type");
Reid Spencer10794272007-03-01 19:41:47 +00001893 }
1894 $2->sextOrTrunc(BitWidth);
1895 $$ = ConstantInt::get(*$2);
Reid Spencer38c91a92007-02-28 02:24:54 +00001896 delete $2;
Reid Spencere4d87aa2006-12-23 06:05:41 +00001897 CHECK_FOR_ERROR
1898 }
Reid Spencer14310612006-12-31 05:40:51 +00001899 | IntType EUINT64VAL { // integral constants
Reid Spencere4d87aa2006-12-23 06:05:41 +00001900 if (!ConstantInt::isValueValidForType($1, $2))
Reid Spencerb5334b02007-02-05 10:18:06 +00001901 GEN_ERROR("Constant value doesn't fit in type");
Reid Spencer49d273e2007-03-19 20:40:51 +00001902 $$ = ConstantInt::get($1, $2, false);
Reid Spencer38c91a92007-02-28 02:24:54 +00001903 CHECK_FOR_ERROR
1904 }
1905 | IntType EUAPINTVAL { // arbitrary precision integer constants
1906 uint32_t BitWidth = cast<IntegerType>($1)->getBitWidth();
1907 if ($2->getBitWidth() > BitWidth) {
1908 GEN_ERROR("Constant value does not fit in type");
Reid Spencer10794272007-03-01 19:41:47 +00001909 }
1910 $2->zextOrTrunc(BitWidth);
1911 $$ = ConstantInt::get(*$2);
Reid Spencer38c91a92007-02-28 02:24:54 +00001912 delete $2;
Reid Spencere4d87aa2006-12-23 06:05:41 +00001913 CHECK_FOR_ERROR
1914 }
Reid Spencer6f407902007-01-13 05:00:46 +00001915 | INTTYPE TRUETOK { // Boolean constants
Dan Gohman81a0c0b2008-05-31 00:58:22 +00001916 if (cast<IntegerType>($1)->getBitWidth() != 1)
1917 GEN_ERROR("Constant true must have type i1");
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00001918 $$ = ConstantInt::getTrue();
Reid Spencer61c83e02006-08-18 08:43:06 +00001919 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001920 }
Reid Spencer6f407902007-01-13 05:00:46 +00001921 | INTTYPE FALSETOK { // Boolean constants
Dan Gohman81a0c0b2008-05-31 00:58:22 +00001922 if (cast<IntegerType>($1)->getBitWidth() != 1)
1923 GEN_ERROR("Constant false must have type i1");
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00001924 $$ = ConstantInt::getFalse();
Reid Spencer61c83e02006-08-18 08:43:06 +00001925 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001926 }
Dale Johannesenea583102007-09-12 03:31:28 +00001927 | FPType FPVAL { // Floating point constants
Dale Johannesen43421b32007-09-06 18:13:44 +00001928 if (!ConstantFP::isValueValidForType($1, *$2))
Reid Spencerb5334b02007-02-05 10:18:06 +00001929 GEN_ERROR("Floating point constant invalid for type");
Dale Johannesenc72cd7e2007-09-11 18:33:39 +00001930 // Lexer has no type info, so builds all float and double FP constants
1931 // as double. Fix this here. Long double is done right.
1932 if (&$2->getSemantics()==&APFloat::IEEEdouble && $1==Type::FloatTy)
Dale Johannesen43421b32007-09-06 18:13:44 +00001933 $2->convert(APFloat::IEEEsingle, APFloat::rmNearestTiesToEven);
Chris Lattnerd8eb63f2008-04-20 00:41:19 +00001934 $$ = ConstantFP::get(*$2);
Dale Johannesencdd509a2007-09-07 21:07:57 +00001935 delete $2;
Reid Spencer61c83e02006-08-18 08:43:06 +00001936 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001937 };
1938
1939
Reid Spencer3da59db2006-11-27 01:05:10 +00001940ConstExpr: CastOps '(' ConstVal TO Types ')' {
Reid Spencer14310612006-12-31 05:40:51 +00001941 if (!UpRefs.empty())
1942 GEN_ERROR("Invalid upreference in type: " + (*$5)->getDescription());
Reid Spencera132e042006-12-03 05:46:11 +00001943 Constant *Val = $3;
Reid Spencerb0fcf8f2007-01-17 02:48:45 +00001944 const Type *DestTy = $5->get();
1945 if (!CastInst::castIsValid($1, $3, DestTy))
1946 GEN_ERROR("invalid cast opcode for cast from '" +
1947 Val->getType()->getDescription() + "' to '" +
Reid Spencerb5334b02007-02-05 10:18:06 +00001948 DestTy->getDescription() + "'");
Reid Spencerb0fcf8f2007-01-17 02:48:45 +00001949 $$ = ConstantExpr::getCast($1, $3, DestTy);
Reid Spencera132e042006-12-03 05:46:11 +00001950 delete $5;
Chris Lattner58af2a12006-02-15 07:22:58 +00001951 }
1952 | GETELEMENTPTR '(' ConstVal IndexList ')' {
Reid Spencera132e042006-12-03 05:46:11 +00001953 if (!isa<PointerType>($3->getType()))
Reid Spencerb5334b02007-02-05 10:18:06 +00001954 GEN_ERROR("GetElementPtr requires a pointer operand");
Chris Lattner58af2a12006-02-15 07:22:58 +00001955
Reid Spencera132e042006-12-03 05:46:11 +00001956 const Type *IdxTy =
Dan Gohman041e2eb2008-05-15 19:50:34 +00001957 GetElementPtrInst::getIndexedType($3->getType(), $4->begin(), $4->end());
Reid Spencera132e042006-12-03 05:46:11 +00001958 if (!IdxTy)
Reid Spencerb5334b02007-02-05 10:18:06 +00001959 GEN_ERROR("Index list invalid for constant getelementptr");
Reid Spencera132e042006-12-03 05:46:11 +00001960
Chris Lattnerf7469af2007-01-31 04:44:08 +00001961 SmallVector<Constant*, 8> IdxVec;
Reid Spencera132e042006-12-03 05:46:11 +00001962 for (unsigned i = 0, e = $4->size(); i != e; ++i)
1963 if (Constant *C = dyn_cast<Constant>((*$4)[i]))
Chris Lattner58af2a12006-02-15 07:22:58 +00001964 IdxVec.push_back(C);
1965 else
Reid Spencerb5334b02007-02-05 10:18:06 +00001966 GEN_ERROR("Indices to constant getelementptr must be constants");
Chris Lattner58af2a12006-02-15 07:22:58 +00001967
1968 delete $4;
1969
Chris Lattnerf7469af2007-01-31 04:44:08 +00001970 $$ = ConstantExpr::getGetElementPtr($3, &IdxVec[0], IdxVec.size());
Reid Spencer61c83e02006-08-18 08:43:06 +00001971 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001972 }
1973 | SELECT '(' ConstVal ',' ConstVal ',' ConstVal ')' {
Reid Spencer4fe16d62007-01-11 18:21:29 +00001974 if ($3->getType() != Type::Int1Ty)
Reid Spencerb5334b02007-02-05 10:18:06 +00001975 GEN_ERROR("Select condition must be of boolean type");
Reid Spencera132e042006-12-03 05:46:11 +00001976 if ($5->getType() != $7->getType())
Reid Spencerb5334b02007-02-05 10:18:06 +00001977 GEN_ERROR("Select operand types must match");
Reid Spencera132e042006-12-03 05:46:11 +00001978 $$ = ConstantExpr::getSelect($3, $5, $7);
Reid Spencer61c83e02006-08-18 08:43:06 +00001979 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001980 }
1981 | ArithmeticOps '(' ConstVal ',' ConstVal ')' {
Reid Spencera132e042006-12-03 05:46:11 +00001982 if ($3->getType() != $5->getType())
Reid Spencerb5334b02007-02-05 10:18:06 +00001983 GEN_ERROR("Binary operator types must match");
Reid Spencer1628cec2006-10-26 06:15:43 +00001984 CHECK_FOR_ERROR;
Reid Spencer9eef56f2006-12-05 19:16:11 +00001985 $$ = ConstantExpr::get($1, $3, $5);
Chris Lattner58af2a12006-02-15 07:22:58 +00001986 }
1987 | LogicalOps '(' ConstVal ',' ConstVal ')' {
Reid Spencera132e042006-12-03 05:46:11 +00001988 if ($3->getType() != $5->getType())
Reid Spencerb5334b02007-02-05 10:18:06 +00001989 GEN_ERROR("Logical operator types must match");
Chris Lattner42a75512007-01-15 02:27:26 +00001990 if (!$3->getType()->isInteger()) {
Nate Begeman5bc1ea02008-07-29 15:49:41 +00001991 if (!isa<VectorType>($3->getType()) ||
Reid Spencer9d6565a2007-02-15 02:26:10 +00001992 !cast<VectorType>($3->getType())->getElementType()->isInteger())
Reid Spencerb5334b02007-02-05 10:18:06 +00001993 GEN_ERROR("Logical operator requires integral operands");
Chris Lattner58af2a12006-02-15 07:22:58 +00001994 }
Reid Spencera132e042006-12-03 05:46:11 +00001995 $$ = ConstantExpr::get($1, $3, $5);
Reid Spencer61c83e02006-08-18 08:43:06 +00001996 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001997 }
Reid Spencer4012e832006-12-04 05:24:24 +00001998 | ICMP IPredicates '(' ConstVal ',' ConstVal ')' {
1999 if ($4->getType() != $6->getType())
Reid Spencerb5334b02007-02-05 10:18:06 +00002000 GEN_ERROR("icmp operand types must match");
Reid Spencer4012e832006-12-04 05:24:24 +00002001 $$ = ConstantExpr::getICmp($2, $4, $6);
Reid Spencera132e042006-12-03 05:46:11 +00002002 }
Reid Spencer4012e832006-12-04 05:24:24 +00002003 | FCMP FPredicates '(' ConstVal ',' ConstVal ')' {
2004 if ($4->getType() != $6->getType())
Reid Spencerb5334b02007-02-05 10:18:06 +00002005 GEN_ERROR("fcmp operand types must match");
Reid Spencer4012e832006-12-04 05:24:24 +00002006 $$ = ConstantExpr::getFCmp($2, $4, $6);
Reid Spencera132e042006-12-03 05:46:11 +00002007 }
Nate Begemanac80ade2008-05-12 19:01:56 +00002008 | VICMP IPredicates '(' ConstVal ',' ConstVal ')' {
2009 if ($4->getType() != $6->getType())
2010 GEN_ERROR("vicmp operand types must match");
2011 $$ = ConstantExpr::getVICmp($2, $4, $6);
2012 }
2013 | VFCMP FPredicates '(' ConstVal ',' ConstVal ')' {
2014 if ($4->getType() != $6->getType())
2015 GEN_ERROR("vfcmp operand types must match");
2016 $$ = ConstantExpr::getVFCmp($2, $4, $6);
2017 }
Chris Lattner58af2a12006-02-15 07:22:58 +00002018 | EXTRACTELEMENT '(' ConstVal ',' ConstVal ')' {
Reid Spencera132e042006-12-03 05:46:11 +00002019 if (!ExtractElementInst::isValidOperands($3, $5))
Reid Spencerb5334b02007-02-05 10:18:06 +00002020 GEN_ERROR("Invalid extractelement operands");
Reid Spencera132e042006-12-03 05:46:11 +00002021 $$ = ConstantExpr::getExtractElement($3, $5);
Reid Spencer61c83e02006-08-18 08:43:06 +00002022 CHECK_FOR_ERROR
Chris Lattnerd25db202006-04-08 03:55:17 +00002023 }
2024 | INSERTELEMENT '(' ConstVal ',' ConstVal ',' ConstVal ')' {
Reid Spencera132e042006-12-03 05:46:11 +00002025 if (!InsertElementInst::isValidOperands($3, $5, $7))
Reid Spencerb5334b02007-02-05 10:18:06 +00002026 GEN_ERROR("Invalid insertelement operands");
Reid Spencera132e042006-12-03 05:46:11 +00002027 $$ = ConstantExpr::getInsertElement($3, $5, $7);
Reid Spencer61c83e02006-08-18 08:43:06 +00002028 CHECK_FOR_ERROR
Chris Lattnerd25db202006-04-08 03:55:17 +00002029 }
2030 | SHUFFLEVECTOR '(' ConstVal ',' ConstVal ',' ConstVal ')' {
Reid Spencera132e042006-12-03 05:46:11 +00002031 if (!ShuffleVectorInst::isValidOperands($3, $5, $7))
Reid Spencerb5334b02007-02-05 10:18:06 +00002032 GEN_ERROR("Invalid shufflevector operands");
Reid Spencera132e042006-12-03 05:46:11 +00002033 $$ = ConstantExpr::getShuffleVector($3, $5, $7);
Reid Spencer61c83e02006-08-18 08:43:06 +00002034 CHECK_FOR_ERROR
Dan Gohmane4977cf2008-05-23 01:55:30 +00002035 }
Dan Gohman81a0c0b2008-05-31 00:58:22 +00002036 | EXTRACTVALUE '(' ConstVal ConstantIndexList ')' {
Dan Gohmane4977cf2008-05-23 01:55:30 +00002037 if (!isa<StructType>($3->getType()) && !isa<ArrayType>($3->getType()))
2038 GEN_ERROR("ExtractValue requires an aggregate operand");
2039
Dan Gohman81a0c0b2008-05-31 00:58:22 +00002040 $$ = ConstantExpr::getExtractValue($3, &(*$4)[0], $4->size());
Dan Gohmane4977cf2008-05-23 01:55:30 +00002041 delete $4;
Dan Gohmane4977cf2008-05-23 01:55:30 +00002042 CHECK_FOR_ERROR
2043 }
Dan Gohman81a0c0b2008-05-31 00:58:22 +00002044 | INSERTVALUE '(' ConstVal ',' ConstVal ConstantIndexList ')' {
Dan Gohmane4977cf2008-05-23 01:55:30 +00002045 if (!isa<StructType>($3->getType()) && !isa<ArrayType>($3->getType()))
2046 GEN_ERROR("InsertValue requires an aggregate operand");
2047
Dan Gohman81a0c0b2008-05-31 00:58:22 +00002048 $$ = ConstantExpr::getInsertValue($3, $5, &(*$6)[0], $6->size());
Dan Gohmane4977cf2008-05-23 01:55:30 +00002049 delete $6;
Dan Gohmane4977cf2008-05-23 01:55:30 +00002050 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002051 };
2052
Chris Lattnerd25db202006-04-08 03:55:17 +00002053
Chris Lattner58af2a12006-02-15 07:22:58 +00002054// ConstVector - A list of comma separated constants.
2055ConstVector : ConstVector ',' ConstVal {
2056 ($$ = $1)->push_back($3);
Reid Spencer61c83e02006-08-18 08:43:06 +00002057 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002058 }
2059 | ConstVal {
Reid Spencera132e042006-12-03 05:46:11 +00002060 $$ = new std::vector<Constant*>();
Chris Lattner58af2a12006-02-15 07:22:58 +00002061 $$->push_back($1);
Reid Spencer61c83e02006-08-18 08:43:06 +00002062 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002063 };
2064
2065
2066// GlobalType - Match either GLOBAL or CONSTANT for global declarations...
2067GlobalType : GLOBAL { $$ = false; } | CONSTANT { $$ = true; };
2068
Lauro Ramos Venancioc7635522007-04-12 18:32:50 +00002069// ThreadLocal
2070ThreadLocal : THREAD_LOCAL { $$ = true; } | { $$ = false; };
2071
Anton Korobeynikov38e09802007-04-28 13:48:45 +00002072// AliaseeRef - Match either GlobalValue or bitcast to GlobalValue.
2073AliaseeRef : ResultTypes SymbolicValueRef {
2074 const Type* VTy = $1->get();
2075 Value *V = getVal(VTy, $2);
Chris Lattner0275cff2007-08-06 21:00:46 +00002076 CHECK_FOR_ERROR
Anton Korobeynikov38e09802007-04-28 13:48:45 +00002077 GlobalValue* Aliasee = dyn_cast<GlobalValue>(V);
2078 if (!Aliasee)
2079 GEN_ERROR("Aliases can be created only to global values");
2080
2081 $$ = Aliasee;
2082 CHECK_FOR_ERROR
2083 delete $1;
2084 }
2085 | BITCAST '(' AliaseeRef TO Types ')' {
2086 Constant *Val = $3;
2087 const Type *DestTy = $5->get();
2088 if (!CastInst::castIsValid($1, $3, DestTy))
2089 GEN_ERROR("invalid cast opcode for cast from '" +
2090 Val->getType()->getDescription() + "' to '" +
2091 DestTy->getDescription() + "'");
2092
2093 $$ = ConstantExpr::getCast($1, $3, DestTy);
2094 CHECK_FOR_ERROR
2095 delete $5;
2096 };
Chris Lattner58af2a12006-02-15 07:22:58 +00002097
2098//===----------------------------------------------------------------------===//
2099// Rules to match Modules
2100//===----------------------------------------------------------------------===//
2101
2102// Module rule: Capture the result of parsing the whole file into a result
2103// variable...
2104//
Reid Spencer6fd36ab2006-12-29 20:35:03 +00002105Module
2106 : DefinitionList {
2107 $$ = ParserResult = CurModule.CurrentModule;
2108 CurModule.ModuleDone();
2109 CHECK_FOR_ERROR;
2110 }
2111 | /*empty*/ {
2112 $$ = ParserResult = CurModule.CurrentModule;
2113 CurModule.ModuleDone();
2114 CHECK_FOR_ERROR;
2115 }
2116 ;
Chris Lattner58af2a12006-02-15 07:22:58 +00002117
Reid Spencer6fd36ab2006-12-29 20:35:03 +00002118DefinitionList
2119 : Definition
2120 | DefinitionList Definition
2121 ;
2122
2123Definition
Jeff Cohen361c3ef2007-01-21 19:19:31 +00002124 : DEFINE { CurFun.isDeclare = false; } Function {
Chris Lattner58af2a12006-02-15 07:22:58 +00002125 CurFun.FunctionDone();
Reid Spencer61c83e02006-08-18 08:43:06 +00002126 CHECK_FOR_ERROR
Reid Spencer6fd36ab2006-12-29 20:35:03 +00002127 }
2128 | DECLARE { CurFun.isDeclare = true; } FunctionProto {
Reid Spencer61c83e02006-08-18 08:43:06 +00002129 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002130 }
Reid Spencer6fd36ab2006-12-29 20:35:03 +00002131 | MODULE ASM_TOK AsmBlock {
Reid Spencer61c83e02006-08-18 08:43:06 +00002132 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002133 }
Reid Spencer41dff5e2007-01-26 08:05:27 +00002134 | OptLocalAssign TYPE Types {
Reid Spencer14310612006-12-31 05:40:51 +00002135 if (!UpRefs.empty())
2136 GEN_ERROR("Invalid upreference in type: " + (*$3)->getDescription());
Chris Lattner58af2a12006-02-15 07:22:58 +00002137 // Eagerly resolve types. This is not an optimization, this is a
2138 // requirement that is due to the fact that we could have this:
2139 //
2140 // %list = type { %list * }
2141 // %list = type { %list * } ; repeated type decl
2142 //
2143 // If types are not resolved eagerly, then the two types will not be
2144 // determined to be the same type!
2145 //
Reid Spencer6fd36ab2006-12-29 20:35:03 +00002146 ResolveTypeTo($1, *$3);
Chris Lattner58af2a12006-02-15 07:22:58 +00002147
Reid Spencer6fd36ab2006-12-29 20:35:03 +00002148 if (!setTypeName(*$3, $1) && !$1) {
Reid Spencer5b7e7532006-09-28 19:28:24 +00002149 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002150 // If this is a named type that is not a redefinition, add it to the slot
2151 // table.
Reid Spencer6fd36ab2006-12-29 20:35:03 +00002152 CurModule.Types.push_back(*$3);
Chris Lattner58af2a12006-02-15 07:22:58 +00002153 }
Reid Spencera132e042006-12-03 05:46:11 +00002154
Reid Spencer6fd36ab2006-12-29 20:35:03 +00002155 delete $3;
Reid Spencer61c83e02006-08-18 08:43:06 +00002156 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002157 }
Reid Spencer41dff5e2007-01-26 08:05:27 +00002158 | OptLocalAssign TYPE VOID {
Reid Spencer14310612006-12-31 05:40:51 +00002159 ResolveTypeTo($1, $3);
2160
2161 if (!setTypeName($3, $1) && !$1) {
2162 CHECK_FOR_ERROR
2163 // If this is a named type that is not a redefinition, add it to the slot
2164 // table.
2165 CurModule.Types.push_back($3);
2166 }
2167 CHECK_FOR_ERROR
2168 }
Christopher Lambbf3348d2007-12-12 08:45:45 +00002169 | OptGlobalAssign GVVisibilityStyle ThreadLocal GlobalType ConstVal
2170 OptAddrSpace {
Reid Spencer41dff5e2007-01-26 08:05:27 +00002171 /* "Externally Visible" Linkage */
Anton Korobeynikov7f705592007-01-12 19:20:47 +00002172 if ($5 == 0)
Reid Spencerb5334b02007-02-05 10:18:06 +00002173 GEN_ERROR("Global value initializer is not a constant");
Lauro Ramos Venancioc7635522007-04-12 18:32:50 +00002174 CurGV = ParseGlobalVariable($1, GlobalValue::ExternalLinkage,
Christopher Lambbf3348d2007-12-12 08:45:45 +00002175 $2, $4, $5->getType(), $5, $3, $6);
Christopher Lamba8ed9bf2007-12-11 09:02:08 +00002176 CHECK_FOR_ERROR
2177 } GlobalVarAttributes {
2178 CurGV = 0;
2179 }
Chris Lattner6cdc6822007-04-26 05:31:05 +00002180 | OptGlobalAssign GVInternalLinkage GVVisibilityStyle ThreadLocal GlobalType
Christopher Lambbf3348d2007-12-12 08:45:45 +00002181 ConstVal OptAddrSpace {
Lauro Ramos Venancioc7635522007-04-12 18:32:50 +00002182 if ($6 == 0)
2183 GEN_ERROR("Global value initializer is not a constant");
Christopher Lambbf3348d2007-12-12 08:45:45 +00002184 CurGV = ParseGlobalVariable($1, $2, $3, $5, $6->getType(), $6, $4, $7);
Anton Korobeynikov7f705592007-01-12 19:20:47 +00002185 CHECK_FOR_ERROR
Lauro Ramos Venancioc7635522007-04-12 18:32:50 +00002186 } GlobalVarAttributes {
2187 CurGV = 0;
2188 }
Chris Lattner6cdc6822007-04-26 05:31:05 +00002189 | OptGlobalAssign GVExternalLinkage GVVisibilityStyle ThreadLocal GlobalType
Christopher Lambbf3348d2007-12-12 08:45:45 +00002190 Types OptAddrSpace {
Lauro Ramos Venancioc7635522007-04-12 18:32:50 +00002191 if (!UpRefs.empty())
2192 GEN_ERROR("Invalid upreference in type: " + (*$6)->getDescription());
Christopher Lambbf3348d2007-12-12 08:45:45 +00002193 CurGV = ParseGlobalVariable($1, $2, $3, $5, *$6, 0, $4, $7);
Lauro Ramos Venancioc7635522007-04-12 18:32:50 +00002194 CHECK_FOR_ERROR
2195 delete $6;
Reid Spencer5b7e7532006-09-28 19:28:24 +00002196 } GlobalVarAttributes {
Anton Korobeynikovb74ed072006-09-14 18:23:27 +00002197 CurGV = 0;
2198 CHECK_FOR_ERROR
2199 }
Anton Korobeynikov38e09802007-04-28 13:48:45 +00002200 | OptGlobalAssign GVVisibilityStyle ALIAS AliasLinkage AliaseeRef {
Reid Spencer0a8a16b2007-05-22 18:52:55 +00002201 std::string Name;
2202 if ($1) {
2203 Name = *$1;
2204 delete $1;
2205 }
Anton Korobeynikov77d0f972007-04-25 14:29:12 +00002206 if (Name.empty())
Anton Korobeynikov38e09802007-04-28 13:48:45 +00002207 GEN_ERROR("Alias name cannot be empty");
2208
2209 Constant* Aliasee = $5;
2210 if (Aliasee == 0)
Reid Spencer0a8a16b2007-05-22 18:52:55 +00002211 GEN_ERROR(std::string("Invalid aliasee for alias: ") + Name);
Anton Korobeynikov38e09802007-04-28 13:48:45 +00002212
2213 GlobalAlias* GA = new GlobalAlias(Aliasee->getType(), $4, Name, Aliasee,
2214 CurModule.CurrentModule);
2215 GA->setVisibility($2);
2216 InsertValue(GA, CurModule.Values);
Chris Lattner569f7372007-09-10 23:24:14 +00002217
2218
2219 // If there was a forward reference of this alias, resolve it now.
2220
2221 ValID ID;
2222 if (!Name.empty())
2223 ID = ValID::createGlobalName(Name);
2224 else
2225 ID = ValID::createGlobalID(CurModule.Values.size()-1);
2226
2227 if (GlobalValue *FWGV =
2228 CurModule.GetForwardRefForGlobal(GA->getType(), ID)) {
2229 // Replace uses of the fwdref with the actual alias.
2230 FWGV->replaceAllUsesWith(GA);
2231 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(FWGV))
2232 GV->eraseFromParent();
2233 else
2234 cast<Function>(FWGV)->eraseFromParent();
2235 }
2236 ID.destroy();
2237
Anton Korobeynikov77d0f972007-04-25 14:29:12 +00002238 CHECK_FOR_ERROR
Anton Korobeynikov77d0f972007-04-25 14:29:12 +00002239 }
Reid Spencer6fd36ab2006-12-29 20:35:03 +00002240 | TARGET TargetDefinition {
Anton Korobeynikovb74ed072006-09-14 18:23:27 +00002241 CHECK_FOR_ERROR
2242 }
Reid Spencer6fd36ab2006-12-29 20:35:03 +00002243 | DEPLIBS '=' LibrariesDefinition {
Reid Spencer61c83e02006-08-18 08:43:06 +00002244 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002245 }
Reid Spencer6fd36ab2006-12-29 20:35:03 +00002246 ;
Chris Lattner58af2a12006-02-15 07:22:58 +00002247
2248
2249AsmBlock : STRINGCONSTANT {
2250 const std::string &AsmSoFar = CurModule.CurrentModule->getModuleInlineAsm();
Chris Lattner58af2a12006-02-15 07:22:58 +00002251 if (AsmSoFar.empty())
Reid Spencer0a8a16b2007-05-22 18:52:55 +00002252 CurModule.CurrentModule->setModuleInlineAsm(*$1);
Chris Lattner58af2a12006-02-15 07:22:58 +00002253 else
Reid Spencer0a8a16b2007-05-22 18:52:55 +00002254 CurModule.CurrentModule->setModuleInlineAsm(AsmSoFar+"\n"+*$1);
2255 delete $1;
Reid Spencer61c83e02006-08-18 08:43:06 +00002256 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002257};
2258
Reid Spencer41dff5e2007-01-26 08:05:27 +00002259TargetDefinition : TRIPLE '=' STRINGCONSTANT {
Reid Spencer0a8a16b2007-05-22 18:52:55 +00002260 CurModule.CurrentModule->setTargetTriple(*$3);
2261 delete $3;
John Criswell2f6a8b12006-10-24 19:09:48 +00002262 }
Chris Lattner1ae022f2006-10-22 06:08:13 +00002263 | DATALAYOUT '=' STRINGCONSTANT {
Reid Spencer0a8a16b2007-05-22 18:52:55 +00002264 CurModule.CurrentModule->setDataLayout(*$3);
2265 delete $3;
Owen Anderson1dc69692006-10-18 02:21:48 +00002266 };
Chris Lattner58af2a12006-02-15 07:22:58 +00002267
2268LibrariesDefinition : '[' LibList ']';
2269
2270LibList : LibList ',' STRINGCONSTANT {
Reid Spencer0a8a16b2007-05-22 18:52:55 +00002271 CurModule.CurrentModule->addLibrary(*$3);
2272 delete $3;
Reid Spencer61c83e02006-08-18 08:43:06 +00002273 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002274 }
2275 | STRINGCONSTANT {
Reid Spencer0a8a16b2007-05-22 18:52:55 +00002276 CurModule.CurrentModule->addLibrary(*$1);
2277 delete $1;
Reid Spencer61c83e02006-08-18 08:43:06 +00002278 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002279 }
2280 | /* empty: end of list */ {
Reid Spencer61c83e02006-08-18 08:43:06 +00002281 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002282 }
2283 ;
2284
2285//===----------------------------------------------------------------------===//
2286// Rules to match Function Headers
2287//===----------------------------------------------------------------------===//
2288
Reid Spencer41dff5e2007-01-26 08:05:27 +00002289ArgListH : ArgListH ',' Types OptParamAttrs OptLocalName {
Reid Spencer14310612006-12-31 05:40:51 +00002290 if (!UpRefs.empty())
2291 GEN_ERROR("Invalid upreference in type: " + (*$3)->getDescription());
Dan Gohman81a0c0b2008-05-31 00:58:22 +00002292 if (!(*$3)->isFirstClassType())
2293 GEN_ERROR("Argument types must be first-class");
Reid Spencer14310612006-12-31 05:40:51 +00002294 ArgListEntry E; E.Attrs = $4; E.Ty = $3; E.Name = $5;
Chris Lattner58af2a12006-02-15 07:22:58 +00002295 $$ = $1;
Reid Spencer14310612006-12-31 05:40:51 +00002296 $1->push_back(E);
Reid Spencer61c83e02006-08-18 08:43:06 +00002297 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002298 }
Reid Spencer41dff5e2007-01-26 08:05:27 +00002299 | Types OptParamAttrs OptLocalName {
Reid Spencer14310612006-12-31 05:40:51 +00002300 if (!UpRefs.empty())
2301 GEN_ERROR("Invalid upreference in type: " + (*$1)->getDescription());
Dan Gohman81a0c0b2008-05-31 00:58:22 +00002302 if (!(*$1)->isFirstClassType())
2303 GEN_ERROR("Argument types must be first-class");
Reid Spencer14310612006-12-31 05:40:51 +00002304 ArgListEntry E; E.Attrs = $2; E.Ty = $1; E.Name = $3;
2305 $$ = new ArgListType;
2306 $$->push_back(E);
Reid Spencer61c83e02006-08-18 08:43:06 +00002307 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002308 };
2309
2310ArgList : ArgListH {
2311 $$ = $1;
Reid Spencer61c83e02006-08-18 08:43:06 +00002312 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002313 }
2314 | ArgListH ',' DOTDOTDOT {
2315 $$ = $1;
Reid Spencer14310612006-12-31 05:40:51 +00002316 struct ArgListEntry E;
2317 E.Ty = new PATypeHolder(Type::VoidTy);
2318 E.Name = 0;
Reid Spencer18da0722007-04-11 02:44:20 +00002319 E.Attrs = ParamAttr::None;
Reid Spencer14310612006-12-31 05:40:51 +00002320 $$->push_back(E);
Reid Spencer61c83e02006-08-18 08:43:06 +00002321 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002322 }
2323 | DOTDOTDOT {
Reid Spencer14310612006-12-31 05:40:51 +00002324 $$ = new ArgListType;
2325 struct ArgListEntry E;
2326 E.Ty = new PATypeHolder(Type::VoidTy);
2327 E.Name = 0;
Reid Spencer18da0722007-04-11 02:44:20 +00002328 E.Attrs = ParamAttr::None;
Reid Spencer14310612006-12-31 05:40:51 +00002329 $$->push_back(E);
Reid Spencer61c83e02006-08-18 08:43:06 +00002330 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002331 }
2332 | /* empty */ {
2333 $$ = 0;
Reid Spencer61c83e02006-08-18 08:43:06 +00002334 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002335 };
2336
Reid Spencer41dff5e2007-01-26 08:05:27 +00002337FunctionHeaderH : OptCallingConv ResultTypes GlobalName '(' ArgList ')'
Devang Pateld4980812008-09-02 20:52:40 +00002338 OptFuncAttrs OptSection OptAlign OptGC OptFuncNotes {
Reid Spencer0a8a16b2007-05-22 18:52:55 +00002339 std::string FunctionName(*$3);
2340 delete $3; // Free strdup'd memory!
Chris Lattner58af2a12006-02-15 07:22:58 +00002341
Reid Spencer8c8a2dc2007-01-02 21:54:12 +00002342 // Check the function result for abstractness if this is a define. We should
2343 // have no abstract types at this point
Reid Spencer218ded22007-01-05 17:07:23 +00002344 if (!CurFun.isDeclare && CurModule.TypeIsUnresolved($2))
2345 GEN_ERROR("Reference to abstract result: "+ $2->get()->getDescription());
Reid Spencer8c8a2dc2007-01-02 21:54:12 +00002346
Chris Lattnera925a142008-04-23 05:37:08 +00002347 if (!FunctionType::isValidReturnType(*$2))
2348 GEN_ERROR("Invalid result type for LLVM function");
2349
Chris Lattner58af2a12006-02-15 07:22:58 +00002350 std::vector<const Type*> ParamTypeList;
Chris Lattner58d74912008-03-12 17:45:29 +00002351 SmallVector<ParamAttrsWithIndex, 8> Attrs;
2352 if ($7 != ParamAttr::None)
2353 Attrs.push_back(ParamAttrsWithIndex::get(0, $7));
Chris Lattner58af2a12006-02-15 07:22:58 +00002354 if ($5) { // If there are arguments...
Reid Spencer7b5d4662007-04-09 06:16:21 +00002355 unsigned index = 1;
2356 for (ArgListType::iterator I = $5->begin(); I != $5->end(); ++I, ++index) {
Reid Spencer14310612006-12-31 05:40:51 +00002357 const Type* Ty = I->Ty->get();
Reid Spencer8c8a2dc2007-01-02 21:54:12 +00002358 if (!CurFun.isDeclare && CurModule.TypeIsUnresolved(I->Ty))
2359 GEN_ERROR("Reference to abstract argument: " + Ty->getDescription());
Reid Spencer14310612006-12-31 05:40:51 +00002360 ParamTypeList.push_back(Ty);
Chris Lattner58d74912008-03-12 17:45:29 +00002361 if (Ty != Type::VoidTy && I->Attrs != ParamAttr::None)
2362 Attrs.push_back(ParamAttrsWithIndex::get(index, I->Attrs));
Reid Spencer14310612006-12-31 05:40:51 +00002363 }
Chris Lattner58af2a12006-02-15 07:22:58 +00002364 }
2365
2366 bool isVarArg = ParamTypeList.size() && ParamTypeList.back() == Type::VoidTy;
2367 if (isVarArg) ParamTypeList.pop_back();
2368
Chris Lattner58d74912008-03-12 17:45:29 +00002369 PAListPtr PAL;
Christopher Lamb5c104242007-04-22 20:09:11 +00002370 if (!Attrs.empty())
Chris Lattner58d74912008-03-12 17:45:29 +00002371 PAL = PAListPtr::get(Attrs.begin(), Attrs.end());
Reid Spencer7b5d4662007-04-09 06:16:21 +00002372
Duncan Sandsdc024672007-11-27 13:23:08 +00002373 FunctionType *FT = FunctionType::get(*$2, ParamTypeList, isVarArg);
Christopher Lamb4374f8e2007-12-17 01:17:35 +00002374 const PointerType *PFT = PointerType::getUnqual(FT);
Reid Spencer218ded22007-01-05 17:07:23 +00002375 delete $2;
Chris Lattner58af2a12006-02-15 07:22:58 +00002376
2377 ValID ID;
2378 if (!FunctionName.empty()) {
Reid Spencer41dff5e2007-01-26 08:05:27 +00002379 ID = ValID::createGlobalName((char*)FunctionName.c_str());
Chris Lattner58af2a12006-02-15 07:22:58 +00002380 } else {
Reid Spencer93c40032007-03-19 18:40:50 +00002381 ID = ValID::createGlobalID(CurModule.Values.size());
Chris Lattner58af2a12006-02-15 07:22:58 +00002382 }
2383
2384 Function *Fn = 0;
2385 // See if this function was forward referenced. If so, recycle the object.
2386 if (GlobalValue *FWRef = CurModule.GetForwardRefForGlobal(PFT, ID)) {
2387 // Move the function to the end of the list, from whereever it was
2388 // previously inserted.
2389 Fn = cast<Function>(FWRef);
Chris Lattner58d74912008-03-12 17:45:29 +00002390 assert(Fn->getParamAttrs().isEmpty() &&
2391 "Forward reference has parameter attributes!");
Chris Lattner58af2a12006-02-15 07:22:58 +00002392 CurModule.CurrentModule->getFunctionList().remove(Fn);
2393 CurModule.CurrentModule->getFunctionList().push_back(Fn);
2394 } else if (!FunctionName.empty() && // Merge with an earlier prototype?
Reid Spenceref9b9a72007-02-05 20:47:22 +00002395 (Fn = CurModule.CurrentModule->getFunction(FunctionName))) {
Duncan Sandsdc024672007-11-27 13:23:08 +00002396 if (Fn->getFunctionType() != FT ) {
Reid Spenceref9b9a72007-02-05 20:47:22 +00002397 // The existing function doesn't have the same type. This is an overload
2398 // error.
2399 GEN_ERROR("Overload of function '" + FunctionName + "' not permitted.");
Duncan Sandsdc024672007-11-27 13:23:08 +00002400 } else if (Fn->getParamAttrs() != PAL) {
2401 // The existing function doesn't have the same parameter attributes.
2402 // This is an overload error.
2403 GEN_ERROR("Overload of function '" + FunctionName + "' not permitted.");
Reid Spenceref9b9a72007-02-05 20:47:22 +00002404 } else if (!CurFun.isDeclare && !Fn->isDeclaration()) {
Chris Lattner6cdc6822007-04-26 05:31:05 +00002405 // Neither the existing or the current function is a declaration and they
2406 // have the same name and same type. Clearly this is a redefinition.
2407 GEN_ERROR("Redefinition of function '" + FunctionName + "'");
Duncan Sandsdc024672007-11-27 13:23:08 +00002408 } else if (Fn->isDeclaration()) {
Reid Spenceref9b9a72007-02-05 20:47:22 +00002409 // Make sure to strip off any argument names so we can't get conflicts.
Chris Lattner58af2a12006-02-15 07:22:58 +00002410 for (Function::arg_iterator AI = Fn->arg_begin(), AE = Fn->arg_end();
2411 AI != AE; ++AI)
2412 AI->setName("");
Reid Spenceref9b9a72007-02-05 20:47:22 +00002413 }
Chris Lattner58af2a12006-02-15 07:22:58 +00002414 } else { // Not already defined?
Gabor Greife64d2482008-04-06 23:07:54 +00002415 Fn = Function::Create(FT, GlobalValue::ExternalWeakLinkage, FunctionName,
2416 CurModule.CurrentModule);
Chris Lattner58af2a12006-02-15 07:22:58 +00002417 InsertValue(Fn, CurModule.Values);
2418 }
2419
2420 CurFun.FunctionStart(Fn);
Anton Korobeynikov93c2b372006-09-17 13:06:18 +00002421
2422 if (CurFun.isDeclare) {
2423 // If we have declaration, always overwrite linkage. This will allow us to
2424 // correctly handle cases, when pointer to function is passed as argument to
2425 // another function.
2426 Fn->setLinkage(CurFun.Linkage);
Anton Korobeynikov7f705592007-01-12 19:20:47 +00002427 Fn->setVisibility(CurFun.Visibility);
Anton Korobeynikov93c2b372006-09-17 13:06:18 +00002428 }
Chris Lattner58af2a12006-02-15 07:22:58 +00002429 Fn->setCallingConv($1);
Duncan Sandsdc024672007-11-27 13:23:08 +00002430 Fn->setParamAttrs(PAL);
Reid Spencer218ded22007-01-05 17:07:23 +00002431 Fn->setAlignment($9);
2432 if ($8) {
Reid Spencer0a8a16b2007-05-22 18:52:55 +00002433 Fn->setSection(*$8);
2434 delete $8;
Chris Lattner58af2a12006-02-15 07:22:58 +00002435 }
Gordon Henriksen80a75bf2007-12-10 03:18:06 +00002436 if ($10) {
Gordon Henriksen5d82cd32008-08-17 18:48:50 +00002437 Fn->setGC($10->c_str());
Gordon Henriksen80a75bf2007-12-10 03:18:06 +00002438 delete $10;
2439 }
Devang Pateld4980812008-09-02 20:52:40 +00002440 if ($11) {
2441 Fn->setNotes($11);
2442 }
Chris Lattner58af2a12006-02-15 07:22:58 +00002443
2444 // Add all of the arguments we parsed to the function...
2445 if ($5) { // Is null if empty...
2446 if (isVarArg) { // Nuke the last entry
Reid Spenceref9b9a72007-02-05 20:47:22 +00002447 assert($5->back().Ty->get() == Type::VoidTy && $5->back().Name == 0 &&
Reid Spencera9720f52007-02-05 17:04:00 +00002448 "Not a varargs marker!");
Reid Spencer14310612006-12-31 05:40:51 +00002449 delete $5->back().Ty;
Chris Lattner58af2a12006-02-15 07:22:58 +00002450 $5->pop_back(); // Delete the last entry
2451 }
2452 Function::arg_iterator ArgIt = Fn->arg_begin();
Reid Spenceref9b9a72007-02-05 20:47:22 +00002453 Function::arg_iterator ArgEnd = Fn->arg_end();
Reid Spencer14310612006-12-31 05:40:51 +00002454 unsigned Idx = 1;
Reid Spenceref9b9a72007-02-05 20:47:22 +00002455 for (ArgListType::iterator I = $5->begin();
2456 I != $5->end() && ArgIt != ArgEnd; ++I, ++ArgIt) {
Reid Spencer14310612006-12-31 05:40:51 +00002457 delete I->Ty; // Delete the typeholder...
Reid Spencer0a8a16b2007-05-22 18:52:55 +00002458 setValueName(ArgIt, I->Name); // Insert arg into symtab...
Reid Spencer5b7e7532006-09-28 19:28:24 +00002459 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002460 InsertValue(ArgIt);
Reid Spencer14310612006-12-31 05:40:51 +00002461 Idx++;
Chris Lattner58af2a12006-02-15 07:22:58 +00002462 }
Reid Spencera132e042006-12-03 05:46:11 +00002463
Chris Lattner58af2a12006-02-15 07:22:58 +00002464 delete $5; // We're now done with the argument list
2465 }
Reid Spencer61c83e02006-08-18 08:43:06 +00002466 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002467};
2468
2469BEGIN : BEGINTOK | '{'; // Allow BEGIN or '{' to start a function
2470
Anton Korobeynikov7f705592007-01-12 19:20:47 +00002471FunctionHeader : FunctionDefineLinkage GVVisibilityStyle FunctionHeaderH BEGIN {
Chris Lattner58af2a12006-02-15 07:22:58 +00002472 $$ = CurFun.CurrentFunction;
2473
2474 // Make sure that we keep track of the linkage type even if there was a
2475 // previous "declare".
2476 $$->setLinkage($1);
Anton Korobeynikov7f705592007-01-12 19:20:47 +00002477 $$->setVisibility($2);
Chris Lattner58af2a12006-02-15 07:22:58 +00002478};
2479
2480END : ENDTOK | '}'; // Allow end of '}' to end a function
2481
2482Function : BasicBlockList END {
2483 $$ = $1;
Reid Spencer61c83e02006-08-18 08:43:06 +00002484 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002485};
2486
Anton Korobeynikov7f705592007-01-12 19:20:47 +00002487FunctionProto : FunctionDeclareLinkage GVVisibilityStyle FunctionHeaderH {
Reid Spencer14310612006-12-31 05:40:51 +00002488 CurFun.CurrentFunction->setLinkage($1);
Anton Korobeynikov7f705592007-01-12 19:20:47 +00002489 CurFun.CurrentFunction->setVisibility($2);
Anton Korobeynikovb74ed072006-09-14 18:23:27 +00002490 $$ = CurFun.CurrentFunction;
2491 CurFun.FunctionDone();
2492 CHECK_FOR_ERROR
2493 };
Chris Lattner58af2a12006-02-15 07:22:58 +00002494
2495//===----------------------------------------------------------------------===//
2496// Rules to match Basic Blocks
2497//===----------------------------------------------------------------------===//
2498
2499OptSideEffect : /* empty */ {
2500 $$ = false;
Reid Spencer61c83e02006-08-18 08:43:06 +00002501 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002502 }
2503 | SIDEEFFECT {
2504 $$ = true;
Reid Spencer61c83e02006-08-18 08:43:06 +00002505 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002506 };
2507
2508ConstValueRef : ESINT64VAL { // A reference to a direct constant
2509 $$ = ValID::create($1);
Reid Spencer61c83e02006-08-18 08:43:06 +00002510 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002511 }
2512 | EUINT64VAL {
2513 $$ = ValID::create($1);
Reid Spencer61c83e02006-08-18 08:43:06 +00002514 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002515 }
Chris Lattner1913b942008-07-11 00:30:39 +00002516 | ESAPINTVAL { // arbitrary precision integer constants
2517 $$ = ValID::create(*$1, true);
2518 delete $1;
2519 CHECK_FOR_ERROR
2520 }
2521 | EUAPINTVAL { // arbitrary precision integer constants
2522 $$ = ValID::create(*$1, false);
2523 delete $1;
2524 CHECK_FOR_ERROR
2525 }
Chris Lattner58af2a12006-02-15 07:22:58 +00002526 | FPVAL { // Perhaps it's an FP constant?
2527 $$ = ValID::create($1);
Reid Spencer61c83e02006-08-18 08:43:06 +00002528 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002529 }
2530 | TRUETOK {
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00002531 $$ = ValID::create(ConstantInt::getTrue());
Reid Spencer61c83e02006-08-18 08:43:06 +00002532 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002533 }
2534 | FALSETOK {
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00002535 $$ = ValID::create(ConstantInt::getFalse());
Reid Spencer61c83e02006-08-18 08:43:06 +00002536 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002537 }
2538 | NULL_TOK {
2539 $$ = ValID::createNull();
Reid Spencer61c83e02006-08-18 08:43:06 +00002540 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002541 }
2542 | UNDEF {
2543 $$ = ValID::createUndef();
Reid Spencer61c83e02006-08-18 08:43:06 +00002544 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002545 }
2546 | ZEROINITIALIZER { // A vector zero constant.
2547 $$ = ValID::createZeroInit();
Reid Spencer61c83e02006-08-18 08:43:06 +00002548 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002549 }
2550 | '<' ConstVector '>' { // Nonempty unsized packed vector
Reid Spencera132e042006-12-03 05:46:11 +00002551 const Type *ETy = (*$2)[0]->getType();
Dan Gohman180c1692008-06-23 18:43:26 +00002552 unsigned NumElements = $2->size();
Dan Gohman81a0c0b2008-05-31 00:58:22 +00002553
2554 if (!ETy->isInteger() && !ETy->isFloatingPoint())
2555 GEN_ERROR("Invalid vector element type: " + ETy->getDescription());
Chris Lattner58af2a12006-02-15 07:22:58 +00002556
Reid Spencer9d6565a2007-02-15 02:26:10 +00002557 VectorType* pt = VectorType::get(ETy, NumElements);
Dan Gohmanf910eaa2008-06-09 14:45:02 +00002558 PATypeHolder* PTy = new PATypeHolder(HandleUpRefs(pt));
Chris Lattner58af2a12006-02-15 07:22:58 +00002559
2560 // Verify all elements are correct type!
2561 for (unsigned i = 0; i < $2->size(); i++) {
Reid Spencera132e042006-12-03 05:46:11 +00002562 if (ETy != (*$2)[i]->getType())
Reid Spencer61c83e02006-08-18 08:43:06 +00002563 GEN_ERROR("Element #" + utostr(i) + " is not of type '" +
Chris Lattner58af2a12006-02-15 07:22:58 +00002564 ETy->getDescription() +"' as required!\nIt is of type '" +
Reid Spencera132e042006-12-03 05:46:11 +00002565 (*$2)[i]->getType()->getDescription() + "'.");
Chris Lattner58af2a12006-02-15 07:22:58 +00002566 }
2567
Reid Spencer9d6565a2007-02-15 02:26:10 +00002568 $$ = ValID::create(ConstantVector::get(pt, *$2));
Chris Lattner58af2a12006-02-15 07:22:58 +00002569 delete PTy; delete $2;
Reid Spencer61c83e02006-08-18 08:43:06 +00002570 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002571 }
Dan Gohmanf910eaa2008-06-09 14:45:02 +00002572 | '[' ConstVector ']' { // Nonempty unsized arr
2573 const Type *ETy = (*$2)[0]->getType();
Dan Gohman180c1692008-06-23 18:43:26 +00002574 uint64_t NumElements = $2->size();
Dan Gohmanf910eaa2008-06-09 14:45:02 +00002575
2576 if (!ETy->isFirstClassType())
2577 GEN_ERROR("Invalid array element type: " + ETy->getDescription());
2578
2579 ArrayType *ATy = ArrayType::get(ETy, NumElements);
2580 PATypeHolder* PTy = new PATypeHolder(HandleUpRefs(ATy));
2581
2582 // Verify all elements are correct type!
2583 for (unsigned i = 0; i < $2->size(); i++) {
2584 if (ETy != (*$2)[i]->getType())
2585 GEN_ERROR("Element #" + utostr(i) + " is not of type '" +
2586 ETy->getDescription() +"' as required!\nIt is of type '"+
2587 (*$2)[i]->getType()->getDescription() + "'.");
2588 }
2589
2590 $$ = ValID::create(ConstantArray::get(ATy, *$2));
2591 delete PTy; delete $2;
2592 CHECK_FOR_ERROR
2593 }
2594 | '[' ']' {
Dan Gohman180c1692008-06-23 18:43:26 +00002595 // Use undef instead of an array because it's inconvenient to determine
2596 // the element type at this point, there being no elements to examine.
Dan Gohmanf910eaa2008-06-09 14:45:02 +00002597 $$ = ValID::createUndef();
2598 CHECK_FOR_ERROR
2599 }
2600 | 'c' STRINGCONSTANT {
Dan Gohman180c1692008-06-23 18:43:26 +00002601 uint64_t NumElements = $2->length();
Dan Gohmanf910eaa2008-06-09 14:45:02 +00002602 const Type *ETy = Type::Int8Ty;
2603
2604 ArrayType *ATy = ArrayType::get(ETy, NumElements);
2605
2606 std::vector<Constant*> Vals;
2607 for (unsigned i = 0; i < $2->length(); ++i)
2608 Vals.push_back(ConstantInt::get(ETy, (*$2)[i]));
2609 delete $2;
2610 $$ = ValID::create(ConstantArray::get(ATy, Vals));
2611 CHECK_FOR_ERROR
2612 }
2613 | '{' ConstVector '}' {
2614 std::vector<const Type*> Elements($2->size());
2615 for (unsigned i = 0, e = $2->size(); i != e; ++i)
2616 Elements[i] = (*$2)[i]->getType();
2617
2618 const StructType *STy = StructType::get(Elements);
2619 PATypeHolder* PTy = new PATypeHolder(HandleUpRefs(STy));
2620
2621 $$ = ValID::create(ConstantStruct::get(STy, *$2));
2622 delete PTy; delete $2;
2623 CHECK_FOR_ERROR
2624 }
2625 | '{' '}' {
2626 const StructType *STy = StructType::get(std::vector<const Type*>());
2627 $$ = ValID::create(ConstantStruct::get(STy, std::vector<Constant*>()));
2628 CHECK_FOR_ERROR
2629 }
2630 | '<' '{' ConstVector '}' '>' {
2631 std::vector<const Type*> Elements($3->size());
2632 for (unsigned i = 0, e = $3->size(); i != e; ++i)
2633 Elements[i] = (*$3)[i]->getType();
2634
2635 const StructType *STy = StructType::get(Elements, /*isPacked=*/true);
2636 PATypeHolder* PTy = new PATypeHolder(HandleUpRefs(STy));
2637
2638 $$ = ValID::create(ConstantStruct::get(STy, *$3));
2639 delete PTy; delete $3;
2640 CHECK_FOR_ERROR
2641 }
2642 | '<' '{' '}' '>' {
2643 const StructType *STy = StructType::get(std::vector<const Type*>(),
2644 /*isPacked=*/true);
2645 $$ = ValID::create(ConstantStruct::get(STy, std::vector<Constant*>()));
2646 CHECK_FOR_ERROR
2647 }
Chris Lattner58af2a12006-02-15 07:22:58 +00002648 | ConstExpr {
Reid Spencera132e042006-12-03 05:46:11 +00002649 $$ = ValID::create($1);
Reid Spencer61c83e02006-08-18 08:43:06 +00002650 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002651 }
2652 | ASM_TOK OptSideEffect STRINGCONSTANT ',' STRINGCONSTANT {
Reid Spencer0a8a16b2007-05-22 18:52:55 +00002653 $$ = ValID::createInlineAsm(*$3, *$5, $2);
2654 delete $3;
2655 delete $5;
Reid Spencer61c83e02006-08-18 08:43:06 +00002656 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002657 };
2658
2659// SymbolicValueRef - Reference to one of two ways of symbolically refering to
2660// another value.
2661//
Reid Spencer41dff5e2007-01-26 08:05:27 +00002662SymbolicValueRef : LOCALVAL_ID { // Is it an integer reference...?
2663 $$ = ValID::createLocalID($1);
Reid Spencer61c83e02006-08-18 08:43:06 +00002664 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002665 }
Reid Spencer41dff5e2007-01-26 08:05:27 +00002666 | GLOBALVAL_ID {
2667 $$ = ValID::createGlobalID($1);
2668 CHECK_FOR_ERROR
2669 }
2670 | LocalName { // Is it a named reference...?
Reid Spencer0a8a16b2007-05-22 18:52:55 +00002671 $$ = ValID::createLocalName(*$1);
2672 delete $1;
Reid Spencer41dff5e2007-01-26 08:05:27 +00002673 CHECK_FOR_ERROR
2674 }
2675 | GlobalName { // Is it a named reference...?
Reid Spencer0a8a16b2007-05-22 18:52:55 +00002676 $$ = ValID::createGlobalName(*$1);
2677 delete $1;
Reid Spencer61c83e02006-08-18 08:43:06 +00002678 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002679 };
2680
2681// ValueRef - A reference to a definition... either constant or symbolic
2682ValueRef : SymbolicValueRef | ConstValueRef;
2683
2684
2685// ResolvedVal - a <type> <value> pair. This is used only in cases where the
2686// type immediately preceeds the value reference, and allows complex constant
2687// pool references (for things like: 'ret [2 x int] [ int 12, int 42]')
2688ResolvedVal : Types ValueRef {
Reid Spencer14310612006-12-31 05:40:51 +00002689 if (!UpRefs.empty())
2690 GEN_ERROR("Invalid upreference in type: " + (*$1)->getDescription());
2691 $$ = getVal(*$1, $2);
2692 delete $1;
Reid Spencer61c83e02006-08-18 08:43:06 +00002693 CHECK_FOR_ERROR
Reid Spencer14310612006-12-31 05:40:51 +00002694 }
2695 ;
Chris Lattner58af2a12006-02-15 07:22:58 +00002696
Devang Patel7990dc72008-02-20 22:40:23 +00002697ReturnedVal : ResolvedVal {
2698 $$ = new std::vector<Value *>();
2699 $$->push_back($1);
2700 CHECK_FOR_ERROR
2701 }
Devang Patel6bfc63b2008-02-23 00:38:56 +00002702 | ReturnedVal ',' ResolvedVal {
Devang Patel7990dc72008-02-20 22:40:23 +00002703 ($$=$1)->push_back($3);
2704 CHECK_FOR_ERROR
2705 };
2706
Chris Lattner58af2a12006-02-15 07:22:58 +00002707BasicBlockList : BasicBlockList BasicBlock {
2708 $$ = $1;
Reid Spencer61c83e02006-08-18 08:43:06 +00002709 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002710 }
2711 | FunctionHeader BasicBlock { // Do not allow functions with 0 basic blocks
2712 $$ = $1;
Reid Spencer61c83e02006-08-18 08:43:06 +00002713 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002714 };
2715
2716
2717// Basic blocks are terminated by branching instructions:
2718// br, br/cc, switch, ret
2719//
Chris Lattner15bd0952008-08-29 17:20:18 +00002720BasicBlock : InstructionList OptLocalAssign BBTerminatorInst {
Chris Lattner58af2a12006-02-15 07:22:58 +00002721 setValueName($3, $2);
Reid Spencer5b7e7532006-09-28 19:28:24 +00002722 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002723 InsertValue($3);
Chris Lattner58af2a12006-02-15 07:22:58 +00002724 $1->getInstList().push_back($3);
Chris Lattner58af2a12006-02-15 07:22:58 +00002725 $$ = $1;
Reid Spencer61c83e02006-08-18 08:43:06 +00002726 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002727 };
2728
Chris Lattner15bd0952008-08-29 17:20:18 +00002729BasicBlock : InstructionList LocalNumber BBTerminatorInst {
2730 CHECK_FOR_ERROR
2731 int ValNum = InsertValue($3);
2732 if (ValNum != (int)$2)
2733 GEN_ERROR("Result value number %" + utostr($2) +
2734 " is incorrect, expected %" + utostr((unsigned)ValNum));
2735
2736 $1->getInstList().push_back($3);
2737 $$ = $1;
2738 CHECK_FOR_ERROR
2739};
2740
2741
Chris Lattner58af2a12006-02-15 07:22:58 +00002742InstructionList : InstructionList Inst {
Reid Spencer3da59db2006-11-27 01:05:10 +00002743 if (CastInst *CI1 = dyn_cast<CastInst>($2))
2744 if (CastInst *CI2 = dyn_cast<CastInst>(CI1->getOperand(0)))
2745 if (CI2->getParent() == 0)
2746 $1->getInstList().push_back(CI2);
Chris Lattner58af2a12006-02-15 07:22:58 +00002747 $1->getInstList().push_back($2);
2748 $$ = $1;
Reid Spencer61c83e02006-08-18 08:43:06 +00002749 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002750 }
Reid Spencer93c40032007-03-19 18:40:50 +00002751 | /* empty */ { // Empty space between instruction lists
Nick Lewycky280a6e62008-04-25 16:53:59 +00002752 $$ = defineBBVal(ValID::createLocalID(CurFun.NextValNum));
Reid Spencer61c83e02006-08-18 08:43:06 +00002753 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002754 }
Reid Spencer93c40032007-03-19 18:40:50 +00002755 | LABELSTR { // Labelled (named) basic block
Nick Lewycky280a6e62008-04-25 16:53:59 +00002756 $$ = defineBBVal(ValID::createLocalName(*$1));
Reid Spencer0a8a16b2007-05-22 18:52:55 +00002757 delete $1;
Reid Spencer61c83e02006-08-18 08:43:06 +00002758 CHECK_FOR_ERROR
Nick Lewycky280a6e62008-04-25 16:53:59 +00002759
Chris Lattner58af2a12006-02-15 07:22:58 +00002760 };
2761
Devang Patel7990dc72008-02-20 22:40:23 +00002762BBTerminatorInst :
2763 RET ReturnedVal { // Return with a result...
Devang Patelb82b7f22008-02-26 22:17:48 +00002764 ValueList &VL = *$2;
Devang Patel13b823c2008-02-26 23:19:08 +00002765 assert(!VL.empty() && "Invalid ret operands!");
Dan Gohman1a570242008-07-23 00:54:54 +00002766 const Type *ReturnType = CurFun.CurrentFunction->getReturnType();
2767 if (VL.size() > 1 ||
2768 (isa<StructType>(ReturnType) &&
2769 (VL.empty() || VL[0]->getType() != ReturnType))) {
2770 Value *RV = UndefValue::get(ReturnType);
2771 for (unsigned i = 0, e = VL.size(); i != e; ++i) {
2772 Instruction *I = InsertValueInst::Create(RV, VL[i], i, "mrv");
2773 ($<BasicBlockVal>-1)->getInstList().push_back(I);
2774 RV = I;
2775 }
2776 $$ = ReturnInst::Create(RV);
2777 } else {
2778 $$ = ReturnInst::Create(VL[0]);
2779 }
Devang Patel7990dc72008-02-20 22:40:23 +00002780 delete $2;
Reid Spencer61c83e02006-08-18 08:43:06 +00002781 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002782 }
Reid Spencer93c40032007-03-19 18:40:50 +00002783 | RET VOID { // Return with no result...
Gabor Greife64d2482008-04-06 23:07:54 +00002784 $$ = ReturnInst::Create();
Reid Spencer61c83e02006-08-18 08:43:06 +00002785 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002786 }
Reid Spencer93c40032007-03-19 18:40:50 +00002787 | BR LABEL ValueRef { // Unconditional Branch...
Reid Spencer5b7e7532006-09-28 19:28:24 +00002788 BasicBlock* tmpBB = getBBVal($3);
Reid Spencer61c83e02006-08-18 08:43:06 +00002789 CHECK_FOR_ERROR
Gabor Greife64d2482008-04-06 23:07:54 +00002790 $$ = BranchInst::Create(tmpBB);
Reid Spencer93c40032007-03-19 18:40:50 +00002791 } // Conditional Branch...
Reid Spencer6f407902007-01-13 05:00:46 +00002792 | BR INTTYPE ValueRef ',' LABEL ValueRef ',' LABEL ValueRef {
Dan Gohman81a0c0b2008-05-31 00:58:22 +00002793 if (cast<IntegerType>($2)->getBitWidth() != 1)
2794 GEN_ERROR("Branch condition must have type i1");
Reid Spencer5b7e7532006-09-28 19:28:24 +00002795 BasicBlock* tmpBBA = getBBVal($6);
Reid Spencer61c83e02006-08-18 08:43:06 +00002796 CHECK_FOR_ERROR
Reid Spencer5b7e7532006-09-28 19:28:24 +00002797 BasicBlock* tmpBBB = getBBVal($9);
2798 CHECK_FOR_ERROR
Reid Spencer4fe16d62007-01-11 18:21:29 +00002799 Value* tmpVal = getVal(Type::Int1Ty, $3);
Reid Spencer5b7e7532006-09-28 19:28:24 +00002800 CHECK_FOR_ERROR
Gabor Greife64d2482008-04-06 23:07:54 +00002801 $$ = BranchInst::Create(tmpBBA, tmpBBB, tmpVal);
Chris Lattner58af2a12006-02-15 07:22:58 +00002802 }
2803 | SWITCH IntType ValueRef ',' LABEL ValueRef '[' JumpTable ']' {
Reid Spencera132e042006-12-03 05:46:11 +00002804 Value* tmpVal = getVal($2, $3);
Reid Spencer5b7e7532006-09-28 19:28:24 +00002805 CHECK_FOR_ERROR
2806 BasicBlock* tmpBB = getBBVal($6);
2807 CHECK_FOR_ERROR
Gabor Greife64d2482008-04-06 23:07:54 +00002808 SwitchInst *S = SwitchInst::Create(tmpVal, tmpBB, $8->size());
Chris Lattner58af2a12006-02-15 07:22:58 +00002809 $$ = S;
2810
2811 std::vector<std::pair<Constant*,BasicBlock*> >::iterator I = $8->begin(),
2812 E = $8->end();
2813 for (; I != E; ++I) {
2814 if (ConstantInt *CI = dyn_cast<ConstantInt>(I->first))
2815 S->addCase(CI, I->second);
2816 else
Reid Spencerb5334b02007-02-05 10:18:06 +00002817 GEN_ERROR("Switch case is constant, but not a simple integer");
Chris Lattner58af2a12006-02-15 07:22:58 +00002818 }
2819 delete $8;
Reid Spencer61c83e02006-08-18 08:43:06 +00002820 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002821 }
2822 | SWITCH IntType ValueRef ',' LABEL ValueRef '[' ']' {
Reid Spencera132e042006-12-03 05:46:11 +00002823 Value* tmpVal = getVal($2, $3);
Reid Spencer5b7e7532006-09-28 19:28:24 +00002824 CHECK_FOR_ERROR
2825 BasicBlock* tmpBB = getBBVal($6);
2826 CHECK_FOR_ERROR
Gabor Greife64d2482008-04-06 23:07:54 +00002827 SwitchInst *S = SwitchInst::Create(tmpVal, tmpBB, 0);
Chris Lattner58af2a12006-02-15 07:22:58 +00002828 $$ = S;
Reid Spencer61c83e02006-08-18 08:43:06 +00002829 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002830 }
Dale Johanneseneb57ea72007-11-05 21:20:28 +00002831 | INVOKE OptCallingConv ResultTypes ValueRef '(' ParamList ')' OptFuncAttrs
Chris Lattner58af2a12006-02-15 07:22:58 +00002832 TO LABEL ValueRef UNWIND LABEL ValueRef {
Chris Lattner58af2a12006-02-15 07:22:58 +00002833
Reid Spencer14310612006-12-31 05:40:51 +00002834 // Handle the short syntax
2835 const PointerType *PFTy = 0;
2836 const FunctionType *Ty = 0;
Reid Spencer218ded22007-01-05 17:07:23 +00002837 if (!(PFTy = dyn_cast<PointerType>($3->get())) ||
Chris Lattner58af2a12006-02-15 07:22:58 +00002838 !(Ty = dyn_cast<FunctionType>(PFTy->getElementType()))) {
2839 // Pull out the types of all of the arguments...
2840 std::vector<const Type*> ParamTypes;
Dale Johanneseneb57ea72007-11-05 21:20:28 +00002841 ParamList::iterator I = $6->begin(), E = $6->end();
Duncan Sandsdc024672007-11-27 13:23:08 +00002842 for (; I != E; ++I) {
Reid Spencer14310612006-12-31 05:40:51 +00002843 const Type *Ty = I->Val->getType();
2844 if (Ty == Type::VoidTy)
2845 GEN_ERROR("Short call syntax cannot be used with varargs");
2846 ParamTypes.push_back(Ty);
Chris Lattner58af2a12006-02-15 07:22:58 +00002847 }
Chris Lattnera925a142008-04-23 05:37:08 +00002848
2849 if (!FunctionType::isValidReturnType(*$3))
2850 GEN_ERROR("Invalid result type for LLVM function");
2851
Duncan Sandsdc024672007-11-27 13:23:08 +00002852 Ty = FunctionType::get($3->get(), ParamTypes, false);
Christopher Lamb4374f8e2007-12-17 01:17:35 +00002853 PFTy = PointerType::getUnqual(Ty);
Chris Lattner58af2a12006-02-15 07:22:58 +00002854 }
2855
Reid Spencer66728ef2007-03-20 01:13:36 +00002856 delete $3;
2857
Chris Lattner58af2a12006-02-15 07:22:58 +00002858 Value *V = getVal(PFTy, $4); // Get the function we're calling...
Reid Spencer5b7e7532006-09-28 19:28:24 +00002859 CHECK_FOR_ERROR
Reid Spencer218ded22007-01-05 17:07:23 +00002860 BasicBlock *Normal = getBBVal($11);
Reid Spencer5b7e7532006-09-28 19:28:24 +00002861 CHECK_FOR_ERROR
Reid Spencer218ded22007-01-05 17:07:23 +00002862 BasicBlock *Except = getBBVal($14);
Reid Spencer5b7e7532006-09-28 19:28:24 +00002863 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002864
Chris Lattner58d74912008-03-12 17:45:29 +00002865 SmallVector<ParamAttrsWithIndex, 8> Attrs;
2866 if ($8 != ParamAttr::None)
2867 Attrs.push_back(ParamAttrsWithIndex::get(0, $8));
Duncan Sandsdc024672007-11-27 13:23:08 +00002868
Reid Spencer14310612006-12-31 05:40:51 +00002869 // Check the arguments
2870 ValueList Args;
2871 if ($6->empty()) { // Has no arguments?
2872 // Make sure no arguments is a good thing!
2873 if (Ty->getNumParams() != 0)
2874 GEN_ERROR("No arguments passed to a function that "
Reid Spencerb5334b02007-02-05 10:18:06 +00002875 "expects arguments");
Chris Lattner58af2a12006-02-15 07:22:58 +00002876 } else { // Has arguments?
2877 // Loop through FunctionType's arguments and ensure they are specified
2878 // correctly!
Chris Lattner58af2a12006-02-15 07:22:58 +00002879 FunctionType::param_iterator I = Ty->param_begin();
2880 FunctionType::param_iterator E = Ty->param_end();
Dale Johanneseneb57ea72007-11-05 21:20:28 +00002881 ParamList::iterator ArgI = $6->begin(), ArgE = $6->end();
Duncan Sandsdc024672007-11-27 13:23:08 +00002882 unsigned index = 1;
Chris Lattner58af2a12006-02-15 07:22:58 +00002883
Duncan Sandsdc024672007-11-27 13:23:08 +00002884 for (; ArgI != ArgE && I != E; ++ArgI, ++I, ++index) {
Reid Spencer14310612006-12-31 05:40:51 +00002885 if (ArgI->Val->getType() != *I)
2886 GEN_ERROR("Parameter " + ArgI->Val->getName()+ " is not of type '" +
Reid Spencerb5334b02007-02-05 10:18:06 +00002887 (*I)->getDescription() + "'");
Reid Spencer14310612006-12-31 05:40:51 +00002888 Args.push_back(ArgI->Val);
Chris Lattner58d74912008-03-12 17:45:29 +00002889 if (ArgI->Attrs != ParamAttr::None)
2890 Attrs.push_back(ParamAttrsWithIndex::get(index, ArgI->Attrs));
Reid Spencer14310612006-12-31 05:40:51 +00002891 }
Reid Spencera132e042006-12-03 05:46:11 +00002892
Reid Spencer14310612006-12-31 05:40:51 +00002893 if (Ty->isVarArg()) {
2894 if (I == E)
Chris Lattner38905612008-02-19 04:36:25 +00002895 for (; ArgI != ArgE; ++ArgI, ++index) {
Reid Spencer14310612006-12-31 05:40:51 +00002896 Args.push_back(ArgI->Val); // push the remaining varargs
Chris Lattner58d74912008-03-12 17:45:29 +00002897 if (ArgI->Attrs != ParamAttr::None)
2898 Attrs.push_back(ParamAttrsWithIndex::get(index, ArgI->Attrs));
Chris Lattner38905612008-02-19 04:36:25 +00002899 }
Reid Spencer14310612006-12-31 05:40:51 +00002900 } else if (I != E || ArgI != ArgE)
Reid Spencerb5334b02007-02-05 10:18:06 +00002901 GEN_ERROR("Invalid number of parameters detected");
Chris Lattner58af2a12006-02-15 07:22:58 +00002902 }
Reid Spencer14310612006-12-31 05:40:51 +00002903
Chris Lattner58d74912008-03-12 17:45:29 +00002904 PAListPtr PAL;
Duncan Sandsdc024672007-11-27 13:23:08 +00002905 if (!Attrs.empty())
Chris Lattner58d74912008-03-12 17:45:29 +00002906 PAL = PAListPtr::get(Attrs.begin(), Attrs.end());
Duncan Sandsdc024672007-11-27 13:23:08 +00002907
Reid Spencer14310612006-12-31 05:40:51 +00002908 // Create the InvokeInst
Dan Gohman041e2eb2008-05-15 19:50:34 +00002909 InvokeInst *II = InvokeInst::Create(V, Normal, Except,
2910 Args.begin(), Args.end());
Reid Spencer14310612006-12-31 05:40:51 +00002911 II->setCallingConv($2);
Duncan Sandsdc024672007-11-27 13:23:08 +00002912 II->setParamAttrs(PAL);
Reid Spencer14310612006-12-31 05:40:51 +00002913 $$ = II;
Chris Lattner58af2a12006-02-15 07:22:58 +00002914 delete $6;
Reid Spencer61c83e02006-08-18 08:43:06 +00002915 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002916 }
2917 | UNWIND {
2918 $$ = new UnwindInst();
Reid Spencer61c83e02006-08-18 08:43:06 +00002919 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002920 }
2921 | UNREACHABLE {
2922 $$ = new UnreachableInst();
Reid Spencer61c83e02006-08-18 08:43:06 +00002923 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002924 };
2925
2926
2927
2928JumpTable : JumpTable IntType ConstValueRef ',' LABEL ValueRef {
2929 $$ = $1;
Reid Spencer93c40032007-03-19 18:40:50 +00002930 Constant *V = cast<Constant>(getExistingVal($2, $3));
Reid Spencer5b7e7532006-09-28 19:28:24 +00002931 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002932 if (V == 0)
Reid Spencerb5334b02007-02-05 10:18:06 +00002933 GEN_ERROR("May only switch on a constant pool value");
Chris Lattner58af2a12006-02-15 07:22:58 +00002934
Reid Spencer5b7e7532006-09-28 19:28:24 +00002935 BasicBlock* tmpBB = getBBVal($6);
Reid Spencer61c83e02006-08-18 08:43:06 +00002936 CHECK_FOR_ERROR
Reid Spencer5b7e7532006-09-28 19:28:24 +00002937 $$->push_back(std::make_pair(V, tmpBB));
Chris Lattner58af2a12006-02-15 07:22:58 +00002938 }
2939 | IntType ConstValueRef ',' LABEL ValueRef {
2940 $$ = new std::vector<std::pair<Constant*, BasicBlock*> >();
Reid Spencer93c40032007-03-19 18:40:50 +00002941 Constant *V = cast<Constant>(getExistingVal($1, $2));
Reid Spencer5b7e7532006-09-28 19:28:24 +00002942 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002943
2944 if (V == 0)
Reid Spencerb5334b02007-02-05 10:18:06 +00002945 GEN_ERROR("May only switch on a constant pool value");
Chris Lattner58af2a12006-02-15 07:22:58 +00002946
Reid Spencer5b7e7532006-09-28 19:28:24 +00002947 BasicBlock* tmpBB = getBBVal($5);
Reid Spencer61c83e02006-08-18 08:43:06 +00002948 CHECK_FOR_ERROR
Reid Spencer5b7e7532006-09-28 19:28:24 +00002949 $$->push_back(std::make_pair(V, tmpBB));
Chris Lattner58af2a12006-02-15 07:22:58 +00002950 };
2951
Reid Spencer41dff5e2007-01-26 08:05:27 +00002952Inst : OptLocalAssign InstVal {
Reid Spenceref9b9a72007-02-05 20:47:22 +00002953 // Is this definition named?? if so, assign the name...
2954 setValueName($2, $1);
2955 CHECK_FOR_ERROR
2956 InsertValue($2);
2957 $$ = $2;
2958 CHECK_FOR_ERROR
2959 };
2960
Chris Lattner15bd0952008-08-29 17:20:18 +00002961Inst : LocalNumber InstVal {
2962 CHECK_FOR_ERROR
2963 int ValNum = InsertValue($2);
2964
2965 if (ValNum != (int)$1)
2966 GEN_ERROR("Result value number %" + utostr($1) +
2967 " is incorrect, expected %" + utostr((unsigned)ValNum));
2968
2969 $$ = $2;
2970 CHECK_FOR_ERROR
2971 };
2972
Chris Lattner58af2a12006-02-15 07:22:58 +00002973
2974PHIList : Types '[' ValueRef ',' ValueRef ']' { // Used for PHI nodes
Reid Spencer14310612006-12-31 05:40:51 +00002975 if (!UpRefs.empty())
2976 GEN_ERROR("Invalid upreference in type: " + (*$1)->getDescription());
Chris Lattner58af2a12006-02-15 07:22:58 +00002977 $$ = new std::list<std::pair<Value*, BasicBlock*> >();
Reid Spencera132e042006-12-03 05:46:11 +00002978 Value* tmpVal = getVal(*$1, $3);
Reid Spencer61c83e02006-08-18 08:43:06 +00002979 CHECK_FOR_ERROR
Reid Spencer5b7e7532006-09-28 19:28:24 +00002980 BasicBlock* tmpBB = getBBVal($5);
2981 CHECK_FOR_ERROR
2982 $$->push_back(std::make_pair(tmpVal, tmpBB));
Reid Spencera132e042006-12-03 05:46:11 +00002983 delete $1;
Chris Lattner58af2a12006-02-15 07:22:58 +00002984 }
2985 | PHIList ',' '[' ValueRef ',' ValueRef ']' {
2986 $$ = $1;
Reid Spencer5b7e7532006-09-28 19:28:24 +00002987 Value* tmpVal = getVal($1->front().first->getType(), $4);
Reid Spencer61c83e02006-08-18 08:43:06 +00002988 CHECK_FOR_ERROR
Reid Spencer5b7e7532006-09-28 19:28:24 +00002989 BasicBlock* tmpBB = getBBVal($6);
2990 CHECK_FOR_ERROR
2991 $1->push_back(std::make_pair(tmpVal, tmpBB));
Chris Lattner58af2a12006-02-15 07:22:58 +00002992 };
2993
2994
Duncan Sandsdc024672007-11-27 13:23:08 +00002995ParamList : Types OptParamAttrs ValueRef OptParamAttrs {
2996 // FIXME: Remove trailing OptParamAttrs in LLVM 3.0, it was a mistake in 2.0
Reid Spencer14310612006-12-31 05:40:51 +00002997 if (!UpRefs.empty())
2998 GEN_ERROR("Invalid upreference in type: " + (*$1)->getDescription());
2999 // Used for call and invoke instructions
Dale Johanneseneb57ea72007-11-05 21:20:28 +00003000 $$ = new ParamList();
Duncan Sandsdc024672007-11-27 13:23:08 +00003001 ParamListEntry E; E.Attrs = $2 | $4; E.Val = getVal($1->get(), $3);
Reid Spencer14310612006-12-31 05:40:51 +00003002 $$->push_back(E);
Reid Spencer66728ef2007-03-20 01:13:36 +00003003 delete $1;
Duncan Sandsdc024672007-11-27 13:23:08 +00003004 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00003005 }
Duncan Sandsdc024672007-11-27 13:23:08 +00003006 | LABEL OptParamAttrs ValueRef OptParamAttrs {
3007 // FIXME: Remove trailing OptParamAttrs in LLVM 3.0, it was a mistake in 2.0
Dale Johanneseneb57ea72007-11-05 21:20:28 +00003008 // Labels are only valid in ASMs
3009 $$ = new ParamList();
Duncan Sandsdc024672007-11-27 13:23:08 +00003010 ParamListEntry E; E.Attrs = $2 | $4; E.Val = getBBVal($3);
Dale Johanneseneb57ea72007-11-05 21:20:28 +00003011 $$->push_back(E);
Duncan Sandsdc024672007-11-27 13:23:08 +00003012 CHECK_FOR_ERROR
Dale Johanneseneb57ea72007-11-05 21:20:28 +00003013 }
Duncan Sandsdc024672007-11-27 13:23:08 +00003014 | ParamList ',' Types OptParamAttrs ValueRef OptParamAttrs {
3015 // FIXME: Remove trailing OptParamAttrs in LLVM 3.0, it was a mistake in 2.0
Reid Spencer14310612006-12-31 05:40:51 +00003016 if (!UpRefs.empty())
3017 GEN_ERROR("Invalid upreference in type: " + (*$3)->getDescription());
Chris Lattner58af2a12006-02-15 07:22:58 +00003018 $$ = $1;
Duncan Sandsdc024672007-11-27 13:23:08 +00003019 ParamListEntry E; E.Attrs = $4 | $6; E.Val = getVal($3->get(), $5);
Reid Spencer14310612006-12-31 05:40:51 +00003020 $$->push_back(E);
Reid Spencer66728ef2007-03-20 01:13:36 +00003021 delete $3;
Reid Spencer61c83e02006-08-18 08:43:06 +00003022 CHECK_FOR_ERROR
Reid Spencer14310612006-12-31 05:40:51 +00003023 }
Duncan Sandsdc024672007-11-27 13:23:08 +00003024 | ParamList ',' LABEL OptParamAttrs ValueRef OptParamAttrs {
3025 // FIXME: Remove trailing OptParamAttrs in LLVM 3.0, it was a mistake in 2.0
Dale Johanneseneb57ea72007-11-05 21:20:28 +00003026 $$ = $1;
Duncan Sandsdc024672007-11-27 13:23:08 +00003027 ParamListEntry E; E.Attrs = $4 | $6; E.Val = getBBVal($5);
Dale Johanneseneb57ea72007-11-05 21:20:28 +00003028 $$->push_back(E);
3029 CHECK_FOR_ERROR
3030 }
3031 | /*empty*/ { $$ = new ParamList(); };
Chris Lattner58af2a12006-02-15 07:22:58 +00003032
Reid Spencer14310612006-12-31 05:40:51 +00003033IndexList // Used for gep instructions and constant expressions
Reid Spencerc6c59fd2006-12-31 21:47:02 +00003034 : /*empty*/ { $$ = new std::vector<Value*>(); }
Reid Spencer14310612006-12-31 05:40:51 +00003035 | IndexList ',' ResolvedVal {
3036 $$ = $1;
3037 $$->push_back($3);
3038 CHECK_FOR_ERROR
3039 }
Reid Spencerc6c59fd2006-12-31 21:47:02 +00003040 ;
Chris Lattner58af2a12006-02-15 07:22:58 +00003041
Dan Gohman81a0c0b2008-05-31 00:58:22 +00003042ConstantIndexList // Used for insertvalue and extractvalue instructions
3043 : ',' EUINT64VAL {
3044 $$ = new std::vector<unsigned>();
3045 if ((unsigned)$2 != $2)
3046 GEN_ERROR("Index " + utostr($2) + " is not valid for insertvalue or extractvalue.");
3047 $$->push_back($2);
3048 }
3049 | ConstantIndexList ',' EUINT64VAL {
3050 $$ = $1;
3051 if ((unsigned)$3 != $3)
3052 GEN_ERROR("Index " + utostr($3) + " is not valid for insertvalue or extractvalue.");
3053 $$->push_back($3);
3054 CHECK_FOR_ERROR
3055 }
3056 ;
3057
Chris Lattner58af2a12006-02-15 07:22:58 +00003058OptTailCall : TAIL CALL {
3059 $$ = true;
Reid Spencer61c83e02006-08-18 08:43:06 +00003060 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00003061 }
3062 | CALL {
3063 $$ = false;
Reid Spencer61c83e02006-08-18 08:43:06 +00003064 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00003065 };
3066
Chris Lattner58af2a12006-02-15 07:22:58 +00003067InstVal : ArithmeticOps Types ValueRef ',' ValueRef {
Reid Spencer14310612006-12-31 05:40:51 +00003068 if (!UpRefs.empty())
3069 GEN_ERROR("Invalid upreference in type: " + (*$2)->getDescription());
Chris Lattner42a75512007-01-15 02:27:26 +00003070 if (!(*$2)->isInteger() && !(*$2)->isFloatingPoint() &&
Reid Spencer9d6565a2007-02-15 02:26:10 +00003071 !isa<VectorType>((*$2).get()))
Reid Spencer61c83e02006-08-18 08:43:06 +00003072 GEN_ERROR(
Reid Spencerb5334b02007-02-05 10:18:06 +00003073 "Arithmetic operator requires integer, FP, or packed operands");
Reid Spencera132e042006-12-03 05:46:11 +00003074 Value* val1 = getVal(*$2, $3);
Reid Spencer5b7e7532006-09-28 19:28:24 +00003075 CHECK_FOR_ERROR
Reid Spencera132e042006-12-03 05:46:11 +00003076 Value* val2 = getVal(*$2, $5);
Reid Spencer5b7e7532006-09-28 19:28:24 +00003077 CHECK_FOR_ERROR
Dan Gohmane4977cf2008-05-23 01:55:30 +00003078 $$ = BinaryOperator::Create($1, val1, val2);
Chris Lattner58af2a12006-02-15 07:22:58 +00003079 if ($$ == 0)
Reid Spencerb5334b02007-02-05 10:18:06 +00003080 GEN_ERROR("binary operator returned null");
Reid Spencera132e042006-12-03 05:46:11 +00003081 delete $2;
Chris Lattner58af2a12006-02-15 07:22:58 +00003082 }
3083 | LogicalOps Types ValueRef ',' ValueRef {
Reid Spencer14310612006-12-31 05:40:51 +00003084 if (!UpRefs.empty())
3085 GEN_ERROR("Invalid upreference in type: " + (*$2)->getDescription());
Chris Lattner42a75512007-01-15 02:27:26 +00003086 if (!(*$2)->isInteger()) {
Nate Begeman5bc1ea02008-07-29 15:49:41 +00003087 if (!isa<VectorType>($2->get()) ||
Reid Spencer9d6565a2007-02-15 02:26:10 +00003088 !cast<VectorType>($2->get())->getElementType()->isInteger())
Reid Spencerb5334b02007-02-05 10:18:06 +00003089 GEN_ERROR("Logical operator requires integral operands");
Chris Lattner58af2a12006-02-15 07:22:58 +00003090 }
Reid Spencera132e042006-12-03 05:46:11 +00003091 Value* tmpVal1 = getVal(*$2, $3);
Reid Spencer5b7e7532006-09-28 19:28:24 +00003092 CHECK_FOR_ERROR
Reid Spencera132e042006-12-03 05:46:11 +00003093 Value* tmpVal2 = getVal(*$2, $5);
Reid Spencer5b7e7532006-09-28 19:28:24 +00003094 CHECK_FOR_ERROR
Dan Gohmane4977cf2008-05-23 01:55:30 +00003095 $$ = BinaryOperator::Create($1, tmpVal1, tmpVal2);
Chris Lattner58af2a12006-02-15 07:22:58 +00003096 if ($$ == 0)
Reid Spencerb5334b02007-02-05 10:18:06 +00003097 GEN_ERROR("binary operator returned null");
Reid Spencera132e042006-12-03 05:46:11 +00003098 delete $2;
Chris Lattner58af2a12006-02-15 07:22:58 +00003099 }
Reid Spencera132e042006-12-03 05:46:11 +00003100 | ICMP IPredicates Types ValueRef ',' ValueRef {
Reid Spencer14310612006-12-31 05:40:51 +00003101 if (!UpRefs.empty())
3102 GEN_ERROR("Invalid upreference in type: " + (*$3)->getDescription());
Reid Spencera132e042006-12-03 05:46:11 +00003103 Value* tmpVal1 = getVal(*$3, $4);
3104 CHECK_FOR_ERROR
3105 Value* tmpVal2 = getVal(*$3, $6);
3106 CHECK_FOR_ERROR
Dan Gohmane4977cf2008-05-23 01:55:30 +00003107 $$ = CmpInst::Create($1, $2, tmpVal1, tmpVal2);
Reid Spencera132e042006-12-03 05:46:11 +00003108 if ($$ == 0)
Reid Spencerb5334b02007-02-05 10:18:06 +00003109 GEN_ERROR("icmp operator returned null");
Reid Spencer66728ef2007-03-20 01:13:36 +00003110 delete $3;
Reid Spencera132e042006-12-03 05:46:11 +00003111 }
3112 | FCMP FPredicates Types ValueRef ',' ValueRef {
Reid Spencer14310612006-12-31 05:40:51 +00003113 if (!UpRefs.empty())
3114 GEN_ERROR("Invalid upreference in type: " + (*$3)->getDescription());
Reid Spencera132e042006-12-03 05:46:11 +00003115 Value* tmpVal1 = getVal(*$3, $4);
3116 CHECK_FOR_ERROR
3117 Value* tmpVal2 = getVal(*$3, $6);
3118 CHECK_FOR_ERROR
Dan Gohmane4977cf2008-05-23 01:55:30 +00003119 $$ = CmpInst::Create($1, $2, tmpVal1, tmpVal2);
Reid Spencera132e042006-12-03 05:46:11 +00003120 if ($$ == 0)
Reid Spencerb5334b02007-02-05 10:18:06 +00003121 GEN_ERROR("fcmp operator returned null");
Reid Spencer66728ef2007-03-20 01:13:36 +00003122 delete $3;
Chris Lattner58af2a12006-02-15 07:22:58 +00003123 }
Nate Begemanac80ade2008-05-12 19:01:56 +00003124 | VICMP IPredicates Types ValueRef ',' ValueRef {
3125 if (!UpRefs.empty())
3126 GEN_ERROR("Invalid upreference in type: " + (*$3)->getDescription());
3127 if (!isa<VectorType>((*$3).get()))
3128 GEN_ERROR("Scalar types not supported by vicmp instruction");
3129 Value* tmpVal1 = getVal(*$3, $4);
3130 CHECK_FOR_ERROR
3131 Value* tmpVal2 = getVal(*$3, $6);
3132 CHECK_FOR_ERROR
Dan Gohmane4977cf2008-05-23 01:55:30 +00003133 $$ = CmpInst::Create($1, $2, tmpVal1, tmpVal2);
Nate Begemanac80ade2008-05-12 19:01:56 +00003134 if ($$ == 0)
Dan Gohmand8ee59b2008-09-09 01:13:24 +00003135 GEN_ERROR("vicmp operator returned null");
Nate Begemanac80ade2008-05-12 19:01:56 +00003136 delete $3;
3137 }
3138 | VFCMP FPredicates Types ValueRef ',' ValueRef {
3139 if (!UpRefs.empty())
3140 GEN_ERROR("Invalid upreference in type: " + (*$3)->getDescription());
3141 if (!isa<VectorType>((*$3).get()))
3142 GEN_ERROR("Scalar types not supported by vfcmp instruction");
3143 Value* tmpVal1 = getVal(*$3, $4);
3144 CHECK_FOR_ERROR
3145 Value* tmpVal2 = getVal(*$3, $6);
3146 CHECK_FOR_ERROR
Dan Gohmane4977cf2008-05-23 01:55:30 +00003147 $$ = CmpInst::Create($1, $2, tmpVal1, tmpVal2);
Nate Begemanac80ade2008-05-12 19:01:56 +00003148 if ($$ == 0)
Dan Gohmand8ee59b2008-09-09 01:13:24 +00003149 GEN_ERROR("vfcmp operator returned null");
Nate Begemanac80ade2008-05-12 19:01:56 +00003150 delete $3;
3151 }
Reid Spencer3da59db2006-11-27 01:05:10 +00003152 | CastOps ResolvedVal TO Types {
Reid Spencer14310612006-12-31 05:40:51 +00003153 if (!UpRefs.empty())
3154 GEN_ERROR("Invalid upreference in type: " + (*$4)->getDescription());
Reid Spencera132e042006-12-03 05:46:11 +00003155 Value* Val = $2;
Reid Spencerb0fcf8f2007-01-17 02:48:45 +00003156 const Type* DestTy = $4->get();
3157 if (!CastInst::castIsValid($1, Val, DestTy))
3158 GEN_ERROR("invalid cast opcode for cast from '" +
3159 Val->getType()->getDescription() + "' to '" +
Reid Spencerb5334b02007-02-05 10:18:06 +00003160 DestTy->getDescription() + "'");
Dan Gohmane4977cf2008-05-23 01:55:30 +00003161 $$ = CastInst::Create($1, Val, DestTy);
Reid Spencera132e042006-12-03 05:46:11 +00003162 delete $4;
Chris Lattner58af2a12006-02-15 07:22:58 +00003163 }
3164 | SELECT ResolvedVal ',' ResolvedVal ',' ResolvedVal {
Dan Gohmand8ee59b2008-09-09 01:13:24 +00003165 if (isa<VectorType>($2->getType())) {
3166 // vector select
3167 if (!isa<VectorType>($4->getType())
3168 || !isa<VectorType>($6->getType()) )
3169 GEN_ERROR("vector select value types must be vector types");
3170 const VectorType* cond_type = cast<VectorType>($2->getType());
3171 const VectorType* select_type = cast<VectorType>($4->getType());
3172 if (cond_type->getElementType() != Type::Int1Ty)
3173 GEN_ERROR("vector select condition element type must be boolean");
3174 if (cond_type->getNumElements() != select_type->getNumElements())
3175 GEN_ERROR("vector select number of elements must be the same");
3176 } else {
3177 if ($2->getType() != Type::Int1Ty)
3178 GEN_ERROR("select condition must be boolean");
3179 }
Reid Spencera132e042006-12-03 05:46:11 +00003180 if ($4->getType() != $6->getType())
Dan Gohmand8ee59b2008-09-09 01:13:24 +00003181 GEN_ERROR("select value types must match");
Gabor Greife64d2482008-04-06 23:07:54 +00003182 $$ = SelectInst::Create($2, $4, $6);
Reid Spencer61c83e02006-08-18 08:43:06 +00003183 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00003184 }
3185 | VAARG ResolvedVal ',' Types {
Reid Spencer14310612006-12-31 05:40:51 +00003186 if (!UpRefs.empty())
3187 GEN_ERROR("Invalid upreference in type: " + (*$4)->getDescription());
Reid Spencera132e042006-12-03 05:46:11 +00003188 $$ = new VAArgInst($2, *$4);
3189 delete $4;
Reid Spencer61c83e02006-08-18 08:43:06 +00003190 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00003191 }
Chris Lattner58af2a12006-02-15 07:22:58 +00003192 | EXTRACTELEMENT ResolvedVal ',' ResolvedVal {
Reid Spencera132e042006-12-03 05:46:11 +00003193 if (!ExtractElementInst::isValidOperands($2, $4))
Reid Spencerb5334b02007-02-05 10:18:06 +00003194 GEN_ERROR("Invalid extractelement operands");
Reid Spencera132e042006-12-03 05:46:11 +00003195 $$ = new ExtractElementInst($2, $4);
Reid Spencer61c83e02006-08-18 08:43:06 +00003196 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00003197 }
3198 | INSERTELEMENT ResolvedVal ',' ResolvedVal ',' ResolvedVal {
Reid Spencera132e042006-12-03 05:46:11 +00003199 if (!InsertElementInst::isValidOperands($2, $4, $6))
Reid Spencerb5334b02007-02-05 10:18:06 +00003200 GEN_ERROR("Invalid insertelement operands");
Gabor Greife64d2482008-04-06 23:07:54 +00003201 $$ = InsertElementInst::Create($2, $4, $6);
Reid Spencer61c83e02006-08-18 08:43:06 +00003202 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00003203 }
Chris Lattnerd5efe842006-04-08 01:18:56 +00003204 | SHUFFLEVECTOR ResolvedVal ',' ResolvedVal ',' ResolvedVal {
Reid Spencera132e042006-12-03 05:46:11 +00003205 if (!ShuffleVectorInst::isValidOperands($2, $4, $6))
Reid Spencerb5334b02007-02-05 10:18:06 +00003206 GEN_ERROR("Invalid shufflevector operands");
Reid Spencera132e042006-12-03 05:46:11 +00003207 $$ = new ShuffleVectorInst($2, $4, $6);
Reid Spencer61c83e02006-08-18 08:43:06 +00003208 CHECK_FOR_ERROR
Chris Lattnerd5efe842006-04-08 01:18:56 +00003209 }
Chris Lattner58af2a12006-02-15 07:22:58 +00003210 | PHI_TOK PHIList {
3211 const Type *Ty = $2->front().first->getType();
3212 if (!Ty->isFirstClassType())
Reid Spencerb5334b02007-02-05 10:18:06 +00003213 GEN_ERROR("PHI node operands must be of first class type");
Gabor Greife64d2482008-04-06 23:07:54 +00003214 $$ = PHINode::Create(Ty);
Chris Lattner58af2a12006-02-15 07:22:58 +00003215 ((PHINode*)$$)->reserveOperandSpace($2->size());
3216 while ($2->begin() != $2->end()) {
3217 if ($2->front().first->getType() != Ty)
Reid Spencerb5334b02007-02-05 10:18:06 +00003218 GEN_ERROR("All elements of a PHI node must be of the same type");
Chris Lattner58af2a12006-02-15 07:22:58 +00003219 cast<PHINode>($$)->addIncoming($2->front().first, $2->front().second);
3220 $2->pop_front();
3221 }
3222 delete $2; // Free the list...
Reid Spencer61c83e02006-08-18 08:43:06 +00003223 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00003224 }
Dale Johanneseneb57ea72007-11-05 21:20:28 +00003225 | OptTailCall OptCallingConv ResultTypes ValueRef '(' ParamList ')'
Reid Spencer218ded22007-01-05 17:07:23 +00003226 OptFuncAttrs {
Reid Spencer14310612006-12-31 05:40:51 +00003227
3228 // Handle the short syntax
Reid Spencer3da59db2006-11-27 01:05:10 +00003229 const PointerType *PFTy = 0;
3230 const FunctionType *Ty = 0;
Reid Spencer218ded22007-01-05 17:07:23 +00003231 if (!(PFTy = dyn_cast<PointerType>($3->get())) ||
Chris Lattner58af2a12006-02-15 07:22:58 +00003232 !(Ty = dyn_cast<FunctionType>(PFTy->getElementType()))) {
3233 // Pull out the types of all of the arguments...
3234 std::vector<const Type*> ParamTypes;
Dale Johanneseneb57ea72007-11-05 21:20:28 +00003235 ParamList::iterator I = $6->begin(), E = $6->end();
Duncan Sandsdc024672007-11-27 13:23:08 +00003236 for (; I != E; ++I) {
Reid Spencer14310612006-12-31 05:40:51 +00003237 const Type *Ty = I->Val->getType();
3238 if (Ty == Type::VoidTy)
3239 GEN_ERROR("Short call syntax cannot be used with varargs");
3240 ParamTypes.push_back(Ty);
Chris Lattner58af2a12006-02-15 07:22:58 +00003241 }
Chris Lattnera925a142008-04-23 05:37:08 +00003242
3243 if (!FunctionType::isValidReturnType(*$3))
3244 GEN_ERROR("Invalid result type for LLVM function");
3245
Duncan Sandsdc024672007-11-27 13:23:08 +00003246 Ty = FunctionType::get($3->get(), ParamTypes, false);
Christopher Lamb4374f8e2007-12-17 01:17:35 +00003247 PFTy = PointerType::getUnqual(Ty);
Chris Lattner58af2a12006-02-15 07:22:58 +00003248 }
Chris Lattner6cdc6822007-04-26 05:31:05 +00003249
Chris Lattner58af2a12006-02-15 07:22:58 +00003250 Value *V = getVal(PFTy, $4); // Get the function we're calling...
Reid Spencer5b7e7532006-09-28 19:28:24 +00003251 CHECK_FOR_ERROR
Chris Lattner6cdc6822007-04-26 05:31:05 +00003252
Reid Spencer7780acb2007-04-16 06:56:07 +00003253 // Check for call to invalid intrinsic to avoid crashing later.
3254 if (Function *theF = dyn_cast<Function>(V)) {
Reid Spencered48de22007-04-16 22:02:23 +00003255 if (theF->hasName() && (theF->getValueName()->getKeyLength() >= 5) &&
Reid Spencer36fdde12007-04-16 20:35:38 +00003256 (0 == strncmp(theF->getValueName()->getKeyData(), "llvm.", 5)) &&
3257 !theF->getIntrinsicID(true))
Reid Spencer7780acb2007-04-16 06:56:07 +00003258 GEN_ERROR("Call to invalid LLVM intrinsic function '" +
3259 theF->getName() + "'");
3260 }
3261
Duncan Sandsdc024672007-11-27 13:23:08 +00003262 // Set up the ParamAttrs for the function
Chris Lattner58d74912008-03-12 17:45:29 +00003263 SmallVector<ParamAttrsWithIndex, 8> Attrs;
3264 if ($8 != ParamAttr::None)
3265 Attrs.push_back(ParamAttrsWithIndex::get(0, $8));
Reid Spencer14310612006-12-31 05:40:51 +00003266 // Check the arguments
3267 ValueList Args;
3268 if ($6->empty()) { // Has no arguments?
Chris Lattner58af2a12006-02-15 07:22:58 +00003269 // Make sure no arguments is a good thing!
3270 if (Ty->getNumParams() != 0)
Reid Spencer61c83e02006-08-18 08:43:06 +00003271 GEN_ERROR("No arguments passed to a function that "
Reid Spencerb5334b02007-02-05 10:18:06 +00003272 "expects arguments");
Chris Lattner58af2a12006-02-15 07:22:58 +00003273 } else { // Has arguments?
3274 // Loop through FunctionType's arguments and ensure they are specified
Duncan Sandsdc024672007-11-27 13:23:08 +00003275 // correctly. Also, gather any parameter attributes.
Chris Lattner58af2a12006-02-15 07:22:58 +00003276 FunctionType::param_iterator I = Ty->param_begin();
3277 FunctionType::param_iterator E = Ty->param_end();
Dale Johanneseneb57ea72007-11-05 21:20:28 +00003278 ParamList::iterator ArgI = $6->begin(), ArgE = $6->end();
Duncan Sandsdc024672007-11-27 13:23:08 +00003279 unsigned index = 1;
Chris Lattner58af2a12006-02-15 07:22:58 +00003280
Duncan Sandsdc024672007-11-27 13:23:08 +00003281 for (; ArgI != ArgE && I != E; ++ArgI, ++I, ++index) {
Reid Spencer14310612006-12-31 05:40:51 +00003282 if (ArgI->Val->getType() != *I)
3283 GEN_ERROR("Parameter " + ArgI->Val->getName()+ " is not of type '" +
Reid Spencerb5334b02007-02-05 10:18:06 +00003284 (*I)->getDescription() + "'");
Reid Spencer14310612006-12-31 05:40:51 +00003285 Args.push_back(ArgI->Val);
Chris Lattner58d74912008-03-12 17:45:29 +00003286 if (ArgI->Attrs != ParamAttr::None)
3287 Attrs.push_back(ParamAttrsWithIndex::get(index, ArgI->Attrs));
Reid Spencer14310612006-12-31 05:40:51 +00003288 }
3289 if (Ty->isVarArg()) {
3290 if (I == E)
Chris Lattner38905612008-02-19 04:36:25 +00003291 for (; ArgI != ArgE; ++ArgI, ++index) {
Reid Spencer14310612006-12-31 05:40:51 +00003292 Args.push_back(ArgI->Val); // push the remaining varargs
Chris Lattner58d74912008-03-12 17:45:29 +00003293 if (ArgI->Attrs != ParamAttr::None)
3294 Attrs.push_back(ParamAttrsWithIndex::get(index, ArgI->Attrs));
Chris Lattner38905612008-02-19 04:36:25 +00003295 }
Reid Spencer14310612006-12-31 05:40:51 +00003296 } else if (I != E || ArgI != ArgE)
Reid Spencerb5334b02007-02-05 10:18:06 +00003297 GEN_ERROR("Invalid number of parameters detected");
Chris Lattner58af2a12006-02-15 07:22:58 +00003298 }
Duncan Sandsdc024672007-11-27 13:23:08 +00003299
3300 // Finish off the ParamAttrs and check them
Chris Lattner58d74912008-03-12 17:45:29 +00003301 PAListPtr PAL;
Duncan Sandsdc024672007-11-27 13:23:08 +00003302 if (!Attrs.empty())
Chris Lattner58d74912008-03-12 17:45:29 +00003303 PAL = PAListPtr::get(Attrs.begin(), Attrs.end());
Duncan Sandsdc024672007-11-27 13:23:08 +00003304
Reid Spencer14310612006-12-31 05:40:51 +00003305 // Create the call node
Gabor Greife64d2482008-04-06 23:07:54 +00003306 CallInst *CI = CallInst::Create(V, Args.begin(), Args.end());
Reid Spencer14310612006-12-31 05:40:51 +00003307 CI->setTailCall($1);
3308 CI->setCallingConv($2);
Duncan Sandsdc024672007-11-27 13:23:08 +00003309 CI->setParamAttrs(PAL);
Reid Spencer14310612006-12-31 05:40:51 +00003310 $$ = CI;
Chris Lattner58af2a12006-02-15 07:22:58 +00003311 delete $6;
Reid Spencer41dff5e2007-01-26 08:05:27 +00003312 delete $3;
Reid Spencer61c83e02006-08-18 08:43:06 +00003313 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00003314 }
3315 | MemoryInst {
3316 $$ = $1;
Reid Spencer61c83e02006-08-18 08:43:06 +00003317 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00003318 };
3319
Chris Lattner58af2a12006-02-15 07:22:58 +00003320OptVolatile : VOLATILE {
3321 $$ = true;
Reid Spencer61c83e02006-08-18 08:43:06 +00003322 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00003323 }
3324 | /* empty */ {
3325 $$ = false;
Reid Spencer61c83e02006-08-18 08:43:06 +00003326 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00003327 };
3328
3329
3330
3331MemoryInst : MALLOC Types OptCAlign {
Reid Spencer14310612006-12-31 05:40:51 +00003332 if (!UpRefs.empty())
3333 GEN_ERROR("Invalid upreference in type: " + (*$2)->getDescription());
Reid Spencera132e042006-12-03 05:46:11 +00003334 $$ = new MallocInst(*$2, 0, $3);
3335 delete $2;
Reid Spencer61c83e02006-08-18 08:43:06 +00003336 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00003337 }
Reid Spencera54b7cb2007-01-12 07:05:14 +00003338 | MALLOC Types ',' INTTYPE ValueRef OptCAlign {
Reid Spencer14310612006-12-31 05:40:51 +00003339 if (!UpRefs.empty())
3340 GEN_ERROR("Invalid upreference in type: " + (*$2)->getDescription());
Dan Gohman81a0c0b2008-05-31 00:58:22 +00003341 if ($4 != Type::Int32Ty)
3342 GEN_ERROR("Malloc array size is not a 32-bit integer!");
Reid Spencera132e042006-12-03 05:46:11 +00003343 Value* tmpVal = getVal($4, $5);
Reid Spencer61c83e02006-08-18 08:43:06 +00003344 CHECK_FOR_ERROR
Reid Spencera132e042006-12-03 05:46:11 +00003345 $$ = new MallocInst(*$2, tmpVal, $6);
3346 delete $2;
Chris Lattner58af2a12006-02-15 07:22:58 +00003347 }
3348 | ALLOCA Types OptCAlign {
Reid Spencer14310612006-12-31 05:40:51 +00003349 if (!UpRefs.empty())
3350 GEN_ERROR("Invalid upreference in type: " + (*$2)->getDescription());
Reid Spencera132e042006-12-03 05:46:11 +00003351 $$ = new AllocaInst(*$2, 0, $3);
3352 delete $2;
Reid Spencer61c83e02006-08-18 08:43:06 +00003353 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00003354 }
Reid Spencera54b7cb2007-01-12 07:05:14 +00003355 | ALLOCA Types ',' INTTYPE ValueRef OptCAlign {
Reid Spencer14310612006-12-31 05:40:51 +00003356 if (!UpRefs.empty())
3357 GEN_ERROR("Invalid upreference in type: " + (*$2)->getDescription());
Dan Gohman81a0c0b2008-05-31 00:58:22 +00003358 if ($4 != Type::Int32Ty)
3359 GEN_ERROR("Alloca array size is not a 32-bit integer!");
Reid Spencera132e042006-12-03 05:46:11 +00003360 Value* tmpVal = getVal($4, $5);
Reid Spencer61c83e02006-08-18 08:43:06 +00003361 CHECK_FOR_ERROR
Reid Spencera132e042006-12-03 05:46:11 +00003362 $$ = new AllocaInst(*$2, tmpVal, $6);
3363 delete $2;
Chris Lattner58af2a12006-02-15 07:22:58 +00003364 }
3365 | FREE ResolvedVal {
Reid Spencera132e042006-12-03 05:46:11 +00003366 if (!isa<PointerType>($2->getType()))
Reid Spencer61c83e02006-08-18 08:43:06 +00003367 GEN_ERROR("Trying to free nonpointer type " +
Reid Spencerb5334b02007-02-05 10:18:06 +00003368 $2->getType()->getDescription() + "");
Reid Spencera132e042006-12-03 05:46:11 +00003369 $$ = new FreeInst($2);
Reid Spencer61c83e02006-08-18 08:43:06 +00003370 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00003371 }
3372
Christopher Lamb5c104242007-04-22 20:09:11 +00003373 | OptVolatile LOAD Types ValueRef OptCAlign {
Reid Spencer14310612006-12-31 05:40:51 +00003374 if (!UpRefs.empty())
3375 GEN_ERROR("Invalid upreference in type: " + (*$3)->getDescription());
Reid Spencera132e042006-12-03 05:46:11 +00003376 if (!isa<PointerType>($3->get()))
Reid Spencer61c83e02006-08-18 08:43:06 +00003377 GEN_ERROR("Can't load from nonpointer type: " +
Reid Spencera132e042006-12-03 05:46:11 +00003378 (*$3)->getDescription());
3379 if (!cast<PointerType>($3->get())->getElementType()->isFirstClassType())
Reid Spencer61c83e02006-08-18 08:43:06 +00003380 GEN_ERROR("Can't load from pointer of non-first-class type: " +
Reid Spencera132e042006-12-03 05:46:11 +00003381 (*$3)->getDescription());
3382 Value* tmpVal = getVal(*$3, $4);
Reid Spencer61c83e02006-08-18 08:43:06 +00003383 CHECK_FOR_ERROR
Christopher Lamb5c104242007-04-22 20:09:11 +00003384 $$ = new LoadInst(tmpVal, "", $1, $5);
Reid Spencera132e042006-12-03 05:46:11 +00003385 delete $3;
Chris Lattner58af2a12006-02-15 07:22:58 +00003386 }
Christopher Lamb5c104242007-04-22 20:09:11 +00003387 | OptVolatile STORE ResolvedVal ',' Types ValueRef OptCAlign {
Reid Spencer14310612006-12-31 05:40:51 +00003388 if (!UpRefs.empty())
3389 GEN_ERROR("Invalid upreference in type: " + (*$5)->getDescription());
Reid Spencera132e042006-12-03 05:46:11 +00003390 const PointerType *PT = dyn_cast<PointerType>($5->get());
Chris Lattner58af2a12006-02-15 07:22:58 +00003391 if (!PT)
Reid Spencer61c83e02006-08-18 08:43:06 +00003392 GEN_ERROR("Can't store to a nonpointer type: " +
Reid Spencera132e042006-12-03 05:46:11 +00003393 (*$5)->getDescription());
Chris Lattner58af2a12006-02-15 07:22:58 +00003394 const Type *ElTy = PT->getElementType();
Reid Spencera132e042006-12-03 05:46:11 +00003395 if (ElTy != $3->getType())
3396 GEN_ERROR("Can't store '" + $3->getType()->getDescription() +
Reid Spencerb5334b02007-02-05 10:18:06 +00003397 "' into space of type '" + ElTy->getDescription() + "'");
Chris Lattner58af2a12006-02-15 07:22:58 +00003398
Reid Spencera132e042006-12-03 05:46:11 +00003399 Value* tmpVal = getVal(*$5, $6);
Reid Spencer61c83e02006-08-18 08:43:06 +00003400 CHECK_FOR_ERROR
Christopher Lamb5c104242007-04-22 20:09:11 +00003401 $$ = new StoreInst($3, tmpVal, $1, $7);
Reid Spencera132e042006-12-03 05:46:11 +00003402 delete $5;
Chris Lattner58af2a12006-02-15 07:22:58 +00003403 }
Dan Gohmane4977cf2008-05-23 01:55:30 +00003404 | GETRESULT Types ValueRef ',' EUINT64VAL {
Dan Gohman1a570242008-07-23 00:54:54 +00003405 if (!UpRefs.empty())
3406 GEN_ERROR("Invalid upreference in type: " + (*$2)->getDescription());
3407 if (!isa<StructType>($2->get()) && !isa<ArrayType>($2->get()))
3408 GEN_ERROR("getresult insn requires an aggregate operand");
3409 if (!ExtractValueInst::getIndexedType(*$2, $5))
3410 GEN_ERROR("Invalid getresult index for type '" +
3411 (*$2)->getDescription()+ "'");
3412
3413 Value *tmpVal = getVal(*$2, $3);
Devang Patel5a970972008-02-19 22:27:01 +00003414 CHECK_FOR_ERROR
Dan Gohman1a570242008-07-23 00:54:54 +00003415 $$ = ExtractValueInst::Create(tmpVal, $5);
3416 delete $2;
Devang Patel5a970972008-02-19 22:27:01 +00003417 }
Chris Lattner58af2a12006-02-15 07:22:58 +00003418 | GETELEMENTPTR Types ValueRef IndexList {
Reid Spencer14310612006-12-31 05:40:51 +00003419 if (!UpRefs.empty())
3420 GEN_ERROR("Invalid upreference in type: " + (*$2)->getDescription());
Reid Spencera132e042006-12-03 05:46:11 +00003421 if (!isa<PointerType>($2->get()))
Reid Spencerb5334b02007-02-05 10:18:06 +00003422 GEN_ERROR("getelementptr insn requires pointer operand");
Chris Lattner58af2a12006-02-15 07:22:58 +00003423
Dan Gohman041e2eb2008-05-15 19:50:34 +00003424 if (!GetElementPtrInst::getIndexedType(*$2, $4->begin(), $4->end()))
Reid Spencer61c83e02006-08-18 08:43:06 +00003425 GEN_ERROR("Invalid getelementptr indices for type '" +
Reid Spencerb5334b02007-02-05 10:18:06 +00003426 (*$2)->getDescription()+ "'");
Reid Spencera132e042006-12-03 05:46:11 +00003427 Value* tmpVal = getVal(*$2, $3);
Reid Spencer61c83e02006-08-18 08:43:06 +00003428 CHECK_FOR_ERROR
Gabor Greife64d2482008-04-06 23:07:54 +00003429 $$ = GetElementPtrInst::Create(tmpVal, $4->begin(), $4->end());
Reid Spencera132e042006-12-03 05:46:11 +00003430 delete $2;
Reid Spencer5b7e7532006-09-28 19:28:24 +00003431 delete $4;
Dan Gohmane4977cf2008-05-23 01:55:30 +00003432 }
Dan Gohman81a0c0b2008-05-31 00:58:22 +00003433 | EXTRACTVALUE Types ValueRef ConstantIndexList {
Dan Gohmane4977cf2008-05-23 01:55:30 +00003434 if (!UpRefs.empty())
3435 GEN_ERROR("Invalid upreference in type: " + (*$2)->getDescription());
3436 if (!isa<StructType>($2->get()) && !isa<ArrayType>($2->get()))
3437 GEN_ERROR("extractvalue insn requires an aggregate operand");
3438
3439 if (!ExtractValueInst::getIndexedType(*$2, $4->begin(), $4->end()))
3440 GEN_ERROR("Invalid extractvalue indices for type '" +
3441 (*$2)->getDescription()+ "'");
3442 Value* tmpVal = getVal(*$2, $3);
3443 CHECK_FOR_ERROR
3444 $$ = ExtractValueInst::Create(tmpVal, $4->begin(), $4->end());
3445 delete $2;
3446 delete $4;
3447 }
Dan Gohman81a0c0b2008-05-31 00:58:22 +00003448 | INSERTVALUE Types ValueRef ',' Types ValueRef ConstantIndexList {
Dan Gohmane4977cf2008-05-23 01:55:30 +00003449 if (!UpRefs.empty())
3450 GEN_ERROR("Invalid upreference in type: " + (*$2)->getDescription());
3451 if (!isa<StructType>($2->get()) && !isa<ArrayType>($2->get()))
3452 GEN_ERROR("extractvalue insn requires an aggregate operand");
3453
3454 if (ExtractValueInst::getIndexedType(*$2, $7->begin(), $7->end()) != $5->get())
3455 GEN_ERROR("Invalid insertvalue indices for type '" +
3456 (*$2)->getDescription()+ "'");
3457 Value* aggVal = getVal(*$2, $3);
3458 Value* tmpVal = getVal(*$5, $6);
3459 CHECK_FOR_ERROR
3460 $$ = InsertValueInst::Create(aggVal, tmpVal, $7->begin(), $7->end());
3461 delete $2;
3462 delete $5;
3463 delete $7;
Chris Lattner58af2a12006-02-15 07:22:58 +00003464 };
3465
3466
3467%%
Reid Spencer61c83e02006-08-18 08:43:06 +00003468
Reid Spencer14310612006-12-31 05:40:51 +00003469// common code from the two 'RunVMAsmParser' functions
3470static Module* RunParser(Module * M) {
Reid Spencer14310612006-12-31 05:40:51 +00003471 CurModule.CurrentModule = M;
Reid Spencer14310612006-12-31 05:40:51 +00003472 // Check to make sure the parser succeeded
3473 if (yyparse()) {
3474 if (ParserResult)
3475 delete ParserResult;
3476 return 0;
3477 }
3478
Reid Spencer0d60b5a2007-03-30 01:37:39 +00003479 // Emit an error if there are any unresolved types left.
3480 if (!CurModule.LateResolveTypes.empty()) {
3481 const ValID &DID = CurModule.LateResolveTypes.begin()->first;
3482 if (DID.Type == ValID::LocalName) {
3483 GenerateError("Undefined type remains at eof: '"+DID.getName() + "'");
3484 } else {
3485 GenerateError("Undefined type remains at eof: #" + itostr(DID.Num));
3486 }
3487 if (ParserResult)
3488 delete ParserResult;
3489 return 0;
3490 }
3491
3492 // Emit an error if there are any unresolved values left.
3493 if (!CurModule.LateResolveValues.empty()) {
3494 Value *V = CurModule.LateResolveValues.back();
3495 std::map<Value*, std::pair<ValID, int> >::iterator I =
3496 CurModule.PlaceHolderInfo.find(V);
3497
3498 if (I != CurModule.PlaceHolderInfo.end()) {
3499 ValID &DID = I->second.first;
3500 if (DID.Type == ValID::LocalName) {
3501 GenerateError("Undefined value remains at eof: "+DID.getName() + "'");
3502 } else {
3503 GenerateError("Undefined value remains at eof: #" + itostr(DID.Num));
3504 }
3505 if (ParserResult)
3506 delete ParserResult;
3507 return 0;
3508 }
3509 }
3510
Reid Spencer14310612006-12-31 05:40:51 +00003511 // Check to make sure that parsing produced a result
3512 if (!ParserResult)
3513 return 0;
3514
3515 // Reset ParserResult variable while saving its value for the result.
3516 Module *Result = ParserResult;
3517 ParserResult = 0;
3518
3519 return Result;
3520}
3521
Reid Spencer61c83e02006-08-18 08:43:06 +00003522void llvm::GenerateError(const std::string &message, int LineNo) {
Duncan Sandsdc024672007-11-27 13:23:08 +00003523 if (LineNo == -1) LineNo = LLLgetLineNo();
Reid Spencer61c83e02006-08-18 08:43:06 +00003524 // TODO: column number in exception
3525 if (TheParseError)
Duncan Sandsdc024672007-11-27 13:23:08 +00003526 TheParseError->setError(LLLgetFilename(), message, LineNo);
Reid Spencer61c83e02006-08-18 08:43:06 +00003527 TriggerError = 1;
3528}
3529
Chris Lattner58af2a12006-02-15 07:22:58 +00003530int yyerror(const char *ErrorMsg) {
Duncan Sandsdc024672007-11-27 13:23:08 +00003531 std::string where = LLLgetFilename() + ":" + utostr(LLLgetLineNo()) + ": ";
Reid Spenceref9b9a72007-02-05 20:47:22 +00003532 std::string errMsg = where + "error: " + std::string(ErrorMsg);
Duncan Sandsdc024672007-11-27 13:23:08 +00003533 if (yychar != YYEMPTY && yychar != 0) {
3534 errMsg += " while reading token: '";
3535 errMsg += std::string(LLLgetTokenStart(),
3536 LLLgetTokenStart()+LLLgetTokenLength()) + "'";
3537 }
Reid Spencer61c83e02006-08-18 08:43:06 +00003538 GenerateError(errMsg);
Chris Lattner58af2a12006-02-15 07:22:58 +00003539 return 0;
3540}