blob: 8a7403683981dd8b710d487f25a2c1de34a1a680 [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"
20#include "llvm/SymbolTable.h"
Chris Lattner58af2a12006-02-15 07:22:58 +000021#include "llvm/Support/GetElementPtrTypeIterator.h"
Reid Spencer14310612006-12-31 05:40:51 +000022#include "llvm/Support/CommandLine.h"
Chris Lattner58af2a12006-02-15 07:22:58 +000023#include "llvm/ADT/STLExtras.h"
24#include "llvm/Support/MathExtras.h"
Reid Spencer481169e2006-12-01 00:33:46 +000025#include "llvm/Support/Streams.h"
Chris Lattner58af2a12006-02-15 07:22:58 +000026#include <algorithm>
Chris Lattner58af2a12006-02-15 07:22:58 +000027#include <list>
28#include <utility>
Reid Spencer14310612006-12-31 05:40:51 +000029#ifndef NDEBUG
30#define YYDEBUG 1
31#endif
Chris Lattner58af2a12006-02-15 07:22:58 +000032
Reid Spencere4f47592006-08-18 17:32:55 +000033// The following is a gross hack. In order to rid the libAsmParser library of
34// exceptions, we have to have a way of getting the yyparse function to go into
35// an error situation. So, whenever we want an error to occur, the GenerateError
36// function (see bottom of file) sets TriggerError. Then, at the end of each
37// production in the grammer we use CHECK_FOR_ERROR which will invoke YYERROR
38// (a goto) to put YACC in error state. Furthermore, several calls to
39// GenerateError are made from inside productions and they must simulate the
40// previous exception behavior by exiting the production immediately. We have
41// replaced these with the GEN_ERROR macro which calls GeneratError and then
42// immediately invokes YYERROR. This would be so much cleaner if it was a
43// recursive descent parser.
Reid Spencer61c83e02006-08-18 08:43:06 +000044static bool TriggerError = false;
Reid Spencerf63697d2006-10-09 17:36:59 +000045#define CHECK_FOR_ERROR { if (TriggerError) { TriggerError = false; YYABORT; } }
Reid Spencer61c83e02006-08-18 08:43:06 +000046#define GEN_ERROR(msg) { GenerateError(msg); YYERROR; }
47
Chris Lattner58af2a12006-02-15 07:22:58 +000048int yyerror(const char *ErrorMsg); // Forward declarations to prevent "implicit
49int yylex(); // declaration" of xxx warnings.
50int yyparse();
51
52namespace llvm {
53 std::string CurFilename;
Reid Spencer14310612006-12-31 05:40:51 +000054#if YYDEBUG
55static cl::opt<bool>
56Debug("debug-yacc", cl::desc("Print yacc debug state changes"),
57 cl::Hidden, cl::init(false));
58#endif
Chris Lattner58af2a12006-02-15 07:22:58 +000059}
60using namespace llvm;
61
62static Module *ParserResult;
63
64// DEBUG_UPREFS - Define this symbol if you want to enable debugging output
65// relating to upreferences in the input stream.
66//
67//#define DEBUG_UPREFS 1
68#ifdef DEBUG_UPREFS
Bill Wendlinge8156192006-12-07 01:30:32 +000069#define UR_OUT(X) cerr << X
Chris Lattner58af2a12006-02-15 07:22:58 +000070#else
71#define UR_OUT(X)
72#endif
73
74#define YYERROR_VERBOSE 1
75
Chris Lattner58af2a12006-02-15 07:22:58 +000076static GlobalVariable *CurGV;
77
78
79// This contains info used when building the body of a function. It is
80// destroyed when the function is completed.
81//
82typedef std::vector<Value *> ValueList; // Numbered defs
Reid Spencer14310612006-12-31 05:40:51 +000083
Chris Lattner58af2a12006-02-15 07:22:58 +000084static void
85ResolveDefinitions(std::map<const Type *,ValueList> &LateResolvers,
86 std::map<const Type *,ValueList> *FutureLateResolvers = 0);
87
88static struct PerModuleInfo {
89 Module *CurrentModule;
90 std::map<const Type *, ValueList> Values; // Module level numbered definitions
91 std::map<const Type *,ValueList> LateResolveValues;
Reid Spencer861d9d62006-11-28 07:29:44 +000092 std::vector<PATypeHolder> Types;
93 std::map<ValID, PATypeHolder> LateResolveTypes;
Chris Lattner58af2a12006-02-15 07:22:58 +000094
95 /// PlaceHolderInfo - When temporary placeholder objects are created, remember
Chris Lattner0ad19702006-06-21 16:53:00 +000096 /// how they were referenced and on which line of the input they came from so
Chris Lattner58af2a12006-02-15 07:22:58 +000097 /// that we can resolve them later and print error messages as appropriate.
98 std::map<Value*, std::pair<ValID, int> > PlaceHolderInfo;
99
100 // GlobalRefs - This maintains a mapping between <Type, ValID>'s and forward
101 // references to global values. Global values may be referenced before they
102 // are defined, and if so, the temporary object that they represent is held
103 // here. This is used for forward references of GlobalValues.
104 //
105 typedef std::map<std::pair<const PointerType *,
106 ValID>, GlobalValue*> GlobalRefsType;
107 GlobalRefsType GlobalRefs;
108
109 void ModuleDone() {
110 // If we could not resolve some functions at function compilation time
111 // (calls to functions before they are defined), resolve them now... Types
112 // are resolved when the constant pool has been completely parsed.
113 //
114 ResolveDefinitions(LateResolveValues);
Reid Spencer5b7e7532006-09-28 19:28:24 +0000115 if (TriggerError)
116 return;
Chris Lattner58af2a12006-02-15 07:22:58 +0000117
118 // Check to make sure that all global value forward references have been
119 // resolved!
120 //
121 if (!GlobalRefs.empty()) {
122 std::string UndefinedReferences = "Unresolved global references exist:\n";
123
124 for (GlobalRefsType::iterator I = GlobalRefs.begin(), E =GlobalRefs.end();
125 I != E; ++I) {
126 UndefinedReferences += " " + I->first.first->getDescription() + " " +
127 I->first.second.getName() + "\n";
128 }
Reid Spencer61c83e02006-08-18 08:43:06 +0000129 GenerateError(UndefinedReferences);
Reid Spencer5b7e7532006-09-28 19:28:24 +0000130 return;
Chris Lattner58af2a12006-02-15 07:22:58 +0000131 }
132
Chris Lattner58af2a12006-02-15 07:22:58 +0000133 Values.clear(); // Clear out function local definitions
134 Types.clear();
135 CurrentModule = 0;
136 }
137
138 // GetForwardRefForGlobal - Check to see if there is a forward reference
139 // for this global. If so, remove it from the GlobalRefs map and return it.
140 // If not, just return null.
141 GlobalValue *GetForwardRefForGlobal(const PointerType *PTy, ValID ID) {
142 // Check to see if there is a forward reference to this global variable...
143 // if there is, eliminate it and patch the reference to use the new def'n.
144 GlobalRefsType::iterator I = GlobalRefs.find(std::make_pair(PTy, ID));
145 GlobalValue *Ret = 0;
146 if (I != GlobalRefs.end()) {
147 Ret = I->second;
148 GlobalRefs.erase(I);
149 }
150 return Ret;
151 }
Reid Spencer8c8a2dc2007-01-02 21:54:12 +0000152
153 bool TypeIsUnresolved(PATypeHolder* PATy) {
154 // If it isn't abstract, its resolved
155 const Type* Ty = PATy->get();
156 if (!Ty->isAbstract())
157 return false;
158 // Traverse the type looking for abstract types. If it isn't abstract then
159 // we don't need to traverse that leg of the type.
160 std::vector<const Type*> WorkList, SeenList;
161 WorkList.push_back(Ty);
162 while (!WorkList.empty()) {
163 const Type* Ty = WorkList.back();
164 SeenList.push_back(Ty);
165 WorkList.pop_back();
166 if (const OpaqueType* OpTy = dyn_cast<OpaqueType>(Ty)) {
167 // Check to see if this is an unresolved type
168 std::map<ValID, PATypeHolder>::iterator I = LateResolveTypes.begin();
169 std::map<ValID, PATypeHolder>::iterator E = LateResolveTypes.end();
170 for ( ; I != E; ++I) {
171 if (I->second.get() == OpTy)
172 return true;
173 }
174 } else if (const SequentialType* SeqTy = dyn_cast<SequentialType>(Ty)) {
175 const Type* TheTy = SeqTy->getElementType();
176 if (TheTy->isAbstract() && TheTy != Ty) {
177 std::vector<const Type*>::iterator I = SeenList.begin(),
178 E = SeenList.end();
179 for ( ; I != E; ++I)
180 if (*I == TheTy)
181 break;
182 if (I == E)
183 WorkList.push_back(TheTy);
184 }
185 } else if (const StructType* StrTy = dyn_cast<StructType>(Ty)) {
186 for (unsigned i = 0; i < StrTy->getNumElements(); ++i) {
187 const Type* TheTy = StrTy->getElementType(i);
188 if (TheTy->isAbstract() && TheTy != Ty) {
189 std::vector<const Type*>::iterator I = SeenList.begin(),
190 E = SeenList.end();
191 for ( ; I != E; ++I)
192 if (*I == TheTy)
193 break;
194 if (I == E)
195 WorkList.push_back(TheTy);
196 }
197 }
198 }
199 }
200 return false;
201 }
202
203
Chris Lattner58af2a12006-02-15 07:22:58 +0000204} CurModule;
205
206static struct PerFunctionInfo {
207 Function *CurrentFunction; // Pointer to current function being created
208
Anton Korobeynikovb74ed072006-09-14 18:23:27 +0000209 std::map<const Type*, ValueList> Values; // Keep track of #'d definitions
Chris Lattner58af2a12006-02-15 07:22:58 +0000210 std::map<const Type*, ValueList> LateResolveValues;
Anton Korobeynikovb74ed072006-09-14 18:23:27 +0000211 bool isDeclare; // Is this function a forward declararation?
212 GlobalValue::LinkageTypes Linkage; // Linkage for forward declaration.
Chris Lattner58af2a12006-02-15 07:22:58 +0000213
214 /// BBForwardRefs - When we see forward references to basic blocks, keep
215 /// track of them here.
216 std::map<BasicBlock*, std::pair<ValID, int> > BBForwardRefs;
217 std::vector<BasicBlock*> NumberedBlocks;
218 unsigned NextBBNum;
219
220 inline PerFunctionInfo() {
221 CurrentFunction = 0;
222 isDeclare = false;
Anton Korobeynikovb74ed072006-09-14 18:23:27 +0000223 Linkage = GlobalValue::ExternalLinkage;
Chris Lattner58af2a12006-02-15 07:22:58 +0000224 }
225
226 inline void FunctionStart(Function *M) {
227 CurrentFunction = M;
228 NextBBNum = 0;
229 }
230
231 void FunctionDone() {
232 NumberedBlocks.clear();
233
234 // Any forward referenced blocks left?
Reid Spencer5b7e7532006-09-28 19:28:24 +0000235 if (!BBForwardRefs.empty()) {
Reid Spencer61c83e02006-08-18 08:43:06 +0000236 GenerateError("Undefined reference to label " +
Chris Lattner58af2a12006-02-15 07:22:58 +0000237 BBForwardRefs.begin()->first->getName());
Reid Spencer5b7e7532006-09-28 19:28:24 +0000238 return;
239 }
Chris Lattner58af2a12006-02-15 07:22:58 +0000240
241 // Resolve all forward references now.
242 ResolveDefinitions(LateResolveValues, &CurModule.LateResolveValues);
243
244 Values.clear(); // Clear out function local definitions
245 CurrentFunction = 0;
246 isDeclare = false;
Anton Korobeynikovb74ed072006-09-14 18:23:27 +0000247 Linkage = GlobalValue::ExternalLinkage;
Chris Lattner58af2a12006-02-15 07:22:58 +0000248 }
249} CurFun; // Info for the current function...
250
251static bool inFunctionScope() { return CurFun.CurrentFunction != 0; }
252
253
254//===----------------------------------------------------------------------===//
255// Code to handle definitions of all the types
256//===----------------------------------------------------------------------===//
257
258static int InsertValue(Value *V,
259 std::map<const Type*,ValueList> &ValueTab = CurFun.Values) {
260 if (V->hasName()) return -1; // Is this a numbered definition?
261
262 // Yes, insert the value into the value table...
263 ValueList &List = ValueTab[V->getType()];
264 List.push_back(V);
265 return List.size()-1;
266}
267
268static const Type *getTypeVal(const ValID &D, bool DoNotImprovise = false) {
269 switch (D.Type) {
270 case ValID::NumberVal: // Is it a numbered definition?
271 // Module constants occupy the lowest numbered slots...
272 if ((unsigned)D.Num < CurModule.Types.size())
Reid Spencer861d9d62006-11-28 07:29:44 +0000273 return CurModule.Types[(unsigned)D.Num];
Chris Lattner58af2a12006-02-15 07:22:58 +0000274 break;
275 case ValID::NameVal: // Is it a named definition?
276 if (const Type *N = CurModule.CurrentModule->getTypeByName(D.Name)) {
277 D.destroy(); // Free old strdup'd memory...
278 return N;
279 }
280 break;
281 default:
Reid Spencer61c83e02006-08-18 08:43:06 +0000282 GenerateError("Internal parser error: Invalid symbol type reference!");
Reid Spencer5b7e7532006-09-28 19:28:24 +0000283 return 0;
Chris Lattner58af2a12006-02-15 07:22:58 +0000284 }
285
286 // If we reached here, we referenced either a symbol that we don't know about
287 // or an id number that hasn't been read yet. We may be referencing something
288 // forward, so just create an entry to be resolved later and get to it...
289 //
290 if (DoNotImprovise) return 0; // Do we just want a null to be returned?
291
292
293 if (inFunctionScope()) {
Reid Spencer5b7e7532006-09-28 19:28:24 +0000294 if (D.Type == ValID::NameVal) {
Reid Spencer61c83e02006-08-18 08:43:06 +0000295 GenerateError("Reference to an undefined type: '" + D.getName() + "'");
Reid Spencer5b7e7532006-09-28 19:28:24 +0000296 return 0;
297 } else {
Reid Spencer61c83e02006-08-18 08:43:06 +0000298 GenerateError("Reference to an undefined type: #" + itostr(D.Num));
Reid Spencer5b7e7532006-09-28 19:28:24 +0000299 return 0;
300 }
Chris Lattner58af2a12006-02-15 07:22:58 +0000301 }
302
Reid Spencer861d9d62006-11-28 07:29:44 +0000303 std::map<ValID, PATypeHolder>::iterator I =CurModule.LateResolveTypes.find(D);
Chris Lattner58af2a12006-02-15 07:22:58 +0000304 if (I != CurModule.LateResolveTypes.end())
Reid Spencer861d9d62006-11-28 07:29:44 +0000305 return I->second;
Chris Lattner58af2a12006-02-15 07:22:58 +0000306
Reid Spencer861d9d62006-11-28 07:29:44 +0000307 Type *Typ = OpaqueType::get();
308 CurModule.LateResolveTypes.insert(std::make_pair(D, Typ));
309 return Typ;
Reid Spencera132e042006-12-03 05:46:11 +0000310 }
Chris Lattner58af2a12006-02-15 07:22:58 +0000311
312static Value *lookupInSymbolTable(const Type *Ty, const std::string &Name) {
313 SymbolTable &SymTab =
314 inFunctionScope() ? CurFun.CurrentFunction->getSymbolTable() :
315 CurModule.CurrentModule->getSymbolTable();
316 return SymTab.lookup(Ty, Name);
317}
318
319// getValNonImprovising - Look up the value specified by the provided type and
320// the provided ValID. If the value exists and has already been defined, return
321// it. Otherwise return null.
322//
323static Value *getValNonImprovising(const Type *Ty, const ValID &D) {
Reid Spencer5b7e7532006-09-28 19:28:24 +0000324 if (isa<FunctionType>(Ty)) {
Reid Spencer61c83e02006-08-18 08:43:06 +0000325 GenerateError("Functions are not values and "
Chris Lattner58af2a12006-02-15 07:22:58 +0000326 "must be referenced as pointers");
Reid Spencer5b7e7532006-09-28 19:28:24 +0000327 return 0;
328 }
Chris Lattner58af2a12006-02-15 07:22:58 +0000329
330 switch (D.Type) {
331 case ValID::NumberVal: { // Is it a numbered definition?
332 unsigned Num = (unsigned)D.Num;
333
334 // Module constants occupy the lowest numbered slots...
335 std::map<const Type*,ValueList>::iterator VI = CurModule.Values.find(Ty);
336 if (VI != CurModule.Values.end()) {
337 if (Num < VI->second.size())
338 return VI->second[Num];
339 Num -= VI->second.size();
340 }
341
342 // Make sure that our type is within bounds
343 VI = CurFun.Values.find(Ty);
344 if (VI == CurFun.Values.end()) return 0;
345
346 // Check that the number is within bounds...
347 if (VI->second.size() <= Num) return 0;
348
349 return VI->second[Num];
350 }
351
352 case ValID::NameVal: { // Is it a named definition?
353 Value *N = lookupInSymbolTable(Ty, std::string(D.Name));
354 if (N == 0) return 0;
355
356 D.destroy(); // Free old strdup'd memory...
357 return N;
358 }
359
360 // Check to make sure that "Ty" is an integral type, and that our
361 // value will fit into the specified type...
362 case ValID::ConstSIntVal: // Is it a constant pool reference??
Reid Spencerb83eb642006-10-20 07:07:24 +0000363 if (!ConstantInt::isValueValidForType(Ty, D.ConstPool64)) {
Reid Spencer61c83e02006-08-18 08:43:06 +0000364 GenerateError("Signed integral constant '" +
Chris Lattner58af2a12006-02-15 07:22:58 +0000365 itostr(D.ConstPool64) + "' is invalid for type '" +
366 Ty->getDescription() + "'!");
Reid Spencer5b7e7532006-09-28 19:28:24 +0000367 return 0;
368 }
Reid Spencerb83eb642006-10-20 07:07:24 +0000369 return ConstantInt::get(Ty, D.ConstPool64);
Chris Lattner58af2a12006-02-15 07:22:58 +0000370
371 case ValID::ConstUIntVal: // Is it an unsigned const pool reference?
Reid Spencerb83eb642006-10-20 07:07:24 +0000372 if (!ConstantInt::isValueValidForType(Ty, D.UConstPool64)) {
373 if (!ConstantInt::isValueValidForType(Ty, D.ConstPool64)) {
Reid Spencer61c83e02006-08-18 08:43:06 +0000374 GenerateError("Integral constant '" + utostr(D.UConstPool64) +
Chris Lattner58af2a12006-02-15 07:22:58 +0000375 "' is invalid or out of range!");
Reid Spencer5b7e7532006-09-28 19:28:24 +0000376 return 0;
Chris Lattner58af2a12006-02-15 07:22:58 +0000377 } else { // This is really a signed reference. Transmogrify.
Reid Spencerb83eb642006-10-20 07:07:24 +0000378 return ConstantInt::get(Ty, D.ConstPool64);
Chris Lattner58af2a12006-02-15 07:22:58 +0000379 }
380 } else {
Reid Spencerb83eb642006-10-20 07:07:24 +0000381 return ConstantInt::get(Ty, D.UConstPool64);
Chris Lattner58af2a12006-02-15 07:22:58 +0000382 }
383
384 case ValID::ConstFPVal: // Is it a floating point const pool reference?
Reid Spencer5b7e7532006-09-28 19:28:24 +0000385 if (!ConstantFP::isValueValidForType(Ty, D.ConstPoolFP)) {
Reid Spencer61c83e02006-08-18 08:43:06 +0000386 GenerateError("FP constant invalid for type!!");
Reid Spencer5b7e7532006-09-28 19:28:24 +0000387 return 0;
388 }
Chris Lattner58af2a12006-02-15 07:22:58 +0000389 return ConstantFP::get(Ty, D.ConstPoolFP);
390
391 case ValID::ConstNullVal: // Is it a null value?
Reid Spencer5b7e7532006-09-28 19:28:24 +0000392 if (!isa<PointerType>(Ty)) {
Reid Spencer61c83e02006-08-18 08:43:06 +0000393 GenerateError("Cannot create a a non pointer null!");
Reid Spencer5b7e7532006-09-28 19:28:24 +0000394 return 0;
395 }
Chris Lattner58af2a12006-02-15 07:22:58 +0000396 return ConstantPointerNull::get(cast<PointerType>(Ty));
397
398 case ValID::ConstUndefVal: // Is it an undef value?
399 return UndefValue::get(Ty);
400
401 case ValID::ConstZeroVal: // Is it a zero value?
402 return Constant::getNullValue(Ty);
403
404 case ValID::ConstantVal: // Fully resolved constant?
Reid Spencer5b7e7532006-09-28 19:28:24 +0000405 if (D.ConstantValue->getType() != Ty) {
Reid Spencer61c83e02006-08-18 08:43:06 +0000406 GenerateError("Constant expression type different from required type!");
Reid Spencer5b7e7532006-09-28 19:28:24 +0000407 return 0;
408 }
Chris Lattner58af2a12006-02-15 07:22:58 +0000409 return D.ConstantValue;
410
411 case ValID::InlineAsmVal: { // Inline asm expression
412 const PointerType *PTy = dyn_cast<PointerType>(Ty);
413 const FunctionType *FTy =
414 PTy ? dyn_cast<FunctionType>(PTy->getElementType()) : 0;
Reid Spencer5b7e7532006-09-28 19:28:24 +0000415 if (!FTy || !InlineAsm::Verify(FTy, D.IAD->Constraints)) {
Reid Spencer61c83e02006-08-18 08:43:06 +0000416 GenerateError("Invalid type for asm constraint string!");
Reid Spencer5b7e7532006-09-28 19:28:24 +0000417 return 0;
418 }
Chris Lattner58af2a12006-02-15 07:22:58 +0000419 InlineAsm *IA = InlineAsm::get(FTy, D.IAD->AsmString, D.IAD->Constraints,
420 D.IAD->HasSideEffects);
421 D.destroy(); // Free InlineAsmDescriptor.
422 return IA;
423 }
424 default:
425 assert(0 && "Unhandled case!");
426 return 0;
427 } // End of switch
428
429 assert(0 && "Unhandled case!");
430 return 0;
431}
432
433// getVal - This function is identical to getValNonImprovising, except that if a
434// value is not already defined, it "improvises" by creating a placeholder var
435// that looks and acts just like the requested variable. When the value is
436// defined later, all uses of the placeholder variable are replaced with the
437// real thing.
438//
439static Value *getVal(const Type *Ty, const ValID &ID) {
Reid Spencer5b7e7532006-09-28 19:28:24 +0000440 if (Ty == Type::LabelTy) {
Reid Spencer61c83e02006-08-18 08:43:06 +0000441 GenerateError("Cannot use a basic block here");
Reid Spencer5b7e7532006-09-28 19:28:24 +0000442 return 0;
443 }
Chris Lattner58af2a12006-02-15 07:22:58 +0000444
445 // See if the value has already been defined.
446 Value *V = getValNonImprovising(Ty, ID);
447 if (V) return V;
Reid Spencer5b7e7532006-09-28 19:28:24 +0000448 if (TriggerError) return 0;
Chris Lattner58af2a12006-02-15 07:22:58 +0000449
Reid Spencer5b7e7532006-09-28 19:28:24 +0000450 if (!Ty->isFirstClassType() && !isa<OpaqueType>(Ty)) {
Reid Spencer61c83e02006-08-18 08:43:06 +0000451 GenerateError("Invalid use of a composite type!");
Reid Spencer5b7e7532006-09-28 19:28:24 +0000452 return 0;
453 }
Chris Lattner58af2a12006-02-15 07:22:58 +0000454
455 // If we reached here, we referenced either a symbol that we don't know about
456 // or an id number that hasn't been read yet. We may be referencing something
457 // forward, so just create an entry to be resolved later and get to it...
458 //
459 V = new Argument(Ty);
460
461 // Remember where this forward reference came from. FIXME, shouldn't we try
462 // to recycle these things??
463 CurModule.PlaceHolderInfo.insert(std::make_pair(V, std::make_pair(ID,
464 llvmAsmlineno)));
465
466 if (inFunctionScope())
467 InsertValue(V, CurFun.LateResolveValues);
468 else
469 InsertValue(V, CurModule.LateResolveValues);
470 return V;
471}
472
473/// getBBVal - This is used for two purposes:
474/// * If isDefinition is true, a new basic block with the specified ID is being
475/// defined.
476/// * If isDefinition is true, this is a reference to a basic block, which may
477/// or may not be a forward reference.
478///
479static BasicBlock *getBBVal(const ValID &ID, bool isDefinition = false) {
480 assert(inFunctionScope() && "Can't get basic block at global scope!");
481
482 std::string Name;
483 BasicBlock *BB = 0;
484 switch (ID.Type) {
Reid Spencer5b7e7532006-09-28 19:28:24 +0000485 default:
486 GenerateError("Illegal label reference " + ID.getName());
487 return 0;
Chris Lattner58af2a12006-02-15 07:22:58 +0000488 case ValID::NumberVal: // Is it a numbered definition?
489 if (unsigned(ID.Num) >= CurFun.NumberedBlocks.size())
490 CurFun.NumberedBlocks.resize(ID.Num+1);
491 BB = CurFun.NumberedBlocks[ID.Num];
492 break;
493 case ValID::NameVal: // Is it a named definition?
494 Name = ID.Name;
495 if (Value *N = CurFun.CurrentFunction->
496 getSymbolTable().lookup(Type::LabelTy, Name))
497 BB = cast<BasicBlock>(N);
498 break;
499 }
500
501 // See if the block has already been defined.
502 if (BB) {
503 // If this is the definition of the block, make sure the existing value was
504 // just a forward reference. If it was a forward reference, there will be
505 // an entry for it in the PlaceHolderInfo map.
Reid Spencer5b7e7532006-09-28 19:28:24 +0000506 if (isDefinition && !CurFun.BBForwardRefs.erase(BB)) {
Chris Lattner58af2a12006-02-15 07:22:58 +0000507 // The existing value was a definition, not a forward reference.
Reid Spencer61c83e02006-08-18 08:43:06 +0000508 GenerateError("Redefinition of label " + ID.getName());
Reid Spencer5b7e7532006-09-28 19:28:24 +0000509 return 0;
510 }
Chris Lattner58af2a12006-02-15 07:22:58 +0000511
512 ID.destroy(); // Free strdup'd memory.
513 return BB;
514 }
515
516 // Otherwise this block has not been seen before.
517 BB = new BasicBlock("", CurFun.CurrentFunction);
518 if (ID.Type == ValID::NameVal) {
519 BB->setName(ID.Name);
520 } else {
521 CurFun.NumberedBlocks[ID.Num] = BB;
522 }
523
524 // If this is not a definition, keep track of it so we can use it as a forward
525 // reference.
526 if (!isDefinition) {
527 // Remember where this forward reference came from.
528 CurFun.BBForwardRefs[BB] = std::make_pair(ID, llvmAsmlineno);
529 } else {
530 // The forward declaration could have been inserted anywhere in the
531 // function: insert it into the correct place now.
532 CurFun.CurrentFunction->getBasicBlockList().remove(BB);
533 CurFun.CurrentFunction->getBasicBlockList().push_back(BB);
534 }
535 ID.destroy();
536 return BB;
537}
538
539
540//===----------------------------------------------------------------------===//
541// Code to handle forward references in instructions
542//===----------------------------------------------------------------------===//
543//
544// This code handles the late binding needed with statements that reference
545// values not defined yet... for example, a forward branch, or the PHI node for
546// a loop body.
547//
548// This keeps a table (CurFun.LateResolveValues) of all such forward references
549// and back patchs after we are done.
550//
551
552// ResolveDefinitions - If we could not resolve some defs at parsing
553// time (forward branches, phi functions for loops, etc...) resolve the
554// defs now...
555//
556static void
557ResolveDefinitions(std::map<const Type*,ValueList> &LateResolvers,
558 std::map<const Type*,ValueList> *FutureLateResolvers) {
559 // Loop over LateResolveDefs fixing up stuff that couldn't be resolved
560 for (std::map<const Type*,ValueList>::iterator LRI = LateResolvers.begin(),
561 E = LateResolvers.end(); LRI != E; ++LRI) {
562 ValueList &List = LRI->second;
563 while (!List.empty()) {
564 Value *V = List.back();
565 List.pop_back();
566
567 std::map<Value*, std::pair<ValID, int> >::iterator PHI =
568 CurModule.PlaceHolderInfo.find(V);
569 assert(PHI != CurModule.PlaceHolderInfo.end() && "Placeholder error!");
570
571 ValID &DID = PHI->second.first;
572
573 Value *TheRealValue = getValNonImprovising(LRI->first, DID);
Reid Spencer5b7e7532006-09-28 19:28:24 +0000574 if (TriggerError)
575 return;
Chris Lattner58af2a12006-02-15 07:22:58 +0000576 if (TheRealValue) {
577 V->replaceAllUsesWith(TheRealValue);
578 delete V;
579 CurModule.PlaceHolderInfo.erase(PHI);
580 } else if (FutureLateResolvers) {
581 // Functions have their unresolved items forwarded to the module late
582 // resolver table
583 InsertValue(V, *FutureLateResolvers);
584 } else {
Reid Spencer5b7e7532006-09-28 19:28:24 +0000585 if (DID.Type == ValID::NameVal) {
Reid Spencer61c83e02006-08-18 08:43:06 +0000586 GenerateError("Reference to an invalid definition: '" +DID.getName()+
Chris Lattner58af2a12006-02-15 07:22:58 +0000587 "' of type '" + V->getType()->getDescription() + "'",
588 PHI->second.second);
Reid Spencer5b7e7532006-09-28 19:28:24 +0000589 return;
590 } else {
Reid Spencer61c83e02006-08-18 08:43:06 +0000591 GenerateError("Reference to an invalid definition: #" +
Chris Lattner58af2a12006-02-15 07:22:58 +0000592 itostr(DID.Num) + " of type '" +
593 V->getType()->getDescription() + "'",
594 PHI->second.second);
Reid Spencer5b7e7532006-09-28 19:28:24 +0000595 return;
596 }
Chris Lattner58af2a12006-02-15 07:22:58 +0000597 }
598 }
599 }
600
601 LateResolvers.clear();
602}
603
604// ResolveTypeTo - A brand new type was just declared. This means that (if
605// name is not null) things referencing Name can be resolved. Otherwise, things
606// refering to the number can be resolved. Do this now.
607//
608static void ResolveTypeTo(char *Name, const Type *ToTy) {
609 ValID D;
610 if (Name) D = ValID::create(Name);
611 else D = ValID::create((int)CurModule.Types.size());
612
Reid Spencer861d9d62006-11-28 07:29:44 +0000613 std::map<ValID, PATypeHolder>::iterator I =
Chris Lattner58af2a12006-02-15 07:22:58 +0000614 CurModule.LateResolveTypes.find(D);
615 if (I != CurModule.LateResolveTypes.end()) {
Reid Spencer861d9d62006-11-28 07:29:44 +0000616 ((DerivedType*)I->second.get())->refineAbstractTypeTo(ToTy);
Chris Lattner58af2a12006-02-15 07:22:58 +0000617 CurModule.LateResolveTypes.erase(I);
618 }
619}
620
621// setValueName - Set the specified value to the name given. The name may be
622// null potentially, in which case this is a noop. The string passed in is
623// assumed to be a malloc'd string buffer, and is free'd by this function.
624//
625static void setValueName(Value *V, char *NameStr) {
626 if (NameStr) {
627 std::string Name(NameStr); // Copy string
628 free(NameStr); // Free old string
629
Reid Spencer5b7e7532006-09-28 19:28:24 +0000630 if (V->getType() == Type::VoidTy) {
Reid Spencer61c83e02006-08-18 08:43:06 +0000631 GenerateError("Can't assign name '" + Name+"' to value with void type!");
Reid Spencer5b7e7532006-09-28 19:28:24 +0000632 return;
633 }
Chris Lattner58af2a12006-02-15 07:22:58 +0000634
635 assert(inFunctionScope() && "Must be in function scope!");
636 SymbolTable &ST = CurFun.CurrentFunction->getSymbolTable();
Reid Spencer5b7e7532006-09-28 19:28:24 +0000637 if (ST.lookup(V->getType(), Name)) {
Reid Spencer61c83e02006-08-18 08:43:06 +0000638 GenerateError("Redefinition of value named '" + Name + "' in the '" +
Chris Lattner58af2a12006-02-15 07:22:58 +0000639 V->getType()->getDescription() + "' type plane!");
Reid Spencer5b7e7532006-09-28 19:28:24 +0000640 return;
641 }
Chris Lattner58af2a12006-02-15 07:22:58 +0000642
643 // Set the name.
644 V->setName(Name);
645 }
646}
647
648/// ParseGlobalVariable - Handle parsing of a global. If Initializer is null,
649/// this is a declaration, otherwise it is a definition.
650static GlobalVariable *
651ParseGlobalVariable(char *NameStr,GlobalValue::LinkageTypes Linkage,
652 bool isConstantGlobal, const Type *Ty,
653 Constant *Initializer) {
Reid Spencer5b7e7532006-09-28 19:28:24 +0000654 if (isa<FunctionType>(Ty)) {
Reid Spencer61c83e02006-08-18 08:43:06 +0000655 GenerateError("Cannot declare global vars of function type!");
Reid Spencer5b7e7532006-09-28 19:28:24 +0000656 return 0;
657 }
Chris Lattner58af2a12006-02-15 07:22:58 +0000658
659 const PointerType *PTy = PointerType::get(Ty);
660
661 std::string Name;
662 if (NameStr) {
663 Name = NameStr; // Copy string
664 free(NameStr); // Free old string
665 }
666
667 // See if this global value was forward referenced. If so, recycle the
668 // object.
669 ValID ID;
670 if (!Name.empty()) {
671 ID = ValID::create((char*)Name.c_str());
672 } else {
673 ID = ValID::create((int)CurModule.Values[PTy].size());
674 }
675
676 if (GlobalValue *FWGV = CurModule.GetForwardRefForGlobal(PTy, ID)) {
677 // Move the global to the end of the list, from whereever it was
678 // previously inserted.
679 GlobalVariable *GV = cast<GlobalVariable>(FWGV);
680 CurModule.CurrentModule->getGlobalList().remove(GV);
681 CurModule.CurrentModule->getGlobalList().push_back(GV);
682 GV->setInitializer(Initializer);
683 GV->setLinkage(Linkage);
684 GV->setConstant(isConstantGlobal);
685 InsertValue(GV, CurModule.Values);
686 return GV;
687 }
688
689 // If this global has a name, check to see if there is already a definition
690 // of this global in the module. If so, merge as appropriate. Note that
691 // this is really just a hack around problems in the CFE. :(
692 if (!Name.empty()) {
693 // We are a simple redefinition of a value, check to see if it is defined
694 // the same as the old one.
695 if (GlobalVariable *EGV =
696 CurModule.CurrentModule->getGlobalVariable(Name, Ty)) {
697 // We are allowed to redefine a global variable in two circumstances:
698 // 1. If at least one of the globals is uninitialized or
699 // 2. If both initializers have the same value.
700 //
701 if (!EGV->hasInitializer() || !Initializer ||
702 EGV->getInitializer() == Initializer) {
703
704 // Make sure the existing global version gets the initializer! Make
705 // sure that it also gets marked const if the new version is.
706 if (Initializer && !EGV->hasInitializer())
707 EGV->setInitializer(Initializer);
708 if (isConstantGlobal)
709 EGV->setConstant(true);
710 EGV->setLinkage(Linkage);
711 return EGV;
712 }
713
Reid Spencer61c83e02006-08-18 08:43:06 +0000714 GenerateError("Redefinition of global variable named '" + Name +
Chris Lattner58af2a12006-02-15 07:22:58 +0000715 "' in the '" + Ty->getDescription() + "' type plane!");
Reid Spencer5b7e7532006-09-28 19:28:24 +0000716 return 0;
Chris Lattner58af2a12006-02-15 07:22:58 +0000717 }
718 }
719
720 // Otherwise there is no existing GV to use, create one now.
721 GlobalVariable *GV =
722 new GlobalVariable(Ty, isConstantGlobal, Linkage, Initializer, Name,
723 CurModule.CurrentModule);
724 InsertValue(GV, CurModule.Values);
725 return GV;
726}
727
728// setTypeName - Set the specified type to the name given. The name may be
729// null potentially, in which case this is a noop. The string passed in is
730// assumed to be a malloc'd string buffer, and is freed by this function.
731//
732// This function returns true if the type has already been defined, but is
733// allowed to be redefined in the specified context. If the name is a new name
734// for the type plane, it is inserted and false is returned.
735static bool setTypeName(const Type *T, char *NameStr) {
736 assert(!inFunctionScope() && "Can't give types function-local names!");
737 if (NameStr == 0) return false;
738
739 std::string Name(NameStr); // Copy string
740 free(NameStr); // Free old string
741
742 // We don't allow assigning names to void type
Reid Spencer5b7e7532006-09-28 19:28:24 +0000743 if (T == Type::VoidTy) {
Reid Spencer61c83e02006-08-18 08:43:06 +0000744 GenerateError("Can't assign name '" + Name + "' to the void type!");
Reid Spencer5b7e7532006-09-28 19:28:24 +0000745 return false;
746 }
Chris Lattner58af2a12006-02-15 07:22:58 +0000747
748 // Set the type name, checking for conflicts as we do so.
749 bool AlreadyExists = CurModule.CurrentModule->addTypeName(Name, T);
750
751 if (AlreadyExists) { // Inserting a name that is already defined???
752 const Type *Existing = CurModule.CurrentModule->getTypeByName(Name);
753 assert(Existing && "Conflict but no matching type?");
754
755 // There is only one case where this is allowed: when we are refining an
756 // opaque type. In this case, Existing will be an opaque type.
757 if (const OpaqueType *OpTy = dyn_cast<OpaqueType>(Existing)) {
758 // We ARE replacing an opaque type!
759 const_cast<OpaqueType*>(OpTy)->refineAbstractTypeTo(T);
760 return true;
761 }
762
763 // Otherwise, this is an attempt to redefine a type. That's okay if
764 // the redefinition is identical to the original. This will be so if
765 // Existing and T point to the same Type object. In this one case we
766 // allow the equivalent redefinition.
767 if (Existing == T) return true; // Yes, it's equal.
768
769 // Any other kind of (non-equivalent) redefinition is an error.
Reid Spencer61c83e02006-08-18 08:43:06 +0000770 GenerateError("Redefinition of type named '" + Name + "' in the '" +
Chris Lattner58af2a12006-02-15 07:22:58 +0000771 T->getDescription() + "' type plane!");
772 }
773
774 return false;
775}
776
777//===----------------------------------------------------------------------===//
778// Code for handling upreferences in type names...
779//
780
781// TypeContains - Returns true if Ty directly contains E in it.
782//
783static bool TypeContains(const Type *Ty, const Type *E) {
784 return std::find(Ty->subtype_begin(), Ty->subtype_end(),
785 E) != Ty->subtype_end();
786}
787
788namespace {
789 struct UpRefRecord {
790 // NestingLevel - The number of nesting levels that need to be popped before
791 // this type is resolved.
792 unsigned NestingLevel;
793
794 // LastContainedTy - This is the type at the current binding level for the
795 // type. Every time we reduce the nesting level, this gets updated.
796 const Type *LastContainedTy;
797
798 // UpRefTy - This is the actual opaque type that the upreference is
799 // represented with.
800 OpaqueType *UpRefTy;
801
802 UpRefRecord(unsigned NL, OpaqueType *URTy)
803 : NestingLevel(NL), LastContainedTy(URTy), UpRefTy(URTy) {}
804 };
805}
806
807// UpRefs - A list of the outstanding upreferences that need to be resolved.
808static std::vector<UpRefRecord> UpRefs;
809
810/// HandleUpRefs - Every time we finish a new layer of types, this function is
811/// called. It loops through the UpRefs vector, which is a list of the
812/// currently active types. For each type, if the up reference is contained in
813/// the newly completed type, we decrement the level count. When the level
814/// count reaches zero, the upreferenced type is the type that is passed in:
815/// thus we can complete the cycle.
816///
817static PATypeHolder HandleUpRefs(const Type *ty) {
Chris Lattner224f84f2006-08-18 17:34:45 +0000818 // If Ty isn't abstract, or if there are no up-references in it, then there is
819 // nothing to resolve here.
820 if (!ty->isAbstract() || UpRefs.empty()) return ty;
821
Chris Lattner58af2a12006-02-15 07:22:58 +0000822 PATypeHolder Ty(ty);
823 UR_OUT("Type '" << Ty->getDescription() <<
824 "' newly formed. Resolving upreferences.\n" <<
825 UpRefs.size() << " upreferences active!\n");
826
827 // If we find any resolvable upreferences (i.e., those whose NestingLevel goes
828 // to zero), we resolve them all together before we resolve them to Ty. At
829 // the end of the loop, if there is anything to resolve to Ty, it will be in
830 // this variable.
831 OpaqueType *TypeToResolve = 0;
832
833 for (unsigned i = 0; i != UpRefs.size(); ++i) {
834 UR_OUT(" UR#" << i << " - TypeContains(" << Ty->getDescription() << ", "
835 << UpRefs[i].second->getDescription() << ") = "
836 << (TypeContains(Ty, UpRefs[i].second) ? "true" : "false") << "\n");
837 if (TypeContains(Ty, UpRefs[i].LastContainedTy)) {
838 // Decrement level of upreference
839 unsigned Level = --UpRefs[i].NestingLevel;
840 UpRefs[i].LastContainedTy = Ty;
841 UR_OUT(" Uplevel Ref Level = " << Level << "\n");
842 if (Level == 0) { // Upreference should be resolved!
843 if (!TypeToResolve) {
844 TypeToResolve = UpRefs[i].UpRefTy;
845 } else {
846 UR_OUT(" * Resolving upreference for "
847 << UpRefs[i].second->getDescription() << "\n";
848 std::string OldName = UpRefs[i].UpRefTy->getDescription());
849 UpRefs[i].UpRefTy->refineAbstractTypeTo(TypeToResolve);
850 UR_OUT(" * Type '" << OldName << "' refined upreference to: "
851 << (const void*)Ty << ", " << Ty->getDescription() << "\n");
852 }
853 UpRefs.erase(UpRefs.begin()+i); // Remove from upreference list...
854 --i; // Do not skip the next element...
855 }
856 }
857 }
858
859 if (TypeToResolve) {
860 UR_OUT(" * Resolving upreference for "
861 << UpRefs[i].second->getDescription() << "\n";
862 std::string OldName = TypeToResolve->getDescription());
863 TypeToResolve->refineAbstractTypeTo(Ty);
864 }
865
866 return Ty;
867}
868
Chris Lattner58af2a12006-02-15 07:22:58 +0000869//===----------------------------------------------------------------------===//
870// RunVMAsmParser - Define an interface to this parser
871//===----------------------------------------------------------------------===//
872//
Reid Spencer14310612006-12-31 05:40:51 +0000873static Module* RunParser(Module * M);
874
Chris Lattner58af2a12006-02-15 07:22:58 +0000875Module *llvm::RunVMAsmParser(const std::string &Filename, FILE *F) {
876 set_scan_file(F);
877
878 CurFilename = Filename;
879 return RunParser(new Module(CurFilename));
880}
881
882Module *llvm::RunVMAsmParser(const char * AsmString, Module * M) {
883 set_scan_string(AsmString);
884
885 CurFilename = "from_memory";
886 if (M == NULL) {
887 return RunParser(new Module (CurFilename));
888 } else {
889 return RunParser(M);
890 }
891}
892
893%}
894
895%union {
896 llvm::Module *ModuleVal;
897 llvm::Function *FunctionVal;
Chris Lattner58af2a12006-02-15 07:22:58 +0000898 llvm::BasicBlock *BasicBlockVal;
899 llvm::TerminatorInst *TermInstVal;
900 llvm::Instruction *InstVal;
Reid Spencera132e042006-12-03 05:46:11 +0000901 llvm::Constant *ConstVal;
Chris Lattner58af2a12006-02-15 07:22:58 +0000902
Reid Spencera132e042006-12-03 05:46:11 +0000903 const llvm::Type *PrimType;
Reid Spencer14310612006-12-31 05:40:51 +0000904 std::list<llvm::PATypeHolder> *TypeList;
Reid Spencera132e042006-12-03 05:46:11 +0000905 llvm::PATypeHolder *TypeVal;
906 llvm::Value *ValueVal;
Reid Spencera132e042006-12-03 05:46:11 +0000907 std::vector<llvm::Value*> *ValueList;
Reid Spencer14310612006-12-31 05:40:51 +0000908 llvm::ArgListType *ArgList;
909 llvm::TypeWithAttrs TypeWithAttrs;
910 llvm::TypeWithAttrsList *TypeWithAttrsList;
911 llvm::ValueRefList *ValueRefList;
912
Chris Lattner58af2a12006-02-15 07:22:58 +0000913 // Represent the RHS of PHI node
Reid Spencera132e042006-12-03 05:46:11 +0000914 std::list<std::pair<llvm::Value*,
915 llvm::BasicBlock*> > *PHIList;
Chris Lattner58af2a12006-02-15 07:22:58 +0000916 std::vector<std::pair<llvm::Constant*, llvm::BasicBlock*> > *JumpTable;
Reid Spencera132e042006-12-03 05:46:11 +0000917 std::vector<llvm::Constant*> *ConstVector;
Chris Lattner58af2a12006-02-15 07:22:58 +0000918
919 llvm::GlobalValue::LinkageTypes Linkage;
Reid Spencer14310612006-12-31 05:40:51 +0000920 llvm::FunctionType::ParameterAttributes ParamAttrs;
Chris Lattner58af2a12006-02-15 07:22:58 +0000921 int64_t SInt64Val;
922 uint64_t UInt64Val;
923 int SIntVal;
924 unsigned UIntVal;
925 double FPVal;
926 bool BoolVal;
927
928 char *StrVal; // This memory is strdup'd!
Reid Spencer1628cec2006-10-26 06:15:43 +0000929 llvm::ValID ValIDVal; // strdup'd memory maybe!
Chris Lattner58af2a12006-02-15 07:22:58 +0000930
Reid Spencera132e042006-12-03 05:46:11 +0000931 llvm::Instruction::BinaryOps BinaryOpVal;
932 llvm::Instruction::TermOps TermOpVal;
933 llvm::Instruction::MemoryOps MemOpVal;
934 llvm::Instruction::CastOps CastOpVal;
935 llvm::Instruction::OtherOps OtherOpVal;
Reid Spencer1628cec2006-10-26 06:15:43 +0000936 llvm::Module::Endianness Endianness;
Reid Spencera132e042006-12-03 05:46:11 +0000937 llvm::ICmpInst::Predicate IPredicate;
938 llvm::FCmpInst::Predicate FPredicate;
Chris Lattner58af2a12006-02-15 07:22:58 +0000939}
940
Reid Spencer14310612006-12-31 05:40:51 +0000941%type <ModuleVal> Module
Chris Lattner58af2a12006-02-15 07:22:58 +0000942%type <FunctionVal> Function FunctionProto FunctionHeader BasicBlockList
943%type <BasicBlockVal> BasicBlock InstructionList
944%type <TermInstVal> BBTerminatorInst
945%type <InstVal> Inst InstVal MemoryInst
946%type <ConstVal> ConstVal ConstExpr
947%type <ConstVector> ConstVector
948%type <ArgList> ArgList ArgListH
Chris Lattner58af2a12006-02-15 07:22:58 +0000949%type <PHIList> PHIList
Reid Spencer14310612006-12-31 05:40:51 +0000950%type <ValueRefList> ValueRefList // For call param lists & GEP indices
951%type <ValueList> IndexList // For GEP indices
952%type <TypeList> TypeListI
953%type <TypeWithAttrsList> ArgTypeList ArgTypeListI
954%type <TypeWithAttrs> ArgType ResultType
Chris Lattner58af2a12006-02-15 07:22:58 +0000955%type <JumpTable> JumpTable
956%type <BoolVal> GlobalType // GLOBAL or CONSTANT?
957%type <BoolVal> OptVolatile // 'volatile' or not
958%type <BoolVal> OptTailCall // TAIL CALL or plain CALL.
959%type <BoolVal> OptSideEffect // 'sideeffect' or not.
Reid Spencer14310612006-12-31 05:40:51 +0000960%type <Linkage> GVInternalLinkage GVExternalLinkage
961%type <Linkage> FunctionDefineLinkage FunctionDeclareLinkage
Chris Lattner58af2a12006-02-15 07:22:58 +0000962%type <Endianness> BigOrLittle
963
964// ValueRef - Unresolved reference to a definition or BB
965%type <ValIDVal> ValueRef ConstValueRef SymbolicValueRef
966%type <ValueVal> ResolvedVal // <type> <valref> pair
967// Tokens and types for handling constant integer values
968//
969// ESINT64VAL - A negative number within long long range
970%token <SInt64Val> ESINT64VAL
971
972// EUINT64VAL - A positive number within uns. long long range
973%token <UInt64Val> EUINT64VAL
Chris Lattner58af2a12006-02-15 07:22:58 +0000974
975%token <SIntVal> SINTVAL // Signed 32 bit ints...
976%token <UIntVal> UINTVAL // Unsigned 32 bit ints...
977%type <SIntVal> INTVAL
978%token <FPVal> FPVAL // Float or Double constant
979
980// Built in types...
Reid Spencer14310612006-12-31 05:40:51 +0000981%type <TypeVal> Types
982%type <PrimType> IntType FPType PrimType // Classifications
983%token <PrimType> VOID BOOL INT8 INT16 INT32 INT64
Reid Spencer6fd36ab2006-12-29 20:35:03 +0000984%token <PrimType> FLOAT DOUBLE LABEL
985%token TYPE
Chris Lattner58af2a12006-02-15 07:22:58 +0000986
987%token <StrVal> VAR_ID LABELSTR STRINGCONSTANT
988%type <StrVal> Name OptName OptAssign
989%type <UIntVal> OptAlign OptCAlign
990%type <StrVal> OptSection SectionString
991
992%token IMPLEMENTATION ZEROINITIALIZER TRUETOK FALSETOK BEGINTOK ENDTOK
Reid Spencer6fd36ab2006-12-29 20:35:03 +0000993%token DECLARE DEFINE GLOBAL CONSTANT SECTION VOLATILE
Reid Spencer14310612006-12-31 05:40:51 +0000994%token TO DOTDOTDOT NULL_TOK UNDEF INTERNAL LINKONCE WEAK APPENDING
Anton Korobeynikovb74ed072006-09-14 18:23:27 +0000995%token DLLIMPORT DLLEXPORT EXTERN_WEAK
Chris Lattner58af2a12006-02-15 07:22:58 +0000996%token OPAQUE NOT EXTERNAL TARGET TRIPLE ENDIAN POINTERSIZE LITTLE BIG ALIGN
997%token DEPLIBS CALL TAIL ASM_TOK MODULE SIDEEFFECT
Chris Lattner75466192006-05-19 21:28:53 +0000998%token CC_TOK CCC_TOK CSRETCC_TOK FASTCC_TOK COLDCC_TOK
Anton Korobeynikovbcb97702006-09-17 20:25:45 +0000999%token X86_STDCALLCC_TOK X86_FASTCALLCC_TOK
Chris Lattner1ae022f2006-10-22 06:08:13 +00001000%token DATALAYOUT
Chris Lattner58af2a12006-02-15 07:22:58 +00001001%type <UIntVal> OptCallingConv
Reid Spencer14310612006-12-31 05:40:51 +00001002%type <ParamAttrs> OptParamAttrs ParamAttrList ParamAttr
Chris Lattner58af2a12006-02-15 07:22:58 +00001003
1004// Basic Block Terminating Operators
1005%token <TermOpVal> RET BR SWITCH INVOKE UNWIND UNREACHABLE
1006
1007// Binary Operators
Reid Spencere4d87aa2006-12-23 06:05:41 +00001008%type <BinaryOpVal> ArithmeticOps LogicalOps // Binops Subcatagories
Reid Spencer3ed469c2006-11-02 20:25:50 +00001009%token <BinaryOpVal> ADD SUB MUL UDIV SDIV FDIV UREM SREM FREM AND OR XOR
Reid Spencera132e042006-12-03 05:46:11 +00001010%token <OtherOpVal> ICMP FCMP
Reid Spencera132e042006-12-03 05:46:11 +00001011%type <IPredicate> IPredicates
Reid Spencera132e042006-12-03 05:46:11 +00001012%type <FPredicate> FPredicates
Reid Spencer6e18b7d2006-12-03 06:59:29 +00001013%token EQ NE SLT SGT SLE SGE ULT UGT ULE UGE
1014%token OEQ ONE OLT OGT OLE OGE ORD UNO UEQ UNE
Chris Lattner58af2a12006-02-15 07:22:58 +00001015
1016// Memory Instructions
1017%token <MemOpVal> MALLOC ALLOCA FREE LOAD STORE GETELEMENTPTR
1018
Reid Spencer3da59db2006-11-27 01:05:10 +00001019// Cast Operators
1020%type <CastOpVal> CastOps
1021%token <CastOpVal> TRUNC ZEXT SEXT FPTRUNC FPEXT BITCAST
1022%token <CastOpVal> UITOFP SITOFP FPTOUI FPTOSI INTTOPTR PTRTOINT
1023
Chris Lattner58af2a12006-02-15 07:22:58 +00001024// Other Operators
1025%type <OtherOpVal> ShiftOps
Reid Spencer3da59db2006-11-27 01:05:10 +00001026%token <OtherOpVal> PHI_TOK SELECT SHL LSHR ASHR VAARG
Chris Lattnerd5efe842006-04-08 01:18:56 +00001027%token <OtherOpVal> EXTRACTELEMENT INSERTELEMENT SHUFFLEVECTOR
Chris Lattner58af2a12006-02-15 07:22:58 +00001028
1029
1030%start Module
1031%%
1032
1033// Handle constant integer size restriction and conversion...
1034//
1035INTVAL : SINTVAL;
1036INTVAL : UINTVAL {
1037 if ($1 > (uint32_t)INT32_MAX) // Outside of my range!
Reid Spencer61c83e02006-08-18 08:43:06 +00001038 GEN_ERROR("Value too large for type!");
Chris Lattner58af2a12006-02-15 07:22:58 +00001039 $$ = (int32_t)$1;
Reid Spencer61c83e02006-08-18 08:43:06 +00001040 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001041};
1042
Chris Lattner58af2a12006-02-15 07:22:58 +00001043// Operations that are notably excluded from this list include:
1044// RET, BR, & SWITCH because they end basic blocks and are treated specially.
1045//
Reid Spencer3ed469c2006-11-02 20:25:50 +00001046ArithmeticOps: ADD | SUB | MUL | UDIV | SDIV | FDIV | UREM | SREM | FREM;
Chris Lattner58af2a12006-02-15 07:22:58 +00001047LogicalOps : AND | OR | XOR;
Reid Spencer3da59db2006-11-27 01:05:10 +00001048CastOps : TRUNC | ZEXT | SEXT | FPTRUNC | FPEXT | BITCAST |
1049 UITOFP | SITOFP | FPTOUI | FPTOSI | INTTOPTR | PTRTOINT;
1050ShiftOps : SHL | LSHR | ASHR;
Reid Spencer6e18b7d2006-12-03 06:59:29 +00001051IPredicates
Reid Spencer4012e832006-12-04 05:24:24 +00001052 : EQ { $$ = ICmpInst::ICMP_EQ; } | NE { $$ = ICmpInst::ICMP_NE; }
Reid Spencer6e18b7d2006-12-03 06:59:29 +00001053 | SLT { $$ = ICmpInst::ICMP_SLT; } | SGT { $$ = ICmpInst::ICMP_SGT; }
1054 | SLE { $$ = ICmpInst::ICMP_SLE; } | SGE { $$ = ICmpInst::ICMP_SGE; }
1055 | ULT { $$ = ICmpInst::ICMP_ULT; } | UGT { $$ = ICmpInst::ICMP_UGT; }
1056 | ULE { $$ = ICmpInst::ICMP_ULE; } | UGE { $$ = ICmpInst::ICMP_UGE; }
1057 ;
1058
1059FPredicates
1060 : OEQ { $$ = FCmpInst::FCMP_OEQ; } | ONE { $$ = FCmpInst::FCMP_ONE; }
1061 | OLT { $$ = FCmpInst::FCMP_OLT; } | OGT { $$ = FCmpInst::FCMP_OGT; }
1062 | OLE { $$ = FCmpInst::FCMP_OLE; } | OGE { $$ = FCmpInst::FCMP_OGE; }
1063 | ORD { $$ = FCmpInst::FCMP_ORD; } | UNO { $$ = FCmpInst::FCMP_UNO; }
1064 | UEQ { $$ = FCmpInst::FCMP_UEQ; } | UNE { $$ = FCmpInst::FCMP_UNE; }
1065 | ULT { $$ = FCmpInst::FCMP_ULT; } | UGT { $$ = FCmpInst::FCMP_UGT; }
1066 | ULE { $$ = FCmpInst::FCMP_ULE; } | UGE { $$ = FCmpInst::FCMP_UGE; }
1067 | TRUETOK { $$ = FCmpInst::FCMP_TRUE; }
1068 | FALSETOK { $$ = FCmpInst::FCMP_FALSE; }
1069 ;
Chris Lattner58af2a12006-02-15 07:22:58 +00001070
1071// These are some types that allow classification if we only want a particular
1072// thing... for example, only a signed, unsigned, or integral type.
Reid Spencer14310612006-12-31 05:40:51 +00001073IntType : INT64 | INT32 | INT16 | INT8;
Chris Lattner58af2a12006-02-15 07:22:58 +00001074FPType : FLOAT | DOUBLE;
1075
1076// OptAssign - Value producing statements have an optional assignment component
1077OptAssign : Name '=' {
1078 $$ = $1;
Reid Spencer61c83e02006-08-18 08:43:06 +00001079 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001080 }
1081 | /*empty*/ {
1082 $$ = 0;
Reid Spencer61c83e02006-08-18 08:43:06 +00001083 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001084 };
1085
Reid Spencer6fd36ab2006-12-29 20:35:03 +00001086GVInternalLinkage
1087 : INTERNAL { $$ = GlobalValue::InternalLinkage; }
1088 | WEAK { $$ = GlobalValue::WeakLinkage; }
1089 | LINKONCE { $$ = GlobalValue::LinkOnceLinkage; }
1090 | APPENDING { $$ = GlobalValue::AppendingLinkage; }
1091 | DLLEXPORT { $$ = GlobalValue::DLLExportLinkage; }
1092 ;
1093
1094GVExternalLinkage
1095 : DLLIMPORT { $$ = GlobalValue::DLLImportLinkage; }
1096 | EXTERN_WEAK { $$ = GlobalValue::ExternalWeakLinkage; }
1097 | EXTERNAL { $$ = GlobalValue::ExternalLinkage; }
1098 ;
1099
Reid Spencer14310612006-12-31 05:40:51 +00001100FunctionDeclareLinkage
1101 : /*empty*/ { $$ = GlobalValue::ExternalLinkage; }
1102 | DLLIMPORT { $$ = GlobalValue::DLLImportLinkage; }
1103 | EXTERN_WEAK { $$ = GlobalValue::ExternalWeakLinkage; }
Reid Spencer6fd36ab2006-12-29 20:35:03 +00001104 ;
1105
Reid Spencer14310612006-12-31 05:40:51 +00001106FunctionDefineLinkage
1107 : /*empty*/ { $$ = GlobalValue::ExternalLinkage; }
1108 | INTERNAL { $$ = GlobalValue::InternalLinkage; }
Reid Spencer6fd36ab2006-12-29 20:35:03 +00001109 | LINKONCE { $$ = GlobalValue::LinkOnceLinkage; }
1110 | WEAK { $$ = GlobalValue::WeakLinkage; }
1111 | DLLEXPORT { $$ = GlobalValue::DLLExportLinkage; }
Reid Spencer6fd36ab2006-12-29 20:35:03 +00001112 ;
Chris Lattner58af2a12006-02-15 07:22:58 +00001113
Anton Korobeynikovbcb97702006-09-17 20:25:45 +00001114OptCallingConv : /*empty*/ { $$ = CallingConv::C; } |
1115 CCC_TOK { $$ = CallingConv::C; } |
1116 CSRETCC_TOK { $$ = CallingConv::CSRet; } |
1117 FASTCC_TOK { $$ = CallingConv::Fast; } |
1118 COLDCC_TOK { $$ = CallingConv::Cold; } |
1119 X86_STDCALLCC_TOK { $$ = CallingConv::X86_StdCall; } |
1120 X86_FASTCALLCC_TOK { $$ = CallingConv::X86_FastCall; } |
1121 CC_TOK EUINT64VAL {
Chris Lattner58af2a12006-02-15 07:22:58 +00001122 if ((unsigned)$2 != $2)
Reid Spencer61c83e02006-08-18 08:43:06 +00001123 GEN_ERROR("Calling conv too large!");
Chris Lattner58af2a12006-02-15 07:22:58 +00001124 $$ = $2;
Reid Spencer61c83e02006-08-18 08:43:06 +00001125 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001126 };
1127
Reid Spencer14310612006-12-31 05:40:51 +00001128ParamAttr : ZEXT { $$ = FunctionType::ZExtAttribute; }
1129 | SEXT { $$ = FunctionType::SExtAttribute; }
1130 ;
1131
1132ParamAttrList : ParamAttr { $$ = $1; }
1133 | ParamAttrList ',' ParamAttr {
1134 $$ = FunctionType::ParameterAttributes($1 | $3);
1135 }
1136 ;
1137
1138OptParamAttrs : /* empty */ { $$ = FunctionType::NoAttributeSet; }
1139 | '@' ParamAttr { $$ = $2; }
1140 | '@' '(' ParamAttrList ')' { $$ = $3; }
1141 ;
1142
Chris Lattner58af2a12006-02-15 07:22:58 +00001143// OptAlign/OptCAlign - An optional alignment, and an optional alignment with
1144// a comma before it.
1145OptAlign : /*empty*/ { $$ = 0; } |
1146 ALIGN EUINT64VAL {
1147 $$ = $2;
1148 if ($$ != 0 && !isPowerOf2_32($$))
Reid Spencer61c83e02006-08-18 08:43:06 +00001149 GEN_ERROR("Alignment must be a power of two!");
1150 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001151};
1152OptCAlign : /*empty*/ { $$ = 0; } |
1153 ',' ALIGN EUINT64VAL {
1154 $$ = $3;
1155 if ($$ != 0 && !isPowerOf2_32($$))
Reid Spencer61c83e02006-08-18 08:43:06 +00001156 GEN_ERROR("Alignment must be a power of two!");
1157 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001158};
1159
1160
1161SectionString : SECTION STRINGCONSTANT {
1162 for (unsigned i = 0, e = strlen($2); i != e; ++i)
1163 if ($2[i] == '"' || $2[i] == '\\')
Reid Spencer61c83e02006-08-18 08:43:06 +00001164 GEN_ERROR("Invalid character in section name!");
Chris Lattner58af2a12006-02-15 07:22:58 +00001165 $$ = $2;
Reid Spencer61c83e02006-08-18 08:43:06 +00001166 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001167};
1168
1169OptSection : /*empty*/ { $$ = 0; } |
1170 SectionString { $$ = $1; };
1171
1172// GlobalVarAttributes - Used to pass the attributes string on a global. CurGV
1173// is set to be the global we are processing.
1174//
1175GlobalVarAttributes : /* empty */ {} |
1176 ',' GlobalVarAttribute GlobalVarAttributes {};
1177GlobalVarAttribute : SectionString {
1178 CurGV->setSection($1);
1179 free($1);
Reid Spencer61c83e02006-08-18 08:43:06 +00001180 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001181 }
1182 | ALIGN EUINT64VAL {
1183 if ($2 != 0 && !isPowerOf2_32($2))
Reid Spencer61c83e02006-08-18 08:43:06 +00001184 GEN_ERROR("Alignment must be a power of two!");
Chris Lattner58af2a12006-02-15 07:22:58 +00001185 CurGV->setAlignment($2);
Reid Spencer61c83e02006-08-18 08:43:06 +00001186 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001187 };
1188
1189//===----------------------------------------------------------------------===//
1190// Types includes all predefined types... except void, because it can only be
Reid Spencer14310612006-12-31 05:40:51 +00001191// used in specific contexts (function returning void for example).
Chris Lattner58af2a12006-02-15 07:22:58 +00001192
1193// Derived types are added later...
1194//
Reid Spencer14310612006-12-31 05:40:51 +00001195PrimType : BOOL | INT8 | INT16 | INT32 | INT64 | FLOAT | DOUBLE | LABEL ;
1196
1197Types
1198 : OPAQUE {
Reid Spencera132e042006-12-03 05:46:11 +00001199 $$ = new PATypeHolder(OpaqueType::get());
Reid Spencer61c83e02006-08-18 08:43:06 +00001200 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001201 }
1202 | PrimType {
Reid Spencera132e042006-12-03 05:46:11 +00001203 $$ = new PATypeHolder($1);
Reid Spencer61c83e02006-08-18 08:43:06 +00001204 CHECK_FOR_ERROR
Reid Spencer14310612006-12-31 05:40:51 +00001205 }
1206 | Types '*' { // Pointer type?
1207 if (*$1 == Type::LabelTy)
1208 GEN_ERROR("Cannot form a pointer to a basic block");
1209 $$ = new PATypeHolder(HandleUpRefs(PointerType::get(*$1)));
1210 delete $1;
1211 CHECK_FOR_ERROR
1212 }
1213 | SymbolicValueRef { // Named types are also simple types...
1214 const Type* tmp = getTypeVal($1);
1215 CHECK_FOR_ERROR
1216 $$ = new PATypeHolder(tmp);
1217 }
1218 | '\\' EUINT64VAL { // Type UpReference
Reid Spencer61c83e02006-08-18 08:43:06 +00001219 if ($2 > (uint64_t)~0U) GEN_ERROR("Value out of range!");
Chris Lattner58af2a12006-02-15 07:22:58 +00001220 OpaqueType *OT = OpaqueType::get(); // Use temporary placeholder
1221 UpRefs.push_back(UpRefRecord((unsigned)$2, OT)); // Add to vector...
Reid Spencera132e042006-12-03 05:46:11 +00001222 $$ = new PATypeHolder(OT);
Chris Lattner58af2a12006-02-15 07:22:58 +00001223 UR_OUT("New Upreference!\n");
Reid Spencer61c83e02006-08-18 08:43:06 +00001224 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001225 }
Reid Spencer14310612006-12-31 05:40:51 +00001226 | Types OptParamAttrs '(' ArgTypeListI ')' {
Chris Lattner58af2a12006-02-15 07:22:58 +00001227 std::vector<const Type*> Params;
Reid Spencer14310612006-12-31 05:40:51 +00001228 std::vector<FunctionType::ParameterAttributes> Attrs;
1229 Attrs.push_back($2);
1230 for (TypeWithAttrsList::iterator I=$4->begin(), E=$4->end(); I != E; ++I) {
1231 Params.push_back(I->Ty->get());
1232 if (I->Ty->get() != Type::VoidTy)
1233 Attrs.push_back(I->Attrs);
1234 }
Chris Lattner58af2a12006-02-15 07:22:58 +00001235 bool isVarArg = Params.size() && Params.back() == Type::VoidTy;
1236 if (isVarArg) Params.pop_back();
1237
Reid Spencer14310612006-12-31 05:40:51 +00001238 FunctionType *FT = FunctionType::get(*$1, Params, isVarArg, Attrs);
1239 delete $4; // Delete the argument list
1240 delete $1; // Delete the return type handle
1241 $$ = new PATypeHolder(HandleUpRefs(FT));
Reid Spencer61c83e02006-08-18 08:43:06 +00001242 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001243 }
Reid Spencer14310612006-12-31 05:40:51 +00001244 | VOID OptParamAttrs '(' ArgTypeListI ')' {
1245 std::vector<const Type*> Params;
1246 std::vector<FunctionType::ParameterAttributes> Attrs;
1247 Attrs.push_back($2);
1248 for (TypeWithAttrsList::iterator I=$4->begin(), E=$4->end(); I != E; ++I) {
1249 Params.push_back(I->Ty->get());
1250 if (I->Ty->get() != Type::VoidTy)
1251 Attrs.push_back(I->Attrs);
1252 }
1253 bool isVarArg = Params.size() && Params.back() == Type::VoidTy;
1254 if (isVarArg) Params.pop_back();
1255
1256 FunctionType *FT = FunctionType::get($1, Params, isVarArg, Attrs);
1257 delete $4; // Delete the argument list
1258 $$ = new PATypeHolder(HandleUpRefs(FT));
1259 CHECK_FOR_ERROR
1260 }
1261
1262 | '[' EUINT64VAL 'x' Types ']' { // Sized array type?
Reid Spencera132e042006-12-03 05:46:11 +00001263 $$ = new PATypeHolder(HandleUpRefs(ArrayType::get(*$4, (unsigned)$2)));
1264 delete $4;
Reid Spencer61c83e02006-08-18 08:43:06 +00001265 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001266 }
Reid Spencer14310612006-12-31 05:40:51 +00001267 | '<' EUINT64VAL 'x' Types '>' { // Packed array type?
Reid Spencera132e042006-12-03 05:46:11 +00001268 const llvm::Type* ElemTy = $4->get();
1269 if ((unsigned)$2 != $2)
1270 GEN_ERROR("Unsigned result not equal to signed result");
1271 if (!ElemTy->isPrimitiveType())
1272 GEN_ERROR("Elemental type of a PackedType must be primitive");
1273 if (!isPowerOf2_32($2))
1274 GEN_ERROR("Vector length should be a power of 2!");
1275 $$ = new PATypeHolder(HandleUpRefs(PackedType::get(*$4, (unsigned)$2)));
1276 delete $4;
1277 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001278 }
1279 | '{' TypeListI '}' { // Structure type?
1280 std::vector<const Type*> Elements;
Reid Spencera132e042006-12-03 05:46:11 +00001281 for (std::list<llvm::PATypeHolder>::iterator I = $2->begin(),
Chris Lattner58af2a12006-02-15 07:22:58 +00001282 E = $2->end(); I != E; ++I)
Reid Spencera132e042006-12-03 05:46:11 +00001283 Elements.push_back(*I);
Chris Lattner58af2a12006-02-15 07:22:58 +00001284
Reid Spencera132e042006-12-03 05:46:11 +00001285 $$ = new PATypeHolder(HandleUpRefs(StructType::get(Elements)));
Chris Lattner58af2a12006-02-15 07:22:58 +00001286 delete $2;
Reid Spencer61c83e02006-08-18 08:43:06 +00001287 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001288 }
1289 | '{' '}' { // Empty structure type?
Reid Spencera132e042006-12-03 05:46:11 +00001290 $$ = new PATypeHolder(StructType::get(std::vector<const Type*>()));
Reid Spencer61c83e02006-08-18 08:43:06 +00001291 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001292 }
Andrew Lenharth6353e052006-12-08 18:07:09 +00001293 | '<' '{' TypeListI '}' '>' {
1294 std::vector<const Type*> Elements;
1295 for (std::list<llvm::PATypeHolder>::iterator I = $3->begin(),
1296 E = $3->end(); I != E; ++I)
1297 Elements.push_back(*I);
1298
1299 $$ = new PATypeHolder(HandleUpRefs(StructType::get(Elements, true)));
1300 delete $3;
1301 CHECK_FOR_ERROR
1302 }
1303 | '<' '{' '}' '>' { // Empty structure type?
1304 $$ = new PATypeHolder(StructType::get(std::vector<const Type*>(), true));
1305 CHECK_FOR_ERROR
1306 }
Reid Spencer14310612006-12-31 05:40:51 +00001307 ;
1308
1309ArgType
1310 : Types OptParamAttrs {
1311 $$.Ty = $1;
1312 $$.Attrs = $2;
1313 }
1314 ;
1315
1316ResultType
1317 : Types OptParamAttrs {
1318 if (!UpRefs.empty())
1319 GEN_ERROR("Invalid upreference in type: " + (*$1)->getDescription());
1320 if (!(*$1)->isFirstClassType())
1321 GEN_ERROR("LLVM functions cannot return aggregate types!");
1322 $$.Ty = $1;
1323 $$.Attrs = $2;
1324 }
1325 | VOID OptParamAttrs {
1326 $$.Ty = new PATypeHolder(Type::VoidTy);
1327 $$.Attrs = $2;
1328 }
1329 ;
1330
1331ArgTypeList : ArgType {
1332 $$ = new TypeWithAttrsList();
1333 $$->push_back($1);
1334 CHECK_FOR_ERROR
1335 }
1336 | ArgTypeList ',' ArgType {
1337 ($$=$1)->push_back($3);
1338 CHECK_FOR_ERROR
1339 }
1340 ;
1341
1342ArgTypeListI
1343 : ArgTypeList
1344 | ArgTypeList ',' DOTDOTDOT {
1345 $$=$1;
1346 TypeWithAttrs TWA; TWA.Attrs = FunctionType::NoAttributeSet;
1347 TWA.Ty = new PATypeHolder(Type::VoidTy);
1348 $$->push_back(TWA);
1349 CHECK_FOR_ERROR
1350 }
1351 | DOTDOTDOT {
1352 $$ = new TypeWithAttrsList;
1353 TypeWithAttrs TWA; TWA.Attrs = FunctionType::NoAttributeSet;
1354 TWA.Ty = new PATypeHolder(Type::VoidTy);
1355 $$->push_back(TWA);
1356 CHECK_FOR_ERROR
1357 }
1358 | /*empty*/ {
1359 $$ = new TypeWithAttrsList();
Reid Spencer61c83e02006-08-18 08:43:06 +00001360 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001361 };
1362
1363// TypeList - Used for struct declarations and as a basis for function type
1364// declaration type lists
1365//
Reid Spencer14310612006-12-31 05:40:51 +00001366TypeListI : Types {
Reid Spencera132e042006-12-03 05:46:11 +00001367 $$ = new std::list<PATypeHolder>();
1368 $$->push_back(*$1); delete $1;
Reid Spencer61c83e02006-08-18 08:43:06 +00001369 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001370 }
Reid Spencer14310612006-12-31 05:40:51 +00001371 | TypeListI ',' Types {
Reid Spencera132e042006-12-03 05:46:11 +00001372 ($$=$1)->push_back(*$3); delete $3;
Reid Spencer61c83e02006-08-18 08:43:06 +00001373 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001374 };
1375
Chris Lattner58af2a12006-02-15 07:22:58 +00001376// ConstVal - The various declarations that go into the constant pool. This
1377// production is used ONLY to represent constants that show up AFTER a 'const',
1378// 'constant' or 'global' token at global scope. Constants that can be inlined
1379// into other expressions (such as integers and constexprs) are handled by the
1380// ResolvedVal, ValueRef and ConstValueRef productions.
1381//
1382ConstVal: Types '[' ConstVector ']' { // Nonempty unsized arr
Reid Spencer14310612006-12-31 05:40:51 +00001383 if (!UpRefs.empty())
1384 GEN_ERROR("Invalid upreference in type: " + (*$1)->getDescription());
Reid Spencera132e042006-12-03 05:46:11 +00001385 const ArrayType *ATy = dyn_cast<ArrayType>($1->get());
Chris Lattner58af2a12006-02-15 07:22:58 +00001386 if (ATy == 0)
Reid Spencer61c83e02006-08-18 08:43:06 +00001387 GEN_ERROR("Cannot make array constant with type: '" +
Reid Spencera132e042006-12-03 05:46:11 +00001388 (*$1)->getDescription() + "'!");
Chris Lattner58af2a12006-02-15 07:22:58 +00001389 const Type *ETy = ATy->getElementType();
1390 int NumElements = ATy->getNumElements();
1391
1392 // Verify that we have the correct size...
1393 if (NumElements != -1 && NumElements != (int)$3->size())
Reid Spencer61c83e02006-08-18 08:43:06 +00001394 GEN_ERROR("Type mismatch: constant sized array initialized with " +
Chris Lattner58af2a12006-02-15 07:22:58 +00001395 utostr($3->size()) + " arguments, but has size of " +
1396 itostr(NumElements) + "!");
1397
1398 // Verify all elements are correct type!
1399 for (unsigned i = 0; i < $3->size(); i++) {
Reid Spencera132e042006-12-03 05:46:11 +00001400 if (ETy != (*$3)[i]->getType())
Reid Spencer61c83e02006-08-18 08:43:06 +00001401 GEN_ERROR("Element #" + utostr(i) + " is not of type '" +
Chris Lattner58af2a12006-02-15 07:22:58 +00001402 ETy->getDescription() +"' as required!\nIt is of type '"+
Reid Spencera132e042006-12-03 05:46:11 +00001403 (*$3)[i]->getType()->getDescription() + "'.");
Chris Lattner58af2a12006-02-15 07:22:58 +00001404 }
1405
Reid Spencera132e042006-12-03 05:46:11 +00001406 $$ = ConstantArray::get(ATy, *$3);
1407 delete $1; delete $3;
Reid Spencer61c83e02006-08-18 08:43:06 +00001408 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001409 }
1410 | Types '[' ']' {
Reid Spencer14310612006-12-31 05:40:51 +00001411 if (!UpRefs.empty())
1412 GEN_ERROR("Invalid upreference in type: " + (*$1)->getDescription());
Reid Spencera132e042006-12-03 05:46:11 +00001413 const ArrayType *ATy = dyn_cast<ArrayType>($1->get());
Chris Lattner58af2a12006-02-15 07:22:58 +00001414 if (ATy == 0)
Reid Spencer61c83e02006-08-18 08:43:06 +00001415 GEN_ERROR("Cannot make array constant with type: '" +
Reid Spencera132e042006-12-03 05:46:11 +00001416 (*$1)->getDescription() + "'!");
Chris Lattner58af2a12006-02-15 07:22:58 +00001417
1418 int NumElements = ATy->getNumElements();
1419 if (NumElements != -1 && NumElements != 0)
Reid Spencer61c83e02006-08-18 08:43:06 +00001420 GEN_ERROR("Type mismatch: constant sized array initialized with 0"
Chris Lattner58af2a12006-02-15 07:22:58 +00001421 " arguments, but has size of " + itostr(NumElements) +"!");
Reid Spencera132e042006-12-03 05:46:11 +00001422 $$ = ConstantArray::get(ATy, std::vector<Constant*>());
1423 delete $1;
Reid Spencer61c83e02006-08-18 08:43:06 +00001424 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001425 }
1426 | Types 'c' STRINGCONSTANT {
Reid Spencer14310612006-12-31 05:40:51 +00001427 if (!UpRefs.empty())
1428 GEN_ERROR("Invalid upreference in type: " + (*$1)->getDescription());
Reid Spencera132e042006-12-03 05:46:11 +00001429 const ArrayType *ATy = dyn_cast<ArrayType>($1->get());
Chris Lattner58af2a12006-02-15 07:22:58 +00001430 if (ATy == 0)
Reid Spencer61c83e02006-08-18 08:43:06 +00001431 GEN_ERROR("Cannot make array constant with type: '" +
Reid Spencera132e042006-12-03 05:46:11 +00001432 (*$1)->getDescription() + "'!");
Chris Lattner58af2a12006-02-15 07:22:58 +00001433
1434 int NumElements = ATy->getNumElements();
1435 const Type *ETy = ATy->getElementType();
1436 char *EndStr = UnEscapeLexed($3, true);
1437 if (NumElements != -1 && NumElements != (EndStr-$3))
Reid Spencer61c83e02006-08-18 08:43:06 +00001438 GEN_ERROR("Can't build string constant of size " +
Chris Lattner58af2a12006-02-15 07:22:58 +00001439 itostr((int)(EndStr-$3)) +
1440 " when array has size " + itostr(NumElements) + "!");
1441 std::vector<Constant*> Vals;
Reid Spencer14310612006-12-31 05:40:51 +00001442 if (ETy == Type::Int8Ty) {
Chris Lattner58af2a12006-02-15 07:22:58 +00001443 for (unsigned char *C = (unsigned char *)$3;
Reid Spencer14310612006-12-31 05:40:51 +00001444 C != (unsigned char*)EndStr; ++C)
1445 Vals.push_back(ConstantInt::get(ETy, *C));
Chris Lattner58af2a12006-02-15 07:22:58 +00001446 } else {
1447 free($3);
Reid Spencer61c83e02006-08-18 08:43:06 +00001448 GEN_ERROR("Cannot build string arrays of non byte sized elements!");
Chris Lattner58af2a12006-02-15 07:22:58 +00001449 }
1450 free($3);
Reid Spencera132e042006-12-03 05:46:11 +00001451 $$ = ConstantArray::get(ATy, Vals);
1452 delete $1;
Reid Spencer61c83e02006-08-18 08:43:06 +00001453 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001454 }
1455 | Types '<' ConstVector '>' { // Nonempty unsized arr
Reid Spencer14310612006-12-31 05:40:51 +00001456 if (!UpRefs.empty())
1457 GEN_ERROR("Invalid upreference in type: " + (*$1)->getDescription());
Reid Spencera132e042006-12-03 05:46:11 +00001458 const PackedType *PTy = dyn_cast<PackedType>($1->get());
Chris Lattner58af2a12006-02-15 07:22:58 +00001459 if (PTy == 0)
Reid Spencer61c83e02006-08-18 08:43:06 +00001460 GEN_ERROR("Cannot make packed constant with type: '" +
Reid Spencera132e042006-12-03 05:46:11 +00001461 (*$1)->getDescription() + "'!");
Chris Lattner58af2a12006-02-15 07:22:58 +00001462 const Type *ETy = PTy->getElementType();
1463 int NumElements = PTy->getNumElements();
1464
1465 // Verify that we have the correct size...
1466 if (NumElements != -1 && NumElements != (int)$3->size())
Reid Spencer61c83e02006-08-18 08:43:06 +00001467 GEN_ERROR("Type mismatch: constant sized packed initialized with " +
Chris Lattner58af2a12006-02-15 07:22:58 +00001468 utostr($3->size()) + " arguments, but has size of " +
1469 itostr(NumElements) + "!");
1470
1471 // Verify all elements are correct type!
1472 for (unsigned i = 0; i < $3->size(); i++) {
Reid Spencera132e042006-12-03 05:46:11 +00001473 if (ETy != (*$3)[i]->getType())
Reid Spencer61c83e02006-08-18 08:43:06 +00001474 GEN_ERROR("Element #" + utostr(i) + " is not of type '" +
Chris Lattner58af2a12006-02-15 07:22:58 +00001475 ETy->getDescription() +"' as required!\nIt is of type '"+
Reid Spencera132e042006-12-03 05:46:11 +00001476 (*$3)[i]->getType()->getDescription() + "'.");
Chris Lattner58af2a12006-02-15 07:22:58 +00001477 }
1478
Reid Spencera132e042006-12-03 05:46:11 +00001479 $$ = ConstantPacked::get(PTy, *$3);
1480 delete $1; delete $3;
Reid Spencer61c83e02006-08-18 08:43:06 +00001481 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001482 }
1483 | Types '{' ConstVector '}' {
Reid Spencera132e042006-12-03 05:46:11 +00001484 const StructType *STy = dyn_cast<StructType>($1->get());
Chris Lattner58af2a12006-02-15 07:22:58 +00001485 if (STy == 0)
Reid Spencer61c83e02006-08-18 08:43:06 +00001486 GEN_ERROR("Cannot make struct constant with type: '" +
Reid Spencera132e042006-12-03 05:46:11 +00001487 (*$1)->getDescription() + "'!");
Chris Lattner58af2a12006-02-15 07:22:58 +00001488
1489 if ($3->size() != STy->getNumContainedTypes())
Reid Spencer61c83e02006-08-18 08:43:06 +00001490 GEN_ERROR("Illegal number of initializers for structure type!");
Chris Lattner58af2a12006-02-15 07:22:58 +00001491
1492 // Check to ensure that constants are compatible with the type initializer!
1493 for (unsigned i = 0, e = $3->size(); i != e; ++i)
Reid Spencera132e042006-12-03 05:46:11 +00001494 if ((*$3)[i]->getType() != STy->getElementType(i))
Reid Spencer61c83e02006-08-18 08:43:06 +00001495 GEN_ERROR("Expected type '" +
Chris Lattner58af2a12006-02-15 07:22:58 +00001496 STy->getElementType(i)->getDescription() +
1497 "' for element #" + utostr(i) +
1498 " of structure initializer!");
1499
Reid Spencera132e042006-12-03 05:46:11 +00001500 $$ = ConstantStruct::get(STy, *$3);
1501 delete $1; delete $3;
Reid Spencer61c83e02006-08-18 08:43:06 +00001502 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001503 }
1504 | Types '{' '}' {
Reid Spencer14310612006-12-31 05:40:51 +00001505 if (!UpRefs.empty())
1506 GEN_ERROR("Invalid upreference in type: " + (*$1)->getDescription());
Reid Spencera132e042006-12-03 05:46:11 +00001507 const StructType *STy = dyn_cast<StructType>($1->get());
Chris Lattner58af2a12006-02-15 07:22:58 +00001508 if (STy == 0)
Reid Spencer61c83e02006-08-18 08:43:06 +00001509 GEN_ERROR("Cannot make struct constant with type: '" +
Reid Spencera132e042006-12-03 05:46:11 +00001510 (*$1)->getDescription() + "'!");
Chris Lattner58af2a12006-02-15 07:22:58 +00001511
1512 if (STy->getNumContainedTypes() != 0)
Reid Spencer61c83e02006-08-18 08:43:06 +00001513 GEN_ERROR("Illegal number of initializers for structure type!");
Chris Lattner58af2a12006-02-15 07:22:58 +00001514
Reid Spencera132e042006-12-03 05:46:11 +00001515 $$ = ConstantStruct::get(STy, std::vector<Constant*>());
1516 delete $1;
Reid Spencer61c83e02006-08-18 08:43:06 +00001517 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001518 }
1519 | Types NULL_TOK {
Reid Spencer14310612006-12-31 05:40:51 +00001520 if (!UpRefs.empty())
1521 GEN_ERROR("Invalid upreference in type: " + (*$1)->getDescription());
Reid Spencera132e042006-12-03 05:46:11 +00001522 const PointerType *PTy = dyn_cast<PointerType>($1->get());
Chris Lattner58af2a12006-02-15 07:22:58 +00001523 if (PTy == 0)
Reid Spencer61c83e02006-08-18 08:43:06 +00001524 GEN_ERROR("Cannot make null pointer constant with type: '" +
Reid Spencera132e042006-12-03 05:46:11 +00001525 (*$1)->getDescription() + "'!");
Chris Lattner58af2a12006-02-15 07:22:58 +00001526
Reid Spencera132e042006-12-03 05:46:11 +00001527 $$ = ConstantPointerNull::get(PTy);
1528 delete $1;
Reid Spencer61c83e02006-08-18 08:43:06 +00001529 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001530 }
1531 | Types UNDEF {
Reid Spencer14310612006-12-31 05:40:51 +00001532 if (!UpRefs.empty())
1533 GEN_ERROR("Invalid upreference in type: " + (*$1)->getDescription());
Reid Spencera132e042006-12-03 05:46:11 +00001534 $$ = UndefValue::get($1->get());
1535 delete $1;
Reid Spencer61c83e02006-08-18 08:43:06 +00001536 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001537 }
1538 | Types SymbolicValueRef {
Reid Spencer14310612006-12-31 05:40:51 +00001539 if (!UpRefs.empty())
1540 GEN_ERROR("Invalid upreference in type: " + (*$1)->getDescription());
Reid Spencera132e042006-12-03 05:46:11 +00001541 const PointerType *Ty = dyn_cast<PointerType>($1->get());
Chris Lattner58af2a12006-02-15 07:22:58 +00001542 if (Ty == 0)
Reid Spencer61c83e02006-08-18 08:43:06 +00001543 GEN_ERROR("Global const reference must be a pointer type!");
Chris Lattner58af2a12006-02-15 07:22:58 +00001544
1545 // ConstExprs can exist in the body of a function, thus creating
1546 // GlobalValues whenever they refer to a variable. Because we are in
1547 // the context of a function, getValNonImprovising will search the functions
1548 // symbol table instead of the module symbol table for the global symbol,
1549 // which throws things all off. To get around this, we just tell
1550 // getValNonImprovising that we are at global scope here.
1551 //
1552 Function *SavedCurFn = CurFun.CurrentFunction;
1553 CurFun.CurrentFunction = 0;
1554
1555 Value *V = getValNonImprovising(Ty, $2);
Reid Spencer5b7e7532006-09-28 19:28:24 +00001556 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001557
1558 CurFun.CurrentFunction = SavedCurFn;
1559
1560 // If this is an initializer for a constant pointer, which is referencing a
1561 // (currently) undefined variable, create a stub now that shall be replaced
1562 // in the future with the right type of variable.
1563 //
1564 if (V == 0) {
1565 assert(isa<PointerType>(Ty) && "Globals may only be used as pointers!");
1566 const PointerType *PT = cast<PointerType>(Ty);
1567
1568 // First check to see if the forward references value is already created!
1569 PerModuleInfo::GlobalRefsType::iterator I =
1570 CurModule.GlobalRefs.find(std::make_pair(PT, $2));
1571
1572 if (I != CurModule.GlobalRefs.end()) {
1573 V = I->second; // Placeholder already exists, use it...
1574 $2.destroy();
1575 } else {
1576 std::string Name;
1577 if ($2.Type == ValID::NameVal) Name = $2.Name;
1578
1579 // Create the forward referenced global.
1580 GlobalValue *GV;
1581 if (const FunctionType *FTy =
1582 dyn_cast<FunctionType>(PT->getElementType())) {
1583 GV = new Function(FTy, GlobalValue::ExternalLinkage, Name,
1584 CurModule.CurrentModule);
1585 } else {
1586 GV = new GlobalVariable(PT->getElementType(), false,
1587 GlobalValue::ExternalLinkage, 0,
1588 Name, CurModule.CurrentModule);
1589 }
1590
1591 // Keep track of the fact that we have a forward ref to recycle it
1592 CurModule.GlobalRefs.insert(std::make_pair(std::make_pair(PT, $2), GV));
1593 V = GV;
1594 }
1595 }
1596
Reid Spencera132e042006-12-03 05:46:11 +00001597 $$ = cast<GlobalValue>(V);
1598 delete $1; // Free the type handle
Reid Spencer61c83e02006-08-18 08:43:06 +00001599 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001600 }
1601 | Types ConstExpr {
Reid Spencer14310612006-12-31 05:40:51 +00001602 if (!UpRefs.empty())
1603 GEN_ERROR("Invalid upreference in type: " + (*$1)->getDescription());
Reid Spencera132e042006-12-03 05:46:11 +00001604 if ($1->get() != $2->getType())
Reid Spencere68853b2007-01-04 00:06:14 +00001605 GEN_ERROR("Mismatched types for constant expression: " +
1606 (*$1)->getDescription() + " and " + $2->getType()->getDescription());
Chris Lattner58af2a12006-02-15 07:22:58 +00001607 $$ = $2;
Reid Spencera132e042006-12-03 05:46:11 +00001608 delete $1;
Reid Spencer61c83e02006-08-18 08:43:06 +00001609 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001610 }
1611 | Types ZEROINITIALIZER {
Reid Spencer14310612006-12-31 05:40:51 +00001612 if (!UpRefs.empty())
1613 GEN_ERROR("Invalid upreference in type: " + (*$1)->getDescription());
Reid Spencera132e042006-12-03 05:46:11 +00001614 const Type *Ty = $1->get();
Chris Lattner58af2a12006-02-15 07:22:58 +00001615 if (isa<FunctionType>(Ty) || Ty == Type::LabelTy || isa<OpaqueType>(Ty))
Reid Spencer61c83e02006-08-18 08:43:06 +00001616 GEN_ERROR("Cannot create a null initialized value of this type!");
Reid Spencera132e042006-12-03 05:46:11 +00001617 $$ = Constant::getNullValue(Ty);
1618 delete $1;
Reid Spencer61c83e02006-08-18 08:43:06 +00001619 CHECK_FOR_ERROR
Reid Spencera132e042006-12-03 05:46:11 +00001620 }
Reid Spencer14310612006-12-31 05:40:51 +00001621 | IntType ESINT64VAL { // integral constants
Reid Spencere4d87aa2006-12-23 06:05:41 +00001622 if (!ConstantInt::isValueValidForType($1, $2))
1623 GEN_ERROR("Constant value doesn't fit in type!");
1624 $$ = ConstantInt::get($1, $2);
1625 CHECK_FOR_ERROR
1626 }
Reid Spencer14310612006-12-31 05:40:51 +00001627 | IntType EUINT64VAL { // integral constants
Reid Spencere4d87aa2006-12-23 06:05:41 +00001628 if (!ConstantInt::isValueValidForType($1, $2))
1629 GEN_ERROR("Constant value doesn't fit in type!");
1630 $$ = ConstantInt::get($1, $2);
1631 CHECK_FOR_ERROR
1632 }
Chris Lattner58af2a12006-02-15 07:22:58 +00001633 | BOOL TRUETOK { // Boolean constants
Reid Spencera132e042006-12-03 05:46:11 +00001634 $$ = ConstantBool::getTrue();
Reid Spencer61c83e02006-08-18 08:43:06 +00001635 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001636 }
1637 | BOOL FALSETOK { // Boolean constants
Reid Spencera132e042006-12-03 05:46:11 +00001638 $$ = ConstantBool::getFalse();
Reid Spencer61c83e02006-08-18 08:43:06 +00001639 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001640 }
1641 | FPType FPVAL { // Float & Double constants
Reid Spencera132e042006-12-03 05:46:11 +00001642 if (!ConstantFP::isValueValidForType($1, $2))
Reid Spencer61c83e02006-08-18 08:43:06 +00001643 GEN_ERROR("Floating point constant invalid for type!!");
Reid Spencera132e042006-12-03 05:46:11 +00001644 $$ = ConstantFP::get($1, $2);
Reid Spencer61c83e02006-08-18 08:43:06 +00001645 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001646 };
1647
1648
Reid Spencer3da59db2006-11-27 01:05:10 +00001649ConstExpr: CastOps '(' ConstVal TO Types ')' {
Reid Spencer14310612006-12-31 05:40:51 +00001650 if (!UpRefs.empty())
1651 GEN_ERROR("Invalid upreference in type: " + (*$5)->getDescription());
Reid Spencera132e042006-12-03 05:46:11 +00001652 Constant *Val = $3;
1653 const Type *Ty = $5->get();
Reid Spencer3da59db2006-11-27 01:05:10 +00001654 if (!Val->getType()->isFirstClassType())
Reid Spencer61c83e02006-08-18 08:43:06 +00001655 GEN_ERROR("cast constant expression from a non-primitive type: '" +
Reid Spencer3da59db2006-11-27 01:05:10 +00001656 Val->getType()->getDescription() + "'!");
1657 if (!Ty->isFirstClassType())
Reid Spencer61c83e02006-08-18 08:43:06 +00001658 GEN_ERROR("cast constant expression to a non-primitive type: '" +
Reid Spencer3da59db2006-11-27 01:05:10 +00001659 Ty->getDescription() + "'!");
Reid Spencera132e042006-12-03 05:46:11 +00001660 $$ = ConstantExpr::getCast($1, $3, $5->get());
1661 delete $5;
Chris Lattner58af2a12006-02-15 07:22:58 +00001662 }
1663 | GETELEMENTPTR '(' ConstVal IndexList ')' {
Reid Spencera132e042006-12-03 05:46:11 +00001664 if (!isa<PointerType>($3->getType()))
Reid Spencer61c83e02006-08-18 08:43:06 +00001665 GEN_ERROR("GetElementPtr requires a pointer operand!");
Chris Lattner58af2a12006-02-15 07:22:58 +00001666
Reid Spencera132e042006-12-03 05:46:11 +00001667 const Type *IdxTy =
1668 GetElementPtrInst::getIndexedType($3->getType(), *$4, true);
1669 if (!IdxTy)
1670 GEN_ERROR("Index list invalid for constant getelementptr!");
1671
1672 std::vector<Constant*> IdxVec;
1673 for (unsigned i = 0, e = $4->size(); i != e; ++i)
1674 if (Constant *C = dyn_cast<Constant>((*$4)[i]))
Chris Lattner58af2a12006-02-15 07:22:58 +00001675 IdxVec.push_back(C);
1676 else
Reid Spencer61c83e02006-08-18 08:43:06 +00001677 GEN_ERROR("Indices to constant getelementptr must be constants!");
Chris Lattner58af2a12006-02-15 07:22:58 +00001678
1679 delete $4;
1680
Reid Spencera132e042006-12-03 05:46:11 +00001681 $$ = ConstantExpr::getGetElementPtr($3, IdxVec);
Reid Spencer61c83e02006-08-18 08:43:06 +00001682 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001683 }
1684 | SELECT '(' ConstVal ',' ConstVal ',' ConstVal ')' {
Reid Spencera132e042006-12-03 05:46:11 +00001685 if ($3->getType() != Type::BoolTy)
Reid Spencer61c83e02006-08-18 08:43:06 +00001686 GEN_ERROR("Select condition must be of boolean type!");
Reid Spencera132e042006-12-03 05:46:11 +00001687 if ($5->getType() != $7->getType())
Reid Spencer61c83e02006-08-18 08:43:06 +00001688 GEN_ERROR("Select operand types must match!");
Reid Spencera132e042006-12-03 05:46:11 +00001689 $$ = ConstantExpr::getSelect($3, $5, $7);
Reid Spencer61c83e02006-08-18 08:43:06 +00001690 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001691 }
1692 | ArithmeticOps '(' ConstVal ',' ConstVal ')' {
Reid Spencera132e042006-12-03 05:46:11 +00001693 if ($3->getType() != $5->getType())
Reid Spencer61c83e02006-08-18 08:43:06 +00001694 GEN_ERROR("Binary operator types must match!");
Reid Spencer1628cec2006-10-26 06:15:43 +00001695 CHECK_FOR_ERROR;
Reid Spencer9eef56f2006-12-05 19:16:11 +00001696 $$ = ConstantExpr::get($1, $3, $5);
Chris Lattner58af2a12006-02-15 07:22:58 +00001697 }
1698 | LogicalOps '(' ConstVal ',' ConstVal ')' {
Reid Spencera132e042006-12-03 05:46:11 +00001699 if ($3->getType() != $5->getType())
Reid Spencer61c83e02006-08-18 08:43:06 +00001700 GEN_ERROR("Logical operator types must match!");
Reid Spencera132e042006-12-03 05:46:11 +00001701 if (!$3->getType()->isIntegral()) {
1702 if (!isa<PackedType>($3->getType()) ||
1703 !cast<PackedType>($3->getType())->getElementType()->isIntegral())
Reid Spencer61c83e02006-08-18 08:43:06 +00001704 GEN_ERROR("Logical operator requires integral operands!");
Chris Lattner58af2a12006-02-15 07:22:58 +00001705 }
Reid Spencera132e042006-12-03 05:46:11 +00001706 $$ = ConstantExpr::get($1, $3, $5);
Reid Spencer61c83e02006-08-18 08:43:06 +00001707 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001708 }
Reid Spencer4012e832006-12-04 05:24:24 +00001709 | ICMP IPredicates '(' ConstVal ',' ConstVal ')' {
1710 if ($4->getType() != $6->getType())
Reid Spencera132e042006-12-03 05:46:11 +00001711 GEN_ERROR("icmp operand types must match!");
Reid Spencer4012e832006-12-04 05:24:24 +00001712 $$ = ConstantExpr::getICmp($2, $4, $6);
Reid Spencera132e042006-12-03 05:46:11 +00001713 }
Reid Spencer4012e832006-12-04 05:24:24 +00001714 | FCMP FPredicates '(' ConstVal ',' ConstVal ')' {
1715 if ($4->getType() != $6->getType())
Reid Spencera132e042006-12-03 05:46:11 +00001716 GEN_ERROR("fcmp operand types must match!");
Reid Spencer4012e832006-12-04 05:24:24 +00001717 $$ = ConstantExpr::getFCmp($2, $4, $6);
Reid Spencera132e042006-12-03 05:46:11 +00001718 }
Chris Lattner58af2a12006-02-15 07:22:58 +00001719 | ShiftOps '(' ConstVal ',' ConstVal ')' {
Reid Spencer14310612006-12-31 05:40:51 +00001720 if ($5->getType() != Type::Int8Ty)
1721 GEN_ERROR("Shift count for shift constant must be i8 type!");
Reid Spencera132e042006-12-03 05:46:11 +00001722 if (!$3->getType()->isInteger())
Reid Spencer61c83e02006-08-18 08:43:06 +00001723 GEN_ERROR("Shift constant expression requires integer operand!");
Reid Spencer3822ff52006-11-08 06:47:33 +00001724 CHECK_FOR_ERROR;
Reid Spencera132e042006-12-03 05:46:11 +00001725 $$ = ConstantExpr::get($1, $3, $5);
Reid Spencer61c83e02006-08-18 08:43:06 +00001726 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001727 }
1728 | EXTRACTELEMENT '(' ConstVal ',' ConstVal ')' {
Reid Spencera132e042006-12-03 05:46:11 +00001729 if (!ExtractElementInst::isValidOperands($3, $5))
Reid Spencer61c83e02006-08-18 08:43:06 +00001730 GEN_ERROR("Invalid extractelement operands!");
Reid Spencera132e042006-12-03 05:46:11 +00001731 $$ = ConstantExpr::getExtractElement($3, $5);
Reid Spencer61c83e02006-08-18 08:43:06 +00001732 CHECK_FOR_ERROR
Chris Lattnerd25db202006-04-08 03:55:17 +00001733 }
1734 | INSERTELEMENT '(' ConstVal ',' ConstVal ',' ConstVal ')' {
Reid Spencera132e042006-12-03 05:46:11 +00001735 if (!InsertElementInst::isValidOperands($3, $5, $7))
Reid Spencer61c83e02006-08-18 08:43:06 +00001736 GEN_ERROR("Invalid insertelement operands!");
Reid Spencera132e042006-12-03 05:46:11 +00001737 $$ = ConstantExpr::getInsertElement($3, $5, $7);
Reid Spencer61c83e02006-08-18 08:43:06 +00001738 CHECK_FOR_ERROR
Chris Lattnerd25db202006-04-08 03:55:17 +00001739 }
1740 | SHUFFLEVECTOR '(' ConstVal ',' ConstVal ',' ConstVal ')' {
Reid Spencera132e042006-12-03 05:46:11 +00001741 if (!ShuffleVectorInst::isValidOperands($3, $5, $7))
Reid Spencer61c83e02006-08-18 08:43:06 +00001742 GEN_ERROR("Invalid shufflevector operands!");
Reid Spencera132e042006-12-03 05:46:11 +00001743 $$ = ConstantExpr::getShuffleVector($3, $5, $7);
Reid Spencer61c83e02006-08-18 08:43:06 +00001744 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001745 };
1746
Chris Lattnerd25db202006-04-08 03:55:17 +00001747
Chris Lattner58af2a12006-02-15 07:22:58 +00001748// ConstVector - A list of comma separated constants.
1749ConstVector : ConstVector ',' ConstVal {
1750 ($$ = $1)->push_back($3);
Reid Spencer61c83e02006-08-18 08:43:06 +00001751 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001752 }
1753 | ConstVal {
Reid Spencera132e042006-12-03 05:46:11 +00001754 $$ = new std::vector<Constant*>();
Chris Lattner58af2a12006-02-15 07:22:58 +00001755 $$->push_back($1);
Reid Spencer61c83e02006-08-18 08:43:06 +00001756 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001757 };
1758
1759
1760// GlobalType - Match either GLOBAL or CONSTANT for global declarations...
1761GlobalType : GLOBAL { $$ = false; } | CONSTANT { $$ = true; };
1762
1763
1764//===----------------------------------------------------------------------===//
1765// Rules to match Modules
1766//===----------------------------------------------------------------------===//
1767
1768// Module rule: Capture the result of parsing the whole file into a result
1769// variable...
1770//
Reid Spencer6fd36ab2006-12-29 20:35:03 +00001771Module
1772 : DefinitionList {
1773 $$ = ParserResult = CurModule.CurrentModule;
1774 CurModule.ModuleDone();
1775 CHECK_FOR_ERROR;
1776 }
1777 | /*empty*/ {
1778 $$ = ParserResult = CurModule.CurrentModule;
1779 CurModule.ModuleDone();
1780 CHECK_FOR_ERROR;
1781 }
1782 ;
Chris Lattner58af2a12006-02-15 07:22:58 +00001783
Reid Spencer6fd36ab2006-12-29 20:35:03 +00001784DefinitionList
1785 : Definition
1786 | DefinitionList Definition
1787 ;
1788
1789Definition
1790 : DEFINE { CurFun.isDeclare = false } Function {
Chris Lattner58af2a12006-02-15 07:22:58 +00001791 CurFun.FunctionDone();
Reid Spencer61c83e02006-08-18 08:43:06 +00001792 CHECK_FOR_ERROR
Reid Spencer6fd36ab2006-12-29 20:35:03 +00001793 }
1794 | DECLARE { CurFun.isDeclare = true; } FunctionProto {
Reid Spencer61c83e02006-08-18 08:43:06 +00001795 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001796 }
Reid Spencer6fd36ab2006-12-29 20:35:03 +00001797 | MODULE ASM_TOK AsmBlock {
Reid Spencer61c83e02006-08-18 08:43:06 +00001798 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001799 }
Reid Spencer6fd36ab2006-12-29 20:35:03 +00001800 | IMPLEMENTATION {
Chris Lattner58af2a12006-02-15 07:22:58 +00001801 // Emit an error if there are any unresolved types left.
1802 if (!CurModule.LateResolveTypes.empty()) {
1803 const ValID &DID = CurModule.LateResolveTypes.begin()->first;
Reid Spencer61c83e02006-08-18 08:43:06 +00001804 if (DID.Type == ValID::NameVal) {
1805 GEN_ERROR("Reference to an undefined type: '"+DID.getName() + "'");
1806 } else {
1807 GEN_ERROR("Reference to an undefined type: #" + itostr(DID.Num));
1808 }
Chris Lattner58af2a12006-02-15 07:22:58 +00001809 }
Reid Spencer61c83e02006-08-18 08:43:06 +00001810 CHECK_FOR_ERROR
Reid Spencer6fd36ab2006-12-29 20:35:03 +00001811 }
Reid Spencer14310612006-12-31 05:40:51 +00001812 | OptAssign TYPE Types {
1813 if (!UpRefs.empty())
1814 GEN_ERROR("Invalid upreference in type: " + (*$3)->getDescription());
Chris Lattner58af2a12006-02-15 07:22:58 +00001815 // Eagerly resolve types. This is not an optimization, this is a
1816 // requirement that is due to the fact that we could have this:
1817 //
1818 // %list = type { %list * }
1819 // %list = type { %list * } ; repeated type decl
1820 //
1821 // If types are not resolved eagerly, then the two types will not be
1822 // determined to be the same type!
1823 //
Reid Spencer6fd36ab2006-12-29 20:35:03 +00001824 ResolveTypeTo($1, *$3);
Chris Lattner58af2a12006-02-15 07:22:58 +00001825
Reid Spencer6fd36ab2006-12-29 20:35:03 +00001826 if (!setTypeName(*$3, $1) && !$1) {
Reid Spencer5b7e7532006-09-28 19:28:24 +00001827 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001828 // If this is a named type that is not a redefinition, add it to the slot
1829 // table.
Reid Spencer6fd36ab2006-12-29 20:35:03 +00001830 CurModule.Types.push_back(*$3);
Chris Lattner58af2a12006-02-15 07:22:58 +00001831 }
Reid Spencera132e042006-12-03 05:46:11 +00001832
Reid Spencer6fd36ab2006-12-29 20:35:03 +00001833 delete $3;
Reid Spencer61c83e02006-08-18 08:43:06 +00001834 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001835 }
Reid Spencer14310612006-12-31 05:40:51 +00001836 | OptAssign TYPE VOID {
1837 ResolveTypeTo($1, $3);
1838
1839 if (!setTypeName($3, $1) && !$1) {
1840 CHECK_FOR_ERROR
1841 // If this is a named type that is not a redefinition, add it to the slot
1842 // table.
1843 CurModule.Types.push_back($3);
1844 }
1845 CHECK_FOR_ERROR
1846 }
Reid Spencer6fd36ab2006-12-29 20:35:03 +00001847 | OptAssign GlobalType ConstVal { /* "Externally Visible" Linkage */
1848 if ($3 == 0)
Reid Spencer5b7e7532006-09-28 19:28:24 +00001849 GEN_ERROR("Global value initializer is not a constant!");
Reid Spencer6fd36ab2006-12-29 20:35:03 +00001850 CurGV = ParseGlobalVariable($1, GlobalValue::ExternalLinkage, $2,
1851 $3->getType(), $3);
Reid Spencer61c83e02006-08-18 08:43:06 +00001852 CHECK_FOR_ERROR
Reid Spencer5b7e7532006-09-28 19:28:24 +00001853 } GlobalVarAttributes {
1854 CurGV = 0;
Chris Lattner58af2a12006-02-15 07:22:58 +00001855 }
Reid Spencer6fd36ab2006-12-29 20:35:03 +00001856 | OptAssign GVInternalLinkage GlobalType ConstVal {
1857 if ($4 == 0)
1858 GEN_ERROR("Global value initializer is not a constant!");
1859 CurGV = ParseGlobalVariable($1, $2, $3, $4->getType(), $4);
Reid Spencer5b7e7532006-09-28 19:28:24 +00001860 CHECK_FOR_ERROR
Reid Spencer6fd36ab2006-12-29 20:35:03 +00001861 } GlobalVarAttributes {
1862 CurGV = 0;
1863 }
1864 | OptAssign GVExternalLinkage GlobalType Types {
Reid Spencer14310612006-12-31 05:40:51 +00001865 if (!UpRefs.empty())
1866 GEN_ERROR("Invalid upreference in type: " + (*$4)->getDescription());
Reid Spencer6fd36ab2006-12-29 20:35:03 +00001867 CurGV = ParseGlobalVariable($1, $2, $3, *$4, 0);
1868 CHECK_FOR_ERROR
1869 delete $4;
Reid Spencer5b7e7532006-09-28 19:28:24 +00001870 } GlobalVarAttributes {
Anton Korobeynikovb74ed072006-09-14 18:23:27 +00001871 CurGV = 0;
1872 CHECK_FOR_ERROR
1873 }
Reid Spencer6fd36ab2006-12-29 20:35:03 +00001874 | TARGET TargetDefinition {
Anton Korobeynikovb74ed072006-09-14 18:23:27 +00001875 CHECK_FOR_ERROR
1876 }
Reid Spencer6fd36ab2006-12-29 20:35:03 +00001877 | DEPLIBS '=' LibrariesDefinition {
Reid Spencer61c83e02006-08-18 08:43:06 +00001878 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001879 }
Reid Spencer6fd36ab2006-12-29 20:35:03 +00001880 ;
Chris Lattner58af2a12006-02-15 07:22:58 +00001881
1882
1883AsmBlock : STRINGCONSTANT {
1884 const std::string &AsmSoFar = CurModule.CurrentModule->getModuleInlineAsm();
1885 char *EndStr = UnEscapeLexed($1, true);
1886 std::string NewAsm($1, EndStr);
1887 free($1);
1888
1889 if (AsmSoFar.empty())
1890 CurModule.CurrentModule->setModuleInlineAsm(NewAsm);
1891 else
1892 CurModule.CurrentModule->setModuleInlineAsm(AsmSoFar+"\n"+NewAsm);
Reid Spencer61c83e02006-08-18 08:43:06 +00001893 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001894};
1895
1896BigOrLittle : BIG { $$ = Module::BigEndian; };
1897BigOrLittle : LITTLE { $$ = Module::LittleEndian; };
1898
1899TargetDefinition : ENDIAN '=' BigOrLittle {
1900 CurModule.CurrentModule->setEndianness($3);
Reid Spencer61c83e02006-08-18 08:43:06 +00001901 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001902 }
1903 | POINTERSIZE '=' EUINT64VAL {
1904 if ($3 == 32)
1905 CurModule.CurrentModule->setPointerSize(Module::Pointer32);
1906 else if ($3 == 64)
1907 CurModule.CurrentModule->setPointerSize(Module::Pointer64);
1908 else
Reid Spencer61c83e02006-08-18 08:43:06 +00001909 GEN_ERROR("Invalid pointer size: '" + utostr($3) + "'!");
1910 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001911 }
1912 | TRIPLE '=' STRINGCONSTANT {
1913 CurModule.CurrentModule->setTargetTriple($3);
1914 free($3);
John Criswell2f6a8b12006-10-24 19:09:48 +00001915 }
Chris Lattner1ae022f2006-10-22 06:08:13 +00001916 | DATALAYOUT '=' STRINGCONSTANT {
Owen Anderson1dc69692006-10-18 02:21:48 +00001917 CurModule.CurrentModule->setDataLayout($3);
1918 free($3);
Owen Anderson1dc69692006-10-18 02:21:48 +00001919 };
Chris Lattner58af2a12006-02-15 07:22:58 +00001920
1921LibrariesDefinition : '[' LibList ']';
1922
1923LibList : LibList ',' STRINGCONSTANT {
1924 CurModule.CurrentModule->addLibrary($3);
1925 free($3);
Reid Spencer61c83e02006-08-18 08:43:06 +00001926 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001927 }
1928 | STRINGCONSTANT {
1929 CurModule.CurrentModule->addLibrary($1);
1930 free($1);
Reid Spencer61c83e02006-08-18 08:43:06 +00001931 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001932 }
1933 | /* empty: end of list */ {
Reid Spencer61c83e02006-08-18 08:43:06 +00001934 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001935 }
1936 ;
1937
1938//===----------------------------------------------------------------------===//
1939// Rules to match Function Headers
1940//===----------------------------------------------------------------------===//
1941
1942Name : VAR_ID | STRINGCONSTANT;
1943OptName : Name | /*empty*/ { $$ = 0; };
1944
Reid Spencer14310612006-12-31 05:40:51 +00001945ArgListH : ArgListH ',' Types OptParamAttrs OptName {
1946 if (!UpRefs.empty())
1947 GEN_ERROR("Invalid upreference in type: " + (*$3)->getDescription());
1948 if (*$3 == Type::VoidTy)
1949 GEN_ERROR("void typed arguments are invalid!");
1950 ArgListEntry E; E.Attrs = $4; E.Ty = $3; E.Name = $5;
Chris Lattner58af2a12006-02-15 07:22:58 +00001951 $$ = $1;
Reid Spencer14310612006-12-31 05:40:51 +00001952 $1->push_back(E);
Reid Spencer61c83e02006-08-18 08:43:06 +00001953 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001954 }
Reid Spencer14310612006-12-31 05:40:51 +00001955 | Types OptParamAttrs OptName {
1956 if (!UpRefs.empty())
1957 GEN_ERROR("Invalid upreference in type: " + (*$1)->getDescription());
1958 if (*$1 == Type::VoidTy)
1959 GEN_ERROR("void typed arguments are invalid!");
1960 ArgListEntry E; E.Attrs = $2; E.Ty = $1; E.Name = $3;
1961 $$ = new ArgListType;
1962 $$->push_back(E);
Reid Spencer61c83e02006-08-18 08:43:06 +00001963 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001964 };
1965
1966ArgList : ArgListH {
1967 $$ = $1;
Reid Spencer61c83e02006-08-18 08:43:06 +00001968 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001969 }
1970 | ArgListH ',' DOTDOTDOT {
1971 $$ = $1;
Reid Spencer14310612006-12-31 05:40:51 +00001972 struct ArgListEntry E;
1973 E.Ty = new PATypeHolder(Type::VoidTy);
1974 E.Name = 0;
1975 E.Attrs = FunctionType::NoAttributeSet;
1976 $$->push_back(E);
Reid Spencer61c83e02006-08-18 08:43:06 +00001977 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001978 }
1979 | DOTDOTDOT {
Reid Spencer14310612006-12-31 05:40:51 +00001980 $$ = new ArgListType;
1981 struct ArgListEntry E;
1982 E.Ty = new PATypeHolder(Type::VoidTy);
1983 E.Name = 0;
1984 E.Attrs = FunctionType::NoAttributeSet;
1985 $$->push_back(E);
Reid Spencer61c83e02006-08-18 08:43:06 +00001986 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001987 }
1988 | /* empty */ {
1989 $$ = 0;
Reid Spencer61c83e02006-08-18 08:43:06 +00001990 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00001991 };
1992
Reid Spencer14310612006-12-31 05:40:51 +00001993FunctionHeaderH : OptCallingConv ResultType Name '(' ArgList ')'
Chris Lattner58af2a12006-02-15 07:22:58 +00001994 OptSection OptAlign {
1995 UnEscapeLexed($3);
1996 std::string FunctionName($3);
1997 free($3); // Free strdup'd memory!
1998
Reid Spencer8c8a2dc2007-01-02 21:54:12 +00001999 // Check the function result for abstractness if this is a define. We should
2000 // have no abstract types at this point
2001 if (!CurFun.isDeclare && CurModule.TypeIsUnresolved($2.Ty))
2002 GEN_ERROR("Reference to abstract result: "+ $2.Ty->get()->getDescription());
2003
Chris Lattner58af2a12006-02-15 07:22:58 +00002004 std::vector<const Type*> ParamTypeList;
Reid Spencer14310612006-12-31 05:40:51 +00002005 std::vector<FunctionType::ParameterAttributes> ParamAttrs;
2006 ParamAttrs.push_back($2.Attrs);
Chris Lattner58af2a12006-02-15 07:22:58 +00002007 if ($5) { // If there are arguments...
Reid Spencer14310612006-12-31 05:40:51 +00002008 for (ArgListType::iterator I = $5->begin(); I != $5->end(); ++I) {
2009 const Type* Ty = I->Ty->get();
Reid Spencer8c8a2dc2007-01-02 21:54:12 +00002010 if (!CurFun.isDeclare && CurModule.TypeIsUnresolved(I->Ty))
2011 GEN_ERROR("Reference to abstract argument: " + Ty->getDescription());
Reid Spencer14310612006-12-31 05:40:51 +00002012 ParamTypeList.push_back(Ty);
2013 if (Ty != Type::VoidTy)
2014 ParamAttrs.push_back(I->Attrs);
2015 }
Chris Lattner58af2a12006-02-15 07:22:58 +00002016 }
2017
2018 bool isVarArg = ParamTypeList.size() && ParamTypeList.back() == Type::VoidTy;
2019 if (isVarArg) ParamTypeList.pop_back();
2020
Reid Spencer14310612006-12-31 05:40:51 +00002021 FunctionType *FT = FunctionType::get(*$2.Ty, ParamTypeList, isVarArg,
2022 ParamAttrs);
Chris Lattner58af2a12006-02-15 07:22:58 +00002023 const PointerType *PFT = PointerType::get(FT);
Reid Spencer14310612006-12-31 05:40:51 +00002024 delete $2.Ty;
Chris Lattner58af2a12006-02-15 07:22:58 +00002025
2026 ValID ID;
2027 if (!FunctionName.empty()) {
2028 ID = ValID::create((char*)FunctionName.c_str());
2029 } else {
2030 ID = ValID::create((int)CurModule.Values[PFT].size());
2031 }
2032
2033 Function *Fn = 0;
2034 // See if this function was forward referenced. If so, recycle the object.
2035 if (GlobalValue *FWRef = CurModule.GetForwardRefForGlobal(PFT, ID)) {
2036 // Move the function to the end of the list, from whereever it was
2037 // previously inserted.
2038 Fn = cast<Function>(FWRef);
2039 CurModule.CurrentModule->getFunctionList().remove(Fn);
2040 CurModule.CurrentModule->getFunctionList().push_back(Fn);
2041 } else if (!FunctionName.empty() && // Merge with an earlier prototype?
2042 (Fn = CurModule.CurrentModule->getFunction(FunctionName, FT))) {
2043 // If this is the case, either we need to be a forward decl, or it needs
2044 // to be.
2045 if (!CurFun.isDeclare && !Fn->isExternal())
Reid Spencer61c83e02006-08-18 08:43:06 +00002046 GEN_ERROR("Redefinition of function '" + FunctionName + "'!");
Chris Lattner58af2a12006-02-15 07:22:58 +00002047
2048 // Make sure to strip off any argument names so we can't get conflicts.
2049 if (Fn->isExternal())
2050 for (Function::arg_iterator AI = Fn->arg_begin(), AE = Fn->arg_end();
2051 AI != AE; ++AI)
2052 AI->setName("");
Chris Lattner58af2a12006-02-15 07:22:58 +00002053 } else { // Not already defined?
2054 Fn = new Function(FT, GlobalValue::ExternalLinkage, FunctionName,
2055 CurModule.CurrentModule);
Anton Korobeynikovb74ed072006-09-14 18:23:27 +00002056
Chris Lattner58af2a12006-02-15 07:22:58 +00002057 InsertValue(Fn, CurModule.Values);
2058 }
2059
2060 CurFun.FunctionStart(Fn);
Anton Korobeynikov93c2b372006-09-17 13:06:18 +00002061
2062 if (CurFun.isDeclare) {
2063 // If we have declaration, always overwrite linkage. This will allow us to
2064 // correctly handle cases, when pointer to function is passed as argument to
2065 // another function.
2066 Fn->setLinkage(CurFun.Linkage);
2067 }
Chris Lattner58af2a12006-02-15 07:22:58 +00002068 Fn->setCallingConv($1);
2069 Fn->setAlignment($8);
2070 if ($7) {
2071 Fn->setSection($7);
2072 free($7);
2073 }
2074
2075 // Add all of the arguments we parsed to the function...
2076 if ($5) { // Is null if empty...
2077 if (isVarArg) { // Nuke the last entry
Reid Spencer14310612006-12-31 05:40:51 +00002078 assert($5->back().Ty->get() == Type::VoidTy && $5->back().Name == 0&&
Reid Spencera132e042006-12-03 05:46:11 +00002079 "Not a varargs marker!");
Reid Spencer14310612006-12-31 05:40:51 +00002080 delete $5->back().Ty;
Chris Lattner58af2a12006-02-15 07:22:58 +00002081 $5->pop_back(); // Delete the last entry
2082 }
2083 Function::arg_iterator ArgIt = Fn->arg_begin();
Reid Spencer14310612006-12-31 05:40:51 +00002084 unsigned Idx = 1;
2085 for (ArgListType::iterator I = $5->begin(); I != $5->end(); ++I, ++ArgIt) {
2086 delete I->Ty; // Delete the typeholder...
2087 setValueName(ArgIt, I->Name); // Insert arg into symtab...
Reid Spencer5b7e7532006-09-28 19:28:24 +00002088 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002089 InsertValue(ArgIt);
Reid Spencer14310612006-12-31 05:40:51 +00002090 Idx++;
Chris Lattner58af2a12006-02-15 07:22:58 +00002091 }
Reid Spencera132e042006-12-03 05:46:11 +00002092
Chris Lattner58af2a12006-02-15 07:22:58 +00002093 delete $5; // We're now done with the argument list
2094 }
Reid Spencer61c83e02006-08-18 08:43:06 +00002095 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002096};
2097
2098BEGIN : BEGINTOK | '{'; // Allow BEGIN or '{' to start a function
2099
Reid Spencer14310612006-12-31 05:40:51 +00002100FunctionHeader : FunctionDefineLinkage FunctionHeaderH BEGIN {
Chris Lattner58af2a12006-02-15 07:22:58 +00002101 $$ = CurFun.CurrentFunction;
2102
2103 // Make sure that we keep track of the linkage type even if there was a
2104 // previous "declare".
2105 $$->setLinkage($1);
2106};
2107
2108END : ENDTOK | '}'; // Allow end of '}' to end a function
2109
2110Function : BasicBlockList END {
2111 $$ = $1;
Reid Spencer61c83e02006-08-18 08:43:06 +00002112 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002113};
2114
Reid Spencer14310612006-12-31 05:40:51 +00002115FunctionProto : FunctionDeclareLinkage FunctionHeaderH {
2116 CurFun.CurrentFunction->setLinkage($1);
Anton Korobeynikovb74ed072006-09-14 18:23:27 +00002117 $$ = CurFun.CurrentFunction;
2118 CurFun.FunctionDone();
2119 CHECK_FOR_ERROR
2120 };
Chris Lattner58af2a12006-02-15 07:22:58 +00002121
2122//===----------------------------------------------------------------------===//
2123// Rules to match Basic Blocks
2124//===----------------------------------------------------------------------===//
2125
2126OptSideEffect : /* empty */ {
2127 $$ = false;
Reid Spencer61c83e02006-08-18 08:43:06 +00002128 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002129 }
2130 | SIDEEFFECT {
2131 $$ = true;
Reid Spencer61c83e02006-08-18 08:43:06 +00002132 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002133 };
2134
2135ConstValueRef : ESINT64VAL { // A reference to a direct constant
2136 $$ = ValID::create($1);
Reid Spencer61c83e02006-08-18 08:43:06 +00002137 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002138 }
2139 | EUINT64VAL {
2140 $$ = ValID::create($1);
Reid Spencer61c83e02006-08-18 08:43:06 +00002141 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002142 }
2143 | FPVAL { // Perhaps it's an FP constant?
2144 $$ = ValID::create($1);
Reid Spencer61c83e02006-08-18 08:43:06 +00002145 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002146 }
2147 | TRUETOK {
Chris Lattner47811b72006-09-28 23:35:22 +00002148 $$ = ValID::create(ConstantBool::getTrue());
Reid Spencer61c83e02006-08-18 08:43:06 +00002149 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002150 }
2151 | FALSETOK {
Chris Lattner47811b72006-09-28 23:35:22 +00002152 $$ = ValID::create(ConstantBool::getFalse());
Reid Spencer61c83e02006-08-18 08:43:06 +00002153 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002154 }
2155 | NULL_TOK {
2156 $$ = ValID::createNull();
Reid Spencer61c83e02006-08-18 08:43:06 +00002157 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002158 }
2159 | UNDEF {
2160 $$ = ValID::createUndef();
Reid Spencer61c83e02006-08-18 08:43:06 +00002161 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002162 }
2163 | ZEROINITIALIZER { // A vector zero constant.
2164 $$ = ValID::createZeroInit();
Reid Spencer61c83e02006-08-18 08:43:06 +00002165 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002166 }
2167 | '<' ConstVector '>' { // Nonempty unsized packed vector
Reid Spencera132e042006-12-03 05:46:11 +00002168 const Type *ETy = (*$2)[0]->getType();
Chris Lattner58af2a12006-02-15 07:22:58 +00002169 int NumElements = $2->size();
2170
2171 PackedType* pt = PackedType::get(ETy, NumElements);
2172 PATypeHolder* PTy = new PATypeHolder(
Reid Spencera132e042006-12-03 05:46:11 +00002173 HandleUpRefs(
2174 PackedType::get(
2175 ETy,
2176 NumElements)
2177 )
2178 );
Chris Lattner58af2a12006-02-15 07:22:58 +00002179
2180 // Verify all elements are correct type!
2181 for (unsigned i = 0; i < $2->size(); i++) {
Reid Spencera132e042006-12-03 05:46:11 +00002182 if (ETy != (*$2)[i]->getType())
Reid Spencer61c83e02006-08-18 08:43:06 +00002183 GEN_ERROR("Element #" + utostr(i) + " is not of type '" +
Chris Lattner58af2a12006-02-15 07:22:58 +00002184 ETy->getDescription() +"' as required!\nIt is of type '" +
Reid Spencera132e042006-12-03 05:46:11 +00002185 (*$2)[i]->getType()->getDescription() + "'.");
Chris Lattner58af2a12006-02-15 07:22:58 +00002186 }
2187
Reid Spencera132e042006-12-03 05:46:11 +00002188 $$ = ValID::create(ConstantPacked::get(pt, *$2));
Chris Lattner58af2a12006-02-15 07:22:58 +00002189 delete PTy; delete $2;
Reid Spencer61c83e02006-08-18 08:43:06 +00002190 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002191 }
2192 | ConstExpr {
Reid Spencera132e042006-12-03 05:46:11 +00002193 $$ = ValID::create($1);
Reid Spencer61c83e02006-08-18 08:43:06 +00002194 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002195 }
2196 | ASM_TOK OptSideEffect STRINGCONSTANT ',' STRINGCONSTANT {
2197 char *End = UnEscapeLexed($3, true);
2198 std::string AsmStr = std::string($3, End);
2199 End = UnEscapeLexed($5, true);
2200 std::string Constraints = std::string($5, End);
2201 $$ = ValID::createInlineAsm(AsmStr, Constraints, $2);
2202 free($3);
2203 free($5);
Reid Spencer61c83e02006-08-18 08:43:06 +00002204 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002205 };
2206
2207// SymbolicValueRef - Reference to one of two ways of symbolically refering to
2208// another value.
2209//
2210SymbolicValueRef : INTVAL { // Is it an integer reference...?
2211 $$ = ValID::create($1);
Reid Spencer61c83e02006-08-18 08:43:06 +00002212 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002213 }
2214 | Name { // Is it a named reference...?
2215 $$ = ValID::create($1);
Reid Spencer61c83e02006-08-18 08:43:06 +00002216 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002217 };
2218
2219// ValueRef - A reference to a definition... either constant or symbolic
2220ValueRef : SymbolicValueRef | ConstValueRef;
2221
2222
2223// ResolvedVal - a <type> <value> pair. This is used only in cases where the
2224// type immediately preceeds the value reference, and allows complex constant
2225// pool references (for things like: 'ret [2 x int] [ int 12, int 42]')
2226ResolvedVal : Types ValueRef {
Reid Spencer14310612006-12-31 05:40:51 +00002227 if (!UpRefs.empty())
2228 GEN_ERROR("Invalid upreference in type: " + (*$1)->getDescription());
2229 $$ = getVal(*$1, $2);
2230 delete $1;
Reid Spencer61c83e02006-08-18 08:43:06 +00002231 CHECK_FOR_ERROR
Reid Spencer14310612006-12-31 05:40:51 +00002232 }
2233 ;
Chris Lattner58af2a12006-02-15 07:22:58 +00002234
2235BasicBlockList : BasicBlockList BasicBlock {
2236 $$ = $1;
Reid Spencer61c83e02006-08-18 08:43:06 +00002237 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002238 }
2239 | FunctionHeader BasicBlock { // Do not allow functions with 0 basic blocks
2240 $$ = $1;
Reid Spencer61c83e02006-08-18 08:43:06 +00002241 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002242 };
2243
2244
2245// Basic blocks are terminated by branching instructions:
2246// br, br/cc, switch, ret
2247//
2248BasicBlock : InstructionList OptAssign BBTerminatorInst {
2249 setValueName($3, $2);
Reid Spencer5b7e7532006-09-28 19:28:24 +00002250 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002251 InsertValue($3);
2252
2253 $1->getInstList().push_back($3);
2254 InsertValue($1);
2255 $$ = $1;
Reid Spencer61c83e02006-08-18 08:43:06 +00002256 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002257 };
2258
2259InstructionList : InstructionList Inst {
Reid Spencer3da59db2006-11-27 01:05:10 +00002260 if (CastInst *CI1 = dyn_cast<CastInst>($2))
2261 if (CastInst *CI2 = dyn_cast<CastInst>(CI1->getOperand(0)))
2262 if (CI2->getParent() == 0)
2263 $1->getInstList().push_back(CI2);
Chris Lattner58af2a12006-02-15 07:22:58 +00002264 $1->getInstList().push_back($2);
2265 $$ = $1;
Reid Spencer61c83e02006-08-18 08:43:06 +00002266 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002267 }
2268 | /* empty */ {
Reid Spencercd42c582006-12-05 23:29:42 +00002269 $$ = getBBVal(ValID::create((int)CurFun.NextBBNum++), true);
Reid Spencer5b7e7532006-09-28 19:28:24 +00002270 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002271
2272 // Make sure to move the basic block to the correct location in the
2273 // function, instead of leaving it inserted wherever it was first
2274 // referenced.
2275 Function::BasicBlockListType &BBL =
2276 CurFun.CurrentFunction->getBasicBlockList();
2277 BBL.splice(BBL.end(), BBL, $$);
Reid Spencer61c83e02006-08-18 08:43:06 +00002278 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002279 }
2280 | LABELSTR {
Reid Spencercd42c582006-12-05 23:29:42 +00002281 $$ = getBBVal(ValID::create($1), true);
Reid Spencer5b7e7532006-09-28 19:28:24 +00002282 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002283
2284 // Make sure to move the basic block to the correct location in the
2285 // function, instead of leaving it inserted wherever it was first
2286 // referenced.
2287 Function::BasicBlockListType &BBL =
2288 CurFun.CurrentFunction->getBasicBlockList();
2289 BBL.splice(BBL.end(), BBL, $$);
Reid Spencer61c83e02006-08-18 08:43:06 +00002290 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002291 };
2292
2293BBTerminatorInst : RET ResolvedVal { // Return with a result...
Reid Spencera132e042006-12-03 05:46:11 +00002294 $$ = new ReturnInst($2);
Reid Spencer61c83e02006-08-18 08:43:06 +00002295 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002296 }
2297 | RET VOID { // Return with no result...
2298 $$ = new ReturnInst();
Reid Spencer61c83e02006-08-18 08:43:06 +00002299 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002300 }
2301 | BR LABEL ValueRef { // Unconditional Branch...
Reid Spencer5b7e7532006-09-28 19:28:24 +00002302 BasicBlock* tmpBB = getBBVal($3);
Reid Spencer61c83e02006-08-18 08:43:06 +00002303 CHECK_FOR_ERROR
Reid Spencer5b7e7532006-09-28 19:28:24 +00002304 $$ = new BranchInst(tmpBB);
Chris Lattner58af2a12006-02-15 07:22:58 +00002305 } // Conditional Branch...
2306 | BR BOOL ValueRef ',' LABEL ValueRef ',' LABEL ValueRef {
Reid Spencer5b7e7532006-09-28 19:28:24 +00002307 BasicBlock* tmpBBA = getBBVal($6);
Reid Spencer61c83e02006-08-18 08:43:06 +00002308 CHECK_FOR_ERROR
Reid Spencer5b7e7532006-09-28 19:28:24 +00002309 BasicBlock* tmpBBB = getBBVal($9);
2310 CHECK_FOR_ERROR
2311 Value* tmpVal = getVal(Type::BoolTy, $3);
2312 CHECK_FOR_ERROR
2313 $$ = new BranchInst(tmpBBA, tmpBBB, tmpVal);
Chris Lattner58af2a12006-02-15 07:22:58 +00002314 }
2315 | SWITCH IntType ValueRef ',' LABEL ValueRef '[' JumpTable ']' {
Reid Spencera132e042006-12-03 05:46:11 +00002316 Value* tmpVal = getVal($2, $3);
Reid Spencer5b7e7532006-09-28 19:28:24 +00002317 CHECK_FOR_ERROR
2318 BasicBlock* tmpBB = getBBVal($6);
2319 CHECK_FOR_ERROR
2320 SwitchInst *S = new SwitchInst(tmpVal, tmpBB, $8->size());
Chris Lattner58af2a12006-02-15 07:22:58 +00002321 $$ = S;
2322
2323 std::vector<std::pair<Constant*,BasicBlock*> >::iterator I = $8->begin(),
2324 E = $8->end();
2325 for (; I != E; ++I) {
2326 if (ConstantInt *CI = dyn_cast<ConstantInt>(I->first))
2327 S->addCase(CI, I->second);
2328 else
Reid Spencer61c83e02006-08-18 08:43:06 +00002329 GEN_ERROR("Switch case is constant, but not a simple integer!");
Chris Lattner58af2a12006-02-15 07:22:58 +00002330 }
2331 delete $8;
Reid Spencer61c83e02006-08-18 08:43:06 +00002332 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002333 }
2334 | SWITCH IntType ValueRef ',' LABEL ValueRef '[' ']' {
Reid Spencera132e042006-12-03 05:46:11 +00002335 Value* tmpVal = getVal($2, $3);
Reid Spencer5b7e7532006-09-28 19:28:24 +00002336 CHECK_FOR_ERROR
2337 BasicBlock* tmpBB = getBBVal($6);
2338 CHECK_FOR_ERROR
2339 SwitchInst *S = new SwitchInst(tmpVal, tmpBB, 0);
Chris Lattner58af2a12006-02-15 07:22:58 +00002340 $$ = S;
Reid Spencer61c83e02006-08-18 08:43:06 +00002341 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002342 }
Reid Spencer14310612006-12-31 05:40:51 +00002343 | INVOKE OptCallingConv ResultType ValueRef '(' ValueRefList ')'
Chris Lattner58af2a12006-02-15 07:22:58 +00002344 TO LABEL ValueRef UNWIND LABEL ValueRef {
Chris Lattner58af2a12006-02-15 07:22:58 +00002345
Reid Spencer14310612006-12-31 05:40:51 +00002346 // Handle the short syntax
2347 const PointerType *PFTy = 0;
2348 const FunctionType *Ty = 0;
2349 if (!(PFTy = dyn_cast<PointerType>($3.Ty->get())) ||
Chris Lattner58af2a12006-02-15 07:22:58 +00002350 !(Ty = dyn_cast<FunctionType>(PFTy->getElementType()))) {
2351 // Pull out the types of all of the arguments...
2352 std::vector<const Type*> ParamTypes;
Reid Spencer14310612006-12-31 05:40:51 +00002353 FunctionType::ParamAttrsList ParamAttrs;
2354 ParamAttrs.push_back($3.Attrs);
2355 for (ValueRefList::iterator I = $6->begin(), E = $6->end(); I != E; ++I) {
2356 const Type *Ty = I->Val->getType();
2357 if (Ty == Type::VoidTy)
2358 GEN_ERROR("Short call syntax cannot be used with varargs");
2359 ParamTypes.push_back(Ty);
2360 ParamAttrs.push_back(I->Attrs);
Chris Lattner58af2a12006-02-15 07:22:58 +00002361 }
2362
Reid Spencer14310612006-12-31 05:40:51 +00002363 Ty = FunctionType::get($3.Ty->get(), ParamTypes, false, ParamAttrs);
Chris Lattner58af2a12006-02-15 07:22:58 +00002364 PFTy = PointerType::get(Ty);
2365 }
2366
2367 Value *V = getVal(PFTy, $4); // Get the function we're calling...
Reid Spencer5b7e7532006-09-28 19:28:24 +00002368 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002369 BasicBlock *Normal = getBBVal($10);
Reid Spencer5b7e7532006-09-28 19:28:24 +00002370 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002371 BasicBlock *Except = getBBVal($13);
Reid Spencer5b7e7532006-09-28 19:28:24 +00002372 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002373
Reid Spencer14310612006-12-31 05:40:51 +00002374 // Check the arguments
2375 ValueList Args;
2376 if ($6->empty()) { // Has no arguments?
2377 // Make sure no arguments is a good thing!
2378 if (Ty->getNumParams() != 0)
2379 GEN_ERROR("No arguments passed to a function that "
2380 "expects arguments!");
Chris Lattner58af2a12006-02-15 07:22:58 +00002381 } else { // Has arguments?
2382 // Loop through FunctionType's arguments and ensure they are specified
2383 // correctly!
Chris Lattner58af2a12006-02-15 07:22:58 +00002384 FunctionType::param_iterator I = Ty->param_begin();
2385 FunctionType::param_iterator E = Ty->param_end();
Reid Spencer14310612006-12-31 05:40:51 +00002386 ValueRefList::iterator ArgI = $6->begin(), ArgE = $6->end();
Chris Lattner58af2a12006-02-15 07:22:58 +00002387
Reid Spencer14310612006-12-31 05:40:51 +00002388 for (; ArgI != ArgE && I != E; ++ArgI, ++I) {
2389 if (ArgI->Val->getType() != *I)
2390 GEN_ERROR("Parameter " + ArgI->Val->getName()+ " is not of type '" +
Reid Spencera132e042006-12-03 05:46:11 +00002391 (*I)->getDescription() + "'!");
Reid Spencer14310612006-12-31 05:40:51 +00002392 Args.push_back(ArgI->Val);
2393 }
Reid Spencera132e042006-12-03 05:46:11 +00002394
Reid Spencer14310612006-12-31 05:40:51 +00002395 if (Ty->isVarArg()) {
2396 if (I == E)
2397 for (; ArgI != ArgE; ++ArgI)
2398 Args.push_back(ArgI->Val); // push the remaining varargs
2399 } else if (I != E || ArgI != ArgE)
Reid Spencera132e042006-12-03 05:46:11 +00002400 GEN_ERROR("Invalid number of parameters detected!");
Chris Lattner58af2a12006-02-15 07:22:58 +00002401 }
Reid Spencer14310612006-12-31 05:40:51 +00002402
2403 // Create the InvokeInst
2404 InvokeInst *II = new InvokeInst(V, Normal, Except, Args);
2405 II->setCallingConv($2);
2406 $$ = II;
Chris Lattner58af2a12006-02-15 07:22:58 +00002407 delete $6;
Reid Spencer61c83e02006-08-18 08:43:06 +00002408 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002409 }
2410 | UNWIND {
2411 $$ = new UnwindInst();
Reid Spencer61c83e02006-08-18 08:43:06 +00002412 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002413 }
2414 | UNREACHABLE {
2415 $$ = new UnreachableInst();
Reid Spencer61c83e02006-08-18 08:43:06 +00002416 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002417 };
2418
2419
2420
2421JumpTable : JumpTable IntType ConstValueRef ',' LABEL ValueRef {
2422 $$ = $1;
Reid Spencera132e042006-12-03 05:46:11 +00002423 Constant *V = cast<Constant>(getValNonImprovising($2, $3));
Reid Spencer5b7e7532006-09-28 19:28:24 +00002424 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002425 if (V == 0)
Reid Spencer61c83e02006-08-18 08:43:06 +00002426 GEN_ERROR("May only switch on a constant pool value!");
Chris Lattner58af2a12006-02-15 07:22:58 +00002427
Reid Spencer5b7e7532006-09-28 19:28:24 +00002428 BasicBlock* tmpBB = getBBVal($6);
Reid Spencer61c83e02006-08-18 08:43:06 +00002429 CHECK_FOR_ERROR
Reid Spencer5b7e7532006-09-28 19:28:24 +00002430 $$->push_back(std::make_pair(V, tmpBB));
Chris Lattner58af2a12006-02-15 07:22:58 +00002431 }
2432 | IntType ConstValueRef ',' LABEL ValueRef {
2433 $$ = new std::vector<std::pair<Constant*, BasicBlock*> >();
Reid Spencera132e042006-12-03 05:46:11 +00002434 Constant *V = cast<Constant>(getValNonImprovising($1, $2));
Reid Spencer5b7e7532006-09-28 19:28:24 +00002435 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002436
2437 if (V == 0)
Reid Spencer61c83e02006-08-18 08:43:06 +00002438 GEN_ERROR("May only switch on a constant pool value!");
Chris Lattner58af2a12006-02-15 07:22:58 +00002439
Reid Spencer5b7e7532006-09-28 19:28:24 +00002440 BasicBlock* tmpBB = getBBVal($5);
Reid Spencer61c83e02006-08-18 08:43:06 +00002441 CHECK_FOR_ERROR
Reid Spencer5b7e7532006-09-28 19:28:24 +00002442 $$->push_back(std::make_pair(V, tmpBB));
Chris Lattner58af2a12006-02-15 07:22:58 +00002443 };
2444
2445Inst : OptAssign InstVal {
2446 // Is this definition named?? if so, assign the name...
2447 setValueName($2, $1);
Reid Spencer5b7e7532006-09-28 19:28:24 +00002448 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002449 InsertValue($2);
2450 $$ = $2;
Reid Spencer61c83e02006-08-18 08:43:06 +00002451 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002452};
2453
2454PHIList : Types '[' ValueRef ',' ValueRef ']' { // Used for PHI nodes
Reid Spencer14310612006-12-31 05:40:51 +00002455 if (!UpRefs.empty())
2456 GEN_ERROR("Invalid upreference in type: " + (*$1)->getDescription());
Chris Lattner58af2a12006-02-15 07:22:58 +00002457 $$ = new std::list<std::pair<Value*, BasicBlock*> >();
Reid Spencera132e042006-12-03 05:46:11 +00002458 Value* tmpVal = getVal(*$1, $3);
Reid Spencer61c83e02006-08-18 08:43:06 +00002459 CHECK_FOR_ERROR
Reid Spencer5b7e7532006-09-28 19:28:24 +00002460 BasicBlock* tmpBB = getBBVal($5);
2461 CHECK_FOR_ERROR
2462 $$->push_back(std::make_pair(tmpVal, tmpBB));
Reid Spencera132e042006-12-03 05:46:11 +00002463 delete $1;
Chris Lattner58af2a12006-02-15 07:22:58 +00002464 }
2465 | PHIList ',' '[' ValueRef ',' ValueRef ']' {
2466 $$ = $1;
Reid Spencer5b7e7532006-09-28 19:28:24 +00002467 Value* tmpVal = getVal($1->front().first->getType(), $4);
Reid Spencer61c83e02006-08-18 08:43:06 +00002468 CHECK_FOR_ERROR
Reid Spencer5b7e7532006-09-28 19:28:24 +00002469 BasicBlock* tmpBB = getBBVal($6);
2470 CHECK_FOR_ERROR
2471 $1->push_back(std::make_pair(tmpVal, tmpBB));
Chris Lattner58af2a12006-02-15 07:22:58 +00002472 };
2473
2474
Reid Spencer14310612006-12-31 05:40:51 +00002475ValueRefList : Types ValueRef OptParamAttrs {
2476 if (!UpRefs.empty())
2477 GEN_ERROR("Invalid upreference in type: " + (*$1)->getDescription());
2478 // Used for call and invoke instructions
2479 $$ = new ValueRefList();
2480 ValueRefListEntry E; E.Attrs = $3; E.Val = getVal($1->get(), $2);
2481 $$->push_back(E);
Chris Lattner58af2a12006-02-15 07:22:58 +00002482 }
Reid Spencer14310612006-12-31 05:40:51 +00002483 | ValueRefList ',' Types ValueRef OptParamAttrs {
2484 if (!UpRefs.empty())
2485 GEN_ERROR("Invalid upreference in type: " + (*$3)->getDescription());
Chris Lattner58af2a12006-02-15 07:22:58 +00002486 $$ = $1;
Reid Spencer14310612006-12-31 05:40:51 +00002487 ValueRefListEntry E; E.Attrs = $5; E.Val = getVal($3->get(), $4);
2488 $$->push_back(E);
Reid Spencer61c83e02006-08-18 08:43:06 +00002489 CHECK_FOR_ERROR
Reid Spencer14310612006-12-31 05:40:51 +00002490 }
2491 | /*empty*/ { $$ = new ValueRefList(); };
Chris Lattner58af2a12006-02-15 07:22:58 +00002492
Reid Spencer14310612006-12-31 05:40:51 +00002493IndexList // Used for gep instructions and constant expressions
Reid Spencerc6c59fd2006-12-31 21:47:02 +00002494 : /*empty*/ { $$ = new std::vector<Value*>(); }
Reid Spencer14310612006-12-31 05:40:51 +00002495 | IndexList ',' ResolvedVal {
2496 $$ = $1;
2497 $$->push_back($3);
2498 CHECK_FOR_ERROR
2499 }
Reid Spencerc6c59fd2006-12-31 21:47:02 +00002500 ;
Chris Lattner58af2a12006-02-15 07:22:58 +00002501
2502OptTailCall : TAIL CALL {
2503 $$ = true;
Reid Spencer61c83e02006-08-18 08:43:06 +00002504 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002505 }
2506 | CALL {
2507 $$ = false;
Reid Spencer61c83e02006-08-18 08:43:06 +00002508 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002509 };
2510
Chris Lattner58af2a12006-02-15 07:22:58 +00002511InstVal : ArithmeticOps Types ValueRef ',' ValueRef {
Reid Spencer14310612006-12-31 05:40:51 +00002512 if (!UpRefs.empty())
2513 GEN_ERROR("Invalid upreference in type: " + (*$2)->getDescription());
Reid Spencera132e042006-12-03 05:46:11 +00002514 if (!(*$2)->isInteger() && !(*$2)->isFloatingPoint() &&
2515 !isa<PackedType>((*$2).get()))
Reid Spencer61c83e02006-08-18 08:43:06 +00002516 GEN_ERROR(
Chris Lattner58af2a12006-02-15 07:22:58 +00002517 "Arithmetic operator requires integer, FP, or packed operands!");
Reid Spencera132e042006-12-03 05:46:11 +00002518 if (isa<PackedType>((*$2).get()) &&
2519 ($1 == Instruction::URem ||
2520 $1 == Instruction::SRem ||
2521 $1 == Instruction::FRem))
Reid Spencer3ed469c2006-11-02 20:25:50 +00002522 GEN_ERROR("U/S/FRem not supported on packed types!");
Reid Spencera132e042006-12-03 05:46:11 +00002523 Value* val1 = getVal(*$2, $3);
Reid Spencer5b7e7532006-09-28 19:28:24 +00002524 CHECK_FOR_ERROR
Reid Spencera132e042006-12-03 05:46:11 +00002525 Value* val2 = getVal(*$2, $5);
Reid Spencer5b7e7532006-09-28 19:28:24 +00002526 CHECK_FOR_ERROR
Reid Spencera132e042006-12-03 05:46:11 +00002527 $$ = BinaryOperator::create($1, val1, val2);
Chris Lattner58af2a12006-02-15 07:22:58 +00002528 if ($$ == 0)
Reid Spencer61c83e02006-08-18 08:43:06 +00002529 GEN_ERROR("binary operator returned null!");
Reid Spencera132e042006-12-03 05:46:11 +00002530 delete $2;
Chris Lattner58af2a12006-02-15 07:22:58 +00002531 }
2532 | LogicalOps Types ValueRef ',' ValueRef {
Reid Spencer14310612006-12-31 05:40:51 +00002533 if (!UpRefs.empty())
2534 GEN_ERROR("Invalid upreference in type: " + (*$2)->getDescription());
Reid Spencera132e042006-12-03 05:46:11 +00002535 if (!(*$2)->isIntegral()) {
2536 if (!isa<PackedType>($2->get()) ||
2537 !cast<PackedType>($2->get())->getElementType()->isIntegral())
Reid Spencer61c83e02006-08-18 08:43:06 +00002538 GEN_ERROR("Logical operator requires integral operands!");
Chris Lattner58af2a12006-02-15 07:22:58 +00002539 }
Reid Spencera132e042006-12-03 05:46:11 +00002540 Value* tmpVal1 = getVal(*$2, $3);
Reid Spencer5b7e7532006-09-28 19:28:24 +00002541 CHECK_FOR_ERROR
Reid Spencera132e042006-12-03 05:46:11 +00002542 Value* tmpVal2 = getVal(*$2, $5);
Reid Spencer5b7e7532006-09-28 19:28:24 +00002543 CHECK_FOR_ERROR
Reid Spencera132e042006-12-03 05:46:11 +00002544 $$ = BinaryOperator::create($1, tmpVal1, tmpVal2);
Chris Lattner58af2a12006-02-15 07:22:58 +00002545 if ($$ == 0)
Reid Spencer61c83e02006-08-18 08:43:06 +00002546 GEN_ERROR("binary operator returned null!");
Reid Spencera132e042006-12-03 05:46:11 +00002547 delete $2;
Chris Lattner58af2a12006-02-15 07:22:58 +00002548 }
Reid Spencera132e042006-12-03 05:46:11 +00002549 | ICMP IPredicates Types ValueRef ',' ValueRef {
Reid Spencer14310612006-12-31 05:40:51 +00002550 if (!UpRefs.empty())
2551 GEN_ERROR("Invalid upreference in type: " + (*$3)->getDescription());
Reid Spencera132e042006-12-03 05:46:11 +00002552 Value* tmpVal1 = getVal(*$3, $4);
2553 CHECK_FOR_ERROR
2554 Value* tmpVal2 = getVal(*$3, $6);
2555 CHECK_FOR_ERROR
2556 $$ = CmpInst::create($1, $2, tmpVal1, tmpVal2);
2557 if ($$ == 0)
2558 GEN_ERROR("icmp operator returned null!");
2559 }
2560 | FCMP FPredicates Types ValueRef ',' ValueRef {
Reid Spencer14310612006-12-31 05:40:51 +00002561 if (!UpRefs.empty())
2562 GEN_ERROR("Invalid upreference in type: " + (*$3)->getDescription());
Reid Spencera132e042006-12-03 05:46:11 +00002563 Value* tmpVal1 = getVal(*$3, $4);
2564 CHECK_FOR_ERROR
2565 Value* tmpVal2 = getVal(*$3, $6);
2566 CHECK_FOR_ERROR
2567 $$ = CmpInst::create($1, $2, tmpVal1, tmpVal2);
2568 if ($$ == 0)
2569 GEN_ERROR("fcmp operator returned null!");
Chris Lattner58af2a12006-02-15 07:22:58 +00002570 }
2571 | NOT ResolvedVal {
Bill Wendlinge8156192006-12-07 01:30:32 +00002572 cerr << "WARNING: Use of eliminated 'not' instruction:"
2573 << " Replacing with 'xor'.\n";
Chris Lattner58af2a12006-02-15 07:22:58 +00002574
Reid Spencera132e042006-12-03 05:46:11 +00002575 Value *Ones = ConstantIntegral::getAllOnesValue($2->getType());
Chris Lattner58af2a12006-02-15 07:22:58 +00002576 if (Ones == 0)
Reid Spencer61c83e02006-08-18 08:43:06 +00002577 GEN_ERROR("Expected integral type for not instruction!");
Chris Lattner58af2a12006-02-15 07:22:58 +00002578
Reid Spencera132e042006-12-03 05:46:11 +00002579 $$ = BinaryOperator::create(Instruction::Xor, $2, Ones);
Chris Lattner58af2a12006-02-15 07:22:58 +00002580 if ($$ == 0)
Reid Spencer61c83e02006-08-18 08:43:06 +00002581 GEN_ERROR("Could not create a xor instruction!");
2582 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002583 }
2584 | ShiftOps ResolvedVal ',' ResolvedVal {
Reid Spencer14310612006-12-31 05:40:51 +00002585 if ($4->getType() != Type::Int8Ty)
2586 GEN_ERROR("Shift amount must be i8 type!");
Reid Spencera132e042006-12-03 05:46:11 +00002587 if (!$2->getType()->isInteger())
Reid Spencer61c83e02006-08-18 08:43:06 +00002588 GEN_ERROR("Shift constant expression requires integer operand!");
Reid Spencer3822ff52006-11-08 06:47:33 +00002589 CHECK_FOR_ERROR;
Reid Spencera132e042006-12-03 05:46:11 +00002590 $$ = new ShiftInst($1, $2, $4);
Reid Spencer61c83e02006-08-18 08:43:06 +00002591 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002592 }
Reid Spencer3da59db2006-11-27 01:05:10 +00002593 | CastOps ResolvedVal TO Types {
Reid Spencer14310612006-12-31 05:40:51 +00002594 if (!UpRefs.empty())
2595 GEN_ERROR("Invalid upreference in type: " + (*$4)->getDescription());
Reid Spencera132e042006-12-03 05:46:11 +00002596 Value* Val = $2;
2597 const Type* Ty = $4->get();
Reid Spencer3da59db2006-11-27 01:05:10 +00002598 if (!Val->getType()->isFirstClassType())
2599 GEN_ERROR("cast from a non-primitive type: '" +
2600 Val->getType()->getDescription() + "'!");
2601 if (!Ty->isFirstClassType())
2602 GEN_ERROR("cast to a non-primitive type: '" + Ty->getDescription() +"'!");
Reid Spencer14310612006-12-31 05:40:51 +00002603 $$ = CastInst::create($1, Val, $4->get());
Reid Spencera132e042006-12-03 05:46:11 +00002604 delete $4;
Chris Lattner58af2a12006-02-15 07:22:58 +00002605 }
2606 | SELECT ResolvedVal ',' ResolvedVal ',' ResolvedVal {
Reid Spencera132e042006-12-03 05:46:11 +00002607 if ($2->getType() != Type::BoolTy)
Reid Spencer61c83e02006-08-18 08:43:06 +00002608 GEN_ERROR("select condition must be boolean!");
Reid Spencera132e042006-12-03 05:46:11 +00002609 if ($4->getType() != $6->getType())
Reid Spencer61c83e02006-08-18 08:43:06 +00002610 GEN_ERROR("select value types should match!");
Reid Spencera132e042006-12-03 05:46:11 +00002611 $$ = new SelectInst($2, $4, $6);
Reid Spencer61c83e02006-08-18 08:43:06 +00002612 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002613 }
2614 | VAARG ResolvedVal ',' Types {
Reid Spencer14310612006-12-31 05:40:51 +00002615 if (!UpRefs.empty())
2616 GEN_ERROR("Invalid upreference in type: " + (*$4)->getDescription());
Reid Spencera132e042006-12-03 05:46:11 +00002617 $$ = new VAArgInst($2, *$4);
2618 delete $4;
Reid Spencer61c83e02006-08-18 08:43:06 +00002619 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002620 }
Chris Lattner58af2a12006-02-15 07:22:58 +00002621 | EXTRACTELEMENT ResolvedVal ',' ResolvedVal {
Reid Spencera132e042006-12-03 05:46:11 +00002622 if (!ExtractElementInst::isValidOperands($2, $4))
Reid Spencer61c83e02006-08-18 08:43:06 +00002623 GEN_ERROR("Invalid extractelement operands!");
Reid Spencera132e042006-12-03 05:46:11 +00002624 $$ = new ExtractElementInst($2, $4);
Reid Spencer61c83e02006-08-18 08:43:06 +00002625 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002626 }
2627 | INSERTELEMENT ResolvedVal ',' ResolvedVal ',' ResolvedVal {
Reid Spencera132e042006-12-03 05:46:11 +00002628 if (!InsertElementInst::isValidOperands($2, $4, $6))
Reid Spencer61c83e02006-08-18 08:43:06 +00002629 GEN_ERROR("Invalid insertelement operands!");
Reid Spencera132e042006-12-03 05:46:11 +00002630 $$ = new InsertElementInst($2, $4, $6);
Reid Spencer61c83e02006-08-18 08:43:06 +00002631 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002632 }
Chris Lattnerd5efe842006-04-08 01:18:56 +00002633 | SHUFFLEVECTOR ResolvedVal ',' ResolvedVal ',' ResolvedVal {
Reid Spencera132e042006-12-03 05:46:11 +00002634 if (!ShuffleVectorInst::isValidOperands($2, $4, $6))
Reid Spencer61c83e02006-08-18 08:43:06 +00002635 GEN_ERROR("Invalid shufflevector operands!");
Reid Spencera132e042006-12-03 05:46:11 +00002636 $$ = new ShuffleVectorInst($2, $4, $6);
Reid Spencer61c83e02006-08-18 08:43:06 +00002637 CHECK_FOR_ERROR
Chris Lattnerd5efe842006-04-08 01:18:56 +00002638 }
Chris Lattner58af2a12006-02-15 07:22:58 +00002639 | PHI_TOK PHIList {
2640 const Type *Ty = $2->front().first->getType();
2641 if (!Ty->isFirstClassType())
Reid Spencer61c83e02006-08-18 08:43:06 +00002642 GEN_ERROR("PHI node operands must be of first class type!");
Chris Lattner58af2a12006-02-15 07:22:58 +00002643 $$ = new PHINode(Ty);
2644 ((PHINode*)$$)->reserveOperandSpace($2->size());
2645 while ($2->begin() != $2->end()) {
2646 if ($2->front().first->getType() != Ty)
Reid Spencer61c83e02006-08-18 08:43:06 +00002647 GEN_ERROR("All elements of a PHI node must be of the same type!");
Chris Lattner58af2a12006-02-15 07:22:58 +00002648 cast<PHINode>($$)->addIncoming($2->front().first, $2->front().second);
2649 $2->pop_front();
2650 }
2651 delete $2; // Free the list...
Reid Spencer61c83e02006-08-18 08:43:06 +00002652 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002653 }
Reid Spencer14310612006-12-31 05:40:51 +00002654 | OptTailCall OptCallingConv ResultType ValueRef '(' ValueRefList ')' {
2655
2656 // Handle the short syntax
Reid Spencer3da59db2006-11-27 01:05:10 +00002657 const PointerType *PFTy = 0;
2658 const FunctionType *Ty = 0;
Reid Spencer14310612006-12-31 05:40:51 +00002659 if (!(PFTy = dyn_cast<PointerType>($3.Ty->get())) ||
Chris Lattner58af2a12006-02-15 07:22:58 +00002660 !(Ty = dyn_cast<FunctionType>(PFTy->getElementType()))) {
2661 // Pull out the types of all of the arguments...
2662 std::vector<const Type*> ParamTypes;
Reid Spencer14310612006-12-31 05:40:51 +00002663 FunctionType::ParamAttrsList ParamAttrs;
2664 ParamAttrs.push_back($3.Attrs);
2665 for (ValueRefList::iterator I = $6->begin(), E = $6->end(); I != E; ++I) {
2666 const Type *Ty = I->Val->getType();
2667 if (Ty == Type::VoidTy)
2668 GEN_ERROR("Short call syntax cannot be used with varargs");
2669 ParamTypes.push_back(Ty);
2670 ParamAttrs.push_back(I->Attrs);
Chris Lattner58af2a12006-02-15 07:22:58 +00002671 }
2672
Reid Spencer14310612006-12-31 05:40:51 +00002673 Ty = FunctionType::get($3.Ty->get(), ParamTypes, false, ParamAttrs);
Chris Lattner58af2a12006-02-15 07:22:58 +00002674 PFTy = PointerType::get(Ty);
2675 }
2676
2677 Value *V = getVal(PFTy, $4); // Get the function we're calling...
Reid Spencer5b7e7532006-09-28 19:28:24 +00002678 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002679
Reid Spencer14310612006-12-31 05:40:51 +00002680 // Check the arguments
2681 ValueList Args;
2682 if ($6->empty()) { // Has no arguments?
Chris Lattner58af2a12006-02-15 07:22:58 +00002683 // Make sure no arguments is a good thing!
2684 if (Ty->getNumParams() != 0)
Reid Spencer61c83e02006-08-18 08:43:06 +00002685 GEN_ERROR("No arguments passed to a function that "
Chris Lattner58af2a12006-02-15 07:22:58 +00002686 "expects arguments!");
Chris Lattner58af2a12006-02-15 07:22:58 +00002687 } else { // Has arguments?
2688 // Loop through FunctionType's arguments and ensure they are specified
2689 // correctly!
2690 //
2691 FunctionType::param_iterator I = Ty->param_begin();
2692 FunctionType::param_iterator E = Ty->param_end();
Reid Spencer14310612006-12-31 05:40:51 +00002693 ValueRefList::iterator ArgI = $6->begin(), ArgE = $6->end();
Chris Lattner58af2a12006-02-15 07:22:58 +00002694
Reid Spencer14310612006-12-31 05:40:51 +00002695 for (; ArgI != ArgE && I != E; ++ArgI, ++I) {
2696 if (ArgI->Val->getType() != *I)
2697 GEN_ERROR("Parameter " + ArgI->Val->getName()+ " is not of type '" +
Reid Spencera132e042006-12-03 05:46:11 +00002698 (*I)->getDescription() + "'!");
Reid Spencer14310612006-12-31 05:40:51 +00002699 Args.push_back(ArgI->Val);
2700 }
2701 if (Ty->isVarArg()) {
2702 if (I == E)
2703 for (; ArgI != ArgE; ++ArgI)
2704 Args.push_back(ArgI->Val); // push the remaining varargs
2705 } else if (I != E || ArgI != ArgE)
Reid Spencer61c83e02006-08-18 08:43:06 +00002706 GEN_ERROR("Invalid number of parameters detected!");
Chris Lattner58af2a12006-02-15 07:22:58 +00002707 }
Reid Spencer14310612006-12-31 05:40:51 +00002708 // Create the call node
2709 CallInst *CI = new CallInst(V, Args);
2710 CI->setTailCall($1);
2711 CI->setCallingConv($2);
2712 $$ = CI;
Chris Lattner58af2a12006-02-15 07:22:58 +00002713 delete $6;
Reid Spencer61c83e02006-08-18 08:43:06 +00002714 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002715 }
2716 | MemoryInst {
2717 $$ = $1;
Reid Spencer61c83e02006-08-18 08:43:06 +00002718 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002719 };
2720
Chris Lattner58af2a12006-02-15 07:22:58 +00002721OptVolatile : VOLATILE {
2722 $$ = true;
Reid Spencer61c83e02006-08-18 08:43:06 +00002723 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002724 }
2725 | /* empty */ {
2726 $$ = false;
Reid Spencer61c83e02006-08-18 08:43:06 +00002727 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002728 };
2729
2730
2731
2732MemoryInst : MALLOC Types OptCAlign {
Reid Spencer14310612006-12-31 05:40:51 +00002733 if (!UpRefs.empty())
2734 GEN_ERROR("Invalid upreference in type: " + (*$2)->getDescription());
Reid Spencera132e042006-12-03 05:46:11 +00002735 $$ = new MallocInst(*$2, 0, $3);
2736 delete $2;
Reid Spencer61c83e02006-08-18 08:43:06 +00002737 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002738 }
Reid Spencer14310612006-12-31 05:40:51 +00002739 | MALLOC Types ',' INT32 ValueRef OptCAlign {
2740 if (!UpRefs.empty())
2741 GEN_ERROR("Invalid upreference in type: " + (*$2)->getDescription());
Reid Spencera132e042006-12-03 05:46:11 +00002742 Value* tmpVal = getVal($4, $5);
Reid Spencer61c83e02006-08-18 08:43:06 +00002743 CHECK_FOR_ERROR
Reid Spencera132e042006-12-03 05:46:11 +00002744 $$ = new MallocInst(*$2, tmpVal, $6);
2745 delete $2;
Chris Lattner58af2a12006-02-15 07:22:58 +00002746 }
2747 | ALLOCA Types OptCAlign {
Reid Spencer14310612006-12-31 05:40:51 +00002748 if (!UpRefs.empty())
2749 GEN_ERROR("Invalid upreference in type: " + (*$2)->getDescription());
Reid Spencera132e042006-12-03 05:46:11 +00002750 $$ = new AllocaInst(*$2, 0, $3);
2751 delete $2;
Reid Spencer61c83e02006-08-18 08:43:06 +00002752 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002753 }
Reid Spencer14310612006-12-31 05:40:51 +00002754 | ALLOCA Types ',' INT32 ValueRef OptCAlign {
2755 if (!UpRefs.empty())
2756 GEN_ERROR("Invalid upreference in type: " + (*$2)->getDescription());
Reid Spencera132e042006-12-03 05:46:11 +00002757 Value* tmpVal = getVal($4, $5);
Reid Spencer61c83e02006-08-18 08:43:06 +00002758 CHECK_FOR_ERROR
Reid Spencera132e042006-12-03 05:46:11 +00002759 $$ = new AllocaInst(*$2, tmpVal, $6);
2760 delete $2;
Chris Lattner58af2a12006-02-15 07:22:58 +00002761 }
2762 | FREE ResolvedVal {
Reid Spencera132e042006-12-03 05:46:11 +00002763 if (!isa<PointerType>($2->getType()))
Reid Spencer61c83e02006-08-18 08:43:06 +00002764 GEN_ERROR("Trying to free nonpointer type " +
Reid Spencera132e042006-12-03 05:46:11 +00002765 $2->getType()->getDescription() + "!");
2766 $$ = new FreeInst($2);
Reid Spencer61c83e02006-08-18 08:43:06 +00002767 CHECK_FOR_ERROR
Chris Lattner58af2a12006-02-15 07:22:58 +00002768 }
2769
2770 | OptVolatile LOAD Types ValueRef {
Reid Spencer14310612006-12-31 05:40:51 +00002771 if (!UpRefs.empty())
2772 GEN_ERROR("Invalid upreference in type: " + (*$3)->getDescription());
Reid Spencera132e042006-12-03 05:46:11 +00002773 if (!isa<PointerType>($3->get()))
Reid Spencer61c83e02006-08-18 08:43:06 +00002774 GEN_ERROR("Can't load from nonpointer type: " +
Reid Spencera132e042006-12-03 05:46:11 +00002775 (*$3)->getDescription());
2776 if (!cast<PointerType>($3->get())->getElementType()->isFirstClassType())
Reid Spencer61c83e02006-08-18 08:43:06 +00002777 GEN_ERROR("Can't load from pointer of non-first-class type: " +
Reid Spencera132e042006-12-03 05:46:11 +00002778 (*$3)->getDescription());
2779 Value* tmpVal = getVal(*$3, $4);
Reid Spencer61c83e02006-08-18 08:43:06 +00002780 CHECK_FOR_ERROR
Reid Spencer5b7e7532006-09-28 19:28:24 +00002781 $$ = new LoadInst(tmpVal, "", $1);
Reid Spencera132e042006-12-03 05:46:11 +00002782 delete $3;
Chris Lattner58af2a12006-02-15 07:22:58 +00002783 }
2784 | OptVolatile STORE ResolvedVal ',' Types ValueRef {
Reid Spencer14310612006-12-31 05:40:51 +00002785 if (!UpRefs.empty())
2786 GEN_ERROR("Invalid upreference in type: " + (*$5)->getDescription());
Reid Spencera132e042006-12-03 05:46:11 +00002787 const PointerType *PT = dyn_cast<PointerType>($5->get());
Chris Lattner58af2a12006-02-15 07:22:58 +00002788 if (!PT)
Reid Spencer61c83e02006-08-18 08:43:06 +00002789 GEN_ERROR("Can't store to a nonpointer type: " +
Reid Spencera132e042006-12-03 05:46:11 +00002790 (*$5)->getDescription());
Chris Lattner58af2a12006-02-15 07:22:58 +00002791 const Type *ElTy = PT->getElementType();
Reid Spencera132e042006-12-03 05:46:11 +00002792 if (ElTy != $3->getType())
2793 GEN_ERROR("Can't store '" + $3->getType()->getDescription() +
Chris Lattner58af2a12006-02-15 07:22:58 +00002794 "' into space of type '" + ElTy->getDescription() + "'!");
2795
Reid Spencera132e042006-12-03 05:46:11 +00002796 Value* tmpVal = getVal(*$5, $6);
Reid Spencer61c83e02006-08-18 08:43:06 +00002797 CHECK_FOR_ERROR
Reid Spencera132e042006-12-03 05:46:11 +00002798 $$ = new StoreInst($3, tmpVal, $1);
2799 delete $5;
Chris Lattner58af2a12006-02-15 07:22:58 +00002800 }
2801 | GETELEMENTPTR Types ValueRef IndexList {
Reid Spencer14310612006-12-31 05:40:51 +00002802 if (!UpRefs.empty())
2803 GEN_ERROR("Invalid upreference in type: " + (*$2)->getDescription());
Reid Spencera132e042006-12-03 05:46:11 +00002804 if (!isa<PointerType>($2->get()))
Reid Spencer61c83e02006-08-18 08:43:06 +00002805 GEN_ERROR("getelementptr insn requires pointer operand!");
Chris Lattner58af2a12006-02-15 07:22:58 +00002806
Reid Spencera132e042006-12-03 05:46:11 +00002807 if (!GetElementPtrInst::getIndexedType(*$2, *$4, true))
Reid Spencer61c83e02006-08-18 08:43:06 +00002808 GEN_ERROR("Invalid getelementptr indices for type '" +
Reid Spencera132e042006-12-03 05:46:11 +00002809 (*$2)->getDescription()+ "'!");
2810 Value* tmpVal = getVal(*$2, $3);
Reid Spencer61c83e02006-08-18 08:43:06 +00002811 CHECK_FOR_ERROR
Reid Spencera132e042006-12-03 05:46:11 +00002812 $$ = new GetElementPtrInst(tmpVal, *$4);
2813 delete $2;
Reid Spencer5b7e7532006-09-28 19:28:24 +00002814 delete $4;
Chris Lattner58af2a12006-02-15 07:22:58 +00002815 };
2816
2817
2818%%
Reid Spencer61c83e02006-08-18 08:43:06 +00002819
Reid Spencer14310612006-12-31 05:40:51 +00002820// common code from the two 'RunVMAsmParser' functions
2821static Module* RunParser(Module * M) {
2822
2823 llvmAsmlineno = 1; // Reset the current line number...
2824 CurModule.CurrentModule = M;
2825#if YYDEBUG
2826 yydebug = Debug;
2827#endif
2828
2829 // Check to make sure the parser succeeded
2830 if (yyparse()) {
2831 if (ParserResult)
2832 delete ParserResult;
2833 return 0;
2834 }
2835
2836 // Check to make sure that parsing produced a result
2837 if (!ParserResult)
2838 return 0;
2839
2840 // Reset ParserResult variable while saving its value for the result.
2841 Module *Result = ParserResult;
2842 ParserResult = 0;
2843
2844 return Result;
2845}
2846
Reid Spencer61c83e02006-08-18 08:43:06 +00002847void llvm::GenerateError(const std::string &message, int LineNo) {
2848 if (LineNo == -1) LineNo = llvmAsmlineno;
2849 // TODO: column number in exception
2850 if (TheParseError)
2851 TheParseError->setError(CurFilename, message, LineNo);
2852 TriggerError = 1;
2853}
2854
Chris Lattner58af2a12006-02-15 07:22:58 +00002855int yyerror(const char *ErrorMsg) {
2856 std::string where
2857 = std::string((CurFilename == "-") ? std::string("<stdin>") : CurFilename)
2858 + ":" + utostr((unsigned) llvmAsmlineno) + ": ";
2859 std::string errMsg = std::string(ErrorMsg) + "\n" + where + " while reading ";
2860 if (yychar == YYEMPTY || yychar == 0)
2861 errMsg += "end-of-file.";
2862 else
2863 errMsg += "token: '" + std::string(llvmAsmtext, llvmAsmleng) + "'";
Reid Spencer61c83e02006-08-18 08:43:06 +00002864 GenerateError(errMsg);
Chris Lattner58af2a12006-02-15 07:22:58 +00002865 return 0;
2866}