blob: 5570692864a9a29aaece7e7897ca1fe5d1cdd64c [file] [log] [blame]
Chris Lattner58af2a12006-02-15 07:22:58 +00001//===-- llvmAsmParser.y - Parser for llvm assembly files --------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file was developed by the LLVM research group and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the bison parser for LLVM assembly languages files.
11//
12//===----------------------------------------------------------------------===//
13
14%{
15#include "ParserInternals.h"
16#include "llvm/CallingConv.h"
17#include "llvm/InlineAsm.h"
18#include "llvm/Instructions.h"
19#include "llvm/Module.h"
Reid Spenceref9b9a72007-02-05 20:47:22 +000020#include "llvm/ValueSymbolTable.h"
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>
Reid Spencer14310612006-12-31 05:40:51 +000032#ifndef NDEBUG
33#define YYDEBUG 1
34#endif
Chris Lattner58af2a12006-02-15 07:22:58 +000035
Reid Spencere4f47592006-08-18 17:32:55 +000036// The following is a gross hack. In order to rid the libAsmParser library of
37// exceptions, we have to have a way of getting the yyparse function to go into
38// an error situation. So, whenever we want an error to occur, the GenerateError
39// function (see bottom of file) sets TriggerError. Then, at the end of each
40// production in the grammer we use CHECK_FOR_ERROR which will invoke YYERROR
41// (a goto) to put YACC in error state. Furthermore, several calls to
42// GenerateError are made from inside productions and they must simulate the
43// previous exception behavior by exiting the production immediately. We have
44// replaced these with the GEN_ERROR macro which calls GeneratError and then
45// immediately invokes YYERROR. This would be so much cleaner if it was a
46// recursive descent parser.
Reid Spencer61c83e02006-08-18 08:43:06 +000047static bool TriggerError = false;
Reid Spencerf63697d2006-10-09 17:36:59 +000048#define CHECK_FOR_ERROR { if (TriggerError) { TriggerError = false; YYABORT; } }
Reid Spencer61c83e02006-08-18 08:43:06 +000049#define GEN_ERROR(msg) { GenerateError(msg); YYERROR; }
50
Chris Lattner58af2a12006-02-15 07:22:58 +000051int yyerror(const char *ErrorMsg); // Forward declarations to prevent "implicit
52int yylex(); // declaration" of xxx warnings.
53int yyparse();
54
55namespace llvm {
56 std::string CurFilename;
Reid Spencer14310612006-12-31 05:40:51 +000057#if YYDEBUG
58static cl::opt<bool>
59Debug("debug-yacc", cl::desc("Print yacc debug state changes"),
60 cl::Hidden, cl::init(false));
61#endif
Chris Lattner58af2a12006-02-15 07:22:58 +000062}
63using namespace llvm;
64
65static Module *ParserResult;
66
67// DEBUG_UPREFS - Define this symbol if you want to enable debugging output
68// relating to upreferences in the input stream.
69//
70//#define DEBUG_UPREFS 1
71#ifdef DEBUG_UPREFS
Bill Wendlinge8156192006-12-07 01:30:32 +000072#define UR_OUT(X) cerr << X
Chris Lattner58af2a12006-02-15 07:22:58 +000073#else
74#define UR_OUT(X)
75#endif
76
77#define YYERROR_VERBOSE 1
78
Chris Lattner58af2a12006-02-15 07:22:58 +000079static GlobalVariable *CurGV;
80
81
82// This contains info used when building the body of a function. It is
83// destroyed when the function is completed.
84//
85typedef std::vector<Value *> ValueList; // Numbered defs
Reid Spencer14310612006-12-31 05:40:51 +000086
Chris Lattner58af2a12006-02-15 07:22:58 +000087static void
Reid Spencer93c40032007-03-19 18:40:50 +000088ResolveDefinitions(ValueList &LateResolvers, ValueList *FutureLateResolvers=0);
Chris Lattner58af2a12006-02-15 07:22:58 +000089
90static struct PerModuleInfo {
91 Module *CurrentModule;
Reid Spencer93c40032007-03-19 18:40:50 +000092 ValueList Values; // Module level numbered definitions
93 ValueList LateResolveValues;
Reid Spencer861d9d62006-11-28 07:29:44 +000094 std::vector<PATypeHolder> Types;
95 std::map<ValID, PATypeHolder> LateResolveTypes;
Chris Lattner58af2a12006-02-15 07:22:58 +000096
97 /// PlaceHolderInfo - When temporary placeholder objects are created, remember
Chris Lattner0ad19702006-06-21 16:53:00 +000098 /// how they were referenced and on which line of the input they came from so
Chris Lattner58af2a12006-02-15 07:22:58 +000099 /// that we can resolve them later and print error messages as appropriate.
100 std::map<Value*, std::pair<ValID, int> > PlaceHolderInfo;
101
102 // GlobalRefs - This maintains a mapping between <Type, ValID>'s and forward
103 // references to global values. Global values may be referenced before they
104 // are defined, and if so, the temporary object that they represent is held
105 // here. This is used for forward references of GlobalValues.
106 //
107 typedef std::map<std::pair<const PointerType *,
108 ValID>, GlobalValue*> GlobalRefsType;
109 GlobalRefsType GlobalRefs;
110
111 void ModuleDone() {
112 // If we could not resolve some functions at function compilation time
113 // (calls to functions before they are defined), resolve them now... Types
114 // are resolved when the constant pool has been completely parsed.
115 //
116 ResolveDefinitions(LateResolveValues);
Reid Spencer5b7e7532006-09-28 19:28:24 +0000117 if (TriggerError)
118 return;
Chris Lattner58af2a12006-02-15 07:22:58 +0000119
120 // Check to make sure that all global value forward references have been
121 // resolved!
122 //
123 if (!GlobalRefs.empty()) {
124 std::string UndefinedReferences = "Unresolved global references exist:\n";
125
126 for (GlobalRefsType::iterator I = GlobalRefs.begin(), E =GlobalRefs.end();
127 I != E; ++I) {
128 UndefinedReferences += " " + I->first.first->getDescription() + " " +
129 I->first.second.getName() + "\n";
130 }
Reid Spencer61c83e02006-08-18 08:43:06 +0000131 GenerateError(UndefinedReferences);
Reid Spencer5b7e7532006-09-28 19:28:24 +0000132 return;
Chris Lattner58af2a12006-02-15 07:22:58 +0000133 }
134
Chandler Carruth02202192007-08-04 01:56:21 +0000135 // Look for intrinsic functions and CallInst that need to be upgraded
136 for (Module::iterator FI = CurrentModule->begin(),
137 FE = CurrentModule->end(); FI != FE; )
138 UpgradeCallsToIntrinsic(FI++); // must be post-increment, as we remove
139
Chris Lattner58af2a12006-02-15 07:22:58 +0000140 Values.clear(); // Clear out function local definitions
141 Types.clear();
142 CurrentModule = 0;
143 }
144
145 // GetForwardRefForGlobal - Check to see if there is a forward reference
146 // for this global. If so, remove it from the GlobalRefs map and return it.
147 // If not, just return null.
148 GlobalValue *GetForwardRefForGlobal(const PointerType *PTy, ValID ID) {
149 // Check to see if there is a forward reference to this global variable...
150 // if there is, eliminate it and patch the reference to use the new def'n.
151 GlobalRefsType::iterator I = GlobalRefs.find(std::make_pair(PTy, ID));
152 GlobalValue *Ret = 0;
153 if (I != GlobalRefs.end()) {
154 Ret = I->second;
155 GlobalRefs.erase(I);
156 }
157 return Ret;
158 }
Reid Spencer8c8a2dc2007-01-02 21:54:12 +0000159
160 bool TypeIsUnresolved(PATypeHolder* PATy) {
161 // If it isn't abstract, its resolved
162 const Type* Ty = PATy->get();
163 if (!Ty->isAbstract())
164 return false;
165 // Traverse the type looking for abstract types. If it isn't abstract then
166 // we don't need to traverse that leg of the type.
167 std::vector<const Type*> WorkList, SeenList;
168 WorkList.push_back(Ty);
169 while (!WorkList.empty()) {
170 const Type* Ty = WorkList.back();
171 SeenList.push_back(Ty);
172 WorkList.pop_back();
173 if (const OpaqueType* OpTy = dyn_cast<OpaqueType>(Ty)) {
174 // Check to see if this is an unresolved type
175 std::map<ValID, PATypeHolder>::iterator I = LateResolveTypes.begin();
176 std::map<ValID, PATypeHolder>::iterator E = LateResolveTypes.end();
177 for ( ; I != E; ++I) {
178 if (I->second.get() == OpTy)
179 return true;
180 }
181 } else if (const SequentialType* SeqTy = dyn_cast<SequentialType>(Ty)) {
182 const Type* TheTy = SeqTy->getElementType();
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 } else if (const StructType* StrTy = dyn_cast<StructType>(Ty)) {
193 for (unsigned i = 0; i < StrTy->getNumElements(); ++i) {
194 const Type* TheTy = StrTy->getElementType(i);
195 if (TheTy->isAbstract() && TheTy != Ty) {
196 std::vector<const Type*>::iterator I = SeenList.begin(),
197 E = SeenList.end();
198 for ( ; I != E; ++I)
199 if (*I == TheTy)
200 break;
201 if (I == E)
202 WorkList.push_back(TheTy);
203 }
204 }
205 }
206 }
207 return false;
208 }
Chris Lattner58af2a12006-02-15 07:22:58 +0000209} CurModule;
210
211static struct PerFunctionInfo {
212 Function *CurrentFunction; // Pointer to current function being created
213
Reid Spencer93c40032007-03-19 18:40:50 +0000214 ValueList Values; // Keep track of #'d definitions
215 unsigned NextValNum;
216 ValueList LateResolveValues;
Reid Spenceref9b9a72007-02-05 20:47:22 +0000217 bool isDeclare; // Is this function a forward declararation?
Anton Korobeynikovb74ed072006-09-14 18:23:27 +0000218 GlobalValue::LinkageTypes Linkage; // Linkage for forward declaration.
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000219 GlobalValue::VisibilityTypes Visibility;
Chris Lattner58af2a12006-02-15 07:22:58 +0000220
221 /// BBForwardRefs - When we see forward references to basic blocks, keep
222 /// track of them here.
Reid Spencer93c40032007-03-19 18:40:50 +0000223 std::map<ValID, BasicBlock*> BBForwardRefs;
Chris Lattner58af2a12006-02-15 07:22:58 +0000224
225 inline PerFunctionInfo() {
226 CurrentFunction = 0;
227 isDeclare = false;
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000228 Linkage = GlobalValue::ExternalLinkage;
229 Visibility = GlobalValue::DefaultVisibility;
Chris Lattner58af2a12006-02-15 07:22:58 +0000230 }
231
232 inline void FunctionStart(Function *M) {
233 CurrentFunction = M;
Reid Spencer93c40032007-03-19 18:40:50 +0000234 NextValNum = 0;
Chris Lattner58af2a12006-02-15 07:22:58 +0000235 }
236
237 void FunctionDone() {
Chris Lattner58af2a12006-02-15 07:22:58 +0000238 // Any forward referenced blocks left?
Reid Spencer5b7e7532006-09-28 19:28:24 +0000239 if (!BBForwardRefs.empty()) {
Reid Spencer61c83e02006-08-18 08:43:06 +0000240 GenerateError("Undefined reference to label " +
Reid Spencer93c40032007-03-19 18:40:50 +0000241 BBForwardRefs.begin()->second->getName());
Reid Spencer5b7e7532006-09-28 19:28:24 +0000242 return;
243 }
Chris Lattner58af2a12006-02-15 07:22:58 +0000244
245 // Resolve all forward references now.
246 ResolveDefinitions(LateResolveValues, &CurModule.LateResolveValues);
247
248 Values.clear(); // Clear out function local definitions
Reid Spencer93c40032007-03-19 18:40:50 +0000249 BBForwardRefs.clear();
Chris Lattner58af2a12006-02-15 07:22:58 +0000250 CurrentFunction = 0;
251 isDeclare = false;
Anton Korobeynikovb74ed072006-09-14 18:23:27 +0000252 Linkage = GlobalValue::ExternalLinkage;
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000253 Visibility = GlobalValue::DefaultVisibility;
Chris Lattner58af2a12006-02-15 07:22:58 +0000254 }
255} CurFun; // Info for the current function...
256
257static bool inFunctionScope() { return CurFun.CurrentFunction != 0; }
258
259
260//===----------------------------------------------------------------------===//
261// Code to handle definitions of all the types
262//===----------------------------------------------------------------------===//
263
Reid Spencer93c40032007-03-19 18:40:50 +0000264static void InsertValue(Value *V, ValueList &ValueTab = CurFun.Values) {
265 // Things that have names or are void typed don't get slot numbers
266 if (V->hasName() || (V->getType() == Type::VoidTy))
267 return;
Chris Lattner58af2a12006-02-15 07:22:58 +0000268
Reid Spencer93c40032007-03-19 18:40:50 +0000269 // In the case of function values, we have to allow for the forward reference
270 // of basic blocks, which are included in the numbering. Consequently, we keep
271 // track of the next insertion location with NextValNum. When a BB gets
272 // inserted, it could change the size of the CurFun.Values vector.
273 if (&ValueTab == &CurFun.Values) {
274 if (ValueTab.size() <= CurFun.NextValNum)
275 ValueTab.resize(CurFun.NextValNum+1);
276 ValueTab[CurFun.NextValNum++] = V;
277 return;
278 }
279 // For all other lists, its okay to just tack it on the back of the vector.
280 ValueTab.push_back(V);
Chris Lattner58af2a12006-02-15 07:22:58 +0000281}
282
283static const Type *getTypeVal(const ValID &D, bool DoNotImprovise = false) {
284 switch (D.Type) {
Reid Spencer41dff5e2007-01-26 08:05:27 +0000285 case ValID::LocalID: // Is it a numbered definition?
Chris Lattner58af2a12006-02-15 07:22:58 +0000286 // Module constants occupy the lowest numbered slots...
Reid Spencer41dff5e2007-01-26 08:05:27 +0000287 if (D.Num < CurModule.Types.size())
288 return CurModule.Types[D.Num];
Chris Lattner58af2a12006-02-15 07:22:58 +0000289 break;
Reid Spencer41dff5e2007-01-26 08:05:27 +0000290 case ValID::LocalName: // Is it a named definition?
Reid Spencer0a8a16b2007-05-22 18:52:55 +0000291 if (const Type *N = CurModule.CurrentModule->getTypeByName(D.getName())) {
Chris Lattner58af2a12006-02-15 07:22:58 +0000292 D.destroy(); // Free old strdup'd memory...
293 return N;
294 }
295 break;
296 default:
Reid Spencerb5334b02007-02-05 10:18:06 +0000297 GenerateError("Internal parser error: Invalid symbol type reference");
Reid Spencer5b7e7532006-09-28 19:28:24 +0000298 return 0;
Chris Lattner58af2a12006-02-15 07:22:58 +0000299 }
300
301 // If we reached here, we referenced either a symbol that we don't know about
302 // or an id number that hasn't been read yet. We may be referencing something
303 // forward, so just create an entry to be resolved later and get to it...
304 //
305 if (DoNotImprovise) return 0; // Do we just want a null to be returned?
306
307
308 if (inFunctionScope()) {
Reid Spencer41dff5e2007-01-26 08:05:27 +0000309 if (D.Type == ValID::LocalName) {
Reid Spencer61c83e02006-08-18 08:43:06 +0000310 GenerateError("Reference to an undefined type: '" + D.getName() + "'");
Reid Spencer5b7e7532006-09-28 19:28:24 +0000311 return 0;
312 } else {
Reid Spencer41dff5e2007-01-26 08:05:27 +0000313 GenerateError("Reference to an undefined type: #" + utostr(D.Num));
Reid Spencer5b7e7532006-09-28 19:28:24 +0000314 return 0;
315 }
Chris Lattner58af2a12006-02-15 07:22:58 +0000316 }
317
Reid Spencer861d9d62006-11-28 07:29:44 +0000318 std::map<ValID, PATypeHolder>::iterator I =CurModule.LateResolveTypes.find(D);
Chris Lattner58af2a12006-02-15 07:22:58 +0000319 if (I != CurModule.LateResolveTypes.end())
Reid Spencer861d9d62006-11-28 07:29:44 +0000320 return I->second;
Chris Lattner58af2a12006-02-15 07:22:58 +0000321
Reid Spencer861d9d62006-11-28 07:29:44 +0000322 Type *Typ = OpaqueType::get();
323 CurModule.LateResolveTypes.insert(std::make_pair(D, Typ));
324 return Typ;
Reid Spencera132e042006-12-03 05:46:11 +0000325 }
Chris Lattner58af2a12006-02-15 07:22:58 +0000326
Reid Spencer93c40032007-03-19 18:40:50 +0000327// getExistingVal - Look up the value specified by the provided type and
Chris Lattner58af2a12006-02-15 07:22:58 +0000328// the provided ValID. If the value exists and has already been defined, return
329// it. Otherwise return null.
330//
Reid Spencer93c40032007-03-19 18:40:50 +0000331static Value *getExistingVal(const Type *Ty, const ValID &D) {
Reid Spencer5b7e7532006-09-28 19:28:24 +0000332 if (isa<FunctionType>(Ty)) {
Reid Spencer61c83e02006-08-18 08:43:06 +0000333 GenerateError("Functions are not values and "
Chris Lattner58af2a12006-02-15 07:22:58 +0000334 "must be referenced as pointers");
Reid Spencer5b7e7532006-09-28 19:28:24 +0000335 return 0;
336 }
Chris Lattner58af2a12006-02-15 07:22:58 +0000337
338 switch (D.Type) {
Reid Spencer41dff5e2007-01-26 08:05:27 +0000339 case ValID::LocalID: { // Is it a numbered definition?
Reid Spencer41dff5e2007-01-26 08:05:27 +0000340 // Check that the number is within bounds.
Reid Spencer93c40032007-03-19 18:40:50 +0000341 if (D.Num >= CurFun.Values.size())
342 return 0;
343 Value *Result = CurFun.Values[D.Num];
344 if (Ty != Result->getType()) {
345 GenerateError("Numbered value (%" + utostr(D.Num) + ") of type '" +
346 Result->getType()->getDescription() + "' does not match "
347 "expected type, '" + Ty->getDescription() + "'");
348 return 0;
349 }
350 return Result;
Reid Spencer41dff5e2007-01-26 08:05:27 +0000351 }
352 case ValID::GlobalID: { // Is it a numbered definition?
Reid Spencer93c40032007-03-19 18:40:50 +0000353 if (D.Num >= CurModule.Values.size())
Reid Spenceref9b9a72007-02-05 20:47:22 +0000354 return 0;
Reid Spencer93c40032007-03-19 18:40:50 +0000355 Value *Result = CurModule.Values[D.Num];
356 if (Ty != Result->getType()) {
357 GenerateError("Numbered value (@" + utostr(D.Num) + ") of type '" +
358 Result->getType()->getDescription() + "' does not match "
359 "expected type, '" + Ty->getDescription() + "'");
Reid Spenceref9b9a72007-02-05 20:47:22 +0000360 return 0;
Reid Spencer93c40032007-03-19 18:40:50 +0000361 }
362 return Result;
Chris Lattner58af2a12006-02-15 07:22:58 +0000363 }
Reid Spencer41dff5e2007-01-26 08:05:27 +0000364
365 case ValID::LocalName: { // Is it a named definition?
Reid Spenceref9b9a72007-02-05 20:47:22 +0000366 if (!inFunctionScope())
367 return 0;
368 ValueSymbolTable &SymTab = CurFun.CurrentFunction->getValueSymbolTable();
Reid Spencer0a8a16b2007-05-22 18:52:55 +0000369 Value *N = SymTab.lookup(D.getName());
Reid Spenceref9b9a72007-02-05 20:47:22 +0000370 if (N == 0)
371 return 0;
372 if (N->getType() != Ty)
373 return 0;
Reid Spencer41dff5e2007-01-26 08:05:27 +0000374
375 D.destroy(); // Free old strdup'd memory...
376 return N;
377 }
378 case ValID::GlobalName: { // Is it a named definition?
Reid Spenceref9b9a72007-02-05 20:47:22 +0000379 ValueSymbolTable &SymTab = CurModule.CurrentModule->getValueSymbolTable();
Reid Spencer0a8a16b2007-05-22 18:52:55 +0000380 Value *N = SymTab.lookup(D.getName());
Reid Spenceref9b9a72007-02-05 20:47:22 +0000381 if (N == 0)
382 return 0;
383 if (N->getType() != Ty)
384 return 0;
Chris Lattner58af2a12006-02-15 07:22:58 +0000385
386 D.destroy(); // Free old strdup'd memory...
387 return N;
388 }
389
390 // Check to make sure that "Ty" is an integral type, and that our
391 // value will fit into the specified type...
392 case ValID::ConstSIntVal: // Is it a constant pool reference??
Reid Spencerb83eb642006-10-20 07:07:24 +0000393 if (!ConstantInt::isValueValidForType(Ty, D.ConstPool64)) {
Reid Spencer61c83e02006-08-18 08:43:06 +0000394 GenerateError("Signed integral constant '" +
Chris Lattner58af2a12006-02-15 07:22:58 +0000395 itostr(D.ConstPool64) + "' is invalid for type '" +
Reid Spencerb5334b02007-02-05 10:18:06 +0000396 Ty->getDescription() + "'");
Reid Spencer5b7e7532006-09-28 19:28:24 +0000397 return 0;
398 }
Reid Spencer49d273e2007-03-19 20:40:51 +0000399 return ConstantInt::get(Ty, D.ConstPool64, true);
Chris Lattner58af2a12006-02-15 07:22:58 +0000400
401 case ValID::ConstUIntVal: // Is it an unsigned const pool reference?
Reid Spencerb83eb642006-10-20 07:07:24 +0000402 if (!ConstantInt::isValueValidForType(Ty, D.UConstPool64)) {
403 if (!ConstantInt::isValueValidForType(Ty, D.ConstPool64)) {
Reid Spencer61c83e02006-08-18 08:43:06 +0000404 GenerateError("Integral constant '" + utostr(D.UConstPool64) +
Reid Spencerb5334b02007-02-05 10:18:06 +0000405 "' is invalid or out of range");
Reid Spencer5b7e7532006-09-28 19:28:24 +0000406 return 0;
Chris Lattner58af2a12006-02-15 07:22:58 +0000407 } else { // This is really a signed reference. Transmogrify.
Reid Spencer49d273e2007-03-19 20:40:51 +0000408 return ConstantInt::get(Ty, D.ConstPool64, true);
Chris Lattner58af2a12006-02-15 07:22:58 +0000409 }
410 } else {
Reid Spencerb83eb642006-10-20 07:07:24 +0000411 return ConstantInt::get(Ty, D.UConstPool64);
Chris Lattner58af2a12006-02-15 07:22:58 +0000412 }
413
414 case ValID::ConstFPVal: // Is it a floating point const pool reference?
Reid Spencer5b7e7532006-09-28 19:28:24 +0000415 if (!ConstantFP::isValueValidForType(Ty, D.ConstPoolFP)) {
Reid Spencerb5334b02007-02-05 10:18:06 +0000416 GenerateError("FP constant invalid for type");
Reid Spencer5b7e7532006-09-28 19:28:24 +0000417 return 0;
418 }
Chris Lattner58af2a12006-02-15 07:22:58 +0000419 return ConstantFP::get(Ty, D.ConstPoolFP);
420
421 case ValID::ConstNullVal: // Is it a null value?
Reid Spencer5b7e7532006-09-28 19:28:24 +0000422 if (!isa<PointerType>(Ty)) {
Reid Spencerb5334b02007-02-05 10:18:06 +0000423 GenerateError("Cannot create a a non pointer null");
Reid Spencer5b7e7532006-09-28 19:28:24 +0000424 return 0;
425 }
Chris Lattner58af2a12006-02-15 07:22:58 +0000426 return ConstantPointerNull::get(cast<PointerType>(Ty));
427
428 case ValID::ConstUndefVal: // Is it an undef value?
429 return UndefValue::get(Ty);
430
431 case ValID::ConstZeroVal: // Is it a zero value?
432 return Constant::getNullValue(Ty);
433
434 case ValID::ConstantVal: // Fully resolved constant?
Reid Spencer5b7e7532006-09-28 19:28:24 +0000435 if (D.ConstantValue->getType() != Ty) {
Reid Spencerb5334b02007-02-05 10:18:06 +0000436 GenerateError("Constant expression type different from required type");
Reid Spencer5b7e7532006-09-28 19:28:24 +0000437 return 0;
438 }
Chris Lattner58af2a12006-02-15 07:22:58 +0000439 return D.ConstantValue;
440
441 case ValID::InlineAsmVal: { // Inline asm expression
442 const PointerType *PTy = dyn_cast<PointerType>(Ty);
443 const FunctionType *FTy =
444 PTy ? dyn_cast<FunctionType>(PTy->getElementType()) : 0;
Reid Spencer5b7e7532006-09-28 19:28:24 +0000445 if (!FTy || !InlineAsm::Verify(FTy, D.IAD->Constraints)) {
Reid Spencerb5334b02007-02-05 10:18:06 +0000446 GenerateError("Invalid type for asm constraint string");
Reid Spencer5b7e7532006-09-28 19:28:24 +0000447 return 0;
448 }
Chris Lattner58af2a12006-02-15 07:22:58 +0000449 InlineAsm *IA = InlineAsm::get(FTy, D.IAD->AsmString, D.IAD->Constraints,
450 D.IAD->HasSideEffects);
451 D.destroy(); // Free InlineAsmDescriptor.
452 return IA;
453 }
454 default:
Reid Spencera9720f52007-02-05 17:04:00 +0000455 assert(0 && "Unhandled case!");
Chris Lattner58af2a12006-02-15 07:22:58 +0000456 return 0;
457 } // End of switch
458
Reid Spencera9720f52007-02-05 17:04:00 +0000459 assert(0 && "Unhandled case!");
Chris Lattner58af2a12006-02-15 07:22:58 +0000460 return 0;
461}
462
Reid Spencer93c40032007-03-19 18:40:50 +0000463// getVal - This function is identical to getExistingVal, except that if a
Chris Lattner58af2a12006-02-15 07:22:58 +0000464// value is not already defined, it "improvises" by creating a placeholder var
465// that looks and acts just like the requested variable. When the value is
466// defined later, all uses of the placeholder variable are replaced with the
467// real thing.
468//
469static Value *getVal(const Type *Ty, const ValID &ID) {
Reid Spencer5b7e7532006-09-28 19:28:24 +0000470 if (Ty == Type::LabelTy) {
Reid Spencer61c83e02006-08-18 08:43:06 +0000471 GenerateError("Cannot use a basic block here");
Reid Spencer5b7e7532006-09-28 19:28:24 +0000472 return 0;
473 }
Chris Lattner58af2a12006-02-15 07:22:58 +0000474
475 // See if the value has already been defined.
Reid Spencer93c40032007-03-19 18:40:50 +0000476 Value *V = getExistingVal(Ty, ID);
Chris Lattner58af2a12006-02-15 07:22:58 +0000477 if (V) return V;
Reid Spencer5b7e7532006-09-28 19:28:24 +0000478 if (TriggerError) return 0;
Chris Lattner58af2a12006-02-15 07:22:58 +0000479
Reid Spencer5b7e7532006-09-28 19:28:24 +0000480 if (!Ty->isFirstClassType() && !isa<OpaqueType>(Ty)) {
Reid Spencerb5334b02007-02-05 10:18:06 +0000481 GenerateError("Invalid use of a composite type");
Reid Spencer5b7e7532006-09-28 19:28:24 +0000482 return 0;
483 }
Chris Lattner58af2a12006-02-15 07:22:58 +0000484
485 // If we reached here, we referenced either a symbol that we don't know about
486 // or an id number that hasn't been read yet. We may be referencing something
487 // forward, so just create an entry to be resolved later and get to it...
488 //
Anton Korobeynikov38e09802007-04-28 13:48:45 +0000489 switch (ID.Type) {
490 case ValID::GlobalName:
Reid Spencer9c9b63a2007-04-28 16:07:31 +0000491 case ValID::GlobalID: {
Anton Korobeynikov38e09802007-04-28 13:48:45 +0000492 const PointerType *PTy = dyn_cast<PointerType>(Ty);
493 if (!PTy) {
494 GenerateError("Invalid type for reference to global" );
495 return 0;
496 }
497 const Type* ElTy = PTy->getElementType();
498 if (const FunctionType *FTy = dyn_cast<FunctionType>(ElTy))
499 V = new Function(FTy, GlobalValue::ExternalLinkage);
500 else
501 V = new GlobalVariable(ElTy, false, GlobalValue::ExternalLinkage);
502 break;
Reid Spencer9c9b63a2007-04-28 16:07:31 +0000503 }
Anton Korobeynikov38e09802007-04-28 13:48:45 +0000504 default:
505 V = new Argument(Ty);
506 }
507
Chris Lattner58af2a12006-02-15 07:22:58 +0000508 // Remember where this forward reference came from. FIXME, shouldn't we try
509 // to recycle these things??
510 CurModule.PlaceHolderInfo.insert(std::make_pair(V, std::make_pair(ID,
511 llvmAsmlineno)));
512
513 if (inFunctionScope())
514 InsertValue(V, CurFun.LateResolveValues);
515 else
516 InsertValue(V, CurModule.LateResolveValues);
517 return V;
518}
519
Reid Spencer93c40032007-03-19 18:40:50 +0000520/// defineBBVal - This is a definition of a new basic block with the specified
521/// identifier which must be the same as CurFun.NextValNum, if its numeric.
522static BasicBlock *defineBBVal(const ValID &ID) {
Reid Spencera9720f52007-02-05 17:04:00 +0000523 assert(inFunctionScope() && "Can't get basic block at global scope!");
Chris Lattner58af2a12006-02-15 07:22:58 +0000524
Chris Lattner58af2a12006-02-15 07:22:58 +0000525 BasicBlock *BB = 0;
Chris Lattner58af2a12006-02-15 07:22:58 +0000526
Reid Spencer93c40032007-03-19 18:40:50 +0000527 // First, see if this was forward referenced
Chris Lattner58af2a12006-02-15 07:22:58 +0000528
Reid Spencer93c40032007-03-19 18:40:50 +0000529 std::map<ValID, BasicBlock*>::iterator BBI = CurFun.BBForwardRefs.find(ID);
530 if (BBI != CurFun.BBForwardRefs.end()) {
531 BB = BBI->second;
Chris Lattner58af2a12006-02-15 07:22:58 +0000532 // The forward declaration could have been inserted anywhere in the
533 // function: insert it into the correct place now.
534 CurFun.CurrentFunction->getBasicBlockList().remove(BB);
535 CurFun.CurrentFunction->getBasicBlockList().push_back(BB);
Reid Spencer93c40032007-03-19 18:40:50 +0000536
Reid Spencer66728ef2007-03-20 01:13:36 +0000537 // We're about to erase the entry, save the key so we can clean it up.
538 ValID Tmp = BBI->first;
539
Reid Spencer93c40032007-03-19 18:40:50 +0000540 // Erase the forward ref from the map as its no longer "forward"
541 CurFun.BBForwardRefs.erase(ID);
542
Reid Spencer66728ef2007-03-20 01:13:36 +0000543 // The key has been removed from the map but so we don't want to leave
544 // strdup'd memory around so destroy it too.
545 Tmp.destroy();
546
Reid Spencer93c40032007-03-19 18:40:50 +0000547 // If its a numbered definition, bump the number and set the BB value.
548 if (ID.Type == ValID::LocalID) {
549 assert(ID.Num == CurFun.NextValNum && "Invalid new block number");
550 InsertValue(BB);
551 }
552
553 ID.destroy();
554 return BB;
555 }
556
557 // We haven't seen this BB before and its first mention is a definition.
558 // Just create it and return it.
Reid Spencer0a8a16b2007-05-22 18:52:55 +0000559 std::string Name (ID.Type == ValID::LocalName ? ID.getName() : "");
Reid Spencer93c40032007-03-19 18:40:50 +0000560 BB = new BasicBlock(Name, CurFun.CurrentFunction);
561 if (ID.Type == ValID::LocalID) {
562 assert(ID.Num == CurFun.NextValNum && "Invalid new block number");
563 InsertValue(BB);
Chris Lattner58af2a12006-02-15 07:22:58 +0000564 }
Reid Spencer93c40032007-03-19 18:40:50 +0000565
566 ID.destroy(); // Free strdup'd memory
567 return BB;
568}
569
570/// getBBVal - get an existing BB value or create a forward reference for it.
571///
572static BasicBlock *getBBVal(const ValID &ID) {
573 assert(inFunctionScope() && "Can't get basic block at global scope!");
574
575 BasicBlock *BB = 0;
576
577 std::map<ValID, BasicBlock*>::iterator BBI = CurFun.BBForwardRefs.find(ID);
578 if (BBI != CurFun.BBForwardRefs.end()) {
579 BB = BBI->second;
580 } if (ID.Type == ValID::LocalName) {
Reid Spencer0a8a16b2007-05-22 18:52:55 +0000581 std::string Name = ID.getName();
Reid Spencer93c40032007-03-19 18:40:50 +0000582 Value *N = CurFun.CurrentFunction->getValueSymbolTable().lookup(Name);
583 if (N)
584 if (N->getType()->getTypeID() == Type::LabelTyID)
585 BB = cast<BasicBlock>(N);
586 else
587 GenerateError("Reference to label '" + Name + "' is actually of type '"+
588 N->getType()->getDescription() + "'");
589 } else if (ID.Type == ValID::LocalID) {
590 if (ID.Num < CurFun.NextValNum && ID.Num < CurFun.Values.size()) {
591 if (CurFun.Values[ID.Num]->getType()->getTypeID() == Type::LabelTyID)
592 BB = cast<BasicBlock>(CurFun.Values[ID.Num]);
593 else
594 GenerateError("Reference to label '%" + utostr(ID.Num) +
595 "' is actually of type '"+
596 CurFun.Values[ID.Num]->getType()->getDescription() + "'");
597 }
598 } else {
599 GenerateError("Illegal label reference " + ID.getName());
600 return 0;
601 }
602
603 // If its already been defined, return it now.
604 if (BB) {
605 ID.destroy(); // Free strdup'd memory.
606 return BB;
607 }
608
609 // Otherwise, this block has not been seen before, create it.
610 std::string Name;
611 if (ID.Type == ValID::LocalName)
Reid Spencer0a8a16b2007-05-22 18:52:55 +0000612 Name = ID.getName();
Reid Spencer93c40032007-03-19 18:40:50 +0000613 BB = new BasicBlock(Name, CurFun.CurrentFunction);
614
615 // Insert it in the forward refs map.
616 CurFun.BBForwardRefs[ID] = BB;
617
Chris Lattner58af2a12006-02-15 07:22:58 +0000618 return BB;
619}
620
621
622//===----------------------------------------------------------------------===//
623// Code to handle forward references in instructions
624//===----------------------------------------------------------------------===//
625//
626// This code handles the late binding needed with statements that reference
627// values not defined yet... for example, a forward branch, or the PHI node for
628// a loop body.
629//
630// This keeps a table (CurFun.LateResolveValues) of all such forward references
631// and back patchs after we are done.
632//
633
634// ResolveDefinitions - If we could not resolve some defs at parsing
635// time (forward branches, phi functions for loops, etc...) resolve the
636// defs now...
637//
638static void
Reid Spencer93c40032007-03-19 18:40:50 +0000639ResolveDefinitions(ValueList &LateResolvers, ValueList *FutureLateResolvers) {
Chris Lattner58af2a12006-02-15 07:22:58 +0000640 // Loop over LateResolveDefs fixing up stuff that couldn't be resolved
Reid Spencer93c40032007-03-19 18:40:50 +0000641 while (!LateResolvers.empty()) {
642 Value *V = LateResolvers.back();
643 LateResolvers.pop_back();
Chris Lattner58af2a12006-02-15 07:22:58 +0000644
Reid Spencer93c40032007-03-19 18:40:50 +0000645 std::map<Value*, std::pair<ValID, int> >::iterator PHI =
646 CurModule.PlaceHolderInfo.find(V);
647 assert(PHI != CurModule.PlaceHolderInfo.end() && "Placeholder error!");
Chris Lattner58af2a12006-02-15 07:22:58 +0000648
Reid Spencer93c40032007-03-19 18:40:50 +0000649 ValID &DID = PHI->second.first;
Chris Lattner58af2a12006-02-15 07:22:58 +0000650
Reid Spencer93c40032007-03-19 18:40:50 +0000651 Value *TheRealValue = getExistingVal(V->getType(), DID);
652 if (TriggerError)
653 return;
654 if (TheRealValue) {
655 V->replaceAllUsesWith(TheRealValue);
656 delete V;
657 CurModule.PlaceHolderInfo.erase(PHI);
658 } else if (FutureLateResolvers) {
659 // Functions have their unresolved items forwarded to the module late
660 // resolver table
661 InsertValue(V, *FutureLateResolvers);
662 } else {
663 if (DID.Type == ValID::LocalName || DID.Type == ValID::GlobalName) {
664 GenerateError("Reference to an invalid definition: '" +DID.getName()+
665 "' of type '" + V->getType()->getDescription() + "'",
666 PHI->second.second);
Reid Spencer5b7e7532006-09-28 19:28:24 +0000667 return;
Chris Lattner58af2a12006-02-15 07:22:58 +0000668 } else {
Reid Spencer93c40032007-03-19 18:40:50 +0000669 GenerateError("Reference to an invalid definition: #" +
670 itostr(DID.Num) + " of type '" +
671 V->getType()->getDescription() + "'",
672 PHI->second.second);
673 return;
Chris Lattner58af2a12006-02-15 07:22:58 +0000674 }
675 }
676 }
Chris Lattner58af2a12006-02-15 07:22:58 +0000677 LateResolvers.clear();
678}
679
680// ResolveTypeTo - A brand new type was just declared. This means that (if
681// name is not null) things referencing Name can be resolved. Otherwise, things
682// refering to the number can be resolved. Do this now.
683//
Reid Spencer0a8a16b2007-05-22 18:52:55 +0000684static void ResolveTypeTo(std::string *Name, const Type *ToTy) {
Chris Lattner58af2a12006-02-15 07:22:58 +0000685 ValID D;
Reid Spencer0a8a16b2007-05-22 18:52:55 +0000686 if (Name)
687 D = ValID::createLocalName(*Name);
688 else
689 D = ValID::createLocalID(CurModule.Types.size());
Chris Lattner58af2a12006-02-15 07:22:58 +0000690
Reid Spencer861d9d62006-11-28 07:29:44 +0000691 std::map<ValID, PATypeHolder>::iterator I =
Chris Lattner58af2a12006-02-15 07:22:58 +0000692 CurModule.LateResolveTypes.find(D);
693 if (I != CurModule.LateResolveTypes.end()) {
Reid Spencer861d9d62006-11-28 07:29:44 +0000694 ((DerivedType*)I->second.get())->refineAbstractTypeTo(ToTy);
Chris Lattner58af2a12006-02-15 07:22:58 +0000695 CurModule.LateResolveTypes.erase(I);
696 }
697}
698
699// setValueName - Set the specified value to the name given. The name may be
700// null potentially, in which case this is a noop. The string passed in is
701// assumed to be a malloc'd string buffer, and is free'd by this function.
702//
Reid Spencer0a8a16b2007-05-22 18:52:55 +0000703static void setValueName(Value *V, std::string *NameStr) {
Reid Spencer41dff5e2007-01-26 08:05:27 +0000704 if (!NameStr) return;
Reid Spencer0a8a16b2007-05-22 18:52:55 +0000705 std::string Name(*NameStr); // Copy string
706 delete NameStr; // Free old string
Chris Lattner58af2a12006-02-15 07:22:58 +0000707
Reid Spencer41dff5e2007-01-26 08:05:27 +0000708 if (V->getType() == Type::VoidTy) {
Reid Spencerb5334b02007-02-05 10:18:06 +0000709 GenerateError("Can't assign name '" + Name+"' to value with void type");
Reid Spencer41dff5e2007-01-26 08:05:27 +0000710 return;
Chris Lattner58af2a12006-02-15 07:22:58 +0000711 }
Reid Spencer41dff5e2007-01-26 08:05:27 +0000712
Reid Spencera9720f52007-02-05 17:04:00 +0000713 assert(inFunctionScope() && "Must be in function scope!");
Reid Spenceref9b9a72007-02-05 20:47:22 +0000714 ValueSymbolTable &ST = CurFun.CurrentFunction->getValueSymbolTable();
715 if (ST.lookup(Name)) {
Reid Spencer41dff5e2007-01-26 08:05:27 +0000716 GenerateError("Redefinition of value '" + Name + "' of type '" +
Reid Spencerb5334b02007-02-05 10:18:06 +0000717 V->getType()->getDescription() + "'");
Reid Spencer41dff5e2007-01-26 08:05:27 +0000718 return;
719 }
720
721 // Set the name.
722 V->setName(Name);
Chris Lattner58af2a12006-02-15 07:22:58 +0000723}
724
725/// ParseGlobalVariable - Handle parsing of a global. If Initializer is null,
726/// this is a declaration, otherwise it is a definition.
727static GlobalVariable *
Reid Spencer0a8a16b2007-05-22 18:52:55 +0000728ParseGlobalVariable(std::string *NameStr,
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000729 GlobalValue::LinkageTypes Linkage,
730 GlobalValue::VisibilityTypes Visibility,
Chris Lattner58af2a12006-02-15 07:22:58 +0000731 bool isConstantGlobal, const Type *Ty,
Lauro Ramos Venancioc7635522007-04-12 18:32:50 +0000732 Constant *Initializer, bool IsThreadLocal) {
Reid Spencer5b7e7532006-09-28 19:28:24 +0000733 if (isa<FunctionType>(Ty)) {
Reid Spencerb5334b02007-02-05 10:18:06 +0000734 GenerateError("Cannot declare global vars of function type");
Reid Spencer5b7e7532006-09-28 19:28:24 +0000735 return 0;
736 }
Chris Lattner58af2a12006-02-15 07:22:58 +0000737
738 const PointerType *PTy = PointerType::get(Ty);
739
740 std::string Name;
741 if (NameStr) {
Reid Spencer0a8a16b2007-05-22 18:52:55 +0000742 Name = *NameStr; // Copy string
743 delete NameStr; // Free old string
Chris Lattner58af2a12006-02-15 07:22:58 +0000744 }
745
746 // See if this global value was forward referenced. If so, recycle the
747 // object.
748 ValID ID;
749 if (!Name.empty()) {
Reid Spencer0a8a16b2007-05-22 18:52:55 +0000750 ID = ValID::createGlobalName(Name);
Chris Lattner58af2a12006-02-15 07:22:58 +0000751 } else {
Reid Spencer93c40032007-03-19 18:40:50 +0000752 ID = ValID::createGlobalID(CurModule.Values.size());
Chris Lattner58af2a12006-02-15 07:22:58 +0000753 }
754
755 if (GlobalValue *FWGV = CurModule.GetForwardRefForGlobal(PTy, ID)) {
756 // Move the global to the end of the list, from whereever it was
757 // previously inserted.
758 GlobalVariable *GV = cast<GlobalVariable>(FWGV);
759 CurModule.CurrentModule->getGlobalList().remove(GV);
760 CurModule.CurrentModule->getGlobalList().push_back(GV);
761 GV->setInitializer(Initializer);
762 GV->setLinkage(Linkage);
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000763 GV->setVisibility(Visibility);
Chris Lattner58af2a12006-02-15 07:22:58 +0000764 GV->setConstant(isConstantGlobal);
Lauro Ramos Venancioc7635522007-04-12 18:32:50 +0000765 GV->setThreadLocal(IsThreadLocal);
Chris Lattner58af2a12006-02-15 07:22:58 +0000766 InsertValue(GV, CurModule.Values);
767 return GV;
768 }
769
Reid Spenceref9b9a72007-02-05 20:47:22 +0000770 // If this global has a name
Chris Lattner58af2a12006-02-15 07:22:58 +0000771 if (!Name.empty()) {
Reid Spenceref9b9a72007-02-05 20:47:22 +0000772 // if the global we're parsing has an initializer (is a definition) and
773 // has external linkage.
774 if (Initializer && Linkage != GlobalValue::InternalLinkage)
775 // If there is already a global with external linkage with this name
776 if (CurModule.CurrentModule->getGlobalVariable(Name, false)) {
777 // If we allow this GVar to get created, it will be renamed in the
778 // symbol table because it conflicts with an existing GVar. We can't
779 // allow redefinition of GVars whose linking indicates that their name
780 // must stay the same. Issue the error.
781 GenerateError("Redefinition of global variable named '" + Name +
782 "' of type '" + Ty->getDescription() + "'");
783 return 0;
784 }
Chris Lattner58af2a12006-02-15 07:22:58 +0000785 }
786
787 // Otherwise there is no existing GV to use, create one now.
788 GlobalVariable *GV =
789 new GlobalVariable(Ty, isConstantGlobal, Linkage, Initializer, Name,
Lauro Ramos Venancioc7635522007-04-12 18:32:50 +0000790 CurModule.CurrentModule, IsThreadLocal);
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000791 GV->setVisibility(Visibility);
Chris Lattner58af2a12006-02-15 07:22:58 +0000792 InsertValue(GV, CurModule.Values);
793 return GV;
794}
795
796// setTypeName - Set the specified type to the name given. The name may be
797// null potentially, in which case this is a noop. The string passed in is
798// assumed to be a malloc'd string buffer, and is freed by this function.
799//
800// This function returns true if the type has already been defined, but is
801// allowed to be redefined in the specified context. If the name is a new name
802// for the type plane, it is inserted and false is returned.
Reid Spencer0a8a16b2007-05-22 18:52:55 +0000803static bool setTypeName(const Type *T, std::string *NameStr) {
Reid Spencera9720f52007-02-05 17:04:00 +0000804 assert(!inFunctionScope() && "Can't give types function-local names!");
Chris Lattner58af2a12006-02-15 07:22:58 +0000805 if (NameStr == 0) return false;
806
Reid Spencer0a8a16b2007-05-22 18:52:55 +0000807 std::string Name(*NameStr); // Copy string
808 delete NameStr; // Free old string
Chris Lattner58af2a12006-02-15 07:22:58 +0000809
810 // We don't allow assigning names to void type
Reid Spencer5b7e7532006-09-28 19:28:24 +0000811 if (T == Type::VoidTy) {
Reid Spencerb5334b02007-02-05 10:18:06 +0000812 GenerateError("Can't assign name '" + Name + "' to the void type");
Reid Spencer5b7e7532006-09-28 19:28:24 +0000813 return false;
814 }
Chris Lattner58af2a12006-02-15 07:22:58 +0000815
816 // Set the type name, checking for conflicts as we do so.
817 bool AlreadyExists = CurModule.CurrentModule->addTypeName(Name, T);
818
819 if (AlreadyExists) { // Inserting a name that is already defined???
820 const Type *Existing = CurModule.CurrentModule->getTypeByName(Name);
Reid Spencera9720f52007-02-05 17:04:00 +0000821 assert(Existing && "Conflict but no matching type?!");
Chris Lattner58af2a12006-02-15 07:22:58 +0000822
823 // There is only one case where this is allowed: when we are refining an
824 // opaque type. In this case, Existing will be an opaque type.
825 if (const OpaqueType *OpTy = dyn_cast<OpaqueType>(Existing)) {
826 // We ARE replacing an opaque type!
827 const_cast<OpaqueType*>(OpTy)->refineAbstractTypeTo(T);
828 return true;
829 }
830
831 // Otherwise, this is an attempt to redefine a type. That's okay if
832 // the redefinition is identical to the original. This will be so if
833 // Existing and T point to the same Type object. In this one case we
834 // allow the equivalent redefinition.
835 if (Existing == T) return true; // Yes, it's equal.
836
837 // Any other kind of (non-equivalent) redefinition is an error.
Reid Spencer63c34452007-01-05 21:51:07 +0000838 GenerateError("Redefinition of type named '" + Name + "' of type '" +
Reid Spencerb5334b02007-02-05 10:18:06 +0000839 T->getDescription() + "'");
Chris Lattner58af2a12006-02-15 07:22:58 +0000840 }
841
842 return false;
843}
844
845//===----------------------------------------------------------------------===//
846// Code for handling upreferences in type names...
847//
848
849// TypeContains - Returns true if Ty directly contains E in it.
850//
851static bool TypeContains(const Type *Ty, const Type *E) {
852 return std::find(Ty->subtype_begin(), Ty->subtype_end(),
853 E) != Ty->subtype_end();
854}
855
856namespace {
857 struct UpRefRecord {
858 // NestingLevel - The number of nesting levels that need to be popped before
859 // this type is resolved.
860 unsigned NestingLevel;
861
862 // LastContainedTy - This is the type at the current binding level for the
863 // type. Every time we reduce the nesting level, this gets updated.
864 const Type *LastContainedTy;
865
866 // UpRefTy - This is the actual opaque type that the upreference is
867 // represented with.
868 OpaqueType *UpRefTy;
869
870 UpRefRecord(unsigned NL, OpaqueType *URTy)
871 : NestingLevel(NL), LastContainedTy(URTy), UpRefTy(URTy) {}
872 };
873}
874
875// UpRefs - A list of the outstanding upreferences that need to be resolved.
876static std::vector<UpRefRecord> UpRefs;
877
878/// HandleUpRefs - Every time we finish a new layer of types, this function is
879/// called. It loops through the UpRefs vector, which is a list of the
880/// currently active types. For each type, if the up reference is contained in
881/// the newly completed type, we decrement the level count. When the level
882/// count reaches zero, the upreferenced type is the type that is passed in:
883/// thus we can complete the cycle.
884///
885static PATypeHolder HandleUpRefs(const Type *ty) {
Chris Lattner224f84f2006-08-18 17:34:45 +0000886 // If Ty isn't abstract, or if there are no up-references in it, then there is
887 // nothing to resolve here.
888 if (!ty->isAbstract() || UpRefs.empty()) return ty;
889
Chris Lattner58af2a12006-02-15 07:22:58 +0000890 PATypeHolder Ty(ty);
891 UR_OUT("Type '" << Ty->getDescription() <<
892 "' newly formed. Resolving upreferences.\n" <<
893 UpRefs.size() << " upreferences active!\n");
894
895 // If we find any resolvable upreferences (i.e., those whose NestingLevel goes
896 // to zero), we resolve them all together before we resolve them to Ty. At
897 // the end of the loop, if there is anything to resolve to Ty, it will be in
898 // this variable.
899 OpaqueType *TypeToResolve = 0;
900
901 for (unsigned i = 0; i != UpRefs.size(); ++i) {
902 UR_OUT(" UR#" << i << " - TypeContains(" << Ty->getDescription() << ", "
903 << UpRefs[i].second->getDescription() << ") = "
904 << (TypeContains(Ty, UpRefs[i].second) ? "true" : "false") << "\n");
905 if (TypeContains(Ty, UpRefs[i].LastContainedTy)) {
906 // Decrement level of upreference
907 unsigned Level = --UpRefs[i].NestingLevel;
908 UpRefs[i].LastContainedTy = Ty;
909 UR_OUT(" Uplevel Ref Level = " << Level << "\n");
910 if (Level == 0) { // Upreference should be resolved!
911 if (!TypeToResolve) {
912 TypeToResolve = UpRefs[i].UpRefTy;
913 } else {
914 UR_OUT(" * Resolving upreference for "
915 << UpRefs[i].second->getDescription() << "\n";
916 std::string OldName = UpRefs[i].UpRefTy->getDescription());
917 UpRefs[i].UpRefTy->refineAbstractTypeTo(TypeToResolve);
918 UR_OUT(" * Type '" << OldName << "' refined upreference to: "
919 << (const void*)Ty << ", " << Ty->getDescription() << "\n");
920 }
921 UpRefs.erase(UpRefs.begin()+i); // Remove from upreference list...
922 --i; // Do not skip the next element...
923 }
924 }
925 }
926
927 if (TypeToResolve) {
928 UR_OUT(" * Resolving upreference for "
929 << UpRefs[i].second->getDescription() << "\n";
930 std::string OldName = TypeToResolve->getDescription());
931 TypeToResolve->refineAbstractTypeTo(Ty);
932 }
933
934 return Ty;
935}
936
Chris Lattner58af2a12006-02-15 07:22:58 +0000937//===----------------------------------------------------------------------===//
938// RunVMAsmParser - Define an interface to this parser
939//===----------------------------------------------------------------------===//
940//
Reid Spencer14310612006-12-31 05:40:51 +0000941static Module* RunParser(Module * M);
942
Chris Lattner58af2a12006-02-15 07:22:58 +0000943Module *llvm::RunVMAsmParser(const std::string &Filename, FILE *F) {
944 set_scan_file(F);
945
946 CurFilename = Filename;
947 return RunParser(new Module(CurFilename));
948}
949
950Module *llvm::RunVMAsmParser(const char * AsmString, Module * M) {
951 set_scan_string(AsmString);
952
953 CurFilename = "from_memory";
954 if (M == NULL) {
955 return RunParser(new Module (CurFilename));
956 } else {
957 return RunParser(M);
958 }
959}
960
961%}
962
963%union {
964 llvm::Module *ModuleVal;
965 llvm::Function *FunctionVal;
Chris Lattner58af2a12006-02-15 07:22:58 +0000966 llvm::BasicBlock *BasicBlockVal;
967 llvm::TerminatorInst *TermInstVal;
968 llvm::Instruction *InstVal;
Reid Spencera132e042006-12-03 05:46:11 +0000969 llvm::Constant *ConstVal;
Chris Lattner58af2a12006-02-15 07:22:58 +0000970
Reid Spencera132e042006-12-03 05:46:11 +0000971 const llvm::Type *PrimType;
Reid Spencer14310612006-12-31 05:40:51 +0000972 std::list<llvm::PATypeHolder> *TypeList;
Reid Spencera132e042006-12-03 05:46:11 +0000973 llvm::PATypeHolder *TypeVal;
974 llvm::Value *ValueVal;
Reid Spencera132e042006-12-03 05:46:11 +0000975 std::vector<llvm::Value*> *ValueList;
Reid Spencer14310612006-12-31 05:40:51 +0000976 llvm::ArgListType *ArgList;
977 llvm::TypeWithAttrs TypeWithAttrs;
978 llvm::TypeWithAttrsList *TypeWithAttrsList;
979 llvm::ValueRefList *ValueRefList;
980
Chris Lattner58af2a12006-02-15 07:22:58 +0000981 // Represent the RHS of PHI node
Reid Spencera132e042006-12-03 05:46:11 +0000982 std::list<std::pair<llvm::Value*,
983 llvm::BasicBlock*> > *PHIList;
Chris Lattner58af2a12006-02-15 07:22:58 +0000984 std::vector<std::pair<llvm::Constant*, llvm::BasicBlock*> > *JumpTable;
Reid Spencera132e042006-12-03 05:46:11 +0000985 std::vector<llvm::Constant*> *ConstVector;
Chris Lattner58af2a12006-02-15 07:22:58 +0000986
987 llvm::GlobalValue::LinkageTypes Linkage;
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000988 llvm::GlobalValue::VisibilityTypes Visibility;
Reid Spencer7b5d4662007-04-09 06:16:21 +0000989 uint16_t ParamAttrs;
Reid Spencer38c91a92007-02-28 02:24:54 +0000990 llvm::APInt *APIntVal;
Chris Lattner58af2a12006-02-15 07:22:58 +0000991 int64_t SInt64Val;
992 uint64_t UInt64Val;
993 int SIntVal;
994 unsigned UIntVal;
995 double FPVal;
996 bool BoolVal;
997
Reid Spencer0a8a16b2007-05-22 18:52:55 +0000998 std::string *StrVal; // This memory must be deleted
999 llvm::ValID ValIDVal;
Chris Lattner58af2a12006-02-15 07:22:58 +00001000
Reid Spencera132e042006-12-03 05:46:11 +00001001 llvm::Instruction::BinaryOps BinaryOpVal;
1002 llvm::Instruction::TermOps TermOpVal;
1003 llvm::Instruction::MemoryOps MemOpVal;
1004 llvm::Instruction::CastOps CastOpVal;
1005 llvm::Instruction::OtherOps OtherOpVal;
Reid Spencera132e042006-12-03 05:46:11 +00001006 llvm::ICmpInst::Predicate IPredicate;
1007 llvm::FCmpInst::Predicate FPredicate;
Chris Lattner58af2a12006-02-15 07:22:58 +00001008}
1009
Reid Spencer14310612006-12-31 05:40:51 +00001010%type <ModuleVal> Module
Chris Lattner58af2a12006-02-15 07:22:58 +00001011%type <FunctionVal> Function FunctionProto FunctionHeader BasicBlockList
1012%type <BasicBlockVal> BasicBlock InstructionList
1013%type <TermInstVal> BBTerminatorInst
1014%type <InstVal> Inst InstVal MemoryInst
Anton Korobeynikov38e09802007-04-28 13:48:45 +00001015%type <ConstVal> ConstVal ConstExpr AliaseeRef
Chris Lattner58af2a12006-02-15 07:22:58 +00001016%type <ConstVector> ConstVector
1017%type <ArgList> ArgList ArgListH
Chris Lattner58af2a12006-02-15 07:22:58 +00001018%type <PHIList> PHIList
Reid Spencer14310612006-12-31 05:40:51 +00001019%type <ValueRefList> ValueRefList // For call param lists & GEP indices
1020%type <ValueList> IndexList // For GEP indices
1021%type <TypeList> TypeListI
1022%type <TypeWithAttrsList> ArgTypeList ArgTypeListI
Reid Spencer218ded22007-01-05 17:07:23 +00001023%type <TypeWithAttrs> ArgType
Chris Lattner58af2a12006-02-15 07:22:58 +00001024%type <JumpTable> JumpTable
1025%type <BoolVal> GlobalType // GLOBAL or CONSTANT?
Lauro Ramos Venancioc7635522007-04-12 18:32:50 +00001026%type <BoolVal> ThreadLocal // 'thread_local' or not
Chris Lattner58af2a12006-02-15 07:22:58 +00001027%type <BoolVal> OptVolatile // 'volatile' or not
1028%type <BoolVal> OptTailCall // TAIL CALL or plain CALL.
1029%type <BoolVal> OptSideEffect // 'sideeffect' or not.
Reid Spencer14310612006-12-31 05:40:51 +00001030%type <Linkage> GVInternalLinkage GVExternalLinkage
1031%type <Linkage> FunctionDefineLinkage FunctionDeclareLinkage
Anton Korobeynikov77d0f972007-04-25 14:29:12 +00001032%type <Linkage> AliasLinkage
Anton Korobeynikov7f705592007-01-12 19:20:47 +00001033%type <Visibility> GVVisibilityStyle
Chris Lattner58af2a12006-02-15 07:22:58 +00001034
1035// ValueRef - Unresolved reference to a definition or BB
1036%type <ValIDVal> ValueRef ConstValueRef SymbolicValueRef
1037%type <ValueVal> ResolvedVal // <type> <valref> pair
1038// Tokens and types for handling constant integer values
1039//
1040// ESINT64VAL - A negative number within long long range
1041%token <SInt64Val> ESINT64VAL
1042
1043// EUINT64VAL - A positive number within uns. long long range
1044%token <UInt64Val> EUINT64VAL
Chris Lattner58af2a12006-02-15 07:22:58 +00001045
Reid Spencer38c91a92007-02-28 02:24:54 +00001046// ESAPINTVAL - A negative number with arbitrary precision
1047%token <APIntVal> ESAPINTVAL
1048
1049// EUAPINTVAL - A positive number with arbitrary precision
1050%token <APIntVal> EUAPINTVAL
1051
Reid Spencer41dff5e2007-01-26 08:05:27 +00001052%token <UIntVal> LOCALVAL_ID GLOBALVAL_ID // %123 @123
Chris Lattner58af2a12006-02-15 07:22:58 +00001053%token <FPVal> FPVAL // Float or Double constant
1054
1055// Built in types...
Reid Spencer218ded22007-01-05 17:07:23 +00001056%type <TypeVal> Types ResultTypes
Reid Spencer14310612006-12-31 05:40:51 +00001057%type <PrimType> IntType FPType PrimType // Classifications
Reid Spencer6f407902007-01-13 05:00:46 +00001058%token <PrimType> VOID INTTYPE
Dale Johannesen320fc8a2007-08-03 01:03:46 +00001059%token <PrimType> FLOAT DOUBLE X86_FP80 FP128 PPC_FP128 LABEL
Reid Spencer6fd36ab2006-12-29 20:35:03 +00001060%token TYPE
Chris Lattner58af2a12006-02-15 07:22:58 +00001061
Reid Spencer0a8a16b2007-05-22 18:52:55 +00001062
Reid Spencered951ea2007-05-19 07:22:10 +00001063%token<StrVal> LOCALVAR GLOBALVAR LABELSTR
1064%token<StrVal> STRINGCONSTANT ATSTRINGCONSTANT PCTSTRINGCONSTANT
Reid Spencer41dff5e2007-01-26 08:05:27 +00001065%type <StrVal> LocalName OptLocalName OptLocalAssign
Anton Korobeynikov77d0f972007-04-25 14:29:12 +00001066%type <StrVal> GlobalName OptGlobalAssign GlobalAssign
Chris Lattner58af2a12006-02-15 07:22:58 +00001067%type <StrVal> OptSection SectionString
1068
Reid Spencer0a8a16b2007-05-22 18:52:55 +00001069%type <UIntVal> OptAlign OptCAlign
1070
Reid Spencer3d6b71e2007-04-09 01:56:05 +00001071%token ZEROINITIALIZER TRUETOK FALSETOK BEGINTOK ENDTOK
Anton Korobeynikov77d0f972007-04-25 14:29:12 +00001072%token DECLARE DEFINE GLOBAL CONSTANT SECTION ALIAS VOLATILE THREAD_LOCAL
Reid Spencer14310612006-12-31 05:40:51 +00001073%token TO DOTDOTDOT NULL_TOK UNDEF INTERNAL LINKONCE WEAK APPENDING
Anton Korobeynikovb74ed072006-09-14 18:23:27 +00001074%token DLLIMPORT DLLEXPORT EXTERN_WEAK
Reid Spencer41dff5e2007-01-26 08:05:27 +00001075%token OPAQUE EXTERNAL TARGET TRIPLE ALIGN
Chris Lattner58af2a12006-02-15 07:22:58 +00001076%token DEPLIBS CALL TAIL ASM_TOK MODULE SIDEEFFECT
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00001077%token CC_TOK CCC_TOK FASTCC_TOK COLDCC_TOK X86_STDCALLCC_TOK X86_FASTCALLCC_TOK
Chris Lattner1ae022f2006-10-22 06:08:13 +00001078%token DATALAYOUT
Chris Lattner58af2a12006-02-15 07:22:58 +00001079%type <UIntVal> OptCallingConv
Reid Spencer218ded22007-01-05 17:07:23 +00001080%type <ParamAttrs> OptParamAttrs ParamAttr
1081%type <ParamAttrs> OptFuncAttrs FuncAttr
Chris Lattner58af2a12006-02-15 07:22:58 +00001082
1083// Basic Block Terminating Operators
1084%token <TermOpVal> RET BR SWITCH INVOKE UNWIND UNREACHABLE
1085
1086// Binary Operators
Reid Spencere4d87aa2006-12-23 06:05:41 +00001087%type <BinaryOpVal> ArithmeticOps LogicalOps // Binops Subcatagories
Reid Spencer3ed469c2006-11-02 20:25:50 +00001088%token <BinaryOpVal> ADD SUB MUL UDIV SDIV FDIV UREM SREM FREM AND OR XOR
Reid Spencer832254e2007-02-02 02:16:23 +00001089%token <BinaryOpVal> SHL LSHR ASHR
1090
Reid Spencera132e042006-12-03 05:46:11 +00001091%token <OtherOpVal> ICMP FCMP
Reid Spencera132e042006-12-03 05:46:11 +00001092%type <IPredicate> IPredicates
Reid Spencera132e042006-12-03 05:46:11 +00001093%type <FPredicate> FPredicates
Reid Spencer6e18b7d2006-12-03 06:59:29 +00001094%token EQ NE SLT SGT SLE SGE ULT UGT ULE UGE
1095%token OEQ ONE OLT OGT OLE OGE ORD UNO UEQ UNE
Chris Lattner58af2a12006-02-15 07:22:58 +00001096
1097// Memory Instructions
1098%token <MemOpVal> MALLOC ALLOCA FREE LOAD STORE GETELEMENTPTR
1099
Reid Spencer3da59db2006-11-27 01:05:10 +00001100// Cast Operators
1101%type <CastOpVal> CastOps
1102%token <CastOpVal> TRUNC ZEXT SEXT FPTRUNC FPEXT BITCAST
1103%token <CastOpVal> UITOFP SITOFP FPTOUI FPTOSI INTTOPTR PTRTOINT
1104
Chris Lattner58af2a12006-02-15 07:22:58 +00001105// Other Operators
Reid Spencer832254e2007-02-02 02:16:23 +00001106%token <OtherOpVal> PHI_TOK SELECT VAARG
Chris Lattnerd5efe842006-04-08 01:18:56 +00001107%token <OtherOpVal> EXTRACTELEMENT INSERTELEMENT SHUFFLEVECTOR
Chris Lattner58af2a12006-02-15 07:22:58 +00001108
Reid Spencer218ded22007-01-05 17:07:23 +00001109// Function Attributes
Reid Spencerb8f85052007-07-31 03:50:36 +00001110%token SIGNEXT ZEROEXT NORETURN INREG SRET NOUNWIND NOALIAS BYVAL NEST
Chris Lattner58af2a12006-02-15 07:22:58 +00001111
Anton Korobeynikov7f705592007-01-12 19:20:47 +00001112// Visibility Styles
Anton Korobeynikov6f9896f2007-04-29 18:35:00 +00001113%token DEFAULT HIDDEN PROTECTED
Anton Korobeynikov7f705592007-01-12 19:20:47 +00001114
Chris Lattner58af2a12006-02-15 07:22:58 +00001115%start Module
1116%%
1117
Chris Lattner58af2a12006-02-15 07:22:58 +00001118
Chris Lattner58af2a12006-02-15 07:22:58 +00001119// Operations that are notably excluded from this list include:
1120// RET, BR, & SWITCH because they end basic blocks and are treated specially.
1121//
Reid Spencer3ed469c2006-11-02 20:25:50 +00001122ArithmeticOps: ADD | SUB | MUL | UDIV | SDIV | FDIV | UREM | SREM | FREM;
Reid Spencer832254e2007-02-02 02:16:23 +00001123LogicalOps : SHL | LSHR | ASHR | AND | OR | XOR;
Reid Spencer3da59db2006-11-27 01:05:10 +00001124CastOps : TRUNC | ZEXT | SEXT | FPTRUNC | FPEXT | BITCAST |
1125 UITOFP | SITOFP | FPTOUI | FPTOSI | INTTOPTR | PTRTOINT;
Reid Spencer832254e2007-02-02 02:16:23 +00001126
Reid Spencer6e18b7d2006-12-03 06:59:29 +00001127IPredicates
Reid Spencer4012e832006-12-04 05:24:24 +00001128 : EQ { $$ = ICmpInst::ICMP_EQ; } | NE { $$ = ICmpInst::ICMP_NE; }
Reid Spencer6e18b7d2006-12-03 06:59:29 +00001129 | SLT { $$ = ICmpInst::ICMP_SLT; } | SGT { $$ = ICmpInst::ICMP_SGT; }
1130 | SLE { $$ = ICmpInst::ICMP_SLE; } | SGE { $$ = ICmpInst::ICMP_SGE; }
1131 | ULT { $$ = ICmpInst::ICMP_ULT; } | UGT { $$ = ICmpInst::ICMP_UGT; }
1132 | ULE { $$ = ICmpInst::ICMP_ULE; } | UGE { $$ = ICmpInst::ICMP_UGE; }
1133 ;
1134
1135FPredicates
1136 : OEQ { $$ = FCmpInst::FCMP_OEQ; } | ONE { $$ = FCmpInst::FCMP_ONE; }
1137 | OLT { $$ = FCmpInst::FCMP_OLT; } | OGT { $$ = FCmpInst::FCMP_OGT; }
1138 | OLE { $$ = FCmpInst::FCMP_OLE; } | OGE { $$ = FCmpInst::FCMP_OGE; }
1139 | ORD { $$ = FCmpInst::FCMP_ORD; } | UNO { $$ = FCmpInst::FCMP_UNO; }
1140 | UEQ { $$ = FCmpInst::FCMP_UEQ; } | UNE { $$ = FCmpInst::FCMP_UNE; }
1141 | ULT { $$ = FCmpInst::FCMP_ULT; } | UGT { $$ = FCmpInst::FCMP_UGT; }
1142 | ULE { $$ = FCmpInst::FCMP_ULE; } | UGE { $$ = FCmpInst::FCMP_UGE; }
1143 | TRUETOK { $$ = FCmpInst::FCMP_TRUE; }
1144 | FALSETOK { $$ = FCmpInst::FCMP_FALSE; }
1145 ;
Chris Lattner58af2a12006-02-15 07:22:58 +00001146
1147// These are some types that allow classification if we only want a particular
1148// thing... for example, only a signed, unsigned, or integral type.
Reid Spencera54b7cb2007-01-12 07:05:14 +00001149IntType : INTTYPE;
Dale Johannesen320fc8a2007-08-03 01:03:46 +00001150FPType : FLOAT | DOUBLE | PPC_FP128 | FP128 | X86_FP80;
Chris Lattner58af2a12006-02-15 07:22:58 +00001151
Reid Spencer0a8a16b2007-05-22 18:52:55 +00001152LocalName : LOCALVAR | STRINGCONSTANT | PCTSTRINGCONSTANT ;
Reid Spencer41dff5e2007-01-26 08:05:27 +00001153OptLocalName : LocalName | /*empty*/ { $$ = 0; };
1154
1155/// OptLocalAssign - Value producing statements have an optional assignment
1156/// component.
1157OptLocalAssign : LocalName '=' {
1158 $$ = $1;
1159 CHECK_FOR_ERROR
1160 }
1161 | /*empty*/ {
1162 $$ = 0;
1163 CHECK_FOR_ERROR
1164 };
1165
Reid Spencer0a8a16b2007-05-22 18:52:55 +00001166GlobalName : GLOBALVAR | ATSTRINGCONSTANT ;
Reid Spencer41dff5e2007-01-26 08:05:27 +00001167
Anton Korobeynikov77d0f972007-04-25 14:29:12 +00001168OptGlobalAssign : GlobalAssign
Chris Lattner58af2a12006-02-15 07:22:58 +00001169 | /*empty*/ {
1170 $$ = 0;
Reid Spencer61c83e02006-08-18 08:43:06 +00001171 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001172 };
1173
Anton Korobeynikov77d0f972007-04-25 14:29:12 +00001174GlobalAssign : GlobalName '=' {
1175 $$ = $1;
1176 CHECK_FOR_ERROR
Chris Lattner6cdc6822007-04-26 05:31:05 +00001177 };
Anton Korobeynikov77d0f972007-04-25 14:29:12 +00001178
Reid Spencer6fd36ab2006-12-29 20:35:03 +00001179GVInternalLinkage
1180 : INTERNAL { $$ = GlobalValue::InternalLinkage; }
1181 | WEAK { $$ = GlobalValue::WeakLinkage; }
1182 | LINKONCE { $$ = GlobalValue::LinkOnceLinkage; }
1183 | APPENDING { $$ = GlobalValue::AppendingLinkage; }
1184 | DLLEXPORT { $$ = GlobalValue::DLLExportLinkage; }
1185 ;
1186
1187GVExternalLinkage
1188 : DLLIMPORT { $$ = GlobalValue::DLLImportLinkage; }
1189 | EXTERN_WEAK { $$ = GlobalValue::ExternalWeakLinkage; }
1190 | EXTERNAL { $$ = GlobalValue::ExternalLinkage; }
1191 ;
1192
Anton Korobeynikov7f705592007-01-12 19:20:47 +00001193GVVisibilityStyle
Anton Korobeynikov6f9896f2007-04-29 18:35:00 +00001194 : /*empty*/ { $$ = GlobalValue::DefaultVisibility; }
1195 | DEFAULT { $$ = GlobalValue::DefaultVisibility; }
1196 | HIDDEN { $$ = GlobalValue::HiddenVisibility; }
1197 | PROTECTED { $$ = GlobalValue::ProtectedVisibility; }
Anton Korobeynikov7f705592007-01-12 19:20:47 +00001198 ;
1199
Reid Spencer14310612006-12-31 05:40:51 +00001200FunctionDeclareLinkage
1201 : /*empty*/ { $$ = GlobalValue::ExternalLinkage; }
1202 | DLLIMPORT { $$ = GlobalValue::DLLImportLinkage; }
1203 | EXTERN_WEAK { $$ = GlobalValue::ExternalWeakLinkage; }
Reid Spencer6fd36ab2006-12-29 20:35:03 +00001204 ;
1205
Anton Korobeynikov77d0f972007-04-25 14:29:12 +00001206FunctionDefineLinkage
Reid Spencer14310612006-12-31 05:40:51 +00001207 : /*empty*/ { $$ = GlobalValue::ExternalLinkage; }
1208 | INTERNAL { $$ = GlobalValue::InternalLinkage; }
Reid Spencer6fd36ab2006-12-29 20:35:03 +00001209 | LINKONCE { $$ = GlobalValue::LinkOnceLinkage; }
1210 | WEAK { $$ = GlobalValue::WeakLinkage; }
1211 | DLLEXPORT { $$ = GlobalValue::DLLExportLinkage; }
Reid Spencer6fd36ab2006-12-29 20:35:03 +00001212 ;
Chris Lattner58af2a12006-02-15 07:22:58 +00001213
Anton Korobeynikov77d0f972007-04-25 14:29:12 +00001214AliasLinkage
1215 : /*empty*/ { $$ = GlobalValue::ExternalLinkage; }
1216 | WEAK { $$ = GlobalValue::WeakLinkage; }
1217 | INTERNAL { $$ = GlobalValue::InternalLinkage; }
1218 ;
1219
Anton Korobeynikovbcb97702006-09-17 20:25:45 +00001220OptCallingConv : /*empty*/ { $$ = CallingConv::C; } |
1221 CCC_TOK { $$ = CallingConv::C; } |
Anton Korobeynikovbcb97702006-09-17 20:25:45 +00001222 FASTCC_TOK { $$ = CallingConv::Fast; } |
1223 COLDCC_TOK { $$ = CallingConv::Cold; } |
1224 X86_STDCALLCC_TOK { $$ = CallingConv::X86_StdCall; } |
1225 X86_FASTCALLCC_TOK { $$ = CallingConv::X86_FastCall; } |
1226 CC_TOK EUINT64VAL {
Chris Lattner58af2a12006-02-15 07:22:58 +00001227 if ((unsigned)$2 != $2)
Reid Spencerb5334b02007-02-05 10:18:06 +00001228 GEN_ERROR("Calling conv too large");
Chris Lattner58af2a12006-02-15 07:22:58 +00001229 $$ = $2;
Reid Spencer61c83e02006-08-18 08:43:06 +00001230 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001231 };
1232
Reid Spencerb8f85052007-07-31 03:50:36 +00001233ParamAttr : ZEROEXT { $$ = ParamAttr::ZExt; }
1234 | ZEXT { $$ = ParamAttr::ZExt; }
1235 | SIGNEXT { $$ = ParamAttr::SExt; }
Chris Lattnerce5f24e2007-07-05 17:26:49 +00001236 | SEXT { $$ = ParamAttr::SExt; }
1237 | INREG { $$ = ParamAttr::InReg; }
1238 | SRET { $$ = ParamAttr::StructRet; }
1239 | NOALIAS { $$ = ParamAttr::NoAlias; }
Reid Spencerb8f85052007-07-31 03:50:36 +00001240 | BYVAL { $$ = ParamAttr::ByVal; }
1241 | NEST { $$ = ParamAttr::Nest; }
Reid Spencer14310612006-12-31 05:40:51 +00001242 ;
1243
Reid Spencer18da0722007-04-11 02:44:20 +00001244OptParamAttrs : /* empty */ { $$ = ParamAttr::None; }
Reid Spencer218ded22007-01-05 17:07:23 +00001245 | OptParamAttrs ParamAttr {
Reid Spencer7b5d4662007-04-09 06:16:21 +00001246 $$ = $1 | $2;
Reid Spencer14310612006-12-31 05:40:51 +00001247 }
1248 ;
1249
Reid Spencer18da0722007-04-11 02:44:20 +00001250FuncAttr : NORETURN { $$ = ParamAttr::NoReturn; }
1251 | NOUNWIND { $$ = ParamAttr::NoUnwind; }
Reid Spencerb8f85052007-07-31 03:50:36 +00001252 | ZEROEXT { $$ = ParamAttr::ZExt; }
1253 | SIGNEXT { $$ = ParamAttr::SExt; }
Reid Spencer218ded22007-01-05 17:07:23 +00001254 ;
1255
Reid Spencer18da0722007-04-11 02:44:20 +00001256OptFuncAttrs : /* empty */ { $$ = ParamAttr::None; }
Reid Spencer218ded22007-01-05 17:07:23 +00001257 | OptFuncAttrs FuncAttr {
Reid Spencer7b5d4662007-04-09 06:16:21 +00001258 $$ = $1 | $2;
Reid Spencer218ded22007-01-05 17:07:23 +00001259 }
Reid Spencer14310612006-12-31 05:40:51 +00001260 ;
1261
Chris Lattner58af2a12006-02-15 07:22:58 +00001262// OptAlign/OptCAlign - An optional alignment, and an optional alignment with
1263// a comma before it.
1264OptAlign : /*empty*/ { $$ = 0; } |
1265 ALIGN EUINT64VAL {
1266 $$ = $2;
1267 if ($$ != 0 && !isPowerOf2_32($$))
Reid Spencerb5334b02007-02-05 10:18:06 +00001268 GEN_ERROR("Alignment must be a power of two");
Reid Spencer61c83e02006-08-18 08:43:06 +00001269 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001270};
1271OptCAlign : /*empty*/ { $$ = 0; } |
1272 ',' ALIGN EUINT64VAL {
1273 $$ = $3;
1274 if ($$ != 0 && !isPowerOf2_32($$))
Reid Spencerb5334b02007-02-05 10:18:06 +00001275 GEN_ERROR("Alignment must be a power of two");
Reid Spencer61c83e02006-08-18 08:43:06 +00001276 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001277};
1278
1279
1280SectionString : SECTION STRINGCONSTANT {
Reid Spencer0a8a16b2007-05-22 18:52:55 +00001281 for (unsigned i = 0, e = $2->length(); i != e; ++i)
1282 if ((*$2)[i] == '"' || (*$2)[i] == '\\')
Reid Spencerb5334b02007-02-05 10:18:06 +00001283 GEN_ERROR("Invalid character in section name");
Chris Lattner58af2a12006-02-15 07:22:58 +00001284 $$ = $2;
Reid Spencer61c83e02006-08-18 08:43:06 +00001285 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001286};
1287
1288OptSection : /*empty*/ { $$ = 0; } |
1289 SectionString { $$ = $1; };
1290
1291// GlobalVarAttributes - Used to pass the attributes string on a global. CurGV
1292// is set to be the global we are processing.
1293//
1294GlobalVarAttributes : /* empty */ {} |
1295 ',' GlobalVarAttribute GlobalVarAttributes {};
1296GlobalVarAttribute : SectionString {
Reid Spencer0a8a16b2007-05-22 18:52:55 +00001297 CurGV->setSection(*$1);
1298 delete $1;
Reid Spencer61c83e02006-08-18 08:43:06 +00001299 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001300 }
1301 | ALIGN EUINT64VAL {
1302 if ($2 != 0 && !isPowerOf2_32($2))
Reid Spencerb5334b02007-02-05 10:18:06 +00001303 GEN_ERROR("Alignment must be a power of two");
Chris Lattner58af2a12006-02-15 07:22:58 +00001304 CurGV->setAlignment($2);
Reid Spencer61c83e02006-08-18 08:43:06 +00001305 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001306 };
1307
1308//===----------------------------------------------------------------------===//
1309// Types includes all predefined types... except void, because it can only be
Reid Spencer14310612006-12-31 05:40:51 +00001310// used in specific contexts (function returning void for example).
Chris Lattner58af2a12006-02-15 07:22:58 +00001311
1312// Derived types are added later...
1313//
Dale Johannesen320fc8a2007-08-03 01:03:46 +00001314PrimType : INTTYPE | FLOAT | DOUBLE | PPC_FP128 | FP128 | X86_FP80 | LABEL ;
Reid Spencer14310612006-12-31 05:40:51 +00001315
1316Types
1317 : OPAQUE {
Reid Spencera132e042006-12-03 05:46:11 +00001318 $$ = new PATypeHolder(OpaqueType::get());
Reid Spencer61c83e02006-08-18 08:43:06 +00001319 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001320 }
1321 | PrimType {
Reid Spencera132e042006-12-03 05:46:11 +00001322 $$ = new PATypeHolder($1);
Reid Spencer61c83e02006-08-18 08:43:06 +00001323 CHECK_FOR_ERROR
Reid Spencer14310612006-12-31 05:40:51 +00001324 }
1325 | Types '*' { // Pointer type?
1326 if (*$1 == Type::LabelTy)
1327 GEN_ERROR("Cannot form a pointer to a basic block");
1328 $$ = new PATypeHolder(HandleUpRefs(PointerType::get(*$1)));
1329 delete $1;
1330 CHECK_FOR_ERROR
1331 }
1332 | SymbolicValueRef { // Named types are also simple types...
1333 const Type* tmp = getTypeVal($1);
1334 CHECK_FOR_ERROR
1335 $$ = new PATypeHolder(tmp);
1336 }
1337 | '\\' EUINT64VAL { // Type UpReference
Reid Spencerb5334b02007-02-05 10:18:06 +00001338 if ($2 > (uint64_t)~0U) GEN_ERROR("Value out of range");
Chris Lattner58af2a12006-02-15 07:22:58 +00001339 OpaqueType *OT = OpaqueType::get(); // Use temporary placeholder
1340 UpRefs.push_back(UpRefRecord((unsigned)$2, OT)); // Add to vector...
Reid Spencera132e042006-12-03 05:46:11 +00001341 $$ = new PATypeHolder(OT);
Chris Lattner58af2a12006-02-15 07:22:58 +00001342 UR_OUT("New Upreference!\n");
Reid Spencer61c83e02006-08-18 08:43:06 +00001343 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001344 }
Reid Spencer218ded22007-01-05 17:07:23 +00001345 | Types '(' ArgTypeListI ')' OptFuncAttrs {
Chris Lattner58af2a12006-02-15 07:22:58 +00001346 std::vector<const Type*> Params;
Christopher Lamb5c104242007-04-22 20:09:11 +00001347 ParamAttrsVector Attrs;
1348 if ($5 != ParamAttr::None) {
1349 ParamAttrsWithIndex X; X.index = 0; X.attrs = $5;
1350 Attrs.push_back(X);
1351 }
Reid Spencer7b5d4662007-04-09 06:16:21 +00001352 unsigned index = 1;
1353 TypeWithAttrsList::iterator I = $3->begin(), E = $3->end();
1354 for (; I != E; ++I, ++index) {
Reid Spencer66728ef2007-03-20 01:13:36 +00001355 const Type *Ty = I->Ty->get();
Reid Spencer66728ef2007-03-20 01:13:36 +00001356 Params.push_back(Ty);
1357 if (Ty != Type::VoidTy)
Christopher Lamb5c104242007-04-22 20:09:11 +00001358 if (I->Attrs != ParamAttr::None) {
1359 ParamAttrsWithIndex X; X.index = index; X.attrs = I->Attrs;
1360 Attrs.push_back(X);
1361 }
Reid Spencer14310612006-12-31 05:40:51 +00001362 }
Chris Lattner58af2a12006-02-15 07:22:58 +00001363 bool isVarArg = Params.size() && Params.back() == Type::VoidTy;
1364 if (isVarArg) Params.pop_back();
1365
Reid Spencer7b5d4662007-04-09 06:16:21 +00001366 ParamAttrsList *ActualAttrs = 0;
1367 if (!Attrs.empty())
Christopher Lamb5c104242007-04-22 20:09:11 +00001368 ActualAttrs = ParamAttrsList::get(Attrs);
Reid Spencer7b5d4662007-04-09 06:16:21 +00001369 FunctionType *FT = FunctionType::get(*$1, Params, isVarArg, ActualAttrs);
Anton Korobeynikov7f705592007-01-12 19:20:47 +00001370 delete $3; // Delete the argument list
Reid Spencer14310612006-12-31 05:40:51 +00001371 delete $1; // Delete the return type handle
1372 $$ = new PATypeHolder(HandleUpRefs(FT));
Reid Spencer61c83e02006-08-18 08:43:06 +00001373 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001374 }
Reid Spencer218ded22007-01-05 17:07:23 +00001375 | VOID '(' ArgTypeListI ')' OptFuncAttrs {
Reid Spencer14310612006-12-31 05:40:51 +00001376 std::vector<const Type*> Params;
Christopher Lamb5c104242007-04-22 20:09:11 +00001377 ParamAttrsVector Attrs;
1378 if ($5 != ParamAttr::None) {
1379 ParamAttrsWithIndex X; X.index = 0; X.attrs = $5;
1380 Attrs.push_back(X);
1381 }
Reid Spencer7b5d4662007-04-09 06:16:21 +00001382 TypeWithAttrsList::iterator I = $3->begin(), E = $3->end();
1383 unsigned index = 1;
1384 for ( ; I != E; ++I, ++index) {
Reid Spencer66728ef2007-03-20 01:13:36 +00001385 const Type* Ty = I->Ty->get();
Reid Spencer66728ef2007-03-20 01:13:36 +00001386 Params.push_back(Ty);
1387 if (Ty != Type::VoidTy)
Christopher Lamb5c104242007-04-22 20:09:11 +00001388 if (I->Attrs != ParamAttr::None) {
1389 ParamAttrsWithIndex X; X.index = index; X.attrs = I->Attrs;
1390 Attrs.push_back(X);
1391 }
Reid Spencer14310612006-12-31 05:40:51 +00001392 }
1393 bool isVarArg = Params.size() && Params.back() == Type::VoidTy;
1394 if (isVarArg) Params.pop_back();
1395
Reid Spencer7b5d4662007-04-09 06:16:21 +00001396 ParamAttrsList *ActualAttrs = 0;
1397 if (!Attrs.empty())
Christopher Lamb5c104242007-04-22 20:09:11 +00001398 ActualAttrs = ParamAttrsList::get(Attrs);
Reid Spencer7b5d4662007-04-09 06:16:21 +00001399
1400 FunctionType *FT = FunctionType::get($1, Params, isVarArg, ActualAttrs);
Reid Spencer218ded22007-01-05 17:07:23 +00001401 delete $3; // Delete the argument list
Reid Spencer14310612006-12-31 05:40:51 +00001402 $$ = new PATypeHolder(HandleUpRefs(FT));
1403 CHECK_FOR_ERROR
1404 }
1405
1406 | '[' EUINT64VAL 'x' Types ']' { // Sized array type?
Reid Spencera132e042006-12-03 05:46:11 +00001407 $$ = new PATypeHolder(HandleUpRefs(ArrayType::get(*$4, (unsigned)$2)));
1408 delete $4;
Reid Spencer61c83e02006-08-18 08:43:06 +00001409 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001410 }
Chris Lattner32980692007-02-19 07:44:24 +00001411 | '<' EUINT64VAL 'x' Types '>' { // Vector type?
Reid Spencera132e042006-12-03 05:46:11 +00001412 const llvm::Type* ElemTy = $4->get();
1413 if ((unsigned)$2 != $2)
1414 GEN_ERROR("Unsigned result not equal to signed result");
Chris Lattner42a75512007-01-15 02:27:26 +00001415 if (!ElemTy->isFloatingPoint() && !ElemTy->isInteger())
Reid Spencer9d6565a2007-02-15 02:26:10 +00001416 GEN_ERROR("Element type of a VectorType must be primitive");
Reid Spencera132e042006-12-03 05:46:11 +00001417 if (!isPowerOf2_32($2))
Reid Spencerb5334b02007-02-05 10:18:06 +00001418 GEN_ERROR("Vector length should be a power of 2");
Reid Spencer9d6565a2007-02-15 02:26:10 +00001419 $$ = new PATypeHolder(HandleUpRefs(VectorType::get(*$4, (unsigned)$2)));
Reid Spencera132e042006-12-03 05:46:11 +00001420 delete $4;
1421 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001422 }
1423 | '{' TypeListI '}' { // Structure type?
1424 std::vector<const Type*> Elements;
Reid Spencera132e042006-12-03 05:46:11 +00001425 for (std::list<llvm::PATypeHolder>::iterator I = $2->begin(),
Chris Lattner58af2a12006-02-15 07:22:58 +00001426 E = $2->end(); I != E; ++I)
Reid Spencera132e042006-12-03 05:46:11 +00001427 Elements.push_back(*I);
Chris Lattner58af2a12006-02-15 07:22:58 +00001428
Reid Spencera132e042006-12-03 05:46:11 +00001429 $$ = new PATypeHolder(HandleUpRefs(StructType::get(Elements)));
Chris Lattner58af2a12006-02-15 07:22:58 +00001430 delete $2;
Reid Spencer61c83e02006-08-18 08:43:06 +00001431 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001432 }
1433 | '{' '}' { // Empty structure type?
Reid Spencera132e042006-12-03 05:46:11 +00001434 $$ = new PATypeHolder(StructType::get(std::vector<const Type*>()));
Reid Spencer61c83e02006-08-18 08:43:06 +00001435 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001436 }
Andrew Lenharth6353e052006-12-08 18:07:09 +00001437 | '<' '{' TypeListI '}' '>' {
1438 std::vector<const Type*> Elements;
1439 for (std::list<llvm::PATypeHolder>::iterator I = $3->begin(),
1440 E = $3->end(); I != E; ++I)
1441 Elements.push_back(*I);
1442
1443 $$ = new PATypeHolder(HandleUpRefs(StructType::get(Elements, true)));
1444 delete $3;
1445 CHECK_FOR_ERROR
1446 }
1447 | '<' '{' '}' '>' { // Empty structure type?
1448 $$ = new PATypeHolder(StructType::get(std::vector<const Type*>(), true));
1449 CHECK_FOR_ERROR
1450 }
Reid Spencer14310612006-12-31 05:40:51 +00001451 ;
1452
1453ArgType
1454 : Types OptParamAttrs {
1455 $$.Ty = $1;
1456 $$.Attrs = $2;
1457 }
1458 ;
1459
Reid Spencer218ded22007-01-05 17:07:23 +00001460ResultTypes
1461 : Types {
Reid Spencer14310612006-12-31 05:40:51 +00001462 if (!UpRefs.empty())
1463 GEN_ERROR("Invalid upreference in type: " + (*$1)->getDescription());
1464 if (!(*$1)->isFirstClassType())
Reid Spencerb5334b02007-02-05 10:18:06 +00001465 GEN_ERROR("LLVM functions cannot return aggregate types");
Reid Spencer218ded22007-01-05 17:07:23 +00001466 $$ = $1;
Reid Spencer14310612006-12-31 05:40:51 +00001467 }
Reid Spencer218ded22007-01-05 17:07:23 +00001468 | VOID {
1469 $$ = new PATypeHolder(Type::VoidTy);
Reid Spencer14310612006-12-31 05:40:51 +00001470 }
1471 ;
1472
1473ArgTypeList : ArgType {
1474 $$ = new TypeWithAttrsList();
1475 $$->push_back($1);
1476 CHECK_FOR_ERROR
1477 }
1478 | ArgTypeList ',' ArgType {
1479 ($$=$1)->push_back($3);
1480 CHECK_FOR_ERROR
1481 }
1482 ;
1483
1484ArgTypeListI
1485 : ArgTypeList
1486 | ArgTypeList ',' DOTDOTDOT {
1487 $$=$1;
Reid Spencer18da0722007-04-11 02:44:20 +00001488 TypeWithAttrs TWA; TWA.Attrs = ParamAttr::None;
Reid Spencer14310612006-12-31 05:40:51 +00001489 TWA.Ty = new PATypeHolder(Type::VoidTy);
1490 $$->push_back(TWA);
1491 CHECK_FOR_ERROR
1492 }
1493 | DOTDOTDOT {
1494 $$ = new TypeWithAttrsList;
Reid Spencer18da0722007-04-11 02:44:20 +00001495 TypeWithAttrs TWA; TWA.Attrs = ParamAttr::None;
Reid Spencer14310612006-12-31 05:40:51 +00001496 TWA.Ty = new PATypeHolder(Type::VoidTy);
1497 $$->push_back(TWA);
1498 CHECK_FOR_ERROR
1499 }
1500 | /*empty*/ {
1501 $$ = new TypeWithAttrsList();
Reid Spencer61c83e02006-08-18 08:43:06 +00001502 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001503 };
1504
1505// TypeList - Used for struct declarations and as a basis for function type
1506// declaration type lists
1507//
Reid Spencer14310612006-12-31 05:40:51 +00001508TypeListI : Types {
Reid Spencera132e042006-12-03 05:46:11 +00001509 $$ = new std::list<PATypeHolder>();
Reid Spencer66728ef2007-03-20 01:13:36 +00001510 $$->push_back(*$1);
1511 delete $1;
Reid Spencer61c83e02006-08-18 08:43:06 +00001512 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001513 }
Reid Spencer14310612006-12-31 05:40:51 +00001514 | TypeListI ',' Types {
Reid Spencer66728ef2007-03-20 01:13:36 +00001515 ($$=$1)->push_back(*$3);
1516 delete $3;
Reid Spencer61c83e02006-08-18 08:43:06 +00001517 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001518 };
1519
Chris Lattner58af2a12006-02-15 07:22:58 +00001520// ConstVal - The various declarations that go into the constant pool. This
1521// production is used ONLY to represent constants that show up AFTER a 'const',
1522// 'constant' or 'global' token at global scope. Constants that can be inlined
1523// into other expressions (such as integers and constexprs) are handled by the
1524// ResolvedVal, ValueRef and ConstValueRef productions.
1525//
1526ConstVal: Types '[' ConstVector ']' { // Nonempty unsized arr
Reid Spencer14310612006-12-31 05:40:51 +00001527 if (!UpRefs.empty())
1528 GEN_ERROR("Invalid upreference in type: " + (*$1)->getDescription());
Reid Spencera132e042006-12-03 05:46:11 +00001529 const ArrayType *ATy = dyn_cast<ArrayType>($1->get());
Chris Lattner58af2a12006-02-15 07:22:58 +00001530 if (ATy == 0)
Reid Spencer61c83e02006-08-18 08:43:06 +00001531 GEN_ERROR("Cannot make array constant with type: '" +
Reid Spencerb5334b02007-02-05 10:18:06 +00001532 (*$1)->getDescription() + "'");
Chris Lattner58af2a12006-02-15 07:22:58 +00001533 const Type *ETy = ATy->getElementType();
1534 int NumElements = ATy->getNumElements();
1535
1536 // Verify that we have the correct size...
1537 if (NumElements != -1 && NumElements != (int)$3->size())
Reid Spencer61c83e02006-08-18 08:43:06 +00001538 GEN_ERROR("Type mismatch: constant sized array initialized with " +
Chris Lattner58af2a12006-02-15 07:22:58 +00001539 utostr($3->size()) + " arguments, but has size of " +
Reid Spencerb5334b02007-02-05 10:18:06 +00001540 itostr(NumElements) + "");
Chris Lattner58af2a12006-02-15 07:22:58 +00001541
1542 // Verify all elements are correct type!
1543 for (unsigned i = 0; i < $3->size(); i++) {
Reid Spencera132e042006-12-03 05:46:11 +00001544 if (ETy != (*$3)[i]->getType())
Reid Spencer61c83e02006-08-18 08:43:06 +00001545 GEN_ERROR("Element #" + utostr(i) + " is not of type '" +
Chris Lattner58af2a12006-02-15 07:22:58 +00001546 ETy->getDescription() +"' as required!\nIt is of type '"+
Reid Spencera132e042006-12-03 05:46:11 +00001547 (*$3)[i]->getType()->getDescription() + "'.");
Chris Lattner58af2a12006-02-15 07:22:58 +00001548 }
1549
Reid Spencera132e042006-12-03 05:46:11 +00001550 $$ = ConstantArray::get(ATy, *$3);
1551 delete $1; delete $3;
Reid Spencer61c83e02006-08-18 08:43:06 +00001552 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001553 }
1554 | Types '[' ']' {
Reid Spencer14310612006-12-31 05:40:51 +00001555 if (!UpRefs.empty())
1556 GEN_ERROR("Invalid upreference in type: " + (*$1)->getDescription());
Reid Spencera132e042006-12-03 05:46:11 +00001557 const ArrayType *ATy = dyn_cast<ArrayType>($1->get());
Chris Lattner58af2a12006-02-15 07:22:58 +00001558 if (ATy == 0)
Reid Spencer61c83e02006-08-18 08:43:06 +00001559 GEN_ERROR("Cannot make array constant with type: '" +
Reid Spencerb5334b02007-02-05 10:18:06 +00001560 (*$1)->getDescription() + "'");
Chris Lattner58af2a12006-02-15 07:22:58 +00001561
1562 int NumElements = ATy->getNumElements();
1563 if (NumElements != -1 && NumElements != 0)
Reid Spencer61c83e02006-08-18 08:43:06 +00001564 GEN_ERROR("Type mismatch: constant sized array initialized with 0"
Reid Spencerb5334b02007-02-05 10:18:06 +00001565 " arguments, but has size of " + itostr(NumElements) +"");
Reid Spencera132e042006-12-03 05:46:11 +00001566 $$ = ConstantArray::get(ATy, std::vector<Constant*>());
1567 delete $1;
Reid Spencer61c83e02006-08-18 08:43:06 +00001568 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001569 }
1570 | Types 'c' STRINGCONSTANT {
Reid Spencer14310612006-12-31 05:40:51 +00001571 if (!UpRefs.empty())
1572 GEN_ERROR("Invalid upreference in type: " + (*$1)->getDescription());
Reid Spencera132e042006-12-03 05:46:11 +00001573 const ArrayType *ATy = dyn_cast<ArrayType>($1->get());
Chris Lattner58af2a12006-02-15 07:22:58 +00001574 if (ATy == 0)
Reid Spencer61c83e02006-08-18 08:43:06 +00001575 GEN_ERROR("Cannot make array constant with type: '" +
Reid Spencerb5334b02007-02-05 10:18:06 +00001576 (*$1)->getDescription() + "'");
Chris Lattner58af2a12006-02-15 07:22:58 +00001577
1578 int NumElements = ATy->getNumElements();
1579 const Type *ETy = ATy->getElementType();
Reid Spencer0a8a16b2007-05-22 18:52:55 +00001580 if (NumElements != -1 && NumElements != int($3->length()))
Reid Spencer61c83e02006-08-18 08:43:06 +00001581 GEN_ERROR("Can't build string constant of size " +
Reid Spencer0a8a16b2007-05-22 18:52:55 +00001582 itostr((int)($3->length())) +
Reid Spencerb5334b02007-02-05 10:18:06 +00001583 " when array has size " + itostr(NumElements) + "");
Chris Lattner58af2a12006-02-15 07:22:58 +00001584 std::vector<Constant*> Vals;
Reid Spencer14310612006-12-31 05:40:51 +00001585 if (ETy == Type::Int8Ty) {
Reid Spencer0a8a16b2007-05-22 18:52:55 +00001586 for (unsigned i = 0; i < $3->length(); ++i)
1587 Vals.push_back(ConstantInt::get(ETy, (*$3)[i]));
Chris Lattner58af2a12006-02-15 07:22:58 +00001588 } else {
Reid Spencer0a8a16b2007-05-22 18:52:55 +00001589 delete $3;
Reid Spencerb5334b02007-02-05 10:18:06 +00001590 GEN_ERROR("Cannot build string arrays of non byte sized elements");
Chris Lattner58af2a12006-02-15 07:22:58 +00001591 }
Reid Spencer0a8a16b2007-05-22 18:52:55 +00001592 delete $3;
Reid Spencera132e042006-12-03 05:46:11 +00001593 $$ = ConstantArray::get(ATy, Vals);
1594 delete $1;
Reid Spencer61c83e02006-08-18 08:43:06 +00001595 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001596 }
1597 | Types '<' ConstVector '>' { // Nonempty unsized arr
Reid Spencer14310612006-12-31 05:40:51 +00001598 if (!UpRefs.empty())
1599 GEN_ERROR("Invalid upreference in type: " + (*$1)->getDescription());
Reid Spencer9d6565a2007-02-15 02:26:10 +00001600 const VectorType *PTy = dyn_cast<VectorType>($1->get());
Chris Lattner58af2a12006-02-15 07:22:58 +00001601 if (PTy == 0)
Reid Spencer61c83e02006-08-18 08:43:06 +00001602 GEN_ERROR("Cannot make packed constant with type: '" +
Reid Spencerb5334b02007-02-05 10:18:06 +00001603 (*$1)->getDescription() + "'");
Chris Lattner58af2a12006-02-15 07:22:58 +00001604 const Type *ETy = PTy->getElementType();
1605 int NumElements = PTy->getNumElements();
1606
1607 // Verify that we have the correct size...
1608 if (NumElements != -1 && NumElements != (int)$3->size())
Reid Spencer61c83e02006-08-18 08:43:06 +00001609 GEN_ERROR("Type mismatch: constant sized packed initialized with " +
Chris Lattner58af2a12006-02-15 07:22:58 +00001610 utostr($3->size()) + " arguments, but has size of " +
Reid Spencerb5334b02007-02-05 10:18:06 +00001611 itostr(NumElements) + "");
Chris Lattner58af2a12006-02-15 07:22:58 +00001612
1613 // Verify all elements are correct type!
1614 for (unsigned i = 0; i < $3->size(); i++) {
Reid Spencera132e042006-12-03 05:46:11 +00001615 if (ETy != (*$3)[i]->getType())
Reid Spencer61c83e02006-08-18 08:43:06 +00001616 GEN_ERROR("Element #" + utostr(i) + " is not of type '" +
Chris Lattner58af2a12006-02-15 07:22:58 +00001617 ETy->getDescription() +"' as required!\nIt is of type '"+
Reid Spencera132e042006-12-03 05:46:11 +00001618 (*$3)[i]->getType()->getDescription() + "'.");
Chris Lattner58af2a12006-02-15 07:22:58 +00001619 }
1620
Reid Spencer9d6565a2007-02-15 02:26:10 +00001621 $$ = ConstantVector::get(PTy, *$3);
Reid Spencera132e042006-12-03 05:46:11 +00001622 delete $1; delete $3;
Reid Spencer61c83e02006-08-18 08:43:06 +00001623 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001624 }
1625 | Types '{' ConstVector '}' {
Reid Spencera132e042006-12-03 05:46:11 +00001626 const StructType *STy = dyn_cast<StructType>($1->get());
Chris Lattner58af2a12006-02-15 07:22:58 +00001627 if (STy == 0)
Reid Spencer61c83e02006-08-18 08:43:06 +00001628 GEN_ERROR("Cannot make struct constant with type: '" +
Reid Spencerb5334b02007-02-05 10:18:06 +00001629 (*$1)->getDescription() + "'");
Chris Lattner58af2a12006-02-15 07:22:58 +00001630
1631 if ($3->size() != STy->getNumContainedTypes())
Reid Spencerb5334b02007-02-05 10:18:06 +00001632 GEN_ERROR("Illegal number of initializers for structure type");
Chris Lattner58af2a12006-02-15 07:22:58 +00001633
1634 // Check to ensure that constants are compatible with the type initializer!
1635 for (unsigned i = 0, e = $3->size(); i != e; ++i)
Reid Spencera132e042006-12-03 05:46:11 +00001636 if ((*$3)[i]->getType() != STy->getElementType(i))
Reid Spencer61c83e02006-08-18 08:43:06 +00001637 GEN_ERROR("Expected type '" +
Chris Lattner58af2a12006-02-15 07:22:58 +00001638 STy->getElementType(i)->getDescription() +
1639 "' for element #" + utostr(i) +
Reid Spencerb5334b02007-02-05 10:18:06 +00001640 " of structure initializer");
Chris Lattner58af2a12006-02-15 07:22:58 +00001641
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00001642 // Check to ensure that Type is not packed
1643 if (STy->isPacked())
Chris Lattner6cdc6822007-04-26 05:31:05 +00001644 GEN_ERROR("Unpacked Initializer to vector type '" +
1645 STy->getDescription() + "'");
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00001646
Reid Spencera132e042006-12-03 05:46:11 +00001647 $$ = ConstantStruct::get(STy, *$3);
1648 delete $1; delete $3;
Reid Spencer61c83e02006-08-18 08:43:06 +00001649 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001650 }
1651 | Types '{' '}' {
Reid Spencer14310612006-12-31 05:40:51 +00001652 if (!UpRefs.empty())
1653 GEN_ERROR("Invalid upreference in type: " + (*$1)->getDescription());
Reid Spencera132e042006-12-03 05:46:11 +00001654 const StructType *STy = dyn_cast<StructType>($1->get());
Chris Lattner58af2a12006-02-15 07:22:58 +00001655 if (STy == 0)
Reid Spencer61c83e02006-08-18 08:43:06 +00001656 GEN_ERROR("Cannot make struct constant with type: '" +
Reid Spencerb5334b02007-02-05 10:18:06 +00001657 (*$1)->getDescription() + "'");
Chris Lattner58af2a12006-02-15 07:22:58 +00001658
1659 if (STy->getNumContainedTypes() != 0)
Reid Spencerb5334b02007-02-05 10:18:06 +00001660 GEN_ERROR("Illegal number of initializers for structure type");
Chris Lattner58af2a12006-02-15 07:22:58 +00001661
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00001662 // Check to ensure that Type is not packed
1663 if (STy->isPacked())
Chris Lattner6cdc6822007-04-26 05:31:05 +00001664 GEN_ERROR("Unpacked Initializer to vector type '" +
1665 STy->getDescription() + "'");
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00001666
1667 $$ = ConstantStruct::get(STy, std::vector<Constant*>());
1668 delete $1;
1669 CHECK_FOR_ERROR
1670 }
1671 | Types '<' '{' ConstVector '}' '>' {
1672 const StructType *STy = dyn_cast<StructType>($1->get());
1673 if (STy == 0)
1674 GEN_ERROR("Cannot make struct constant with type: '" +
Reid Spencerb5334b02007-02-05 10:18:06 +00001675 (*$1)->getDescription() + "'");
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00001676
1677 if ($4->size() != STy->getNumContainedTypes())
Reid Spencerb5334b02007-02-05 10:18:06 +00001678 GEN_ERROR("Illegal number of initializers for structure type");
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00001679
1680 // Check to ensure that constants are compatible with the type initializer!
1681 for (unsigned i = 0, e = $4->size(); i != e; ++i)
1682 if ((*$4)[i]->getType() != STy->getElementType(i))
1683 GEN_ERROR("Expected type '" +
1684 STy->getElementType(i)->getDescription() +
1685 "' for element #" + utostr(i) +
Reid Spencerb5334b02007-02-05 10:18:06 +00001686 " of structure initializer");
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00001687
1688 // Check to ensure that Type is packed
1689 if (!STy->isPacked())
Chris Lattner32980692007-02-19 07:44:24 +00001690 GEN_ERROR("Vector initializer to non-vector type '" +
1691 STy->getDescription() + "'");
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00001692
1693 $$ = ConstantStruct::get(STy, *$4);
1694 delete $1; delete $4;
1695 CHECK_FOR_ERROR
1696 }
1697 | Types '<' '{' '}' '>' {
1698 if (!UpRefs.empty())
1699 GEN_ERROR("Invalid upreference in type: " + (*$1)->getDescription());
1700 const StructType *STy = dyn_cast<StructType>($1->get());
1701 if (STy == 0)
1702 GEN_ERROR("Cannot make struct constant with type: '" +
Reid Spencerb5334b02007-02-05 10:18:06 +00001703 (*$1)->getDescription() + "'");
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00001704
1705 if (STy->getNumContainedTypes() != 0)
Reid Spencerb5334b02007-02-05 10:18:06 +00001706 GEN_ERROR("Illegal number of initializers for structure type");
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00001707
1708 // Check to ensure that Type is packed
1709 if (!STy->isPacked())
Chris Lattner32980692007-02-19 07:44:24 +00001710 GEN_ERROR("Vector initializer to non-vector type '" +
1711 STy->getDescription() + "'");
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00001712
Reid Spencera132e042006-12-03 05:46:11 +00001713 $$ = ConstantStruct::get(STy, std::vector<Constant*>());
1714 delete $1;
Reid Spencer61c83e02006-08-18 08:43:06 +00001715 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001716 }
1717 | Types NULL_TOK {
Reid Spencer14310612006-12-31 05:40:51 +00001718 if (!UpRefs.empty())
1719 GEN_ERROR("Invalid upreference in type: " + (*$1)->getDescription());
Reid Spencera132e042006-12-03 05:46:11 +00001720 const PointerType *PTy = dyn_cast<PointerType>($1->get());
Chris Lattner58af2a12006-02-15 07:22:58 +00001721 if (PTy == 0)
Reid Spencer61c83e02006-08-18 08:43:06 +00001722 GEN_ERROR("Cannot make null pointer constant with type: '" +
Reid Spencerb5334b02007-02-05 10:18:06 +00001723 (*$1)->getDescription() + "'");
Chris Lattner58af2a12006-02-15 07:22:58 +00001724
Reid Spencera132e042006-12-03 05:46:11 +00001725 $$ = ConstantPointerNull::get(PTy);
1726 delete $1;
Reid Spencer61c83e02006-08-18 08:43:06 +00001727 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001728 }
1729 | Types UNDEF {
Reid Spencer14310612006-12-31 05:40:51 +00001730 if (!UpRefs.empty())
1731 GEN_ERROR("Invalid upreference in type: " + (*$1)->getDescription());
Reid Spencera132e042006-12-03 05:46:11 +00001732 $$ = UndefValue::get($1->get());
1733 delete $1;
Reid Spencer61c83e02006-08-18 08:43:06 +00001734 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001735 }
1736 | Types SymbolicValueRef {
Reid Spencer14310612006-12-31 05:40:51 +00001737 if (!UpRefs.empty())
1738 GEN_ERROR("Invalid upreference in type: " + (*$1)->getDescription());
Reid Spencera132e042006-12-03 05:46:11 +00001739 const PointerType *Ty = dyn_cast<PointerType>($1->get());
Chris Lattner58af2a12006-02-15 07:22:58 +00001740 if (Ty == 0)
Reid Spencerb5334b02007-02-05 10:18:06 +00001741 GEN_ERROR("Global const reference must be a pointer type");
Chris Lattner58af2a12006-02-15 07:22:58 +00001742
1743 // ConstExprs can exist in the body of a function, thus creating
1744 // GlobalValues whenever they refer to a variable. Because we are in
Reid Spencer93c40032007-03-19 18:40:50 +00001745 // the context of a function, getExistingVal will search the functions
Chris Lattner58af2a12006-02-15 07:22:58 +00001746 // symbol table instead of the module symbol table for the global symbol,
1747 // which throws things all off. To get around this, we just tell
Reid Spencer93c40032007-03-19 18:40:50 +00001748 // getExistingVal that we are at global scope here.
Chris Lattner58af2a12006-02-15 07:22:58 +00001749 //
1750 Function *SavedCurFn = CurFun.CurrentFunction;
1751 CurFun.CurrentFunction = 0;
1752
Reid Spencer93c40032007-03-19 18:40:50 +00001753 Value *V = getExistingVal(Ty, $2);
Reid Spencer5b7e7532006-09-28 19:28:24 +00001754 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001755
1756 CurFun.CurrentFunction = SavedCurFn;
1757
1758 // If this is an initializer for a constant pointer, which is referencing a
1759 // (currently) undefined variable, create a stub now that shall be replaced
1760 // in the future with the right type of variable.
1761 //
1762 if (V == 0) {
Reid Spencera9720f52007-02-05 17:04:00 +00001763 assert(isa<PointerType>(Ty) && "Globals may only be used as pointers!");
Chris Lattner58af2a12006-02-15 07:22:58 +00001764 const PointerType *PT = cast<PointerType>(Ty);
1765
1766 // First check to see if the forward references value is already created!
1767 PerModuleInfo::GlobalRefsType::iterator I =
1768 CurModule.GlobalRefs.find(std::make_pair(PT, $2));
1769
1770 if (I != CurModule.GlobalRefs.end()) {
1771 V = I->second; // Placeholder already exists, use it...
1772 $2.destroy();
1773 } else {
1774 std::string Name;
Reid Spencer41dff5e2007-01-26 08:05:27 +00001775 if ($2.Type == ValID::GlobalName)
Reid Spencer0a8a16b2007-05-22 18:52:55 +00001776 Name = $2.getName();
Reid Spencer41dff5e2007-01-26 08:05:27 +00001777 else if ($2.Type != ValID::GlobalID)
1778 GEN_ERROR("Invalid reference to global");
Chris Lattner58af2a12006-02-15 07:22:58 +00001779
1780 // Create the forward referenced global.
1781 GlobalValue *GV;
1782 if (const FunctionType *FTy =
1783 dyn_cast<FunctionType>(PT->getElementType())) {
Chris Lattner6cdc6822007-04-26 05:31:05 +00001784 GV = new Function(FTy, GlobalValue::ExternalWeakLinkage, Name,
Chris Lattner58af2a12006-02-15 07:22:58 +00001785 CurModule.CurrentModule);
1786 } else {
1787 GV = new GlobalVariable(PT->getElementType(), false,
Chris Lattner6cdc6822007-04-26 05:31:05 +00001788 GlobalValue::ExternalWeakLinkage, 0,
Chris Lattner58af2a12006-02-15 07:22:58 +00001789 Name, CurModule.CurrentModule);
1790 }
1791
1792 // Keep track of the fact that we have a forward ref to recycle it
1793 CurModule.GlobalRefs.insert(std::make_pair(std::make_pair(PT, $2), GV));
1794 V = GV;
1795 }
1796 }
1797
Reid Spencera132e042006-12-03 05:46:11 +00001798 $$ = cast<GlobalValue>(V);
1799 delete $1; // Free the type handle
Reid Spencer61c83e02006-08-18 08:43:06 +00001800 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001801 }
1802 | Types ConstExpr {
Reid Spencer14310612006-12-31 05:40:51 +00001803 if (!UpRefs.empty())
1804 GEN_ERROR("Invalid upreference in type: " + (*$1)->getDescription());
Reid Spencera132e042006-12-03 05:46:11 +00001805 if ($1->get() != $2->getType())
Reid Spencere68853b2007-01-04 00:06:14 +00001806 GEN_ERROR("Mismatched types for constant expression: " +
1807 (*$1)->getDescription() + " and " + $2->getType()->getDescription());
Chris Lattner58af2a12006-02-15 07:22:58 +00001808 $$ = $2;
Reid Spencera132e042006-12-03 05:46:11 +00001809 delete $1;
Reid Spencer61c83e02006-08-18 08:43:06 +00001810 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001811 }
1812 | Types ZEROINITIALIZER {
Reid Spencer14310612006-12-31 05:40:51 +00001813 if (!UpRefs.empty())
1814 GEN_ERROR("Invalid upreference in type: " + (*$1)->getDescription());
Reid Spencera132e042006-12-03 05:46:11 +00001815 const Type *Ty = $1->get();
Chris Lattner58af2a12006-02-15 07:22:58 +00001816 if (isa<FunctionType>(Ty) || Ty == Type::LabelTy || isa<OpaqueType>(Ty))
Reid Spencerb5334b02007-02-05 10:18:06 +00001817 GEN_ERROR("Cannot create a null initialized value of this type");
Reid Spencera132e042006-12-03 05:46:11 +00001818 $$ = Constant::getNullValue(Ty);
1819 delete $1;
Reid Spencer61c83e02006-08-18 08:43:06 +00001820 CHECK_FOR_ERROR
Reid Spencera132e042006-12-03 05:46:11 +00001821 }
Reid Spencer14310612006-12-31 05:40:51 +00001822 | IntType ESINT64VAL { // integral constants
Reid Spencere4d87aa2006-12-23 06:05:41 +00001823 if (!ConstantInt::isValueValidForType($1, $2))
Reid Spencerb5334b02007-02-05 10:18:06 +00001824 GEN_ERROR("Constant value doesn't fit in type");
Reid Spencer49d273e2007-03-19 20:40:51 +00001825 $$ = ConstantInt::get($1, $2, true);
Reid Spencer38c91a92007-02-28 02:24:54 +00001826 CHECK_FOR_ERROR
1827 }
1828 | IntType ESAPINTVAL { // arbitrary precision integer constants
1829 uint32_t BitWidth = cast<IntegerType>($1)->getBitWidth();
1830 if ($2->getBitWidth() > BitWidth) {
1831 GEN_ERROR("Constant value does not fit in type");
Reid Spencer10794272007-03-01 19:41:47 +00001832 }
1833 $2->sextOrTrunc(BitWidth);
1834 $$ = ConstantInt::get(*$2);
Reid Spencer38c91a92007-02-28 02:24:54 +00001835 delete $2;
Reid Spencere4d87aa2006-12-23 06:05:41 +00001836 CHECK_FOR_ERROR
1837 }
Reid Spencer14310612006-12-31 05:40:51 +00001838 | IntType EUINT64VAL { // integral constants
Reid Spencere4d87aa2006-12-23 06:05:41 +00001839 if (!ConstantInt::isValueValidForType($1, $2))
Reid Spencerb5334b02007-02-05 10:18:06 +00001840 GEN_ERROR("Constant value doesn't fit in type");
Reid Spencer49d273e2007-03-19 20:40:51 +00001841 $$ = ConstantInt::get($1, $2, false);
Reid Spencer38c91a92007-02-28 02:24:54 +00001842 CHECK_FOR_ERROR
1843 }
1844 | IntType EUAPINTVAL { // arbitrary precision integer constants
1845 uint32_t BitWidth = cast<IntegerType>($1)->getBitWidth();
1846 if ($2->getBitWidth() > BitWidth) {
1847 GEN_ERROR("Constant value does not fit in type");
Reid Spencer10794272007-03-01 19:41:47 +00001848 }
1849 $2->zextOrTrunc(BitWidth);
1850 $$ = ConstantInt::get(*$2);
Reid Spencer38c91a92007-02-28 02:24:54 +00001851 delete $2;
Reid Spencere4d87aa2006-12-23 06:05:41 +00001852 CHECK_FOR_ERROR
1853 }
Reid Spencer6f407902007-01-13 05:00:46 +00001854 | INTTYPE TRUETOK { // Boolean constants
1855 assert(cast<IntegerType>($1)->getBitWidth() == 1 && "Not Bool?");
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00001856 $$ = ConstantInt::getTrue();
Reid Spencer61c83e02006-08-18 08:43:06 +00001857 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001858 }
Reid Spencer6f407902007-01-13 05:00:46 +00001859 | INTTYPE FALSETOK { // Boolean constants
1860 assert(cast<IntegerType>($1)->getBitWidth() == 1 && "Not Bool?");
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00001861 $$ = ConstantInt::getFalse();
Reid Spencer61c83e02006-08-18 08:43:06 +00001862 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001863 }
1864 | FPType FPVAL { // Float & Double constants
Reid Spencera132e042006-12-03 05:46:11 +00001865 if (!ConstantFP::isValueValidForType($1, $2))
Reid Spencerb5334b02007-02-05 10:18:06 +00001866 GEN_ERROR("Floating point constant invalid for type");
Reid Spencera132e042006-12-03 05:46:11 +00001867 $$ = ConstantFP::get($1, $2);
Reid Spencer61c83e02006-08-18 08:43:06 +00001868 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001869 };
1870
1871
Reid Spencer3da59db2006-11-27 01:05:10 +00001872ConstExpr: CastOps '(' ConstVal TO Types ')' {
Reid Spencer14310612006-12-31 05:40:51 +00001873 if (!UpRefs.empty())
1874 GEN_ERROR("Invalid upreference in type: " + (*$5)->getDescription());
Reid Spencera132e042006-12-03 05:46:11 +00001875 Constant *Val = $3;
Reid Spencerb0fcf8f2007-01-17 02:48:45 +00001876 const Type *DestTy = $5->get();
1877 if (!CastInst::castIsValid($1, $3, DestTy))
1878 GEN_ERROR("invalid cast opcode for cast from '" +
1879 Val->getType()->getDescription() + "' to '" +
Reid Spencerb5334b02007-02-05 10:18:06 +00001880 DestTy->getDescription() + "'");
Reid Spencerb0fcf8f2007-01-17 02:48:45 +00001881 $$ = ConstantExpr::getCast($1, $3, DestTy);
Reid Spencera132e042006-12-03 05:46:11 +00001882 delete $5;
Chris Lattner58af2a12006-02-15 07:22:58 +00001883 }
1884 | GETELEMENTPTR '(' ConstVal IndexList ')' {
Reid Spencera132e042006-12-03 05:46:11 +00001885 if (!isa<PointerType>($3->getType()))
Reid Spencerb5334b02007-02-05 10:18:06 +00001886 GEN_ERROR("GetElementPtr requires a pointer operand");
Chris Lattner58af2a12006-02-15 07:22:58 +00001887
Reid Spencera132e042006-12-03 05:46:11 +00001888 const Type *IdxTy =
Chris Lattner7d9801d2007-02-13 00:58:01 +00001889 GetElementPtrInst::getIndexedType($3->getType(), &(*$4)[0], $4->size(),
1890 true);
Reid Spencera132e042006-12-03 05:46:11 +00001891 if (!IdxTy)
Reid Spencerb5334b02007-02-05 10:18:06 +00001892 GEN_ERROR("Index list invalid for constant getelementptr");
Reid Spencera132e042006-12-03 05:46:11 +00001893
Chris Lattnerf7469af2007-01-31 04:44:08 +00001894 SmallVector<Constant*, 8> IdxVec;
Reid Spencera132e042006-12-03 05:46:11 +00001895 for (unsigned i = 0, e = $4->size(); i != e; ++i)
1896 if (Constant *C = dyn_cast<Constant>((*$4)[i]))
Chris Lattner58af2a12006-02-15 07:22:58 +00001897 IdxVec.push_back(C);
1898 else
Reid Spencerb5334b02007-02-05 10:18:06 +00001899 GEN_ERROR("Indices to constant getelementptr must be constants");
Chris Lattner58af2a12006-02-15 07:22:58 +00001900
1901 delete $4;
1902
Chris Lattnerf7469af2007-01-31 04:44:08 +00001903 $$ = ConstantExpr::getGetElementPtr($3, &IdxVec[0], IdxVec.size());
Reid Spencer61c83e02006-08-18 08:43:06 +00001904 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001905 }
1906 | SELECT '(' ConstVal ',' ConstVal ',' ConstVal ')' {
Reid Spencer4fe16d62007-01-11 18:21:29 +00001907 if ($3->getType() != Type::Int1Ty)
Reid Spencerb5334b02007-02-05 10:18:06 +00001908 GEN_ERROR("Select condition must be of boolean type");
Reid Spencera132e042006-12-03 05:46:11 +00001909 if ($5->getType() != $7->getType())
Reid Spencerb5334b02007-02-05 10:18:06 +00001910 GEN_ERROR("Select operand types must match");
Reid Spencera132e042006-12-03 05:46:11 +00001911 $$ = ConstantExpr::getSelect($3, $5, $7);
Reid Spencer61c83e02006-08-18 08:43:06 +00001912 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001913 }
1914 | ArithmeticOps '(' ConstVal ',' ConstVal ')' {
Reid Spencera132e042006-12-03 05:46:11 +00001915 if ($3->getType() != $5->getType())
Reid Spencerb5334b02007-02-05 10:18:06 +00001916 GEN_ERROR("Binary operator types must match");
Reid Spencer1628cec2006-10-26 06:15:43 +00001917 CHECK_FOR_ERROR;
Reid Spencer9eef56f2006-12-05 19:16:11 +00001918 $$ = ConstantExpr::get($1, $3, $5);
Chris Lattner58af2a12006-02-15 07:22:58 +00001919 }
1920 | LogicalOps '(' ConstVal ',' ConstVal ')' {
Reid Spencera132e042006-12-03 05:46:11 +00001921 if ($3->getType() != $5->getType())
Reid Spencerb5334b02007-02-05 10:18:06 +00001922 GEN_ERROR("Logical operator types must match");
Chris Lattner42a75512007-01-15 02:27:26 +00001923 if (!$3->getType()->isInteger()) {
Reid Spencer9d6565a2007-02-15 02:26:10 +00001924 if (Instruction::isShift($1) || !isa<VectorType>($3->getType()) ||
1925 !cast<VectorType>($3->getType())->getElementType()->isInteger())
Reid Spencerb5334b02007-02-05 10:18:06 +00001926 GEN_ERROR("Logical operator requires integral operands");
Chris Lattner58af2a12006-02-15 07:22:58 +00001927 }
Reid Spencera132e042006-12-03 05:46:11 +00001928 $$ = ConstantExpr::get($1, $3, $5);
Reid Spencer61c83e02006-08-18 08:43:06 +00001929 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001930 }
Reid Spencer4012e832006-12-04 05:24:24 +00001931 | ICMP IPredicates '(' ConstVal ',' ConstVal ')' {
1932 if ($4->getType() != $6->getType())
Reid Spencerb5334b02007-02-05 10:18:06 +00001933 GEN_ERROR("icmp operand types must match");
Reid Spencer4012e832006-12-04 05:24:24 +00001934 $$ = ConstantExpr::getICmp($2, $4, $6);
Reid Spencera132e042006-12-03 05:46:11 +00001935 }
Reid Spencer4012e832006-12-04 05:24:24 +00001936 | FCMP FPredicates '(' ConstVal ',' ConstVal ')' {
1937 if ($4->getType() != $6->getType())
Reid Spencerb5334b02007-02-05 10:18:06 +00001938 GEN_ERROR("fcmp operand types must match");
Reid Spencer4012e832006-12-04 05:24:24 +00001939 $$ = ConstantExpr::getFCmp($2, $4, $6);
Reid Spencera132e042006-12-03 05:46:11 +00001940 }
Chris Lattner58af2a12006-02-15 07:22:58 +00001941 | EXTRACTELEMENT '(' ConstVal ',' ConstVal ')' {
Reid Spencera132e042006-12-03 05:46:11 +00001942 if (!ExtractElementInst::isValidOperands($3, $5))
Reid Spencerb5334b02007-02-05 10:18:06 +00001943 GEN_ERROR("Invalid extractelement operands");
Reid Spencera132e042006-12-03 05:46:11 +00001944 $$ = ConstantExpr::getExtractElement($3, $5);
Reid Spencer61c83e02006-08-18 08:43:06 +00001945 CHECK_FOR_ERROR
Chris Lattnerd25db202006-04-08 03:55:17 +00001946 }
1947 | INSERTELEMENT '(' ConstVal ',' ConstVal ',' ConstVal ')' {
Reid Spencera132e042006-12-03 05:46:11 +00001948 if (!InsertElementInst::isValidOperands($3, $5, $7))
Reid Spencerb5334b02007-02-05 10:18:06 +00001949 GEN_ERROR("Invalid insertelement operands");
Reid Spencera132e042006-12-03 05:46:11 +00001950 $$ = ConstantExpr::getInsertElement($3, $5, $7);
Reid Spencer61c83e02006-08-18 08:43:06 +00001951 CHECK_FOR_ERROR
Chris Lattnerd25db202006-04-08 03:55:17 +00001952 }
1953 | SHUFFLEVECTOR '(' ConstVal ',' ConstVal ',' ConstVal ')' {
Reid Spencera132e042006-12-03 05:46:11 +00001954 if (!ShuffleVectorInst::isValidOperands($3, $5, $7))
Reid Spencerb5334b02007-02-05 10:18:06 +00001955 GEN_ERROR("Invalid shufflevector operands");
Reid Spencera132e042006-12-03 05:46:11 +00001956 $$ = ConstantExpr::getShuffleVector($3, $5, $7);
Reid Spencer61c83e02006-08-18 08:43:06 +00001957 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001958 };
1959
Chris Lattnerd25db202006-04-08 03:55:17 +00001960
Chris Lattner58af2a12006-02-15 07:22:58 +00001961// ConstVector - A list of comma separated constants.
1962ConstVector : ConstVector ',' ConstVal {
1963 ($$ = $1)->push_back($3);
Reid Spencer61c83e02006-08-18 08:43:06 +00001964 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001965 }
1966 | ConstVal {
Reid Spencera132e042006-12-03 05:46:11 +00001967 $$ = new std::vector<Constant*>();
Chris Lattner58af2a12006-02-15 07:22:58 +00001968 $$->push_back($1);
Reid Spencer61c83e02006-08-18 08:43:06 +00001969 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001970 };
1971
1972
1973// GlobalType - Match either GLOBAL or CONSTANT for global declarations...
1974GlobalType : GLOBAL { $$ = false; } | CONSTANT { $$ = true; };
1975
Lauro Ramos Venancioc7635522007-04-12 18:32:50 +00001976// ThreadLocal
1977ThreadLocal : THREAD_LOCAL { $$ = true; } | { $$ = false; };
1978
Anton Korobeynikov38e09802007-04-28 13:48:45 +00001979// AliaseeRef - Match either GlobalValue or bitcast to GlobalValue.
1980AliaseeRef : ResultTypes SymbolicValueRef {
1981 const Type* VTy = $1->get();
1982 Value *V = getVal(VTy, $2);
Chris Lattner0275cff2007-08-06 21:00:46 +00001983 CHECK_FOR_ERROR
Anton Korobeynikov38e09802007-04-28 13:48:45 +00001984 GlobalValue* Aliasee = dyn_cast<GlobalValue>(V);
1985 if (!Aliasee)
1986 GEN_ERROR("Aliases can be created only to global values");
1987
1988 $$ = Aliasee;
1989 CHECK_FOR_ERROR
1990 delete $1;
1991 }
1992 | BITCAST '(' AliaseeRef TO Types ')' {
1993 Constant *Val = $3;
1994 const Type *DestTy = $5->get();
1995 if (!CastInst::castIsValid($1, $3, DestTy))
1996 GEN_ERROR("invalid cast opcode for cast from '" +
1997 Val->getType()->getDescription() + "' to '" +
1998 DestTy->getDescription() + "'");
1999
2000 $$ = ConstantExpr::getCast($1, $3, DestTy);
2001 CHECK_FOR_ERROR
2002 delete $5;
2003 };
Chris Lattner58af2a12006-02-15 07:22:58 +00002004
2005//===----------------------------------------------------------------------===//
2006// Rules to match Modules
2007//===----------------------------------------------------------------------===//
2008
2009// Module rule: Capture the result of parsing the whole file into a result
2010// variable...
2011//
Reid Spencer6fd36ab2006-12-29 20:35:03 +00002012Module
2013 : DefinitionList {
2014 $$ = ParserResult = CurModule.CurrentModule;
2015 CurModule.ModuleDone();
2016 CHECK_FOR_ERROR;
2017 }
2018 | /*empty*/ {
2019 $$ = ParserResult = CurModule.CurrentModule;
2020 CurModule.ModuleDone();
2021 CHECK_FOR_ERROR;
2022 }
2023 ;
Chris Lattner58af2a12006-02-15 07:22:58 +00002024
Reid Spencer6fd36ab2006-12-29 20:35:03 +00002025DefinitionList
2026 : Definition
2027 | DefinitionList Definition
2028 ;
2029
2030Definition
Jeff Cohen361c3ef2007-01-21 19:19:31 +00002031 : DEFINE { CurFun.isDeclare = false; } Function {
Chris Lattner58af2a12006-02-15 07:22:58 +00002032 CurFun.FunctionDone();
Reid Spencer61c83e02006-08-18 08:43:06 +00002033 CHECK_FOR_ERROR
Reid Spencer6fd36ab2006-12-29 20:35:03 +00002034 }
2035 | DECLARE { CurFun.isDeclare = true; } FunctionProto {
Reid Spencer61c83e02006-08-18 08:43:06 +00002036 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002037 }
Reid Spencer6fd36ab2006-12-29 20:35:03 +00002038 | MODULE ASM_TOK AsmBlock {
Reid Spencer61c83e02006-08-18 08:43:06 +00002039 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002040 }
Reid Spencer41dff5e2007-01-26 08:05:27 +00002041 | OptLocalAssign TYPE Types {
Reid Spencer14310612006-12-31 05:40:51 +00002042 if (!UpRefs.empty())
2043 GEN_ERROR("Invalid upreference in type: " + (*$3)->getDescription());
Chris Lattner58af2a12006-02-15 07:22:58 +00002044 // Eagerly resolve types. This is not an optimization, this is a
2045 // requirement that is due to the fact that we could have this:
2046 //
2047 // %list = type { %list * }
2048 // %list = type { %list * } ; repeated type decl
2049 //
2050 // If types are not resolved eagerly, then the two types will not be
2051 // determined to be the same type!
2052 //
Reid Spencer6fd36ab2006-12-29 20:35:03 +00002053 ResolveTypeTo($1, *$3);
Chris Lattner58af2a12006-02-15 07:22:58 +00002054
Reid Spencer6fd36ab2006-12-29 20:35:03 +00002055 if (!setTypeName(*$3, $1) && !$1) {
Reid Spencer5b7e7532006-09-28 19:28:24 +00002056 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002057 // If this is a named type that is not a redefinition, add it to the slot
2058 // table.
Reid Spencer6fd36ab2006-12-29 20:35:03 +00002059 CurModule.Types.push_back(*$3);
Chris Lattner58af2a12006-02-15 07:22:58 +00002060 }
Reid Spencera132e042006-12-03 05:46:11 +00002061
Reid Spencer6fd36ab2006-12-29 20:35:03 +00002062 delete $3;
Reid Spencer61c83e02006-08-18 08:43:06 +00002063 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002064 }
Reid Spencer41dff5e2007-01-26 08:05:27 +00002065 | OptLocalAssign TYPE VOID {
Reid Spencer14310612006-12-31 05:40:51 +00002066 ResolveTypeTo($1, $3);
2067
2068 if (!setTypeName($3, $1) && !$1) {
2069 CHECK_FOR_ERROR
2070 // If this is a named type that is not a redefinition, add it to the slot
2071 // table.
2072 CurModule.Types.push_back($3);
2073 }
2074 CHECK_FOR_ERROR
2075 }
Lauro Ramos Venancioc7635522007-04-12 18:32:50 +00002076 | OptGlobalAssign GVVisibilityStyle ThreadLocal GlobalType ConstVal {
Reid Spencer41dff5e2007-01-26 08:05:27 +00002077 /* "Externally Visible" Linkage */
Anton Korobeynikov7f705592007-01-12 19:20:47 +00002078 if ($5 == 0)
Reid Spencerb5334b02007-02-05 10:18:06 +00002079 GEN_ERROR("Global value initializer is not a constant");
Lauro Ramos Venancioc7635522007-04-12 18:32:50 +00002080 CurGV = ParseGlobalVariable($1, GlobalValue::ExternalLinkage,
2081 $2, $4, $5->getType(), $5, $3);
Reid Spencer6fd36ab2006-12-29 20:35:03 +00002082 CHECK_FOR_ERROR
Anton Korobeynikov7f705592007-01-12 19:20:47 +00002083 } GlobalVarAttributes {
2084 CurGV = 0;
2085 }
Chris Lattner6cdc6822007-04-26 05:31:05 +00002086 | OptGlobalAssign GVInternalLinkage GVVisibilityStyle ThreadLocal GlobalType
2087 ConstVal {
Lauro Ramos Venancioc7635522007-04-12 18:32:50 +00002088 if ($6 == 0)
2089 GEN_ERROR("Global value initializer is not a constant");
2090 CurGV = ParseGlobalVariable($1, $2, $3, $5, $6->getType(), $6, $4);
Anton Korobeynikov7f705592007-01-12 19:20:47 +00002091 CHECK_FOR_ERROR
Lauro Ramos Venancioc7635522007-04-12 18:32:50 +00002092 } GlobalVarAttributes {
2093 CurGV = 0;
2094 }
Chris Lattner6cdc6822007-04-26 05:31:05 +00002095 | OptGlobalAssign GVExternalLinkage GVVisibilityStyle ThreadLocal GlobalType
2096 Types {
Lauro Ramos Venancioc7635522007-04-12 18:32:50 +00002097 if (!UpRefs.empty())
2098 GEN_ERROR("Invalid upreference in type: " + (*$6)->getDescription());
2099 CurGV = ParseGlobalVariable($1, $2, $3, $5, *$6, 0, $4);
2100 CHECK_FOR_ERROR
2101 delete $6;
Reid Spencer5b7e7532006-09-28 19:28:24 +00002102 } GlobalVarAttributes {
Anton Korobeynikovb74ed072006-09-14 18:23:27 +00002103 CurGV = 0;
2104 CHECK_FOR_ERROR
2105 }
Anton Korobeynikov38e09802007-04-28 13:48:45 +00002106 | OptGlobalAssign GVVisibilityStyle ALIAS AliasLinkage AliaseeRef {
Reid Spencer0a8a16b2007-05-22 18:52:55 +00002107 std::string Name;
2108 if ($1) {
2109 Name = *$1;
2110 delete $1;
2111 }
Anton Korobeynikov77d0f972007-04-25 14:29:12 +00002112 if (Name.empty())
Anton Korobeynikov38e09802007-04-28 13:48:45 +00002113 GEN_ERROR("Alias name cannot be empty");
2114
2115 Constant* Aliasee = $5;
2116 if (Aliasee == 0)
Reid Spencer0a8a16b2007-05-22 18:52:55 +00002117 GEN_ERROR(std::string("Invalid aliasee for alias: ") + Name);
Anton Korobeynikov38e09802007-04-28 13:48:45 +00002118
2119 GlobalAlias* GA = new GlobalAlias(Aliasee->getType(), $4, Name, Aliasee,
2120 CurModule.CurrentModule);
2121 GA->setVisibility($2);
2122 InsertValue(GA, CurModule.Values);
Anton Korobeynikov77d0f972007-04-25 14:29:12 +00002123 CHECK_FOR_ERROR
Anton Korobeynikov77d0f972007-04-25 14:29:12 +00002124 }
Reid Spencer6fd36ab2006-12-29 20:35:03 +00002125 | TARGET TargetDefinition {
Anton Korobeynikovb74ed072006-09-14 18:23:27 +00002126 CHECK_FOR_ERROR
2127 }
Reid Spencer6fd36ab2006-12-29 20:35:03 +00002128 | DEPLIBS '=' LibrariesDefinition {
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 ;
Chris Lattner58af2a12006-02-15 07:22:58 +00002132
2133
2134AsmBlock : STRINGCONSTANT {
2135 const std::string &AsmSoFar = CurModule.CurrentModule->getModuleInlineAsm();
Chris Lattner58af2a12006-02-15 07:22:58 +00002136 if (AsmSoFar.empty())
Reid Spencer0a8a16b2007-05-22 18:52:55 +00002137 CurModule.CurrentModule->setModuleInlineAsm(*$1);
Chris Lattner58af2a12006-02-15 07:22:58 +00002138 else
Reid Spencer0a8a16b2007-05-22 18:52:55 +00002139 CurModule.CurrentModule->setModuleInlineAsm(AsmSoFar+"\n"+*$1);
2140 delete $1;
Reid Spencer61c83e02006-08-18 08:43:06 +00002141 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002142};
2143
Reid Spencer41dff5e2007-01-26 08:05:27 +00002144TargetDefinition : TRIPLE '=' STRINGCONSTANT {
Reid Spencer0a8a16b2007-05-22 18:52:55 +00002145 CurModule.CurrentModule->setTargetTriple(*$3);
2146 delete $3;
John Criswell2f6a8b12006-10-24 19:09:48 +00002147 }
Chris Lattner1ae022f2006-10-22 06:08:13 +00002148 | DATALAYOUT '=' STRINGCONSTANT {
Reid Spencer0a8a16b2007-05-22 18:52:55 +00002149 CurModule.CurrentModule->setDataLayout(*$3);
2150 delete $3;
Owen Anderson1dc69692006-10-18 02:21:48 +00002151 };
Chris Lattner58af2a12006-02-15 07:22:58 +00002152
2153LibrariesDefinition : '[' LibList ']';
2154
2155LibList : LibList ',' STRINGCONSTANT {
Reid Spencer0a8a16b2007-05-22 18:52:55 +00002156 CurModule.CurrentModule->addLibrary(*$3);
2157 delete $3;
Reid Spencer61c83e02006-08-18 08:43:06 +00002158 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002159 }
2160 | STRINGCONSTANT {
Reid Spencer0a8a16b2007-05-22 18:52:55 +00002161 CurModule.CurrentModule->addLibrary(*$1);
2162 delete $1;
Reid Spencer61c83e02006-08-18 08:43:06 +00002163 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002164 }
2165 | /* empty: end of list */ {
Reid Spencer61c83e02006-08-18 08:43:06 +00002166 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002167 }
2168 ;
2169
2170//===----------------------------------------------------------------------===//
2171// Rules to match Function Headers
2172//===----------------------------------------------------------------------===//
2173
Reid Spencer41dff5e2007-01-26 08:05:27 +00002174ArgListH : ArgListH ',' Types OptParamAttrs OptLocalName {
Reid Spencer14310612006-12-31 05:40:51 +00002175 if (!UpRefs.empty())
2176 GEN_ERROR("Invalid upreference in type: " + (*$3)->getDescription());
2177 if (*$3 == Type::VoidTy)
Reid Spencerb5334b02007-02-05 10:18:06 +00002178 GEN_ERROR("void typed arguments are invalid");
Reid Spencer14310612006-12-31 05:40:51 +00002179 ArgListEntry E; E.Attrs = $4; E.Ty = $3; E.Name = $5;
Chris Lattner58af2a12006-02-15 07:22:58 +00002180 $$ = $1;
Reid Spencer14310612006-12-31 05:40:51 +00002181 $1->push_back(E);
Reid Spencer61c83e02006-08-18 08:43:06 +00002182 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002183 }
Reid Spencer41dff5e2007-01-26 08:05:27 +00002184 | Types OptParamAttrs OptLocalName {
Reid Spencer14310612006-12-31 05:40:51 +00002185 if (!UpRefs.empty())
2186 GEN_ERROR("Invalid upreference in type: " + (*$1)->getDescription());
2187 if (*$1 == Type::VoidTy)
Reid Spencerb5334b02007-02-05 10:18:06 +00002188 GEN_ERROR("void typed arguments are invalid");
Reid Spencer14310612006-12-31 05:40:51 +00002189 ArgListEntry E; E.Attrs = $2; E.Ty = $1; E.Name = $3;
2190 $$ = new ArgListType;
2191 $$->push_back(E);
Reid Spencer61c83e02006-08-18 08:43:06 +00002192 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002193 };
2194
2195ArgList : ArgListH {
2196 $$ = $1;
Reid Spencer61c83e02006-08-18 08:43:06 +00002197 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002198 }
2199 | ArgListH ',' DOTDOTDOT {
2200 $$ = $1;
Reid Spencer14310612006-12-31 05:40:51 +00002201 struct ArgListEntry E;
2202 E.Ty = new PATypeHolder(Type::VoidTy);
2203 E.Name = 0;
Reid Spencer18da0722007-04-11 02:44:20 +00002204 E.Attrs = ParamAttr::None;
Reid Spencer14310612006-12-31 05:40:51 +00002205 $$->push_back(E);
Reid Spencer61c83e02006-08-18 08:43:06 +00002206 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002207 }
2208 | DOTDOTDOT {
Reid Spencer14310612006-12-31 05:40:51 +00002209 $$ = new ArgListType;
2210 struct ArgListEntry E;
2211 E.Ty = new PATypeHolder(Type::VoidTy);
2212 E.Name = 0;
Reid Spencer18da0722007-04-11 02:44:20 +00002213 E.Attrs = ParamAttr::None;
Reid Spencer14310612006-12-31 05:40:51 +00002214 $$->push_back(E);
Reid Spencer61c83e02006-08-18 08:43:06 +00002215 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002216 }
2217 | /* empty */ {
2218 $$ = 0;
Reid Spencer61c83e02006-08-18 08:43:06 +00002219 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002220 };
2221
Reid Spencer41dff5e2007-01-26 08:05:27 +00002222FunctionHeaderH : OptCallingConv ResultTypes GlobalName '(' ArgList ')'
Reid Spencer218ded22007-01-05 17:07:23 +00002223 OptFuncAttrs OptSection OptAlign {
Reid Spencer0a8a16b2007-05-22 18:52:55 +00002224 std::string FunctionName(*$3);
2225 delete $3; // Free strdup'd memory!
Chris Lattner58af2a12006-02-15 07:22:58 +00002226
Reid Spencer8c8a2dc2007-01-02 21:54:12 +00002227 // Check the function result for abstractness if this is a define. We should
2228 // have no abstract types at this point
Reid Spencer218ded22007-01-05 17:07:23 +00002229 if (!CurFun.isDeclare && CurModule.TypeIsUnresolved($2))
2230 GEN_ERROR("Reference to abstract result: "+ $2->get()->getDescription());
Reid Spencer8c8a2dc2007-01-02 21:54:12 +00002231
Chris Lattner58af2a12006-02-15 07:22:58 +00002232 std::vector<const Type*> ParamTypeList;
Christopher Lamb5c104242007-04-22 20:09:11 +00002233 ParamAttrsVector Attrs;
2234 if ($7 != ParamAttr::None) {
2235 ParamAttrsWithIndex PAWI; PAWI.index = 0; PAWI.attrs = $7;
2236 Attrs.push_back(PAWI);
2237 }
Chris Lattner58af2a12006-02-15 07:22:58 +00002238 if ($5) { // If there are arguments...
Reid Spencer7b5d4662007-04-09 06:16:21 +00002239 unsigned index = 1;
2240 for (ArgListType::iterator I = $5->begin(); I != $5->end(); ++I, ++index) {
Reid Spencer14310612006-12-31 05:40:51 +00002241 const Type* Ty = I->Ty->get();
Reid Spencer8c8a2dc2007-01-02 21:54:12 +00002242 if (!CurFun.isDeclare && CurModule.TypeIsUnresolved(I->Ty))
2243 GEN_ERROR("Reference to abstract argument: " + Ty->getDescription());
Reid Spencer14310612006-12-31 05:40:51 +00002244 ParamTypeList.push_back(Ty);
2245 if (Ty != Type::VoidTy)
Christopher Lamb5c104242007-04-22 20:09:11 +00002246 if (I->Attrs != ParamAttr::None) {
2247 ParamAttrsWithIndex PAWI; PAWI.index = index; PAWI.attrs = I->Attrs;
2248 Attrs.push_back(PAWI);
2249 }
Reid Spencer14310612006-12-31 05:40:51 +00002250 }
Chris Lattner58af2a12006-02-15 07:22:58 +00002251 }
2252
2253 bool isVarArg = ParamTypeList.size() && ParamTypeList.back() == Type::VoidTy;
2254 if (isVarArg) ParamTypeList.pop_back();
2255
Christopher Lamb5c104242007-04-22 20:09:11 +00002256 ParamAttrsList *PAL = 0;
2257 if (!Attrs.empty())
2258 PAL = ParamAttrsList::get(Attrs);
Reid Spencer7b5d4662007-04-09 06:16:21 +00002259
Christopher Lamb5c104242007-04-22 20:09:11 +00002260 FunctionType *FT = FunctionType::get(*$2, ParamTypeList, isVarArg, PAL);
Chris Lattner58af2a12006-02-15 07:22:58 +00002261 const PointerType *PFT = PointerType::get(FT);
Reid Spencer218ded22007-01-05 17:07:23 +00002262 delete $2;
Chris Lattner58af2a12006-02-15 07:22:58 +00002263
2264 ValID ID;
2265 if (!FunctionName.empty()) {
Reid Spencer41dff5e2007-01-26 08:05:27 +00002266 ID = ValID::createGlobalName((char*)FunctionName.c_str());
Chris Lattner58af2a12006-02-15 07:22:58 +00002267 } else {
Reid Spencer93c40032007-03-19 18:40:50 +00002268 ID = ValID::createGlobalID(CurModule.Values.size());
Chris Lattner58af2a12006-02-15 07:22:58 +00002269 }
2270
2271 Function *Fn = 0;
2272 // See if this function was forward referenced. If so, recycle the object.
2273 if (GlobalValue *FWRef = CurModule.GetForwardRefForGlobal(PFT, ID)) {
2274 // Move the function to the end of the list, from whereever it was
2275 // previously inserted.
2276 Fn = cast<Function>(FWRef);
2277 CurModule.CurrentModule->getFunctionList().remove(Fn);
2278 CurModule.CurrentModule->getFunctionList().push_back(Fn);
2279 } else if (!FunctionName.empty() && // Merge with an earlier prototype?
Reid Spenceref9b9a72007-02-05 20:47:22 +00002280 (Fn = CurModule.CurrentModule->getFunction(FunctionName))) {
Chris Lattner6cdc6822007-04-26 05:31:05 +00002281 if (Fn->getFunctionType() != FT) {
Reid Spenceref9b9a72007-02-05 20:47:22 +00002282 // The existing function doesn't have the same type. This is an overload
2283 // error.
2284 GEN_ERROR("Overload of function '" + FunctionName + "' not permitted.");
2285 } else if (!CurFun.isDeclare && !Fn->isDeclaration()) {
Chris Lattner6cdc6822007-04-26 05:31:05 +00002286 // Neither the existing or the current function is a declaration and they
2287 // have the same name and same type. Clearly this is a redefinition.
2288 GEN_ERROR("Redefinition of function '" + FunctionName + "'");
Reid Spenceref9b9a72007-02-05 20:47:22 +00002289 } if (Fn->isDeclaration()) {
2290 // Make sure to strip off any argument names so we can't get conflicts.
Chris Lattner58af2a12006-02-15 07:22:58 +00002291 for (Function::arg_iterator AI = Fn->arg_begin(), AE = Fn->arg_end();
2292 AI != AE; ++AI)
2293 AI->setName("");
Reid Spenceref9b9a72007-02-05 20:47:22 +00002294 }
Chris Lattner58af2a12006-02-15 07:22:58 +00002295 } else { // Not already defined?
Chris Lattner6cdc6822007-04-26 05:31:05 +00002296 Fn = new Function(FT, GlobalValue::ExternalWeakLinkage, FunctionName,
Chris Lattner58af2a12006-02-15 07:22:58 +00002297 CurModule.CurrentModule);
Anton Korobeynikovb74ed072006-09-14 18:23:27 +00002298
Chris Lattner58af2a12006-02-15 07:22:58 +00002299 InsertValue(Fn, CurModule.Values);
2300 }
2301
2302 CurFun.FunctionStart(Fn);
Anton Korobeynikov93c2b372006-09-17 13:06:18 +00002303
2304 if (CurFun.isDeclare) {
2305 // If we have declaration, always overwrite linkage. This will allow us to
2306 // correctly handle cases, when pointer to function is passed as argument to
2307 // another function.
2308 Fn->setLinkage(CurFun.Linkage);
Anton Korobeynikov7f705592007-01-12 19:20:47 +00002309 Fn->setVisibility(CurFun.Visibility);
Anton Korobeynikov93c2b372006-09-17 13:06:18 +00002310 }
Chris Lattner58af2a12006-02-15 07:22:58 +00002311 Fn->setCallingConv($1);
Reid Spencer218ded22007-01-05 17:07:23 +00002312 Fn->setAlignment($9);
2313 if ($8) {
Reid Spencer0a8a16b2007-05-22 18:52:55 +00002314 Fn->setSection(*$8);
2315 delete $8;
Chris Lattner58af2a12006-02-15 07:22:58 +00002316 }
2317
2318 // Add all of the arguments we parsed to the function...
2319 if ($5) { // Is null if empty...
2320 if (isVarArg) { // Nuke the last entry
Reid Spenceref9b9a72007-02-05 20:47:22 +00002321 assert($5->back().Ty->get() == Type::VoidTy && $5->back().Name == 0 &&
Reid Spencera9720f52007-02-05 17:04:00 +00002322 "Not a varargs marker!");
Reid Spencer14310612006-12-31 05:40:51 +00002323 delete $5->back().Ty;
Chris Lattner58af2a12006-02-15 07:22:58 +00002324 $5->pop_back(); // Delete the last entry
2325 }
2326 Function::arg_iterator ArgIt = Fn->arg_begin();
Reid Spenceref9b9a72007-02-05 20:47:22 +00002327 Function::arg_iterator ArgEnd = Fn->arg_end();
Reid Spencer14310612006-12-31 05:40:51 +00002328 unsigned Idx = 1;
Reid Spenceref9b9a72007-02-05 20:47:22 +00002329 for (ArgListType::iterator I = $5->begin();
2330 I != $5->end() && ArgIt != ArgEnd; ++I, ++ArgIt) {
Reid Spencer14310612006-12-31 05:40:51 +00002331 delete I->Ty; // Delete the typeholder...
Reid Spencer0a8a16b2007-05-22 18:52:55 +00002332 setValueName(ArgIt, I->Name); // Insert arg into symtab...
Reid Spencer5b7e7532006-09-28 19:28:24 +00002333 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002334 InsertValue(ArgIt);
Reid Spencer14310612006-12-31 05:40:51 +00002335 Idx++;
Chris Lattner58af2a12006-02-15 07:22:58 +00002336 }
Reid Spencera132e042006-12-03 05:46:11 +00002337
Chris Lattner58af2a12006-02-15 07:22:58 +00002338 delete $5; // We're now done with the argument list
2339 }
Reid Spencer61c83e02006-08-18 08:43:06 +00002340 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002341};
2342
2343BEGIN : BEGINTOK | '{'; // Allow BEGIN or '{' to start a function
2344
Anton Korobeynikov7f705592007-01-12 19:20:47 +00002345FunctionHeader : FunctionDefineLinkage GVVisibilityStyle FunctionHeaderH BEGIN {
Chris Lattner58af2a12006-02-15 07:22:58 +00002346 $$ = CurFun.CurrentFunction;
2347
2348 // Make sure that we keep track of the linkage type even if there was a
2349 // previous "declare".
2350 $$->setLinkage($1);
Anton Korobeynikov7f705592007-01-12 19:20:47 +00002351 $$->setVisibility($2);
Chris Lattner58af2a12006-02-15 07:22:58 +00002352};
2353
2354END : ENDTOK | '}'; // Allow end of '}' to end a function
2355
2356Function : BasicBlockList END {
2357 $$ = $1;
Reid Spencer61c83e02006-08-18 08:43:06 +00002358 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002359};
2360
Anton Korobeynikov7f705592007-01-12 19:20:47 +00002361FunctionProto : FunctionDeclareLinkage GVVisibilityStyle FunctionHeaderH {
Reid Spencer14310612006-12-31 05:40:51 +00002362 CurFun.CurrentFunction->setLinkage($1);
Anton Korobeynikov7f705592007-01-12 19:20:47 +00002363 CurFun.CurrentFunction->setVisibility($2);
Anton Korobeynikovb74ed072006-09-14 18:23:27 +00002364 $$ = CurFun.CurrentFunction;
2365 CurFun.FunctionDone();
2366 CHECK_FOR_ERROR
2367 };
Chris Lattner58af2a12006-02-15 07:22:58 +00002368
2369//===----------------------------------------------------------------------===//
2370// Rules to match Basic Blocks
2371//===----------------------------------------------------------------------===//
2372
2373OptSideEffect : /* empty */ {
2374 $$ = false;
Reid Spencer61c83e02006-08-18 08:43:06 +00002375 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002376 }
2377 | SIDEEFFECT {
2378 $$ = true;
Reid Spencer61c83e02006-08-18 08:43:06 +00002379 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002380 };
2381
2382ConstValueRef : ESINT64VAL { // A reference to a direct constant
2383 $$ = ValID::create($1);
Reid Spencer61c83e02006-08-18 08:43:06 +00002384 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002385 }
2386 | EUINT64VAL {
2387 $$ = ValID::create($1);
Reid Spencer61c83e02006-08-18 08:43:06 +00002388 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002389 }
2390 | FPVAL { // Perhaps it's an FP constant?
2391 $$ = ValID::create($1);
Reid Spencer61c83e02006-08-18 08:43:06 +00002392 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002393 }
2394 | TRUETOK {
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00002395 $$ = ValID::create(ConstantInt::getTrue());
Reid Spencer61c83e02006-08-18 08:43:06 +00002396 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002397 }
2398 | FALSETOK {
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00002399 $$ = ValID::create(ConstantInt::getFalse());
Reid Spencer61c83e02006-08-18 08:43:06 +00002400 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002401 }
2402 | NULL_TOK {
2403 $$ = ValID::createNull();
Reid Spencer61c83e02006-08-18 08:43:06 +00002404 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002405 }
2406 | UNDEF {
2407 $$ = ValID::createUndef();
Reid Spencer61c83e02006-08-18 08:43:06 +00002408 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002409 }
2410 | ZEROINITIALIZER { // A vector zero constant.
2411 $$ = ValID::createZeroInit();
Reid Spencer61c83e02006-08-18 08:43:06 +00002412 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002413 }
2414 | '<' ConstVector '>' { // Nonempty unsized packed vector
Reid Spencera132e042006-12-03 05:46:11 +00002415 const Type *ETy = (*$2)[0]->getType();
Chris Lattner58af2a12006-02-15 07:22:58 +00002416 int NumElements = $2->size();
2417
Reid Spencer9d6565a2007-02-15 02:26:10 +00002418 VectorType* pt = VectorType::get(ETy, NumElements);
Chris Lattner58af2a12006-02-15 07:22:58 +00002419 PATypeHolder* PTy = new PATypeHolder(
Reid Spencera132e042006-12-03 05:46:11 +00002420 HandleUpRefs(
Reid Spencer9d6565a2007-02-15 02:26:10 +00002421 VectorType::get(
Reid Spencera132e042006-12-03 05:46:11 +00002422 ETy,
2423 NumElements)
2424 )
2425 );
Chris Lattner58af2a12006-02-15 07:22:58 +00002426
2427 // Verify all elements are correct type!
2428 for (unsigned i = 0; i < $2->size(); i++) {
Reid Spencera132e042006-12-03 05:46:11 +00002429 if (ETy != (*$2)[i]->getType())
Reid Spencer61c83e02006-08-18 08:43:06 +00002430 GEN_ERROR("Element #" + utostr(i) + " is not of type '" +
Chris Lattner58af2a12006-02-15 07:22:58 +00002431 ETy->getDescription() +"' as required!\nIt is of type '" +
Reid Spencera132e042006-12-03 05:46:11 +00002432 (*$2)[i]->getType()->getDescription() + "'.");
Chris Lattner58af2a12006-02-15 07:22:58 +00002433 }
2434
Reid Spencer9d6565a2007-02-15 02:26:10 +00002435 $$ = ValID::create(ConstantVector::get(pt, *$2));
Chris Lattner58af2a12006-02-15 07:22:58 +00002436 delete PTy; delete $2;
Reid Spencer61c83e02006-08-18 08:43:06 +00002437 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002438 }
2439 | ConstExpr {
Reid Spencera132e042006-12-03 05:46:11 +00002440 $$ = ValID::create($1);
Reid Spencer61c83e02006-08-18 08:43:06 +00002441 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002442 }
2443 | ASM_TOK OptSideEffect STRINGCONSTANT ',' STRINGCONSTANT {
Reid Spencer0a8a16b2007-05-22 18:52:55 +00002444 $$ = ValID::createInlineAsm(*$3, *$5, $2);
2445 delete $3;
2446 delete $5;
Reid Spencer61c83e02006-08-18 08:43:06 +00002447 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002448 };
2449
2450// SymbolicValueRef - Reference to one of two ways of symbolically refering to
2451// another value.
2452//
Reid Spencer41dff5e2007-01-26 08:05:27 +00002453SymbolicValueRef : LOCALVAL_ID { // Is it an integer reference...?
2454 $$ = ValID::createLocalID($1);
Reid Spencer61c83e02006-08-18 08:43:06 +00002455 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002456 }
Reid Spencer41dff5e2007-01-26 08:05:27 +00002457 | GLOBALVAL_ID {
2458 $$ = ValID::createGlobalID($1);
2459 CHECK_FOR_ERROR
2460 }
2461 | LocalName { // Is it a named reference...?
Reid Spencer0a8a16b2007-05-22 18:52:55 +00002462 $$ = ValID::createLocalName(*$1);
2463 delete $1;
Reid Spencer41dff5e2007-01-26 08:05:27 +00002464 CHECK_FOR_ERROR
2465 }
2466 | GlobalName { // Is it a named reference...?
Reid Spencer0a8a16b2007-05-22 18:52:55 +00002467 $$ = ValID::createGlobalName(*$1);
2468 delete $1;
Reid Spencer61c83e02006-08-18 08:43:06 +00002469 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002470 };
2471
2472// ValueRef - A reference to a definition... either constant or symbolic
2473ValueRef : SymbolicValueRef | ConstValueRef;
2474
2475
2476// ResolvedVal - a <type> <value> pair. This is used only in cases where the
2477// type immediately preceeds the value reference, and allows complex constant
2478// pool references (for things like: 'ret [2 x int] [ int 12, int 42]')
2479ResolvedVal : Types ValueRef {
Reid Spencer14310612006-12-31 05:40:51 +00002480 if (!UpRefs.empty())
2481 GEN_ERROR("Invalid upreference in type: " + (*$1)->getDescription());
2482 $$ = getVal(*$1, $2);
2483 delete $1;
Reid Spencer61c83e02006-08-18 08:43:06 +00002484 CHECK_FOR_ERROR
Reid Spencer14310612006-12-31 05:40:51 +00002485 }
2486 ;
Chris Lattner58af2a12006-02-15 07:22:58 +00002487
2488BasicBlockList : BasicBlockList BasicBlock {
2489 $$ = $1;
Reid Spencer61c83e02006-08-18 08:43:06 +00002490 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002491 }
2492 | FunctionHeader BasicBlock { // Do not allow functions with 0 basic blocks
2493 $$ = $1;
Reid Spencer61c83e02006-08-18 08:43:06 +00002494 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002495 };
2496
2497
2498// Basic blocks are terminated by branching instructions:
2499// br, br/cc, switch, ret
2500//
Reid Spencer41dff5e2007-01-26 08:05:27 +00002501BasicBlock : InstructionList OptLocalAssign BBTerminatorInst {
Chris Lattner58af2a12006-02-15 07:22:58 +00002502 setValueName($3, $2);
Reid Spencer5b7e7532006-09-28 19:28:24 +00002503 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002504 InsertValue($3);
Chris Lattner58af2a12006-02-15 07:22:58 +00002505 $1->getInstList().push_back($3);
Chris Lattner58af2a12006-02-15 07:22:58 +00002506 $$ = $1;
Reid Spencer61c83e02006-08-18 08:43:06 +00002507 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002508 };
2509
2510InstructionList : InstructionList Inst {
Reid Spencer3da59db2006-11-27 01:05:10 +00002511 if (CastInst *CI1 = dyn_cast<CastInst>($2))
2512 if (CastInst *CI2 = dyn_cast<CastInst>(CI1->getOperand(0)))
2513 if (CI2->getParent() == 0)
2514 $1->getInstList().push_back(CI2);
Chris Lattner58af2a12006-02-15 07:22:58 +00002515 $1->getInstList().push_back($2);
2516 $$ = $1;
Reid Spencer61c83e02006-08-18 08:43:06 +00002517 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002518 }
Reid Spencer93c40032007-03-19 18:40:50 +00002519 | /* empty */ { // Empty space between instruction lists
2520 $$ = defineBBVal(ValID::createLocalID(CurFun.NextValNum));
Reid Spencer61c83e02006-08-18 08:43:06 +00002521 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002522 }
Reid Spencer93c40032007-03-19 18:40:50 +00002523 | LABELSTR { // Labelled (named) basic block
Reid Spencer0a8a16b2007-05-22 18:52:55 +00002524 $$ = defineBBVal(ValID::createLocalName(*$1));
2525 delete $1;
Reid Spencer61c83e02006-08-18 08:43:06 +00002526 CHECK_FOR_ERROR
Reid Spencer0a8a16b2007-05-22 18:52:55 +00002527
Chris Lattner58af2a12006-02-15 07:22:58 +00002528 };
2529
2530BBTerminatorInst : RET ResolvedVal { // Return with a result...
Reid Spencera132e042006-12-03 05:46:11 +00002531 $$ = new ReturnInst($2);
Reid Spencer61c83e02006-08-18 08:43:06 +00002532 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002533 }
Reid Spencer93c40032007-03-19 18:40:50 +00002534 | RET VOID { // Return with no result...
Chris Lattner58af2a12006-02-15 07:22:58 +00002535 $$ = new ReturnInst();
Reid Spencer61c83e02006-08-18 08:43:06 +00002536 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002537 }
Reid Spencer93c40032007-03-19 18:40:50 +00002538 | BR LABEL ValueRef { // Unconditional Branch...
Reid Spencer5b7e7532006-09-28 19:28:24 +00002539 BasicBlock* tmpBB = getBBVal($3);
Reid Spencer61c83e02006-08-18 08:43:06 +00002540 CHECK_FOR_ERROR
Reid Spencer5b7e7532006-09-28 19:28:24 +00002541 $$ = new BranchInst(tmpBB);
Reid Spencer93c40032007-03-19 18:40:50 +00002542 } // Conditional Branch...
Reid Spencer6f407902007-01-13 05:00:46 +00002543 | BR INTTYPE ValueRef ',' LABEL ValueRef ',' LABEL ValueRef {
2544 assert(cast<IntegerType>($2)->getBitWidth() == 1 && "Not Bool?");
Reid Spencer5b7e7532006-09-28 19:28:24 +00002545 BasicBlock* tmpBBA = getBBVal($6);
Reid Spencer61c83e02006-08-18 08:43:06 +00002546 CHECK_FOR_ERROR
Reid Spencer5b7e7532006-09-28 19:28:24 +00002547 BasicBlock* tmpBBB = getBBVal($9);
2548 CHECK_FOR_ERROR
Reid Spencer4fe16d62007-01-11 18:21:29 +00002549 Value* tmpVal = getVal(Type::Int1Ty, $3);
Reid Spencer5b7e7532006-09-28 19:28:24 +00002550 CHECK_FOR_ERROR
2551 $$ = new BranchInst(tmpBBA, tmpBBB, tmpVal);
Chris Lattner58af2a12006-02-15 07:22:58 +00002552 }
2553 | SWITCH IntType ValueRef ',' LABEL ValueRef '[' JumpTable ']' {
Reid Spencera132e042006-12-03 05:46:11 +00002554 Value* tmpVal = getVal($2, $3);
Reid Spencer5b7e7532006-09-28 19:28:24 +00002555 CHECK_FOR_ERROR
2556 BasicBlock* tmpBB = getBBVal($6);
2557 CHECK_FOR_ERROR
2558 SwitchInst *S = new SwitchInst(tmpVal, tmpBB, $8->size());
Chris Lattner58af2a12006-02-15 07:22:58 +00002559 $$ = S;
2560
2561 std::vector<std::pair<Constant*,BasicBlock*> >::iterator I = $8->begin(),
2562 E = $8->end();
2563 for (; I != E; ++I) {
2564 if (ConstantInt *CI = dyn_cast<ConstantInt>(I->first))
2565 S->addCase(CI, I->second);
2566 else
Reid Spencerb5334b02007-02-05 10:18:06 +00002567 GEN_ERROR("Switch case is constant, but not a simple integer");
Chris Lattner58af2a12006-02-15 07:22:58 +00002568 }
2569 delete $8;
Reid Spencer61c83e02006-08-18 08:43:06 +00002570 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002571 }
2572 | SWITCH IntType ValueRef ',' LABEL ValueRef '[' ']' {
Reid Spencera132e042006-12-03 05:46:11 +00002573 Value* tmpVal = getVal($2, $3);
Reid Spencer5b7e7532006-09-28 19:28:24 +00002574 CHECK_FOR_ERROR
2575 BasicBlock* tmpBB = getBBVal($6);
2576 CHECK_FOR_ERROR
2577 SwitchInst *S = new SwitchInst(tmpVal, tmpBB, 0);
Chris Lattner58af2a12006-02-15 07:22:58 +00002578 $$ = S;
Reid Spencer61c83e02006-08-18 08:43:06 +00002579 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002580 }
Reid Spencer218ded22007-01-05 17:07:23 +00002581 | INVOKE OptCallingConv ResultTypes ValueRef '(' ValueRefList ')' OptFuncAttrs
Chris Lattner58af2a12006-02-15 07:22:58 +00002582 TO LABEL ValueRef UNWIND LABEL ValueRef {
Chris Lattner58af2a12006-02-15 07:22:58 +00002583
Reid Spencer14310612006-12-31 05:40:51 +00002584 // Handle the short syntax
2585 const PointerType *PFTy = 0;
2586 const FunctionType *Ty = 0;
Reid Spencer218ded22007-01-05 17:07:23 +00002587 if (!(PFTy = dyn_cast<PointerType>($3->get())) ||
Chris Lattner58af2a12006-02-15 07:22:58 +00002588 !(Ty = dyn_cast<FunctionType>(PFTy->getElementType()))) {
2589 // Pull out the types of all of the arguments...
2590 std::vector<const Type*> ParamTypes;
Christopher Lamb5c104242007-04-22 20:09:11 +00002591 ParamAttrsVector Attrs;
2592 if ($8 != ParamAttr::None) {
Chris Lattner39b2e8b2007-05-04 04:01:37 +00002593 ParamAttrsWithIndex PAWI; PAWI.index = 0; PAWI.attrs = $8;
Christopher Lamb5c104242007-04-22 20:09:11 +00002594 Attrs.push_back(PAWI);
2595 }
Reid Spencer7b5d4662007-04-09 06:16:21 +00002596 ValueRefList::iterator I = $6->begin(), E = $6->end();
2597 unsigned index = 1;
2598 for (; I != E; ++I, ++index) {
Reid Spencer14310612006-12-31 05:40:51 +00002599 const Type *Ty = I->Val->getType();
2600 if (Ty == Type::VoidTy)
2601 GEN_ERROR("Short call syntax cannot be used with varargs");
2602 ParamTypes.push_back(Ty);
Christopher Lamb5c104242007-04-22 20:09:11 +00002603 if (I->Attrs != ParamAttr::None) {
2604 ParamAttrsWithIndex PAWI; PAWI.index = index; PAWI.attrs = I->Attrs;
2605 Attrs.push_back(PAWI);
2606 }
Chris Lattner58af2a12006-02-15 07:22:58 +00002607 }
2608
Christopher Lamb5c104242007-04-22 20:09:11 +00002609 ParamAttrsList *PAL = 0;
2610 if (!Attrs.empty())
2611 PAL = ParamAttrsList::get(Attrs);
2612 Ty = FunctionType::get($3->get(), ParamTypes, false, PAL);
Chris Lattner58af2a12006-02-15 07:22:58 +00002613 PFTy = PointerType::get(Ty);
2614 }
2615
Reid Spencer66728ef2007-03-20 01:13:36 +00002616 delete $3;
2617
Chris Lattner58af2a12006-02-15 07:22:58 +00002618 Value *V = getVal(PFTy, $4); // Get the function we're calling...
Reid Spencer5b7e7532006-09-28 19:28:24 +00002619 CHECK_FOR_ERROR
Reid Spencer218ded22007-01-05 17:07:23 +00002620 BasicBlock *Normal = getBBVal($11);
Reid Spencer5b7e7532006-09-28 19:28:24 +00002621 CHECK_FOR_ERROR
Reid Spencer218ded22007-01-05 17:07:23 +00002622 BasicBlock *Except = getBBVal($14);
Reid Spencer5b7e7532006-09-28 19:28:24 +00002623 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002624
Reid Spencer14310612006-12-31 05:40:51 +00002625 // Check the arguments
2626 ValueList Args;
2627 if ($6->empty()) { // Has no arguments?
2628 // Make sure no arguments is a good thing!
2629 if (Ty->getNumParams() != 0)
2630 GEN_ERROR("No arguments passed to a function that "
Reid Spencerb5334b02007-02-05 10:18:06 +00002631 "expects arguments");
Chris Lattner58af2a12006-02-15 07:22:58 +00002632 } else { // Has arguments?
2633 // Loop through FunctionType's arguments and ensure they are specified
2634 // correctly!
Chris Lattner58af2a12006-02-15 07:22:58 +00002635 FunctionType::param_iterator I = Ty->param_begin();
2636 FunctionType::param_iterator E = Ty->param_end();
Reid Spencer14310612006-12-31 05:40:51 +00002637 ValueRefList::iterator ArgI = $6->begin(), ArgE = $6->end();
Chris Lattner58af2a12006-02-15 07:22:58 +00002638
Reid Spencer14310612006-12-31 05:40:51 +00002639 for (; ArgI != ArgE && I != E; ++ArgI, ++I) {
2640 if (ArgI->Val->getType() != *I)
2641 GEN_ERROR("Parameter " + ArgI->Val->getName()+ " is not of type '" +
Reid Spencerb5334b02007-02-05 10:18:06 +00002642 (*I)->getDescription() + "'");
Reid Spencer14310612006-12-31 05:40:51 +00002643 Args.push_back(ArgI->Val);
2644 }
Reid Spencera132e042006-12-03 05:46:11 +00002645
Reid Spencer14310612006-12-31 05:40:51 +00002646 if (Ty->isVarArg()) {
2647 if (I == E)
2648 for (; ArgI != ArgE; ++ArgI)
2649 Args.push_back(ArgI->Val); // push the remaining varargs
2650 } else if (I != E || ArgI != ArgE)
Reid Spencerb5334b02007-02-05 10:18:06 +00002651 GEN_ERROR("Invalid number of parameters detected");
Chris Lattner58af2a12006-02-15 07:22:58 +00002652 }
Reid Spencer14310612006-12-31 05:40:51 +00002653
2654 // Create the InvokeInst
Chris Lattnerd80fb8b2007-08-29 16:15:23 +00002655 InvokeInst *II = new InvokeInst(V, Normal, Except, Args.begin(), Args.end());
Reid Spencer14310612006-12-31 05:40:51 +00002656 II->setCallingConv($2);
2657 $$ = II;
Chris Lattner58af2a12006-02-15 07:22:58 +00002658 delete $6;
Reid Spencer61c83e02006-08-18 08:43:06 +00002659 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002660 }
2661 | UNWIND {
2662 $$ = new UnwindInst();
Reid Spencer61c83e02006-08-18 08:43:06 +00002663 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002664 }
2665 | UNREACHABLE {
2666 $$ = new UnreachableInst();
Reid Spencer61c83e02006-08-18 08:43:06 +00002667 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002668 };
2669
2670
2671
2672JumpTable : JumpTable IntType ConstValueRef ',' LABEL ValueRef {
2673 $$ = $1;
Reid Spencer93c40032007-03-19 18:40:50 +00002674 Constant *V = cast<Constant>(getExistingVal($2, $3));
Reid Spencer5b7e7532006-09-28 19:28:24 +00002675 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002676 if (V == 0)
Reid Spencerb5334b02007-02-05 10:18:06 +00002677 GEN_ERROR("May only switch on a constant pool value");
Chris Lattner58af2a12006-02-15 07:22:58 +00002678
Reid Spencer5b7e7532006-09-28 19:28:24 +00002679 BasicBlock* tmpBB = getBBVal($6);
Reid Spencer61c83e02006-08-18 08:43:06 +00002680 CHECK_FOR_ERROR
Reid Spencer5b7e7532006-09-28 19:28:24 +00002681 $$->push_back(std::make_pair(V, tmpBB));
Chris Lattner58af2a12006-02-15 07:22:58 +00002682 }
2683 | IntType ConstValueRef ',' LABEL ValueRef {
2684 $$ = new std::vector<std::pair<Constant*, BasicBlock*> >();
Reid Spencer93c40032007-03-19 18:40:50 +00002685 Constant *V = cast<Constant>(getExistingVal($1, $2));
Reid Spencer5b7e7532006-09-28 19:28:24 +00002686 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002687
2688 if (V == 0)
Reid Spencerb5334b02007-02-05 10:18:06 +00002689 GEN_ERROR("May only switch on a constant pool value");
Chris Lattner58af2a12006-02-15 07:22:58 +00002690
Reid Spencer5b7e7532006-09-28 19:28:24 +00002691 BasicBlock* tmpBB = getBBVal($5);
Reid Spencer61c83e02006-08-18 08:43:06 +00002692 CHECK_FOR_ERROR
Reid Spencer5b7e7532006-09-28 19:28:24 +00002693 $$->push_back(std::make_pair(V, tmpBB));
Chris Lattner58af2a12006-02-15 07:22:58 +00002694 };
2695
Reid Spencer41dff5e2007-01-26 08:05:27 +00002696Inst : OptLocalAssign InstVal {
Reid Spenceref9b9a72007-02-05 20:47:22 +00002697 // Is this definition named?? if so, assign the name...
2698 setValueName($2, $1);
2699 CHECK_FOR_ERROR
2700 InsertValue($2);
2701 $$ = $2;
2702 CHECK_FOR_ERROR
2703 };
2704
Chris Lattner58af2a12006-02-15 07:22:58 +00002705
2706PHIList : Types '[' ValueRef ',' ValueRef ']' { // Used for PHI nodes
Reid Spencer14310612006-12-31 05:40:51 +00002707 if (!UpRefs.empty())
2708 GEN_ERROR("Invalid upreference in type: " + (*$1)->getDescription());
Chris Lattner58af2a12006-02-15 07:22:58 +00002709 $$ = new std::list<std::pair<Value*, BasicBlock*> >();
Reid Spencera132e042006-12-03 05:46:11 +00002710 Value* tmpVal = getVal(*$1, $3);
Reid Spencer61c83e02006-08-18 08:43:06 +00002711 CHECK_FOR_ERROR
Reid Spencer5b7e7532006-09-28 19:28:24 +00002712 BasicBlock* tmpBB = getBBVal($5);
2713 CHECK_FOR_ERROR
2714 $$->push_back(std::make_pair(tmpVal, tmpBB));
Reid Spencera132e042006-12-03 05:46:11 +00002715 delete $1;
Chris Lattner58af2a12006-02-15 07:22:58 +00002716 }
2717 | PHIList ',' '[' ValueRef ',' ValueRef ']' {
2718 $$ = $1;
Reid Spencer5b7e7532006-09-28 19:28:24 +00002719 Value* tmpVal = getVal($1->front().first->getType(), $4);
Reid Spencer61c83e02006-08-18 08:43:06 +00002720 CHECK_FOR_ERROR
Reid Spencer5b7e7532006-09-28 19:28:24 +00002721 BasicBlock* tmpBB = getBBVal($6);
2722 CHECK_FOR_ERROR
2723 $1->push_back(std::make_pair(tmpVal, tmpBB));
Chris Lattner58af2a12006-02-15 07:22:58 +00002724 };
2725
2726
Reid Spencer14310612006-12-31 05:40:51 +00002727ValueRefList : Types ValueRef OptParamAttrs {
2728 if (!UpRefs.empty())
2729 GEN_ERROR("Invalid upreference in type: " + (*$1)->getDescription());
2730 // Used for call and invoke instructions
2731 $$ = new ValueRefList();
2732 ValueRefListEntry E; E.Attrs = $3; E.Val = getVal($1->get(), $2);
2733 $$->push_back(E);
Reid Spencer66728ef2007-03-20 01:13:36 +00002734 delete $1;
Chris Lattner58af2a12006-02-15 07:22:58 +00002735 }
Reid Spencer14310612006-12-31 05:40:51 +00002736 | ValueRefList ',' Types ValueRef OptParamAttrs {
2737 if (!UpRefs.empty())
2738 GEN_ERROR("Invalid upreference in type: " + (*$3)->getDescription());
Chris Lattner58af2a12006-02-15 07:22:58 +00002739 $$ = $1;
Reid Spencer14310612006-12-31 05:40:51 +00002740 ValueRefListEntry E; E.Attrs = $5; E.Val = getVal($3->get(), $4);
2741 $$->push_back(E);
Reid Spencer66728ef2007-03-20 01:13:36 +00002742 delete $3;
Reid Spencer61c83e02006-08-18 08:43:06 +00002743 CHECK_FOR_ERROR
Reid Spencer14310612006-12-31 05:40:51 +00002744 }
2745 | /*empty*/ { $$ = new ValueRefList(); };
Chris Lattner58af2a12006-02-15 07:22:58 +00002746
Reid Spencer14310612006-12-31 05:40:51 +00002747IndexList // Used for gep instructions and constant expressions
Reid Spencerc6c59fd2006-12-31 21:47:02 +00002748 : /*empty*/ { $$ = new std::vector<Value*>(); }
Reid Spencer14310612006-12-31 05:40:51 +00002749 | IndexList ',' ResolvedVal {
2750 $$ = $1;
2751 $$->push_back($3);
2752 CHECK_FOR_ERROR
2753 }
Reid Spencerc6c59fd2006-12-31 21:47:02 +00002754 ;
Chris Lattner58af2a12006-02-15 07:22:58 +00002755
2756OptTailCall : TAIL CALL {
2757 $$ = true;
Reid Spencer61c83e02006-08-18 08:43:06 +00002758 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002759 }
2760 | CALL {
2761 $$ = false;
Reid Spencer61c83e02006-08-18 08:43:06 +00002762 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002763 };
2764
Chris Lattner58af2a12006-02-15 07:22:58 +00002765InstVal : ArithmeticOps Types ValueRef ',' ValueRef {
Reid Spencer14310612006-12-31 05:40:51 +00002766 if (!UpRefs.empty())
2767 GEN_ERROR("Invalid upreference in type: " + (*$2)->getDescription());
Chris Lattner42a75512007-01-15 02:27:26 +00002768 if (!(*$2)->isInteger() && !(*$2)->isFloatingPoint() &&
Reid Spencer9d6565a2007-02-15 02:26:10 +00002769 !isa<VectorType>((*$2).get()))
Reid Spencer61c83e02006-08-18 08:43:06 +00002770 GEN_ERROR(
Reid Spencerb5334b02007-02-05 10:18:06 +00002771 "Arithmetic operator requires integer, FP, or packed operands");
Reid Spencer9d6565a2007-02-15 02:26:10 +00002772 if (isa<VectorType>((*$2).get()) &&
Reid Spencera132e042006-12-03 05:46:11 +00002773 ($1 == Instruction::URem ||
2774 $1 == Instruction::SRem ||
2775 $1 == Instruction::FRem))
Chris Lattner32980692007-02-19 07:44:24 +00002776 GEN_ERROR("Remainder not supported on vector types");
Reid Spencera132e042006-12-03 05:46:11 +00002777 Value* val1 = getVal(*$2, $3);
Reid Spencer5b7e7532006-09-28 19:28:24 +00002778 CHECK_FOR_ERROR
Reid Spencera132e042006-12-03 05:46:11 +00002779 Value* val2 = getVal(*$2, $5);
Reid Spencer5b7e7532006-09-28 19:28:24 +00002780 CHECK_FOR_ERROR
Reid Spencera132e042006-12-03 05:46:11 +00002781 $$ = BinaryOperator::create($1, val1, val2);
Chris Lattner58af2a12006-02-15 07:22:58 +00002782 if ($$ == 0)
Reid Spencerb5334b02007-02-05 10:18:06 +00002783 GEN_ERROR("binary operator returned null");
Reid Spencera132e042006-12-03 05:46:11 +00002784 delete $2;
Chris Lattner58af2a12006-02-15 07:22:58 +00002785 }
2786 | LogicalOps Types ValueRef ',' ValueRef {
Reid Spencer14310612006-12-31 05:40:51 +00002787 if (!UpRefs.empty())
2788 GEN_ERROR("Invalid upreference in type: " + (*$2)->getDescription());
Chris Lattner42a75512007-01-15 02:27:26 +00002789 if (!(*$2)->isInteger()) {
Reid Spencer9d6565a2007-02-15 02:26:10 +00002790 if (Instruction::isShift($1) || !isa<VectorType>($2->get()) ||
2791 !cast<VectorType>($2->get())->getElementType()->isInteger())
Reid Spencerb5334b02007-02-05 10:18:06 +00002792 GEN_ERROR("Logical operator requires integral operands");
Chris Lattner58af2a12006-02-15 07:22:58 +00002793 }
Reid Spencera132e042006-12-03 05:46:11 +00002794 Value* tmpVal1 = getVal(*$2, $3);
Reid Spencer5b7e7532006-09-28 19:28:24 +00002795 CHECK_FOR_ERROR
Reid Spencera132e042006-12-03 05:46:11 +00002796 Value* tmpVal2 = getVal(*$2, $5);
Reid Spencer5b7e7532006-09-28 19:28:24 +00002797 CHECK_FOR_ERROR
Reid Spencera132e042006-12-03 05:46:11 +00002798 $$ = BinaryOperator::create($1, tmpVal1, tmpVal2);
Chris Lattner58af2a12006-02-15 07:22:58 +00002799 if ($$ == 0)
Reid Spencerb5334b02007-02-05 10:18:06 +00002800 GEN_ERROR("binary operator returned null");
Reid Spencera132e042006-12-03 05:46:11 +00002801 delete $2;
Chris Lattner58af2a12006-02-15 07:22:58 +00002802 }
Reid Spencera132e042006-12-03 05:46:11 +00002803 | ICMP IPredicates Types ValueRef ',' ValueRef {
Reid Spencer14310612006-12-31 05:40:51 +00002804 if (!UpRefs.empty())
2805 GEN_ERROR("Invalid upreference in type: " + (*$3)->getDescription());
Reid Spencer9d6565a2007-02-15 02:26:10 +00002806 if (isa<VectorType>((*$3).get()))
Chris Lattner32980692007-02-19 07:44:24 +00002807 GEN_ERROR("Vector types not supported by icmp instruction");
Reid Spencera132e042006-12-03 05:46:11 +00002808 Value* tmpVal1 = getVal(*$3, $4);
2809 CHECK_FOR_ERROR
2810 Value* tmpVal2 = getVal(*$3, $6);
2811 CHECK_FOR_ERROR
2812 $$ = CmpInst::create($1, $2, tmpVal1, tmpVal2);
2813 if ($$ == 0)
Reid Spencerb5334b02007-02-05 10:18:06 +00002814 GEN_ERROR("icmp operator returned null");
Reid Spencer66728ef2007-03-20 01:13:36 +00002815 delete $3;
Reid Spencera132e042006-12-03 05:46:11 +00002816 }
2817 | FCMP FPredicates Types ValueRef ',' ValueRef {
Reid Spencer14310612006-12-31 05:40:51 +00002818 if (!UpRefs.empty())
2819 GEN_ERROR("Invalid upreference in type: " + (*$3)->getDescription());
Reid Spencer9d6565a2007-02-15 02:26:10 +00002820 if (isa<VectorType>((*$3).get()))
Chris Lattner32980692007-02-19 07:44:24 +00002821 GEN_ERROR("Vector types not supported by fcmp instruction");
Reid Spencera132e042006-12-03 05:46:11 +00002822 Value* tmpVal1 = getVal(*$3, $4);
2823 CHECK_FOR_ERROR
2824 Value* tmpVal2 = getVal(*$3, $6);
2825 CHECK_FOR_ERROR
2826 $$ = CmpInst::create($1, $2, tmpVal1, tmpVal2);
2827 if ($$ == 0)
Reid Spencerb5334b02007-02-05 10:18:06 +00002828 GEN_ERROR("fcmp operator returned null");
Reid Spencer66728ef2007-03-20 01:13:36 +00002829 delete $3;
Chris Lattner58af2a12006-02-15 07:22:58 +00002830 }
Reid Spencer3da59db2006-11-27 01:05:10 +00002831 | CastOps ResolvedVal TO Types {
Reid Spencer14310612006-12-31 05:40:51 +00002832 if (!UpRefs.empty())
2833 GEN_ERROR("Invalid upreference in type: " + (*$4)->getDescription());
Reid Spencera132e042006-12-03 05:46:11 +00002834 Value* Val = $2;
Reid Spencerb0fcf8f2007-01-17 02:48:45 +00002835 const Type* DestTy = $4->get();
2836 if (!CastInst::castIsValid($1, Val, DestTy))
2837 GEN_ERROR("invalid cast opcode for cast from '" +
2838 Val->getType()->getDescription() + "' to '" +
Reid Spencerb5334b02007-02-05 10:18:06 +00002839 DestTy->getDescription() + "'");
Reid Spencerb0fcf8f2007-01-17 02:48:45 +00002840 $$ = CastInst::create($1, Val, DestTy);
Reid Spencera132e042006-12-03 05:46:11 +00002841 delete $4;
Chris Lattner58af2a12006-02-15 07:22:58 +00002842 }
2843 | SELECT ResolvedVal ',' ResolvedVal ',' ResolvedVal {
Reid Spencer4fe16d62007-01-11 18:21:29 +00002844 if ($2->getType() != Type::Int1Ty)
Reid Spencerb5334b02007-02-05 10:18:06 +00002845 GEN_ERROR("select condition must be boolean");
Reid Spencera132e042006-12-03 05:46:11 +00002846 if ($4->getType() != $6->getType())
Reid Spencerb5334b02007-02-05 10:18:06 +00002847 GEN_ERROR("select value types should match");
Reid Spencera132e042006-12-03 05:46:11 +00002848 $$ = new SelectInst($2, $4, $6);
Reid Spencer61c83e02006-08-18 08:43:06 +00002849 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002850 }
2851 | VAARG ResolvedVal ',' Types {
Reid Spencer14310612006-12-31 05:40:51 +00002852 if (!UpRefs.empty())
2853 GEN_ERROR("Invalid upreference in type: " + (*$4)->getDescription());
Reid Spencera132e042006-12-03 05:46:11 +00002854 $$ = new VAArgInst($2, *$4);
2855 delete $4;
Reid Spencer61c83e02006-08-18 08:43:06 +00002856 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002857 }
Chris Lattner58af2a12006-02-15 07:22:58 +00002858 | EXTRACTELEMENT ResolvedVal ',' ResolvedVal {
Reid Spencera132e042006-12-03 05:46:11 +00002859 if (!ExtractElementInst::isValidOperands($2, $4))
Reid Spencerb5334b02007-02-05 10:18:06 +00002860 GEN_ERROR("Invalid extractelement operands");
Reid Spencera132e042006-12-03 05:46:11 +00002861 $$ = new ExtractElementInst($2, $4);
Reid Spencer61c83e02006-08-18 08:43:06 +00002862 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002863 }
2864 | INSERTELEMENT ResolvedVal ',' ResolvedVal ',' ResolvedVal {
Reid Spencera132e042006-12-03 05:46:11 +00002865 if (!InsertElementInst::isValidOperands($2, $4, $6))
Reid Spencerb5334b02007-02-05 10:18:06 +00002866 GEN_ERROR("Invalid insertelement operands");
Reid Spencera132e042006-12-03 05:46:11 +00002867 $$ = new InsertElementInst($2, $4, $6);
Reid Spencer61c83e02006-08-18 08:43:06 +00002868 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002869 }
Chris Lattnerd5efe842006-04-08 01:18:56 +00002870 | SHUFFLEVECTOR ResolvedVal ',' ResolvedVal ',' ResolvedVal {
Reid Spencera132e042006-12-03 05:46:11 +00002871 if (!ShuffleVectorInst::isValidOperands($2, $4, $6))
Reid Spencerb5334b02007-02-05 10:18:06 +00002872 GEN_ERROR("Invalid shufflevector operands");
Reid Spencera132e042006-12-03 05:46:11 +00002873 $$ = new ShuffleVectorInst($2, $4, $6);
Reid Spencer61c83e02006-08-18 08:43:06 +00002874 CHECK_FOR_ERROR
Chris Lattnerd5efe842006-04-08 01:18:56 +00002875 }
Chris Lattner58af2a12006-02-15 07:22:58 +00002876 | PHI_TOK PHIList {
2877 const Type *Ty = $2->front().first->getType();
2878 if (!Ty->isFirstClassType())
Reid Spencerb5334b02007-02-05 10:18:06 +00002879 GEN_ERROR("PHI node operands must be of first class type");
Chris Lattner58af2a12006-02-15 07:22:58 +00002880 $$ = new PHINode(Ty);
2881 ((PHINode*)$$)->reserveOperandSpace($2->size());
2882 while ($2->begin() != $2->end()) {
2883 if ($2->front().first->getType() != Ty)
Reid Spencerb5334b02007-02-05 10:18:06 +00002884 GEN_ERROR("All elements of a PHI node must be of the same type");
Chris Lattner58af2a12006-02-15 07:22:58 +00002885 cast<PHINode>($$)->addIncoming($2->front().first, $2->front().second);
2886 $2->pop_front();
2887 }
2888 delete $2; // Free the list...
Reid Spencer61c83e02006-08-18 08:43:06 +00002889 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002890 }
Reid Spencer218ded22007-01-05 17:07:23 +00002891 | OptTailCall OptCallingConv ResultTypes ValueRef '(' ValueRefList ')'
2892 OptFuncAttrs {
Reid Spencer14310612006-12-31 05:40:51 +00002893
2894 // Handle the short syntax
Reid Spencer3da59db2006-11-27 01:05:10 +00002895 const PointerType *PFTy = 0;
2896 const FunctionType *Ty = 0;
Reid Spencer218ded22007-01-05 17:07:23 +00002897 if (!(PFTy = dyn_cast<PointerType>($3->get())) ||
Chris Lattner58af2a12006-02-15 07:22:58 +00002898 !(Ty = dyn_cast<FunctionType>(PFTy->getElementType()))) {
2899 // Pull out the types of all of the arguments...
2900 std::vector<const Type*> ParamTypes;
Christopher Lamb5c104242007-04-22 20:09:11 +00002901 ParamAttrsVector Attrs;
2902 if ($8 != ParamAttr::None) {
2903 ParamAttrsWithIndex PAWI; PAWI.index = 0; PAWI.attrs = $8;
2904 Attrs.push_back(PAWI);
2905 }
Reid Spencer7b5d4662007-04-09 06:16:21 +00002906 unsigned index = 1;
2907 ValueRefList::iterator I = $6->begin(), E = $6->end();
2908 for (; I != E; ++I, ++index) {
Reid Spencer14310612006-12-31 05:40:51 +00002909 const Type *Ty = I->Val->getType();
2910 if (Ty == Type::VoidTy)
2911 GEN_ERROR("Short call syntax cannot be used with varargs");
2912 ParamTypes.push_back(Ty);
Christopher Lamb5c104242007-04-22 20:09:11 +00002913 if (I->Attrs != ParamAttr::None) {
2914 ParamAttrsWithIndex PAWI; PAWI.index = index; PAWI.attrs = I->Attrs;
2915 Attrs.push_back(PAWI);
2916 }
Chris Lattner58af2a12006-02-15 07:22:58 +00002917 }
2918
Christopher Lamb5c104242007-04-22 20:09:11 +00002919 ParamAttrsList *PAL = 0;
2920 if (!Attrs.empty())
2921 PAL = ParamAttrsList::get(Attrs);
Reid Spencer7b5d4662007-04-09 06:16:21 +00002922
Christopher Lamb5c104242007-04-22 20:09:11 +00002923 Ty = FunctionType::get($3->get(), ParamTypes, false, PAL);
Chris Lattner58af2a12006-02-15 07:22:58 +00002924 PFTy = PointerType::get(Ty);
2925 }
Chris Lattner6cdc6822007-04-26 05:31:05 +00002926
Chris Lattner58af2a12006-02-15 07:22:58 +00002927 Value *V = getVal(PFTy, $4); // Get the function we're calling...
Reid Spencer5b7e7532006-09-28 19:28:24 +00002928 CHECK_FOR_ERROR
Chris Lattner6cdc6822007-04-26 05:31:05 +00002929
Reid Spencer7780acb2007-04-16 06:56:07 +00002930 // Check for call to invalid intrinsic to avoid crashing later.
2931 if (Function *theF = dyn_cast<Function>(V)) {
Reid Spencered48de22007-04-16 22:02:23 +00002932 if (theF->hasName() && (theF->getValueName()->getKeyLength() >= 5) &&
Reid Spencer36fdde12007-04-16 20:35:38 +00002933 (0 == strncmp(theF->getValueName()->getKeyData(), "llvm.", 5)) &&
2934 !theF->getIntrinsicID(true))
Reid Spencer7780acb2007-04-16 06:56:07 +00002935 GEN_ERROR("Call to invalid LLVM intrinsic function '" +
2936 theF->getName() + "'");
2937 }
2938
Reid Spencer14310612006-12-31 05:40:51 +00002939 // Check the arguments
2940 ValueList Args;
2941 if ($6->empty()) { // Has no arguments?
Chris Lattner58af2a12006-02-15 07:22:58 +00002942 // Make sure no arguments is a good thing!
2943 if (Ty->getNumParams() != 0)
Reid Spencer61c83e02006-08-18 08:43:06 +00002944 GEN_ERROR("No arguments passed to a function that "
Reid Spencerb5334b02007-02-05 10:18:06 +00002945 "expects arguments");
Chris Lattner58af2a12006-02-15 07:22:58 +00002946 } else { // Has arguments?
2947 // Loop through FunctionType's arguments and ensure they are specified
2948 // correctly!
2949 //
2950 FunctionType::param_iterator I = Ty->param_begin();
2951 FunctionType::param_iterator E = Ty->param_end();
Reid Spencer14310612006-12-31 05:40:51 +00002952 ValueRefList::iterator ArgI = $6->begin(), ArgE = $6->end();
Chris Lattner58af2a12006-02-15 07:22:58 +00002953
Reid Spencer14310612006-12-31 05:40:51 +00002954 for (; ArgI != ArgE && I != E; ++ArgI, ++I) {
2955 if (ArgI->Val->getType() != *I)
2956 GEN_ERROR("Parameter " + ArgI->Val->getName()+ " is not of type '" +
Reid Spencerb5334b02007-02-05 10:18:06 +00002957 (*I)->getDescription() + "'");
Reid Spencer14310612006-12-31 05:40:51 +00002958 Args.push_back(ArgI->Val);
2959 }
2960 if (Ty->isVarArg()) {
2961 if (I == E)
2962 for (; ArgI != ArgE; ++ArgI)
2963 Args.push_back(ArgI->Val); // push the remaining varargs
2964 } else if (I != E || ArgI != ArgE)
Reid Spencerb5334b02007-02-05 10:18:06 +00002965 GEN_ERROR("Invalid number of parameters detected");
Chris Lattner58af2a12006-02-15 07:22:58 +00002966 }
Reid Spencer14310612006-12-31 05:40:51 +00002967 // Create the call node
David Greene718fda32007-08-01 03:59:32 +00002968 CallInst *CI = new CallInst(V, Args.begin(), Args.end());
Reid Spencer14310612006-12-31 05:40:51 +00002969 CI->setTailCall($1);
2970 CI->setCallingConv($2);
2971 $$ = CI;
Chris Lattner58af2a12006-02-15 07:22:58 +00002972 delete $6;
Reid Spencer41dff5e2007-01-26 08:05:27 +00002973 delete $3;
Reid Spencer61c83e02006-08-18 08:43:06 +00002974 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002975 }
2976 | MemoryInst {
2977 $$ = $1;
Reid Spencer61c83e02006-08-18 08:43:06 +00002978 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002979 };
2980
Chris Lattner58af2a12006-02-15 07:22:58 +00002981OptVolatile : VOLATILE {
2982 $$ = true;
Reid Spencer61c83e02006-08-18 08:43:06 +00002983 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002984 }
2985 | /* empty */ {
2986 $$ = false;
Reid Spencer61c83e02006-08-18 08:43:06 +00002987 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002988 };
2989
2990
2991
2992MemoryInst : MALLOC Types OptCAlign {
Reid Spencer14310612006-12-31 05:40:51 +00002993 if (!UpRefs.empty())
2994 GEN_ERROR("Invalid upreference in type: " + (*$2)->getDescription());
Reid Spencera132e042006-12-03 05:46:11 +00002995 $$ = new MallocInst(*$2, 0, $3);
2996 delete $2;
Reid Spencer61c83e02006-08-18 08:43:06 +00002997 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002998 }
Reid Spencera54b7cb2007-01-12 07:05:14 +00002999 | MALLOC Types ',' INTTYPE ValueRef OptCAlign {
Reid Spencer14310612006-12-31 05:40:51 +00003000 if (!UpRefs.empty())
3001 GEN_ERROR("Invalid upreference in type: " + (*$2)->getDescription());
Reid Spencera132e042006-12-03 05:46:11 +00003002 Value* tmpVal = getVal($4, $5);
Reid Spencer61c83e02006-08-18 08:43:06 +00003003 CHECK_FOR_ERROR
Reid Spencera132e042006-12-03 05:46:11 +00003004 $$ = new MallocInst(*$2, tmpVal, $6);
3005 delete $2;
Chris Lattner58af2a12006-02-15 07:22:58 +00003006 }
3007 | ALLOCA Types OptCAlign {
Reid Spencer14310612006-12-31 05:40:51 +00003008 if (!UpRefs.empty())
3009 GEN_ERROR("Invalid upreference in type: " + (*$2)->getDescription());
Reid Spencera132e042006-12-03 05:46:11 +00003010 $$ = new AllocaInst(*$2, 0, $3);
3011 delete $2;
Reid Spencer61c83e02006-08-18 08:43:06 +00003012 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00003013 }
Reid Spencera54b7cb2007-01-12 07:05:14 +00003014 | ALLOCA Types ',' INTTYPE ValueRef OptCAlign {
Reid Spencer14310612006-12-31 05:40:51 +00003015 if (!UpRefs.empty())
3016 GEN_ERROR("Invalid upreference in type: " + (*$2)->getDescription());
Reid Spencera132e042006-12-03 05:46:11 +00003017 Value* tmpVal = getVal($4, $5);
Reid Spencer61c83e02006-08-18 08:43:06 +00003018 CHECK_FOR_ERROR
Reid Spencera132e042006-12-03 05:46:11 +00003019 $$ = new AllocaInst(*$2, tmpVal, $6);
3020 delete $2;
Chris Lattner58af2a12006-02-15 07:22:58 +00003021 }
3022 | FREE ResolvedVal {
Reid Spencera132e042006-12-03 05:46:11 +00003023 if (!isa<PointerType>($2->getType()))
Reid Spencer61c83e02006-08-18 08:43:06 +00003024 GEN_ERROR("Trying to free nonpointer type " +
Reid Spencerb5334b02007-02-05 10:18:06 +00003025 $2->getType()->getDescription() + "");
Reid Spencera132e042006-12-03 05:46:11 +00003026 $$ = new FreeInst($2);
Reid Spencer61c83e02006-08-18 08:43:06 +00003027 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00003028 }
3029
Christopher Lamb5c104242007-04-22 20:09:11 +00003030 | OptVolatile LOAD Types ValueRef OptCAlign {
Reid Spencer14310612006-12-31 05:40:51 +00003031 if (!UpRefs.empty())
3032 GEN_ERROR("Invalid upreference in type: " + (*$3)->getDescription());
Reid Spencera132e042006-12-03 05:46:11 +00003033 if (!isa<PointerType>($3->get()))
Reid Spencer61c83e02006-08-18 08:43:06 +00003034 GEN_ERROR("Can't load from nonpointer type: " +
Reid Spencera132e042006-12-03 05:46:11 +00003035 (*$3)->getDescription());
3036 if (!cast<PointerType>($3->get())->getElementType()->isFirstClassType())
Reid Spencer61c83e02006-08-18 08:43:06 +00003037 GEN_ERROR("Can't load from pointer of non-first-class type: " +
Reid Spencera132e042006-12-03 05:46:11 +00003038 (*$3)->getDescription());
3039 Value* tmpVal = getVal(*$3, $4);
Reid Spencer61c83e02006-08-18 08:43:06 +00003040 CHECK_FOR_ERROR
Christopher Lamb5c104242007-04-22 20:09:11 +00003041 $$ = new LoadInst(tmpVal, "", $1, $5);
Reid Spencera132e042006-12-03 05:46:11 +00003042 delete $3;
Chris Lattner58af2a12006-02-15 07:22:58 +00003043 }
Christopher Lamb5c104242007-04-22 20:09:11 +00003044 | OptVolatile STORE ResolvedVal ',' Types ValueRef OptCAlign {
Reid Spencer14310612006-12-31 05:40:51 +00003045 if (!UpRefs.empty())
3046 GEN_ERROR("Invalid upreference in type: " + (*$5)->getDescription());
Reid Spencera132e042006-12-03 05:46:11 +00003047 const PointerType *PT = dyn_cast<PointerType>($5->get());
Chris Lattner58af2a12006-02-15 07:22:58 +00003048 if (!PT)
Reid Spencer61c83e02006-08-18 08:43:06 +00003049 GEN_ERROR("Can't store to a nonpointer type: " +
Reid Spencera132e042006-12-03 05:46:11 +00003050 (*$5)->getDescription());
Chris Lattner58af2a12006-02-15 07:22:58 +00003051 const Type *ElTy = PT->getElementType();
Reid Spencera132e042006-12-03 05:46:11 +00003052 if (ElTy != $3->getType())
3053 GEN_ERROR("Can't store '" + $3->getType()->getDescription() +
Reid Spencerb5334b02007-02-05 10:18:06 +00003054 "' into space of type '" + ElTy->getDescription() + "'");
Chris Lattner58af2a12006-02-15 07:22:58 +00003055
Reid Spencera132e042006-12-03 05:46:11 +00003056 Value* tmpVal = getVal(*$5, $6);
Reid Spencer61c83e02006-08-18 08:43:06 +00003057 CHECK_FOR_ERROR
Christopher Lamb5c104242007-04-22 20:09:11 +00003058 $$ = new StoreInst($3, tmpVal, $1, $7);
Reid Spencera132e042006-12-03 05:46:11 +00003059 delete $5;
Chris Lattner58af2a12006-02-15 07:22:58 +00003060 }
3061 | GETELEMENTPTR Types ValueRef IndexList {
Reid Spencer14310612006-12-31 05:40:51 +00003062 if (!UpRefs.empty())
3063 GEN_ERROR("Invalid upreference in type: " + (*$2)->getDescription());
Reid Spencera132e042006-12-03 05:46:11 +00003064 if (!isa<PointerType>($2->get()))
Reid Spencerb5334b02007-02-05 10:18:06 +00003065 GEN_ERROR("getelementptr insn requires pointer operand");
Chris Lattner58af2a12006-02-15 07:22:58 +00003066
Chris Lattner7d9801d2007-02-13 00:58:01 +00003067 if (!GetElementPtrInst::getIndexedType(*$2, &(*$4)[0], $4->size(), true))
Reid Spencer61c83e02006-08-18 08:43:06 +00003068 GEN_ERROR("Invalid getelementptr indices for type '" +
Reid Spencerb5334b02007-02-05 10:18:06 +00003069 (*$2)->getDescription()+ "'");
Reid Spencera132e042006-12-03 05:46:11 +00003070 Value* tmpVal = getVal(*$2, $3);
Reid Spencer61c83e02006-08-18 08:43:06 +00003071 CHECK_FOR_ERROR
Chris Lattner7d9801d2007-02-13 00:58:01 +00003072 $$ = new GetElementPtrInst(tmpVal, &(*$4)[0], $4->size());
Reid Spencera132e042006-12-03 05:46:11 +00003073 delete $2;
Reid Spencer5b7e7532006-09-28 19:28:24 +00003074 delete $4;
Chris Lattner58af2a12006-02-15 07:22:58 +00003075 };
3076
3077
3078%%
Reid Spencer61c83e02006-08-18 08:43:06 +00003079
Reid Spencer14310612006-12-31 05:40:51 +00003080// common code from the two 'RunVMAsmParser' functions
3081static Module* RunParser(Module * M) {
3082
3083 llvmAsmlineno = 1; // Reset the current line number...
3084 CurModule.CurrentModule = M;
3085#if YYDEBUG
3086 yydebug = Debug;
3087#endif
3088
3089 // Check to make sure the parser succeeded
3090 if (yyparse()) {
3091 if (ParserResult)
3092 delete ParserResult;
3093 return 0;
3094 }
3095
Reid Spencer0d60b5a2007-03-30 01:37:39 +00003096 // Emit an error if there are any unresolved types left.
3097 if (!CurModule.LateResolveTypes.empty()) {
3098 const ValID &DID = CurModule.LateResolveTypes.begin()->first;
3099 if (DID.Type == ValID::LocalName) {
3100 GenerateError("Undefined type remains at eof: '"+DID.getName() + "'");
3101 } else {
3102 GenerateError("Undefined type remains at eof: #" + itostr(DID.Num));
3103 }
3104 if (ParserResult)
3105 delete ParserResult;
3106 return 0;
3107 }
3108
3109 // Emit an error if there are any unresolved values left.
3110 if (!CurModule.LateResolveValues.empty()) {
3111 Value *V = CurModule.LateResolveValues.back();
3112 std::map<Value*, std::pair<ValID, int> >::iterator I =
3113 CurModule.PlaceHolderInfo.find(V);
3114
3115 if (I != CurModule.PlaceHolderInfo.end()) {
3116 ValID &DID = I->second.first;
3117 if (DID.Type == ValID::LocalName) {
3118 GenerateError("Undefined value remains at eof: "+DID.getName() + "'");
3119 } else {
3120 GenerateError("Undefined value remains at eof: #" + itostr(DID.Num));
3121 }
3122 if (ParserResult)
3123 delete ParserResult;
3124 return 0;
3125 }
3126 }
3127
Reid Spencer14310612006-12-31 05:40:51 +00003128 // Check to make sure that parsing produced a result
3129 if (!ParserResult)
3130 return 0;
3131
3132 // Reset ParserResult variable while saving its value for the result.
3133 Module *Result = ParserResult;
3134 ParserResult = 0;
3135
3136 return Result;
3137}
3138
Reid Spencer61c83e02006-08-18 08:43:06 +00003139void llvm::GenerateError(const std::string &message, int LineNo) {
3140 if (LineNo == -1) LineNo = llvmAsmlineno;
3141 // TODO: column number in exception
3142 if (TheParseError)
3143 TheParseError->setError(CurFilename, message, LineNo);
3144 TriggerError = 1;
3145}
3146
Chris Lattner58af2a12006-02-15 07:22:58 +00003147int yyerror(const char *ErrorMsg) {
3148 std::string where
3149 = std::string((CurFilename == "-") ? std::string("<stdin>") : CurFilename)
3150 + ":" + utostr((unsigned) llvmAsmlineno) + ": ";
Reid Spenceref9b9a72007-02-05 20:47:22 +00003151 std::string errMsg = where + "error: " + std::string(ErrorMsg);
3152 if (yychar != YYEMPTY && yychar != 0)
3153 errMsg += " while reading token: '" + std::string(llvmAsmtext, llvmAsmleng)+
3154 "'";
Reid Spencer61c83e02006-08-18 08:43:06 +00003155 GenerateError(errMsg);
Chris Lattner58af2a12006-02-15 07:22:58 +00003156 return 0;
3157}