blob: 5dc5a5e1194dd499789dab56be65217a428c3f69 [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"
21#include "llvm/Module.h"
Dan Gohman1224c382009-07-20 21:19:07 +000022#include "llvm/Operator.h"
Chris Lattnerdf986172009-01-02 07:01:27 +000023#include "llvm/ValueSymbolTable.h"
24#include "llvm/ADT/SmallPtrSet.h"
25#include "llvm/ADT/StringExtras.h"
Torok Edwinc25e7582009-07-11 20:10:48 +000026#include "llvm/Support/ErrorHandling.h"
Chris Lattnerdf986172009-01-02 07:01:27 +000027#include "llvm/Support/raw_ostream.h"
28using namespace llvm;
29
Chris Lattner3ed88ef2009-01-02 08:05:26 +000030/// Run: module ::= toplevelentity*
Chris Lattnerad7d1e22009-01-04 20:44:11 +000031bool LLParser::Run() {
Chris Lattner3ed88ef2009-01-02 08:05:26 +000032 // Prime the lexer.
33 Lex.Lex();
34
Chris Lattnerad7d1e22009-01-04 20:44:11 +000035 return ParseTopLevelEntities() ||
36 ValidateEndOfModule();
Chris Lattnerdf986172009-01-02 07:01:27 +000037}
38
39/// ValidateEndOfModule - Do final validity and sanity checks at the end of the
40/// module.
41bool LLParser::ValidateEndOfModule() {
Victor Hernandez68afa542009-10-21 19:11:40 +000042 // Update auto-upgraded malloc calls to "malloc".
Chris Lattnercf4d2f12009-10-18 05:09:15 +000043 // FIXME: Remove in LLVM 3.0.
Victor Hernandez13ad5aa2009-10-17 00:00:19 +000044 if (MallocF) {
45 MallocF->setName("malloc");
46 // If setName() does not set the name to "malloc", then there is already a
47 // declaration of "malloc". In that case, iterate over all calls to MallocF
48 // and get them to call the declared "malloc" instead.
49 if (MallocF->getName() != "malloc") {
Chris Lattner09d9ef42009-10-28 03:39:23 +000050 Constant *RealMallocF = M->getFunction("malloc");
Victor Hernandez68afa542009-10-21 19:11:40 +000051 if (RealMallocF->getType() != MallocF->getType())
52 RealMallocF = ConstantExpr::getBitCast(RealMallocF, MallocF->getType());
53 MallocF->replaceAllUsesWith(RealMallocF);
Victor Hernandez13ad5aa2009-10-17 00:00:19 +000054 MallocF->eraseFromParent();
55 MallocF = NULL;
56 }
57 }
Chris Lattner09d9ef42009-10-28 03:39:23 +000058
59
60 // If there are entries in ForwardRefBlockAddresses at this point, they are
61 // references after the function was defined. Resolve those now.
62 while (!ForwardRefBlockAddresses.empty()) {
63 // Okay, we are referencing an already-parsed function, resolve them now.
64 Function *TheFn = 0;
65 const ValID &Fn = ForwardRefBlockAddresses.begin()->first;
66 if (Fn.Kind == ValID::t_GlobalName)
67 TheFn = M->getFunction(Fn.StrVal);
68 else if (Fn.UIntVal < NumberedVals.size())
69 TheFn = dyn_cast<Function>(NumberedVals[Fn.UIntVal]);
70
71 if (TheFn == 0)
72 return Error(Fn.Loc, "unknown function referenced by blockaddress");
73
74 // Resolve all these references.
75 if (ResolveForwardRefBlockAddresses(TheFn,
76 ForwardRefBlockAddresses.begin()->second,
77 0))
78 return true;
79
80 ForwardRefBlockAddresses.erase(ForwardRefBlockAddresses.begin());
81 }
82
83
Chris Lattnerdf986172009-01-02 07:01:27 +000084 if (!ForwardRefTypes.empty())
85 return Error(ForwardRefTypes.begin()->second.second,
86 "use of undefined type named '" +
87 ForwardRefTypes.begin()->first + "'");
88 if (!ForwardRefTypeIDs.empty())
89 return Error(ForwardRefTypeIDs.begin()->second.second,
90 "use of undefined type '%" +
91 utostr(ForwardRefTypeIDs.begin()->first) + "'");
Daniel Dunbara279bc32009-09-20 02:20:51 +000092
Chris Lattnerdf986172009-01-02 07:01:27 +000093 if (!ForwardRefVals.empty())
94 return Error(ForwardRefVals.begin()->second.second,
95 "use of undefined value '@" + ForwardRefVals.begin()->first +
96 "'");
Daniel Dunbara279bc32009-09-20 02:20:51 +000097
Chris Lattnerdf986172009-01-02 07:01:27 +000098 if (!ForwardRefValIDs.empty())
99 return Error(ForwardRefValIDs.begin()->second.second,
100 "use of undefined value '@" +
101 utostr(ForwardRefValIDs.begin()->first) + "'");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000102
Devang Patel1c7eea62009-07-08 19:23:54 +0000103 if (!ForwardRefMDNodes.empty())
104 return Error(ForwardRefMDNodes.begin()->second.second,
105 "use of undefined metadata '!" +
106 utostr(ForwardRefMDNodes.begin()->first) + "'");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000107
Devang Patel1c7eea62009-07-08 19:23:54 +0000108
Chris Lattnerdf986172009-01-02 07:01:27 +0000109 // Look for intrinsic functions and CallInst that need to be upgraded
110 for (Module::iterator FI = M->begin(), FE = M->end(); FI != FE; )
111 UpgradeCallsToIntrinsic(FI++); // must be post-increment, as we remove
Daniel Dunbara279bc32009-09-20 02:20:51 +0000112
Devang Patele4b27562009-08-28 23:24:31 +0000113 // Check debug info intrinsics.
114 CheckDebugInfoIntrinsics(M);
Chris Lattnerdf986172009-01-02 07:01:27 +0000115 return false;
116}
117
Chris Lattner09d9ef42009-10-28 03:39:23 +0000118bool LLParser::ResolveForwardRefBlockAddresses(Function *TheFn,
119 std::vector<std::pair<ValID, GlobalValue*> > &Refs,
120 PerFunctionState *PFS) {
121 // Loop over all the references, resolving them.
122 for (unsigned i = 0, e = Refs.size(); i != e; ++i) {
123 BasicBlock *Res;
Chris Lattnercdfc9402009-11-01 01:27:45 +0000124 if (PFS) {
Chris Lattner09d9ef42009-10-28 03:39:23 +0000125 if (Refs[i].first.Kind == ValID::t_LocalName)
126 Res = PFS->GetBB(Refs[i].first.StrVal, Refs[i].first.Loc);
Chris Lattnercdfc9402009-11-01 01:27:45 +0000127 else
Chris Lattner09d9ef42009-10-28 03:39:23 +0000128 Res = PFS->GetBB(Refs[i].first.UIntVal, Refs[i].first.Loc);
129 } else if (Refs[i].first.Kind == ValID::t_LocalID) {
130 return Error(Refs[i].first.Loc,
Chris Lattneree7644d2009-11-02 18:28:45 +0000131 "cannot take address of numeric label after the function is defined");
Chris Lattner09d9ef42009-10-28 03:39:23 +0000132 } else {
133 Res = dyn_cast_or_null<BasicBlock>(
134 TheFn->getValueSymbolTable().lookup(Refs[i].first.StrVal));
135 }
136
Chris Lattnercdfc9402009-11-01 01:27:45 +0000137 if (Res == 0)
Chris Lattner09d9ef42009-10-28 03:39:23 +0000138 return Error(Refs[i].first.Loc,
139 "referenced value is not a basic block");
140
141 // Get the BlockAddress for this and update references to use it.
142 BlockAddress *BA = BlockAddress::get(TheFn, Res);
143 Refs[i].second->replaceAllUsesWith(BA);
144 Refs[i].second->eraseFromParent();
145 }
146 return false;
147}
148
149
Chris Lattnerdf986172009-01-02 07:01:27 +0000150//===----------------------------------------------------------------------===//
151// Top-Level Entities
152//===----------------------------------------------------------------------===//
153
154bool LLParser::ParseTopLevelEntities() {
Chris Lattnerdf986172009-01-02 07:01:27 +0000155 while (1) {
156 switch (Lex.getKind()) {
157 default: return TokError("expected top-level entity");
158 case lltok::Eof: return false;
159 //case lltok::kw_define:
160 case lltok::kw_declare: if (ParseDeclare()) return true; break;
161 case lltok::kw_define: if (ParseDefine()) return true; break;
162 case lltok::kw_module: if (ParseModuleAsm()) return true; break;
163 case lltok::kw_target: if (ParseTargetDefinition()) return true; break;
164 case lltok::kw_deplibs: if (ParseDepLibs()) return true; break;
165 case lltok::kw_type: if (ParseUnnamedType()) return true; break;
Dan Gohman3845e502009-08-12 23:32:33 +0000166 case lltok::LocalVarID: if (ParseUnnamedType()) return true; break;
Chris Lattnerdf986172009-01-02 07:01:27 +0000167 case lltok::StringConstant: // FIXME: REMOVE IN LLVM 3.0
168 case lltok::LocalVar: if (ParseNamedType()) return true; break;
Dan Gohman3845e502009-08-12 23:32:33 +0000169 case lltok::GlobalID: if (ParseUnnamedGlobal()) return true; break;
Chris Lattnerdf986172009-01-02 07:01:27 +0000170 case lltok::GlobalVar: if (ParseNamedGlobal()) return true; break;
Chris Lattnere434d272009-12-30 04:56:59 +0000171 case lltok::exclaim: if (ParseStandaloneMetadata()) return true; break;
Chris Lattner1d928312009-12-30 05:02:06 +0000172 case lltok::MetadataVar: if (ParseNamedMetadata()) return true; break;
Chris Lattnerdf986172009-01-02 07:01:27 +0000173
174 // The Global variable production with no name can have many different
175 // optional leading prefixes, the production is:
176 // GlobalVar ::= OptionalLinkage OptionalVisibility OptionalThreadLocal
177 // OptionalAddrSpace ('constant'|'global') ...
Bill Wendling3d10a5a2009-07-20 01:03:30 +0000178 case lltok::kw_private : // OptionalLinkage
179 case lltok::kw_linker_private: // OptionalLinkage
180 case lltok::kw_internal: // OptionalLinkage
181 case lltok::kw_weak: // OptionalLinkage
182 case lltok::kw_weak_odr: // OptionalLinkage
183 case lltok::kw_linkonce: // OptionalLinkage
184 case lltok::kw_linkonce_odr: // OptionalLinkage
185 case lltok::kw_appending: // OptionalLinkage
186 case lltok::kw_dllexport: // OptionalLinkage
187 case lltok::kw_common: // OptionalLinkage
188 case lltok::kw_dllimport: // OptionalLinkage
189 case lltok::kw_extern_weak: // OptionalLinkage
190 case lltok::kw_external: { // OptionalLinkage
Chris Lattnerdf986172009-01-02 07:01:27 +0000191 unsigned Linkage, Visibility;
192 if (ParseOptionalLinkage(Linkage) ||
193 ParseOptionalVisibility(Visibility) ||
Chris Lattnereeb4a842009-07-02 23:08:13 +0000194 ParseGlobal("", SMLoc(), Linkage, true, Visibility))
Chris Lattnerdf986172009-01-02 07:01:27 +0000195 return true;
196 break;
197 }
198 case lltok::kw_default: // OptionalVisibility
199 case lltok::kw_hidden: // OptionalVisibility
200 case lltok::kw_protected: { // OptionalVisibility
201 unsigned Visibility;
202 if (ParseOptionalVisibility(Visibility) ||
Chris Lattnereeb4a842009-07-02 23:08:13 +0000203 ParseGlobal("", SMLoc(), 0, false, Visibility))
Chris Lattnerdf986172009-01-02 07:01:27 +0000204 return true;
205 break;
206 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000207
Chris Lattnerdf986172009-01-02 07:01:27 +0000208 case lltok::kw_thread_local: // OptionalThreadLocal
209 case lltok::kw_addrspace: // OptionalAddrSpace
210 case lltok::kw_constant: // GlobalType
211 case lltok::kw_global: // GlobalType
Chris Lattnereeb4a842009-07-02 23:08:13 +0000212 if (ParseGlobal("", SMLoc(), 0, false, 0)) return true;
Chris Lattnerdf986172009-01-02 07:01:27 +0000213 break;
214 }
215 }
216}
217
218
219/// toplevelentity
220/// ::= 'module' 'asm' STRINGCONSTANT
221bool LLParser::ParseModuleAsm() {
222 assert(Lex.getKind() == lltok::kw_module);
223 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +0000224
225 std::string AsmStr;
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000226 if (ParseToken(lltok::kw_asm, "expected 'module asm'") ||
227 ParseStringConstant(AsmStr)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000228
Chris Lattnerdf986172009-01-02 07:01:27 +0000229 const std::string &AsmSoFar = M->getModuleInlineAsm();
230 if (AsmSoFar.empty())
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000231 M->setModuleInlineAsm(AsmStr);
Chris Lattnerdf986172009-01-02 07:01:27 +0000232 else
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000233 M->setModuleInlineAsm(AsmSoFar+"\n"+AsmStr);
Chris Lattnerdf986172009-01-02 07:01:27 +0000234 return false;
235}
236
237/// toplevelentity
238/// ::= 'target' 'triple' '=' STRINGCONSTANT
239/// ::= 'target' 'datalayout' '=' STRINGCONSTANT
240bool LLParser::ParseTargetDefinition() {
241 assert(Lex.getKind() == lltok::kw_target);
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000242 std::string Str;
Chris Lattnerdf986172009-01-02 07:01:27 +0000243 switch (Lex.Lex()) {
244 default: return TokError("unknown target property");
245 case lltok::kw_triple:
246 Lex.Lex();
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000247 if (ParseToken(lltok::equal, "expected '=' after target triple") ||
248 ParseStringConstant(Str))
Chris Lattnerdf986172009-01-02 07:01:27 +0000249 return true;
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000250 M->setTargetTriple(Str);
Chris Lattnerdf986172009-01-02 07:01:27 +0000251 return false;
252 case lltok::kw_datalayout:
253 Lex.Lex();
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000254 if (ParseToken(lltok::equal, "expected '=' after target datalayout") ||
255 ParseStringConstant(Str))
Chris Lattnerdf986172009-01-02 07:01:27 +0000256 return true;
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000257 M->setDataLayout(Str);
Chris Lattnerdf986172009-01-02 07:01:27 +0000258 return false;
259 }
260}
261
262/// toplevelentity
263/// ::= 'deplibs' '=' '[' ']'
264/// ::= 'deplibs' '=' '[' STRINGCONSTANT (',' STRINGCONSTANT)* ']'
265bool LLParser::ParseDepLibs() {
266 assert(Lex.getKind() == lltok::kw_deplibs);
Chris Lattnerdf986172009-01-02 07:01:27 +0000267 Lex.Lex();
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000268 if (ParseToken(lltok::equal, "expected '=' after deplibs") ||
269 ParseToken(lltok::lsquare, "expected '=' after deplibs"))
270 return true;
271
272 if (EatIfPresent(lltok::rsquare))
273 return false;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000274
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000275 std::string Str;
276 if (ParseStringConstant(Str)) return true;
277 M->addLibrary(Str);
278
279 while (EatIfPresent(lltok::comma)) {
280 if (ParseStringConstant(Str)) return true;
281 M->addLibrary(Str);
282 }
283
284 return ParseToken(lltok::rsquare, "expected ']' at end of list");
Chris Lattnerdf986172009-01-02 07:01:27 +0000285}
286
Dan Gohman3845e502009-08-12 23:32:33 +0000287/// ParseUnnamedType:
Chris Lattnerdf986172009-01-02 07:01:27 +0000288/// ::= 'type' type
Dan Gohman3845e502009-08-12 23:32:33 +0000289/// ::= LocalVarID '=' 'type' type
Chris Lattnerdf986172009-01-02 07:01:27 +0000290bool LLParser::ParseUnnamedType() {
Dan Gohman3845e502009-08-12 23:32:33 +0000291 unsigned TypeID = NumberedTypes.size();
292
293 // Handle the LocalVarID form.
294 if (Lex.getKind() == lltok::LocalVarID) {
295 if (Lex.getUIntVal() != TypeID)
296 return Error(Lex.getLoc(), "type expected to be numbered '%" +
297 utostr(TypeID) + "'");
298 Lex.Lex(); // eat LocalVarID;
299
300 if (ParseToken(lltok::equal, "expected '=' after name"))
301 return true;
302 }
303
Chris Lattnerdf986172009-01-02 07:01:27 +0000304 assert(Lex.getKind() == lltok::kw_type);
305 LocTy TypeLoc = Lex.getLoc();
306 Lex.Lex(); // eat kw_type
307
Owen Anderson1d0be152009-08-13 21:58:54 +0000308 PATypeHolder Ty(Type::getVoidTy(Context));
Chris Lattnerdf986172009-01-02 07:01:27 +0000309 if (ParseType(Ty)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000310
Chris Lattnerdf986172009-01-02 07:01:27 +0000311 // See if this type was previously referenced.
312 std::map<unsigned, std::pair<PATypeHolder, LocTy> >::iterator
313 FI = ForwardRefTypeIDs.find(TypeID);
314 if (FI != ForwardRefTypeIDs.end()) {
Chris Lattnerc38daba2009-01-05 18:19:46 +0000315 if (FI->second.first.get() == Ty)
316 return Error(TypeLoc, "self referential type is invalid");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000317
Chris Lattnerdf986172009-01-02 07:01:27 +0000318 cast<DerivedType>(FI->second.first.get())->refineAbstractTypeTo(Ty);
319 Ty = FI->second.first.get();
320 ForwardRefTypeIDs.erase(FI);
321 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000322
Chris Lattnerdf986172009-01-02 07:01:27 +0000323 NumberedTypes.push_back(Ty);
Daniel Dunbara279bc32009-09-20 02:20:51 +0000324
Chris Lattnerdf986172009-01-02 07:01:27 +0000325 return false;
326}
327
328/// toplevelentity
329/// ::= LocalVar '=' 'type' type
330bool LLParser::ParseNamedType() {
331 std::string Name = Lex.getStrVal();
332 LocTy NameLoc = Lex.getLoc();
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000333 Lex.Lex(); // eat LocalVar.
Daniel Dunbara279bc32009-09-20 02:20:51 +0000334
Owen Anderson1d0be152009-08-13 21:58:54 +0000335 PATypeHolder Ty(Type::getVoidTy(Context));
Daniel Dunbara279bc32009-09-20 02:20:51 +0000336
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000337 if (ParseToken(lltok::equal, "expected '=' after name") ||
338 ParseToken(lltok::kw_type, "expected 'type' after name") ||
339 ParseType(Ty))
340 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000341
Chris Lattnerdf986172009-01-02 07:01:27 +0000342 // Set the type name, checking for conflicts as we do so.
343 bool AlreadyExists = M->addTypeName(Name, Ty);
344 if (!AlreadyExists) return false;
345
346 // See if this type is a forward reference. We need to eagerly resolve
347 // types to allow recursive type redefinitions below.
348 std::map<std::string, std::pair<PATypeHolder, LocTy> >::iterator
349 FI = ForwardRefTypes.find(Name);
350 if (FI != ForwardRefTypes.end()) {
Chris Lattnerc38daba2009-01-05 18:19:46 +0000351 if (FI->second.first.get() == Ty)
352 return Error(NameLoc, "self referential type is invalid");
353
Chris Lattnerdf986172009-01-02 07:01:27 +0000354 cast<DerivedType>(FI->second.first.get())->refineAbstractTypeTo(Ty);
355 Ty = FI->second.first.get();
356 ForwardRefTypes.erase(FI);
357 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000358
Chris Lattnerdf986172009-01-02 07:01:27 +0000359 // Inserting a name that is already defined, get the existing name.
360 const Type *Existing = M->getTypeByName(Name);
361 assert(Existing && "Conflict but no matching type?!");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000362
Chris Lattnerdf986172009-01-02 07:01:27 +0000363 // Otherwise, this is an attempt to redefine a type. That's okay if
364 // the redefinition is identical to the original.
365 // FIXME: REMOVE REDEFINITIONS IN LLVM 3.0
366 if (Existing == Ty) return false;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000367
Chris Lattnerdf986172009-01-02 07:01:27 +0000368 // Any other kind of (non-equivalent) redefinition is an error.
369 return Error(NameLoc, "redefinition of type named '" + Name + "' of type '" +
370 Ty->getDescription() + "'");
371}
372
373
374/// toplevelentity
375/// ::= 'declare' FunctionHeader
376bool LLParser::ParseDeclare() {
377 assert(Lex.getKind() == lltok::kw_declare);
378 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +0000379
Chris Lattnerdf986172009-01-02 07:01:27 +0000380 Function *F;
381 return ParseFunctionHeader(F, false);
382}
383
384/// toplevelentity
385/// ::= 'define' FunctionHeader '{' ...
386bool LLParser::ParseDefine() {
387 assert(Lex.getKind() == lltok::kw_define);
388 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +0000389
Chris Lattnerdf986172009-01-02 07:01:27 +0000390 Function *F;
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000391 return ParseFunctionHeader(F, true) ||
392 ParseFunctionBody(*F);
Chris Lattnerdf986172009-01-02 07:01:27 +0000393}
394
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000395/// ParseGlobalType
396/// ::= 'constant'
397/// ::= 'global'
Chris Lattnerdf986172009-01-02 07:01:27 +0000398bool LLParser::ParseGlobalType(bool &IsConstant) {
399 if (Lex.getKind() == lltok::kw_constant)
400 IsConstant = true;
401 else if (Lex.getKind() == lltok::kw_global)
402 IsConstant = false;
Duncan Sands35b51072009-02-10 16:24:55 +0000403 else {
404 IsConstant = false;
Chris Lattnerdf986172009-01-02 07:01:27 +0000405 return TokError("expected 'global' or 'constant'");
Duncan Sands35b51072009-02-10 16:24:55 +0000406 }
Chris Lattnerdf986172009-01-02 07:01:27 +0000407 Lex.Lex();
408 return false;
409}
410
Dan Gohman3845e502009-08-12 23:32:33 +0000411/// ParseUnnamedGlobal:
412/// OptionalVisibility ALIAS ...
413/// OptionalLinkage OptionalVisibility ... -> global variable
414/// GlobalID '=' OptionalVisibility ALIAS ...
415/// GlobalID '=' OptionalLinkage OptionalVisibility ... -> global variable
416bool LLParser::ParseUnnamedGlobal() {
417 unsigned VarID = NumberedVals.size();
418 std::string Name;
419 LocTy NameLoc = Lex.getLoc();
420
421 // Handle the GlobalID form.
422 if (Lex.getKind() == lltok::GlobalID) {
423 if (Lex.getUIntVal() != VarID)
424 return Error(Lex.getLoc(), "variable expected to be numbered '%" +
425 utostr(VarID) + "'");
426 Lex.Lex(); // eat GlobalID;
427
428 if (ParseToken(lltok::equal, "expected '=' after name"))
429 return true;
430 }
431
432 bool HasLinkage;
433 unsigned Linkage, Visibility;
434 if (ParseOptionalLinkage(Linkage, HasLinkage) ||
435 ParseOptionalVisibility(Visibility))
436 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000437
Dan Gohman3845e502009-08-12 23:32:33 +0000438 if (HasLinkage || Lex.getKind() != lltok::kw_alias)
439 return ParseGlobal(Name, NameLoc, Linkage, HasLinkage, Visibility);
440 return ParseAlias(Name, NameLoc, Visibility);
441}
442
Chris Lattnerdf986172009-01-02 07:01:27 +0000443/// ParseNamedGlobal:
444/// GlobalVar '=' OptionalVisibility ALIAS ...
445/// GlobalVar '=' OptionalLinkage OptionalVisibility ... -> global variable
446bool LLParser::ParseNamedGlobal() {
447 assert(Lex.getKind() == lltok::GlobalVar);
448 LocTy NameLoc = Lex.getLoc();
449 std::string Name = Lex.getStrVal();
450 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +0000451
Chris Lattnerdf986172009-01-02 07:01:27 +0000452 bool HasLinkage;
453 unsigned Linkage, Visibility;
454 if (ParseToken(lltok::equal, "expected '=' in global variable") ||
455 ParseOptionalLinkage(Linkage, HasLinkage) ||
456 ParseOptionalVisibility(Visibility))
457 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000458
Chris Lattnerdf986172009-01-02 07:01:27 +0000459 if (HasLinkage || Lex.getKind() != lltok::kw_alias)
460 return ParseGlobal(Name, NameLoc, Linkage, HasLinkage, Visibility);
461 return ParseAlias(Name, NameLoc, Visibility);
462}
463
Devang Patel256be962009-07-20 19:00:08 +0000464// MDString:
465// ::= '!' STRINGCONSTANT
Chris Lattner442ffa12009-12-29 21:53:55 +0000466bool LLParser::ParseMDString(MDString *&Result) {
Devang Patel256be962009-07-20 19:00:08 +0000467 std::string Str;
468 if (ParseStringConstant(Str)) return true;
Chris Lattner442ffa12009-12-29 21:53:55 +0000469 Result = MDString::get(Context, Str);
Devang Patel256be962009-07-20 19:00:08 +0000470 return false;
471}
472
473// MDNode:
474// ::= '!' MDNodeNumber
Chris Lattner4a72efc2009-12-30 04:15:23 +0000475bool LLParser::ParseMDNodeID(MDNode *&Result) {
Devang Patel256be962009-07-20 19:00:08 +0000476 // !{ ..., !42, ... }
477 unsigned MID = 0;
Chris Lattnere80250e2009-12-29 21:43:58 +0000478 if (ParseUInt32(MID)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000479
Devang Patel256be962009-07-20 19:00:08 +0000480 // Check existing MDNode.
Chris Lattner0834e6a2009-12-30 04:51:58 +0000481 if (MID < NumberedMetadata.size() && NumberedMetadata[MID] != 0) {
482 Result = NumberedMetadata[MID];
Devang Patel256be962009-07-20 19:00:08 +0000483 return false;
484 }
485
Chris Lattner42991ee2009-12-29 22:01:50 +0000486 // Create MDNode forward reference.
487
488 // FIXME: This is not unique enough!
Devang Patel256be962009-07-20 19:00:08 +0000489 std::string FwdRefName = "llvm.mdnode.fwdref." + utostr(MID);
Benjamin Kramerc17300f2009-12-29 22:17:06 +0000490 Value *V = MDString::get(Context, FwdRefName);
Chris Lattner42991ee2009-12-29 22:01:50 +0000491 MDNode *FwdNode = MDNode::get(Context, &V, 1);
Devang Patel256be962009-07-20 19:00:08 +0000492 ForwardRefMDNodes[MID] = std::make_pair(FwdNode, Lex.getLoc());
Chris Lattner0834e6a2009-12-30 04:51:58 +0000493
494 if (NumberedMetadata.size() <= MID)
495 NumberedMetadata.resize(MID+1);
496 NumberedMetadata[MID] = FwdNode;
Chris Lattner442ffa12009-12-29 21:53:55 +0000497 Result = FwdNode;
Devang Patel256be962009-07-20 19:00:08 +0000498 return false;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000499}
Devang Patel256be962009-07-20 19:00:08 +0000500
Chris Lattner84d03b12009-12-29 22:35:39 +0000501/// ParseNamedMetadata:
Devang Pateleff2ab62009-07-29 00:34:02 +0000502/// !foo = !{ !1, !2 }
503bool LLParser::ParseNamedMetadata() {
Chris Lattner1d928312009-12-30 05:02:06 +0000504 assert(Lex.getKind() == lltok::MetadataVar);
Devang Pateleff2ab62009-07-29 00:34:02 +0000505 std::string Name = Lex.getStrVal();
Chris Lattner1d928312009-12-30 05:02:06 +0000506 Lex.Lex();
Devang Pateleff2ab62009-07-29 00:34:02 +0000507
Chris Lattner84d03b12009-12-29 22:35:39 +0000508 if (ParseToken(lltok::equal, "expected '=' here") ||
Chris Lattnere434d272009-12-30 04:56:59 +0000509 ParseToken(lltok::exclaim, "Expected '!' here") ||
Chris Lattner84d03b12009-12-29 22:35:39 +0000510 ParseToken(lltok::lbrace, "Expected '{' here"))
Devang Pateleff2ab62009-07-29 00:34:02 +0000511 return true;
512
Devang Patel3e30c2a2010-01-05 20:41:31 +0000513 SmallVector<MDNode *, 8> Elts;
Devang Pateleff2ab62009-07-29 00:34:02 +0000514 do {
Devang Patel69d02e02010-01-05 21:47:32 +0000515 // Null is a special case since it is typeless.
516 if (EatIfPresent(lltok::kw_null)) {
517 Elts.push_back(0);
518 continue;
519 }
520
Chris Lattnere434d272009-12-30 04:56:59 +0000521 if (ParseToken(lltok::exclaim, "Expected '!' here"))
Chris Lattner42991ee2009-12-29 22:01:50 +0000522 return true;
Chris Lattner442ffa12009-12-29 21:53:55 +0000523
Chris Lattner442ffa12009-12-29 21:53:55 +0000524 MDNode *N = 0;
Chris Lattner4a72efc2009-12-30 04:15:23 +0000525 if (ParseMDNodeID(N)) return true;
Devang Pateleff2ab62009-07-29 00:34:02 +0000526 Elts.push_back(N);
527 } while (EatIfPresent(lltok::comma));
528
529 if (ParseToken(lltok::rbrace, "expected end of metadata node"))
530 return true;
531
Owen Anderson1d0be152009-08-13 21:58:54 +0000532 NamedMDNode::Create(Context, Name, Elts.data(), Elts.size(), M);
Devang Pateleff2ab62009-07-29 00:34:02 +0000533 return false;
534}
535
Devang Patel923078c2009-07-01 19:21:12 +0000536/// ParseStandaloneMetadata:
Daniel Dunbara279bc32009-09-20 02:20:51 +0000537/// !42 = !{...}
Devang Patel923078c2009-07-01 19:21:12 +0000538bool LLParser::ParseStandaloneMetadata() {
Chris Lattnere434d272009-12-30 04:56:59 +0000539 assert(Lex.getKind() == lltok::exclaim);
Devang Patel923078c2009-07-01 19:21:12 +0000540 Lex.Lex();
541 unsigned MetadataID = 0;
Devang Patel923078c2009-07-01 19:21:12 +0000542
543 LocTy TyLoc;
Owen Anderson1d0be152009-08-13 21:58:54 +0000544 PATypeHolder Ty(Type::getVoidTy(Context));
Devang Patel104cf9e2009-07-23 01:07:34 +0000545 SmallVector<Value *, 16> Elts;
Chris Lattner3f5132a2009-12-29 22:40:21 +0000546 if (ParseUInt32(MetadataID) ||
547 ParseToken(lltok::equal, "expected '=' here") ||
548 ParseType(Ty, TyLoc) ||
Chris Lattnere434d272009-12-30 04:56:59 +0000549 ParseToken(lltok::exclaim, "Expected '!' here") ||
Chris Lattner3f5132a2009-12-29 22:40:21 +0000550 ParseToken(lltok::lbrace, "Expected '{' here") ||
Victor Hernandez24e64df2010-01-10 07:14:18 +0000551 ParseMDNodeVector(Elts, NULL) ||
Chris Lattner3f5132a2009-12-29 22:40:21 +0000552 ParseToken(lltok::rbrace, "expected end of metadata node"))
Devang Patel104cf9e2009-07-23 01:07:34 +0000553 return true;
554
Owen Anderson647e3012009-07-31 21:35:40 +0000555 MDNode *Init = MDNode::get(Context, Elts.data(), Elts.size());
Chris Lattner0834e6a2009-12-30 04:51:58 +0000556
557 // See if this was forward referenced, if so, handle it.
Chris Lattnere80250e2009-12-29 21:43:58 +0000558 std::map<unsigned, std::pair<TrackingVH<MDNode>, LocTy> >::iterator
Devang Patel1c7eea62009-07-08 19:23:54 +0000559 FI = ForwardRefMDNodes.find(MetadataID);
560 if (FI != ForwardRefMDNodes.end()) {
Chris Lattnere80250e2009-12-29 21:43:58 +0000561 FI->second.first->replaceAllUsesWith(Init);
Devang Patel1c7eea62009-07-08 19:23:54 +0000562 ForwardRefMDNodes.erase(FI);
Chris Lattner0834e6a2009-12-30 04:51:58 +0000563
564 assert(NumberedMetadata[MetadataID] == Init && "Tracking VH didn't work");
565 } else {
566 if (MetadataID >= NumberedMetadata.size())
567 NumberedMetadata.resize(MetadataID+1);
568
569 if (NumberedMetadata[MetadataID] != 0)
570 return TokError("Metadata id is already used");
571 NumberedMetadata[MetadataID] = Init;
Devang Patel1c7eea62009-07-08 19:23:54 +0000572 }
573
Devang Patel923078c2009-07-01 19:21:12 +0000574 return false;
575}
576
Chris Lattnerdf986172009-01-02 07:01:27 +0000577/// ParseAlias:
578/// ::= GlobalVar '=' OptionalVisibility 'alias' OptionalLinkage Aliasee
579/// Aliasee
Chris Lattner040f7582009-04-25 21:26:00 +0000580/// ::= TypeAndValue
581/// ::= 'bitcast' '(' TypeAndValue 'to' Type ')'
Dan Gohmandd8004d2009-07-27 21:53:46 +0000582/// ::= 'getelementptr' 'inbounds'? '(' ... ')'
Chris Lattnerdf986172009-01-02 07:01:27 +0000583///
584/// Everything through visibility has already been parsed.
585///
586bool LLParser::ParseAlias(const std::string &Name, LocTy NameLoc,
587 unsigned Visibility) {
588 assert(Lex.getKind() == lltok::kw_alias);
589 Lex.Lex();
590 unsigned Linkage;
591 LocTy LinkageLoc = Lex.getLoc();
592 if (ParseOptionalLinkage(Linkage))
593 return true;
594
595 if (Linkage != GlobalValue::ExternalLinkage &&
Duncan Sands667d4b82009-03-07 15:45:40 +0000596 Linkage != GlobalValue::WeakAnyLinkage &&
597 Linkage != GlobalValue::WeakODRLinkage &&
Rafael Espindolabb46f522009-01-15 20:18:42 +0000598 Linkage != GlobalValue::InternalLinkage &&
Bill Wendling3d10a5a2009-07-20 01:03:30 +0000599 Linkage != GlobalValue::PrivateLinkage &&
600 Linkage != GlobalValue::LinkerPrivateLinkage)
Chris Lattnerdf986172009-01-02 07:01:27 +0000601 return Error(LinkageLoc, "invalid linkage type for alias");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000602
Chris Lattnerdf986172009-01-02 07:01:27 +0000603 Constant *Aliasee;
604 LocTy AliaseeLoc = Lex.getLoc();
Chris Lattner040f7582009-04-25 21:26:00 +0000605 if (Lex.getKind() != lltok::kw_bitcast &&
606 Lex.getKind() != lltok::kw_getelementptr) {
Chris Lattnerdf986172009-01-02 07:01:27 +0000607 if (ParseGlobalTypeAndValue(Aliasee)) return true;
608 } else {
609 // The bitcast dest type is not present, it is implied by the dest type.
610 ValID ID;
611 if (ParseValID(ID)) return true;
612 if (ID.Kind != ValID::t_Constant)
613 return Error(AliaseeLoc, "invalid aliasee");
614 Aliasee = ID.ConstantVal;
615 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000616
Duncan Sands1df98592010-02-16 11:11:14 +0000617 if (!Aliasee->getType()->isPointerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +0000618 return Error(AliaseeLoc, "alias must have pointer type");
619
620 // Okay, create the alias but do not insert it into the module yet.
621 GlobalAlias* GA = new GlobalAlias(Aliasee->getType(),
622 (GlobalValue::LinkageTypes)Linkage, Name,
623 Aliasee);
624 GA->setVisibility((GlobalValue::VisibilityTypes)Visibility);
Daniel Dunbara279bc32009-09-20 02:20:51 +0000625
Chris Lattnerdf986172009-01-02 07:01:27 +0000626 // See if this value already exists in the symbol table. If so, it is either
627 // a redefinition or a definition of a forward reference.
Chris Lattner1d871c52009-10-25 23:22:50 +0000628 if (GlobalValue *Val = M->getNamedValue(Name)) {
Chris Lattnerdf986172009-01-02 07:01:27 +0000629 // See if this was a redefinition. If so, there is no entry in
630 // ForwardRefVals.
631 std::map<std::string, std::pair<GlobalValue*, LocTy> >::iterator
632 I = ForwardRefVals.find(Name);
633 if (I == ForwardRefVals.end())
634 return Error(NameLoc, "redefinition of global named '@" + Name + "'");
635
636 // Otherwise, this was a definition of forward ref. Verify that types
637 // agree.
638 if (Val->getType() != GA->getType())
639 return Error(NameLoc,
640 "forward reference and definition of alias have different types");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000641
Chris Lattnerdf986172009-01-02 07:01:27 +0000642 // If they agree, just RAUW the old value with the alias and remove the
643 // forward ref info.
644 Val->replaceAllUsesWith(GA);
645 Val->eraseFromParent();
646 ForwardRefVals.erase(I);
647 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000648
Chris Lattnerdf986172009-01-02 07:01:27 +0000649 // Insert into the module, we know its name won't collide now.
650 M->getAliasList().push_back(GA);
651 assert(GA->getNameStr() == Name && "Should not be a name conflict!");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000652
Chris Lattnerdf986172009-01-02 07:01:27 +0000653 return false;
654}
655
656/// ParseGlobal
657/// ::= GlobalVar '=' OptionalLinkage OptionalVisibility OptionalThreadLocal
658/// OptionalAddrSpace GlobalType Type Const
659/// ::= OptionalLinkage OptionalVisibility OptionalThreadLocal
660/// OptionalAddrSpace GlobalType Type Const
661///
662/// Everything through visibility has been parsed already.
663///
664bool LLParser::ParseGlobal(const std::string &Name, LocTy NameLoc,
665 unsigned Linkage, bool HasLinkage,
666 unsigned Visibility) {
667 unsigned AddrSpace;
668 bool ThreadLocal, IsConstant;
669 LocTy TyLoc;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000670
Owen Anderson1d0be152009-08-13 21:58:54 +0000671 PATypeHolder Ty(Type::getVoidTy(Context));
Chris Lattnerdf986172009-01-02 07:01:27 +0000672 if (ParseOptionalToken(lltok::kw_thread_local, ThreadLocal) ||
673 ParseOptionalAddrSpace(AddrSpace) ||
674 ParseGlobalType(IsConstant) ||
675 ParseType(Ty, TyLoc))
676 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000677
Chris Lattnerdf986172009-01-02 07:01:27 +0000678 // If the linkage is specified and is external, then no initializer is
679 // present.
680 Constant *Init = 0;
681 if (!HasLinkage || (Linkage != GlobalValue::DLLImportLinkage &&
Duncan Sands5f4ee1f2009-03-11 08:08:06 +0000682 Linkage != GlobalValue::ExternalWeakLinkage &&
Chris Lattnerdf986172009-01-02 07:01:27 +0000683 Linkage != GlobalValue::ExternalLinkage)) {
684 if (ParseGlobalValue(Ty, Init))
685 return true;
686 }
687
Duncan Sands1df98592010-02-16 11:11:14 +0000688 if (Ty->isFunctionTy() || Ty->isLabelTy())
Chris Lattner4a2f1122009-02-08 20:00:15 +0000689 return Error(TyLoc, "invalid type for global variable");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000690
Chris Lattnerdf986172009-01-02 07:01:27 +0000691 GlobalVariable *GV = 0;
692
693 // See if the global was forward referenced, if so, use the global.
Chris Lattner91dad872009-02-02 07:24:28 +0000694 if (!Name.empty()) {
Chris Lattner1d871c52009-10-25 23:22:50 +0000695 if (GlobalValue *GVal = M->getNamedValue(Name)) {
696 if (!ForwardRefVals.erase(Name) || !isa<GlobalValue>(GVal))
697 return Error(NameLoc, "redefinition of global '@" + Name + "'");
698 GV = cast<GlobalVariable>(GVal);
699 }
Chris Lattnerdf986172009-01-02 07:01:27 +0000700 } else {
701 std::map<unsigned, std::pair<GlobalValue*, LocTy> >::iterator
702 I = ForwardRefValIDs.find(NumberedVals.size());
703 if (I != ForwardRefValIDs.end()) {
704 GV = cast<GlobalVariable>(I->second.first);
705 ForwardRefValIDs.erase(I);
706 }
707 }
708
709 if (GV == 0) {
Daniel Dunbara279bc32009-09-20 02:20:51 +0000710 GV = new GlobalVariable(*M, Ty, false, GlobalValue::ExternalLinkage, 0,
Owen Andersone9b11b42009-07-08 19:03:57 +0000711 Name, 0, false, AddrSpace);
Chris Lattnerdf986172009-01-02 07:01:27 +0000712 } else {
713 if (GV->getType()->getElementType() != Ty)
714 return Error(TyLoc,
715 "forward reference and definition of global have different types");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000716
Chris Lattnerdf986172009-01-02 07:01:27 +0000717 // Move the forward-reference to the correct spot in the module.
718 M->getGlobalList().splice(M->global_end(), M->getGlobalList(), GV);
719 }
720
721 if (Name.empty())
722 NumberedVals.push_back(GV);
Daniel Dunbara279bc32009-09-20 02:20:51 +0000723
Chris Lattnerdf986172009-01-02 07:01:27 +0000724 // Set the parsed properties on the global.
725 if (Init)
726 GV->setInitializer(Init);
727 GV->setConstant(IsConstant);
728 GV->setLinkage((GlobalValue::LinkageTypes)Linkage);
729 GV->setVisibility((GlobalValue::VisibilityTypes)Visibility);
730 GV->setThreadLocal(ThreadLocal);
Daniel Dunbara279bc32009-09-20 02:20:51 +0000731
Chris Lattnerdf986172009-01-02 07:01:27 +0000732 // Parse attributes on the global.
733 while (Lex.getKind() == lltok::comma) {
734 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +0000735
Chris Lattnerdf986172009-01-02 07:01:27 +0000736 if (Lex.getKind() == lltok::kw_section) {
737 Lex.Lex();
738 GV->setSection(Lex.getStrVal());
739 if (ParseToken(lltok::StringConstant, "expected global section string"))
740 return true;
741 } else if (Lex.getKind() == lltok::kw_align) {
742 unsigned Alignment;
743 if (ParseOptionalAlignment(Alignment)) return true;
744 GV->setAlignment(Alignment);
745 } else {
746 TokError("unknown global variable property!");
747 }
748 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000749
Chris Lattnerdf986172009-01-02 07:01:27 +0000750 return false;
751}
752
753
754//===----------------------------------------------------------------------===//
755// GlobalValue Reference/Resolution Routines.
756//===----------------------------------------------------------------------===//
757
758/// GetGlobalVal - Get a value with the specified name or ID, creating a
759/// forward reference record if needed. This can return null if the value
760/// exists but does not have the right type.
761GlobalValue *LLParser::GetGlobalVal(const std::string &Name, const Type *Ty,
762 LocTy Loc) {
763 const PointerType *PTy = dyn_cast<PointerType>(Ty);
764 if (PTy == 0) {
765 Error(Loc, "global variable reference must have pointer type");
766 return 0;
767 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000768
Chris Lattnerdf986172009-01-02 07:01:27 +0000769 // Look this name up in the normal function symbol table.
770 GlobalValue *Val =
771 cast_or_null<GlobalValue>(M->getValueSymbolTable().lookup(Name));
Daniel Dunbara279bc32009-09-20 02:20:51 +0000772
Chris Lattnerdf986172009-01-02 07:01:27 +0000773 // If this is a forward reference for the value, see if we already created a
774 // forward ref record.
775 if (Val == 0) {
776 std::map<std::string, std::pair<GlobalValue*, LocTy> >::iterator
777 I = ForwardRefVals.find(Name);
778 if (I != ForwardRefVals.end())
779 Val = I->second.first;
780 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000781
Chris Lattnerdf986172009-01-02 07:01:27 +0000782 // If we have the value in the symbol table or fwd-ref table, return it.
783 if (Val) {
784 if (Val->getType() == Ty) return Val;
785 Error(Loc, "'@" + Name + "' defined with type '" +
786 Val->getType()->getDescription() + "'");
787 return 0;
788 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000789
Chris Lattnerdf986172009-01-02 07:01:27 +0000790 // Otherwise, create a new forward reference for this value and remember it.
791 GlobalValue *FwdVal;
Chris Lattner1e407c32009-01-08 19:05:36 +0000792 if (const FunctionType *FT = dyn_cast<FunctionType>(PTy->getElementType())) {
793 // Function types can return opaque but functions can't.
Duncan Sands47c51882010-02-16 14:50:09 +0000794 if (FT->getReturnType()->isOpaqueTy()) {
Chris Lattner1e407c32009-01-08 19:05:36 +0000795 Error(Loc, "function may not return opaque type");
796 return 0;
797 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000798
Duncan Sands5f4ee1f2009-03-11 08:08:06 +0000799 FwdVal = Function::Create(FT, GlobalValue::ExternalWeakLinkage, Name, M);
Chris Lattner1e407c32009-01-08 19:05:36 +0000800 } else {
Owen Andersone9b11b42009-07-08 19:03:57 +0000801 FwdVal = new GlobalVariable(*M, PTy->getElementType(), false,
802 GlobalValue::ExternalWeakLinkage, 0, Name);
Chris Lattner1e407c32009-01-08 19:05:36 +0000803 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000804
Chris Lattnerdf986172009-01-02 07:01:27 +0000805 ForwardRefVals[Name] = std::make_pair(FwdVal, Loc);
806 return FwdVal;
807}
808
809GlobalValue *LLParser::GetGlobalVal(unsigned ID, const Type *Ty, LocTy Loc) {
810 const PointerType *PTy = dyn_cast<PointerType>(Ty);
811 if (PTy == 0) {
812 Error(Loc, "global variable reference must have pointer type");
813 return 0;
814 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000815
Chris Lattnerdf986172009-01-02 07:01:27 +0000816 GlobalValue *Val = ID < NumberedVals.size() ? NumberedVals[ID] : 0;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000817
Chris Lattnerdf986172009-01-02 07:01:27 +0000818 // If this is a forward reference for the value, see if we already created a
819 // forward ref record.
820 if (Val == 0) {
821 std::map<unsigned, std::pair<GlobalValue*, LocTy> >::iterator
822 I = ForwardRefValIDs.find(ID);
823 if (I != ForwardRefValIDs.end())
824 Val = I->second.first;
825 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000826
Chris Lattnerdf986172009-01-02 07:01:27 +0000827 // If we have the value in the symbol table or fwd-ref table, return it.
828 if (Val) {
829 if (Val->getType() == Ty) return Val;
830 Error(Loc, "'@" + utostr(ID) + "' defined with type '" +
831 Val->getType()->getDescription() + "'");
832 return 0;
833 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000834
Chris Lattnerdf986172009-01-02 07:01:27 +0000835 // Otherwise, create a new forward reference for this value and remember it.
836 GlobalValue *FwdVal;
Chris Lattner830703b2009-01-05 18:27:50 +0000837 if (const FunctionType *FT = dyn_cast<FunctionType>(PTy->getElementType())) {
838 // Function types can return opaque but functions can't.
Duncan Sands47c51882010-02-16 14:50:09 +0000839 if (FT->getReturnType()->isOpaqueTy()) {
Chris Lattner0d8484f2009-01-05 18:56:52 +0000840 Error(Loc, "function may not return opaque type");
Chris Lattner830703b2009-01-05 18:27:50 +0000841 return 0;
842 }
Duncan Sands5f4ee1f2009-03-11 08:08:06 +0000843 FwdVal = Function::Create(FT, GlobalValue::ExternalWeakLinkage, "", M);
Chris Lattner830703b2009-01-05 18:27:50 +0000844 } else {
Owen Andersone9b11b42009-07-08 19:03:57 +0000845 FwdVal = new GlobalVariable(*M, PTy->getElementType(), false,
846 GlobalValue::ExternalWeakLinkage, 0, "");
Chris Lattner830703b2009-01-05 18:27:50 +0000847 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000848
Chris Lattnerdf986172009-01-02 07:01:27 +0000849 ForwardRefValIDs[ID] = std::make_pair(FwdVal, Loc);
850 return FwdVal;
851}
852
853
854//===----------------------------------------------------------------------===//
855// Helper Routines.
856//===----------------------------------------------------------------------===//
857
858/// ParseToken - If the current token has the specified kind, eat it and return
859/// success. Otherwise, emit the specified error and return failure.
860bool LLParser::ParseToken(lltok::Kind T, const char *ErrMsg) {
861 if (Lex.getKind() != T)
862 return TokError(ErrMsg);
863 Lex.Lex();
864 return false;
865}
866
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000867/// ParseStringConstant
868/// ::= StringConstant
869bool LLParser::ParseStringConstant(std::string &Result) {
870 if (Lex.getKind() != lltok::StringConstant)
871 return TokError("expected string constant");
872 Result = Lex.getStrVal();
873 Lex.Lex();
874 return false;
875}
876
877/// ParseUInt32
878/// ::= uint32
879bool LLParser::ParseUInt32(unsigned &Val) {
Chris Lattnerdf986172009-01-02 07:01:27 +0000880 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned())
881 return TokError("expected integer");
882 uint64_t Val64 = Lex.getAPSIntVal().getLimitedValue(0xFFFFFFFFULL+1);
883 if (Val64 != unsigned(Val64))
884 return TokError("expected 32-bit integer (too large)");
885 Val = Val64;
886 Lex.Lex();
887 return false;
888}
889
890
891/// ParseOptionalAddrSpace
892/// := /*empty*/
893/// := 'addrspace' '(' uint32 ')'
894bool LLParser::ParseOptionalAddrSpace(unsigned &AddrSpace) {
895 AddrSpace = 0;
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000896 if (!EatIfPresent(lltok::kw_addrspace))
Chris Lattnerdf986172009-01-02 07:01:27 +0000897 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +0000898 return ParseToken(lltok::lparen, "expected '(' in address space") ||
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000899 ParseUInt32(AddrSpace) ||
Chris Lattnerdf986172009-01-02 07:01:27 +0000900 ParseToken(lltok::rparen, "expected ')' in address space");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000901}
Chris Lattnerdf986172009-01-02 07:01:27 +0000902
903/// ParseOptionalAttrs - Parse a potentially empty attribute list. AttrKind
904/// indicates what kind of attribute list this is: 0: function arg, 1: result,
905/// 2: function attr.
Chris Lattnerad9ad7c2009-03-25 06:36:36 +0000906/// 3: function arg after value: FIXME: REMOVE IN LLVM 3.0
Chris Lattnerdf986172009-01-02 07:01:27 +0000907bool LLParser::ParseOptionalAttrs(unsigned &Attrs, unsigned AttrKind) {
908 Attrs = Attribute::None;
909 LocTy AttrLoc = Lex.getLoc();
Daniel Dunbara279bc32009-09-20 02:20:51 +0000910
Chris Lattnerdf986172009-01-02 07:01:27 +0000911 while (1) {
912 switch (Lex.getKind()) {
913 case lltok::kw_sext:
914 case lltok::kw_zext:
Chris Lattnerad9ad7c2009-03-25 06:36:36 +0000915 // Treat these as signext/zeroext if they occur in the argument list after
916 // the value, as in "call i8 @foo(i8 10 sext)". If they occur before the
917 // value, as in "call i8 @foo(i8 sext (" then it is part of a constant
918 // expr.
Chris Lattnerdf986172009-01-02 07:01:27 +0000919 // FIXME: REMOVE THIS IN LLVM 3.0
Chris Lattnerad9ad7c2009-03-25 06:36:36 +0000920 if (AttrKind == 3) {
Chris Lattnerdf986172009-01-02 07:01:27 +0000921 if (Lex.getKind() == lltok::kw_sext)
922 Attrs |= Attribute::SExt;
923 else
924 Attrs |= Attribute::ZExt;
925 break;
926 }
927 // FALL THROUGH.
928 default: // End of attributes.
929 if (AttrKind != 2 && (Attrs & Attribute::FunctionOnly))
930 return Error(AttrLoc, "invalid use of function-only attribute");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000931
Chris Lattnerad9ad7c2009-03-25 06:36:36 +0000932 if (AttrKind != 0 && AttrKind != 3 && (Attrs & Attribute::ParameterOnly))
Chris Lattnerdf986172009-01-02 07:01:27 +0000933 return Error(AttrLoc, "invalid use of parameter-only attribute");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000934
Chris Lattnerdf986172009-01-02 07:01:27 +0000935 return false;
Devang Patel578efa92009-06-05 21:57:13 +0000936 case lltok::kw_zeroext: Attrs |= Attribute::ZExt; break;
937 case lltok::kw_signext: Attrs |= Attribute::SExt; break;
938 case lltok::kw_inreg: Attrs |= Attribute::InReg; break;
939 case lltok::kw_sret: Attrs |= Attribute::StructRet; break;
940 case lltok::kw_noalias: Attrs |= Attribute::NoAlias; break;
941 case lltok::kw_nocapture: Attrs |= Attribute::NoCapture; break;
942 case lltok::kw_byval: Attrs |= Attribute::ByVal; break;
943 case lltok::kw_nest: Attrs |= Attribute::Nest; break;
Chris Lattnerdf986172009-01-02 07:01:27 +0000944
Devang Patel578efa92009-06-05 21:57:13 +0000945 case lltok::kw_noreturn: Attrs |= Attribute::NoReturn; break;
946 case lltok::kw_nounwind: Attrs |= Attribute::NoUnwind; break;
947 case lltok::kw_noinline: Attrs |= Attribute::NoInline; break;
948 case lltok::kw_readnone: Attrs |= Attribute::ReadNone; break;
949 case lltok::kw_readonly: Attrs |= Attribute::ReadOnly; break;
Jakob Stoklund Olesen570a4a52010-02-06 01:16:28 +0000950 case lltok::kw_inlinehint: Attrs |= Attribute::InlineHint; break;
Devang Patel578efa92009-06-05 21:57:13 +0000951 case lltok::kw_alwaysinline: Attrs |= Attribute::AlwaysInline; break;
952 case lltok::kw_optsize: Attrs |= Attribute::OptimizeForSize; break;
953 case lltok::kw_ssp: Attrs |= Attribute::StackProtect; break;
954 case lltok::kw_sspreq: Attrs |= Attribute::StackProtectReq; break;
955 case lltok::kw_noredzone: Attrs |= Attribute::NoRedZone; break;
956 case lltok::kw_noimplicitfloat: Attrs |= Attribute::NoImplicitFloat; break;
Anton Korobeynikovc5ec8a72009-07-17 18:07:26 +0000957 case lltok::kw_naked: Attrs |= Attribute::Naked; break;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000958
Charles Davis1e063d12010-02-12 00:31:15 +0000959 case lltok::kw_alignstack: {
960 unsigned Alignment;
961 if (ParseOptionalStackAlignment(Alignment))
962 return true;
963 Attrs |= Attribute::constructStackAlignmentFromInt(Alignment);
964 continue;
965 }
966
Chris Lattnerdf986172009-01-02 07:01:27 +0000967 case lltok::kw_align: {
968 unsigned Alignment;
969 if (ParseOptionalAlignment(Alignment))
970 return true;
971 Attrs |= Attribute::constructAlignmentFromInt(Alignment);
972 continue;
973 }
Charles Davis1e063d12010-02-12 00:31:15 +0000974
Chris Lattnerdf986172009-01-02 07:01:27 +0000975 }
976 Lex.Lex();
977 }
978}
979
980/// ParseOptionalLinkage
981/// ::= /*empty*/
Rafael Espindolabb46f522009-01-15 20:18:42 +0000982/// ::= 'private'
Bill Wendling3d10a5a2009-07-20 01:03:30 +0000983/// ::= 'linker_private'
Chris Lattnerdf986172009-01-02 07:01:27 +0000984/// ::= 'internal'
985/// ::= 'weak'
Duncan Sands667d4b82009-03-07 15:45:40 +0000986/// ::= 'weak_odr'
Chris Lattnerdf986172009-01-02 07:01:27 +0000987/// ::= 'linkonce'
Duncan Sands667d4b82009-03-07 15:45:40 +0000988/// ::= 'linkonce_odr'
Chris Lattnerdf986172009-01-02 07:01:27 +0000989/// ::= 'appending'
990/// ::= 'dllexport'
991/// ::= 'common'
992/// ::= 'dllimport'
993/// ::= 'extern_weak'
994/// ::= 'external'
995bool LLParser::ParseOptionalLinkage(unsigned &Res, bool &HasLinkage) {
996 HasLinkage = false;
997 switch (Lex.getKind()) {
Bill Wendling3d10a5a2009-07-20 01:03:30 +0000998 default: Res=GlobalValue::ExternalLinkage; return false;
999 case lltok::kw_private: Res = GlobalValue::PrivateLinkage; break;
1000 case lltok::kw_linker_private: Res = GlobalValue::LinkerPrivateLinkage; break;
1001 case lltok::kw_internal: Res = GlobalValue::InternalLinkage; break;
1002 case lltok::kw_weak: Res = GlobalValue::WeakAnyLinkage; break;
1003 case lltok::kw_weak_odr: Res = GlobalValue::WeakODRLinkage; break;
1004 case lltok::kw_linkonce: Res = GlobalValue::LinkOnceAnyLinkage; break;
1005 case lltok::kw_linkonce_odr: Res = GlobalValue::LinkOnceODRLinkage; break;
Chris Lattner266c7bb2009-04-13 05:44:34 +00001006 case lltok::kw_available_externally:
1007 Res = GlobalValue::AvailableExternallyLinkage;
1008 break;
Bill Wendling3d10a5a2009-07-20 01:03:30 +00001009 case lltok::kw_appending: Res = GlobalValue::AppendingLinkage; break;
1010 case lltok::kw_dllexport: Res = GlobalValue::DLLExportLinkage; break;
1011 case lltok::kw_common: Res = GlobalValue::CommonLinkage; break;
1012 case lltok::kw_dllimport: Res = GlobalValue::DLLImportLinkage; break;
1013 case lltok::kw_extern_weak: Res = GlobalValue::ExternalWeakLinkage; break;
1014 case lltok::kw_external: Res = GlobalValue::ExternalLinkage; break;
Chris Lattnerdf986172009-01-02 07:01:27 +00001015 }
1016 Lex.Lex();
1017 HasLinkage = true;
1018 return false;
1019}
1020
1021/// ParseOptionalVisibility
1022/// ::= /*empty*/
1023/// ::= 'default'
1024/// ::= 'hidden'
1025/// ::= 'protected'
Daniel Dunbara279bc32009-09-20 02:20:51 +00001026///
Chris Lattnerdf986172009-01-02 07:01:27 +00001027bool LLParser::ParseOptionalVisibility(unsigned &Res) {
1028 switch (Lex.getKind()) {
1029 default: Res = GlobalValue::DefaultVisibility; return false;
1030 case lltok::kw_default: Res = GlobalValue::DefaultVisibility; break;
1031 case lltok::kw_hidden: Res = GlobalValue::HiddenVisibility; break;
1032 case lltok::kw_protected: Res = GlobalValue::ProtectedVisibility; break;
1033 }
1034 Lex.Lex();
1035 return false;
1036}
1037
1038/// ParseOptionalCallingConv
1039/// ::= /*empty*/
1040/// ::= 'ccc'
1041/// ::= 'fastcc'
1042/// ::= 'coldcc'
1043/// ::= 'x86_stdcallcc'
1044/// ::= 'x86_fastcallcc'
Anton Korobeynikov385f5a92009-06-16 18:50:49 +00001045/// ::= 'arm_apcscc'
1046/// ::= 'arm_aapcscc'
1047/// ::= 'arm_aapcs_vfpcc'
Anton Korobeynikov211a14e2009-12-07 02:27:35 +00001048/// ::= 'msp430_intrcc'
Chris Lattnerdf986172009-01-02 07:01:27 +00001049/// ::= 'cc' UINT
Anton Korobeynikov385f5a92009-06-16 18:50:49 +00001050///
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001051bool LLParser::ParseOptionalCallingConv(CallingConv::ID &CC) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001052 switch (Lex.getKind()) {
1053 default: CC = CallingConv::C; return false;
1054 case lltok::kw_ccc: CC = CallingConv::C; break;
1055 case lltok::kw_fastcc: CC = CallingConv::Fast; break;
1056 case lltok::kw_coldcc: CC = CallingConv::Cold; break;
1057 case lltok::kw_x86_stdcallcc: CC = CallingConv::X86_StdCall; break;
1058 case lltok::kw_x86_fastcallcc: CC = CallingConv::X86_FastCall; break;
Anton Korobeynikov385f5a92009-06-16 18:50:49 +00001059 case lltok::kw_arm_apcscc: CC = CallingConv::ARM_APCS; break;
1060 case lltok::kw_arm_aapcscc: CC = CallingConv::ARM_AAPCS; break;
1061 case lltok::kw_arm_aapcs_vfpcc:CC = CallingConv::ARM_AAPCS_VFP; break;
Anton Korobeynikov211a14e2009-12-07 02:27:35 +00001062 case lltok::kw_msp430_intrcc: CC = CallingConv::MSP430_INTR; break;
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001063 case lltok::kw_cc: {
1064 unsigned ArbitraryCC;
1065 Lex.Lex();
1066 if (ParseUInt32(ArbitraryCC)) {
1067 return true;
1068 } else
1069 CC = static_cast<CallingConv::ID>(ArbitraryCC);
1070 return false;
1071 }
1072 break;
Chris Lattnerdf986172009-01-02 07:01:27 +00001073 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001074
Chris Lattnerdf986172009-01-02 07:01:27 +00001075 Lex.Lex();
1076 return false;
1077}
1078
Chris Lattnerb8c46862009-12-30 05:31:19 +00001079/// ParseInstructionMetadata
Chris Lattner3f3a0f62009-12-29 21:25:40 +00001080/// ::= !dbg !42 (',' !dbg !57)*
Chris Lattnerfe805242010-04-01 04:51:13 +00001081bool LLParser::ParseInstructionMetadata(Instruction *Inst) {
Chris Lattnerb8c46862009-12-30 05:31:19 +00001082 do {
1083 if (Lex.getKind() != lltok::MetadataVar)
1084 return TokError("expected metadata after comma");
Devang Patel0475c912009-09-29 00:01:14 +00001085
Chris Lattner3f3a0f62009-12-29 21:25:40 +00001086 std::string Name = Lex.getStrVal();
1087 Lex.Lex();
Chris Lattner52e20312009-10-19 05:31:10 +00001088
Chris Lattner442ffa12009-12-29 21:53:55 +00001089 MDNode *Node;
Chris Lattnere434d272009-12-30 04:56:59 +00001090 if (ParseToken(lltok::exclaim, "expected '!' here") ||
1091 ParseMDNodeID(Node))
1092 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001093
Chris Lattner3f3a0f62009-12-29 21:25:40 +00001094 unsigned MDK = M->getMDKindID(Name.c_str());
Chris Lattnerfe805242010-04-01 04:51:13 +00001095 Inst->setMetadata(MDK, Node);
Chris Lattner3f3a0f62009-12-29 21:25:40 +00001096
1097 // If this is the end of the list, we're done.
Chris Lattnerb8c46862009-12-30 05:31:19 +00001098 } while (EatIfPresent(lltok::comma));
1099 return false;
Devang Patelf633a062009-09-17 23:04:48 +00001100}
1101
Chris Lattnerdf986172009-01-02 07:01:27 +00001102/// ParseOptionalAlignment
1103/// ::= /* empty */
1104/// ::= 'align' 4
1105bool LLParser::ParseOptionalAlignment(unsigned &Alignment) {
1106 Alignment = 0;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001107 if (!EatIfPresent(lltok::kw_align))
1108 return false;
Chris Lattner3fbb3ab2009-01-05 07:46:05 +00001109 LocTy AlignLoc = Lex.getLoc();
1110 if (ParseUInt32(Alignment)) return true;
1111 if (!isPowerOf2_32(Alignment))
1112 return Error(AlignLoc, "alignment is not a power of two");
1113 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00001114}
1115
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00001116/// ParseOptionalCommaAlign
1117/// ::=
1118/// ::= ',' align 4
1119///
1120/// This returns with AteExtraComma set to true if it ate an excess comma at the
1121/// end.
1122bool LLParser::ParseOptionalCommaAlign(unsigned &Alignment,
1123 bool &AteExtraComma) {
1124 AteExtraComma = false;
1125 while (EatIfPresent(lltok::comma)) {
1126 // Metadata at the end is an early exit.
Chris Lattner1d928312009-12-30 05:02:06 +00001127 if (Lex.getKind() == lltok::MetadataVar) {
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00001128 AteExtraComma = true;
1129 return false;
1130 }
1131
1132 if (Lex.getKind() == lltok::kw_align) {
Devang Patelf633a062009-09-17 23:04:48 +00001133 if (ParseOptionalAlignment(Alignment)) return true;
1134 } else
1135 return true;
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00001136 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001137
Devang Patelf633a062009-09-17 23:04:48 +00001138 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00001139}
1140
Charles Davis1e063d12010-02-12 00:31:15 +00001141/// ParseOptionalStackAlignment
1142/// ::= /* empty */
1143/// ::= 'alignstack' '(' 4 ')'
1144bool LLParser::ParseOptionalStackAlignment(unsigned &Alignment) {
1145 Alignment = 0;
1146 if (!EatIfPresent(lltok::kw_alignstack))
1147 return false;
1148 LocTy ParenLoc = Lex.getLoc();
1149 if (!EatIfPresent(lltok::lparen))
1150 return Error(ParenLoc, "expected '('");
1151 LocTy AlignLoc = Lex.getLoc();
1152 if (ParseUInt32(Alignment)) return true;
1153 ParenLoc = Lex.getLoc();
1154 if (!EatIfPresent(lltok::rparen))
1155 return Error(ParenLoc, "expected ')'");
1156 if (!isPowerOf2_32(Alignment))
1157 return Error(AlignLoc, "stack alignment is not a power of two");
1158 return false;
1159}
Devang Patelf633a062009-09-17 23:04:48 +00001160
Chris Lattner628c13a2009-12-30 05:14:00 +00001161/// ParseIndexList - This parses the index list for an insert/extractvalue
1162/// instruction. This sets AteExtraComma in the case where we eat an extra
1163/// comma at the end of the line and find that it is followed by metadata.
1164/// Clients that don't allow metadata can call the version of this function that
1165/// only takes one argument.
1166///
Chris Lattnerdf986172009-01-02 07:01:27 +00001167/// ParseIndexList
1168/// ::= (',' uint32)+
Chris Lattner628c13a2009-12-30 05:14:00 +00001169///
1170bool LLParser::ParseIndexList(SmallVectorImpl<unsigned> &Indices,
1171 bool &AteExtraComma) {
1172 AteExtraComma = false;
1173
Chris Lattnerdf986172009-01-02 07:01:27 +00001174 if (Lex.getKind() != lltok::comma)
1175 return TokError("expected ',' as start of index list");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001176
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001177 while (EatIfPresent(lltok::comma)) {
Chris Lattner628c13a2009-12-30 05:14:00 +00001178 if (Lex.getKind() == lltok::MetadataVar) {
1179 AteExtraComma = true;
1180 return false;
1181 }
Chris Lattnerdf986172009-01-02 07:01:27 +00001182 unsigned Idx;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001183 if (ParseUInt32(Idx)) return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00001184 Indices.push_back(Idx);
1185 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001186
Chris Lattnerdf986172009-01-02 07:01:27 +00001187 return false;
1188}
1189
1190//===----------------------------------------------------------------------===//
1191// Type Parsing.
1192//===----------------------------------------------------------------------===//
1193
1194/// ParseType - Parse and resolve a full type.
Chris Lattnera9a9e072009-03-09 04:49:14 +00001195bool LLParser::ParseType(PATypeHolder &Result, bool AllowVoid) {
1196 LocTy TypeLoc = Lex.getLoc();
Chris Lattnerdf986172009-01-02 07:01:27 +00001197 if (ParseTypeRec(Result)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001198
Chris Lattnerdf986172009-01-02 07:01:27 +00001199 // Verify no unresolved uprefs.
1200 if (!UpRefs.empty())
1201 return Error(UpRefs.back().Loc, "invalid unresolved type up reference");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001202
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001203 if (!AllowVoid && Result.get()->isVoidTy())
Chris Lattnera9a9e072009-03-09 04:49:14 +00001204 return Error(TypeLoc, "void type only allowed for function results");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001205
Chris Lattnerdf986172009-01-02 07:01:27 +00001206 return false;
1207}
1208
1209/// HandleUpRefs - Every time we finish a new layer of types, this function is
1210/// called. It loops through the UpRefs vector, which is a list of the
1211/// currently active types. For each type, if the up-reference is contained in
1212/// the newly completed type, we decrement the level count. When the level
1213/// count reaches zero, the up-referenced type is the type that is passed in:
1214/// thus we can complete the cycle.
1215///
1216PATypeHolder LLParser::HandleUpRefs(const Type *ty) {
1217 // If Ty isn't abstract, or if there are no up-references in it, then there is
1218 // nothing to resolve here.
1219 if (!ty->isAbstract() || UpRefs.empty()) return ty;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001220
Chris Lattnerdf986172009-01-02 07:01:27 +00001221 PATypeHolder Ty(ty);
1222#if 0
David Greene0e28d762009-12-23 23:38:28 +00001223 dbgs() << "Type '" << Ty->getDescription()
Chris Lattnerdf986172009-01-02 07:01:27 +00001224 << "' newly formed. Resolving upreferences.\n"
1225 << UpRefs.size() << " upreferences active!\n";
1226#endif
Daniel Dunbara279bc32009-09-20 02:20:51 +00001227
Chris Lattnerdf986172009-01-02 07:01:27 +00001228 // If we find any resolvable upreferences (i.e., those whose NestingLevel goes
1229 // to zero), we resolve them all together before we resolve them to Ty. At
1230 // the end of the loop, if there is anything to resolve to Ty, it will be in
1231 // this variable.
1232 OpaqueType *TypeToResolve = 0;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001233
Chris Lattnerdf986172009-01-02 07:01:27 +00001234 for (unsigned i = 0; i != UpRefs.size(); ++i) {
1235 // Determine if 'Ty' directly contains this up-references 'LastContainedTy'.
1236 bool ContainsType =
1237 std::find(Ty->subtype_begin(), Ty->subtype_end(),
1238 UpRefs[i].LastContainedTy) != Ty->subtype_end();
Daniel Dunbara279bc32009-09-20 02:20:51 +00001239
Chris Lattnerdf986172009-01-02 07:01:27 +00001240#if 0
David Greene0e28d762009-12-23 23:38:28 +00001241 dbgs() << " UR#" << i << " - TypeContains(" << Ty->getDescription() << ", "
Chris Lattnerdf986172009-01-02 07:01:27 +00001242 << UpRefs[i].LastContainedTy->getDescription() << ") = "
1243 << (ContainsType ? "true" : "false")
1244 << " level=" << UpRefs[i].NestingLevel << "\n";
1245#endif
1246 if (!ContainsType)
1247 continue;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001248
Chris Lattnerdf986172009-01-02 07:01:27 +00001249 // Decrement level of upreference
1250 unsigned Level = --UpRefs[i].NestingLevel;
1251 UpRefs[i].LastContainedTy = Ty;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001252
Chris Lattnerdf986172009-01-02 07:01:27 +00001253 // If the Up-reference has a non-zero level, it shouldn't be resolved yet.
1254 if (Level != 0)
1255 continue;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001256
Chris Lattnerdf986172009-01-02 07:01:27 +00001257#if 0
David Greene0e28d762009-12-23 23:38:28 +00001258 dbgs() << " * Resolving upreference for " << UpRefs[i].UpRefTy << "\n";
Chris Lattnerdf986172009-01-02 07:01:27 +00001259#endif
1260 if (!TypeToResolve)
1261 TypeToResolve = UpRefs[i].UpRefTy;
1262 else
1263 UpRefs[i].UpRefTy->refineAbstractTypeTo(TypeToResolve);
1264 UpRefs.erase(UpRefs.begin()+i); // Remove from upreference list.
1265 --i; // Do not skip the next element.
1266 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001267
Chris Lattnerdf986172009-01-02 07:01:27 +00001268 if (TypeToResolve)
1269 TypeToResolve->refineAbstractTypeTo(Ty);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001270
Chris Lattnerdf986172009-01-02 07:01:27 +00001271 return Ty;
1272}
1273
1274
1275/// ParseTypeRec - The recursive function used to process the internal
1276/// implementation details of types.
1277bool LLParser::ParseTypeRec(PATypeHolder &Result) {
1278 switch (Lex.getKind()) {
1279 default:
1280 return TokError("expected type");
1281 case lltok::Type:
1282 // TypeRec ::= 'float' | 'void' (etc)
1283 Result = Lex.getTyVal();
Daniel Dunbara279bc32009-09-20 02:20:51 +00001284 Lex.Lex();
Chris Lattnerdf986172009-01-02 07:01:27 +00001285 break;
1286 case lltok::kw_opaque:
1287 // TypeRec ::= 'opaque'
Owen Anderson0e275dc2009-08-13 23:27:32 +00001288 Result = OpaqueType::get(Context);
Chris Lattnerdf986172009-01-02 07:01:27 +00001289 Lex.Lex();
1290 break;
1291 case lltok::lbrace:
1292 // TypeRec ::= '{' ... '}'
1293 if (ParseStructType(Result, false))
1294 return true;
1295 break;
Chris Lattnerfdfeb692010-02-12 20:49:41 +00001296 case lltok::kw_union:
1297 // TypeRec ::= 'union' '{' ... '}'
1298 if (ParseUnionType(Result))
1299 return true;
1300 break;
Chris Lattnerdf986172009-01-02 07:01:27 +00001301 case lltok::lsquare:
1302 // TypeRec ::= '[' ... ']'
1303 Lex.Lex(); // eat the lsquare.
1304 if (ParseArrayVectorType(Result, false))
1305 return true;
1306 break;
1307 case lltok::less: // Either vector or packed struct.
1308 // TypeRec ::= '<' ... '>'
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001309 Lex.Lex();
1310 if (Lex.getKind() == lltok::lbrace) {
1311 if (ParseStructType(Result, true) ||
1312 ParseToken(lltok::greater, "expected '>' at end of packed struct"))
Chris Lattnerdf986172009-01-02 07:01:27 +00001313 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00001314 } else if (ParseArrayVectorType(Result, true))
1315 return true;
1316 break;
1317 case lltok::LocalVar:
1318 case lltok::StringConstant: // FIXME: REMOVE IN LLVM 3.0
1319 // TypeRec ::= %foo
1320 if (const Type *T = M->getTypeByName(Lex.getStrVal())) {
1321 Result = T;
1322 } else {
Owen Anderson0e275dc2009-08-13 23:27:32 +00001323 Result = OpaqueType::get(Context);
Chris Lattnerdf986172009-01-02 07:01:27 +00001324 ForwardRefTypes.insert(std::make_pair(Lex.getStrVal(),
1325 std::make_pair(Result,
1326 Lex.getLoc())));
1327 M->addTypeName(Lex.getStrVal(), Result.get());
1328 }
1329 Lex.Lex();
1330 break;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001331
Chris Lattnerdf986172009-01-02 07:01:27 +00001332 case lltok::LocalVarID:
1333 // TypeRec ::= %4
1334 if (Lex.getUIntVal() < NumberedTypes.size())
1335 Result = NumberedTypes[Lex.getUIntVal()];
1336 else {
1337 std::map<unsigned, std::pair<PATypeHolder, LocTy> >::iterator
1338 I = ForwardRefTypeIDs.find(Lex.getUIntVal());
1339 if (I != ForwardRefTypeIDs.end())
1340 Result = I->second.first;
1341 else {
Owen Anderson0e275dc2009-08-13 23:27:32 +00001342 Result = OpaqueType::get(Context);
Chris Lattnerdf986172009-01-02 07:01:27 +00001343 ForwardRefTypeIDs.insert(std::make_pair(Lex.getUIntVal(),
1344 std::make_pair(Result,
1345 Lex.getLoc())));
1346 }
1347 }
1348 Lex.Lex();
1349 break;
1350 case lltok::backslash: {
1351 // TypeRec ::= '\' 4
Chris Lattnerdf986172009-01-02 07:01:27 +00001352 Lex.Lex();
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001353 unsigned Val;
1354 if (ParseUInt32(Val)) return true;
Owen Anderson0e275dc2009-08-13 23:27:32 +00001355 OpaqueType *OT = OpaqueType::get(Context); //Use temporary placeholder.
Chris Lattnerdf986172009-01-02 07:01:27 +00001356 UpRefs.push_back(UpRefRecord(Lex.getLoc(), Val, OT));
1357 Result = OT;
1358 break;
1359 }
1360 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001361
1362 // Parse the type suffixes.
Chris Lattnerdf986172009-01-02 07:01:27 +00001363 while (1) {
1364 switch (Lex.getKind()) {
1365 // End of type.
Daniel Dunbara279bc32009-09-20 02:20:51 +00001366 default: return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00001367
1368 // TypeRec ::= TypeRec '*'
1369 case lltok::star:
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001370 if (Result.get()->isLabelTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00001371 return TokError("basic block pointers are invalid");
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001372 if (Result.get()->isVoidTy())
Dan Gohmanb9070d32009-02-09 17:41:21 +00001373 return TokError("pointers to void are invalid; use i8* instead");
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001374 if (!PointerType::isValidElementType(Result.get()))
1375 return TokError("pointer to this type is invalid");
Owen Andersondebcb012009-07-29 22:17:13 +00001376 Result = HandleUpRefs(PointerType::getUnqual(Result.get()));
Chris Lattnerdf986172009-01-02 07:01:27 +00001377 Lex.Lex();
1378 break;
1379
1380 // TypeRec ::= TypeRec 'addrspace' '(' uint32 ')' '*'
1381 case lltok::kw_addrspace: {
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001382 if (Result.get()->isLabelTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00001383 return TokError("basic block pointers are invalid");
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001384 if (Result.get()->isVoidTy())
Dan Gohmanb9070d32009-02-09 17:41:21 +00001385 return TokError("pointers to void are invalid; use i8* instead");
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001386 if (!PointerType::isValidElementType(Result.get()))
1387 return TokError("pointer to this type is invalid");
Chris Lattnerdf986172009-01-02 07:01:27 +00001388 unsigned AddrSpace;
1389 if (ParseOptionalAddrSpace(AddrSpace) ||
1390 ParseToken(lltok::star, "expected '*' in address space"))
1391 return true;
1392
Owen Andersondebcb012009-07-29 22:17:13 +00001393 Result = HandleUpRefs(PointerType::get(Result.get(), AddrSpace));
Chris Lattnerdf986172009-01-02 07:01:27 +00001394 break;
1395 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001396
Chris Lattnerdf986172009-01-02 07:01:27 +00001397 /// Types '(' ArgTypeListI ')' OptFuncAttrs
1398 case lltok::lparen:
1399 if (ParseFunctionType(Result))
1400 return true;
1401 break;
1402 }
1403 }
1404}
1405
1406/// ParseParameterList
1407/// ::= '(' ')'
1408/// ::= '(' Arg (',' Arg)* ')'
1409/// Arg
1410/// ::= Type OptionalAttributes Value OptionalAttributes
1411bool LLParser::ParseParameterList(SmallVectorImpl<ParamInfo> &ArgList,
1412 PerFunctionState &PFS) {
1413 if (ParseToken(lltok::lparen, "expected '(' in call"))
1414 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001415
Chris Lattnerdf986172009-01-02 07:01:27 +00001416 while (Lex.getKind() != lltok::rparen) {
1417 // If this isn't the first argument, we need a comma.
1418 if (!ArgList.empty() &&
1419 ParseToken(lltok::comma, "expected ',' in argument list"))
1420 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001421
Chris Lattnerdf986172009-01-02 07:01:27 +00001422 // Parse the argument.
1423 LocTy ArgLoc;
Owen Anderson1d0be152009-08-13 21:58:54 +00001424 PATypeHolder ArgTy(Type::getVoidTy(Context));
Victor Hernandez19715562009-12-03 23:40:58 +00001425 unsigned ArgAttrs1 = Attribute::None;
1426 unsigned ArgAttrs2 = Attribute::None;
Chris Lattnerdf986172009-01-02 07:01:27 +00001427 Value *V;
Victor Hernandez19715562009-12-03 23:40:58 +00001428 if (ParseType(ArgTy, ArgLoc))
Chris Lattnerdf986172009-01-02 07:01:27 +00001429 return true;
Victor Hernandez19715562009-12-03 23:40:58 +00001430
Chris Lattner287881d2009-12-30 02:11:14 +00001431 // Otherwise, handle normal operands.
1432 if (ParseOptionalAttrs(ArgAttrs1, 0) ||
1433 ParseValue(ArgTy, V, PFS) ||
1434 // FIXME: Should not allow attributes after the argument, remove this
1435 // in LLVM 3.0.
1436 ParseOptionalAttrs(ArgAttrs2, 3))
1437 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00001438 ArgList.push_back(ParamInfo(ArgLoc, V, ArgAttrs1|ArgAttrs2));
1439 }
1440
1441 Lex.Lex(); // Lex the ')'.
1442 return false;
1443}
1444
1445
1446
Chris Lattnerdfd19dd2009-01-05 18:34:07 +00001447/// ParseArgumentList - Parse the argument list for a function type or function
1448/// prototype. If 'inType' is true then we are parsing a FunctionType.
Chris Lattnerdf986172009-01-02 07:01:27 +00001449/// ::= '(' ArgTypeListI ')'
1450/// ArgTypeListI
1451/// ::= /*empty*/
1452/// ::= '...'
1453/// ::= ArgTypeList ',' '...'
1454/// ::= ArgType (',' ArgType)*
Chris Lattnerdfd19dd2009-01-05 18:34:07 +00001455///
Chris Lattnerdf986172009-01-02 07:01:27 +00001456bool LLParser::ParseArgumentList(std::vector<ArgInfo> &ArgList,
Chris Lattnerdfd19dd2009-01-05 18:34:07 +00001457 bool &isVarArg, bool inType) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001458 isVarArg = false;
1459 assert(Lex.getKind() == lltok::lparen);
1460 Lex.Lex(); // eat the (.
Daniel Dunbara279bc32009-09-20 02:20:51 +00001461
Chris Lattnerdf986172009-01-02 07:01:27 +00001462 if (Lex.getKind() == lltok::rparen) {
1463 // empty
1464 } else if (Lex.getKind() == lltok::dotdotdot) {
1465 isVarArg = true;
1466 Lex.Lex();
1467 } else {
1468 LocTy TypeLoc = Lex.getLoc();
Owen Anderson1d0be152009-08-13 21:58:54 +00001469 PATypeHolder ArgTy(Type::getVoidTy(Context));
Chris Lattnerdf986172009-01-02 07:01:27 +00001470 unsigned Attrs;
Chris Lattnerdf986172009-01-02 07:01:27 +00001471 std::string Name;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001472
Chris Lattnerdfd19dd2009-01-05 18:34:07 +00001473 // If we're parsing a type, use ParseTypeRec, because we allow recursive
1474 // types (such as a function returning a pointer to itself). If parsing a
1475 // function prototype, we require fully resolved types.
1476 if ((inType ? ParseTypeRec(ArgTy) : ParseType(ArgTy)) ||
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001477 ParseOptionalAttrs(Attrs, 0)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001478
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001479 if (ArgTy->isVoidTy())
Chris Lattnera9a9e072009-03-09 04:49:14 +00001480 return Error(TypeLoc, "argument can not have void type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001481
Chris Lattnerdf986172009-01-02 07:01:27 +00001482 if (Lex.getKind() == lltok::LocalVar ||
1483 Lex.getKind() == lltok::StringConstant) { // FIXME: REMOVE IN LLVM 3.0
1484 Name = Lex.getStrVal();
1485 Lex.Lex();
1486 }
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001487
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001488 if (!FunctionType::isValidArgumentType(ArgTy))
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001489 return Error(TypeLoc, "invalid type for function argument");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001490
Chris Lattnerdf986172009-01-02 07:01:27 +00001491 ArgList.push_back(ArgInfo(TypeLoc, ArgTy, Attrs, Name));
Daniel Dunbara279bc32009-09-20 02:20:51 +00001492
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001493 while (EatIfPresent(lltok::comma)) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001494 // Handle ... at end of arg list.
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001495 if (EatIfPresent(lltok::dotdotdot)) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001496 isVarArg = true;
Chris Lattnerdf986172009-01-02 07:01:27 +00001497 break;
1498 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001499
Chris Lattnerdf986172009-01-02 07:01:27 +00001500 // Otherwise must be an argument type.
1501 TypeLoc = Lex.getLoc();
Chris Lattnera9a9e072009-03-09 04:49:14 +00001502 if ((inType ? ParseTypeRec(ArgTy) : ParseType(ArgTy)) ||
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001503 ParseOptionalAttrs(Attrs, 0)) return true;
1504
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001505 if (ArgTy->isVoidTy())
Chris Lattnera9a9e072009-03-09 04:49:14 +00001506 return Error(TypeLoc, "argument can not have void type");
1507
Chris Lattnerdf986172009-01-02 07:01:27 +00001508 if (Lex.getKind() == lltok::LocalVar ||
1509 Lex.getKind() == lltok::StringConstant) { // FIXME: REMOVE IN LLVM 3.0
1510 Name = Lex.getStrVal();
1511 Lex.Lex();
1512 } else {
1513 Name = "";
1514 }
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001515
Duncan Sands47c51882010-02-16 14:50:09 +00001516 if (!ArgTy->isFirstClassType() && !ArgTy->isOpaqueTy())
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001517 return Error(TypeLoc, "invalid type for function argument");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001518
Chris Lattnerdf986172009-01-02 07:01:27 +00001519 ArgList.push_back(ArgInfo(TypeLoc, ArgTy, Attrs, Name));
1520 }
1521 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001522
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001523 return ParseToken(lltok::rparen, "expected ')' at end of argument list");
Chris Lattnerdf986172009-01-02 07:01:27 +00001524}
Daniel Dunbara279bc32009-09-20 02:20:51 +00001525
Chris Lattnerdf986172009-01-02 07:01:27 +00001526/// ParseFunctionType
1527/// ::= Type ArgumentList OptionalAttrs
1528bool LLParser::ParseFunctionType(PATypeHolder &Result) {
1529 assert(Lex.getKind() == lltok::lparen);
1530
Chris Lattnerd77d04c2009-01-05 08:04:33 +00001531 if (!FunctionType::isValidReturnType(Result))
1532 return TokError("invalid function return type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001533
Chris Lattnerdf986172009-01-02 07:01:27 +00001534 std::vector<ArgInfo> ArgList;
1535 bool isVarArg;
1536 unsigned Attrs;
Chris Lattnerdfd19dd2009-01-05 18:34:07 +00001537 if (ParseArgumentList(ArgList, isVarArg, true) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00001538 // FIXME: Allow, but ignore attributes on function types!
1539 // FIXME: Remove in LLVM 3.0
1540 ParseOptionalAttrs(Attrs, 2))
1541 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001542
Chris Lattnerdf986172009-01-02 07:01:27 +00001543 // Reject names on the arguments lists.
1544 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
1545 if (!ArgList[i].Name.empty())
1546 return Error(ArgList[i].Loc, "argument name invalid in function type");
1547 if (!ArgList[i].Attrs != 0) {
1548 // Allow but ignore attributes on function types; this permits
1549 // auto-upgrade.
1550 // FIXME: REJECT ATTRIBUTES ON FUNCTION TYPES in LLVM 3.0
1551 }
1552 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001553
Chris Lattnerdf986172009-01-02 07:01:27 +00001554 std::vector<const Type*> ArgListTy;
1555 for (unsigned i = 0, e = ArgList.size(); i != e; ++i)
1556 ArgListTy.push_back(ArgList[i].Type);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001557
Owen Andersondebcb012009-07-29 22:17:13 +00001558 Result = HandleUpRefs(FunctionType::get(Result.get(),
Owen Andersonfba933c2009-07-01 23:57:11 +00001559 ArgListTy, isVarArg));
Chris Lattnerdf986172009-01-02 07:01:27 +00001560 return false;
1561}
1562
1563/// ParseStructType: Handles packed and unpacked types. </> parsed elsewhere.
1564/// TypeRec
1565/// ::= '{' '}'
1566/// ::= '{' TypeRec (',' TypeRec)* '}'
1567/// ::= '<' '{' '}' '>'
1568/// ::= '<' '{' TypeRec (',' TypeRec)* '}' '>'
1569bool LLParser::ParseStructType(PATypeHolder &Result, bool Packed) {
1570 assert(Lex.getKind() == lltok::lbrace);
1571 Lex.Lex(); // Consume the '{'
Daniel Dunbara279bc32009-09-20 02:20:51 +00001572
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001573 if (EatIfPresent(lltok::rbrace)) {
Owen Andersond7f2a6c2009-08-05 23:16:16 +00001574 Result = StructType::get(Context, Packed);
Chris Lattnerdf986172009-01-02 07:01:27 +00001575 return false;
1576 }
1577
1578 std::vector<PATypeHolder> ParamsList;
Chris Lattnera9a9e072009-03-09 04:49:14 +00001579 LocTy EltTyLoc = Lex.getLoc();
Chris Lattnerdf986172009-01-02 07:01:27 +00001580 if (ParseTypeRec(Result)) return true;
1581 ParamsList.push_back(Result);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001582
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001583 if (Result->isVoidTy())
Chris Lattnera9a9e072009-03-09 04:49:14 +00001584 return Error(EltTyLoc, "struct element can not have void type");
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001585 if (!StructType::isValidElementType(Result))
1586 return Error(EltTyLoc, "invalid element type for struct");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001587
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001588 while (EatIfPresent(lltok::comma)) {
Chris Lattnera9a9e072009-03-09 04:49:14 +00001589 EltTyLoc = Lex.getLoc();
Chris Lattnerdf986172009-01-02 07:01:27 +00001590 if (ParseTypeRec(Result)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001591
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001592 if (Result->isVoidTy())
Chris Lattnera9a9e072009-03-09 04:49:14 +00001593 return Error(EltTyLoc, "struct element can not have void type");
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001594 if (!StructType::isValidElementType(Result))
1595 return Error(EltTyLoc, "invalid element type for struct");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001596
Chris Lattnerdf986172009-01-02 07:01:27 +00001597 ParamsList.push_back(Result);
1598 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001599
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001600 if (ParseToken(lltok::rbrace, "expected '}' at end of struct"))
1601 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001602
Chris Lattnerdf986172009-01-02 07:01:27 +00001603 std::vector<const Type*> ParamsListTy;
1604 for (unsigned i = 0, e = ParamsList.size(); i != e; ++i)
1605 ParamsListTy.push_back(ParamsList[i].get());
Owen Andersond7f2a6c2009-08-05 23:16:16 +00001606 Result = HandleUpRefs(StructType::get(Context, ParamsListTy, Packed));
Chris Lattnerdf986172009-01-02 07:01:27 +00001607 return false;
1608}
1609
Chris Lattnerfdfeb692010-02-12 20:49:41 +00001610/// ParseUnionType
1611/// TypeRec
1612/// ::= 'union' '{' TypeRec (',' TypeRec)* '}'
1613bool LLParser::ParseUnionType(PATypeHolder &Result) {
1614 assert(Lex.getKind() == lltok::kw_union);
1615 Lex.Lex(); // Consume the 'union'
1616
1617 if (ParseToken(lltok::lbrace, "'{' expected after 'union'")) return true;
1618
1619 SmallVector<PATypeHolder, 8> ParamsList;
1620 do {
1621 LocTy EltTyLoc = Lex.getLoc();
1622 if (ParseTypeRec(Result)) return true;
1623 ParamsList.push_back(Result);
1624
1625 if (Result->isVoidTy())
1626 return Error(EltTyLoc, "union element can not have void type");
1627 if (!UnionType::isValidElementType(Result))
1628 return Error(EltTyLoc, "invalid element type for union");
1629
1630 } while (EatIfPresent(lltok::comma)) ;
1631
1632 if (ParseToken(lltok::rbrace, "expected '}' at end of union"))
1633 return true;
1634
1635 SmallVector<const Type*, 8> ParamsListTy;
1636 for (unsigned i = 0, e = ParamsList.size(); i != e; ++i)
1637 ParamsListTy.push_back(ParamsList[i].get());
1638 Result = HandleUpRefs(UnionType::get(&ParamsListTy[0], ParamsListTy.size()));
1639 return false;
1640}
1641
Chris Lattnerdf986172009-01-02 07:01:27 +00001642/// ParseArrayVectorType - Parse an array or vector type, assuming the first
1643/// token has already been consumed.
Daniel Dunbara279bc32009-09-20 02:20:51 +00001644/// TypeRec
Chris Lattnerdf986172009-01-02 07:01:27 +00001645/// ::= '[' APSINTVAL 'x' Types ']'
1646/// ::= '<' APSINTVAL 'x' Types '>'
1647bool LLParser::ParseArrayVectorType(PATypeHolder &Result, bool isVector) {
1648 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned() ||
1649 Lex.getAPSIntVal().getBitWidth() > 64)
1650 return TokError("expected number in address space");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001651
Chris Lattnerdf986172009-01-02 07:01:27 +00001652 LocTy SizeLoc = Lex.getLoc();
1653 uint64_t Size = Lex.getAPSIntVal().getZExtValue();
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001654 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +00001655
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001656 if (ParseToken(lltok::kw_x, "expected 'x' after element count"))
1657 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00001658
1659 LocTy TypeLoc = Lex.getLoc();
Owen Anderson1d0be152009-08-13 21:58:54 +00001660 PATypeHolder EltTy(Type::getVoidTy(Context));
Chris Lattnerdf986172009-01-02 07:01:27 +00001661 if (ParseTypeRec(EltTy)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001662
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001663 if (EltTy->isVoidTy())
Chris Lattnera9a9e072009-03-09 04:49:14 +00001664 return Error(TypeLoc, "array and vector element type cannot be void");
1665
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001666 if (ParseToken(isVector ? lltok::greater : lltok::rsquare,
1667 "expected end of sequential type"))
1668 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001669
Chris Lattnerdf986172009-01-02 07:01:27 +00001670 if (isVector) {
Chris Lattner452e2622009-02-28 18:12:41 +00001671 if (Size == 0)
1672 return Error(SizeLoc, "zero element vector is illegal");
Chris Lattnerdf986172009-01-02 07:01:27 +00001673 if ((unsigned)Size != Size)
1674 return Error(SizeLoc, "size too large for vector");
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001675 if (!VectorType::isValidElementType(EltTy))
Chris Lattnerdf986172009-01-02 07:01:27 +00001676 return Error(TypeLoc, "vector element type must be fp or integer");
Owen Andersondebcb012009-07-29 22:17:13 +00001677 Result = VectorType::get(EltTy, unsigned(Size));
Chris Lattnerdf986172009-01-02 07:01:27 +00001678 } else {
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001679 if (!ArrayType::isValidElementType(EltTy))
Chris Lattnerdf986172009-01-02 07:01:27 +00001680 return Error(TypeLoc, "invalid array element type");
Owen Andersondebcb012009-07-29 22:17:13 +00001681 Result = HandleUpRefs(ArrayType::get(EltTy, Size));
Chris Lattnerdf986172009-01-02 07:01:27 +00001682 }
1683 return false;
1684}
1685
1686//===----------------------------------------------------------------------===//
1687// Function Semantic Analysis.
1688//===----------------------------------------------------------------------===//
1689
Chris Lattner09d9ef42009-10-28 03:39:23 +00001690LLParser::PerFunctionState::PerFunctionState(LLParser &p, Function &f,
1691 int functionNumber)
1692 : P(p), F(f), FunctionNumber(functionNumber) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001693
1694 // Insert unnamed arguments into the NumberedVals list.
1695 for (Function::arg_iterator AI = F.arg_begin(), E = F.arg_end();
1696 AI != E; ++AI)
1697 if (!AI->hasName())
1698 NumberedVals.push_back(AI);
1699}
1700
1701LLParser::PerFunctionState::~PerFunctionState() {
1702 // If there were any forward referenced non-basicblock values, delete them.
1703 for (std::map<std::string, std::pair<Value*, LocTy> >::iterator
1704 I = ForwardRefVals.begin(), E = ForwardRefVals.end(); I != E; ++I)
1705 if (!isa<BasicBlock>(I->second.first)) {
Owen Andersonb43eae72009-07-02 17:04:01 +00001706 I->second.first->replaceAllUsesWith(
Owen Anderson9e9a0d52009-07-30 23:03:37 +00001707 UndefValue::get(I->second.first->getType()));
Chris Lattnerdf986172009-01-02 07:01:27 +00001708 delete I->second.first;
1709 I->second.first = 0;
1710 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001711
Chris Lattnerdf986172009-01-02 07:01:27 +00001712 for (std::map<unsigned, std::pair<Value*, LocTy> >::iterator
1713 I = ForwardRefValIDs.begin(), E = ForwardRefValIDs.end(); I != E; ++I)
1714 if (!isa<BasicBlock>(I->second.first)) {
Owen Andersonb43eae72009-07-02 17:04:01 +00001715 I->second.first->replaceAllUsesWith(
Owen Anderson9e9a0d52009-07-30 23:03:37 +00001716 UndefValue::get(I->second.first->getType()));
Chris Lattnerdf986172009-01-02 07:01:27 +00001717 delete I->second.first;
1718 I->second.first = 0;
1719 }
1720}
1721
Chris Lattner09d9ef42009-10-28 03:39:23 +00001722bool LLParser::PerFunctionState::FinishFunction() {
1723 // Check to see if someone took the address of labels in this block.
1724 if (!P.ForwardRefBlockAddresses.empty()) {
1725 ValID FunctionID;
1726 if (!F.getName().empty()) {
1727 FunctionID.Kind = ValID::t_GlobalName;
1728 FunctionID.StrVal = F.getName();
1729 } else {
1730 FunctionID.Kind = ValID::t_GlobalID;
1731 FunctionID.UIntVal = FunctionNumber;
1732 }
1733
1734 std::map<ValID, std::vector<std::pair<ValID, GlobalValue*> > >::iterator
1735 FRBAI = P.ForwardRefBlockAddresses.find(FunctionID);
1736 if (FRBAI != P.ForwardRefBlockAddresses.end()) {
1737 // Resolve all these references.
1738 if (P.ResolveForwardRefBlockAddresses(&F, FRBAI->second, this))
1739 return true;
1740
1741 P.ForwardRefBlockAddresses.erase(FRBAI);
1742 }
1743 }
1744
Chris Lattnerdf986172009-01-02 07:01:27 +00001745 if (!ForwardRefVals.empty())
1746 return P.Error(ForwardRefVals.begin()->second.second,
1747 "use of undefined value '%" + ForwardRefVals.begin()->first +
1748 "'");
1749 if (!ForwardRefValIDs.empty())
1750 return P.Error(ForwardRefValIDs.begin()->second.second,
1751 "use of undefined value '%" +
1752 utostr(ForwardRefValIDs.begin()->first) + "'");
1753 return false;
1754}
1755
1756
1757/// GetVal - Get a value with the specified name or ID, creating a
1758/// forward reference record if needed. This can return null if the value
1759/// exists but does not have the right type.
1760Value *LLParser::PerFunctionState::GetVal(const std::string &Name,
1761 const Type *Ty, LocTy Loc) {
1762 // Look this name up in the normal function symbol table.
1763 Value *Val = F.getValueSymbolTable().lookup(Name);
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<std::string, std::pair<Value*, LocTy> >::iterator
1769 I = ForwardRefVals.find(Name);
1770 if (I != ForwardRefVals.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, "'%" + Name + "' is not a basic block");
1779 else
1780 P.Error(Loc, "'%" + Name + "' defined with type '" +
1781 Val->getType()->getDescription() + "'");
1782 return 0;
1783 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001784
Chris Lattnerdf986172009-01-02 07:01:27 +00001785 // Don't make placeholders with invalid type.
Duncan Sands47c51882010-02-16 14:50:09 +00001786 if (!Ty->isFirstClassType() && !Ty->isOpaqueTy() && !Ty->isLabelTy()) {
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(), Name, &F);
Chris Lattnerdf986172009-01-02 07:01:27 +00001795 else
1796 FwdVal = new Argument(Ty, Name);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001797
Chris Lattnerdf986172009-01-02 07:01:27 +00001798 ForwardRefVals[Name] = std::make_pair(FwdVal, Loc);
1799 return FwdVal;
1800}
1801
1802Value *LLParser::PerFunctionState::GetVal(unsigned ID, const Type *Ty,
1803 LocTy Loc) {
1804 // Look this name up in the normal function symbol table.
1805 Value *Val = ID < NumberedVals.size() ? NumberedVals[ID] : 0;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001806
Chris Lattnerdf986172009-01-02 07:01:27 +00001807 // If this is a forward reference for the value, see if we already created a
1808 // forward ref record.
1809 if (Val == 0) {
1810 std::map<unsigned, std::pair<Value*, LocTy> >::iterator
1811 I = ForwardRefValIDs.find(ID);
1812 if (I != ForwardRefValIDs.end())
1813 Val = I->second.first;
1814 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001815
Chris Lattnerdf986172009-01-02 07:01:27 +00001816 // If we have the value in the symbol table or fwd-ref table, return it.
1817 if (Val) {
1818 if (Val->getType() == Ty) return Val;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001819 if (Ty->isLabelTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00001820 P.Error(Loc, "'%" + utostr(ID) + "' is not a basic block");
1821 else
1822 P.Error(Loc, "'%" + utostr(ID) + "' defined with type '" +
1823 Val->getType()->getDescription() + "'");
1824 return 0;
1825 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001826
Duncan Sands47c51882010-02-16 14:50:09 +00001827 if (!Ty->isFirstClassType() && !Ty->isOpaqueTy() && !Ty->isLabelTy()) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001828 P.Error(Loc, "invalid use of a non-first-class type");
1829 return 0;
1830 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001831
Chris Lattnerdf986172009-01-02 07:01:27 +00001832 // Otherwise, create a new forward reference for this value and remember it.
1833 Value *FwdVal;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001834 if (Ty->isLabelTy())
Owen Anderson1d0be152009-08-13 21:58:54 +00001835 FwdVal = BasicBlock::Create(F.getContext(), "", &F);
Chris Lattnerdf986172009-01-02 07:01:27 +00001836 else
1837 FwdVal = new Argument(Ty);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001838
Chris Lattnerdf986172009-01-02 07:01:27 +00001839 ForwardRefValIDs[ID] = std::make_pair(FwdVal, Loc);
1840 return FwdVal;
1841}
1842
1843/// SetInstName - After an instruction is parsed and inserted into its
1844/// basic block, this installs its name.
1845bool LLParser::PerFunctionState::SetInstName(int NameID,
1846 const std::string &NameStr,
1847 LocTy NameLoc, Instruction *Inst) {
1848 // If this instruction has void type, it cannot have a name or ID specified.
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001849 if (Inst->getType()->isVoidTy()) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001850 if (NameID != -1 || !NameStr.empty())
1851 return P.Error(NameLoc, "instructions returning void cannot have a name");
1852 return false;
1853 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001854
Chris Lattnerdf986172009-01-02 07:01:27 +00001855 // If this was a numbered instruction, verify that the instruction is the
1856 // expected value and resolve any forward references.
1857 if (NameStr.empty()) {
1858 // If neither a name nor an ID was specified, just use the next ID.
1859 if (NameID == -1)
1860 NameID = NumberedVals.size();
Daniel Dunbara279bc32009-09-20 02:20:51 +00001861
Chris Lattnerdf986172009-01-02 07:01:27 +00001862 if (unsigned(NameID) != NumberedVals.size())
1863 return P.Error(NameLoc, "instruction expected to be numbered '%" +
1864 utostr(NumberedVals.size()) + "'");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001865
Chris Lattnerdf986172009-01-02 07:01:27 +00001866 std::map<unsigned, std::pair<Value*, LocTy> >::iterator FI =
1867 ForwardRefValIDs.find(NameID);
1868 if (FI != ForwardRefValIDs.end()) {
1869 if (FI->second.first->getType() != Inst->getType())
Daniel Dunbara279bc32009-09-20 02:20:51 +00001870 return P.Error(NameLoc, "instruction forward referenced with type '" +
Chris Lattnerdf986172009-01-02 07:01:27 +00001871 FI->second.first->getType()->getDescription() + "'");
1872 FI->second.first->replaceAllUsesWith(Inst);
Nuno Lopes2b4f28e2009-09-02 15:02:57 +00001873 delete FI->second.first;
Chris Lattnerdf986172009-01-02 07:01:27 +00001874 ForwardRefValIDs.erase(FI);
1875 }
1876
1877 NumberedVals.push_back(Inst);
1878 return false;
1879 }
1880
1881 // Otherwise, the instruction had a name. Resolve forward refs and set it.
1882 std::map<std::string, std::pair<Value*, LocTy> >::iterator
1883 FI = ForwardRefVals.find(NameStr);
1884 if (FI != ForwardRefVals.end()) {
1885 if (FI->second.first->getType() != Inst->getType())
Daniel Dunbara279bc32009-09-20 02:20:51 +00001886 return P.Error(NameLoc, "instruction forward referenced with type '" +
Chris Lattnerdf986172009-01-02 07:01:27 +00001887 FI->second.first->getType()->getDescription() + "'");
1888 FI->second.first->replaceAllUsesWith(Inst);
Nuno Lopes531552a2009-09-02 14:22:03 +00001889 delete FI->second.first;
Chris Lattnerdf986172009-01-02 07:01:27 +00001890 ForwardRefVals.erase(FI);
1891 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001892
Chris Lattnerdf986172009-01-02 07:01:27 +00001893 // Set the name on the instruction.
1894 Inst->setName(NameStr);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001895
Chris Lattnerdf986172009-01-02 07:01:27 +00001896 if (Inst->getNameStr() != NameStr)
Daniel Dunbara279bc32009-09-20 02:20:51 +00001897 return P.Error(NameLoc, "multiple definition of local value named '" +
Chris Lattnerdf986172009-01-02 07:01:27 +00001898 NameStr + "'");
1899 return false;
1900}
1901
1902/// GetBB - Get a basic block with the specified name or ID, creating a
1903/// forward reference record if needed.
1904BasicBlock *LLParser::PerFunctionState::GetBB(const std::string &Name,
1905 LocTy Loc) {
Owen Anderson1d0be152009-08-13 21:58:54 +00001906 return cast_or_null<BasicBlock>(GetVal(Name,
1907 Type::getLabelTy(F.getContext()), Loc));
Chris Lattnerdf986172009-01-02 07:01:27 +00001908}
1909
1910BasicBlock *LLParser::PerFunctionState::GetBB(unsigned ID, LocTy Loc) {
Owen Anderson1d0be152009-08-13 21:58:54 +00001911 return cast_or_null<BasicBlock>(GetVal(ID,
1912 Type::getLabelTy(F.getContext()), Loc));
Chris Lattnerdf986172009-01-02 07:01:27 +00001913}
1914
1915/// DefineBB - Define the specified basic block, which is either named or
1916/// unnamed. If there is an error, this returns null otherwise it returns
1917/// the block being defined.
1918BasicBlock *LLParser::PerFunctionState::DefineBB(const std::string &Name,
1919 LocTy Loc) {
1920 BasicBlock *BB;
1921 if (Name.empty())
1922 BB = GetBB(NumberedVals.size(), Loc);
1923 else
1924 BB = GetBB(Name, Loc);
1925 if (BB == 0) return 0; // Already diagnosed error.
Daniel Dunbara279bc32009-09-20 02:20:51 +00001926
Chris Lattnerdf986172009-01-02 07:01:27 +00001927 // Move the block to the end of the function. Forward ref'd blocks are
1928 // inserted wherever they happen to be referenced.
1929 F.getBasicBlockList().splice(F.end(), F.getBasicBlockList(), BB);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001930
Chris Lattnerdf986172009-01-02 07:01:27 +00001931 // Remove the block from forward ref sets.
1932 if (Name.empty()) {
1933 ForwardRefValIDs.erase(NumberedVals.size());
1934 NumberedVals.push_back(BB);
1935 } else {
1936 // BB forward references are already in the function symbol table.
1937 ForwardRefVals.erase(Name);
1938 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001939
Chris Lattnerdf986172009-01-02 07:01:27 +00001940 return BB;
1941}
1942
1943//===----------------------------------------------------------------------===//
1944// Constants.
1945//===----------------------------------------------------------------------===//
1946
1947/// ParseValID - Parse an abstract value that doesn't necessarily have a
1948/// type implied. For example, if we parse "4" we don't know what integer type
1949/// it has. The value will later be combined with its type and checked for
Victor Hernandez24e64df2010-01-10 07:14:18 +00001950/// sanity. PFS is used to convert function-local operands of metadata (since
1951/// metadata operands are not just parsed here but also converted to values).
1952/// PFS can be null when we are not parsing metadata values inside a function.
Victor Hernandezbf170d42010-01-05 22:22:14 +00001953bool LLParser::ParseValID(ValID &ID, PerFunctionState *PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001954 ID.Loc = Lex.getLoc();
1955 switch (Lex.getKind()) {
1956 default: return TokError("expected value token");
1957 case lltok::GlobalID: // @42
1958 ID.UIntVal = Lex.getUIntVal();
1959 ID.Kind = ValID::t_GlobalID;
1960 break;
1961 case lltok::GlobalVar: // @foo
1962 ID.StrVal = Lex.getStrVal();
1963 ID.Kind = ValID::t_GlobalName;
1964 break;
1965 case lltok::LocalVarID: // %42
1966 ID.UIntVal = Lex.getUIntVal();
1967 ID.Kind = ValID::t_LocalID;
1968 break;
1969 case lltok::LocalVar: // %foo
1970 case lltok::StringConstant: // "foo" - FIXME: REMOVE IN LLVM 3.0
1971 ID.StrVal = Lex.getStrVal();
1972 ID.Kind = ValID::t_LocalName;
1973 break;
Chris Lattnere434d272009-12-30 04:56:59 +00001974 case lltok::exclaim: // !{...} MDNode, !"foo" MDString
Nick Lewycky21cc4462009-04-04 07:22:01 +00001975 Lex.Lex();
Chris Lattner442ffa12009-12-29 21:53:55 +00001976
Chris Lattner3f5132a2009-12-29 22:40:21 +00001977 if (EatIfPresent(lltok::lbrace)) {
Nick Lewyckycb337992009-05-10 20:57:05 +00001978 SmallVector<Value*, 16> Elts;
Victor Hernandez24e64df2010-01-10 07:14:18 +00001979 if (ParseMDNodeVector(Elts, PFS) ||
Nick Lewycky21cc4462009-04-04 07:22:01 +00001980 ParseToken(lltok::rbrace, "expected end of metadata node"))
1981 return true;
Nick Lewyckycb337992009-05-10 20:57:05 +00001982
Victor Hernandez24e64df2010-01-10 07:14:18 +00001983 ID.MDNodeVal = MDNode::get(Context, Elts.data(), Elts.size());
Chris Lattner287881d2009-12-30 02:11:14 +00001984 ID.Kind = ValID::t_MDNode;
Nick Lewycky21cc4462009-04-04 07:22:01 +00001985 return false;
1986 }
1987
Devang Patel923078c2009-07-01 19:21:12 +00001988 // Standalone metadata reference
1989 // !{ ..., !42, ... }
Chris Lattner860775c2009-12-30 04:13:37 +00001990 if (Lex.getKind() == lltok::APSInt) {
Chris Lattner4a72efc2009-12-30 04:15:23 +00001991 if (ParseMDNodeID(ID.MDNodeVal)) return true;
Chris Lattner287881d2009-12-30 02:11:14 +00001992 ID.Kind = ValID::t_MDNode;
Devang Patel923078c2009-07-01 19:21:12 +00001993 return false;
Chris Lattner287881d2009-12-30 02:11:14 +00001994 }
1995
Nick Lewycky21cc4462009-04-04 07:22:01 +00001996 // MDString:
1997 // ::= '!' STRINGCONSTANT
Chris Lattner287881d2009-12-30 02:11:14 +00001998 if (ParseMDString(ID.MDStringVal)) return true;
1999 ID.Kind = ValID::t_MDString;
Nick Lewycky21cc4462009-04-04 07:22:01 +00002000 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00002001 case lltok::APSInt:
Daniel Dunbara279bc32009-09-20 02:20:51 +00002002 ID.APSIntVal = Lex.getAPSIntVal();
Chris Lattnerdf986172009-01-02 07:01:27 +00002003 ID.Kind = ValID::t_APSInt;
2004 break;
2005 case lltok::APFloat:
2006 ID.APFloatVal = Lex.getAPFloatVal();
2007 ID.Kind = ValID::t_APFloat;
2008 break;
2009 case lltok::kw_true:
Owen Anderson5defacc2009-07-31 17:39:07 +00002010 ID.ConstantVal = ConstantInt::getTrue(Context);
Chris Lattnerdf986172009-01-02 07:01:27 +00002011 ID.Kind = ValID::t_Constant;
2012 break;
2013 case lltok::kw_false:
Owen Anderson5defacc2009-07-31 17:39:07 +00002014 ID.ConstantVal = ConstantInt::getFalse(Context);
Chris Lattnerdf986172009-01-02 07:01:27 +00002015 ID.Kind = ValID::t_Constant;
2016 break;
2017 case lltok::kw_null: ID.Kind = ValID::t_Null; break;
2018 case lltok::kw_undef: ID.Kind = ValID::t_Undef; break;
2019 case lltok::kw_zeroinitializer: ID.Kind = ValID::t_Zero; break;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002020
Chris Lattnerdf986172009-01-02 07:01:27 +00002021 case lltok::lbrace: {
2022 // ValID ::= '{' ConstVector '}'
2023 Lex.Lex();
2024 SmallVector<Constant*, 16> Elts;
2025 if (ParseGlobalValueVector(Elts) ||
2026 ParseToken(lltok::rbrace, "expected end of struct constant"))
2027 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002028
Owen Andersond7f2a6c2009-08-05 23:16:16 +00002029 ID.ConstantVal = ConstantStruct::get(Context, Elts.data(),
2030 Elts.size(), false);
Chris Lattnerdf986172009-01-02 07:01:27 +00002031 ID.Kind = ValID::t_Constant;
2032 return false;
2033 }
2034 case lltok::less: {
2035 // ValID ::= '<' ConstVector '>' --> Vector.
2036 // ValID ::= '<' '{' ConstVector '}' '>' --> Packed Struct.
2037 Lex.Lex();
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002038 bool isPackedStruct = EatIfPresent(lltok::lbrace);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002039
Chris Lattnerdf986172009-01-02 07:01:27 +00002040 SmallVector<Constant*, 16> Elts;
2041 LocTy FirstEltLoc = Lex.getLoc();
2042 if (ParseGlobalValueVector(Elts) ||
2043 (isPackedStruct &&
2044 ParseToken(lltok::rbrace, "expected end of packed struct")) ||
2045 ParseToken(lltok::greater, "expected end of constant"))
2046 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002047
Chris Lattnerdf986172009-01-02 07:01:27 +00002048 if (isPackedStruct) {
Owen Andersonfba933c2009-07-01 23:57:11 +00002049 ID.ConstantVal =
Owen Andersond7f2a6c2009-08-05 23:16:16 +00002050 ConstantStruct::get(Context, Elts.data(), Elts.size(), true);
Chris Lattnerdf986172009-01-02 07:01:27 +00002051 ID.Kind = ValID::t_Constant;
2052 return false;
2053 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002054
Chris Lattnerdf986172009-01-02 07:01:27 +00002055 if (Elts.empty())
2056 return Error(ID.Loc, "constant vector must not be empty");
2057
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00002058 if (!Elts[0]->getType()->isIntegerTy() &&
2059 !Elts[0]->getType()->isFloatingPointTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002060 return Error(FirstEltLoc,
2061 "vector elements must have integer or floating point type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002062
Chris Lattnerdf986172009-01-02 07:01:27 +00002063 // Verify that all the vector elements have the same type.
2064 for (unsigned i = 1, e = Elts.size(); i != e; ++i)
2065 if (Elts[i]->getType() != Elts[0]->getType())
2066 return Error(FirstEltLoc,
2067 "vector element #" + utostr(i) +
2068 " is not of type '" + Elts[0]->getType()->getDescription());
Daniel Dunbara279bc32009-09-20 02:20:51 +00002069
Owen Andersonaf7ec972009-07-28 21:19:26 +00002070 ID.ConstantVal = ConstantVector::get(Elts.data(), Elts.size());
Chris Lattnerdf986172009-01-02 07:01:27 +00002071 ID.Kind = ValID::t_Constant;
2072 return false;
2073 }
2074 case lltok::lsquare: { // Array Constant
2075 Lex.Lex();
2076 SmallVector<Constant*, 16> Elts;
2077 LocTy FirstEltLoc = Lex.getLoc();
2078 if (ParseGlobalValueVector(Elts) ||
2079 ParseToken(lltok::rsquare, "expected end of array constant"))
2080 return true;
2081
2082 // Handle empty element.
2083 if (Elts.empty()) {
2084 // Use undef instead of an array because it's inconvenient to determine
2085 // the element type at this point, there being no elements to examine.
Chris Lattner081b5052009-01-05 07:52:51 +00002086 ID.Kind = ValID::t_EmptyArray;
Chris Lattnerdf986172009-01-02 07:01:27 +00002087 return false;
2088 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002089
Chris Lattnerdf986172009-01-02 07:01:27 +00002090 if (!Elts[0]->getType()->isFirstClassType())
Daniel Dunbara279bc32009-09-20 02:20:51 +00002091 return Error(FirstEltLoc, "invalid array element type: " +
Chris Lattnerdf986172009-01-02 07:01:27 +00002092 Elts[0]->getType()->getDescription());
Daniel Dunbara279bc32009-09-20 02:20:51 +00002093
Owen Andersondebcb012009-07-29 22:17:13 +00002094 ArrayType *ATy = ArrayType::get(Elts[0]->getType(), Elts.size());
Daniel Dunbara279bc32009-09-20 02:20:51 +00002095
Chris Lattnerdf986172009-01-02 07:01:27 +00002096 // Verify all elements are correct type!
Chris Lattner6d6b3cc2009-01-02 08:49:06 +00002097 for (unsigned i = 0, e = Elts.size(); i != e; ++i) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002098 if (Elts[i]->getType() != Elts[0]->getType())
2099 return Error(FirstEltLoc,
2100 "array element #" + utostr(i) +
2101 " is not of type '" +Elts[0]->getType()->getDescription());
2102 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002103
Owen Anderson1fd70962009-07-28 18:32:17 +00002104 ID.ConstantVal = ConstantArray::get(ATy, Elts.data(), Elts.size());
Chris Lattnerdf986172009-01-02 07:01:27 +00002105 ID.Kind = ValID::t_Constant;
2106 return false;
2107 }
2108 case lltok::kw_c: // c "foo"
2109 Lex.Lex();
Owen Anderson1d0be152009-08-13 21:58:54 +00002110 ID.ConstantVal = ConstantArray::get(Context, Lex.getStrVal(), false);
Chris Lattnerdf986172009-01-02 07:01:27 +00002111 if (ParseToken(lltok::StringConstant, "expected string")) return true;
2112 ID.Kind = ValID::t_Constant;
2113 return false;
2114
2115 case lltok::kw_asm: {
Dale Johannesen8ba2d5b2009-10-21 23:28:00 +00002116 // ValID ::= 'asm' SideEffect? AlignStack? STRINGCONSTANT ',' STRINGCONSTANT
2117 bool HasSideEffect, AlignStack;
Chris Lattnerdf986172009-01-02 07:01:27 +00002118 Lex.Lex();
2119 if (ParseOptionalToken(lltok::kw_sideeffect, HasSideEffect) ||
Dale Johannesen8ba2d5b2009-10-21 23:28:00 +00002120 ParseOptionalToken(lltok::kw_alignstack, AlignStack) ||
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002121 ParseStringConstant(ID.StrVal) ||
2122 ParseToken(lltok::comma, "expected comma in inline asm expression") ||
Chris Lattnerdf986172009-01-02 07:01:27 +00002123 ParseToken(lltok::StringConstant, "expected constraint string"))
2124 return true;
2125 ID.StrVal2 = Lex.getStrVal();
Daniel Dunbarf0bb41c2009-11-07 23:51:55 +00002126 ID.UIntVal = unsigned(HasSideEffect) | (unsigned(AlignStack)<<1);
Chris Lattnerdf986172009-01-02 07:01:27 +00002127 ID.Kind = ValID::t_InlineAsm;
2128 return false;
2129 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002130
Chris Lattner09d9ef42009-10-28 03:39:23 +00002131 case lltok::kw_blockaddress: {
2132 // ValID ::= 'blockaddress' '(' @foo ',' %bar ')'
2133 Lex.Lex();
2134
2135 ValID Fn, Label;
2136 LocTy FnLoc, LabelLoc;
2137
2138 if (ParseToken(lltok::lparen, "expected '(' in block address expression") ||
2139 ParseValID(Fn) ||
2140 ParseToken(lltok::comma, "expected comma in block address expression")||
2141 ParseValID(Label) ||
2142 ParseToken(lltok::rparen, "expected ')' in block address expression"))
2143 return true;
Chris Lattnercdfc9402009-11-01 01:27:45 +00002144
Chris Lattner09d9ef42009-10-28 03:39:23 +00002145 if (Fn.Kind != ValID::t_GlobalID && Fn.Kind != ValID::t_GlobalName)
2146 return Error(Fn.Loc, "expected function name in blockaddress");
Chris Lattnercdfc9402009-11-01 01:27:45 +00002147 if (Label.Kind != ValID::t_LocalID && Label.Kind != ValID::t_LocalName)
Chris Lattner09d9ef42009-10-28 03:39:23 +00002148 return Error(Label.Loc, "expected basic block name in blockaddress");
2149
2150 // Make a global variable as a placeholder for this reference.
2151 GlobalVariable *FwdRef = new GlobalVariable(*M, Type::getInt8Ty(Context),
2152 false, GlobalValue::InternalLinkage,
2153 0, "");
2154 ForwardRefBlockAddresses[Fn].push_back(std::make_pair(Label, FwdRef));
2155 ID.ConstantVal = FwdRef;
2156 ID.Kind = ValID::t_Constant;
2157 return false;
2158 }
2159
Chris Lattnerdf986172009-01-02 07:01:27 +00002160 case lltok::kw_trunc:
2161 case lltok::kw_zext:
2162 case lltok::kw_sext:
2163 case lltok::kw_fptrunc:
2164 case lltok::kw_fpext:
2165 case lltok::kw_bitcast:
2166 case lltok::kw_uitofp:
2167 case lltok::kw_sitofp:
2168 case lltok::kw_fptoui:
Daniel Dunbara279bc32009-09-20 02:20:51 +00002169 case lltok::kw_fptosi:
Chris Lattnerdf986172009-01-02 07:01:27 +00002170 case lltok::kw_inttoptr:
Daniel Dunbara279bc32009-09-20 02:20:51 +00002171 case lltok::kw_ptrtoint: {
Chris Lattnerdf986172009-01-02 07:01:27 +00002172 unsigned Opc = Lex.getUIntVal();
Owen Anderson1d0be152009-08-13 21:58:54 +00002173 PATypeHolder DestTy(Type::getVoidTy(Context));
Chris Lattnerdf986172009-01-02 07:01:27 +00002174 Constant *SrcVal;
2175 Lex.Lex();
2176 if (ParseToken(lltok::lparen, "expected '(' after constantexpr cast") ||
2177 ParseGlobalTypeAndValue(SrcVal) ||
Dan Gohman24b108b2009-06-15 21:52:11 +00002178 ParseToken(lltok::kw_to, "expected 'to' in constantexpr cast") ||
Chris Lattnerdf986172009-01-02 07:01:27 +00002179 ParseType(DestTy) ||
2180 ParseToken(lltok::rparen, "expected ')' at end of constantexpr cast"))
2181 return true;
2182 if (!CastInst::castIsValid((Instruction::CastOps)Opc, SrcVal, DestTy))
2183 return Error(ID.Loc, "invalid cast opcode for cast from '" +
2184 SrcVal->getType()->getDescription() + "' to '" +
2185 DestTy->getDescription() + "'");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002186 ID.ConstantVal = ConstantExpr::getCast((Instruction::CastOps)Opc,
Owen Andersonfba933c2009-07-01 23:57:11 +00002187 SrcVal, DestTy);
Chris Lattnerdf986172009-01-02 07:01:27 +00002188 ID.Kind = ValID::t_Constant;
2189 return false;
2190 }
2191 case lltok::kw_extractvalue: {
2192 Lex.Lex();
2193 Constant *Val;
2194 SmallVector<unsigned, 4> Indices;
2195 if (ParseToken(lltok::lparen, "expected '(' in extractvalue constantexpr")||
2196 ParseGlobalTypeAndValue(Val) ||
2197 ParseIndexList(Indices) ||
2198 ParseToken(lltok::rparen, "expected ')' in extractvalue constantexpr"))
2199 return true;
Devang Patele8bc45a2009-11-03 19:06:07 +00002200
Chris Lattnerfdfeb692010-02-12 20:49:41 +00002201 if (!Val->getType()->isAggregateType())
2202 return Error(ID.Loc, "extractvalue operand must be aggregate type");
Chris Lattnerdf986172009-01-02 07:01:27 +00002203 if (!ExtractValueInst::getIndexedType(Val->getType(), Indices.begin(),
2204 Indices.end()))
2205 return Error(ID.Loc, "invalid indices for extractvalue");
Jay Foade3e51c02009-05-21 09:52:38 +00002206 ID.ConstantVal =
Owen Andersonbaf3c402009-07-29 18:55:55 +00002207 ConstantExpr::getExtractValue(Val, Indices.data(), Indices.size());
Chris Lattnerdf986172009-01-02 07:01:27 +00002208 ID.Kind = ValID::t_Constant;
2209 return false;
2210 }
2211 case lltok::kw_insertvalue: {
2212 Lex.Lex();
2213 Constant *Val0, *Val1;
2214 SmallVector<unsigned, 4> Indices;
2215 if (ParseToken(lltok::lparen, "expected '(' in insertvalue constantexpr")||
2216 ParseGlobalTypeAndValue(Val0) ||
2217 ParseToken(lltok::comma, "expected comma in insertvalue constantexpr")||
2218 ParseGlobalTypeAndValue(Val1) ||
2219 ParseIndexList(Indices) ||
2220 ParseToken(lltok::rparen, "expected ')' in insertvalue constantexpr"))
2221 return true;
Chris Lattnerfdfeb692010-02-12 20:49:41 +00002222 if (!Val0->getType()->isAggregateType())
2223 return Error(ID.Loc, "insertvalue operand must be aggregate type");
Chris Lattnerdf986172009-01-02 07:01:27 +00002224 if (!ExtractValueInst::getIndexedType(Val0->getType(), Indices.begin(),
2225 Indices.end()))
2226 return Error(ID.Loc, "invalid indices for insertvalue");
Owen Andersonbaf3c402009-07-29 18:55:55 +00002227 ID.ConstantVal = ConstantExpr::getInsertValue(Val0, Val1,
Owen Andersonfba933c2009-07-01 23:57:11 +00002228 Indices.data(), Indices.size());
Chris Lattnerdf986172009-01-02 07:01:27 +00002229 ID.Kind = ValID::t_Constant;
2230 return false;
2231 }
2232 case lltok::kw_icmp:
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00002233 case lltok::kw_fcmp: {
Chris Lattnerdf986172009-01-02 07:01:27 +00002234 unsigned PredVal, Opc = Lex.getUIntVal();
2235 Constant *Val0, *Val1;
2236 Lex.Lex();
2237 if (ParseCmpPredicate(PredVal, Opc) ||
2238 ParseToken(lltok::lparen, "expected '(' in compare constantexpr") ||
2239 ParseGlobalTypeAndValue(Val0) ||
2240 ParseToken(lltok::comma, "expected comma in compare constantexpr") ||
2241 ParseGlobalTypeAndValue(Val1) ||
2242 ParseToken(lltok::rparen, "expected ')' in compare constantexpr"))
2243 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002244
Chris Lattnerdf986172009-01-02 07:01:27 +00002245 if (Val0->getType() != Val1->getType())
2246 return Error(ID.Loc, "compare operands must have the same type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002247
Chris Lattnerdf986172009-01-02 07:01:27 +00002248 CmpInst::Predicate Pred = (CmpInst::Predicate)PredVal;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002249
Chris Lattnerdf986172009-01-02 07:01:27 +00002250 if (Opc == Instruction::FCmp) {
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00002251 if (!Val0->getType()->isFPOrFPVectorTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002252 return Error(ID.Loc, "fcmp requires floating point operands");
Owen Andersonbaf3c402009-07-29 18:55:55 +00002253 ID.ConstantVal = ConstantExpr::getFCmp(Pred, Val0, Val1);
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00002254 } else {
2255 assert(Opc == Instruction::ICmp && "Unexpected opcode for CmpInst!");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00002256 if (!Val0->getType()->isIntOrIntVectorTy() &&
Duncan Sands1df98592010-02-16 11:11:14 +00002257 !Val0->getType()->isPointerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002258 return Error(ID.Loc, "icmp requires pointer or integer operands");
Owen Andersonbaf3c402009-07-29 18:55:55 +00002259 ID.ConstantVal = ConstantExpr::getICmp(Pred, Val0, Val1);
Chris Lattnerdf986172009-01-02 07:01:27 +00002260 }
2261 ID.Kind = ValID::t_Constant;
2262 return false;
2263 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002264
Chris Lattnerdf986172009-01-02 07:01:27 +00002265 // Binary Operators.
2266 case lltok::kw_add:
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002267 case lltok::kw_fadd:
Chris Lattnerdf986172009-01-02 07:01:27 +00002268 case lltok::kw_sub:
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002269 case lltok::kw_fsub:
Chris Lattnerdf986172009-01-02 07:01:27 +00002270 case lltok::kw_mul:
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002271 case lltok::kw_fmul:
Chris Lattnerdf986172009-01-02 07:01:27 +00002272 case lltok::kw_udiv:
2273 case lltok::kw_sdiv:
2274 case lltok::kw_fdiv:
2275 case lltok::kw_urem:
2276 case lltok::kw_srem:
2277 case lltok::kw_frem: {
Dan Gohman59858cf2009-07-27 16:11:46 +00002278 bool NUW = false;
2279 bool NSW = false;
2280 bool Exact = false;
Chris Lattnerdf986172009-01-02 07:01:27 +00002281 unsigned Opc = Lex.getUIntVal();
2282 Constant *Val0, *Val1;
2283 Lex.Lex();
Dan Gohman59858cf2009-07-27 16:11:46 +00002284 LocTy ModifierLoc = Lex.getLoc();
2285 if (Opc == Instruction::Add ||
2286 Opc == Instruction::Sub ||
2287 Opc == Instruction::Mul) {
2288 if (EatIfPresent(lltok::kw_nuw))
2289 NUW = true;
2290 if (EatIfPresent(lltok::kw_nsw)) {
2291 NSW = true;
2292 if (EatIfPresent(lltok::kw_nuw))
2293 NUW = true;
2294 }
2295 } else if (Opc == Instruction::SDiv) {
2296 if (EatIfPresent(lltok::kw_exact))
2297 Exact = true;
2298 }
Chris Lattnerdf986172009-01-02 07:01:27 +00002299 if (ParseToken(lltok::lparen, "expected '(' in binary constantexpr") ||
2300 ParseGlobalTypeAndValue(Val0) ||
2301 ParseToken(lltok::comma, "expected comma in binary constantexpr") ||
2302 ParseGlobalTypeAndValue(Val1) ||
2303 ParseToken(lltok::rparen, "expected ')' in binary constantexpr"))
2304 return true;
2305 if (Val0->getType() != Val1->getType())
2306 return Error(ID.Loc, "operands of constexpr must have same type");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00002307 if (!Val0->getType()->isIntOrIntVectorTy()) {
Dan Gohman59858cf2009-07-27 16:11:46 +00002308 if (NUW)
2309 return Error(ModifierLoc, "nuw only applies to integer operations");
2310 if (NSW)
2311 return Error(ModifierLoc, "nsw only applies to integer operations");
2312 }
2313 // API compatibility: Accept either integer or floating-point types with
2314 // add, sub, and mul.
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00002315 if (!Val0->getType()->isIntOrIntVectorTy() &&
2316 !Val0->getType()->isFPOrFPVectorTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002317 return Error(ID.Loc,"constexpr requires integer, fp, or vector operands");
Dan Gohmanf8dbee72009-09-07 23:54:19 +00002318 unsigned Flags = 0;
2319 if (NUW) Flags |= OverflowingBinaryOperator::NoUnsignedWrap;
2320 if (NSW) Flags |= OverflowingBinaryOperator::NoSignedWrap;
2321 if (Exact) Flags |= SDivOperator::IsExact;
2322 Constant *C = ConstantExpr::get(Opc, Val0, Val1, Flags);
Dan Gohman59858cf2009-07-27 16:11:46 +00002323 ID.ConstantVal = C;
Chris Lattnerdf986172009-01-02 07:01:27 +00002324 ID.Kind = ValID::t_Constant;
2325 return false;
2326 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002327
Chris Lattnerdf986172009-01-02 07:01:27 +00002328 // Logical Operations
2329 case lltok::kw_shl:
2330 case lltok::kw_lshr:
2331 case lltok::kw_ashr:
2332 case lltok::kw_and:
2333 case lltok::kw_or:
2334 case lltok::kw_xor: {
2335 unsigned Opc = Lex.getUIntVal();
2336 Constant *Val0, *Val1;
2337 Lex.Lex();
2338 if (ParseToken(lltok::lparen, "expected '(' in logical constantexpr") ||
2339 ParseGlobalTypeAndValue(Val0) ||
2340 ParseToken(lltok::comma, "expected comma in logical constantexpr") ||
2341 ParseGlobalTypeAndValue(Val1) ||
2342 ParseToken(lltok::rparen, "expected ')' in logical constantexpr"))
2343 return true;
2344 if (Val0->getType() != Val1->getType())
2345 return Error(ID.Loc, "operands of constexpr must have same type");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00002346 if (!Val0->getType()->isIntOrIntVectorTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002347 return Error(ID.Loc,
2348 "constexpr requires integer or integer vector operands");
Owen Andersonbaf3c402009-07-29 18:55:55 +00002349 ID.ConstantVal = ConstantExpr::get(Opc, Val0, Val1);
Chris Lattnerdf986172009-01-02 07:01:27 +00002350 ID.Kind = ValID::t_Constant;
2351 return false;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002352 }
2353
Chris Lattnerdf986172009-01-02 07:01:27 +00002354 case lltok::kw_getelementptr:
2355 case lltok::kw_shufflevector:
2356 case lltok::kw_insertelement:
2357 case lltok::kw_extractelement:
2358 case lltok::kw_select: {
2359 unsigned Opc = Lex.getUIntVal();
2360 SmallVector<Constant*, 16> Elts;
Dan Gohmandd8004d2009-07-27 21:53:46 +00002361 bool InBounds = false;
Chris Lattnerdf986172009-01-02 07:01:27 +00002362 Lex.Lex();
Dan Gohmandd8004d2009-07-27 21:53:46 +00002363 if (Opc == Instruction::GetElementPtr)
Dan Gohmandcb40a32009-07-29 15:58:36 +00002364 InBounds = EatIfPresent(lltok::kw_inbounds);
Chris Lattnerdf986172009-01-02 07:01:27 +00002365 if (ParseToken(lltok::lparen, "expected '(' in constantexpr") ||
2366 ParseGlobalValueVector(Elts) ||
2367 ParseToken(lltok::rparen, "expected ')' in constantexpr"))
2368 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002369
Chris Lattnerdf986172009-01-02 07:01:27 +00002370 if (Opc == Instruction::GetElementPtr) {
Duncan Sands1df98592010-02-16 11:11:14 +00002371 if (Elts.size() == 0 || !Elts[0]->getType()->isPointerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002372 return Error(ID.Loc, "getelementptr requires pointer operand");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002373
Chris Lattnerdf986172009-01-02 07:01:27 +00002374 if (!GetElementPtrInst::getIndexedType(Elts[0]->getType(),
Eli Friedman4e9bac32009-07-24 21:56:17 +00002375 (Value**)(Elts.data() + 1),
2376 Elts.size() - 1))
Chris Lattnerdf986172009-01-02 07:01:27 +00002377 return Error(ID.Loc, "invalid indices for getelementptr");
Dan Gohmanf8dbee72009-09-07 23:54:19 +00002378 ID.ConstantVal = InBounds ?
2379 ConstantExpr::getInBoundsGetElementPtr(Elts[0],
2380 Elts.data() + 1,
2381 Elts.size() - 1) :
2382 ConstantExpr::getGetElementPtr(Elts[0],
2383 Elts.data() + 1, Elts.size() - 1);
Chris Lattnerdf986172009-01-02 07:01:27 +00002384 } else if (Opc == Instruction::Select) {
2385 if (Elts.size() != 3)
2386 return Error(ID.Loc, "expected three operands to select");
2387 if (const char *Reason = SelectInst::areInvalidOperands(Elts[0], Elts[1],
2388 Elts[2]))
2389 return Error(ID.Loc, Reason);
Owen Andersonbaf3c402009-07-29 18:55:55 +00002390 ID.ConstantVal = ConstantExpr::getSelect(Elts[0], Elts[1], Elts[2]);
Chris Lattnerdf986172009-01-02 07:01:27 +00002391 } else if (Opc == Instruction::ShuffleVector) {
2392 if (Elts.size() != 3)
2393 return Error(ID.Loc, "expected three operands to shufflevector");
2394 if (!ShuffleVectorInst::isValidOperands(Elts[0], Elts[1], Elts[2]))
2395 return Error(ID.Loc, "invalid operands to shufflevector");
Owen Andersonfba933c2009-07-01 23:57:11 +00002396 ID.ConstantVal =
Owen Andersonbaf3c402009-07-29 18:55:55 +00002397 ConstantExpr::getShuffleVector(Elts[0], Elts[1],Elts[2]);
Chris Lattnerdf986172009-01-02 07:01:27 +00002398 } else if (Opc == Instruction::ExtractElement) {
2399 if (Elts.size() != 2)
2400 return Error(ID.Loc, "expected two operands to extractelement");
2401 if (!ExtractElementInst::isValidOperands(Elts[0], Elts[1]))
2402 return Error(ID.Loc, "invalid extractelement operands");
Owen Andersonbaf3c402009-07-29 18:55:55 +00002403 ID.ConstantVal = ConstantExpr::getExtractElement(Elts[0], Elts[1]);
Chris Lattnerdf986172009-01-02 07:01:27 +00002404 } else {
2405 assert(Opc == Instruction::InsertElement && "Unknown opcode");
2406 if (Elts.size() != 3)
2407 return Error(ID.Loc, "expected three operands to insertelement");
2408 if (!InsertElementInst::isValidOperands(Elts[0], Elts[1], Elts[2]))
2409 return Error(ID.Loc, "invalid insertelement operands");
Owen Andersonfba933c2009-07-01 23:57:11 +00002410 ID.ConstantVal =
Owen Andersonbaf3c402009-07-29 18:55:55 +00002411 ConstantExpr::getInsertElement(Elts[0], Elts[1],Elts[2]);
Chris Lattnerdf986172009-01-02 07:01:27 +00002412 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002413
Chris Lattnerdf986172009-01-02 07:01:27 +00002414 ID.Kind = ValID::t_Constant;
2415 return false;
2416 }
2417 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002418
Chris Lattnerdf986172009-01-02 07:01:27 +00002419 Lex.Lex();
2420 return false;
2421}
2422
2423/// ParseGlobalValue - Parse a global value with the specified type.
Victor Hernandez92f238d2010-01-11 22:31:58 +00002424bool LLParser::ParseGlobalValue(const Type *Ty, Constant *&C) {
2425 C = 0;
Chris Lattnerdf986172009-01-02 07:01:27 +00002426 ValID ID;
Victor Hernandez92f238d2010-01-11 22:31:58 +00002427 Value *V = NULL;
2428 bool Parsed = ParseValID(ID) ||
2429 ConvertValIDToValue(Ty, ID, V, NULL);
2430 if (V && !(C = dyn_cast<Constant>(V)))
2431 return Error(ID.Loc, "global values must be constants");
2432 return Parsed;
Chris Lattnerdf986172009-01-02 07:01:27 +00002433}
2434
Victor Hernandez92f238d2010-01-11 22:31:58 +00002435bool LLParser::ParseGlobalTypeAndValue(Constant *&V) {
2436 PATypeHolder Type(Type::getVoidTy(Context));
2437 return ParseType(Type) ||
2438 ParseGlobalValue(Type, V);
2439}
2440
2441/// ParseGlobalValueVector
2442/// ::= /*empty*/
2443/// ::= TypeAndValue (',' TypeAndValue)*
2444bool LLParser::ParseGlobalValueVector(SmallVectorImpl<Constant*> &Elts) {
2445 // Empty list.
2446 if (Lex.getKind() == lltok::rbrace ||
2447 Lex.getKind() == lltok::rsquare ||
2448 Lex.getKind() == lltok::greater ||
2449 Lex.getKind() == lltok::rparen)
2450 return false;
2451
2452 Constant *C;
2453 if (ParseGlobalTypeAndValue(C)) return true;
2454 Elts.push_back(C);
2455
2456 while (EatIfPresent(lltok::comma)) {
2457 if (ParseGlobalTypeAndValue(C)) return true;
2458 Elts.push_back(C);
2459 }
2460
2461 return false;
2462}
2463
2464
2465//===----------------------------------------------------------------------===//
2466// Function Parsing.
2467//===----------------------------------------------------------------------===//
2468
2469bool LLParser::ConvertValIDToValue(const Type *Ty, ValID &ID, Value *&V,
2470 PerFunctionState *PFS) {
Duncan Sands1df98592010-02-16 11:11:14 +00002471 if (Ty->isFunctionTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002472 return Error(ID.Loc, "functions are not values, refer to them as pointers");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002473
Chris Lattnerdf986172009-01-02 07:01:27 +00002474 switch (ID.Kind) {
Daniel Dunbara279bc32009-09-20 02:20:51 +00002475 default: llvm_unreachable("Unknown ValID!");
Chris Lattnerdf986172009-01-02 07:01:27 +00002476 case ValID::t_LocalID:
Victor Hernandez92f238d2010-01-11 22:31:58 +00002477 if (!PFS) return Error(ID.Loc, "invalid use of function-local name");
2478 V = PFS->GetVal(ID.UIntVal, Ty, ID.Loc);
2479 return (V == 0);
Chris Lattnerdf986172009-01-02 07:01:27 +00002480 case ValID::t_LocalName:
Victor Hernandez92f238d2010-01-11 22:31:58 +00002481 if (!PFS) return Error(ID.Loc, "invalid use of function-local name");
2482 V = PFS->GetVal(ID.StrVal, Ty, ID.Loc);
2483 return (V == 0);
2484 case ValID::t_InlineAsm: {
2485 const PointerType *PTy = dyn_cast<PointerType>(Ty);
2486 const FunctionType *FTy =
2487 PTy ? dyn_cast<FunctionType>(PTy->getElementType()) : 0;
2488 if (!FTy || !InlineAsm::Verify(FTy, ID.StrVal2))
2489 return Error(ID.Loc, "invalid type for inline asm constraint string");
2490 V = InlineAsm::get(FTy, ID.StrVal, ID.StrVal2, ID.UIntVal&1, ID.UIntVal>>1);
2491 return false;
2492 }
2493 case ValID::t_MDNode:
2494 if (!Ty->isMetadataTy())
2495 return Error(ID.Loc, "metadata value must have metadata type");
2496 V = ID.MDNodeVal;
2497 return false;
2498 case ValID::t_MDString:
2499 if (!Ty->isMetadataTy())
2500 return Error(ID.Loc, "metadata value must have metadata type");
2501 V = ID.MDStringVal;
2502 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00002503 case ValID::t_GlobalName:
2504 V = GetGlobalVal(ID.StrVal, Ty, ID.Loc);
2505 return V == 0;
2506 case ValID::t_GlobalID:
2507 V = GetGlobalVal(ID.UIntVal, Ty, ID.Loc);
2508 return V == 0;
2509 case ValID::t_APSInt:
Duncan Sands1df98592010-02-16 11:11:14 +00002510 if (!Ty->isIntegerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002511 return Error(ID.Loc, "integer constant must have integer type");
2512 ID.APSIntVal.extOrTrunc(Ty->getPrimitiveSizeInBits());
Owen Andersoneed707b2009-07-24 23:12:02 +00002513 V = ConstantInt::get(Context, ID.APSIntVal);
Chris Lattnerdf986172009-01-02 07:01:27 +00002514 return false;
2515 case ValID::t_APFloat:
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00002516 if (!Ty->isFloatingPointTy() ||
Chris Lattnerdf986172009-01-02 07:01:27 +00002517 !ConstantFP::isValueValidForType(Ty, ID.APFloatVal))
2518 return Error(ID.Loc, "floating point constant invalid for type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002519
Chris Lattnerdf986172009-01-02 07:01:27 +00002520 // The lexer has no type info, so builds all float and double FP constants
2521 // as double. Fix this here. Long double does not need this.
2522 if (&ID.APFloatVal.getSemantics() == &APFloat::IEEEdouble &&
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00002523 Ty->isFloatTy()) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002524 bool Ignored;
2525 ID.APFloatVal.convert(APFloat::IEEEsingle, APFloat::rmNearestTiesToEven,
2526 &Ignored);
2527 }
Owen Anderson6f83c9c2009-07-27 20:59:43 +00002528 V = ConstantFP::get(Context, ID.APFloatVal);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002529
Chris Lattner959873d2009-01-05 18:24:23 +00002530 if (V->getType() != Ty)
2531 return Error(ID.Loc, "floating point constant does not have type '" +
2532 Ty->getDescription() + "'");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002533
Chris Lattnerdf986172009-01-02 07:01:27 +00002534 return false;
2535 case ValID::t_Null:
Duncan Sands1df98592010-02-16 11:11:14 +00002536 if (!Ty->isPointerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002537 return Error(ID.Loc, "null must be a pointer type");
Owen Anderson9e9a0d52009-07-30 23:03:37 +00002538 V = ConstantPointerNull::get(cast<PointerType>(Ty));
Chris Lattnerdf986172009-01-02 07:01:27 +00002539 return false;
2540 case ValID::t_Undef:
Chris Lattnere67c1aa2009-01-05 08:13:38 +00002541 // FIXME: LabelTy should not be a first-class type.
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00002542 if ((!Ty->isFirstClassType() || Ty->isLabelTy()) &&
Duncan Sands47c51882010-02-16 14:50:09 +00002543 !Ty->isOpaqueTy())
Chris Lattnere67c1aa2009-01-05 08:13:38 +00002544 return Error(ID.Loc, "invalid type for undef constant");
Owen Anderson9e9a0d52009-07-30 23:03:37 +00002545 V = UndefValue::get(Ty);
Chris Lattnerdf986172009-01-02 07:01:27 +00002546 return false;
Chris Lattner081b5052009-01-05 07:52:51 +00002547 case ValID::t_EmptyArray:
Duncan Sands1df98592010-02-16 11:11:14 +00002548 if (!Ty->isArrayTy() || cast<ArrayType>(Ty)->getNumElements() != 0)
Chris Lattner081b5052009-01-05 07:52:51 +00002549 return Error(ID.Loc, "invalid empty array initializer");
Owen Anderson9e9a0d52009-07-30 23:03:37 +00002550 V = UndefValue::get(Ty);
Chris Lattner081b5052009-01-05 07:52:51 +00002551 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00002552 case ValID::t_Zero:
Chris Lattnere67c1aa2009-01-05 08:13:38 +00002553 // FIXME: LabelTy should not be a first-class type.
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00002554 if (!Ty->isFirstClassType() || Ty->isLabelTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002555 return Error(ID.Loc, "invalid type for null constant");
Owen Andersona7235ea2009-07-31 20:28:14 +00002556 V = Constant::getNullValue(Ty);
Chris Lattnerdf986172009-01-02 07:01:27 +00002557 return false;
2558 case ValID::t_Constant:
Chris Lattnerfdfeb692010-02-12 20:49:41 +00002559 if (ID.ConstantVal->getType() != Ty) {
2560 // Allow a constant struct with a single member to be converted
2561 // to a union, if the union has a member which is the same type
2562 // as the struct member.
2563 if (const UnionType* utype = dyn_cast<UnionType>(Ty)) {
2564 return ParseUnionValue(utype, ID, V);
2565 }
2566
Chris Lattnerdf986172009-01-02 07:01:27 +00002567 return Error(ID.Loc, "constant expression type mismatch");
Chris Lattnerfdfeb692010-02-12 20:49:41 +00002568 }
2569
Chris Lattnerdf986172009-01-02 07:01:27 +00002570 V = ID.ConstantVal;
2571 return false;
2572 }
2573}
Daniel Dunbara279bc32009-09-20 02:20:51 +00002574
Chris Lattnerdf986172009-01-02 07:01:27 +00002575bool LLParser::ParseValue(const Type *Ty, Value *&V, PerFunctionState &PFS) {
2576 V = 0;
2577 ValID ID;
Victor Hernandezbf170d42010-01-05 22:22:14 +00002578 return ParseValID(ID, &PFS) ||
Victor Hernandez92f238d2010-01-11 22:31:58 +00002579 ConvertValIDToValue(Ty, ID, V, &PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00002580}
2581
2582bool LLParser::ParseTypeAndValue(Value *&V, PerFunctionState &PFS) {
Owen Anderson1d0be152009-08-13 21:58:54 +00002583 PATypeHolder T(Type::getVoidTy(Context));
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002584 return ParseType(T) ||
2585 ParseValue(T, V, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00002586}
2587
Chris Lattnerf9be95f2009-10-27 19:13:16 +00002588bool LLParser::ParseTypeAndBasicBlock(BasicBlock *&BB, LocTy &Loc,
2589 PerFunctionState &PFS) {
2590 Value *V;
2591 Loc = Lex.getLoc();
2592 if (ParseTypeAndValue(V, PFS)) return true;
2593 if (!isa<BasicBlock>(V))
2594 return Error(Loc, "expected a basic block");
2595 BB = cast<BasicBlock>(V);
2596 return false;
2597}
2598
Chris Lattnerfdfeb692010-02-12 20:49:41 +00002599bool LLParser::ParseUnionValue(const UnionType* utype, ValID &ID, Value *&V) {
2600 if (const StructType* stype = dyn_cast<StructType>(ID.ConstantVal->getType())) {
2601 if (stype->getNumContainedTypes() != 1)
2602 return Error(ID.Loc, "constant expression type mismatch");
2603 int index = utype->getElementTypeIndex(stype->getContainedType(0));
2604 if (index < 0)
2605 return Error(ID.Loc, "initializer type is not a member of the union");
2606
2607 V = ConstantUnion::get(
2608 utype, cast<Constant>(ID.ConstantVal->getOperand(0)));
2609 return false;
2610 }
2611
2612 return Error(ID.Loc, "constant expression type mismatch");
2613}
2614
Chris Lattnerf9be95f2009-10-27 19:13:16 +00002615
Chris Lattnerdf986172009-01-02 07:01:27 +00002616/// FunctionHeader
2617/// ::= OptionalLinkage OptionalVisibility OptionalCallingConv OptRetAttrs
2618/// Type GlobalName '(' ArgList ')' OptFuncAttrs OptSection
2619/// OptionalAlign OptGC
2620bool LLParser::ParseFunctionHeader(Function *&Fn, bool isDefine) {
2621 // Parse the linkage.
2622 LocTy LinkageLoc = Lex.getLoc();
2623 unsigned Linkage;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002624
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00002625 unsigned Visibility, RetAttrs;
2626 CallingConv::ID CC;
Owen Anderson1d0be152009-08-13 21:58:54 +00002627 PATypeHolder RetType(Type::getVoidTy(Context));
Chris Lattnerdf986172009-01-02 07:01:27 +00002628 LocTy RetTypeLoc = Lex.getLoc();
2629 if (ParseOptionalLinkage(Linkage) ||
2630 ParseOptionalVisibility(Visibility) ||
2631 ParseOptionalCallingConv(CC) ||
2632 ParseOptionalAttrs(RetAttrs, 1) ||
Chris Lattnera9a9e072009-03-09 04:49:14 +00002633 ParseType(RetType, RetTypeLoc, true /*void allowed*/))
Chris Lattnerdf986172009-01-02 07:01:27 +00002634 return true;
2635
2636 // Verify that the linkage is ok.
2637 switch ((GlobalValue::LinkageTypes)Linkage) {
2638 case GlobalValue::ExternalLinkage:
2639 break; // always ok.
2640 case GlobalValue::DLLImportLinkage:
Duncan Sands5f4ee1f2009-03-11 08:08:06 +00002641 case GlobalValue::ExternalWeakLinkage:
Chris Lattnerdf986172009-01-02 07:01:27 +00002642 if (isDefine)
2643 return Error(LinkageLoc, "invalid linkage for function definition");
2644 break;
Rafael Espindolabb46f522009-01-15 20:18:42 +00002645 case GlobalValue::PrivateLinkage:
Bill Wendling3d10a5a2009-07-20 01:03:30 +00002646 case GlobalValue::LinkerPrivateLinkage:
Chris Lattnerdf986172009-01-02 07:01:27 +00002647 case GlobalValue::InternalLinkage:
Nick Lewycky55f64db2009-04-13 07:02:02 +00002648 case GlobalValue::AvailableExternallyLinkage:
Duncan Sands667d4b82009-03-07 15:45:40 +00002649 case GlobalValue::LinkOnceAnyLinkage:
2650 case GlobalValue::LinkOnceODRLinkage:
2651 case GlobalValue::WeakAnyLinkage:
2652 case GlobalValue::WeakODRLinkage:
Chris Lattnerdf986172009-01-02 07:01:27 +00002653 case GlobalValue::DLLExportLinkage:
2654 if (!isDefine)
2655 return Error(LinkageLoc, "invalid linkage for function declaration");
2656 break;
2657 case GlobalValue::AppendingLinkage:
Duncan Sands4dc2b392009-03-11 20:14:15 +00002658 case GlobalValue::CommonLinkage:
Chris Lattnerdf986172009-01-02 07:01:27 +00002659 return Error(LinkageLoc, "invalid function linkage type");
2660 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002661
Chris Lattner99bb3152009-01-05 08:00:30 +00002662 if (!FunctionType::isValidReturnType(RetType) ||
Duncan Sands47c51882010-02-16 14:50:09 +00002663 RetType->isOpaqueTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002664 return Error(RetTypeLoc, "invalid function return type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002665
Chris Lattnerdf986172009-01-02 07:01:27 +00002666 LocTy NameLoc = Lex.getLoc();
Chris Lattnerf570e622009-02-18 21:48:13 +00002667
2668 std::string FunctionName;
2669 if (Lex.getKind() == lltok::GlobalVar) {
2670 FunctionName = Lex.getStrVal();
2671 } else if (Lex.getKind() == lltok::GlobalID) { // @42 is ok.
2672 unsigned NameID = Lex.getUIntVal();
2673
2674 if (NameID != NumberedVals.size())
2675 return TokError("function expected to be numbered '%" +
2676 utostr(NumberedVals.size()) + "'");
2677 } else {
2678 return TokError("expected function name");
2679 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002680
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002681 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +00002682
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002683 if (Lex.getKind() != lltok::lparen)
Chris Lattnerdf986172009-01-02 07:01:27 +00002684 return TokError("expected '(' in function argument list");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002685
Chris Lattnerdf986172009-01-02 07:01:27 +00002686 std::vector<ArgInfo> ArgList;
2687 bool isVarArg;
Chris Lattnerdf986172009-01-02 07:01:27 +00002688 unsigned FuncAttrs;
Chris Lattnerdf986172009-01-02 07:01:27 +00002689 std::string Section;
Chris Lattnerdf986172009-01-02 07:01:27 +00002690 unsigned Alignment;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002691 std::string GC;
2692
Chris Lattnerdfd19dd2009-01-05 18:34:07 +00002693 if (ParseArgumentList(ArgList, isVarArg, false) ||
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002694 ParseOptionalAttrs(FuncAttrs, 2) ||
2695 (EatIfPresent(lltok::kw_section) &&
2696 ParseStringConstant(Section)) ||
2697 ParseOptionalAlignment(Alignment) ||
2698 (EatIfPresent(lltok::kw_gc) &&
2699 ParseStringConstant(GC)))
2700 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00002701
2702 // If the alignment was parsed as an attribute, move to the alignment field.
2703 if (FuncAttrs & Attribute::Alignment) {
2704 Alignment = Attribute::getAlignmentFromAttrs(FuncAttrs);
2705 FuncAttrs &= ~Attribute::Alignment;
2706 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002707
Chris Lattnerdf986172009-01-02 07:01:27 +00002708 // Okay, if we got here, the function is syntactically valid. Convert types
2709 // and do semantic checks.
2710 std::vector<const Type*> ParamTypeList;
2711 SmallVector<AttributeWithIndex, 8> Attrs;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002712 // FIXME : In 3.0, stop accepting zext, sext and inreg as optional function
Chris Lattnerdf986172009-01-02 07:01:27 +00002713 // attributes.
2714 unsigned ObsoleteFuncAttrs = Attribute::ZExt|Attribute::SExt|Attribute::InReg;
2715 if (FuncAttrs & ObsoleteFuncAttrs) {
2716 RetAttrs |= FuncAttrs & ObsoleteFuncAttrs;
2717 FuncAttrs &= ~ObsoleteFuncAttrs;
2718 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002719
Chris Lattnerdf986172009-01-02 07:01:27 +00002720 if (RetAttrs != Attribute::None)
2721 Attrs.push_back(AttributeWithIndex::get(0, RetAttrs));
Daniel Dunbara279bc32009-09-20 02:20:51 +00002722
Chris Lattnerdf986172009-01-02 07:01:27 +00002723 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
2724 ParamTypeList.push_back(ArgList[i].Type);
2725 if (ArgList[i].Attrs != Attribute::None)
2726 Attrs.push_back(AttributeWithIndex::get(i+1, ArgList[i].Attrs));
2727 }
2728
2729 if (FuncAttrs != Attribute::None)
2730 Attrs.push_back(AttributeWithIndex::get(~0, FuncAttrs));
2731
2732 AttrListPtr PAL = AttrListPtr::get(Attrs.begin(), Attrs.end());
Daniel Dunbara279bc32009-09-20 02:20:51 +00002733
Benjamin Kramerf0127052010-01-05 13:12:22 +00002734 if (PAL.paramHasAttr(1, Attribute::StructRet) && !RetType->isVoidTy())
Daniel Dunbara279bc32009-09-20 02:20:51 +00002735 return Error(RetTypeLoc, "functions with 'sret' argument must return void");
2736
Owen Andersonfba933c2009-07-01 23:57:11 +00002737 const FunctionType *FT =
Owen Andersondebcb012009-07-29 22:17:13 +00002738 FunctionType::get(RetType, ParamTypeList, isVarArg);
2739 const PointerType *PFT = PointerType::getUnqual(FT);
Chris Lattnerdf986172009-01-02 07:01:27 +00002740
2741 Fn = 0;
2742 if (!FunctionName.empty()) {
2743 // If this was a definition of a forward reference, remove the definition
2744 // from the forward reference table and fill in the forward ref.
2745 std::map<std::string, std::pair<GlobalValue*, LocTy> >::iterator FRVI =
2746 ForwardRefVals.find(FunctionName);
2747 if (FRVI != ForwardRefVals.end()) {
2748 Fn = M->getFunction(FunctionName);
2749 ForwardRefVals.erase(FRVI);
2750 } else if ((Fn = M->getFunction(FunctionName))) {
2751 // If this function already exists in the symbol table, then it is
2752 // multiply defined. We accept a few cases for old backwards compat.
2753 // FIXME: Remove this stuff for LLVM 3.0.
2754 if (Fn->getType() != PFT || Fn->getAttributes() != PAL ||
2755 (!Fn->isDeclaration() && isDefine)) {
2756 // If the redefinition has different type or different attributes,
2757 // reject it. If both have bodies, reject it.
2758 return Error(NameLoc, "invalid redefinition of function '" +
2759 FunctionName + "'");
2760 } else if (Fn->isDeclaration()) {
2761 // Make sure to strip off any argument names so we can't get conflicts.
2762 for (Function::arg_iterator AI = Fn->arg_begin(), AE = Fn->arg_end();
2763 AI != AE; ++AI)
2764 AI->setName("");
2765 }
Chris Lattner1d871c52009-10-25 23:22:50 +00002766 } else if (M->getNamedValue(FunctionName)) {
2767 return Error(NameLoc, "redefinition of function '@" + FunctionName + "'");
Chris Lattnerdf986172009-01-02 07:01:27 +00002768 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002769
Dan Gohman41905542009-08-29 23:37:49 +00002770 } else {
Chris Lattnerdf986172009-01-02 07:01:27 +00002771 // If this is a definition of a forward referenced function, make sure the
2772 // types agree.
2773 std::map<unsigned, std::pair<GlobalValue*, LocTy> >::iterator I
2774 = ForwardRefValIDs.find(NumberedVals.size());
2775 if (I != ForwardRefValIDs.end()) {
2776 Fn = cast<Function>(I->second.first);
2777 if (Fn->getType() != PFT)
2778 return Error(NameLoc, "type of definition and forward reference of '@" +
2779 utostr(NumberedVals.size()) +"' disagree");
2780 ForwardRefValIDs.erase(I);
2781 }
2782 }
2783
2784 if (Fn == 0)
2785 Fn = Function::Create(FT, GlobalValue::ExternalLinkage, FunctionName, M);
2786 else // Move the forward-reference to the correct spot in the module.
2787 M->getFunctionList().splice(M->end(), M->getFunctionList(), Fn);
2788
2789 if (FunctionName.empty())
2790 NumberedVals.push_back(Fn);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002791
Chris Lattnerdf986172009-01-02 07:01:27 +00002792 Fn->setLinkage((GlobalValue::LinkageTypes)Linkage);
2793 Fn->setVisibility((GlobalValue::VisibilityTypes)Visibility);
2794 Fn->setCallingConv(CC);
2795 Fn->setAttributes(PAL);
2796 Fn->setAlignment(Alignment);
2797 Fn->setSection(Section);
2798 if (!GC.empty()) Fn->setGC(GC.c_str());
Daniel Dunbara279bc32009-09-20 02:20:51 +00002799
Chris Lattnerdf986172009-01-02 07:01:27 +00002800 // Add all of the arguments we parsed to the function.
2801 Function::arg_iterator ArgIt = Fn->arg_begin();
2802 for (unsigned i = 0, e = ArgList.size(); i != e; ++i, ++ArgIt) {
Chris Lattner5bda3792009-11-26 22:48:23 +00002803 // If we run out of arguments in the Function prototype, exit early.
2804 // FIXME: REMOVE THIS IN LLVM 3.0, this is just for the mismatch case above.
2805 if (ArgIt == Fn->arg_end()) break;
2806
Chris Lattnerdf986172009-01-02 07:01:27 +00002807 // If the argument has a name, insert it into the argument symbol table.
2808 if (ArgList[i].Name.empty()) continue;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002809
Chris Lattnerdf986172009-01-02 07:01:27 +00002810 // Set the name, if it conflicted, it will be auto-renamed.
2811 ArgIt->setName(ArgList[i].Name);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002812
Chris Lattnerdf986172009-01-02 07:01:27 +00002813 if (ArgIt->getNameStr() != ArgList[i].Name)
2814 return Error(ArgList[i].Loc, "redefinition of argument '%" +
2815 ArgList[i].Name + "'");
2816 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002817
Chris Lattnerdf986172009-01-02 07:01:27 +00002818 return false;
2819}
2820
2821
2822/// ParseFunctionBody
2823/// ::= '{' BasicBlock+ '}'
2824/// ::= 'begin' BasicBlock+ 'end' // FIXME: remove in LLVM 3.0
2825///
2826bool LLParser::ParseFunctionBody(Function &Fn) {
2827 if (Lex.getKind() != lltok::lbrace && Lex.getKind() != lltok::kw_begin)
2828 return TokError("expected '{' in function body");
2829 Lex.Lex(); // eat the {.
Daniel Dunbara279bc32009-09-20 02:20:51 +00002830
Chris Lattner09d9ef42009-10-28 03:39:23 +00002831 int FunctionNumber = -1;
2832 if (!Fn.hasName()) FunctionNumber = NumberedVals.size()-1;
2833
2834 PerFunctionState PFS(*this, Fn, FunctionNumber);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002835
Chris Lattner2fdf8db2010-01-09 19:20:07 +00002836 // We need at least one basic block.
2837 if (Lex.getKind() == lltok::rbrace || Lex.getKind() == lltok::kw_end)
2838 return TokError("function body requires at least one basic block");
2839
Chris Lattnerdf986172009-01-02 07:01:27 +00002840 while (Lex.getKind() != lltok::rbrace && Lex.getKind() != lltok::kw_end)
2841 if (ParseBasicBlock(PFS)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002842
Chris Lattnerdf986172009-01-02 07:01:27 +00002843 // Eat the }.
2844 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +00002845
Chris Lattnerdf986172009-01-02 07:01:27 +00002846 // Verify function is ok.
Chris Lattner09d9ef42009-10-28 03:39:23 +00002847 return PFS.FinishFunction();
Chris Lattnerdf986172009-01-02 07:01:27 +00002848}
2849
2850/// ParseBasicBlock
2851/// ::= LabelStr? Instruction*
2852bool LLParser::ParseBasicBlock(PerFunctionState &PFS) {
2853 // If this basic block starts out with a name, remember it.
2854 std::string Name;
2855 LocTy NameLoc = Lex.getLoc();
2856 if (Lex.getKind() == lltok::LabelStr) {
2857 Name = Lex.getStrVal();
2858 Lex.Lex();
2859 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002860
Chris Lattnerdf986172009-01-02 07:01:27 +00002861 BasicBlock *BB = PFS.DefineBB(Name, NameLoc);
2862 if (BB == 0) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002863
Chris Lattnerdf986172009-01-02 07:01:27 +00002864 std::string NameStr;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002865
Chris Lattnerdf986172009-01-02 07:01:27 +00002866 // Parse the instructions in this block until we get a terminator.
2867 Instruction *Inst;
Chris Lattner1340dd32009-12-30 05:48:36 +00002868 SmallVector<std::pair<unsigned, MDNode *>, 4> MetadataOnInst;
Chris Lattnerdf986172009-01-02 07:01:27 +00002869 do {
2870 // This instruction may have three possibilities for a name: a) none
2871 // specified, b) name specified "%foo =", c) number specified: "%4 =".
2872 LocTy NameLoc = Lex.getLoc();
2873 int NameID = -1;
2874 NameStr = "";
Daniel Dunbara279bc32009-09-20 02:20:51 +00002875
Chris Lattnerdf986172009-01-02 07:01:27 +00002876 if (Lex.getKind() == lltok::LocalVarID) {
2877 NameID = Lex.getUIntVal();
2878 Lex.Lex();
2879 if (ParseToken(lltok::equal, "expected '=' after instruction id"))
2880 return true;
2881 } else if (Lex.getKind() == lltok::LocalVar ||
2882 // FIXME: REMOVE IN LLVM 3.0
2883 Lex.getKind() == lltok::StringConstant) {
2884 NameStr = Lex.getStrVal();
2885 Lex.Lex();
2886 if (ParseToken(lltok::equal, "expected '=' after instruction name"))
2887 return true;
2888 }
Devang Patelf633a062009-09-17 23:04:48 +00002889
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00002890 switch (ParseInstruction(Inst, BB, PFS)) {
2891 default: assert(0 && "Unknown ParseInstruction result!");
2892 case InstError: return true;
2893 case InstNormal:
2894 // With a normal result, we check to see if the instruction is followed by
2895 // a comma and metadata.
2896 if (EatIfPresent(lltok::comma))
Chris Lattnerfe805242010-04-01 04:51:13 +00002897 if (ParseInstructionMetadata(Inst))
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00002898 return true;
2899 break;
2900 case InstExtraComma:
2901 // If the instruction parser ate an extra comma at the end of it, it
2902 // *must* be followed by metadata.
Chris Lattnerfe805242010-04-01 04:51:13 +00002903 if (ParseInstructionMetadata(Inst))
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00002904 return true;
2905 break;
2906 }
Devang Patelf633a062009-09-17 23:04:48 +00002907
Chris Lattnerdf986172009-01-02 07:01:27 +00002908 BB->getInstList().push_back(Inst);
2909
2910 // Set the name on the instruction.
2911 if (PFS.SetInstName(NameID, NameStr, NameLoc, Inst)) return true;
2912 } while (!isa<TerminatorInst>(Inst));
Daniel Dunbara279bc32009-09-20 02:20:51 +00002913
Chris Lattnerdf986172009-01-02 07:01:27 +00002914 return false;
2915}
2916
2917//===----------------------------------------------------------------------===//
2918// Instruction Parsing.
2919//===----------------------------------------------------------------------===//
2920
2921/// ParseInstruction - Parse one of the many different instructions.
2922///
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00002923int LLParser::ParseInstruction(Instruction *&Inst, BasicBlock *BB,
2924 PerFunctionState &PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002925 lltok::Kind Token = Lex.getKind();
2926 if (Token == lltok::Eof)
2927 return TokError("found end of file when expecting more instructions");
2928 LocTy Loc = Lex.getLoc();
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00002929 unsigned KeywordVal = Lex.getUIntVal();
Chris Lattnerdf986172009-01-02 07:01:27 +00002930 Lex.Lex(); // Eat the keyword.
Daniel Dunbara279bc32009-09-20 02:20:51 +00002931
Chris Lattnerdf986172009-01-02 07:01:27 +00002932 switch (Token) {
2933 default: return Error(Loc, "expected instruction opcode");
2934 // Terminator Instructions.
Owen Anderson1d0be152009-08-13 21:58:54 +00002935 case lltok::kw_unwind: Inst = new UnwindInst(Context); return false;
2936 case lltok::kw_unreachable: Inst = new UnreachableInst(Context); return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00002937 case lltok::kw_ret: return ParseRet(Inst, BB, PFS);
2938 case lltok::kw_br: return ParseBr(Inst, PFS);
2939 case lltok::kw_switch: return ParseSwitch(Inst, PFS);
Chris Lattnerab21db72009-10-28 00:19:10 +00002940 case lltok::kw_indirectbr: return ParseIndirectBr(Inst, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00002941 case lltok::kw_invoke: return ParseInvoke(Inst, PFS);
2942 // Binary Operators.
2943 case lltok::kw_add:
2944 case lltok::kw_sub:
Dan Gohman59858cf2009-07-27 16:11:46 +00002945 case lltok::kw_mul: {
2946 bool NUW = false;
2947 bool NSW = false;
2948 LocTy ModifierLoc = Lex.getLoc();
2949 if (EatIfPresent(lltok::kw_nuw))
2950 NUW = true;
2951 if (EatIfPresent(lltok::kw_nsw)) {
2952 NSW = true;
2953 if (EatIfPresent(lltok::kw_nuw))
2954 NUW = true;
2955 }
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002956 // API compatibility: Accept either integer or floating-point types.
Dan Gohman59858cf2009-07-27 16:11:46 +00002957 bool Result = ParseArithmetic(Inst, PFS, KeywordVal, 0);
2958 if (!Result) {
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00002959 if (!Inst->getType()->isIntOrIntVectorTy()) {
Dan Gohman59858cf2009-07-27 16:11:46 +00002960 if (NUW)
2961 return Error(ModifierLoc, "nuw only applies to integer operations");
2962 if (NSW)
2963 return Error(ModifierLoc, "nsw only applies to integer operations");
2964 }
2965 if (NUW)
Dan Gohmanf8dbee72009-09-07 23:54:19 +00002966 cast<BinaryOperator>(Inst)->setHasNoUnsignedWrap(true);
Dan Gohman59858cf2009-07-27 16:11:46 +00002967 if (NSW)
Dan Gohmanf8dbee72009-09-07 23:54:19 +00002968 cast<BinaryOperator>(Inst)->setHasNoSignedWrap(true);
Dan Gohman59858cf2009-07-27 16:11:46 +00002969 }
2970 return Result;
2971 }
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002972 case lltok::kw_fadd:
2973 case lltok::kw_fsub:
2974 case lltok::kw_fmul: return ParseArithmetic(Inst, PFS, KeywordVal, 2);
2975
Dan Gohman59858cf2009-07-27 16:11:46 +00002976 case lltok::kw_sdiv: {
2977 bool Exact = false;
2978 if (EatIfPresent(lltok::kw_exact))
2979 Exact = true;
2980 bool Result = ParseArithmetic(Inst, PFS, KeywordVal, 1);
2981 if (!Result)
2982 if (Exact)
Dan Gohmanf8dbee72009-09-07 23:54:19 +00002983 cast<BinaryOperator>(Inst)->setIsExact(true);
Dan Gohman59858cf2009-07-27 16:11:46 +00002984 return Result;
2985 }
2986
Chris Lattnerdf986172009-01-02 07:01:27 +00002987 case lltok::kw_udiv:
Chris Lattnerdf986172009-01-02 07:01:27 +00002988 case lltok::kw_urem:
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00002989 case lltok::kw_srem: return ParseArithmetic(Inst, PFS, KeywordVal, 1);
Chris Lattnere914b592009-01-05 08:24:46 +00002990 case lltok::kw_fdiv:
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00002991 case lltok::kw_frem: return ParseArithmetic(Inst, PFS, KeywordVal, 2);
Chris Lattnerdf986172009-01-02 07:01:27 +00002992 case lltok::kw_shl:
2993 case lltok::kw_lshr:
2994 case lltok::kw_ashr:
2995 case lltok::kw_and:
2996 case lltok::kw_or:
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00002997 case lltok::kw_xor: return ParseLogical(Inst, PFS, KeywordVal);
Chris Lattnerdf986172009-01-02 07:01:27 +00002998 case lltok::kw_icmp:
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00002999 case lltok::kw_fcmp: return ParseCompare(Inst, PFS, KeywordVal);
Chris Lattnerdf986172009-01-02 07:01:27 +00003000 // Casts.
3001 case lltok::kw_trunc:
3002 case lltok::kw_zext:
3003 case lltok::kw_sext:
3004 case lltok::kw_fptrunc:
3005 case lltok::kw_fpext:
3006 case lltok::kw_bitcast:
3007 case lltok::kw_uitofp:
3008 case lltok::kw_sitofp:
3009 case lltok::kw_fptoui:
Daniel Dunbara279bc32009-09-20 02:20:51 +00003010 case lltok::kw_fptosi:
Chris Lattnerdf986172009-01-02 07:01:27 +00003011 case lltok::kw_inttoptr:
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00003012 case lltok::kw_ptrtoint: return ParseCast(Inst, PFS, KeywordVal);
Chris Lattnerdf986172009-01-02 07:01:27 +00003013 // Other.
3014 case lltok::kw_select: return ParseSelect(Inst, PFS);
Chris Lattner0088a5c2009-01-05 08:18:44 +00003015 case lltok::kw_va_arg: return ParseVA_Arg(Inst, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00003016 case lltok::kw_extractelement: return ParseExtractElement(Inst, PFS);
3017 case lltok::kw_insertelement: return ParseInsertElement(Inst, PFS);
3018 case lltok::kw_shufflevector: return ParseShuffleVector(Inst, PFS);
3019 case lltok::kw_phi: return ParsePHI(Inst, PFS);
3020 case lltok::kw_call: return ParseCall(Inst, PFS, false);
3021 case lltok::kw_tail: return ParseCall(Inst, PFS, true);
3022 // Memory.
Victor Hernandez13ad5aa2009-10-17 00:00:19 +00003023 case lltok::kw_alloca: return ParseAlloc(Inst, PFS);
3024 case lltok::kw_malloc: return ParseAlloc(Inst, PFS, BB, false);
Victor Hernandez66284e02009-10-24 04:23:03 +00003025 case lltok::kw_free: return ParseFree(Inst, PFS, BB);
Chris Lattnerdf986172009-01-02 07:01:27 +00003026 case lltok::kw_load: return ParseLoad(Inst, PFS, false);
3027 case lltok::kw_store: return ParseStore(Inst, PFS, false);
3028 case lltok::kw_volatile:
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003029 if (EatIfPresent(lltok::kw_load))
Chris Lattnerdf986172009-01-02 07:01:27 +00003030 return ParseLoad(Inst, PFS, true);
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003031 else if (EatIfPresent(lltok::kw_store))
Chris Lattnerdf986172009-01-02 07:01:27 +00003032 return ParseStore(Inst, PFS, true);
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003033 else
Chris Lattnerdf986172009-01-02 07:01:27 +00003034 return TokError("expected 'load' or 'store'");
Chris Lattnerdf986172009-01-02 07:01:27 +00003035 case lltok::kw_getresult: return ParseGetResult(Inst, PFS);
3036 case lltok::kw_getelementptr: return ParseGetElementPtr(Inst, PFS);
3037 case lltok::kw_extractvalue: return ParseExtractValue(Inst, PFS);
3038 case lltok::kw_insertvalue: return ParseInsertValue(Inst, PFS);
3039 }
3040}
3041
3042/// ParseCmpPredicate - Parse an integer or fp predicate, based on Kind.
3043bool LLParser::ParseCmpPredicate(unsigned &P, unsigned Opc) {
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00003044 if (Opc == Instruction::FCmp) {
Chris Lattnerdf986172009-01-02 07:01:27 +00003045 switch (Lex.getKind()) {
3046 default: TokError("expected fcmp predicate (e.g. 'oeq')");
3047 case lltok::kw_oeq: P = CmpInst::FCMP_OEQ; break;
3048 case lltok::kw_one: P = CmpInst::FCMP_ONE; break;
3049 case lltok::kw_olt: P = CmpInst::FCMP_OLT; break;
3050 case lltok::kw_ogt: P = CmpInst::FCMP_OGT; break;
3051 case lltok::kw_ole: P = CmpInst::FCMP_OLE; break;
3052 case lltok::kw_oge: P = CmpInst::FCMP_OGE; break;
3053 case lltok::kw_ord: P = CmpInst::FCMP_ORD; break;
3054 case lltok::kw_uno: P = CmpInst::FCMP_UNO; break;
3055 case lltok::kw_ueq: P = CmpInst::FCMP_UEQ; break;
3056 case lltok::kw_une: P = CmpInst::FCMP_UNE; break;
3057 case lltok::kw_ult: P = CmpInst::FCMP_ULT; break;
3058 case lltok::kw_ugt: P = CmpInst::FCMP_UGT; break;
3059 case lltok::kw_ule: P = CmpInst::FCMP_ULE; break;
3060 case lltok::kw_uge: P = CmpInst::FCMP_UGE; break;
3061 case lltok::kw_true: P = CmpInst::FCMP_TRUE; break;
3062 case lltok::kw_false: P = CmpInst::FCMP_FALSE; break;
3063 }
3064 } else {
3065 switch (Lex.getKind()) {
3066 default: TokError("expected icmp predicate (e.g. 'eq')");
3067 case lltok::kw_eq: P = CmpInst::ICMP_EQ; break;
3068 case lltok::kw_ne: P = CmpInst::ICMP_NE; break;
3069 case lltok::kw_slt: P = CmpInst::ICMP_SLT; break;
3070 case lltok::kw_sgt: P = CmpInst::ICMP_SGT; break;
3071 case lltok::kw_sle: P = CmpInst::ICMP_SLE; break;
3072 case lltok::kw_sge: P = CmpInst::ICMP_SGE; break;
3073 case lltok::kw_ult: P = CmpInst::ICMP_ULT; break;
3074 case lltok::kw_ugt: P = CmpInst::ICMP_UGT; break;
3075 case lltok::kw_ule: P = CmpInst::ICMP_ULE; break;
3076 case lltok::kw_uge: P = CmpInst::ICMP_UGE; break;
3077 }
3078 }
3079 Lex.Lex();
3080 return false;
3081}
3082
3083//===----------------------------------------------------------------------===//
3084// Terminator Instructions.
3085//===----------------------------------------------------------------------===//
3086
3087/// ParseRet - Parse a return instruction.
Chris Lattner3f3a0f62009-12-29 21:25:40 +00003088/// ::= 'ret' void (',' !dbg, !1)*
3089/// ::= 'ret' TypeAndValue (',' !dbg, !1)*
3090/// ::= 'ret' TypeAndValue (',' TypeAndValue)+ (',' !dbg, !1)*
Devang Patelf633a062009-09-17 23:04:48 +00003091/// [[obsolete: LLVM 3.0]]
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00003092int LLParser::ParseRet(Instruction *&Inst, BasicBlock *BB,
3093 PerFunctionState &PFS) {
Owen Anderson1d0be152009-08-13 21:58:54 +00003094 PATypeHolder Ty(Type::getVoidTy(Context));
Chris Lattnera9a9e072009-03-09 04:49:14 +00003095 if (ParseType(Ty, true /*void allowed*/)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003096
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00003097 if (Ty->isVoidTy()) {
Owen Anderson1d0be152009-08-13 21:58:54 +00003098 Inst = ReturnInst::Create(Context);
Chris Lattnerdf986172009-01-02 07:01:27 +00003099 return false;
3100 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003101
Chris Lattnerdf986172009-01-02 07:01:27 +00003102 Value *RV;
3103 if (ParseValue(Ty, RV, PFS)) return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00003104
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00003105 bool ExtraComma = false;
Devang Patelf633a062009-09-17 23:04:48 +00003106 if (EatIfPresent(lltok::comma)) {
Devang Patel0475c912009-09-29 00:01:14 +00003107 // Parse optional custom metadata, e.g. !dbg
Chris Lattner1d928312009-12-30 05:02:06 +00003108 if (Lex.getKind() == lltok::MetadataVar) {
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00003109 ExtraComma = true;
Devang Patelf633a062009-09-17 23:04:48 +00003110 } else {
3111 // The normal case is one return value.
Chris Lattner3f3a0f62009-12-29 21:25:40 +00003112 // FIXME: LLVM 3.0 remove MRV support for 'ret i32 1, i32 2', requiring
3113 // use of 'ret {i32,i32} {i32 1, i32 2}'
Devang Patelf633a062009-09-17 23:04:48 +00003114 SmallVector<Value*, 8> RVs;
3115 RVs.push_back(RV);
Daniel Dunbara279bc32009-09-20 02:20:51 +00003116
Devang Patelf633a062009-09-17 23:04:48 +00003117 do {
Devang Patel0475c912009-09-29 00:01:14 +00003118 // If optional custom metadata, e.g. !dbg is seen then this is the
3119 // end of MRV.
Chris Lattner1d928312009-12-30 05:02:06 +00003120 if (Lex.getKind() == lltok::MetadataVar)
Daniel Dunbara279bc32009-09-20 02:20:51 +00003121 break;
3122 if (ParseTypeAndValue(RV, PFS)) return true;
3123 RVs.push_back(RV);
Devang Patelf633a062009-09-17 23:04:48 +00003124 } while (EatIfPresent(lltok::comma));
3125
3126 RV = UndefValue::get(PFS.getFunction().getReturnType());
3127 for (unsigned i = 0, e = RVs.size(); i != e; ++i) {
Daniel Dunbara279bc32009-09-20 02:20:51 +00003128 Instruction *I = InsertValueInst::Create(RV, RVs[i], i, "mrv");
3129 BB->getInstList().push_back(I);
3130 RV = I;
Devang Patelf633a062009-09-17 23:04:48 +00003131 }
Chris Lattnerdf986172009-01-02 07:01:27 +00003132 }
3133 }
Devang Patelf633a062009-09-17 23:04:48 +00003134
Owen Anderson1d0be152009-08-13 21:58:54 +00003135 Inst = ReturnInst::Create(Context, RV);
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00003136 return ExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerdf986172009-01-02 07:01:27 +00003137}
3138
3139
3140/// ParseBr
3141/// ::= 'br' TypeAndValue
3142/// ::= 'br' TypeAndValue ',' TypeAndValue ',' TypeAndValue
3143bool LLParser::ParseBr(Instruction *&Inst, PerFunctionState &PFS) {
3144 LocTy Loc, Loc2;
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003145 Value *Op0;
3146 BasicBlock *Op1, *Op2;
Chris Lattnerdf986172009-01-02 07:01:27 +00003147 if (ParseTypeAndValue(Op0, Loc, PFS)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003148
Chris Lattnerdf986172009-01-02 07:01:27 +00003149 if (BasicBlock *BB = dyn_cast<BasicBlock>(Op0)) {
3150 Inst = BranchInst::Create(BB);
3151 return false;
3152 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003153
Owen Anderson1d0be152009-08-13 21:58:54 +00003154 if (Op0->getType() != Type::getInt1Ty(Context))
Chris Lattnerdf986172009-01-02 07:01:27 +00003155 return Error(Loc, "branch condition must have 'i1' type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003156
Chris Lattnerdf986172009-01-02 07:01:27 +00003157 if (ParseToken(lltok::comma, "expected ',' after branch condition") ||
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003158 ParseTypeAndBasicBlock(Op1, Loc, PFS) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003159 ParseToken(lltok::comma, "expected ',' after true destination") ||
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003160 ParseTypeAndBasicBlock(Op2, Loc2, PFS))
Chris Lattnerdf986172009-01-02 07:01:27 +00003161 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003162
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003163 Inst = BranchInst::Create(Op1, Op2, Op0);
Chris Lattnerdf986172009-01-02 07:01:27 +00003164 return false;
3165}
3166
3167/// ParseSwitch
3168/// Instruction
3169/// ::= 'switch' TypeAndValue ',' TypeAndValue '[' JumpTable ']'
3170/// JumpTable
3171/// ::= (TypeAndValue ',' TypeAndValue)*
3172bool LLParser::ParseSwitch(Instruction *&Inst, PerFunctionState &PFS) {
3173 LocTy CondLoc, BBLoc;
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003174 Value *Cond;
3175 BasicBlock *DefaultBB;
Chris Lattnerdf986172009-01-02 07:01:27 +00003176 if (ParseTypeAndValue(Cond, CondLoc, PFS) ||
3177 ParseToken(lltok::comma, "expected ',' after switch condition") ||
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003178 ParseTypeAndBasicBlock(DefaultBB, BBLoc, PFS) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003179 ParseToken(lltok::lsquare, "expected '[' with switch table"))
3180 return true;
3181
Duncan Sands1df98592010-02-16 11:11:14 +00003182 if (!Cond->getType()->isIntegerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00003183 return Error(CondLoc, "switch condition must have integer type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003184
Chris Lattnerdf986172009-01-02 07:01:27 +00003185 // Parse the jump table pairs.
3186 SmallPtrSet<Value*, 32> SeenCases;
3187 SmallVector<std::pair<ConstantInt*, BasicBlock*>, 32> Table;
3188 while (Lex.getKind() != lltok::rsquare) {
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003189 Value *Constant;
3190 BasicBlock *DestBB;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003191
Chris Lattnerdf986172009-01-02 07:01:27 +00003192 if (ParseTypeAndValue(Constant, CondLoc, PFS) ||
3193 ParseToken(lltok::comma, "expected ',' after case value") ||
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003194 ParseTypeAndBasicBlock(DestBB, PFS))
Chris Lattnerdf986172009-01-02 07:01:27 +00003195 return true;
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003196
Chris Lattnerdf986172009-01-02 07:01:27 +00003197 if (!SeenCases.insert(Constant))
3198 return Error(CondLoc, "duplicate case value in switch");
3199 if (!isa<ConstantInt>(Constant))
3200 return Error(CondLoc, "case value is not a constant integer");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003201
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003202 Table.push_back(std::make_pair(cast<ConstantInt>(Constant), DestBB));
Chris Lattnerdf986172009-01-02 07:01:27 +00003203 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003204
Chris Lattnerdf986172009-01-02 07:01:27 +00003205 Lex.Lex(); // Eat the ']'.
Daniel Dunbara279bc32009-09-20 02:20:51 +00003206
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003207 SwitchInst *SI = SwitchInst::Create(Cond, DefaultBB, Table.size());
Chris Lattnerdf986172009-01-02 07:01:27 +00003208 for (unsigned i = 0, e = Table.size(); i != e; ++i)
3209 SI->addCase(Table[i].first, Table[i].second);
3210 Inst = SI;
3211 return false;
3212}
3213
Chris Lattnerab21db72009-10-28 00:19:10 +00003214/// ParseIndirectBr
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003215/// Instruction
Chris Lattnerab21db72009-10-28 00:19:10 +00003216/// ::= 'indirectbr' TypeAndValue ',' '[' LabelList ']'
3217bool LLParser::ParseIndirectBr(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003218 LocTy AddrLoc;
3219 Value *Address;
3220 if (ParseTypeAndValue(Address, AddrLoc, PFS) ||
Chris Lattnerab21db72009-10-28 00:19:10 +00003221 ParseToken(lltok::comma, "expected ',' after indirectbr address") ||
3222 ParseToken(lltok::lsquare, "expected '[' with indirectbr"))
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003223 return true;
3224
Duncan Sands1df98592010-02-16 11:11:14 +00003225 if (!Address->getType()->isPointerTy())
Chris Lattnerab21db72009-10-28 00:19:10 +00003226 return Error(AddrLoc, "indirectbr address must have pointer type");
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003227
3228 // Parse the destination list.
3229 SmallVector<BasicBlock*, 16> DestList;
3230
3231 if (Lex.getKind() != lltok::rsquare) {
3232 BasicBlock *DestBB;
3233 if (ParseTypeAndBasicBlock(DestBB, PFS))
3234 return true;
3235 DestList.push_back(DestBB);
3236
3237 while (EatIfPresent(lltok::comma)) {
3238 if (ParseTypeAndBasicBlock(DestBB, PFS))
3239 return true;
3240 DestList.push_back(DestBB);
3241 }
3242 }
3243
3244 if (ParseToken(lltok::rsquare, "expected ']' at end of block list"))
3245 return true;
3246
Chris Lattnerab21db72009-10-28 00:19:10 +00003247 IndirectBrInst *IBI = IndirectBrInst::Create(Address, DestList.size());
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003248 for (unsigned i = 0, e = DestList.size(); i != e; ++i)
3249 IBI->addDestination(DestList[i]);
3250 Inst = IBI;
3251 return false;
3252}
3253
3254
Chris Lattnerdf986172009-01-02 07:01:27 +00003255/// ParseInvoke
3256/// ::= 'invoke' OptionalCallingConv OptionalAttrs Type Value ParamList
3257/// OptionalAttrs 'to' TypeAndValue 'unwind' TypeAndValue
3258bool LLParser::ParseInvoke(Instruction *&Inst, PerFunctionState &PFS) {
3259 LocTy CallLoc = Lex.getLoc();
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00003260 unsigned RetAttrs, FnAttrs;
3261 CallingConv::ID CC;
Owen Anderson1d0be152009-08-13 21:58:54 +00003262 PATypeHolder RetType(Type::getVoidTy(Context));
Chris Lattnerdf986172009-01-02 07:01:27 +00003263 LocTy RetTypeLoc;
3264 ValID CalleeID;
3265 SmallVector<ParamInfo, 16> ArgList;
3266
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003267 BasicBlock *NormalBB, *UnwindBB;
Chris Lattnerdf986172009-01-02 07:01:27 +00003268 if (ParseOptionalCallingConv(CC) ||
3269 ParseOptionalAttrs(RetAttrs, 1) ||
Chris Lattnera9a9e072009-03-09 04:49:14 +00003270 ParseType(RetType, RetTypeLoc, true /*void allowed*/) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003271 ParseValID(CalleeID) ||
3272 ParseParameterList(ArgList, PFS) ||
3273 ParseOptionalAttrs(FnAttrs, 2) ||
3274 ParseToken(lltok::kw_to, "expected 'to' in invoke") ||
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003275 ParseTypeAndBasicBlock(NormalBB, PFS) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003276 ParseToken(lltok::kw_unwind, "expected 'unwind' in invoke") ||
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003277 ParseTypeAndBasicBlock(UnwindBB, PFS))
Chris Lattnerdf986172009-01-02 07:01:27 +00003278 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003279
Chris Lattnerdf986172009-01-02 07:01:27 +00003280 // If RetType is a non-function pointer type, then this is the short syntax
3281 // for the call, which means that RetType is just the return type. Infer the
3282 // rest of the function argument types from the arguments that are present.
3283 const PointerType *PFTy = 0;
3284 const FunctionType *Ty = 0;
3285 if (!(PFTy = dyn_cast<PointerType>(RetType)) ||
3286 !(Ty = dyn_cast<FunctionType>(PFTy->getElementType()))) {
3287 // Pull out the types of all of the arguments...
3288 std::vector<const Type*> ParamTypes;
3289 for (unsigned i = 0, e = ArgList.size(); i != e; ++i)
3290 ParamTypes.push_back(ArgList[i].V->getType());
Daniel Dunbara279bc32009-09-20 02:20:51 +00003291
Chris Lattnerdf986172009-01-02 07:01:27 +00003292 if (!FunctionType::isValidReturnType(RetType))
3293 return Error(RetTypeLoc, "Invalid result type for LLVM function");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003294
Owen Andersondebcb012009-07-29 22:17:13 +00003295 Ty = FunctionType::get(RetType, ParamTypes, false);
3296 PFTy = PointerType::getUnqual(Ty);
Chris Lattnerdf986172009-01-02 07:01:27 +00003297 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003298
Chris Lattnerdf986172009-01-02 07:01:27 +00003299 // Look up the callee.
3300 Value *Callee;
Victor Hernandez92f238d2010-01-11 22:31:58 +00003301 if (ConvertValIDToValue(PFTy, CalleeID, Callee, &PFS)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003302
Chris Lattnerdf986172009-01-02 07:01:27 +00003303 // FIXME: In LLVM 3.0, stop accepting zext, sext and inreg as optional
3304 // function attributes.
3305 unsigned ObsoleteFuncAttrs = Attribute::ZExt|Attribute::SExt|Attribute::InReg;
3306 if (FnAttrs & ObsoleteFuncAttrs) {
3307 RetAttrs |= FnAttrs & ObsoleteFuncAttrs;
3308 FnAttrs &= ~ObsoleteFuncAttrs;
3309 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003310
Chris Lattnerdf986172009-01-02 07:01:27 +00003311 // Set up the Attributes for the function.
3312 SmallVector<AttributeWithIndex, 8> Attrs;
3313 if (RetAttrs != Attribute::None)
3314 Attrs.push_back(AttributeWithIndex::get(0, RetAttrs));
Daniel Dunbara279bc32009-09-20 02:20:51 +00003315
Chris Lattnerdf986172009-01-02 07:01:27 +00003316 SmallVector<Value*, 8> Args;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003317
Chris Lattnerdf986172009-01-02 07:01:27 +00003318 // Loop through FunctionType's arguments and ensure they are specified
3319 // correctly. Also, gather any parameter attributes.
3320 FunctionType::param_iterator I = Ty->param_begin();
3321 FunctionType::param_iterator E = Ty->param_end();
3322 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
3323 const Type *ExpectedTy = 0;
3324 if (I != E) {
3325 ExpectedTy = *I++;
3326 } else if (!Ty->isVarArg()) {
3327 return Error(ArgList[i].Loc, "too many arguments specified");
3328 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003329
Chris Lattnerdf986172009-01-02 07:01:27 +00003330 if (ExpectedTy && ExpectedTy != ArgList[i].V->getType())
3331 return Error(ArgList[i].Loc, "argument is not of expected type '" +
3332 ExpectedTy->getDescription() + "'");
3333 Args.push_back(ArgList[i].V);
3334 if (ArgList[i].Attrs != Attribute::None)
3335 Attrs.push_back(AttributeWithIndex::get(i+1, ArgList[i].Attrs));
3336 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003337
Chris Lattnerdf986172009-01-02 07:01:27 +00003338 if (I != E)
3339 return Error(CallLoc, "not enough parameters specified for call");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003340
Chris Lattnerdf986172009-01-02 07:01:27 +00003341 if (FnAttrs != Attribute::None)
3342 Attrs.push_back(AttributeWithIndex::get(~0, FnAttrs));
Daniel Dunbara279bc32009-09-20 02:20:51 +00003343
Chris Lattnerdf986172009-01-02 07:01:27 +00003344 // Finish off the Attributes and check them
3345 AttrListPtr PAL = AttrListPtr::get(Attrs.begin(), Attrs.end());
Daniel Dunbara279bc32009-09-20 02:20:51 +00003346
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003347 InvokeInst *II = InvokeInst::Create(Callee, NormalBB, UnwindBB,
Chris Lattnerdf986172009-01-02 07:01:27 +00003348 Args.begin(), Args.end());
3349 II->setCallingConv(CC);
3350 II->setAttributes(PAL);
3351 Inst = II;
3352 return false;
3353}
3354
3355
3356
3357//===----------------------------------------------------------------------===//
3358// Binary Operators.
3359//===----------------------------------------------------------------------===//
3360
3361/// ParseArithmetic
Chris Lattnere914b592009-01-05 08:24:46 +00003362/// ::= ArithmeticOps TypeAndValue ',' Value
3363///
3364/// If OperandType is 0, then any FP or integer operand is allowed. If it is 1,
3365/// then any integer operand is allowed, if it is 2, any fp operand is allowed.
Chris Lattnerdf986172009-01-02 07:01:27 +00003366bool LLParser::ParseArithmetic(Instruction *&Inst, PerFunctionState &PFS,
Chris Lattnere914b592009-01-05 08:24:46 +00003367 unsigned Opc, unsigned OperandType) {
Chris Lattnerdf986172009-01-02 07:01:27 +00003368 LocTy Loc; Value *LHS, *RHS;
3369 if (ParseTypeAndValue(LHS, Loc, PFS) ||
3370 ParseToken(lltok::comma, "expected ',' in arithmetic operation") ||
3371 ParseValue(LHS->getType(), RHS, PFS))
3372 return true;
3373
Chris Lattnere914b592009-01-05 08:24:46 +00003374 bool Valid;
3375 switch (OperandType) {
Torok Edwinc23197a2009-07-14 16:55:14 +00003376 default: llvm_unreachable("Unknown operand type!");
Chris Lattnere914b592009-01-05 08:24:46 +00003377 case 0: // int or FP.
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00003378 Valid = LHS->getType()->isIntOrIntVectorTy() ||
3379 LHS->getType()->isFPOrFPVectorTy();
Chris Lattnere914b592009-01-05 08:24:46 +00003380 break;
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00003381 case 1: Valid = LHS->getType()->isIntOrIntVectorTy(); break;
3382 case 2: Valid = LHS->getType()->isFPOrFPVectorTy(); break;
Chris Lattnere914b592009-01-05 08:24:46 +00003383 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003384
Chris Lattnere914b592009-01-05 08:24:46 +00003385 if (!Valid)
3386 return Error(Loc, "invalid operand type for instruction");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003387
Chris Lattnerdf986172009-01-02 07:01:27 +00003388 Inst = BinaryOperator::Create((Instruction::BinaryOps)Opc, LHS, RHS);
3389 return false;
3390}
3391
3392/// ParseLogical
3393/// ::= ArithmeticOps TypeAndValue ',' Value {
3394bool LLParser::ParseLogical(Instruction *&Inst, PerFunctionState &PFS,
3395 unsigned Opc) {
3396 LocTy Loc; Value *LHS, *RHS;
3397 if (ParseTypeAndValue(LHS, Loc, PFS) ||
3398 ParseToken(lltok::comma, "expected ',' in logical operation") ||
3399 ParseValue(LHS->getType(), RHS, PFS))
3400 return true;
3401
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00003402 if (!LHS->getType()->isIntOrIntVectorTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00003403 return Error(Loc,"instruction requires integer or integer vector operands");
3404
3405 Inst = BinaryOperator::Create((Instruction::BinaryOps)Opc, LHS, RHS);
3406 return false;
3407}
3408
3409
3410/// ParseCompare
3411/// ::= 'icmp' IPredicates TypeAndValue ',' Value
3412/// ::= 'fcmp' FPredicates TypeAndValue ',' Value
Chris Lattnerdf986172009-01-02 07:01:27 +00003413bool LLParser::ParseCompare(Instruction *&Inst, PerFunctionState &PFS,
3414 unsigned Opc) {
3415 // Parse the integer/fp comparison predicate.
3416 LocTy Loc;
3417 unsigned Pred;
3418 Value *LHS, *RHS;
3419 if (ParseCmpPredicate(Pred, Opc) ||
3420 ParseTypeAndValue(LHS, Loc, PFS) ||
3421 ParseToken(lltok::comma, "expected ',' after compare value") ||
3422 ParseValue(LHS->getType(), RHS, PFS))
3423 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003424
Chris Lattnerdf986172009-01-02 07:01:27 +00003425 if (Opc == Instruction::FCmp) {
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00003426 if (!LHS->getType()->isFPOrFPVectorTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00003427 return Error(Loc, "fcmp requires floating point operands");
Dan Gohman1c8a23c2009-08-25 23:17:54 +00003428 Inst = new FCmpInst(CmpInst::Predicate(Pred), LHS, RHS);
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00003429 } else {
3430 assert(Opc == Instruction::ICmp && "Unknown opcode for CmpInst!");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00003431 if (!LHS->getType()->isIntOrIntVectorTy() &&
Duncan Sands1df98592010-02-16 11:11:14 +00003432 !LHS->getType()->isPointerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00003433 return Error(Loc, "icmp requires integer operands");
Dan Gohman1c8a23c2009-08-25 23:17:54 +00003434 Inst = new ICmpInst(CmpInst::Predicate(Pred), LHS, RHS);
Chris Lattnerdf986172009-01-02 07:01:27 +00003435 }
3436 return false;
3437}
3438
3439//===----------------------------------------------------------------------===//
3440// Other Instructions.
3441//===----------------------------------------------------------------------===//
3442
3443
3444/// ParseCast
3445/// ::= CastOpc TypeAndValue 'to' Type
3446bool LLParser::ParseCast(Instruction *&Inst, PerFunctionState &PFS,
3447 unsigned Opc) {
3448 LocTy Loc; Value *Op;
Owen Anderson1d0be152009-08-13 21:58:54 +00003449 PATypeHolder DestTy(Type::getVoidTy(Context));
Chris Lattnerdf986172009-01-02 07:01:27 +00003450 if (ParseTypeAndValue(Op, Loc, PFS) ||
3451 ParseToken(lltok::kw_to, "expected 'to' after cast value") ||
3452 ParseType(DestTy))
3453 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003454
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00003455 if (!CastInst::castIsValid((Instruction::CastOps)Opc, Op, DestTy)) {
3456 CastInst::castIsValid((Instruction::CastOps)Opc, Op, DestTy);
Chris Lattnerdf986172009-01-02 07:01:27 +00003457 return Error(Loc, "invalid cast opcode for cast from '" +
3458 Op->getType()->getDescription() + "' to '" +
3459 DestTy->getDescription() + "'");
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00003460 }
Chris Lattnerdf986172009-01-02 07:01:27 +00003461 Inst = CastInst::Create((Instruction::CastOps)Opc, Op, DestTy);
3462 return false;
3463}
3464
3465/// ParseSelect
3466/// ::= 'select' TypeAndValue ',' TypeAndValue ',' TypeAndValue
3467bool LLParser::ParseSelect(Instruction *&Inst, PerFunctionState &PFS) {
3468 LocTy Loc;
3469 Value *Op0, *Op1, *Op2;
3470 if (ParseTypeAndValue(Op0, Loc, PFS) ||
3471 ParseToken(lltok::comma, "expected ',' after select condition") ||
3472 ParseTypeAndValue(Op1, PFS) ||
3473 ParseToken(lltok::comma, "expected ',' after select value") ||
3474 ParseTypeAndValue(Op2, PFS))
3475 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003476
Chris Lattnerdf986172009-01-02 07:01:27 +00003477 if (const char *Reason = SelectInst::areInvalidOperands(Op0, Op1, Op2))
3478 return Error(Loc, Reason);
Daniel Dunbara279bc32009-09-20 02:20:51 +00003479
Chris Lattnerdf986172009-01-02 07:01:27 +00003480 Inst = SelectInst::Create(Op0, Op1, Op2);
3481 return false;
3482}
3483
Chris Lattner0088a5c2009-01-05 08:18:44 +00003484/// ParseVA_Arg
3485/// ::= 'va_arg' TypeAndValue ',' Type
3486bool LLParser::ParseVA_Arg(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00003487 Value *Op;
Owen Anderson1d0be152009-08-13 21:58:54 +00003488 PATypeHolder EltTy(Type::getVoidTy(Context));
Chris Lattner0088a5c2009-01-05 08:18:44 +00003489 LocTy TypeLoc;
Chris Lattnerdf986172009-01-02 07:01:27 +00003490 if (ParseTypeAndValue(Op, PFS) ||
3491 ParseToken(lltok::comma, "expected ',' after vaarg operand") ||
Chris Lattner0088a5c2009-01-05 08:18:44 +00003492 ParseType(EltTy, TypeLoc))
Chris Lattnerdf986172009-01-02 07:01:27 +00003493 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003494
Chris Lattner0088a5c2009-01-05 08:18:44 +00003495 if (!EltTy->isFirstClassType())
3496 return Error(TypeLoc, "va_arg requires operand with first class type");
Chris Lattnerdf986172009-01-02 07:01:27 +00003497
3498 Inst = new VAArgInst(Op, EltTy);
3499 return false;
3500}
3501
3502/// ParseExtractElement
3503/// ::= 'extractelement' TypeAndValue ',' TypeAndValue
3504bool LLParser::ParseExtractElement(Instruction *&Inst, PerFunctionState &PFS) {
3505 LocTy Loc;
3506 Value *Op0, *Op1;
3507 if (ParseTypeAndValue(Op0, Loc, PFS) ||
3508 ParseToken(lltok::comma, "expected ',' after extract value") ||
3509 ParseTypeAndValue(Op1, PFS))
3510 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003511
Chris Lattnerdf986172009-01-02 07:01:27 +00003512 if (!ExtractElementInst::isValidOperands(Op0, Op1))
3513 return Error(Loc, "invalid extractelement operands");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003514
Eric Christophera3500da2009-07-25 02:28:41 +00003515 Inst = ExtractElementInst::Create(Op0, Op1);
Chris Lattnerdf986172009-01-02 07:01:27 +00003516 return false;
3517}
3518
3519/// ParseInsertElement
3520/// ::= 'insertelement' TypeAndValue ',' TypeAndValue ',' TypeAndValue
3521bool LLParser::ParseInsertElement(Instruction *&Inst, PerFunctionState &PFS) {
3522 LocTy Loc;
3523 Value *Op0, *Op1, *Op2;
3524 if (ParseTypeAndValue(Op0, Loc, PFS) ||
3525 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
3526 ParseTypeAndValue(Op1, PFS) ||
3527 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
3528 ParseTypeAndValue(Op2, PFS))
3529 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003530
Chris Lattnerdf986172009-01-02 07:01:27 +00003531 if (!InsertElementInst::isValidOperands(Op0, Op1, Op2))
Eric Christopher0aaf4e92009-07-23 01:01:32 +00003532 return Error(Loc, "invalid insertelement operands");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003533
Chris Lattnerdf986172009-01-02 07:01:27 +00003534 Inst = InsertElementInst::Create(Op0, Op1, Op2);
3535 return false;
3536}
3537
3538/// ParseShuffleVector
3539/// ::= 'shufflevector' TypeAndValue ',' TypeAndValue ',' TypeAndValue
3540bool LLParser::ParseShuffleVector(Instruction *&Inst, PerFunctionState &PFS) {
3541 LocTy Loc;
3542 Value *Op0, *Op1, *Op2;
3543 if (ParseTypeAndValue(Op0, Loc, PFS) ||
3544 ParseToken(lltok::comma, "expected ',' after shuffle mask") ||
3545 ParseTypeAndValue(Op1, PFS) ||
3546 ParseToken(lltok::comma, "expected ',' after shuffle value") ||
3547 ParseTypeAndValue(Op2, PFS))
3548 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003549
Chris Lattnerdf986172009-01-02 07:01:27 +00003550 if (!ShuffleVectorInst::isValidOperands(Op0, Op1, Op2))
3551 return Error(Loc, "invalid extractelement operands");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003552
Chris Lattnerdf986172009-01-02 07:01:27 +00003553 Inst = new ShuffleVectorInst(Op0, Op1, Op2);
3554 return false;
3555}
3556
3557/// ParsePHI
Chris Lattnerc6e20092009-10-18 05:27:44 +00003558/// ::= 'phi' Type '[' Value ',' Value ']' (',' '[' Value ',' Value ']')*
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003559int LLParser::ParsePHI(Instruction *&Inst, PerFunctionState &PFS) {
Owen Anderson1d0be152009-08-13 21:58:54 +00003560 PATypeHolder Ty(Type::getVoidTy(Context));
Chris Lattnerdf986172009-01-02 07:01:27 +00003561 Value *Op0, *Op1;
3562 LocTy TypeLoc = Lex.getLoc();
Daniel Dunbara279bc32009-09-20 02:20:51 +00003563
Chris Lattnerdf986172009-01-02 07:01:27 +00003564 if (ParseType(Ty) ||
3565 ParseToken(lltok::lsquare, "expected '[' in phi value list") ||
3566 ParseValue(Ty, Op0, PFS) ||
3567 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
Owen Anderson1d0be152009-08-13 21:58:54 +00003568 ParseValue(Type::getLabelTy(Context), Op1, PFS) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003569 ParseToken(lltok::rsquare, "expected ']' in phi value list"))
3570 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003571
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003572 bool AteExtraComma = false;
Chris Lattnerdf986172009-01-02 07:01:27 +00003573 SmallVector<std::pair<Value*, BasicBlock*>, 16> PHIVals;
3574 while (1) {
3575 PHIVals.push_back(std::make_pair(Op0, cast<BasicBlock>(Op1)));
Daniel Dunbara279bc32009-09-20 02:20:51 +00003576
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003577 if (!EatIfPresent(lltok::comma))
Chris Lattnerdf986172009-01-02 07:01:27 +00003578 break;
3579
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003580 if (Lex.getKind() == lltok::MetadataVar) {
3581 AteExtraComma = true;
Devang Patela43d46f2009-10-16 18:45:49 +00003582 break;
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003583 }
Devang Patela43d46f2009-10-16 18:45:49 +00003584
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003585 if (ParseToken(lltok::lsquare, "expected '[' in phi value list") ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003586 ParseValue(Ty, Op0, PFS) ||
3587 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
Owen Anderson1d0be152009-08-13 21:58:54 +00003588 ParseValue(Type::getLabelTy(Context), Op1, PFS) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003589 ParseToken(lltok::rsquare, "expected ']' in phi value list"))
3590 return true;
3591 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003592
Chris Lattnerdf986172009-01-02 07:01:27 +00003593 if (!Ty->isFirstClassType())
3594 return Error(TypeLoc, "phi node must have first class type");
3595
3596 PHINode *PN = PHINode::Create(Ty);
3597 PN->reserveOperandSpace(PHIVals.size());
3598 for (unsigned i = 0, e = PHIVals.size(); i != e; ++i)
3599 PN->addIncoming(PHIVals[i].first, PHIVals[i].second);
3600 Inst = PN;
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003601 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerdf986172009-01-02 07:01:27 +00003602}
3603
3604/// ParseCall
3605/// ::= 'tail'? 'call' OptionalCallingConv OptionalAttrs Type Value
3606/// ParameterList OptionalAttrs
3607bool LLParser::ParseCall(Instruction *&Inst, PerFunctionState &PFS,
3608 bool isTail) {
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00003609 unsigned RetAttrs, FnAttrs;
3610 CallingConv::ID CC;
Owen Anderson1d0be152009-08-13 21:58:54 +00003611 PATypeHolder RetType(Type::getVoidTy(Context));
Chris Lattnerdf986172009-01-02 07:01:27 +00003612 LocTy RetTypeLoc;
3613 ValID CalleeID;
3614 SmallVector<ParamInfo, 16> ArgList;
3615 LocTy CallLoc = Lex.getLoc();
Daniel Dunbara279bc32009-09-20 02:20:51 +00003616
Chris Lattnerdf986172009-01-02 07:01:27 +00003617 if ((isTail && ParseToken(lltok::kw_call, "expected 'tail call'")) ||
3618 ParseOptionalCallingConv(CC) ||
3619 ParseOptionalAttrs(RetAttrs, 1) ||
Chris Lattnera9a9e072009-03-09 04:49:14 +00003620 ParseType(RetType, RetTypeLoc, true /*void allowed*/) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003621 ParseValID(CalleeID) ||
3622 ParseParameterList(ArgList, PFS) ||
3623 ParseOptionalAttrs(FnAttrs, 2))
3624 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003625
Chris Lattnerdf986172009-01-02 07:01:27 +00003626 // If RetType is a non-function pointer type, then this is the short syntax
3627 // for the call, which means that RetType is just the return type. Infer the
3628 // rest of the function argument types from the arguments that are present.
3629 const PointerType *PFTy = 0;
3630 const FunctionType *Ty = 0;
3631 if (!(PFTy = dyn_cast<PointerType>(RetType)) ||
3632 !(Ty = dyn_cast<FunctionType>(PFTy->getElementType()))) {
3633 // Pull out the types of all of the arguments...
3634 std::vector<const Type*> ParamTypes;
3635 for (unsigned i = 0, e = ArgList.size(); i != e; ++i)
3636 ParamTypes.push_back(ArgList[i].V->getType());
Daniel Dunbara279bc32009-09-20 02:20:51 +00003637
Chris Lattnerdf986172009-01-02 07:01:27 +00003638 if (!FunctionType::isValidReturnType(RetType))
3639 return Error(RetTypeLoc, "Invalid result type for LLVM function");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003640
Owen Andersondebcb012009-07-29 22:17:13 +00003641 Ty = FunctionType::get(RetType, ParamTypes, false);
3642 PFTy = PointerType::getUnqual(Ty);
Chris Lattnerdf986172009-01-02 07:01:27 +00003643 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003644
Chris Lattnerdf986172009-01-02 07:01:27 +00003645 // Look up the callee.
3646 Value *Callee;
Victor Hernandez92f238d2010-01-11 22:31:58 +00003647 if (ConvertValIDToValue(PFTy, CalleeID, Callee, &PFS)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003648
Chris Lattnerdf986172009-01-02 07:01:27 +00003649 // FIXME: In LLVM 3.0, stop accepting zext, sext and inreg as optional
3650 // function attributes.
3651 unsigned ObsoleteFuncAttrs = Attribute::ZExt|Attribute::SExt|Attribute::InReg;
3652 if (FnAttrs & ObsoleteFuncAttrs) {
3653 RetAttrs |= FnAttrs & ObsoleteFuncAttrs;
3654 FnAttrs &= ~ObsoleteFuncAttrs;
3655 }
3656
3657 // Set up the Attributes for the function.
3658 SmallVector<AttributeWithIndex, 8> Attrs;
3659 if (RetAttrs != Attribute::None)
3660 Attrs.push_back(AttributeWithIndex::get(0, RetAttrs));
Daniel Dunbara279bc32009-09-20 02:20:51 +00003661
Chris Lattnerdf986172009-01-02 07:01:27 +00003662 SmallVector<Value*, 8> Args;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003663
Chris Lattnerdf986172009-01-02 07:01:27 +00003664 // Loop through FunctionType's arguments and ensure they are specified
3665 // correctly. Also, gather any parameter attributes.
3666 FunctionType::param_iterator I = Ty->param_begin();
3667 FunctionType::param_iterator E = Ty->param_end();
3668 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
3669 const Type *ExpectedTy = 0;
3670 if (I != E) {
3671 ExpectedTy = *I++;
3672 } else if (!Ty->isVarArg()) {
3673 return Error(ArgList[i].Loc, "too many arguments specified");
3674 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003675
Chris Lattnerdf986172009-01-02 07:01:27 +00003676 if (ExpectedTy && ExpectedTy != ArgList[i].V->getType())
3677 return Error(ArgList[i].Loc, "argument is not of expected type '" +
3678 ExpectedTy->getDescription() + "'");
3679 Args.push_back(ArgList[i].V);
3680 if (ArgList[i].Attrs != Attribute::None)
3681 Attrs.push_back(AttributeWithIndex::get(i+1, ArgList[i].Attrs));
3682 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003683
Chris Lattnerdf986172009-01-02 07:01:27 +00003684 if (I != E)
3685 return Error(CallLoc, "not enough parameters specified for call");
3686
3687 if (FnAttrs != Attribute::None)
3688 Attrs.push_back(AttributeWithIndex::get(~0, FnAttrs));
3689
3690 // Finish off the Attributes and check them
3691 AttrListPtr PAL = AttrListPtr::get(Attrs.begin(), Attrs.end());
Daniel Dunbara279bc32009-09-20 02:20:51 +00003692
Chris Lattnerdf986172009-01-02 07:01:27 +00003693 CallInst *CI = CallInst::Create(Callee, Args.begin(), Args.end());
3694 CI->setTailCall(isTail);
3695 CI->setCallingConv(CC);
3696 CI->setAttributes(PAL);
3697 Inst = CI;
3698 return false;
3699}
3700
3701//===----------------------------------------------------------------------===//
3702// Memory Instructions.
3703//===----------------------------------------------------------------------===//
3704
3705/// ParseAlloc
Devang Patelf633a062009-09-17 23:04:48 +00003706/// ::= 'malloc' Type (',' TypeAndValue)? (',' OptionalInfo)?
3707/// ::= 'alloca' Type (',' TypeAndValue)? (',' OptionalInfo)?
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00003708int LLParser::ParseAlloc(Instruction *&Inst, PerFunctionState &PFS,
3709 BasicBlock* BB, bool isAlloca) {
Owen Anderson1d0be152009-08-13 21:58:54 +00003710 PATypeHolder Ty(Type::getVoidTy(Context));
Chris Lattnerdf986172009-01-02 07:01:27 +00003711 Value *Size = 0;
Chris Lattnereeb4a842009-07-02 23:08:13 +00003712 LocTy SizeLoc;
Chris Lattnerdf986172009-01-02 07:01:27 +00003713 unsigned Alignment = 0;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003714 if (ParseType(Ty)) return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00003715
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00003716 bool AteExtraComma = false;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003717 if (EatIfPresent(lltok::comma)) {
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00003718 if (Lex.getKind() == lltok::kw_align) {
3719 if (ParseOptionalAlignment(Alignment)) return true;
3720 } else if (Lex.getKind() == lltok::MetadataVar) {
3721 AteExtraComma = true;
Devang Patelf633a062009-09-17 23:04:48 +00003722 } else {
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00003723 if (ParseTypeAndValue(Size, SizeLoc, PFS) ||
3724 ParseOptionalCommaAlign(Alignment, AteExtraComma))
3725 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00003726 }
3727 }
3728
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00003729 if (Size && !Size->getType()->isIntegerTy(32))
Chris Lattnerdf986172009-01-02 07:01:27 +00003730 return Error(SizeLoc, "element count must be i32");
3731
Victor Hernandez68afa542009-10-21 19:11:40 +00003732 if (isAlloca) {
Owen Anderson50dead02009-07-15 23:53:25 +00003733 Inst = new AllocaInst(Ty, Size, Alignment);
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00003734 return AteExtraComma ? InstExtraComma : InstNormal;
Victor Hernandez13ad5aa2009-10-17 00:00:19 +00003735 }
Victor Hernandez68afa542009-10-21 19:11:40 +00003736
3737 // Autoupgrade old malloc instruction to malloc call.
3738 // FIXME: Remove in LLVM 3.0.
3739 const Type *IntPtrTy = Type::getInt32Ty(Context);
Victor Hernandez9d0b7042009-11-07 00:16:28 +00003740 Constant *AllocSize = ConstantExpr::getSizeOf(Ty);
3741 AllocSize = ConstantExpr::getTruncOrBitCast(AllocSize, IntPtrTy);
Victor Hernandez68afa542009-10-21 19:11:40 +00003742 if (!MallocF)
3743 // Prototype malloc as "void *(int32)".
3744 // This function is renamed as "malloc" in ValidateEndOfModule().
Victor Hernandez336ea062009-10-23 00:59:10 +00003745 MallocF = cast<Function>(
3746 M->getOrInsertFunction("", Type::getInt8PtrTy(Context), IntPtrTy, NULL));
Victor Hernandez9d0b7042009-11-07 00:16:28 +00003747 Inst = CallInst::CreateMalloc(BB, IntPtrTy, Ty, AllocSize, Size, MallocF);
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00003748return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerdf986172009-01-02 07:01:27 +00003749}
3750
3751/// ParseFree
3752/// ::= 'free' TypeAndValue
Victor Hernandez66284e02009-10-24 04:23:03 +00003753bool LLParser::ParseFree(Instruction *&Inst, PerFunctionState &PFS,
3754 BasicBlock* BB) {
Chris Lattnerdf986172009-01-02 07:01:27 +00003755 Value *Val; LocTy Loc;
3756 if (ParseTypeAndValue(Val, Loc, PFS)) return true;
Duncan Sands1df98592010-02-16 11:11:14 +00003757 if (!Val->getType()->isPointerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00003758 return Error(Loc, "operand to free must be a pointer");
Victor Hernandez66284e02009-10-24 04:23:03 +00003759 Inst = CallInst::CreateFree(Val, BB);
Chris Lattnerdf986172009-01-02 07:01:27 +00003760 return false;
3761}
3762
3763/// ParseLoad
Devang Patelf633a062009-09-17 23:04:48 +00003764/// ::= 'volatile'? 'load' TypeAndValue (',' OptionalInfo)?
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00003765int LLParser::ParseLoad(Instruction *&Inst, PerFunctionState &PFS,
3766 bool isVolatile) {
Chris Lattnerdf986172009-01-02 07:01:27 +00003767 Value *Val; LocTy Loc;
Devang Patelf633a062009-09-17 23:04:48 +00003768 unsigned Alignment = 0;
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00003769 bool AteExtraComma = false;
3770 if (ParseTypeAndValue(Val, Loc, PFS) ||
3771 ParseOptionalCommaAlign(Alignment, AteExtraComma))
3772 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00003773
Duncan Sands1df98592010-02-16 11:11:14 +00003774 if (!Val->getType()->isPointerTy() ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003775 !cast<PointerType>(Val->getType())->getElementType()->isFirstClassType())
3776 return Error(Loc, "load operand must be a pointer to a first class type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003777
Chris Lattnerdf986172009-01-02 07:01:27 +00003778 Inst = new LoadInst(Val, "", isVolatile, Alignment);
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00003779 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerdf986172009-01-02 07:01:27 +00003780}
3781
3782/// ParseStore
Dan Gohmana119de82009-06-14 23:30:43 +00003783/// ::= 'volatile'? 'store' TypeAndValue ',' TypeAndValue (',' 'align' i32)?
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00003784int LLParser::ParseStore(Instruction *&Inst, PerFunctionState &PFS,
3785 bool isVolatile) {
Chris Lattnerdf986172009-01-02 07:01:27 +00003786 Value *Val, *Ptr; LocTy Loc, PtrLoc;
Devang Patelf633a062009-09-17 23:04:48 +00003787 unsigned Alignment = 0;
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00003788 bool AteExtraComma = false;
Chris Lattnerdf986172009-01-02 07:01:27 +00003789 if (ParseTypeAndValue(Val, Loc, PFS) ||
3790 ParseToken(lltok::comma, "expected ',' after store operand") ||
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00003791 ParseTypeAndValue(Ptr, PtrLoc, PFS) ||
3792 ParseOptionalCommaAlign(Alignment, AteExtraComma))
Chris Lattnerdf986172009-01-02 07:01:27 +00003793 return true;
Devang Patelf633a062009-09-17 23:04:48 +00003794
Duncan Sands1df98592010-02-16 11:11:14 +00003795 if (!Ptr->getType()->isPointerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00003796 return Error(PtrLoc, "store operand must be a pointer");
3797 if (!Val->getType()->isFirstClassType())
3798 return Error(Loc, "store operand must be a first class value");
3799 if (cast<PointerType>(Ptr->getType())->getElementType() != Val->getType())
3800 return Error(Loc, "stored value and pointer type do not match");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003801
Chris Lattnerdf986172009-01-02 07:01:27 +00003802 Inst = new StoreInst(Val, Ptr, isVolatile, Alignment);
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00003803 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerdf986172009-01-02 07:01:27 +00003804}
3805
3806/// ParseGetResult
Dan Gohmana119de82009-06-14 23:30:43 +00003807/// ::= 'getresult' TypeAndValue ',' i32
Chris Lattnerdf986172009-01-02 07:01:27 +00003808/// FIXME: Remove support for getresult in LLVM 3.0
3809bool LLParser::ParseGetResult(Instruction *&Inst, PerFunctionState &PFS) {
3810 Value *Val; LocTy ValLoc, EltLoc;
3811 unsigned Element;
3812 if (ParseTypeAndValue(Val, ValLoc, PFS) ||
3813 ParseToken(lltok::comma, "expected ',' after getresult operand") ||
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003814 ParseUInt32(Element, EltLoc))
Chris Lattnerdf986172009-01-02 07:01:27 +00003815 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003816
Duncan Sands1df98592010-02-16 11:11:14 +00003817 if (!Val->getType()->isStructTy() && !Val->getType()->isArrayTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00003818 return Error(ValLoc, "getresult inst requires an aggregate operand");
3819 if (!ExtractValueInst::getIndexedType(Val->getType(), Element))
3820 return Error(EltLoc, "invalid getresult index for value");
3821 Inst = ExtractValueInst::Create(Val, Element);
3822 return false;
3823}
3824
3825/// ParseGetElementPtr
Dan Gohmandd8004d2009-07-27 21:53:46 +00003826/// ::= 'getelementptr' 'inbounds'? TypeAndValue (',' TypeAndValue)*
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003827int LLParser::ParseGetElementPtr(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00003828 Value *Ptr, *Val; LocTy Loc, EltLoc;
Dan Gohmandd8004d2009-07-27 21:53:46 +00003829
Dan Gohmandcb40a32009-07-29 15:58:36 +00003830 bool InBounds = EatIfPresent(lltok::kw_inbounds);
Dan Gohmandd8004d2009-07-27 21:53:46 +00003831
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003832 if (ParseTypeAndValue(Ptr, Loc, PFS)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003833
Duncan Sands1df98592010-02-16 11:11:14 +00003834 if (!Ptr->getType()->isPointerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00003835 return Error(Loc, "base of getelementptr must be a pointer");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003836
Chris Lattnerdf986172009-01-02 07:01:27 +00003837 SmallVector<Value*, 16> Indices;
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003838 bool AteExtraComma = false;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003839 while (EatIfPresent(lltok::comma)) {
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003840 if (Lex.getKind() == lltok::MetadataVar) {
3841 AteExtraComma = true;
Devang Patel6225d642009-10-13 18:49:55 +00003842 break;
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003843 }
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003844 if (ParseTypeAndValue(Val, EltLoc, PFS)) return true;
Duncan Sands1df98592010-02-16 11:11:14 +00003845 if (!Val->getType()->isIntegerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00003846 return Error(EltLoc, "getelementptr index must be an integer");
3847 Indices.push_back(Val);
3848 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003849
Chris Lattnerdf986172009-01-02 07:01:27 +00003850 if (!GetElementPtrInst::getIndexedType(Ptr->getType(),
3851 Indices.begin(), Indices.end()))
3852 return Error(Loc, "invalid getelementptr indices");
3853 Inst = GetElementPtrInst::Create(Ptr, Indices.begin(), Indices.end());
Dan Gohmandd8004d2009-07-27 21:53:46 +00003854 if (InBounds)
Dan Gohmanf8dbee72009-09-07 23:54:19 +00003855 cast<GetElementPtrInst>(Inst)->setIsInBounds(true);
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003856 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerdf986172009-01-02 07:01:27 +00003857}
3858
3859/// ParseExtractValue
3860/// ::= 'extractvalue' TypeAndValue (',' uint32)+
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003861int LLParser::ParseExtractValue(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00003862 Value *Val; LocTy Loc;
3863 SmallVector<unsigned, 4> Indices;
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003864 bool AteExtraComma;
Chris Lattnerdf986172009-01-02 07:01:27 +00003865 if (ParseTypeAndValue(Val, Loc, PFS) ||
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003866 ParseIndexList(Indices, AteExtraComma))
Chris Lattnerdf986172009-01-02 07:01:27 +00003867 return true;
3868
Chris Lattnerfdfeb692010-02-12 20:49:41 +00003869 if (!Val->getType()->isAggregateType())
3870 return Error(Loc, "extractvalue operand must be aggregate type");
Chris Lattnerdf986172009-01-02 07:01:27 +00003871
3872 if (!ExtractValueInst::getIndexedType(Val->getType(), Indices.begin(),
3873 Indices.end()))
3874 return Error(Loc, "invalid indices for extractvalue");
3875 Inst = ExtractValueInst::Create(Val, Indices.begin(), Indices.end());
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003876 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerdf986172009-01-02 07:01:27 +00003877}
3878
3879/// ParseInsertValue
3880/// ::= 'insertvalue' TypeAndValue ',' TypeAndValue (',' uint32)+
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003881int LLParser::ParseInsertValue(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00003882 Value *Val0, *Val1; LocTy Loc0, Loc1;
3883 SmallVector<unsigned, 4> Indices;
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003884 bool AteExtraComma;
Chris Lattnerdf986172009-01-02 07:01:27 +00003885 if (ParseTypeAndValue(Val0, Loc0, PFS) ||
3886 ParseToken(lltok::comma, "expected comma after insertvalue operand") ||
3887 ParseTypeAndValue(Val1, Loc1, PFS) ||
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003888 ParseIndexList(Indices, AteExtraComma))
Chris Lattnerdf986172009-01-02 07:01:27 +00003889 return true;
Chris Lattner628c13a2009-12-30 05:14:00 +00003890
Chris Lattnerfdfeb692010-02-12 20:49:41 +00003891 if (!Val0->getType()->isAggregateType())
3892 return Error(Loc0, "insertvalue operand must be aggregate type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003893
Chris Lattnerdf986172009-01-02 07:01:27 +00003894 if (!ExtractValueInst::getIndexedType(Val0->getType(), Indices.begin(),
3895 Indices.end()))
3896 return Error(Loc0, "invalid indices for insertvalue");
3897 Inst = InsertValueInst::Create(Val0, Val1, Indices.begin(), Indices.end());
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003898 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerdf986172009-01-02 07:01:27 +00003899}
Nick Lewycky21cc4462009-04-04 07:22:01 +00003900
3901//===----------------------------------------------------------------------===//
3902// Embedded metadata.
3903//===----------------------------------------------------------------------===//
3904
3905/// ParseMDNodeVector
Nick Lewyckycb337992009-05-10 20:57:05 +00003906/// ::= Element (',' Element)*
3907/// Element
3908/// ::= 'null' | TypeAndValue
Victor Hernandezbf170d42010-01-05 22:22:14 +00003909bool LLParser::ParseMDNodeVector(SmallVectorImpl<Value*> &Elts,
Victor Hernandez24e64df2010-01-10 07:14:18 +00003910 PerFunctionState *PFS) {
Nick Lewycky21cc4462009-04-04 07:22:01 +00003911 do {
Chris Lattnera7352392009-12-30 04:42:57 +00003912 // Null is a special case since it is typeless.
3913 if (EatIfPresent(lltok::kw_null)) {
3914 Elts.push_back(0);
3915 continue;
Nick Lewyckycb337992009-05-10 20:57:05 +00003916 }
Chris Lattnera7352392009-12-30 04:42:57 +00003917
3918 Value *V = 0;
3919 PATypeHolder Ty(Type::getVoidTy(Context));
3920 ValID ID;
Victor Hernandezbf170d42010-01-05 22:22:14 +00003921 if (ParseType(Ty) || ParseValID(ID, PFS) ||
Victor Hernandez92f238d2010-01-11 22:31:58 +00003922 ConvertValIDToValue(Ty, ID, V, PFS))
Chris Lattnera7352392009-12-30 04:42:57 +00003923 return true;
3924
Nick Lewyckycb337992009-05-10 20:57:05 +00003925 Elts.push_back(V);
Nick Lewycky21cc4462009-04-04 07:22:01 +00003926 } while (EatIfPresent(lltok::comma));
3927
3928 return false;
3929}