blob: d9d2a4b2addb0f4298a88f34488d22cb876f24cd [file] [log] [blame]
Chris Lattnerdf986172009-01-02 07:01:27 +00001//===-- LLParser.cpp - Parser Class ---------------------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file defines the parser class for .ll files.
11//
12//===----------------------------------------------------------------------===//
13
14#include "LLParser.h"
15#include "llvm/AutoUpgrade.h"
16#include "llvm/CallingConv.h"
17#include "llvm/Constants.h"
18#include "llvm/DerivedTypes.h"
19#include "llvm/InlineAsm.h"
20#include "llvm/Instructions.h"
Owen Andersonfba933c2009-07-01 23:57:11 +000021#include "llvm/LLVMContext.h"
Devang Patel0a9f7b92009-07-28 21:49:47 +000022#include "llvm/Metadata.h"
Chris Lattnerdf986172009-01-02 07:01:27 +000023#include "llvm/Module.h"
Dan Gohman1224c382009-07-20 21:19:07 +000024#include "llvm/Operator.h"
Chris Lattnerdf986172009-01-02 07:01:27 +000025#include "llvm/ValueSymbolTable.h"
26#include "llvm/ADT/SmallPtrSet.h"
27#include "llvm/ADT/StringExtras.h"
Torok Edwinc25e7582009-07-11 20:10:48 +000028#include "llvm/Support/ErrorHandling.h"
Chris Lattnerdf986172009-01-02 07:01:27 +000029#include "llvm/Support/raw_ostream.h"
30using namespace llvm;
31
Chris Lattner3ed88ef2009-01-02 08:05:26 +000032/// Run: module ::= toplevelentity*
Chris Lattnerad7d1e22009-01-04 20:44:11 +000033bool LLParser::Run() {
Chris Lattner3ed88ef2009-01-02 08:05:26 +000034 // Prime the lexer.
35 Lex.Lex();
36
Chris Lattnerad7d1e22009-01-04 20:44:11 +000037 return ParseTopLevelEntities() ||
38 ValidateEndOfModule();
Chris Lattnerdf986172009-01-02 07:01:27 +000039}
40
41/// ValidateEndOfModule - Do final validity and sanity checks at the end of the
42/// module.
43bool LLParser::ValidateEndOfModule() {
Victor Hernandez68afa542009-10-21 19:11:40 +000044 // Update auto-upgraded malloc calls to "malloc".
Chris Lattnercf4d2f12009-10-18 05:09:15 +000045 // FIXME: Remove in LLVM 3.0.
Victor Hernandez13ad5aa2009-10-17 00:00:19 +000046 if (MallocF) {
47 MallocF->setName("malloc");
48 // If setName() does not set the name to "malloc", then there is already a
49 // declaration of "malloc". In that case, iterate over all calls to MallocF
50 // and get them to call the declared "malloc" instead.
51 if (MallocF->getName() != "malloc") {
Chris Lattner09d9ef42009-10-28 03:39:23 +000052 Constant *RealMallocF = M->getFunction("malloc");
Victor Hernandez68afa542009-10-21 19:11:40 +000053 if (RealMallocF->getType() != MallocF->getType())
54 RealMallocF = ConstantExpr::getBitCast(RealMallocF, MallocF->getType());
55 MallocF->replaceAllUsesWith(RealMallocF);
Victor Hernandez13ad5aa2009-10-17 00:00:19 +000056 MallocF->eraseFromParent();
57 MallocF = NULL;
58 }
59 }
Chris Lattner09d9ef42009-10-28 03:39:23 +000060
61
62 // If there are entries in ForwardRefBlockAddresses at this point, they are
63 // references after the function was defined. Resolve those now.
64 while (!ForwardRefBlockAddresses.empty()) {
65 // Okay, we are referencing an already-parsed function, resolve them now.
66 Function *TheFn = 0;
67 const ValID &Fn = ForwardRefBlockAddresses.begin()->first;
68 if (Fn.Kind == ValID::t_GlobalName)
69 TheFn = M->getFunction(Fn.StrVal);
70 else if (Fn.UIntVal < NumberedVals.size())
71 TheFn = dyn_cast<Function>(NumberedVals[Fn.UIntVal]);
72
73 if (TheFn == 0)
74 return Error(Fn.Loc, "unknown function referenced by blockaddress");
75
76 // Resolve all these references.
77 if (ResolveForwardRefBlockAddresses(TheFn,
78 ForwardRefBlockAddresses.begin()->second,
79 0))
80 return true;
81
82 ForwardRefBlockAddresses.erase(ForwardRefBlockAddresses.begin());
83 }
84
85
Chris Lattnerdf986172009-01-02 07:01:27 +000086 if (!ForwardRefTypes.empty())
87 return Error(ForwardRefTypes.begin()->second.second,
88 "use of undefined type named '" +
89 ForwardRefTypes.begin()->first + "'");
90 if (!ForwardRefTypeIDs.empty())
91 return Error(ForwardRefTypeIDs.begin()->second.second,
92 "use of undefined type '%" +
93 utostr(ForwardRefTypeIDs.begin()->first) + "'");
Daniel Dunbara279bc32009-09-20 02:20:51 +000094
Chris Lattnerdf986172009-01-02 07:01:27 +000095 if (!ForwardRefVals.empty())
96 return Error(ForwardRefVals.begin()->second.second,
97 "use of undefined value '@" + ForwardRefVals.begin()->first +
98 "'");
Daniel Dunbara279bc32009-09-20 02:20:51 +000099
Chris Lattnerdf986172009-01-02 07:01:27 +0000100 if (!ForwardRefValIDs.empty())
101 return Error(ForwardRefValIDs.begin()->second.second,
102 "use of undefined value '@" +
103 utostr(ForwardRefValIDs.begin()->first) + "'");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000104
Devang Patel1c7eea62009-07-08 19:23:54 +0000105 if (!ForwardRefMDNodes.empty())
106 return Error(ForwardRefMDNodes.begin()->second.second,
107 "use of undefined metadata '!" +
108 utostr(ForwardRefMDNodes.begin()->first) + "'");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000109
Devang Patel1c7eea62009-07-08 19:23:54 +0000110
Chris Lattnerdf986172009-01-02 07:01:27 +0000111 // Look for intrinsic functions and CallInst that need to be upgraded
112 for (Module::iterator FI = M->begin(), FE = M->end(); FI != FE; )
113 UpgradeCallsToIntrinsic(FI++); // must be post-increment, as we remove
Daniel Dunbara279bc32009-09-20 02:20:51 +0000114
Devang Patele4b27562009-08-28 23:24:31 +0000115 // Check debug info intrinsics.
116 CheckDebugInfoIntrinsics(M);
Chris Lattnerdf986172009-01-02 07:01:27 +0000117 return false;
118}
119
Chris Lattner09d9ef42009-10-28 03:39:23 +0000120bool LLParser::ResolveForwardRefBlockAddresses(Function *TheFn,
121 std::vector<std::pair<ValID, GlobalValue*> > &Refs,
122 PerFunctionState *PFS) {
123 // Loop over all the references, resolving them.
124 for (unsigned i = 0, e = Refs.size(); i != e; ++i) {
125 BasicBlock *Res;
Chris Lattnercdfc9402009-11-01 01:27:45 +0000126 if (PFS) {
Chris Lattner09d9ef42009-10-28 03:39:23 +0000127 if (Refs[i].first.Kind == ValID::t_LocalName)
128 Res = PFS->GetBB(Refs[i].first.StrVal, Refs[i].first.Loc);
Chris Lattnercdfc9402009-11-01 01:27:45 +0000129 else
Chris Lattner09d9ef42009-10-28 03:39:23 +0000130 Res = PFS->GetBB(Refs[i].first.UIntVal, Refs[i].first.Loc);
131 } else if (Refs[i].first.Kind == ValID::t_LocalID) {
132 return Error(Refs[i].first.Loc,
Chris Lattneree7644d2009-11-02 18:28:45 +0000133 "cannot take address of numeric label after the function is defined");
Chris Lattner09d9ef42009-10-28 03:39:23 +0000134 } else {
135 Res = dyn_cast_or_null<BasicBlock>(
136 TheFn->getValueSymbolTable().lookup(Refs[i].first.StrVal));
137 }
138
Chris Lattnercdfc9402009-11-01 01:27:45 +0000139 if (Res == 0)
Chris Lattner09d9ef42009-10-28 03:39:23 +0000140 return Error(Refs[i].first.Loc,
141 "referenced value is not a basic block");
142
143 // Get the BlockAddress for this and update references to use it.
144 BlockAddress *BA = BlockAddress::get(TheFn, Res);
145 Refs[i].second->replaceAllUsesWith(BA);
146 Refs[i].second->eraseFromParent();
147 }
148 return false;
149}
150
151
Chris Lattnerdf986172009-01-02 07:01:27 +0000152//===----------------------------------------------------------------------===//
153// Top-Level Entities
154//===----------------------------------------------------------------------===//
155
156bool LLParser::ParseTopLevelEntities() {
Chris Lattnerdf986172009-01-02 07:01:27 +0000157 while (1) {
158 switch (Lex.getKind()) {
159 default: return TokError("expected top-level entity");
160 case lltok::Eof: return false;
161 //case lltok::kw_define:
162 case lltok::kw_declare: if (ParseDeclare()) return true; break;
163 case lltok::kw_define: if (ParseDefine()) return true; break;
164 case lltok::kw_module: if (ParseModuleAsm()) return true; break;
165 case lltok::kw_target: if (ParseTargetDefinition()) return true; break;
166 case lltok::kw_deplibs: if (ParseDepLibs()) return true; break;
167 case lltok::kw_type: if (ParseUnnamedType()) return true; break;
Dan Gohman3845e502009-08-12 23:32:33 +0000168 case lltok::LocalVarID: if (ParseUnnamedType()) return true; break;
Chris Lattnerdf986172009-01-02 07:01:27 +0000169 case lltok::StringConstant: // FIXME: REMOVE IN LLVM 3.0
170 case lltok::LocalVar: if (ParseNamedType()) return true; break;
Dan Gohman3845e502009-08-12 23:32:33 +0000171 case lltok::GlobalID: if (ParseUnnamedGlobal()) return true; break;
Chris Lattnerdf986172009-01-02 07:01:27 +0000172 case lltok::GlobalVar: if (ParseNamedGlobal()) return true; break;
Devang Patel923078c2009-07-01 19:21:12 +0000173 case lltok::Metadata: if (ParseStandaloneMetadata()) return true; break;
Devang Patel0475c912009-09-29 00:01:14 +0000174 case lltok::NamedOrCustomMD: if (ParseNamedMetadata()) return true; break;
Chris Lattnerdf986172009-01-02 07:01:27 +0000175
176 // The Global variable production with no name can have many different
177 // optional leading prefixes, the production is:
178 // GlobalVar ::= OptionalLinkage OptionalVisibility OptionalThreadLocal
179 // OptionalAddrSpace ('constant'|'global') ...
Bill Wendling3d10a5a2009-07-20 01:03:30 +0000180 case lltok::kw_private : // OptionalLinkage
181 case lltok::kw_linker_private: // OptionalLinkage
182 case lltok::kw_internal: // OptionalLinkage
183 case lltok::kw_weak: // OptionalLinkage
184 case lltok::kw_weak_odr: // OptionalLinkage
185 case lltok::kw_linkonce: // OptionalLinkage
186 case lltok::kw_linkonce_odr: // OptionalLinkage
187 case lltok::kw_appending: // OptionalLinkage
188 case lltok::kw_dllexport: // OptionalLinkage
189 case lltok::kw_common: // OptionalLinkage
190 case lltok::kw_dllimport: // OptionalLinkage
191 case lltok::kw_extern_weak: // OptionalLinkage
192 case lltok::kw_external: { // OptionalLinkage
Chris Lattnerdf986172009-01-02 07:01:27 +0000193 unsigned Linkage, Visibility;
194 if (ParseOptionalLinkage(Linkage) ||
195 ParseOptionalVisibility(Visibility) ||
Chris Lattnereeb4a842009-07-02 23:08:13 +0000196 ParseGlobal("", SMLoc(), Linkage, true, Visibility))
Chris Lattnerdf986172009-01-02 07:01:27 +0000197 return true;
198 break;
199 }
200 case lltok::kw_default: // OptionalVisibility
201 case lltok::kw_hidden: // OptionalVisibility
202 case lltok::kw_protected: { // OptionalVisibility
203 unsigned Visibility;
204 if (ParseOptionalVisibility(Visibility) ||
Chris Lattnereeb4a842009-07-02 23:08:13 +0000205 ParseGlobal("", SMLoc(), 0, false, Visibility))
Chris Lattnerdf986172009-01-02 07:01:27 +0000206 return true;
207 break;
208 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000209
Chris Lattnerdf986172009-01-02 07:01:27 +0000210 case lltok::kw_thread_local: // OptionalThreadLocal
211 case lltok::kw_addrspace: // OptionalAddrSpace
212 case lltok::kw_constant: // GlobalType
213 case lltok::kw_global: // GlobalType
Chris Lattnereeb4a842009-07-02 23:08:13 +0000214 if (ParseGlobal("", SMLoc(), 0, false, 0)) return true;
Chris Lattnerdf986172009-01-02 07:01:27 +0000215 break;
216 }
217 }
218}
219
220
221/// toplevelentity
222/// ::= 'module' 'asm' STRINGCONSTANT
223bool LLParser::ParseModuleAsm() {
224 assert(Lex.getKind() == lltok::kw_module);
225 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +0000226
227 std::string AsmStr;
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000228 if (ParseToken(lltok::kw_asm, "expected 'module asm'") ||
229 ParseStringConstant(AsmStr)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000230
Chris Lattnerdf986172009-01-02 07:01:27 +0000231 const std::string &AsmSoFar = M->getModuleInlineAsm();
232 if (AsmSoFar.empty())
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000233 M->setModuleInlineAsm(AsmStr);
Chris Lattnerdf986172009-01-02 07:01:27 +0000234 else
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000235 M->setModuleInlineAsm(AsmSoFar+"\n"+AsmStr);
Chris Lattnerdf986172009-01-02 07:01:27 +0000236 return false;
237}
238
239/// toplevelentity
240/// ::= 'target' 'triple' '=' STRINGCONSTANT
241/// ::= 'target' 'datalayout' '=' STRINGCONSTANT
242bool LLParser::ParseTargetDefinition() {
243 assert(Lex.getKind() == lltok::kw_target);
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000244 std::string Str;
Chris Lattnerdf986172009-01-02 07:01:27 +0000245 switch (Lex.Lex()) {
246 default: return TokError("unknown target property");
247 case lltok::kw_triple:
248 Lex.Lex();
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000249 if (ParseToken(lltok::equal, "expected '=' after target triple") ||
250 ParseStringConstant(Str))
Chris Lattnerdf986172009-01-02 07:01:27 +0000251 return true;
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000252 M->setTargetTriple(Str);
Chris Lattnerdf986172009-01-02 07:01:27 +0000253 return false;
254 case lltok::kw_datalayout:
255 Lex.Lex();
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000256 if (ParseToken(lltok::equal, "expected '=' after target datalayout") ||
257 ParseStringConstant(Str))
Chris Lattnerdf986172009-01-02 07:01:27 +0000258 return true;
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000259 M->setDataLayout(Str);
Chris Lattnerdf986172009-01-02 07:01:27 +0000260 return false;
261 }
262}
263
264/// toplevelentity
265/// ::= 'deplibs' '=' '[' ']'
266/// ::= 'deplibs' '=' '[' STRINGCONSTANT (',' STRINGCONSTANT)* ']'
267bool LLParser::ParseDepLibs() {
268 assert(Lex.getKind() == lltok::kw_deplibs);
Chris Lattnerdf986172009-01-02 07:01:27 +0000269 Lex.Lex();
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000270 if (ParseToken(lltok::equal, "expected '=' after deplibs") ||
271 ParseToken(lltok::lsquare, "expected '=' after deplibs"))
272 return true;
273
274 if (EatIfPresent(lltok::rsquare))
275 return false;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000276
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000277 std::string Str;
278 if (ParseStringConstant(Str)) return true;
279 M->addLibrary(Str);
280
281 while (EatIfPresent(lltok::comma)) {
282 if (ParseStringConstant(Str)) return true;
283 M->addLibrary(Str);
284 }
285
286 return ParseToken(lltok::rsquare, "expected ']' at end of list");
Chris Lattnerdf986172009-01-02 07:01:27 +0000287}
288
Dan Gohman3845e502009-08-12 23:32:33 +0000289/// ParseUnnamedType:
Chris Lattnerdf986172009-01-02 07:01:27 +0000290/// ::= 'type' type
Dan Gohman3845e502009-08-12 23:32:33 +0000291/// ::= LocalVarID '=' 'type' type
Chris Lattnerdf986172009-01-02 07:01:27 +0000292bool LLParser::ParseUnnamedType() {
Dan Gohman3845e502009-08-12 23:32:33 +0000293 unsigned TypeID = NumberedTypes.size();
294
295 // Handle the LocalVarID form.
296 if (Lex.getKind() == lltok::LocalVarID) {
297 if (Lex.getUIntVal() != TypeID)
298 return Error(Lex.getLoc(), "type expected to be numbered '%" +
299 utostr(TypeID) + "'");
300 Lex.Lex(); // eat LocalVarID;
301
302 if (ParseToken(lltok::equal, "expected '=' after name"))
303 return true;
304 }
305
Chris Lattnerdf986172009-01-02 07:01:27 +0000306 assert(Lex.getKind() == lltok::kw_type);
307 LocTy TypeLoc = Lex.getLoc();
308 Lex.Lex(); // eat kw_type
309
Owen Anderson1d0be152009-08-13 21:58:54 +0000310 PATypeHolder Ty(Type::getVoidTy(Context));
Chris Lattnerdf986172009-01-02 07:01:27 +0000311 if (ParseType(Ty)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000312
Chris Lattnerdf986172009-01-02 07:01:27 +0000313 // See if this type was previously referenced.
314 std::map<unsigned, std::pair<PATypeHolder, LocTy> >::iterator
315 FI = ForwardRefTypeIDs.find(TypeID);
316 if (FI != ForwardRefTypeIDs.end()) {
Chris Lattnerc38daba2009-01-05 18:19:46 +0000317 if (FI->second.first.get() == Ty)
318 return Error(TypeLoc, "self referential type is invalid");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000319
Chris Lattnerdf986172009-01-02 07:01:27 +0000320 cast<DerivedType>(FI->second.first.get())->refineAbstractTypeTo(Ty);
321 Ty = FI->second.first.get();
322 ForwardRefTypeIDs.erase(FI);
323 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000324
Chris Lattnerdf986172009-01-02 07:01:27 +0000325 NumberedTypes.push_back(Ty);
Daniel Dunbara279bc32009-09-20 02:20:51 +0000326
Chris Lattnerdf986172009-01-02 07:01:27 +0000327 return false;
328}
329
330/// toplevelentity
331/// ::= LocalVar '=' 'type' type
332bool LLParser::ParseNamedType() {
333 std::string Name = Lex.getStrVal();
334 LocTy NameLoc = Lex.getLoc();
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000335 Lex.Lex(); // eat LocalVar.
Daniel Dunbara279bc32009-09-20 02:20:51 +0000336
Owen Anderson1d0be152009-08-13 21:58:54 +0000337 PATypeHolder Ty(Type::getVoidTy(Context));
Daniel Dunbara279bc32009-09-20 02:20:51 +0000338
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000339 if (ParseToken(lltok::equal, "expected '=' after name") ||
340 ParseToken(lltok::kw_type, "expected 'type' after name") ||
341 ParseType(Ty))
342 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000343
Chris Lattnerdf986172009-01-02 07:01:27 +0000344 // Set the type name, checking for conflicts as we do so.
345 bool AlreadyExists = M->addTypeName(Name, Ty);
346 if (!AlreadyExists) return false;
347
348 // See if this type is a forward reference. We need to eagerly resolve
349 // types to allow recursive type redefinitions below.
350 std::map<std::string, std::pair<PATypeHolder, LocTy> >::iterator
351 FI = ForwardRefTypes.find(Name);
352 if (FI != ForwardRefTypes.end()) {
Chris Lattnerc38daba2009-01-05 18:19:46 +0000353 if (FI->second.first.get() == Ty)
354 return Error(NameLoc, "self referential type is invalid");
355
Chris Lattnerdf986172009-01-02 07:01:27 +0000356 cast<DerivedType>(FI->second.first.get())->refineAbstractTypeTo(Ty);
357 Ty = FI->second.first.get();
358 ForwardRefTypes.erase(FI);
359 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000360
Chris Lattnerdf986172009-01-02 07:01:27 +0000361 // Inserting a name that is already defined, get the existing name.
362 const Type *Existing = M->getTypeByName(Name);
363 assert(Existing && "Conflict but no matching type?!");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000364
Chris Lattnerdf986172009-01-02 07:01:27 +0000365 // Otherwise, this is an attempt to redefine a type. That's okay if
366 // the redefinition is identical to the original.
367 // FIXME: REMOVE REDEFINITIONS IN LLVM 3.0
368 if (Existing == Ty) return false;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000369
Chris Lattnerdf986172009-01-02 07:01:27 +0000370 // Any other kind of (non-equivalent) redefinition is an error.
371 return Error(NameLoc, "redefinition of type named '" + Name + "' of type '" +
372 Ty->getDescription() + "'");
373}
374
375
376/// toplevelentity
377/// ::= 'declare' FunctionHeader
378bool LLParser::ParseDeclare() {
379 assert(Lex.getKind() == lltok::kw_declare);
380 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +0000381
Chris Lattnerdf986172009-01-02 07:01:27 +0000382 Function *F;
383 return ParseFunctionHeader(F, false);
384}
385
386/// toplevelentity
387/// ::= 'define' FunctionHeader '{' ...
388bool LLParser::ParseDefine() {
389 assert(Lex.getKind() == lltok::kw_define);
390 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +0000391
Chris Lattnerdf986172009-01-02 07:01:27 +0000392 Function *F;
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000393 return ParseFunctionHeader(F, true) ||
394 ParseFunctionBody(*F);
Chris Lattnerdf986172009-01-02 07:01:27 +0000395}
396
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000397/// ParseGlobalType
398/// ::= 'constant'
399/// ::= 'global'
Chris Lattnerdf986172009-01-02 07:01:27 +0000400bool LLParser::ParseGlobalType(bool &IsConstant) {
401 if (Lex.getKind() == lltok::kw_constant)
402 IsConstant = true;
403 else if (Lex.getKind() == lltok::kw_global)
404 IsConstant = false;
Duncan Sands35b51072009-02-10 16:24:55 +0000405 else {
406 IsConstant = false;
Chris Lattnerdf986172009-01-02 07:01:27 +0000407 return TokError("expected 'global' or 'constant'");
Duncan Sands35b51072009-02-10 16:24:55 +0000408 }
Chris Lattnerdf986172009-01-02 07:01:27 +0000409 Lex.Lex();
410 return false;
411}
412
Dan Gohman3845e502009-08-12 23:32:33 +0000413/// ParseUnnamedGlobal:
414/// OptionalVisibility ALIAS ...
415/// OptionalLinkage OptionalVisibility ... -> global variable
416/// GlobalID '=' OptionalVisibility ALIAS ...
417/// GlobalID '=' OptionalLinkage OptionalVisibility ... -> global variable
418bool LLParser::ParseUnnamedGlobal() {
419 unsigned VarID = NumberedVals.size();
420 std::string Name;
421 LocTy NameLoc = Lex.getLoc();
422
423 // Handle the GlobalID form.
424 if (Lex.getKind() == lltok::GlobalID) {
425 if (Lex.getUIntVal() != VarID)
426 return Error(Lex.getLoc(), "variable expected to be numbered '%" +
427 utostr(VarID) + "'");
428 Lex.Lex(); // eat GlobalID;
429
430 if (ParseToken(lltok::equal, "expected '=' after name"))
431 return true;
432 }
433
434 bool HasLinkage;
435 unsigned Linkage, Visibility;
436 if (ParseOptionalLinkage(Linkage, HasLinkage) ||
437 ParseOptionalVisibility(Visibility))
438 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000439
Dan Gohman3845e502009-08-12 23:32:33 +0000440 if (HasLinkage || Lex.getKind() != lltok::kw_alias)
441 return ParseGlobal(Name, NameLoc, Linkage, HasLinkage, Visibility);
442 return ParseAlias(Name, NameLoc, Visibility);
443}
444
Chris Lattnerdf986172009-01-02 07:01:27 +0000445/// ParseNamedGlobal:
446/// GlobalVar '=' OptionalVisibility ALIAS ...
447/// GlobalVar '=' OptionalLinkage OptionalVisibility ... -> global variable
448bool LLParser::ParseNamedGlobal() {
449 assert(Lex.getKind() == lltok::GlobalVar);
450 LocTy NameLoc = Lex.getLoc();
451 std::string Name = Lex.getStrVal();
452 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +0000453
Chris Lattnerdf986172009-01-02 07:01:27 +0000454 bool HasLinkage;
455 unsigned Linkage, Visibility;
456 if (ParseToken(lltok::equal, "expected '=' in global variable") ||
457 ParseOptionalLinkage(Linkage, HasLinkage) ||
458 ParseOptionalVisibility(Visibility))
459 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000460
Chris Lattnerdf986172009-01-02 07:01:27 +0000461 if (HasLinkage || Lex.getKind() != lltok::kw_alias)
462 return ParseGlobal(Name, NameLoc, Linkage, HasLinkage, Visibility);
463 return ParseAlias(Name, NameLoc, Visibility);
464}
465
Devang Patel256be962009-07-20 19:00:08 +0000466// MDString:
467// ::= '!' STRINGCONSTANT
Devang Patele54abc92009-07-22 17:43:22 +0000468bool LLParser::ParseMDString(MetadataBase *&MDS) {
Devang Patel256be962009-07-20 19:00:08 +0000469 std::string Str;
470 if (ParseStringConstant(Str)) return true;
Owen Anderson647e3012009-07-31 21:35:40 +0000471 MDS = MDString::get(Context, Str);
Devang Patel256be962009-07-20 19:00:08 +0000472 return false;
473}
474
475// MDNode:
476// ::= '!' MDNodeNumber
Devang Patel104cf9e2009-07-23 01:07:34 +0000477bool LLParser::ParseMDNode(MetadataBase *&Node) {
Devang Patel256be962009-07-20 19:00:08 +0000478 // !{ ..., !42, ... }
479 unsigned MID = 0;
480 if (ParseUInt32(MID)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000481
Devang Patel256be962009-07-20 19:00:08 +0000482 // Check existing MDNode.
Devang Patel85b8de82009-11-05 01:13:02 +0000483 std::map<unsigned, WeakVH>::iterator I = MetadataCache.find(MID);
Devang Patel256be962009-07-20 19:00:08 +0000484 if (I != MetadataCache.end()) {
Devang Patel85b8de82009-11-05 01:13:02 +0000485 Node = cast<MetadataBase>(I->second);
Devang Patel256be962009-07-20 19:00:08 +0000486 return false;
487 }
488
489 // Check known forward references.
Devang Patel85b8de82009-11-05 01:13:02 +0000490 std::map<unsigned, std::pair<WeakVH, LocTy> >::iterator
Devang Patel256be962009-07-20 19:00:08 +0000491 FI = ForwardRefMDNodes.find(MID);
492 if (FI != ForwardRefMDNodes.end()) {
Devang Patel85b8de82009-11-05 01:13:02 +0000493 Node = cast<MetadataBase>(FI->second.first);
Devang Patel256be962009-07-20 19:00:08 +0000494 return false;
495 }
496
497 // Create MDNode forward reference
498 SmallVector<Value *, 1> Elts;
499 std::string FwdRefName = "llvm.mdnode.fwdref." + utostr(MID);
Owen Anderson647e3012009-07-31 21:35:40 +0000500 Elts.push_back(MDString::get(Context, FwdRefName));
501 MDNode *FwdNode = MDNode::get(Context, Elts.data(), Elts.size());
Devang Patel256be962009-07-20 19:00:08 +0000502 ForwardRefMDNodes[MID] = std::make_pair(FwdNode, Lex.getLoc());
503 Node = FwdNode;
504 return false;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000505}
Devang Patel256be962009-07-20 19:00:08 +0000506
Devang Pateleff2ab62009-07-29 00:34:02 +0000507///ParseNamedMetadata:
508/// !foo = !{ !1, !2 }
509bool LLParser::ParseNamedMetadata() {
Devang Patel0475c912009-09-29 00:01:14 +0000510 assert(Lex.getKind() == lltok::NamedOrCustomMD);
Devang Pateleff2ab62009-07-29 00:34:02 +0000511 Lex.Lex();
512 std::string Name = Lex.getStrVal();
513
514 if (ParseToken(lltok::equal, "expected '=' here"))
515 return true;
516
517 if (Lex.getKind() != lltok::Metadata)
518 return TokError("Expected '!' here");
519 Lex.Lex();
520
521 if (Lex.getKind() != lltok::lbrace)
522 return TokError("Expected '{' here");
523 Lex.Lex();
524 SmallVector<MetadataBase *, 8> Elts;
525 do {
526 if (Lex.getKind() != lltok::Metadata)
527 return TokError("Expected '!' here");
528 Lex.Lex();
529 MetadataBase *N = 0;
530 if (ParseMDNode(N)) return true;
531 Elts.push_back(N);
532 } while (EatIfPresent(lltok::comma));
533
534 if (ParseToken(lltok::rbrace, "expected end of metadata node"))
535 return true;
536
Owen Anderson1d0be152009-08-13 21:58:54 +0000537 NamedMDNode::Create(Context, Name, Elts.data(), Elts.size(), M);
Devang Pateleff2ab62009-07-29 00:34:02 +0000538 return false;
539}
540
Devang Patel923078c2009-07-01 19:21:12 +0000541/// ParseStandaloneMetadata:
Daniel Dunbara279bc32009-09-20 02:20:51 +0000542/// !42 = !{...}
Devang Patel923078c2009-07-01 19:21:12 +0000543bool LLParser::ParseStandaloneMetadata() {
544 assert(Lex.getKind() == lltok::Metadata);
545 Lex.Lex();
546 unsigned MetadataID = 0;
547 if (ParseUInt32(MetadataID))
548 return true;
549 if (MetadataCache.find(MetadataID) != MetadataCache.end())
550 return TokError("Metadata id is already used");
551 if (ParseToken(lltok::equal, "expected '=' here"))
552 return true;
553
554 LocTy TyLoc;
Owen Anderson1d0be152009-08-13 21:58:54 +0000555 PATypeHolder Ty(Type::getVoidTy(Context));
Devang Patel2214c942009-07-08 21:57:07 +0000556 if (ParseType(Ty, TyLoc))
Devang Patel923078c2009-07-01 19:21:12 +0000557 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000558
Devang Patel104cf9e2009-07-23 01:07:34 +0000559 if (Lex.getKind() != lltok::Metadata)
560 return TokError("Expected metadata here");
Devang Patel923078c2009-07-01 19:21:12 +0000561
Devang Patel104cf9e2009-07-23 01:07:34 +0000562 Lex.Lex();
563 if (Lex.getKind() != lltok::lbrace)
564 return TokError("Expected '{' here");
565
566 SmallVector<Value *, 16> Elts;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000567 if (ParseMDNodeVector(Elts)
Benjamin Kramer30d3b912009-07-27 09:06:52 +0000568 || ParseToken(lltok::rbrace, "expected end of metadata node"))
Devang Patel104cf9e2009-07-23 01:07:34 +0000569 return true;
570
Owen Anderson647e3012009-07-31 21:35:40 +0000571 MDNode *Init = MDNode::get(Context, Elts.data(), Elts.size());
Devang Patel923078c2009-07-01 19:21:12 +0000572 MetadataCache[MetadataID] = Init;
Devang Patel85b8de82009-11-05 01:13:02 +0000573 std::map<unsigned, std::pair<WeakVH, LocTy> >::iterator
Devang Patel1c7eea62009-07-08 19:23:54 +0000574 FI = ForwardRefMDNodes.find(MetadataID);
575 if (FI != ForwardRefMDNodes.end()) {
Devang Patel104cf9e2009-07-23 01:07:34 +0000576 MDNode *FwdNode = cast<MDNode>(FI->second.first);
Devang Patel1c7eea62009-07-08 19:23:54 +0000577 FwdNode->replaceAllUsesWith(Init);
578 ForwardRefMDNodes.erase(FI);
579 }
580
Devang Patel923078c2009-07-01 19:21:12 +0000581 return false;
582}
583
Victor Hernandez19715562009-12-03 23:40:58 +0000584/// ParseInlineMetadata:
585/// !{type %instr}
586/// !{...} MDNode
587/// !"foo" MDString
588bool LLParser::ParseInlineMetadata(Value *&V, PerFunctionState &PFS) {
589 assert(Lex.getKind() == lltok::Metadata && "Only for Metadata");
590 V = 0;
591
592 Lex.Lex();
593 if (Lex.getKind() == lltok::lbrace) {
594 Lex.Lex();
595 if (ParseTypeAndValue(V, PFS) ||
596 ParseToken(lltok::rbrace, "expected end of metadata node"))
597 return true;
598
599 Value *Vals[] = { V };
600 V = MDNode::get(Context, Vals, 1);
601 return false;
602 }
603
604 // Standalone metadata reference
605 // !{ ..., !42, ... }
606 if (!ParseMDNode((MetadataBase *&)V))
607 return false;
608
609 // MDString:
610 // '!' STRINGCONSTANT
611 if (ParseMDString((MetadataBase *&)V)) return true;
612 return false;
613}
614
Chris Lattnerdf986172009-01-02 07:01:27 +0000615/// ParseAlias:
616/// ::= GlobalVar '=' OptionalVisibility 'alias' OptionalLinkage Aliasee
617/// Aliasee
Chris Lattner040f7582009-04-25 21:26:00 +0000618/// ::= TypeAndValue
619/// ::= 'bitcast' '(' TypeAndValue 'to' Type ')'
Dan Gohmandd8004d2009-07-27 21:53:46 +0000620/// ::= 'getelementptr' 'inbounds'? '(' ... ')'
Chris Lattnerdf986172009-01-02 07:01:27 +0000621///
622/// Everything through visibility has already been parsed.
623///
624bool LLParser::ParseAlias(const std::string &Name, LocTy NameLoc,
625 unsigned Visibility) {
626 assert(Lex.getKind() == lltok::kw_alias);
627 Lex.Lex();
628 unsigned Linkage;
629 LocTy LinkageLoc = Lex.getLoc();
630 if (ParseOptionalLinkage(Linkage))
631 return true;
632
633 if (Linkage != GlobalValue::ExternalLinkage &&
Duncan Sands667d4b82009-03-07 15:45:40 +0000634 Linkage != GlobalValue::WeakAnyLinkage &&
635 Linkage != GlobalValue::WeakODRLinkage &&
Rafael Espindolabb46f522009-01-15 20:18:42 +0000636 Linkage != GlobalValue::InternalLinkage &&
Bill Wendling3d10a5a2009-07-20 01:03:30 +0000637 Linkage != GlobalValue::PrivateLinkage &&
638 Linkage != GlobalValue::LinkerPrivateLinkage)
Chris Lattnerdf986172009-01-02 07:01:27 +0000639 return Error(LinkageLoc, "invalid linkage type for alias");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000640
Chris Lattnerdf986172009-01-02 07:01:27 +0000641 Constant *Aliasee;
642 LocTy AliaseeLoc = Lex.getLoc();
Chris Lattner040f7582009-04-25 21:26:00 +0000643 if (Lex.getKind() != lltok::kw_bitcast &&
644 Lex.getKind() != lltok::kw_getelementptr) {
Chris Lattnerdf986172009-01-02 07:01:27 +0000645 if (ParseGlobalTypeAndValue(Aliasee)) return true;
646 } else {
647 // The bitcast dest type is not present, it is implied by the dest type.
648 ValID ID;
649 if (ParseValID(ID)) return true;
650 if (ID.Kind != ValID::t_Constant)
651 return Error(AliaseeLoc, "invalid aliasee");
652 Aliasee = ID.ConstantVal;
653 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000654
Chris Lattnerdf986172009-01-02 07:01:27 +0000655 if (!isa<PointerType>(Aliasee->getType()))
656 return Error(AliaseeLoc, "alias must have pointer type");
657
658 // Okay, create the alias but do not insert it into the module yet.
659 GlobalAlias* GA = new GlobalAlias(Aliasee->getType(),
660 (GlobalValue::LinkageTypes)Linkage, Name,
661 Aliasee);
662 GA->setVisibility((GlobalValue::VisibilityTypes)Visibility);
Daniel Dunbara279bc32009-09-20 02:20:51 +0000663
Chris Lattnerdf986172009-01-02 07:01:27 +0000664 // See if this value already exists in the symbol table. If so, it is either
665 // a redefinition or a definition of a forward reference.
Chris Lattner1d871c52009-10-25 23:22:50 +0000666 if (GlobalValue *Val = M->getNamedValue(Name)) {
Chris Lattnerdf986172009-01-02 07:01:27 +0000667 // See if this was a redefinition. If so, there is no entry in
668 // ForwardRefVals.
669 std::map<std::string, std::pair<GlobalValue*, LocTy> >::iterator
670 I = ForwardRefVals.find(Name);
671 if (I == ForwardRefVals.end())
672 return Error(NameLoc, "redefinition of global named '@" + Name + "'");
673
674 // Otherwise, this was a definition of forward ref. Verify that types
675 // agree.
676 if (Val->getType() != GA->getType())
677 return Error(NameLoc,
678 "forward reference and definition of alias have different types");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000679
Chris Lattnerdf986172009-01-02 07:01:27 +0000680 // If they agree, just RAUW the old value with the alias and remove the
681 // forward ref info.
682 Val->replaceAllUsesWith(GA);
683 Val->eraseFromParent();
684 ForwardRefVals.erase(I);
685 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000686
Chris Lattnerdf986172009-01-02 07:01:27 +0000687 // Insert into the module, we know its name won't collide now.
688 M->getAliasList().push_back(GA);
689 assert(GA->getNameStr() == Name && "Should not be a name conflict!");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000690
Chris Lattnerdf986172009-01-02 07:01:27 +0000691 return false;
692}
693
694/// ParseGlobal
695/// ::= GlobalVar '=' OptionalLinkage OptionalVisibility OptionalThreadLocal
696/// OptionalAddrSpace GlobalType Type Const
697/// ::= OptionalLinkage OptionalVisibility OptionalThreadLocal
698/// OptionalAddrSpace GlobalType Type Const
699///
700/// Everything through visibility has been parsed already.
701///
702bool LLParser::ParseGlobal(const std::string &Name, LocTy NameLoc,
703 unsigned Linkage, bool HasLinkage,
704 unsigned Visibility) {
705 unsigned AddrSpace;
706 bool ThreadLocal, IsConstant;
707 LocTy TyLoc;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000708
Owen Anderson1d0be152009-08-13 21:58:54 +0000709 PATypeHolder Ty(Type::getVoidTy(Context));
Chris Lattnerdf986172009-01-02 07:01:27 +0000710 if (ParseOptionalToken(lltok::kw_thread_local, ThreadLocal) ||
711 ParseOptionalAddrSpace(AddrSpace) ||
712 ParseGlobalType(IsConstant) ||
713 ParseType(Ty, TyLoc))
714 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000715
Chris Lattnerdf986172009-01-02 07:01:27 +0000716 // If the linkage is specified and is external, then no initializer is
717 // present.
718 Constant *Init = 0;
719 if (!HasLinkage || (Linkage != GlobalValue::DLLImportLinkage &&
Duncan Sands5f4ee1f2009-03-11 08:08:06 +0000720 Linkage != GlobalValue::ExternalWeakLinkage &&
Chris Lattnerdf986172009-01-02 07:01:27 +0000721 Linkage != GlobalValue::ExternalLinkage)) {
722 if (ParseGlobalValue(Ty, Init))
723 return true;
724 }
725
Chris Lattnercf0fe8d2009-10-05 05:54:46 +0000726 if (isa<FunctionType>(Ty) || Ty->isLabelTy())
Chris Lattner4a2f1122009-02-08 20:00:15 +0000727 return Error(TyLoc, "invalid type for global variable");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000728
Chris Lattnerdf986172009-01-02 07:01:27 +0000729 GlobalVariable *GV = 0;
730
731 // See if the global was forward referenced, if so, use the global.
Chris Lattner91dad872009-02-02 07:24:28 +0000732 if (!Name.empty()) {
Chris Lattner1d871c52009-10-25 23:22:50 +0000733 if (GlobalValue *GVal = M->getNamedValue(Name)) {
734 if (!ForwardRefVals.erase(Name) || !isa<GlobalValue>(GVal))
735 return Error(NameLoc, "redefinition of global '@" + Name + "'");
736 GV = cast<GlobalVariable>(GVal);
737 }
Chris Lattnerdf986172009-01-02 07:01:27 +0000738 } else {
739 std::map<unsigned, std::pair<GlobalValue*, LocTy> >::iterator
740 I = ForwardRefValIDs.find(NumberedVals.size());
741 if (I != ForwardRefValIDs.end()) {
742 GV = cast<GlobalVariable>(I->second.first);
743 ForwardRefValIDs.erase(I);
744 }
745 }
746
747 if (GV == 0) {
Daniel Dunbara279bc32009-09-20 02:20:51 +0000748 GV = new GlobalVariable(*M, Ty, false, GlobalValue::ExternalLinkage, 0,
Owen Andersone9b11b42009-07-08 19:03:57 +0000749 Name, 0, false, AddrSpace);
Chris Lattnerdf986172009-01-02 07:01:27 +0000750 } else {
751 if (GV->getType()->getElementType() != Ty)
752 return Error(TyLoc,
753 "forward reference and definition of global have different types");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000754
Chris Lattnerdf986172009-01-02 07:01:27 +0000755 // Move the forward-reference to the correct spot in the module.
756 M->getGlobalList().splice(M->global_end(), M->getGlobalList(), GV);
757 }
758
759 if (Name.empty())
760 NumberedVals.push_back(GV);
Daniel Dunbara279bc32009-09-20 02:20:51 +0000761
Chris Lattnerdf986172009-01-02 07:01:27 +0000762 // Set the parsed properties on the global.
763 if (Init)
764 GV->setInitializer(Init);
765 GV->setConstant(IsConstant);
766 GV->setLinkage((GlobalValue::LinkageTypes)Linkage);
767 GV->setVisibility((GlobalValue::VisibilityTypes)Visibility);
768 GV->setThreadLocal(ThreadLocal);
Daniel Dunbara279bc32009-09-20 02:20:51 +0000769
Chris Lattnerdf986172009-01-02 07:01:27 +0000770 // Parse attributes on the global.
771 while (Lex.getKind() == lltok::comma) {
772 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +0000773
Chris Lattnerdf986172009-01-02 07:01:27 +0000774 if (Lex.getKind() == lltok::kw_section) {
775 Lex.Lex();
776 GV->setSection(Lex.getStrVal());
777 if (ParseToken(lltok::StringConstant, "expected global section string"))
778 return true;
779 } else if (Lex.getKind() == lltok::kw_align) {
780 unsigned Alignment;
781 if (ParseOptionalAlignment(Alignment)) return true;
782 GV->setAlignment(Alignment);
783 } else {
784 TokError("unknown global variable property!");
785 }
786 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000787
Chris Lattnerdf986172009-01-02 07:01:27 +0000788 return false;
789}
790
791
792//===----------------------------------------------------------------------===//
793// GlobalValue Reference/Resolution Routines.
794//===----------------------------------------------------------------------===//
795
796/// GetGlobalVal - Get a value with the specified name or ID, creating a
797/// forward reference record if needed. This can return null if the value
798/// exists but does not have the right type.
799GlobalValue *LLParser::GetGlobalVal(const std::string &Name, const Type *Ty,
800 LocTy Loc) {
801 const PointerType *PTy = dyn_cast<PointerType>(Ty);
802 if (PTy == 0) {
803 Error(Loc, "global variable reference must have pointer type");
804 return 0;
805 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000806
Chris Lattnerdf986172009-01-02 07:01:27 +0000807 // Look this name up in the normal function symbol table.
808 GlobalValue *Val =
809 cast_or_null<GlobalValue>(M->getValueSymbolTable().lookup(Name));
Daniel Dunbara279bc32009-09-20 02:20:51 +0000810
Chris Lattnerdf986172009-01-02 07:01:27 +0000811 // If this is a forward reference for the value, see if we already created a
812 // forward ref record.
813 if (Val == 0) {
814 std::map<std::string, std::pair<GlobalValue*, LocTy> >::iterator
815 I = ForwardRefVals.find(Name);
816 if (I != ForwardRefVals.end())
817 Val = I->second.first;
818 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000819
Chris Lattnerdf986172009-01-02 07:01:27 +0000820 // If we have the value in the symbol table or fwd-ref table, return it.
821 if (Val) {
822 if (Val->getType() == Ty) return Val;
823 Error(Loc, "'@" + Name + "' defined with type '" +
824 Val->getType()->getDescription() + "'");
825 return 0;
826 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000827
Chris Lattnerdf986172009-01-02 07:01:27 +0000828 // Otherwise, create a new forward reference for this value and remember it.
829 GlobalValue *FwdVal;
Chris Lattner1e407c32009-01-08 19:05:36 +0000830 if (const FunctionType *FT = dyn_cast<FunctionType>(PTy->getElementType())) {
831 // Function types can return opaque but functions can't.
832 if (isa<OpaqueType>(FT->getReturnType())) {
833 Error(Loc, "function may not return opaque type");
834 return 0;
835 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000836
Duncan Sands5f4ee1f2009-03-11 08:08:06 +0000837 FwdVal = Function::Create(FT, GlobalValue::ExternalWeakLinkage, Name, M);
Chris Lattner1e407c32009-01-08 19:05:36 +0000838 } else {
Owen Andersone9b11b42009-07-08 19:03:57 +0000839 FwdVal = new GlobalVariable(*M, PTy->getElementType(), false,
840 GlobalValue::ExternalWeakLinkage, 0, Name);
Chris Lattner1e407c32009-01-08 19:05:36 +0000841 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000842
Chris Lattnerdf986172009-01-02 07:01:27 +0000843 ForwardRefVals[Name] = std::make_pair(FwdVal, Loc);
844 return FwdVal;
845}
846
847GlobalValue *LLParser::GetGlobalVal(unsigned ID, const Type *Ty, LocTy Loc) {
848 const PointerType *PTy = dyn_cast<PointerType>(Ty);
849 if (PTy == 0) {
850 Error(Loc, "global variable reference must have pointer type");
851 return 0;
852 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000853
Chris Lattnerdf986172009-01-02 07:01:27 +0000854 GlobalValue *Val = ID < NumberedVals.size() ? NumberedVals[ID] : 0;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000855
Chris Lattnerdf986172009-01-02 07:01:27 +0000856 // If this is a forward reference for the value, see if we already created a
857 // forward ref record.
858 if (Val == 0) {
859 std::map<unsigned, std::pair<GlobalValue*, LocTy> >::iterator
860 I = ForwardRefValIDs.find(ID);
861 if (I != ForwardRefValIDs.end())
862 Val = I->second.first;
863 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000864
Chris Lattnerdf986172009-01-02 07:01:27 +0000865 // If we have the value in the symbol table or fwd-ref table, return it.
866 if (Val) {
867 if (Val->getType() == Ty) return Val;
868 Error(Loc, "'@" + utostr(ID) + "' defined with type '" +
869 Val->getType()->getDescription() + "'");
870 return 0;
871 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000872
Chris Lattnerdf986172009-01-02 07:01:27 +0000873 // Otherwise, create a new forward reference for this value and remember it.
874 GlobalValue *FwdVal;
Chris Lattner830703b2009-01-05 18:27:50 +0000875 if (const FunctionType *FT = dyn_cast<FunctionType>(PTy->getElementType())) {
876 // Function types can return opaque but functions can't.
877 if (isa<OpaqueType>(FT->getReturnType())) {
Chris Lattner0d8484f2009-01-05 18:56:52 +0000878 Error(Loc, "function may not return opaque type");
Chris Lattner830703b2009-01-05 18:27:50 +0000879 return 0;
880 }
Duncan Sands5f4ee1f2009-03-11 08:08:06 +0000881 FwdVal = Function::Create(FT, GlobalValue::ExternalWeakLinkage, "", M);
Chris Lattner830703b2009-01-05 18:27:50 +0000882 } else {
Owen Andersone9b11b42009-07-08 19:03:57 +0000883 FwdVal = new GlobalVariable(*M, PTy->getElementType(), false,
884 GlobalValue::ExternalWeakLinkage, 0, "");
Chris Lattner830703b2009-01-05 18:27:50 +0000885 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000886
Chris Lattnerdf986172009-01-02 07:01:27 +0000887 ForwardRefValIDs[ID] = std::make_pair(FwdVal, Loc);
888 return FwdVal;
889}
890
891
892//===----------------------------------------------------------------------===//
893// Helper Routines.
894//===----------------------------------------------------------------------===//
895
896/// ParseToken - If the current token has the specified kind, eat it and return
897/// success. Otherwise, emit the specified error and return failure.
898bool LLParser::ParseToken(lltok::Kind T, const char *ErrMsg) {
899 if (Lex.getKind() != T)
900 return TokError(ErrMsg);
901 Lex.Lex();
902 return false;
903}
904
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000905/// ParseStringConstant
906/// ::= StringConstant
907bool LLParser::ParseStringConstant(std::string &Result) {
908 if (Lex.getKind() != lltok::StringConstant)
909 return TokError("expected string constant");
910 Result = Lex.getStrVal();
911 Lex.Lex();
912 return false;
913}
914
915/// ParseUInt32
916/// ::= uint32
917bool LLParser::ParseUInt32(unsigned &Val) {
Chris Lattnerdf986172009-01-02 07:01:27 +0000918 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned())
919 return TokError("expected integer");
920 uint64_t Val64 = Lex.getAPSIntVal().getLimitedValue(0xFFFFFFFFULL+1);
921 if (Val64 != unsigned(Val64))
922 return TokError("expected 32-bit integer (too large)");
923 Val = Val64;
924 Lex.Lex();
925 return false;
926}
927
928
929/// ParseOptionalAddrSpace
930/// := /*empty*/
931/// := 'addrspace' '(' uint32 ')'
932bool LLParser::ParseOptionalAddrSpace(unsigned &AddrSpace) {
933 AddrSpace = 0;
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000934 if (!EatIfPresent(lltok::kw_addrspace))
Chris Lattnerdf986172009-01-02 07:01:27 +0000935 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +0000936 return ParseToken(lltok::lparen, "expected '(' in address space") ||
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000937 ParseUInt32(AddrSpace) ||
Chris Lattnerdf986172009-01-02 07:01:27 +0000938 ParseToken(lltok::rparen, "expected ')' in address space");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000939}
Chris Lattnerdf986172009-01-02 07:01:27 +0000940
941/// ParseOptionalAttrs - Parse a potentially empty attribute list. AttrKind
942/// indicates what kind of attribute list this is: 0: function arg, 1: result,
943/// 2: function attr.
Chris Lattnerad9ad7c2009-03-25 06:36:36 +0000944/// 3: function arg after value: FIXME: REMOVE IN LLVM 3.0
Chris Lattnerdf986172009-01-02 07:01:27 +0000945bool LLParser::ParseOptionalAttrs(unsigned &Attrs, unsigned AttrKind) {
946 Attrs = Attribute::None;
947 LocTy AttrLoc = Lex.getLoc();
Daniel Dunbara279bc32009-09-20 02:20:51 +0000948
Chris Lattnerdf986172009-01-02 07:01:27 +0000949 while (1) {
950 switch (Lex.getKind()) {
951 case lltok::kw_sext:
952 case lltok::kw_zext:
Chris Lattnerad9ad7c2009-03-25 06:36:36 +0000953 // Treat these as signext/zeroext if they occur in the argument list after
954 // the value, as in "call i8 @foo(i8 10 sext)". If they occur before the
955 // value, as in "call i8 @foo(i8 sext (" then it is part of a constant
956 // expr.
Chris Lattnerdf986172009-01-02 07:01:27 +0000957 // FIXME: REMOVE THIS IN LLVM 3.0
Chris Lattnerad9ad7c2009-03-25 06:36:36 +0000958 if (AttrKind == 3) {
Chris Lattnerdf986172009-01-02 07:01:27 +0000959 if (Lex.getKind() == lltok::kw_sext)
960 Attrs |= Attribute::SExt;
961 else
962 Attrs |= Attribute::ZExt;
963 break;
964 }
965 // FALL THROUGH.
966 default: // End of attributes.
967 if (AttrKind != 2 && (Attrs & Attribute::FunctionOnly))
968 return Error(AttrLoc, "invalid use of function-only attribute");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000969
Chris Lattnerad9ad7c2009-03-25 06:36:36 +0000970 if (AttrKind != 0 && AttrKind != 3 && (Attrs & Attribute::ParameterOnly))
Chris Lattnerdf986172009-01-02 07:01:27 +0000971 return Error(AttrLoc, "invalid use of parameter-only attribute");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000972
Chris Lattnerdf986172009-01-02 07:01:27 +0000973 return false;
Devang Patel578efa92009-06-05 21:57:13 +0000974 case lltok::kw_zeroext: Attrs |= Attribute::ZExt; break;
975 case lltok::kw_signext: Attrs |= Attribute::SExt; break;
976 case lltok::kw_inreg: Attrs |= Attribute::InReg; break;
977 case lltok::kw_sret: Attrs |= Attribute::StructRet; break;
978 case lltok::kw_noalias: Attrs |= Attribute::NoAlias; break;
979 case lltok::kw_nocapture: Attrs |= Attribute::NoCapture; break;
980 case lltok::kw_byval: Attrs |= Attribute::ByVal; break;
981 case lltok::kw_nest: Attrs |= Attribute::Nest; break;
Chris Lattnerdf986172009-01-02 07:01:27 +0000982
Devang Patel578efa92009-06-05 21:57:13 +0000983 case lltok::kw_noreturn: Attrs |= Attribute::NoReturn; break;
984 case lltok::kw_nounwind: Attrs |= Attribute::NoUnwind; break;
985 case lltok::kw_noinline: Attrs |= Attribute::NoInline; break;
986 case lltok::kw_readnone: Attrs |= Attribute::ReadNone; break;
987 case lltok::kw_readonly: Attrs |= Attribute::ReadOnly; break;
Dale Johannesende86d472009-08-26 01:08:21 +0000988 case lltok::kw_inlinehint: Attrs |= Attribute::InlineHint; break;
Devang Patel578efa92009-06-05 21:57:13 +0000989 case lltok::kw_alwaysinline: Attrs |= Attribute::AlwaysInline; break;
990 case lltok::kw_optsize: Attrs |= Attribute::OptimizeForSize; break;
991 case lltok::kw_ssp: Attrs |= Attribute::StackProtect; break;
992 case lltok::kw_sspreq: Attrs |= Attribute::StackProtectReq; break;
993 case lltok::kw_noredzone: Attrs |= Attribute::NoRedZone; break;
994 case lltok::kw_noimplicitfloat: Attrs |= Attribute::NoImplicitFloat; break;
Anton Korobeynikovc5ec8a72009-07-17 18:07:26 +0000995 case lltok::kw_naked: Attrs |= Attribute::Naked; break;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000996
Chris Lattnerdf986172009-01-02 07:01:27 +0000997 case lltok::kw_align: {
998 unsigned Alignment;
999 if (ParseOptionalAlignment(Alignment))
1000 return true;
1001 Attrs |= Attribute::constructAlignmentFromInt(Alignment);
1002 continue;
1003 }
1004 }
1005 Lex.Lex();
1006 }
1007}
1008
1009/// ParseOptionalLinkage
1010/// ::= /*empty*/
Rafael Espindolabb46f522009-01-15 20:18:42 +00001011/// ::= 'private'
Bill Wendling3d10a5a2009-07-20 01:03:30 +00001012/// ::= 'linker_private'
Chris Lattnerdf986172009-01-02 07:01:27 +00001013/// ::= 'internal'
1014/// ::= 'weak'
Duncan Sands667d4b82009-03-07 15:45:40 +00001015/// ::= 'weak_odr'
Chris Lattnerdf986172009-01-02 07:01:27 +00001016/// ::= 'linkonce'
Duncan Sands667d4b82009-03-07 15:45:40 +00001017/// ::= 'linkonce_odr'
Chris Lattnerdf986172009-01-02 07:01:27 +00001018/// ::= 'appending'
1019/// ::= 'dllexport'
1020/// ::= 'common'
1021/// ::= 'dllimport'
1022/// ::= 'extern_weak'
1023/// ::= 'external'
1024bool LLParser::ParseOptionalLinkage(unsigned &Res, bool &HasLinkage) {
1025 HasLinkage = false;
1026 switch (Lex.getKind()) {
Bill Wendling3d10a5a2009-07-20 01:03:30 +00001027 default: Res=GlobalValue::ExternalLinkage; return false;
1028 case lltok::kw_private: Res = GlobalValue::PrivateLinkage; break;
1029 case lltok::kw_linker_private: Res = GlobalValue::LinkerPrivateLinkage; break;
1030 case lltok::kw_internal: Res = GlobalValue::InternalLinkage; break;
1031 case lltok::kw_weak: Res = GlobalValue::WeakAnyLinkage; break;
1032 case lltok::kw_weak_odr: Res = GlobalValue::WeakODRLinkage; break;
1033 case lltok::kw_linkonce: Res = GlobalValue::LinkOnceAnyLinkage; break;
1034 case lltok::kw_linkonce_odr: Res = GlobalValue::LinkOnceODRLinkage; break;
Chris Lattner266c7bb2009-04-13 05:44:34 +00001035 case lltok::kw_available_externally:
1036 Res = GlobalValue::AvailableExternallyLinkage;
1037 break;
Bill Wendling3d10a5a2009-07-20 01:03:30 +00001038 case lltok::kw_appending: Res = GlobalValue::AppendingLinkage; break;
1039 case lltok::kw_dllexport: Res = GlobalValue::DLLExportLinkage; break;
1040 case lltok::kw_common: Res = GlobalValue::CommonLinkage; break;
1041 case lltok::kw_dllimport: Res = GlobalValue::DLLImportLinkage; break;
1042 case lltok::kw_extern_weak: Res = GlobalValue::ExternalWeakLinkage; break;
1043 case lltok::kw_external: Res = GlobalValue::ExternalLinkage; break;
Chris Lattnerdf986172009-01-02 07:01:27 +00001044 }
1045 Lex.Lex();
1046 HasLinkage = true;
1047 return false;
1048}
1049
1050/// ParseOptionalVisibility
1051/// ::= /*empty*/
1052/// ::= 'default'
1053/// ::= 'hidden'
1054/// ::= 'protected'
Daniel Dunbara279bc32009-09-20 02:20:51 +00001055///
Chris Lattnerdf986172009-01-02 07:01:27 +00001056bool LLParser::ParseOptionalVisibility(unsigned &Res) {
1057 switch (Lex.getKind()) {
1058 default: Res = GlobalValue::DefaultVisibility; return false;
1059 case lltok::kw_default: Res = GlobalValue::DefaultVisibility; break;
1060 case lltok::kw_hidden: Res = GlobalValue::HiddenVisibility; break;
1061 case lltok::kw_protected: Res = GlobalValue::ProtectedVisibility; break;
1062 }
1063 Lex.Lex();
1064 return false;
1065}
1066
1067/// ParseOptionalCallingConv
1068/// ::= /*empty*/
1069/// ::= 'ccc'
1070/// ::= 'fastcc'
1071/// ::= 'coldcc'
1072/// ::= 'x86_stdcallcc'
1073/// ::= 'x86_fastcallcc'
Anton Korobeynikov385f5a92009-06-16 18:50:49 +00001074/// ::= 'arm_apcscc'
1075/// ::= 'arm_aapcscc'
1076/// ::= 'arm_aapcs_vfpcc'
Anton Korobeynikov211a14e2009-12-07 02:27:35 +00001077/// ::= 'msp430_intrcc'
Chris Lattnerdf986172009-01-02 07:01:27 +00001078/// ::= 'cc' UINT
Anton Korobeynikov385f5a92009-06-16 18:50:49 +00001079///
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001080bool LLParser::ParseOptionalCallingConv(CallingConv::ID &CC) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001081 switch (Lex.getKind()) {
1082 default: CC = CallingConv::C; return false;
1083 case lltok::kw_ccc: CC = CallingConv::C; break;
1084 case lltok::kw_fastcc: CC = CallingConv::Fast; break;
1085 case lltok::kw_coldcc: CC = CallingConv::Cold; break;
1086 case lltok::kw_x86_stdcallcc: CC = CallingConv::X86_StdCall; break;
1087 case lltok::kw_x86_fastcallcc: CC = CallingConv::X86_FastCall; break;
Anton Korobeynikov385f5a92009-06-16 18:50:49 +00001088 case lltok::kw_arm_apcscc: CC = CallingConv::ARM_APCS; break;
1089 case lltok::kw_arm_aapcscc: CC = CallingConv::ARM_AAPCS; break;
1090 case lltok::kw_arm_aapcs_vfpcc:CC = CallingConv::ARM_AAPCS_VFP; break;
Anton Korobeynikov211a14e2009-12-07 02:27:35 +00001091 case lltok::kw_msp430_intrcc: CC = CallingConv::MSP430_INTR; break;
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001092 case lltok::kw_cc: {
1093 unsigned ArbitraryCC;
1094 Lex.Lex();
1095 if (ParseUInt32(ArbitraryCC)) {
1096 return true;
1097 } else
1098 CC = static_cast<CallingConv::ID>(ArbitraryCC);
1099 return false;
1100 }
1101 break;
Chris Lattnerdf986172009-01-02 07:01:27 +00001102 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001103
Chris Lattnerdf986172009-01-02 07:01:27 +00001104 Lex.Lex();
1105 return false;
1106}
1107
Devang Patel0475c912009-09-29 00:01:14 +00001108/// ParseOptionalCustomMetadata
Devang Patelf633a062009-09-17 23:04:48 +00001109/// ::= /* empty */
Devang Patel0475c912009-09-29 00:01:14 +00001110/// ::= !dbg !42
1111bool LLParser::ParseOptionalCustomMetadata() {
Chris Lattner52e20312009-10-19 05:31:10 +00001112 if (Lex.getKind() != lltok::NamedOrCustomMD)
Devang Patelf633a062009-09-17 23:04:48 +00001113 return false;
Devang Patel0475c912009-09-29 00:01:14 +00001114
Chris Lattner52e20312009-10-19 05:31:10 +00001115 std::string Name = Lex.getStrVal();
1116 Lex.Lex();
1117
Devang Patelf633a062009-09-17 23:04:48 +00001118 if (Lex.getKind() != lltok::Metadata)
1119 return TokError("Expected '!' here");
1120 Lex.Lex();
Devang Patel0475c912009-09-29 00:01:14 +00001121
Devang Patelf633a062009-09-17 23:04:48 +00001122 MetadataBase *Node;
1123 if (ParseMDNode(Node)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001124
Devang Patele30e6782009-09-28 21:41:20 +00001125 MetadataContext &TheMetadata = M->getContext().getMetadata();
Chris Lattner0eb41982009-12-28 20:45:51 +00001126 unsigned MDK = TheMetadata.getMDKindID(Name.c_str());
Devang Patel0475c912009-09-29 00:01:14 +00001127 MDsOnInst.push_back(std::make_pair(MDK, cast<MDNode>(Node)));
Devang Patelf633a062009-09-17 23:04:48 +00001128 return false;
1129}
1130
Chris Lattnerdf986172009-01-02 07:01:27 +00001131/// ParseOptionalAlignment
1132/// ::= /* empty */
1133/// ::= 'align' 4
1134bool LLParser::ParseOptionalAlignment(unsigned &Alignment) {
1135 Alignment = 0;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001136 if (!EatIfPresent(lltok::kw_align))
1137 return false;
Chris Lattner3fbb3ab2009-01-05 07:46:05 +00001138 LocTy AlignLoc = Lex.getLoc();
1139 if (ParseUInt32(Alignment)) return true;
1140 if (!isPowerOf2_32(Alignment))
1141 return Error(AlignLoc, "alignment is not a power of two");
1142 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00001143}
1144
Devang Patelf633a062009-09-17 23:04:48 +00001145/// ParseOptionalInfo
1146/// ::= OptionalInfo (',' OptionalInfo)+
1147bool LLParser::ParseOptionalInfo(unsigned &Alignment) {
1148
1149 // FIXME: Handle customized metadata info attached with an instruction.
1150 do {
Devang Patel0475c912009-09-29 00:01:14 +00001151 if (Lex.getKind() == lltok::NamedOrCustomMD) {
1152 if (ParseOptionalCustomMetadata()) return true;
Devang Patelf633a062009-09-17 23:04:48 +00001153 } else if (Lex.getKind() == lltok::kw_align) {
1154 if (ParseOptionalAlignment(Alignment)) return true;
1155 } else
1156 return true;
1157 } while (EatIfPresent(lltok::comma));
Daniel Dunbara279bc32009-09-20 02:20:51 +00001158
Devang Patelf633a062009-09-17 23:04:48 +00001159 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00001160}
1161
Devang Patelf633a062009-09-17 23:04:48 +00001162
Chris Lattnerdf986172009-01-02 07:01:27 +00001163/// ParseIndexList
1164/// ::= (',' uint32)+
1165bool LLParser::ParseIndexList(SmallVectorImpl<unsigned> &Indices) {
1166 if (Lex.getKind() != lltok::comma)
1167 return TokError("expected ',' as start of index list");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001168
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001169 while (EatIfPresent(lltok::comma)) {
Devang Patele8bc45a2009-11-03 19:06:07 +00001170 if (Lex.getKind() == lltok::NamedOrCustomMD)
1171 break;
Chris Lattnerdf986172009-01-02 07:01:27 +00001172 unsigned Idx;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001173 if (ParseUInt32(Idx)) return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00001174 Indices.push_back(Idx);
1175 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001176
Chris Lattnerdf986172009-01-02 07:01:27 +00001177 return false;
1178}
1179
1180//===----------------------------------------------------------------------===//
1181// Type Parsing.
1182//===----------------------------------------------------------------------===//
1183
1184/// ParseType - Parse and resolve a full type.
Chris Lattnera9a9e072009-03-09 04:49:14 +00001185bool LLParser::ParseType(PATypeHolder &Result, bool AllowVoid) {
1186 LocTy TypeLoc = Lex.getLoc();
Chris Lattnerdf986172009-01-02 07:01:27 +00001187 if (ParseTypeRec(Result)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001188
Chris Lattnerdf986172009-01-02 07:01:27 +00001189 // Verify no unresolved uprefs.
1190 if (!UpRefs.empty())
1191 return Error(UpRefs.back().Loc, "invalid unresolved type up reference");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001192
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001193 if (!AllowVoid && Result.get()->isVoidTy())
Chris Lattnera9a9e072009-03-09 04:49:14 +00001194 return Error(TypeLoc, "void type only allowed for function results");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001195
Chris Lattnerdf986172009-01-02 07:01:27 +00001196 return false;
1197}
1198
1199/// HandleUpRefs - Every time we finish a new layer of types, this function is
1200/// called. It loops through the UpRefs vector, which is a list of the
1201/// currently active types. For each type, if the up-reference is contained in
1202/// the newly completed type, we decrement the level count. When the level
1203/// count reaches zero, the up-referenced type is the type that is passed in:
1204/// thus we can complete the cycle.
1205///
1206PATypeHolder LLParser::HandleUpRefs(const Type *ty) {
1207 // If Ty isn't abstract, or if there are no up-references in it, then there is
1208 // nothing to resolve here.
1209 if (!ty->isAbstract() || UpRefs.empty()) return ty;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001210
Chris Lattnerdf986172009-01-02 07:01:27 +00001211 PATypeHolder Ty(ty);
1212#if 0
David Greene0e28d762009-12-23 23:38:28 +00001213 dbgs() << "Type '" << Ty->getDescription()
Chris Lattnerdf986172009-01-02 07:01:27 +00001214 << "' newly formed. Resolving upreferences.\n"
1215 << UpRefs.size() << " upreferences active!\n";
1216#endif
Daniel Dunbara279bc32009-09-20 02:20:51 +00001217
Chris Lattnerdf986172009-01-02 07:01:27 +00001218 // If we find any resolvable upreferences (i.e., those whose NestingLevel goes
1219 // to zero), we resolve them all together before we resolve them to Ty. At
1220 // the end of the loop, if there is anything to resolve to Ty, it will be in
1221 // this variable.
1222 OpaqueType *TypeToResolve = 0;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001223
Chris Lattnerdf986172009-01-02 07:01:27 +00001224 for (unsigned i = 0; i != UpRefs.size(); ++i) {
1225 // Determine if 'Ty' directly contains this up-references 'LastContainedTy'.
1226 bool ContainsType =
1227 std::find(Ty->subtype_begin(), Ty->subtype_end(),
1228 UpRefs[i].LastContainedTy) != Ty->subtype_end();
Daniel Dunbara279bc32009-09-20 02:20:51 +00001229
Chris Lattnerdf986172009-01-02 07:01:27 +00001230#if 0
David Greene0e28d762009-12-23 23:38:28 +00001231 dbgs() << " UR#" << i << " - TypeContains(" << Ty->getDescription() << ", "
Chris Lattnerdf986172009-01-02 07:01:27 +00001232 << UpRefs[i].LastContainedTy->getDescription() << ") = "
1233 << (ContainsType ? "true" : "false")
1234 << " level=" << UpRefs[i].NestingLevel << "\n";
1235#endif
1236 if (!ContainsType)
1237 continue;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001238
Chris Lattnerdf986172009-01-02 07:01:27 +00001239 // Decrement level of upreference
1240 unsigned Level = --UpRefs[i].NestingLevel;
1241 UpRefs[i].LastContainedTy = Ty;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001242
Chris Lattnerdf986172009-01-02 07:01:27 +00001243 // If the Up-reference has a non-zero level, it shouldn't be resolved yet.
1244 if (Level != 0)
1245 continue;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001246
Chris Lattnerdf986172009-01-02 07:01:27 +00001247#if 0
David Greene0e28d762009-12-23 23:38:28 +00001248 dbgs() << " * Resolving upreference for " << UpRefs[i].UpRefTy << "\n";
Chris Lattnerdf986172009-01-02 07:01:27 +00001249#endif
1250 if (!TypeToResolve)
1251 TypeToResolve = UpRefs[i].UpRefTy;
1252 else
1253 UpRefs[i].UpRefTy->refineAbstractTypeTo(TypeToResolve);
1254 UpRefs.erase(UpRefs.begin()+i); // Remove from upreference list.
1255 --i; // Do not skip the next element.
1256 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001257
Chris Lattnerdf986172009-01-02 07:01:27 +00001258 if (TypeToResolve)
1259 TypeToResolve->refineAbstractTypeTo(Ty);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001260
Chris Lattnerdf986172009-01-02 07:01:27 +00001261 return Ty;
1262}
1263
1264
1265/// ParseTypeRec - The recursive function used to process the internal
1266/// implementation details of types.
1267bool LLParser::ParseTypeRec(PATypeHolder &Result) {
1268 switch (Lex.getKind()) {
1269 default:
1270 return TokError("expected type");
1271 case lltok::Type:
1272 // TypeRec ::= 'float' | 'void' (etc)
1273 Result = Lex.getTyVal();
Daniel Dunbara279bc32009-09-20 02:20:51 +00001274 Lex.Lex();
Chris Lattnerdf986172009-01-02 07:01:27 +00001275 break;
1276 case lltok::kw_opaque:
1277 // TypeRec ::= 'opaque'
Owen Anderson0e275dc2009-08-13 23:27:32 +00001278 Result = OpaqueType::get(Context);
Chris Lattnerdf986172009-01-02 07:01:27 +00001279 Lex.Lex();
1280 break;
1281 case lltok::lbrace:
1282 // TypeRec ::= '{' ... '}'
1283 if (ParseStructType(Result, false))
1284 return true;
1285 break;
1286 case lltok::lsquare:
1287 // TypeRec ::= '[' ... ']'
1288 Lex.Lex(); // eat the lsquare.
1289 if (ParseArrayVectorType(Result, false))
1290 return true;
1291 break;
1292 case lltok::less: // Either vector or packed struct.
1293 // TypeRec ::= '<' ... '>'
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001294 Lex.Lex();
1295 if (Lex.getKind() == lltok::lbrace) {
1296 if (ParseStructType(Result, true) ||
1297 ParseToken(lltok::greater, "expected '>' at end of packed struct"))
Chris Lattnerdf986172009-01-02 07:01:27 +00001298 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00001299 } else if (ParseArrayVectorType(Result, true))
1300 return true;
1301 break;
1302 case lltok::LocalVar:
1303 case lltok::StringConstant: // FIXME: REMOVE IN LLVM 3.0
1304 // TypeRec ::= %foo
1305 if (const Type *T = M->getTypeByName(Lex.getStrVal())) {
1306 Result = T;
1307 } else {
Owen Anderson0e275dc2009-08-13 23:27:32 +00001308 Result = OpaqueType::get(Context);
Chris Lattnerdf986172009-01-02 07:01:27 +00001309 ForwardRefTypes.insert(std::make_pair(Lex.getStrVal(),
1310 std::make_pair(Result,
1311 Lex.getLoc())));
1312 M->addTypeName(Lex.getStrVal(), Result.get());
1313 }
1314 Lex.Lex();
1315 break;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001316
Chris Lattnerdf986172009-01-02 07:01:27 +00001317 case lltok::LocalVarID:
1318 // TypeRec ::= %4
1319 if (Lex.getUIntVal() < NumberedTypes.size())
1320 Result = NumberedTypes[Lex.getUIntVal()];
1321 else {
1322 std::map<unsigned, std::pair<PATypeHolder, LocTy> >::iterator
1323 I = ForwardRefTypeIDs.find(Lex.getUIntVal());
1324 if (I != ForwardRefTypeIDs.end())
1325 Result = I->second.first;
1326 else {
Owen Anderson0e275dc2009-08-13 23:27:32 +00001327 Result = OpaqueType::get(Context);
Chris Lattnerdf986172009-01-02 07:01:27 +00001328 ForwardRefTypeIDs.insert(std::make_pair(Lex.getUIntVal(),
1329 std::make_pair(Result,
1330 Lex.getLoc())));
1331 }
1332 }
1333 Lex.Lex();
1334 break;
1335 case lltok::backslash: {
1336 // TypeRec ::= '\' 4
Chris Lattnerdf986172009-01-02 07:01:27 +00001337 Lex.Lex();
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001338 unsigned Val;
1339 if (ParseUInt32(Val)) return true;
Owen Anderson0e275dc2009-08-13 23:27:32 +00001340 OpaqueType *OT = OpaqueType::get(Context); //Use temporary placeholder.
Chris Lattnerdf986172009-01-02 07:01:27 +00001341 UpRefs.push_back(UpRefRecord(Lex.getLoc(), Val, OT));
1342 Result = OT;
1343 break;
1344 }
1345 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001346
1347 // Parse the type suffixes.
Chris Lattnerdf986172009-01-02 07:01:27 +00001348 while (1) {
1349 switch (Lex.getKind()) {
1350 // End of type.
Daniel Dunbara279bc32009-09-20 02:20:51 +00001351 default: return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00001352
1353 // TypeRec ::= TypeRec '*'
1354 case lltok::star:
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001355 if (Result.get()->isLabelTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00001356 return TokError("basic block pointers are invalid");
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001357 if (Result.get()->isVoidTy())
Dan Gohmanb9070d32009-02-09 17:41:21 +00001358 return TokError("pointers to void are invalid; use i8* instead");
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001359 if (!PointerType::isValidElementType(Result.get()))
1360 return TokError("pointer to this type is invalid");
Owen Andersondebcb012009-07-29 22:17:13 +00001361 Result = HandleUpRefs(PointerType::getUnqual(Result.get()));
Chris Lattnerdf986172009-01-02 07:01:27 +00001362 Lex.Lex();
1363 break;
1364
1365 // TypeRec ::= TypeRec 'addrspace' '(' uint32 ')' '*'
1366 case lltok::kw_addrspace: {
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001367 if (Result.get()->isLabelTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00001368 return TokError("basic block pointers are invalid");
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001369 if (Result.get()->isVoidTy())
Dan Gohmanb9070d32009-02-09 17:41:21 +00001370 return TokError("pointers to void are invalid; use i8* instead");
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001371 if (!PointerType::isValidElementType(Result.get()))
1372 return TokError("pointer to this type is invalid");
Chris Lattnerdf986172009-01-02 07:01:27 +00001373 unsigned AddrSpace;
1374 if (ParseOptionalAddrSpace(AddrSpace) ||
1375 ParseToken(lltok::star, "expected '*' in address space"))
1376 return true;
1377
Owen Andersondebcb012009-07-29 22:17:13 +00001378 Result = HandleUpRefs(PointerType::get(Result.get(), AddrSpace));
Chris Lattnerdf986172009-01-02 07:01:27 +00001379 break;
1380 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001381
Chris Lattnerdf986172009-01-02 07:01:27 +00001382 /// Types '(' ArgTypeListI ')' OptFuncAttrs
1383 case lltok::lparen:
1384 if (ParseFunctionType(Result))
1385 return true;
1386 break;
1387 }
1388 }
1389}
1390
1391/// ParseParameterList
1392/// ::= '(' ')'
1393/// ::= '(' Arg (',' Arg)* ')'
1394/// Arg
1395/// ::= Type OptionalAttributes Value OptionalAttributes
1396bool LLParser::ParseParameterList(SmallVectorImpl<ParamInfo> &ArgList,
1397 PerFunctionState &PFS) {
1398 if (ParseToken(lltok::lparen, "expected '(' in call"))
1399 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001400
Chris Lattnerdf986172009-01-02 07:01:27 +00001401 while (Lex.getKind() != lltok::rparen) {
1402 // If this isn't the first argument, we need a comma.
1403 if (!ArgList.empty() &&
1404 ParseToken(lltok::comma, "expected ',' in argument list"))
1405 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001406
Chris Lattnerdf986172009-01-02 07:01:27 +00001407 // Parse the argument.
1408 LocTy ArgLoc;
Owen Anderson1d0be152009-08-13 21:58:54 +00001409 PATypeHolder ArgTy(Type::getVoidTy(Context));
Victor Hernandez19715562009-12-03 23:40:58 +00001410 unsigned ArgAttrs1 = Attribute::None;
1411 unsigned ArgAttrs2 = Attribute::None;
Chris Lattnerdf986172009-01-02 07:01:27 +00001412 Value *V;
Victor Hernandez19715562009-12-03 23:40:58 +00001413 if (ParseType(ArgTy, ArgLoc))
Chris Lattnerdf986172009-01-02 07:01:27 +00001414 return true;
Victor Hernandez19715562009-12-03 23:40:58 +00001415
1416 if (Lex.getKind() == lltok::Metadata) {
1417 if (ParseInlineMetadata(V, PFS))
1418 return true;
1419 } else {
1420 if (ParseOptionalAttrs(ArgAttrs1, 0) ||
1421 ParseValue(ArgTy, V, PFS) ||
1422 // FIXME: Should not allow attributes after the argument, remove this
1423 // in LLVM 3.0.
1424 ParseOptionalAttrs(ArgAttrs2, 3))
1425 return true;
1426 }
Chris Lattnerdf986172009-01-02 07:01:27 +00001427 ArgList.push_back(ParamInfo(ArgLoc, V, ArgAttrs1|ArgAttrs2));
1428 }
1429
1430 Lex.Lex(); // Lex the ')'.
1431 return false;
1432}
1433
1434
1435
Chris Lattnerdfd19dd2009-01-05 18:34:07 +00001436/// ParseArgumentList - Parse the argument list for a function type or function
1437/// prototype. If 'inType' is true then we are parsing a FunctionType.
Chris Lattnerdf986172009-01-02 07:01:27 +00001438/// ::= '(' ArgTypeListI ')'
1439/// ArgTypeListI
1440/// ::= /*empty*/
1441/// ::= '...'
1442/// ::= ArgTypeList ',' '...'
1443/// ::= ArgType (',' ArgType)*
Chris Lattnerdfd19dd2009-01-05 18:34:07 +00001444///
Chris Lattnerdf986172009-01-02 07:01:27 +00001445bool LLParser::ParseArgumentList(std::vector<ArgInfo> &ArgList,
Chris Lattnerdfd19dd2009-01-05 18:34:07 +00001446 bool &isVarArg, bool inType) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001447 isVarArg = false;
1448 assert(Lex.getKind() == lltok::lparen);
1449 Lex.Lex(); // eat the (.
Daniel Dunbara279bc32009-09-20 02:20:51 +00001450
Chris Lattnerdf986172009-01-02 07:01:27 +00001451 if (Lex.getKind() == lltok::rparen) {
1452 // empty
1453 } else if (Lex.getKind() == lltok::dotdotdot) {
1454 isVarArg = true;
1455 Lex.Lex();
1456 } else {
1457 LocTy TypeLoc = Lex.getLoc();
Owen Anderson1d0be152009-08-13 21:58:54 +00001458 PATypeHolder ArgTy(Type::getVoidTy(Context));
Chris Lattnerdf986172009-01-02 07:01:27 +00001459 unsigned Attrs;
Chris Lattnerdf986172009-01-02 07:01:27 +00001460 std::string Name;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001461
Chris Lattnerdfd19dd2009-01-05 18:34:07 +00001462 // If we're parsing a type, use ParseTypeRec, because we allow recursive
1463 // types (such as a function returning a pointer to itself). If parsing a
1464 // function prototype, we require fully resolved types.
1465 if ((inType ? ParseTypeRec(ArgTy) : ParseType(ArgTy)) ||
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001466 ParseOptionalAttrs(Attrs, 0)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001467
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001468 if (ArgTy->isVoidTy())
Chris Lattnera9a9e072009-03-09 04:49:14 +00001469 return Error(TypeLoc, "argument can not have void type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001470
Chris Lattnerdf986172009-01-02 07:01:27 +00001471 if (Lex.getKind() == lltok::LocalVar ||
1472 Lex.getKind() == lltok::StringConstant) { // FIXME: REMOVE IN LLVM 3.0
1473 Name = Lex.getStrVal();
1474 Lex.Lex();
1475 }
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001476
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001477 if (!FunctionType::isValidArgumentType(ArgTy))
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001478 return Error(TypeLoc, "invalid type for function argument");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001479
Chris Lattnerdf986172009-01-02 07:01:27 +00001480 ArgList.push_back(ArgInfo(TypeLoc, ArgTy, Attrs, Name));
Daniel Dunbara279bc32009-09-20 02:20:51 +00001481
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001482 while (EatIfPresent(lltok::comma)) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001483 // Handle ... at end of arg list.
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001484 if (EatIfPresent(lltok::dotdotdot)) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001485 isVarArg = true;
Chris Lattnerdf986172009-01-02 07:01:27 +00001486 break;
1487 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001488
Chris Lattnerdf986172009-01-02 07:01:27 +00001489 // Otherwise must be an argument type.
1490 TypeLoc = Lex.getLoc();
Chris Lattnera9a9e072009-03-09 04:49:14 +00001491 if ((inType ? ParseTypeRec(ArgTy) : ParseType(ArgTy)) ||
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001492 ParseOptionalAttrs(Attrs, 0)) return true;
1493
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001494 if (ArgTy->isVoidTy())
Chris Lattnera9a9e072009-03-09 04:49:14 +00001495 return Error(TypeLoc, "argument can not have void type");
1496
Chris Lattnerdf986172009-01-02 07:01:27 +00001497 if (Lex.getKind() == lltok::LocalVar ||
1498 Lex.getKind() == lltok::StringConstant) { // FIXME: REMOVE IN LLVM 3.0
1499 Name = Lex.getStrVal();
1500 Lex.Lex();
1501 } else {
1502 Name = "";
1503 }
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001504
1505 if (!ArgTy->isFirstClassType() && !isa<OpaqueType>(ArgTy))
1506 return Error(TypeLoc, "invalid type for function argument");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001507
Chris Lattnerdf986172009-01-02 07:01:27 +00001508 ArgList.push_back(ArgInfo(TypeLoc, ArgTy, Attrs, Name));
1509 }
1510 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001511
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001512 return ParseToken(lltok::rparen, "expected ')' at end of argument list");
Chris Lattnerdf986172009-01-02 07:01:27 +00001513}
Daniel Dunbara279bc32009-09-20 02:20:51 +00001514
Chris Lattnerdf986172009-01-02 07:01:27 +00001515/// ParseFunctionType
1516/// ::= Type ArgumentList OptionalAttrs
1517bool LLParser::ParseFunctionType(PATypeHolder &Result) {
1518 assert(Lex.getKind() == lltok::lparen);
1519
Chris Lattnerd77d04c2009-01-05 08:04:33 +00001520 if (!FunctionType::isValidReturnType(Result))
1521 return TokError("invalid function return type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001522
Chris Lattnerdf986172009-01-02 07:01:27 +00001523 std::vector<ArgInfo> ArgList;
1524 bool isVarArg;
1525 unsigned Attrs;
Chris Lattnerdfd19dd2009-01-05 18:34:07 +00001526 if (ParseArgumentList(ArgList, isVarArg, true) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00001527 // FIXME: Allow, but ignore attributes on function types!
1528 // FIXME: Remove in LLVM 3.0
1529 ParseOptionalAttrs(Attrs, 2))
1530 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001531
Chris Lattnerdf986172009-01-02 07:01:27 +00001532 // Reject names on the arguments lists.
1533 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
1534 if (!ArgList[i].Name.empty())
1535 return Error(ArgList[i].Loc, "argument name invalid in function type");
1536 if (!ArgList[i].Attrs != 0) {
1537 // Allow but ignore attributes on function types; this permits
1538 // auto-upgrade.
1539 // FIXME: REJECT ATTRIBUTES ON FUNCTION TYPES in LLVM 3.0
1540 }
1541 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001542
Chris Lattnerdf986172009-01-02 07:01:27 +00001543 std::vector<const Type*> ArgListTy;
1544 for (unsigned i = 0, e = ArgList.size(); i != e; ++i)
1545 ArgListTy.push_back(ArgList[i].Type);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001546
Owen Andersondebcb012009-07-29 22:17:13 +00001547 Result = HandleUpRefs(FunctionType::get(Result.get(),
Owen Andersonfba933c2009-07-01 23:57:11 +00001548 ArgListTy, isVarArg));
Chris Lattnerdf986172009-01-02 07:01:27 +00001549 return false;
1550}
1551
1552/// ParseStructType: Handles packed and unpacked types. </> parsed elsewhere.
1553/// TypeRec
1554/// ::= '{' '}'
1555/// ::= '{' TypeRec (',' TypeRec)* '}'
1556/// ::= '<' '{' '}' '>'
1557/// ::= '<' '{' TypeRec (',' TypeRec)* '}' '>'
1558bool LLParser::ParseStructType(PATypeHolder &Result, bool Packed) {
1559 assert(Lex.getKind() == lltok::lbrace);
1560 Lex.Lex(); // Consume the '{'
Daniel Dunbara279bc32009-09-20 02:20:51 +00001561
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001562 if (EatIfPresent(lltok::rbrace)) {
Owen Andersond7f2a6c2009-08-05 23:16:16 +00001563 Result = StructType::get(Context, Packed);
Chris Lattnerdf986172009-01-02 07:01:27 +00001564 return false;
1565 }
1566
1567 std::vector<PATypeHolder> ParamsList;
Chris Lattnera9a9e072009-03-09 04:49:14 +00001568 LocTy EltTyLoc = Lex.getLoc();
Chris Lattnerdf986172009-01-02 07:01:27 +00001569 if (ParseTypeRec(Result)) return true;
1570 ParamsList.push_back(Result);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001571
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001572 if (Result->isVoidTy())
Chris Lattnera9a9e072009-03-09 04:49:14 +00001573 return Error(EltTyLoc, "struct element can not have void type");
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001574 if (!StructType::isValidElementType(Result))
1575 return Error(EltTyLoc, "invalid element type for struct");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001576
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001577 while (EatIfPresent(lltok::comma)) {
Chris Lattnera9a9e072009-03-09 04:49:14 +00001578 EltTyLoc = Lex.getLoc();
Chris Lattnerdf986172009-01-02 07:01:27 +00001579 if (ParseTypeRec(Result)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001580
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001581 if (Result->isVoidTy())
Chris Lattnera9a9e072009-03-09 04:49:14 +00001582 return Error(EltTyLoc, "struct element can not have void type");
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001583 if (!StructType::isValidElementType(Result))
1584 return Error(EltTyLoc, "invalid element type for struct");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001585
Chris Lattnerdf986172009-01-02 07:01:27 +00001586 ParamsList.push_back(Result);
1587 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001588
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001589 if (ParseToken(lltok::rbrace, "expected '}' at end of struct"))
1590 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001591
Chris Lattnerdf986172009-01-02 07:01:27 +00001592 std::vector<const Type*> ParamsListTy;
1593 for (unsigned i = 0, e = ParamsList.size(); i != e; ++i)
1594 ParamsListTy.push_back(ParamsList[i].get());
Owen Andersond7f2a6c2009-08-05 23:16:16 +00001595 Result = HandleUpRefs(StructType::get(Context, ParamsListTy, Packed));
Chris Lattnerdf986172009-01-02 07:01:27 +00001596 return false;
1597}
1598
1599/// ParseArrayVectorType - Parse an array or vector type, assuming the first
1600/// token has already been consumed.
Daniel Dunbara279bc32009-09-20 02:20:51 +00001601/// TypeRec
Chris Lattnerdf986172009-01-02 07:01:27 +00001602/// ::= '[' APSINTVAL 'x' Types ']'
1603/// ::= '<' APSINTVAL 'x' Types '>'
1604bool LLParser::ParseArrayVectorType(PATypeHolder &Result, bool isVector) {
1605 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned() ||
1606 Lex.getAPSIntVal().getBitWidth() > 64)
1607 return TokError("expected number in address space");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001608
Chris Lattnerdf986172009-01-02 07:01:27 +00001609 LocTy SizeLoc = Lex.getLoc();
1610 uint64_t Size = Lex.getAPSIntVal().getZExtValue();
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001611 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +00001612
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001613 if (ParseToken(lltok::kw_x, "expected 'x' after element count"))
1614 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00001615
1616 LocTy TypeLoc = Lex.getLoc();
Owen Anderson1d0be152009-08-13 21:58:54 +00001617 PATypeHolder EltTy(Type::getVoidTy(Context));
Chris Lattnerdf986172009-01-02 07:01:27 +00001618 if (ParseTypeRec(EltTy)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001619
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001620 if (EltTy->isVoidTy())
Chris Lattnera9a9e072009-03-09 04:49:14 +00001621 return Error(TypeLoc, "array and vector element type cannot be void");
1622
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001623 if (ParseToken(isVector ? lltok::greater : lltok::rsquare,
1624 "expected end of sequential type"))
1625 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001626
Chris Lattnerdf986172009-01-02 07:01:27 +00001627 if (isVector) {
Chris Lattner452e2622009-02-28 18:12:41 +00001628 if (Size == 0)
1629 return Error(SizeLoc, "zero element vector is illegal");
Chris Lattnerdf986172009-01-02 07:01:27 +00001630 if ((unsigned)Size != Size)
1631 return Error(SizeLoc, "size too large for vector");
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001632 if (!VectorType::isValidElementType(EltTy))
Chris Lattnerdf986172009-01-02 07:01:27 +00001633 return Error(TypeLoc, "vector element type must be fp or integer");
Owen Andersondebcb012009-07-29 22:17:13 +00001634 Result = VectorType::get(EltTy, unsigned(Size));
Chris Lattnerdf986172009-01-02 07:01:27 +00001635 } else {
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001636 if (!ArrayType::isValidElementType(EltTy))
Chris Lattnerdf986172009-01-02 07:01:27 +00001637 return Error(TypeLoc, "invalid array element type");
Owen Andersondebcb012009-07-29 22:17:13 +00001638 Result = HandleUpRefs(ArrayType::get(EltTy, Size));
Chris Lattnerdf986172009-01-02 07:01:27 +00001639 }
1640 return false;
1641}
1642
1643//===----------------------------------------------------------------------===//
1644// Function Semantic Analysis.
1645//===----------------------------------------------------------------------===//
1646
Chris Lattner09d9ef42009-10-28 03:39:23 +00001647LLParser::PerFunctionState::PerFunctionState(LLParser &p, Function &f,
1648 int functionNumber)
1649 : P(p), F(f), FunctionNumber(functionNumber) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001650
1651 // Insert unnamed arguments into the NumberedVals list.
1652 for (Function::arg_iterator AI = F.arg_begin(), E = F.arg_end();
1653 AI != E; ++AI)
1654 if (!AI->hasName())
1655 NumberedVals.push_back(AI);
1656}
1657
1658LLParser::PerFunctionState::~PerFunctionState() {
1659 // If there were any forward referenced non-basicblock values, delete them.
1660 for (std::map<std::string, std::pair<Value*, LocTy> >::iterator
1661 I = ForwardRefVals.begin(), E = ForwardRefVals.end(); I != E; ++I)
1662 if (!isa<BasicBlock>(I->second.first)) {
Owen Andersonb43eae72009-07-02 17:04:01 +00001663 I->second.first->replaceAllUsesWith(
Owen Anderson9e9a0d52009-07-30 23:03:37 +00001664 UndefValue::get(I->second.first->getType()));
Chris Lattnerdf986172009-01-02 07:01:27 +00001665 delete I->second.first;
1666 I->second.first = 0;
1667 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001668
Chris Lattnerdf986172009-01-02 07:01:27 +00001669 for (std::map<unsigned, std::pair<Value*, LocTy> >::iterator
1670 I = ForwardRefValIDs.begin(), E = ForwardRefValIDs.end(); I != E; ++I)
1671 if (!isa<BasicBlock>(I->second.first)) {
Owen Andersonb43eae72009-07-02 17:04:01 +00001672 I->second.first->replaceAllUsesWith(
Owen Anderson9e9a0d52009-07-30 23:03:37 +00001673 UndefValue::get(I->second.first->getType()));
Chris Lattnerdf986172009-01-02 07:01:27 +00001674 delete I->second.first;
1675 I->second.first = 0;
1676 }
1677}
1678
Chris Lattner09d9ef42009-10-28 03:39:23 +00001679bool LLParser::PerFunctionState::FinishFunction() {
1680 // Check to see if someone took the address of labels in this block.
1681 if (!P.ForwardRefBlockAddresses.empty()) {
1682 ValID FunctionID;
1683 if (!F.getName().empty()) {
1684 FunctionID.Kind = ValID::t_GlobalName;
1685 FunctionID.StrVal = F.getName();
1686 } else {
1687 FunctionID.Kind = ValID::t_GlobalID;
1688 FunctionID.UIntVal = FunctionNumber;
1689 }
1690
1691 std::map<ValID, std::vector<std::pair<ValID, GlobalValue*> > >::iterator
1692 FRBAI = P.ForwardRefBlockAddresses.find(FunctionID);
1693 if (FRBAI != P.ForwardRefBlockAddresses.end()) {
1694 // Resolve all these references.
1695 if (P.ResolveForwardRefBlockAddresses(&F, FRBAI->second, this))
1696 return true;
1697
1698 P.ForwardRefBlockAddresses.erase(FRBAI);
1699 }
1700 }
1701
Chris Lattnerdf986172009-01-02 07:01:27 +00001702 if (!ForwardRefVals.empty())
1703 return P.Error(ForwardRefVals.begin()->second.second,
1704 "use of undefined value '%" + ForwardRefVals.begin()->first +
1705 "'");
1706 if (!ForwardRefValIDs.empty())
1707 return P.Error(ForwardRefValIDs.begin()->second.second,
1708 "use of undefined value '%" +
1709 utostr(ForwardRefValIDs.begin()->first) + "'");
1710 return false;
1711}
1712
1713
1714/// GetVal - Get a value with the specified name or ID, creating a
1715/// forward reference record if needed. This can return null if the value
1716/// exists but does not have the right type.
1717Value *LLParser::PerFunctionState::GetVal(const std::string &Name,
1718 const Type *Ty, LocTy Loc) {
1719 // Look this name up in the normal function symbol table.
1720 Value *Val = F.getValueSymbolTable().lookup(Name);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001721
Chris Lattnerdf986172009-01-02 07:01:27 +00001722 // If this is a forward reference for the value, see if we already created a
1723 // forward ref record.
1724 if (Val == 0) {
1725 std::map<std::string, std::pair<Value*, LocTy> >::iterator
1726 I = ForwardRefVals.find(Name);
1727 if (I != ForwardRefVals.end())
1728 Val = I->second.first;
1729 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001730
Chris Lattnerdf986172009-01-02 07:01:27 +00001731 // If we have the value in the symbol table or fwd-ref table, return it.
1732 if (Val) {
1733 if (Val->getType() == Ty) return Val;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001734 if (Ty->isLabelTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00001735 P.Error(Loc, "'%" + Name + "' is not a basic block");
1736 else
1737 P.Error(Loc, "'%" + Name + "' defined with type '" +
1738 Val->getType()->getDescription() + "'");
1739 return 0;
1740 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001741
Chris Lattnerdf986172009-01-02 07:01:27 +00001742 // Don't make placeholders with invalid type.
Owen Anderson1d0be152009-08-13 21:58:54 +00001743 if (!Ty->isFirstClassType() && !isa<OpaqueType>(Ty) &&
1744 Ty != Type::getLabelTy(F.getContext())) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001745 P.Error(Loc, "invalid use of a non-first-class type");
1746 return 0;
1747 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001748
Chris Lattnerdf986172009-01-02 07:01:27 +00001749 // Otherwise, create a new forward reference for this value and remember it.
1750 Value *FwdVal;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001751 if (Ty->isLabelTy())
Owen Anderson1d0be152009-08-13 21:58:54 +00001752 FwdVal = BasicBlock::Create(F.getContext(), Name, &F);
Chris Lattnerdf986172009-01-02 07:01:27 +00001753 else
1754 FwdVal = new Argument(Ty, Name);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001755
Chris Lattnerdf986172009-01-02 07:01:27 +00001756 ForwardRefVals[Name] = std::make_pair(FwdVal, Loc);
1757 return FwdVal;
1758}
1759
1760Value *LLParser::PerFunctionState::GetVal(unsigned ID, const Type *Ty,
1761 LocTy Loc) {
1762 // Look this name up in the normal function symbol table.
1763 Value *Val = ID < NumberedVals.size() ? NumberedVals[ID] : 0;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001764
Chris Lattnerdf986172009-01-02 07:01:27 +00001765 // If this is a forward reference for the value, see if we already created a
1766 // forward ref record.
1767 if (Val == 0) {
1768 std::map<unsigned, std::pair<Value*, LocTy> >::iterator
1769 I = ForwardRefValIDs.find(ID);
1770 if (I != ForwardRefValIDs.end())
1771 Val = I->second.first;
1772 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001773
Chris Lattnerdf986172009-01-02 07:01:27 +00001774 // If we have the value in the symbol table or fwd-ref table, return it.
1775 if (Val) {
1776 if (Val->getType() == Ty) return Val;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001777 if (Ty->isLabelTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00001778 P.Error(Loc, "'%" + utostr(ID) + "' is not a basic block");
1779 else
1780 P.Error(Loc, "'%" + utostr(ID) + "' defined with type '" +
1781 Val->getType()->getDescription() + "'");
1782 return 0;
1783 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001784
Owen Anderson1d0be152009-08-13 21:58:54 +00001785 if (!Ty->isFirstClassType() && !isa<OpaqueType>(Ty) &&
1786 Ty != Type::getLabelTy(F.getContext())) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001787 P.Error(Loc, "invalid use of a non-first-class type");
1788 return 0;
1789 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001790
Chris Lattnerdf986172009-01-02 07:01:27 +00001791 // Otherwise, create a new forward reference for this value and remember it.
1792 Value *FwdVal;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001793 if (Ty->isLabelTy())
Owen Anderson1d0be152009-08-13 21:58:54 +00001794 FwdVal = BasicBlock::Create(F.getContext(), "", &F);
Chris Lattnerdf986172009-01-02 07:01:27 +00001795 else
1796 FwdVal = new Argument(Ty);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001797
Chris Lattnerdf986172009-01-02 07:01:27 +00001798 ForwardRefValIDs[ID] = std::make_pair(FwdVal, Loc);
1799 return FwdVal;
1800}
1801
1802/// SetInstName - After an instruction is parsed and inserted into its
1803/// basic block, this installs its name.
1804bool LLParser::PerFunctionState::SetInstName(int NameID,
1805 const std::string &NameStr,
1806 LocTy NameLoc, Instruction *Inst) {
1807 // If this instruction has void type, it cannot have a name or ID specified.
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001808 if (Inst->getType()->isVoidTy()) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001809 if (NameID != -1 || !NameStr.empty())
1810 return P.Error(NameLoc, "instructions returning void cannot have a name");
1811 return false;
1812 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001813
Chris Lattnerdf986172009-01-02 07:01:27 +00001814 // If this was a numbered instruction, verify that the instruction is the
1815 // expected value and resolve any forward references.
1816 if (NameStr.empty()) {
1817 // If neither a name nor an ID was specified, just use the next ID.
1818 if (NameID == -1)
1819 NameID = NumberedVals.size();
Daniel Dunbara279bc32009-09-20 02:20:51 +00001820
Chris Lattnerdf986172009-01-02 07:01:27 +00001821 if (unsigned(NameID) != NumberedVals.size())
1822 return P.Error(NameLoc, "instruction expected to be numbered '%" +
1823 utostr(NumberedVals.size()) + "'");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001824
Chris Lattnerdf986172009-01-02 07:01:27 +00001825 std::map<unsigned, std::pair<Value*, LocTy> >::iterator FI =
1826 ForwardRefValIDs.find(NameID);
1827 if (FI != ForwardRefValIDs.end()) {
1828 if (FI->second.first->getType() != Inst->getType())
Daniel Dunbara279bc32009-09-20 02:20:51 +00001829 return P.Error(NameLoc, "instruction forward referenced with type '" +
Chris Lattnerdf986172009-01-02 07:01:27 +00001830 FI->second.first->getType()->getDescription() + "'");
1831 FI->second.first->replaceAllUsesWith(Inst);
Nuno Lopes2b4f28e2009-09-02 15:02:57 +00001832 delete FI->second.first;
Chris Lattnerdf986172009-01-02 07:01:27 +00001833 ForwardRefValIDs.erase(FI);
1834 }
1835
1836 NumberedVals.push_back(Inst);
1837 return false;
1838 }
1839
1840 // Otherwise, the instruction had a name. Resolve forward refs and set it.
1841 std::map<std::string, std::pair<Value*, LocTy> >::iterator
1842 FI = ForwardRefVals.find(NameStr);
1843 if (FI != ForwardRefVals.end()) {
1844 if (FI->second.first->getType() != Inst->getType())
Daniel Dunbara279bc32009-09-20 02:20:51 +00001845 return P.Error(NameLoc, "instruction forward referenced with type '" +
Chris Lattnerdf986172009-01-02 07:01:27 +00001846 FI->second.first->getType()->getDescription() + "'");
1847 FI->second.first->replaceAllUsesWith(Inst);
Nuno Lopes531552a2009-09-02 14:22:03 +00001848 delete FI->second.first;
Chris Lattnerdf986172009-01-02 07:01:27 +00001849 ForwardRefVals.erase(FI);
1850 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001851
Chris Lattnerdf986172009-01-02 07:01:27 +00001852 // Set the name on the instruction.
1853 Inst->setName(NameStr);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001854
Chris Lattnerdf986172009-01-02 07:01:27 +00001855 if (Inst->getNameStr() != NameStr)
Daniel Dunbara279bc32009-09-20 02:20:51 +00001856 return P.Error(NameLoc, "multiple definition of local value named '" +
Chris Lattnerdf986172009-01-02 07:01:27 +00001857 NameStr + "'");
1858 return false;
1859}
1860
1861/// GetBB - Get a basic block with the specified name or ID, creating a
1862/// forward reference record if needed.
1863BasicBlock *LLParser::PerFunctionState::GetBB(const std::string &Name,
1864 LocTy Loc) {
Owen Anderson1d0be152009-08-13 21:58:54 +00001865 return cast_or_null<BasicBlock>(GetVal(Name,
1866 Type::getLabelTy(F.getContext()), Loc));
Chris Lattnerdf986172009-01-02 07:01:27 +00001867}
1868
1869BasicBlock *LLParser::PerFunctionState::GetBB(unsigned ID, LocTy Loc) {
Owen Anderson1d0be152009-08-13 21:58:54 +00001870 return cast_or_null<BasicBlock>(GetVal(ID,
1871 Type::getLabelTy(F.getContext()), Loc));
Chris Lattnerdf986172009-01-02 07:01:27 +00001872}
1873
1874/// DefineBB - Define the specified basic block, which is either named or
1875/// unnamed. If there is an error, this returns null otherwise it returns
1876/// the block being defined.
1877BasicBlock *LLParser::PerFunctionState::DefineBB(const std::string &Name,
1878 LocTy Loc) {
1879 BasicBlock *BB;
1880 if (Name.empty())
1881 BB = GetBB(NumberedVals.size(), Loc);
1882 else
1883 BB = GetBB(Name, Loc);
1884 if (BB == 0) return 0; // Already diagnosed error.
Daniel Dunbara279bc32009-09-20 02:20:51 +00001885
Chris Lattnerdf986172009-01-02 07:01:27 +00001886 // Move the block to the end of the function. Forward ref'd blocks are
1887 // inserted wherever they happen to be referenced.
1888 F.getBasicBlockList().splice(F.end(), F.getBasicBlockList(), BB);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001889
Chris Lattnerdf986172009-01-02 07:01:27 +00001890 // Remove the block from forward ref sets.
1891 if (Name.empty()) {
1892 ForwardRefValIDs.erase(NumberedVals.size());
1893 NumberedVals.push_back(BB);
1894 } else {
1895 // BB forward references are already in the function symbol table.
1896 ForwardRefVals.erase(Name);
1897 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001898
Chris Lattnerdf986172009-01-02 07:01:27 +00001899 return BB;
1900}
1901
1902//===----------------------------------------------------------------------===//
1903// Constants.
1904//===----------------------------------------------------------------------===//
1905
1906/// ParseValID - Parse an abstract value that doesn't necessarily have a
1907/// type implied. For example, if we parse "4" we don't know what integer type
1908/// it has. The value will later be combined with its type and checked for
1909/// sanity.
1910bool LLParser::ParseValID(ValID &ID) {
1911 ID.Loc = Lex.getLoc();
1912 switch (Lex.getKind()) {
1913 default: return TokError("expected value token");
1914 case lltok::GlobalID: // @42
1915 ID.UIntVal = Lex.getUIntVal();
1916 ID.Kind = ValID::t_GlobalID;
1917 break;
1918 case lltok::GlobalVar: // @foo
1919 ID.StrVal = Lex.getStrVal();
1920 ID.Kind = ValID::t_GlobalName;
1921 break;
1922 case lltok::LocalVarID: // %42
1923 ID.UIntVal = Lex.getUIntVal();
1924 ID.Kind = ValID::t_LocalID;
1925 break;
1926 case lltok::LocalVar: // %foo
1927 case lltok::StringConstant: // "foo" - FIXME: REMOVE IN LLVM 3.0
1928 ID.StrVal = Lex.getStrVal();
1929 ID.Kind = ValID::t_LocalName;
1930 break;
Nick Lewycky21cc4462009-04-04 07:22:01 +00001931 case lltok::Metadata: { // !{...} MDNode, !"foo" MDString
Devang Patel104cf9e2009-07-23 01:07:34 +00001932 ID.Kind = ValID::t_Metadata;
Nick Lewycky21cc4462009-04-04 07:22:01 +00001933 Lex.Lex();
1934 if (Lex.getKind() == lltok::lbrace) {
Nick Lewyckycb337992009-05-10 20:57:05 +00001935 SmallVector<Value*, 16> Elts;
Nick Lewycky21cc4462009-04-04 07:22:01 +00001936 if (ParseMDNodeVector(Elts) ||
1937 ParseToken(lltok::rbrace, "expected end of metadata node"))
1938 return true;
Nick Lewyckycb337992009-05-10 20:57:05 +00001939
Owen Anderson647e3012009-07-31 21:35:40 +00001940 ID.MetadataVal = MDNode::get(Context, Elts.data(), Elts.size());
Nick Lewycky21cc4462009-04-04 07:22:01 +00001941 return false;
1942 }
1943
Devang Patel923078c2009-07-01 19:21:12 +00001944 // Standalone metadata reference
1945 // !{ ..., !42, ... }
Devang Patel104cf9e2009-07-23 01:07:34 +00001946 if (!ParseMDNode(ID.MetadataVal))
Devang Patel923078c2009-07-01 19:21:12 +00001947 return false;
Devang Patel256be962009-07-20 19:00:08 +00001948
Nick Lewycky21cc4462009-04-04 07:22:01 +00001949 // MDString:
1950 // ::= '!' STRINGCONSTANT
Devang Patele54abc92009-07-22 17:43:22 +00001951 if (ParseMDString(ID.MetadataVal)) return true;
1952 ID.Kind = ValID::t_Metadata;
Nick Lewycky21cc4462009-04-04 07:22:01 +00001953 return false;
1954 }
Chris Lattnerdf986172009-01-02 07:01:27 +00001955 case lltok::APSInt:
Daniel Dunbara279bc32009-09-20 02:20:51 +00001956 ID.APSIntVal = Lex.getAPSIntVal();
Chris Lattnerdf986172009-01-02 07:01:27 +00001957 ID.Kind = ValID::t_APSInt;
1958 break;
1959 case lltok::APFloat:
1960 ID.APFloatVal = Lex.getAPFloatVal();
1961 ID.Kind = ValID::t_APFloat;
1962 break;
1963 case lltok::kw_true:
Owen Anderson5defacc2009-07-31 17:39:07 +00001964 ID.ConstantVal = ConstantInt::getTrue(Context);
Chris Lattnerdf986172009-01-02 07:01:27 +00001965 ID.Kind = ValID::t_Constant;
1966 break;
1967 case lltok::kw_false:
Owen Anderson5defacc2009-07-31 17:39:07 +00001968 ID.ConstantVal = ConstantInt::getFalse(Context);
Chris Lattnerdf986172009-01-02 07:01:27 +00001969 ID.Kind = ValID::t_Constant;
1970 break;
1971 case lltok::kw_null: ID.Kind = ValID::t_Null; break;
1972 case lltok::kw_undef: ID.Kind = ValID::t_Undef; break;
1973 case lltok::kw_zeroinitializer: ID.Kind = ValID::t_Zero; break;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001974
Chris Lattnerdf986172009-01-02 07:01:27 +00001975 case lltok::lbrace: {
1976 // ValID ::= '{' ConstVector '}'
1977 Lex.Lex();
1978 SmallVector<Constant*, 16> Elts;
1979 if (ParseGlobalValueVector(Elts) ||
1980 ParseToken(lltok::rbrace, "expected end of struct constant"))
1981 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001982
Owen Andersond7f2a6c2009-08-05 23:16:16 +00001983 ID.ConstantVal = ConstantStruct::get(Context, Elts.data(),
1984 Elts.size(), false);
Chris Lattnerdf986172009-01-02 07:01:27 +00001985 ID.Kind = ValID::t_Constant;
1986 return false;
1987 }
1988 case lltok::less: {
1989 // ValID ::= '<' ConstVector '>' --> Vector.
1990 // ValID ::= '<' '{' ConstVector '}' '>' --> Packed Struct.
1991 Lex.Lex();
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001992 bool isPackedStruct = EatIfPresent(lltok::lbrace);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001993
Chris Lattnerdf986172009-01-02 07:01:27 +00001994 SmallVector<Constant*, 16> Elts;
1995 LocTy FirstEltLoc = Lex.getLoc();
1996 if (ParseGlobalValueVector(Elts) ||
1997 (isPackedStruct &&
1998 ParseToken(lltok::rbrace, "expected end of packed struct")) ||
1999 ParseToken(lltok::greater, "expected end of constant"))
2000 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002001
Chris Lattnerdf986172009-01-02 07:01:27 +00002002 if (isPackedStruct) {
Owen Andersonfba933c2009-07-01 23:57:11 +00002003 ID.ConstantVal =
Owen Andersond7f2a6c2009-08-05 23:16:16 +00002004 ConstantStruct::get(Context, Elts.data(), Elts.size(), true);
Chris Lattnerdf986172009-01-02 07:01:27 +00002005 ID.Kind = ValID::t_Constant;
2006 return false;
2007 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002008
Chris Lattnerdf986172009-01-02 07:01:27 +00002009 if (Elts.empty())
2010 return Error(ID.Loc, "constant vector must not be empty");
2011
2012 if (!Elts[0]->getType()->isInteger() &&
2013 !Elts[0]->getType()->isFloatingPoint())
2014 return Error(FirstEltLoc,
2015 "vector elements must have integer or floating point type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002016
Chris Lattnerdf986172009-01-02 07:01:27 +00002017 // Verify that all the vector elements have the same type.
2018 for (unsigned i = 1, e = Elts.size(); i != e; ++i)
2019 if (Elts[i]->getType() != Elts[0]->getType())
2020 return Error(FirstEltLoc,
2021 "vector element #" + utostr(i) +
2022 " is not of type '" + Elts[0]->getType()->getDescription());
Daniel Dunbara279bc32009-09-20 02:20:51 +00002023
Owen Andersonaf7ec972009-07-28 21:19:26 +00002024 ID.ConstantVal = ConstantVector::get(Elts.data(), Elts.size());
Chris Lattnerdf986172009-01-02 07:01:27 +00002025 ID.Kind = ValID::t_Constant;
2026 return false;
2027 }
2028 case lltok::lsquare: { // Array Constant
2029 Lex.Lex();
2030 SmallVector<Constant*, 16> Elts;
2031 LocTy FirstEltLoc = Lex.getLoc();
2032 if (ParseGlobalValueVector(Elts) ||
2033 ParseToken(lltok::rsquare, "expected end of array constant"))
2034 return true;
2035
2036 // Handle empty element.
2037 if (Elts.empty()) {
2038 // Use undef instead of an array because it's inconvenient to determine
2039 // the element type at this point, there being no elements to examine.
Chris Lattner081b5052009-01-05 07:52:51 +00002040 ID.Kind = ValID::t_EmptyArray;
Chris Lattnerdf986172009-01-02 07:01:27 +00002041 return false;
2042 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002043
Chris Lattnerdf986172009-01-02 07:01:27 +00002044 if (!Elts[0]->getType()->isFirstClassType())
Daniel Dunbara279bc32009-09-20 02:20:51 +00002045 return Error(FirstEltLoc, "invalid array element type: " +
Chris Lattnerdf986172009-01-02 07:01:27 +00002046 Elts[0]->getType()->getDescription());
Daniel Dunbara279bc32009-09-20 02:20:51 +00002047
Owen Andersondebcb012009-07-29 22:17:13 +00002048 ArrayType *ATy = ArrayType::get(Elts[0]->getType(), Elts.size());
Daniel Dunbara279bc32009-09-20 02:20:51 +00002049
Chris Lattnerdf986172009-01-02 07:01:27 +00002050 // Verify all elements are correct type!
Chris Lattner6d6b3cc2009-01-02 08:49:06 +00002051 for (unsigned i = 0, e = Elts.size(); i != e; ++i) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002052 if (Elts[i]->getType() != Elts[0]->getType())
2053 return Error(FirstEltLoc,
2054 "array element #" + utostr(i) +
2055 " is not of type '" +Elts[0]->getType()->getDescription());
2056 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002057
Owen Anderson1fd70962009-07-28 18:32:17 +00002058 ID.ConstantVal = ConstantArray::get(ATy, Elts.data(), Elts.size());
Chris Lattnerdf986172009-01-02 07:01:27 +00002059 ID.Kind = ValID::t_Constant;
2060 return false;
2061 }
2062 case lltok::kw_c: // c "foo"
2063 Lex.Lex();
Owen Anderson1d0be152009-08-13 21:58:54 +00002064 ID.ConstantVal = ConstantArray::get(Context, Lex.getStrVal(), false);
Chris Lattnerdf986172009-01-02 07:01:27 +00002065 if (ParseToken(lltok::StringConstant, "expected string")) return true;
2066 ID.Kind = ValID::t_Constant;
2067 return false;
2068
2069 case lltok::kw_asm: {
Dale Johannesen8ba2d5b2009-10-21 23:28:00 +00002070 // ValID ::= 'asm' SideEffect? AlignStack? STRINGCONSTANT ',' STRINGCONSTANT
2071 bool HasSideEffect, AlignStack;
Chris Lattnerdf986172009-01-02 07:01:27 +00002072 Lex.Lex();
2073 if (ParseOptionalToken(lltok::kw_sideeffect, HasSideEffect) ||
Dale Johannesen8ba2d5b2009-10-21 23:28:00 +00002074 ParseOptionalToken(lltok::kw_alignstack, AlignStack) ||
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002075 ParseStringConstant(ID.StrVal) ||
2076 ParseToken(lltok::comma, "expected comma in inline asm expression") ||
Chris Lattnerdf986172009-01-02 07:01:27 +00002077 ParseToken(lltok::StringConstant, "expected constraint string"))
2078 return true;
2079 ID.StrVal2 = Lex.getStrVal();
Daniel Dunbarf0bb41c2009-11-07 23:51:55 +00002080 ID.UIntVal = unsigned(HasSideEffect) | (unsigned(AlignStack)<<1);
Chris Lattnerdf986172009-01-02 07:01:27 +00002081 ID.Kind = ValID::t_InlineAsm;
2082 return false;
2083 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002084
Chris Lattner09d9ef42009-10-28 03:39:23 +00002085 case lltok::kw_blockaddress: {
2086 // ValID ::= 'blockaddress' '(' @foo ',' %bar ')'
2087 Lex.Lex();
2088
2089 ValID Fn, Label;
2090 LocTy FnLoc, LabelLoc;
2091
2092 if (ParseToken(lltok::lparen, "expected '(' in block address expression") ||
2093 ParseValID(Fn) ||
2094 ParseToken(lltok::comma, "expected comma in block address expression")||
2095 ParseValID(Label) ||
2096 ParseToken(lltok::rparen, "expected ')' in block address expression"))
2097 return true;
Chris Lattnercdfc9402009-11-01 01:27:45 +00002098
Chris Lattner09d9ef42009-10-28 03:39:23 +00002099 if (Fn.Kind != ValID::t_GlobalID && Fn.Kind != ValID::t_GlobalName)
2100 return Error(Fn.Loc, "expected function name in blockaddress");
Chris Lattnercdfc9402009-11-01 01:27:45 +00002101 if (Label.Kind != ValID::t_LocalID && Label.Kind != ValID::t_LocalName)
Chris Lattner09d9ef42009-10-28 03:39:23 +00002102 return Error(Label.Loc, "expected basic block name in blockaddress");
2103
2104 // Make a global variable as a placeholder for this reference.
2105 GlobalVariable *FwdRef = new GlobalVariable(*M, Type::getInt8Ty(Context),
2106 false, GlobalValue::InternalLinkage,
2107 0, "");
2108 ForwardRefBlockAddresses[Fn].push_back(std::make_pair(Label, FwdRef));
2109 ID.ConstantVal = FwdRef;
2110 ID.Kind = ValID::t_Constant;
2111 return false;
2112 }
2113
Chris Lattnerdf986172009-01-02 07:01:27 +00002114 case lltok::kw_trunc:
2115 case lltok::kw_zext:
2116 case lltok::kw_sext:
2117 case lltok::kw_fptrunc:
2118 case lltok::kw_fpext:
2119 case lltok::kw_bitcast:
2120 case lltok::kw_uitofp:
2121 case lltok::kw_sitofp:
2122 case lltok::kw_fptoui:
Daniel Dunbara279bc32009-09-20 02:20:51 +00002123 case lltok::kw_fptosi:
Chris Lattnerdf986172009-01-02 07:01:27 +00002124 case lltok::kw_inttoptr:
Daniel Dunbara279bc32009-09-20 02:20:51 +00002125 case lltok::kw_ptrtoint: {
Chris Lattnerdf986172009-01-02 07:01:27 +00002126 unsigned Opc = Lex.getUIntVal();
Owen Anderson1d0be152009-08-13 21:58:54 +00002127 PATypeHolder DestTy(Type::getVoidTy(Context));
Chris Lattnerdf986172009-01-02 07:01:27 +00002128 Constant *SrcVal;
2129 Lex.Lex();
2130 if (ParseToken(lltok::lparen, "expected '(' after constantexpr cast") ||
2131 ParseGlobalTypeAndValue(SrcVal) ||
Dan Gohman24b108b2009-06-15 21:52:11 +00002132 ParseToken(lltok::kw_to, "expected 'to' in constantexpr cast") ||
Chris Lattnerdf986172009-01-02 07:01:27 +00002133 ParseType(DestTy) ||
2134 ParseToken(lltok::rparen, "expected ')' at end of constantexpr cast"))
2135 return true;
2136 if (!CastInst::castIsValid((Instruction::CastOps)Opc, SrcVal, DestTy))
2137 return Error(ID.Loc, "invalid cast opcode for cast from '" +
2138 SrcVal->getType()->getDescription() + "' to '" +
2139 DestTy->getDescription() + "'");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002140 ID.ConstantVal = ConstantExpr::getCast((Instruction::CastOps)Opc,
Owen Andersonfba933c2009-07-01 23:57:11 +00002141 SrcVal, DestTy);
Chris Lattnerdf986172009-01-02 07:01:27 +00002142 ID.Kind = ValID::t_Constant;
2143 return false;
2144 }
2145 case lltok::kw_extractvalue: {
2146 Lex.Lex();
2147 Constant *Val;
2148 SmallVector<unsigned, 4> Indices;
2149 if (ParseToken(lltok::lparen, "expected '(' in extractvalue constantexpr")||
2150 ParseGlobalTypeAndValue(Val) ||
2151 ParseIndexList(Indices) ||
2152 ParseToken(lltok::rparen, "expected ')' in extractvalue constantexpr"))
2153 return true;
Devang Patele8bc45a2009-11-03 19:06:07 +00002154 if (Lex.getKind() == lltok::NamedOrCustomMD)
2155 if (ParseOptionalCustomMetadata()) return true;
2156
Chris Lattnerdf986172009-01-02 07:01:27 +00002157 if (!isa<StructType>(Val->getType()) && !isa<ArrayType>(Val->getType()))
2158 return Error(ID.Loc, "extractvalue operand must be array or struct");
2159 if (!ExtractValueInst::getIndexedType(Val->getType(), Indices.begin(),
2160 Indices.end()))
2161 return Error(ID.Loc, "invalid indices for extractvalue");
Jay Foade3e51c02009-05-21 09:52:38 +00002162 ID.ConstantVal =
Owen Andersonbaf3c402009-07-29 18:55:55 +00002163 ConstantExpr::getExtractValue(Val, Indices.data(), Indices.size());
Chris Lattnerdf986172009-01-02 07:01:27 +00002164 ID.Kind = ValID::t_Constant;
2165 return false;
2166 }
2167 case lltok::kw_insertvalue: {
2168 Lex.Lex();
2169 Constant *Val0, *Val1;
2170 SmallVector<unsigned, 4> Indices;
2171 if (ParseToken(lltok::lparen, "expected '(' in insertvalue constantexpr")||
2172 ParseGlobalTypeAndValue(Val0) ||
2173 ParseToken(lltok::comma, "expected comma in insertvalue constantexpr")||
2174 ParseGlobalTypeAndValue(Val1) ||
2175 ParseIndexList(Indices) ||
2176 ParseToken(lltok::rparen, "expected ')' in insertvalue constantexpr"))
2177 return true;
Devang Patele8bc45a2009-11-03 19:06:07 +00002178 if (Lex.getKind() == lltok::NamedOrCustomMD)
2179 if (ParseOptionalCustomMetadata()) return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00002180 if (!isa<StructType>(Val0->getType()) && !isa<ArrayType>(Val0->getType()))
2181 return Error(ID.Loc, "extractvalue operand must be array or struct");
2182 if (!ExtractValueInst::getIndexedType(Val0->getType(), Indices.begin(),
2183 Indices.end()))
2184 return Error(ID.Loc, "invalid indices for insertvalue");
Owen Andersonbaf3c402009-07-29 18:55:55 +00002185 ID.ConstantVal = ConstantExpr::getInsertValue(Val0, Val1,
Owen Andersonfba933c2009-07-01 23:57:11 +00002186 Indices.data(), Indices.size());
Chris Lattnerdf986172009-01-02 07:01:27 +00002187 ID.Kind = ValID::t_Constant;
2188 return false;
2189 }
2190 case lltok::kw_icmp:
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00002191 case lltok::kw_fcmp: {
Chris Lattnerdf986172009-01-02 07:01:27 +00002192 unsigned PredVal, Opc = Lex.getUIntVal();
2193 Constant *Val0, *Val1;
2194 Lex.Lex();
2195 if (ParseCmpPredicate(PredVal, Opc) ||
2196 ParseToken(lltok::lparen, "expected '(' in compare constantexpr") ||
2197 ParseGlobalTypeAndValue(Val0) ||
2198 ParseToken(lltok::comma, "expected comma in compare constantexpr") ||
2199 ParseGlobalTypeAndValue(Val1) ||
2200 ParseToken(lltok::rparen, "expected ')' in compare constantexpr"))
2201 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002202
Chris Lattnerdf986172009-01-02 07:01:27 +00002203 if (Val0->getType() != Val1->getType())
2204 return Error(ID.Loc, "compare operands must have the same type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002205
Chris Lattnerdf986172009-01-02 07:01:27 +00002206 CmpInst::Predicate Pred = (CmpInst::Predicate)PredVal;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002207
Chris Lattnerdf986172009-01-02 07:01:27 +00002208 if (Opc == Instruction::FCmp) {
2209 if (!Val0->getType()->isFPOrFPVector())
2210 return Error(ID.Loc, "fcmp requires floating point operands");
Owen Andersonbaf3c402009-07-29 18:55:55 +00002211 ID.ConstantVal = ConstantExpr::getFCmp(Pred, Val0, Val1);
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00002212 } else {
2213 assert(Opc == Instruction::ICmp && "Unexpected opcode for CmpInst!");
Chris Lattnerdf986172009-01-02 07:01:27 +00002214 if (!Val0->getType()->isIntOrIntVector() &&
2215 !isa<PointerType>(Val0->getType()))
2216 return Error(ID.Loc, "icmp requires pointer or integer operands");
Owen Andersonbaf3c402009-07-29 18:55:55 +00002217 ID.ConstantVal = ConstantExpr::getICmp(Pred, Val0, Val1);
Chris Lattnerdf986172009-01-02 07:01:27 +00002218 }
2219 ID.Kind = ValID::t_Constant;
2220 return false;
2221 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002222
Chris Lattnerdf986172009-01-02 07:01:27 +00002223 // Binary Operators.
2224 case lltok::kw_add:
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002225 case lltok::kw_fadd:
Chris Lattnerdf986172009-01-02 07:01:27 +00002226 case lltok::kw_sub:
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002227 case lltok::kw_fsub:
Chris Lattnerdf986172009-01-02 07:01:27 +00002228 case lltok::kw_mul:
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002229 case lltok::kw_fmul:
Chris Lattnerdf986172009-01-02 07:01:27 +00002230 case lltok::kw_udiv:
2231 case lltok::kw_sdiv:
2232 case lltok::kw_fdiv:
2233 case lltok::kw_urem:
2234 case lltok::kw_srem:
2235 case lltok::kw_frem: {
Dan Gohman59858cf2009-07-27 16:11:46 +00002236 bool NUW = false;
2237 bool NSW = false;
2238 bool Exact = false;
Chris Lattnerdf986172009-01-02 07:01:27 +00002239 unsigned Opc = Lex.getUIntVal();
2240 Constant *Val0, *Val1;
2241 Lex.Lex();
Dan Gohman59858cf2009-07-27 16:11:46 +00002242 LocTy ModifierLoc = Lex.getLoc();
2243 if (Opc == Instruction::Add ||
2244 Opc == Instruction::Sub ||
2245 Opc == Instruction::Mul) {
2246 if (EatIfPresent(lltok::kw_nuw))
2247 NUW = true;
2248 if (EatIfPresent(lltok::kw_nsw)) {
2249 NSW = true;
2250 if (EatIfPresent(lltok::kw_nuw))
2251 NUW = true;
2252 }
2253 } else if (Opc == Instruction::SDiv) {
2254 if (EatIfPresent(lltok::kw_exact))
2255 Exact = true;
2256 }
Chris Lattnerdf986172009-01-02 07:01:27 +00002257 if (ParseToken(lltok::lparen, "expected '(' in binary constantexpr") ||
2258 ParseGlobalTypeAndValue(Val0) ||
2259 ParseToken(lltok::comma, "expected comma in binary constantexpr") ||
2260 ParseGlobalTypeAndValue(Val1) ||
2261 ParseToken(lltok::rparen, "expected ')' in binary constantexpr"))
2262 return true;
2263 if (Val0->getType() != Val1->getType())
2264 return Error(ID.Loc, "operands of constexpr must have same type");
Dan Gohman59858cf2009-07-27 16:11:46 +00002265 if (!Val0->getType()->isIntOrIntVector()) {
2266 if (NUW)
2267 return Error(ModifierLoc, "nuw only applies to integer operations");
2268 if (NSW)
2269 return Error(ModifierLoc, "nsw only applies to integer operations");
2270 }
2271 // API compatibility: Accept either integer or floating-point types with
2272 // add, sub, and mul.
Chris Lattnerdf986172009-01-02 07:01:27 +00002273 if (!Val0->getType()->isIntOrIntVector() &&
2274 !Val0->getType()->isFPOrFPVector())
2275 return Error(ID.Loc,"constexpr requires integer, fp, or vector operands");
Dan Gohmanf8dbee72009-09-07 23:54:19 +00002276 unsigned Flags = 0;
2277 if (NUW) Flags |= OverflowingBinaryOperator::NoUnsignedWrap;
2278 if (NSW) Flags |= OverflowingBinaryOperator::NoSignedWrap;
2279 if (Exact) Flags |= SDivOperator::IsExact;
2280 Constant *C = ConstantExpr::get(Opc, Val0, Val1, Flags);
Dan Gohman59858cf2009-07-27 16:11:46 +00002281 ID.ConstantVal = C;
Chris Lattnerdf986172009-01-02 07:01:27 +00002282 ID.Kind = ValID::t_Constant;
2283 return false;
2284 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002285
Chris Lattnerdf986172009-01-02 07:01:27 +00002286 // Logical Operations
2287 case lltok::kw_shl:
2288 case lltok::kw_lshr:
2289 case lltok::kw_ashr:
2290 case lltok::kw_and:
2291 case lltok::kw_or:
2292 case lltok::kw_xor: {
2293 unsigned Opc = Lex.getUIntVal();
2294 Constant *Val0, *Val1;
2295 Lex.Lex();
2296 if (ParseToken(lltok::lparen, "expected '(' in logical constantexpr") ||
2297 ParseGlobalTypeAndValue(Val0) ||
2298 ParseToken(lltok::comma, "expected comma in logical constantexpr") ||
2299 ParseGlobalTypeAndValue(Val1) ||
2300 ParseToken(lltok::rparen, "expected ')' in logical constantexpr"))
2301 return true;
2302 if (Val0->getType() != Val1->getType())
2303 return Error(ID.Loc, "operands of constexpr must have same type");
2304 if (!Val0->getType()->isIntOrIntVector())
2305 return Error(ID.Loc,
2306 "constexpr requires integer or integer vector operands");
Owen Andersonbaf3c402009-07-29 18:55:55 +00002307 ID.ConstantVal = ConstantExpr::get(Opc, Val0, Val1);
Chris Lattnerdf986172009-01-02 07:01:27 +00002308 ID.Kind = ValID::t_Constant;
2309 return false;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002310 }
2311
Chris Lattnerdf986172009-01-02 07:01:27 +00002312 case lltok::kw_getelementptr:
2313 case lltok::kw_shufflevector:
2314 case lltok::kw_insertelement:
2315 case lltok::kw_extractelement:
2316 case lltok::kw_select: {
2317 unsigned Opc = Lex.getUIntVal();
2318 SmallVector<Constant*, 16> Elts;
Dan Gohmandd8004d2009-07-27 21:53:46 +00002319 bool InBounds = false;
Chris Lattnerdf986172009-01-02 07:01:27 +00002320 Lex.Lex();
Dan Gohmandd8004d2009-07-27 21:53:46 +00002321 if (Opc == Instruction::GetElementPtr)
Dan Gohmandcb40a32009-07-29 15:58:36 +00002322 InBounds = EatIfPresent(lltok::kw_inbounds);
Chris Lattnerdf986172009-01-02 07:01:27 +00002323 if (ParseToken(lltok::lparen, "expected '(' in constantexpr") ||
2324 ParseGlobalValueVector(Elts) ||
2325 ParseToken(lltok::rparen, "expected ')' in constantexpr"))
2326 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002327
Chris Lattnerdf986172009-01-02 07:01:27 +00002328 if (Opc == Instruction::GetElementPtr) {
2329 if (Elts.size() == 0 || !isa<PointerType>(Elts[0]->getType()))
2330 return Error(ID.Loc, "getelementptr requires pointer operand");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002331
Chris Lattnerdf986172009-01-02 07:01:27 +00002332 if (!GetElementPtrInst::getIndexedType(Elts[0]->getType(),
Eli Friedman4e9bac32009-07-24 21:56:17 +00002333 (Value**)(Elts.data() + 1),
2334 Elts.size() - 1))
Chris Lattnerdf986172009-01-02 07:01:27 +00002335 return Error(ID.Loc, "invalid indices for getelementptr");
Dan Gohmanf8dbee72009-09-07 23:54:19 +00002336 ID.ConstantVal = InBounds ?
2337 ConstantExpr::getInBoundsGetElementPtr(Elts[0],
2338 Elts.data() + 1,
2339 Elts.size() - 1) :
2340 ConstantExpr::getGetElementPtr(Elts[0],
2341 Elts.data() + 1, Elts.size() - 1);
Chris Lattnerdf986172009-01-02 07:01:27 +00002342 } else if (Opc == Instruction::Select) {
2343 if (Elts.size() != 3)
2344 return Error(ID.Loc, "expected three operands to select");
2345 if (const char *Reason = SelectInst::areInvalidOperands(Elts[0], Elts[1],
2346 Elts[2]))
2347 return Error(ID.Loc, Reason);
Owen Andersonbaf3c402009-07-29 18:55:55 +00002348 ID.ConstantVal = ConstantExpr::getSelect(Elts[0], Elts[1], Elts[2]);
Chris Lattnerdf986172009-01-02 07:01:27 +00002349 } else if (Opc == Instruction::ShuffleVector) {
2350 if (Elts.size() != 3)
2351 return Error(ID.Loc, "expected three operands to shufflevector");
2352 if (!ShuffleVectorInst::isValidOperands(Elts[0], Elts[1], Elts[2]))
2353 return Error(ID.Loc, "invalid operands to shufflevector");
Owen Andersonfba933c2009-07-01 23:57:11 +00002354 ID.ConstantVal =
Owen Andersonbaf3c402009-07-29 18:55:55 +00002355 ConstantExpr::getShuffleVector(Elts[0], Elts[1],Elts[2]);
Chris Lattnerdf986172009-01-02 07:01:27 +00002356 } else if (Opc == Instruction::ExtractElement) {
2357 if (Elts.size() != 2)
2358 return Error(ID.Loc, "expected two operands to extractelement");
2359 if (!ExtractElementInst::isValidOperands(Elts[0], Elts[1]))
2360 return Error(ID.Loc, "invalid extractelement operands");
Owen Andersonbaf3c402009-07-29 18:55:55 +00002361 ID.ConstantVal = ConstantExpr::getExtractElement(Elts[0], Elts[1]);
Chris Lattnerdf986172009-01-02 07:01:27 +00002362 } else {
2363 assert(Opc == Instruction::InsertElement && "Unknown opcode");
2364 if (Elts.size() != 3)
2365 return Error(ID.Loc, "expected three operands to insertelement");
2366 if (!InsertElementInst::isValidOperands(Elts[0], Elts[1], Elts[2]))
2367 return Error(ID.Loc, "invalid insertelement operands");
Owen Andersonfba933c2009-07-01 23:57:11 +00002368 ID.ConstantVal =
Owen Andersonbaf3c402009-07-29 18:55:55 +00002369 ConstantExpr::getInsertElement(Elts[0], Elts[1],Elts[2]);
Chris Lattnerdf986172009-01-02 07:01:27 +00002370 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002371
Chris Lattnerdf986172009-01-02 07:01:27 +00002372 ID.Kind = ValID::t_Constant;
2373 return false;
2374 }
2375 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002376
Chris Lattnerdf986172009-01-02 07:01:27 +00002377 Lex.Lex();
2378 return false;
2379}
2380
2381/// ParseGlobalValue - Parse a global value with the specified type.
2382bool LLParser::ParseGlobalValue(const Type *Ty, Constant *&V) {
2383 V = 0;
2384 ValID ID;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002385 return ParseValID(ID) ||
2386 ConvertGlobalValIDToValue(Ty, ID, V);
Chris Lattnerdf986172009-01-02 07:01:27 +00002387}
2388
2389/// ConvertGlobalValIDToValue - Apply a type to a ValID to get a fully resolved
2390/// constant.
2391bool LLParser::ConvertGlobalValIDToValue(const Type *Ty, ValID &ID,
2392 Constant *&V) {
2393 if (isa<FunctionType>(Ty))
2394 return Error(ID.Loc, "functions are not values, refer to them as pointers");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002395
Chris Lattnerdf986172009-01-02 07:01:27 +00002396 switch (ID.Kind) {
Daniel Dunbara279bc32009-09-20 02:20:51 +00002397 default: llvm_unreachable("Unknown ValID!");
Devang Patele54abc92009-07-22 17:43:22 +00002398 case ValID::t_Metadata:
2399 return Error(ID.Loc, "invalid use of metadata");
Chris Lattnerdf986172009-01-02 07:01:27 +00002400 case ValID::t_LocalID:
2401 case ValID::t_LocalName:
2402 return Error(ID.Loc, "invalid use of function-local name");
2403 case ValID::t_InlineAsm:
2404 return Error(ID.Loc, "inline asm can only be an operand of call/invoke");
2405 case ValID::t_GlobalName:
2406 V = GetGlobalVal(ID.StrVal, Ty, ID.Loc);
2407 return V == 0;
2408 case ValID::t_GlobalID:
2409 V = GetGlobalVal(ID.UIntVal, Ty, ID.Loc);
2410 return V == 0;
2411 case ValID::t_APSInt:
2412 if (!isa<IntegerType>(Ty))
2413 return Error(ID.Loc, "integer constant must have integer type");
2414 ID.APSIntVal.extOrTrunc(Ty->getPrimitiveSizeInBits());
Owen Andersoneed707b2009-07-24 23:12:02 +00002415 V = ConstantInt::get(Context, ID.APSIntVal);
Chris Lattnerdf986172009-01-02 07:01:27 +00002416 return false;
2417 case ValID::t_APFloat:
2418 if (!Ty->isFloatingPoint() ||
2419 !ConstantFP::isValueValidForType(Ty, ID.APFloatVal))
2420 return Error(ID.Loc, "floating point constant invalid for type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002421
Chris Lattnerdf986172009-01-02 07:01:27 +00002422 // The lexer has no type info, so builds all float and double FP constants
2423 // as double. Fix this here. Long double does not need this.
2424 if (&ID.APFloatVal.getSemantics() == &APFloat::IEEEdouble &&
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00002425 Ty->isFloatTy()) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002426 bool Ignored;
2427 ID.APFloatVal.convert(APFloat::IEEEsingle, APFloat::rmNearestTiesToEven,
2428 &Ignored);
2429 }
Owen Anderson6f83c9c2009-07-27 20:59:43 +00002430 V = ConstantFP::get(Context, ID.APFloatVal);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002431
Chris Lattner959873d2009-01-05 18:24:23 +00002432 if (V->getType() != Ty)
2433 return Error(ID.Loc, "floating point constant does not have type '" +
2434 Ty->getDescription() + "'");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002435
Chris Lattnerdf986172009-01-02 07:01:27 +00002436 return false;
2437 case ValID::t_Null:
2438 if (!isa<PointerType>(Ty))
2439 return Error(ID.Loc, "null must be a pointer type");
Owen Anderson9e9a0d52009-07-30 23:03:37 +00002440 V = ConstantPointerNull::get(cast<PointerType>(Ty));
Chris Lattnerdf986172009-01-02 07:01:27 +00002441 return false;
2442 case ValID::t_Undef:
Chris Lattnere67c1aa2009-01-05 08:13:38 +00002443 // FIXME: LabelTy should not be a first-class type.
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00002444 if ((!Ty->isFirstClassType() || Ty->isLabelTy()) &&
Chris Lattner0b616352009-01-05 18:12:21 +00002445 !isa<OpaqueType>(Ty))
Chris Lattnere67c1aa2009-01-05 08:13:38 +00002446 return Error(ID.Loc, "invalid type for undef constant");
Owen Anderson9e9a0d52009-07-30 23:03:37 +00002447 V = UndefValue::get(Ty);
Chris Lattnerdf986172009-01-02 07:01:27 +00002448 return false;
Chris Lattner081b5052009-01-05 07:52:51 +00002449 case ValID::t_EmptyArray:
2450 if (!isa<ArrayType>(Ty) || cast<ArrayType>(Ty)->getNumElements() != 0)
2451 return Error(ID.Loc, "invalid empty array initializer");
Owen Anderson9e9a0d52009-07-30 23:03:37 +00002452 V = UndefValue::get(Ty);
Chris Lattner081b5052009-01-05 07:52:51 +00002453 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00002454 case ValID::t_Zero:
Chris Lattnere67c1aa2009-01-05 08:13:38 +00002455 // FIXME: LabelTy should not be a first-class type.
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00002456 if (!Ty->isFirstClassType() || Ty->isLabelTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002457 return Error(ID.Loc, "invalid type for null constant");
Owen Andersona7235ea2009-07-31 20:28:14 +00002458 V = Constant::getNullValue(Ty);
Chris Lattnerdf986172009-01-02 07:01:27 +00002459 return false;
2460 case ValID::t_Constant:
2461 if (ID.ConstantVal->getType() != Ty)
2462 return Error(ID.Loc, "constant expression type mismatch");
2463 V = ID.ConstantVal;
2464 return false;
2465 }
2466}
Daniel Dunbara279bc32009-09-20 02:20:51 +00002467
Chris Lattnerdf986172009-01-02 07:01:27 +00002468bool LLParser::ParseGlobalTypeAndValue(Constant *&V) {
Owen Anderson1d0be152009-08-13 21:58:54 +00002469 PATypeHolder Type(Type::getVoidTy(Context));
Chris Lattnerdf986172009-01-02 07:01:27 +00002470 return ParseType(Type) ||
2471 ParseGlobalValue(Type, V);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002472}
Chris Lattnerdf986172009-01-02 07:01:27 +00002473
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002474/// ParseGlobalValueVector
2475/// ::= /*empty*/
2476/// ::= TypeAndValue (',' TypeAndValue)*
Chris Lattnerdf986172009-01-02 07:01:27 +00002477bool LLParser::ParseGlobalValueVector(SmallVectorImpl<Constant*> &Elts) {
2478 // Empty list.
2479 if (Lex.getKind() == lltok::rbrace ||
2480 Lex.getKind() == lltok::rsquare ||
2481 Lex.getKind() == lltok::greater ||
2482 Lex.getKind() == lltok::rparen)
2483 return false;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002484
Chris Lattnerdf986172009-01-02 07:01:27 +00002485 Constant *C;
2486 if (ParseGlobalTypeAndValue(C)) return true;
2487 Elts.push_back(C);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002488
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002489 while (EatIfPresent(lltok::comma)) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002490 if (ParseGlobalTypeAndValue(C)) return true;
2491 Elts.push_back(C);
2492 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002493
Chris Lattnerdf986172009-01-02 07:01:27 +00002494 return false;
2495}
2496
2497
2498//===----------------------------------------------------------------------===//
2499// Function Parsing.
2500//===----------------------------------------------------------------------===//
2501
2502bool LLParser::ConvertValIDToValue(const Type *Ty, ValID &ID, Value *&V,
2503 PerFunctionState &PFS) {
2504 if (ID.Kind == ValID::t_LocalID)
2505 V = PFS.GetVal(ID.UIntVal, Ty, ID.Loc);
2506 else if (ID.Kind == ValID::t_LocalName)
2507 V = PFS.GetVal(ID.StrVal, Ty, ID.Loc);
Steve Naroffb0adcdb2009-01-05 18:48:47 +00002508 else if (ID.Kind == ValID::t_InlineAsm) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002509 const PointerType *PTy = dyn_cast<PointerType>(Ty);
2510 const FunctionType *FTy =
2511 PTy ? dyn_cast<FunctionType>(PTy->getElementType()) : 0;
2512 if (!FTy || !InlineAsm::Verify(FTy, ID.StrVal2))
2513 return Error(ID.Loc, "invalid type for inline asm constraint string");
Dale Johannesen43602982009-10-13 20:46:56 +00002514 V = InlineAsm::get(FTy, ID.StrVal, ID.StrVal2, ID.UIntVal&1, ID.UIntVal>>1);
Chris Lattnerdf986172009-01-02 07:01:27 +00002515 return false;
Devang Patele54abc92009-07-22 17:43:22 +00002516 } else if (ID.Kind == ValID::t_Metadata) {
2517 V = ID.MetadataVal;
Chris Lattnerdf986172009-01-02 07:01:27 +00002518 } else {
2519 Constant *C;
2520 if (ConvertGlobalValIDToValue(Ty, ID, C)) return true;
2521 V = C;
2522 return false;
2523 }
2524
2525 return V == 0;
2526}
2527
2528bool LLParser::ParseValue(const Type *Ty, Value *&V, PerFunctionState &PFS) {
2529 V = 0;
2530 ValID ID;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002531 return ParseValID(ID) ||
2532 ConvertValIDToValue(Ty, ID, V, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00002533}
2534
2535bool LLParser::ParseTypeAndValue(Value *&V, PerFunctionState &PFS) {
Owen Anderson1d0be152009-08-13 21:58:54 +00002536 PATypeHolder T(Type::getVoidTy(Context));
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002537 return ParseType(T) ||
2538 ParseValue(T, V, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00002539}
2540
Chris Lattnerf9be95f2009-10-27 19:13:16 +00002541bool LLParser::ParseTypeAndBasicBlock(BasicBlock *&BB, LocTy &Loc,
2542 PerFunctionState &PFS) {
2543 Value *V;
2544 Loc = Lex.getLoc();
2545 if (ParseTypeAndValue(V, PFS)) return true;
2546 if (!isa<BasicBlock>(V))
2547 return Error(Loc, "expected a basic block");
2548 BB = cast<BasicBlock>(V);
2549 return false;
2550}
2551
2552
Chris Lattnerdf986172009-01-02 07:01:27 +00002553/// FunctionHeader
2554/// ::= OptionalLinkage OptionalVisibility OptionalCallingConv OptRetAttrs
2555/// Type GlobalName '(' ArgList ')' OptFuncAttrs OptSection
2556/// OptionalAlign OptGC
2557bool LLParser::ParseFunctionHeader(Function *&Fn, bool isDefine) {
2558 // Parse the linkage.
2559 LocTy LinkageLoc = Lex.getLoc();
2560 unsigned Linkage;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002561
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00002562 unsigned Visibility, RetAttrs;
2563 CallingConv::ID CC;
Owen Anderson1d0be152009-08-13 21:58:54 +00002564 PATypeHolder RetType(Type::getVoidTy(Context));
Chris Lattnerdf986172009-01-02 07:01:27 +00002565 LocTy RetTypeLoc = Lex.getLoc();
2566 if (ParseOptionalLinkage(Linkage) ||
2567 ParseOptionalVisibility(Visibility) ||
2568 ParseOptionalCallingConv(CC) ||
2569 ParseOptionalAttrs(RetAttrs, 1) ||
Chris Lattnera9a9e072009-03-09 04:49:14 +00002570 ParseType(RetType, RetTypeLoc, true /*void allowed*/))
Chris Lattnerdf986172009-01-02 07:01:27 +00002571 return true;
2572
2573 // Verify that the linkage is ok.
2574 switch ((GlobalValue::LinkageTypes)Linkage) {
2575 case GlobalValue::ExternalLinkage:
2576 break; // always ok.
2577 case GlobalValue::DLLImportLinkage:
Duncan Sands5f4ee1f2009-03-11 08:08:06 +00002578 case GlobalValue::ExternalWeakLinkage:
Chris Lattnerdf986172009-01-02 07:01:27 +00002579 if (isDefine)
2580 return Error(LinkageLoc, "invalid linkage for function definition");
2581 break;
Rafael Espindolabb46f522009-01-15 20:18:42 +00002582 case GlobalValue::PrivateLinkage:
Bill Wendling3d10a5a2009-07-20 01:03:30 +00002583 case GlobalValue::LinkerPrivateLinkage:
Chris Lattnerdf986172009-01-02 07:01:27 +00002584 case GlobalValue::InternalLinkage:
Nick Lewycky55f64db2009-04-13 07:02:02 +00002585 case GlobalValue::AvailableExternallyLinkage:
Duncan Sands667d4b82009-03-07 15:45:40 +00002586 case GlobalValue::LinkOnceAnyLinkage:
2587 case GlobalValue::LinkOnceODRLinkage:
2588 case GlobalValue::WeakAnyLinkage:
2589 case GlobalValue::WeakODRLinkage:
Chris Lattnerdf986172009-01-02 07:01:27 +00002590 case GlobalValue::DLLExportLinkage:
2591 if (!isDefine)
2592 return Error(LinkageLoc, "invalid linkage for function declaration");
2593 break;
2594 case GlobalValue::AppendingLinkage:
2595 case GlobalValue::GhostLinkage:
Duncan Sands4dc2b392009-03-11 20:14:15 +00002596 case GlobalValue::CommonLinkage:
Chris Lattnerdf986172009-01-02 07:01:27 +00002597 return Error(LinkageLoc, "invalid function linkage type");
2598 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002599
Chris Lattner99bb3152009-01-05 08:00:30 +00002600 if (!FunctionType::isValidReturnType(RetType) ||
2601 isa<OpaqueType>(RetType))
Chris Lattnerdf986172009-01-02 07:01:27 +00002602 return Error(RetTypeLoc, "invalid function return type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002603
Chris Lattnerdf986172009-01-02 07:01:27 +00002604 LocTy NameLoc = Lex.getLoc();
Chris Lattnerf570e622009-02-18 21:48:13 +00002605
2606 std::string FunctionName;
2607 if (Lex.getKind() == lltok::GlobalVar) {
2608 FunctionName = Lex.getStrVal();
2609 } else if (Lex.getKind() == lltok::GlobalID) { // @42 is ok.
2610 unsigned NameID = Lex.getUIntVal();
2611
2612 if (NameID != NumberedVals.size())
2613 return TokError("function expected to be numbered '%" +
2614 utostr(NumberedVals.size()) + "'");
2615 } else {
2616 return TokError("expected function name");
2617 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002618
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002619 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +00002620
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002621 if (Lex.getKind() != lltok::lparen)
Chris Lattnerdf986172009-01-02 07:01:27 +00002622 return TokError("expected '(' in function argument list");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002623
Chris Lattnerdf986172009-01-02 07:01:27 +00002624 std::vector<ArgInfo> ArgList;
2625 bool isVarArg;
Chris Lattnerdf986172009-01-02 07:01:27 +00002626 unsigned FuncAttrs;
Chris Lattnerdf986172009-01-02 07:01:27 +00002627 std::string Section;
Chris Lattnerdf986172009-01-02 07:01:27 +00002628 unsigned Alignment;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002629 std::string GC;
2630
Chris Lattnerdfd19dd2009-01-05 18:34:07 +00002631 if (ParseArgumentList(ArgList, isVarArg, false) ||
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002632 ParseOptionalAttrs(FuncAttrs, 2) ||
2633 (EatIfPresent(lltok::kw_section) &&
2634 ParseStringConstant(Section)) ||
2635 ParseOptionalAlignment(Alignment) ||
2636 (EatIfPresent(lltok::kw_gc) &&
2637 ParseStringConstant(GC)))
2638 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00002639
2640 // If the alignment was parsed as an attribute, move to the alignment field.
2641 if (FuncAttrs & Attribute::Alignment) {
2642 Alignment = Attribute::getAlignmentFromAttrs(FuncAttrs);
2643 FuncAttrs &= ~Attribute::Alignment;
2644 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002645
Chris Lattnerdf986172009-01-02 07:01:27 +00002646 // Okay, if we got here, the function is syntactically valid. Convert types
2647 // and do semantic checks.
2648 std::vector<const Type*> ParamTypeList;
2649 SmallVector<AttributeWithIndex, 8> Attrs;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002650 // FIXME : In 3.0, stop accepting zext, sext and inreg as optional function
Chris Lattnerdf986172009-01-02 07:01:27 +00002651 // attributes.
2652 unsigned ObsoleteFuncAttrs = Attribute::ZExt|Attribute::SExt|Attribute::InReg;
2653 if (FuncAttrs & ObsoleteFuncAttrs) {
2654 RetAttrs |= FuncAttrs & ObsoleteFuncAttrs;
2655 FuncAttrs &= ~ObsoleteFuncAttrs;
2656 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002657
Chris Lattnerdf986172009-01-02 07:01:27 +00002658 if (RetAttrs != Attribute::None)
2659 Attrs.push_back(AttributeWithIndex::get(0, RetAttrs));
Daniel Dunbara279bc32009-09-20 02:20:51 +00002660
Chris Lattnerdf986172009-01-02 07:01:27 +00002661 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
2662 ParamTypeList.push_back(ArgList[i].Type);
2663 if (ArgList[i].Attrs != Attribute::None)
2664 Attrs.push_back(AttributeWithIndex::get(i+1, ArgList[i].Attrs));
2665 }
2666
2667 if (FuncAttrs != Attribute::None)
2668 Attrs.push_back(AttributeWithIndex::get(~0, FuncAttrs));
2669
2670 AttrListPtr PAL = AttrListPtr::get(Attrs.begin(), Attrs.end());
Daniel Dunbara279bc32009-09-20 02:20:51 +00002671
Chris Lattnera9a9e072009-03-09 04:49:14 +00002672 if (PAL.paramHasAttr(1, Attribute::StructRet) &&
Owen Anderson1d0be152009-08-13 21:58:54 +00002673 RetType != Type::getVoidTy(Context))
Daniel Dunbara279bc32009-09-20 02:20:51 +00002674 return Error(RetTypeLoc, "functions with 'sret' argument must return void");
2675
Owen Andersonfba933c2009-07-01 23:57:11 +00002676 const FunctionType *FT =
Owen Andersondebcb012009-07-29 22:17:13 +00002677 FunctionType::get(RetType, ParamTypeList, isVarArg);
2678 const PointerType *PFT = PointerType::getUnqual(FT);
Chris Lattnerdf986172009-01-02 07:01:27 +00002679
2680 Fn = 0;
2681 if (!FunctionName.empty()) {
2682 // If this was a definition of a forward reference, remove the definition
2683 // from the forward reference table and fill in the forward ref.
2684 std::map<std::string, std::pair<GlobalValue*, LocTy> >::iterator FRVI =
2685 ForwardRefVals.find(FunctionName);
2686 if (FRVI != ForwardRefVals.end()) {
2687 Fn = M->getFunction(FunctionName);
2688 ForwardRefVals.erase(FRVI);
2689 } else if ((Fn = M->getFunction(FunctionName))) {
2690 // If this function already exists in the symbol table, then it is
2691 // multiply defined. We accept a few cases for old backwards compat.
2692 // FIXME: Remove this stuff for LLVM 3.0.
2693 if (Fn->getType() != PFT || Fn->getAttributes() != PAL ||
2694 (!Fn->isDeclaration() && isDefine)) {
2695 // If the redefinition has different type or different attributes,
2696 // reject it. If both have bodies, reject it.
2697 return Error(NameLoc, "invalid redefinition of function '" +
2698 FunctionName + "'");
2699 } else if (Fn->isDeclaration()) {
2700 // Make sure to strip off any argument names so we can't get conflicts.
2701 for (Function::arg_iterator AI = Fn->arg_begin(), AE = Fn->arg_end();
2702 AI != AE; ++AI)
2703 AI->setName("");
2704 }
Chris Lattner1d871c52009-10-25 23:22:50 +00002705 } else if (M->getNamedValue(FunctionName)) {
2706 return Error(NameLoc, "redefinition of function '@" + FunctionName + "'");
Chris Lattnerdf986172009-01-02 07:01:27 +00002707 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002708
Dan Gohman41905542009-08-29 23:37:49 +00002709 } else {
Chris Lattnerdf986172009-01-02 07:01:27 +00002710 // If this is a definition of a forward referenced function, make sure the
2711 // types agree.
2712 std::map<unsigned, std::pair<GlobalValue*, LocTy> >::iterator I
2713 = ForwardRefValIDs.find(NumberedVals.size());
2714 if (I != ForwardRefValIDs.end()) {
2715 Fn = cast<Function>(I->second.first);
2716 if (Fn->getType() != PFT)
2717 return Error(NameLoc, "type of definition and forward reference of '@" +
2718 utostr(NumberedVals.size()) +"' disagree");
2719 ForwardRefValIDs.erase(I);
2720 }
2721 }
2722
2723 if (Fn == 0)
2724 Fn = Function::Create(FT, GlobalValue::ExternalLinkage, FunctionName, M);
2725 else // Move the forward-reference to the correct spot in the module.
2726 M->getFunctionList().splice(M->end(), M->getFunctionList(), Fn);
2727
2728 if (FunctionName.empty())
2729 NumberedVals.push_back(Fn);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002730
Chris Lattnerdf986172009-01-02 07:01:27 +00002731 Fn->setLinkage((GlobalValue::LinkageTypes)Linkage);
2732 Fn->setVisibility((GlobalValue::VisibilityTypes)Visibility);
2733 Fn->setCallingConv(CC);
2734 Fn->setAttributes(PAL);
2735 Fn->setAlignment(Alignment);
2736 Fn->setSection(Section);
2737 if (!GC.empty()) Fn->setGC(GC.c_str());
Daniel Dunbara279bc32009-09-20 02:20:51 +00002738
Chris Lattnerdf986172009-01-02 07:01:27 +00002739 // Add all of the arguments we parsed to the function.
2740 Function::arg_iterator ArgIt = Fn->arg_begin();
2741 for (unsigned i = 0, e = ArgList.size(); i != e; ++i, ++ArgIt) {
Chris Lattner5bda3792009-11-26 22:48:23 +00002742 // If we run out of arguments in the Function prototype, exit early.
2743 // FIXME: REMOVE THIS IN LLVM 3.0, this is just for the mismatch case above.
2744 if (ArgIt == Fn->arg_end()) break;
2745
Chris Lattnerdf986172009-01-02 07:01:27 +00002746 // If the argument has a name, insert it into the argument symbol table.
2747 if (ArgList[i].Name.empty()) continue;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002748
Chris Lattnerdf986172009-01-02 07:01:27 +00002749 // Set the name, if it conflicted, it will be auto-renamed.
2750 ArgIt->setName(ArgList[i].Name);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002751
Chris Lattnerdf986172009-01-02 07:01:27 +00002752 if (ArgIt->getNameStr() != ArgList[i].Name)
2753 return Error(ArgList[i].Loc, "redefinition of argument '%" +
2754 ArgList[i].Name + "'");
2755 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002756
Chris Lattnerdf986172009-01-02 07:01:27 +00002757 return false;
2758}
2759
2760
2761/// ParseFunctionBody
2762/// ::= '{' BasicBlock+ '}'
2763/// ::= 'begin' BasicBlock+ 'end' // FIXME: remove in LLVM 3.0
2764///
2765bool LLParser::ParseFunctionBody(Function &Fn) {
2766 if (Lex.getKind() != lltok::lbrace && Lex.getKind() != lltok::kw_begin)
2767 return TokError("expected '{' in function body");
2768 Lex.Lex(); // eat the {.
Daniel Dunbara279bc32009-09-20 02:20:51 +00002769
Chris Lattner09d9ef42009-10-28 03:39:23 +00002770 int FunctionNumber = -1;
2771 if (!Fn.hasName()) FunctionNumber = NumberedVals.size()-1;
2772
2773 PerFunctionState PFS(*this, Fn, FunctionNumber);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002774
Chris Lattnerdf986172009-01-02 07:01:27 +00002775 while (Lex.getKind() != lltok::rbrace && Lex.getKind() != lltok::kw_end)
2776 if (ParseBasicBlock(PFS)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002777
Chris Lattnerdf986172009-01-02 07:01:27 +00002778 // Eat the }.
2779 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +00002780
Chris Lattnerdf986172009-01-02 07:01:27 +00002781 // Verify function is ok.
Chris Lattner09d9ef42009-10-28 03:39:23 +00002782 return PFS.FinishFunction();
Chris Lattnerdf986172009-01-02 07:01:27 +00002783}
2784
2785/// ParseBasicBlock
2786/// ::= LabelStr? Instruction*
2787bool LLParser::ParseBasicBlock(PerFunctionState &PFS) {
2788 // If this basic block starts out with a name, remember it.
2789 std::string Name;
2790 LocTy NameLoc = Lex.getLoc();
2791 if (Lex.getKind() == lltok::LabelStr) {
2792 Name = Lex.getStrVal();
2793 Lex.Lex();
2794 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002795
Chris Lattnerdf986172009-01-02 07:01:27 +00002796 BasicBlock *BB = PFS.DefineBB(Name, NameLoc);
2797 if (BB == 0) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002798
Chris Lattnerdf986172009-01-02 07:01:27 +00002799 std::string NameStr;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002800
Chris Lattnerdf986172009-01-02 07:01:27 +00002801 // Parse the instructions in this block until we get a terminator.
2802 Instruction *Inst;
2803 do {
2804 // This instruction may have three possibilities for a name: a) none
2805 // specified, b) name specified "%foo =", c) number specified: "%4 =".
2806 LocTy NameLoc = Lex.getLoc();
2807 int NameID = -1;
2808 NameStr = "";
Daniel Dunbara279bc32009-09-20 02:20:51 +00002809
Chris Lattnerdf986172009-01-02 07:01:27 +00002810 if (Lex.getKind() == lltok::LocalVarID) {
2811 NameID = Lex.getUIntVal();
2812 Lex.Lex();
2813 if (ParseToken(lltok::equal, "expected '=' after instruction id"))
2814 return true;
2815 } else if (Lex.getKind() == lltok::LocalVar ||
2816 // FIXME: REMOVE IN LLVM 3.0
2817 Lex.getKind() == lltok::StringConstant) {
2818 NameStr = Lex.getStrVal();
2819 Lex.Lex();
2820 if (ParseToken(lltok::equal, "expected '=' after instruction name"))
2821 return true;
2822 }
Devang Patelf633a062009-09-17 23:04:48 +00002823
Chris Lattnerdf986172009-01-02 07:01:27 +00002824 if (ParseInstruction(Inst, BB, PFS)) return true;
Devang Patelf633a062009-09-17 23:04:48 +00002825 if (EatIfPresent(lltok::comma))
Devang Patel0475c912009-09-29 00:01:14 +00002826 ParseOptionalCustomMetadata();
Devang Patelf633a062009-09-17 23:04:48 +00002827
2828 // Set metadata attached with this instruction.
Devang Patela2148402009-09-28 21:14:55 +00002829 for (SmallVector<std::pair<unsigned, MDNode *>, 2>::iterator
Daniel Dunbara279bc32009-09-20 02:20:51 +00002830 MDI = MDsOnInst.begin(), MDE = MDsOnInst.end(); MDI != MDE; ++MDI)
Chris Lattner3990b122009-12-28 23:41:32 +00002831 Inst->setMetadata(MDI->first, MDI->second);
Devang Patelf633a062009-09-17 23:04:48 +00002832 MDsOnInst.clear();
2833
Chris Lattnerdf986172009-01-02 07:01:27 +00002834 BB->getInstList().push_back(Inst);
2835
2836 // Set the name on the instruction.
2837 if (PFS.SetInstName(NameID, NameStr, NameLoc, Inst)) return true;
2838 } while (!isa<TerminatorInst>(Inst));
Daniel Dunbara279bc32009-09-20 02:20:51 +00002839
Chris Lattnerdf986172009-01-02 07:01:27 +00002840 return false;
2841}
2842
2843//===----------------------------------------------------------------------===//
2844// Instruction Parsing.
2845//===----------------------------------------------------------------------===//
2846
2847/// ParseInstruction - Parse one of the many different instructions.
2848///
2849bool LLParser::ParseInstruction(Instruction *&Inst, BasicBlock *BB,
2850 PerFunctionState &PFS) {
2851 lltok::Kind Token = Lex.getKind();
2852 if (Token == lltok::Eof)
2853 return TokError("found end of file when expecting more instructions");
2854 LocTy Loc = Lex.getLoc();
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00002855 unsigned KeywordVal = Lex.getUIntVal();
Chris Lattnerdf986172009-01-02 07:01:27 +00002856 Lex.Lex(); // Eat the keyword.
Daniel Dunbara279bc32009-09-20 02:20:51 +00002857
Chris Lattnerdf986172009-01-02 07:01:27 +00002858 switch (Token) {
2859 default: return Error(Loc, "expected instruction opcode");
2860 // Terminator Instructions.
Owen Anderson1d0be152009-08-13 21:58:54 +00002861 case lltok::kw_unwind: Inst = new UnwindInst(Context); return false;
2862 case lltok::kw_unreachable: Inst = new UnreachableInst(Context); return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00002863 case lltok::kw_ret: return ParseRet(Inst, BB, PFS);
2864 case lltok::kw_br: return ParseBr(Inst, PFS);
2865 case lltok::kw_switch: return ParseSwitch(Inst, PFS);
Chris Lattnerab21db72009-10-28 00:19:10 +00002866 case lltok::kw_indirectbr: return ParseIndirectBr(Inst, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00002867 case lltok::kw_invoke: return ParseInvoke(Inst, PFS);
2868 // Binary Operators.
2869 case lltok::kw_add:
2870 case lltok::kw_sub:
Dan Gohman59858cf2009-07-27 16:11:46 +00002871 case lltok::kw_mul: {
2872 bool NUW = false;
2873 bool NSW = false;
2874 LocTy ModifierLoc = Lex.getLoc();
2875 if (EatIfPresent(lltok::kw_nuw))
2876 NUW = true;
2877 if (EatIfPresent(lltok::kw_nsw)) {
2878 NSW = true;
2879 if (EatIfPresent(lltok::kw_nuw))
2880 NUW = true;
2881 }
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002882 // API compatibility: Accept either integer or floating-point types.
Dan Gohman59858cf2009-07-27 16:11:46 +00002883 bool Result = ParseArithmetic(Inst, PFS, KeywordVal, 0);
2884 if (!Result) {
2885 if (!Inst->getType()->isIntOrIntVector()) {
2886 if (NUW)
2887 return Error(ModifierLoc, "nuw only applies to integer operations");
2888 if (NSW)
2889 return Error(ModifierLoc, "nsw only applies to integer operations");
2890 }
2891 if (NUW)
Dan Gohmanf8dbee72009-09-07 23:54:19 +00002892 cast<BinaryOperator>(Inst)->setHasNoUnsignedWrap(true);
Dan Gohman59858cf2009-07-27 16:11:46 +00002893 if (NSW)
Dan Gohmanf8dbee72009-09-07 23:54:19 +00002894 cast<BinaryOperator>(Inst)->setHasNoSignedWrap(true);
Dan Gohman59858cf2009-07-27 16:11:46 +00002895 }
2896 return Result;
2897 }
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002898 case lltok::kw_fadd:
2899 case lltok::kw_fsub:
2900 case lltok::kw_fmul: return ParseArithmetic(Inst, PFS, KeywordVal, 2);
2901
Dan Gohman59858cf2009-07-27 16:11:46 +00002902 case lltok::kw_sdiv: {
2903 bool Exact = false;
2904 if (EatIfPresent(lltok::kw_exact))
2905 Exact = true;
2906 bool Result = ParseArithmetic(Inst, PFS, KeywordVal, 1);
2907 if (!Result)
2908 if (Exact)
Dan Gohmanf8dbee72009-09-07 23:54:19 +00002909 cast<BinaryOperator>(Inst)->setIsExact(true);
Dan Gohman59858cf2009-07-27 16:11:46 +00002910 return Result;
2911 }
2912
Chris Lattnerdf986172009-01-02 07:01:27 +00002913 case lltok::kw_udiv:
Chris Lattnerdf986172009-01-02 07:01:27 +00002914 case lltok::kw_urem:
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00002915 case lltok::kw_srem: return ParseArithmetic(Inst, PFS, KeywordVal, 1);
Chris Lattnere914b592009-01-05 08:24:46 +00002916 case lltok::kw_fdiv:
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00002917 case lltok::kw_frem: return ParseArithmetic(Inst, PFS, KeywordVal, 2);
Chris Lattnerdf986172009-01-02 07:01:27 +00002918 case lltok::kw_shl:
2919 case lltok::kw_lshr:
2920 case lltok::kw_ashr:
2921 case lltok::kw_and:
2922 case lltok::kw_or:
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00002923 case lltok::kw_xor: return ParseLogical(Inst, PFS, KeywordVal);
Chris Lattnerdf986172009-01-02 07:01:27 +00002924 case lltok::kw_icmp:
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00002925 case lltok::kw_fcmp: return ParseCompare(Inst, PFS, KeywordVal);
Chris Lattnerdf986172009-01-02 07:01:27 +00002926 // Casts.
2927 case lltok::kw_trunc:
2928 case lltok::kw_zext:
2929 case lltok::kw_sext:
2930 case lltok::kw_fptrunc:
2931 case lltok::kw_fpext:
2932 case lltok::kw_bitcast:
2933 case lltok::kw_uitofp:
2934 case lltok::kw_sitofp:
2935 case lltok::kw_fptoui:
Daniel Dunbara279bc32009-09-20 02:20:51 +00002936 case lltok::kw_fptosi:
Chris Lattnerdf986172009-01-02 07:01:27 +00002937 case lltok::kw_inttoptr:
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00002938 case lltok::kw_ptrtoint: return ParseCast(Inst, PFS, KeywordVal);
Chris Lattnerdf986172009-01-02 07:01:27 +00002939 // Other.
2940 case lltok::kw_select: return ParseSelect(Inst, PFS);
Chris Lattner0088a5c2009-01-05 08:18:44 +00002941 case lltok::kw_va_arg: return ParseVA_Arg(Inst, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00002942 case lltok::kw_extractelement: return ParseExtractElement(Inst, PFS);
2943 case lltok::kw_insertelement: return ParseInsertElement(Inst, PFS);
2944 case lltok::kw_shufflevector: return ParseShuffleVector(Inst, PFS);
2945 case lltok::kw_phi: return ParsePHI(Inst, PFS);
2946 case lltok::kw_call: return ParseCall(Inst, PFS, false);
2947 case lltok::kw_tail: return ParseCall(Inst, PFS, true);
2948 // Memory.
Victor Hernandez13ad5aa2009-10-17 00:00:19 +00002949 case lltok::kw_alloca: return ParseAlloc(Inst, PFS);
2950 case lltok::kw_malloc: return ParseAlloc(Inst, PFS, BB, false);
Victor Hernandez66284e02009-10-24 04:23:03 +00002951 case lltok::kw_free: return ParseFree(Inst, PFS, BB);
Chris Lattnerdf986172009-01-02 07:01:27 +00002952 case lltok::kw_load: return ParseLoad(Inst, PFS, false);
2953 case lltok::kw_store: return ParseStore(Inst, PFS, false);
2954 case lltok::kw_volatile:
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002955 if (EatIfPresent(lltok::kw_load))
Chris Lattnerdf986172009-01-02 07:01:27 +00002956 return ParseLoad(Inst, PFS, true);
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002957 else if (EatIfPresent(lltok::kw_store))
Chris Lattnerdf986172009-01-02 07:01:27 +00002958 return ParseStore(Inst, PFS, true);
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002959 else
Chris Lattnerdf986172009-01-02 07:01:27 +00002960 return TokError("expected 'load' or 'store'");
Chris Lattnerdf986172009-01-02 07:01:27 +00002961 case lltok::kw_getresult: return ParseGetResult(Inst, PFS);
2962 case lltok::kw_getelementptr: return ParseGetElementPtr(Inst, PFS);
2963 case lltok::kw_extractvalue: return ParseExtractValue(Inst, PFS);
2964 case lltok::kw_insertvalue: return ParseInsertValue(Inst, PFS);
2965 }
2966}
2967
2968/// ParseCmpPredicate - Parse an integer or fp predicate, based on Kind.
2969bool LLParser::ParseCmpPredicate(unsigned &P, unsigned Opc) {
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00002970 if (Opc == Instruction::FCmp) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002971 switch (Lex.getKind()) {
2972 default: TokError("expected fcmp predicate (e.g. 'oeq')");
2973 case lltok::kw_oeq: P = CmpInst::FCMP_OEQ; break;
2974 case lltok::kw_one: P = CmpInst::FCMP_ONE; break;
2975 case lltok::kw_olt: P = CmpInst::FCMP_OLT; break;
2976 case lltok::kw_ogt: P = CmpInst::FCMP_OGT; break;
2977 case lltok::kw_ole: P = CmpInst::FCMP_OLE; break;
2978 case lltok::kw_oge: P = CmpInst::FCMP_OGE; break;
2979 case lltok::kw_ord: P = CmpInst::FCMP_ORD; break;
2980 case lltok::kw_uno: P = CmpInst::FCMP_UNO; break;
2981 case lltok::kw_ueq: P = CmpInst::FCMP_UEQ; break;
2982 case lltok::kw_une: P = CmpInst::FCMP_UNE; break;
2983 case lltok::kw_ult: P = CmpInst::FCMP_ULT; break;
2984 case lltok::kw_ugt: P = CmpInst::FCMP_UGT; break;
2985 case lltok::kw_ule: P = CmpInst::FCMP_ULE; break;
2986 case lltok::kw_uge: P = CmpInst::FCMP_UGE; break;
2987 case lltok::kw_true: P = CmpInst::FCMP_TRUE; break;
2988 case lltok::kw_false: P = CmpInst::FCMP_FALSE; break;
2989 }
2990 } else {
2991 switch (Lex.getKind()) {
2992 default: TokError("expected icmp predicate (e.g. 'eq')");
2993 case lltok::kw_eq: P = CmpInst::ICMP_EQ; break;
2994 case lltok::kw_ne: P = CmpInst::ICMP_NE; break;
2995 case lltok::kw_slt: P = CmpInst::ICMP_SLT; break;
2996 case lltok::kw_sgt: P = CmpInst::ICMP_SGT; break;
2997 case lltok::kw_sle: P = CmpInst::ICMP_SLE; break;
2998 case lltok::kw_sge: P = CmpInst::ICMP_SGE; break;
2999 case lltok::kw_ult: P = CmpInst::ICMP_ULT; break;
3000 case lltok::kw_ugt: P = CmpInst::ICMP_UGT; break;
3001 case lltok::kw_ule: P = CmpInst::ICMP_ULE; break;
3002 case lltok::kw_uge: P = CmpInst::ICMP_UGE; break;
3003 }
3004 }
3005 Lex.Lex();
3006 return false;
3007}
3008
3009//===----------------------------------------------------------------------===//
3010// Terminator Instructions.
3011//===----------------------------------------------------------------------===//
3012
3013/// ParseRet - Parse a return instruction.
Devang Patel0475c912009-09-29 00:01:14 +00003014/// ::= 'ret' void (',' !dbg, !1)
3015/// ::= 'ret' TypeAndValue (',' !dbg, !1)
3016/// ::= 'ret' TypeAndValue (',' TypeAndValue)+ (',' !dbg, !1)
Devang Patelf633a062009-09-17 23:04:48 +00003017/// [[obsolete: LLVM 3.0]]
Chris Lattnerdf986172009-01-02 07:01:27 +00003018bool LLParser::ParseRet(Instruction *&Inst, BasicBlock *BB,
3019 PerFunctionState &PFS) {
Owen Anderson1d0be152009-08-13 21:58:54 +00003020 PATypeHolder Ty(Type::getVoidTy(Context));
Chris Lattnera9a9e072009-03-09 04:49:14 +00003021 if (ParseType(Ty, true /*void allowed*/)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003022
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00003023 if (Ty->isVoidTy()) {
Owen Anderson1d0be152009-08-13 21:58:54 +00003024 Inst = ReturnInst::Create(Context);
Chris Lattnerdf986172009-01-02 07:01:27 +00003025 return false;
3026 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003027
Chris Lattnerdf986172009-01-02 07:01:27 +00003028 Value *RV;
3029 if (ParseValue(Ty, RV, PFS)) return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00003030
Devang Patelf633a062009-09-17 23:04:48 +00003031 if (EatIfPresent(lltok::comma)) {
Devang Patel0475c912009-09-29 00:01:14 +00003032 // Parse optional custom metadata, e.g. !dbg
3033 if (Lex.getKind() == lltok::NamedOrCustomMD) {
3034 if (ParseOptionalCustomMetadata()) return true;
Devang Patelf633a062009-09-17 23:04:48 +00003035 } else {
3036 // The normal case is one return value.
3037 // FIXME: LLVM 3.0 remove MRV support for 'ret i32 1, i32 2', requiring use
3038 // of 'ret {i32,i32} {i32 1, i32 2}'
3039 SmallVector<Value*, 8> RVs;
3040 RVs.push_back(RV);
Daniel Dunbara279bc32009-09-20 02:20:51 +00003041
Devang Patelf633a062009-09-17 23:04:48 +00003042 do {
Devang Patel0475c912009-09-29 00:01:14 +00003043 // If optional custom metadata, e.g. !dbg is seen then this is the
3044 // end of MRV.
3045 if (Lex.getKind() == lltok::NamedOrCustomMD)
Daniel Dunbara279bc32009-09-20 02:20:51 +00003046 break;
3047 if (ParseTypeAndValue(RV, PFS)) return true;
3048 RVs.push_back(RV);
Devang Patelf633a062009-09-17 23:04:48 +00003049 } while (EatIfPresent(lltok::comma));
3050
3051 RV = UndefValue::get(PFS.getFunction().getReturnType());
3052 for (unsigned i = 0, e = RVs.size(); i != e; ++i) {
Daniel Dunbara279bc32009-09-20 02:20:51 +00003053 Instruction *I = InsertValueInst::Create(RV, RVs[i], i, "mrv");
3054 BB->getInstList().push_back(I);
3055 RV = I;
Devang Patelf633a062009-09-17 23:04:48 +00003056 }
Chris Lattnerdf986172009-01-02 07:01:27 +00003057 }
3058 }
Devang Patelf633a062009-09-17 23:04:48 +00003059
Owen Anderson1d0be152009-08-13 21:58:54 +00003060 Inst = ReturnInst::Create(Context, RV);
Chris Lattnerdf986172009-01-02 07:01:27 +00003061 return false;
3062}
3063
3064
3065/// ParseBr
3066/// ::= 'br' TypeAndValue
3067/// ::= 'br' TypeAndValue ',' TypeAndValue ',' TypeAndValue
3068bool LLParser::ParseBr(Instruction *&Inst, PerFunctionState &PFS) {
3069 LocTy Loc, Loc2;
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003070 Value *Op0;
3071 BasicBlock *Op1, *Op2;
Chris Lattnerdf986172009-01-02 07:01:27 +00003072 if (ParseTypeAndValue(Op0, Loc, PFS)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003073
Chris Lattnerdf986172009-01-02 07:01:27 +00003074 if (BasicBlock *BB = dyn_cast<BasicBlock>(Op0)) {
3075 Inst = BranchInst::Create(BB);
3076 return false;
3077 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003078
Owen Anderson1d0be152009-08-13 21:58:54 +00003079 if (Op0->getType() != Type::getInt1Ty(Context))
Chris Lattnerdf986172009-01-02 07:01:27 +00003080 return Error(Loc, "branch condition must have 'i1' type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003081
Chris Lattnerdf986172009-01-02 07:01:27 +00003082 if (ParseToken(lltok::comma, "expected ',' after branch condition") ||
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003083 ParseTypeAndBasicBlock(Op1, Loc, PFS) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003084 ParseToken(lltok::comma, "expected ',' after true destination") ||
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003085 ParseTypeAndBasicBlock(Op2, Loc2, PFS))
Chris Lattnerdf986172009-01-02 07:01:27 +00003086 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003087
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003088 Inst = BranchInst::Create(Op1, Op2, Op0);
Chris Lattnerdf986172009-01-02 07:01:27 +00003089 return false;
3090}
3091
3092/// ParseSwitch
3093/// Instruction
3094/// ::= 'switch' TypeAndValue ',' TypeAndValue '[' JumpTable ']'
3095/// JumpTable
3096/// ::= (TypeAndValue ',' TypeAndValue)*
3097bool LLParser::ParseSwitch(Instruction *&Inst, PerFunctionState &PFS) {
3098 LocTy CondLoc, BBLoc;
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003099 Value *Cond;
3100 BasicBlock *DefaultBB;
Chris Lattnerdf986172009-01-02 07:01:27 +00003101 if (ParseTypeAndValue(Cond, CondLoc, PFS) ||
3102 ParseToken(lltok::comma, "expected ',' after switch condition") ||
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003103 ParseTypeAndBasicBlock(DefaultBB, BBLoc, PFS) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003104 ParseToken(lltok::lsquare, "expected '[' with switch table"))
3105 return true;
3106
3107 if (!isa<IntegerType>(Cond->getType()))
3108 return Error(CondLoc, "switch condition must have integer type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003109
Chris Lattnerdf986172009-01-02 07:01:27 +00003110 // Parse the jump table pairs.
3111 SmallPtrSet<Value*, 32> SeenCases;
3112 SmallVector<std::pair<ConstantInt*, BasicBlock*>, 32> Table;
3113 while (Lex.getKind() != lltok::rsquare) {
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003114 Value *Constant;
3115 BasicBlock *DestBB;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003116
Chris Lattnerdf986172009-01-02 07:01:27 +00003117 if (ParseTypeAndValue(Constant, CondLoc, PFS) ||
3118 ParseToken(lltok::comma, "expected ',' after case value") ||
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003119 ParseTypeAndBasicBlock(DestBB, PFS))
Chris Lattnerdf986172009-01-02 07:01:27 +00003120 return true;
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003121
Chris Lattnerdf986172009-01-02 07:01:27 +00003122 if (!SeenCases.insert(Constant))
3123 return Error(CondLoc, "duplicate case value in switch");
3124 if (!isa<ConstantInt>(Constant))
3125 return Error(CondLoc, "case value is not a constant integer");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003126
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003127 Table.push_back(std::make_pair(cast<ConstantInt>(Constant), DestBB));
Chris Lattnerdf986172009-01-02 07:01:27 +00003128 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003129
Chris Lattnerdf986172009-01-02 07:01:27 +00003130 Lex.Lex(); // Eat the ']'.
Daniel Dunbara279bc32009-09-20 02:20:51 +00003131
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003132 SwitchInst *SI = SwitchInst::Create(Cond, DefaultBB, Table.size());
Chris Lattnerdf986172009-01-02 07:01:27 +00003133 for (unsigned i = 0, e = Table.size(); i != e; ++i)
3134 SI->addCase(Table[i].first, Table[i].second);
3135 Inst = SI;
3136 return false;
3137}
3138
Chris Lattnerab21db72009-10-28 00:19:10 +00003139/// ParseIndirectBr
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003140/// Instruction
Chris Lattnerab21db72009-10-28 00:19:10 +00003141/// ::= 'indirectbr' TypeAndValue ',' '[' LabelList ']'
3142bool LLParser::ParseIndirectBr(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003143 LocTy AddrLoc;
3144 Value *Address;
3145 if (ParseTypeAndValue(Address, AddrLoc, PFS) ||
Chris Lattnerab21db72009-10-28 00:19:10 +00003146 ParseToken(lltok::comma, "expected ',' after indirectbr address") ||
3147 ParseToken(lltok::lsquare, "expected '[' with indirectbr"))
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003148 return true;
3149
3150 if (!isa<PointerType>(Address->getType()))
Chris Lattnerab21db72009-10-28 00:19:10 +00003151 return Error(AddrLoc, "indirectbr address must have pointer type");
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003152
3153 // Parse the destination list.
3154 SmallVector<BasicBlock*, 16> DestList;
3155
3156 if (Lex.getKind() != lltok::rsquare) {
3157 BasicBlock *DestBB;
3158 if (ParseTypeAndBasicBlock(DestBB, PFS))
3159 return true;
3160 DestList.push_back(DestBB);
3161
3162 while (EatIfPresent(lltok::comma)) {
3163 if (ParseTypeAndBasicBlock(DestBB, PFS))
3164 return true;
3165 DestList.push_back(DestBB);
3166 }
3167 }
3168
3169 if (ParseToken(lltok::rsquare, "expected ']' at end of block list"))
3170 return true;
3171
Chris Lattnerab21db72009-10-28 00:19:10 +00003172 IndirectBrInst *IBI = IndirectBrInst::Create(Address, DestList.size());
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003173 for (unsigned i = 0, e = DestList.size(); i != e; ++i)
3174 IBI->addDestination(DestList[i]);
3175 Inst = IBI;
3176 return false;
3177}
3178
3179
Chris Lattnerdf986172009-01-02 07:01:27 +00003180/// ParseInvoke
3181/// ::= 'invoke' OptionalCallingConv OptionalAttrs Type Value ParamList
3182/// OptionalAttrs 'to' TypeAndValue 'unwind' TypeAndValue
3183bool LLParser::ParseInvoke(Instruction *&Inst, PerFunctionState &PFS) {
3184 LocTy CallLoc = Lex.getLoc();
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00003185 unsigned RetAttrs, FnAttrs;
3186 CallingConv::ID CC;
Owen Anderson1d0be152009-08-13 21:58:54 +00003187 PATypeHolder RetType(Type::getVoidTy(Context));
Chris Lattnerdf986172009-01-02 07:01:27 +00003188 LocTy RetTypeLoc;
3189 ValID CalleeID;
3190 SmallVector<ParamInfo, 16> ArgList;
3191
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003192 BasicBlock *NormalBB, *UnwindBB;
Chris Lattnerdf986172009-01-02 07:01:27 +00003193 if (ParseOptionalCallingConv(CC) ||
3194 ParseOptionalAttrs(RetAttrs, 1) ||
Chris Lattnera9a9e072009-03-09 04:49:14 +00003195 ParseType(RetType, RetTypeLoc, true /*void allowed*/) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003196 ParseValID(CalleeID) ||
3197 ParseParameterList(ArgList, PFS) ||
3198 ParseOptionalAttrs(FnAttrs, 2) ||
3199 ParseToken(lltok::kw_to, "expected 'to' in invoke") ||
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003200 ParseTypeAndBasicBlock(NormalBB, PFS) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003201 ParseToken(lltok::kw_unwind, "expected 'unwind' in invoke") ||
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003202 ParseTypeAndBasicBlock(UnwindBB, PFS))
Chris Lattnerdf986172009-01-02 07:01:27 +00003203 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003204
Chris Lattnerdf986172009-01-02 07:01:27 +00003205 // If RetType is a non-function pointer type, then this is the short syntax
3206 // for the call, which means that RetType is just the return type. Infer the
3207 // rest of the function argument types from the arguments that are present.
3208 const PointerType *PFTy = 0;
3209 const FunctionType *Ty = 0;
3210 if (!(PFTy = dyn_cast<PointerType>(RetType)) ||
3211 !(Ty = dyn_cast<FunctionType>(PFTy->getElementType()))) {
3212 // Pull out the types of all of the arguments...
3213 std::vector<const Type*> ParamTypes;
3214 for (unsigned i = 0, e = ArgList.size(); i != e; ++i)
3215 ParamTypes.push_back(ArgList[i].V->getType());
Daniel Dunbara279bc32009-09-20 02:20:51 +00003216
Chris Lattnerdf986172009-01-02 07:01:27 +00003217 if (!FunctionType::isValidReturnType(RetType))
3218 return Error(RetTypeLoc, "Invalid result type for LLVM function");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003219
Owen Andersondebcb012009-07-29 22:17:13 +00003220 Ty = FunctionType::get(RetType, ParamTypes, false);
3221 PFTy = PointerType::getUnqual(Ty);
Chris Lattnerdf986172009-01-02 07:01:27 +00003222 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003223
Chris Lattnerdf986172009-01-02 07:01:27 +00003224 // Look up the callee.
3225 Value *Callee;
3226 if (ConvertValIDToValue(PFTy, CalleeID, Callee, PFS)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003227
Chris Lattnerdf986172009-01-02 07:01:27 +00003228 // FIXME: In LLVM 3.0, stop accepting zext, sext and inreg as optional
3229 // function attributes.
3230 unsigned ObsoleteFuncAttrs = Attribute::ZExt|Attribute::SExt|Attribute::InReg;
3231 if (FnAttrs & ObsoleteFuncAttrs) {
3232 RetAttrs |= FnAttrs & ObsoleteFuncAttrs;
3233 FnAttrs &= ~ObsoleteFuncAttrs;
3234 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003235
Chris Lattnerdf986172009-01-02 07:01:27 +00003236 // Set up the Attributes for the function.
3237 SmallVector<AttributeWithIndex, 8> Attrs;
3238 if (RetAttrs != Attribute::None)
3239 Attrs.push_back(AttributeWithIndex::get(0, RetAttrs));
Daniel Dunbara279bc32009-09-20 02:20:51 +00003240
Chris Lattnerdf986172009-01-02 07:01:27 +00003241 SmallVector<Value*, 8> Args;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003242
Chris Lattnerdf986172009-01-02 07:01:27 +00003243 // Loop through FunctionType's arguments and ensure they are specified
3244 // correctly. Also, gather any parameter attributes.
3245 FunctionType::param_iterator I = Ty->param_begin();
3246 FunctionType::param_iterator E = Ty->param_end();
3247 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
3248 const Type *ExpectedTy = 0;
3249 if (I != E) {
3250 ExpectedTy = *I++;
3251 } else if (!Ty->isVarArg()) {
3252 return Error(ArgList[i].Loc, "too many arguments specified");
3253 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003254
Chris Lattnerdf986172009-01-02 07:01:27 +00003255 if (ExpectedTy && ExpectedTy != ArgList[i].V->getType())
3256 return Error(ArgList[i].Loc, "argument is not of expected type '" +
3257 ExpectedTy->getDescription() + "'");
3258 Args.push_back(ArgList[i].V);
3259 if (ArgList[i].Attrs != Attribute::None)
3260 Attrs.push_back(AttributeWithIndex::get(i+1, ArgList[i].Attrs));
3261 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003262
Chris Lattnerdf986172009-01-02 07:01:27 +00003263 if (I != E)
3264 return Error(CallLoc, "not enough parameters specified for call");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003265
Chris Lattnerdf986172009-01-02 07:01:27 +00003266 if (FnAttrs != Attribute::None)
3267 Attrs.push_back(AttributeWithIndex::get(~0, FnAttrs));
Daniel Dunbara279bc32009-09-20 02:20:51 +00003268
Chris Lattnerdf986172009-01-02 07:01:27 +00003269 // Finish off the Attributes and check them
3270 AttrListPtr PAL = AttrListPtr::get(Attrs.begin(), Attrs.end());
Daniel Dunbara279bc32009-09-20 02:20:51 +00003271
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003272 InvokeInst *II = InvokeInst::Create(Callee, NormalBB, UnwindBB,
Chris Lattnerdf986172009-01-02 07:01:27 +00003273 Args.begin(), Args.end());
3274 II->setCallingConv(CC);
3275 II->setAttributes(PAL);
3276 Inst = II;
3277 return false;
3278}
3279
3280
3281
3282//===----------------------------------------------------------------------===//
3283// Binary Operators.
3284//===----------------------------------------------------------------------===//
3285
3286/// ParseArithmetic
Chris Lattnere914b592009-01-05 08:24:46 +00003287/// ::= ArithmeticOps TypeAndValue ',' Value
3288///
3289/// If OperandType is 0, then any FP or integer operand is allowed. If it is 1,
3290/// then any integer operand is allowed, if it is 2, any fp operand is allowed.
Chris Lattnerdf986172009-01-02 07:01:27 +00003291bool LLParser::ParseArithmetic(Instruction *&Inst, PerFunctionState &PFS,
Chris Lattnere914b592009-01-05 08:24:46 +00003292 unsigned Opc, unsigned OperandType) {
Chris Lattnerdf986172009-01-02 07:01:27 +00003293 LocTy Loc; Value *LHS, *RHS;
3294 if (ParseTypeAndValue(LHS, Loc, PFS) ||
3295 ParseToken(lltok::comma, "expected ',' in arithmetic operation") ||
3296 ParseValue(LHS->getType(), RHS, PFS))
3297 return true;
3298
Chris Lattnere914b592009-01-05 08:24:46 +00003299 bool Valid;
3300 switch (OperandType) {
Torok Edwinc23197a2009-07-14 16:55:14 +00003301 default: llvm_unreachable("Unknown operand type!");
Chris Lattnere914b592009-01-05 08:24:46 +00003302 case 0: // int or FP.
3303 Valid = LHS->getType()->isIntOrIntVector() ||
3304 LHS->getType()->isFPOrFPVector();
3305 break;
3306 case 1: Valid = LHS->getType()->isIntOrIntVector(); break;
3307 case 2: Valid = LHS->getType()->isFPOrFPVector(); break;
3308 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003309
Chris Lattnere914b592009-01-05 08:24:46 +00003310 if (!Valid)
3311 return Error(Loc, "invalid operand type for instruction");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003312
Chris Lattnerdf986172009-01-02 07:01:27 +00003313 Inst = BinaryOperator::Create((Instruction::BinaryOps)Opc, LHS, RHS);
3314 return false;
3315}
3316
3317/// ParseLogical
3318/// ::= ArithmeticOps TypeAndValue ',' Value {
3319bool LLParser::ParseLogical(Instruction *&Inst, PerFunctionState &PFS,
3320 unsigned Opc) {
3321 LocTy Loc; Value *LHS, *RHS;
3322 if (ParseTypeAndValue(LHS, Loc, PFS) ||
3323 ParseToken(lltok::comma, "expected ',' in logical operation") ||
3324 ParseValue(LHS->getType(), RHS, PFS))
3325 return true;
3326
3327 if (!LHS->getType()->isIntOrIntVector())
3328 return Error(Loc,"instruction requires integer or integer vector operands");
3329
3330 Inst = BinaryOperator::Create((Instruction::BinaryOps)Opc, LHS, RHS);
3331 return false;
3332}
3333
3334
3335/// ParseCompare
3336/// ::= 'icmp' IPredicates TypeAndValue ',' Value
3337/// ::= 'fcmp' FPredicates TypeAndValue ',' Value
Chris Lattnerdf986172009-01-02 07:01:27 +00003338bool LLParser::ParseCompare(Instruction *&Inst, PerFunctionState &PFS,
3339 unsigned Opc) {
3340 // Parse the integer/fp comparison predicate.
3341 LocTy Loc;
3342 unsigned Pred;
3343 Value *LHS, *RHS;
3344 if (ParseCmpPredicate(Pred, Opc) ||
3345 ParseTypeAndValue(LHS, Loc, PFS) ||
3346 ParseToken(lltok::comma, "expected ',' after compare value") ||
3347 ParseValue(LHS->getType(), RHS, PFS))
3348 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003349
Chris Lattnerdf986172009-01-02 07:01:27 +00003350 if (Opc == Instruction::FCmp) {
3351 if (!LHS->getType()->isFPOrFPVector())
3352 return Error(Loc, "fcmp requires floating point operands");
Dan Gohman1c8a23c2009-08-25 23:17:54 +00003353 Inst = new FCmpInst(CmpInst::Predicate(Pred), LHS, RHS);
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00003354 } else {
3355 assert(Opc == Instruction::ICmp && "Unknown opcode for CmpInst!");
Chris Lattnerdf986172009-01-02 07:01:27 +00003356 if (!LHS->getType()->isIntOrIntVector() &&
3357 !isa<PointerType>(LHS->getType()))
3358 return Error(Loc, "icmp requires integer operands");
Dan Gohman1c8a23c2009-08-25 23:17:54 +00003359 Inst = new ICmpInst(CmpInst::Predicate(Pred), LHS, RHS);
Chris Lattnerdf986172009-01-02 07:01:27 +00003360 }
3361 return false;
3362}
3363
3364//===----------------------------------------------------------------------===//
3365// Other Instructions.
3366//===----------------------------------------------------------------------===//
3367
3368
3369/// ParseCast
3370/// ::= CastOpc TypeAndValue 'to' Type
3371bool LLParser::ParseCast(Instruction *&Inst, PerFunctionState &PFS,
3372 unsigned Opc) {
3373 LocTy Loc; Value *Op;
Owen Anderson1d0be152009-08-13 21:58:54 +00003374 PATypeHolder DestTy(Type::getVoidTy(Context));
Chris Lattnerdf986172009-01-02 07:01:27 +00003375 if (ParseTypeAndValue(Op, Loc, PFS) ||
3376 ParseToken(lltok::kw_to, "expected 'to' after cast value") ||
3377 ParseType(DestTy))
3378 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003379
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00003380 if (!CastInst::castIsValid((Instruction::CastOps)Opc, Op, DestTy)) {
3381 CastInst::castIsValid((Instruction::CastOps)Opc, Op, DestTy);
Chris Lattnerdf986172009-01-02 07:01:27 +00003382 return Error(Loc, "invalid cast opcode for cast from '" +
3383 Op->getType()->getDescription() + "' to '" +
3384 DestTy->getDescription() + "'");
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00003385 }
Chris Lattnerdf986172009-01-02 07:01:27 +00003386 Inst = CastInst::Create((Instruction::CastOps)Opc, Op, DestTy);
3387 return false;
3388}
3389
3390/// ParseSelect
3391/// ::= 'select' TypeAndValue ',' TypeAndValue ',' TypeAndValue
3392bool LLParser::ParseSelect(Instruction *&Inst, PerFunctionState &PFS) {
3393 LocTy Loc;
3394 Value *Op0, *Op1, *Op2;
3395 if (ParseTypeAndValue(Op0, Loc, PFS) ||
3396 ParseToken(lltok::comma, "expected ',' after select condition") ||
3397 ParseTypeAndValue(Op1, PFS) ||
3398 ParseToken(lltok::comma, "expected ',' after select value") ||
3399 ParseTypeAndValue(Op2, PFS))
3400 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003401
Chris Lattnerdf986172009-01-02 07:01:27 +00003402 if (const char *Reason = SelectInst::areInvalidOperands(Op0, Op1, Op2))
3403 return Error(Loc, Reason);
Daniel Dunbara279bc32009-09-20 02:20:51 +00003404
Chris Lattnerdf986172009-01-02 07:01:27 +00003405 Inst = SelectInst::Create(Op0, Op1, Op2);
3406 return false;
3407}
3408
Chris Lattner0088a5c2009-01-05 08:18:44 +00003409/// ParseVA_Arg
3410/// ::= 'va_arg' TypeAndValue ',' Type
3411bool LLParser::ParseVA_Arg(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00003412 Value *Op;
Owen Anderson1d0be152009-08-13 21:58:54 +00003413 PATypeHolder EltTy(Type::getVoidTy(Context));
Chris Lattner0088a5c2009-01-05 08:18:44 +00003414 LocTy TypeLoc;
Chris Lattnerdf986172009-01-02 07:01:27 +00003415 if (ParseTypeAndValue(Op, PFS) ||
3416 ParseToken(lltok::comma, "expected ',' after vaarg operand") ||
Chris Lattner0088a5c2009-01-05 08:18:44 +00003417 ParseType(EltTy, TypeLoc))
Chris Lattnerdf986172009-01-02 07:01:27 +00003418 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003419
Chris Lattner0088a5c2009-01-05 08:18:44 +00003420 if (!EltTy->isFirstClassType())
3421 return Error(TypeLoc, "va_arg requires operand with first class type");
Chris Lattnerdf986172009-01-02 07:01:27 +00003422
3423 Inst = new VAArgInst(Op, EltTy);
3424 return false;
3425}
3426
3427/// ParseExtractElement
3428/// ::= 'extractelement' TypeAndValue ',' TypeAndValue
3429bool LLParser::ParseExtractElement(Instruction *&Inst, PerFunctionState &PFS) {
3430 LocTy Loc;
3431 Value *Op0, *Op1;
3432 if (ParseTypeAndValue(Op0, Loc, PFS) ||
3433 ParseToken(lltok::comma, "expected ',' after extract value") ||
3434 ParseTypeAndValue(Op1, PFS))
3435 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003436
Chris Lattnerdf986172009-01-02 07:01:27 +00003437 if (!ExtractElementInst::isValidOperands(Op0, Op1))
3438 return Error(Loc, "invalid extractelement operands");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003439
Eric Christophera3500da2009-07-25 02:28:41 +00003440 Inst = ExtractElementInst::Create(Op0, Op1);
Chris Lattnerdf986172009-01-02 07:01:27 +00003441 return false;
3442}
3443
3444/// ParseInsertElement
3445/// ::= 'insertelement' TypeAndValue ',' TypeAndValue ',' TypeAndValue
3446bool LLParser::ParseInsertElement(Instruction *&Inst, PerFunctionState &PFS) {
3447 LocTy Loc;
3448 Value *Op0, *Op1, *Op2;
3449 if (ParseTypeAndValue(Op0, Loc, PFS) ||
3450 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
3451 ParseTypeAndValue(Op1, PFS) ||
3452 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
3453 ParseTypeAndValue(Op2, PFS))
3454 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003455
Chris Lattnerdf986172009-01-02 07:01:27 +00003456 if (!InsertElementInst::isValidOperands(Op0, Op1, Op2))
Eric Christopher0aaf4e92009-07-23 01:01:32 +00003457 return Error(Loc, "invalid insertelement operands");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003458
Chris Lattnerdf986172009-01-02 07:01:27 +00003459 Inst = InsertElementInst::Create(Op0, Op1, Op2);
3460 return false;
3461}
3462
3463/// ParseShuffleVector
3464/// ::= 'shufflevector' TypeAndValue ',' TypeAndValue ',' TypeAndValue
3465bool LLParser::ParseShuffleVector(Instruction *&Inst, PerFunctionState &PFS) {
3466 LocTy Loc;
3467 Value *Op0, *Op1, *Op2;
3468 if (ParseTypeAndValue(Op0, Loc, PFS) ||
3469 ParseToken(lltok::comma, "expected ',' after shuffle mask") ||
3470 ParseTypeAndValue(Op1, PFS) ||
3471 ParseToken(lltok::comma, "expected ',' after shuffle value") ||
3472 ParseTypeAndValue(Op2, PFS))
3473 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003474
Chris Lattnerdf986172009-01-02 07:01:27 +00003475 if (!ShuffleVectorInst::isValidOperands(Op0, Op1, Op2))
3476 return Error(Loc, "invalid extractelement operands");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003477
Chris Lattnerdf986172009-01-02 07:01:27 +00003478 Inst = new ShuffleVectorInst(Op0, Op1, Op2);
3479 return false;
3480}
3481
3482/// ParsePHI
Chris Lattnerc6e20092009-10-18 05:27:44 +00003483/// ::= 'phi' Type '[' Value ',' Value ']' (',' '[' Value ',' Value ']')*
Chris Lattnerdf986172009-01-02 07:01:27 +00003484bool LLParser::ParsePHI(Instruction *&Inst, PerFunctionState &PFS) {
Owen Anderson1d0be152009-08-13 21:58:54 +00003485 PATypeHolder Ty(Type::getVoidTy(Context));
Chris Lattnerdf986172009-01-02 07:01:27 +00003486 Value *Op0, *Op1;
3487 LocTy TypeLoc = Lex.getLoc();
Daniel Dunbara279bc32009-09-20 02:20:51 +00003488
Chris Lattnerdf986172009-01-02 07:01:27 +00003489 if (ParseType(Ty) ||
3490 ParseToken(lltok::lsquare, "expected '[' in phi value list") ||
3491 ParseValue(Ty, Op0, PFS) ||
3492 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
Owen Anderson1d0be152009-08-13 21:58:54 +00003493 ParseValue(Type::getLabelTy(Context), Op1, PFS) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003494 ParseToken(lltok::rsquare, "expected ']' in phi value list"))
3495 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003496
Chris Lattnerdf986172009-01-02 07:01:27 +00003497 SmallVector<std::pair<Value*, BasicBlock*>, 16> PHIVals;
3498 while (1) {
3499 PHIVals.push_back(std::make_pair(Op0, cast<BasicBlock>(Op1)));
Daniel Dunbara279bc32009-09-20 02:20:51 +00003500
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003501 if (!EatIfPresent(lltok::comma))
Chris Lattnerdf986172009-01-02 07:01:27 +00003502 break;
3503
Devang Patela43d46f2009-10-16 18:45:49 +00003504 if (Lex.getKind() == lltok::NamedOrCustomMD)
3505 break;
3506
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003507 if (ParseToken(lltok::lsquare, "expected '[' in phi value list") ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003508 ParseValue(Ty, Op0, PFS) ||
3509 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
Owen Anderson1d0be152009-08-13 21:58:54 +00003510 ParseValue(Type::getLabelTy(Context), Op1, PFS) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003511 ParseToken(lltok::rsquare, "expected ']' in phi value list"))
3512 return true;
3513 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003514
Devang Patela43d46f2009-10-16 18:45:49 +00003515 if (Lex.getKind() == lltok::NamedOrCustomMD)
3516 if (ParseOptionalCustomMetadata()) return true;
3517
Chris Lattnerdf986172009-01-02 07:01:27 +00003518 if (!Ty->isFirstClassType())
3519 return Error(TypeLoc, "phi node must have first class type");
3520
3521 PHINode *PN = PHINode::Create(Ty);
3522 PN->reserveOperandSpace(PHIVals.size());
3523 for (unsigned i = 0, e = PHIVals.size(); i != e; ++i)
3524 PN->addIncoming(PHIVals[i].first, PHIVals[i].second);
3525 Inst = PN;
3526 return false;
3527}
3528
3529/// ParseCall
3530/// ::= 'tail'? 'call' OptionalCallingConv OptionalAttrs Type Value
3531/// ParameterList OptionalAttrs
3532bool LLParser::ParseCall(Instruction *&Inst, PerFunctionState &PFS,
3533 bool isTail) {
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00003534 unsigned RetAttrs, FnAttrs;
3535 CallingConv::ID CC;
Owen Anderson1d0be152009-08-13 21:58:54 +00003536 PATypeHolder RetType(Type::getVoidTy(Context));
Chris Lattnerdf986172009-01-02 07:01:27 +00003537 LocTy RetTypeLoc;
3538 ValID CalleeID;
3539 SmallVector<ParamInfo, 16> ArgList;
3540 LocTy CallLoc = Lex.getLoc();
Daniel Dunbara279bc32009-09-20 02:20:51 +00003541
Chris Lattnerdf986172009-01-02 07:01:27 +00003542 if ((isTail && ParseToken(lltok::kw_call, "expected 'tail call'")) ||
3543 ParseOptionalCallingConv(CC) ||
3544 ParseOptionalAttrs(RetAttrs, 1) ||
Chris Lattnera9a9e072009-03-09 04:49:14 +00003545 ParseType(RetType, RetTypeLoc, true /*void allowed*/) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003546 ParseValID(CalleeID) ||
3547 ParseParameterList(ArgList, PFS) ||
3548 ParseOptionalAttrs(FnAttrs, 2))
3549 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003550
Chris Lattnerdf986172009-01-02 07:01:27 +00003551 // If RetType is a non-function pointer type, then this is the short syntax
3552 // for the call, which means that RetType is just the return type. Infer the
3553 // rest of the function argument types from the arguments that are present.
3554 const PointerType *PFTy = 0;
3555 const FunctionType *Ty = 0;
3556 if (!(PFTy = dyn_cast<PointerType>(RetType)) ||
3557 !(Ty = dyn_cast<FunctionType>(PFTy->getElementType()))) {
3558 // Pull out the types of all of the arguments...
3559 std::vector<const Type*> ParamTypes;
3560 for (unsigned i = 0, e = ArgList.size(); i != e; ++i)
3561 ParamTypes.push_back(ArgList[i].V->getType());
Daniel Dunbara279bc32009-09-20 02:20:51 +00003562
Chris Lattnerdf986172009-01-02 07:01:27 +00003563 if (!FunctionType::isValidReturnType(RetType))
3564 return Error(RetTypeLoc, "Invalid result type for LLVM function");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003565
Owen Andersondebcb012009-07-29 22:17:13 +00003566 Ty = FunctionType::get(RetType, ParamTypes, false);
3567 PFTy = PointerType::getUnqual(Ty);
Chris Lattnerdf986172009-01-02 07:01:27 +00003568 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003569
Chris Lattnerdf986172009-01-02 07:01:27 +00003570 // Look up the callee.
3571 Value *Callee;
3572 if (ConvertValIDToValue(PFTy, CalleeID, Callee, PFS)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003573
Chris Lattnerdf986172009-01-02 07:01:27 +00003574 // FIXME: In LLVM 3.0, stop accepting zext, sext and inreg as optional
3575 // function attributes.
3576 unsigned ObsoleteFuncAttrs = Attribute::ZExt|Attribute::SExt|Attribute::InReg;
3577 if (FnAttrs & ObsoleteFuncAttrs) {
3578 RetAttrs |= FnAttrs & ObsoleteFuncAttrs;
3579 FnAttrs &= ~ObsoleteFuncAttrs;
3580 }
3581
3582 // Set up the Attributes for the function.
3583 SmallVector<AttributeWithIndex, 8> Attrs;
3584 if (RetAttrs != Attribute::None)
3585 Attrs.push_back(AttributeWithIndex::get(0, RetAttrs));
Daniel Dunbara279bc32009-09-20 02:20:51 +00003586
Chris Lattnerdf986172009-01-02 07:01:27 +00003587 SmallVector<Value*, 8> Args;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003588
Chris Lattnerdf986172009-01-02 07:01:27 +00003589 // Loop through FunctionType's arguments and ensure they are specified
3590 // correctly. Also, gather any parameter attributes.
3591 FunctionType::param_iterator I = Ty->param_begin();
3592 FunctionType::param_iterator E = Ty->param_end();
3593 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
3594 const Type *ExpectedTy = 0;
3595 if (I != E) {
3596 ExpectedTy = *I++;
3597 } else if (!Ty->isVarArg()) {
3598 return Error(ArgList[i].Loc, "too many arguments specified");
3599 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003600
Chris Lattnerdf986172009-01-02 07:01:27 +00003601 if (ExpectedTy && ExpectedTy != ArgList[i].V->getType())
3602 return Error(ArgList[i].Loc, "argument is not of expected type '" +
3603 ExpectedTy->getDescription() + "'");
3604 Args.push_back(ArgList[i].V);
3605 if (ArgList[i].Attrs != Attribute::None)
3606 Attrs.push_back(AttributeWithIndex::get(i+1, ArgList[i].Attrs));
3607 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003608
Chris Lattnerdf986172009-01-02 07:01:27 +00003609 if (I != E)
3610 return Error(CallLoc, "not enough parameters specified for call");
3611
3612 if (FnAttrs != Attribute::None)
3613 Attrs.push_back(AttributeWithIndex::get(~0, FnAttrs));
3614
3615 // Finish off the Attributes and check them
3616 AttrListPtr PAL = AttrListPtr::get(Attrs.begin(), Attrs.end());
Daniel Dunbara279bc32009-09-20 02:20:51 +00003617
Chris Lattnerdf986172009-01-02 07:01:27 +00003618 CallInst *CI = CallInst::Create(Callee, Args.begin(), Args.end());
3619 CI->setTailCall(isTail);
3620 CI->setCallingConv(CC);
3621 CI->setAttributes(PAL);
3622 Inst = CI;
3623 return false;
3624}
3625
3626//===----------------------------------------------------------------------===//
3627// Memory Instructions.
3628//===----------------------------------------------------------------------===//
3629
3630/// ParseAlloc
Devang Patelf633a062009-09-17 23:04:48 +00003631/// ::= 'malloc' Type (',' TypeAndValue)? (',' OptionalInfo)?
3632/// ::= 'alloca' Type (',' TypeAndValue)? (',' OptionalInfo)?
Chris Lattnerdf986172009-01-02 07:01:27 +00003633bool LLParser::ParseAlloc(Instruction *&Inst, PerFunctionState &PFS,
Victor Hernandez13ad5aa2009-10-17 00:00:19 +00003634 BasicBlock* BB, bool isAlloca) {
Owen Anderson1d0be152009-08-13 21:58:54 +00003635 PATypeHolder Ty(Type::getVoidTy(Context));
Chris Lattnerdf986172009-01-02 07:01:27 +00003636 Value *Size = 0;
Chris Lattnereeb4a842009-07-02 23:08:13 +00003637 LocTy SizeLoc;
Chris Lattnerdf986172009-01-02 07:01:27 +00003638 unsigned Alignment = 0;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003639 if (ParseType(Ty)) return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00003640
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003641 if (EatIfPresent(lltok::comma)) {
Devang Patel0475c912009-09-29 00:01:14 +00003642 if (Lex.getKind() == lltok::kw_align
3643 || Lex.getKind() == lltok::NamedOrCustomMD) {
Devang Patelf633a062009-09-17 23:04:48 +00003644 if (ParseOptionalInfo(Alignment)) return true;
3645 } else {
3646 if (ParseTypeAndValue(Size, SizeLoc, PFS)) return true;
3647 if (EatIfPresent(lltok::comma))
Daniel Dunbara279bc32009-09-20 02:20:51 +00003648 if (ParseOptionalInfo(Alignment)) return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00003649 }
3650 }
3651
Owen Anderson1d0be152009-08-13 21:58:54 +00003652 if (Size && Size->getType() != Type::getInt32Ty(Context))
Chris Lattnerdf986172009-01-02 07:01:27 +00003653 return Error(SizeLoc, "element count must be i32");
3654
Victor Hernandez68afa542009-10-21 19:11:40 +00003655 if (isAlloca) {
Owen Anderson50dead02009-07-15 23:53:25 +00003656 Inst = new AllocaInst(Ty, Size, Alignment);
Victor Hernandez68afa542009-10-21 19:11:40 +00003657 return false;
Victor Hernandez13ad5aa2009-10-17 00:00:19 +00003658 }
Victor Hernandez68afa542009-10-21 19:11:40 +00003659
3660 // Autoupgrade old malloc instruction to malloc call.
3661 // FIXME: Remove in LLVM 3.0.
3662 const Type *IntPtrTy = Type::getInt32Ty(Context);
Victor Hernandez9d0b7042009-11-07 00:16:28 +00003663 Constant *AllocSize = ConstantExpr::getSizeOf(Ty);
3664 AllocSize = ConstantExpr::getTruncOrBitCast(AllocSize, IntPtrTy);
Victor Hernandez68afa542009-10-21 19:11:40 +00003665 if (!MallocF)
3666 // Prototype malloc as "void *(int32)".
3667 // This function is renamed as "malloc" in ValidateEndOfModule().
Victor Hernandez336ea062009-10-23 00:59:10 +00003668 MallocF = cast<Function>(
3669 M->getOrInsertFunction("", Type::getInt8PtrTy(Context), IntPtrTy, NULL));
Victor Hernandez9d0b7042009-11-07 00:16:28 +00003670 Inst = CallInst::CreateMalloc(BB, IntPtrTy, Ty, AllocSize, Size, MallocF);
Chris Lattnerdf986172009-01-02 07:01:27 +00003671 return false;
3672}
3673
3674/// ParseFree
3675/// ::= 'free' TypeAndValue
Victor Hernandez66284e02009-10-24 04:23:03 +00003676bool LLParser::ParseFree(Instruction *&Inst, PerFunctionState &PFS,
3677 BasicBlock* BB) {
Chris Lattnerdf986172009-01-02 07:01:27 +00003678 Value *Val; LocTy Loc;
3679 if (ParseTypeAndValue(Val, Loc, PFS)) return true;
3680 if (!isa<PointerType>(Val->getType()))
3681 return Error(Loc, "operand to free must be a pointer");
Victor Hernandez66284e02009-10-24 04:23:03 +00003682 Inst = CallInst::CreateFree(Val, BB);
Chris Lattnerdf986172009-01-02 07:01:27 +00003683 return false;
3684}
3685
3686/// ParseLoad
Devang Patelf633a062009-09-17 23:04:48 +00003687/// ::= 'volatile'? 'load' TypeAndValue (',' OptionalInfo)?
Chris Lattnerdf986172009-01-02 07:01:27 +00003688bool LLParser::ParseLoad(Instruction *&Inst, PerFunctionState &PFS,
3689 bool isVolatile) {
3690 Value *Val; LocTy Loc;
Devang Patelf633a062009-09-17 23:04:48 +00003691 unsigned Alignment = 0;
3692 if (ParseTypeAndValue(Val, Loc, PFS)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003693
Devang Patelf633a062009-09-17 23:04:48 +00003694 if (EatIfPresent(lltok::comma))
3695 if (ParseOptionalInfo(Alignment)) return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00003696
3697 if (!isa<PointerType>(Val->getType()) ||
3698 !cast<PointerType>(Val->getType())->getElementType()->isFirstClassType())
3699 return Error(Loc, "load operand must be a pointer to a first class type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003700
Chris Lattnerdf986172009-01-02 07:01:27 +00003701 Inst = new LoadInst(Val, "", isVolatile, Alignment);
3702 return false;
3703}
3704
3705/// ParseStore
Dan Gohmana119de82009-06-14 23:30:43 +00003706/// ::= 'volatile'? 'store' TypeAndValue ',' TypeAndValue (',' 'align' i32)?
Chris Lattnerdf986172009-01-02 07:01:27 +00003707bool LLParser::ParseStore(Instruction *&Inst, PerFunctionState &PFS,
3708 bool isVolatile) {
3709 Value *Val, *Ptr; LocTy Loc, PtrLoc;
Devang Patelf633a062009-09-17 23:04:48 +00003710 unsigned Alignment = 0;
Chris Lattnerdf986172009-01-02 07:01:27 +00003711 if (ParseTypeAndValue(Val, Loc, PFS) ||
3712 ParseToken(lltok::comma, "expected ',' after store operand") ||
Devang Patelf633a062009-09-17 23:04:48 +00003713 ParseTypeAndValue(Ptr, PtrLoc, PFS))
Chris Lattnerdf986172009-01-02 07:01:27 +00003714 return true;
Devang Patelf633a062009-09-17 23:04:48 +00003715
3716 if (EatIfPresent(lltok::comma))
3717 if (ParseOptionalInfo(Alignment)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003718
Chris Lattnerdf986172009-01-02 07:01:27 +00003719 if (!isa<PointerType>(Ptr->getType()))
3720 return Error(PtrLoc, "store operand must be a pointer");
3721 if (!Val->getType()->isFirstClassType())
3722 return Error(Loc, "store operand must be a first class value");
3723 if (cast<PointerType>(Ptr->getType())->getElementType() != Val->getType())
3724 return Error(Loc, "stored value and pointer type do not match");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003725
Chris Lattnerdf986172009-01-02 07:01:27 +00003726 Inst = new StoreInst(Val, Ptr, isVolatile, Alignment);
3727 return false;
3728}
3729
3730/// ParseGetResult
Dan Gohmana119de82009-06-14 23:30:43 +00003731/// ::= 'getresult' TypeAndValue ',' i32
Chris Lattnerdf986172009-01-02 07:01:27 +00003732/// FIXME: Remove support for getresult in LLVM 3.0
3733bool LLParser::ParseGetResult(Instruction *&Inst, PerFunctionState &PFS) {
3734 Value *Val; LocTy ValLoc, EltLoc;
3735 unsigned Element;
3736 if (ParseTypeAndValue(Val, ValLoc, PFS) ||
3737 ParseToken(lltok::comma, "expected ',' after getresult operand") ||
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003738 ParseUInt32(Element, EltLoc))
Chris Lattnerdf986172009-01-02 07:01:27 +00003739 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003740
Chris Lattnerdf986172009-01-02 07:01:27 +00003741 if (!isa<StructType>(Val->getType()) && !isa<ArrayType>(Val->getType()))
3742 return Error(ValLoc, "getresult inst requires an aggregate operand");
3743 if (!ExtractValueInst::getIndexedType(Val->getType(), Element))
3744 return Error(EltLoc, "invalid getresult index for value");
3745 Inst = ExtractValueInst::Create(Val, Element);
3746 return false;
3747}
3748
3749/// ParseGetElementPtr
Dan Gohmandd8004d2009-07-27 21:53:46 +00003750/// ::= 'getelementptr' 'inbounds'? TypeAndValue (',' TypeAndValue)*
Chris Lattnerdf986172009-01-02 07:01:27 +00003751bool LLParser::ParseGetElementPtr(Instruction *&Inst, PerFunctionState &PFS) {
3752 Value *Ptr, *Val; LocTy Loc, EltLoc;
Dan Gohmandd8004d2009-07-27 21:53:46 +00003753
Dan Gohmandcb40a32009-07-29 15:58:36 +00003754 bool InBounds = EatIfPresent(lltok::kw_inbounds);
Dan Gohmandd8004d2009-07-27 21:53:46 +00003755
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003756 if (ParseTypeAndValue(Ptr, Loc, PFS)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003757
Chris Lattnerdf986172009-01-02 07:01:27 +00003758 if (!isa<PointerType>(Ptr->getType()))
3759 return Error(Loc, "base of getelementptr must be a pointer");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003760
Chris Lattnerdf986172009-01-02 07:01:27 +00003761 SmallVector<Value*, 16> Indices;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003762 while (EatIfPresent(lltok::comma)) {
Devang Patel6225d642009-10-13 18:49:55 +00003763 if (Lex.getKind() == lltok::NamedOrCustomMD)
3764 break;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003765 if (ParseTypeAndValue(Val, EltLoc, PFS)) return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00003766 if (!isa<IntegerType>(Val->getType()))
3767 return Error(EltLoc, "getelementptr index must be an integer");
3768 Indices.push_back(Val);
3769 }
Devang Patel6225d642009-10-13 18:49:55 +00003770 if (Lex.getKind() == lltok::NamedOrCustomMD)
3771 if (ParseOptionalCustomMetadata()) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003772
Chris Lattnerdf986172009-01-02 07:01:27 +00003773 if (!GetElementPtrInst::getIndexedType(Ptr->getType(),
3774 Indices.begin(), Indices.end()))
3775 return Error(Loc, "invalid getelementptr indices");
3776 Inst = GetElementPtrInst::Create(Ptr, Indices.begin(), Indices.end());
Dan Gohmandd8004d2009-07-27 21:53:46 +00003777 if (InBounds)
Dan Gohmanf8dbee72009-09-07 23:54:19 +00003778 cast<GetElementPtrInst>(Inst)->setIsInBounds(true);
Chris Lattnerdf986172009-01-02 07:01:27 +00003779 return false;
3780}
3781
3782/// ParseExtractValue
3783/// ::= 'extractvalue' TypeAndValue (',' uint32)+
3784bool LLParser::ParseExtractValue(Instruction *&Inst, PerFunctionState &PFS) {
3785 Value *Val; LocTy Loc;
3786 SmallVector<unsigned, 4> Indices;
3787 if (ParseTypeAndValue(Val, Loc, PFS) ||
3788 ParseIndexList(Indices))
3789 return true;
Devang Patele8bc45a2009-11-03 19:06:07 +00003790 if (Lex.getKind() == lltok::NamedOrCustomMD)
3791 if (ParseOptionalCustomMetadata()) return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00003792
3793 if (!isa<StructType>(Val->getType()) && !isa<ArrayType>(Val->getType()))
3794 return Error(Loc, "extractvalue operand must be array or struct");
3795
3796 if (!ExtractValueInst::getIndexedType(Val->getType(), Indices.begin(),
3797 Indices.end()))
3798 return Error(Loc, "invalid indices for extractvalue");
3799 Inst = ExtractValueInst::Create(Val, Indices.begin(), Indices.end());
3800 return false;
3801}
3802
3803/// ParseInsertValue
3804/// ::= 'insertvalue' TypeAndValue ',' TypeAndValue (',' uint32)+
3805bool LLParser::ParseInsertValue(Instruction *&Inst, PerFunctionState &PFS) {
3806 Value *Val0, *Val1; LocTy Loc0, Loc1;
3807 SmallVector<unsigned, 4> Indices;
3808 if (ParseTypeAndValue(Val0, Loc0, PFS) ||
3809 ParseToken(lltok::comma, "expected comma after insertvalue operand") ||
3810 ParseTypeAndValue(Val1, Loc1, PFS) ||
3811 ParseIndexList(Indices))
3812 return true;
Devang Patele8bc45a2009-11-03 19:06:07 +00003813 if (Lex.getKind() == lltok::NamedOrCustomMD)
3814 if (ParseOptionalCustomMetadata()) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003815
Chris Lattnerdf986172009-01-02 07:01:27 +00003816 if (!isa<StructType>(Val0->getType()) && !isa<ArrayType>(Val0->getType()))
3817 return Error(Loc0, "extractvalue operand must be array or struct");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003818
Chris Lattnerdf986172009-01-02 07:01:27 +00003819 if (!ExtractValueInst::getIndexedType(Val0->getType(), Indices.begin(),
3820 Indices.end()))
3821 return Error(Loc0, "invalid indices for insertvalue");
3822 Inst = InsertValueInst::Create(Val0, Val1, Indices.begin(), Indices.end());
3823 return false;
3824}
Nick Lewycky21cc4462009-04-04 07:22:01 +00003825
3826//===----------------------------------------------------------------------===//
3827// Embedded metadata.
3828//===----------------------------------------------------------------------===//
3829
3830/// ParseMDNodeVector
Nick Lewyckycb337992009-05-10 20:57:05 +00003831/// ::= Element (',' Element)*
3832/// Element
3833/// ::= 'null' | TypeAndValue
3834bool LLParser::ParseMDNodeVector(SmallVectorImpl<Value*> &Elts) {
Nick Lewycky21cc4462009-04-04 07:22:01 +00003835 assert(Lex.getKind() == lltok::lbrace);
3836 Lex.Lex();
3837 do {
Devang Pateldb5e9002009-07-23 01:36:16 +00003838 Value *V = 0;
Nick Lewyckycb337992009-05-10 20:57:05 +00003839 if (Lex.getKind() == lltok::kw_null) {
3840 Lex.Lex();
3841 V = 0;
3842 } else {
Owen Anderson1d0be152009-08-13 21:58:54 +00003843 PATypeHolder Ty(Type::getVoidTy(Context));
Devang Patele54abc92009-07-22 17:43:22 +00003844 if (ParseType(Ty)) return true;
3845 if (Lex.getKind() == lltok::Metadata) {
3846 Lex.Lex();
Devang Patel104cf9e2009-07-23 01:07:34 +00003847 MetadataBase *Node = 0;
Devang Patele54abc92009-07-22 17:43:22 +00003848 if (!ParseMDNode(Node))
3849 V = Node;
3850 else {
3851 MetadataBase *MDS = 0;
3852 if (ParseMDString(MDS)) return true;
3853 V = MDS;
3854 }
3855 } else {
3856 Constant *C;
3857 if (ParseGlobalValue(Ty, C)) return true;
3858 V = C;
3859 }
Nick Lewyckycb337992009-05-10 20:57:05 +00003860 }
3861 Elts.push_back(V);
Nick Lewycky21cc4462009-04-04 07:22:01 +00003862 } while (EatIfPresent(lltok::comma));
3863
3864 return false;
3865}