blob: a4d2cf4f9c8858377b886d4df15254c019654f9c [file] [log] [blame]
Chris Lattnercf3056d2003-10-13 03:32:08 +00001//===-- llvmAsmParser.y - Parser for llvm assembly files --------*- C++ -*-===//
John Criswell856ba762003-10-21 15:17:13 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file was developed by the LLVM research group and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
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 Lattner00950542001-06-06 20:29:01 +000016#include "llvm/SymbolTable.h"
17#include "llvm/Module.h"
Chris Lattner00950542001-06-06 20:29:01 +000018#include "llvm/iTerminators.h"
19#include "llvm/iMemory.h"
Chris Lattner1cff96a2002-09-10 22:37:46 +000020#include "llvm/iOperators.h"
Chris Lattner7061dc52001-12-03 18:02:31 +000021#include "llvm/iPHINode.h"
Chris Lattner830b6f92004-04-05 01:30:04 +000022#include "llvm/Support/GetElementPtrTypeIterator.h"
Chris Lattnercee8f9a2001-11-27 00:03:19 +000023#include "Support/STLExtras.h"
Reid Spencer8ce1da72004-07-04 12:19:05 +000024#include <algorithm>
25#include <iostream>
Chris Lattner00950542001-06-06 20:29:01 +000026#include <list>
Chris Lattnerc188eeb2002-07-30 18:54:25 +000027#include <utility>
Chris Lattner00950542001-06-06 20:29:01 +000028
Chris Lattner386a3b72001-10-16 19:54:17 +000029int yyerror(const char *ErrorMsg); // Forward declarations to prevent "implicit
Chris Lattner09083092001-07-08 04:57:15 +000030int yylex(); // declaration" of xxx warnings.
Chris Lattner00950542001-06-06 20:29:01 +000031int yyparse();
32
Brian Gaeked0fde302003-11-11 22:41:34 +000033namespace llvm {
34
Chris Lattner00950542001-06-06 20:29:01 +000035static Module *ParserResult;
Chris Lattner9232b992003-04-22 18:42:41 +000036std::string CurFilename;
Chris Lattner00950542001-06-06 20:29:01 +000037
Chris Lattner30c89792001-09-07 16:35:17 +000038// DEBUG_UPREFS - Define this symbol if you want to enable debugging output
39// relating to upreferences in the input stream.
40//
41//#define DEBUG_UPREFS 1
42#ifdef DEBUG_UPREFS
Chris Lattner699f1eb2002-08-14 17:12:33 +000043#define UR_OUT(X) std::cerr << X
Chris Lattner30c89792001-09-07 16:35:17 +000044#else
45#define UR_OUT(X)
46#endif
47
Vikram S. Adved3f7eb02002-07-14 22:59:28 +000048#define YYERROR_VERBOSE 1
49
Chris Lattner99e7ab72003-10-18 05:53:13 +000050// HACK ALERT: This variable is used to implement the automatic conversion of
51// variable argument instructions from their old to new forms. When this
52// compatiblity "Feature" is removed, this should be too.
53//
54static BasicBlock *CurBB;
55static bool ObsoleteVarArgs;
56
57
Chris Lattner7e708292002-06-25 16:13:24 +000058// This contains info used when building the body of a function. It is
59// destroyed when the function is completed.
Chris Lattner00950542001-06-06 20:29:01 +000060//
Chris Lattner9232b992003-04-22 18:42:41 +000061typedef std::vector<Value *> ValueList; // Numbered defs
Chris Lattner735f2702004-07-08 22:30:50 +000062static void ResolveDefinitions(std::map<const Type *,ValueList> &LateResolvers,
63 std::map<const Type *,ValueList> *FutureLateResolvers = 0);
Chris Lattner00950542001-06-06 20:29:01 +000064
65static struct PerModuleInfo {
66 Module *CurrentModule;
Chris Lattner735f2702004-07-08 22:30:50 +000067 std::map<const Type *, ValueList> Values; // Module level numbered definitions
68 std::map<const Type *,ValueList> LateResolveValues;
Chris Lattner16af11d2004-02-09 21:03:38 +000069 std::vector<PATypeHolder> Types;
Chris Lattner9232b992003-04-22 18:42:41 +000070 std::map<ValID, PATypeHolder> LateResolveTypes;
Chris Lattner00950542001-06-06 20:29:01 +000071
Chris Lattner2079fde2001-10-13 06:41:08 +000072 // GlobalRefs - This maintains a mapping between <Type, ValID>'s and forward
73 // references to global values. Global values may be referenced before they
74 // are defined, and if so, the temporary object that they represent is held
Chris Lattnere9bb2df2001-12-03 22:26:30 +000075 // here. This is used for forward references of ConstantPointerRefs.
Chris Lattner2079fde2001-10-13 06:41:08 +000076 //
Chris Lattner9232b992003-04-22 18:42:41 +000077 typedef std::map<std::pair<const PointerType *,
Chris Lattnerbc207592004-03-08 06:09:57 +000078 ValID>, GlobalValue*> GlobalRefsType;
Chris Lattner2079fde2001-10-13 06:41:08 +000079 GlobalRefsType GlobalRefs;
80
Chris Lattner00950542001-06-06 20:29:01 +000081 void ModuleDone() {
Chris Lattner7e708292002-06-25 16:13:24 +000082 // If we could not resolve some functions at function compilation time
83 // (calls to functions before they are defined), resolve them now... Types
84 // are resolved when the constant pool has been completely parsed.
Chris Lattner30c89792001-09-07 16:35:17 +000085 //
Chris Lattner00950542001-06-06 20:29:01 +000086 ResolveDefinitions(LateResolveValues);
87
Chris Lattner2079fde2001-10-13 06:41:08 +000088 // Check to make sure that all global value forward references have been
89 // resolved!
90 //
91 if (!GlobalRefs.empty()) {
Chris Lattner9232b992003-04-22 18:42:41 +000092 std::string UndefinedReferences = "Unresolved global references exist:\n";
Chris Lattner749ce032002-03-11 22:12:39 +000093
94 for (GlobalRefsType::iterator I = GlobalRefs.begin(), E =GlobalRefs.end();
95 I != E; ++I) {
96 UndefinedReferences += " " + I->first.first->getDescription() + " " +
97 I->first.second.getName() + "\n";
98 }
99 ThrowException(UndefinedReferences);
Chris Lattner2079fde2001-10-13 06:41:08 +0000100 }
101
Chris Lattner7e708292002-06-25 16:13:24 +0000102 Values.clear(); // Clear out function local definitions
Chris Lattner30c89792001-09-07 16:35:17 +0000103 Types.clear();
Chris Lattner00950542001-06-06 20:29:01 +0000104 CurrentModule = 0;
105 }
Chris Lattner2079fde2001-10-13 06:41:08 +0000106
107
Vikram S. Adved3f7eb02002-07-14 22:59:28 +0000108 // DeclareNewGlobalValue - Called every time a new GV has been defined. This
Chris Lattner2079fde2001-10-13 06:41:08 +0000109 // is used to remove things from the forward declaration map, resolving them
110 // to the correct thing as needed.
111 //
112 void DeclareNewGlobalValue(GlobalValue *GV, ValID D) {
113 // Check to see if there is a forward reference to this global variable...
114 // if there is, eliminate it and patch the reference to use the new def'n.
Chris Lattner9232b992003-04-22 18:42:41 +0000115 GlobalRefsType::iterator I =
116 GlobalRefs.find(std::make_pair(GV->getType(), D));
Chris Lattner2079fde2001-10-13 06:41:08 +0000117
118 if (I != GlobalRefs.end()) {
Chris Lattnerbc207592004-03-08 06:09:57 +0000119 GlobalValue *OldGV = I->second; // Get the placeholder...
Misha Brukman5560c9d2003-08-18 14:43:39 +0000120 I->first.second.destroy(); // Free string memory if necessary
Chris Lattner38ab6bf2004-07-13 06:58:07 +0000121
122 // Replace all uses of the placeholder with the new GV
123 OldGV->replaceAllUsesWith(GV);
Vikram S. Adved3f7eb02002-07-14 22:59:28 +0000124
125 // Remove OldGV from the module...
Chris Lattnerbc207592004-03-08 06:09:57 +0000126 if (GlobalVariable *GVar = dyn_cast<GlobalVariable>(OldGV))
127 CurrentModule->getGlobalList().erase(GVar);
128 else
129 CurrentModule->getFunctionList().erase(cast<Function>(OldGV));
Vikram S. Adved3f7eb02002-07-14 22:59:28 +0000130
Chris Lattner2079fde2001-10-13 06:41:08 +0000131 // Remove the map entry for the global now that it has been created...
132 GlobalRefs.erase(I);
133 }
134 }
135
Chris Lattner00950542001-06-06 20:29:01 +0000136} CurModule;
137
Chris Lattner79df7c02002-03-26 18:01:55 +0000138static struct PerFunctionInfo {
Chris Lattner7e708292002-06-25 16:13:24 +0000139 Function *CurrentFunction; // Pointer to current function being created
Chris Lattner00950542001-06-06 20:29:01 +0000140
Chris Lattner735f2702004-07-08 22:30:50 +0000141 std::map<const Type*, ValueList> Values; // Keep track of #'d definitions
142 std::map<const Type*, ValueList> LateResolveValues;
Chris Lattner9232b992003-04-22 18:42:41 +0000143 std::vector<PATypeHolder> Types;
144 std::map<ValID, PATypeHolder> LateResolveTypes;
Chris Lattner15b69722003-11-12 04:40:30 +0000145 SymbolTable LocalSymtab;
Chris Lattner7e708292002-06-25 16:13:24 +0000146 bool isDeclare; // Is this function a forward declararation?
Chris Lattner00950542001-06-06 20:29:01 +0000147
Chris Lattner79df7c02002-03-26 18:01:55 +0000148 inline PerFunctionInfo() {
149 CurrentFunction = 0;
Chris Lattnere1815642001-07-15 06:35:53 +0000150 isDeclare = false;
Chris Lattner00950542001-06-06 20:29:01 +0000151 }
152
Chris Lattner79df7c02002-03-26 18:01:55 +0000153 inline void FunctionStart(Function *M) {
154 CurrentFunction = M;
Chris Lattner00950542001-06-06 20:29:01 +0000155 }
156
Chris Lattner79df7c02002-03-26 18:01:55 +0000157 void FunctionDone() {
Chris Lattner00950542001-06-06 20:29:01 +0000158 // If we could not resolve some blocks at parsing time (forward branches)
159 // resolve the branches now...
Chris Lattner386a3b72001-10-16 19:54:17 +0000160 ResolveDefinitions(LateResolveValues, &CurModule.LateResolveValues);
Chris Lattner00950542001-06-06 20:29:01 +0000161
Chris Lattnerb8fdd8b2003-04-25 21:47:33 +0000162 // Make sure to resolve any constant expr references that might exist within
163 // the function we just declared itself.
164 ValID FID;
165 if (CurrentFunction->hasName()) {
166 FID = ValID::create((char*)CurrentFunction->getName().c_str());
167 } else {
Chris Lattnerb8fdd8b2003-04-25 21:47:33 +0000168 // Figure out which slot number if is...
Chris Lattner735f2702004-07-08 22:30:50 +0000169 ValueList &List = CurModule.Values[CurrentFunction->getType()];
Chris Lattnerb8fdd8b2003-04-25 21:47:33 +0000170 for (unsigned i = 0; ; ++i) {
Chris Lattner16af11d2004-02-09 21:03:38 +0000171 assert(i < List.size() && "Function not found!");
172 if (List[i] == CurrentFunction) {
Chris Lattnerb8fdd8b2003-04-25 21:47:33 +0000173 FID = ValID::create((int)i);
174 break;
175 }
176 }
177 }
178 CurModule.DeclareNewGlobalValue(CurrentFunction, FID);
179
Chris Lattner7e708292002-06-25 16:13:24 +0000180 Values.clear(); // Clear out function local definitions
Chris Lattner15b69722003-11-12 04:40:30 +0000181 Types.clear(); // Clear out function local types
182 LocalSymtab.clear(); // Clear out function local symbol table
Chris Lattner79df7c02002-03-26 18:01:55 +0000183 CurrentFunction = 0;
Chris Lattnere1815642001-07-15 06:35:53 +0000184 isDeclare = false;
Chris Lattner00950542001-06-06 20:29:01 +0000185 }
Chris Lattner394f2eb2003-10-16 20:12:13 +0000186} CurFun; // Info for the current function...
Chris Lattner00950542001-06-06 20:29:01 +0000187
Chris Lattner394f2eb2003-10-16 20:12:13 +0000188static bool inFunctionScope() { return CurFun.CurrentFunction != 0; }
Chris Lattnerb7474512001-10-03 15:39:04 +0000189
Chris Lattner00950542001-06-06 20:29:01 +0000190
191//===----------------------------------------------------------------------===//
192// Code to handle definitions of all the types
193//===----------------------------------------------------------------------===//
194
Chris Lattner735f2702004-07-08 22:30:50 +0000195static int InsertValue(Value *V,
196 std::map<const Type*,ValueList> &ValueTab = CurFun.Values) {
197 if (V->hasName()) return -1; // Is this a numbered definition?
Chris Lattner2079fde2001-10-13 06:41:08 +0000198
199 // Yes, insert the value into the value table...
Chris Lattner735f2702004-07-08 22:30:50 +0000200 ValueList &List = ValueTab[V->getType()];
201 List.push_back(V);
Chris Lattner16af11d2004-02-09 21:03:38 +0000202 return List.size()-1;
Chris Lattner00950542001-06-06 20:29:01 +0000203}
204
Chris Lattner30c89792001-09-07 16:35:17 +0000205// TODO: FIXME when Type are not const
Chris Lattner9232b992003-04-22 18:42:41 +0000206static void InsertType(const Type *Ty, std::vector<PATypeHolder> &Types) {
Chris Lattner30c89792001-09-07 16:35:17 +0000207 Types.push_back(Ty);
208}
209
210static const Type *getTypeVal(const ValID &D, bool DoNotImprovise = false) {
Chris Lattner00950542001-06-06 20:29:01 +0000211 switch (D.Type) {
Chris Lattnerf8dff732002-07-18 05:18:37 +0000212 case ValID::NumberVal: { // Is it a numbered definition?
Chris Lattner30c89792001-09-07 16:35:17 +0000213 unsigned Num = (unsigned)D.Num;
214
215 // Module constants occupy the lowest numbered slots...
216 if (Num < CurModule.Types.size())
217 return CurModule.Types[Num];
218
219 Num -= CurModule.Types.size();
220
221 // Check that the number is within bounds...
Chris Lattner394f2eb2003-10-16 20:12:13 +0000222 if (Num <= CurFun.Types.size())
223 return CurFun.Types[Num];
Chris Lattner42c9e772001-10-20 09:32:59 +0000224 break;
Chris Lattner30c89792001-09-07 16:35:17 +0000225 }
Chris Lattnerf8dff732002-07-18 05:18:37 +0000226 case ValID::NameVal: { // Is it a named definition?
Chris Lattner9232b992003-04-22 18:42:41 +0000227 std::string Name(D.Name);
Chris Lattner30c89792001-09-07 16:35:17 +0000228 SymbolTable *SymTab = 0;
Reid Spencer8ce1da72004-07-04 12:19:05 +0000229 Type *N = 0;
Chris Lattner6e6026b2002-11-20 18:36:02 +0000230 if (inFunctionScope()) {
Chris Lattner394f2eb2003-10-16 20:12:13 +0000231 SymTab = &CurFun.CurrentFunction->getSymbolTable();
Reid Spencerb152f9f2004-05-25 17:29:21 +0000232 N = SymTab->lookupType(Name);
Chris Lattner6e6026b2002-11-20 18:36:02 +0000233 }
Chris Lattner30c89792001-09-07 16:35:17 +0000234
235 if (N == 0) {
Chris Lattner7e708292002-06-25 16:13:24 +0000236 // Symbol table doesn't automatically chain yet... because the function
Chris Lattner30c89792001-09-07 16:35:17 +0000237 // hasn't been added to the module...
238 //
Chris Lattner6e6026b2002-11-20 18:36:02 +0000239 SymTab = &CurModule.CurrentModule->getSymbolTable();
Reid Spencerb152f9f2004-05-25 17:29:21 +0000240 N = SymTab->lookupType(Name);
Chris Lattner30c89792001-09-07 16:35:17 +0000241 if (N == 0) break;
242 }
243
244 D.destroy(); // Free old strdup'd memory...
Chris Lattner949a3622003-07-23 15:30:06 +0000245 return cast<Type>(N);
Chris Lattner30c89792001-09-07 16:35:17 +0000246 }
247 default:
Vikram S. Adved3f7eb02002-07-14 22:59:28 +0000248 ThrowException("Internal parser error: Invalid symbol type reference!");
Chris Lattner30c89792001-09-07 16:35:17 +0000249 }
250
251 // If we reached here, we referenced either a symbol that we don't know about
252 // or an id number that hasn't been read yet. We may be referencing something
253 // forward, so just create an entry to be resolved later and get to it...
254 //
255 if (DoNotImprovise) return 0; // Do we just want a null to be returned?
256
Chris Lattner9232b992003-04-22 18:42:41 +0000257 std::map<ValID, PATypeHolder> &LateResolver = inFunctionScope() ?
Chris Lattner394f2eb2003-10-16 20:12:13 +0000258 CurFun.LateResolveTypes : CurModule.LateResolveTypes;
Chris Lattner4a42e902001-10-22 05:56:09 +0000259
Chris Lattner9232b992003-04-22 18:42:41 +0000260 std::map<ValID, PATypeHolder>::iterator I = LateResolver.find(D);
Chris Lattner4a42e902001-10-22 05:56:09 +0000261 if (I != LateResolver.end()) {
262 return I->second;
263 }
Chris Lattner30c89792001-09-07 16:35:17 +0000264
Chris Lattner82269592001-10-22 06:01:08 +0000265 Type *Typ = OpaqueType::get();
Chris Lattner9232b992003-04-22 18:42:41 +0000266 LateResolver.insert(std::make_pair(D, Typ));
Chris Lattner30c89792001-09-07 16:35:17 +0000267 return Typ;
268}
269
Chris Lattner9232b992003-04-22 18:42:41 +0000270static Value *lookupInSymbolTable(const Type *Ty, const std::string &Name) {
Chris Lattner6e6026b2002-11-20 18:36:02 +0000271 SymbolTable &SymTab =
Chris Lattner394f2eb2003-10-16 20:12:13 +0000272 inFunctionScope() ? CurFun.CurrentFunction->getSymbolTable() :
Chris Lattner9705a152002-05-02 19:27:42 +0000273 CurModule.CurrentModule->getSymbolTable();
Chris Lattner6e6026b2002-11-20 18:36:02 +0000274 return SymTab.lookup(Ty, Name);
Chris Lattnerf4ba6c72001-10-03 06:12:09 +0000275}
276
Chris Lattner2079fde2001-10-13 06:41:08 +0000277// getValNonImprovising - Look up the value specified by the provided type and
278// the provided ValID. If the value exists and has already been defined, return
279// it. Otherwise return null.
280//
281static Value *getValNonImprovising(const Type *Ty, const ValID &D) {
Chris Lattner79df7c02002-03-26 18:01:55 +0000282 if (isa<FunctionType>(Ty))
283 ThrowException("Functions are not values and "
284 "must be referenced as pointers");
Chris Lattner386a3b72001-10-16 19:54:17 +0000285
Chris Lattner30c89792001-09-07 16:35:17 +0000286 switch (D.Type) {
Chris Lattner1a1cb112001-09-30 22:46:54 +0000287 case ValID::NumberVal: { // Is it a numbered definition?
Chris Lattner00950542001-06-06 20:29:01 +0000288 unsigned Num = (unsigned)D.Num;
289
290 // Module constants occupy the lowest numbered slots...
Chris Lattner735f2702004-07-08 22:30:50 +0000291 std::map<const Type*,ValueList>::iterator VI = CurModule.Values.find(Ty);
Chris Lattner16af11d2004-02-09 21:03:38 +0000292 if (VI != CurModule.Values.end()) {
293 if (Num < VI->second.size())
294 return VI->second[Num];
295 Num -= VI->second.size();
Chris Lattner00950542001-06-06 20:29:01 +0000296 }
297
298 // Make sure that our type is within bounds
Chris Lattner735f2702004-07-08 22:30:50 +0000299 VI = CurFun.Values.find(Ty);
Chris Lattner16af11d2004-02-09 21:03:38 +0000300 if (VI == CurFun.Values.end()) return 0;
Chris Lattner00950542001-06-06 20:29:01 +0000301
302 // Check that the number is within bounds...
Chris Lattner16af11d2004-02-09 21:03:38 +0000303 if (VI->second.size() <= Num) return 0;
Chris Lattner00950542001-06-06 20:29:01 +0000304
Chris Lattner16af11d2004-02-09 21:03:38 +0000305 return VI->second[Num];
Chris Lattner00950542001-06-06 20:29:01 +0000306 }
Chris Lattner2079fde2001-10-13 06:41:08 +0000307
Chris Lattner1a1cb112001-09-30 22:46:54 +0000308 case ValID::NameVal: { // Is it a named definition?
Chris Lattner9232b992003-04-22 18:42:41 +0000309 Value *N = lookupInSymbolTable(Ty, std::string(D.Name));
Chris Lattner2079fde2001-10-13 06:41:08 +0000310 if (N == 0) return 0;
Chris Lattner00950542001-06-06 20:29:01 +0000311
312 D.destroy(); // Free old strdup'd memory...
313 return N;
314 }
315
Chris Lattner2079fde2001-10-13 06:41:08 +0000316 // Check to make sure that "Ty" is an integral type, and that our
317 // value will fit into the specified type...
318 case ValID::ConstSIntVal: // Is it a constant pool reference??
Chris Lattnerd78700d2002-08-16 21:14:40 +0000319 if (!ConstantSInt::isValueValidForType(Ty, D.ConstPool64))
320 ThrowException("Signed integral constant '" +
321 itostr(D.ConstPool64) + "' is invalid for type '" +
322 Ty->getDescription() + "'!");
323 return ConstantSInt::get(Ty, D.ConstPool64);
Chris Lattner2079fde2001-10-13 06:41:08 +0000324
325 case ValID::ConstUIntVal: // Is it an unsigned const pool reference?
Chris Lattnere9bb2df2001-12-03 22:26:30 +0000326 if (!ConstantUInt::isValueValidForType(Ty, D.UConstPool64)) {
327 if (!ConstantSInt::isValueValidForType(Ty, D.ConstPool64)) {
Chris Lattnerf8dff732002-07-18 05:18:37 +0000328 ThrowException("Integral constant '" + utostr(D.UConstPool64) +
329 "' is invalid or out of range!");
Chris Lattner2079fde2001-10-13 06:41:08 +0000330 } else { // This is really a signed reference. Transmogrify.
Chris Lattnere9bb2df2001-12-03 22:26:30 +0000331 return ConstantSInt::get(Ty, D.ConstPool64);
Chris Lattner2079fde2001-10-13 06:41:08 +0000332 }
333 } else {
Chris Lattnere9bb2df2001-12-03 22:26:30 +0000334 return ConstantUInt::get(Ty, D.UConstPool64);
Chris Lattner2079fde2001-10-13 06:41:08 +0000335 }
336
Chris Lattner2079fde2001-10-13 06:41:08 +0000337 case ValID::ConstFPVal: // Is it a floating point const pool reference?
Chris Lattnere9bb2df2001-12-03 22:26:30 +0000338 if (!ConstantFP::isValueValidForType(Ty, D.ConstPoolFP))
Chris Lattner2079fde2001-10-13 06:41:08 +0000339 ThrowException("FP constant invalid for type!!");
Chris Lattnere9bb2df2001-12-03 22:26:30 +0000340 return ConstantFP::get(Ty, D.ConstPoolFP);
Chris Lattner2079fde2001-10-13 06:41:08 +0000341
342 case ValID::ConstNullVal: // Is it a null value?
Chris Lattner9b625032002-05-06 16:15:30 +0000343 if (!isa<PointerType>(Ty))
Chris Lattner2079fde2001-10-13 06:41:08 +0000344 ThrowException("Cannot create a a non pointer null!");
Chris Lattnere9bb2df2001-12-03 22:26:30 +0000345 return ConstantPointerNull::get(cast<PointerType>(Ty));
Chris Lattner2079fde2001-10-13 06:41:08 +0000346
Chris Lattnerd78700d2002-08-16 21:14:40 +0000347 case ValID::ConstantVal: // Fully resolved constant?
348 if (D.ConstantValue->getType() != Ty)
349 ThrowException("Constant expression type different from required type!");
350 return D.ConstantValue;
351
Chris Lattner30c89792001-09-07 16:35:17 +0000352 default:
353 assert(0 && "Unhandled case!");
Chris Lattner2079fde2001-10-13 06:41:08 +0000354 return 0;
Chris Lattner00950542001-06-06 20:29:01 +0000355 } // End of switch
356
Chris Lattner2079fde2001-10-13 06:41:08 +0000357 assert(0 && "Unhandled case!");
358 return 0;
359}
360
361
362// getVal - This function is identical to getValNonImprovising, except that if a
363// value is not already defined, it "improvises" by creating a placeholder var
364// that looks and acts just like the requested variable. When the value is
365// defined later, all uses of the placeholder variable are replaced with the
366// real thing.
367//
368static Value *getVal(const Type *Ty, const ValID &D) {
Chris Lattner2079fde2001-10-13 06:41:08 +0000369
370 // See if the value has already been defined...
371 Value *V = getValNonImprovising(Ty, D);
372 if (V) return V;
Chris Lattner00950542001-06-06 20:29:01 +0000373
374 // If we reached here, we referenced either a symbol that we don't know about
375 // or an id number that hasn't been read yet. We may be referencing something
376 // forward, so just create an entry to be resolved later and get to it...
377 //
Chris Lattner00950542001-06-06 20:29:01 +0000378 Value *d = 0;
Chris Lattnerf70c22b2004-06-17 18:19:28 +0000379 switch (Ty->getTypeID()) {
Chris Lattner30c89792001-09-07 16:35:17 +0000380 case Type::LabelTyID: d = new BBPlaceHolder(Ty, D); break;
Chris Lattner30c89792001-09-07 16:35:17 +0000381 default: d = new ValuePlaceHolder(Ty, D); break;
Chris Lattner00950542001-06-06 20:29:01 +0000382 }
383
384 assert(d != 0 && "How did we not make something?");
Chris Lattner79df7c02002-03-26 18:01:55 +0000385 if (inFunctionScope())
Chris Lattner394f2eb2003-10-16 20:12:13 +0000386 InsertValue(d, CurFun.LateResolveValues);
Chris Lattner386a3b72001-10-16 19:54:17 +0000387 else
388 InsertValue(d, CurModule.LateResolveValues);
Chris Lattner00950542001-06-06 20:29:01 +0000389 return d;
390}
391
392
393//===----------------------------------------------------------------------===//
394// Code to handle forward references in instructions
395//===----------------------------------------------------------------------===//
396//
397// This code handles the late binding needed with statements that reference
398// values not defined yet... for example, a forward branch, or the PHI node for
399// a loop body.
400//
Chris Lattner394f2eb2003-10-16 20:12:13 +0000401// This keeps a table (CurFun.LateResolveValues) of all such forward references
Chris Lattner00950542001-06-06 20:29:01 +0000402// and back patchs after we are done.
403//
404
405// ResolveDefinitions - If we could not resolve some defs at parsing
406// time (forward branches, phi functions for loops, etc...) resolve the
407// defs now...
408//
Chris Lattner735f2702004-07-08 22:30:50 +0000409static void ResolveDefinitions(std::map<const Type*,ValueList> &LateResolvers,
410 std::map<const Type*,ValueList> *FutureLateResolvers) {
Chris Lattner00950542001-06-06 20:29:01 +0000411 // Loop over LateResolveDefs fixing up stuff that couldn't be resolved
Chris Lattner735f2702004-07-08 22:30:50 +0000412 for (std::map<const Type*,ValueList>::iterator LRI = LateResolvers.begin(),
Chris Lattner16af11d2004-02-09 21:03:38 +0000413 E = LateResolvers.end(); LRI != E; ++LRI) {
414 ValueList &List = LRI->second;
415 while (!List.empty()) {
416 Value *V = List.back();
417 List.pop_back();
Chris Lattner00950542001-06-06 20:29:01 +0000418 ValID &DID = getValIDFromPlaceHolder(V);
419
Chris Lattner735f2702004-07-08 22:30:50 +0000420 Value *TheRealValue = getValNonImprovising(LRI->first, DID);
Chris Lattner386a3b72001-10-16 19:54:17 +0000421 if (TheRealValue) {
422 V->replaceAllUsesWith(TheRealValue);
423 delete V;
424 } else if (FutureLateResolvers) {
Chris Lattner79df7c02002-03-26 18:01:55 +0000425 // Functions have their unresolved items forwarded to the module late
Chris Lattner386a3b72001-10-16 19:54:17 +0000426 // resolver table
427 InsertValue(V, *FutureLateResolvers);
428 } else {
Chris Lattner9705a152002-05-02 19:27:42 +0000429 if (DID.Type == ValID::NameVal)
Chris Lattner30c89792001-09-07 16:35:17 +0000430 ThrowException("Reference to an invalid definition: '" +DID.getName()+
431 "' of type '" + V->getType()->getDescription() + "'",
432 getLineNumFromPlaceHolder(V));
433 else
434 ThrowException("Reference to an invalid definition: #" +
435 itostr(DID.Num) + " of type '" +
436 V->getType()->getDescription() + "'",
437 getLineNumFromPlaceHolder(V));
438 }
Chris Lattner00950542001-06-06 20:29:01 +0000439 }
440 }
441
442 LateResolvers.clear();
443}
444
Chris Lattner4a42e902001-10-22 05:56:09 +0000445// ResolveTypeTo - A brand new type was just declared. This means that (if
446// name is not null) things referencing Name can be resolved. Otherwise, things
447// refering to the number can be resolved. Do this now.
Chris Lattner00950542001-06-06 20:29:01 +0000448//
Chris Lattner4a42e902001-10-22 05:56:09 +0000449static void ResolveTypeTo(char *Name, const Type *ToTy) {
Chris Lattner9232b992003-04-22 18:42:41 +0000450 std::vector<PATypeHolder> &Types = inFunctionScope() ?
Chris Lattner394f2eb2003-10-16 20:12:13 +0000451 CurFun.Types : CurModule.Types;
Chris Lattner00950542001-06-06 20:29:01 +0000452
Chris Lattner4a42e902001-10-22 05:56:09 +0000453 ValID D;
454 if (Name) D = ValID::create(Name);
455 else D = ValID::create((int)Types.size());
Chris Lattner30c89792001-09-07 16:35:17 +0000456
Chris Lattner9232b992003-04-22 18:42:41 +0000457 std::map<ValID, PATypeHolder> &LateResolver = inFunctionScope() ?
Chris Lattner394f2eb2003-10-16 20:12:13 +0000458 CurFun.LateResolveTypes : CurModule.LateResolveTypes;
Chris Lattner4a42e902001-10-22 05:56:09 +0000459
Chris Lattner9232b992003-04-22 18:42:41 +0000460 std::map<ValID, PATypeHolder>::iterator I = LateResolver.find(D);
Chris Lattner4a42e902001-10-22 05:56:09 +0000461 if (I != LateResolver.end()) {
Chris Lattner51727be2002-06-04 21:58:56 +0000462 ((DerivedType*)I->second.get())->refineAbstractTypeTo(ToTy);
Chris Lattner4a42e902001-10-22 05:56:09 +0000463 LateResolver.erase(I);
464 }
465}
466
467// ResolveTypes - At this point, all types should be resolved. Any that aren't
468// are errors.
469//
Chris Lattner9232b992003-04-22 18:42:41 +0000470static void ResolveTypes(std::map<ValID, PATypeHolder> &LateResolveTypes) {
Chris Lattner4a42e902001-10-22 05:56:09 +0000471 if (!LateResolveTypes.empty()) {
Chris Lattner82269592001-10-22 06:01:08 +0000472 const ValID &DID = LateResolveTypes.begin()->first;
Chris Lattner4a42e902001-10-22 05:56:09 +0000473
474 if (DID.Type == ValID::NameVal)
Chris Lattner82269592001-10-22 06:01:08 +0000475 ThrowException("Reference to an invalid type: '" +DID.getName() + "'");
Chris Lattner4a42e902001-10-22 05:56:09 +0000476 else
Chris Lattner82269592001-10-22 06:01:08 +0000477 ThrowException("Reference to an invalid type: #" + itostr(DID.Num));
Chris Lattner30c89792001-09-07 16:35:17 +0000478 }
479}
480
Chris Lattnerdf7306f2001-10-03 01:49:25 +0000481
Chris Lattner1781aca2001-09-18 04:00:54 +0000482// setValueName - Set the specified value to the name given. The name may be
483// null potentially, in which case this is a noop. The string passed in is
484// assumed to be a malloc'd string buffer, and is freed by this function.
485//
Chris Lattnerb7474512001-10-03 15:39:04 +0000486// This function returns true if the value has already been defined, but is
487// allowed to be redefined in the specified context. If the name is a new name
488// for the typeplane, false is returned.
489//
490static bool setValueName(Value *V, char *NameStr) {
491 if (NameStr == 0) return false;
Chris Lattner386a3b72001-10-16 19:54:17 +0000492
Chris Lattner9232b992003-04-22 18:42:41 +0000493 std::string Name(NameStr); // Copy string
Chris Lattner1781aca2001-09-18 04:00:54 +0000494 free(NameStr); // Free old string
495
Chris Lattner2079fde2001-10-13 06:41:08 +0000496 if (V->getType() == Type::VoidTy)
497 ThrowException("Can't assign name '" + Name +
498 "' to a null valued instruction!");
499
Chris Lattner6e6026b2002-11-20 18:36:02 +0000500 SymbolTable &ST = inFunctionScope() ?
Chris Lattner394f2eb2003-10-16 20:12:13 +0000501 CurFun.CurrentFunction->getSymbolTable() :
Chris Lattner6e6026b2002-11-20 18:36:02 +0000502 CurModule.CurrentModule->getSymbolTable();
Chris Lattner30c89792001-09-07 16:35:17 +0000503
Reid Spencer75719bf2004-05-26 21:48:31 +0000504 Value *Existing = ST.lookup(V->getType(), Name);
Chris Lattner42fbc7e2004-05-26 17:08:25 +0000505
Chris Lattner30c89792001-09-07 16:35:17 +0000506 if (Existing) { // Inserting a name that is already defined???
Reid Spencer9ed0f172004-05-27 22:05:50 +0000507 // We are a simple redefinition of a value, check to see if it
Chris Lattner9636a912001-10-01 16:18:37 +0000508 // is defined the same as the old one...
Reid Spencer4e6620c2004-05-28 00:21:06 +0000509 if (const Constant *C = dyn_cast<Constant>(Existing)) {
Chris Lattneradf99702003-03-03 23:28:55 +0000510 if (C == V) return true; // Constants are equal to themselves
Chris Lattnerb7474512001-10-03 15:39:04 +0000511 } else if (GlobalVariable *EGV = dyn_cast<GlobalVariable>(Existing)) {
Chris Lattner43efcbf2001-10-03 19:35:57 +0000512 // We are allowed to redefine a global variable in two circumstances:
513 // 1. If at least one of the globals is uninitialized or
514 // 2. If both initializers have the same value.
515 //
Chris Lattner89219832001-10-03 19:35:04 +0000516 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(V)) {
Chris Lattnerbb3e5d42003-02-02 16:40:20 +0000517 if (!EGV->hasInitializer() || !GV->hasInitializer() ||
518 EGV->getInitializer() == GV->getInitializer()) {
Chris Lattnerb7474512001-10-03 15:39:04 +0000519
Chris Lattnerbb3e5d42003-02-02 16:40:20 +0000520 // Make sure the existing global version gets the initializer! Make
521 // sure that it also gets marked const if the new version is.
Chris Lattner89219832001-10-03 19:35:04 +0000522 if (GV->hasInitializer() && !EGV->hasInitializer())
523 EGV->setInitializer(GV->getInitializer());
Chris Lattnerbb3e5d42003-02-02 16:40:20 +0000524 if (GV->isConstant())
525 EGV->setConstant(true);
Chris Lattner4ad02e72003-04-16 20:28:45 +0000526 EGV->setLinkage(GV->getLinkage());
Chris Lattner89219832001-10-03 19:35:04 +0000527
Chris Lattner2079fde2001-10-13 06:41:08 +0000528 delete GV; // Destroy the duplicate!
Chris Lattner89219832001-10-03 19:35:04 +0000529 return true; // They are equivalent!
530 }
Chris Lattnerb7474512001-10-03 15:39:04 +0000531 }
Chris Lattner9636a912001-10-01 16:18:37 +0000532 }
Chris Lattner0b268fb2003-11-25 03:54:16 +0000533
Chris Lattner2079fde2001-10-13 06:41:08 +0000534 ThrowException("Redefinition of value named '" + Name + "' in the '" +
Chris Lattner30c89792001-09-07 16:35:17 +0000535 V->getType()->getDescription() + "' type plane!");
Chris Lattner93750fa2001-07-28 17:48:55 +0000536 }
Chris Lattner00950542001-06-06 20:29:01 +0000537
Chris Lattner15b69722003-11-12 04:40:30 +0000538 // Set the name
Chris Lattner6e6026b2002-11-20 18:36:02 +0000539 V->setName(Name, &ST);
Chris Lattner15b69722003-11-12 04:40:30 +0000540
541 // If we're in function scope
542 if (inFunctionScope()) {
543 // Look up the symbol in the function's local symboltable
544 Existing = CurFun.LocalSymtab.lookup(V->getType(),Name);
545
546 // If it already exists
547 if (Existing) {
Chris Lattner15b69722003-11-12 04:40:30 +0000548 // Bail
549 ThrowException("Redefinition of value named '" + Name + "' in the '" +
550 V->getType()->getDescription() + "' type plane!");
551
552 // otherwise, since it doesn't exist
553 } else {
554 // Insert it.
555 CurFun.LocalSymtab.insert(V);
556 }
557 }
Chris Lattnerb7474512001-10-03 15:39:04 +0000558 return false;
Chris Lattner00950542001-06-06 20:29:01 +0000559}
560
Reid Spencer75719bf2004-05-26 21:48:31 +0000561// setTypeName - Set the specified type to the name given. The name may be
562// null potentially, in which case this is a noop. The string passed in is
563// assumed to be a malloc'd string buffer, and is freed by this function.
564//
565// This function returns true if the type has already been defined, but is
566// allowed to be redefined in the specified context. If the name is a new name
567// for the type plane, it is inserted and false is returned.
568static bool setTypeName(Type *T, char *NameStr) {
569 if (NameStr == 0) return false;
570
571 std::string Name(NameStr); // Copy string
572 free(NameStr); // Free old string
573
574 // We don't allow assigning names to void type
575 if (T == Type::VoidTy)
576 ThrowException("Can't assign name '" + Name + "' to the null type!");
577
578 SymbolTable &ST = inFunctionScope() ?
579 CurFun.CurrentFunction->getSymbolTable() :
580 CurModule.CurrentModule->getSymbolTable();
581
582 Type *Existing = ST.lookupType(Name);
583
584 if (Existing) { // Inserting a name that is already defined???
585 // There is only one case where this is allowed: when we are refining an
586 // opaque type. In this case, Existing will be an opaque type.
587 if (const OpaqueType *OpTy = dyn_cast<OpaqueType>(Existing)) {
588 // We ARE replacing an opaque type!
589 ((OpaqueType*)OpTy)->refineAbstractTypeTo(T);
590 return true;
591 }
592
593 // Otherwise, this is an attempt to redefine a type. That's okay if
594 // the redefinition is identical to the original. This will be so if
595 // Existing and T point to the same Type object. In this one case we
596 // allow the equivalent redefinition.
597 if (Existing == T) return true; // Yes, it's equal.
598
599 // Any other kind of (non-equivalent) redefinition is an error.
600 ThrowException("Redefinition of type named '" + Name + "' in the '" +
601 T->getDescription() + "' type plane!");
602 }
603
604 // Okay, its a newly named type. Set its name.
Chris Lattner8ca2dc02004-07-09 16:43:55 +0000605 if (!Name.empty()) ST.insert(Name, T);
Reid Spencer75719bf2004-05-26 21:48:31 +0000606
607 // If we're in function scope
608 if (inFunctionScope()) {
609 // Look up the symbol in the function's local symboltable
610 Existing = CurFun.LocalSymtab.lookupType(Name);
611
612 // If it already exists
613 if (Existing) {
614 // Bail
615 ThrowException("Redefinition of type named '" + Name + "' in the '" +
616 T->getDescription() + "' type plane in function scope!");
617
618 // otherwise, since it doesn't exist
619 } else {
620 // Insert it.
621 CurFun.LocalSymtab.insert(Name,T);
622 }
623 }
624 return false;
625}
Chris Lattner8896eda2001-07-09 19:38:36 +0000626
Chris Lattner30c89792001-09-07 16:35:17 +0000627//===----------------------------------------------------------------------===//
628// Code for handling upreferences in type names...
Chris Lattner8896eda2001-07-09 19:38:36 +0000629//
Chris Lattner8896eda2001-07-09 19:38:36 +0000630
Chris Lattner3b073862004-02-09 03:19:29 +0000631// TypeContains - Returns true if Ty directly contains E in it.
Chris Lattner30c89792001-09-07 16:35:17 +0000632//
633static bool TypeContains(const Type *Ty, const Type *E) {
Chris Lattner3b073862004-02-09 03:19:29 +0000634 return find(Ty->subtype_begin(), Ty->subtype_end(), E) != Ty->subtype_end();
635}
636
637namespace {
638 struct UpRefRecord {
639 // NestingLevel - The number of nesting levels that need to be popped before
640 // this type is resolved.
641 unsigned NestingLevel;
642
643 // LastContainedTy - This is the type at the current binding level for the
644 // type. Every time we reduce the nesting level, this gets updated.
645 const Type *LastContainedTy;
646
647 // UpRefTy - This is the actual opaque type that the upreference is
648 // represented with.
649 OpaqueType *UpRefTy;
650
651 UpRefRecord(unsigned NL, OpaqueType *URTy)
652 : NestingLevel(NL), LastContainedTy(URTy), UpRefTy(URTy) {}
653 };
Chris Lattner30c89792001-09-07 16:35:17 +0000654}
Chris Lattner698b56e2001-07-20 19:15:08 +0000655
Chris Lattnerc7d3f6b2003-12-31 02:18:11 +0000656// UpRefs - A list of the outstanding upreferences that need to be resolved.
Chris Lattner3b073862004-02-09 03:19:29 +0000657static std::vector<UpRefRecord> UpRefs;
Chris Lattner30c89792001-09-07 16:35:17 +0000658
Chris Lattnerc7d3f6b2003-12-31 02:18:11 +0000659/// HandleUpRefs - Every time we finish a new layer of types, this function is
660/// called. It loops through the UpRefs vector, which is a list of the
661/// currently active types. For each type, if the up reference is contained in
662/// the newly completed type, we decrement the level count. When the level
663/// count reaches zero, the upreferenced type is the type that is passed in:
664/// thus we can complete the cycle.
665///
Chris Lattner8b88b3b2002-04-04 19:23:55 +0000666static PATypeHolder HandleUpRefs(const Type *ty) {
Chris Lattner2c37c182004-02-09 03:03:10 +0000667 if (!ty->isAbstract()) return ty;
Chris Lattner8b88b3b2002-04-04 19:23:55 +0000668 PATypeHolder Ty(ty);
Chris Lattnerc7d3f6b2003-12-31 02:18:11 +0000669 UR_OUT("Type '" << Ty->getDescription() <<
Chris Lattner5084d032001-11-02 07:46:26 +0000670 "' newly formed. Resolving upreferences.\n" <<
671 UpRefs.size() << " upreferences active!\n");
Chris Lattner026a8ce2004-02-09 18:53:54 +0000672
673 // If we find any resolvable upreferences (i.e., those whose NestingLevel goes
674 // to zero), we resolve them all together before we resolve them to Ty. At
675 // the end of the loop, if there is anything to resolve to Ty, it will be in
676 // this variable.
677 OpaqueType *TypeToResolve = 0;
678
Chris Lattnerc7d3f6b2003-12-31 02:18:11 +0000679 for (unsigned i = 0; i != UpRefs.size(); ++i) {
Chris Lattner5084d032001-11-02 07:46:26 +0000680 UR_OUT(" UR#" << i << " - TypeContains(" << Ty->getDescription() << ", "
Chris Lattner30c89792001-09-07 16:35:17 +0000681 << UpRefs[i].second->getDescription() << ") = "
Chris Lattnerc7d3f6b2003-12-31 02:18:11 +0000682 << (TypeContains(Ty, UpRefs[i].second) ? "true" : "false") << "\n");
Chris Lattner3b073862004-02-09 03:19:29 +0000683 if (TypeContains(Ty, UpRefs[i].LastContainedTy)) {
684 // Decrement level of upreference
685 unsigned Level = --UpRefs[i].NestingLevel;
686 UpRefs[i].LastContainedTy = Ty;
Chris Lattnerc7d3f6b2003-12-31 02:18:11 +0000687 UR_OUT(" Uplevel Ref Level = " << Level << "\n");
Chris Lattner30c89792001-09-07 16:35:17 +0000688 if (Level == 0) { // Upreference should be resolved!
Chris Lattner026a8ce2004-02-09 18:53:54 +0000689 if (!TypeToResolve) {
690 TypeToResolve = UpRefs[i].UpRefTy;
691 } else {
692 UR_OUT(" * Resolving upreference for "
693 << UpRefs[i].second->getDescription() << "\n";
694 std::string OldName = UpRefs[i].UpRefTy->getDescription());
695 UpRefs[i].UpRefTy->refineAbstractTypeTo(TypeToResolve);
696 UR_OUT(" * Type '" << OldName << "' refined upreference to: "
697 << (const void*)Ty << ", " << Ty->getDescription() << "\n");
698 }
Chris Lattnerc7d3f6b2003-12-31 02:18:11 +0000699 UpRefs.erase(UpRefs.begin()+i); // Remove from upreference list...
700 --i; // Do not skip the next element...
Chris Lattner30c89792001-09-07 16:35:17 +0000701 }
702 }
Chris Lattner8896eda2001-07-09 19:38:36 +0000703 }
Chris Lattnerc7d3f6b2003-12-31 02:18:11 +0000704
Chris Lattner026a8ce2004-02-09 18:53:54 +0000705 if (TypeToResolve) {
706 UR_OUT(" * Resolving upreference for "
707 << UpRefs[i].second->getDescription() << "\n";
Chris Lattner16af11d2004-02-09 21:03:38 +0000708 std::string OldName = TypeToResolve->getDescription());
Chris Lattner026a8ce2004-02-09 18:53:54 +0000709 TypeToResolve->refineAbstractTypeTo(Ty);
710 }
711
Chris Lattner8896eda2001-07-09 19:38:36 +0000712 return Ty;
713}
714
Chris Lattner30c89792001-09-07 16:35:17 +0000715
Chris Lattner00950542001-06-06 20:29:01 +0000716//===----------------------------------------------------------------------===//
717// RunVMAsmParser - Define an interface to this parser
718//===----------------------------------------------------------------------===//
719//
Chris Lattner9232b992003-04-22 18:42:41 +0000720Module *RunVMAsmParser(const std::string &Filename, FILE *F) {
Chris Lattner00950542001-06-06 20:29:01 +0000721 llvmAsmin = F;
Chris Lattnera2850432001-07-22 18:36:00 +0000722 CurFilename = Filename;
Chris Lattner00950542001-06-06 20:29:01 +0000723 llvmAsmlineno = 1; // Reset the current line number...
Chris Lattner99e7ab72003-10-18 05:53:13 +0000724 ObsoleteVarArgs = false;
Chris Lattner00950542001-06-06 20:29:01 +0000725
Chris Lattner75f20532003-04-22 18:02:52 +0000726 // Allocate a new module to read
727 CurModule.CurrentModule = new Module(Filename);
Chris Lattner42570982003-11-26 07:24:58 +0000728
729 try {
730 yyparse(); // Parse the file.
731 } catch (...) {
732 // Clear the symbol table so it doesn't complain when it
733 // gets destructed
734 CurFun.LocalSymtab.clear();
735 throw;
736 }
Chris Lattner99e7ab72003-10-18 05:53:13 +0000737
Chris Lattner00950542001-06-06 20:29:01 +0000738 Module *Result = ParserResult;
Chris Lattner99e7ab72003-10-18 05:53:13 +0000739
740 // Check to see if they called va_start but not va_arg..
741 if (!ObsoleteVarArgs)
742 if (Function *F = Result->getNamedFunction("llvm.va_start"))
743 if (F->asize() == 1) {
744 std::cerr << "WARNING: this file uses obsolete features. "
745 << "Assemble and disassemble to update it.\n";
746 ObsoleteVarArgs = true;
747 }
748
749
750 if (ObsoleteVarArgs) {
751 // If the user is making use of obsolete varargs intrinsics, adjust them for
752 // the user.
753 if (Function *F = Result->getNamedFunction("llvm.va_start")) {
754 assert(F->asize() == 1 && "Obsolete va_start takes 1 argument!");
755
756 const Type *RetTy = F->getFunctionType()->getParamType(0);
757 RetTy = cast<PointerType>(RetTy)->getElementType();
758 Function *NF = Result->getOrInsertFunction("llvm.va_start", RetTy, 0);
759
760 while (!F->use_empty()) {
761 CallInst *CI = cast<CallInst>(F->use_back());
762 Value *V = new CallInst(NF, "", CI);
763 new StoreInst(V, CI->getOperand(1), CI);
764 CI->getParent()->getInstList().erase(CI);
765 }
766 Result->getFunctionList().erase(F);
767 }
768
769 if (Function *F = Result->getNamedFunction("llvm.va_end")) {
770 assert(F->asize() == 1 && "Obsolete va_end takes 1 argument!");
771 const Type *ArgTy = F->getFunctionType()->getParamType(0);
772 ArgTy = cast<PointerType>(ArgTy)->getElementType();
773 Function *NF = Result->getOrInsertFunction("llvm.va_end", Type::VoidTy,
774 ArgTy, 0);
775
776 while (!F->use_empty()) {
777 CallInst *CI = cast<CallInst>(F->use_back());
778 Value *V = new LoadInst(CI->getOperand(1), "", CI);
779 new CallInst(NF, V, "", CI);
780 CI->getParent()->getInstList().erase(CI);
781 }
782 Result->getFunctionList().erase(F);
783 }
784
785 if (Function *F = Result->getNamedFunction("llvm.va_copy")) {
786 assert(F->asize() == 2 && "Obsolete va_copy takes 2 argument!");
787 const Type *ArgTy = F->getFunctionType()->getParamType(0);
788 ArgTy = cast<PointerType>(ArgTy)->getElementType();
789 Function *NF = Result->getOrInsertFunction("llvm.va_copy", ArgTy,
790 ArgTy, 0);
791
792 while (!F->use_empty()) {
793 CallInst *CI = cast<CallInst>(F->use_back());
794 Value *V = new CallInst(NF, CI->getOperand(2), "", CI);
795 new StoreInst(V, CI->getOperand(1), CI);
796 CI->getParent()->getInstList().erase(CI);
797 }
798 Result->getFunctionList().erase(F);
799 }
800 }
801
Chris Lattner00950542001-06-06 20:29:01 +0000802 llvmAsmin = stdin; // F is about to go away, don't use it anymore...
803 ParserResult = 0;
804
805 return Result;
806}
807
Brian Gaeked0fde302003-11-11 22:41:34 +0000808} // End llvm namespace
809
810using namespace llvm;
811
Chris Lattner00950542001-06-06 20:29:01 +0000812%}
813
814%union {
Brian Gaeked0fde302003-11-11 22:41:34 +0000815 llvm::Module *ModuleVal;
816 llvm::Function *FunctionVal;
817 std::pair<llvm::PATypeHolder*, char*> *ArgVal;
818 llvm::BasicBlock *BasicBlockVal;
819 llvm::TerminatorInst *TermInstVal;
820 llvm::Instruction *InstVal;
821 llvm::Constant *ConstVal;
Chris Lattner00950542001-06-06 20:29:01 +0000822
Brian Gaeked0fde302003-11-11 22:41:34 +0000823 const llvm::Type *PrimType;
824 llvm::PATypeHolder *TypeVal;
825 llvm::Value *ValueVal;
Chris Lattner30c89792001-09-07 16:35:17 +0000826
Brian Gaeked0fde302003-11-11 22:41:34 +0000827 std::vector<std::pair<llvm::PATypeHolder*,char*> > *ArgList;
828 std::vector<llvm::Value*> *ValueList;
829 std::list<llvm::PATypeHolder> *TypeList;
830 std::list<std::pair<llvm::Value*,
831 llvm::BasicBlock*> > *PHIList; // Represent the RHS of PHI node
832 std::vector<std::pair<llvm::Constant*, llvm::BasicBlock*> > *JumpTable;
833 std::vector<llvm::Constant*> *ConstVector;
Chris Lattner00950542001-06-06 20:29:01 +0000834
Brian Gaeked0fde302003-11-11 22:41:34 +0000835 llvm::GlobalValue::LinkageTypes Linkage;
Chris Lattner30c89792001-09-07 16:35:17 +0000836 int64_t SInt64Val;
837 uint64_t UInt64Val;
838 int SIntVal;
839 unsigned UIntVal;
840 double FPVal;
Chris Lattner1781aca2001-09-18 04:00:54 +0000841 bool BoolVal;
Chris Lattner00950542001-06-06 20:29:01 +0000842
Chris Lattner30c89792001-09-07 16:35:17 +0000843 char *StrVal; // This memory is strdup'd!
Brian Gaeked0fde302003-11-11 22:41:34 +0000844 llvm::ValID ValIDVal; // strdup'd memory maybe!
Chris Lattner00950542001-06-06 20:29:01 +0000845
Brian Gaeked0fde302003-11-11 22:41:34 +0000846 llvm::Instruction::BinaryOps BinaryOpVal;
847 llvm::Instruction::TermOps TermOpVal;
848 llvm::Instruction::MemoryOps MemOpVal;
849 llvm::Instruction::OtherOps OtherOpVal;
850 llvm::Module::Endianness Endianness;
Chris Lattner00950542001-06-06 20:29:01 +0000851}
852
Chris Lattner79df7c02002-03-26 18:01:55 +0000853%type <ModuleVal> Module FunctionList
854%type <FunctionVal> Function FunctionProto FunctionHeader BasicBlockList
Chris Lattner00950542001-06-06 20:29:01 +0000855%type <BasicBlockVal> BasicBlock InstructionList
856%type <TermInstVal> BBTerminatorInst
857%type <InstVal> Inst InstVal MemoryInst
Vikram S. Adved3f7eb02002-07-14 22:59:28 +0000858%type <ConstVal> ConstVal ConstExpr
Chris Lattner6cdb0112001-11-26 16:54:11 +0000859%type <ConstVector> ConstVector
Chris Lattner46748042002-04-09 19:41:42 +0000860%type <ArgList> ArgList ArgListH
861%type <ArgVal> ArgVal
Chris Lattnerc24d2082001-06-11 15:04:20 +0000862%type <PHIList> PHIList
Chris Lattnerab5ac6b2001-07-08 23:22:50 +0000863%type <ValueList> ValueRefList ValueRefListE // For call param lists
Chris Lattner6cdb0112001-11-26 16:54:11 +0000864%type <ValueList> IndexList // For GEP derived indices
Chris Lattner30c89792001-09-07 16:35:17 +0000865%type <TypeList> TypeListI ArgTypeListI
Chris Lattner00950542001-06-06 20:29:01 +0000866%type <JumpTable> JumpTable
Chris Lattner4ad02e72003-04-16 20:28:45 +0000867%type <BoolVal> GlobalType // GLOBAL or CONSTANT?
Chris Lattner15c9c032003-09-08 18:20:29 +0000868%type <BoolVal> OptVolatile // 'volatile' or not
Chris Lattner4ad02e72003-04-16 20:28:45 +0000869%type <Linkage> OptLinkage
Chris Lattnerb9bcbb52003-04-22 19:07:06 +0000870%type <Endianness> BigOrLittle
Chris Lattner00950542001-06-06 20:29:01 +0000871
Chris Lattner2079fde2001-10-13 06:41:08 +0000872// ValueRef - Unresolved reference to a definition or BB
873%type <ValIDVal> ValueRef ConstValueRef SymbolicValueRef
Chris Lattnerbcbf6ba2001-07-26 16:29:15 +0000874%type <ValueVal> ResolvedVal // <type> <valref> pair
Chris Lattner00950542001-06-06 20:29:01 +0000875// Tokens and types for handling constant integer values
876//
877// ESINT64VAL - A negative number within long long range
878%token <SInt64Val> ESINT64VAL
879
880// EUINT64VAL - A positive number within uns. long long range
881%token <UInt64Val> EUINT64VAL
882%type <SInt64Val> EINT64VAL
883
884%token <SIntVal> SINTVAL // Signed 32 bit ints...
885%token <UIntVal> UINTVAL // Unsigned 32 bit ints...
886%type <SIntVal> INTVAL
Chris Lattner3d52b2f2001-07-15 00:17:01 +0000887%token <FPVal> FPVAL // Float or Double constant
Chris Lattner00950542001-06-06 20:29:01 +0000888
889// Built in types...
Chris Lattner30c89792001-09-07 16:35:17 +0000890%type <TypeVal> Types TypesV UpRTypes UpRTypesV
891%type <PrimType> SIntType UIntType IntType FPType PrimType // Classifications
Chris Lattner30c89792001-09-07 16:35:17 +0000892%token <PrimType> VOID BOOL SBYTE UBYTE SHORT USHORT INT UINT LONG ULONG
893%token <PrimType> FLOAT DOUBLE TYPE LABEL
Chris Lattner00950542001-06-06 20:29:01 +0000894
Chris Lattner6c23f572003-08-22 05:42:10 +0000895%token <StrVal> VAR_ID LABELSTR STRINGCONSTANT
896%type <StrVal> Name OptName OptAssign
Chris Lattner00950542001-06-06 20:29:01 +0000897
898
Chris Lattner91ef4602004-03-31 03:49:47 +0000899%token IMPLEMENTATION ZEROINITIALIZER TRUETOK FALSETOK BEGINTOK ENDTOK
Chris Lattner15c9c032003-09-08 18:20:29 +0000900%token DECLARE GLOBAL CONSTANT VOLATILE
Chris Lattnera58e3a12004-02-08 21:48:25 +0000901%token TO DOTDOTDOT NULL_TOK CONST INTERNAL LINKONCE WEAK APPENDING
Chris Lattnerb9bcbb52003-04-22 19:07:06 +0000902%token OPAQUE NOT EXTERNAL TARGET ENDIAN POINTERSIZE LITTLE BIG
Chris Lattner00950542001-06-06 20:29:01 +0000903
904// Basic Block Terminating Operators
Chris Lattner36143fc2003-09-08 18:54:55 +0000905%token <TermOpVal> RET BR SWITCH INVOKE UNWIND
Chris Lattner00950542001-06-06 20:29:01 +0000906
Chris Lattner00950542001-06-06 20:29:01 +0000907// Binary Operators
908%type <BinaryOpVal> BinaryOps // all the binary operators
Chris Lattner4a6482b2002-09-10 19:57:26 +0000909%type <BinaryOpVal> ArithmeticOps LogicalOps SetCondOps // Binops Subcatagories
Chris Lattner42c9e772001-10-20 09:32:59 +0000910%token <BinaryOpVal> ADD SUB MUL DIV REM AND OR XOR
Chris Lattner027dcc52001-07-08 21:10:27 +0000911%token <BinaryOpVal> SETLE SETGE SETLT SETGT SETEQ SETNE // Binary Comarators
Chris Lattner00950542001-06-06 20:29:01 +0000912
913// Memory Instructions
Vikram S. Adved3f7eb02002-07-14 22:59:28 +0000914%token <MemOpVal> MALLOC ALLOCA FREE LOAD STORE GETELEMENTPTR
Chris Lattner00950542001-06-06 20:29:01 +0000915
Chris Lattner027dcc52001-07-08 21:10:27 +0000916// Other Operators
917%type <OtherOpVal> ShiftOps
Chris Lattner76f0ff32004-03-12 05:51:36 +0000918%token <OtherOpVal> PHI_TOK CALL CAST SELECT SHL SHR VAARG VANEXT
Chris Lattner99e7ab72003-10-18 05:53:13 +0000919%token VA_ARG // FIXME: OBSOLETE
Chris Lattner027dcc52001-07-08 21:10:27 +0000920
Chris Lattner00950542001-06-06 20:29:01 +0000921%start Module
922%%
923
924// Handle constant integer size restriction and conversion...
925//
Chris Lattner51727be2002-06-04 21:58:56 +0000926INTVAL : SINTVAL;
Chris Lattner00950542001-06-06 20:29:01 +0000927INTVAL : UINTVAL {
928 if ($1 > (uint32_t)INT32_MAX) // Outside of my range!
929 ThrowException("Value too large for type!");
930 $$ = (int32_t)$1;
Chris Lattner51727be2002-06-04 21:58:56 +0000931};
Chris Lattner00950542001-06-06 20:29:01 +0000932
933
Chris Lattner51727be2002-06-04 21:58:56 +0000934EINT64VAL : ESINT64VAL; // These have same type and can't cause problems...
Chris Lattner00950542001-06-06 20:29:01 +0000935EINT64VAL : EUINT64VAL {
936 if ($1 > (uint64_t)INT64_MAX) // Outside of my range!
937 ThrowException("Value too large for type!");
938 $$ = (int64_t)$1;
Chris Lattner51727be2002-06-04 21:58:56 +0000939};
Chris Lattner00950542001-06-06 20:29:01 +0000940
Chris Lattner00950542001-06-06 20:29:01 +0000941// Operations that are notably excluded from this list include:
942// RET, BR, & SWITCH because they end basic blocks and are treated specially.
943//
Chris Lattner4a6482b2002-09-10 19:57:26 +0000944ArithmeticOps: ADD | SUB | MUL | DIV | REM;
945LogicalOps : AND | OR | XOR;
946SetCondOps : SETLE | SETGE | SETLT | SETGT | SETEQ | SETNE;
947BinaryOps : ArithmeticOps | LogicalOps | SetCondOps;
948
Chris Lattner51727be2002-06-04 21:58:56 +0000949ShiftOps : SHL | SHR;
Chris Lattner00950542001-06-06 20:29:01 +0000950
Chris Lattnere98dda62001-07-14 06:10:16 +0000951// These are some types that allow classification if we only want a particular
952// thing... for example, only a signed, unsigned, or integral type.
Chris Lattner51727be2002-06-04 21:58:56 +0000953SIntType : LONG | INT | SHORT | SBYTE;
954UIntType : ULONG | UINT | USHORT | UBYTE;
955IntType : SIntType | UIntType;
956FPType : FLOAT | DOUBLE;
Chris Lattner00950542001-06-06 20:29:01 +0000957
Chris Lattnere98dda62001-07-14 06:10:16 +0000958// OptAssign - Value producing statements have an optional assignment component
Chris Lattner6c23f572003-08-22 05:42:10 +0000959OptAssign : Name '=' {
Chris Lattner00950542001-06-06 20:29:01 +0000960 $$ = $1;
961 }
962 | /*empty*/ {
963 $$ = 0;
Chris Lattner51727be2002-06-04 21:58:56 +0000964 };
Chris Lattner00950542001-06-06 20:29:01 +0000965
Chris Lattner4ad02e72003-04-16 20:28:45 +0000966OptLinkage : INTERNAL { $$ = GlobalValue::InternalLinkage; } |
967 LINKONCE { $$ = GlobalValue::LinkOnceLinkage; } |
Chris Lattner72ac148d2003-10-16 18:29:00 +0000968 WEAK { $$ = GlobalValue::WeakLinkage; } |
Chris Lattner4ad02e72003-04-16 20:28:45 +0000969 APPENDING { $$ = GlobalValue::AppendingLinkage; } |
970 /*empty*/ { $$ = GlobalValue::ExternalLinkage; };
Chris Lattner30c89792001-09-07 16:35:17 +0000971
972//===----------------------------------------------------------------------===//
973// Types includes all predefined types... except void, because it can only be
Chris Lattner7e708292002-06-25 16:13:24 +0000974// used in specific contexts (function returning void for example). To have
Chris Lattner30c89792001-09-07 16:35:17 +0000975// access to it, a user must explicitly use TypesV.
976//
977
978// TypesV includes all of 'Types', but it also includes the void type.
Chris Lattner51727be2002-06-04 21:58:56 +0000979TypesV : Types | VOID { $$ = new PATypeHolder($1); };
980UpRTypesV : UpRTypes | VOID { $$ = new PATypeHolder($1); };
Chris Lattner30c89792001-09-07 16:35:17 +0000981
982Types : UpRTypes {
Chris Lattnerc7d3f6b2003-12-31 02:18:11 +0000983 if (!UpRefs.empty())
Chris Lattner8b88b3b2002-04-04 19:23:55 +0000984 ThrowException("Invalid upreference in type: " + (*$1)->getDescription());
985 $$ = $1;
Chris Lattner51727be2002-06-04 21:58:56 +0000986 };
Chris Lattner30c89792001-09-07 16:35:17 +0000987
988
989// Derived types are added later...
990//
Chris Lattner51727be2002-06-04 21:58:56 +0000991PrimType : BOOL | SBYTE | UBYTE | SHORT | USHORT | INT | UINT ;
992PrimType : LONG | ULONG | FLOAT | DOUBLE | TYPE | LABEL;
Chris Lattner8b88b3b2002-04-04 19:23:55 +0000993UpRTypes : OPAQUE {
994 $$ = new PATypeHolder(OpaqueType::get());
995 }
996 | PrimType {
997 $$ = new PATypeHolder($1);
Chris Lattner51727be2002-06-04 21:58:56 +0000998 };
Chris Lattnerd78700d2002-08-16 21:14:40 +0000999UpRTypes : SymbolicValueRef { // Named types are also simple types...
Chris Lattner8b88b3b2002-04-04 19:23:55 +00001000 $$ = new PATypeHolder(getTypeVal($1));
Chris Lattner51727be2002-06-04 21:58:56 +00001001};
Chris Lattner30c89792001-09-07 16:35:17 +00001002
Chris Lattner30c89792001-09-07 16:35:17 +00001003// Include derived types in the Types production.
1004//
1005UpRTypes : '\\' EUINT64VAL { // Type UpReference
Chris Lattnerc7d3f6b2003-12-31 02:18:11 +00001006 if ($2 > (uint64_t)~0U) ThrowException("Value out of range!");
Chris Lattner30c89792001-09-07 16:35:17 +00001007 OpaqueType *OT = OpaqueType::get(); // Use temporary placeholder
Chris Lattner3b073862004-02-09 03:19:29 +00001008 UpRefs.push_back(UpRefRecord((unsigned)$2, OT)); // Add to vector...
Chris Lattner8b88b3b2002-04-04 19:23:55 +00001009 $$ = new PATypeHolder(OT);
Chris Lattner30c89792001-09-07 16:35:17 +00001010 UR_OUT("New Upreference!\n");
1011 }
Chris Lattner79df7c02002-03-26 18:01:55 +00001012 | UpRTypesV '(' ArgTypeListI ')' { // Function derived type?
Chris Lattner9232b992003-04-22 18:42:41 +00001013 std::vector<const Type*> Params;
Chris Lattner697954c2002-01-20 22:54:45 +00001014 mapto($3->begin(), $3->end(), std::back_inserter(Params),
Chris Lattner876dc572003-10-02 19:00:34 +00001015 std::mem_fun_ref(&PATypeHolder::get));
Chris Lattner2079fde2001-10-13 06:41:08 +00001016 bool isVarArg = Params.size() && Params.back() == Type::VoidTy;
1017 if (isVarArg) Params.pop_back();
1018
Chris Lattner8b88b3b2002-04-04 19:23:55 +00001019 $$ = new PATypeHolder(HandleUpRefs(FunctionType::get(*$1,Params,isVarArg)));
Chris Lattner30c89792001-09-07 16:35:17 +00001020 delete $3; // Delete the argument list
Chris Lattnerc7d3f6b2003-12-31 02:18:11 +00001021 delete $1; // Delete the return type handle
Chris Lattner30c89792001-09-07 16:35:17 +00001022 }
Chris Lattnerd05adbc2001-10-03 03:19:33 +00001023 | '[' EUINT64VAL 'x' UpRTypes ']' { // Sized array type?
Chris Lattner8b88b3b2002-04-04 19:23:55 +00001024 $$ = new PATypeHolder(HandleUpRefs(ArrayType::get(*$4, (unsigned)$2)));
Chris Lattnerd05adbc2001-10-03 03:19:33 +00001025 delete $4;
Chris Lattner30c89792001-09-07 16:35:17 +00001026 }
Chris Lattnerd05adbc2001-10-03 03:19:33 +00001027 | '{' TypeListI '}' { // Structure type?
Chris Lattner9232b992003-04-22 18:42:41 +00001028 std::vector<const Type*> Elements;
Chris Lattner697954c2002-01-20 22:54:45 +00001029 mapto($2->begin(), $2->end(), std::back_inserter(Elements),
Chris Lattner876dc572003-10-02 19:00:34 +00001030 std::mem_fun_ref(&PATypeHolder::get));
Chris Lattner30c89792001-09-07 16:35:17 +00001031
Chris Lattner8b88b3b2002-04-04 19:23:55 +00001032 $$ = new PATypeHolder(HandleUpRefs(StructType::get(Elements)));
Chris Lattnerd05adbc2001-10-03 03:19:33 +00001033 delete $2;
1034 }
1035 | '{' '}' { // Empty structure type?
Chris Lattner9232b992003-04-22 18:42:41 +00001036 $$ = new PATypeHolder(StructType::get(std::vector<const Type*>()));
Chris Lattnerd05adbc2001-10-03 03:19:33 +00001037 }
1038 | UpRTypes '*' { // Pointer type?
Chris Lattner8b88b3b2002-04-04 19:23:55 +00001039 $$ = new PATypeHolder(HandleUpRefs(PointerType::get(*$1)));
Chris Lattnerd05adbc2001-10-03 03:19:33 +00001040 delete $1;
Chris Lattner51727be2002-06-04 21:58:56 +00001041 };
Chris Lattner30c89792001-09-07 16:35:17 +00001042
Chris Lattner7e708292002-06-25 16:13:24 +00001043// TypeList - Used for struct declarations and as a basis for function type
Chris Lattner30c89792001-09-07 16:35:17 +00001044// declaration type lists
1045//
1046TypeListI : UpRTypes {
Chris Lattner9232b992003-04-22 18:42:41 +00001047 $$ = new std::list<PATypeHolder>();
Chris Lattner30c89792001-09-07 16:35:17 +00001048 $$->push_back(*$1); delete $1;
1049 }
1050 | TypeListI ',' UpRTypes {
1051 ($$=$1)->push_back(*$3); delete $3;
Chris Lattner51727be2002-06-04 21:58:56 +00001052 };
Chris Lattner30c89792001-09-07 16:35:17 +00001053
Chris Lattner7e708292002-06-25 16:13:24 +00001054// ArgTypeList - List of types for a function type declaration...
Chris Lattner30c89792001-09-07 16:35:17 +00001055ArgTypeListI : TypeListI
1056 | TypeListI ',' DOTDOTDOT {
1057 ($$=$1)->push_back(Type::VoidTy);
1058 }
1059 | DOTDOTDOT {
Chris Lattner9232b992003-04-22 18:42:41 +00001060 ($$ = new std::list<PATypeHolder>())->push_back(Type::VoidTy);
Chris Lattner30c89792001-09-07 16:35:17 +00001061 }
1062 | /*empty*/ {
Chris Lattner9232b992003-04-22 18:42:41 +00001063 $$ = new std::list<PATypeHolder>();
Chris Lattner51727be2002-06-04 21:58:56 +00001064 };
Chris Lattner30c89792001-09-07 16:35:17 +00001065
Chris Lattnere98dda62001-07-14 06:10:16 +00001066// ConstVal - The various declarations that go into the constant pool. This
Chris Lattnerd78700d2002-08-16 21:14:40 +00001067// production is used ONLY to represent constants that show up AFTER a 'const',
1068// 'constant' or 'global' token at global scope. Constants that can be inlined
1069// into other expressions (such as integers and constexprs) are handled by the
1070// ResolvedVal, ValueRef and ConstValueRef productions.
Chris Lattnere98dda62001-07-14 06:10:16 +00001071//
Chris Lattnerd05adbc2001-10-03 03:19:33 +00001072ConstVal: Types '[' ConstVector ']' { // Nonempty unsized arr
Chris Lattner949a3622003-07-23 15:30:06 +00001073 const ArrayType *ATy = dyn_cast<ArrayType>($1->get());
Chris Lattnerd05adbc2001-10-03 03:19:33 +00001074 if (ATy == 0)
1075 ThrowException("Cannot make array constant with type: '" +
1076 (*$1)->getDescription() + "'!");
Chris Lattner30c89792001-09-07 16:35:17 +00001077 const Type *ETy = ATy->getElementType();
1078 int NumElements = ATy->getNumElements();
Chris Lattner00950542001-06-06 20:29:01 +00001079
Chris Lattner30c89792001-09-07 16:35:17 +00001080 // Verify that we have the correct size...
1081 if (NumElements != -1 && NumElements != (int)$3->size())
Chris Lattner00950542001-06-06 20:29:01 +00001082 ThrowException("Type mismatch: constant sized array initialized with " +
Chris Lattner30c89792001-09-07 16:35:17 +00001083 utostr($3->size()) + " arguments, but has size of " +
1084 itostr(NumElements) + "!");
Chris Lattner00950542001-06-06 20:29:01 +00001085
Chris Lattner30c89792001-09-07 16:35:17 +00001086 // Verify all elements are correct type!
1087 for (unsigned i = 0; i < $3->size(); i++) {
1088 if (ETy != (*$3)[i]->getType())
Chris Lattner00950542001-06-06 20:29:01 +00001089 ThrowException("Element #" + utostr(i) + " is not of type '" +
Chris Lattner72e00252001-12-14 16:28:42 +00001090 ETy->getDescription() +"' as required!\nIt is of type '"+
1091 (*$3)[i]->getType()->getDescription() + "'.");
Chris Lattner00950542001-06-06 20:29:01 +00001092 }
1093
Chris Lattnere9bb2df2001-12-03 22:26:30 +00001094 $$ = ConstantArray::get(ATy, *$3);
Chris Lattner30c89792001-09-07 16:35:17 +00001095 delete $1; delete $3;
Chris Lattner00950542001-06-06 20:29:01 +00001096 }
Chris Lattnerd05adbc2001-10-03 03:19:33 +00001097 | Types '[' ']' {
Chris Lattner949a3622003-07-23 15:30:06 +00001098 const ArrayType *ATy = dyn_cast<ArrayType>($1->get());
Chris Lattnerd05adbc2001-10-03 03:19:33 +00001099 if (ATy == 0)
1100 ThrowException("Cannot make array constant with type: '" +
1101 (*$1)->getDescription() + "'!");
1102
1103 int NumElements = ATy->getNumElements();
Chris Lattner30c89792001-09-07 16:35:17 +00001104 if (NumElements != -1 && NumElements != 0)
Chris Lattner00950542001-06-06 20:29:01 +00001105 ThrowException("Type mismatch: constant sized array initialized with 0"
Chris Lattner30c89792001-09-07 16:35:17 +00001106 " arguments, but has size of " + itostr(NumElements) +"!");
Chris Lattner9232b992003-04-22 18:42:41 +00001107 $$ = ConstantArray::get(ATy, std::vector<Constant*>());
Chris Lattner30c89792001-09-07 16:35:17 +00001108 delete $1;
Chris Lattner00950542001-06-06 20:29:01 +00001109 }
Chris Lattnerd05adbc2001-10-03 03:19:33 +00001110 | Types 'c' STRINGCONSTANT {
Chris Lattner949a3622003-07-23 15:30:06 +00001111 const ArrayType *ATy = dyn_cast<ArrayType>($1->get());
Chris Lattnerd05adbc2001-10-03 03:19:33 +00001112 if (ATy == 0)
1113 ThrowException("Cannot make array constant with type: '" +
1114 (*$1)->getDescription() + "'!");
1115
Chris Lattner30c89792001-09-07 16:35:17 +00001116 int NumElements = ATy->getNumElements();
1117 const Type *ETy = ATy->getElementType();
1118 char *EndStr = UnEscapeLexed($3, true);
1119 if (NumElements != -1 && NumElements != (EndStr-$3))
Chris Lattner93750fa2001-07-28 17:48:55 +00001120 ThrowException("Can't build string constant of size " +
Chris Lattner30c89792001-09-07 16:35:17 +00001121 itostr((int)(EndStr-$3)) +
1122 " when array has size " + itostr(NumElements) + "!");
Chris Lattner9232b992003-04-22 18:42:41 +00001123 std::vector<Constant*> Vals;
Chris Lattner30c89792001-09-07 16:35:17 +00001124 if (ETy == Type::SByteTy) {
1125 for (char *C = $3; C != EndStr; ++C)
Chris Lattnere9bb2df2001-12-03 22:26:30 +00001126 Vals.push_back(ConstantSInt::get(ETy, *C));
Chris Lattner30c89792001-09-07 16:35:17 +00001127 } else if (ETy == Type::UByteTy) {
1128 for (char *C = $3; C != EndStr; ++C)
Chris Lattnerbae362f2003-01-30 22:24:26 +00001129 Vals.push_back(ConstantUInt::get(ETy, (unsigned char)*C));
Chris Lattner93750fa2001-07-28 17:48:55 +00001130 } else {
Chris Lattner30c89792001-09-07 16:35:17 +00001131 free($3);
Chris Lattner93750fa2001-07-28 17:48:55 +00001132 ThrowException("Cannot build string arrays of non byte sized elements!");
1133 }
Chris Lattner30c89792001-09-07 16:35:17 +00001134 free($3);
Chris Lattnere9bb2df2001-12-03 22:26:30 +00001135 $$ = ConstantArray::get(ATy, Vals);
Chris Lattner30c89792001-09-07 16:35:17 +00001136 delete $1;
Chris Lattner93750fa2001-07-28 17:48:55 +00001137 }
Chris Lattnerd05adbc2001-10-03 03:19:33 +00001138 | Types '{' ConstVector '}' {
Chris Lattner949a3622003-07-23 15:30:06 +00001139 const StructType *STy = dyn_cast<StructType>($1->get());
Chris Lattnerd05adbc2001-10-03 03:19:33 +00001140 if (STy == 0)
1141 ThrowException("Cannot make struct constant with type: '" +
1142 (*$1)->getDescription() + "'!");
Chris Lattneraf76d0e2003-04-15 16:09:31 +00001143
Chris Lattnerc6212f12003-05-21 16:06:56 +00001144 if ($3->size() != STy->getNumContainedTypes())
1145 ThrowException("Illegal number of initializers for structure type!");
1146
Chris Lattneraf76d0e2003-04-15 16:09:31 +00001147 // Check to ensure that constants are compatible with the type initializer!
1148 for (unsigned i = 0, e = $3->size(); i != e; ++i)
Chris Lattnerd21cd802004-02-09 04:37:31 +00001149 if ((*$3)[i]->getType() != STy->getElementType(i))
Chris Lattneraf76d0e2003-04-15 16:09:31 +00001150 ThrowException("Expected type '" +
Chris Lattnerd21cd802004-02-09 04:37:31 +00001151 STy->getElementType(i)->getDescription() +
Chris Lattneraf76d0e2003-04-15 16:09:31 +00001152 "' for element #" + utostr(i) +
1153 " of structure initializer!");
1154
Chris Lattnere9bb2df2001-12-03 22:26:30 +00001155 $$ = ConstantStruct::get(STy, *$3);
Chris Lattner30c89792001-09-07 16:35:17 +00001156 delete $1; delete $3;
Chris Lattner00950542001-06-06 20:29:01 +00001157 }
Chris Lattnerc6212f12003-05-21 16:06:56 +00001158 | Types '{' '}' {
Chris Lattner949a3622003-07-23 15:30:06 +00001159 const StructType *STy = dyn_cast<StructType>($1->get());
Chris Lattnerc6212f12003-05-21 16:06:56 +00001160 if (STy == 0)
1161 ThrowException("Cannot make struct constant with type: '" +
1162 (*$1)->getDescription() + "'!");
1163
1164 if (STy->getNumContainedTypes() != 0)
1165 ThrowException("Illegal number of initializers for structure type!");
1166
1167 $$ = ConstantStruct::get(STy, std::vector<Constant*>());
1168 delete $1;
1169 }
Chris Lattnerd05adbc2001-10-03 03:19:33 +00001170 | Types NULL_TOK {
Chris Lattner949a3622003-07-23 15:30:06 +00001171 const PointerType *PTy = dyn_cast<PointerType>($1->get());
Chris Lattnerd05adbc2001-10-03 03:19:33 +00001172 if (PTy == 0)
1173 ThrowException("Cannot make null pointer constant with type: '" +
1174 (*$1)->getDescription() + "'!");
1175
Chris Lattnere9bb2df2001-12-03 22:26:30 +00001176 $$ = ConstantPointerNull::get(PTy);
Chris Lattnerdf7306f2001-10-03 01:49:25 +00001177 delete $1;
1178 }
Chris Lattner2079fde2001-10-13 06:41:08 +00001179 | Types SymbolicValueRef {
Chris Lattner949a3622003-07-23 15:30:06 +00001180 const PointerType *Ty = dyn_cast<PointerType>($1->get());
Chris Lattnerf4ba6c72001-10-03 06:12:09 +00001181 if (Ty == 0)
1182 ThrowException("Global const reference must be a pointer type!");
1183
Chris Lattner3101c252002-08-15 17:58:33 +00001184 // ConstExprs can exist in the body of a function, thus creating
1185 // ConstantPointerRefs whenever they refer to a variable. Because we are in
1186 // the context of a function, getValNonImprovising will search the functions
1187 // symbol table instead of the module symbol table for the global symbol,
1188 // which throws things all off. To get around this, we just tell
1189 // getValNonImprovising that we are at global scope here.
1190 //
Chris Lattner394f2eb2003-10-16 20:12:13 +00001191 Function *SavedCurFn = CurFun.CurrentFunction;
1192 CurFun.CurrentFunction = 0;
Chris Lattner3101c252002-08-15 17:58:33 +00001193
Chris Lattner2079fde2001-10-13 06:41:08 +00001194 Value *V = getValNonImprovising(Ty, $2);
Chris Lattnerf4ba6c72001-10-03 06:12:09 +00001195
Chris Lattner394f2eb2003-10-16 20:12:13 +00001196 CurFun.CurrentFunction = SavedCurFn;
Chris Lattner3101c252002-08-15 17:58:33 +00001197
Chris Lattner2079fde2001-10-13 06:41:08 +00001198 // If this is an initializer for a constant pointer, which is referencing a
1199 // (currently) undefined variable, create a stub now that shall be replaced
1200 // in the future with the right type of variable.
1201 //
1202 if (V == 0) {
1203 assert(isa<PointerType>(Ty) && "Globals may only be used as pointers!");
1204 const PointerType *PT = cast<PointerType>(Ty);
1205
1206 // First check to see if the forward references value is already created!
1207 PerModuleInfo::GlobalRefsType::iterator I =
Chris Lattner9232b992003-04-22 18:42:41 +00001208 CurModule.GlobalRefs.find(std::make_pair(PT, $2));
Chris Lattner2079fde2001-10-13 06:41:08 +00001209
1210 if (I != CurModule.GlobalRefs.end()) {
1211 V = I->second; // Placeholder already exists, use it...
Chris Lattnera989b232003-12-23 20:05:15 +00001212 $2.destroy();
Chris Lattner2079fde2001-10-13 06:41:08 +00001213 } else {
Chris Lattner2079fde2001-10-13 06:41:08 +00001214 // Create a placeholder for the global variable reference...
Chris Lattner7a176752001-12-04 00:03:30 +00001215 GlobalVariable *GV = new GlobalVariable(PT->getElementType(),
Chris Lattner4ad02e72003-04-16 20:28:45 +00001216 false,
1217 GlobalValue::ExternalLinkage);
Chris Lattner2079fde2001-10-13 06:41:08 +00001218 // Keep track of the fact that we have a forward ref to recycle it
Chris Lattner9232b992003-04-22 18:42:41 +00001219 CurModule.GlobalRefs.insert(std::make_pair(std::make_pair(PT, $2), GV));
Chris Lattner2079fde2001-10-13 06:41:08 +00001220
1221 // Must temporarily push this value into the module table...
1222 CurModule.CurrentModule->getGlobalList().push_back(GV);
1223 V = GV;
1224 }
Chris Lattnerf4ba6c72001-10-03 06:12:09 +00001225 }
1226
Chris Lattner2079fde2001-10-13 06:41:08 +00001227 GlobalValue *GV = cast<GlobalValue>(V);
Chris Lattnere9bb2df2001-12-03 22:26:30 +00001228 $$ = ConstantPointerRef::get(GV);
Chris Lattner2079fde2001-10-13 06:41:08 +00001229 delete $1; // Free the type handle
Vikram S. Adved3f7eb02002-07-14 22:59:28 +00001230 }
Chris Lattnerd78700d2002-08-16 21:14:40 +00001231 | Types ConstExpr {
1232 if ($1->get() != $2->getType())
1233 ThrowException("Mismatched types for constant expression!");
1234 $$ = $2;
1235 delete $1;
Chris Lattnerf4600482003-06-28 20:01:34 +00001236 }
1237 | Types ZEROINITIALIZER {
1238 $$ = Constant::getNullValue($1->get());
1239 delete $1;
Chris Lattner51727be2002-06-04 21:58:56 +00001240 };
Chris Lattnerf4ba6c72001-10-03 06:12:09 +00001241
Chris Lattnere43f40b2002-10-09 00:25:32 +00001242ConstVal : SIntType EINT64VAL { // integral constants
Chris Lattnerd05e3592002-08-15 18:17:28 +00001243 if (!ConstantSInt::isValueValidForType($1, $2))
1244 ThrowException("Constant value doesn't fit in type!");
1245 $$ = ConstantSInt::get($1, $2);
Chris Lattnere43f40b2002-10-09 00:25:32 +00001246 }
1247 | UIntType EUINT64VAL { // integral constants
Chris Lattnerd05e3592002-08-15 18:17:28 +00001248 if (!ConstantUInt::isValueValidForType($1, $2))
1249 ThrowException("Constant value doesn't fit in type!");
1250 $$ = ConstantUInt::get($1, $2);
Chris Lattnere43f40b2002-10-09 00:25:32 +00001251 }
Chris Lattner91ef4602004-03-31 03:49:47 +00001252 | BOOL TRUETOK { // Boolean constants
Chris Lattnerd05e3592002-08-15 18:17:28 +00001253 $$ = ConstantBool::True;
1254 }
Chris Lattner91ef4602004-03-31 03:49:47 +00001255 | BOOL FALSETOK { // Boolean constants
Chris Lattnerd05e3592002-08-15 18:17:28 +00001256 $$ = ConstantBool::False;
1257 }
1258 | FPType FPVAL { // Float & Double constants
1259 $$ = ConstantFP::get($1, $2);
1260 };
1261
Chris Lattner00950542001-06-06 20:29:01 +00001262
Chris Lattnerd78700d2002-08-16 21:14:40 +00001263ConstExpr: CAST '(' ConstVal TO Types ')' {
Chris Lattnerae711a82003-11-21 20:27:35 +00001264 if (!$3->getType()->isFirstClassType())
1265 ThrowException("cast constant expression from a non-primitive type: '" +
1266 $3->getType()->getDescription() + "'!");
Chris Lattner0f3bc5e2003-10-10 03:56:01 +00001267 if (!$5->get()->isFirstClassType())
1268 ThrowException("cast constant expression to a non-primitive type: '" +
1269 $5->get()->getDescription() + "'!");
Chris Lattnerec1b8a02002-08-15 19:37:11 +00001270 $$ = ConstantExpr::getCast($3, $5->get());
Chris Lattnerec1b8a02002-08-15 19:37:11 +00001271 delete $5;
Vikram S. Adved3f7eb02002-07-14 22:59:28 +00001272 }
Chris Lattnerd78700d2002-08-16 21:14:40 +00001273 | GETELEMENTPTR '(' ConstVal IndexList ')' {
1274 if (!isa<PointerType>($3->getType()))
Chris Lattnerc188eeb2002-07-30 18:54:25 +00001275 ThrowException("GetElementPtr requires a pointer operand!");
1276
Chris Lattner830b6f92004-04-05 01:30:04 +00001277 // LLVM 1.2 and earlier used ubyte struct indices. Convert any ubyte struct
1278 // indices to uint struct indices for compatibility.
1279 generic_gep_type_iterator<std::vector<Value*>::iterator>
1280 GTI = gep_type_begin($3->getType(), $4->begin(), $4->end()),
1281 GTE = gep_type_end($3->getType(), $4->begin(), $4->end());
1282 for (unsigned i = 0, e = $4->size(); i != e && GTI != GTE; ++i, ++GTI)
1283 if (isa<StructType>(*GTI)) // Only change struct indices
1284 if (ConstantUInt *CUI = dyn_cast<ConstantUInt>((*$4)[i]))
1285 if (CUI->getType() == Type::UByteTy)
1286 (*$4)[i] = ConstantExpr::getCast(CUI, Type::UIntTy);
1287
Chris Lattnerc188eeb2002-07-30 18:54:25 +00001288 const Type *IdxTy =
Chris Lattnerd78700d2002-08-16 21:14:40 +00001289 GetElementPtrInst::getIndexedType($3->getType(), *$4, true);
Chris Lattnerc188eeb2002-07-30 18:54:25 +00001290 if (!IdxTy)
1291 ThrowException("Index list invalid for constant getelementptr!");
Chris Lattnerc188eeb2002-07-30 18:54:25 +00001292
Chris Lattner9232b992003-04-22 18:42:41 +00001293 std::vector<Constant*> IdxVec;
Chris Lattnerd78700d2002-08-16 21:14:40 +00001294 for (unsigned i = 0, e = $4->size(); i != e; ++i)
1295 if (Constant *C = dyn_cast<Constant>((*$4)[i]))
Chris Lattnercc4b6ec2002-07-18 00:14:27 +00001296 IdxVec.push_back(C);
1297 else
Chris Lattnerc188eeb2002-07-30 18:54:25 +00001298 ThrowException("Indices to constant getelementptr must be constants!");
Chris Lattnercc4b6ec2002-07-18 00:14:27 +00001299
Chris Lattnerd78700d2002-08-16 21:14:40 +00001300 delete $4;
Chris Lattnercc4b6ec2002-07-18 00:14:27 +00001301
Chris Lattnerd78700d2002-08-16 21:14:40 +00001302 $$ = ConstantExpr::getGetElementPtr($3, IdxVec);
Vikram S. Adved3f7eb02002-07-14 22:59:28 +00001303 }
Chris Lattner76f0ff32004-03-12 05:51:36 +00001304 | SELECT '(' ConstVal ',' ConstVal ',' ConstVal ')' {
1305 if ($3->getType() != Type::BoolTy)
1306 ThrowException("Select condition must be of boolean type!");
1307 if ($5->getType() != $7->getType())
1308 ThrowException("Select operand types must match!");
1309 $$ = ConstantExpr::getSelect($3, $5, $7);
1310 }
Chris Lattnerd78700d2002-08-16 21:14:40 +00001311 | BinaryOps '(' ConstVal ',' ConstVal ')' {
Chris Lattnerc188eeb2002-07-30 18:54:25 +00001312 if ($3->getType() != $5->getType())
1313 ThrowException("Binary operator types must match!");
Chris Lattnerd78700d2002-08-16 21:14:40 +00001314 $$ = ConstantExpr::get($1, $3, $5);
Vikram S. Adved3f7eb02002-07-14 22:59:28 +00001315 }
Chris Lattnerd78700d2002-08-16 21:14:40 +00001316 | ShiftOps '(' ConstVal ',' ConstVal ')' {
Chris Lattnerc188eeb2002-07-30 18:54:25 +00001317 if ($5->getType() != Type::UByteTy)
1318 ThrowException("Shift count for shift constant must be unsigned byte!");
Chris Lattner888d3bc2003-10-17 05:11:44 +00001319 if (!$3->getType()->isInteger())
1320 ThrowException("Shift constant expression requires integer operand!");
Chris Lattnerb16689b2004-01-12 19:08:43 +00001321 $$ = ConstantExpr::get($1, $3, $5);
Chris Lattner699f1eb2002-08-14 17:12:33 +00001322 };
Vikram S. Adved3f7eb02002-07-14 22:59:28 +00001323
1324
Misha Brukmanbc0e9982003-07-14 17:20:40 +00001325// ConstVector - A list of comma separated constants.
Chris Lattner00950542001-06-06 20:29:01 +00001326ConstVector : ConstVector ',' ConstVal {
Chris Lattner30c89792001-09-07 16:35:17 +00001327 ($$ = $1)->push_back($3);
Chris Lattner00950542001-06-06 20:29:01 +00001328 }
1329 | ConstVal {
Chris Lattner9232b992003-04-22 18:42:41 +00001330 $$ = new std::vector<Constant*>();
Chris Lattner30c89792001-09-07 16:35:17 +00001331 $$->push_back($1);
Chris Lattner51727be2002-06-04 21:58:56 +00001332 };
Chris Lattner00950542001-06-06 20:29:01 +00001333
Chris Lattnerbcbf6ba2001-07-26 16:29:15 +00001334
Chris Lattner1781aca2001-09-18 04:00:54 +00001335// GlobalType - Match either GLOBAL or CONSTANT for global declarations...
Chris Lattner51727be2002-06-04 21:58:56 +00001336GlobalType : GLOBAL { $$ = false; } | CONSTANT { $$ = true; };
Chris Lattner1781aca2001-09-18 04:00:54 +00001337
Chris Lattner00950542001-06-06 20:29:01 +00001338
Chris Lattner0e73ce62002-05-02 19:11:13 +00001339//===----------------------------------------------------------------------===//
1340// Rules to match Modules
1341//===----------------------------------------------------------------------===//
1342
1343// Module rule: Capture the result of parsing the whole file into a result
1344// variable...
1345//
1346Module : FunctionList {
1347 $$ = ParserResult = $1;
1348 CurModule.ModuleDone();
Chris Lattner51727be2002-06-04 21:58:56 +00001349};
Chris Lattner0e73ce62002-05-02 19:11:13 +00001350
Chris Lattner7e708292002-06-25 16:13:24 +00001351// FunctionList - A list of functions, preceeded by a constant pool.
Chris Lattner0e73ce62002-05-02 19:11:13 +00001352//
1353FunctionList : FunctionList Function {
1354 $$ = $1;
Chris Lattner394f2eb2003-10-16 20:12:13 +00001355 CurFun.FunctionDone();
Chris Lattner0e73ce62002-05-02 19:11:13 +00001356 }
1357 | FunctionList FunctionProto {
1358 $$ = $1;
1359 }
1360 | FunctionList IMPLEMENTATION {
1361 $$ = $1;
1362 }
1363 | ConstPool {
1364 $$ = CurModule.CurrentModule;
1365 // Resolve circular types before we parse the body of the module
1366 ResolveTypes(CurModule.LateResolveTypes);
Chris Lattner51727be2002-06-04 21:58:56 +00001367 };
Chris Lattner0e73ce62002-05-02 19:11:13 +00001368
Chris Lattnere98dda62001-07-14 06:10:16 +00001369// ConstPool - Constants with optional names assigned to them.
Chris Lattnerdf7306f2001-10-03 01:49:25 +00001370ConstPool : ConstPool OptAssign CONST ConstVal {
Chris Lattneradf99702003-03-03 23:28:55 +00001371 if (!setValueName($4, $2))
1372 InsertValue($4);
Chris Lattner00950542001-06-06 20:29:01 +00001373 }
Chris Lattner30c89792001-09-07 16:35:17 +00001374 | ConstPool OptAssign TYPE TypesV { // Types can be defined in the const pool
Chris Lattner4a42e902001-10-22 05:56:09 +00001375 // Eagerly resolve types. This is not an optimization, this is a
1376 // requirement that is due to the fact that we could have this:
1377 //
1378 // %list = type { %list * }
1379 // %list = type { %list * } ; repeated type decl
1380 //
1381 // If types are not resolved eagerly, then the two types will not be
1382 // determined to be the same type!
1383 //
1384 ResolveTypeTo($2, $4->get());
1385
Chris Lattner1781aca2001-09-18 04:00:54 +00001386 // TODO: FIXME when Type are not const
Reid Spencer75719bf2004-05-26 21:48:31 +00001387 if (!setTypeName(const_cast<Type*>($4->get()), $2)) {
Chris Lattnerb7474512001-10-03 15:39:04 +00001388 // If this is not a redefinition of a type...
1389 if (!$2) {
1390 InsertType($4->get(),
Chris Lattner394f2eb2003-10-16 20:12:13 +00001391 inFunctionScope() ? CurFun.Types : CurModule.Types);
Chris Lattnerb7474512001-10-03 15:39:04 +00001392 }
Chris Lattner30c89792001-09-07 16:35:17 +00001393 }
Chris Lattnerc9a21b52001-10-21 23:02:41 +00001394
1395 delete $4;
Chris Lattner30c89792001-09-07 16:35:17 +00001396 }
Chris Lattner79df7c02002-03-26 18:01:55 +00001397 | ConstPool FunctionProto { // Function prototypes can be in const pool
Chris Lattner93750fa2001-07-28 17:48:55 +00001398 }
Chris Lattner4ad02e72003-04-16 20:28:45 +00001399 | ConstPool OptAssign OptLinkage GlobalType ConstVal {
Chris Lattnerdda71962001-11-26 18:54:16 +00001400 const Type *Ty = $5->getType();
Chris Lattner1781aca2001-09-18 04:00:54 +00001401 // Global declarations appear in Constant Pool
Chris Lattnere9bb2df2001-12-03 22:26:30 +00001402 Constant *Initializer = $5;
Chris Lattner1781aca2001-09-18 04:00:54 +00001403 if (Initializer == 0)
1404 ThrowException("Global value initializer is not a constant!");
Vikram S. Adved3f7eb02002-07-14 22:59:28 +00001405
Chris Lattnerdda71962001-11-26 18:54:16 +00001406 GlobalVariable *GV = new GlobalVariable(Ty, $4, $3, Initializer);
Chris Lattnerb7474512001-10-03 15:39:04 +00001407 if (!setValueName(GV, $2)) { // If not redefining...
1408 CurModule.CurrentModule->getGlobalList().push_back(GV);
Chris Lattner2079fde2001-10-13 06:41:08 +00001409 int Slot = InsertValue(GV, CurModule.Values);
1410
1411 if (Slot != -1) {
1412 CurModule.DeclareNewGlobalValue(GV, ValID::create(Slot));
1413 } else {
1414 CurModule.DeclareNewGlobalValue(GV, ValID::create(
1415 (char*)GV->getName().c_str()));
1416 }
Chris Lattnerb7474512001-10-03 15:39:04 +00001417 }
Chris Lattner1781aca2001-09-18 04:00:54 +00001418 }
Chris Lattner1f862af2003-04-16 18:13:57 +00001419 | ConstPool OptAssign EXTERNAL GlobalType Types {
1420 const Type *Ty = *$5;
Chris Lattner1781aca2001-09-18 04:00:54 +00001421 // Global declarations appear in Constant Pool
Chris Lattner4ad02e72003-04-16 20:28:45 +00001422 GlobalVariable *GV = new GlobalVariable(Ty,$4,GlobalValue::ExternalLinkage);
Chris Lattnerb7474512001-10-03 15:39:04 +00001423 if (!setValueName(GV, $2)) { // If not redefining...
1424 CurModule.CurrentModule->getGlobalList().push_back(GV);
Chris Lattner2079fde2001-10-13 06:41:08 +00001425 int Slot = InsertValue(GV, CurModule.Values);
1426
1427 if (Slot != -1) {
1428 CurModule.DeclareNewGlobalValue(GV, ValID::create(Slot));
1429 } else {
1430 assert(GV->hasName() && "Not named and not numbered!?");
1431 CurModule.DeclareNewGlobalValue(GV, ValID::create(
1432 (char*)GV->getName().c_str()));
1433 }
Chris Lattnerb7474512001-10-03 15:39:04 +00001434 }
Chris Lattner1f862af2003-04-16 18:13:57 +00001435 delete $5;
Chris Lattnere98dda62001-07-14 06:10:16 +00001436 }
Chris Lattnerb9bcbb52003-04-22 19:07:06 +00001437 | ConstPool TARGET TargetDefinition {
1438 }
Chris Lattner00950542001-06-06 20:29:01 +00001439 | /* empty: end of list */ {
Chris Lattner51727be2002-06-04 21:58:56 +00001440 };
Chris Lattner00950542001-06-06 20:29:01 +00001441
1442
Chris Lattnerb9bcbb52003-04-22 19:07:06 +00001443
1444BigOrLittle : BIG { $$ = Module::BigEndian; };
1445BigOrLittle : LITTLE { $$ = Module::LittleEndian; };
1446
1447TargetDefinition : ENDIAN '=' BigOrLittle {
1448 CurModule.CurrentModule->setEndianness($3);
1449 }
1450 | POINTERSIZE '=' EUINT64VAL {
1451 if ($3 == 32)
1452 CurModule.CurrentModule->setPointerSize(Module::Pointer32);
1453 else if ($3 == 64)
1454 CurModule.CurrentModule->setPointerSize(Module::Pointer64);
1455 else
1456 ThrowException("Invalid pointer size: '" + utostr($3) + "'!");
1457 };
1458
1459
Chris Lattner00950542001-06-06 20:29:01 +00001460//===----------------------------------------------------------------------===//
Chris Lattner79df7c02002-03-26 18:01:55 +00001461// Rules to match Function Headers
Chris Lattner00950542001-06-06 20:29:01 +00001462//===----------------------------------------------------------------------===//
1463
Chris Lattner6c23f572003-08-22 05:42:10 +00001464Name : VAR_ID | STRINGCONSTANT;
1465OptName : Name | /*empty*/ { $$ = 0; };
Chris Lattner00950542001-06-06 20:29:01 +00001466
Chris Lattner6c23f572003-08-22 05:42:10 +00001467ArgVal : Types OptName {
Chris Lattner69da5cf2002-10-13 20:57:00 +00001468 if (*$1 == Type::VoidTy)
1469 ThrowException("void typed arguments are invalid!");
Chris Lattner9232b992003-04-22 18:42:41 +00001470 $$ = new std::pair<PATypeHolder*, char*>($1, $2);
Chris Lattner51727be2002-06-04 21:58:56 +00001471};
Chris Lattner00950542001-06-06 20:29:01 +00001472
Chris Lattner69da5cf2002-10-13 20:57:00 +00001473ArgListH : ArgListH ',' ArgVal {
1474 $$ = $1;
1475 $1->push_back(*$3);
1476 delete $3;
Chris Lattner00950542001-06-06 20:29:01 +00001477 }
1478 | ArgVal {
Chris Lattner9232b992003-04-22 18:42:41 +00001479 $$ = new std::vector<std::pair<PATypeHolder*,char*> >();
Chris Lattner69da5cf2002-10-13 20:57:00 +00001480 $$->push_back(*$1);
Chris Lattnerf28d6c92002-03-08 18:41:32 +00001481 delete $1;
Chris Lattner51727be2002-06-04 21:58:56 +00001482 };
Chris Lattner00950542001-06-06 20:29:01 +00001483
1484ArgList : ArgListH {
1485 $$ = $1;
1486 }
Chris Lattner69da5cf2002-10-13 20:57:00 +00001487 | ArgListH ',' DOTDOTDOT {
1488 $$ = $1;
Chris Lattner9232b992003-04-22 18:42:41 +00001489 $$->push_back(std::pair<PATypeHolder*,
1490 char*>(new PATypeHolder(Type::VoidTy), 0));
Chris Lattner69da5cf2002-10-13 20:57:00 +00001491 }
1492 | DOTDOTDOT {
Chris Lattner9232b992003-04-22 18:42:41 +00001493 $$ = new std::vector<std::pair<PATypeHolder*,char*> >();
1494 $$->push_back(std::make_pair(new PATypeHolder(Type::VoidTy), (char*)0));
Chris Lattner69da5cf2002-10-13 20:57:00 +00001495 }
Chris Lattner00950542001-06-06 20:29:01 +00001496 | /* empty */ {
1497 $$ = 0;
Chris Lattner51727be2002-06-04 21:58:56 +00001498 };
Chris Lattner00950542001-06-06 20:29:01 +00001499
Chris Lattner6c23f572003-08-22 05:42:10 +00001500FunctionHeaderH : TypesV Name '(' ArgList ')' {
Chris Lattner1f862af2003-04-16 18:13:57 +00001501 UnEscapeLexed($2);
Chris Lattner9232b992003-04-22 18:42:41 +00001502 std::string FunctionName($2);
Chris Lattnerdda71962001-11-26 18:54:16 +00001503
Chris Lattnerc282f5a2003-11-21 22:32:23 +00001504 if (!(*$1)->isFirstClassType() && *$1 != Type::VoidTy)
1505 ThrowException("LLVM functions cannot return aggregate types!");
1506
Chris Lattner9232b992003-04-22 18:42:41 +00001507 std::vector<const Type*> ParamTypeList;
Chris Lattner1f862af2003-04-16 18:13:57 +00001508 if ($4) { // If there are arguments...
Chris Lattner9232b992003-04-22 18:42:41 +00001509 for (std::vector<std::pair<PATypeHolder*,char*> >::iterator I = $4->begin();
Chris Lattner1f862af2003-04-16 18:13:57 +00001510 I != $4->end(); ++I)
Chris Lattner69da5cf2002-10-13 20:57:00 +00001511 ParamTypeList.push_back(I->first->get());
Chris Lattnerbf0a37b2002-10-15 21:41:14 +00001512 }
Chris Lattner00950542001-06-06 20:29:01 +00001513
Chris Lattner2079fde2001-10-13 06:41:08 +00001514 bool isVarArg = ParamTypeList.size() && ParamTypeList.back() == Type::VoidTy;
1515 if (isVarArg) ParamTypeList.pop_back();
1516
Chris Lattner1f862af2003-04-16 18:13:57 +00001517 const FunctionType *FT = FunctionType::get(*$1, ParamTypeList, isVarArg);
Chris Lattnerbf0a37b2002-10-15 21:41:14 +00001518 const PointerType *PFT = PointerType::get(FT);
Chris Lattner1f862af2003-04-16 18:13:57 +00001519 delete $1;
Chris Lattner00950542001-06-06 20:29:01 +00001520
Chris Lattnerbf0a37b2002-10-15 21:41:14 +00001521 Function *Fn = 0;
1522 // Is the function already in symtab?
1523 if ((Fn = CurModule.CurrentModule->getFunction(FunctionName, FT))) {
1524 // Yes it is. If this is the case, either we need to be a forward decl,
1525 // or it needs to be.
Chris Lattner394f2eb2003-10-16 20:12:13 +00001526 if (!CurFun.isDeclare && !Fn->isExternal())
Chris Lattnerbf0a37b2002-10-15 21:41:14 +00001527 ThrowException("Redefinition of function '" + FunctionName + "'!");
1528
Chris Lattnerbf0a37b2002-10-15 21:41:14 +00001529 // Make sure to strip off any argument names so we can't get conflicts...
1530 for (Function::aiterator AI = Fn->abegin(), AE = Fn->aend(); AI != AE; ++AI)
1531 AI->setName("");
Chris Lattner5659dd12002-07-15 00:10:33 +00001532
Chris Lattnerbf0a37b2002-10-15 21:41:14 +00001533 } else { // Not already defined?
Chris Lattner63a22502004-03-08 16:14:19 +00001534 Fn = new Function(FT, GlobalValue::ExternalLinkage, FunctionName,
1535 CurModule.CurrentModule);
Chris Lattnerbf0a37b2002-10-15 21:41:14 +00001536 InsertValue(Fn, CurModule.Values);
Chris Lattner1f862af2003-04-16 18:13:57 +00001537 CurModule.DeclareNewGlobalValue(Fn, ValID::create($2));
Chris Lattnere1815642001-07-15 06:35:53 +00001538 }
Chris Lattner1f862af2003-04-16 18:13:57 +00001539 free($2); // Free strdup'd memory!
Chris Lattner00950542001-06-06 20:29:01 +00001540
Chris Lattner394f2eb2003-10-16 20:12:13 +00001541 CurFun.FunctionStart(Fn);
Chris Lattner00950542001-06-06 20:29:01 +00001542
Chris Lattner7e708292002-06-25 16:13:24 +00001543 // Add all of the arguments we parsed to the function...
Chris Lattner1f862af2003-04-16 18:13:57 +00001544 if ($4) { // Is null if empty...
Chris Lattner69da5cf2002-10-13 20:57:00 +00001545 if (isVarArg) { // Nuke the last entry
Chris Lattner1f862af2003-04-16 18:13:57 +00001546 assert($4->back().first->get() == Type::VoidTy && $4->back().second == 0&&
Chris Lattner69da5cf2002-10-13 20:57:00 +00001547 "Not a varargs marker!");
Chris Lattner1f862af2003-04-16 18:13:57 +00001548 delete $4->back().first;
1549 $4->pop_back(); // Delete the last entry
Chris Lattner69da5cf2002-10-13 20:57:00 +00001550 }
Chris Lattnerbf0a37b2002-10-15 21:41:14 +00001551 Function::aiterator ArgIt = Fn->abegin();
Chris Lattner9232b992003-04-22 18:42:41 +00001552 for (std::vector<std::pair<PATypeHolder*, char*> >::iterator I =$4->begin();
Chris Lattner1f862af2003-04-16 18:13:57 +00001553 I != $4->end(); ++I, ++ArgIt) {
Chris Lattner69da5cf2002-10-13 20:57:00 +00001554 delete I->first; // Delete the typeholder...
1555
1556 if (setValueName(ArgIt, I->second)) // Insert arg into symtab...
Chris Lattnerf28d6c92002-03-08 18:41:32 +00001557 assert(0 && "No arg redef allowed!");
Chris Lattnerf28d6c92002-03-08 18:41:32 +00001558
Chris Lattner69da5cf2002-10-13 20:57:00 +00001559 InsertValue(ArgIt);
Chris Lattner00950542001-06-06 20:29:01 +00001560 }
Chris Lattner69da5cf2002-10-13 20:57:00 +00001561
Chris Lattner1f862af2003-04-16 18:13:57 +00001562 delete $4; // We're now done with the argument list
Chris Lattner00950542001-06-06 20:29:01 +00001563 }
Chris Lattner51727be2002-06-04 21:58:56 +00001564};
Chris Lattner00950542001-06-06 20:29:01 +00001565
Chris Lattner9b02cc32002-05-03 18:23:48 +00001566BEGIN : BEGINTOK | '{'; // Allow BEGIN or '{' to start a function
1567
Chris Lattner4ad02e72003-04-16 20:28:45 +00001568FunctionHeader : OptLinkage FunctionHeaderH BEGIN {
Chris Lattner394f2eb2003-10-16 20:12:13 +00001569 $$ = CurFun.CurrentFunction;
Chris Lattner30c89792001-09-07 16:35:17 +00001570
Chris Lattner4ad02e72003-04-16 20:28:45 +00001571 // Make sure that we keep track of the linkage type even if there was a
1572 // previous "declare".
1573 $$->setLinkage($1);
Chris Lattner1f862af2003-04-16 18:13:57 +00001574
Chris Lattner7e708292002-06-25 16:13:24 +00001575 // Resolve circular types before we parse the body of the function.
Chris Lattner394f2eb2003-10-16 20:12:13 +00001576 ResolveTypes(CurFun.LateResolveTypes);
Chris Lattner51727be2002-06-04 21:58:56 +00001577};
Chris Lattner00950542001-06-06 20:29:01 +00001578
Chris Lattner9b02cc32002-05-03 18:23:48 +00001579END : ENDTOK | '}'; // Allow end of '}' to end a function
1580
Chris Lattner79df7c02002-03-26 18:01:55 +00001581Function : BasicBlockList END {
Chris Lattner00950542001-06-06 20:29:01 +00001582 $$ = $1;
Chris Lattner51727be2002-06-04 21:58:56 +00001583};
Chris Lattner00950542001-06-06 20:29:01 +00001584
Chris Lattner394f2eb2003-10-16 20:12:13 +00001585FunctionProto : DECLARE { CurFun.isDeclare = true; } FunctionHeaderH {
1586 $$ = CurFun.CurrentFunction;
Chris Lattner394f2eb2003-10-16 20:12:13 +00001587 CurFun.FunctionDone();
Chris Lattner51727be2002-06-04 21:58:56 +00001588};
Chris Lattner00950542001-06-06 20:29:01 +00001589
1590//===----------------------------------------------------------------------===//
1591// Rules to match Basic Blocks
1592//===----------------------------------------------------------------------===//
1593
1594ConstValueRef : ESINT64VAL { // A reference to a direct constant
1595 $$ = ValID::create($1);
1596 }
1597 | EUINT64VAL {
1598 $$ = ValID::create($1);
1599 }
Chris Lattner3d52b2f2001-07-15 00:17:01 +00001600 | FPVAL { // Perhaps it's an FP constant?
1601 $$ = ValID::create($1);
1602 }
Chris Lattner91ef4602004-03-31 03:49:47 +00001603 | TRUETOK {
Chris Lattnerd78700d2002-08-16 21:14:40 +00001604 $$ = ValID::create(ConstantBool::True);
Chris Lattner00950542001-06-06 20:29:01 +00001605 }
Chris Lattner91ef4602004-03-31 03:49:47 +00001606 | FALSETOK {
Chris Lattnerd78700d2002-08-16 21:14:40 +00001607 $$ = ValID::create(ConstantBool::False);
Chris Lattner00950542001-06-06 20:29:01 +00001608 }
Chris Lattner1a1cb112001-09-30 22:46:54 +00001609 | NULL_TOK {
1610 $$ = ValID::createNull();
Vikram S. Adved3f7eb02002-07-14 22:59:28 +00001611 }
Chris Lattnerd78700d2002-08-16 21:14:40 +00001612 | ConstExpr {
1613 $$ = ValID::create($1);
1614 };
Chris Lattner1a1cb112001-09-30 22:46:54 +00001615
Chris Lattner2079fde2001-10-13 06:41:08 +00001616// SymbolicValueRef - Reference to one of two ways of symbolically refering to
1617// another value.
1618//
1619SymbolicValueRef : INTVAL { // Is it an integer reference...?
Chris Lattner00950542001-06-06 20:29:01 +00001620 $$ = ValID::create($1);
1621 }
Chris Lattner6c23f572003-08-22 05:42:10 +00001622 | Name { // Is it a named reference...?
Chris Lattner00950542001-06-06 20:29:01 +00001623 $$ = ValID::create($1);
Chris Lattner51727be2002-06-04 21:58:56 +00001624 };
Chris Lattner2079fde2001-10-13 06:41:08 +00001625
1626// ValueRef - A reference to a definition... either constant or symbolic
Chris Lattner51727be2002-06-04 21:58:56 +00001627ValueRef : SymbolicValueRef | ConstValueRef;
Chris Lattner2079fde2001-10-13 06:41:08 +00001628
Chris Lattner00950542001-06-06 20:29:01 +00001629
Chris Lattnerbcbf6ba2001-07-26 16:29:15 +00001630// ResolvedVal - a <type> <value> pair. This is used only in cases where the
1631// type immediately preceeds the value reference, and allows complex constant
1632// pool references (for things like: 'ret [2 x int] [ int 12, int 42]')
Chris Lattnerdf7306f2001-10-03 01:49:25 +00001633ResolvedVal : Types ValueRef {
Chris Lattner30c89792001-09-07 16:35:17 +00001634 $$ = getVal(*$1, $2); delete $1;
Chris Lattner51727be2002-06-04 21:58:56 +00001635 };
Chris Lattner8b81bf52001-07-25 22:47:46 +00001636
Chris Lattner00950542001-06-06 20:29:01 +00001637BasicBlockList : BasicBlockList BasicBlock {
Chris Lattner7e708292002-06-25 16:13:24 +00001638 ($$ = $1)->getBasicBlockList().push_back($2);
Chris Lattner00950542001-06-06 20:29:01 +00001639 }
Chris Lattner7e708292002-06-25 16:13:24 +00001640 | FunctionHeader BasicBlock { // Do not allow functions with 0 basic blocks
1641 ($$ = $1)->getBasicBlockList().push_back($2);
Chris Lattner51727be2002-06-04 21:58:56 +00001642 };
Chris Lattner00950542001-06-06 20:29:01 +00001643
1644
1645// Basic blocks are terminated by branching instructions:
1646// br, br/cc, switch, ret
1647//
Chris Lattner2079fde2001-10-13 06:41:08 +00001648BasicBlock : InstructionList OptAssign BBTerminatorInst {
1649 if (setValueName($3, $2)) { assert(0 && "No redefn allowed!"); }
1650 InsertValue($3);
1651
1652 $1->getInstList().push_back($3);
Chris Lattner00950542001-06-06 20:29:01 +00001653 InsertValue($1);
1654 $$ = $1;
1655 }
Chris Lattner2079fde2001-10-13 06:41:08 +00001656 | LABELSTR InstructionList OptAssign BBTerminatorInst {
1657 if (setValueName($4, $3)) { assert(0 && "No redefn allowed!"); }
1658 InsertValue($4);
1659
1660 $2->getInstList().push_back($4);
Chris Lattnerb7474512001-10-03 15:39:04 +00001661 if (setValueName($2, $1)) { assert(0 && "No label redef allowed!"); }
Chris Lattner00950542001-06-06 20:29:01 +00001662
1663 InsertValue($2);
1664 $$ = $2;
Chris Lattner51727be2002-06-04 21:58:56 +00001665 };
Chris Lattner00950542001-06-06 20:29:01 +00001666
1667InstructionList : InstructionList Inst {
1668 $1->getInstList().push_back($2);
1669 $$ = $1;
1670 }
1671 | /* empty */ {
Chris Lattner99e7ab72003-10-18 05:53:13 +00001672 $$ = CurBB = new BasicBlock();
Chris Lattner51727be2002-06-04 21:58:56 +00001673 };
Chris Lattner00950542001-06-06 20:29:01 +00001674
Chris Lattnerbcbf6ba2001-07-26 16:29:15 +00001675BBTerminatorInst : RET ResolvedVal { // Return with a result...
1676 $$ = new ReturnInst($2);
Chris Lattner00950542001-06-06 20:29:01 +00001677 }
1678 | RET VOID { // Return with no result...
1679 $$ = new ReturnInst();
1680 }
1681 | BR LABEL ValueRef { // Unconditional Branch...
Chris Lattner9636a912001-10-01 16:18:37 +00001682 $$ = new BranchInst(cast<BasicBlock>(getVal(Type::LabelTy, $3)));
Chris Lattner00950542001-06-06 20:29:01 +00001683 } // Conditional Branch...
1684 | BR BOOL ValueRef ',' LABEL ValueRef ',' LABEL ValueRef {
Chris Lattner9636a912001-10-01 16:18:37 +00001685 $$ = new BranchInst(cast<BasicBlock>(getVal(Type::LabelTy, $6)),
1686 cast<BasicBlock>(getVal(Type::LabelTy, $9)),
Chris Lattner00950542001-06-06 20:29:01 +00001687 getVal(Type::BoolTy, $3));
1688 }
1689 | SWITCH IntType ValueRef ',' LABEL ValueRef '[' JumpTable ']' {
1690 SwitchInst *S = new SwitchInst(getVal($2, $3),
Chris Lattner9636a912001-10-01 16:18:37 +00001691 cast<BasicBlock>(getVal(Type::LabelTy, $6)));
Chris Lattner00950542001-06-06 20:29:01 +00001692 $$ = S;
1693
Chris Lattner9232b992003-04-22 18:42:41 +00001694 std::vector<std::pair<Constant*,BasicBlock*> >::iterator I = $8->begin(),
Chris Lattner46748042002-04-09 19:41:42 +00001695 E = $8->end();
1696 for (; I != E; ++I)
Chris Lattner4354f562003-08-23 23:14:52 +00001697 S->addCase(I->first, I->second);
Chris Lattnerf57a43d2004-04-17 23:49:15 +00001698 delete $8;
Chris Lattner00950542001-06-06 20:29:01 +00001699 }
Chris Lattner196850c2003-05-15 21:30:00 +00001700 | SWITCH IntType ValueRef ',' LABEL ValueRef '[' ']' {
1701 SwitchInst *S = new SwitchInst(getVal($2, $3),
1702 cast<BasicBlock>(getVal(Type::LabelTy, $6)));
1703 $$ = S;
1704 }
Chris Lattner2079fde2001-10-13 06:41:08 +00001705 | INVOKE TypesV ValueRef '(' ValueRefListE ')' TO ResolvedVal
Chris Lattnera58e3a12004-02-08 21:48:25 +00001706 UNWIND ResolvedVal {
Chris Lattnerbf0a37b2002-10-15 21:41:14 +00001707 const PointerType *PFTy;
Chris Lattner79df7c02002-03-26 18:01:55 +00001708 const FunctionType *Ty;
Chris Lattner2079fde2001-10-13 06:41:08 +00001709
Chris Lattnerbf0a37b2002-10-15 21:41:14 +00001710 if (!(PFTy = dyn_cast<PointerType>($2->get())) ||
1711 !(Ty = dyn_cast<FunctionType>(PFTy->getElementType()))) {
Chris Lattner2079fde2001-10-13 06:41:08 +00001712 // Pull out the types of all of the arguments...
Chris Lattner9232b992003-04-22 18:42:41 +00001713 std::vector<const Type*> ParamTypes;
Chris Lattner2079fde2001-10-13 06:41:08 +00001714 if ($5) {
Chris Lattner9232b992003-04-22 18:42:41 +00001715 for (std::vector<Value*>::iterator I = $5->begin(), E = $5->end();
1716 I != E; ++I)
Chris Lattner2079fde2001-10-13 06:41:08 +00001717 ParamTypes.push_back((*I)->getType());
1718 }
1719
1720 bool isVarArg = ParamTypes.size() && ParamTypes.back() == Type::VoidTy;
1721 if (isVarArg) ParamTypes.pop_back();
1722
Chris Lattner79df7c02002-03-26 18:01:55 +00001723 Ty = FunctionType::get($2->get(), ParamTypes, isVarArg);
Chris Lattnerbf0a37b2002-10-15 21:41:14 +00001724 PFTy = PointerType::get(Ty);
Chris Lattner2079fde2001-10-13 06:41:08 +00001725 }
Chris Lattner2079fde2001-10-13 06:41:08 +00001726
Chris Lattnerbf0a37b2002-10-15 21:41:14 +00001727 Value *V = getVal(PFTy, $3); // Get the function we're calling...
Chris Lattner2079fde2001-10-13 06:41:08 +00001728
1729 BasicBlock *Normal = dyn_cast<BasicBlock>($8);
1730 BasicBlock *Except = dyn_cast<BasicBlock>($10);
1731
1732 if (Normal == 0 || Except == 0)
1733 ThrowException("Invoke instruction without label destinations!");
1734
1735 // Create the call node...
1736 if (!$5) { // Has no arguments?
Chris Lattner9232b992003-04-22 18:42:41 +00001737 $$ = new InvokeInst(V, Normal, Except, std::vector<Value*>());
Chris Lattner2079fde2001-10-13 06:41:08 +00001738 } else { // Has arguments?
Chris Lattner79df7c02002-03-26 18:01:55 +00001739 // Loop through FunctionType's arguments and ensure they are specified
Chris Lattner2079fde2001-10-13 06:41:08 +00001740 // correctly!
1741 //
Chris Lattnerd5d89962004-02-09 04:14:01 +00001742 FunctionType::param_iterator I = Ty->param_begin();
1743 FunctionType::param_iterator E = Ty->param_end();
Chris Lattner9232b992003-04-22 18:42:41 +00001744 std::vector<Value*>::iterator ArgI = $5->begin(), ArgE = $5->end();
Chris Lattner2079fde2001-10-13 06:41:08 +00001745
1746 for (; ArgI != ArgE && I != E; ++ArgI, ++I)
1747 if ((*ArgI)->getType() != *I)
1748 ThrowException("Parameter " +(*ArgI)->getName()+ " is not of type '" +
Chris Lattner72e00252001-12-14 16:28:42 +00001749 (*I)->getDescription() + "'!");
Chris Lattner2079fde2001-10-13 06:41:08 +00001750
1751 if (I != E || (ArgI != ArgE && !Ty->isVarArg()))
1752 ThrowException("Invalid number of parameters detected!");
1753
Chris Lattner6cdb0112001-11-26 16:54:11 +00001754 $$ = new InvokeInst(V, Normal, Except, *$5);
Chris Lattner2079fde2001-10-13 06:41:08 +00001755 }
Chris Lattner9cd42572003-12-23 22:18:36 +00001756 delete $2;
Chris Lattner2079fde2001-10-13 06:41:08 +00001757 delete $5;
Chris Lattner36143fc2003-09-08 18:54:55 +00001758 }
1759 | UNWIND {
1760 $$ = new UnwindInst();
Chris Lattner51727be2002-06-04 21:58:56 +00001761 };
Chris Lattner2079fde2001-10-13 06:41:08 +00001762
1763
Chris Lattner00950542001-06-06 20:29:01 +00001764
1765JumpTable : JumpTable IntType ConstValueRef ',' LABEL ValueRef {
1766 $$ = $1;
Chris Lattnere9bb2df2001-12-03 22:26:30 +00001767 Constant *V = cast<Constant>(getValNonImprovising($2, $3));
Chris Lattner00950542001-06-06 20:29:01 +00001768 if (V == 0)
1769 ThrowException("May only switch on a constant pool value!");
1770
Chris Lattner9232b992003-04-22 18:42:41 +00001771 $$->push_back(std::make_pair(V, cast<BasicBlock>(getVal($5, $6))));
Chris Lattner00950542001-06-06 20:29:01 +00001772 }
1773 | IntType ConstValueRef ',' LABEL ValueRef {
Chris Lattner9232b992003-04-22 18:42:41 +00001774 $$ = new std::vector<std::pair<Constant*, BasicBlock*> >();
Chris Lattnere9bb2df2001-12-03 22:26:30 +00001775 Constant *V = cast<Constant>(getValNonImprovising($1, $2));
Chris Lattner00950542001-06-06 20:29:01 +00001776
1777 if (V == 0)
1778 ThrowException("May only switch on a constant pool value!");
1779
Chris Lattner9232b992003-04-22 18:42:41 +00001780 $$->push_back(std::make_pair(V, cast<BasicBlock>(getVal($4, $5))));
Chris Lattner51727be2002-06-04 21:58:56 +00001781 };
Chris Lattner00950542001-06-06 20:29:01 +00001782
1783Inst : OptAssign InstVal {
Chris Lattnerb7474512001-10-03 15:39:04 +00001784 // Is this definition named?? if so, assign the name...
1785 if (setValueName($2, $1)) { assert(0 && "No redefin allowed!"); }
Chris Lattner00950542001-06-06 20:29:01 +00001786 InsertValue($2);
1787 $$ = $2;
Chris Lattner51727be2002-06-04 21:58:56 +00001788};
Chris Lattner00950542001-06-06 20:29:01 +00001789
Chris Lattnerc24d2082001-06-11 15:04:20 +00001790PHIList : Types '[' ValueRef ',' ValueRef ']' { // Used for PHI nodes
Chris Lattner9232b992003-04-22 18:42:41 +00001791 $$ = new std::list<std::pair<Value*, BasicBlock*> >();
1792 $$->push_back(std::make_pair(getVal(*$1, $3),
1793 cast<BasicBlock>(getVal(Type::LabelTy, $5))));
Chris Lattner30c89792001-09-07 16:35:17 +00001794 delete $1;
Chris Lattnerc24d2082001-06-11 15:04:20 +00001795 }
1796 | PHIList ',' '[' ValueRef ',' ValueRef ']' {
1797 $$ = $1;
Chris Lattner9232b992003-04-22 18:42:41 +00001798 $1->push_back(std::make_pair(getVal($1->front().first->getType(), $4),
1799 cast<BasicBlock>(getVal(Type::LabelTy, $6))));
Chris Lattner51727be2002-06-04 21:58:56 +00001800 };
Chris Lattnerc24d2082001-06-11 15:04:20 +00001801
1802
Chris Lattner30c89792001-09-07 16:35:17 +00001803ValueRefList : ResolvedVal { // Used for call statements, and memory insts...
Chris Lattner9232b992003-04-22 18:42:41 +00001804 $$ = new std::vector<Value*>();
Chris Lattnerbcbf6ba2001-07-26 16:29:15 +00001805 $$->push_back($1);
Chris Lattner00950542001-06-06 20:29:01 +00001806 }
Chris Lattnerbcbf6ba2001-07-26 16:29:15 +00001807 | ValueRefList ',' ResolvedVal {
Chris Lattner00950542001-06-06 20:29:01 +00001808 $$ = $1;
Chris Lattnerbcbf6ba2001-07-26 16:29:15 +00001809 $1->push_back($3);
Chris Lattner51727be2002-06-04 21:58:56 +00001810 };
Chris Lattner00950542001-06-06 20:29:01 +00001811
1812// ValueRefListE - Just like ValueRefList, except that it may also be empty!
Chris Lattner51727be2002-06-04 21:58:56 +00001813ValueRefListE : ValueRefList | /*empty*/ { $$ = 0; };
Chris Lattner00950542001-06-06 20:29:01 +00001814
Chris Lattner4a6482b2002-09-10 19:57:26 +00001815InstVal : ArithmeticOps Types ValueRef ',' ValueRef {
1816 if (!(*$2)->isInteger() && !(*$2)->isFloatingPoint())
1817 ThrowException("Arithmetic operator requires integer or FP operands!");
1818 $$ = BinaryOperator::create($1, getVal(*$2, $3), getVal(*$2, $5));
1819 if ($$ == 0)
1820 ThrowException("binary operator returned null!");
1821 delete $2;
1822 }
1823 | LogicalOps Types ValueRef ',' ValueRef {
1824 if (!(*$2)->isIntegral())
1825 ThrowException("Logical operator requires integral operands!");
1826 $$ = BinaryOperator::create($1, getVal(*$2, $3), getVal(*$2, $5));
1827 if ($$ == 0)
1828 ThrowException("binary operator returned null!");
1829 delete $2;
1830 }
1831 | SetCondOps Types ValueRef ',' ValueRef {
Chris Lattner1cff96a2002-09-10 22:37:46 +00001832 $$ = new SetCondInst($1, getVal(*$2, $3), getVal(*$2, $5));
Chris Lattner00950542001-06-06 20:29:01 +00001833 if ($$ == 0)
1834 ThrowException("binary operator returned null!");
Chris Lattner30c89792001-09-07 16:35:17 +00001835 delete $2;
Chris Lattner00950542001-06-06 20:29:01 +00001836 }
Chris Lattner699f1eb2002-08-14 17:12:33 +00001837 | NOT ResolvedVal {
1838 std::cerr << "WARNING: Use of eliminated 'not' instruction:"
1839 << " Replacing with 'xor'.\n";
1840
1841 Value *Ones = ConstantIntegral::getAllOnesValue($2->getType());
1842 if (Ones == 0)
1843 ThrowException("Expected integral type for not instruction!");
1844
1845 $$ = BinaryOperator::create(Instruction::Xor, $2, Ones);
Chris Lattner00950542001-06-06 20:29:01 +00001846 if ($$ == 0)
Chris Lattner699f1eb2002-08-14 17:12:33 +00001847 ThrowException("Could not create a xor instruction!");
Chris Lattner09083092001-07-08 04:57:15 +00001848 }
Chris Lattnerbcbf6ba2001-07-26 16:29:15 +00001849 | ShiftOps ResolvedVal ',' ResolvedVal {
1850 if ($4->getType() != Type::UByteTy)
1851 ThrowException("Shift amount must be ubyte!");
Chris Lattner888d3bc2003-10-17 05:11:44 +00001852 if (!$2->getType()->isInteger())
1853 ThrowException("Shift constant expression requires integer operand!");
Chris Lattnerbcbf6ba2001-07-26 16:29:15 +00001854 $$ = new ShiftInst($1, $2, $4);
Chris Lattner027dcc52001-07-08 21:10:27 +00001855 }
Chris Lattnerbcbf6ba2001-07-26 16:29:15 +00001856 | CAST ResolvedVal TO Types {
Chris Lattner0f3bc5e2003-10-10 03:56:01 +00001857 if (!$4->get()->isFirstClassType())
1858 ThrowException("cast instruction to a non-primitive type: '" +
1859 $4->get()->getDescription() + "'!");
Chris Lattner30c89792001-09-07 16:35:17 +00001860 $$ = new CastInst($2, *$4);
1861 delete $4;
Chris Lattner09083092001-07-08 04:57:15 +00001862 }
Chris Lattner76f0ff32004-03-12 05:51:36 +00001863 | SELECT ResolvedVal ',' ResolvedVal ',' ResolvedVal {
1864 if ($2->getType() != Type::BoolTy)
1865 ThrowException("select condition must be boolean!");
1866 if ($4->getType() != $6->getType())
1867 ThrowException("select value types should match!");
1868 $$ = new SelectInst($2, $4, $6);
1869 }
Chris Lattner8f77dae2003-05-08 02:44:12 +00001870 | VA_ARG ResolvedVal ',' Types {
Chris Lattner99e7ab72003-10-18 05:53:13 +00001871 // FIXME: This is emulation code for an obsolete syntax. This should be
1872 // removed at some point.
1873 if (!ObsoleteVarArgs) {
1874 std::cerr << "WARNING: this file uses obsolete features. "
1875 << "Assemble and disassemble to update it.\n";
1876 ObsoleteVarArgs = true;
1877 }
1878
1879 // First, load the valist...
1880 Instruction *CurVAList = new LoadInst($2, "");
1881 CurBB->getInstList().push_back(CurVAList);
1882
1883 // Emit the vaarg instruction.
1884 $$ = new VAArgInst(CurVAList, *$4);
1885
1886 // Now we must advance the pointer and update it in memory.
1887 Instruction *TheVANext = new VANextInst(CurVAList, *$4);
1888 CurBB->getInstList().push_back(TheVANext);
1889
1890 CurBB->getInstList().push_back(new StoreInst(TheVANext, $2));
1891 delete $4;
1892 }
1893 | VAARG ResolvedVal ',' Types {
1894 $$ = new VAArgInst($2, *$4);
1895 delete $4;
1896 }
1897 | VANEXT ResolvedVal ',' Types {
1898 $$ = new VANextInst($2, *$4);
Chris Lattner8f77dae2003-05-08 02:44:12 +00001899 delete $4;
1900 }
Chris Lattner3b237fc2003-10-19 21:34:28 +00001901 | PHI_TOK PHIList {
Chris Lattnerc24d2082001-06-11 15:04:20 +00001902 const Type *Ty = $2->front().first->getType();
Chris Lattner8ea8f362003-10-30 01:38:18 +00001903 if (!Ty->isFirstClassType())
1904 ThrowException("PHI node operands must be of first class type!");
Chris Lattnerc24d2082001-06-11 15:04:20 +00001905 $$ = new PHINode(Ty);
Chris Lattnerbd2531f2003-10-10 16:34:58 +00001906 $$->op_reserve($2->size()*2);
Chris Lattner00950542001-06-06 20:29:01 +00001907 while ($2->begin() != $2->end()) {
Chris Lattnerc24d2082001-06-11 15:04:20 +00001908 if ($2->front().first->getType() != Ty)
1909 ThrowException("All elements of a PHI node must be of the same type!");
Chris Lattnerb00c5822001-10-02 03:41:24 +00001910 cast<PHINode>($$)->addIncoming($2->front().first, $2->front().second);
Chris Lattner00950542001-06-06 20:29:01 +00001911 $2->pop_front();
1912 }
1913 delete $2; // Free the list...
1914 }
Chris Lattner93750fa2001-07-28 17:48:55 +00001915 | CALL TypesV ValueRef '(' ValueRefListE ')' {
Chris Lattnerbf0a37b2002-10-15 21:41:14 +00001916 const PointerType *PFTy;
Chris Lattner79df7c02002-03-26 18:01:55 +00001917 const FunctionType *Ty;
Chris Lattner00950542001-06-06 20:29:01 +00001918
Chris Lattnerbf0a37b2002-10-15 21:41:14 +00001919 if (!(PFTy = dyn_cast<PointerType>($2->get())) ||
1920 !(Ty = dyn_cast<FunctionType>(PFTy->getElementType()))) {
Chris Lattner8b81bf52001-07-25 22:47:46 +00001921 // Pull out the types of all of the arguments...
Chris Lattner9232b992003-04-22 18:42:41 +00001922 std::vector<const Type*> ParamTypes;
Chris Lattneref9c23f2001-10-03 14:53:21 +00001923 if ($5) {
Chris Lattner9232b992003-04-22 18:42:41 +00001924 for (std::vector<Value*>::iterator I = $5->begin(), E = $5->end();
1925 I != E; ++I)
Chris Lattneref9c23f2001-10-03 14:53:21 +00001926 ParamTypes.push_back((*I)->getType());
1927 }
Chris Lattner2079fde2001-10-13 06:41:08 +00001928
1929 bool isVarArg = ParamTypes.size() && ParamTypes.back() == Type::VoidTy;
1930 if (isVarArg) ParamTypes.pop_back();
1931
Chris Lattner79df7c02002-03-26 18:01:55 +00001932 Ty = FunctionType::get($2->get(), ParamTypes, isVarArg);
Chris Lattnerbf0a37b2002-10-15 21:41:14 +00001933 PFTy = PointerType::get(Ty);
Chris Lattner8b81bf52001-07-25 22:47:46 +00001934 }
Chris Lattner00950542001-06-06 20:29:01 +00001935
Chris Lattnerbf0a37b2002-10-15 21:41:14 +00001936 Value *V = getVal(PFTy, $3); // Get the function we're calling...
Chris Lattner00950542001-06-06 20:29:01 +00001937
Chris Lattner8b81bf52001-07-25 22:47:46 +00001938 // Create the call node...
1939 if (!$5) { // Has no arguments?
Chris Lattnera4e25182002-07-25 20:52:56 +00001940 // Make sure no arguments is a good thing!
1941 if (Ty->getNumParams() != 0)
1942 ThrowException("No arguments passed to a function that "
1943 "expects arguments!");
1944
Chris Lattner9232b992003-04-22 18:42:41 +00001945 $$ = new CallInst(V, std::vector<Value*>());
Chris Lattner8b81bf52001-07-25 22:47:46 +00001946 } else { // Has arguments?
Chris Lattner79df7c02002-03-26 18:01:55 +00001947 // Loop through FunctionType's arguments and ensure they are specified
Chris Lattner00950542001-06-06 20:29:01 +00001948 // correctly!
1949 //
Chris Lattnerd5d89962004-02-09 04:14:01 +00001950 FunctionType::param_iterator I = Ty->param_begin();
1951 FunctionType::param_iterator E = Ty->param_end();
Chris Lattner9232b992003-04-22 18:42:41 +00001952 std::vector<Value*>::iterator ArgI = $5->begin(), ArgE = $5->end();
Chris Lattner8b81bf52001-07-25 22:47:46 +00001953
1954 for (; ArgI != ArgE && I != E; ++ArgI, ++I)
1955 if ((*ArgI)->getType() != *I)
1956 ThrowException("Parameter " +(*ArgI)->getName()+ " is not of type '" +
Chris Lattner72e00252001-12-14 16:28:42 +00001957 (*I)->getDescription() + "'!");
Chris Lattner00950542001-06-06 20:29:01 +00001958
Chris Lattner8b81bf52001-07-25 22:47:46 +00001959 if (I != E || (ArgI != ArgE && !Ty->isVarArg()))
Chris Lattner00950542001-06-06 20:29:01 +00001960 ThrowException("Invalid number of parameters detected!");
Chris Lattner00950542001-06-06 20:29:01 +00001961
Chris Lattner6cdb0112001-11-26 16:54:11 +00001962 $$ = new CallInst(V, *$5);
Chris Lattner8b81bf52001-07-25 22:47:46 +00001963 }
Chris Lattnerf64d57a2003-12-23 20:39:17 +00001964 delete $2;
Chris Lattner8b81bf52001-07-25 22:47:46 +00001965 delete $5;
Chris Lattner00950542001-06-06 20:29:01 +00001966 }
1967 | MemoryInst {
1968 $$ = $1;
Chris Lattner51727be2002-06-04 21:58:56 +00001969 };
Chris Lattner00950542001-06-06 20:29:01 +00001970
Chris Lattner6cdb0112001-11-26 16:54:11 +00001971
1972// IndexList - List of indices for GEP based instructions...
1973IndexList : ',' ValueRefList {
Chris Lattner15c9c032003-09-08 18:20:29 +00001974 $$ = $2;
1975 } | /* empty */ {
1976 $$ = new std::vector<Value*>();
1977 };
1978
1979OptVolatile : VOLATILE {
1980 $$ = true;
1981 }
1982 | /* empty */ {
1983 $$ = false;
1984 };
1985
Chris Lattner027dcc52001-07-08 21:10:27 +00001986
Chris Lattner00950542001-06-06 20:29:01 +00001987MemoryInst : MALLOC Types {
Chris Lattner05804b72002-09-13 22:28:45 +00001988 $$ = new MallocInst(*$2);
Chris Lattner30c89792001-09-07 16:35:17 +00001989 delete $2;
Chris Lattner00950542001-06-06 20:29:01 +00001990 }
1991 | MALLOC Types ',' UINT ValueRef {
Chris Lattner05804b72002-09-13 22:28:45 +00001992 $$ = new MallocInst(*$2, getVal($4, $5));
Chris Lattner30c89792001-09-07 16:35:17 +00001993 delete $2;
Chris Lattner00950542001-06-06 20:29:01 +00001994 }
1995 | ALLOCA Types {
Chris Lattner05804b72002-09-13 22:28:45 +00001996 $$ = new AllocaInst(*$2);
Chris Lattner30c89792001-09-07 16:35:17 +00001997 delete $2;
Chris Lattner00950542001-06-06 20:29:01 +00001998 }
1999 | ALLOCA Types ',' UINT ValueRef {
Chris Lattner05804b72002-09-13 22:28:45 +00002000 $$ = new AllocaInst(*$2, getVal($4, $5));
Chris Lattner30c89792001-09-07 16:35:17 +00002001 delete $2;
Chris Lattner00950542001-06-06 20:29:01 +00002002 }
Chris Lattnerbcbf6ba2001-07-26 16:29:15 +00002003 | FREE ResolvedVal {
Chris Lattner9b625032002-05-06 16:15:30 +00002004 if (!isa<PointerType>($2->getType()))
Chris Lattnerbcbf6ba2001-07-26 16:29:15 +00002005 ThrowException("Trying to free nonpointer type " +
Chris Lattner72e00252001-12-14 16:28:42 +00002006 $2->getType()->getDescription() + "!");
Chris Lattnerbcbf6ba2001-07-26 16:29:15 +00002007 $$ = new FreeInst($2);
Chris Lattner00950542001-06-06 20:29:01 +00002008 }
2009
Chris Lattner15c9c032003-09-08 18:20:29 +00002010 | OptVolatile LOAD Types ValueRef {
2011 if (!isa<PointerType>($3->get()))
Chris Lattner2079fde2001-10-13 06:41:08 +00002012 ThrowException("Can't load from nonpointer type: " +
Chris Lattner15c9c032003-09-08 18:20:29 +00002013 (*$3)->getDescription());
Chris Lattner79ad13802003-09-08 20:29:46 +00002014 $$ = new LoadInst(getVal(*$3, $4), "", $1);
Chris Lattner15c9c032003-09-08 18:20:29 +00002015 delete $3;
Chris Lattner027dcc52001-07-08 21:10:27 +00002016 }
Chris Lattner15c9c032003-09-08 18:20:29 +00002017 | OptVolatile STORE ResolvedVal ',' Types ValueRef {
2018 const PointerType *PT = dyn_cast<PointerType>($5->get());
Chris Lattner8c8418d2003-09-01 16:31:28 +00002019 if (!PT)
Chris Lattner72e00252001-12-14 16:28:42 +00002020 ThrowException("Can't store to a nonpointer type: " +
Chris Lattner15c9c032003-09-08 18:20:29 +00002021 (*$5)->getDescription());
Chris Lattner8c8418d2003-09-01 16:31:28 +00002022 const Type *ElTy = PT->getElementType();
Chris Lattner15c9c032003-09-08 18:20:29 +00002023 if (ElTy != $3->getType())
2024 ThrowException("Can't store '" + $3->getType()->getDescription() +
Chris Lattner72e00252001-12-14 16:28:42 +00002025 "' into space of type '" + ElTy->getDescription() + "'!");
Chris Lattner0383cc42002-08-21 23:51:21 +00002026
Chris Lattner79ad13802003-09-08 20:29:46 +00002027 $$ = new StoreInst($3, getVal(*$5, $6), $1);
Chris Lattner15c9c032003-09-08 18:20:29 +00002028 delete $5;
Chris Lattnerab5ac6b2001-07-08 23:22:50 +00002029 }
Chris Lattner6cdb0112001-11-26 16:54:11 +00002030 | GETELEMENTPTR Types ValueRef IndexList {
Chris Lattner51727be2002-06-04 21:58:56 +00002031 if (!isa<PointerType>($2->get()))
Chris Lattnerab5ac6b2001-07-08 23:22:50 +00002032 ThrowException("getelementptr insn requires pointer operand!");
Chris Lattner830b6f92004-04-05 01:30:04 +00002033
2034 // LLVM 1.2 and earlier used ubyte struct indices. Convert any ubyte struct
2035 // indices to uint struct indices for compatibility.
2036 generic_gep_type_iterator<std::vector<Value*>::iterator>
2037 GTI = gep_type_begin($2->get(), $4->begin(), $4->end()),
2038 GTE = gep_type_end($2->get(), $4->begin(), $4->end());
2039 for (unsigned i = 0, e = $4->size(); i != e && GTI != GTE; ++i, ++GTI)
2040 if (isa<StructType>(*GTI)) // Only change struct indices
2041 if (ConstantUInt *CUI = dyn_cast<ConstantUInt>((*$4)[i]))
2042 if (CUI->getType() == Type::UByteTy)
2043 (*$4)[i] = ConstantExpr::getCast(CUI, Type::UIntTy);
2044
Chris Lattner30c89792001-09-07 16:35:17 +00002045 if (!GetElementPtrInst::getIndexedType(*$2, *$4, true))
Chris Lattner830b6f92004-04-05 01:30:04 +00002046 ThrowException("Invalid getelementptr indices for type '" +
2047 (*$2)->getDescription()+ "'!");
Chris Lattner30c89792001-09-07 16:35:17 +00002048 $$ = new GetElementPtrInst(getVal(*$2, $3), *$4);
2049 delete $2; delete $4;
Chris Lattner51727be2002-06-04 21:58:56 +00002050 };
Chris Lattner027dcc52001-07-08 21:10:27 +00002051
Brian Gaeked0fde302003-11-11 22:41:34 +00002052
Chris Lattner00950542001-06-06 20:29:01 +00002053%%
Chris Lattner09083092001-07-08 04:57:15 +00002054int yyerror(const char *ErrorMsg) {
Chris Lattner9232b992003-04-22 18:42:41 +00002055 std::string where
2056 = std::string((CurFilename == "-") ? std::string("<stdin>") : CurFilename)
Vikram S. Adved3f7eb02002-07-14 22:59:28 +00002057 + ":" + utostr((unsigned) llvmAsmlineno) + ": ";
Chris Lattner9232b992003-04-22 18:42:41 +00002058 std::string errMsg = std::string(ErrorMsg) + "\n" + where + " while reading ";
Chris Lattnerbc280ab2004-03-30 20:58:25 +00002059 if (yychar == YYEMPTY || yychar == 0)
Vikram S. Adved3f7eb02002-07-14 22:59:28 +00002060 errMsg += "end-of-file.";
2061 else
Chris Lattner9232b992003-04-22 18:42:41 +00002062 errMsg += "token: '" + std::string(llvmAsmtext, llvmAsmleng) + "'";
Vikram S. Adved3f7eb02002-07-14 22:59:28 +00002063 ThrowException(errMsg);
Chris Lattner00950542001-06-06 20:29:01 +00002064 return 0;
2065}