blob: 1317b2cbd009b010c5dd786787efe9b1a6de219d [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 Pateleff2ab62009-07-29 00:34:02 +0000513 SmallVector<MetadataBase *, 8> Elts;
514 do {
Chris Lattnere434d272009-12-30 04:56:59 +0000515 if (ParseToken(lltok::exclaim, "Expected '!' here"))
Chris Lattner42991ee2009-12-29 22:01:50 +0000516 return true;
Chris Lattner442ffa12009-12-29 21:53:55 +0000517
Chris Lattner42991ee2009-12-29 22:01:50 +0000518 // FIXME: This rejects MDStrings. Are they legal in an named MDNode or not?
Chris Lattner442ffa12009-12-29 21:53:55 +0000519 MDNode *N = 0;
Chris Lattner4a72efc2009-12-30 04:15:23 +0000520 if (ParseMDNodeID(N)) return true;
Devang Pateleff2ab62009-07-29 00:34:02 +0000521 Elts.push_back(N);
522 } while (EatIfPresent(lltok::comma));
523
524 if (ParseToken(lltok::rbrace, "expected end of metadata node"))
525 return true;
526
Owen Anderson1d0be152009-08-13 21:58:54 +0000527 NamedMDNode::Create(Context, Name, Elts.data(), Elts.size(), M);
Devang Pateleff2ab62009-07-29 00:34:02 +0000528 return false;
529}
530
Devang Patel923078c2009-07-01 19:21:12 +0000531/// ParseStandaloneMetadata:
Daniel Dunbara279bc32009-09-20 02:20:51 +0000532/// !42 = !{...}
Devang Patel923078c2009-07-01 19:21:12 +0000533bool LLParser::ParseStandaloneMetadata() {
Chris Lattnere434d272009-12-30 04:56:59 +0000534 assert(Lex.getKind() == lltok::exclaim);
Devang Patel923078c2009-07-01 19:21:12 +0000535 Lex.Lex();
536 unsigned MetadataID = 0;
Devang Patel923078c2009-07-01 19:21:12 +0000537
538 LocTy TyLoc;
Owen Anderson1d0be152009-08-13 21:58:54 +0000539 PATypeHolder Ty(Type::getVoidTy(Context));
Devang Patel104cf9e2009-07-23 01:07:34 +0000540 SmallVector<Value *, 16> Elts;
Chris Lattner3f5132a2009-12-29 22:40:21 +0000541 // FIXME: This doesn't make sense here. Pull braced MD stuff parsing out!
542 if (ParseUInt32(MetadataID) ||
543 ParseToken(lltok::equal, "expected '=' here") ||
544 ParseType(Ty, TyLoc) ||
Chris Lattnere434d272009-12-30 04:56:59 +0000545 ParseToken(lltok::exclaim, "Expected '!' here") ||
Chris Lattner3f5132a2009-12-29 22:40:21 +0000546 ParseToken(lltok::lbrace, "Expected '{' here") ||
547 ParseMDNodeVector(Elts) ||
548 ParseToken(lltok::rbrace, "expected end of metadata node"))
Devang Patel104cf9e2009-07-23 01:07:34 +0000549 return true;
550
Owen Anderson647e3012009-07-31 21:35:40 +0000551 MDNode *Init = MDNode::get(Context, Elts.data(), Elts.size());
Chris Lattner0834e6a2009-12-30 04:51:58 +0000552
553 // See if this was forward referenced, if so, handle it.
Chris Lattnere80250e2009-12-29 21:43:58 +0000554 std::map<unsigned, std::pair<TrackingVH<MDNode>, LocTy> >::iterator
Devang Patel1c7eea62009-07-08 19:23:54 +0000555 FI = ForwardRefMDNodes.find(MetadataID);
556 if (FI != ForwardRefMDNodes.end()) {
Chris Lattnere80250e2009-12-29 21:43:58 +0000557 FI->second.first->replaceAllUsesWith(Init);
Devang Patel1c7eea62009-07-08 19:23:54 +0000558 ForwardRefMDNodes.erase(FI);
Chris Lattner0834e6a2009-12-30 04:51:58 +0000559
560 assert(NumberedMetadata[MetadataID] == Init && "Tracking VH didn't work");
561 } else {
562 if (MetadataID >= NumberedMetadata.size())
563 NumberedMetadata.resize(MetadataID+1);
564
565 if (NumberedMetadata[MetadataID] != 0)
566 return TokError("Metadata id is already used");
567 NumberedMetadata[MetadataID] = Init;
Devang Patel1c7eea62009-07-08 19:23:54 +0000568 }
569
Devang Patel923078c2009-07-01 19:21:12 +0000570 return false;
571}
572
Chris Lattnerdf986172009-01-02 07:01:27 +0000573/// ParseAlias:
574/// ::= GlobalVar '=' OptionalVisibility 'alias' OptionalLinkage Aliasee
575/// Aliasee
Chris Lattner040f7582009-04-25 21:26:00 +0000576/// ::= TypeAndValue
577/// ::= 'bitcast' '(' TypeAndValue 'to' Type ')'
Dan Gohmandd8004d2009-07-27 21:53:46 +0000578/// ::= 'getelementptr' 'inbounds'? '(' ... ')'
Chris Lattnerdf986172009-01-02 07:01:27 +0000579///
580/// Everything through visibility has already been parsed.
581///
582bool LLParser::ParseAlias(const std::string &Name, LocTy NameLoc,
583 unsigned Visibility) {
584 assert(Lex.getKind() == lltok::kw_alias);
585 Lex.Lex();
586 unsigned Linkage;
587 LocTy LinkageLoc = Lex.getLoc();
588 if (ParseOptionalLinkage(Linkage))
589 return true;
590
591 if (Linkage != GlobalValue::ExternalLinkage &&
Duncan Sands667d4b82009-03-07 15:45:40 +0000592 Linkage != GlobalValue::WeakAnyLinkage &&
593 Linkage != GlobalValue::WeakODRLinkage &&
Rafael Espindolabb46f522009-01-15 20:18:42 +0000594 Linkage != GlobalValue::InternalLinkage &&
Bill Wendling3d10a5a2009-07-20 01:03:30 +0000595 Linkage != GlobalValue::PrivateLinkage &&
596 Linkage != GlobalValue::LinkerPrivateLinkage)
Chris Lattnerdf986172009-01-02 07:01:27 +0000597 return Error(LinkageLoc, "invalid linkage type for alias");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000598
Chris Lattnerdf986172009-01-02 07:01:27 +0000599 Constant *Aliasee;
600 LocTy AliaseeLoc = Lex.getLoc();
Chris Lattner040f7582009-04-25 21:26:00 +0000601 if (Lex.getKind() != lltok::kw_bitcast &&
602 Lex.getKind() != lltok::kw_getelementptr) {
Chris Lattnerdf986172009-01-02 07:01:27 +0000603 if (ParseGlobalTypeAndValue(Aliasee)) return true;
604 } else {
605 // The bitcast dest type is not present, it is implied by the dest type.
606 ValID ID;
607 if (ParseValID(ID)) return true;
608 if (ID.Kind != ValID::t_Constant)
609 return Error(AliaseeLoc, "invalid aliasee");
610 Aliasee = ID.ConstantVal;
611 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000612
Chris Lattnerdf986172009-01-02 07:01:27 +0000613 if (!isa<PointerType>(Aliasee->getType()))
614 return Error(AliaseeLoc, "alias must have pointer type");
615
616 // Okay, create the alias but do not insert it into the module yet.
617 GlobalAlias* GA = new GlobalAlias(Aliasee->getType(),
618 (GlobalValue::LinkageTypes)Linkage, Name,
619 Aliasee);
620 GA->setVisibility((GlobalValue::VisibilityTypes)Visibility);
Daniel Dunbara279bc32009-09-20 02:20:51 +0000621
Chris Lattnerdf986172009-01-02 07:01:27 +0000622 // See if this value already exists in the symbol table. If so, it is either
623 // a redefinition or a definition of a forward reference.
Chris Lattner1d871c52009-10-25 23:22:50 +0000624 if (GlobalValue *Val = M->getNamedValue(Name)) {
Chris Lattnerdf986172009-01-02 07:01:27 +0000625 // See if this was a redefinition. If so, there is no entry in
626 // ForwardRefVals.
627 std::map<std::string, std::pair<GlobalValue*, LocTy> >::iterator
628 I = ForwardRefVals.find(Name);
629 if (I == ForwardRefVals.end())
630 return Error(NameLoc, "redefinition of global named '@" + Name + "'");
631
632 // Otherwise, this was a definition of forward ref. Verify that types
633 // agree.
634 if (Val->getType() != GA->getType())
635 return Error(NameLoc,
636 "forward reference and definition of alias have different types");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000637
Chris Lattnerdf986172009-01-02 07:01:27 +0000638 // If they agree, just RAUW the old value with the alias and remove the
639 // forward ref info.
640 Val->replaceAllUsesWith(GA);
641 Val->eraseFromParent();
642 ForwardRefVals.erase(I);
643 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000644
Chris Lattnerdf986172009-01-02 07:01:27 +0000645 // Insert into the module, we know its name won't collide now.
646 M->getAliasList().push_back(GA);
647 assert(GA->getNameStr() == Name && "Should not be a name conflict!");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000648
Chris Lattnerdf986172009-01-02 07:01:27 +0000649 return false;
650}
651
652/// ParseGlobal
653/// ::= GlobalVar '=' OptionalLinkage OptionalVisibility OptionalThreadLocal
654/// OptionalAddrSpace GlobalType Type Const
655/// ::= OptionalLinkage OptionalVisibility OptionalThreadLocal
656/// OptionalAddrSpace GlobalType Type Const
657///
658/// Everything through visibility has been parsed already.
659///
660bool LLParser::ParseGlobal(const std::string &Name, LocTy NameLoc,
661 unsigned Linkage, bool HasLinkage,
662 unsigned Visibility) {
663 unsigned AddrSpace;
664 bool ThreadLocal, IsConstant;
665 LocTy TyLoc;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000666
Owen Anderson1d0be152009-08-13 21:58:54 +0000667 PATypeHolder Ty(Type::getVoidTy(Context));
Chris Lattnerdf986172009-01-02 07:01:27 +0000668 if (ParseOptionalToken(lltok::kw_thread_local, ThreadLocal) ||
669 ParseOptionalAddrSpace(AddrSpace) ||
670 ParseGlobalType(IsConstant) ||
671 ParseType(Ty, TyLoc))
672 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000673
Chris Lattnerdf986172009-01-02 07:01:27 +0000674 // If the linkage is specified and is external, then no initializer is
675 // present.
676 Constant *Init = 0;
677 if (!HasLinkage || (Linkage != GlobalValue::DLLImportLinkage &&
Duncan Sands5f4ee1f2009-03-11 08:08:06 +0000678 Linkage != GlobalValue::ExternalWeakLinkage &&
Chris Lattnerdf986172009-01-02 07:01:27 +0000679 Linkage != GlobalValue::ExternalLinkage)) {
680 if (ParseGlobalValue(Ty, Init))
681 return true;
682 }
683
Chris Lattnercf0fe8d2009-10-05 05:54:46 +0000684 if (isa<FunctionType>(Ty) || Ty->isLabelTy())
Chris Lattner4a2f1122009-02-08 20:00:15 +0000685 return Error(TyLoc, "invalid type for global variable");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000686
Chris Lattnerdf986172009-01-02 07:01:27 +0000687 GlobalVariable *GV = 0;
688
689 // See if the global was forward referenced, if so, use the global.
Chris Lattner91dad872009-02-02 07:24:28 +0000690 if (!Name.empty()) {
Chris Lattner1d871c52009-10-25 23:22:50 +0000691 if (GlobalValue *GVal = M->getNamedValue(Name)) {
692 if (!ForwardRefVals.erase(Name) || !isa<GlobalValue>(GVal))
693 return Error(NameLoc, "redefinition of global '@" + Name + "'");
694 GV = cast<GlobalVariable>(GVal);
695 }
Chris Lattnerdf986172009-01-02 07:01:27 +0000696 } else {
697 std::map<unsigned, std::pair<GlobalValue*, LocTy> >::iterator
698 I = ForwardRefValIDs.find(NumberedVals.size());
699 if (I != ForwardRefValIDs.end()) {
700 GV = cast<GlobalVariable>(I->second.first);
701 ForwardRefValIDs.erase(I);
702 }
703 }
704
705 if (GV == 0) {
Daniel Dunbara279bc32009-09-20 02:20:51 +0000706 GV = new GlobalVariable(*M, Ty, false, GlobalValue::ExternalLinkage, 0,
Owen Andersone9b11b42009-07-08 19:03:57 +0000707 Name, 0, false, AddrSpace);
Chris Lattnerdf986172009-01-02 07:01:27 +0000708 } else {
709 if (GV->getType()->getElementType() != Ty)
710 return Error(TyLoc,
711 "forward reference and definition of global have different types");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000712
Chris Lattnerdf986172009-01-02 07:01:27 +0000713 // Move the forward-reference to the correct spot in the module.
714 M->getGlobalList().splice(M->global_end(), M->getGlobalList(), GV);
715 }
716
717 if (Name.empty())
718 NumberedVals.push_back(GV);
Daniel Dunbara279bc32009-09-20 02:20:51 +0000719
Chris Lattnerdf986172009-01-02 07:01:27 +0000720 // Set the parsed properties on the global.
721 if (Init)
722 GV->setInitializer(Init);
723 GV->setConstant(IsConstant);
724 GV->setLinkage((GlobalValue::LinkageTypes)Linkage);
725 GV->setVisibility((GlobalValue::VisibilityTypes)Visibility);
726 GV->setThreadLocal(ThreadLocal);
Daniel Dunbara279bc32009-09-20 02:20:51 +0000727
Chris Lattnerdf986172009-01-02 07:01:27 +0000728 // Parse attributes on the global.
729 while (Lex.getKind() == lltok::comma) {
730 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +0000731
Chris Lattnerdf986172009-01-02 07:01:27 +0000732 if (Lex.getKind() == lltok::kw_section) {
733 Lex.Lex();
734 GV->setSection(Lex.getStrVal());
735 if (ParseToken(lltok::StringConstant, "expected global section string"))
736 return true;
737 } else if (Lex.getKind() == lltok::kw_align) {
738 unsigned Alignment;
739 if (ParseOptionalAlignment(Alignment)) return true;
740 GV->setAlignment(Alignment);
741 } else {
742 TokError("unknown global variable property!");
743 }
744 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000745
Chris Lattnerdf986172009-01-02 07:01:27 +0000746 return false;
747}
748
749
750//===----------------------------------------------------------------------===//
751// GlobalValue Reference/Resolution Routines.
752//===----------------------------------------------------------------------===//
753
754/// GetGlobalVal - Get a value with the specified name or ID, creating a
755/// forward reference record if needed. This can return null if the value
756/// exists but does not have the right type.
757GlobalValue *LLParser::GetGlobalVal(const std::string &Name, const Type *Ty,
758 LocTy Loc) {
759 const PointerType *PTy = dyn_cast<PointerType>(Ty);
760 if (PTy == 0) {
761 Error(Loc, "global variable reference must have pointer type");
762 return 0;
763 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000764
Chris Lattnerdf986172009-01-02 07:01:27 +0000765 // Look this name up in the normal function symbol table.
766 GlobalValue *Val =
767 cast_or_null<GlobalValue>(M->getValueSymbolTable().lookup(Name));
Daniel Dunbara279bc32009-09-20 02:20:51 +0000768
Chris Lattnerdf986172009-01-02 07:01:27 +0000769 // If this is a forward reference for the value, see if we already created a
770 // forward ref record.
771 if (Val == 0) {
772 std::map<std::string, std::pair<GlobalValue*, LocTy> >::iterator
773 I = ForwardRefVals.find(Name);
774 if (I != ForwardRefVals.end())
775 Val = I->second.first;
776 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000777
Chris Lattnerdf986172009-01-02 07:01:27 +0000778 // If we have the value in the symbol table or fwd-ref table, return it.
779 if (Val) {
780 if (Val->getType() == Ty) return Val;
781 Error(Loc, "'@" + Name + "' defined with type '" +
782 Val->getType()->getDescription() + "'");
783 return 0;
784 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000785
Chris Lattnerdf986172009-01-02 07:01:27 +0000786 // Otherwise, create a new forward reference for this value and remember it.
787 GlobalValue *FwdVal;
Chris Lattner1e407c32009-01-08 19:05:36 +0000788 if (const FunctionType *FT = dyn_cast<FunctionType>(PTy->getElementType())) {
789 // Function types can return opaque but functions can't.
790 if (isa<OpaqueType>(FT->getReturnType())) {
791 Error(Loc, "function may not return opaque type");
792 return 0;
793 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000794
Duncan Sands5f4ee1f2009-03-11 08:08:06 +0000795 FwdVal = Function::Create(FT, GlobalValue::ExternalWeakLinkage, Name, M);
Chris Lattner1e407c32009-01-08 19:05:36 +0000796 } else {
Owen Andersone9b11b42009-07-08 19:03:57 +0000797 FwdVal = new GlobalVariable(*M, PTy->getElementType(), false,
798 GlobalValue::ExternalWeakLinkage, 0, Name);
Chris Lattner1e407c32009-01-08 19:05:36 +0000799 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000800
Chris Lattnerdf986172009-01-02 07:01:27 +0000801 ForwardRefVals[Name] = std::make_pair(FwdVal, Loc);
802 return FwdVal;
803}
804
805GlobalValue *LLParser::GetGlobalVal(unsigned ID, const Type *Ty, LocTy Loc) {
806 const PointerType *PTy = dyn_cast<PointerType>(Ty);
807 if (PTy == 0) {
808 Error(Loc, "global variable reference must have pointer type");
809 return 0;
810 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000811
Chris Lattnerdf986172009-01-02 07:01:27 +0000812 GlobalValue *Val = ID < NumberedVals.size() ? NumberedVals[ID] : 0;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000813
Chris Lattnerdf986172009-01-02 07:01:27 +0000814 // If this is a forward reference for the value, see if we already created a
815 // forward ref record.
816 if (Val == 0) {
817 std::map<unsigned, std::pair<GlobalValue*, LocTy> >::iterator
818 I = ForwardRefValIDs.find(ID);
819 if (I != ForwardRefValIDs.end())
820 Val = I->second.first;
821 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000822
Chris Lattnerdf986172009-01-02 07:01:27 +0000823 // If we have the value in the symbol table or fwd-ref table, return it.
824 if (Val) {
825 if (Val->getType() == Ty) return Val;
826 Error(Loc, "'@" + utostr(ID) + "' defined with type '" +
827 Val->getType()->getDescription() + "'");
828 return 0;
829 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000830
Chris Lattnerdf986172009-01-02 07:01:27 +0000831 // Otherwise, create a new forward reference for this value and remember it.
832 GlobalValue *FwdVal;
Chris Lattner830703b2009-01-05 18:27:50 +0000833 if (const FunctionType *FT = dyn_cast<FunctionType>(PTy->getElementType())) {
834 // Function types can return opaque but functions can't.
835 if (isa<OpaqueType>(FT->getReturnType())) {
Chris Lattner0d8484f2009-01-05 18:56:52 +0000836 Error(Loc, "function may not return opaque type");
Chris Lattner830703b2009-01-05 18:27:50 +0000837 return 0;
838 }
Duncan Sands5f4ee1f2009-03-11 08:08:06 +0000839 FwdVal = Function::Create(FT, GlobalValue::ExternalWeakLinkage, "", M);
Chris Lattner830703b2009-01-05 18:27:50 +0000840 } else {
Owen Andersone9b11b42009-07-08 19:03:57 +0000841 FwdVal = new GlobalVariable(*M, PTy->getElementType(), false,
842 GlobalValue::ExternalWeakLinkage, 0, "");
Chris Lattner830703b2009-01-05 18:27:50 +0000843 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000844
Chris Lattnerdf986172009-01-02 07:01:27 +0000845 ForwardRefValIDs[ID] = std::make_pair(FwdVal, Loc);
846 return FwdVal;
847}
848
849
850//===----------------------------------------------------------------------===//
851// Helper Routines.
852//===----------------------------------------------------------------------===//
853
854/// ParseToken - If the current token has the specified kind, eat it and return
855/// success. Otherwise, emit the specified error and return failure.
856bool LLParser::ParseToken(lltok::Kind T, const char *ErrMsg) {
857 if (Lex.getKind() != T)
858 return TokError(ErrMsg);
859 Lex.Lex();
860 return false;
861}
862
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000863/// ParseStringConstant
864/// ::= StringConstant
865bool LLParser::ParseStringConstant(std::string &Result) {
866 if (Lex.getKind() != lltok::StringConstant)
867 return TokError("expected string constant");
868 Result = Lex.getStrVal();
869 Lex.Lex();
870 return false;
871}
872
873/// ParseUInt32
874/// ::= uint32
875bool LLParser::ParseUInt32(unsigned &Val) {
Chris Lattnerdf986172009-01-02 07:01:27 +0000876 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned())
877 return TokError("expected integer");
878 uint64_t Val64 = Lex.getAPSIntVal().getLimitedValue(0xFFFFFFFFULL+1);
879 if (Val64 != unsigned(Val64))
880 return TokError("expected 32-bit integer (too large)");
881 Val = Val64;
882 Lex.Lex();
883 return false;
884}
885
886
887/// ParseOptionalAddrSpace
888/// := /*empty*/
889/// := 'addrspace' '(' uint32 ')'
890bool LLParser::ParseOptionalAddrSpace(unsigned &AddrSpace) {
891 AddrSpace = 0;
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000892 if (!EatIfPresent(lltok::kw_addrspace))
Chris Lattnerdf986172009-01-02 07:01:27 +0000893 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +0000894 return ParseToken(lltok::lparen, "expected '(' in address space") ||
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000895 ParseUInt32(AddrSpace) ||
Chris Lattnerdf986172009-01-02 07:01:27 +0000896 ParseToken(lltok::rparen, "expected ')' in address space");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000897}
Chris Lattnerdf986172009-01-02 07:01:27 +0000898
899/// ParseOptionalAttrs - Parse a potentially empty attribute list. AttrKind
900/// indicates what kind of attribute list this is: 0: function arg, 1: result,
901/// 2: function attr.
Chris Lattnerad9ad7c2009-03-25 06:36:36 +0000902/// 3: function arg after value: FIXME: REMOVE IN LLVM 3.0
Chris Lattnerdf986172009-01-02 07:01:27 +0000903bool LLParser::ParseOptionalAttrs(unsigned &Attrs, unsigned AttrKind) {
904 Attrs = Attribute::None;
905 LocTy AttrLoc = Lex.getLoc();
Daniel Dunbara279bc32009-09-20 02:20:51 +0000906
Chris Lattnerdf986172009-01-02 07:01:27 +0000907 while (1) {
908 switch (Lex.getKind()) {
909 case lltok::kw_sext:
910 case lltok::kw_zext:
Chris Lattnerad9ad7c2009-03-25 06:36:36 +0000911 // Treat these as signext/zeroext if they occur in the argument list after
912 // the value, as in "call i8 @foo(i8 10 sext)". If they occur before the
913 // value, as in "call i8 @foo(i8 sext (" then it is part of a constant
914 // expr.
Chris Lattnerdf986172009-01-02 07:01:27 +0000915 // FIXME: REMOVE THIS IN LLVM 3.0
Chris Lattnerad9ad7c2009-03-25 06:36:36 +0000916 if (AttrKind == 3) {
Chris Lattnerdf986172009-01-02 07:01:27 +0000917 if (Lex.getKind() == lltok::kw_sext)
918 Attrs |= Attribute::SExt;
919 else
920 Attrs |= Attribute::ZExt;
921 break;
922 }
923 // FALL THROUGH.
924 default: // End of attributes.
925 if (AttrKind != 2 && (Attrs & Attribute::FunctionOnly))
926 return Error(AttrLoc, "invalid use of function-only attribute");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000927
Chris Lattnerad9ad7c2009-03-25 06:36:36 +0000928 if (AttrKind != 0 && AttrKind != 3 && (Attrs & Attribute::ParameterOnly))
Chris Lattnerdf986172009-01-02 07:01:27 +0000929 return Error(AttrLoc, "invalid use of parameter-only attribute");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000930
Chris Lattnerdf986172009-01-02 07:01:27 +0000931 return false;
Devang Patel578efa92009-06-05 21:57:13 +0000932 case lltok::kw_zeroext: Attrs |= Attribute::ZExt; break;
933 case lltok::kw_signext: Attrs |= Attribute::SExt; break;
934 case lltok::kw_inreg: Attrs |= Attribute::InReg; break;
935 case lltok::kw_sret: Attrs |= Attribute::StructRet; break;
936 case lltok::kw_noalias: Attrs |= Attribute::NoAlias; break;
937 case lltok::kw_nocapture: Attrs |= Attribute::NoCapture; break;
938 case lltok::kw_byval: Attrs |= Attribute::ByVal; break;
939 case lltok::kw_nest: Attrs |= Attribute::Nest; break;
Chris Lattnerdf986172009-01-02 07:01:27 +0000940
Devang Patel578efa92009-06-05 21:57:13 +0000941 case lltok::kw_noreturn: Attrs |= Attribute::NoReturn; break;
942 case lltok::kw_nounwind: Attrs |= Attribute::NoUnwind; break;
943 case lltok::kw_noinline: Attrs |= Attribute::NoInline; break;
944 case lltok::kw_readnone: Attrs |= Attribute::ReadNone; break;
945 case lltok::kw_readonly: Attrs |= Attribute::ReadOnly; break;
Dale Johannesende86d472009-08-26 01:08:21 +0000946 case lltok::kw_inlinehint: Attrs |= Attribute::InlineHint; break;
Devang Patel578efa92009-06-05 21:57:13 +0000947 case lltok::kw_alwaysinline: Attrs |= Attribute::AlwaysInline; break;
948 case lltok::kw_optsize: Attrs |= Attribute::OptimizeForSize; break;
949 case lltok::kw_ssp: Attrs |= Attribute::StackProtect; break;
950 case lltok::kw_sspreq: Attrs |= Attribute::StackProtectReq; break;
951 case lltok::kw_noredzone: Attrs |= Attribute::NoRedZone; break;
952 case lltok::kw_noimplicitfloat: Attrs |= Attribute::NoImplicitFloat; break;
Anton Korobeynikovc5ec8a72009-07-17 18:07:26 +0000953 case lltok::kw_naked: Attrs |= Attribute::Naked; break;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000954
Chris Lattnerdf986172009-01-02 07:01:27 +0000955 case lltok::kw_align: {
956 unsigned Alignment;
957 if (ParseOptionalAlignment(Alignment))
958 return true;
959 Attrs |= Attribute::constructAlignmentFromInt(Alignment);
960 continue;
961 }
962 }
963 Lex.Lex();
964 }
965}
966
967/// ParseOptionalLinkage
968/// ::= /*empty*/
Rafael Espindolabb46f522009-01-15 20:18:42 +0000969/// ::= 'private'
Bill Wendling3d10a5a2009-07-20 01:03:30 +0000970/// ::= 'linker_private'
Chris Lattnerdf986172009-01-02 07:01:27 +0000971/// ::= 'internal'
972/// ::= 'weak'
Duncan Sands667d4b82009-03-07 15:45:40 +0000973/// ::= 'weak_odr'
Chris Lattnerdf986172009-01-02 07:01:27 +0000974/// ::= 'linkonce'
Duncan Sands667d4b82009-03-07 15:45:40 +0000975/// ::= 'linkonce_odr'
Chris Lattnerdf986172009-01-02 07:01:27 +0000976/// ::= 'appending'
977/// ::= 'dllexport'
978/// ::= 'common'
979/// ::= 'dllimport'
980/// ::= 'extern_weak'
981/// ::= 'external'
982bool LLParser::ParseOptionalLinkage(unsigned &Res, bool &HasLinkage) {
983 HasLinkage = false;
984 switch (Lex.getKind()) {
Bill Wendling3d10a5a2009-07-20 01:03:30 +0000985 default: Res=GlobalValue::ExternalLinkage; return false;
986 case lltok::kw_private: Res = GlobalValue::PrivateLinkage; break;
987 case lltok::kw_linker_private: Res = GlobalValue::LinkerPrivateLinkage; break;
988 case lltok::kw_internal: Res = GlobalValue::InternalLinkage; break;
989 case lltok::kw_weak: Res = GlobalValue::WeakAnyLinkage; break;
990 case lltok::kw_weak_odr: Res = GlobalValue::WeakODRLinkage; break;
991 case lltok::kw_linkonce: Res = GlobalValue::LinkOnceAnyLinkage; break;
992 case lltok::kw_linkonce_odr: Res = GlobalValue::LinkOnceODRLinkage; break;
Chris Lattner266c7bb2009-04-13 05:44:34 +0000993 case lltok::kw_available_externally:
994 Res = GlobalValue::AvailableExternallyLinkage;
995 break;
Bill Wendling3d10a5a2009-07-20 01:03:30 +0000996 case lltok::kw_appending: Res = GlobalValue::AppendingLinkage; break;
997 case lltok::kw_dllexport: Res = GlobalValue::DLLExportLinkage; break;
998 case lltok::kw_common: Res = GlobalValue::CommonLinkage; break;
999 case lltok::kw_dllimport: Res = GlobalValue::DLLImportLinkage; break;
1000 case lltok::kw_extern_weak: Res = GlobalValue::ExternalWeakLinkage; break;
1001 case lltok::kw_external: Res = GlobalValue::ExternalLinkage; break;
Chris Lattnerdf986172009-01-02 07:01:27 +00001002 }
1003 Lex.Lex();
1004 HasLinkage = true;
1005 return false;
1006}
1007
1008/// ParseOptionalVisibility
1009/// ::= /*empty*/
1010/// ::= 'default'
1011/// ::= 'hidden'
1012/// ::= 'protected'
Daniel Dunbara279bc32009-09-20 02:20:51 +00001013///
Chris Lattnerdf986172009-01-02 07:01:27 +00001014bool LLParser::ParseOptionalVisibility(unsigned &Res) {
1015 switch (Lex.getKind()) {
1016 default: Res = GlobalValue::DefaultVisibility; return false;
1017 case lltok::kw_default: Res = GlobalValue::DefaultVisibility; break;
1018 case lltok::kw_hidden: Res = GlobalValue::HiddenVisibility; break;
1019 case lltok::kw_protected: Res = GlobalValue::ProtectedVisibility; break;
1020 }
1021 Lex.Lex();
1022 return false;
1023}
1024
1025/// ParseOptionalCallingConv
1026/// ::= /*empty*/
1027/// ::= 'ccc'
1028/// ::= 'fastcc'
1029/// ::= 'coldcc'
1030/// ::= 'x86_stdcallcc'
1031/// ::= 'x86_fastcallcc'
Anton Korobeynikov385f5a92009-06-16 18:50:49 +00001032/// ::= 'arm_apcscc'
1033/// ::= 'arm_aapcscc'
1034/// ::= 'arm_aapcs_vfpcc'
Anton Korobeynikov211a14e2009-12-07 02:27:35 +00001035/// ::= 'msp430_intrcc'
Chris Lattnerdf986172009-01-02 07:01:27 +00001036/// ::= 'cc' UINT
Anton Korobeynikov385f5a92009-06-16 18:50:49 +00001037///
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001038bool LLParser::ParseOptionalCallingConv(CallingConv::ID &CC) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001039 switch (Lex.getKind()) {
1040 default: CC = CallingConv::C; return false;
1041 case lltok::kw_ccc: CC = CallingConv::C; break;
1042 case lltok::kw_fastcc: CC = CallingConv::Fast; break;
1043 case lltok::kw_coldcc: CC = CallingConv::Cold; break;
1044 case lltok::kw_x86_stdcallcc: CC = CallingConv::X86_StdCall; break;
1045 case lltok::kw_x86_fastcallcc: CC = CallingConv::X86_FastCall; break;
Anton Korobeynikov385f5a92009-06-16 18:50:49 +00001046 case lltok::kw_arm_apcscc: CC = CallingConv::ARM_APCS; break;
1047 case lltok::kw_arm_aapcscc: CC = CallingConv::ARM_AAPCS; break;
1048 case lltok::kw_arm_aapcs_vfpcc:CC = CallingConv::ARM_AAPCS_VFP; break;
Anton Korobeynikov211a14e2009-12-07 02:27:35 +00001049 case lltok::kw_msp430_intrcc: CC = CallingConv::MSP430_INTR; break;
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001050 case lltok::kw_cc: {
1051 unsigned ArbitraryCC;
1052 Lex.Lex();
1053 if (ParseUInt32(ArbitraryCC)) {
1054 return true;
1055 } else
1056 CC = static_cast<CallingConv::ID>(ArbitraryCC);
1057 return false;
1058 }
1059 break;
Chris Lattnerdf986172009-01-02 07:01:27 +00001060 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001061
Chris Lattnerdf986172009-01-02 07:01:27 +00001062 Lex.Lex();
1063 return false;
1064}
1065
Devang Patel0475c912009-09-29 00:01:14 +00001066/// ParseOptionalCustomMetadata
Devang Patelf633a062009-09-17 23:04:48 +00001067/// ::= /* empty */
Chris Lattner3f3a0f62009-12-29 21:25:40 +00001068/// ::= !dbg !42 (',' !dbg !57)*
Devang Patel0475c912009-09-29 00:01:14 +00001069bool LLParser::ParseOptionalCustomMetadata() {
Chris Lattner1d928312009-12-30 05:02:06 +00001070 if (Lex.getKind() != lltok::MetadataVar)
Devang Patelf633a062009-09-17 23:04:48 +00001071 return false;
Devang Patel0475c912009-09-29 00:01:14 +00001072
Chris Lattner3f3a0f62009-12-29 21:25:40 +00001073 while (1) {
1074 std::string Name = Lex.getStrVal();
1075 Lex.Lex();
Chris Lattner52e20312009-10-19 05:31:10 +00001076
Chris Lattner442ffa12009-12-29 21:53:55 +00001077 MDNode *Node;
Chris Lattnere434d272009-12-30 04:56:59 +00001078 if (ParseToken(lltok::exclaim, "expected '!' here") ||
1079 ParseMDNodeID(Node))
1080 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001081
Chris Lattner3f3a0f62009-12-29 21:25:40 +00001082 unsigned MDK = M->getMDKindID(Name.c_str());
Chris Lattner442ffa12009-12-29 21:53:55 +00001083 MDsOnInst.push_back(std::make_pair(MDK, Node));
Chris Lattner3f3a0f62009-12-29 21:25:40 +00001084
1085 // If this is the end of the list, we're done.
1086 if (!EatIfPresent(lltok::comma))
1087 return false;
1088
1089 // The next value must be a custom metadata id.
Chris Lattner1d928312009-12-30 05:02:06 +00001090 if (Lex.getKind() != lltok::MetadataVar)
Chris Lattner3f3a0f62009-12-29 21:25:40 +00001091 return TokError("expected more custom metadata ids");
1092 }
Devang Patelf633a062009-09-17 23:04:48 +00001093}
1094
Chris Lattnerdf986172009-01-02 07:01:27 +00001095/// ParseOptionalAlignment
1096/// ::= /* empty */
1097/// ::= 'align' 4
1098bool LLParser::ParseOptionalAlignment(unsigned &Alignment) {
1099 Alignment = 0;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001100 if (!EatIfPresent(lltok::kw_align))
1101 return false;
Chris Lattner3fbb3ab2009-01-05 07:46:05 +00001102 LocTy AlignLoc = Lex.getLoc();
1103 if (ParseUInt32(Alignment)) return true;
1104 if (!isPowerOf2_32(Alignment))
1105 return Error(AlignLoc, "alignment is not a power of two");
1106 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00001107}
1108
Devang Patelf633a062009-09-17 23:04:48 +00001109/// ParseOptionalInfo
1110/// ::= OptionalInfo (',' OptionalInfo)+
1111bool LLParser::ParseOptionalInfo(unsigned &Alignment) {
1112
1113 // FIXME: Handle customized metadata info attached with an instruction.
1114 do {
Chris Lattner1d928312009-12-30 05:02:06 +00001115 if (Lex.getKind() == lltok::MetadataVar) {
Devang Patel0475c912009-09-29 00:01:14 +00001116 if (ParseOptionalCustomMetadata()) return true;
Devang Patelf633a062009-09-17 23:04:48 +00001117 } else if (Lex.getKind() == lltok::kw_align) {
1118 if (ParseOptionalAlignment(Alignment)) return true;
1119 } else
1120 return true;
1121 } while (EatIfPresent(lltok::comma));
Daniel Dunbara279bc32009-09-20 02:20:51 +00001122
Devang Patelf633a062009-09-17 23:04:48 +00001123 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00001124}
1125
Devang Patelf633a062009-09-17 23:04:48 +00001126
Chris Lattnerdf986172009-01-02 07:01:27 +00001127/// ParseIndexList
1128/// ::= (',' uint32)+
1129bool LLParser::ParseIndexList(SmallVectorImpl<unsigned> &Indices) {
1130 if (Lex.getKind() != lltok::comma)
1131 return TokError("expected ',' as start of index list");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001132
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001133 while (EatIfPresent(lltok::comma)) {
Chris Lattner1d928312009-12-30 05:02:06 +00001134 // FIXME: TERRIBLE HACK. Loses comma state.
1135 if (Lex.getKind() == lltok::MetadataVar)
Devang Patele8bc45a2009-11-03 19:06:07 +00001136 break;
Chris Lattnerdf986172009-01-02 07:01:27 +00001137 unsigned Idx;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001138 if (ParseUInt32(Idx)) return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00001139 Indices.push_back(Idx);
1140 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001141
Chris Lattnerdf986172009-01-02 07:01:27 +00001142 return false;
1143}
1144
1145//===----------------------------------------------------------------------===//
1146// Type Parsing.
1147//===----------------------------------------------------------------------===//
1148
1149/// ParseType - Parse and resolve a full type.
Chris Lattnera9a9e072009-03-09 04:49:14 +00001150bool LLParser::ParseType(PATypeHolder &Result, bool AllowVoid) {
1151 LocTy TypeLoc = Lex.getLoc();
Chris Lattnerdf986172009-01-02 07:01:27 +00001152 if (ParseTypeRec(Result)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001153
Chris Lattnerdf986172009-01-02 07:01:27 +00001154 // Verify no unresolved uprefs.
1155 if (!UpRefs.empty())
1156 return Error(UpRefs.back().Loc, "invalid unresolved type up reference");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001157
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001158 if (!AllowVoid && Result.get()->isVoidTy())
Chris Lattnera9a9e072009-03-09 04:49:14 +00001159 return Error(TypeLoc, "void type only allowed for function results");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001160
Chris Lattnerdf986172009-01-02 07:01:27 +00001161 return false;
1162}
1163
1164/// HandleUpRefs - Every time we finish a new layer of types, this function is
1165/// called. It loops through the UpRefs vector, which is a list of the
1166/// currently active types. For each type, if the up-reference is contained in
1167/// the newly completed type, we decrement the level count. When the level
1168/// count reaches zero, the up-referenced type is the type that is passed in:
1169/// thus we can complete the cycle.
1170///
1171PATypeHolder LLParser::HandleUpRefs(const Type *ty) {
1172 // If Ty isn't abstract, or if there are no up-references in it, then there is
1173 // nothing to resolve here.
1174 if (!ty->isAbstract() || UpRefs.empty()) return ty;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001175
Chris Lattnerdf986172009-01-02 07:01:27 +00001176 PATypeHolder Ty(ty);
1177#if 0
David Greene0e28d762009-12-23 23:38:28 +00001178 dbgs() << "Type '" << Ty->getDescription()
Chris Lattnerdf986172009-01-02 07:01:27 +00001179 << "' newly formed. Resolving upreferences.\n"
1180 << UpRefs.size() << " upreferences active!\n";
1181#endif
Daniel Dunbara279bc32009-09-20 02:20:51 +00001182
Chris Lattnerdf986172009-01-02 07:01:27 +00001183 // If we find any resolvable upreferences (i.e., those whose NestingLevel goes
1184 // to zero), we resolve them all together before we resolve them to Ty. At
1185 // the end of the loop, if there is anything to resolve to Ty, it will be in
1186 // this variable.
1187 OpaqueType *TypeToResolve = 0;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001188
Chris Lattnerdf986172009-01-02 07:01:27 +00001189 for (unsigned i = 0; i != UpRefs.size(); ++i) {
1190 // Determine if 'Ty' directly contains this up-references 'LastContainedTy'.
1191 bool ContainsType =
1192 std::find(Ty->subtype_begin(), Ty->subtype_end(),
1193 UpRefs[i].LastContainedTy) != Ty->subtype_end();
Daniel Dunbara279bc32009-09-20 02:20:51 +00001194
Chris Lattnerdf986172009-01-02 07:01:27 +00001195#if 0
David Greene0e28d762009-12-23 23:38:28 +00001196 dbgs() << " UR#" << i << " - TypeContains(" << Ty->getDescription() << ", "
Chris Lattnerdf986172009-01-02 07:01:27 +00001197 << UpRefs[i].LastContainedTy->getDescription() << ") = "
1198 << (ContainsType ? "true" : "false")
1199 << " level=" << UpRefs[i].NestingLevel << "\n";
1200#endif
1201 if (!ContainsType)
1202 continue;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001203
Chris Lattnerdf986172009-01-02 07:01:27 +00001204 // Decrement level of upreference
1205 unsigned Level = --UpRefs[i].NestingLevel;
1206 UpRefs[i].LastContainedTy = Ty;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001207
Chris Lattnerdf986172009-01-02 07:01:27 +00001208 // If the Up-reference has a non-zero level, it shouldn't be resolved yet.
1209 if (Level != 0)
1210 continue;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001211
Chris Lattnerdf986172009-01-02 07:01:27 +00001212#if 0
David Greene0e28d762009-12-23 23:38:28 +00001213 dbgs() << " * Resolving upreference for " << UpRefs[i].UpRefTy << "\n";
Chris Lattnerdf986172009-01-02 07:01:27 +00001214#endif
1215 if (!TypeToResolve)
1216 TypeToResolve = UpRefs[i].UpRefTy;
1217 else
1218 UpRefs[i].UpRefTy->refineAbstractTypeTo(TypeToResolve);
1219 UpRefs.erase(UpRefs.begin()+i); // Remove from upreference list.
1220 --i; // Do not skip the next element.
1221 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001222
Chris Lattnerdf986172009-01-02 07:01:27 +00001223 if (TypeToResolve)
1224 TypeToResolve->refineAbstractTypeTo(Ty);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001225
Chris Lattnerdf986172009-01-02 07:01:27 +00001226 return Ty;
1227}
1228
1229
1230/// ParseTypeRec - The recursive function used to process the internal
1231/// implementation details of types.
1232bool LLParser::ParseTypeRec(PATypeHolder &Result) {
1233 switch (Lex.getKind()) {
1234 default:
1235 return TokError("expected type");
1236 case lltok::Type:
1237 // TypeRec ::= 'float' | 'void' (etc)
1238 Result = Lex.getTyVal();
Daniel Dunbara279bc32009-09-20 02:20:51 +00001239 Lex.Lex();
Chris Lattnerdf986172009-01-02 07:01:27 +00001240 break;
1241 case lltok::kw_opaque:
1242 // TypeRec ::= 'opaque'
Owen Anderson0e275dc2009-08-13 23:27:32 +00001243 Result = OpaqueType::get(Context);
Chris Lattnerdf986172009-01-02 07:01:27 +00001244 Lex.Lex();
1245 break;
1246 case lltok::lbrace:
1247 // TypeRec ::= '{' ... '}'
1248 if (ParseStructType(Result, false))
1249 return true;
1250 break;
1251 case lltok::lsquare:
1252 // TypeRec ::= '[' ... ']'
1253 Lex.Lex(); // eat the lsquare.
1254 if (ParseArrayVectorType(Result, false))
1255 return true;
1256 break;
1257 case lltok::less: // Either vector or packed struct.
1258 // TypeRec ::= '<' ... '>'
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001259 Lex.Lex();
1260 if (Lex.getKind() == lltok::lbrace) {
1261 if (ParseStructType(Result, true) ||
1262 ParseToken(lltok::greater, "expected '>' at end of packed struct"))
Chris Lattnerdf986172009-01-02 07:01:27 +00001263 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00001264 } else if (ParseArrayVectorType(Result, true))
1265 return true;
1266 break;
1267 case lltok::LocalVar:
1268 case lltok::StringConstant: // FIXME: REMOVE IN LLVM 3.0
1269 // TypeRec ::= %foo
1270 if (const Type *T = M->getTypeByName(Lex.getStrVal())) {
1271 Result = T;
1272 } else {
Owen Anderson0e275dc2009-08-13 23:27:32 +00001273 Result = OpaqueType::get(Context);
Chris Lattnerdf986172009-01-02 07:01:27 +00001274 ForwardRefTypes.insert(std::make_pair(Lex.getStrVal(),
1275 std::make_pair(Result,
1276 Lex.getLoc())));
1277 M->addTypeName(Lex.getStrVal(), Result.get());
1278 }
1279 Lex.Lex();
1280 break;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001281
Chris Lattnerdf986172009-01-02 07:01:27 +00001282 case lltok::LocalVarID:
1283 // TypeRec ::= %4
1284 if (Lex.getUIntVal() < NumberedTypes.size())
1285 Result = NumberedTypes[Lex.getUIntVal()];
1286 else {
1287 std::map<unsigned, std::pair<PATypeHolder, LocTy> >::iterator
1288 I = ForwardRefTypeIDs.find(Lex.getUIntVal());
1289 if (I != ForwardRefTypeIDs.end())
1290 Result = I->second.first;
1291 else {
Owen Anderson0e275dc2009-08-13 23:27:32 +00001292 Result = OpaqueType::get(Context);
Chris Lattnerdf986172009-01-02 07:01:27 +00001293 ForwardRefTypeIDs.insert(std::make_pair(Lex.getUIntVal(),
1294 std::make_pair(Result,
1295 Lex.getLoc())));
1296 }
1297 }
1298 Lex.Lex();
1299 break;
1300 case lltok::backslash: {
1301 // TypeRec ::= '\' 4
Chris Lattnerdf986172009-01-02 07:01:27 +00001302 Lex.Lex();
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001303 unsigned Val;
1304 if (ParseUInt32(Val)) return true;
Owen Anderson0e275dc2009-08-13 23:27:32 +00001305 OpaqueType *OT = OpaqueType::get(Context); //Use temporary placeholder.
Chris Lattnerdf986172009-01-02 07:01:27 +00001306 UpRefs.push_back(UpRefRecord(Lex.getLoc(), Val, OT));
1307 Result = OT;
1308 break;
1309 }
1310 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001311
1312 // Parse the type suffixes.
Chris Lattnerdf986172009-01-02 07:01:27 +00001313 while (1) {
1314 switch (Lex.getKind()) {
1315 // End of type.
Daniel Dunbara279bc32009-09-20 02:20:51 +00001316 default: return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00001317
1318 // TypeRec ::= TypeRec '*'
1319 case lltok::star:
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001320 if (Result.get()->isLabelTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00001321 return TokError("basic block pointers are invalid");
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001322 if (Result.get()->isVoidTy())
Dan Gohmanb9070d32009-02-09 17:41:21 +00001323 return TokError("pointers to void are invalid; use i8* instead");
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001324 if (!PointerType::isValidElementType(Result.get()))
1325 return TokError("pointer to this type is invalid");
Owen Andersondebcb012009-07-29 22:17:13 +00001326 Result = HandleUpRefs(PointerType::getUnqual(Result.get()));
Chris Lattnerdf986172009-01-02 07:01:27 +00001327 Lex.Lex();
1328 break;
1329
1330 // TypeRec ::= TypeRec 'addrspace' '(' uint32 ')' '*'
1331 case lltok::kw_addrspace: {
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001332 if (Result.get()->isLabelTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00001333 return TokError("basic block pointers are invalid");
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001334 if (Result.get()->isVoidTy())
Dan Gohmanb9070d32009-02-09 17:41:21 +00001335 return TokError("pointers to void are invalid; use i8* instead");
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001336 if (!PointerType::isValidElementType(Result.get()))
1337 return TokError("pointer to this type is invalid");
Chris Lattnerdf986172009-01-02 07:01:27 +00001338 unsigned AddrSpace;
1339 if (ParseOptionalAddrSpace(AddrSpace) ||
1340 ParseToken(lltok::star, "expected '*' in address space"))
1341 return true;
1342
Owen Andersondebcb012009-07-29 22:17:13 +00001343 Result = HandleUpRefs(PointerType::get(Result.get(), AddrSpace));
Chris Lattnerdf986172009-01-02 07:01:27 +00001344 break;
1345 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001346
Chris Lattnerdf986172009-01-02 07:01:27 +00001347 /// Types '(' ArgTypeListI ')' OptFuncAttrs
1348 case lltok::lparen:
1349 if (ParseFunctionType(Result))
1350 return true;
1351 break;
1352 }
1353 }
1354}
1355
1356/// ParseParameterList
1357/// ::= '(' ')'
1358/// ::= '(' Arg (',' Arg)* ')'
1359/// Arg
1360/// ::= Type OptionalAttributes Value OptionalAttributes
1361bool LLParser::ParseParameterList(SmallVectorImpl<ParamInfo> &ArgList,
1362 PerFunctionState &PFS) {
1363 if (ParseToken(lltok::lparen, "expected '(' in call"))
1364 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001365
Chris Lattnerdf986172009-01-02 07:01:27 +00001366 while (Lex.getKind() != lltok::rparen) {
1367 // If this isn't the first argument, we need a comma.
1368 if (!ArgList.empty() &&
1369 ParseToken(lltok::comma, "expected ',' in argument list"))
1370 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001371
Chris Lattnerdf986172009-01-02 07:01:27 +00001372 // Parse the argument.
1373 LocTy ArgLoc;
Owen Anderson1d0be152009-08-13 21:58:54 +00001374 PATypeHolder ArgTy(Type::getVoidTy(Context));
Victor Hernandez19715562009-12-03 23:40:58 +00001375 unsigned ArgAttrs1 = Attribute::None;
1376 unsigned ArgAttrs2 = Attribute::None;
Chris Lattnerdf986172009-01-02 07:01:27 +00001377 Value *V;
Victor Hernandez19715562009-12-03 23:40:58 +00001378 if (ParseType(ArgTy, ArgLoc))
Chris Lattnerdf986172009-01-02 07:01:27 +00001379 return true;
Victor Hernandez19715562009-12-03 23:40:58 +00001380
Chris Lattner287881d2009-12-30 02:11:14 +00001381 // Otherwise, handle normal operands.
1382 if (ParseOptionalAttrs(ArgAttrs1, 0) ||
1383 ParseValue(ArgTy, V, PFS) ||
1384 // FIXME: Should not allow attributes after the argument, remove this
1385 // in LLVM 3.0.
1386 ParseOptionalAttrs(ArgAttrs2, 3))
1387 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00001388 ArgList.push_back(ParamInfo(ArgLoc, V, ArgAttrs1|ArgAttrs2));
1389 }
1390
1391 Lex.Lex(); // Lex the ')'.
1392 return false;
1393}
1394
1395
1396
Chris Lattnerdfd19dd2009-01-05 18:34:07 +00001397/// ParseArgumentList - Parse the argument list for a function type or function
1398/// prototype. If 'inType' is true then we are parsing a FunctionType.
Chris Lattnerdf986172009-01-02 07:01:27 +00001399/// ::= '(' ArgTypeListI ')'
1400/// ArgTypeListI
1401/// ::= /*empty*/
1402/// ::= '...'
1403/// ::= ArgTypeList ',' '...'
1404/// ::= ArgType (',' ArgType)*
Chris Lattnerdfd19dd2009-01-05 18:34:07 +00001405///
Chris Lattnerdf986172009-01-02 07:01:27 +00001406bool LLParser::ParseArgumentList(std::vector<ArgInfo> &ArgList,
Chris Lattnerdfd19dd2009-01-05 18:34:07 +00001407 bool &isVarArg, bool inType) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001408 isVarArg = false;
1409 assert(Lex.getKind() == lltok::lparen);
1410 Lex.Lex(); // eat the (.
Daniel Dunbara279bc32009-09-20 02:20:51 +00001411
Chris Lattnerdf986172009-01-02 07:01:27 +00001412 if (Lex.getKind() == lltok::rparen) {
1413 // empty
1414 } else if (Lex.getKind() == lltok::dotdotdot) {
1415 isVarArg = true;
1416 Lex.Lex();
1417 } else {
1418 LocTy TypeLoc = Lex.getLoc();
Owen Anderson1d0be152009-08-13 21:58:54 +00001419 PATypeHolder ArgTy(Type::getVoidTy(Context));
Chris Lattnerdf986172009-01-02 07:01:27 +00001420 unsigned Attrs;
Chris Lattnerdf986172009-01-02 07:01:27 +00001421 std::string Name;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001422
Chris Lattnerdfd19dd2009-01-05 18:34:07 +00001423 // If we're parsing a type, use ParseTypeRec, because we allow recursive
1424 // types (such as a function returning a pointer to itself). If parsing a
1425 // function prototype, we require fully resolved types.
1426 if ((inType ? ParseTypeRec(ArgTy) : ParseType(ArgTy)) ||
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001427 ParseOptionalAttrs(Attrs, 0)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001428
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001429 if (ArgTy->isVoidTy())
Chris Lattnera9a9e072009-03-09 04:49:14 +00001430 return Error(TypeLoc, "argument can not have void type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001431
Chris Lattnerdf986172009-01-02 07:01:27 +00001432 if (Lex.getKind() == lltok::LocalVar ||
1433 Lex.getKind() == lltok::StringConstant) { // FIXME: REMOVE IN LLVM 3.0
1434 Name = Lex.getStrVal();
1435 Lex.Lex();
1436 }
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001437
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001438 if (!FunctionType::isValidArgumentType(ArgTy))
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001439 return Error(TypeLoc, "invalid type for function argument");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001440
Chris Lattnerdf986172009-01-02 07:01:27 +00001441 ArgList.push_back(ArgInfo(TypeLoc, ArgTy, Attrs, Name));
Daniel Dunbara279bc32009-09-20 02:20:51 +00001442
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001443 while (EatIfPresent(lltok::comma)) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001444 // Handle ... at end of arg list.
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001445 if (EatIfPresent(lltok::dotdotdot)) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001446 isVarArg = true;
Chris Lattnerdf986172009-01-02 07:01:27 +00001447 break;
1448 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001449
Chris Lattnerdf986172009-01-02 07:01:27 +00001450 // Otherwise must be an argument type.
1451 TypeLoc = Lex.getLoc();
Chris Lattnera9a9e072009-03-09 04:49:14 +00001452 if ((inType ? ParseTypeRec(ArgTy) : ParseType(ArgTy)) ||
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001453 ParseOptionalAttrs(Attrs, 0)) return true;
1454
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001455 if (ArgTy->isVoidTy())
Chris Lattnera9a9e072009-03-09 04:49:14 +00001456 return Error(TypeLoc, "argument can not have void type");
1457
Chris Lattnerdf986172009-01-02 07:01:27 +00001458 if (Lex.getKind() == lltok::LocalVar ||
1459 Lex.getKind() == lltok::StringConstant) { // FIXME: REMOVE IN LLVM 3.0
1460 Name = Lex.getStrVal();
1461 Lex.Lex();
1462 } else {
1463 Name = "";
1464 }
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001465
1466 if (!ArgTy->isFirstClassType() && !isa<OpaqueType>(ArgTy))
1467 return Error(TypeLoc, "invalid type for function argument");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001468
Chris Lattnerdf986172009-01-02 07:01:27 +00001469 ArgList.push_back(ArgInfo(TypeLoc, ArgTy, Attrs, Name));
1470 }
1471 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001472
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001473 return ParseToken(lltok::rparen, "expected ')' at end of argument list");
Chris Lattnerdf986172009-01-02 07:01:27 +00001474}
Daniel Dunbara279bc32009-09-20 02:20:51 +00001475
Chris Lattnerdf986172009-01-02 07:01:27 +00001476/// ParseFunctionType
1477/// ::= Type ArgumentList OptionalAttrs
1478bool LLParser::ParseFunctionType(PATypeHolder &Result) {
1479 assert(Lex.getKind() == lltok::lparen);
1480
Chris Lattnerd77d04c2009-01-05 08:04:33 +00001481 if (!FunctionType::isValidReturnType(Result))
1482 return TokError("invalid function return type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001483
Chris Lattnerdf986172009-01-02 07:01:27 +00001484 std::vector<ArgInfo> ArgList;
1485 bool isVarArg;
1486 unsigned Attrs;
Chris Lattnerdfd19dd2009-01-05 18:34:07 +00001487 if (ParseArgumentList(ArgList, isVarArg, true) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00001488 // FIXME: Allow, but ignore attributes on function types!
1489 // FIXME: Remove in LLVM 3.0
1490 ParseOptionalAttrs(Attrs, 2))
1491 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001492
Chris Lattnerdf986172009-01-02 07:01:27 +00001493 // Reject names on the arguments lists.
1494 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
1495 if (!ArgList[i].Name.empty())
1496 return Error(ArgList[i].Loc, "argument name invalid in function type");
1497 if (!ArgList[i].Attrs != 0) {
1498 // Allow but ignore attributes on function types; this permits
1499 // auto-upgrade.
1500 // FIXME: REJECT ATTRIBUTES ON FUNCTION TYPES in LLVM 3.0
1501 }
1502 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001503
Chris Lattnerdf986172009-01-02 07:01:27 +00001504 std::vector<const Type*> ArgListTy;
1505 for (unsigned i = 0, e = ArgList.size(); i != e; ++i)
1506 ArgListTy.push_back(ArgList[i].Type);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001507
Owen Andersondebcb012009-07-29 22:17:13 +00001508 Result = HandleUpRefs(FunctionType::get(Result.get(),
Owen Andersonfba933c2009-07-01 23:57:11 +00001509 ArgListTy, isVarArg));
Chris Lattnerdf986172009-01-02 07:01:27 +00001510 return false;
1511}
1512
1513/// ParseStructType: Handles packed and unpacked types. </> parsed elsewhere.
1514/// TypeRec
1515/// ::= '{' '}'
1516/// ::= '{' TypeRec (',' TypeRec)* '}'
1517/// ::= '<' '{' '}' '>'
1518/// ::= '<' '{' TypeRec (',' TypeRec)* '}' '>'
1519bool LLParser::ParseStructType(PATypeHolder &Result, bool Packed) {
1520 assert(Lex.getKind() == lltok::lbrace);
1521 Lex.Lex(); // Consume the '{'
Daniel Dunbara279bc32009-09-20 02:20:51 +00001522
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001523 if (EatIfPresent(lltok::rbrace)) {
Owen Andersond7f2a6c2009-08-05 23:16:16 +00001524 Result = StructType::get(Context, Packed);
Chris Lattnerdf986172009-01-02 07:01:27 +00001525 return false;
1526 }
1527
1528 std::vector<PATypeHolder> ParamsList;
Chris Lattnera9a9e072009-03-09 04:49:14 +00001529 LocTy EltTyLoc = Lex.getLoc();
Chris Lattnerdf986172009-01-02 07:01:27 +00001530 if (ParseTypeRec(Result)) return true;
1531 ParamsList.push_back(Result);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001532
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001533 if (Result->isVoidTy())
Chris Lattnera9a9e072009-03-09 04:49:14 +00001534 return Error(EltTyLoc, "struct element can not have void type");
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001535 if (!StructType::isValidElementType(Result))
1536 return Error(EltTyLoc, "invalid element type for struct");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001537
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001538 while (EatIfPresent(lltok::comma)) {
Chris Lattnera9a9e072009-03-09 04:49:14 +00001539 EltTyLoc = Lex.getLoc();
Chris Lattnerdf986172009-01-02 07:01:27 +00001540 if (ParseTypeRec(Result)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001541
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001542 if (Result->isVoidTy())
Chris Lattnera9a9e072009-03-09 04:49:14 +00001543 return Error(EltTyLoc, "struct element can not have void type");
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001544 if (!StructType::isValidElementType(Result))
1545 return Error(EltTyLoc, "invalid element type for struct");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001546
Chris Lattnerdf986172009-01-02 07:01:27 +00001547 ParamsList.push_back(Result);
1548 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001549
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001550 if (ParseToken(lltok::rbrace, "expected '}' at end of struct"))
1551 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001552
Chris Lattnerdf986172009-01-02 07:01:27 +00001553 std::vector<const Type*> ParamsListTy;
1554 for (unsigned i = 0, e = ParamsList.size(); i != e; ++i)
1555 ParamsListTy.push_back(ParamsList[i].get());
Owen Andersond7f2a6c2009-08-05 23:16:16 +00001556 Result = HandleUpRefs(StructType::get(Context, ParamsListTy, Packed));
Chris Lattnerdf986172009-01-02 07:01:27 +00001557 return false;
1558}
1559
1560/// ParseArrayVectorType - Parse an array or vector type, assuming the first
1561/// token has already been consumed.
Daniel Dunbara279bc32009-09-20 02:20:51 +00001562/// TypeRec
Chris Lattnerdf986172009-01-02 07:01:27 +00001563/// ::= '[' APSINTVAL 'x' Types ']'
1564/// ::= '<' APSINTVAL 'x' Types '>'
1565bool LLParser::ParseArrayVectorType(PATypeHolder &Result, bool isVector) {
1566 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned() ||
1567 Lex.getAPSIntVal().getBitWidth() > 64)
1568 return TokError("expected number in address space");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001569
Chris Lattnerdf986172009-01-02 07:01:27 +00001570 LocTy SizeLoc = Lex.getLoc();
1571 uint64_t Size = Lex.getAPSIntVal().getZExtValue();
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001572 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +00001573
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001574 if (ParseToken(lltok::kw_x, "expected 'x' after element count"))
1575 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00001576
1577 LocTy TypeLoc = Lex.getLoc();
Owen Anderson1d0be152009-08-13 21:58:54 +00001578 PATypeHolder EltTy(Type::getVoidTy(Context));
Chris Lattnerdf986172009-01-02 07:01:27 +00001579 if (ParseTypeRec(EltTy)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001580
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001581 if (EltTy->isVoidTy())
Chris Lattnera9a9e072009-03-09 04:49:14 +00001582 return Error(TypeLoc, "array and vector element type cannot be void");
1583
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001584 if (ParseToken(isVector ? lltok::greater : lltok::rsquare,
1585 "expected end of sequential type"))
1586 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001587
Chris Lattnerdf986172009-01-02 07:01:27 +00001588 if (isVector) {
Chris Lattner452e2622009-02-28 18:12:41 +00001589 if (Size == 0)
1590 return Error(SizeLoc, "zero element vector is illegal");
Chris Lattnerdf986172009-01-02 07:01:27 +00001591 if ((unsigned)Size != Size)
1592 return Error(SizeLoc, "size too large for vector");
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001593 if (!VectorType::isValidElementType(EltTy))
Chris Lattnerdf986172009-01-02 07:01:27 +00001594 return Error(TypeLoc, "vector element type must be fp or integer");
Owen Andersondebcb012009-07-29 22:17:13 +00001595 Result = VectorType::get(EltTy, unsigned(Size));
Chris Lattnerdf986172009-01-02 07:01:27 +00001596 } else {
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001597 if (!ArrayType::isValidElementType(EltTy))
Chris Lattnerdf986172009-01-02 07:01:27 +00001598 return Error(TypeLoc, "invalid array element type");
Owen Andersondebcb012009-07-29 22:17:13 +00001599 Result = HandleUpRefs(ArrayType::get(EltTy, Size));
Chris Lattnerdf986172009-01-02 07:01:27 +00001600 }
1601 return false;
1602}
1603
1604//===----------------------------------------------------------------------===//
1605// Function Semantic Analysis.
1606//===----------------------------------------------------------------------===//
1607
Chris Lattner09d9ef42009-10-28 03:39:23 +00001608LLParser::PerFunctionState::PerFunctionState(LLParser &p, Function &f,
1609 int functionNumber)
1610 : P(p), F(f), FunctionNumber(functionNumber) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001611
1612 // Insert unnamed arguments into the NumberedVals list.
1613 for (Function::arg_iterator AI = F.arg_begin(), E = F.arg_end();
1614 AI != E; ++AI)
1615 if (!AI->hasName())
1616 NumberedVals.push_back(AI);
1617}
1618
1619LLParser::PerFunctionState::~PerFunctionState() {
1620 // If there were any forward referenced non-basicblock values, delete them.
1621 for (std::map<std::string, std::pair<Value*, LocTy> >::iterator
1622 I = ForwardRefVals.begin(), E = ForwardRefVals.end(); I != E; ++I)
1623 if (!isa<BasicBlock>(I->second.first)) {
Owen Andersonb43eae72009-07-02 17:04:01 +00001624 I->second.first->replaceAllUsesWith(
Owen Anderson9e9a0d52009-07-30 23:03:37 +00001625 UndefValue::get(I->second.first->getType()));
Chris Lattnerdf986172009-01-02 07:01:27 +00001626 delete I->second.first;
1627 I->second.first = 0;
1628 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001629
Chris Lattnerdf986172009-01-02 07:01:27 +00001630 for (std::map<unsigned, std::pair<Value*, LocTy> >::iterator
1631 I = ForwardRefValIDs.begin(), E = ForwardRefValIDs.end(); I != E; ++I)
1632 if (!isa<BasicBlock>(I->second.first)) {
Owen Andersonb43eae72009-07-02 17:04:01 +00001633 I->second.first->replaceAllUsesWith(
Owen Anderson9e9a0d52009-07-30 23:03:37 +00001634 UndefValue::get(I->second.first->getType()));
Chris Lattnerdf986172009-01-02 07:01:27 +00001635 delete I->second.first;
1636 I->second.first = 0;
1637 }
1638}
1639
Chris Lattner09d9ef42009-10-28 03:39:23 +00001640bool LLParser::PerFunctionState::FinishFunction() {
1641 // Check to see if someone took the address of labels in this block.
1642 if (!P.ForwardRefBlockAddresses.empty()) {
1643 ValID FunctionID;
1644 if (!F.getName().empty()) {
1645 FunctionID.Kind = ValID::t_GlobalName;
1646 FunctionID.StrVal = F.getName();
1647 } else {
1648 FunctionID.Kind = ValID::t_GlobalID;
1649 FunctionID.UIntVal = FunctionNumber;
1650 }
1651
1652 std::map<ValID, std::vector<std::pair<ValID, GlobalValue*> > >::iterator
1653 FRBAI = P.ForwardRefBlockAddresses.find(FunctionID);
1654 if (FRBAI != P.ForwardRefBlockAddresses.end()) {
1655 // Resolve all these references.
1656 if (P.ResolveForwardRefBlockAddresses(&F, FRBAI->second, this))
1657 return true;
1658
1659 P.ForwardRefBlockAddresses.erase(FRBAI);
1660 }
1661 }
1662
Chris Lattnerdf986172009-01-02 07:01:27 +00001663 if (!ForwardRefVals.empty())
1664 return P.Error(ForwardRefVals.begin()->second.second,
1665 "use of undefined value '%" + ForwardRefVals.begin()->first +
1666 "'");
1667 if (!ForwardRefValIDs.empty())
1668 return P.Error(ForwardRefValIDs.begin()->second.second,
1669 "use of undefined value '%" +
1670 utostr(ForwardRefValIDs.begin()->first) + "'");
1671 return false;
1672}
1673
1674
1675/// GetVal - Get a value with the specified name or ID, creating a
1676/// forward reference record if needed. This can return null if the value
1677/// exists but does not have the right type.
1678Value *LLParser::PerFunctionState::GetVal(const std::string &Name,
1679 const Type *Ty, LocTy Loc) {
1680 // Look this name up in the normal function symbol table.
1681 Value *Val = F.getValueSymbolTable().lookup(Name);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001682
Chris Lattnerdf986172009-01-02 07:01:27 +00001683 // If this is a forward reference for the value, see if we already created a
1684 // forward ref record.
1685 if (Val == 0) {
1686 std::map<std::string, std::pair<Value*, LocTy> >::iterator
1687 I = ForwardRefVals.find(Name);
1688 if (I != ForwardRefVals.end())
1689 Val = I->second.first;
1690 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001691
Chris Lattnerdf986172009-01-02 07:01:27 +00001692 // If we have the value in the symbol table or fwd-ref table, return it.
1693 if (Val) {
1694 if (Val->getType() == Ty) return Val;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001695 if (Ty->isLabelTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00001696 P.Error(Loc, "'%" + Name + "' is not a basic block");
1697 else
1698 P.Error(Loc, "'%" + Name + "' defined with type '" +
1699 Val->getType()->getDescription() + "'");
1700 return 0;
1701 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001702
Chris Lattnerdf986172009-01-02 07:01:27 +00001703 // Don't make placeholders with invalid type.
Owen Anderson1d0be152009-08-13 21:58:54 +00001704 if (!Ty->isFirstClassType() && !isa<OpaqueType>(Ty) &&
1705 Ty != Type::getLabelTy(F.getContext())) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001706 P.Error(Loc, "invalid use of a non-first-class type");
1707 return 0;
1708 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001709
Chris Lattnerdf986172009-01-02 07:01:27 +00001710 // Otherwise, create a new forward reference for this value and remember it.
1711 Value *FwdVal;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001712 if (Ty->isLabelTy())
Owen Anderson1d0be152009-08-13 21:58:54 +00001713 FwdVal = BasicBlock::Create(F.getContext(), Name, &F);
Chris Lattnerdf986172009-01-02 07:01:27 +00001714 else
1715 FwdVal = new Argument(Ty, Name);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001716
Chris Lattnerdf986172009-01-02 07:01:27 +00001717 ForwardRefVals[Name] = std::make_pair(FwdVal, Loc);
1718 return FwdVal;
1719}
1720
1721Value *LLParser::PerFunctionState::GetVal(unsigned ID, const Type *Ty,
1722 LocTy Loc) {
1723 // Look this name up in the normal function symbol table.
1724 Value *Val = ID < NumberedVals.size() ? NumberedVals[ID] : 0;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001725
Chris Lattnerdf986172009-01-02 07:01:27 +00001726 // If this is a forward reference for the value, see if we already created a
1727 // forward ref record.
1728 if (Val == 0) {
1729 std::map<unsigned, std::pair<Value*, LocTy> >::iterator
1730 I = ForwardRefValIDs.find(ID);
1731 if (I != ForwardRefValIDs.end())
1732 Val = I->second.first;
1733 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001734
Chris Lattnerdf986172009-01-02 07:01:27 +00001735 // If we have the value in the symbol table or fwd-ref table, return it.
1736 if (Val) {
1737 if (Val->getType() == Ty) return Val;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001738 if (Ty->isLabelTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00001739 P.Error(Loc, "'%" + utostr(ID) + "' is not a basic block");
1740 else
1741 P.Error(Loc, "'%" + utostr(ID) + "' defined with type '" +
1742 Val->getType()->getDescription() + "'");
1743 return 0;
1744 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001745
Owen Anderson1d0be152009-08-13 21:58:54 +00001746 if (!Ty->isFirstClassType() && !isa<OpaqueType>(Ty) &&
1747 Ty != Type::getLabelTy(F.getContext())) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001748 P.Error(Loc, "invalid use of a non-first-class type");
1749 return 0;
1750 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001751
Chris Lattnerdf986172009-01-02 07:01:27 +00001752 // Otherwise, create a new forward reference for this value and remember it.
1753 Value *FwdVal;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001754 if (Ty->isLabelTy())
Owen Anderson1d0be152009-08-13 21:58:54 +00001755 FwdVal = BasicBlock::Create(F.getContext(), "", &F);
Chris Lattnerdf986172009-01-02 07:01:27 +00001756 else
1757 FwdVal = new Argument(Ty);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001758
Chris Lattnerdf986172009-01-02 07:01:27 +00001759 ForwardRefValIDs[ID] = std::make_pair(FwdVal, Loc);
1760 return FwdVal;
1761}
1762
1763/// SetInstName - After an instruction is parsed and inserted into its
1764/// basic block, this installs its name.
1765bool LLParser::PerFunctionState::SetInstName(int NameID,
1766 const std::string &NameStr,
1767 LocTy NameLoc, Instruction *Inst) {
1768 // If this instruction has void type, it cannot have a name or ID specified.
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001769 if (Inst->getType()->isVoidTy()) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001770 if (NameID != -1 || !NameStr.empty())
1771 return P.Error(NameLoc, "instructions returning void cannot have a name");
1772 return false;
1773 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001774
Chris Lattnerdf986172009-01-02 07:01:27 +00001775 // If this was a numbered instruction, verify that the instruction is the
1776 // expected value and resolve any forward references.
1777 if (NameStr.empty()) {
1778 // If neither a name nor an ID was specified, just use the next ID.
1779 if (NameID == -1)
1780 NameID = NumberedVals.size();
Daniel Dunbara279bc32009-09-20 02:20:51 +00001781
Chris Lattnerdf986172009-01-02 07:01:27 +00001782 if (unsigned(NameID) != NumberedVals.size())
1783 return P.Error(NameLoc, "instruction expected to be numbered '%" +
1784 utostr(NumberedVals.size()) + "'");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001785
Chris Lattnerdf986172009-01-02 07:01:27 +00001786 std::map<unsigned, std::pair<Value*, LocTy> >::iterator FI =
1787 ForwardRefValIDs.find(NameID);
1788 if (FI != ForwardRefValIDs.end()) {
1789 if (FI->second.first->getType() != Inst->getType())
Daniel Dunbara279bc32009-09-20 02:20:51 +00001790 return P.Error(NameLoc, "instruction forward referenced with type '" +
Chris Lattnerdf986172009-01-02 07:01:27 +00001791 FI->second.first->getType()->getDescription() + "'");
1792 FI->second.first->replaceAllUsesWith(Inst);
Nuno Lopes2b4f28e2009-09-02 15:02:57 +00001793 delete FI->second.first;
Chris Lattnerdf986172009-01-02 07:01:27 +00001794 ForwardRefValIDs.erase(FI);
1795 }
1796
1797 NumberedVals.push_back(Inst);
1798 return false;
1799 }
1800
1801 // Otherwise, the instruction had a name. Resolve forward refs and set it.
1802 std::map<std::string, std::pair<Value*, LocTy> >::iterator
1803 FI = ForwardRefVals.find(NameStr);
1804 if (FI != ForwardRefVals.end()) {
1805 if (FI->second.first->getType() != Inst->getType())
Daniel Dunbara279bc32009-09-20 02:20:51 +00001806 return P.Error(NameLoc, "instruction forward referenced with type '" +
Chris Lattnerdf986172009-01-02 07:01:27 +00001807 FI->second.first->getType()->getDescription() + "'");
1808 FI->second.first->replaceAllUsesWith(Inst);
Nuno Lopes531552a2009-09-02 14:22:03 +00001809 delete FI->second.first;
Chris Lattnerdf986172009-01-02 07:01:27 +00001810 ForwardRefVals.erase(FI);
1811 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001812
Chris Lattnerdf986172009-01-02 07:01:27 +00001813 // Set the name on the instruction.
1814 Inst->setName(NameStr);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001815
Chris Lattnerdf986172009-01-02 07:01:27 +00001816 if (Inst->getNameStr() != NameStr)
Daniel Dunbara279bc32009-09-20 02:20:51 +00001817 return P.Error(NameLoc, "multiple definition of local value named '" +
Chris Lattnerdf986172009-01-02 07:01:27 +00001818 NameStr + "'");
1819 return false;
1820}
1821
1822/// GetBB - Get a basic block with the specified name or ID, creating a
1823/// forward reference record if needed.
1824BasicBlock *LLParser::PerFunctionState::GetBB(const std::string &Name,
1825 LocTy Loc) {
Owen Anderson1d0be152009-08-13 21:58:54 +00001826 return cast_or_null<BasicBlock>(GetVal(Name,
1827 Type::getLabelTy(F.getContext()), Loc));
Chris Lattnerdf986172009-01-02 07:01:27 +00001828}
1829
1830BasicBlock *LLParser::PerFunctionState::GetBB(unsigned ID, LocTy Loc) {
Owen Anderson1d0be152009-08-13 21:58:54 +00001831 return cast_or_null<BasicBlock>(GetVal(ID,
1832 Type::getLabelTy(F.getContext()), Loc));
Chris Lattnerdf986172009-01-02 07:01:27 +00001833}
1834
1835/// DefineBB - Define the specified basic block, which is either named or
1836/// unnamed. If there is an error, this returns null otherwise it returns
1837/// the block being defined.
1838BasicBlock *LLParser::PerFunctionState::DefineBB(const std::string &Name,
1839 LocTy Loc) {
1840 BasicBlock *BB;
1841 if (Name.empty())
1842 BB = GetBB(NumberedVals.size(), Loc);
1843 else
1844 BB = GetBB(Name, Loc);
1845 if (BB == 0) return 0; // Already diagnosed error.
Daniel Dunbara279bc32009-09-20 02:20:51 +00001846
Chris Lattnerdf986172009-01-02 07:01:27 +00001847 // Move the block to the end of the function. Forward ref'd blocks are
1848 // inserted wherever they happen to be referenced.
1849 F.getBasicBlockList().splice(F.end(), F.getBasicBlockList(), BB);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001850
Chris Lattnerdf986172009-01-02 07:01:27 +00001851 // Remove the block from forward ref sets.
1852 if (Name.empty()) {
1853 ForwardRefValIDs.erase(NumberedVals.size());
1854 NumberedVals.push_back(BB);
1855 } else {
1856 // BB forward references are already in the function symbol table.
1857 ForwardRefVals.erase(Name);
1858 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001859
Chris Lattnerdf986172009-01-02 07:01:27 +00001860 return BB;
1861}
1862
1863//===----------------------------------------------------------------------===//
1864// Constants.
1865//===----------------------------------------------------------------------===//
1866
1867/// ParseValID - Parse an abstract value that doesn't necessarily have a
1868/// type implied. For example, if we parse "4" we don't know what integer type
1869/// it has. The value will later be combined with its type and checked for
1870/// sanity.
1871bool LLParser::ParseValID(ValID &ID) {
1872 ID.Loc = Lex.getLoc();
1873 switch (Lex.getKind()) {
1874 default: return TokError("expected value token");
1875 case lltok::GlobalID: // @42
1876 ID.UIntVal = Lex.getUIntVal();
1877 ID.Kind = ValID::t_GlobalID;
1878 break;
1879 case lltok::GlobalVar: // @foo
1880 ID.StrVal = Lex.getStrVal();
1881 ID.Kind = ValID::t_GlobalName;
1882 break;
1883 case lltok::LocalVarID: // %42
1884 ID.UIntVal = Lex.getUIntVal();
1885 ID.Kind = ValID::t_LocalID;
1886 break;
1887 case lltok::LocalVar: // %foo
1888 case lltok::StringConstant: // "foo" - FIXME: REMOVE IN LLVM 3.0
1889 ID.StrVal = Lex.getStrVal();
1890 ID.Kind = ValID::t_LocalName;
1891 break;
Chris Lattnere434d272009-12-30 04:56:59 +00001892 case lltok::exclaim: // !{...} MDNode, !"foo" MDString
Nick Lewycky21cc4462009-04-04 07:22:01 +00001893 Lex.Lex();
Chris Lattner442ffa12009-12-29 21:53:55 +00001894
1895 // FIXME: This doesn't belong here.
Chris Lattner3f5132a2009-12-29 22:40:21 +00001896 if (EatIfPresent(lltok::lbrace)) {
Nick Lewyckycb337992009-05-10 20:57:05 +00001897 SmallVector<Value*, 16> Elts;
Nick Lewycky21cc4462009-04-04 07:22:01 +00001898 if (ParseMDNodeVector(Elts) ||
1899 ParseToken(lltok::rbrace, "expected end of metadata node"))
1900 return true;
Nick Lewyckycb337992009-05-10 20:57:05 +00001901
Chris Lattner287881d2009-12-30 02:11:14 +00001902 ID.MDNodeVal = MDNode::get(Context, Elts.data(), Elts.size());
1903 ID.Kind = ValID::t_MDNode;
Nick Lewycky21cc4462009-04-04 07:22:01 +00001904 return false;
1905 }
1906
Devang Patel923078c2009-07-01 19:21:12 +00001907 // Standalone metadata reference
1908 // !{ ..., !42, ... }
Chris Lattner860775c2009-12-30 04:13:37 +00001909 if (Lex.getKind() == lltok::APSInt) {
Chris Lattner4a72efc2009-12-30 04:15:23 +00001910 if (ParseMDNodeID(ID.MDNodeVal)) return true;
Chris Lattner287881d2009-12-30 02:11:14 +00001911 ID.Kind = ValID::t_MDNode;
Devang Patel923078c2009-07-01 19:21:12 +00001912 return false;
Chris Lattner287881d2009-12-30 02:11:14 +00001913 }
1914
Nick Lewycky21cc4462009-04-04 07:22:01 +00001915 // MDString:
1916 // ::= '!' STRINGCONSTANT
Chris Lattner287881d2009-12-30 02:11:14 +00001917 if (ParseMDString(ID.MDStringVal)) return true;
1918 ID.Kind = ValID::t_MDString;
Nick Lewycky21cc4462009-04-04 07:22:01 +00001919 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00001920 case lltok::APSInt:
Daniel Dunbara279bc32009-09-20 02:20:51 +00001921 ID.APSIntVal = Lex.getAPSIntVal();
Chris Lattnerdf986172009-01-02 07:01:27 +00001922 ID.Kind = ValID::t_APSInt;
1923 break;
1924 case lltok::APFloat:
1925 ID.APFloatVal = Lex.getAPFloatVal();
1926 ID.Kind = ValID::t_APFloat;
1927 break;
1928 case lltok::kw_true:
Owen Anderson5defacc2009-07-31 17:39:07 +00001929 ID.ConstantVal = ConstantInt::getTrue(Context);
Chris Lattnerdf986172009-01-02 07:01:27 +00001930 ID.Kind = ValID::t_Constant;
1931 break;
1932 case lltok::kw_false:
Owen Anderson5defacc2009-07-31 17:39:07 +00001933 ID.ConstantVal = ConstantInt::getFalse(Context);
Chris Lattnerdf986172009-01-02 07:01:27 +00001934 ID.Kind = ValID::t_Constant;
1935 break;
1936 case lltok::kw_null: ID.Kind = ValID::t_Null; break;
1937 case lltok::kw_undef: ID.Kind = ValID::t_Undef; break;
1938 case lltok::kw_zeroinitializer: ID.Kind = ValID::t_Zero; break;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001939
Chris Lattnerdf986172009-01-02 07:01:27 +00001940 case lltok::lbrace: {
1941 // ValID ::= '{' ConstVector '}'
1942 Lex.Lex();
1943 SmallVector<Constant*, 16> Elts;
1944 if (ParseGlobalValueVector(Elts) ||
1945 ParseToken(lltok::rbrace, "expected end of struct constant"))
1946 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001947
Owen Andersond7f2a6c2009-08-05 23:16:16 +00001948 ID.ConstantVal = ConstantStruct::get(Context, Elts.data(),
1949 Elts.size(), false);
Chris Lattnerdf986172009-01-02 07:01:27 +00001950 ID.Kind = ValID::t_Constant;
1951 return false;
1952 }
1953 case lltok::less: {
1954 // ValID ::= '<' ConstVector '>' --> Vector.
1955 // ValID ::= '<' '{' ConstVector '}' '>' --> Packed Struct.
1956 Lex.Lex();
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001957 bool isPackedStruct = EatIfPresent(lltok::lbrace);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001958
Chris Lattnerdf986172009-01-02 07:01:27 +00001959 SmallVector<Constant*, 16> Elts;
1960 LocTy FirstEltLoc = Lex.getLoc();
1961 if (ParseGlobalValueVector(Elts) ||
1962 (isPackedStruct &&
1963 ParseToken(lltok::rbrace, "expected end of packed struct")) ||
1964 ParseToken(lltok::greater, "expected end of constant"))
1965 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001966
Chris Lattnerdf986172009-01-02 07:01:27 +00001967 if (isPackedStruct) {
Owen Andersonfba933c2009-07-01 23:57:11 +00001968 ID.ConstantVal =
Owen Andersond7f2a6c2009-08-05 23:16:16 +00001969 ConstantStruct::get(Context, Elts.data(), Elts.size(), true);
Chris Lattnerdf986172009-01-02 07:01:27 +00001970 ID.Kind = ValID::t_Constant;
1971 return false;
1972 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001973
Chris Lattnerdf986172009-01-02 07:01:27 +00001974 if (Elts.empty())
1975 return Error(ID.Loc, "constant vector must not be empty");
1976
1977 if (!Elts[0]->getType()->isInteger() &&
1978 !Elts[0]->getType()->isFloatingPoint())
1979 return Error(FirstEltLoc,
1980 "vector elements must have integer or floating point type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001981
Chris Lattnerdf986172009-01-02 07:01:27 +00001982 // Verify that all the vector elements have the same type.
1983 for (unsigned i = 1, e = Elts.size(); i != e; ++i)
1984 if (Elts[i]->getType() != Elts[0]->getType())
1985 return Error(FirstEltLoc,
1986 "vector element #" + utostr(i) +
1987 " is not of type '" + Elts[0]->getType()->getDescription());
Daniel Dunbara279bc32009-09-20 02:20:51 +00001988
Owen Andersonaf7ec972009-07-28 21:19:26 +00001989 ID.ConstantVal = ConstantVector::get(Elts.data(), Elts.size());
Chris Lattnerdf986172009-01-02 07:01:27 +00001990 ID.Kind = ValID::t_Constant;
1991 return false;
1992 }
1993 case lltok::lsquare: { // Array Constant
1994 Lex.Lex();
1995 SmallVector<Constant*, 16> Elts;
1996 LocTy FirstEltLoc = Lex.getLoc();
1997 if (ParseGlobalValueVector(Elts) ||
1998 ParseToken(lltok::rsquare, "expected end of array constant"))
1999 return true;
2000
2001 // Handle empty element.
2002 if (Elts.empty()) {
2003 // Use undef instead of an array because it's inconvenient to determine
2004 // the element type at this point, there being no elements to examine.
Chris Lattner081b5052009-01-05 07:52:51 +00002005 ID.Kind = ValID::t_EmptyArray;
Chris Lattnerdf986172009-01-02 07:01:27 +00002006 return false;
2007 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002008
Chris Lattnerdf986172009-01-02 07:01:27 +00002009 if (!Elts[0]->getType()->isFirstClassType())
Daniel Dunbara279bc32009-09-20 02:20:51 +00002010 return Error(FirstEltLoc, "invalid array element type: " +
Chris Lattnerdf986172009-01-02 07:01:27 +00002011 Elts[0]->getType()->getDescription());
Daniel Dunbara279bc32009-09-20 02:20:51 +00002012
Owen Andersondebcb012009-07-29 22:17:13 +00002013 ArrayType *ATy = ArrayType::get(Elts[0]->getType(), Elts.size());
Daniel Dunbara279bc32009-09-20 02:20:51 +00002014
Chris Lattnerdf986172009-01-02 07:01:27 +00002015 // Verify all elements are correct type!
Chris Lattner6d6b3cc2009-01-02 08:49:06 +00002016 for (unsigned i = 0, e = Elts.size(); i != e; ++i) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002017 if (Elts[i]->getType() != Elts[0]->getType())
2018 return Error(FirstEltLoc,
2019 "array element #" + utostr(i) +
2020 " is not of type '" +Elts[0]->getType()->getDescription());
2021 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002022
Owen Anderson1fd70962009-07-28 18:32:17 +00002023 ID.ConstantVal = ConstantArray::get(ATy, Elts.data(), Elts.size());
Chris Lattnerdf986172009-01-02 07:01:27 +00002024 ID.Kind = ValID::t_Constant;
2025 return false;
2026 }
2027 case lltok::kw_c: // c "foo"
2028 Lex.Lex();
Owen Anderson1d0be152009-08-13 21:58:54 +00002029 ID.ConstantVal = ConstantArray::get(Context, Lex.getStrVal(), false);
Chris Lattnerdf986172009-01-02 07:01:27 +00002030 if (ParseToken(lltok::StringConstant, "expected string")) return true;
2031 ID.Kind = ValID::t_Constant;
2032 return false;
2033
2034 case lltok::kw_asm: {
Dale Johannesen8ba2d5b2009-10-21 23:28:00 +00002035 // ValID ::= 'asm' SideEffect? AlignStack? STRINGCONSTANT ',' STRINGCONSTANT
2036 bool HasSideEffect, AlignStack;
Chris Lattnerdf986172009-01-02 07:01:27 +00002037 Lex.Lex();
2038 if (ParseOptionalToken(lltok::kw_sideeffect, HasSideEffect) ||
Dale Johannesen8ba2d5b2009-10-21 23:28:00 +00002039 ParseOptionalToken(lltok::kw_alignstack, AlignStack) ||
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002040 ParseStringConstant(ID.StrVal) ||
2041 ParseToken(lltok::comma, "expected comma in inline asm expression") ||
Chris Lattnerdf986172009-01-02 07:01:27 +00002042 ParseToken(lltok::StringConstant, "expected constraint string"))
2043 return true;
2044 ID.StrVal2 = Lex.getStrVal();
Daniel Dunbarf0bb41c2009-11-07 23:51:55 +00002045 ID.UIntVal = unsigned(HasSideEffect) | (unsigned(AlignStack)<<1);
Chris Lattnerdf986172009-01-02 07:01:27 +00002046 ID.Kind = ValID::t_InlineAsm;
2047 return false;
2048 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002049
Chris Lattner09d9ef42009-10-28 03:39:23 +00002050 case lltok::kw_blockaddress: {
2051 // ValID ::= 'blockaddress' '(' @foo ',' %bar ')'
2052 Lex.Lex();
2053
2054 ValID Fn, Label;
2055 LocTy FnLoc, LabelLoc;
2056
2057 if (ParseToken(lltok::lparen, "expected '(' in block address expression") ||
2058 ParseValID(Fn) ||
2059 ParseToken(lltok::comma, "expected comma in block address expression")||
2060 ParseValID(Label) ||
2061 ParseToken(lltok::rparen, "expected ')' in block address expression"))
2062 return true;
Chris Lattnercdfc9402009-11-01 01:27:45 +00002063
Chris Lattner09d9ef42009-10-28 03:39:23 +00002064 if (Fn.Kind != ValID::t_GlobalID && Fn.Kind != ValID::t_GlobalName)
2065 return Error(Fn.Loc, "expected function name in blockaddress");
Chris Lattnercdfc9402009-11-01 01:27:45 +00002066 if (Label.Kind != ValID::t_LocalID && Label.Kind != ValID::t_LocalName)
Chris Lattner09d9ef42009-10-28 03:39:23 +00002067 return Error(Label.Loc, "expected basic block name in blockaddress");
2068
2069 // Make a global variable as a placeholder for this reference.
2070 GlobalVariable *FwdRef = new GlobalVariable(*M, Type::getInt8Ty(Context),
2071 false, GlobalValue::InternalLinkage,
2072 0, "");
2073 ForwardRefBlockAddresses[Fn].push_back(std::make_pair(Label, FwdRef));
2074 ID.ConstantVal = FwdRef;
2075 ID.Kind = ValID::t_Constant;
2076 return false;
2077 }
2078
Chris Lattnerdf986172009-01-02 07:01:27 +00002079 case lltok::kw_trunc:
2080 case lltok::kw_zext:
2081 case lltok::kw_sext:
2082 case lltok::kw_fptrunc:
2083 case lltok::kw_fpext:
2084 case lltok::kw_bitcast:
2085 case lltok::kw_uitofp:
2086 case lltok::kw_sitofp:
2087 case lltok::kw_fptoui:
Daniel Dunbara279bc32009-09-20 02:20:51 +00002088 case lltok::kw_fptosi:
Chris Lattnerdf986172009-01-02 07:01:27 +00002089 case lltok::kw_inttoptr:
Daniel Dunbara279bc32009-09-20 02:20:51 +00002090 case lltok::kw_ptrtoint: {
Chris Lattnerdf986172009-01-02 07:01:27 +00002091 unsigned Opc = Lex.getUIntVal();
Owen Anderson1d0be152009-08-13 21:58:54 +00002092 PATypeHolder DestTy(Type::getVoidTy(Context));
Chris Lattnerdf986172009-01-02 07:01:27 +00002093 Constant *SrcVal;
2094 Lex.Lex();
2095 if (ParseToken(lltok::lparen, "expected '(' after constantexpr cast") ||
2096 ParseGlobalTypeAndValue(SrcVal) ||
Dan Gohman24b108b2009-06-15 21:52:11 +00002097 ParseToken(lltok::kw_to, "expected 'to' in constantexpr cast") ||
Chris Lattnerdf986172009-01-02 07:01:27 +00002098 ParseType(DestTy) ||
2099 ParseToken(lltok::rparen, "expected ')' at end of constantexpr cast"))
2100 return true;
2101 if (!CastInst::castIsValid((Instruction::CastOps)Opc, SrcVal, DestTy))
2102 return Error(ID.Loc, "invalid cast opcode for cast from '" +
2103 SrcVal->getType()->getDescription() + "' to '" +
2104 DestTy->getDescription() + "'");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002105 ID.ConstantVal = ConstantExpr::getCast((Instruction::CastOps)Opc,
Owen Andersonfba933c2009-07-01 23:57:11 +00002106 SrcVal, DestTy);
Chris Lattnerdf986172009-01-02 07:01:27 +00002107 ID.Kind = ValID::t_Constant;
2108 return false;
2109 }
2110 case lltok::kw_extractvalue: {
2111 Lex.Lex();
2112 Constant *Val;
2113 SmallVector<unsigned, 4> Indices;
2114 if (ParseToken(lltok::lparen, "expected '(' in extractvalue constantexpr")||
2115 ParseGlobalTypeAndValue(Val) ||
2116 ParseIndexList(Indices) ||
2117 ParseToken(lltok::rparen, "expected ')' in extractvalue constantexpr"))
2118 return true;
Devang Patele8bc45a2009-11-03 19:06:07 +00002119
Chris Lattnerdf986172009-01-02 07:01:27 +00002120 if (!isa<StructType>(Val->getType()) && !isa<ArrayType>(Val->getType()))
2121 return Error(ID.Loc, "extractvalue operand must be array or struct");
2122 if (!ExtractValueInst::getIndexedType(Val->getType(), Indices.begin(),
2123 Indices.end()))
2124 return Error(ID.Loc, "invalid indices for extractvalue");
Jay Foade3e51c02009-05-21 09:52:38 +00002125 ID.ConstantVal =
Owen Andersonbaf3c402009-07-29 18:55:55 +00002126 ConstantExpr::getExtractValue(Val, Indices.data(), Indices.size());
Chris Lattnerdf986172009-01-02 07:01:27 +00002127 ID.Kind = ValID::t_Constant;
2128 return false;
2129 }
2130 case lltok::kw_insertvalue: {
2131 Lex.Lex();
2132 Constant *Val0, *Val1;
2133 SmallVector<unsigned, 4> Indices;
2134 if (ParseToken(lltok::lparen, "expected '(' in insertvalue constantexpr")||
2135 ParseGlobalTypeAndValue(Val0) ||
2136 ParseToken(lltok::comma, "expected comma in insertvalue constantexpr")||
2137 ParseGlobalTypeAndValue(Val1) ||
2138 ParseIndexList(Indices) ||
2139 ParseToken(lltok::rparen, "expected ')' in insertvalue constantexpr"))
2140 return true;
2141 if (!isa<StructType>(Val0->getType()) && !isa<ArrayType>(Val0->getType()))
2142 return Error(ID.Loc, "extractvalue operand must be array or struct");
2143 if (!ExtractValueInst::getIndexedType(Val0->getType(), Indices.begin(),
2144 Indices.end()))
2145 return Error(ID.Loc, "invalid indices for insertvalue");
Owen Andersonbaf3c402009-07-29 18:55:55 +00002146 ID.ConstantVal = ConstantExpr::getInsertValue(Val0, Val1,
Owen Andersonfba933c2009-07-01 23:57:11 +00002147 Indices.data(), Indices.size());
Chris Lattnerdf986172009-01-02 07:01:27 +00002148 ID.Kind = ValID::t_Constant;
2149 return false;
2150 }
2151 case lltok::kw_icmp:
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00002152 case lltok::kw_fcmp: {
Chris Lattnerdf986172009-01-02 07:01:27 +00002153 unsigned PredVal, Opc = Lex.getUIntVal();
2154 Constant *Val0, *Val1;
2155 Lex.Lex();
2156 if (ParseCmpPredicate(PredVal, Opc) ||
2157 ParseToken(lltok::lparen, "expected '(' in compare constantexpr") ||
2158 ParseGlobalTypeAndValue(Val0) ||
2159 ParseToken(lltok::comma, "expected comma in compare constantexpr") ||
2160 ParseGlobalTypeAndValue(Val1) ||
2161 ParseToken(lltok::rparen, "expected ')' in compare constantexpr"))
2162 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002163
Chris Lattnerdf986172009-01-02 07:01:27 +00002164 if (Val0->getType() != Val1->getType())
2165 return Error(ID.Loc, "compare operands must have the same type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002166
Chris Lattnerdf986172009-01-02 07:01:27 +00002167 CmpInst::Predicate Pred = (CmpInst::Predicate)PredVal;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002168
Chris Lattnerdf986172009-01-02 07:01:27 +00002169 if (Opc == Instruction::FCmp) {
2170 if (!Val0->getType()->isFPOrFPVector())
2171 return Error(ID.Loc, "fcmp requires floating point operands");
Owen Andersonbaf3c402009-07-29 18:55:55 +00002172 ID.ConstantVal = ConstantExpr::getFCmp(Pred, Val0, Val1);
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00002173 } else {
2174 assert(Opc == Instruction::ICmp && "Unexpected opcode for CmpInst!");
Chris Lattnerdf986172009-01-02 07:01:27 +00002175 if (!Val0->getType()->isIntOrIntVector() &&
2176 !isa<PointerType>(Val0->getType()))
2177 return Error(ID.Loc, "icmp requires pointer or integer operands");
Owen Andersonbaf3c402009-07-29 18:55:55 +00002178 ID.ConstantVal = ConstantExpr::getICmp(Pred, Val0, Val1);
Chris Lattnerdf986172009-01-02 07:01:27 +00002179 }
2180 ID.Kind = ValID::t_Constant;
2181 return false;
2182 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002183
Chris Lattnerdf986172009-01-02 07:01:27 +00002184 // Binary Operators.
2185 case lltok::kw_add:
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002186 case lltok::kw_fadd:
Chris Lattnerdf986172009-01-02 07:01:27 +00002187 case lltok::kw_sub:
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002188 case lltok::kw_fsub:
Chris Lattnerdf986172009-01-02 07:01:27 +00002189 case lltok::kw_mul:
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002190 case lltok::kw_fmul:
Chris Lattnerdf986172009-01-02 07:01:27 +00002191 case lltok::kw_udiv:
2192 case lltok::kw_sdiv:
2193 case lltok::kw_fdiv:
2194 case lltok::kw_urem:
2195 case lltok::kw_srem:
2196 case lltok::kw_frem: {
Dan Gohman59858cf2009-07-27 16:11:46 +00002197 bool NUW = false;
2198 bool NSW = false;
2199 bool Exact = false;
Chris Lattnerdf986172009-01-02 07:01:27 +00002200 unsigned Opc = Lex.getUIntVal();
2201 Constant *Val0, *Val1;
2202 Lex.Lex();
Dan Gohman59858cf2009-07-27 16:11:46 +00002203 LocTy ModifierLoc = Lex.getLoc();
2204 if (Opc == Instruction::Add ||
2205 Opc == Instruction::Sub ||
2206 Opc == Instruction::Mul) {
2207 if (EatIfPresent(lltok::kw_nuw))
2208 NUW = true;
2209 if (EatIfPresent(lltok::kw_nsw)) {
2210 NSW = true;
2211 if (EatIfPresent(lltok::kw_nuw))
2212 NUW = true;
2213 }
2214 } else if (Opc == Instruction::SDiv) {
2215 if (EatIfPresent(lltok::kw_exact))
2216 Exact = true;
2217 }
Chris Lattnerdf986172009-01-02 07:01:27 +00002218 if (ParseToken(lltok::lparen, "expected '(' in binary constantexpr") ||
2219 ParseGlobalTypeAndValue(Val0) ||
2220 ParseToken(lltok::comma, "expected comma in binary constantexpr") ||
2221 ParseGlobalTypeAndValue(Val1) ||
2222 ParseToken(lltok::rparen, "expected ')' in binary constantexpr"))
2223 return true;
2224 if (Val0->getType() != Val1->getType())
2225 return Error(ID.Loc, "operands of constexpr must have same type");
Dan Gohman59858cf2009-07-27 16:11:46 +00002226 if (!Val0->getType()->isIntOrIntVector()) {
2227 if (NUW)
2228 return Error(ModifierLoc, "nuw only applies to integer operations");
2229 if (NSW)
2230 return Error(ModifierLoc, "nsw only applies to integer operations");
2231 }
2232 // API compatibility: Accept either integer or floating-point types with
2233 // add, sub, and mul.
Chris Lattnerdf986172009-01-02 07:01:27 +00002234 if (!Val0->getType()->isIntOrIntVector() &&
2235 !Val0->getType()->isFPOrFPVector())
2236 return Error(ID.Loc,"constexpr requires integer, fp, or vector operands");
Dan Gohmanf8dbee72009-09-07 23:54:19 +00002237 unsigned Flags = 0;
2238 if (NUW) Flags |= OverflowingBinaryOperator::NoUnsignedWrap;
2239 if (NSW) Flags |= OverflowingBinaryOperator::NoSignedWrap;
2240 if (Exact) Flags |= SDivOperator::IsExact;
2241 Constant *C = ConstantExpr::get(Opc, Val0, Val1, Flags);
Dan Gohman59858cf2009-07-27 16:11:46 +00002242 ID.ConstantVal = C;
Chris Lattnerdf986172009-01-02 07:01:27 +00002243 ID.Kind = ValID::t_Constant;
2244 return false;
2245 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002246
Chris Lattnerdf986172009-01-02 07:01:27 +00002247 // Logical Operations
2248 case lltok::kw_shl:
2249 case lltok::kw_lshr:
2250 case lltok::kw_ashr:
2251 case lltok::kw_and:
2252 case lltok::kw_or:
2253 case lltok::kw_xor: {
2254 unsigned Opc = Lex.getUIntVal();
2255 Constant *Val0, *Val1;
2256 Lex.Lex();
2257 if (ParseToken(lltok::lparen, "expected '(' in logical constantexpr") ||
2258 ParseGlobalTypeAndValue(Val0) ||
2259 ParseToken(lltok::comma, "expected comma in logical constantexpr") ||
2260 ParseGlobalTypeAndValue(Val1) ||
2261 ParseToken(lltok::rparen, "expected ')' in logical constantexpr"))
2262 return true;
2263 if (Val0->getType() != Val1->getType())
2264 return Error(ID.Loc, "operands of constexpr must have same type");
2265 if (!Val0->getType()->isIntOrIntVector())
2266 return Error(ID.Loc,
2267 "constexpr requires integer or integer vector operands");
Owen Andersonbaf3c402009-07-29 18:55:55 +00002268 ID.ConstantVal = ConstantExpr::get(Opc, Val0, Val1);
Chris Lattnerdf986172009-01-02 07:01:27 +00002269 ID.Kind = ValID::t_Constant;
2270 return false;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002271 }
2272
Chris Lattnerdf986172009-01-02 07:01:27 +00002273 case lltok::kw_getelementptr:
2274 case lltok::kw_shufflevector:
2275 case lltok::kw_insertelement:
2276 case lltok::kw_extractelement:
2277 case lltok::kw_select: {
2278 unsigned Opc = Lex.getUIntVal();
2279 SmallVector<Constant*, 16> Elts;
Dan Gohmandd8004d2009-07-27 21:53:46 +00002280 bool InBounds = false;
Chris Lattnerdf986172009-01-02 07:01:27 +00002281 Lex.Lex();
Dan Gohmandd8004d2009-07-27 21:53:46 +00002282 if (Opc == Instruction::GetElementPtr)
Dan Gohmandcb40a32009-07-29 15:58:36 +00002283 InBounds = EatIfPresent(lltok::kw_inbounds);
Chris Lattnerdf986172009-01-02 07:01:27 +00002284 if (ParseToken(lltok::lparen, "expected '(' in constantexpr") ||
2285 ParseGlobalValueVector(Elts) ||
2286 ParseToken(lltok::rparen, "expected ')' in constantexpr"))
2287 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002288
Chris Lattnerdf986172009-01-02 07:01:27 +00002289 if (Opc == Instruction::GetElementPtr) {
2290 if (Elts.size() == 0 || !isa<PointerType>(Elts[0]->getType()))
2291 return Error(ID.Loc, "getelementptr requires pointer operand");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002292
Chris Lattnerdf986172009-01-02 07:01:27 +00002293 if (!GetElementPtrInst::getIndexedType(Elts[0]->getType(),
Eli Friedman4e9bac32009-07-24 21:56:17 +00002294 (Value**)(Elts.data() + 1),
2295 Elts.size() - 1))
Chris Lattnerdf986172009-01-02 07:01:27 +00002296 return Error(ID.Loc, "invalid indices for getelementptr");
Dan Gohmanf8dbee72009-09-07 23:54:19 +00002297 ID.ConstantVal = InBounds ?
2298 ConstantExpr::getInBoundsGetElementPtr(Elts[0],
2299 Elts.data() + 1,
2300 Elts.size() - 1) :
2301 ConstantExpr::getGetElementPtr(Elts[0],
2302 Elts.data() + 1, Elts.size() - 1);
Chris Lattnerdf986172009-01-02 07:01:27 +00002303 } else if (Opc == Instruction::Select) {
2304 if (Elts.size() != 3)
2305 return Error(ID.Loc, "expected three operands to select");
2306 if (const char *Reason = SelectInst::areInvalidOperands(Elts[0], Elts[1],
2307 Elts[2]))
2308 return Error(ID.Loc, Reason);
Owen Andersonbaf3c402009-07-29 18:55:55 +00002309 ID.ConstantVal = ConstantExpr::getSelect(Elts[0], Elts[1], Elts[2]);
Chris Lattnerdf986172009-01-02 07:01:27 +00002310 } else if (Opc == Instruction::ShuffleVector) {
2311 if (Elts.size() != 3)
2312 return Error(ID.Loc, "expected three operands to shufflevector");
2313 if (!ShuffleVectorInst::isValidOperands(Elts[0], Elts[1], Elts[2]))
2314 return Error(ID.Loc, "invalid operands to shufflevector");
Owen Andersonfba933c2009-07-01 23:57:11 +00002315 ID.ConstantVal =
Owen Andersonbaf3c402009-07-29 18:55:55 +00002316 ConstantExpr::getShuffleVector(Elts[0], Elts[1],Elts[2]);
Chris Lattnerdf986172009-01-02 07:01:27 +00002317 } else if (Opc == Instruction::ExtractElement) {
2318 if (Elts.size() != 2)
2319 return Error(ID.Loc, "expected two operands to extractelement");
2320 if (!ExtractElementInst::isValidOperands(Elts[0], Elts[1]))
2321 return Error(ID.Loc, "invalid extractelement operands");
Owen Andersonbaf3c402009-07-29 18:55:55 +00002322 ID.ConstantVal = ConstantExpr::getExtractElement(Elts[0], Elts[1]);
Chris Lattnerdf986172009-01-02 07:01:27 +00002323 } else {
2324 assert(Opc == Instruction::InsertElement && "Unknown opcode");
2325 if (Elts.size() != 3)
2326 return Error(ID.Loc, "expected three operands to insertelement");
2327 if (!InsertElementInst::isValidOperands(Elts[0], Elts[1], Elts[2]))
2328 return Error(ID.Loc, "invalid insertelement operands");
Owen Andersonfba933c2009-07-01 23:57:11 +00002329 ID.ConstantVal =
Owen Andersonbaf3c402009-07-29 18:55:55 +00002330 ConstantExpr::getInsertElement(Elts[0], Elts[1],Elts[2]);
Chris Lattnerdf986172009-01-02 07:01:27 +00002331 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002332
Chris Lattnerdf986172009-01-02 07:01:27 +00002333 ID.Kind = ValID::t_Constant;
2334 return false;
2335 }
2336 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002337
Chris Lattnerdf986172009-01-02 07:01:27 +00002338 Lex.Lex();
2339 return false;
2340}
2341
2342/// ParseGlobalValue - Parse a global value with the specified type.
2343bool LLParser::ParseGlobalValue(const Type *Ty, Constant *&V) {
2344 V = 0;
2345 ValID ID;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002346 return ParseValID(ID) ||
2347 ConvertGlobalValIDToValue(Ty, ID, V);
Chris Lattnerdf986172009-01-02 07:01:27 +00002348}
2349
2350/// ConvertGlobalValIDToValue - Apply a type to a ValID to get a fully resolved
2351/// constant.
2352bool LLParser::ConvertGlobalValIDToValue(const Type *Ty, ValID &ID,
2353 Constant *&V) {
2354 if (isa<FunctionType>(Ty))
2355 return Error(ID.Loc, "functions are not values, refer to them as pointers");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002356
Chris Lattnerdf986172009-01-02 07:01:27 +00002357 switch (ID.Kind) {
Daniel Dunbara279bc32009-09-20 02:20:51 +00002358 default: llvm_unreachable("Unknown ValID!");
Chris Lattner287881d2009-12-30 02:11:14 +00002359 case ValID::t_MDNode:
2360 case ValID::t_MDString:
Devang Patele54abc92009-07-22 17:43:22 +00002361 return Error(ID.Loc, "invalid use of metadata");
Chris Lattnerdf986172009-01-02 07:01:27 +00002362 case ValID::t_LocalID:
2363 case ValID::t_LocalName:
2364 return Error(ID.Loc, "invalid use of function-local name");
2365 case ValID::t_InlineAsm:
2366 return Error(ID.Loc, "inline asm can only be an operand of call/invoke");
2367 case ValID::t_GlobalName:
2368 V = GetGlobalVal(ID.StrVal, Ty, ID.Loc);
2369 return V == 0;
2370 case ValID::t_GlobalID:
2371 V = GetGlobalVal(ID.UIntVal, Ty, ID.Loc);
2372 return V == 0;
2373 case ValID::t_APSInt:
2374 if (!isa<IntegerType>(Ty))
2375 return Error(ID.Loc, "integer constant must have integer type");
2376 ID.APSIntVal.extOrTrunc(Ty->getPrimitiveSizeInBits());
Owen Andersoneed707b2009-07-24 23:12:02 +00002377 V = ConstantInt::get(Context, ID.APSIntVal);
Chris Lattnerdf986172009-01-02 07:01:27 +00002378 return false;
2379 case ValID::t_APFloat:
2380 if (!Ty->isFloatingPoint() ||
2381 !ConstantFP::isValueValidForType(Ty, ID.APFloatVal))
2382 return Error(ID.Loc, "floating point constant invalid for type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002383
Chris Lattnerdf986172009-01-02 07:01:27 +00002384 // The lexer has no type info, so builds all float and double FP constants
2385 // as double. Fix this here. Long double does not need this.
2386 if (&ID.APFloatVal.getSemantics() == &APFloat::IEEEdouble &&
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00002387 Ty->isFloatTy()) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002388 bool Ignored;
2389 ID.APFloatVal.convert(APFloat::IEEEsingle, APFloat::rmNearestTiesToEven,
2390 &Ignored);
2391 }
Owen Anderson6f83c9c2009-07-27 20:59:43 +00002392 V = ConstantFP::get(Context, ID.APFloatVal);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002393
Chris Lattner959873d2009-01-05 18:24:23 +00002394 if (V->getType() != Ty)
2395 return Error(ID.Loc, "floating point constant does not have type '" +
2396 Ty->getDescription() + "'");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002397
Chris Lattnerdf986172009-01-02 07:01:27 +00002398 return false;
2399 case ValID::t_Null:
2400 if (!isa<PointerType>(Ty))
2401 return Error(ID.Loc, "null must be a pointer type");
Owen Anderson9e9a0d52009-07-30 23:03:37 +00002402 V = ConstantPointerNull::get(cast<PointerType>(Ty));
Chris Lattnerdf986172009-01-02 07:01:27 +00002403 return false;
2404 case ValID::t_Undef:
Chris Lattnere67c1aa2009-01-05 08:13:38 +00002405 // FIXME: LabelTy should not be a first-class type.
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00002406 if ((!Ty->isFirstClassType() || Ty->isLabelTy()) &&
Chris Lattner0b616352009-01-05 18:12:21 +00002407 !isa<OpaqueType>(Ty))
Chris Lattnere67c1aa2009-01-05 08:13:38 +00002408 return Error(ID.Loc, "invalid type for undef constant");
Owen Anderson9e9a0d52009-07-30 23:03:37 +00002409 V = UndefValue::get(Ty);
Chris Lattnerdf986172009-01-02 07:01:27 +00002410 return false;
Chris Lattner081b5052009-01-05 07:52:51 +00002411 case ValID::t_EmptyArray:
2412 if (!isa<ArrayType>(Ty) || cast<ArrayType>(Ty)->getNumElements() != 0)
2413 return Error(ID.Loc, "invalid empty array initializer");
Owen Anderson9e9a0d52009-07-30 23:03:37 +00002414 V = UndefValue::get(Ty);
Chris Lattner081b5052009-01-05 07:52:51 +00002415 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00002416 case ValID::t_Zero:
Chris Lattnere67c1aa2009-01-05 08:13:38 +00002417 // FIXME: LabelTy should not be a first-class type.
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00002418 if (!Ty->isFirstClassType() || Ty->isLabelTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002419 return Error(ID.Loc, "invalid type for null constant");
Owen Andersona7235ea2009-07-31 20:28:14 +00002420 V = Constant::getNullValue(Ty);
Chris Lattnerdf986172009-01-02 07:01:27 +00002421 return false;
2422 case ValID::t_Constant:
2423 if (ID.ConstantVal->getType() != Ty)
2424 return Error(ID.Loc, "constant expression type mismatch");
2425 V = ID.ConstantVal;
2426 return false;
2427 }
2428}
Daniel Dunbara279bc32009-09-20 02:20:51 +00002429
Chris Lattnera7352392009-12-30 04:42:57 +00002430/// ConvertGlobalOrMetadataValIDToValue - Apply a type to a ValID to get a fully
2431/// resolved constant or metadata value.
2432bool LLParser::ConvertGlobalOrMetadataValIDToValue(const Type *Ty, ValID &ID,
2433 Value *&V) {
2434 switch (ID.Kind) {
2435 case ValID::t_MDNode:
2436 if (!Ty->isMetadataTy())
2437 return Error(ID.Loc, "metadata value must have metadata type");
2438 V = ID.MDNodeVal;
2439 return false;
2440 case ValID::t_MDString:
2441 if (!Ty->isMetadataTy())
2442 return Error(ID.Loc, "metadata value must have metadata type");
2443 V = ID.MDStringVal;
2444 return false;
2445 default:
2446 Constant *C;
2447 if (ConvertGlobalValIDToValue(Ty, ID, C)) return true;
2448 V = C;
2449 return false;
2450 }
2451}
2452
2453
Chris Lattnerdf986172009-01-02 07:01:27 +00002454bool LLParser::ParseGlobalTypeAndValue(Constant *&V) {
Owen Anderson1d0be152009-08-13 21:58:54 +00002455 PATypeHolder Type(Type::getVoidTy(Context));
Chris Lattnerdf986172009-01-02 07:01:27 +00002456 return ParseType(Type) ||
2457 ParseGlobalValue(Type, V);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002458}
Chris Lattnerdf986172009-01-02 07:01:27 +00002459
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002460/// ParseGlobalValueVector
2461/// ::= /*empty*/
2462/// ::= TypeAndValue (',' TypeAndValue)*
Chris Lattnerdf986172009-01-02 07:01:27 +00002463bool LLParser::ParseGlobalValueVector(SmallVectorImpl<Constant*> &Elts) {
2464 // Empty list.
2465 if (Lex.getKind() == lltok::rbrace ||
2466 Lex.getKind() == lltok::rsquare ||
2467 Lex.getKind() == lltok::greater ||
2468 Lex.getKind() == lltok::rparen)
2469 return false;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002470
Chris Lattnerdf986172009-01-02 07:01:27 +00002471 Constant *C;
2472 if (ParseGlobalTypeAndValue(C)) return true;
2473 Elts.push_back(C);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002474
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002475 while (EatIfPresent(lltok::comma)) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002476 if (ParseGlobalTypeAndValue(C)) return true;
2477 Elts.push_back(C);
2478 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002479
Chris Lattnerdf986172009-01-02 07:01:27 +00002480 return false;
2481}
2482
2483
2484//===----------------------------------------------------------------------===//
2485// Function Parsing.
2486//===----------------------------------------------------------------------===//
2487
2488bool LLParser::ConvertValIDToValue(const Type *Ty, ValID &ID, Value *&V,
2489 PerFunctionState &PFS) {
Chris Lattner287881d2009-12-30 02:11:14 +00002490 switch (ID.Kind) {
2491 case ValID::t_LocalID: V = PFS.GetVal(ID.UIntVal, Ty, ID.Loc); break;
2492 case ValID::t_LocalName: V = PFS.GetVal(ID.StrVal, Ty, ID.Loc); break;
Chris Lattner287881d2009-12-30 02:11:14 +00002493 case ValID::t_InlineAsm: {
Chris Lattnerdf986172009-01-02 07:01:27 +00002494 const PointerType *PTy = dyn_cast<PointerType>(Ty);
Chris Lattnerc49363b2009-12-30 02:20:07 +00002495 const FunctionType *FTy =
2496 PTy ? dyn_cast<FunctionType>(PTy->getElementType()) : 0;
Chris Lattnerdf986172009-01-02 07:01:27 +00002497 if (!FTy || !InlineAsm::Verify(FTy, ID.StrVal2))
2498 return Error(ID.Loc, "invalid type for inline asm constraint string");
Dale Johannesen43602982009-10-13 20:46:56 +00002499 V = InlineAsm::get(FTy, ID.StrVal, ID.StrVal2, ID.UIntVal&1, ID.UIntVal>>1);
Chris Lattnerdf986172009-01-02 07:01:27 +00002500 return false;
Chris Lattner287881d2009-12-30 02:11:14 +00002501 }
Chris Lattnera7352392009-12-30 04:42:57 +00002502 default:
2503 return ConvertGlobalOrMetadataValIDToValue(Ty, ID, V);
Chris Lattner287881d2009-12-30 02:11:14 +00002504 }
Chris Lattnerdf986172009-01-02 07:01:27 +00002505
2506 return V == 0;
2507}
2508
2509bool LLParser::ParseValue(const Type *Ty, Value *&V, PerFunctionState &PFS) {
2510 V = 0;
2511 ValID ID;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002512 return ParseValID(ID) ||
2513 ConvertValIDToValue(Ty, ID, V, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00002514}
2515
2516bool LLParser::ParseTypeAndValue(Value *&V, PerFunctionState &PFS) {
Owen Anderson1d0be152009-08-13 21:58:54 +00002517 PATypeHolder T(Type::getVoidTy(Context));
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002518 return ParseType(T) ||
2519 ParseValue(T, V, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00002520}
2521
Chris Lattnerf9be95f2009-10-27 19:13:16 +00002522bool LLParser::ParseTypeAndBasicBlock(BasicBlock *&BB, LocTy &Loc,
2523 PerFunctionState &PFS) {
2524 Value *V;
2525 Loc = Lex.getLoc();
2526 if (ParseTypeAndValue(V, PFS)) return true;
2527 if (!isa<BasicBlock>(V))
2528 return Error(Loc, "expected a basic block");
2529 BB = cast<BasicBlock>(V);
2530 return false;
2531}
2532
2533
Chris Lattnerdf986172009-01-02 07:01:27 +00002534/// FunctionHeader
2535/// ::= OptionalLinkage OptionalVisibility OptionalCallingConv OptRetAttrs
2536/// Type GlobalName '(' ArgList ')' OptFuncAttrs OptSection
2537/// OptionalAlign OptGC
2538bool LLParser::ParseFunctionHeader(Function *&Fn, bool isDefine) {
2539 // Parse the linkage.
2540 LocTy LinkageLoc = Lex.getLoc();
2541 unsigned Linkage;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002542
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00002543 unsigned Visibility, RetAttrs;
2544 CallingConv::ID CC;
Owen Anderson1d0be152009-08-13 21:58:54 +00002545 PATypeHolder RetType(Type::getVoidTy(Context));
Chris Lattnerdf986172009-01-02 07:01:27 +00002546 LocTy RetTypeLoc = Lex.getLoc();
2547 if (ParseOptionalLinkage(Linkage) ||
2548 ParseOptionalVisibility(Visibility) ||
2549 ParseOptionalCallingConv(CC) ||
2550 ParseOptionalAttrs(RetAttrs, 1) ||
Chris Lattnera9a9e072009-03-09 04:49:14 +00002551 ParseType(RetType, RetTypeLoc, true /*void allowed*/))
Chris Lattnerdf986172009-01-02 07:01:27 +00002552 return true;
2553
2554 // Verify that the linkage is ok.
2555 switch ((GlobalValue::LinkageTypes)Linkage) {
2556 case GlobalValue::ExternalLinkage:
2557 break; // always ok.
2558 case GlobalValue::DLLImportLinkage:
Duncan Sands5f4ee1f2009-03-11 08:08:06 +00002559 case GlobalValue::ExternalWeakLinkage:
Chris Lattnerdf986172009-01-02 07:01:27 +00002560 if (isDefine)
2561 return Error(LinkageLoc, "invalid linkage for function definition");
2562 break;
Rafael Espindolabb46f522009-01-15 20:18:42 +00002563 case GlobalValue::PrivateLinkage:
Bill Wendling3d10a5a2009-07-20 01:03:30 +00002564 case GlobalValue::LinkerPrivateLinkage:
Chris Lattnerdf986172009-01-02 07:01:27 +00002565 case GlobalValue::InternalLinkage:
Nick Lewycky55f64db2009-04-13 07:02:02 +00002566 case GlobalValue::AvailableExternallyLinkage:
Duncan Sands667d4b82009-03-07 15:45:40 +00002567 case GlobalValue::LinkOnceAnyLinkage:
2568 case GlobalValue::LinkOnceODRLinkage:
2569 case GlobalValue::WeakAnyLinkage:
2570 case GlobalValue::WeakODRLinkage:
Chris Lattnerdf986172009-01-02 07:01:27 +00002571 case GlobalValue::DLLExportLinkage:
2572 if (!isDefine)
2573 return Error(LinkageLoc, "invalid linkage for function declaration");
2574 break;
2575 case GlobalValue::AppendingLinkage:
2576 case GlobalValue::GhostLinkage:
Duncan Sands4dc2b392009-03-11 20:14:15 +00002577 case GlobalValue::CommonLinkage:
Chris Lattnerdf986172009-01-02 07:01:27 +00002578 return Error(LinkageLoc, "invalid function linkage type");
2579 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002580
Chris Lattner99bb3152009-01-05 08:00:30 +00002581 if (!FunctionType::isValidReturnType(RetType) ||
2582 isa<OpaqueType>(RetType))
Chris Lattnerdf986172009-01-02 07:01:27 +00002583 return Error(RetTypeLoc, "invalid function return type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002584
Chris Lattnerdf986172009-01-02 07:01:27 +00002585 LocTy NameLoc = Lex.getLoc();
Chris Lattnerf570e622009-02-18 21:48:13 +00002586
2587 std::string FunctionName;
2588 if (Lex.getKind() == lltok::GlobalVar) {
2589 FunctionName = Lex.getStrVal();
2590 } else if (Lex.getKind() == lltok::GlobalID) { // @42 is ok.
2591 unsigned NameID = Lex.getUIntVal();
2592
2593 if (NameID != NumberedVals.size())
2594 return TokError("function expected to be numbered '%" +
2595 utostr(NumberedVals.size()) + "'");
2596 } else {
2597 return TokError("expected function name");
2598 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002599
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002600 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +00002601
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002602 if (Lex.getKind() != lltok::lparen)
Chris Lattnerdf986172009-01-02 07:01:27 +00002603 return TokError("expected '(' in function argument list");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002604
Chris Lattnerdf986172009-01-02 07:01:27 +00002605 std::vector<ArgInfo> ArgList;
2606 bool isVarArg;
Chris Lattnerdf986172009-01-02 07:01:27 +00002607 unsigned FuncAttrs;
Chris Lattnerdf986172009-01-02 07:01:27 +00002608 std::string Section;
Chris Lattnerdf986172009-01-02 07:01:27 +00002609 unsigned Alignment;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002610 std::string GC;
2611
Chris Lattnerdfd19dd2009-01-05 18:34:07 +00002612 if (ParseArgumentList(ArgList, isVarArg, false) ||
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002613 ParseOptionalAttrs(FuncAttrs, 2) ||
2614 (EatIfPresent(lltok::kw_section) &&
2615 ParseStringConstant(Section)) ||
2616 ParseOptionalAlignment(Alignment) ||
2617 (EatIfPresent(lltok::kw_gc) &&
2618 ParseStringConstant(GC)))
2619 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00002620
2621 // If the alignment was parsed as an attribute, move to the alignment field.
2622 if (FuncAttrs & Attribute::Alignment) {
2623 Alignment = Attribute::getAlignmentFromAttrs(FuncAttrs);
2624 FuncAttrs &= ~Attribute::Alignment;
2625 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002626
Chris Lattnerdf986172009-01-02 07:01:27 +00002627 // Okay, if we got here, the function is syntactically valid. Convert types
2628 // and do semantic checks.
2629 std::vector<const Type*> ParamTypeList;
2630 SmallVector<AttributeWithIndex, 8> Attrs;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002631 // FIXME : In 3.0, stop accepting zext, sext and inreg as optional function
Chris Lattnerdf986172009-01-02 07:01:27 +00002632 // attributes.
2633 unsigned ObsoleteFuncAttrs = Attribute::ZExt|Attribute::SExt|Attribute::InReg;
2634 if (FuncAttrs & ObsoleteFuncAttrs) {
2635 RetAttrs |= FuncAttrs & ObsoleteFuncAttrs;
2636 FuncAttrs &= ~ObsoleteFuncAttrs;
2637 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002638
Chris Lattnerdf986172009-01-02 07:01:27 +00002639 if (RetAttrs != Attribute::None)
2640 Attrs.push_back(AttributeWithIndex::get(0, RetAttrs));
Daniel Dunbara279bc32009-09-20 02:20:51 +00002641
Chris Lattnerdf986172009-01-02 07:01:27 +00002642 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
2643 ParamTypeList.push_back(ArgList[i].Type);
2644 if (ArgList[i].Attrs != Attribute::None)
2645 Attrs.push_back(AttributeWithIndex::get(i+1, ArgList[i].Attrs));
2646 }
2647
2648 if (FuncAttrs != Attribute::None)
2649 Attrs.push_back(AttributeWithIndex::get(~0, FuncAttrs));
2650
2651 AttrListPtr PAL = AttrListPtr::get(Attrs.begin(), Attrs.end());
Daniel Dunbara279bc32009-09-20 02:20:51 +00002652
Chris Lattnera9a9e072009-03-09 04:49:14 +00002653 if (PAL.paramHasAttr(1, Attribute::StructRet) &&
Owen Anderson1d0be152009-08-13 21:58:54 +00002654 RetType != Type::getVoidTy(Context))
Daniel Dunbara279bc32009-09-20 02:20:51 +00002655 return Error(RetTypeLoc, "functions with 'sret' argument must return void");
2656
Owen Andersonfba933c2009-07-01 23:57:11 +00002657 const FunctionType *FT =
Owen Andersondebcb012009-07-29 22:17:13 +00002658 FunctionType::get(RetType, ParamTypeList, isVarArg);
2659 const PointerType *PFT = PointerType::getUnqual(FT);
Chris Lattnerdf986172009-01-02 07:01:27 +00002660
2661 Fn = 0;
2662 if (!FunctionName.empty()) {
2663 // If this was a definition of a forward reference, remove the definition
2664 // from the forward reference table and fill in the forward ref.
2665 std::map<std::string, std::pair<GlobalValue*, LocTy> >::iterator FRVI =
2666 ForwardRefVals.find(FunctionName);
2667 if (FRVI != ForwardRefVals.end()) {
2668 Fn = M->getFunction(FunctionName);
2669 ForwardRefVals.erase(FRVI);
2670 } else if ((Fn = M->getFunction(FunctionName))) {
2671 // If this function already exists in the symbol table, then it is
2672 // multiply defined. We accept a few cases for old backwards compat.
2673 // FIXME: Remove this stuff for LLVM 3.0.
2674 if (Fn->getType() != PFT || Fn->getAttributes() != PAL ||
2675 (!Fn->isDeclaration() && isDefine)) {
2676 // If the redefinition has different type or different attributes,
2677 // reject it. If both have bodies, reject it.
2678 return Error(NameLoc, "invalid redefinition of function '" +
2679 FunctionName + "'");
2680 } else if (Fn->isDeclaration()) {
2681 // Make sure to strip off any argument names so we can't get conflicts.
2682 for (Function::arg_iterator AI = Fn->arg_begin(), AE = Fn->arg_end();
2683 AI != AE; ++AI)
2684 AI->setName("");
2685 }
Chris Lattner1d871c52009-10-25 23:22:50 +00002686 } else if (M->getNamedValue(FunctionName)) {
2687 return Error(NameLoc, "redefinition of function '@" + FunctionName + "'");
Chris Lattnerdf986172009-01-02 07:01:27 +00002688 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002689
Dan Gohman41905542009-08-29 23:37:49 +00002690 } else {
Chris Lattnerdf986172009-01-02 07:01:27 +00002691 // If this is a definition of a forward referenced function, make sure the
2692 // types agree.
2693 std::map<unsigned, std::pair<GlobalValue*, LocTy> >::iterator I
2694 = ForwardRefValIDs.find(NumberedVals.size());
2695 if (I != ForwardRefValIDs.end()) {
2696 Fn = cast<Function>(I->second.first);
2697 if (Fn->getType() != PFT)
2698 return Error(NameLoc, "type of definition and forward reference of '@" +
2699 utostr(NumberedVals.size()) +"' disagree");
2700 ForwardRefValIDs.erase(I);
2701 }
2702 }
2703
2704 if (Fn == 0)
2705 Fn = Function::Create(FT, GlobalValue::ExternalLinkage, FunctionName, M);
2706 else // Move the forward-reference to the correct spot in the module.
2707 M->getFunctionList().splice(M->end(), M->getFunctionList(), Fn);
2708
2709 if (FunctionName.empty())
2710 NumberedVals.push_back(Fn);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002711
Chris Lattnerdf986172009-01-02 07:01:27 +00002712 Fn->setLinkage((GlobalValue::LinkageTypes)Linkage);
2713 Fn->setVisibility((GlobalValue::VisibilityTypes)Visibility);
2714 Fn->setCallingConv(CC);
2715 Fn->setAttributes(PAL);
2716 Fn->setAlignment(Alignment);
2717 Fn->setSection(Section);
2718 if (!GC.empty()) Fn->setGC(GC.c_str());
Daniel Dunbara279bc32009-09-20 02:20:51 +00002719
Chris Lattnerdf986172009-01-02 07:01:27 +00002720 // Add all of the arguments we parsed to the function.
2721 Function::arg_iterator ArgIt = Fn->arg_begin();
2722 for (unsigned i = 0, e = ArgList.size(); i != e; ++i, ++ArgIt) {
Chris Lattner5bda3792009-11-26 22:48:23 +00002723 // If we run out of arguments in the Function prototype, exit early.
2724 // FIXME: REMOVE THIS IN LLVM 3.0, this is just for the mismatch case above.
2725 if (ArgIt == Fn->arg_end()) break;
2726
Chris Lattnerdf986172009-01-02 07:01:27 +00002727 // If the argument has a name, insert it into the argument symbol table.
2728 if (ArgList[i].Name.empty()) continue;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002729
Chris Lattnerdf986172009-01-02 07:01:27 +00002730 // Set the name, if it conflicted, it will be auto-renamed.
2731 ArgIt->setName(ArgList[i].Name);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002732
Chris Lattnerdf986172009-01-02 07:01:27 +00002733 if (ArgIt->getNameStr() != ArgList[i].Name)
2734 return Error(ArgList[i].Loc, "redefinition of argument '%" +
2735 ArgList[i].Name + "'");
2736 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002737
Chris Lattnerdf986172009-01-02 07:01:27 +00002738 return false;
2739}
2740
2741
2742/// ParseFunctionBody
2743/// ::= '{' BasicBlock+ '}'
2744/// ::= 'begin' BasicBlock+ 'end' // FIXME: remove in LLVM 3.0
2745///
2746bool LLParser::ParseFunctionBody(Function &Fn) {
2747 if (Lex.getKind() != lltok::lbrace && Lex.getKind() != lltok::kw_begin)
2748 return TokError("expected '{' in function body");
2749 Lex.Lex(); // eat the {.
Daniel Dunbara279bc32009-09-20 02:20:51 +00002750
Chris Lattner09d9ef42009-10-28 03:39:23 +00002751 int FunctionNumber = -1;
2752 if (!Fn.hasName()) FunctionNumber = NumberedVals.size()-1;
2753
2754 PerFunctionState PFS(*this, Fn, FunctionNumber);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002755
Chris Lattnerdf986172009-01-02 07:01:27 +00002756 while (Lex.getKind() != lltok::rbrace && Lex.getKind() != lltok::kw_end)
2757 if (ParseBasicBlock(PFS)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002758
Chris Lattnerdf986172009-01-02 07:01:27 +00002759 // Eat the }.
2760 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +00002761
Chris Lattnerdf986172009-01-02 07:01:27 +00002762 // Verify function is ok.
Chris Lattner09d9ef42009-10-28 03:39:23 +00002763 return PFS.FinishFunction();
Chris Lattnerdf986172009-01-02 07:01:27 +00002764}
2765
2766/// ParseBasicBlock
2767/// ::= LabelStr? Instruction*
2768bool LLParser::ParseBasicBlock(PerFunctionState &PFS) {
2769 // If this basic block starts out with a name, remember it.
2770 std::string Name;
2771 LocTy NameLoc = Lex.getLoc();
2772 if (Lex.getKind() == lltok::LabelStr) {
2773 Name = Lex.getStrVal();
2774 Lex.Lex();
2775 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002776
Chris Lattnerdf986172009-01-02 07:01:27 +00002777 BasicBlock *BB = PFS.DefineBB(Name, NameLoc);
2778 if (BB == 0) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002779
Chris Lattnerdf986172009-01-02 07:01:27 +00002780 std::string NameStr;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002781
Chris Lattnerdf986172009-01-02 07:01:27 +00002782 // Parse the instructions in this block until we get a terminator.
2783 Instruction *Inst;
2784 do {
2785 // This instruction may have three possibilities for a name: a) none
2786 // specified, b) name specified "%foo =", c) number specified: "%4 =".
2787 LocTy NameLoc = Lex.getLoc();
2788 int NameID = -1;
2789 NameStr = "";
Daniel Dunbara279bc32009-09-20 02:20:51 +00002790
Chris Lattnerdf986172009-01-02 07:01:27 +00002791 if (Lex.getKind() == lltok::LocalVarID) {
2792 NameID = Lex.getUIntVal();
2793 Lex.Lex();
2794 if (ParseToken(lltok::equal, "expected '=' after instruction id"))
2795 return true;
2796 } else if (Lex.getKind() == lltok::LocalVar ||
2797 // FIXME: REMOVE IN LLVM 3.0
2798 Lex.getKind() == lltok::StringConstant) {
2799 NameStr = Lex.getStrVal();
2800 Lex.Lex();
2801 if (ParseToken(lltok::equal, "expected '=' after instruction name"))
2802 return true;
2803 }
Devang Patelf633a062009-09-17 23:04:48 +00002804
Chris Lattnerdf986172009-01-02 07:01:27 +00002805 if (ParseInstruction(Inst, BB, PFS)) return true;
Devang Patelf633a062009-09-17 23:04:48 +00002806 if (EatIfPresent(lltok::comma))
Devang Patel0475c912009-09-29 00:01:14 +00002807 ParseOptionalCustomMetadata();
Devang Patelf633a062009-09-17 23:04:48 +00002808
2809 // Set metadata attached with this instruction.
Devang Patela2148402009-09-28 21:14:55 +00002810 for (SmallVector<std::pair<unsigned, MDNode *>, 2>::iterator
Daniel Dunbara279bc32009-09-20 02:20:51 +00002811 MDI = MDsOnInst.begin(), MDE = MDsOnInst.end(); MDI != MDE; ++MDI)
Chris Lattner3990b122009-12-28 23:41:32 +00002812 Inst->setMetadata(MDI->first, MDI->second);
Devang Patelf633a062009-09-17 23:04:48 +00002813 MDsOnInst.clear();
2814
Chris Lattnerdf986172009-01-02 07:01:27 +00002815 BB->getInstList().push_back(Inst);
2816
2817 // Set the name on the instruction.
2818 if (PFS.SetInstName(NameID, NameStr, NameLoc, Inst)) return true;
2819 } while (!isa<TerminatorInst>(Inst));
Daniel Dunbara279bc32009-09-20 02:20:51 +00002820
Chris Lattnerdf986172009-01-02 07:01:27 +00002821 return false;
2822}
2823
2824//===----------------------------------------------------------------------===//
2825// Instruction Parsing.
2826//===----------------------------------------------------------------------===//
2827
2828/// ParseInstruction - Parse one of the many different instructions.
2829///
2830bool LLParser::ParseInstruction(Instruction *&Inst, BasicBlock *BB,
2831 PerFunctionState &PFS) {
2832 lltok::Kind Token = Lex.getKind();
2833 if (Token == lltok::Eof)
2834 return TokError("found end of file when expecting more instructions");
2835 LocTy Loc = Lex.getLoc();
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00002836 unsigned KeywordVal = Lex.getUIntVal();
Chris Lattnerdf986172009-01-02 07:01:27 +00002837 Lex.Lex(); // Eat the keyword.
Daniel Dunbara279bc32009-09-20 02:20:51 +00002838
Chris Lattnerdf986172009-01-02 07:01:27 +00002839 switch (Token) {
2840 default: return Error(Loc, "expected instruction opcode");
2841 // Terminator Instructions.
Owen Anderson1d0be152009-08-13 21:58:54 +00002842 case lltok::kw_unwind: Inst = new UnwindInst(Context); return false;
2843 case lltok::kw_unreachable: Inst = new UnreachableInst(Context); return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00002844 case lltok::kw_ret: return ParseRet(Inst, BB, PFS);
2845 case lltok::kw_br: return ParseBr(Inst, PFS);
2846 case lltok::kw_switch: return ParseSwitch(Inst, PFS);
Chris Lattnerab21db72009-10-28 00:19:10 +00002847 case lltok::kw_indirectbr: return ParseIndirectBr(Inst, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00002848 case lltok::kw_invoke: return ParseInvoke(Inst, PFS);
2849 // Binary Operators.
2850 case lltok::kw_add:
2851 case lltok::kw_sub:
Dan Gohman59858cf2009-07-27 16:11:46 +00002852 case lltok::kw_mul: {
2853 bool NUW = false;
2854 bool NSW = false;
2855 LocTy ModifierLoc = Lex.getLoc();
2856 if (EatIfPresent(lltok::kw_nuw))
2857 NUW = true;
2858 if (EatIfPresent(lltok::kw_nsw)) {
2859 NSW = true;
2860 if (EatIfPresent(lltok::kw_nuw))
2861 NUW = true;
2862 }
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002863 // API compatibility: Accept either integer or floating-point types.
Dan Gohman59858cf2009-07-27 16:11:46 +00002864 bool Result = ParseArithmetic(Inst, PFS, KeywordVal, 0);
2865 if (!Result) {
2866 if (!Inst->getType()->isIntOrIntVector()) {
2867 if (NUW)
2868 return Error(ModifierLoc, "nuw only applies to integer operations");
2869 if (NSW)
2870 return Error(ModifierLoc, "nsw only applies to integer operations");
2871 }
2872 if (NUW)
Dan Gohmanf8dbee72009-09-07 23:54:19 +00002873 cast<BinaryOperator>(Inst)->setHasNoUnsignedWrap(true);
Dan Gohman59858cf2009-07-27 16:11:46 +00002874 if (NSW)
Dan Gohmanf8dbee72009-09-07 23:54:19 +00002875 cast<BinaryOperator>(Inst)->setHasNoSignedWrap(true);
Dan Gohman59858cf2009-07-27 16:11:46 +00002876 }
2877 return Result;
2878 }
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002879 case lltok::kw_fadd:
2880 case lltok::kw_fsub:
2881 case lltok::kw_fmul: return ParseArithmetic(Inst, PFS, KeywordVal, 2);
2882
Dan Gohman59858cf2009-07-27 16:11:46 +00002883 case lltok::kw_sdiv: {
2884 bool Exact = false;
2885 if (EatIfPresent(lltok::kw_exact))
2886 Exact = true;
2887 bool Result = ParseArithmetic(Inst, PFS, KeywordVal, 1);
2888 if (!Result)
2889 if (Exact)
Dan Gohmanf8dbee72009-09-07 23:54:19 +00002890 cast<BinaryOperator>(Inst)->setIsExact(true);
Dan Gohman59858cf2009-07-27 16:11:46 +00002891 return Result;
2892 }
2893
Chris Lattnerdf986172009-01-02 07:01:27 +00002894 case lltok::kw_udiv:
Chris Lattnerdf986172009-01-02 07:01:27 +00002895 case lltok::kw_urem:
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00002896 case lltok::kw_srem: return ParseArithmetic(Inst, PFS, KeywordVal, 1);
Chris Lattnere914b592009-01-05 08:24:46 +00002897 case lltok::kw_fdiv:
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00002898 case lltok::kw_frem: return ParseArithmetic(Inst, PFS, KeywordVal, 2);
Chris Lattnerdf986172009-01-02 07:01:27 +00002899 case lltok::kw_shl:
2900 case lltok::kw_lshr:
2901 case lltok::kw_ashr:
2902 case lltok::kw_and:
2903 case lltok::kw_or:
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00002904 case lltok::kw_xor: return ParseLogical(Inst, PFS, KeywordVal);
Chris Lattnerdf986172009-01-02 07:01:27 +00002905 case lltok::kw_icmp:
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00002906 case lltok::kw_fcmp: return ParseCompare(Inst, PFS, KeywordVal);
Chris Lattnerdf986172009-01-02 07:01:27 +00002907 // Casts.
2908 case lltok::kw_trunc:
2909 case lltok::kw_zext:
2910 case lltok::kw_sext:
2911 case lltok::kw_fptrunc:
2912 case lltok::kw_fpext:
2913 case lltok::kw_bitcast:
2914 case lltok::kw_uitofp:
2915 case lltok::kw_sitofp:
2916 case lltok::kw_fptoui:
Daniel Dunbara279bc32009-09-20 02:20:51 +00002917 case lltok::kw_fptosi:
Chris Lattnerdf986172009-01-02 07:01:27 +00002918 case lltok::kw_inttoptr:
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00002919 case lltok::kw_ptrtoint: return ParseCast(Inst, PFS, KeywordVal);
Chris Lattnerdf986172009-01-02 07:01:27 +00002920 // Other.
2921 case lltok::kw_select: return ParseSelect(Inst, PFS);
Chris Lattner0088a5c2009-01-05 08:18:44 +00002922 case lltok::kw_va_arg: return ParseVA_Arg(Inst, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00002923 case lltok::kw_extractelement: return ParseExtractElement(Inst, PFS);
2924 case lltok::kw_insertelement: return ParseInsertElement(Inst, PFS);
2925 case lltok::kw_shufflevector: return ParseShuffleVector(Inst, PFS);
2926 case lltok::kw_phi: return ParsePHI(Inst, PFS);
2927 case lltok::kw_call: return ParseCall(Inst, PFS, false);
2928 case lltok::kw_tail: return ParseCall(Inst, PFS, true);
2929 // Memory.
Victor Hernandez13ad5aa2009-10-17 00:00:19 +00002930 case lltok::kw_alloca: return ParseAlloc(Inst, PFS);
2931 case lltok::kw_malloc: return ParseAlloc(Inst, PFS, BB, false);
Victor Hernandez66284e02009-10-24 04:23:03 +00002932 case lltok::kw_free: return ParseFree(Inst, PFS, BB);
Chris Lattnerdf986172009-01-02 07:01:27 +00002933 case lltok::kw_load: return ParseLoad(Inst, PFS, false);
2934 case lltok::kw_store: return ParseStore(Inst, PFS, false);
2935 case lltok::kw_volatile:
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002936 if (EatIfPresent(lltok::kw_load))
Chris Lattnerdf986172009-01-02 07:01:27 +00002937 return ParseLoad(Inst, PFS, true);
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002938 else if (EatIfPresent(lltok::kw_store))
Chris Lattnerdf986172009-01-02 07:01:27 +00002939 return ParseStore(Inst, PFS, true);
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002940 else
Chris Lattnerdf986172009-01-02 07:01:27 +00002941 return TokError("expected 'load' or 'store'");
Chris Lattnerdf986172009-01-02 07:01:27 +00002942 case lltok::kw_getresult: return ParseGetResult(Inst, PFS);
2943 case lltok::kw_getelementptr: return ParseGetElementPtr(Inst, PFS);
2944 case lltok::kw_extractvalue: return ParseExtractValue(Inst, PFS);
2945 case lltok::kw_insertvalue: return ParseInsertValue(Inst, PFS);
2946 }
2947}
2948
2949/// ParseCmpPredicate - Parse an integer or fp predicate, based on Kind.
2950bool LLParser::ParseCmpPredicate(unsigned &P, unsigned Opc) {
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00002951 if (Opc == Instruction::FCmp) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002952 switch (Lex.getKind()) {
2953 default: TokError("expected fcmp predicate (e.g. 'oeq')");
2954 case lltok::kw_oeq: P = CmpInst::FCMP_OEQ; break;
2955 case lltok::kw_one: P = CmpInst::FCMP_ONE; break;
2956 case lltok::kw_olt: P = CmpInst::FCMP_OLT; break;
2957 case lltok::kw_ogt: P = CmpInst::FCMP_OGT; break;
2958 case lltok::kw_ole: P = CmpInst::FCMP_OLE; break;
2959 case lltok::kw_oge: P = CmpInst::FCMP_OGE; break;
2960 case lltok::kw_ord: P = CmpInst::FCMP_ORD; break;
2961 case lltok::kw_uno: P = CmpInst::FCMP_UNO; break;
2962 case lltok::kw_ueq: P = CmpInst::FCMP_UEQ; break;
2963 case lltok::kw_une: P = CmpInst::FCMP_UNE; break;
2964 case lltok::kw_ult: P = CmpInst::FCMP_ULT; break;
2965 case lltok::kw_ugt: P = CmpInst::FCMP_UGT; break;
2966 case lltok::kw_ule: P = CmpInst::FCMP_ULE; break;
2967 case lltok::kw_uge: P = CmpInst::FCMP_UGE; break;
2968 case lltok::kw_true: P = CmpInst::FCMP_TRUE; break;
2969 case lltok::kw_false: P = CmpInst::FCMP_FALSE; break;
2970 }
2971 } else {
2972 switch (Lex.getKind()) {
2973 default: TokError("expected icmp predicate (e.g. 'eq')");
2974 case lltok::kw_eq: P = CmpInst::ICMP_EQ; break;
2975 case lltok::kw_ne: P = CmpInst::ICMP_NE; break;
2976 case lltok::kw_slt: P = CmpInst::ICMP_SLT; break;
2977 case lltok::kw_sgt: P = CmpInst::ICMP_SGT; break;
2978 case lltok::kw_sle: P = CmpInst::ICMP_SLE; break;
2979 case lltok::kw_sge: P = CmpInst::ICMP_SGE; break;
2980 case lltok::kw_ult: P = CmpInst::ICMP_ULT; break;
2981 case lltok::kw_ugt: P = CmpInst::ICMP_UGT; break;
2982 case lltok::kw_ule: P = CmpInst::ICMP_ULE; break;
2983 case lltok::kw_uge: P = CmpInst::ICMP_UGE; break;
2984 }
2985 }
2986 Lex.Lex();
2987 return false;
2988}
2989
2990//===----------------------------------------------------------------------===//
2991// Terminator Instructions.
2992//===----------------------------------------------------------------------===//
2993
2994/// ParseRet - Parse a return instruction.
Chris Lattner3f3a0f62009-12-29 21:25:40 +00002995/// ::= 'ret' void (',' !dbg, !1)*
2996/// ::= 'ret' TypeAndValue (',' !dbg, !1)*
2997/// ::= 'ret' TypeAndValue (',' TypeAndValue)+ (',' !dbg, !1)*
Devang Patelf633a062009-09-17 23:04:48 +00002998/// [[obsolete: LLVM 3.0]]
Chris Lattnerdf986172009-01-02 07:01:27 +00002999bool LLParser::ParseRet(Instruction *&Inst, BasicBlock *BB,
3000 PerFunctionState &PFS) {
Owen Anderson1d0be152009-08-13 21:58:54 +00003001 PATypeHolder Ty(Type::getVoidTy(Context));
Chris Lattnera9a9e072009-03-09 04:49:14 +00003002 if (ParseType(Ty, true /*void allowed*/)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003003
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00003004 if (Ty->isVoidTy()) {
Owen Anderson1d0be152009-08-13 21:58:54 +00003005 Inst = ReturnInst::Create(Context);
Chris Lattnerdf986172009-01-02 07:01:27 +00003006 return false;
3007 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003008
Chris Lattnerdf986172009-01-02 07:01:27 +00003009 Value *RV;
3010 if (ParseValue(Ty, RV, PFS)) return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00003011
Devang Patelf633a062009-09-17 23:04:48 +00003012 if (EatIfPresent(lltok::comma)) {
Devang Patel0475c912009-09-29 00:01:14 +00003013 // Parse optional custom metadata, e.g. !dbg
Chris Lattner1d928312009-12-30 05:02:06 +00003014 if (Lex.getKind() == lltok::MetadataVar) {
Devang Patel0475c912009-09-29 00:01:14 +00003015 if (ParseOptionalCustomMetadata()) return true;
Devang Patelf633a062009-09-17 23:04:48 +00003016 } else {
3017 // The normal case is one return value.
Chris Lattner3f3a0f62009-12-29 21:25:40 +00003018 // FIXME: LLVM 3.0 remove MRV support for 'ret i32 1, i32 2', requiring
3019 // use of 'ret {i32,i32} {i32 1, i32 2}'
Devang Patelf633a062009-09-17 23:04:48 +00003020 SmallVector<Value*, 8> RVs;
3021 RVs.push_back(RV);
Daniel Dunbara279bc32009-09-20 02:20:51 +00003022
Devang Patelf633a062009-09-17 23:04:48 +00003023 do {
Devang Patel0475c912009-09-29 00:01:14 +00003024 // If optional custom metadata, e.g. !dbg is seen then this is the
3025 // end of MRV.
Chris Lattner1d928312009-12-30 05:02:06 +00003026 if (Lex.getKind() == lltok::MetadataVar)
Daniel Dunbara279bc32009-09-20 02:20:51 +00003027 break;
3028 if (ParseTypeAndValue(RV, PFS)) return true;
3029 RVs.push_back(RV);
Devang Patelf633a062009-09-17 23:04:48 +00003030 } while (EatIfPresent(lltok::comma));
3031
3032 RV = UndefValue::get(PFS.getFunction().getReturnType());
3033 for (unsigned i = 0, e = RVs.size(); i != e; ++i) {
Daniel Dunbara279bc32009-09-20 02:20:51 +00003034 Instruction *I = InsertValueInst::Create(RV, RVs[i], i, "mrv");
3035 BB->getInstList().push_back(I);
3036 RV = I;
Devang Patelf633a062009-09-17 23:04:48 +00003037 }
Chris Lattnerdf986172009-01-02 07:01:27 +00003038 }
3039 }
Devang Patelf633a062009-09-17 23:04:48 +00003040
Owen Anderson1d0be152009-08-13 21:58:54 +00003041 Inst = ReturnInst::Create(Context, RV);
Chris Lattnerdf986172009-01-02 07:01:27 +00003042 return false;
3043}
3044
3045
3046/// ParseBr
3047/// ::= 'br' TypeAndValue
3048/// ::= 'br' TypeAndValue ',' TypeAndValue ',' TypeAndValue
3049bool LLParser::ParseBr(Instruction *&Inst, PerFunctionState &PFS) {
3050 LocTy Loc, Loc2;
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003051 Value *Op0;
3052 BasicBlock *Op1, *Op2;
Chris Lattnerdf986172009-01-02 07:01:27 +00003053 if (ParseTypeAndValue(Op0, Loc, PFS)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003054
Chris Lattnerdf986172009-01-02 07:01:27 +00003055 if (BasicBlock *BB = dyn_cast<BasicBlock>(Op0)) {
3056 Inst = BranchInst::Create(BB);
3057 return false;
3058 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003059
Owen Anderson1d0be152009-08-13 21:58:54 +00003060 if (Op0->getType() != Type::getInt1Ty(Context))
Chris Lattnerdf986172009-01-02 07:01:27 +00003061 return Error(Loc, "branch condition must have 'i1' type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003062
Chris Lattnerdf986172009-01-02 07:01:27 +00003063 if (ParseToken(lltok::comma, "expected ',' after branch condition") ||
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003064 ParseTypeAndBasicBlock(Op1, Loc, PFS) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003065 ParseToken(lltok::comma, "expected ',' after true destination") ||
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003066 ParseTypeAndBasicBlock(Op2, Loc2, PFS))
Chris Lattnerdf986172009-01-02 07:01:27 +00003067 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003068
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003069 Inst = BranchInst::Create(Op1, Op2, Op0);
Chris Lattnerdf986172009-01-02 07:01:27 +00003070 return false;
3071}
3072
3073/// ParseSwitch
3074/// Instruction
3075/// ::= 'switch' TypeAndValue ',' TypeAndValue '[' JumpTable ']'
3076/// JumpTable
3077/// ::= (TypeAndValue ',' TypeAndValue)*
3078bool LLParser::ParseSwitch(Instruction *&Inst, PerFunctionState &PFS) {
3079 LocTy CondLoc, BBLoc;
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003080 Value *Cond;
3081 BasicBlock *DefaultBB;
Chris Lattnerdf986172009-01-02 07:01:27 +00003082 if (ParseTypeAndValue(Cond, CondLoc, PFS) ||
3083 ParseToken(lltok::comma, "expected ',' after switch condition") ||
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003084 ParseTypeAndBasicBlock(DefaultBB, BBLoc, PFS) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003085 ParseToken(lltok::lsquare, "expected '[' with switch table"))
3086 return true;
3087
3088 if (!isa<IntegerType>(Cond->getType()))
3089 return Error(CondLoc, "switch condition must have integer type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003090
Chris Lattnerdf986172009-01-02 07:01:27 +00003091 // Parse the jump table pairs.
3092 SmallPtrSet<Value*, 32> SeenCases;
3093 SmallVector<std::pair<ConstantInt*, BasicBlock*>, 32> Table;
3094 while (Lex.getKind() != lltok::rsquare) {
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003095 Value *Constant;
3096 BasicBlock *DestBB;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003097
Chris Lattnerdf986172009-01-02 07:01:27 +00003098 if (ParseTypeAndValue(Constant, CondLoc, PFS) ||
3099 ParseToken(lltok::comma, "expected ',' after case value") ||
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003100 ParseTypeAndBasicBlock(DestBB, PFS))
Chris Lattnerdf986172009-01-02 07:01:27 +00003101 return true;
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003102
Chris Lattnerdf986172009-01-02 07:01:27 +00003103 if (!SeenCases.insert(Constant))
3104 return Error(CondLoc, "duplicate case value in switch");
3105 if (!isa<ConstantInt>(Constant))
3106 return Error(CondLoc, "case value is not a constant integer");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003107
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003108 Table.push_back(std::make_pair(cast<ConstantInt>(Constant), DestBB));
Chris Lattnerdf986172009-01-02 07:01:27 +00003109 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003110
Chris Lattnerdf986172009-01-02 07:01:27 +00003111 Lex.Lex(); // Eat the ']'.
Daniel Dunbara279bc32009-09-20 02:20:51 +00003112
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003113 SwitchInst *SI = SwitchInst::Create(Cond, DefaultBB, Table.size());
Chris Lattnerdf986172009-01-02 07:01:27 +00003114 for (unsigned i = 0, e = Table.size(); i != e; ++i)
3115 SI->addCase(Table[i].first, Table[i].second);
3116 Inst = SI;
3117 return false;
3118}
3119
Chris Lattnerab21db72009-10-28 00:19:10 +00003120/// ParseIndirectBr
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003121/// Instruction
Chris Lattnerab21db72009-10-28 00:19:10 +00003122/// ::= 'indirectbr' TypeAndValue ',' '[' LabelList ']'
3123bool LLParser::ParseIndirectBr(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003124 LocTy AddrLoc;
3125 Value *Address;
3126 if (ParseTypeAndValue(Address, AddrLoc, PFS) ||
Chris Lattnerab21db72009-10-28 00:19:10 +00003127 ParseToken(lltok::comma, "expected ',' after indirectbr address") ||
3128 ParseToken(lltok::lsquare, "expected '[' with indirectbr"))
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003129 return true;
3130
3131 if (!isa<PointerType>(Address->getType()))
Chris Lattnerab21db72009-10-28 00:19:10 +00003132 return Error(AddrLoc, "indirectbr address must have pointer type");
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003133
3134 // Parse the destination list.
3135 SmallVector<BasicBlock*, 16> DestList;
3136
3137 if (Lex.getKind() != lltok::rsquare) {
3138 BasicBlock *DestBB;
3139 if (ParseTypeAndBasicBlock(DestBB, PFS))
3140 return true;
3141 DestList.push_back(DestBB);
3142
3143 while (EatIfPresent(lltok::comma)) {
3144 if (ParseTypeAndBasicBlock(DestBB, PFS))
3145 return true;
3146 DestList.push_back(DestBB);
3147 }
3148 }
3149
3150 if (ParseToken(lltok::rsquare, "expected ']' at end of block list"))
3151 return true;
3152
Chris Lattnerab21db72009-10-28 00:19:10 +00003153 IndirectBrInst *IBI = IndirectBrInst::Create(Address, DestList.size());
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003154 for (unsigned i = 0, e = DestList.size(); i != e; ++i)
3155 IBI->addDestination(DestList[i]);
3156 Inst = IBI;
3157 return false;
3158}
3159
3160
Chris Lattnerdf986172009-01-02 07:01:27 +00003161/// ParseInvoke
3162/// ::= 'invoke' OptionalCallingConv OptionalAttrs Type Value ParamList
3163/// OptionalAttrs 'to' TypeAndValue 'unwind' TypeAndValue
3164bool LLParser::ParseInvoke(Instruction *&Inst, PerFunctionState &PFS) {
3165 LocTy CallLoc = Lex.getLoc();
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00003166 unsigned RetAttrs, FnAttrs;
3167 CallingConv::ID CC;
Owen Anderson1d0be152009-08-13 21:58:54 +00003168 PATypeHolder RetType(Type::getVoidTy(Context));
Chris Lattnerdf986172009-01-02 07:01:27 +00003169 LocTy RetTypeLoc;
3170 ValID CalleeID;
3171 SmallVector<ParamInfo, 16> ArgList;
3172
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003173 BasicBlock *NormalBB, *UnwindBB;
Chris Lattnerdf986172009-01-02 07:01:27 +00003174 if (ParseOptionalCallingConv(CC) ||
3175 ParseOptionalAttrs(RetAttrs, 1) ||
Chris Lattnera9a9e072009-03-09 04:49:14 +00003176 ParseType(RetType, RetTypeLoc, true /*void allowed*/) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003177 ParseValID(CalleeID) ||
3178 ParseParameterList(ArgList, PFS) ||
3179 ParseOptionalAttrs(FnAttrs, 2) ||
3180 ParseToken(lltok::kw_to, "expected 'to' in invoke") ||
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003181 ParseTypeAndBasicBlock(NormalBB, PFS) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003182 ParseToken(lltok::kw_unwind, "expected 'unwind' in invoke") ||
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003183 ParseTypeAndBasicBlock(UnwindBB, PFS))
Chris Lattnerdf986172009-01-02 07:01:27 +00003184 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003185
Chris Lattnerdf986172009-01-02 07:01:27 +00003186 // If RetType is a non-function pointer type, then this is the short syntax
3187 // for the call, which means that RetType is just the return type. Infer the
3188 // rest of the function argument types from the arguments that are present.
3189 const PointerType *PFTy = 0;
3190 const FunctionType *Ty = 0;
3191 if (!(PFTy = dyn_cast<PointerType>(RetType)) ||
3192 !(Ty = dyn_cast<FunctionType>(PFTy->getElementType()))) {
3193 // Pull out the types of all of the arguments...
3194 std::vector<const Type*> ParamTypes;
3195 for (unsigned i = 0, e = ArgList.size(); i != e; ++i)
3196 ParamTypes.push_back(ArgList[i].V->getType());
Daniel Dunbara279bc32009-09-20 02:20:51 +00003197
Chris Lattnerdf986172009-01-02 07:01:27 +00003198 if (!FunctionType::isValidReturnType(RetType))
3199 return Error(RetTypeLoc, "Invalid result type for LLVM function");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003200
Owen Andersondebcb012009-07-29 22:17:13 +00003201 Ty = FunctionType::get(RetType, ParamTypes, false);
3202 PFTy = PointerType::getUnqual(Ty);
Chris Lattnerdf986172009-01-02 07:01:27 +00003203 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003204
Chris Lattnerdf986172009-01-02 07:01:27 +00003205 // Look up the callee.
3206 Value *Callee;
3207 if (ConvertValIDToValue(PFTy, CalleeID, Callee, PFS)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003208
Chris Lattnerdf986172009-01-02 07:01:27 +00003209 // FIXME: In LLVM 3.0, stop accepting zext, sext and inreg as optional
3210 // function attributes.
3211 unsigned ObsoleteFuncAttrs = Attribute::ZExt|Attribute::SExt|Attribute::InReg;
3212 if (FnAttrs & ObsoleteFuncAttrs) {
3213 RetAttrs |= FnAttrs & ObsoleteFuncAttrs;
3214 FnAttrs &= ~ObsoleteFuncAttrs;
3215 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003216
Chris Lattnerdf986172009-01-02 07:01:27 +00003217 // Set up the Attributes for the function.
3218 SmallVector<AttributeWithIndex, 8> Attrs;
3219 if (RetAttrs != Attribute::None)
3220 Attrs.push_back(AttributeWithIndex::get(0, RetAttrs));
Daniel Dunbara279bc32009-09-20 02:20:51 +00003221
Chris Lattnerdf986172009-01-02 07:01:27 +00003222 SmallVector<Value*, 8> Args;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003223
Chris Lattnerdf986172009-01-02 07:01:27 +00003224 // Loop through FunctionType's arguments and ensure they are specified
3225 // correctly. Also, gather any parameter attributes.
3226 FunctionType::param_iterator I = Ty->param_begin();
3227 FunctionType::param_iterator E = Ty->param_end();
3228 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
3229 const Type *ExpectedTy = 0;
3230 if (I != E) {
3231 ExpectedTy = *I++;
3232 } else if (!Ty->isVarArg()) {
3233 return Error(ArgList[i].Loc, "too many arguments specified");
3234 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003235
Chris Lattnerdf986172009-01-02 07:01:27 +00003236 if (ExpectedTy && ExpectedTy != ArgList[i].V->getType())
3237 return Error(ArgList[i].Loc, "argument is not of expected type '" +
3238 ExpectedTy->getDescription() + "'");
3239 Args.push_back(ArgList[i].V);
3240 if (ArgList[i].Attrs != Attribute::None)
3241 Attrs.push_back(AttributeWithIndex::get(i+1, ArgList[i].Attrs));
3242 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003243
Chris Lattnerdf986172009-01-02 07:01:27 +00003244 if (I != E)
3245 return Error(CallLoc, "not enough parameters specified for call");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003246
Chris Lattnerdf986172009-01-02 07:01:27 +00003247 if (FnAttrs != Attribute::None)
3248 Attrs.push_back(AttributeWithIndex::get(~0, FnAttrs));
Daniel Dunbara279bc32009-09-20 02:20:51 +00003249
Chris Lattnerdf986172009-01-02 07:01:27 +00003250 // Finish off the Attributes and check them
3251 AttrListPtr PAL = AttrListPtr::get(Attrs.begin(), Attrs.end());
Daniel Dunbara279bc32009-09-20 02:20:51 +00003252
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003253 InvokeInst *II = InvokeInst::Create(Callee, NormalBB, UnwindBB,
Chris Lattnerdf986172009-01-02 07:01:27 +00003254 Args.begin(), Args.end());
3255 II->setCallingConv(CC);
3256 II->setAttributes(PAL);
3257 Inst = II;
3258 return false;
3259}
3260
3261
3262
3263//===----------------------------------------------------------------------===//
3264// Binary Operators.
3265//===----------------------------------------------------------------------===//
3266
3267/// ParseArithmetic
Chris Lattnere914b592009-01-05 08:24:46 +00003268/// ::= ArithmeticOps TypeAndValue ',' Value
3269///
3270/// If OperandType is 0, then any FP or integer operand is allowed. If it is 1,
3271/// then any integer operand is allowed, if it is 2, any fp operand is allowed.
Chris Lattnerdf986172009-01-02 07:01:27 +00003272bool LLParser::ParseArithmetic(Instruction *&Inst, PerFunctionState &PFS,
Chris Lattnere914b592009-01-05 08:24:46 +00003273 unsigned Opc, unsigned OperandType) {
Chris Lattnerdf986172009-01-02 07:01:27 +00003274 LocTy Loc; Value *LHS, *RHS;
3275 if (ParseTypeAndValue(LHS, Loc, PFS) ||
3276 ParseToken(lltok::comma, "expected ',' in arithmetic operation") ||
3277 ParseValue(LHS->getType(), RHS, PFS))
3278 return true;
3279
Chris Lattnere914b592009-01-05 08:24:46 +00003280 bool Valid;
3281 switch (OperandType) {
Torok Edwinc23197a2009-07-14 16:55:14 +00003282 default: llvm_unreachable("Unknown operand type!");
Chris Lattnere914b592009-01-05 08:24:46 +00003283 case 0: // int or FP.
3284 Valid = LHS->getType()->isIntOrIntVector() ||
3285 LHS->getType()->isFPOrFPVector();
3286 break;
3287 case 1: Valid = LHS->getType()->isIntOrIntVector(); break;
3288 case 2: Valid = LHS->getType()->isFPOrFPVector(); break;
3289 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003290
Chris Lattnere914b592009-01-05 08:24:46 +00003291 if (!Valid)
3292 return Error(Loc, "invalid operand type for instruction");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003293
Chris Lattnerdf986172009-01-02 07:01:27 +00003294 Inst = BinaryOperator::Create((Instruction::BinaryOps)Opc, LHS, RHS);
3295 return false;
3296}
3297
3298/// ParseLogical
3299/// ::= ArithmeticOps TypeAndValue ',' Value {
3300bool LLParser::ParseLogical(Instruction *&Inst, PerFunctionState &PFS,
3301 unsigned Opc) {
3302 LocTy Loc; Value *LHS, *RHS;
3303 if (ParseTypeAndValue(LHS, Loc, PFS) ||
3304 ParseToken(lltok::comma, "expected ',' in logical operation") ||
3305 ParseValue(LHS->getType(), RHS, PFS))
3306 return true;
3307
3308 if (!LHS->getType()->isIntOrIntVector())
3309 return Error(Loc,"instruction requires integer or integer vector operands");
3310
3311 Inst = BinaryOperator::Create((Instruction::BinaryOps)Opc, LHS, RHS);
3312 return false;
3313}
3314
3315
3316/// ParseCompare
3317/// ::= 'icmp' IPredicates TypeAndValue ',' Value
3318/// ::= 'fcmp' FPredicates TypeAndValue ',' Value
Chris Lattnerdf986172009-01-02 07:01:27 +00003319bool LLParser::ParseCompare(Instruction *&Inst, PerFunctionState &PFS,
3320 unsigned Opc) {
3321 // Parse the integer/fp comparison predicate.
3322 LocTy Loc;
3323 unsigned Pred;
3324 Value *LHS, *RHS;
3325 if (ParseCmpPredicate(Pred, Opc) ||
3326 ParseTypeAndValue(LHS, Loc, PFS) ||
3327 ParseToken(lltok::comma, "expected ',' after compare value") ||
3328 ParseValue(LHS->getType(), RHS, PFS))
3329 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003330
Chris Lattnerdf986172009-01-02 07:01:27 +00003331 if (Opc == Instruction::FCmp) {
3332 if (!LHS->getType()->isFPOrFPVector())
3333 return Error(Loc, "fcmp requires floating point operands");
Dan Gohman1c8a23c2009-08-25 23:17:54 +00003334 Inst = new FCmpInst(CmpInst::Predicate(Pred), LHS, RHS);
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00003335 } else {
3336 assert(Opc == Instruction::ICmp && "Unknown opcode for CmpInst!");
Chris Lattnerdf986172009-01-02 07:01:27 +00003337 if (!LHS->getType()->isIntOrIntVector() &&
3338 !isa<PointerType>(LHS->getType()))
3339 return Error(Loc, "icmp requires integer operands");
Dan Gohman1c8a23c2009-08-25 23:17:54 +00003340 Inst = new ICmpInst(CmpInst::Predicate(Pred), LHS, RHS);
Chris Lattnerdf986172009-01-02 07:01:27 +00003341 }
3342 return false;
3343}
3344
3345//===----------------------------------------------------------------------===//
3346// Other Instructions.
3347//===----------------------------------------------------------------------===//
3348
3349
3350/// ParseCast
3351/// ::= CastOpc TypeAndValue 'to' Type
3352bool LLParser::ParseCast(Instruction *&Inst, PerFunctionState &PFS,
3353 unsigned Opc) {
3354 LocTy Loc; Value *Op;
Owen Anderson1d0be152009-08-13 21:58:54 +00003355 PATypeHolder DestTy(Type::getVoidTy(Context));
Chris Lattnerdf986172009-01-02 07:01:27 +00003356 if (ParseTypeAndValue(Op, Loc, PFS) ||
3357 ParseToken(lltok::kw_to, "expected 'to' after cast value") ||
3358 ParseType(DestTy))
3359 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003360
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00003361 if (!CastInst::castIsValid((Instruction::CastOps)Opc, Op, DestTy)) {
3362 CastInst::castIsValid((Instruction::CastOps)Opc, Op, DestTy);
Chris Lattnerdf986172009-01-02 07:01:27 +00003363 return Error(Loc, "invalid cast opcode for cast from '" +
3364 Op->getType()->getDescription() + "' to '" +
3365 DestTy->getDescription() + "'");
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00003366 }
Chris Lattnerdf986172009-01-02 07:01:27 +00003367 Inst = CastInst::Create((Instruction::CastOps)Opc, Op, DestTy);
3368 return false;
3369}
3370
3371/// ParseSelect
3372/// ::= 'select' TypeAndValue ',' TypeAndValue ',' TypeAndValue
3373bool LLParser::ParseSelect(Instruction *&Inst, PerFunctionState &PFS) {
3374 LocTy Loc;
3375 Value *Op0, *Op1, *Op2;
3376 if (ParseTypeAndValue(Op0, Loc, PFS) ||
3377 ParseToken(lltok::comma, "expected ',' after select condition") ||
3378 ParseTypeAndValue(Op1, PFS) ||
3379 ParseToken(lltok::comma, "expected ',' after select value") ||
3380 ParseTypeAndValue(Op2, PFS))
3381 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003382
Chris Lattnerdf986172009-01-02 07:01:27 +00003383 if (const char *Reason = SelectInst::areInvalidOperands(Op0, Op1, Op2))
3384 return Error(Loc, Reason);
Daniel Dunbara279bc32009-09-20 02:20:51 +00003385
Chris Lattnerdf986172009-01-02 07:01:27 +00003386 Inst = SelectInst::Create(Op0, Op1, Op2);
3387 return false;
3388}
3389
Chris Lattner0088a5c2009-01-05 08:18:44 +00003390/// ParseVA_Arg
3391/// ::= 'va_arg' TypeAndValue ',' Type
3392bool LLParser::ParseVA_Arg(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00003393 Value *Op;
Owen Anderson1d0be152009-08-13 21:58:54 +00003394 PATypeHolder EltTy(Type::getVoidTy(Context));
Chris Lattner0088a5c2009-01-05 08:18:44 +00003395 LocTy TypeLoc;
Chris Lattnerdf986172009-01-02 07:01:27 +00003396 if (ParseTypeAndValue(Op, PFS) ||
3397 ParseToken(lltok::comma, "expected ',' after vaarg operand") ||
Chris Lattner0088a5c2009-01-05 08:18:44 +00003398 ParseType(EltTy, TypeLoc))
Chris Lattnerdf986172009-01-02 07:01:27 +00003399 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003400
Chris Lattner0088a5c2009-01-05 08:18:44 +00003401 if (!EltTy->isFirstClassType())
3402 return Error(TypeLoc, "va_arg requires operand with first class type");
Chris Lattnerdf986172009-01-02 07:01:27 +00003403
3404 Inst = new VAArgInst(Op, EltTy);
3405 return false;
3406}
3407
3408/// ParseExtractElement
3409/// ::= 'extractelement' TypeAndValue ',' TypeAndValue
3410bool LLParser::ParseExtractElement(Instruction *&Inst, PerFunctionState &PFS) {
3411 LocTy Loc;
3412 Value *Op0, *Op1;
3413 if (ParseTypeAndValue(Op0, Loc, PFS) ||
3414 ParseToken(lltok::comma, "expected ',' after extract value") ||
3415 ParseTypeAndValue(Op1, PFS))
3416 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003417
Chris Lattnerdf986172009-01-02 07:01:27 +00003418 if (!ExtractElementInst::isValidOperands(Op0, Op1))
3419 return Error(Loc, "invalid extractelement operands");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003420
Eric Christophera3500da2009-07-25 02:28:41 +00003421 Inst = ExtractElementInst::Create(Op0, Op1);
Chris Lattnerdf986172009-01-02 07:01:27 +00003422 return false;
3423}
3424
3425/// ParseInsertElement
3426/// ::= 'insertelement' TypeAndValue ',' TypeAndValue ',' TypeAndValue
3427bool LLParser::ParseInsertElement(Instruction *&Inst, PerFunctionState &PFS) {
3428 LocTy Loc;
3429 Value *Op0, *Op1, *Op2;
3430 if (ParseTypeAndValue(Op0, Loc, PFS) ||
3431 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
3432 ParseTypeAndValue(Op1, PFS) ||
3433 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
3434 ParseTypeAndValue(Op2, PFS))
3435 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003436
Chris Lattnerdf986172009-01-02 07:01:27 +00003437 if (!InsertElementInst::isValidOperands(Op0, Op1, Op2))
Eric Christopher0aaf4e92009-07-23 01:01:32 +00003438 return Error(Loc, "invalid insertelement operands");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003439
Chris Lattnerdf986172009-01-02 07:01:27 +00003440 Inst = InsertElementInst::Create(Op0, Op1, Op2);
3441 return false;
3442}
3443
3444/// ParseShuffleVector
3445/// ::= 'shufflevector' TypeAndValue ',' TypeAndValue ',' TypeAndValue
3446bool LLParser::ParseShuffleVector(Instruction *&Inst, PerFunctionState &PFS) {
3447 LocTy Loc;
3448 Value *Op0, *Op1, *Op2;
3449 if (ParseTypeAndValue(Op0, Loc, PFS) ||
3450 ParseToken(lltok::comma, "expected ',' after shuffle mask") ||
3451 ParseTypeAndValue(Op1, PFS) ||
3452 ParseToken(lltok::comma, "expected ',' after shuffle value") ||
3453 ParseTypeAndValue(Op2, PFS))
3454 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003455
Chris Lattnerdf986172009-01-02 07:01:27 +00003456 if (!ShuffleVectorInst::isValidOperands(Op0, Op1, Op2))
3457 return Error(Loc, "invalid extractelement operands");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003458
Chris Lattnerdf986172009-01-02 07:01:27 +00003459 Inst = new ShuffleVectorInst(Op0, Op1, Op2);
3460 return false;
3461}
3462
3463/// ParsePHI
Chris Lattnerc6e20092009-10-18 05:27:44 +00003464/// ::= 'phi' Type '[' Value ',' Value ']' (',' '[' Value ',' Value ']')*
Chris Lattnerdf986172009-01-02 07:01:27 +00003465bool LLParser::ParsePHI(Instruction *&Inst, PerFunctionState &PFS) {
Owen Anderson1d0be152009-08-13 21:58:54 +00003466 PATypeHolder Ty(Type::getVoidTy(Context));
Chris Lattnerdf986172009-01-02 07:01:27 +00003467 Value *Op0, *Op1;
3468 LocTy TypeLoc = Lex.getLoc();
Daniel Dunbara279bc32009-09-20 02:20:51 +00003469
Chris Lattnerdf986172009-01-02 07:01:27 +00003470 if (ParseType(Ty) ||
3471 ParseToken(lltok::lsquare, "expected '[' in phi value list") ||
3472 ParseValue(Ty, Op0, PFS) ||
3473 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
Owen Anderson1d0be152009-08-13 21:58:54 +00003474 ParseValue(Type::getLabelTy(Context), Op1, PFS) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003475 ParseToken(lltok::rsquare, "expected ']' in phi value list"))
3476 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003477
Chris Lattnerdf986172009-01-02 07:01:27 +00003478 SmallVector<std::pair<Value*, BasicBlock*>, 16> PHIVals;
3479 while (1) {
3480 PHIVals.push_back(std::make_pair(Op0, cast<BasicBlock>(Op1)));
Daniel Dunbara279bc32009-09-20 02:20:51 +00003481
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003482 if (!EatIfPresent(lltok::comma))
Chris Lattnerdf986172009-01-02 07:01:27 +00003483 break;
3484
Chris Lattner1d928312009-12-30 05:02:06 +00003485 if (Lex.getKind() == lltok::MetadataVar)
Devang Patela43d46f2009-10-16 18:45:49 +00003486 break;
3487
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003488 if (ParseToken(lltok::lsquare, "expected '[' in phi value list") ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003489 ParseValue(Ty, Op0, PFS) ||
3490 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
Owen Anderson1d0be152009-08-13 21:58:54 +00003491 ParseValue(Type::getLabelTy(Context), Op1, PFS) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003492 ParseToken(lltok::rsquare, "expected ']' in phi value list"))
3493 return true;
3494 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003495
Chris Lattner1d928312009-12-30 05:02:06 +00003496 if (Lex.getKind() == lltok::MetadataVar)
Devang Patela43d46f2009-10-16 18:45:49 +00003497 if (ParseOptionalCustomMetadata()) return true;
3498
Chris Lattnerdf986172009-01-02 07:01:27 +00003499 if (!Ty->isFirstClassType())
3500 return Error(TypeLoc, "phi node must have first class type");
3501
3502 PHINode *PN = PHINode::Create(Ty);
3503 PN->reserveOperandSpace(PHIVals.size());
3504 for (unsigned i = 0, e = PHIVals.size(); i != e; ++i)
3505 PN->addIncoming(PHIVals[i].first, PHIVals[i].second);
3506 Inst = PN;
3507 return false;
3508}
3509
3510/// ParseCall
3511/// ::= 'tail'? 'call' OptionalCallingConv OptionalAttrs Type Value
3512/// ParameterList OptionalAttrs
3513bool LLParser::ParseCall(Instruction *&Inst, PerFunctionState &PFS,
3514 bool isTail) {
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00003515 unsigned RetAttrs, FnAttrs;
3516 CallingConv::ID CC;
Owen Anderson1d0be152009-08-13 21:58:54 +00003517 PATypeHolder RetType(Type::getVoidTy(Context));
Chris Lattnerdf986172009-01-02 07:01:27 +00003518 LocTy RetTypeLoc;
3519 ValID CalleeID;
3520 SmallVector<ParamInfo, 16> ArgList;
3521 LocTy CallLoc = Lex.getLoc();
Daniel Dunbara279bc32009-09-20 02:20:51 +00003522
Chris Lattnerdf986172009-01-02 07:01:27 +00003523 if ((isTail && ParseToken(lltok::kw_call, "expected 'tail call'")) ||
3524 ParseOptionalCallingConv(CC) ||
3525 ParseOptionalAttrs(RetAttrs, 1) ||
Chris Lattnera9a9e072009-03-09 04:49:14 +00003526 ParseType(RetType, RetTypeLoc, true /*void allowed*/) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003527 ParseValID(CalleeID) ||
3528 ParseParameterList(ArgList, PFS) ||
3529 ParseOptionalAttrs(FnAttrs, 2))
3530 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003531
Chris Lattnerdf986172009-01-02 07:01:27 +00003532 // If RetType is a non-function pointer type, then this is the short syntax
3533 // for the call, which means that RetType is just the return type. Infer the
3534 // rest of the function argument types from the arguments that are present.
3535 const PointerType *PFTy = 0;
3536 const FunctionType *Ty = 0;
3537 if (!(PFTy = dyn_cast<PointerType>(RetType)) ||
3538 !(Ty = dyn_cast<FunctionType>(PFTy->getElementType()))) {
3539 // Pull out the types of all of the arguments...
3540 std::vector<const Type*> ParamTypes;
3541 for (unsigned i = 0, e = ArgList.size(); i != e; ++i)
3542 ParamTypes.push_back(ArgList[i].V->getType());
Daniel Dunbara279bc32009-09-20 02:20:51 +00003543
Chris Lattnerdf986172009-01-02 07:01:27 +00003544 if (!FunctionType::isValidReturnType(RetType))
3545 return Error(RetTypeLoc, "Invalid result type for LLVM function");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003546
Owen Andersondebcb012009-07-29 22:17:13 +00003547 Ty = FunctionType::get(RetType, ParamTypes, false);
3548 PFTy = PointerType::getUnqual(Ty);
Chris Lattnerdf986172009-01-02 07:01:27 +00003549 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003550
Chris Lattnerdf986172009-01-02 07:01:27 +00003551 // Look up the callee.
3552 Value *Callee;
3553 if (ConvertValIDToValue(PFTy, CalleeID, Callee, PFS)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003554
Chris Lattnerdf986172009-01-02 07:01:27 +00003555 // FIXME: In LLVM 3.0, stop accepting zext, sext and inreg as optional
3556 // function attributes.
3557 unsigned ObsoleteFuncAttrs = Attribute::ZExt|Attribute::SExt|Attribute::InReg;
3558 if (FnAttrs & ObsoleteFuncAttrs) {
3559 RetAttrs |= FnAttrs & ObsoleteFuncAttrs;
3560 FnAttrs &= ~ObsoleteFuncAttrs;
3561 }
3562
3563 // Set up the Attributes for the function.
3564 SmallVector<AttributeWithIndex, 8> Attrs;
3565 if (RetAttrs != Attribute::None)
3566 Attrs.push_back(AttributeWithIndex::get(0, RetAttrs));
Daniel Dunbara279bc32009-09-20 02:20:51 +00003567
Chris Lattnerdf986172009-01-02 07:01:27 +00003568 SmallVector<Value*, 8> Args;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003569
Chris Lattnerdf986172009-01-02 07:01:27 +00003570 // Loop through FunctionType's arguments and ensure they are specified
3571 // correctly. Also, gather any parameter attributes.
3572 FunctionType::param_iterator I = Ty->param_begin();
3573 FunctionType::param_iterator E = Ty->param_end();
3574 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
3575 const Type *ExpectedTy = 0;
3576 if (I != E) {
3577 ExpectedTy = *I++;
3578 } else if (!Ty->isVarArg()) {
3579 return Error(ArgList[i].Loc, "too many arguments specified");
3580 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003581
Chris Lattnerdf986172009-01-02 07:01:27 +00003582 if (ExpectedTy && ExpectedTy != ArgList[i].V->getType())
3583 return Error(ArgList[i].Loc, "argument is not of expected type '" +
3584 ExpectedTy->getDescription() + "'");
3585 Args.push_back(ArgList[i].V);
3586 if (ArgList[i].Attrs != Attribute::None)
3587 Attrs.push_back(AttributeWithIndex::get(i+1, ArgList[i].Attrs));
3588 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003589
Chris Lattnerdf986172009-01-02 07:01:27 +00003590 if (I != E)
3591 return Error(CallLoc, "not enough parameters specified for call");
3592
3593 if (FnAttrs != Attribute::None)
3594 Attrs.push_back(AttributeWithIndex::get(~0, FnAttrs));
3595
3596 // Finish off the Attributes and check them
3597 AttrListPtr PAL = AttrListPtr::get(Attrs.begin(), Attrs.end());
Daniel Dunbara279bc32009-09-20 02:20:51 +00003598
Chris Lattnerdf986172009-01-02 07:01:27 +00003599 CallInst *CI = CallInst::Create(Callee, Args.begin(), Args.end());
3600 CI->setTailCall(isTail);
3601 CI->setCallingConv(CC);
3602 CI->setAttributes(PAL);
3603 Inst = CI;
3604 return false;
3605}
3606
3607//===----------------------------------------------------------------------===//
3608// Memory Instructions.
3609//===----------------------------------------------------------------------===//
3610
3611/// ParseAlloc
Devang Patelf633a062009-09-17 23:04:48 +00003612/// ::= 'malloc' Type (',' TypeAndValue)? (',' OptionalInfo)?
3613/// ::= 'alloca' Type (',' TypeAndValue)? (',' OptionalInfo)?
Chris Lattnerdf986172009-01-02 07:01:27 +00003614bool LLParser::ParseAlloc(Instruction *&Inst, PerFunctionState &PFS,
Victor Hernandez13ad5aa2009-10-17 00:00:19 +00003615 BasicBlock* BB, bool isAlloca) {
Owen Anderson1d0be152009-08-13 21:58:54 +00003616 PATypeHolder Ty(Type::getVoidTy(Context));
Chris Lattnerdf986172009-01-02 07:01:27 +00003617 Value *Size = 0;
Chris Lattnereeb4a842009-07-02 23:08:13 +00003618 LocTy SizeLoc;
Chris Lattnerdf986172009-01-02 07:01:27 +00003619 unsigned Alignment = 0;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003620 if (ParseType(Ty)) return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00003621
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003622 if (EatIfPresent(lltok::comma)) {
Devang Patel0475c912009-09-29 00:01:14 +00003623 if (Lex.getKind() == lltok::kw_align
Chris Lattner1d928312009-12-30 05:02:06 +00003624 || Lex.getKind() == lltok::MetadataVar) {
Devang Patelf633a062009-09-17 23:04:48 +00003625 if (ParseOptionalInfo(Alignment)) return true;
3626 } else {
3627 if (ParseTypeAndValue(Size, SizeLoc, PFS)) return true;
3628 if (EatIfPresent(lltok::comma))
Daniel Dunbara279bc32009-09-20 02:20:51 +00003629 if (ParseOptionalInfo(Alignment)) return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00003630 }
3631 }
3632
Owen Anderson1d0be152009-08-13 21:58:54 +00003633 if (Size && Size->getType() != Type::getInt32Ty(Context))
Chris Lattnerdf986172009-01-02 07:01:27 +00003634 return Error(SizeLoc, "element count must be i32");
3635
Victor Hernandez68afa542009-10-21 19:11:40 +00003636 if (isAlloca) {
Owen Anderson50dead02009-07-15 23:53:25 +00003637 Inst = new AllocaInst(Ty, Size, Alignment);
Victor Hernandez68afa542009-10-21 19:11:40 +00003638 return false;
Victor Hernandez13ad5aa2009-10-17 00:00:19 +00003639 }
Victor Hernandez68afa542009-10-21 19:11:40 +00003640
3641 // Autoupgrade old malloc instruction to malloc call.
3642 // FIXME: Remove in LLVM 3.0.
3643 const Type *IntPtrTy = Type::getInt32Ty(Context);
Victor Hernandez9d0b7042009-11-07 00:16:28 +00003644 Constant *AllocSize = ConstantExpr::getSizeOf(Ty);
3645 AllocSize = ConstantExpr::getTruncOrBitCast(AllocSize, IntPtrTy);
Victor Hernandez68afa542009-10-21 19:11:40 +00003646 if (!MallocF)
3647 // Prototype malloc as "void *(int32)".
3648 // This function is renamed as "malloc" in ValidateEndOfModule().
Victor Hernandez336ea062009-10-23 00:59:10 +00003649 MallocF = cast<Function>(
3650 M->getOrInsertFunction("", Type::getInt8PtrTy(Context), IntPtrTy, NULL));
Victor Hernandez9d0b7042009-11-07 00:16:28 +00003651 Inst = CallInst::CreateMalloc(BB, IntPtrTy, Ty, AllocSize, Size, MallocF);
Chris Lattnerdf986172009-01-02 07:01:27 +00003652 return false;
3653}
3654
3655/// ParseFree
3656/// ::= 'free' TypeAndValue
Victor Hernandez66284e02009-10-24 04:23:03 +00003657bool LLParser::ParseFree(Instruction *&Inst, PerFunctionState &PFS,
3658 BasicBlock* BB) {
Chris Lattnerdf986172009-01-02 07:01:27 +00003659 Value *Val; LocTy Loc;
3660 if (ParseTypeAndValue(Val, Loc, PFS)) return true;
3661 if (!isa<PointerType>(Val->getType()))
3662 return Error(Loc, "operand to free must be a pointer");
Victor Hernandez66284e02009-10-24 04:23:03 +00003663 Inst = CallInst::CreateFree(Val, BB);
Chris Lattnerdf986172009-01-02 07:01:27 +00003664 return false;
3665}
3666
3667/// ParseLoad
Devang Patelf633a062009-09-17 23:04:48 +00003668/// ::= 'volatile'? 'load' TypeAndValue (',' OptionalInfo)?
Chris Lattnerdf986172009-01-02 07:01:27 +00003669bool LLParser::ParseLoad(Instruction *&Inst, PerFunctionState &PFS,
3670 bool isVolatile) {
3671 Value *Val; LocTy Loc;
Devang Patelf633a062009-09-17 23:04:48 +00003672 unsigned Alignment = 0;
3673 if (ParseTypeAndValue(Val, Loc, PFS)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003674
Devang Patelf633a062009-09-17 23:04:48 +00003675 if (EatIfPresent(lltok::comma))
3676 if (ParseOptionalInfo(Alignment)) return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00003677
3678 if (!isa<PointerType>(Val->getType()) ||
3679 !cast<PointerType>(Val->getType())->getElementType()->isFirstClassType())
3680 return Error(Loc, "load operand must be a pointer to a first class type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003681
Chris Lattnerdf986172009-01-02 07:01:27 +00003682 Inst = new LoadInst(Val, "", isVolatile, Alignment);
3683 return false;
3684}
3685
3686/// ParseStore
Dan Gohmana119de82009-06-14 23:30:43 +00003687/// ::= 'volatile'? 'store' TypeAndValue ',' TypeAndValue (',' 'align' i32)?
Chris Lattnerdf986172009-01-02 07:01:27 +00003688bool LLParser::ParseStore(Instruction *&Inst, PerFunctionState &PFS,
3689 bool isVolatile) {
3690 Value *Val, *Ptr; LocTy Loc, PtrLoc;
Devang Patelf633a062009-09-17 23:04:48 +00003691 unsigned Alignment = 0;
Chris Lattnerdf986172009-01-02 07:01:27 +00003692 if (ParseTypeAndValue(Val, Loc, PFS) ||
3693 ParseToken(lltok::comma, "expected ',' after store operand") ||
Devang Patelf633a062009-09-17 23:04:48 +00003694 ParseTypeAndValue(Ptr, PtrLoc, PFS))
Chris Lattnerdf986172009-01-02 07:01:27 +00003695 return true;
Devang Patelf633a062009-09-17 23:04:48 +00003696
3697 if (EatIfPresent(lltok::comma))
3698 if (ParseOptionalInfo(Alignment)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003699
Chris Lattnerdf986172009-01-02 07:01:27 +00003700 if (!isa<PointerType>(Ptr->getType()))
3701 return Error(PtrLoc, "store operand must be a pointer");
3702 if (!Val->getType()->isFirstClassType())
3703 return Error(Loc, "store operand must be a first class value");
3704 if (cast<PointerType>(Ptr->getType())->getElementType() != Val->getType())
3705 return Error(Loc, "stored value and pointer type do not match");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003706
Chris Lattnerdf986172009-01-02 07:01:27 +00003707 Inst = new StoreInst(Val, Ptr, isVolatile, Alignment);
3708 return false;
3709}
3710
3711/// ParseGetResult
Dan Gohmana119de82009-06-14 23:30:43 +00003712/// ::= 'getresult' TypeAndValue ',' i32
Chris Lattnerdf986172009-01-02 07:01:27 +00003713/// FIXME: Remove support for getresult in LLVM 3.0
3714bool LLParser::ParseGetResult(Instruction *&Inst, PerFunctionState &PFS) {
3715 Value *Val; LocTy ValLoc, EltLoc;
3716 unsigned Element;
3717 if (ParseTypeAndValue(Val, ValLoc, PFS) ||
3718 ParseToken(lltok::comma, "expected ',' after getresult operand") ||
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003719 ParseUInt32(Element, EltLoc))
Chris Lattnerdf986172009-01-02 07:01:27 +00003720 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003721
Chris Lattnerdf986172009-01-02 07:01:27 +00003722 if (!isa<StructType>(Val->getType()) && !isa<ArrayType>(Val->getType()))
3723 return Error(ValLoc, "getresult inst requires an aggregate operand");
3724 if (!ExtractValueInst::getIndexedType(Val->getType(), Element))
3725 return Error(EltLoc, "invalid getresult index for value");
3726 Inst = ExtractValueInst::Create(Val, Element);
3727 return false;
3728}
3729
3730/// ParseGetElementPtr
Dan Gohmandd8004d2009-07-27 21:53:46 +00003731/// ::= 'getelementptr' 'inbounds'? TypeAndValue (',' TypeAndValue)*
Chris Lattnerdf986172009-01-02 07:01:27 +00003732bool LLParser::ParseGetElementPtr(Instruction *&Inst, PerFunctionState &PFS) {
3733 Value *Ptr, *Val; LocTy Loc, EltLoc;
Dan Gohmandd8004d2009-07-27 21:53:46 +00003734
Dan Gohmandcb40a32009-07-29 15:58:36 +00003735 bool InBounds = EatIfPresent(lltok::kw_inbounds);
Dan Gohmandd8004d2009-07-27 21:53:46 +00003736
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003737 if (ParseTypeAndValue(Ptr, Loc, PFS)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003738
Chris Lattnerdf986172009-01-02 07:01:27 +00003739 if (!isa<PointerType>(Ptr->getType()))
3740 return Error(Loc, "base of getelementptr must be a pointer");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003741
Chris Lattnerdf986172009-01-02 07:01:27 +00003742 SmallVector<Value*, 16> Indices;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003743 while (EatIfPresent(lltok::comma)) {
Chris Lattner1d928312009-12-30 05:02:06 +00003744 if (Lex.getKind() == lltok::MetadataVar)
Devang Patel6225d642009-10-13 18:49:55 +00003745 break;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003746 if (ParseTypeAndValue(Val, EltLoc, PFS)) return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00003747 if (!isa<IntegerType>(Val->getType()))
3748 return Error(EltLoc, "getelementptr index must be an integer");
3749 Indices.push_back(Val);
3750 }
Chris Lattner1d928312009-12-30 05:02:06 +00003751 if (Lex.getKind() == lltok::MetadataVar)
Devang Patel6225d642009-10-13 18:49:55 +00003752 if (ParseOptionalCustomMetadata()) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003753
Chris Lattnerdf986172009-01-02 07:01:27 +00003754 if (!GetElementPtrInst::getIndexedType(Ptr->getType(),
3755 Indices.begin(), Indices.end()))
3756 return Error(Loc, "invalid getelementptr indices");
3757 Inst = GetElementPtrInst::Create(Ptr, Indices.begin(), Indices.end());
Dan Gohmandd8004d2009-07-27 21:53:46 +00003758 if (InBounds)
Dan Gohmanf8dbee72009-09-07 23:54:19 +00003759 cast<GetElementPtrInst>(Inst)->setIsInBounds(true);
Chris Lattnerdf986172009-01-02 07:01:27 +00003760 return false;
3761}
3762
3763/// ParseExtractValue
3764/// ::= 'extractvalue' TypeAndValue (',' uint32)+
3765bool LLParser::ParseExtractValue(Instruction *&Inst, PerFunctionState &PFS) {
3766 Value *Val; LocTy Loc;
3767 SmallVector<unsigned, 4> Indices;
3768 if (ParseTypeAndValue(Val, Loc, PFS) ||
3769 ParseIndexList(Indices))
3770 return true;
Chris Lattner1d928312009-12-30 05:02:06 +00003771 if (Lex.getKind() == lltok::MetadataVar)
Devang Patele8bc45a2009-11-03 19:06:07 +00003772 if (ParseOptionalCustomMetadata()) return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00003773
3774 if (!isa<StructType>(Val->getType()) && !isa<ArrayType>(Val->getType()))
3775 return Error(Loc, "extractvalue operand must be array or struct");
3776
3777 if (!ExtractValueInst::getIndexedType(Val->getType(), Indices.begin(),
3778 Indices.end()))
3779 return Error(Loc, "invalid indices for extractvalue");
3780 Inst = ExtractValueInst::Create(Val, Indices.begin(), Indices.end());
3781 return false;
3782}
3783
3784/// ParseInsertValue
3785/// ::= 'insertvalue' TypeAndValue ',' TypeAndValue (',' uint32)+
3786bool LLParser::ParseInsertValue(Instruction *&Inst, PerFunctionState &PFS) {
3787 Value *Val0, *Val1; LocTy Loc0, Loc1;
3788 SmallVector<unsigned, 4> Indices;
3789 if (ParseTypeAndValue(Val0, Loc0, PFS) ||
3790 ParseToken(lltok::comma, "expected comma after insertvalue operand") ||
3791 ParseTypeAndValue(Val1, Loc1, PFS) ||
3792 ParseIndexList(Indices))
3793 return true;
Chris Lattner1d928312009-12-30 05:02:06 +00003794 if (Lex.getKind() == lltok::MetadataVar)
Devang Patele8bc45a2009-11-03 19:06:07 +00003795 if (ParseOptionalCustomMetadata()) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003796
Chris Lattnerdf986172009-01-02 07:01:27 +00003797 if (!isa<StructType>(Val0->getType()) && !isa<ArrayType>(Val0->getType()))
3798 return Error(Loc0, "extractvalue operand must be array or struct");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003799
Chris Lattnerdf986172009-01-02 07:01:27 +00003800 if (!ExtractValueInst::getIndexedType(Val0->getType(), Indices.begin(),
3801 Indices.end()))
3802 return Error(Loc0, "invalid indices for insertvalue");
3803 Inst = InsertValueInst::Create(Val0, Val1, Indices.begin(), Indices.end());
3804 return false;
3805}
Nick Lewycky21cc4462009-04-04 07:22:01 +00003806
3807//===----------------------------------------------------------------------===//
3808// Embedded metadata.
3809//===----------------------------------------------------------------------===//
3810
3811/// ParseMDNodeVector
Nick Lewyckycb337992009-05-10 20:57:05 +00003812/// ::= Element (',' Element)*
3813/// Element
3814/// ::= 'null' | TypeAndValue
3815bool LLParser::ParseMDNodeVector(SmallVectorImpl<Value*> &Elts) {
Nick Lewycky21cc4462009-04-04 07:22:01 +00003816 do {
Chris Lattnera7352392009-12-30 04:42:57 +00003817 // Null is a special case since it is typeless.
3818 if (EatIfPresent(lltok::kw_null)) {
3819 Elts.push_back(0);
3820 continue;
Nick Lewyckycb337992009-05-10 20:57:05 +00003821 }
Chris Lattnera7352392009-12-30 04:42:57 +00003822
3823 Value *V = 0;
3824 PATypeHolder Ty(Type::getVoidTy(Context));
3825 ValID ID;
3826 if (ParseType(Ty) || ParseValID(ID) ||
3827 ConvertGlobalOrMetadataValIDToValue(Ty, ID, V))
3828 return true;
3829
Nick Lewyckycb337992009-05-10 20:57:05 +00003830 Elts.push_back(V);
Nick Lewycky21cc4462009-04-04 07:22:01 +00003831 } while (EatIfPresent(lltok::comma));
3832
3833 return false;
3834}