blob: 6a8a0f40d888e1bc22b4470f4bc578e219325bec [file] [log] [blame]
Chris Lattnercf3056d2003-10-13 03:32:08 +00001//===-- llvmAsmParser.y - Parser for llvm assembly files --------*- C++ -*-===//
Misha Brukman5a2a3822005-05-10 22:02:28 +00002//
John Criswell856ba762003-10-21 15:17:13 +00003// The LLVM Compiler Infrastructure
4//
5// This file was developed by the LLVM research group and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
Misha Brukman5a2a3822005-05-10 22:02:28 +00007//
John Criswell856ba762003-10-21 15:17:13 +00008//===----------------------------------------------------------------------===//
Chris Lattner00950542001-06-06 20:29:01 +00009//
10// This file implements the bison parser for LLVM assembly languages files.
11//
Chris Lattnercf3056d2003-10-13 03:32:08 +000012//===----------------------------------------------------------------------===//
Chris Lattner00950542001-06-06 20:29:01 +000013
Chris Lattner00950542001-06-06 20:29:01 +000014%{
15#include "ParserInternals.h"
Chris Lattnera8e8f162005-05-06 20:27:19 +000016#include "llvm/CallingConv.h"
Chris Lattneraa2c8532006-01-25 22:26:43 +000017#include "llvm/InlineAsm.h"
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +000018#include "llvm/Instructions.h"
Chris Lattner00950542001-06-06 20:29:01 +000019#include "llvm/Module.h"
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +000020#include "llvm/SymbolTable.h"
Reid Spencer0b118202006-01-16 21:12:35 +000021#include "llvm/Assembly/AutoUpgrade.h"
Chris Lattner830b6f92004-04-05 01:30:04 +000022#include "llvm/Support/GetElementPtrTypeIterator.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000023#include "llvm/ADT/STLExtras.h"
Chris Lattner87ac9722005-11-06 06:46:28 +000024#include "llvm/Support/MathExtras.h"
Reid Spencer8ce1da72004-07-04 12:19:05 +000025#include <algorithm>
26#include <iostream>
Chris Lattner00950542001-06-06 20:29:01 +000027#include <list>
Chris Lattnerc188eeb2002-07-30 18:54:25 +000028#include <utility>
Chris Lattner00950542001-06-06 20:29:01 +000029
Reid Spencere4f47592006-08-18 17:32:55 +000030// The following is a gross hack. In order to rid the libAsmParser library of
31// exceptions, we have to have a way of getting the yyparse function to go into
32// an error situation. So, whenever we want an error to occur, the GenerateError
33// function (see bottom of file) sets TriggerError. Then, at the end of each
34// production in the grammer we use CHECK_FOR_ERROR which will invoke YYERROR
35// (a goto) to put YACC in error state. Furthermore, several calls to
36// GenerateError are made from inside productions and they must simulate the
37// previous exception behavior by exiting the production immediately. We have
38// replaced these with the GEN_ERROR macro which calls GeneratError and then
39// immediately invokes YYERROR. This would be so much cleaner if it was a
40// recursive descent parser.
Reid Spencer61c83e02006-08-18 08:43:06 +000041static bool TriggerError = false;
42#define CHECK_FOR_ERROR { if (TriggerError) { TriggerError = false; YYERROR; } }
Reid Spencer61c83e02006-08-18 08:43:06 +000043#define GEN_ERROR(msg) { GenerateError(msg); YYERROR; }
44
Chris Lattner386a3b72001-10-16 19:54:17 +000045int yyerror(const char *ErrorMsg); // Forward declarations to prevent "implicit
Chris Lattner09083092001-07-08 04:57:15 +000046int yylex(); // declaration" of xxx warnings.
Chris Lattner00950542001-06-06 20:29:01 +000047int yyparse();
48
Brian Gaeked0fde302003-11-11 22:41:34 +000049namespace llvm {
Chris Lattner86427632004-07-14 06:39:48 +000050 std::string CurFilename;
51}
52using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000053
Chris Lattner00950542001-06-06 20:29:01 +000054static Module *ParserResult;
Chris Lattner00950542001-06-06 20:29:01 +000055
Chris Lattner30c89792001-09-07 16:35:17 +000056// DEBUG_UPREFS - Define this symbol if you want to enable debugging output
57// relating to upreferences in the input stream.
58//
59//#define DEBUG_UPREFS 1
60#ifdef DEBUG_UPREFS
Chris Lattner699f1eb2002-08-14 17:12:33 +000061#define UR_OUT(X) std::cerr << X
Chris Lattner30c89792001-09-07 16:35:17 +000062#else
63#define UR_OUT(X)
64#endif
65
Vikram S. Adved3f7eb02002-07-14 22:59:28 +000066#define YYERROR_VERBOSE 1
67
Andrew Lenharth558bc882005-06-18 18:34:52 +000068static bool ObsoleteVarArgs;
Andrew Lenharthe78f50d2005-06-19 03:53:56 +000069static bool NewVarArgs;
Chris Lattnerb2b96672005-11-12 18:21:21 +000070static BasicBlock *CurBB;
71static GlobalVariable *CurGV;
Andrew Lenharth558bc882005-06-18 18:34:52 +000072
73
Chris Lattner7e708292002-06-25 16:13:24 +000074// This contains info used when building the body of a function. It is
75// destroyed when the function is completed.
Chris Lattner00950542001-06-06 20:29:01 +000076//
Chris Lattner9232b992003-04-22 18:42:41 +000077typedef std::vector<Value *> ValueList; // Numbered defs
Misha Brukman5a2a3822005-05-10 22:02:28 +000078static void
79ResolveDefinitions(std::map<const Type *,ValueList> &LateResolvers,
80 std::map<const Type *,ValueList> *FutureLateResolvers = 0);
Chris Lattner00950542001-06-06 20:29:01 +000081
82static struct PerModuleInfo {
83 Module *CurrentModule;
Chris Lattner735f2702004-07-08 22:30:50 +000084 std::map<const Type *, ValueList> Values; // Module level numbered definitions
85 std::map<const Type *,ValueList> LateResolveValues;
Chris Lattner16af11d2004-02-09 21:03:38 +000086 std::vector<PATypeHolder> Types;
Chris Lattner9232b992003-04-22 18:42:41 +000087 std::map<ValID, PATypeHolder> LateResolveTypes;
Chris Lattner00950542001-06-06 20:29:01 +000088
Chris Lattnerbc721ed2004-07-13 08:28:21 +000089 /// PlaceHolderInfo - When temporary placeholder objects are created, remember
Reid Spencerfd20c0a2006-05-29 02:34:34 +000090 /// how they were referenced and on which line of the input they came from so
Chris Lattner22ae2322004-07-13 08:39:15 +000091 /// that we can resolve them later and print error messages as appropriate.
Chris Lattnerbc721ed2004-07-13 08:28:21 +000092 std::map<Value*, std::pair<ValID, int> > PlaceHolderInfo;
93
Chris Lattner2079fde2001-10-13 06:41:08 +000094 // GlobalRefs - This maintains a mapping between <Type, ValID>'s and forward
95 // references to global values. Global values may be referenced before they
96 // are defined, and if so, the temporary object that they represent is held
Reid Spencer3271ed52004-07-18 00:08:11 +000097 // here. This is used for forward references of GlobalValues.
Chris Lattner2079fde2001-10-13 06:41:08 +000098 //
Chris Lattner9232b992003-04-22 18:42:41 +000099 typedef std::map<std::pair<const PointerType *,
Chris Lattnerbc207592004-03-08 06:09:57 +0000100 ValID>, GlobalValue*> GlobalRefsType;
Chris Lattner2079fde2001-10-13 06:41:08 +0000101 GlobalRefsType GlobalRefs;
102
Chris Lattner00950542001-06-06 20:29:01 +0000103 void ModuleDone() {
Chris Lattner7e708292002-06-25 16:13:24 +0000104 // If we could not resolve some functions at function compilation time
105 // (calls to functions before they are defined), resolve them now... Types
106 // are resolved when the constant pool has been completely parsed.
Chris Lattner30c89792001-09-07 16:35:17 +0000107 //
Chris Lattner00950542001-06-06 20:29:01 +0000108 ResolveDefinitions(LateResolveValues);
109
Chris Lattner2079fde2001-10-13 06:41:08 +0000110 // Check to make sure that all global value forward references have been
111 // resolved!
112 //
113 if (!GlobalRefs.empty()) {
Chris Lattner9232b992003-04-22 18:42:41 +0000114 std::string UndefinedReferences = "Unresolved global references exist:\n";
Misha Brukman5a2a3822005-05-10 22:02:28 +0000115
Chris Lattner749ce032002-03-11 22:12:39 +0000116 for (GlobalRefsType::iterator I = GlobalRefs.begin(), E =GlobalRefs.end();
117 I != E; ++I) {
118 UndefinedReferences += " " + I->first.first->getDescription() + " " +
119 I->first.second.getName() + "\n";
120 }
Reid Spencer61c83e02006-08-18 08:43:06 +0000121 GenerateError(UndefinedReferences);
Chris Lattner2079fde2001-10-13 06:41:08 +0000122 }
123
Reid Spencere812fb22006-01-19 01:21:04 +0000124 // Look for intrinsic functions and CallInst that need to be upgraded
Chris Lattner7d5c1e12006-03-04 07:53:16 +0000125 for (Module::iterator FI = CurrentModule->begin(),
126 FE = CurrentModule->end(); FI != FE; )
127 UpgradeCallsToIntrinsic(FI++);
Reid Spencer0b118202006-01-16 21:12:35 +0000128
Chris Lattner7e708292002-06-25 16:13:24 +0000129 Values.clear(); // Clear out function local definitions
Chris Lattner30c89792001-09-07 16:35:17 +0000130 Types.clear();
Chris Lattner00950542001-06-06 20:29:01 +0000131 CurrentModule = 0;
132 }
Chris Lattner2079fde2001-10-13 06:41:08 +0000133
Chris Lattner8a327842004-07-14 21:44:00 +0000134 // GetForwardRefForGlobal - Check to see if there is a forward reference
135 // for this global. If so, remove it from the GlobalRefs map and return it.
136 // If not, just return null.
137 GlobalValue *GetForwardRefForGlobal(const PointerType *PTy, ValID ID) {
138 // Check to see if there is a forward reference to this global variable...
139 // if there is, eliminate it and patch the reference to use the new def'n.
140 GlobalRefsType::iterator I = GlobalRefs.find(std::make_pair(PTy, ID));
141 GlobalValue *Ret = 0;
142 if (I != GlobalRefs.end()) {
143 Ret = I->second;
144 GlobalRefs.erase(I);
145 }
146 return Ret;
147 }
Chris Lattner00950542001-06-06 20:29:01 +0000148} CurModule;
149
Chris Lattner79df7c02002-03-26 18:01:55 +0000150static struct PerFunctionInfo {
Chris Lattner7e708292002-06-25 16:13:24 +0000151 Function *CurrentFunction; // Pointer to current function being created
Chris Lattner00950542001-06-06 20:29:01 +0000152
Chris Lattner735f2702004-07-08 22:30:50 +0000153 std::map<const Type*, ValueList> Values; // Keep track of #'d definitions
154 std::map<const Type*, ValueList> LateResolveValues;
Chris Lattner7e708292002-06-25 16:13:24 +0000155 bool isDeclare; // Is this function a forward declararation?
Chris Lattner00950542001-06-06 20:29:01 +0000156
Chris Lattner2e2ed292004-07-14 06:28:35 +0000157 /// BBForwardRefs - When we see forward references to basic blocks, keep
158 /// track of them here.
159 std::map<BasicBlock*, std::pair<ValID, int> > BBForwardRefs;
160 std::vector<BasicBlock*> NumberedBlocks;
161 unsigned NextBBNum;
162
Chris Lattner79df7c02002-03-26 18:01:55 +0000163 inline PerFunctionInfo() {
164 CurrentFunction = 0;
Chris Lattnere1815642001-07-15 06:35:53 +0000165 isDeclare = false;
Chris Lattner00950542001-06-06 20:29:01 +0000166 }
167
Chris Lattner79df7c02002-03-26 18:01:55 +0000168 inline void FunctionStart(Function *M) {
169 CurrentFunction = M;
Chris Lattner2e2ed292004-07-14 06:28:35 +0000170 NextBBNum = 0;
Chris Lattner00950542001-06-06 20:29:01 +0000171 }
172
Chris Lattner79df7c02002-03-26 18:01:55 +0000173 void FunctionDone() {
Chris Lattner2e2ed292004-07-14 06:28:35 +0000174 NumberedBlocks.clear();
175
176 // Any forward referenced blocks left?
177 if (!BBForwardRefs.empty())
Reid Spencer61c83e02006-08-18 08:43:06 +0000178 GenerateError("Undefined reference to label " +
Chris Lattner83beacd2005-02-24 04:59:49 +0000179 BBForwardRefs.begin()->first->getName());
Chris Lattner2e2ed292004-07-14 06:28:35 +0000180
181 // Resolve all forward references now.
Chris Lattner386a3b72001-10-16 19:54:17 +0000182 ResolveDefinitions(LateResolveValues, &CurModule.LateResolveValues);
Chris Lattner00950542001-06-06 20:29:01 +0000183
Chris Lattner7e708292002-06-25 16:13:24 +0000184 Values.clear(); // Clear out function local definitions
Chris Lattner79df7c02002-03-26 18:01:55 +0000185 CurrentFunction = 0;
Chris Lattnere1815642001-07-15 06:35:53 +0000186 isDeclare = false;
Chris Lattner00950542001-06-06 20:29:01 +0000187 }
Chris Lattner394f2eb2003-10-16 20:12:13 +0000188} CurFun; // Info for the current function...
Chris Lattner00950542001-06-06 20:29:01 +0000189
Chris Lattner394f2eb2003-10-16 20:12:13 +0000190static bool inFunctionScope() { return CurFun.CurrentFunction != 0; }
Chris Lattnerb7474512001-10-03 15:39:04 +0000191
Chris Lattner00950542001-06-06 20:29:01 +0000192
193//===----------------------------------------------------------------------===//
194// Code to handle definitions of all the types
195//===----------------------------------------------------------------------===//
196
Chris Lattner735f2702004-07-08 22:30:50 +0000197static int InsertValue(Value *V,
198 std::map<const Type*,ValueList> &ValueTab = CurFun.Values) {
199 if (V->hasName()) return -1; // Is this a numbered definition?
Chris Lattner2079fde2001-10-13 06:41:08 +0000200
201 // Yes, insert the value into the value table...
Chris Lattner735f2702004-07-08 22:30:50 +0000202 ValueList &List = ValueTab[V->getType()];
203 List.push_back(V);
Chris Lattner16af11d2004-02-09 21:03:38 +0000204 return List.size()-1;
Chris Lattner00950542001-06-06 20:29:01 +0000205}
206
Chris Lattner30c89792001-09-07 16:35:17 +0000207static const Type *getTypeVal(const ValID &D, bool DoNotImprovise = false) {
Chris Lattner00950542001-06-06 20:29:01 +0000208 switch (D.Type) {
Chris Lattnera09000d2004-07-14 23:03:46 +0000209 case ValID::NumberVal: // Is it a numbered definition?
Chris Lattner30c89792001-09-07 16:35:17 +0000210 // Module constants occupy the lowest numbered slots...
Misha Brukman5a2a3822005-05-10 22:02:28 +0000211 if ((unsigned)D.Num < CurModule.Types.size())
Chris Lattnera09000d2004-07-14 23:03:46 +0000212 return CurModule.Types[(unsigned)D.Num];
Chris Lattner42c9e772001-10-20 09:32:59 +0000213 break;
Chris Lattnera09000d2004-07-14 23:03:46 +0000214 case ValID::NameVal: // Is it a named definition?
215 if (const Type *N = CurModule.CurrentModule->getTypeByName(D.Name)) {
216 D.destroy(); // Free old strdup'd memory...
217 return N;
Chris Lattner6e6026b2002-11-20 18:36:02 +0000218 }
Chris Lattnera09000d2004-07-14 23:03:46 +0000219 break;
Chris Lattner30c89792001-09-07 16:35:17 +0000220 default:
Reid Spencer61c83e02006-08-18 08:43:06 +0000221 GenerateError("Internal parser error: Invalid symbol type reference!");
Chris Lattner30c89792001-09-07 16:35:17 +0000222 }
223
224 // If we reached here, we referenced either a symbol that we don't know about
225 // or an id number that hasn't been read yet. We may be referencing something
226 // forward, so just create an entry to be resolved later and get to it...
227 //
228 if (DoNotImprovise) return 0; // Do we just want a null to be returned?
229
Chris Lattner355ad1f2005-03-21 06:27:42 +0000230
231 if (inFunctionScope()) {
232 if (D.Type == ValID::NameVal)
Reid Spencer61c83e02006-08-18 08:43:06 +0000233 GenerateError("Reference to an undefined type: '" + D.getName() + "'");
Chris Lattner355ad1f2005-03-21 06:27:42 +0000234 else
Reid Spencer61c83e02006-08-18 08:43:06 +0000235 GenerateError("Reference to an undefined type: #" + itostr(D.Num));
Chris Lattner4a42e902001-10-22 05:56:09 +0000236 }
Chris Lattner30c89792001-09-07 16:35:17 +0000237
Chris Lattner355ad1f2005-03-21 06:27:42 +0000238 std::map<ValID, PATypeHolder>::iterator I =CurModule.LateResolveTypes.find(D);
239 if (I != CurModule.LateResolveTypes.end())
240 return I->second;
241
Chris Lattner82269592001-10-22 06:01:08 +0000242 Type *Typ = OpaqueType::get();
Chris Lattner355ad1f2005-03-21 06:27:42 +0000243 CurModule.LateResolveTypes.insert(std::make_pair(D, Typ));
Chris Lattner30c89792001-09-07 16:35:17 +0000244 return Typ;
Chris Lattner355ad1f2005-03-21 06:27:42 +0000245 }
Chris Lattner30c89792001-09-07 16:35:17 +0000246
Chris Lattner9232b992003-04-22 18:42:41 +0000247static Value *lookupInSymbolTable(const Type *Ty, const std::string &Name) {
Misha Brukman5a2a3822005-05-10 22:02:28 +0000248 SymbolTable &SymTab =
Chris Lattner394f2eb2003-10-16 20:12:13 +0000249 inFunctionScope() ? CurFun.CurrentFunction->getSymbolTable() :
Chris Lattner9705a152002-05-02 19:27:42 +0000250 CurModule.CurrentModule->getSymbolTable();
Chris Lattner6e6026b2002-11-20 18:36:02 +0000251 return SymTab.lookup(Ty, Name);
Chris Lattnerf4ba6c72001-10-03 06:12:09 +0000252}
253
Chris Lattner2079fde2001-10-13 06:41:08 +0000254// getValNonImprovising - Look up the value specified by the provided type and
255// the provided ValID. If the value exists and has already been defined, return
256// it. Otherwise return null.
257//
258static Value *getValNonImprovising(const Type *Ty, const ValID &D) {
Chris Lattner79df7c02002-03-26 18:01:55 +0000259 if (isa<FunctionType>(Ty))
Reid Spencer61c83e02006-08-18 08:43:06 +0000260 GenerateError("Functions are not values and "
Chris Lattner79df7c02002-03-26 18:01:55 +0000261 "must be referenced as pointers");
Chris Lattner386a3b72001-10-16 19:54:17 +0000262
Chris Lattner30c89792001-09-07 16:35:17 +0000263 switch (D.Type) {
Chris Lattner1a1cb112001-09-30 22:46:54 +0000264 case ValID::NumberVal: { // Is it a numbered definition?
Chris Lattner00950542001-06-06 20:29:01 +0000265 unsigned Num = (unsigned)D.Num;
266
267 // Module constants occupy the lowest numbered slots...
Chris Lattner735f2702004-07-08 22:30:50 +0000268 std::map<const Type*,ValueList>::iterator VI = CurModule.Values.find(Ty);
Chris Lattner16af11d2004-02-09 21:03:38 +0000269 if (VI != CurModule.Values.end()) {
Misha Brukman5a2a3822005-05-10 22:02:28 +0000270 if (Num < VI->second.size())
Chris Lattner16af11d2004-02-09 21:03:38 +0000271 return VI->second[Num];
272 Num -= VI->second.size();
Chris Lattner00950542001-06-06 20:29:01 +0000273 }
274
275 // Make sure that our type is within bounds
Chris Lattner735f2702004-07-08 22:30:50 +0000276 VI = CurFun.Values.find(Ty);
Chris Lattner16af11d2004-02-09 21:03:38 +0000277 if (VI == CurFun.Values.end()) return 0;
Chris Lattner00950542001-06-06 20:29:01 +0000278
279 // Check that the number is within bounds...
Chris Lattner16af11d2004-02-09 21:03:38 +0000280 if (VI->second.size() <= Num) return 0;
Misha Brukman5a2a3822005-05-10 22:02:28 +0000281
Chris Lattner16af11d2004-02-09 21:03:38 +0000282 return VI->second[Num];
Chris Lattner00950542001-06-06 20:29:01 +0000283 }
Chris Lattner2079fde2001-10-13 06:41:08 +0000284
Chris Lattner1a1cb112001-09-30 22:46:54 +0000285 case ValID::NameVal: { // Is it a named definition?
Chris Lattner9232b992003-04-22 18:42:41 +0000286 Value *N = lookupInSymbolTable(Ty, std::string(D.Name));
Chris Lattner2079fde2001-10-13 06:41:08 +0000287 if (N == 0) return 0;
Chris Lattner00950542001-06-06 20:29:01 +0000288
289 D.destroy(); // Free old strdup'd memory...
290 return N;
291 }
292
Misha Brukman5a2a3822005-05-10 22:02:28 +0000293 // Check to make sure that "Ty" is an integral type, and that our
Chris Lattner2079fde2001-10-13 06:41:08 +0000294 // value will fit into the specified type...
295 case ValID::ConstSIntVal: // Is it a constant pool reference??
Chris Lattnerd78700d2002-08-16 21:14:40 +0000296 if (!ConstantSInt::isValueValidForType(Ty, D.ConstPool64))
Reid Spencer61c83e02006-08-18 08:43:06 +0000297 GenerateError("Signed integral constant '" +
Misha Brukman5a2a3822005-05-10 22:02:28 +0000298 itostr(D.ConstPool64) + "' is invalid for type '" +
Chris Lattnerd78700d2002-08-16 21:14:40 +0000299 Ty->getDescription() + "'!");
300 return ConstantSInt::get(Ty, D.ConstPool64);
Chris Lattner2079fde2001-10-13 06:41:08 +0000301
302 case ValID::ConstUIntVal: // Is it an unsigned const pool reference?
Chris Lattnere9bb2df2001-12-03 22:26:30 +0000303 if (!ConstantUInt::isValueValidForType(Ty, D.UConstPool64)) {
304 if (!ConstantSInt::isValueValidForType(Ty, D.ConstPool64)) {
Reid Spencer61c83e02006-08-18 08:43:06 +0000305 GenerateError("Integral constant '" + utostr(D.UConstPool64) +
Chris Lattnerf8dff732002-07-18 05:18:37 +0000306 "' is invalid or out of range!");
Chris Lattner2079fde2001-10-13 06:41:08 +0000307 } else { // This is really a signed reference. Transmogrify.
Reid Spencer3271ed52004-07-18 00:08:11 +0000308 return ConstantSInt::get(Ty, D.ConstPool64);
Chris Lattner2079fde2001-10-13 06:41:08 +0000309 }
310 } else {
Chris Lattnere9bb2df2001-12-03 22:26:30 +0000311 return ConstantUInt::get(Ty, D.UConstPool64);
Chris Lattner2079fde2001-10-13 06:41:08 +0000312 }
313
Chris Lattner2079fde2001-10-13 06:41:08 +0000314 case ValID::ConstFPVal: // Is it a floating point const pool reference?
Chris Lattnere9bb2df2001-12-03 22:26:30 +0000315 if (!ConstantFP::isValueValidForType(Ty, D.ConstPoolFP))
Reid Spencer61c83e02006-08-18 08:43:06 +0000316 GenerateError("FP constant invalid for type!!");
Chris Lattnere9bb2df2001-12-03 22:26:30 +0000317 return ConstantFP::get(Ty, D.ConstPoolFP);
Misha Brukman5a2a3822005-05-10 22:02:28 +0000318
Chris Lattner2079fde2001-10-13 06:41:08 +0000319 case ValID::ConstNullVal: // Is it a null value?
Chris Lattner9b625032002-05-06 16:15:30 +0000320 if (!isa<PointerType>(Ty))
Reid Spencer61c83e02006-08-18 08:43:06 +0000321 GenerateError("Cannot create a a non pointer null!");
Chris Lattnere9bb2df2001-12-03 22:26:30 +0000322 return ConstantPointerNull::get(cast<PointerType>(Ty));
Misha Brukman5a2a3822005-05-10 22:02:28 +0000323
Chris Lattner16710e92004-10-16 18:17:13 +0000324 case ValID::ConstUndefVal: // Is it an undef value?
325 return UndefValue::get(Ty);
Misha Brukman5a2a3822005-05-10 22:02:28 +0000326
Chris Lattnerf1f03df2005-12-21 17:53:02 +0000327 case ValID::ConstZeroVal: // Is it a zero value?
328 return Constant::getNullValue(Ty);
329
Chris Lattnerd78700d2002-08-16 21:14:40 +0000330 case ValID::ConstantVal: // Fully resolved constant?
331 if (D.ConstantValue->getType() != Ty)
Reid Spencer61c83e02006-08-18 08:43:06 +0000332 GenerateError("Constant expression type different from required type!");
Chris Lattnerd78700d2002-08-16 21:14:40 +0000333 return D.ConstantValue;
334
Chris Lattneraa2c8532006-01-25 22:26:43 +0000335 case ValID::InlineAsmVal: { // Inline asm expression
336 const PointerType *PTy = dyn_cast<PointerType>(Ty);
337 const FunctionType *FTy =
338 PTy ? dyn_cast<FunctionType>(PTy->getElementType()) : 0;
339 if (!FTy || !InlineAsm::Verify(FTy, D.IAD->Constraints))
Reid Spencer61c83e02006-08-18 08:43:06 +0000340 GenerateError("Invalid type for asm constraint string!");
Chris Lattneraa2c8532006-01-25 22:26:43 +0000341 InlineAsm *IA = InlineAsm::get(FTy, D.IAD->AsmString, D.IAD->Constraints,
342 D.IAD->HasSideEffects);
343 D.destroy(); // Free InlineAsmDescriptor.
344 return IA;
345 }
Chris Lattner30c89792001-09-07 16:35:17 +0000346 default:
347 assert(0 && "Unhandled case!");
Chris Lattner2079fde2001-10-13 06:41:08 +0000348 return 0;
Chris Lattner00950542001-06-06 20:29:01 +0000349 } // End of switch
350
Chris Lattner2079fde2001-10-13 06:41:08 +0000351 assert(0 && "Unhandled case!");
352 return 0;
353}
354
Chris Lattner2079fde2001-10-13 06:41:08 +0000355// getVal - This function is identical to getValNonImprovising, except that if a
356// value is not already defined, it "improvises" by creating a placeholder var
357// that looks and acts just like the requested variable. When the value is
358// defined later, all uses of the placeholder variable are replaced with the
359// real thing.
360//
Chris Lattner64116f92004-07-14 01:33:11 +0000361static Value *getVal(const Type *Ty, const ValID &ID) {
362 if (Ty == Type::LabelTy)
Reid Spencer61c83e02006-08-18 08:43:06 +0000363 GenerateError("Cannot use a basic block here");
Chris Lattner2079fde2001-10-13 06:41:08 +0000364
Chris Lattner64116f92004-07-14 01:33:11 +0000365 // See if the value has already been defined.
366 Value *V = getValNonImprovising(Ty, ID);
Chris Lattner2079fde2001-10-13 06:41:08 +0000367 if (V) return V;
Chris Lattner00950542001-06-06 20:29:01 +0000368
Chris Lattner60cd9552005-03-23 01:29:26 +0000369 if (!Ty->isFirstClassType() && !isa<OpaqueType>(Ty))
Reid Spencer61c83e02006-08-18 08:43:06 +0000370 GenerateError("Invalid use of a composite type!");
Chris Lattner60cd9552005-03-23 01:29:26 +0000371
Chris Lattner00950542001-06-06 20:29:01 +0000372 // If we reached here, we referenced either a symbol that we don't know about
373 // or an id number that hasn't been read yet. We may be referencing something
374 // forward, so just create an entry to be resolved later and get to it...
375 //
Chris Lattner64116f92004-07-14 01:33:11 +0000376 V = new Argument(Ty);
Chris Lattner00950542001-06-06 20:29:01 +0000377
Chris Lattnerbc721ed2004-07-13 08:28:21 +0000378 // Remember where this forward reference came from. FIXME, shouldn't we try
379 // to recycle these things??
Chris Lattner64116f92004-07-14 01:33:11 +0000380 CurModule.PlaceHolderInfo.insert(std::make_pair(V, std::make_pair(ID,
Chris Lattnerbc721ed2004-07-13 08:28:21 +0000381 llvmAsmlineno)));
382
Chris Lattner79df7c02002-03-26 18:01:55 +0000383 if (inFunctionScope())
Chris Lattnerbc721ed2004-07-13 08:28:21 +0000384 InsertValue(V, CurFun.LateResolveValues);
Misha Brukman5a2a3822005-05-10 22:02:28 +0000385 else
Chris Lattnerbc721ed2004-07-13 08:28:21 +0000386 InsertValue(V, CurModule.LateResolveValues);
387 return V;
Chris Lattner00950542001-06-06 20:29:01 +0000388}
389
Chris Lattner2e2ed292004-07-14 06:28:35 +0000390/// getBBVal - This is used for two purposes:
391/// * If isDefinition is true, a new basic block with the specified ID is being
392/// defined.
393/// * If isDefinition is true, this is a reference to a basic block, which may
394/// or may not be a forward reference.
395///
396static BasicBlock *getBBVal(const ValID &ID, bool isDefinition = false) {
Chris Lattner64116f92004-07-14 01:33:11 +0000397 assert(inFunctionScope() && "Can't get basic block at global scope!");
398
Chris Lattner2e2ed292004-07-14 06:28:35 +0000399 std::string Name;
400 BasicBlock *BB = 0;
401 switch (ID.Type) {
Reid Spencer61c83e02006-08-18 08:43:06 +0000402 default: GenerateError("Illegal label reference " + ID.getName());
Chris Lattner2e2ed292004-07-14 06:28:35 +0000403 case ValID::NumberVal: // Is it a numbered definition?
404 if (unsigned(ID.Num) >= CurFun.NumberedBlocks.size())
405 CurFun.NumberedBlocks.resize(ID.Num+1);
406 BB = CurFun.NumberedBlocks[ID.Num];
407 break;
408 case ValID::NameVal: // Is it a named definition?
409 Name = ID.Name;
Chris Lattnera09000d2004-07-14 23:03:46 +0000410 if (Value *N = CurFun.CurrentFunction->
411 getSymbolTable().lookup(Type::LabelTy, Name))
Chris Lattner2e2ed292004-07-14 06:28:35 +0000412 BB = cast<BasicBlock>(N);
413 break;
414 }
Chris Lattner64116f92004-07-14 01:33:11 +0000415
Chris Lattner2e2ed292004-07-14 06:28:35 +0000416 // See if the block has already been defined.
417 if (BB) {
418 // If this is the definition of the block, make sure the existing value was
419 // just a forward reference. If it was a forward reference, there will be
420 // an entry for it in the PlaceHolderInfo map.
421 if (isDefinition && !CurFun.BBForwardRefs.erase(BB))
422 // The existing value was a definition, not a forward reference.
Reid Spencer61c83e02006-08-18 08:43:06 +0000423 GenerateError("Redefinition of label " + ID.getName());
Chris Lattner64116f92004-07-14 01:33:11 +0000424
Chris Lattner2e2ed292004-07-14 06:28:35 +0000425 ID.destroy(); // Free strdup'd memory.
426 return BB;
427 }
428
429 // Otherwise this block has not been seen before.
430 BB = new BasicBlock("", CurFun.CurrentFunction);
431 if (ID.Type == ValID::NameVal) {
432 BB->setName(ID.Name);
433 } else {
434 CurFun.NumberedBlocks[ID.Num] = BB;
435 }
436
437 // If this is not a definition, keep track of it so we can use it as a forward
438 // reference.
439 if (!isDefinition) {
440 // Remember where this forward reference came from.
441 CurFun.BBForwardRefs[BB] = std::make_pair(ID, llvmAsmlineno);
442 } else {
443 // The forward declaration could have been inserted anywhere in the
444 // function: insert it into the correct place now.
445 CurFun.CurrentFunction->getBasicBlockList().remove(BB);
446 CurFun.CurrentFunction->getBasicBlockList().push_back(BB);
447 }
Chris Lattnere8343a52004-10-26 18:26:14 +0000448 ID.destroy();
Chris Lattner64116f92004-07-14 01:33:11 +0000449 return BB;
450}
451
Chris Lattner00950542001-06-06 20:29:01 +0000452
453//===----------------------------------------------------------------------===//
454// Code to handle forward references in instructions
455//===----------------------------------------------------------------------===//
456//
457// This code handles the late binding needed with statements that reference
458// values not defined yet... for example, a forward branch, or the PHI node for
459// a loop body.
460//
Chris Lattner394f2eb2003-10-16 20:12:13 +0000461// This keeps a table (CurFun.LateResolveValues) of all such forward references
Chris Lattner00950542001-06-06 20:29:01 +0000462// and back patchs after we are done.
463//
464
Misha Brukman5a2a3822005-05-10 22:02:28 +0000465// ResolveDefinitions - If we could not resolve some defs at parsing
466// time (forward branches, phi functions for loops, etc...) resolve the
Chris Lattner00950542001-06-06 20:29:01 +0000467// defs now...
468//
Misha Brukman5a2a3822005-05-10 22:02:28 +0000469static void
470ResolveDefinitions(std::map<const Type*,ValueList> &LateResolvers,
471 std::map<const Type*,ValueList> *FutureLateResolvers) {
Chris Lattner00950542001-06-06 20:29:01 +0000472 // Loop over LateResolveDefs fixing up stuff that couldn't be resolved
Chris Lattner735f2702004-07-08 22:30:50 +0000473 for (std::map<const Type*,ValueList>::iterator LRI = LateResolvers.begin(),
Chris Lattner16af11d2004-02-09 21:03:38 +0000474 E = LateResolvers.end(); LRI != E; ++LRI) {
475 ValueList &List = LRI->second;
476 while (!List.empty()) {
477 Value *V = List.back();
478 List.pop_back();
Chris Lattnerbc721ed2004-07-13 08:28:21 +0000479
480 std::map<Value*, std::pair<ValID, int> >::iterator PHI =
481 CurModule.PlaceHolderInfo.find(V);
482 assert(PHI != CurModule.PlaceHolderInfo.end() && "Placeholder error!");
483
484 ValID &DID = PHI->second.first;
Chris Lattner00950542001-06-06 20:29:01 +0000485
Chris Lattner735f2702004-07-08 22:30:50 +0000486 Value *TheRealValue = getValNonImprovising(LRI->first, DID);
Chris Lattner386a3b72001-10-16 19:54:17 +0000487 if (TheRealValue) {
488 V->replaceAllUsesWith(TheRealValue);
489 delete V;
Chris Lattnerbc721ed2004-07-13 08:28:21 +0000490 CurModule.PlaceHolderInfo.erase(PHI);
Chris Lattner386a3b72001-10-16 19:54:17 +0000491 } else if (FutureLateResolvers) {
Chris Lattner79df7c02002-03-26 18:01:55 +0000492 // Functions have their unresolved items forwarded to the module late
Chris Lattner386a3b72001-10-16 19:54:17 +0000493 // resolver table
494 InsertValue(V, *FutureLateResolvers);
495 } else {
Reid Spencer3271ed52004-07-18 00:08:11 +0000496 if (DID.Type == ValID::NameVal)
Reid Spencer61c83e02006-08-18 08:43:06 +0000497 GenerateError("Reference to an invalid definition: '" +DID.getName()+
Reid Spencer3271ed52004-07-18 00:08:11 +0000498 "' of type '" + V->getType()->getDescription() + "'",
499 PHI->second.second);
500 else
Reid Spencer61c83e02006-08-18 08:43:06 +0000501 GenerateError("Reference to an invalid definition: #" +
Misha Brukman5a2a3822005-05-10 22:02:28 +0000502 itostr(DID.Num) + " of type '" +
Reid Spencer3271ed52004-07-18 00:08:11 +0000503 V->getType()->getDescription() + "'",
504 PHI->second.second);
Chris Lattner30c89792001-09-07 16:35:17 +0000505 }
Chris Lattner00950542001-06-06 20:29:01 +0000506 }
507 }
508
509 LateResolvers.clear();
510}
511
Chris Lattner4a42e902001-10-22 05:56:09 +0000512// ResolveTypeTo - A brand new type was just declared. This means that (if
513// name is not null) things referencing Name can be resolved. Otherwise, things
514// refering to the number can be resolved. Do this now.
Chris Lattner00950542001-06-06 20:29:01 +0000515//
Chris Lattner4a42e902001-10-22 05:56:09 +0000516static void ResolveTypeTo(char *Name, const Type *ToTy) {
Chris Lattner355ad1f2005-03-21 06:27:42 +0000517 ValID D;
518 if (Name) D = ValID::create(Name);
519 else D = ValID::create((int)CurModule.Types.size());
Chris Lattner00950542001-06-06 20:29:01 +0000520
Chris Lattner355ad1f2005-03-21 06:27:42 +0000521 std::map<ValID, PATypeHolder>::iterator I =
522 CurModule.LateResolveTypes.find(D);
523 if (I != CurModule.LateResolveTypes.end()) {
524 ((DerivedType*)I->second.get())->refineAbstractTypeTo(ToTy);
525 CurModule.LateResolveTypes.erase(I);
Chris Lattner30c89792001-09-07 16:35:17 +0000526 }
527}
528
Chris Lattner1781aca2001-09-18 04:00:54 +0000529// setValueName - Set the specified value to the name given. The name may be
530// null potentially, in which case this is a noop. The string passed in is
Chris Lattner8ab406d2004-07-13 07:59:27 +0000531// assumed to be a malloc'd string buffer, and is free'd by this function.
532//
533static void setValueName(Value *V, char *NameStr) {
534 if (NameStr) {
535 std::string Name(NameStr); // Copy string
536 free(NameStr); // Free old string
Chris Lattnerc9aea522004-07-13 08:12:39 +0000537
Misha Brukman5a2a3822005-05-10 22:02:28 +0000538 if (V->getType() == Type::VoidTy)
Reid Spencer61c83e02006-08-18 08:43:06 +0000539 GenerateError("Can't assign name '" + Name+"' to value with void type!");
Misha Brukman5a2a3822005-05-10 22:02:28 +0000540
Chris Lattner8ab406d2004-07-13 07:59:27 +0000541 assert(inFunctionScope() && "Must be in function scope!");
542 SymbolTable &ST = CurFun.CurrentFunction->getSymbolTable();
543 if (ST.lookup(V->getType(), Name))
Reid Spencer61c83e02006-08-18 08:43:06 +0000544 GenerateError("Redefinition of value named '" + Name + "' in the '" +
Chris Lattner8ab406d2004-07-13 07:59:27 +0000545 V->getType()->getDescription() + "' type plane!");
Misha Brukman5a2a3822005-05-10 22:02:28 +0000546
Chris Lattnerc9aea522004-07-13 08:12:39 +0000547 // Set the name.
Chris Lattner262bb9a2005-03-05 19:04:07 +0000548 V->setName(Name);
Chris Lattner8ab406d2004-07-13 07:59:27 +0000549 }
550}
551
Chris Lattnerd88998d2004-07-14 08:23:52 +0000552/// ParseGlobalVariable - Handle parsing of a global. If Initializer is null,
553/// this is a declaration, otherwise it is a definition.
Chris Lattnerb2b96672005-11-12 18:21:21 +0000554static GlobalVariable *
555ParseGlobalVariable(char *NameStr,GlobalValue::LinkageTypes Linkage,
556 bool isConstantGlobal, const Type *Ty,
557 Constant *Initializer) {
Chris Lattnercb9d6a82004-07-14 20:42:57 +0000558 if (isa<FunctionType>(Ty))
Reid Spencer61c83e02006-08-18 08:43:06 +0000559 GenerateError("Cannot declare global vars of function type!");
Chris Lattnercb9d6a82004-07-14 20:42:57 +0000560
Misha Brukman5a2a3822005-05-10 22:02:28 +0000561 const PointerType *PTy = PointerType::get(Ty);
Chris Lattnera09000d2004-07-14 23:03:46 +0000562
Chris Lattnercb9d6a82004-07-14 20:42:57 +0000563 std::string Name;
564 if (NameStr) {
565 Name = NameStr; // Copy string
566 free(NameStr); // Free old string
Chris Lattnerd88998d2004-07-14 08:23:52 +0000567 }
Chris Lattnercb9d6a82004-07-14 20:42:57 +0000568
Chris Lattner8a327842004-07-14 21:44:00 +0000569 // See if this global value was forward referenced. If so, recycle the
570 // object.
Misha Brukman5a2a3822005-05-10 22:02:28 +0000571 ValID ID;
Chris Lattner8a327842004-07-14 21:44:00 +0000572 if (!Name.empty()) {
573 ID = ValID::create((char*)Name.c_str());
Chris Lattnercb9d6a82004-07-14 20:42:57 +0000574 } else {
Chris Lattner8a327842004-07-14 21:44:00 +0000575 ID = ValID::create((int)CurModule.Values[PTy].size());
576 }
577
578 if (GlobalValue *FWGV = CurModule.GetForwardRefForGlobal(PTy, ID)) {
Misha Brukman5a2a3822005-05-10 22:02:28 +0000579 // Move the global to the end of the list, from whereever it was
Chris Lattner8a327842004-07-14 21:44:00 +0000580 // previously inserted.
581 GlobalVariable *GV = cast<GlobalVariable>(FWGV);
582 CurModule.CurrentModule->getGlobalList().remove(GV);
583 CurModule.CurrentModule->getGlobalList().push_back(GV);
584 GV->setInitializer(Initializer);
585 GV->setLinkage(Linkage);
586 GV->setConstant(isConstantGlobal);
Chris Lattnera2d4b3c2004-07-16 01:18:09 +0000587 InsertValue(GV, CurModule.Values);
Chris Lattnerb2b96672005-11-12 18:21:21 +0000588 return GV;
Chris Lattnercb9d6a82004-07-14 20:42:57 +0000589 }
Chris Lattnera09000d2004-07-14 23:03:46 +0000590
591 // If this global has a name, check to see if there is already a definition
592 // of this global in the module. If so, merge as appropriate. Note that
593 // this is really just a hack around problems in the CFE. :(
594 if (!Name.empty()) {
595 // We are a simple redefinition of a value, check to see if it is defined
596 // the same as the old one.
Misha Brukman5a2a3822005-05-10 22:02:28 +0000597 if (GlobalVariable *EGV =
Chris Lattnera09000d2004-07-14 23:03:46 +0000598 CurModule.CurrentModule->getGlobalVariable(Name, Ty)) {
599 // We are allowed to redefine a global variable in two circumstances:
Misha Brukman5a2a3822005-05-10 22:02:28 +0000600 // 1. If at least one of the globals is uninitialized or
Chris Lattnera09000d2004-07-14 23:03:46 +0000601 // 2. If both initializers have the same value.
602 //
603 if (!EGV->hasInitializer() || !Initializer ||
604 EGV->getInitializer() == Initializer) {
605
606 // Make sure the existing global version gets the initializer! Make
607 // sure that it also gets marked const if the new version is.
608 if (Initializer && !EGV->hasInitializer())
609 EGV->setInitializer(Initializer);
610 if (isConstantGlobal)
611 EGV->setConstant(true);
612 EGV->setLinkage(Linkage);
Chris Lattnerb2b96672005-11-12 18:21:21 +0000613 return EGV;
Chris Lattnera09000d2004-07-14 23:03:46 +0000614 }
615
Reid Spencer61c83e02006-08-18 08:43:06 +0000616 GenerateError("Redefinition of global variable named '" + Name +
Chris Lattnera09000d2004-07-14 23:03:46 +0000617 "' in the '" + Ty->getDescription() + "' type plane!");
618 }
619 }
620
621 // Otherwise there is no existing GV to use, create one now.
Chris Lattnera2d4b3c2004-07-16 01:18:09 +0000622 GlobalVariable *GV =
Misha Brukman5a2a3822005-05-10 22:02:28 +0000623 new GlobalVariable(Ty, isConstantGlobal, Linkage, Initializer, Name,
Chris Lattnera2d4b3c2004-07-16 01:18:09 +0000624 CurModule.CurrentModule);
625 InsertValue(GV, CurModule.Values);
Chris Lattnerb2b96672005-11-12 18:21:21 +0000626 return GV;
Chris Lattnerd88998d2004-07-14 08:23:52 +0000627}
Chris Lattner8ab406d2004-07-13 07:59:27 +0000628
Reid Spencer75719bf2004-05-26 21:48:31 +0000629// setTypeName - Set the specified type to the name given. The name may be
630// null potentially, in which case this is a noop. The string passed in is
631// assumed to be a malloc'd string buffer, and is freed by this function.
632//
633// This function returns true if the type has already been defined, but is
634// allowed to be redefined in the specified context. If the name is a new name
635// for the type plane, it is inserted and false is returned.
Chris Lattner8c89a0a2004-07-13 08:10:10 +0000636static bool setTypeName(const Type *T, char *NameStr) {
Chris Lattnera09000d2004-07-14 23:03:46 +0000637 assert(!inFunctionScope() && "Can't give types function-local names!");
Reid Spencer75719bf2004-05-26 21:48:31 +0000638 if (NameStr == 0) return false;
Misha Brukman5a2a3822005-05-10 22:02:28 +0000639
Reid Spencer75719bf2004-05-26 21:48:31 +0000640 std::string Name(NameStr); // Copy string
641 free(NameStr); // Free old string
642
643 // We don't allow assigning names to void type
Misha Brukman5a2a3822005-05-10 22:02:28 +0000644 if (T == Type::VoidTy)
Reid Spencer61c83e02006-08-18 08:43:06 +0000645 GenerateError("Can't assign name '" + Name + "' to the void type!");
Reid Spencer75719bf2004-05-26 21:48:31 +0000646
Chris Lattnera09000d2004-07-14 23:03:46 +0000647 // Set the type name, checking for conflicts as we do so.
648 bool AlreadyExists = CurModule.CurrentModule->addTypeName(Name, T);
Reid Spencer75719bf2004-05-26 21:48:31 +0000649
Chris Lattnera09000d2004-07-14 23:03:46 +0000650 if (AlreadyExists) { // Inserting a name that is already defined???
651 const Type *Existing = CurModule.CurrentModule->getTypeByName(Name);
652 assert(Existing && "Conflict but no matching type?");
653
Reid Spencer75719bf2004-05-26 21:48:31 +0000654 // There is only one case where this is allowed: when we are refining an
655 // opaque type. In this case, Existing will be an opaque type.
656 if (const OpaqueType *OpTy = dyn_cast<OpaqueType>(Existing)) {
657 // We ARE replacing an opaque type!
Chris Lattner8c89a0a2004-07-13 08:10:10 +0000658 const_cast<OpaqueType*>(OpTy)->refineAbstractTypeTo(T);
Reid Spencer75719bf2004-05-26 21:48:31 +0000659 return true;
660 }
661
662 // Otherwise, this is an attempt to redefine a type. That's okay if
663 // the redefinition is identical to the original. This will be so if
664 // Existing and T point to the same Type object. In this one case we
665 // allow the equivalent redefinition.
666 if (Existing == T) return true; // Yes, it's equal.
667
668 // Any other kind of (non-equivalent) redefinition is an error.
Reid Spencer61c83e02006-08-18 08:43:06 +0000669 GenerateError("Redefinition of type named '" + Name + "' in the '" +
Reid Spencer3271ed52004-07-18 00:08:11 +0000670 T->getDescription() + "' type plane!");
Reid Spencer75719bf2004-05-26 21:48:31 +0000671 }
672
Reid Spencer75719bf2004-05-26 21:48:31 +0000673 return false;
674}
Chris Lattner8896eda2001-07-09 19:38:36 +0000675
Chris Lattner30c89792001-09-07 16:35:17 +0000676//===----------------------------------------------------------------------===//
677// Code for handling upreferences in type names...
Chris Lattner8896eda2001-07-09 19:38:36 +0000678//
Chris Lattner8896eda2001-07-09 19:38:36 +0000679
Chris Lattner3b073862004-02-09 03:19:29 +0000680// TypeContains - Returns true if Ty directly contains E in it.
Chris Lattner30c89792001-09-07 16:35:17 +0000681//
682static bool TypeContains(const Type *Ty, const Type *E) {
Misha Brukman5a2a3822005-05-10 22:02:28 +0000683 return std::find(Ty->subtype_begin(), Ty->subtype_end(),
Chris Lattner6d8dbec2004-12-08 16:13:53 +0000684 E) != Ty->subtype_end();
Chris Lattner3b073862004-02-09 03:19:29 +0000685}
686
687namespace {
688 struct UpRefRecord {
689 // NestingLevel - The number of nesting levels that need to be popped before
690 // this type is resolved.
691 unsigned NestingLevel;
Misha Brukman5a2a3822005-05-10 22:02:28 +0000692
Chris Lattner3b073862004-02-09 03:19:29 +0000693 // LastContainedTy - This is the type at the current binding level for the
694 // type. Every time we reduce the nesting level, this gets updated.
695 const Type *LastContainedTy;
696
697 // UpRefTy - This is the actual opaque type that the upreference is
698 // represented with.
699 OpaqueType *UpRefTy;
700
701 UpRefRecord(unsigned NL, OpaqueType *URTy)
702 : NestingLevel(NL), LastContainedTy(URTy), UpRefTy(URTy) {}
703 };
Chris Lattner30c89792001-09-07 16:35:17 +0000704}
Chris Lattner698b56e2001-07-20 19:15:08 +0000705
Chris Lattnerc7d3f6b2003-12-31 02:18:11 +0000706// UpRefs - A list of the outstanding upreferences that need to be resolved.
Chris Lattner3b073862004-02-09 03:19:29 +0000707static std::vector<UpRefRecord> UpRefs;
Chris Lattner30c89792001-09-07 16:35:17 +0000708
Chris Lattnerc7d3f6b2003-12-31 02:18:11 +0000709/// HandleUpRefs - Every time we finish a new layer of types, this function is
710/// called. It loops through the UpRefs vector, which is a list of the
711/// currently active types. For each type, if the up reference is contained in
712/// the newly completed type, we decrement the level count. When the level
713/// count reaches zero, the upreferenced type is the type that is passed in:
714/// thus we can complete the cycle.
715///
Chris Lattner8b88b3b2002-04-04 19:23:55 +0000716static PATypeHolder HandleUpRefs(const Type *ty) {
Chris Lattner2c37c182004-02-09 03:03:10 +0000717 if (!ty->isAbstract()) return ty;
Chris Lattner8b88b3b2002-04-04 19:23:55 +0000718 PATypeHolder Ty(ty);
Misha Brukman5a2a3822005-05-10 22:02:28 +0000719 UR_OUT("Type '" << Ty->getDescription() <<
Chris Lattner5084d032001-11-02 07:46:26 +0000720 "' newly formed. Resolving upreferences.\n" <<
721 UpRefs.size() << " upreferences active!\n");
Chris Lattner026a8ce2004-02-09 18:53:54 +0000722
723 // If we find any resolvable upreferences (i.e., those whose NestingLevel goes
724 // to zero), we resolve them all together before we resolve them to Ty. At
725 // the end of the loop, if there is anything to resolve to Ty, it will be in
726 // this variable.
727 OpaqueType *TypeToResolve = 0;
728
Chris Lattnerc7d3f6b2003-12-31 02:18:11 +0000729 for (unsigned i = 0; i != UpRefs.size(); ++i) {
Misha Brukman5a2a3822005-05-10 22:02:28 +0000730 UR_OUT(" UR#" << i << " - TypeContains(" << Ty->getDescription() << ", "
731 << UpRefs[i].second->getDescription() << ") = "
Reid Spencer3271ed52004-07-18 00:08:11 +0000732 << (TypeContains(Ty, UpRefs[i].second) ? "true" : "false") << "\n");
Chris Lattner3b073862004-02-09 03:19:29 +0000733 if (TypeContains(Ty, UpRefs[i].LastContainedTy)) {
734 // Decrement level of upreference
735 unsigned Level = --UpRefs[i].NestingLevel;
736 UpRefs[i].LastContainedTy = Ty;
Chris Lattnerc7d3f6b2003-12-31 02:18:11 +0000737 UR_OUT(" Uplevel Ref Level = " << Level << "\n");
Misha Brukman5a2a3822005-05-10 22:02:28 +0000738 if (Level == 0) { // Upreference should be resolved!
Chris Lattner026a8ce2004-02-09 18:53:54 +0000739 if (!TypeToResolve) {
740 TypeToResolve = UpRefs[i].UpRefTy;
741 } else {
742 UR_OUT(" * Resolving upreference for "
743 << UpRefs[i].second->getDescription() << "\n";
744 std::string OldName = UpRefs[i].UpRefTy->getDescription());
745 UpRefs[i].UpRefTy->refineAbstractTypeTo(TypeToResolve);
746 UR_OUT(" * Type '" << OldName << "' refined upreference to: "
747 << (const void*)Ty << ", " << Ty->getDescription() << "\n");
748 }
Reid Spencer3271ed52004-07-18 00:08:11 +0000749 UpRefs.erase(UpRefs.begin()+i); // Remove from upreference list...
Chris Lattnerc7d3f6b2003-12-31 02:18:11 +0000750 --i; // Do not skip the next element...
Chris Lattner30c89792001-09-07 16:35:17 +0000751 }
752 }
Chris Lattner8896eda2001-07-09 19:38:36 +0000753 }
Chris Lattnerc7d3f6b2003-12-31 02:18:11 +0000754
Chris Lattner026a8ce2004-02-09 18:53:54 +0000755 if (TypeToResolve) {
756 UR_OUT(" * Resolving upreference for "
757 << UpRefs[i].second->getDescription() << "\n";
Chris Lattner16af11d2004-02-09 21:03:38 +0000758 std::string OldName = TypeToResolve->getDescription());
Chris Lattner026a8ce2004-02-09 18:53:54 +0000759 TypeToResolve->refineAbstractTypeTo(Ty);
760 }
761
Chris Lattner8896eda2001-07-09 19:38:36 +0000762 return Ty;
763}
764
Chris Lattner30c89792001-09-07 16:35:17 +0000765
Chris Lattner6184feb2005-05-20 03:25:47 +0000766// common code from the two 'RunVMAsmParser' functions
767 static Module * RunParser(Module * M) {
768
769 llvmAsmlineno = 1; // Reset the current line number...
Andrew Lenharth558bc882005-06-18 18:34:52 +0000770 ObsoleteVarArgs = false;
Andrew Lenharthe78f50d2005-06-19 03:53:56 +0000771 NewVarArgs = false;
Chris Lattner6184feb2005-05-20 03:25:47 +0000772
773 CurModule.CurrentModule = M;
774 yyparse(); // Parse the file, potentially throwing exception
Reid Spencer61c83e02006-08-18 08:43:06 +0000775 if (!ParserResult)
776 return 0;
Chris Lattner6184feb2005-05-20 03:25:47 +0000777
778 Module *Result = ParserResult;
779 ParserResult = 0;
780
Andrew Lenharth31c98bf2005-06-20 15:41:37 +0000781 //Not all functions use vaarg, so make a second check for ObsoleteVarArgs
782 {
783 Function* F;
784 if ((F = Result->getNamedFunction("llvm.va_start"))
785 && F->getFunctionType()->getNumParams() == 0)
786 ObsoleteVarArgs = true;
787 if((F = Result->getNamedFunction("llvm.va_copy"))
788 && F->getFunctionType()->getNumParams() == 1)
789 ObsoleteVarArgs = true;
790 }
791
Andrew Lenharthe78f50d2005-06-19 03:53:56 +0000792 if (ObsoleteVarArgs && NewVarArgs)
Reid Spencer61c83e02006-08-18 08:43:06 +0000793 GenerateError("This file is corrupt: it uses both new and old style varargs");
Andrew Lenharthe78f50d2005-06-19 03:53:56 +0000794
Andrew Lenharth558bc882005-06-18 18:34:52 +0000795 if(ObsoleteVarArgs) {
796 if(Function* F = Result->getNamedFunction("llvm.va_start")) {
Andrew Lenharth213e5572005-06-22 21:04:42 +0000797 if (F->arg_size() != 0)
Reid Spencer61c83e02006-08-18 08:43:06 +0000798 GenerateError("Obsolete va_start takes 0 argument!");
Andrew Lenharth558bc882005-06-18 18:34:52 +0000799
800 //foo = va_start()
801 // ->
802 //bar = alloca typeof(foo)
803 //va_start(bar)
804 //foo = load bar
805
806 const Type* RetTy = Type::getPrimitiveType(Type::VoidTyID);
807 const Type* ArgTy = F->getFunctionType()->getReturnType();
808 const Type* ArgTyPtr = PointerType::get(ArgTy);
809 Function* NF = Result->getOrInsertFunction("llvm.va_start",
Jeff Cohen66c5fd62005-10-23 04:37:20 +0000810 RetTy, ArgTyPtr, (Type *)0);
Andrew Lenharth558bc882005-06-18 18:34:52 +0000811
812 while (!F->use_empty()) {
813 CallInst* CI = cast<CallInst>(F->use_back());
814 AllocaInst* bar = new AllocaInst(ArgTy, 0, "vastart.fix.1", CI);
815 new CallInst(NF, bar, "", CI);
816 Value* foo = new LoadInst(bar, "vastart.fix.2", CI);
817 CI->replaceAllUsesWith(foo);
818 CI->getParent()->getInstList().erase(CI);
819 }
820 Result->getFunctionList().erase(F);
821 }
822
823 if(Function* F = Result->getNamedFunction("llvm.va_end")) {
Andrew Lenharth213e5572005-06-22 21:04:42 +0000824 if(F->arg_size() != 1)
Reid Spencer61c83e02006-08-18 08:43:06 +0000825 GenerateError("Obsolete va_end takes 1 argument!");
Andrew Lenharth213e5572005-06-22 21:04:42 +0000826
Andrew Lenharth558bc882005-06-18 18:34:52 +0000827 //vaend foo
828 // ->
829 //bar = alloca 1 of typeof(foo)
830 //vaend bar
831 const Type* RetTy = Type::getPrimitiveType(Type::VoidTyID);
832 const Type* ArgTy = F->getFunctionType()->getParamType(0);
833 const Type* ArgTyPtr = PointerType::get(ArgTy);
834 Function* NF = Result->getOrInsertFunction("llvm.va_end",
Jeff Cohen66c5fd62005-10-23 04:37:20 +0000835 RetTy, ArgTyPtr, (Type *)0);
Andrew Lenharth558bc882005-06-18 18:34:52 +0000836
837 while (!F->use_empty()) {
838 CallInst* CI = cast<CallInst>(F->use_back());
839 AllocaInst* bar = new AllocaInst(ArgTy, 0, "vaend.fix.1", CI);
Andrew Lenharth017fba92005-06-19 14:04:55 +0000840 new StoreInst(CI->getOperand(1), bar, CI);
Andrew Lenharth558bc882005-06-18 18:34:52 +0000841 new CallInst(NF, bar, "", CI);
842 CI->getParent()->getInstList().erase(CI);
843 }
844 Result->getFunctionList().erase(F);
845 }
846
847 if(Function* F = Result->getNamedFunction("llvm.va_copy")) {
Andrew Lenharth213e5572005-06-22 21:04:42 +0000848 if(F->arg_size() != 1)
Reid Spencer61c83e02006-08-18 08:43:06 +0000849 GenerateError("Obsolete va_copy takes 1 argument!");
Andrew Lenharth558bc882005-06-18 18:34:52 +0000850 //foo = vacopy(bar)
851 // ->
852 //a = alloca 1 of typeof(foo)
Andrew Lenharth213e5572005-06-22 21:04:42 +0000853 //b = alloca 1 of typeof(foo)
854 //store bar -> b
855 //vacopy(a, b)
Andrew Lenharth558bc882005-06-18 18:34:52 +0000856 //foo = load a
857
858 const Type* RetTy = Type::getPrimitiveType(Type::VoidTyID);
859 const Type* ArgTy = F->getFunctionType()->getReturnType();
860 const Type* ArgTyPtr = PointerType::get(ArgTy);
861 Function* NF = Result->getOrInsertFunction("llvm.va_copy",
Jeff Cohen66c5fd62005-10-23 04:37:20 +0000862 RetTy, ArgTyPtr, ArgTyPtr,
863 (Type *)0);
Andrew Lenharth558bc882005-06-18 18:34:52 +0000864
865 while (!F->use_empty()) {
866 CallInst* CI = cast<CallInst>(F->use_back());
867 AllocaInst* a = new AllocaInst(ArgTy, 0, "vacopy.fix.1", CI);
Andrew Lenharth213e5572005-06-22 21:04:42 +0000868 AllocaInst* b = new AllocaInst(ArgTy, 0, "vacopy.fix.2", CI);
869 new StoreInst(CI->getOperand(1), b, CI);
870 new CallInst(NF, a, b, "", CI);
871 Value* foo = new LoadInst(a, "vacopy.fix.3", CI);
Andrew Lenharth558bc882005-06-18 18:34:52 +0000872 CI->replaceAllUsesWith(foo);
873 CI->getParent()->getInstList().erase(CI);
874 }
875 Result->getFunctionList().erase(F);
876 }
877 }
878
Chris Lattner6184feb2005-05-20 03:25:47 +0000879 return Result;
880
881 }
882
Chris Lattner00950542001-06-06 20:29:01 +0000883//===----------------------------------------------------------------------===//
884// RunVMAsmParser - Define an interface to this parser
885//===----------------------------------------------------------------------===//
886//
Chris Lattner86427632004-07-14 06:39:48 +0000887Module *llvm::RunVMAsmParser(const std::string &Filename, FILE *F) {
Chris Lattner6184feb2005-05-20 03:25:47 +0000888 set_scan_file(F);
889
Chris Lattnera2850432001-07-22 18:36:00 +0000890 CurFilename = Filename;
Chris Lattner6184feb2005-05-20 03:25:47 +0000891 return RunParser(new Module(CurFilename));
892}
Chris Lattner00950542001-06-06 20:29:01 +0000893
Chris Lattner6184feb2005-05-20 03:25:47 +0000894Module *llvm::RunVMAsmParser(const char * AsmString, Module * M) {
895 set_scan_string(AsmString);
Chris Lattner42570982003-11-26 07:24:58 +0000896
Chris Lattner6184feb2005-05-20 03:25:47 +0000897 CurFilename = "from_memory";
898 if (M == NULL) {
899 return RunParser(new Module (CurFilename));
900 } else {
901 return RunParser(M);
902 }
Chris Lattner00950542001-06-06 20:29:01 +0000903}
904
905%}
906
907%union {
Brian Gaeked0fde302003-11-11 22:41:34 +0000908 llvm::Module *ModuleVal;
909 llvm::Function *FunctionVal;
910 std::pair<llvm::PATypeHolder*, char*> *ArgVal;
911 llvm::BasicBlock *BasicBlockVal;
912 llvm::TerminatorInst *TermInstVal;
913 llvm::Instruction *InstVal;
914 llvm::Constant *ConstVal;
Chris Lattner00950542001-06-06 20:29:01 +0000915
Brian Gaeked0fde302003-11-11 22:41:34 +0000916 const llvm::Type *PrimType;
917 llvm::PATypeHolder *TypeVal;
918 llvm::Value *ValueVal;
Chris Lattner30c89792001-09-07 16:35:17 +0000919
Brian Gaeked0fde302003-11-11 22:41:34 +0000920 std::vector<std::pair<llvm::PATypeHolder*,char*> > *ArgList;
921 std::vector<llvm::Value*> *ValueList;
922 std::list<llvm::PATypeHolder> *TypeList;
Misha Brukman5a2a3822005-05-10 22:02:28 +0000923 // Represent the RHS of PHI node
Brian Gaeked0fde302003-11-11 22:41:34 +0000924 std::list<std::pair<llvm::Value*,
Misha Brukman5a2a3822005-05-10 22:02:28 +0000925 llvm::BasicBlock*> > *PHIList;
Brian Gaeked0fde302003-11-11 22:41:34 +0000926 std::vector<std::pair<llvm::Constant*, llvm::BasicBlock*> > *JumpTable;
927 std::vector<llvm::Constant*> *ConstVector;
Chris Lattner00950542001-06-06 20:29:01 +0000928
Brian Gaeked0fde302003-11-11 22:41:34 +0000929 llvm::GlobalValue::LinkageTypes Linkage;
Chris Lattner30c89792001-09-07 16:35:17 +0000930 int64_t SInt64Val;
931 uint64_t UInt64Val;
932 int SIntVal;
933 unsigned UIntVal;
934 double FPVal;
Chris Lattner1781aca2001-09-18 04:00:54 +0000935 bool BoolVal;
Chris Lattner00950542001-06-06 20:29:01 +0000936
Chris Lattner30c89792001-09-07 16:35:17 +0000937 char *StrVal; // This memory is strdup'd!
Brian Gaeked0fde302003-11-11 22:41:34 +0000938 llvm::ValID ValIDVal; // strdup'd memory maybe!
Chris Lattner00950542001-06-06 20:29:01 +0000939
Brian Gaeked0fde302003-11-11 22:41:34 +0000940 llvm::Instruction::BinaryOps BinaryOpVal;
941 llvm::Instruction::TermOps TermOpVal;
942 llvm::Instruction::MemoryOps MemOpVal;
943 llvm::Instruction::OtherOps OtherOpVal;
944 llvm::Module::Endianness Endianness;
Chris Lattner00950542001-06-06 20:29:01 +0000945}
946
Chris Lattner79df7c02002-03-26 18:01:55 +0000947%type <ModuleVal> Module FunctionList
948%type <FunctionVal> Function FunctionProto FunctionHeader BasicBlockList
Chris Lattner00950542001-06-06 20:29:01 +0000949%type <BasicBlockVal> BasicBlock InstructionList
950%type <TermInstVal> BBTerminatorInst
951%type <InstVal> Inst InstVal MemoryInst
Vikram S. Adved3f7eb02002-07-14 22:59:28 +0000952%type <ConstVal> ConstVal ConstExpr
Chris Lattner6cdb0112001-11-26 16:54:11 +0000953%type <ConstVector> ConstVector
Chris Lattner46748042002-04-09 19:41:42 +0000954%type <ArgList> ArgList ArgListH
955%type <ArgVal> ArgVal
Chris Lattnerc24d2082001-06-11 15:04:20 +0000956%type <PHIList> PHIList
Chris Lattnerab5ac6b2001-07-08 23:22:50 +0000957%type <ValueList> ValueRefList ValueRefListE // For call param lists
Chris Lattner6cdb0112001-11-26 16:54:11 +0000958%type <ValueList> IndexList // For GEP derived indices
Chris Lattner30c89792001-09-07 16:35:17 +0000959%type <TypeList> TypeListI ArgTypeListI
Chris Lattner00950542001-06-06 20:29:01 +0000960%type <JumpTable> JumpTable
Chris Lattner4ad02e72003-04-16 20:28:45 +0000961%type <BoolVal> GlobalType // GLOBAL or CONSTANT?
Chris Lattner15c9c032003-09-08 18:20:29 +0000962%type <BoolVal> OptVolatile // 'volatile' or not
Chris Lattnerddb6db42005-05-06 05:51:46 +0000963%type <BoolVal> OptTailCall // TAIL CALL or plain CALL.
Chris Lattneraa2c8532006-01-25 22:26:43 +0000964%type <BoolVal> OptSideEffect // 'sideeffect' or not.
Chris Lattner4ad02e72003-04-16 20:28:45 +0000965%type <Linkage> OptLinkage
Chris Lattnerb9bcbb52003-04-22 19:07:06 +0000966%type <Endianness> BigOrLittle
Chris Lattner00950542001-06-06 20:29:01 +0000967
Chris Lattner2079fde2001-10-13 06:41:08 +0000968// ValueRef - Unresolved reference to a definition or BB
969%type <ValIDVal> ValueRef ConstValueRef SymbolicValueRef
Chris Lattnerbcbf6ba2001-07-26 16:29:15 +0000970%type <ValueVal> ResolvedVal // <type> <valref> pair
Chris Lattner00950542001-06-06 20:29:01 +0000971// Tokens and types for handling constant integer values
972//
973// ESINT64VAL - A negative number within long long range
974%token <SInt64Val> ESINT64VAL
975
976// EUINT64VAL - A positive number within uns. long long range
977%token <UInt64Val> EUINT64VAL
978%type <SInt64Val> EINT64VAL
979
980%token <SIntVal> SINTVAL // Signed 32 bit ints...
981%token <UIntVal> UINTVAL // Unsigned 32 bit ints...
982%type <SIntVal> INTVAL
Chris Lattner3d52b2f2001-07-15 00:17:01 +0000983%token <FPVal> FPVAL // Float or Double constant
Chris Lattner00950542001-06-06 20:29:01 +0000984
985// Built in types...
Chris Lattner30c89792001-09-07 16:35:17 +0000986%type <TypeVal> Types TypesV UpRTypes UpRTypesV
987%type <PrimType> SIntType UIntType IntType FPType PrimType // Classifications
Chris Lattner30c89792001-09-07 16:35:17 +0000988%token <PrimType> VOID BOOL SBYTE UBYTE SHORT USHORT INT UINT LONG ULONG
989%token <PrimType> FLOAT DOUBLE TYPE LABEL
Chris Lattner00950542001-06-06 20:29:01 +0000990
Chris Lattner6c23f572003-08-22 05:42:10 +0000991%token <StrVal> VAR_ID LABELSTR STRINGCONSTANT
992%type <StrVal> Name OptName OptAssign
Chris Lattner87ac9722005-11-06 06:46:28 +0000993%type <UIntVal> OptAlign OptCAlign
Chris Lattnerb2b96672005-11-12 18:21:21 +0000994%type <StrVal> OptSection SectionString
Chris Lattner00950542001-06-06 20:29:01 +0000995
Chris Lattner91ef4602004-03-31 03:49:47 +0000996%token IMPLEMENTATION ZEROINITIALIZER TRUETOK FALSETOK BEGINTOK ENDTOK
Chris Lattner164c3782005-11-12 00:11:10 +0000997%token DECLARE GLOBAL CONSTANT SECTION VOLATILE
Chris Lattner16710e92004-10-16 18:17:13 +0000998%token TO DOTDOTDOT NULL_TOK UNDEF CONST INTERNAL LINKONCE WEAK APPENDING
Nate Begeman14b05292005-11-05 09:21:28 +0000999%token OPAQUE NOT EXTERNAL TARGET TRIPLE ENDIAN POINTERSIZE LITTLE BIG ALIGN
Chris Lattneraa2c8532006-01-25 22:26:43 +00001000%token DEPLIBS CALL TAIL ASM_TOK MODULE SIDEEFFECT
Chris Lattner515906d2006-05-19 21:28:34 +00001001%token CC_TOK CCC_TOK CSRETCC_TOK FASTCC_TOK COLDCC_TOK
Chris Lattnera8e8f162005-05-06 20:27:19 +00001002%type <UIntVal> OptCallingConv
Chris Lattner00950542001-06-06 20:29:01 +00001003
Misha Brukman5a2a3822005-05-10 22:02:28 +00001004// Basic Block Terminating Operators
Chris Lattner16710e92004-10-16 18:17:13 +00001005%token <TermOpVal> RET BR SWITCH INVOKE UNWIND UNREACHABLE
Chris Lattner00950542001-06-06 20:29:01 +00001006
Misha Brukman5a2a3822005-05-10 22:02:28 +00001007// Binary Operators
Chris Lattner4a6482b2002-09-10 19:57:26 +00001008%type <BinaryOpVal> ArithmeticOps LogicalOps SetCondOps // Binops Subcatagories
Chris Lattner42c9e772001-10-20 09:32:59 +00001009%token <BinaryOpVal> ADD SUB MUL DIV REM AND OR XOR
Chris Lattner027dcc52001-07-08 21:10:27 +00001010%token <BinaryOpVal> SETLE SETGE SETLT SETGT SETEQ SETNE // Binary Comarators
Chris Lattner00950542001-06-06 20:29:01 +00001011
1012// Memory Instructions
Vikram S. Adved3f7eb02002-07-14 22:59:28 +00001013%token <MemOpVal> MALLOC ALLOCA FREE LOAD STORE GETELEMENTPTR
Chris Lattner00950542001-06-06 20:29:01 +00001014
Chris Lattner027dcc52001-07-08 21:10:27 +00001015// Other Operators
1016%type <OtherOpVal> ShiftOps
Robert Bocchino2def1b32006-01-17 20:06:25 +00001017%token <OtherOpVal> PHI_TOK CAST SELECT SHL SHR VAARG
Chris Lattner4c949082006-04-08 01:18:35 +00001018%token <OtherOpVal> EXTRACTELEMENT INSERTELEMENT SHUFFLEVECTOR
Andrew Lenharth558bc882005-06-18 18:34:52 +00001019%token VAARG_old VANEXT_old //OBSOLETE
Chris Lattnerddb6db42005-05-06 05:51:46 +00001020
Chris Lattner027dcc52001-07-08 21:10:27 +00001021
Chris Lattner00950542001-06-06 20:29:01 +00001022%start Module
1023%%
1024
1025// Handle constant integer size restriction and conversion...
1026//
Chris Lattner51727be2002-06-04 21:58:56 +00001027INTVAL : SINTVAL;
Chris Lattner00950542001-06-06 20:29:01 +00001028INTVAL : UINTVAL {
1029 if ($1 > (uint32_t)INT32_MAX) // Outside of my range!
Reid Spencer61c83e02006-08-18 08:43:06 +00001030 GEN_ERROR("Value too large for type!");
Chris Lattner00950542001-06-06 20:29:01 +00001031 $$ = (int32_t)$1;
Reid Spencer61c83e02006-08-18 08:43:06 +00001032 CHECK_FOR_ERROR
Chris Lattner51727be2002-06-04 21:58:56 +00001033};
Chris Lattner00950542001-06-06 20:29:01 +00001034
1035
Chris Lattner51727be2002-06-04 21:58:56 +00001036EINT64VAL : ESINT64VAL; // These have same type and can't cause problems...
Chris Lattner00950542001-06-06 20:29:01 +00001037EINT64VAL : EUINT64VAL {
1038 if ($1 > (uint64_t)INT64_MAX) // Outside of my range!
Reid Spencer61c83e02006-08-18 08:43:06 +00001039 GEN_ERROR("Value too large for type!");
Chris Lattner00950542001-06-06 20:29:01 +00001040 $$ = (int64_t)$1;
Reid Spencer61c83e02006-08-18 08:43:06 +00001041 CHECK_FOR_ERROR
Chris Lattner51727be2002-06-04 21:58:56 +00001042};
Chris Lattner00950542001-06-06 20:29:01 +00001043
Misha Brukman5a2a3822005-05-10 22:02:28 +00001044// Operations that are notably excluded from this list include:
Chris Lattner00950542001-06-06 20:29:01 +00001045// RET, BR, & SWITCH because they end basic blocks and are treated specially.
1046//
Chris Lattner4a6482b2002-09-10 19:57:26 +00001047ArithmeticOps: ADD | SUB | MUL | DIV | REM;
1048LogicalOps : AND | OR | XOR;
1049SetCondOps : SETLE | SETGE | SETLT | SETGT | SETEQ | SETNE;
Chris Lattner4a6482b2002-09-10 19:57:26 +00001050
Chris Lattner51727be2002-06-04 21:58:56 +00001051ShiftOps : SHL | SHR;
Chris Lattner00950542001-06-06 20:29:01 +00001052
Chris Lattnere98dda62001-07-14 06:10:16 +00001053// These are some types that allow classification if we only want a particular
1054// thing... for example, only a signed, unsigned, or integral type.
Chris Lattner51727be2002-06-04 21:58:56 +00001055SIntType : LONG | INT | SHORT | SBYTE;
1056UIntType : ULONG | UINT | USHORT | UBYTE;
1057IntType : SIntType | UIntType;
1058FPType : FLOAT | DOUBLE;
Chris Lattner00950542001-06-06 20:29:01 +00001059
Chris Lattnere98dda62001-07-14 06:10:16 +00001060// OptAssign - Value producing statements have an optional assignment component
Chris Lattner6c23f572003-08-22 05:42:10 +00001061OptAssign : Name '=' {
Chris Lattner00950542001-06-06 20:29:01 +00001062 $$ = $1;
Reid Spencer61c83e02006-08-18 08:43:06 +00001063 CHECK_FOR_ERROR
Chris Lattner00950542001-06-06 20:29:01 +00001064 }
Misha Brukman5a2a3822005-05-10 22:02:28 +00001065 | /*empty*/ {
1066 $$ = 0;
Reid Spencer61c83e02006-08-18 08:43:06 +00001067 CHECK_FOR_ERROR
Chris Lattner51727be2002-06-04 21:58:56 +00001068 };
Chris Lattner00950542001-06-06 20:29:01 +00001069
Chris Lattner4ad02e72003-04-16 20:28:45 +00001070OptLinkage : INTERNAL { $$ = GlobalValue::InternalLinkage; } |
1071 LINKONCE { $$ = GlobalValue::LinkOnceLinkage; } |
Chris Lattner72ac148d2003-10-16 18:29:00 +00001072 WEAK { $$ = GlobalValue::WeakLinkage; } |
Chris Lattner4ad02e72003-04-16 20:28:45 +00001073 APPENDING { $$ = GlobalValue::AppendingLinkage; } |
1074 /*empty*/ { $$ = GlobalValue::ExternalLinkage; };
Chris Lattner30c89792001-09-07 16:35:17 +00001075
Chris Lattnera8e8f162005-05-06 20:27:19 +00001076OptCallingConv : /*empty*/ { $$ = CallingConv::C; } |
1077 CCC_TOK { $$ = CallingConv::C; } |
Chris Lattner515906d2006-05-19 21:28:34 +00001078 CSRETCC_TOK { $$ = CallingConv::CSRet; } |
Chris Lattnera8e8f162005-05-06 20:27:19 +00001079 FASTCC_TOK { $$ = CallingConv::Fast; } |
1080 COLDCC_TOK { $$ = CallingConv::Cold; } |
1081 CC_TOK EUINT64VAL {
1082 if ((unsigned)$2 != $2)
Reid Spencer61c83e02006-08-18 08:43:06 +00001083 GEN_ERROR("Calling conv too large!");
Chris Lattnera8e8f162005-05-06 20:27:19 +00001084 $$ = $2;
Reid Spencer61c83e02006-08-18 08:43:06 +00001085 CHECK_FOR_ERROR
Chris Lattnera8e8f162005-05-06 20:27:19 +00001086 };
1087
Chris Lattner66db8e42005-11-06 06:34:12 +00001088// OptAlign/OptCAlign - An optional alignment, and an optional alignment with
1089// a comma before it.
Chris Lattner87ac9722005-11-06 06:46:28 +00001090OptAlign : /*empty*/ { $$ = 0; } |
Chris Lattnerb2b96672005-11-12 18:21:21 +00001091 ALIGN EUINT64VAL {
1092 $$ = $2;
1093 if ($$ != 0 && !isPowerOf2_32($$))
Reid Spencer61c83e02006-08-18 08:43:06 +00001094 GEN_ERROR("Alignment must be a power of two!");
1095 CHECK_FOR_ERROR
Chris Lattnerb2b96672005-11-12 18:21:21 +00001096};
Chris Lattner66db8e42005-11-06 06:34:12 +00001097OptCAlign : /*empty*/ { $$ = 0; } |
Chris Lattnerb2b96672005-11-12 18:21:21 +00001098 ',' ALIGN EUINT64VAL {
1099 $$ = $3;
1100 if ($$ != 0 && !isPowerOf2_32($$))
Reid Spencer61c83e02006-08-18 08:43:06 +00001101 GEN_ERROR("Alignment must be a power of two!");
1102 CHECK_FOR_ERROR
Chris Lattnerb2b96672005-11-12 18:21:21 +00001103};
1104
Chris Lattner66db8e42005-11-06 06:34:12 +00001105
Chris Lattner164c3782005-11-12 00:11:10 +00001106SectionString : SECTION STRINGCONSTANT {
1107 for (unsigned i = 0, e = strlen($2); i != e; ++i)
1108 if ($2[i] == '"' || $2[i] == '\\')
Reid Spencer61c83e02006-08-18 08:43:06 +00001109 GEN_ERROR("Invalid character in section name!");
Chris Lattner164c3782005-11-12 00:11:10 +00001110 $$ = $2;
Reid Spencer61c83e02006-08-18 08:43:06 +00001111 CHECK_FOR_ERROR
Chris Lattner164c3782005-11-12 00:11:10 +00001112};
1113
1114OptSection : /*empty*/ { $$ = 0; } |
1115 SectionString { $$ = $1; };
Chris Lattner164c3782005-11-12 00:11:10 +00001116
Chris Lattnerb2b96672005-11-12 18:21:21 +00001117// GlobalVarAttributes - Used to pass the attributes string on a global. CurGV
1118// is set to be the global we are processing.
1119//
1120GlobalVarAttributes : /* empty */ {} |
1121 ',' GlobalVarAttribute GlobalVarAttributes {};
1122GlobalVarAttribute : SectionString {
1123 CurGV->setSection($1);
1124 free($1);
Reid Spencer61c83e02006-08-18 08:43:06 +00001125 CHECK_FOR_ERROR
Chris Lattnerb2b96672005-11-12 18:21:21 +00001126 }
1127 | ALIGN EUINT64VAL {
1128 if ($2 != 0 && !isPowerOf2_32($2))
Reid Spencer61c83e02006-08-18 08:43:06 +00001129 GEN_ERROR("Alignment must be a power of two!");
Chris Lattnerb2b96672005-11-12 18:21:21 +00001130 CurGV->setAlignment($2);
Reid Spencer61c83e02006-08-18 08:43:06 +00001131 CHECK_FOR_ERROR
Chris Lattnerb2b96672005-11-12 18:21:21 +00001132 };
Chris Lattner164c3782005-11-12 00:11:10 +00001133
Chris Lattner30c89792001-09-07 16:35:17 +00001134//===----------------------------------------------------------------------===//
1135// Types includes all predefined types... except void, because it can only be
Chris Lattner7e708292002-06-25 16:13:24 +00001136// used in specific contexts (function returning void for example). To have
Chris Lattner30c89792001-09-07 16:35:17 +00001137// access to it, a user must explicitly use TypesV.
1138//
1139
1140// TypesV includes all of 'Types', but it also includes the void type.
Chris Lattner51727be2002-06-04 21:58:56 +00001141TypesV : Types | VOID { $$ = new PATypeHolder($1); };
1142UpRTypesV : UpRTypes | VOID { $$ = new PATypeHolder($1); };
Chris Lattner30c89792001-09-07 16:35:17 +00001143
1144Types : UpRTypes {
Chris Lattnerc7d3f6b2003-12-31 02:18:11 +00001145 if (!UpRefs.empty())
Reid Spencer61c83e02006-08-18 08:43:06 +00001146 GEN_ERROR("Invalid upreference in type: " + (*$1)->getDescription());
Chris Lattner8b88b3b2002-04-04 19:23:55 +00001147 $$ = $1;
Reid Spencer61c83e02006-08-18 08:43:06 +00001148 CHECK_FOR_ERROR
Chris Lattner51727be2002-06-04 21:58:56 +00001149 };
Chris Lattner30c89792001-09-07 16:35:17 +00001150
1151
1152// Derived types are added later...
1153//
Chris Lattner51727be2002-06-04 21:58:56 +00001154PrimType : BOOL | SBYTE | UBYTE | SHORT | USHORT | INT | UINT ;
1155PrimType : LONG | ULONG | FLOAT | DOUBLE | TYPE | LABEL;
Chris Lattner8b88b3b2002-04-04 19:23:55 +00001156UpRTypes : OPAQUE {
1157 $$ = new PATypeHolder(OpaqueType::get());
Reid Spencer61c83e02006-08-18 08:43:06 +00001158 CHECK_FOR_ERROR
Chris Lattner8b88b3b2002-04-04 19:23:55 +00001159 }
1160 | PrimType {
1161 $$ = new PATypeHolder($1);
Reid Spencer61c83e02006-08-18 08:43:06 +00001162 CHECK_FOR_ERROR
Chris Lattner51727be2002-06-04 21:58:56 +00001163 };
Chris Lattnerd78700d2002-08-16 21:14:40 +00001164UpRTypes : SymbolicValueRef { // Named types are also simple types...
Chris Lattner8b88b3b2002-04-04 19:23:55 +00001165 $$ = new PATypeHolder(getTypeVal($1));
Reid Spencer61c83e02006-08-18 08:43:06 +00001166 CHECK_FOR_ERROR
Chris Lattner51727be2002-06-04 21:58:56 +00001167};
Chris Lattner30c89792001-09-07 16:35:17 +00001168
Chris Lattner30c89792001-09-07 16:35:17 +00001169// Include derived types in the Types production.
1170//
1171UpRTypes : '\\' EUINT64VAL { // Type UpReference
Reid Spencer61c83e02006-08-18 08:43:06 +00001172 if ($2 > (uint64_t)~0U) GEN_ERROR("Value out of range!");
Chris Lattner30c89792001-09-07 16:35:17 +00001173 OpaqueType *OT = OpaqueType::get(); // Use temporary placeholder
Chris Lattner3b073862004-02-09 03:19:29 +00001174 UpRefs.push_back(UpRefRecord((unsigned)$2, OT)); // Add to vector...
Chris Lattner8b88b3b2002-04-04 19:23:55 +00001175 $$ = new PATypeHolder(OT);
Chris Lattner30c89792001-09-07 16:35:17 +00001176 UR_OUT("New Upreference!\n");
Reid Spencer61c83e02006-08-18 08:43:06 +00001177 CHECK_FOR_ERROR
Chris Lattner30c89792001-09-07 16:35:17 +00001178 }
Chris Lattner79df7c02002-03-26 18:01:55 +00001179 | UpRTypesV '(' ArgTypeListI ')' { // Function derived type?
Chris Lattner9232b992003-04-22 18:42:41 +00001180 std::vector<const Type*> Params;
Chris Lattnera08976b2005-02-22 23:13:58 +00001181 for (std::list<llvm::PATypeHolder>::iterator I = $3->begin(),
1182 E = $3->end(); I != E; ++I)
1183 Params.push_back(*I);
Chris Lattner2079fde2001-10-13 06:41:08 +00001184 bool isVarArg = Params.size() && Params.back() == Type::VoidTy;
1185 if (isVarArg) Params.pop_back();
1186
Chris Lattner8b88b3b2002-04-04 19:23:55 +00001187 $$ = new PATypeHolder(HandleUpRefs(FunctionType::get(*$1,Params,isVarArg)));
Chris Lattner30c89792001-09-07 16:35:17 +00001188 delete $3; // Delete the argument list
Chris Lattnerc7d3f6b2003-12-31 02:18:11 +00001189 delete $1; // Delete the return type handle
Reid Spencer61c83e02006-08-18 08:43:06 +00001190 CHECK_FOR_ERROR
Chris Lattner30c89792001-09-07 16:35:17 +00001191 }
Chris Lattnerd05adbc2001-10-03 03:19:33 +00001192 | '[' EUINT64VAL 'x' UpRTypes ']' { // Sized array type?
Chris Lattner8b88b3b2002-04-04 19:23:55 +00001193 $$ = new PATypeHolder(HandleUpRefs(ArrayType::get(*$4, (unsigned)$2)));
Chris Lattnerd05adbc2001-10-03 03:19:33 +00001194 delete $4;
Reid Spencer61c83e02006-08-18 08:43:06 +00001195 CHECK_FOR_ERROR
Chris Lattner30c89792001-09-07 16:35:17 +00001196 }
Brian Gaeke715c90b2004-08-20 06:00:58 +00001197 | '<' EUINT64VAL 'x' UpRTypes '>' { // Packed array type?
1198 const llvm::Type* ElemTy = $4->get();
Chris Lattner9547d7f2005-11-10 01:42:43 +00001199 if ((unsigned)$2 != $2)
Reid Spencer61c83e02006-08-18 08:43:06 +00001200 GEN_ERROR("Unsigned result not equal to signed result");
Chris Lattner9547d7f2005-11-10 01:42:43 +00001201 if (!ElemTy->isPrimitiveType())
Reid Spencer61c83e02006-08-18 08:43:06 +00001202 GEN_ERROR("Elemental type of a PackedType must be primitive");
Chris Lattner9547d7f2005-11-10 01:42:43 +00001203 if (!isPowerOf2_32($2))
Reid Spencer61c83e02006-08-18 08:43:06 +00001204 GEN_ERROR("Vector length should be a power of 2!");
Brian Gaeke715c90b2004-08-20 06:00:58 +00001205 $$ = new PATypeHolder(HandleUpRefs(PackedType::get(*$4, (unsigned)$2)));
1206 delete $4;
Reid Spencer61c83e02006-08-18 08:43:06 +00001207 CHECK_FOR_ERROR
Brian Gaeke715c90b2004-08-20 06:00:58 +00001208 }
Chris Lattnerd05adbc2001-10-03 03:19:33 +00001209 | '{' TypeListI '}' { // Structure type?
Chris Lattner9232b992003-04-22 18:42:41 +00001210 std::vector<const Type*> Elements;
Chris Lattnera08976b2005-02-22 23:13:58 +00001211 for (std::list<llvm::PATypeHolder>::iterator I = $2->begin(),
1212 E = $2->end(); I != E; ++I)
1213 Elements.push_back(*I);
Misha Brukman5a2a3822005-05-10 22:02:28 +00001214
Chris Lattner8b88b3b2002-04-04 19:23:55 +00001215 $$ = new PATypeHolder(HandleUpRefs(StructType::get(Elements)));
Chris Lattnerd05adbc2001-10-03 03:19:33 +00001216 delete $2;
Reid Spencer61c83e02006-08-18 08:43:06 +00001217 CHECK_FOR_ERROR
Chris Lattnerd05adbc2001-10-03 03:19:33 +00001218 }
1219 | '{' '}' { // Empty structure type?
Chris Lattner9232b992003-04-22 18:42:41 +00001220 $$ = new PATypeHolder(StructType::get(std::vector<const Type*>()));
Reid Spencer61c83e02006-08-18 08:43:06 +00001221 CHECK_FOR_ERROR
Chris Lattnerd05adbc2001-10-03 03:19:33 +00001222 }
1223 | UpRTypes '*' { // Pointer type?
Chris Lattner8b88b3b2002-04-04 19:23:55 +00001224 $$ = new PATypeHolder(HandleUpRefs(PointerType::get(*$1)));
Chris Lattnerd05adbc2001-10-03 03:19:33 +00001225 delete $1;
Reid Spencer61c83e02006-08-18 08:43:06 +00001226 CHECK_FOR_ERROR
Chris Lattner51727be2002-06-04 21:58:56 +00001227 };
Chris Lattner30c89792001-09-07 16:35:17 +00001228
Chris Lattner7e708292002-06-25 16:13:24 +00001229// TypeList - Used for struct declarations and as a basis for function type
Chris Lattner30c89792001-09-07 16:35:17 +00001230// declaration type lists
1231//
1232TypeListI : UpRTypes {
Chris Lattner9232b992003-04-22 18:42:41 +00001233 $$ = new std::list<PATypeHolder>();
Chris Lattner30c89792001-09-07 16:35:17 +00001234 $$->push_back(*$1); delete $1;
Reid Spencer61c83e02006-08-18 08:43:06 +00001235 CHECK_FOR_ERROR
Chris Lattner30c89792001-09-07 16:35:17 +00001236 }
1237 | TypeListI ',' UpRTypes {
1238 ($$=$1)->push_back(*$3); delete $3;
Reid Spencer61c83e02006-08-18 08:43:06 +00001239 CHECK_FOR_ERROR
Chris Lattner51727be2002-06-04 21:58:56 +00001240 };
Chris Lattner30c89792001-09-07 16:35:17 +00001241
Chris Lattner7e708292002-06-25 16:13:24 +00001242// ArgTypeList - List of types for a function type declaration...
Chris Lattner30c89792001-09-07 16:35:17 +00001243ArgTypeListI : TypeListI
1244 | TypeListI ',' DOTDOTDOT {
1245 ($$=$1)->push_back(Type::VoidTy);
Reid Spencer61c83e02006-08-18 08:43:06 +00001246 CHECK_FOR_ERROR
Chris Lattner30c89792001-09-07 16:35:17 +00001247 }
1248 | DOTDOTDOT {
Chris Lattner9232b992003-04-22 18:42:41 +00001249 ($$ = new std::list<PATypeHolder>())->push_back(Type::VoidTy);
Reid Spencer61c83e02006-08-18 08:43:06 +00001250 CHECK_FOR_ERROR
Chris Lattner30c89792001-09-07 16:35:17 +00001251 }
1252 | /*empty*/ {
Chris Lattner9232b992003-04-22 18:42:41 +00001253 $$ = new std::list<PATypeHolder>();
Reid Spencer61c83e02006-08-18 08:43:06 +00001254 CHECK_FOR_ERROR
Chris Lattner51727be2002-06-04 21:58:56 +00001255 };
Chris Lattner30c89792001-09-07 16:35:17 +00001256
Chris Lattnere98dda62001-07-14 06:10:16 +00001257// ConstVal - The various declarations that go into the constant pool. This
Chris Lattnerd78700d2002-08-16 21:14:40 +00001258// production is used ONLY to represent constants that show up AFTER a 'const',
1259// 'constant' or 'global' token at global scope. Constants that can be inlined
1260// into other expressions (such as integers and constexprs) are handled by the
1261// ResolvedVal, ValueRef and ConstValueRef productions.
Chris Lattnere98dda62001-07-14 06:10:16 +00001262//
Chris Lattnerd05adbc2001-10-03 03:19:33 +00001263ConstVal: Types '[' ConstVector ']' { // Nonempty unsized arr
Chris Lattner949a3622003-07-23 15:30:06 +00001264 const ArrayType *ATy = dyn_cast<ArrayType>($1->get());
Chris Lattnerd05adbc2001-10-03 03:19:33 +00001265 if (ATy == 0)
Reid Spencer61c83e02006-08-18 08:43:06 +00001266 GEN_ERROR("Cannot make array constant with type: '" +
Chris Lattnerd05adbc2001-10-03 03:19:33 +00001267 (*$1)->getDescription() + "'!");
Chris Lattner30c89792001-09-07 16:35:17 +00001268 const Type *ETy = ATy->getElementType();
1269 int NumElements = ATy->getNumElements();
Chris Lattner00950542001-06-06 20:29:01 +00001270
Chris Lattner30c89792001-09-07 16:35:17 +00001271 // Verify that we have the correct size...
1272 if (NumElements != -1 && NumElements != (int)$3->size())
Reid Spencer61c83e02006-08-18 08:43:06 +00001273 GEN_ERROR("Type mismatch: constant sized array initialized with " +
Reid Spencer3271ed52004-07-18 00:08:11 +00001274 utostr($3->size()) + " arguments, but has size of " +
1275 itostr(NumElements) + "!");
Chris Lattner00950542001-06-06 20:29:01 +00001276
Chris Lattner30c89792001-09-07 16:35:17 +00001277 // Verify all elements are correct type!
1278 for (unsigned i = 0; i < $3->size(); i++) {
1279 if (ETy != (*$3)[i]->getType())
Reid Spencer61c83e02006-08-18 08:43:06 +00001280 GEN_ERROR("Element #" + utostr(i) + " is not of type '" +
Reid Spencer3271ed52004-07-18 00:08:11 +00001281 ETy->getDescription() +"' as required!\nIt is of type '"+
1282 (*$3)[i]->getType()->getDescription() + "'.");
Chris Lattner00950542001-06-06 20:29:01 +00001283 }
1284
Chris Lattnere9bb2df2001-12-03 22:26:30 +00001285 $$ = ConstantArray::get(ATy, *$3);
Chris Lattner30c89792001-09-07 16:35:17 +00001286 delete $1; delete $3;
Reid Spencer61c83e02006-08-18 08:43:06 +00001287 CHECK_FOR_ERROR
Chris Lattner00950542001-06-06 20:29:01 +00001288 }
Chris Lattnerd05adbc2001-10-03 03:19:33 +00001289 | Types '[' ']' {
Chris Lattner949a3622003-07-23 15:30:06 +00001290 const ArrayType *ATy = dyn_cast<ArrayType>($1->get());
Chris Lattnerd05adbc2001-10-03 03:19:33 +00001291 if (ATy == 0)
Reid Spencer61c83e02006-08-18 08:43:06 +00001292 GEN_ERROR("Cannot make array constant with type: '" +
Chris Lattnerd05adbc2001-10-03 03:19:33 +00001293 (*$1)->getDescription() + "'!");
1294
1295 int NumElements = ATy->getNumElements();
Chris Lattner30c89792001-09-07 16:35:17 +00001296 if (NumElements != -1 && NumElements != 0)
Reid Spencer61c83e02006-08-18 08:43:06 +00001297 GEN_ERROR("Type mismatch: constant sized array initialized with 0"
Reid Spencer3271ed52004-07-18 00:08:11 +00001298 " arguments, but has size of " + itostr(NumElements) +"!");
Chris Lattner9232b992003-04-22 18:42:41 +00001299 $$ = ConstantArray::get(ATy, std::vector<Constant*>());
Chris Lattner30c89792001-09-07 16:35:17 +00001300 delete $1;
Reid Spencer61c83e02006-08-18 08:43:06 +00001301 CHECK_FOR_ERROR
Chris Lattner00950542001-06-06 20:29:01 +00001302 }
Chris Lattnerd05adbc2001-10-03 03:19:33 +00001303 | Types 'c' STRINGCONSTANT {
Chris Lattner949a3622003-07-23 15:30:06 +00001304 const ArrayType *ATy = dyn_cast<ArrayType>($1->get());
Chris Lattnerd05adbc2001-10-03 03:19:33 +00001305 if (ATy == 0)
Reid Spencer61c83e02006-08-18 08:43:06 +00001306 GEN_ERROR("Cannot make array constant with type: '" +
Chris Lattnerd05adbc2001-10-03 03:19:33 +00001307 (*$1)->getDescription() + "'!");
1308
Chris Lattner30c89792001-09-07 16:35:17 +00001309 int NumElements = ATy->getNumElements();
1310 const Type *ETy = ATy->getElementType();
1311 char *EndStr = UnEscapeLexed($3, true);
1312 if (NumElements != -1 && NumElements != (EndStr-$3))
Reid Spencer61c83e02006-08-18 08:43:06 +00001313 GEN_ERROR("Can't build string constant of size " +
Reid Spencer3271ed52004-07-18 00:08:11 +00001314 itostr((int)(EndStr-$3)) +
1315 " when array has size " + itostr(NumElements) + "!");
Chris Lattner9232b992003-04-22 18:42:41 +00001316 std::vector<Constant*> Vals;
Chris Lattner30c89792001-09-07 16:35:17 +00001317 if (ETy == Type::SByteTy) {
Chris Lattneree454772006-01-23 23:05:15 +00001318 for (signed char *C = (signed char *)$3; C != (signed char *)EndStr; ++C)
Reid Spencer3271ed52004-07-18 00:08:11 +00001319 Vals.push_back(ConstantSInt::get(ETy, *C));
Chris Lattner30c89792001-09-07 16:35:17 +00001320 } else if (ETy == Type::UByteTy) {
Chris Lattneree454772006-01-23 23:05:15 +00001321 for (unsigned char *C = (unsigned char *)$3;
1322 C != (unsigned char*)EndStr; ++C)
1323 Vals.push_back(ConstantUInt::get(ETy, *C));
Chris Lattner93750fa2001-07-28 17:48:55 +00001324 } else {
Chris Lattner30c89792001-09-07 16:35:17 +00001325 free($3);
Reid Spencer61c83e02006-08-18 08:43:06 +00001326 GEN_ERROR("Cannot build string arrays of non byte sized elements!");
Chris Lattner93750fa2001-07-28 17:48:55 +00001327 }
Chris Lattner30c89792001-09-07 16:35:17 +00001328 free($3);
Chris Lattnere9bb2df2001-12-03 22:26:30 +00001329 $$ = ConstantArray::get(ATy, Vals);
Chris Lattner30c89792001-09-07 16:35:17 +00001330 delete $1;
Reid Spencer61c83e02006-08-18 08:43:06 +00001331 CHECK_FOR_ERROR
Chris Lattner93750fa2001-07-28 17:48:55 +00001332 }
Brian Gaeke715c90b2004-08-20 06:00:58 +00001333 | Types '<' ConstVector '>' { // Nonempty unsized arr
1334 const PackedType *PTy = dyn_cast<PackedType>($1->get());
1335 if (PTy == 0)
Reid Spencer61c83e02006-08-18 08:43:06 +00001336 GEN_ERROR("Cannot make packed constant with type: '" +
Brian Gaeke715c90b2004-08-20 06:00:58 +00001337 (*$1)->getDescription() + "'!");
1338 const Type *ETy = PTy->getElementType();
1339 int NumElements = PTy->getNumElements();
1340
1341 // Verify that we have the correct size...
1342 if (NumElements != -1 && NumElements != (int)$3->size())
Reid Spencer61c83e02006-08-18 08:43:06 +00001343 GEN_ERROR("Type mismatch: constant sized packed initialized with " +
Brian Gaeke715c90b2004-08-20 06:00:58 +00001344 utostr($3->size()) + " arguments, but has size of " +
1345 itostr(NumElements) + "!");
1346
1347 // Verify all elements are correct type!
1348 for (unsigned i = 0; i < $3->size(); i++) {
1349 if (ETy != (*$3)[i]->getType())
Reid Spencer61c83e02006-08-18 08:43:06 +00001350 GEN_ERROR("Element #" + utostr(i) + " is not of type '" +
Brian Gaeke715c90b2004-08-20 06:00:58 +00001351 ETy->getDescription() +"' as required!\nIt is of type '"+
1352 (*$3)[i]->getType()->getDescription() + "'.");
1353 }
1354
1355 $$ = ConstantPacked::get(PTy, *$3);
1356 delete $1; delete $3;
Reid Spencer61c83e02006-08-18 08:43:06 +00001357 CHECK_FOR_ERROR
Brian Gaeke715c90b2004-08-20 06:00:58 +00001358 }
Chris Lattnerd05adbc2001-10-03 03:19:33 +00001359 | Types '{' ConstVector '}' {
Chris Lattner949a3622003-07-23 15:30:06 +00001360 const StructType *STy = dyn_cast<StructType>($1->get());
Chris Lattnerd05adbc2001-10-03 03:19:33 +00001361 if (STy == 0)
Reid Spencer61c83e02006-08-18 08:43:06 +00001362 GEN_ERROR("Cannot make struct constant with type: '" +
Chris Lattnerd05adbc2001-10-03 03:19:33 +00001363 (*$1)->getDescription() + "'!");
Chris Lattneraf76d0e2003-04-15 16:09:31 +00001364
Chris Lattnerc6212f12003-05-21 16:06:56 +00001365 if ($3->size() != STy->getNumContainedTypes())
Reid Spencer61c83e02006-08-18 08:43:06 +00001366 GEN_ERROR("Illegal number of initializers for structure type!");
Chris Lattnerc6212f12003-05-21 16:06:56 +00001367
Chris Lattneraf76d0e2003-04-15 16:09:31 +00001368 // Check to ensure that constants are compatible with the type initializer!
1369 for (unsigned i = 0, e = $3->size(); i != e; ++i)
Chris Lattnerd21cd802004-02-09 04:37:31 +00001370 if ((*$3)[i]->getType() != STy->getElementType(i))
Reid Spencer61c83e02006-08-18 08:43:06 +00001371 GEN_ERROR("Expected type '" +
Chris Lattnerd21cd802004-02-09 04:37:31 +00001372 STy->getElementType(i)->getDescription() +
Chris Lattneraf76d0e2003-04-15 16:09:31 +00001373 "' for element #" + utostr(i) +
1374 " of structure initializer!");
1375
Chris Lattnere9bb2df2001-12-03 22:26:30 +00001376 $$ = ConstantStruct::get(STy, *$3);
Chris Lattner30c89792001-09-07 16:35:17 +00001377 delete $1; delete $3;
Reid Spencer61c83e02006-08-18 08:43:06 +00001378 CHECK_FOR_ERROR
Chris Lattner00950542001-06-06 20:29:01 +00001379 }
Chris Lattnerc6212f12003-05-21 16:06:56 +00001380 | Types '{' '}' {
Chris Lattner949a3622003-07-23 15:30:06 +00001381 const StructType *STy = dyn_cast<StructType>($1->get());
Chris Lattnerc6212f12003-05-21 16:06:56 +00001382 if (STy == 0)
Reid Spencer61c83e02006-08-18 08:43:06 +00001383 GEN_ERROR("Cannot make struct constant with type: '" +
Chris Lattnerc6212f12003-05-21 16:06:56 +00001384 (*$1)->getDescription() + "'!");
1385
1386 if (STy->getNumContainedTypes() != 0)
Reid Spencer61c83e02006-08-18 08:43:06 +00001387 GEN_ERROR("Illegal number of initializers for structure type!");
Chris Lattnerc6212f12003-05-21 16:06:56 +00001388
1389 $$ = ConstantStruct::get(STy, std::vector<Constant*>());
1390 delete $1;
Reid Spencer61c83e02006-08-18 08:43:06 +00001391 CHECK_FOR_ERROR
Chris Lattnerc6212f12003-05-21 16:06:56 +00001392 }
Chris Lattnerd05adbc2001-10-03 03:19:33 +00001393 | Types NULL_TOK {
Chris Lattner949a3622003-07-23 15:30:06 +00001394 const PointerType *PTy = dyn_cast<PointerType>($1->get());
Chris Lattnerd05adbc2001-10-03 03:19:33 +00001395 if (PTy == 0)
Reid Spencer61c83e02006-08-18 08:43:06 +00001396 GEN_ERROR("Cannot make null pointer constant with type: '" +
Chris Lattnerd05adbc2001-10-03 03:19:33 +00001397 (*$1)->getDescription() + "'!");
1398
Chris Lattnere9bb2df2001-12-03 22:26:30 +00001399 $$ = ConstantPointerNull::get(PTy);
Chris Lattnerdf7306f2001-10-03 01:49:25 +00001400 delete $1;
Reid Spencer61c83e02006-08-18 08:43:06 +00001401 CHECK_FOR_ERROR
Chris Lattnerdf7306f2001-10-03 01:49:25 +00001402 }
Chris Lattner16710e92004-10-16 18:17:13 +00001403 | Types UNDEF {
1404 $$ = UndefValue::get($1->get());
1405 delete $1;
Reid Spencer61c83e02006-08-18 08:43:06 +00001406 CHECK_FOR_ERROR
Chris Lattner16710e92004-10-16 18:17:13 +00001407 }
Chris Lattner2079fde2001-10-13 06:41:08 +00001408 | Types SymbolicValueRef {
Chris Lattner949a3622003-07-23 15:30:06 +00001409 const PointerType *Ty = dyn_cast<PointerType>($1->get());
Chris Lattnerf4ba6c72001-10-03 06:12:09 +00001410 if (Ty == 0)
Reid Spencer61c83e02006-08-18 08:43:06 +00001411 GEN_ERROR("Global const reference must be a pointer type!");
Chris Lattnerf4ba6c72001-10-03 06:12:09 +00001412
Chris Lattner3101c252002-08-15 17:58:33 +00001413 // ConstExprs can exist in the body of a function, thus creating
Reid Spencer3271ed52004-07-18 00:08:11 +00001414 // GlobalValues whenever they refer to a variable. Because we are in
Chris Lattner3101c252002-08-15 17:58:33 +00001415 // the context of a function, getValNonImprovising will search the functions
1416 // symbol table instead of the module symbol table for the global symbol,
1417 // which throws things all off. To get around this, we just tell
1418 // getValNonImprovising that we are at global scope here.
1419 //
Chris Lattner394f2eb2003-10-16 20:12:13 +00001420 Function *SavedCurFn = CurFun.CurrentFunction;
1421 CurFun.CurrentFunction = 0;
Chris Lattner3101c252002-08-15 17:58:33 +00001422
Chris Lattner2079fde2001-10-13 06:41:08 +00001423 Value *V = getValNonImprovising(Ty, $2);
Chris Lattnerf4ba6c72001-10-03 06:12:09 +00001424
Chris Lattner394f2eb2003-10-16 20:12:13 +00001425 CurFun.CurrentFunction = SavedCurFn;
Chris Lattner3101c252002-08-15 17:58:33 +00001426
Chris Lattner2079fde2001-10-13 06:41:08 +00001427 // If this is an initializer for a constant pointer, which is referencing a
1428 // (currently) undefined variable, create a stub now that shall be replaced
1429 // in the future with the right type of variable.
1430 //
1431 if (V == 0) {
1432 assert(isa<PointerType>(Ty) && "Globals may only be used as pointers!");
1433 const PointerType *PT = cast<PointerType>(Ty);
1434
1435 // First check to see if the forward references value is already created!
1436 PerModuleInfo::GlobalRefsType::iterator I =
Reid Spencer3271ed52004-07-18 00:08:11 +00001437 CurModule.GlobalRefs.find(std::make_pair(PT, $2));
Chris Lattner2079fde2001-10-13 06:41:08 +00001438
1439 if (I != CurModule.GlobalRefs.end()) {
Reid Spencer3271ed52004-07-18 00:08:11 +00001440 V = I->second; // Placeholder already exists, use it...
Chris Lattnera989b232003-12-23 20:05:15 +00001441 $2.destroy();
Chris Lattner2079fde2001-10-13 06:41:08 +00001442 } else {
Chris Lattner8a327842004-07-14 21:44:00 +00001443 std::string Name;
Chris Lattnera09000d2004-07-14 23:03:46 +00001444 if ($2.Type == ValID::NameVal) Name = $2.Name;
Chris Lattner8a327842004-07-14 21:44:00 +00001445
Reid Spencer3271ed52004-07-18 00:08:11 +00001446 // Create the forward referenced global.
Chris Lattnera09000d2004-07-14 23:03:46 +00001447 GlobalValue *GV;
1448 if (const FunctionType *FTy =
1449 dyn_cast<FunctionType>(PT->getElementType())) {
1450 GV = new Function(FTy, GlobalValue::ExternalLinkage, Name,
1451 CurModule.CurrentModule);
1452 } else {
Reid Spencer3271ed52004-07-18 00:08:11 +00001453 GV = new GlobalVariable(PT->getElementType(), false,
Chris Lattnera09000d2004-07-14 23:03:46 +00001454 GlobalValue::ExternalLinkage, 0,
1455 Name, CurModule.CurrentModule);
1456 }
Chris Lattner8a327842004-07-14 21:44:00 +00001457
Reid Spencer3271ed52004-07-18 00:08:11 +00001458 // Keep track of the fact that we have a forward ref to recycle it
1459 CurModule.GlobalRefs.insert(std::make_pair(std::make_pair(PT, $2), GV));
1460 V = GV;
Chris Lattner2079fde2001-10-13 06:41:08 +00001461 }
Chris Lattnerf4ba6c72001-10-03 06:12:09 +00001462 }
1463
Reid Spencer3271ed52004-07-18 00:08:11 +00001464 $$ = cast<GlobalValue>(V);
Chris Lattner2079fde2001-10-13 06:41:08 +00001465 delete $1; // Free the type handle
Reid Spencer61c83e02006-08-18 08:43:06 +00001466 CHECK_FOR_ERROR
Vikram S. Adved3f7eb02002-07-14 22:59:28 +00001467 }
Chris Lattnerd78700d2002-08-16 21:14:40 +00001468 | Types ConstExpr {
1469 if ($1->get() != $2->getType())
Reid Spencer61c83e02006-08-18 08:43:06 +00001470 GEN_ERROR("Mismatched types for constant expression!");
Chris Lattnerd78700d2002-08-16 21:14:40 +00001471 $$ = $2;
1472 delete $1;
Reid Spencer61c83e02006-08-18 08:43:06 +00001473 CHECK_FOR_ERROR
Chris Lattnerf4600482003-06-28 20:01:34 +00001474 }
1475 | Types ZEROINITIALIZER {
Chris Lattner78915932004-11-28 16:45:45 +00001476 const Type *Ty = $1->get();
1477 if (isa<FunctionType>(Ty) || Ty == Type::LabelTy || isa<OpaqueType>(Ty))
Reid Spencer61c83e02006-08-18 08:43:06 +00001478 GEN_ERROR("Cannot create a null initialized value of this type!");
Chris Lattner78915932004-11-28 16:45:45 +00001479 $$ = Constant::getNullValue(Ty);
Chris Lattnerf4600482003-06-28 20:01:34 +00001480 delete $1;
Reid Spencer61c83e02006-08-18 08:43:06 +00001481 CHECK_FOR_ERROR
Chris Lattner51727be2002-06-04 21:58:56 +00001482 };
Chris Lattnerf4ba6c72001-10-03 06:12:09 +00001483
Chris Lattnere43f40b2002-10-09 00:25:32 +00001484ConstVal : SIntType EINT64VAL { // integral constants
Chris Lattnerd05e3592002-08-15 18:17:28 +00001485 if (!ConstantSInt::isValueValidForType($1, $2))
Reid Spencer61c83e02006-08-18 08:43:06 +00001486 GEN_ERROR("Constant value doesn't fit in type!");
Chris Lattnerd05e3592002-08-15 18:17:28 +00001487 $$ = ConstantSInt::get($1, $2);
Reid Spencer61c83e02006-08-18 08:43:06 +00001488 CHECK_FOR_ERROR
Chris Lattnere43f40b2002-10-09 00:25:32 +00001489 }
1490 | UIntType EUINT64VAL { // integral constants
Chris Lattnerd05e3592002-08-15 18:17:28 +00001491 if (!ConstantUInt::isValueValidForType($1, $2))
Reid Spencer61c83e02006-08-18 08:43:06 +00001492 GEN_ERROR("Constant value doesn't fit in type!");
Chris Lattnerd05e3592002-08-15 18:17:28 +00001493 $$ = ConstantUInt::get($1, $2);
Reid Spencer61c83e02006-08-18 08:43:06 +00001494 CHECK_FOR_ERROR
Chris Lattnere43f40b2002-10-09 00:25:32 +00001495 }
Chris Lattner91ef4602004-03-31 03:49:47 +00001496 | BOOL TRUETOK { // Boolean constants
Chris Lattnerd05e3592002-08-15 18:17:28 +00001497 $$ = ConstantBool::True;
Reid Spencer61c83e02006-08-18 08:43:06 +00001498 CHECK_FOR_ERROR
Chris Lattnerd05e3592002-08-15 18:17:28 +00001499 }
Chris Lattner91ef4602004-03-31 03:49:47 +00001500 | BOOL FALSETOK { // Boolean constants
Chris Lattnerd05e3592002-08-15 18:17:28 +00001501 $$ = ConstantBool::False;
Reid Spencer61c83e02006-08-18 08:43:06 +00001502 CHECK_FOR_ERROR
Chris Lattnerd05e3592002-08-15 18:17:28 +00001503 }
1504 | FPType FPVAL { // Float & Double constants
Reid Spencer9f9b3ac2004-12-06 22:18:25 +00001505 if (!ConstantFP::isValueValidForType($1, $2))
Reid Spencer61c83e02006-08-18 08:43:06 +00001506 GEN_ERROR("Floating point constant invalid for type!!");
Chris Lattnerd05e3592002-08-15 18:17:28 +00001507 $$ = ConstantFP::get($1, $2);
Reid Spencer61c83e02006-08-18 08:43:06 +00001508 CHECK_FOR_ERROR
Chris Lattnerd05e3592002-08-15 18:17:28 +00001509 };
1510
Chris Lattner00950542001-06-06 20:29:01 +00001511
Chris Lattnerd78700d2002-08-16 21:14:40 +00001512ConstExpr: CAST '(' ConstVal TO Types ')' {
Chris Lattnerae711a82003-11-21 20:27:35 +00001513 if (!$3->getType()->isFirstClassType())
Reid Spencer61c83e02006-08-18 08:43:06 +00001514 GEN_ERROR("cast constant expression from a non-primitive type: '" +
Chris Lattnerae711a82003-11-21 20:27:35 +00001515 $3->getType()->getDescription() + "'!");
Chris Lattner0f3bc5e2003-10-10 03:56:01 +00001516 if (!$5->get()->isFirstClassType())
Reid Spencer61c83e02006-08-18 08:43:06 +00001517 GEN_ERROR("cast constant expression to a non-primitive type: '" +
Chris Lattner0f3bc5e2003-10-10 03:56:01 +00001518 $5->get()->getDescription() + "'!");
Chris Lattnerec1b8a02002-08-15 19:37:11 +00001519 $$ = ConstantExpr::getCast($3, $5->get());
Chris Lattnerec1b8a02002-08-15 19:37:11 +00001520 delete $5;
Reid Spencer61c83e02006-08-18 08:43:06 +00001521 CHECK_FOR_ERROR
Vikram S. Adved3f7eb02002-07-14 22:59:28 +00001522 }
Chris Lattnerd78700d2002-08-16 21:14:40 +00001523 | GETELEMENTPTR '(' ConstVal IndexList ')' {
1524 if (!isa<PointerType>($3->getType()))
Reid Spencer61c83e02006-08-18 08:43:06 +00001525 GEN_ERROR("GetElementPtr requires a pointer operand!");
Chris Lattnerc188eeb2002-07-30 18:54:25 +00001526
Chris Lattner830b6f92004-04-05 01:30:04 +00001527 // LLVM 1.2 and earlier used ubyte struct indices. Convert any ubyte struct
1528 // indices to uint struct indices for compatibility.
1529 generic_gep_type_iterator<std::vector<Value*>::iterator>
1530 GTI = gep_type_begin($3->getType(), $4->begin(), $4->end()),
1531 GTE = gep_type_end($3->getType(), $4->begin(), $4->end());
1532 for (unsigned i = 0, e = $4->size(); i != e && GTI != GTE; ++i, ++GTI)
1533 if (isa<StructType>(*GTI)) // Only change struct indices
1534 if (ConstantUInt *CUI = dyn_cast<ConstantUInt>((*$4)[i]))
1535 if (CUI->getType() == Type::UByteTy)
1536 (*$4)[i] = ConstantExpr::getCast(CUI, Type::UIntTy);
1537
Chris Lattnerc188eeb2002-07-30 18:54:25 +00001538 const Type *IdxTy =
Chris Lattnerd78700d2002-08-16 21:14:40 +00001539 GetElementPtrInst::getIndexedType($3->getType(), *$4, true);
Chris Lattnerc188eeb2002-07-30 18:54:25 +00001540 if (!IdxTy)
Reid Spencer61c83e02006-08-18 08:43:06 +00001541 GEN_ERROR("Index list invalid for constant getelementptr!");
Chris Lattnerc188eeb2002-07-30 18:54:25 +00001542
Chris Lattner9232b992003-04-22 18:42:41 +00001543 std::vector<Constant*> IdxVec;
Chris Lattnerd78700d2002-08-16 21:14:40 +00001544 for (unsigned i = 0, e = $4->size(); i != e; ++i)
1545 if (Constant *C = dyn_cast<Constant>((*$4)[i]))
Chris Lattnercc4b6ec2002-07-18 00:14:27 +00001546 IdxVec.push_back(C);
1547 else
Reid Spencer61c83e02006-08-18 08:43:06 +00001548 GEN_ERROR("Indices to constant getelementptr must be constants!");
Chris Lattnercc4b6ec2002-07-18 00:14:27 +00001549
Chris Lattnerd78700d2002-08-16 21:14:40 +00001550 delete $4;
Chris Lattnercc4b6ec2002-07-18 00:14:27 +00001551
Chris Lattnerd78700d2002-08-16 21:14:40 +00001552 $$ = ConstantExpr::getGetElementPtr($3, IdxVec);
Reid Spencer61c83e02006-08-18 08:43:06 +00001553 CHECK_FOR_ERROR
Vikram S. Adved3f7eb02002-07-14 22:59:28 +00001554 }
Chris Lattner76f0ff32004-03-12 05:51:36 +00001555 | SELECT '(' ConstVal ',' ConstVal ',' ConstVal ')' {
1556 if ($3->getType() != Type::BoolTy)
Reid Spencer61c83e02006-08-18 08:43:06 +00001557 GEN_ERROR("Select condition must be of boolean type!");
Chris Lattner76f0ff32004-03-12 05:51:36 +00001558 if ($5->getType() != $7->getType())
Reid Spencer61c83e02006-08-18 08:43:06 +00001559 GEN_ERROR("Select operand types must match!");
Chris Lattner76f0ff32004-03-12 05:51:36 +00001560 $$ = ConstantExpr::getSelect($3, $5, $7);
Reid Spencer61c83e02006-08-18 08:43:06 +00001561 CHECK_FOR_ERROR
Chris Lattner76f0ff32004-03-12 05:51:36 +00001562 }
Chris Lattnerc6d2f152004-08-17 17:26:41 +00001563 | ArithmeticOps '(' ConstVal ',' ConstVal ')' {
Chris Lattnerc188eeb2002-07-30 18:54:25 +00001564 if ($3->getType() != $5->getType())
Reid Spencer61c83e02006-08-18 08:43:06 +00001565 GEN_ERROR("Binary operator types must match!");
Chris Lattnerc6d2f152004-08-17 17:26:41 +00001566 // HACK: llvm 1.3 and earlier used to emit invalid pointer constant exprs.
1567 // To retain backward compatibility with these early compilers, we emit a
1568 // cast to the appropriate integer type automatically if we are in the
1569 // broken case. See PR424 for more information.
1570 if (!isa<PointerType>($3->getType())) {
1571 $$ = ConstantExpr::get($1, $3, $5);
1572 } else {
Chris Lattner42db1a02004-08-20 18:07:39 +00001573 const Type *IntPtrTy = 0;
Chris Lattnerc6d2f152004-08-17 17:26:41 +00001574 switch (CurModule.CurrentModule->getPointerSize()) {
1575 case Module::Pointer32: IntPtrTy = Type::IntTy; break;
1576 case Module::Pointer64: IntPtrTy = Type::LongTy; break;
Reid Spencer61c83e02006-08-18 08:43:06 +00001577 default: GEN_ERROR("invalid pointer binary constant expr!");
Chris Lattnerc6d2f152004-08-17 17:26:41 +00001578 }
1579 $$ = ConstantExpr::get($1, ConstantExpr::getCast($3, IntPtrTy),
1580 ConstantExpr::getCast($5, IntPtrTy));
1581 $$ = ConstantExpr::getCast($$, $3->getType());
1582 }
Reid Spencer61c83e02006-08-18 08:43:06 +00001583 CHECK_FOR_ERROR
Chris Lattnerc6d2f152004-08-17 17:26:41 +00001584 }
1585 | LogicalOps '(' ConstVal ',' ConstVal ')' {
1586 if ($3->getType() != $5->getType())
Reid Spencer61c83e02006-08-18 08:43:06 +00001587 GEN_ERROR("Logical operator types must match!");
Chris Lattner0a017832005-12-21 18:31:29 +00001588 if (!$3->getType()->isIntegral()) {
1589 if (!isa<PackedType>($3->getType()) ||
1590 !cast<PackedType>($3->getType())->getElementType()->isIntegral())
Reid Spencer61c83e02006-08-18 08:43:06 +00001591 GEN_ERROR("Logical operator requires integral operands!");
Chris Lattner0a017832005-12-21 18:31:29 +00001592 }
Chris Lattnerc6d2f152004-08-17 17:26:41 +00001593 $$ = ConstantExpr::get($1, $3, $5);
Reid Spencer61c83e02006-08-18 08:43:06 +00001594 CHECK_FOR_ERROR
Chris Lattnerc6d2f152004-08-17 17:26:41 +00001595 }
1596 | SetCondOps '(' ConstVal ',' ConstVal ')' {
1597 if ($3->getType() != $5->getType())
Reid Spencer61c83e02006-08-18 08:43:06 +00001598 GEN_ERROR("setcc operand types must match!");
Chris Lattnerd78700d2002-08-16 21:14:40 +00001599 $$ = ConstantExpr::get($1, $3, $5);
Reid Spencer61c83e02006-08-18 08:43:06 +00001600 CHECK_FOR_ERROR
Vikram S. Adved3f7eb02002-07-14 22:59:28 +00001601 }
Chris Lattnerd78700d2002-08-16 21:14:40 +00001602 | ShiftOps '(' ConstVal ',' ConstVal ')' {
Chris Lattnerc188eeb2002-07-30 18:54:25 +00001603 if ($5->getType() != Type::UByteTy)
Reid Spencer61c83e02006-08-18 08:43:06 +00001604 GEN_ERROR("Shift count for shift constant must be unsigned byte!");
Chris Lattner888d3bc2003-10-17 05:11:44 +00001605 if (!$3->getType()->isInteger())
Reid Spencer61c83e02006-08-18 08:43:06 +00001606 GEN_ERROR("Shift constant expression requires integer operand!");
Chris Lattnerb16689b2004-01-12 19:08:43 +00001607 $$ = ConstantExpr::get($1, $3, $5);
Reid Spencer61c83e02006-08-18 08:43:06 +00001608 CHECK_FOR_ERROR
Robert Bocchino9c62b562006-01-10 19:04:32 +00001609 }
1610 | EXTRACTELEMENT '(' ConstVal ',' ConstVal ')' {
Chris Lattner2d7349a2006-04-08 04:08:32 +00001611 if (!ExtractElementInst::isValidOperands($3, $5))
Reid Spencer61c83e02006-08-18 08:43:06 +00001612 GEN_ERROR("Invalid extractelement operands!");
Robert Bocchino9c62b562006-01-10 19:04:32 +00001613 $$ = ConstantExpr::getExtractElement($3, $5);
Reid Spencer61c83e02006-08-18 08:43:06 +00001614 CHECK_FOR_ERROR
Chris Lattnerca73cd82006-04-08 03:53:34 +00001615 }
1616 | INSERTELEMENT '(' ConstVal ',' ConstVal ',' ConstVal ')' {
Chris Lattner2d7349a2006-04-08 04:08:32 +00001617 if (!InsertElementInst::isValidOperands($3, $5, $7))
Reid Spencer61c83e02006-08-18 08:43:06 +00001618 GEN_ERROR("Invalid insertelement operands!");
Chris Lattnerca73cd82006-04-08 03:53:34 +00001619 $$ = ConstantExpr::getInsertElement($3, $5, $7);
Reid Spencer61c83e02006-08-18 08:43:06 +00001620 CHECK_FOR_ERROR
Chris Lattnerca73cd82006-04-08 03:53:34 +00001621 }
1622 | SHUFFLEVECTOR '(' ConstVal ',' ConstVal ',' ConstVal ')' {
1623 if (!ShuffleVectorInst::isValidOperands($3, $5, $7))
Reid Spencer61c83e02006-08-18 08:43:06 +00001624 GEN_ERROR("Invalid shufflevector operands!");
Chris Lattnerca73cd82006-04-08 03:53:34 +00001625 $$ = ConstantExpr::getShuffleVector($3, $5, $7);
Reid Spencer61c83e02006-08-18 08:43:06 +00001626 CHECK_FOR_ERROR
Chris Lattner699f1eb2002-08-14 17:12:33 +00001627 };
Vikram S. Adved3f7eb02002-07-14 22:59:28 +00001628
Chris Lattnerca73cd82006-04-08 03:53:34 +00001629
Misha Brukmanbc0e9982003-07-14 17:20:40 +00001630// ConstVector - A list of comma separated constants.
Chris Lattner00950542001-06-06 20:29:01 +00001631ConstVector : ConstVector ',' ConstVal {
Chris Lattner30c89792001-09-07 16:35:17 +00001632 ($$ = $1)->push_back($3);
Reid Spencer61c83e02006-08-18 08:43:06 +00001633 CHECK_FOR_ERROR
Chris Lattner00950542001-06-06 20:29:01 +00001634 }
1635 | ConstVal {
Chris Lattner9232b992003-04-22 18:42:41 +00001636 $$ = new std::vector<Constant*>();
Chris Lattner30c89792001-09-07 16:35:17 +00001637 $$->push_back($1);
Reid Spencer61c83e02006-08-18 08:43:06 +00001638 CHECK_FOR_ERROR
Chris Lattner51727be2002-06-04 21:58:56 +00001639 };
Chris Lattner00950542001-06-06 20:29:01 +00001640
Chris Lattnerbcbf6ba2001-07-26 16:29:15 +00001641
Chris Lattner1781aca2001-09-18 04:00:54 +00001642// GlobalType - Match either GLOBAL or CONSTANT for global declarations...
Chris Lattner51727be2002-06-04 21:58:56 +00001643GlobalType : GLOBAL { $$ = false; } | CONSTANT { $$ = true; };
Chris Lattner1781aca2001-09-18 04:00:54 +00001644
Chris Lattner00950542001-06-06 20:29:01 +00001645
Chris Lattner0e73ce62002-05-02 19:11:13 +00001646//===----------------------------------------------------------------------===//
1647// Rules to match Modules
1648//===----------------------------------------------------------------------===//
1649
1650// Module rule: Capture the result of parsing the whole file into a result
1651// variable...
1652//
1653Module : FunctionList {
1654 $$ = ParserResult = $1;
1655 CurModule.ModuleDone();
Reid Spencer61c83e02006-08-18 08:43:06 +00001656 CHECK_FOR_ERROR
Chris Lattner51727be2002-06-04 21:58:56 +00001657};
Chris Lattner0e73ce62002-05-02 19:11:13 +00001658
Chris Lattner7e708292002-06-25 16:13:24 +00001659// FunctionList - A list of functions, preceeded by a constant pool.
Chris Lattner0e73ce62002-05-02 19:11:13 +00001660//
1661FunctionList : FunctionList Function {
1662 $$ = $1;
Chris Lattner394f2eb2003-10-16 20:12:13 +00001663 CurFun.FunctionDone();
Reid Spencer61c83e02006-08-18 08:43:06 +00001664 CHECK_FOR_ERROR
Chris Lattner0e73ce62002-05-02 19:11:13 +00001665 }
1666 | FunctionList FunctionProto {
1667 $$ = $1;
Reid Spencer61c83e02006-08-18 08:43:06 +00001668 CHECK_FOR_ERROR
Chris Lattner0e73ce62002-05-02 19:11:13 +00001669 }
Chris Lattner71cdba32006-01-24 00:40:17 +00001670 | FunctionList MODULE ASM_TOK AsmBlock {
Chris Lattneree454772006-01-23 23:05:15 +00001671 $$ = $1;
Reid Spencer61c83e02006-08-18 08:43:06 +00001672 CHECK_FOR_ERROR
Chris Lattneree454772006-01-23 23:05:15 +00001673 }
Chris Lattner0e73ce62002-05-02 19:11:13 +00001674 | FunctionList IMPLEMENTATION {
1675 $$ = $1;
Reid Spencer61c83e02006-08-18 08:43:06 +00001676 CHECK_FOR_ERROR
Chris Lattner0e73ce62002-05-02 19:11:13 +00001677 }
1678 | ConstPool {
1679 $$ = CurModule.CurrentModule;
Chris Lattner355ad1f2005-03-21 06:27:42 +00001680 // Emit an error if there are any unresolved types left.
1681 if (!CurModule.LateResolveTypes.empty()) {
1682 const ValID &DID = CurModule.LateResolveTypes.begin()->first;
Reid Spencer61c83e02006-08-18 08:43:06 +00001683 if (DID.Type == ValID::NameVal) {
1684 GEN_ERROR("Reference to an undefined type: '"+DID.getName() + "'");
1685 } else {
1686 GEN_ERROR("Reference to an undefined type: #" + itostr(DID.Num));
1687 }
Chris Lattner355ad1f2005-03-21 06:27:42 +00001688 }
Reid Spencer61c83e02006-08-18 08:43:06 +00001689 CHECK_FOR_ERROR
Chris Lattner51727be2002-06-04 21:58:56 +00001690 };
Chris Lattner0e73ce62002-05-02 19:11:13 +00001691
Chris Lattnere98dda62001-07-14 06:10:16 +00001692// ConstPool - Constants with optional names assigned to them.
Chris Lattner355ad1f2005-03-21 06:27:42 +00001693ConstPool : ConstPool OptAssign TYPE TypesV {
Chris Lattner4a42e902001-10-22 05:56:09 +00001694 // Eagerly resolve types. This is not an optimization, this is a
1695 // requirement that is due to the fact that we could have this:
1696 //
1697 // %list = type { %list * }
1698 // %list = type { %list * } ; repeated type decl
1699 //
1700 // If types are not resolved eagerly, then the two types will not be
1701 // determined to be the same type!
1702 //
Chris Lattner8c89a0a2004-07-13 08:10:10 +00001703 ResolveTypeTo($2, *$4);
Chris Lattner4a42e902001-10-22 05:56:09 +00001704
Chris Lattner8c89a0a2004-07-13 08:10:10 +00001705 if (!setTypeName(*$4, $2) && !$2) {
1706 // If this is a named type that is not a redefinition, add it to the slot
1707 // table.
Chris Lattner355ad1f2005-03-21 06:27:42 +00001708 CurModule.Types.push_back(*$4);
Chris Lattner30c89792001-09-07 16:35:17 +00001709 }
Chris Lattnerc9a21b52001-10-21 23:02:41 +00001710
1711 delete $4;
Reid Spencer61c83e02006-08-18 08:43:06 +00001712 CHECK_FOR_ERROR
Chris Lattner30c89792001-09-07 16:35:17 +00001713 }
Chris Lattner79df7c02002-03-26 18:01:55 +00001714 | ConstPool FunctionProto { // Function prototypes can be in const pool
Reid Spencer61c83e02006-08-18 08:43:06 +00001715 CHECK_FOR_ERROR
Chris Lattner93750fa2001-07-28 17:48:55 +00001716 }
Chris Lattner71cdba32006-01-24 00:40:17 +00001717 | ConstPool MODULE ASM_TOK AsmBlock { // Asm blocks can be in the const pool
Reid Spencer61c83e02006-08-18 08:43:06 +00001718 CHECK_FOR_ERROR
Chris Lattneree454772006-01-23 23:05:15 +00001719 }
Chris Lattnerb2b96672005-11-12 18:21:21 +00001720 | ConstPool OptAssign OptLinkage GlobalType ConstVal {
Reid Spencer61c83e02006-08-18 08:43:06 +00001721 if ($5 == 0) GEN_ERROR("Global value initializer is not a constant!");
Chris Lattnerb2b96672005-11-12 18:21:21 +00001722 CurGV = ParseGlobalVariable($2, $3, $4, $5->getType(), $5);
1723 } GlobalVarAttributes {
1724 CurGV = 0;
Reid Spencer61c83e02006-08-18 08:43:06 +00001725 CHECK_FOR_ERROR
Chris Lattner1781aca2001-09-18 04:00:54 +00001726 }
Chris Lattnerb2b96672005-11-12 18:21:21 +00001727 | ConstPool OptAssign EXTERNAL GlobalType Types {
1728 CurGV = ParseGlobalVariable($2, GlobalValue::ExternalLinkage,
1729 $4, *$5, 0);
Chris Lattner1f862af2003-04-16 18:13:57 +00001730 delete $5;
Chris Lattnerb2b96672005-11-12 18:21:21 +00001731 } GlobalVarAttributes {
1732 CurGV = 0;
Reid Spencer61c83e02006-08-18 08:43:06 +00001733 CHECK_FOR_ERROR
Chris Lattnere98dda62001-07-14 06:10:16 +00001734 }
Chris Lattnerb9bcbb52003-04-22 19:07:06 +00001735 | ConstPool TARGET TargetDefinition {
Reid Spencer61c83e02006-08-18 08:43:06 +00001736 CHECK_FOR_ERROR
Chris Lattnerb9bcbb52003-04-22 19:07:06 +00001737 }
Reid Spencer0be13e72004-07-25 17:58:28 +00001738 | ConstPool DEPLIBS '=' LibrariesDefinition {
Reid Spencer61c83e02006-08-18 08:43:06 +00001739 CHECK_FOR_ERROR
Reid Spencer0be13e72004-07-25 17:58:28 +00001740 }
Chris Lattner00950542001-06-06 20:29:01 +00001741 | /* empty: end of list */ {
Chris Lattner51727be2002-06-04 21:58:56 +00001742 };
Chris Lattner00950542001-06-06 20:29:01 +00001743
1744
Chris Lattneree454772006-01-23 23:05:15 +00001745AsmBlock : STRINGCONSTANT {
Chris Lattner66316012006-01-24 04:14:29 +00001746 const std::string &AsmSoFar = CurModule.CurrentModule->getModuleInlineAsm();
Chris Lattneree454772006-01-23 23:05:15 +00001747 char *EndStr = UnEscapeLexed($1, true);
1748 std::string NewAsm($1, EndStr);
1749 free($1);
1750
1751 if (AsmSoFar.empty())
Chris Lattner66316012006-01-24 04:14:29 +00001752 CurModule.CurrentModule->setModuleInlineAsm(NewAsm);
Chris Lattneree454772006-01-23 23:05:15 +00001753 else
Chris Lattner66316012006-01-24 04:14:29 +00001754 CurModule.CurrentModule->setModuleInlineAsm(AsmSoFar+"\n"+NewAsm);
Reid Spencer61c83e02006-08-18 08:43:06 +00001755 CHECK_FOR_ERROR
Chris Lattneree454772006-01-23 23:05:15 +00001756};
Chris Lattnerb9bcbb52003-04-22 19:07:06 +00001757
1758BigOrLittle : BIG { $$ = Module::BigEndian; };
1759BigOrLittle : LITTLE { $$ = Module::LittleEndian; };
1760
1761TargetDefinition : ENDIAN '=' BigOrLittle {
1762 CurModule.CurrentModule->setEndianness($3);
Reid Spencer61c83e02006-08-18 08:43:06 +00001763 CHECK_FOR_ERROR
Chris Lattnerb9bcbb52003-04-22 19:07:06 +00001764 }
1765 | POINTERSIZE '=' EUINT64VAL {
1766 if ($3 == 32)
1767 CurModule.CurrentModule->setPointerSize(Module::Pointer32);
1768 else if ($3 == 64)
1769 CurModule.CurrentModule->setPointerSize(Module::Pointer64);
1770 else
Reid Spencer61c83e02006-08-18 08:43:06 +00001771 GEN_ERROR("Invalid pointer size: '" + utostr($3) + "'!");
1772 CHECK_FOR_ERROR
Reid Spencer0be13e72004-07-25 17:58:28 +00001773 }
1774 | TRIPLE '=' STRINGCONSTANT {
Reid Spencerfeaf10e2004-07-25 21:30:51 +00001775 CurModule.CurrentModule->setTargetTriple($3);
1776 free($3);
Reid Spencer61c83e02006-08-18 08:43:06 +00001777 CHECK_FOR_ERROR
Chris Lattnerb9bcbb52003-04-22 19:07:06 +00001778 };
1779
Reid Spencerfeaf10e2004-07-25 21:30:51 +00001780LibrariesDefinition : '[' LibList ']';
Reid Spencer0be13e72004-07-25 17:58:28 +00001781
1782LibList : LibList ',' STRINGCONSTANT {
Reid Spencerfeaf10e2004-07-25 21:30:51 +00001783 CurModule.CurrentModule->addLibrary($3);
1784 free($3);
Reid Spencer61c83e02006-08-18 08:43:06 +00001785 CHECK_FOR_ERROR
Reid Spencer0be13e72004-07-25 17:58:28 +00001786 }
1787 | STRINGCONSTANT {
Reid Spencerfeaf10e2004-07-25 21:30:51 +00001788 CurModule.CurrentModule->addLibrary($1);
1789 free($1);
Reid Spencer61c83e02006-08-18 08:43:06 +00001790 CHECK_FOR_ERROR
Reid Spencer0be13e72004-07-25 17:58:28 +00001791 }
1792 | /* empty: end of list */ {
Reid Spencer61c83e02006-08-18 08:43:06 +00001793 CHECK_FOR_ERROR
Reid Spencer0be13e72004-07-25 17:58:28 +00001794 }
1795 ;
Chris Lattnerb9bcbb52003-04-22 19:07:06 +00001796
Chris Lattner00950542001-06-06 20:29:01 +00001797//===----------------------------------------------------------------------===//
Chris Lattner79df7c02002-03-26 18:01:55 +00001798// Rules to match Function Headers
Chris Lattner00950542001-06-06 20:29:01 +00001799//===----------------------------------------------------------------------===//
1800
Chris Lattner6c23f572003-08-22 05:42:10 +00001801Name : VAR_ID | STRINGCONSTANT;
1802OptName : Name | /*empty*/ { $$ = 0; };
Chris Lattner00950542001-06-06 20:29:01 +00001803
Chris Lattner6c23f572003-08-22 05:42:10 +00001804ArgVal : Types OptName {
Chris Lattner69da5cf2002-10-13 20:57:00 +00001805 if (*$1 == Type::VoidTy)
Reid Spencer61c83e02006-08-18 08:43:06 +00001806 GEN_ERROR("void typed arguments are invalid!");
Chris Lattner9232b992003-04-22 18:42:41 +00001807 $$ = new std::pair<PATypeHolder*, char*>($1, $2);
Reid Spencer61c83e02006-08-18 08:43:06 +00001808 CHECK_FOR_ERROR
Chris Lattner51727be2002-06-04 21:58:56 +00001809};
Chris Lattner00950542001-06-06 20:29:01 +00001810
Chris Lattner69da5cf2002-10-13 20:57:00 +00001811ArgListH : ArgListH ',' ArgVal {
1812 $$ = $1;
1813 $1->push_back(*$3);
1814 delete $3;
Reid Spencer61c83e02006-08-18 08:43:06 +00001815 CHECK_FOR_ERROR
Chris Lattner00950542001-06-06 20:29:01 +00001816 }
1817 | ArgVal {
Chris Lattner9232b992003-04-22 18:42:41 +00001818 $$ = new std::vector<std::pair<PATypeHolder*,char*> >();
Chris Lattner69da5cf2002-10-13 20:57:00 +00001819 $$->push_back(*$1);
Chris Lattnerf28d6c92002-03-08 18:41:32 +00001820 delete $1;
Reid Spencer61c83e02006-08-18 08:43:06 +00001821 CHECK_FOR_ERROR
Chris Lattner51727be2002-06-04 21:58:56 +00001822 };
Chris Lattner00950542001-06-06 20:29:01 +00001823
1824ArgList : ArgListH {
1825 $$ = $1;
Reid Spencer61c83e02006-08-18 08:43:06 +00001826 CHECK_FOR_ERROR
Chris Lattner00950542001-06-06 20:29:01 +00001827 }
Chris Lattner69da5cf2002-10-13 20:57:00 +00001828 | ArgListH ',' DOTDOTDOT {
1829 $$ = $1;
Chris Lattner9232b992003-04-22 18:42:41 +00001830 $$->push_back(std::pair<PATypeHolder*,
1831 char*>(new PATypeHolder(Type::VoidTy), 0));
Reid Spencer61c83e02006-08-18 08:43:06 +00001832 CHECK_FOR_ERROR
Chris Lattner69da5cf2002-10-13 20:57:00 +00001833 }
1834 | DOTDOTDOT {
Chris Lattner9232b992003-04-22 18:42:41 +00001835 $$ = new std::vector<std::pair<PATypeHolder*,char*> >();
1836 $$->push_back(std::make_pair(new PATypeHolder(Type::VoidTy), (char*)0));
Reid Spencer61c83e02006-08-18 08:43:06 +00001837 CHECK_FOR_ERROR
Chris Lattner69da5cf2002-10-13 20:57:00 +00001838 }
Chris Lattner00950542001-06-06 20:29:01 +00001839 | /* empty */ {
1840 $$ = 0;
Reid Spencer61c83e02006-08-18 08:43:06 +00001841 CHECK_FOR_ERROR
Chris Lattner51727be2002-06-04 21:58:56 +00001842 };
Chris Lattner00950542001-06-06 20:29:01 +00001843
Chris Lattner164c3782005-11-12 00:11:10 +00001844FunctionHeaderH : OptCallingConv TypesV Name '(' ArgList ')'
1845 OptSection OptAlign {
Chris Lattnera8e8f162005-05-06 20:27:19 +00001846 UnEscapeLexed($3);
1847 std::string FunctionName($3);
1848 free($3); // Free strdup'd memory!
Chris Lattnerdda71962001-11-26 18:54:16 +00001849
Chris Lattnera8e8f162005-05-06 20:27:19 +00001850 if (!(*$2)->isFirstClassType() && *$2 != Type::VoidTy)
Reid Spencer61c83e02006-08-18 08:43:06 +00001851 GEN_ERROR("LLVM functions cannot return aggregate types!");
Chris Lattnerc282f5a2003-11-21 22:32:23 +00001852
Chris Lattner9232b992003-04-22 18:42:41 +00001853 std::vector<const Type*> ParamTypeList;
Chris Lattnera8e8f162005-05-06 20:27:19 +00001854 if ($5) { // If there are arguments...
1855 for (std::vector<std::pair<PATypeHolder*,char*> >::iterator I = $5->begin();
1856 I != $5->end(); ++I)
Chris Lattner69da5cf2002-10-13 20:57:00 +00001857 ParamTypeList.push_back(I->first->get());
Chris Lattnerbf0a37b2002-10-15 21:41:14 +00001858 }
Chris Lattner00950542001-06-06 20:29:01 +00001859
Chris Lattner2079fde2001-10-13 06:41:08 +00001860 bool isVarArg = ParamTypeList.size() && ParamTypeList.back() == Type::VoidTy;
1861 if (isVarArg) ParamTypeList.pop_back();
1862
Chris Lattnera8e8f162005-05-06 20:27:19 +00001863 const FunctionType *FT = FunctionType::get(*$2, ParamTypeList, isVarArg);
Chris Lattnerbf0a37b2002-10-15 21:41:14 +00001864 const PointerType *PFT = PointerType::get(FT);
Chris Lattnera8e8f162005-05-06 20:27:19 +00001865 delete $2;
Chris Lattner00950542001-06-06 20:29:01 +00001866
Chris Lattnera09000d2004-07-14 23:03:46 +00001867 ValID ID;
1868 if (!FunctionName.empty()) {
1869 ID = ValID::create((char*)FunctionName.c_str());
1870 } else {
1871 ID = ValID::create((int)CurModule.Values[PFT].size());
1872 }
1873
Chris Lattnerd9ce6ad2004-07-14 19:33:47 +00001874 Function *Fn = 0;
Chris Lattnera09000d2004-07-14 23:03:46 +00001875 // See if this function was forward referenced. If so, recycle the object.
1876 if (GlobalValue *FWRef = CurModule.GetForwardRefForGlobal(PFT, ID)) {
1877 // Move the function to the end of the list, from whereever it was
1878 // previously inserted.
1879 Fn = cast<Function>(FWRef);
1880 CurModule.CurrentModule->getFunctionList().remove(Fn);
1881 CurModule.CurrentModule->getFunctionList().push_back(Fn);
1882 } else if (!FunctionName.empty() && // Merge with an earlier prototype?
1883 (Fn = CurModule.CurrentModule->getFunction(FunctionName, FT))) {
1884 // If this is the case, either we need to be a forward decl, or it needs
1885 // to be.
Chris Lattnerd9ce6ad2004-07-14 19:33:47 +00001886 if (!CurFun.isDeclare && !Fn->isExternal())
Reid Spencer61c83e02006-08-18 08:43:06 +00001887 GEN_ERROR("Redefinition of function '" + FunctionName + "'!");
Chris Lattnerd9ce6ad2004-07-14 19:33:47 +00001888
Chris Lattnera09000d2004-07-14 23:03:46 +00001889 // Make sure to strip off any argument names so we can't get conflicts.
1890 if (Fn->isExternal())
Chris Lattnere4d5c442005-03-15 04:54:21 +00001891 for (Function::arg_iterator AI = Fn->arg_begin(), AE = Fn->arg_end();
Chris Lattnera09000d2004-07-14 23:03:46 +00001892 AI != AE; ++AI)
1893 AI->setName("");
Chris Lattner5659dd12002-07-15 00:10:33 +00001894
Chris Lattnerd9ce6ad2004-07-14 19:33:47 +00001895 } else { // Not already defined?
1896 Fn = new Function(FT, GlobalValue::ExternalLinkage, FunctionName,
1897 CurModule.CurrentModule);
1898 InsertValue(Fn, CurModule.Values);
Chris Lattnerd9ce6ad2004-07-14 19:33:47 +00001899 }
Chris Lattner00950542001-06-06 20:29:01 +00001900
Chris Lattner394f2eb2003-10-16 20:12:13 +00001901 CurFun.FunctionStart(Fn);
Chris Lattnera8e8f162005-05-06 20:27:19 +00001902 Fn->setCallingConv($1);
Chris Lattner164c3782005-11-12 00:11:10 +00001903 Fn->setAlignment($8);
1904 if ($7) {
1905 Fn->setSection($7);
1906 free($7);
1907 }
Chris Lattner00950542001-06-06 20:29:01 +00001908
Chris Lattner7e708292002-06-25 16:13:24 +00001909 // Add all of the arguments we parsed to the function...
Chris Lattnera8e8f162005-05-06 20:27:19 +00001910 if ($5) { // Is null if empty...
Chris Lattner69da5cf2002-10-13 20:57:00 +00001911 if (isVarArg) { // Nuke the last entry
Chris Lattnera8e8f162005-05-06 20:27:19 +00001912 assert($5->back().first->get() == Type::VoidTy && $5->back().second == 0&&
Chris Lattner69da5cf2002-10-13 20:57:00 +00001913 "Not a varargs marker!");
Chris Lattnera8e8f162005-05-06 20:27:19 +00001914 delete $5->back().first;
1915 $5->pop_back(); // Delete the last entry
Chris Lattner69da5cf2002-10-13 20:57:00 +00001916 }
Chris Lattnere4d5c442005-03-15 04:54:21 +00001917 Function::arg_iterator ArgIt = Fn->arg_begin();
Chris Lattnera8e8f162005-05-06 20:27:19 +00001918 for (std::vector<std::pair<PATypeHolder*,char*> >::iterator I = $5->begin();
1919 I != $5->end(); ++I, ++ArgIt) {
Chris Lattner69da5cf2002-10-13 20:57:00 +00001920 delete I->first; // Delete the typeholder...
1921
Chris Lattner8ab406d2004-07-13 07:59:27 +00001922 setValueName(ArgIt, I->second); // Insert arg into symtab...
Chris Lattner69da5cf2002-10-13 20:57:00 +00001923 InsertValue(ArgIt);
Chris Lattner00950542001-06-06 20:29:01 +00001924 }
Chris Lattner69da5cf2002-10-13 20:57:00 +00001925
Chris Lattnera8e8f162005-05-06 20:27:19 +00001926 delete $5; // We're now done with the argument list
Chris Lattner00950542001-06-06 20:29:01 +00001927 }
Reid Spencer61c83e02006-08-18 08:43:06 +00001928 CHECK_FOR_ERROR
Chris Lattner51727be2002-06-04 21:58:56 +00001929};
Chris Lattner00950542001-06-06 20:29:01 +00001930
Chris Lattner9b02cc32002-05-03 18:23:48 +00001931BEGIN : BEGINTOK | '{'; // Allow BEGIN or '{' to start a function
1932
Chris Lattner4ad02e72003-04-16 20:28:45 +00001933FunctionHeader : OptLinkage FunctionHeaderH BEGIN {
Chris Lattner394f2eb2003-10-16 20:12:13 +00001934 $$ = CurFun.CurrentFunction;
Chris Lattner30c89792001-09-07 16:35:17 +00001935
Chris Lattner4ad02e72003-04-16 20:28:45 +00001936 // Make sure that we keep track of the linkage type even if there was a
1937 // previous "declare".
1938 $$->setLinkage($1);
Chris Lattner51727be2002-06-04 21:58:56 +00001939};
Chris Lattner00950542001-06-06 20:29:01 +00001940
Chris Lattner9b02cc32002-05-03 18:23:48 +00001941END : ENDTOK | '}'; // Allow end of '}' to end a function
1942
Chris Lattner79df7c02002-03-26 18:01:55 +00001943Function : BasicBlockList END {
Chris Lattner00950542001-06-06 20:29:01 +00001944 $$ = $1;
Reid Spencer61c83e02006-08-18 08:43:06 +00001945 CHECK_FOR_ERROR
Chris Lattner51727be2002-06-04 21:58:56 +00001946};
Chris Lattner00950542001-06-06 20:29:01 +00001947
Chris Lattner394f2eb2003-10-16 20:12:13 +00001948FunctionProto : DECLARE { CurFun.isDeclare = true; } FunctionHeaderH {
1949 $$ = CurFun.CurrentFunction;
Chris Lattner394f2eb2003-10-16 20:12:13 +00001950 CurFun.FunctionDone();
Reid Spencer61c83e02006-08-18 08:43:06 +00001951 CHECK_FOR_ERROR
Chris Lattner51727be2002-06-04 21:58:56 +00001952};
Chris Lattner00950542001-06-06 20:29:01 +00001953
1954//===----------------------------------------------------------------------===//
1955// Rules to match Basic Blocks
1956//===----------------------------------------------------------------------===//
1957
Chris Lattneraa2c8532006-01-25 22:26:43 +00001958OptSideEffect : /* empty */ {
1959 $$ = false;
Reid Spencer61c83e02006-08-18 08:43:06 +00001960 CHECK_FOR_ERROR
Chris Lattneraa2c8532006-01-25 22:26:43 +00001961 }
1962 | SIDEEFFECT {
1963 $$ = true;
Reid Spencer61c83e02006-08-18 08:43:06 +00001964 CHECK_FOR_ERROR
Chris Lattneraa2c8532006-01-25 22:26:43 +00001965 };
1966
Chris Lattner00950542001-06-06 20:29:01 +00001967ConstValueRef : ESINT64VAL { // A reference to a direct constant
1968 $$ = ValID::create($1);
Reid Spencer61c83e02006-08-18 08:43:06 +00001969 CHECK_FOR_ERROR
Chris Lattner00950542001-06-06 20:29:01 +00001970 }
1971 | EUINT64VAL {
1972 $$ = ValID::create($1);
Reid Spencer61c83e02006-08-18 08:43:06 +00001973 CHECK_FOR_ERROR
Chris Lattner00950542001-06-06 20:29:01 +00001974 }
Chris Lattner3d52b2f2001-07-15 00:17:01 +00001975 | FPVAL { // Perhaps it's an FP constant?
1976 $$ = ValID::create($1);
Reid Spencer61c83e02006-08-18 08:43:06 +00001977 CHECK_FOR_ERROR
Chris Lattner3d52b2f2001-07-15 00:17:01 +00001978 }
Chris Lattner91ef4602004-03-31 03:49:47 +00001979 | TRUETOK {
Chris Lattnerd78700d2002-08-16 21:14:40 +00001980 $$ = ValID::create(ConstantBool::True);
Reid Spencer61c83e02006-08-18 08:43:06 +00001981 CHECK_FOR_ERROR
Chris Lattner00950542001-06-06 20:29:01 +00001982 }
Chris Lattner91ef4602004-03-31 03:49:47 +00001983 | FALSETOK {
Chris Lattnerd78700d2002-08-16 21:14:40 +00001984 $$ = ValID::create(ConstantBool::False);
Reid Spencer61c83e02006-08-18 08:43:06 +00001985 CHECK_FOR_ERROR
Chris Lattner00950542001-06-06 20:29:01 +00001986 }
Chris Lattner1a1cb112001-09-30 22:46:54 +00001987 | NULL_TOK {
1988 $$ = ValID::createNull();
Reid Spencer61c83e02006-08-18 08:43:06 +00001989 CHECK_FOR_ERROR
Vikram S. Adved3f7eb02002-07-14 22:59:28 +00001990 }
Chris Lattner16710e92004-10-16 18:17:13 +00001991 | UNDEF {
1992 $$ = ValID::createUndef();
Reid Spencer61c83e02006-08-18 08:43:06 +00001993 CHECK_FOR_ERROR
Chris Lattner16710e92004-10-16 18:17:13 +00001994 }
Chris Lattnerf1f03df2005-12-21 17:53:02 +00001995 | ZEROINITIALIZER { // A vector zero constant.
1996 $$ = ValID::createZeroInit();
Reid Spencer61c83e02006-08-18 08:43:06 +00001997 CHECK_FOR_ERROR
Chris Lattnerf1f03df2005-12-21 17:53:02 +00001998 }
Brian Gaeke715c90b2004-08-20 06:00:58 +00001999 | '<' ConstVector '>' { // Nonempty unsized packed vector
2000 const Type *ETy = (*$2)[0]->getType();
2001 int NumElements = $2->size();
2002
2003 PackedType* pt = PackedType::get(ETy, NumElements);
2004 PATypeHolder* PTy = new PATypeHolder(
2005 HandleUpRefs(
2006 PackedType::get(
2007 ETy,
2008 NumElements)
2009 )
2010 );
2011
2012 // Verify all elements are correct type!
2013 for (unsigned i = 0; i < $2->size(); i++) {
2014 if (ETy != (*$2)[i]->getType())
Reid Spencer61c83e02006-08-18 08:43:06 +00002015 GEN_ERROR("Element #" + utostr(i) + " is not of type '" +
Brian Gaeke715c90b2004-08-20 06:00:58 +00002016 ETy->getDescription() +"' as required!\nIt is of type '" +
2017 (*$2)[i]->getType()->getDescription() + "'.");
2018 }
2019
2020 $$ = ValID::create(ConstantPacked::get(pt, *$2));
2021 delete PTy; delete $2;
Reid Spencer61c83e02006-08-18 08:43:06 +00002022 CHECK_FOR_ERROR
Brian Gaeke715c90b2004-08-20 06:00:58 +00002023 }
Chris Lattnerd78700d2002-08-16 21:14:40 +00002024 | ConstExpr {
2025 $$ = ValID::create($1);
Reid Spencer61c83e02006-08-18 08:43:06 +00002026 CHECK_FOR_ERROR
Chris Lattneraa2c8532006-01-25 22:26:43 +00002027 }
2028 | ASM_TOK OptSideEffect STRINGCONSTANT ',' STRINGCONSTANT {
2029 char *End = UnEscapeLexed($3, true);
2030 std::string AsmStr = std::string($3, End);
2031 End = UnEscapeLexed($5, true);
2032 std::string Constraints = std::string($5, End);
2033 $$ = ValID::createInlineAsm(AsmStr, Constraints, $2);
2034 free($3);
2035 free($5);
Reid Spencer61c83e02006-08-18 08:43:06 +00002036 CHECK_FOR_ERROR
Chris Lattnerd78700d2002-08-16 21:14:40 +00002037 };
Chris Lattner1a1cb112001-09-30 22:46:54 +00002038
Chris Lattner2079fde2001-10-13 06:41:08 +00002039// SymbolicValueRef - Reference to one of two ways of symbolically refering to
2040// another value.
2041//
2042SymbolicValueRef : INTVAL { // Is it an integer reference...?
Chris Lattner00950542001-06-06 20:29:01 +00002043 $$ = ValID::create($1);
Reid Spencer61c83e02006-08-18 08:43:06 +00002044 CHECK_FOR_ERROR
Chris Lattner00950542001-06-06 20:29:01 +00002045 }
Chris Lattner6c23f572003-08-22 05:42:10 +00002046 | Name { // Is it a named reference...?
Chris Lattner00950542001-06-06 20:29:01 +00002047 $$ = ValID::create($1);
Reid Spencer61c83e02006-08-18 08:43:06 +00002048 CHECK_FOR_ERROR
Chris Lattner51727be2002-06-04 21:58:56 +00002049 };
Chris Lattner2079fde2001-10-13 06:41:08 +00002050
2051// ValueRef - A reference to a definition... either constant or symbolic
Chris Lattner51727be2002-06-04 21:58:56 +00002052ValueRef : SymbolicValueRef | ConstValueRef;
Chris Lattner2079fde2001-10-13 06:41:08 +00002053
Chris Lattner00950542001-06-06 20:29:01 +00002054
Chris Lattnerbcbf6ba2001-07-26 16:29:15 +00002055// ResolvedVal - a <type> <value> pair. This is used only in cases where the
2056// type immediately preceeds the value reference, and allows complex constant
2057// pool references (for things like: 'ret [2 x int] [ int 12, int 42]')
Chris Lattnerdf7306f2001-10-03 01:49:25 +00002058ResolvedVal : Types ValueRef {
Chris Lattner30c89792001-09-07 16:35:17 +00002059 $$ = getVal(*$1, $2); delete $1;
Reid Spencer61c83e02006-08-18 08:43:06 +00002060 CHECK_FOR_ERROR
Chris Lattner51727be2002-06-04 21:58:56 +00002061 };
Chris Lattner8b81bf52001-07-25 22:47:46 +00002062
Chris Lattner00950542001-06-06 20:29:01 +00002063BasicBlockList : BasicBlockList BasicBlock {
Chris Lattner8ab406d2004-07-13 07:59:27 +00002064 $$ = $1;
Reid Spencer61c83e02006-08-18 08:43:06 +00002065 CHECK_FOR_ERROR
Chris Lattner00950542001-06-06 20:29:01 +00002066 }
Chris Lattner7e708292002-06-25 16:13:24 +00002067 | FunctionHeader BasicBlock { // Do not allow functions with 0 basic blocks
Chris Lattner8ab406d2004-07-13 07:59:27 +00002068 $$ = $1;
Reid Spencer61c83e02006-08-18 08:43:06 +00002069 CHECK_FOR_ERROR
Chris Lattner51727be2002-06-04 21:58:56 +00002070 };
Chris Lattner00950542001-06-06 20:29:01 +00002071
2072
2073// Basic blocks are terminated by branching instructions:
2074// br, br/cc, switch, ret
2075//
Chris Lattner2079fde2001-10-13 06:41:08 +00002076BasicBlock : InstructionList OptAssign BBTerminatorInst {
Chris Lattner8ab406d2004-07-13 07:59:27 +00002077 setValueName($3, $2);
Chris Lattner2079fde2001-10-13 06:41:08 +00002078 InsertValue($3);
2079
2080 $1->getInstList().push_back($3);
Chris Lattner00950542001-06-06 20:29:01 +00002081 InsertValue($1);
2082 $$ = $1;
Reid Spencer61c83e02006-08-18 08:43:06 +00002083 CHECK_FOR_ERROR
Chris Lattner51727be2002-06-04 21:58:56 +00002084 };
Chris Lattner00950542001-06-06 20:29:01 +00002085
2086InstructionList : InstructionList Inst {
2087 $1->getInstList().push_back($2);
2088 $$ = $1;
Reid Spencer61c83e02006-08-18 08:43:06 +00002089 CHECK_FOR_ERROR
Chris Lattner00950542001-06-06 20:29:01 +00002090 }
2091 | /* empty */ {
Andrew Lenharth558bc882005-06-18 18:34:52 +00002092 $$ = CurBB = getBBVal(ValID::create((int)CurFun.NextBBNum++), true);
Chris Lattner8d65a062004-07-26 01:40:20 +00002093
2094 // Make sure to move the basic block to the correct location in the
2095 // function, instead of leaving it inserted wherever it was first
2096 // referenced.
Chris Lattnerf924a4c2005-05-06 19:58:35 +00002097 Function::BasicBlockListType &BBL =
2098 CurFun.CurrentFunction->getBasicBlockList();
2099 BBL.splice(BBL.end(), BBL, $$);
Reid Spencer61c83e02006-08-18 08:43:06 +00002100 CHECK_FOR_ERROR
Chris Lattner22ae2322004-07-13 08:39:15 +00002101 }
2102 | LABELSTR {
Andrew Lenharth558bc882005-06-18 18:34:52 +00002103 $$ = CurBB = getBBVal(ValID::create($1), true);
Chris Lattner8d65a062004-07-26 01:40:20 +00002104
2105 // Make sure to move the basic block to the correct location in the
2106 // function, instead of leaving it inserted wherever it was first
2107 // referenced.
Chris Lattnerf924a4c2005-05-06 19:58:35 +00002108 Function::BasicBlockListType &BBL =
2109 CurFun.CurrentFunction->getBasicBlockList();
2110 BBL.splice(BBL.end(), BBL, $$);
Reid Spencer61c83e02006-08-18 08:43:06 +00002111 CHECK_FOR_ERROR
Chris Lattner51727be2002-06-04 21:58:56 +00002112 };
Chris Lattner00950542001-06-06 20:29:01 +00002113
Chris Lattnerbcbf6ba2001-07-26 16:29:15 +00002114BBTerminatorInst : RET ResolvedVal { // Return with a result...
2115 $$ = new ReturnInst($2);
Reid Spencer61c83e02006-08-18 08:43:06 +00002116 CHECK_FOR_ERROR
Chris Lattner00950542001-06-06 20:29:01 +00002117 }
2118 | RET VOID { // Return with no result...
2119 $$ = new ReturnInst();
Reid Spencer61c83e02006-08-18 08:43:06 +00002120 CHECK_FOR_ERROR
Chris Lattner00950542001-06-06 20:29:01 +00002121 }
2122 | BR LABEL ValueRef { // Unconditional Branch...
Chris Lattner64116f92004-07-14 01:33:11 +00002123 $$ = new BranchInst(getBBVal($3));
Reid Spencer61c83e02006-08-18 08:43:06 +00002124 CHECK_FOR_ERROR
Chris Lattner00950542001-06-06 20:29:01 +00002125 } // Conditional Branch...
2126 | BR BOOL ValueRef ',' LABEL ValueRef ',' LABEL ValueRef {
Chris Lattner64116f92004-07-14 01:33:11 +00002127 $$ = new BranchInst(getBBVal($6), getBBVal($9), getVal(Type::BoolTy, $3));
Reid Spencer61c83e02006-08-18 08:43:06 +00002128 CHECK_FOR_ERROR
Chris Lattner00950542001-06-06 20:29:01 +00002129 }
2130 | SWITCH IntType ValueRef ',' LABEL ValueRef '[' JumpTable ']' {
Chris Lattnerce1df9e2005-01-29 00:35:55 +00002131 SwitchInst *S = new SwitchInst(getVal($2, $3), getBBVal($6), $8->size());
Chris Lattner00950542001-06-06 20:29:01 +00002132 $$ = S;
2133
Chris Lattner9232b992003-04-22 18:42:41 +00002134 std::vector<std::pair<Constant*,BasicBlock*> >::iterator I = $8->begin(),
Chris Lattner46748042002-04-09 19:41:42 +00002135 E = $8->end();
Chris Lattner69331f52005-02-24 05:25:17 +00002136 for (; I != E; ++I) {
2137 if (ConstantInt *CI = dyn_cast<ConstantInt>(I->first))
2138 S->addCase(CI, I->second);
2139 else
Reid Spencer61c83e02006-08-18 08:43:06 +00002140 GEN_ERROR("Switch case is constant, but not a simple integer!");
Chris Lattner69331f52005-02-24 05:25:17 +00002141 }
Chris Lattnerf57a43d2004-04-17 23:49:15 +00002142 delete $8;
Reid Spencer61c83e02006-08-18 08:43:06 +00002143 CHECK_FOR_ERROR
Chris Lattner00950542001-06-06 20:29:01 +00002144 }
Chris Lattner196850c2003-05-15 21:30:00 +00002145 | SWITCH IntType ValueRef ',' LABEL ValueRef '[' ']' {
Chris Lattnerce1df9e2005-01-29 00:35:55 +00002146 SwitchInst *S = new SwitchInst(getVal($2, $3), getBBVal($6), 0);
Chris Lattner196850c2003-05-15 21:30:00 +00002147 $$ = S;
Reid Spencer61c83e02006-08-18 08:43:06 +00002148 CHECK_FOR_ERROR
Chris Lattner196850c2003-05-15 21:30:00 +00002149 }
Chris Lattnera8e8f162005-05-06 20:27:19 +00002150 | INVOKE OptCallingConv TypesV ValueRef '(' ValueRefListE ')'
2151 TO LABEL ValueRef UNWIND LABEL ValueRef {
Chris Lattnerbf0a37b2002-10-15 21:41:14 +00002152 const PointerType *PFTy;
Chris Lattner79df7c02002-03-26 18:01:55 +00002153 const FunctionType *Ty;
Chris Lattner2079fde2001-10-13 06:41:08 +00002154
Chris Lattnera8e8f162005-05-06 20:27:19 +00002155 if (!(PFTy = dyn_cast<PointerType>($3->get())) ||
Chris Lattnerbf0a37b2002-10-15 21:41:14 +00002156 !(Ty = dyn_cast<FunctionType>(PFTy->getElementType()))) {
Chris Lattner2079fde2001-10-13 06:41:08 +00002157 // Pull out the types of all of the arguments...
Chris Lattner9232b992003-04-22 18:42:41 +00002158 std::vector<const Type*> ParamTypes;
Chris Lattnera8e8f162005-05-06 20:27:19 +00002159 if ($6) {
2160 for (std::vector<Value*>::iterator I = $6->begin(), E = $6->end();
Chris Lattner9232b992003-04-22 18:42:41 +00002161 I != E; ++I)
Chris Lattner2079fde2001-10-13 06:41:08 +00002162 ParamTypes.push_back((*I)->getType());
2163 }
2164
2165 bool isVarArg = ParamTypes.size() && ParamTypes.back() == Type::VoidTy;
2166 if (isVarArg) ParamTypes.pop_back();
2167
Chris Lattnera8e8f162005-05-06 20:27:19 +00002168 Ty = FunctionType::get($3->get(), ParamTypes, isVarArg);
Chris Lattnerbf0a37b2002-10-15 21:41:14 +00002169 PFTy = PointerType::get(Ty);
Chris Lattner2079fde2001-10-13 06:41:08 +00002170 }
Chris Lattner2079fde2001-10-13 06:41:08 +00002171
Chris Lattnera8e8f162005-05-06 20:27:19 +00002172 Value *V = getVal(PFTy, $4); // Get the function we're calling...
Chris Lattner2079fde2001-10-13 06:41:08 +00002173
Chris Lattnera8e8f162005-05-06 20:27:19 +00002174 BasicBlock *Normal = getBBVal($10);
2175 BasicBlock *Except = getBBVal($13);
Chris Lattner2079fde2001-10-13 06:41:08 +00002176
2177 // Create the call node...
Chris Lattnera8e8f162005-05-06 20:27:19 +00002178 if (!$6) { // Has no arguments?
Chris Lattner9232b992003-04-22 18:42:41 +00002179 $$ = new InvokeInst(V, Normal, Except, std::vector<Value*>());
Chris Lattner2079fde2001-10-13 06:41:08 +00002180 } else { // Has arguments?
Chris Lattner79df7c02002-03-26 18:01:55 +00002181 // Loop through FunctionType's arguments and ensure they are specified
Chris Lattner2079fde2001-10-13 06:41:08 +00002182 // correctly!
2183 //
Chris Lattnerd5d89962004-02-09 04:14:01 +00002184 FunctionType::param_iterator I = Ty->param_begin();
2185 FunctionType::param_iterator E = Ty->param_end();
Chris Lattnera8e8f162005-05-06 20:27:19 +00002186 std::vector<Value*>::iterator ArgI = $6->begin(), ArgE = $6->end();
Chris Lattner2079fde2001-10-13 06:41:08 +00002187
2188 for (; ArgI != ArgE && I != E; ++ArgI, ++I)
Reid Spencer3271ed52004-07-18 00:08:11 +00002189 if ((*ArgI)->getType() != *I)
Reid Spencer61c83e02006-08-18 08:43:06 +00002190 GEN_ERROR("Parameter " +(*ArgI)->getName()+ " is not of type '" +
Reid Spencer3271ed52004-07-18 00:08:11 +00002191 (*I)->getDescription() + "'!");
Chris Lattner2079fde2001-10-13 06:41:08 +00002192
2193 if (I != E || (ArgI != ArgE && !Ty->isVarArg()))
Reid Spencer61c83e02006-08-18 08:43:06 +00002194 GEN_ERROR("Invalid number of parameters detected!");
Chris Lattner2079fde2001-10-13 06:41:08 +00002195
Chris Lattnera8e8f162005-05-06 20:27:19 +00002196 $$ = new InvokeInst(V, Normal, Except, *$6);
Chris Lattner2079fde2001-10-13 06:41:08 +00002197 }
Chris Lattnera8e8f162005-05-06 20:27:19 +00002198 cast<InvokeInst>($$)->setCallingConv($2);
2199
2200 delete $3;
2201 delete $6;
Reid Spencer61c83e02006-08-18 08:43:06 +00002202 CHECK_FOR_ERROR
Chris Lattner36143fc2003-09-08 18:54:55 +00002203 }
2204 | UNWIND {
2205 $$ = new UnwindInst();
Reid Spencer61c83e02006-08-18 08:43:06 +00002206 CHECK_FOR_ERROR
Chris Lattner16710e92004-10-16 18:17:13 +00002207 }
2208 | UNREACHABLE {
2209 $$ = new UnreachableInst();
Reid Spencer61c83e02006-08-18 08:43:06 +00002210 CHECK_FOR_ERROR
Chris Lattner51727be2002-06-04 21:58:56 +00002211 };
Chris Lattner2079fde2001-10-13 06:41:08 +00002212
2213
Chris Lattner00950542001-06-06 20:29:01 +00002214
2215JumpTable : JumpTable IntType ConstValueRef ',' LABEL ValueRef {
2216 $$ = $1;
Chris Lattnere9bb2df2001-12-03 22:26:30 +00002217 Constant *V = cast<Constant>(getValNonImprovising($2, $3));
Chris Lattner00950542001-06-06 20:29:01 +00002218 if (V == 0)
Reid Spencer61c83e02006-08-18 08:43:06 +00002219 GEN_ERROR("May only switch on a constant pool value!");
Chris Lattner00950542001-06-06 20:29:01 +00002220
Chris Lattner64116f92004-07-14 01:33:11 +00002221 $$->push_back(std::make_pair(V, getBBVal($6)));
Reid Spencer61c83e02006-08-18 08:43:06 +00002222 CHECK_FOR_ERROR
Chris Lattner00950542001-06-06 20:29:01 +00002223 }
2224 | IntType ConstValueRef ',' LABEL ValueRef {
Chris Lattner9232b992003-04-22 18:42:41 +00002225 $$ = new std::vector<std::pair<Constant*, BasicBlock*> >();
Chris Lattnere9bb2df2001-12-03 22:26:30 +00002226 Constant *V = cast<Constant>(getValNonImprovising($1, $2));
Chris Lattner00950542001-06-06 20:29:01 +00002227
2228 if (V == 0)
Reid Spencer61c83e02006-08-18 08:43:06 +00002229 GEN_ERROR("May only switch on a constant pool value!");
Chris Lattner00950542001-06-06 20:29:01 +00002230
Chris Lattner64116f92004-07-14 01:33:11 +00002231 $$->push_back(std::make_pair(V, getBBVal($5)));
Reid Spencer61c83e02006-08-18 08:43:06 +00002232 CHECK_FOR_ERROR
Chris Lattner51727be2002-06-04 21:58:56 +00002233 };
Chris Lattner00950542001-06-06 20:29:01 +00002234
2235Inst : OptAssign InstVal {
Chris Lattnerb7474512001-10-03 15:39:04 +00002236 // Is this definition named?? if so, assign the name...
Chris Lattner8ab406d2004-07-13 07:59:27 +00002237 setValueName($2, $1);
Chris Lattner00950542001-06-06 20:29:01 +00002238 InsertValue($2);
2239 $$ = $2;
Reid Spencer61c83e02006-08-18 08:43:06 +00002240 CHECK_FOR_ERROR
Chris Lattner51727be2002-06-04 21:58:56 +00002241};
Chris Lattner00950542001-06-06 20:29:01 +00002242
Chris Lattnerc24d2082001-06-11 15:04:20 +00002243PHIList : Types '[' ValueRef ',' ValueRef ']' { // Used for PHI nodes
Chris Lattner9232b992003-04-22 18:42:41 +00002244 $$ = new std::list<std::pair<Value*, BasicBlock*> >();
Chris Lattner64116f92004-07-14 01:33:11 +00002245 $$->push_back(std::make_pair(getVal(*$1, $3), getBBVal($5)));
Chris Lattner30c89792001-09-07 16:35:17 +00002246 delete $1;
Reid Spencer61c83e02006-08-18 08:43:06 +00002247 CHECK_FOR_ERROR
Chris Lattnerc24d2082001-06-11 15:04:20 +00002248 }
2249 | PHIList ',' '[' ValueRef ',' ValueRef ']' {
2250 $$ = $1;
Chris Lattner9232b992003-04-22 18:42:41 +00002251 $1->push_back(std::make_pair(getVal($1->front().first->getType(), $4),
Chris Lattner64116f92004-07-14 01:33:11 +00002252 getBBVal($6)));
Reid Spencer61c83e02006-08-18 08:43:06 +00002253 CHECK_FOR_ERROR
Chris Lattner51727be2002-06-04 21:58:56 +00002254 };
Chris Lattnerc24d2082001-06-11 15:04:20 +00002255
2256
Chris Lattner30c89792001-09-07 16:35:17 +00002257ValueRefList : ResolvedVal { // Used for call statements, and memory insts...
Chris Lattner9232b992003-04-22 18:42:41 +00002258 $$ = new std::vector<Value*>();
Chris Lattnerbcbf6ba2001-07-26 16:29:15 +00002259 $$->push_back($1);
Reid Spencer61c83e02006-08-18 08:43:06 +00002260 CHECK_FOR_ERROR
Chris Lattner00950542001-06-06 20:29:01 +00002261 }
Chris Lattnerbcbf6ba2001-07-26 16:29:15 +00002262 | ValueRefList ',' ResolvedVal {
Chris Lattner00950542001-06-06 20:29:01 +00002263 $$ = $1;
Chris Lattnerbcbf6ba2001-07-26 16:29:15 +00002264 $1->push_back($3);
Reid Spencer61c83e02006-08-18 08:43:06 +00002265 CHECK_FOR_ERROR
Chris Lattner51727be2002-06-04 21:58:56 +00002266 };
Chris Lattner00950542001-06-06 20:29:01 +00002267
2268// ValueRefListE - Just like ValueRefList, except that it may also be empty!
Chris Lattner51727be2002-06-04 21:58:56 +00002269ValueRefListE : ValueRefList | /*empty*/ { $$ = 0; };
Chris Lattner00950542001-06-06 20:29:01 +00002270
Chris Lattnerddb6db42005-05-06 05:51:46 +00002271OptTailCall : TAIL CALL {
2272 $$ = true;
Reid Spencer61c83e02006-08-18 08:43:06 +00002273 CHECK_FOR_ERROR
Chris Lattnerddb6db42005-05-06 05:51:46 +00002274 }
2275 | CALL {
2276 $$ = false;
Reid Spencer61c83e02006-08-18 08:43:06 +00002277 CHECK_FOR_ERROR
Chris Lattnerddb6db42005-05-06 05:51:46 +00002278 };
2279
2280
2281
Chris Lattner4a6482b2002-09-10 19:57:26 +00002282InstVal : ArithmeticOps Types ValueRef ',' ValueRef {
Brian Gaeke715c90b2004-08-20 06:00:58 +00002283 if (!(*$2)->isInteger() && !(*$2)->isFloatingPoint() &&
2284 !isa<PackedType>((*$2).get()))
Reid Spencer61c83e02006-08-18 08:43:06 +00002285 GEN_ERROR(
Brian Gaeke715c90b2004-08-20 06:00:58 +00002286 "Arithmetic operator requires integer, FP, or packed operands!");
Misha Brukman5a2a3822005-05-10 22:02:28 +00002287 if (isa<PackedType>((*$2).get()) && $1 == Instruction::Rem)
Reid Spencer61c83e02006-08-18 08:43:06 +00002288 GEN_ERROR("Rem not supported on packed types!");
Chris Lattner4a6482b2002-09-10 19:57:26 +00002289 $$ = BinaryOperator::create($1, getVal(*$2, $3), getVal(*$2, $5));
2290 if ($$ == 0)
Reid Spencer61c83e02006-08-18 08:43:06 +00002291 GEN_ERROR("binary operator returned null!");
Chris Lattner4a6482b2002-09-10 19:57:26 +00002292 delete $2;
Reid Spencer61c83e02006-08-18 08:43:06 +00002293 CHECK_FOR_ERROR
Chris Lattner4a6482b2002-09-10 19:57:26 +00002294 }
2295 | LogicalOps Types ValueRef ',' ValueRef {
Chris Lattner0a017832005-12-21 18:31:29 +00002296 if (!(*$2)->isIntegral()) {
2297 if (!isa<PackedType>($2->get()) ||
2298 !cast<PackedType>($2->get())->getElementType()->isIntegral())
Reid Spencer61c83e02006-08-18 08:43:06 +00002299 GEN_ERROR("Logical operator requires integral operands!");
Chris Lattner0a017832005-12-21 18:31:29 +00002300 }
Chris Lattner4a6482b2002-09-10 19:57:26 +00002301 $$ = BinaryOperator::create($1, getVal(*$2, $3), getVal(*$2, $5));
2302 if ($$ == 0)
Reid Spencer61c83e02006-08-18 08:43:06 +00002303 GEN_ERROR("binary operator returned null!");
Chris Lattner4a6482b2002-09-10 19:57:26 +00002304 delete $2;
Reid Spencer61c83e02006-08-18 08:43:06 +00002305 CHECK_FOR_ERROR
Chris Lattner4a6482b2002-09-10 19:57:26 +00002306 }
2307 | SetCondOps Types ValueRef ',' ValueRef {
Reid Spencer57b6eec2004-08-21 16:11:02 +00002308 if(isa<PackedType>((*$2).get())) {
Reid Spencer61c83e02006-08-18 08:43:06 +00002309 GEN_ERROR(
Reid Spencer57b6eec2004-08-21 16:11:02 +00002310 "PackedTypes currently not supported in setcc instructions!");
2311 }
Chris Lattner1cff96a2002-09-10 22:37:46 +00002312 $$ = new SetCondInst($1, getVal(*$2, $3), getVal(*$2, $5));
Chris Lattner00950542001-06-06 20:29:01 +00002313 if ($$ == 0)
Reid Spencer61c83e02006-08-18 08:43:06 +00002314 GEN_ERROR("binary operator returned null!");
Chris Lattner30c89792001-09-07 16:35:17 +00002315 delete $2;
Reid Spencer61c83e02006-08-18 08:43:06 +00002316 CHECK_FOR_ERROR
Chris Lattner00950542001-06-06 20:29:01 +00002317 }
Chris Lattner699f1eb2002-08-14 17:12:33 +00002318 | NOT ResolvedVal {
2319 std::cerr << "WARNING: Use of eliminated 'not' instruction:"
2320 << " Replacing with 'xor'.\n";
2321
2322 Value *Ones = ConstantIntegral::getAllOnesValue($2->getType());
2323 if (Ones == 0)
Reid Spencer61c83e02006-08-18 08:43:06 +00002324 GEN_ERROR("Expected integral type for not instruction!");
Chris Lattner699f1eb2002-08-14 17:12:33 +00002325
2326 $$ = BinaryOperator::create(Instruction::Xor, $2, Ones);
Chris Lattner00950542001-06-06 20:29:01 +00002327 if ($$ == 0)
Reid Spencer61c83e02006-08-18 08:43:06 +00002328 GEN_ERROR("Could not create a xor instruction!");
2329 CHECK_FOR_ERROR
Chris Lattner09083092001-07-08 04:57:15 +00002330 }
Chris Lattnerbcbf6ba2001-07-26 16:29:15 +00002331 | ShiftOps ResolvedVal ',' ResolvedVal {
2332 if ($4->getType() != Type::UByteTy)
Reid Spencer61c83e02006-08-18 08:43:06 +00002333 GEN_ERROR("Shift amount must be ubyte!");
Chris Lattner888d3bc2003-10-17 05:11:44 +00002334 if (!$2->getType()->isInteger())
Reid Spencer61c83e02006-08-18 08:43:06 +00002335 GEN_ERROR("Shift constant expression requires integer operand!");
Chris Lattnerbcbf6ba2001-07-26 16:29:15 +00002336 $$ = new ShiftInst($1, $2, $4);
Reid Spencer61c83e02006-08-18 08:43:06 +00002337 CHECK_FOR_ERROR
Chris Lattner027dcc52001-07-08 21:10:27 +00002338 }
Chris Lattnerbcbf6ba2001-07-26 16:29:15 +00002339 | CAST ResolvedVal TO Types {
Chris Lattner0f3bc5e2003-10-10 03:56:01 +00002340 if (!$4->get()->isFirstClassType())
Reid Spencer61c83e02006-08-18 08:43:06 +00002341 GEN_ERROR("cast instruction to a non-primitive type: '" +
Chris Lattner0f3bc5e2003-10-10 03:56:01 +00002342 $4->get()->getDescription() + "'!");
Chris Lattner30c89792001-09-07 16:35:17 +00002343 $$ = new CastInst($2, *$4);
2344 delete $4;
Reid Spencer61c83e02006-08-18 08:43:06 +00002345 CHECK_FOR_ERROR
Chris Lattner09083092001-07-08 04:57:15 +00002346 }
Chris Lattner76f0ff32004-03-12 05:51:36 +00002347 | SELECT ResolvedVal ',' ResolvedVal ',' ResolvedVal {
2348 if ($2->getType() != Type::BoolTy)
Reid Spencer61c83e02006-08-18 08:43:06 +00002349 GEN_ERROR("select condition must be boolean!");
Chris Lattner76f0ff32004-03-12 05:51:36 +00002350 if ($4->getType() != $6->getType())
Reid Spencer61c83e02006-08-18 08:43:06 +00002351 GEN_ERROR("select value types should match!");
Chris Lattner76f0ff32004-03-12 05:51:36 +00002352 $$ = new SelectInst($2, $4, $6);
Reid Spencer61c83e02006-08-18 08:43:06 +00002353 CHECK_FOR_ERROR
Chris Lattner76f0ff32004-03-12 05:51:36 +00002354 }
Chris Lattner99e7ab72003-10-18 05:53:13 +00002355 | VAARG ResolvedVal ',' Types {
Andrew Lenharthe78f50d2005-06-19 03:53:56 +00002356 NewVarArgs = true;
Chris Lattner99e7ab72003-10-18 05:53:13 +00002357 $$ = new VAArgInst($2, *$4);
2358 delete $4;
Reid Spencer61c83e02006-08-18 08:43:06 +00002359 CHECK_FOR_ERROR
Chris Lattner99e7ab72003-10-18 05:53:13 +00002360 }
Andrew Lenharth558bc882005-06-18 18:34:52 +00002361 | VAARG_old ResolvedVal ',' Types {
2362 ObsoleteVarArgs = true;
2363 const Type* ArgTy = $2->getType();
2364 Function* NF = CurModule.CurrentModule->
Jeff Cohen66c5fd62005-10-23 04:37:20 +00002365 getOrInsertFunction("llvm.va_copy", ArgTy, ArgTy, (Type *)0);
Andrew Lenharth558bc882005-06-18 18:34:52 +00002366
2367 //b = vaarg a, t ->
2368 //foo = alloca 1 of t
2369 //bar = vacopy a
2370 //store bar -> foo
2371 //b = vaarg foo, t
2372 AllocaInst* foo = new AllocaInst(ArgTy, 0, "vaarg.fix");
2373 CurBB->getInstList().push_back(foo);
2374 CallInst* bar = new CallInst(NF, $2);
2375 CurBB->getInstList().push_back(bar);
2376 CurBB->getInstList().push_back(new StoreInst(bar, foo));
2377 $$ = new VAArgInst(foo, *$4);
2378 delete $4;
Reid Spencer61c83e02006-08-18 08:43:06 +00002379 CHECK_FOR_ERROR
Andrew Lenharth558bc882005-06-18 18:34:52 +00002380 }
2381 | VANEXT_old ResolvedVal ',' Types {
2382 ObsoleteVarArgs = true;
2383 const Type* ArgTy = $2->getType();
2384 Function* NF = CurModule.CurrentModule->
Jeff Cohen66c5fd62005-10-23 04:37:20 +00002385 getOrInsertFunction("llvm.va_copy", ArgTy, ArgTy, (Type *)0);
Andrew Lenharth558bc882005-06-18 18:34:52 +00002386
2387 //b = vanext a, t ->
2388 //foo = alloca 1 of t
2389 //bar = vacopy a
2390 //store bar -> foo
2391 //tmp = vaarg foo, t
2392 //b = load foo
2393 AllocaInst* foo = new AllocaInst(ArgTy, 0, "vanext.fix");
2394 CurBB->getInstList().push_back(foo);
2395 CallInst* bar = new CallInst(NF, $2);
2396 CurBB->getInstList().push_back(bar);
2397 CurBB->getInstList().push_back(new StoreInst(bar, foo));
2398 Instruction* tmp = new VAArgInst(foo, *$4);
2399 CurBB->getInstList().push_back(tmp);
2400 $$ = new LoadInst(foo);
Chris Lattner8f77dae2003-05-08 02:44:12 +00002401 delete $4;
Reid Spencer61c83e02006-08-18 08:43:06 +00002402 CHECK_FOR_ERROR
Chris Lattner8f77dae2003-05-08 02:44:12 +00002403 }
Robert Bocchino9c62b562006-01-10 19:04:32 +00002404 | EXTRACTELEMENT ResolvedVal ',' ResolvedVal {
Chris Lattner2d7349a2006-04-08 04:08:32 +00002405 if (!ExtractElementInst::isValidOperands($2, $4))
Reid Spencer61c83e02006-08-18 08:43:06 +00002406 GEN_ERROR("Invalid extractelement operands!");
Robert Bocchino9c62b562006-01-10 19:04:32 +00002407 $$ = new ExtractElementInst($2, $4);
Reid Spencer61c83e02006-08-18 08:43:06 +00002408 CHECK_FOR_ERROR
Robert Bocchino9c62b562006-01-10 19:04:32 +00002409 }
Robert Bocchino2def1b32006-01-17 20:06:25 +00002410 | INSERTELEMENT ResolvedVal ',' ResolvedVal ',' ResolvedVal {
Chris Lattner2d7349a2006-04-08 04:08:32 +00002411 if (!InsertElementInst::isValidOperands($2, $4, $6))
Reid Spencer61c83e02006-08-18 08:43:06 +00002412 GEN_ERROR("Invalid insertelement operands!");
Robert Bocchino2def1b32006-01-17 20:06:25 +00002413 $$ = new InsertElementInst($2, $4, $6);
Reid Spencer61c83e02006-08-18 08:43:06 +00002414 CHECK_FOR_ERROR
Robert Bocchino2def1b32006-01-17 20:06:25 +00002415 }
Chris Lattner4c949082006-04-08 01:18:35 +00002416 | SHUFFLEVECTOR ResolvedVal ',' ResolvedVal ',' ResolvedVal {
2417 if (!ShuffleVectorInst::isValidOperands($2, $4, $6))
Reid Spencer61c83e02006-08-18 08:43:06 +00002418 GEN_ERROR("Invalid shufflevector operands!");
Chris Lattner4c949082006-04-08 01:18:35 +00002419 $$ = new ShuffleVectorInst($2, $4, $6);
Reid Spencer61c83e02006-08-18 08:43:06 +00002420 CHECK_FOR_ERROR
Chris Lattner4c949082006-04-08 01:18:35 +00002421 }
Chris Lattner3b237fc2003-10-19 21:34:28 +00002422 | PHI_TOK PHIList {
Chris Lattnerc24d2082001-06-11 15:04:20 +00002423 const Type *Ty = $2->front().first->getType();
Chris Lattner8ea8f362003-10-30 01:38:18 +00002424 if (!Ty->isFirstClassType())
Reid Spencer61c83e02006-08-18 08:43:06 +00002425 GEN_ERROR("PHI node operands must be of first class type!");
Chris Lattnerc24d2082001-06-11 15:04:20 +00002426 $$ = new PHINode(Ty);
Chris Lattnerce1df9e2005-01-29 00:35:55 +00002427 ((PHINode*)$$)->reserveOperandSpace($2->size());
Chris Lattner00950542001-06-06 20:29:01 +00002428 while ($2->begin() != $2->end()) {
Chris Lattnerc24d2082001-06-11 15:04:20 +00002429 if ($2->front().first->getType() != Ty)
Reid Spencer61c83e02006-08-18 08:43:06 +00002430 GEN_ERROR("All elements of a PHI node must be of the same type!");
Chris Lattnerb00c5822001-10-02 03:41:24 +00002431 cast<PHINode>($$)->addIncoming($2->front().first, $2->front().second);
Chris Lattner00950542001-06-06 20:29:01 +00002432 $2->pop_front();
2433 }
2434 delete $2; // Free the list...
Reid Spencer61c83e02006-08-18 08:43:06 +00002435 CHECK_FOR_ERROR
Chris Lattnerddb6db42005-05-06 05:51:46 +00002436 }
Chris Lattnera8e8f162005-05-06 20:27:19 +00002437 | OptTailCall OptCallingConv TypesV ValueRef '(' ValueRefListE ')' {
Chris Lattnerbf0a37b2002-10-15 21:41:14 +00002438 const PointerType *PFTy;
Chris Lattner79df7c02002-03-26 18:01:55 +00002439 const FunctionType *Ty;
Chris Lattner00950542001-06-06 20:29:01 +00002440
Chris Lattnera8e8f162005-05-06 20:27:19 +00002441 if (!(PFTy = dyn_cast<PointerType>($3->get())) ||
Chris Lattnerbf0a37b2002-10-15 21:41:14 +00002442 !(Ty = dyn_cast<FunctionType>(PFTy->getElementType()))) {
Chris Lattner8b81bf52001-07-25 22:47:46 +00002443 // Pull out the types of all of the arguments...
Chris Lattner9232b992003-04-22 18:42:41 +00002444 std::vector<const Type*> ParamTypes;
Chris Lattnera8e8f162005-05-06 20:27:19 +00002445 if ($6) {
2446 for (std::vector<Value*>::iterator I = $6->begin(), E = $6->end();
Chris Lattner9232b992003-04-22 18:42:41 +00002447 I != E; ++I)
Chris Lattneref9c23f2001-10-03 14:53:21 +00002448 ParamTypes.push_back((*I)->getType());
2449 }
Chris Lattner2079fde2001-10-13 06:41:08 +00002450
2451 bool isVarArg = ParamTypes.size() && ParamTypes.back() == Type::VoidTy;
2452 if (isVarArg) ParamTypes.pop_back();
2453
Chris Lattnera8e8f162005-05-06 20:27:19 +00002454 if (!(*$3)->isFirstClassType() && *$3 != Type::VoidTy)
Reid Spencer61c83e02006-08-18 08:43:06 +00002455 GEN_ERROR("LLVM functions cannot return aggregate types!");
Chris Lattner595f06c2005-02-01 01:47:42 +00002456
Chris Lattnera8e8f162005-05-06 20:27:19 +00002457 Ty = FunctionType::get($3->get(), ParamTypes, isVarArg);
Chris Lattnerbf0a37b2002-10-15 21:41:14 +00002458 PFTy = PointerType::get(Ty);
Chris Lattner8b81bf52001-07-25 22:47:46 +00002459 }
Chris Lattner00950542001-06-06 20:29:01 +00002460
Chris Lattnera8e8f162005-05-06 20:27:19 +00002461 Value *V = getVal(PFTy, $4); // Get the function we're calling...
Chris Lattner00950542001-06-06 20:29:01 +00002462
Chris Lattner8b81bf52001-07-25 22:47:46 +00002463 // Create the call node...
Chris Lattnera8e8f162005-05-06 20:27:19 +00002464 if (!$6) { // Has no arguments?
Chris Lattnera4e25182002-07-25 20:52:56 +00002465 // Make sure no arguments is a good thing!
2466 if (Ty->getNumParams() != 0)
Reid Spencer61c83e02006-08-18 08:43:06 +00002467 GEN_ERROR("No arguments passed to a function that "
Chris Lattnera4e25182002-07-25 20:52:56 +00002468 "expects arguments!");
2469
Chris Lattner9232b992003-04-22 18:42:41 +00002470 $$ = new CallInst(V, std::vector<Value*>());
Chris Lattner8b81bf52001-07-25 22:47:46 +00002471 } else { // Has arguments?
Chris Lattner79df7c02002-03-26 18:01:55 +00002472 // Loop through FunctionType's arguments and ensure they are specified
Chris Lattner00950542001-06-06 20:29:01 +00002473 // correctly!
2474 //
Chris Lattnerd5d89962004-02-09 04:14:01 +00002475 FunctionType::param_iterator I = Ty->param_begin();
2476 FunctionType::param_iterator E = Ty->param_end();
Chris Lattnera8e8f162005-05-06 20:27:19 +00002477 std::vector<Value*>::iterator ArgI = $6->begin(), ArgE = $6->end();
Chris Lattner8b81bf52001-07-25 22:47:46 +00002478
2479 for (; ArgI != ArgE && I != E; ++ArgI, ++I)
Reid Spencer3271ed52004-07-18 00:08:11 +00002480 if ((*ArgI)->getType() != *I)
Reid Spencer61c83e02006-08-18 08:43:06 +00002481 GEN_ERROR("Parameter " +(*ArgI)->getName()+ " is not of type '" +
Reid Spencer3271ed52004-07-18 00:08:11 +00002482 (*I)->getDescription() + "'!");
Chris Lattner00950542001-06-06 20:29:01 +00002483
Chris Lattner8b81bf52001-07-25 22:47:46 +00002484 if (I != E || (ArgI != ArgE && !Ty->isVarArg()))
Reid Spencer61c83e02006-08-18 08:43:06 +00002485 GEN_ERROR("Invalid number of parameters detected!");
Chris Lattner00950542001-06-06 20:29:01 +00002486
Chris Lattnera8e8f162005-05-06 20:27:19 +00002487 $$ = new CallInst(V, *$6);
Chris Lattner8b81bf52001-07-25 22:47:46 +00002488 }
Chris Lattnerddb6db42005-05-06 05:51:46 +00002489 cast<CallInst>($$)->setTailCall($1);
Chris Lattnera8e8f162005-05-06 20:27:19 +00002490 cast<CallInst>($$)->setCallingConv($2);
2491 delete $3;
2492 delete $6;
Reid Spencer61c83e02006-08-18 08:43:06 +00002493 CHECK_FOR_ERROR
Chris Lattner00950542001-06-06 20:29:01 +00002494 }
2495 | MemoryInst {
2496 $$ = $1;
Reid Spencer61c83e02006-08-18 08:43:06 +00002497 CHECK_FOR_ERROR
Chris Lattner51727be2002-06-04 21:58:56 +00002498 };
Chris Lattner00950542001-06-06 20:29:01 +00002499
Chris Lattner6cdb0112001-11-26 16:54:11 +00002500
2501// IndexList - List of indices for GEP based instructions...
2502IndexList : ',' ValueRefList {
Chris Lattner15c9c032003-09-08 18:20:29 +00002503 $$ = $2;
Reid Spencer61c83e02006-08-18 08:43:06 +00002504 CHECK_FOR_ERROR
Chris Lattner15c9c032003-09-08 18:20:29 +00002505 } | /* empty */ {
2506 $$ = new std::vector<Value*>();
Reid Spencer61c83e02006-08-18 08:43:06 +00002507 CHECK_FOR_ERROR
Chris Lattner15c9c032003-09-08 18:20:29 +00002508 };
2509
2510OptVolatile : VOLATILE {
2511 $$ = true;
Reid Spencer61c83e02006-08-18 08:43:06 +00002512 CHECK_FOR_ERROR
Chris Lattner15c9c032003-09-08 18:20:29 +00002513 }
2514 | /* empty */ {
2515 $$ = false;
Reid Spencer61c83e02006-08-18 08:43:06 +00002516 CHECK_FOR_ERROR
Chris Lattner15c9c032003-09-08 18:20:29 +00002517 };
2518
Chris Lattner027dcc52001-07-08 21:10:27 +00002519
Chris Lattnerddb6db42005-05-06 05:51:46 +00002520
Chris Lattner66db8e42005-11-06 06:34:12 +00002521MemoryInst : MALLOC Types OptCAlign {
Chris Lattner66db8e42005-11-06 06:34:12 +00002522 $$ = new MallocInst(*$2, 0, $3);
Chris Lattner30c89792001-09-07 16:35:17 +00002523 delete $2;
Reid Spencer61c83e02006-08-18 08:43:06 +00002524 CHECK_FOR_ERROR
Chris Lattner00950542001-06-06 20:29:01 +00002525 }
Chris Lattner66db8e42005-11-06 06:34:12 +00002526 | MALLOC Types ',' UINT ValueRef OptCAlign {
Chris Lattner66db8e42005-11-06 06:34:12 +00002527 $$ = new MallocInst(*$2, getVal($4, $5), $6);
Nate Begeman14b05292005-11-05 09:21:28 +00002528 delete $2;
Reid Spencer61c83e02006-08-18 08:43:06 +00002529 CHECK_FOR_ERROR
Nate Begeman14b05292005-11-05 09:21:28 +00002530 }
Chris Lattner66db8e42005-11-06 06:34:12 +00002531 | ALLOCA Types OptCAlign {
Chris Lattner66db8e42005-11-06 06:34:12 +00002532 $$ = new AllocaInst(*$2, 0, $3);
Nate Begeman14b05292005-11-05 09:21:28 +00002533 delete $2;
Reid Spencer61c83e02006-08-18 08:43:06 +00002534 CHECK_FOR_ERROR
Nate Begeman14b05292005-11-05 09:21:28 +00002535 }
Chris Lattner66db8e42005-11-06 06:34:12 +00002536 | ALLOCA Types ',' UINT ValueRef OptCAlign {
Chris Lattner66db8e42005-11-06 06:34:12 +00002537 $$ = new AllocaInst(*$2, getVal($4, $5), $6);
Nate Begeman14b05292005-11-05 09:21:28 +00002538 delete $2;
Reid Spencer61c83e02006-08-18 08:43:06 +00002539 CHECK_FOR_ERROR
Nate Begeman14b05292005-11-05 09:21:28 +00002540 }
Chris Lattnerbcbf6ba2001-07-26 16:29:15 +00002541 | FREE ResolvedVal {
Chris Lattner9b625032002-05-06 16:15:30 +00002542 if (!isa<PointerType>($2->getType()))
Reid Spencer61c83e02006-08-18 08:43:06 +00002543 GEN_ERROR("Trying to free nonpointer type " +
Chris Lattner72e00252001-12-14 16:28:42 +00002544 $2->getType()->getDescription() + "!");
Chris Lattnerbcbf6ba2001-07-26 16:29:15 +00002545 $$ = new FreeInst($2);
Reid Spencer61c83e02006-08-18 08:43:06 +00002546 CHECK_FOR_ERROR
Chris Lattner00950542001-06-06 20:29:01 +00002547 }
2548
Chris Lattner15c9c032003-09-08 18:20:29 +00002549 | OptVolatile LOAD Types ValueRef {
2550 if (!isa<PointerType>($3->get()))
Reid Spencer61c83e02006-08-18 08:43:06 +00002551 GEN_ERROR("Can't load from nonpointer type: " +
Reid Spencer3271ed52004-07-18 00:08:11 +00002552 (*$3)->getDescription());
Chris Lattner1c1bb332004-10-09 02:18:58 +00002553 if (!cast<PointerType>($3->get())->getElementType()->isFirstClassType())
Reid Spencer61c83e02006-08-18 08:43:06 +00002554 GEN_ERROR("Can't load from pointer of non-first-class type: " +
Chris Lattner1c1bb332004-10-09 02:18:58 +00002555 (*$3)->getDescription());
Chris Lattner79ad13802003-09-08 20:29:46 +00002556 $$ = new LoadInst(getVal(*$3, $4), "", $1);
Chris Lattner15c9c032003-09-08 18:20:29 +00002557 delete $3;
Reid Spencer61c83e02006-08-18 08:43:06 +00002558 CHECK_FOR_ERROR
Chris Lattner027dcc52001-07-08 21:10:27 +00002559 }
Chris Lattner15c9c032003-09-08 18:20:29 +00002560 | OptVolatile STORE ResolvedVal ',' Types ValueRef {
2561 const PointerType *PT = dyn_cast<PointerType>($5->get());
Chris Lattner8c8418d2003-09-01 16:31:28 +00002562 if (!PT)
Reid Spencer61c83e02006-08-18 08:43:06 +00002563 GEN_ERROR("Can't store to a nonpointer type: " +
Chris Lattner15c9c032003-09-08 18:20:29 +00002564 (*$5)->getDescription());
Chris Lattner8c8418d2003-09-01 16:31:28 +00002565 const Type *ElTy = PT->getElementType();
Chris Lattner15c9c032003-09-08 18:20:29 +00002566 if (ElTy != $3->getType())
Reid Spencer61c83e02006-08-18 08:43:06 +00002567 GEN_ERROR("Can't store '" + $3->getType()->getDescription() +
Chris Lattner72e00252001-12-14 16:28:42 +00002568 "' into space of type '" + ElTy->getDescription() + "'!");
Chris Lattner0383cc42002-08-21 23:51:21 +00002569
Chris Lattner79ad13802003-09-08 20:29:46 +00002570 $$ = new StoreInst($3, getVal(*$5, $6), $1);
Chris Lattner15c9c032003-09-08 18:20:29 +00002571 delete $5;
Reid Spencer61c83e02006-08-18 08:43:06 +00002572 CHECK_FOR_ERROR
Chris Lattnerab5ac6b2001-07-08 23:22:50 +00002573 }
Chris Lattner6cdb0112001-11-26 16:54:11 +00002574 | GETELEMENTPTR Types ValueRef IndexList {
Chris Lattner51727be2002-06-04 21:58:56 +00002575 if (!isa<PointerType>($2->get()))
Reid Spencer61c83e02006-08-18 08:43:06 +00002576 GEN_ERROR("getelementptr insn requires pointer operand!");
Chris Lattner830b6f92004-04-05 01:30:04 +00002577
2578 // LLVM 1.2 and earlier used ubyte struct indices. Convert any ubyte struct
2579 // indices to uint struct indices for compatibility.
2580 generic_gep_type_iterator<std::vector<Value*>::iterator>
2581 GTI = gep_type_begin($2->get(), $4->begin(), $4->end()),
2582 GTE = gep_type_end($2->get(), $4->begin(), $4->end());
2583 for (unsigned i = 0, e = $4->size(); i != e && GTI != GTE; ++i, ++GTI)
2584 if (isa<StructType>(*GTI)) // Only change struct indices
2585 if (ConstantUInt *CUI = dyn_cast<ConstantUInt>((*$4)[i]))
2586 if (CUI->getType() == Type::UByteTy)
2587 (*$4)[i] = ConstantExpr::getCast(CUI, Type::UIntTy);
2588
Chris Lattner30c89792001-09-07 16:35:17 +00002589 if (!GetElementPtrInst::getIndexedType(*$2, *$4, true))
Reid Spencer61c83e02006-08-18 08:43:06 +00002590 GEN_ERROR("Invalid getelementptr indices for type '" +
Chris Lattner830b6f92004-04-05 01:30:04 +00002591 (*$2)->getDescription()+ "'!");
Chris Lattner30c89792001-09-07 16:35:17 +00002592 $$ = new GetElementPtrInst(getVal(*$2, $3), *$4);
2593 delete $2; delete $4;
Reid Spencer61c83e02006-08-18 08:43:06 +00002594 CHECK_FOR_ERROR
Chris Lattner51727be2002-06-04 21:58:56 +00002595 };
Chris Lattner027dcc52001-07-08 21:10:27 +00002596
Brian Gaeked0fde302003-11-11 22:41:34 +00002597
Chris Lattner00950542001-06-06 20:29:01 +00002598%%
Reid Spencer61c83e02006-08-18 08:43:06 +00002599
2600void llvm::GenerateError(const std::string &message, int LineNo) {
2601 if (LineNo == -1) LineNo = llvmAsmlineno;
2602 // TODO: column number in exception
2603 if (TheParseError)
2604 TheParseError->setError(CurFilename, message, LineNo);
2605 TriggerError = 1;
2606}
2607
Chris Lattner09083092001-07-08 04:57:15 +00002608int yyerror(const char *ErrorMsg) {
Chris Lattner9232b992003-04-22 18:42:41 +00002609 std::string where
2610 = std::string((CurFilename == "-") ? std::string("<stdin>") : CurFilename)
Vikram S. Adved3f7eb02002-07-14 22:59:28 +00002611 + ":" + utostr((unsigned) llvmAsmlineno) + ": ";
Chris Lattner9232b992003-04-22 18:42:41 +00002612 std::string errMsg = std::string(ErrorMsg) + "\n" + where + " while reading ";
Chris Lattnerbc280ab2004-03-30 20:58:25 +00002613 if (yychar == YYEMPTY || yychar == 0)
Vikram S. Adved3f7eb02002-07-14 22:59:28 +00002614 errMsg += "end-of-file.";
2615 else
Chris Lattner9232b992003-04-22 18:42:41 +00002616 errMsg += "token: '" + std::string(llvmAsmtext, llvmAsmleng) + "'";
Reid Spencer61c83e02006-08-18 08:43:06 +00002617 GenerateError(errMsg);
Chris Lattner00950542001-06-06 20:29:01 +00002618 return 0;
2619}