blob: 01cd531dac294852f290208ee99cace7c4534577 [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 if (ParseUInt32(MetadataID) ||
542 ParseToken(lltok::equal, "expected '=' here") ||
543 ParseType(Ty, TyLoc) ||
Chris Lattnere434d272009-12-30 04:56:59 +0000544 ParseToken(lltok::exclaim, "Expected '!' here") ||
Chris Lattner3f5132a2009-12-29 22:40:21 +0000545 ParseToken(lltok::lbrace, "Expected '{' here") ||
546 ParseMDNodeVector(Elts) ||
547 ParseToken(lltok::rbrace, "expected end of metadata node"))
Devang Patel104cf9e2009-07-23 01:07:34 +0000548 return true;
549
Owen Anderson647e3012009-07-31 21:35:40 +0000550 MDNode *Init = MDNode::get(Context, Elts.data(), Elts.size());
Chris Lattner0834e6a2009-12-30 04:51:58 +0000551
552 // See if this was forward referenced, if so, handle it.
Chris Lattnere80250e2009-12-29 21:43:58 +0000553 std::map<unsigned, std::pair<TrackingVH<MDNode>, LocTy> >::iterator
Devang Patel1c7eea62009-07-08 19:23:54 +0000554 FI = ForwardRefMDNodes.find(MetadataID);
555 if (FI != ForwardRefMDNodes.end()) {
Chris Lattnere80250e2009-12-29 21:43:58 +0000556 FI->second.first->replaceAllUsesWith(Init);
Devang Patel1c7eea62009-07-08 19:23:54 +0000557 ForwardRefMDNodes.erase(FI);
Chris Lattner0834e6a2009-12-30 04:51:58 +0000558
559 assert(NumberedMetadata[MetadataID] == Init && "Tracking VH didn't work");
560 } else {
561 if (MetadataID >= NumberedMetadata.size())
562 NumberedMetadata.resize(MetadataID+1);
563
564 if (NumberedMetadata[MetadataID] != 0)
565 return TokError("Metadata id is already used");
566 NumberedMetadata[MetadataID] = Init;
Devang Patel1c7eea62009-07-08 19:23:54 +0000567 }
568
Devang Patel923078c2009-07-01 19:21:12 +0000569 return false;
570}
571
Chris Lattnerdf986172009-01-02 07:01:27 +0000572/// ParseAlias:
573/// ::= GlobalVar '=' OptionalVisibility 'alias' OptionalLinkage Aliasee
574/// Aliasee
Chris Lattner040f7582009-04-25 21:26:00 +0000575/// ::= TypeAndValue
576/// ::= 'bitcast' '(' TypeAndValue 'to' Type ')'
Dan Gohmandd8004d2009-07-27 21:53:46 +0000577/// ::= 'getelementptr' 'inbounds'? '(' ... ')'
Chris Lattnerdf986172009-01-02 07:01:27 +0000578///
579/// Everything through visibility has already been parsed.
580///
581bool LLParser::ParseAlias(const std::string &Name, LocTy NameLoc,
582 unsigned Visibility) {
583 assert(Lex.getKind() == lltok::kw_alias);
584 Lex.Lex();
585 unsigned Linkage;
586 LocTy LinkageLoc = Lex.getLoc();
587 if (ParseOptionalLinkage(Linkage))
588 return true;
589
590 if (Linkage != GlobalValue::ExternalLinkage &&
Duncan Sands667d4b82009-03-07 15:45:40 +0000591 Linkage != GlobalValue::WeakAnyLinkage &&
592 Linkage != GlobalValue::WeakODRLinkage &&
Rafael Espindolabb46f522009-01-15 20:18:42 +0000593 Linkage != GlobalValue::InternalLinkage &&
Bill Wendling3d10a5a2009-07-20 01:03:30 +0000594 Linkage != GlobalValue::PrivateLinkage &&
595 Linkage != GlobalValue::LinkerPrivateLinkage)
Chris Lattnerdf986172009-01-02 07:01:27 +0000596 return Error(LinkageLoc, "invalid linkage type for alias");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000597
Chris Lattnerdf986172009-01-02 07:01:27 +0000598 Constant *Aliasee;
599 LocTy AliaseeLoc = Lex.getLoc();
Chris Lattner040f7582009-04-25 21:26:00 +0000600 if (Lex.getKind() != lltok::kw_bitcast &&
601 Lex.getKind() != lltok::kw_getelementptr) {
Chris Lattnerdf986172009-01-02 07:01:27 +0000602 if (ParseGlobalTypeAndValue(Aliasee)) return true;
603 } else {
604 // The bitcast dest type is not present, it is implied by the dest type.
605 ValID ID;
606 if (ParseValID(ID)) return true;
607 if (ID.Kind != ValID::t_Constant)
608 return Error(AliaseeLoc, "invalid aliasee");
609 Aliasee = ID.ConstantVal;
610 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000611
Chris Lattnerdf986172009-01-02 07:01:27 +0000612 if (!isa<PointerType>(Aliasee->getType()))
613 return Error(AliaseeLoc, "alias must have pointer type");
614
615 // Okay, create the alias but do not insert it into the module yet.
616 GlobalAlias* GA = new GlobalAlias(Aliasee->getType(),
617 (GlobalValue::LinkageTypes)Linkage, Name,
618 Aliasee);
619 GA->setVisibility((GlobalValue::VisibilityTypes)Visibility);
Daniel Dunbara279bc32009-09-20 02:20:51 +0000620
Chris Lattnerdf986172009-01-02 07:01:27 +0000621 // See if this value already exists in the symbol table. If so, it is either
622 // a redefinition or a definition of a forward reference.
Chris Lattner1d871c52009-10-25 23:22:50 +0000623 if (GlobalValue *Val = M->getNamedValue(Name)) {
Chris Lattnerdf986172009-01-02 07:01:27 +0000624 // See if this was a redefinition. If so, there is no entry in
625 // ForwardRefVals.
626 std::map<std::string, std::pair<GlobalValue*, LocTy> >::iterator
627 I = ForwardRefVals.find(Name);
628 if (I == ForwardRefVals.end())
629 return Error(NameLoc, "redefinition of global named '@" + Name + "'");
630
631 // Otherwise, this was a definition of forward ref. Verify that types
632 // agree.
633 if (Val->getType() != GA->getType())
634 return Error(NameLoc,
635 "forward reference and definition of alias have different types");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000636
Chris Lattnerdf986172009-01-02 07:01:27 +0000637 // If they agree, just RAUW the old value with the alias and remove the
638 // forward ref info.
639 Val->replaceAllUsesWith(GA);
640 Val->eraseFromParent();
641 ForwardRefVals.erase(I);
642 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000643
Chris Lattnerdf986172009-01-02 07:01:27 +0000644 // Insert into the module, we know its name won't collide now.
645 M->getAliasList().push_back(GA);
646 assert(GA->getNameStr() == Name && "Should not be a name conflict!");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000647
Chris Lattnerdf986172009-01-02 07:01:27 +0000648 return false;
649}
650
651/// ParseGlobal
652/// ::= GlobalVar '=' OptionalLinkage OptionalVisibility OptionalThreadLocal
653/// OptionalAddrSpace GlobalType Type Const
654/// ::= OptionalLinkage OptionalVisibility OptionalThreadLocal
655/// OptionalAddrSpace GlobalType Type Const
656///
657/// Everything through visibility has been parsed already.
658///
659bool LLParser::ParseGlobal(const std::string &Name, LocTy NameLoc,
660 unsigned Linkage, bool HasLinkage,
661 unsigned Visibility) {
662 unsigned AddrSpace;
663 bool ThreadLocal, IsConstant;
664 LocTy TyLoc;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000665
Owen Anderson1d0be152009-08-13 21:58:54 +0000666 PATypeHolder Ty(Type::getVoidTy(Context));
Chris Lattnerdf986172009-01-02 07:01:27 +0000667 if (ParseOptionalToken(lltok::kw_thread_local, ThreadLocal) ||
668 ParseOptionalAddrSpace(AddrSpace) ||
669 ParseGlobalType(IsConstant) ||
670 ParseType(Ty, TyLoc))
671 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000672
Chris Lattnerdf986172009-01-02 07:01:27 +0000673 // If the linkage is specified and is external, then no initializer is
674 // present.
675 Constant *Init = 0;
676 if (!HasLinkage || (Linkage != GlobalValue::DLLImportLinkage &&
Duncan Sands5f4ee1f2009-03-11 08:08:06 +0000677 Linkage != GlobalValue::ExternalWeakLinkage &&
Chris Lattnerdf986172009-01-02 07:01:27 +0000678 Linkage != GlobalValue::ExternalLinkage)) {
679 if (ParseGlobalValue(Ty, Init))
680 return true;
681 }
682
Chris Lattnercf0fe8d2009-10-05 05:54:46 +0000683 if (isa<FunctionType>(Ty) || Ty->isLabelTy())
Chris Lattner4a2f1122009-02-08 20:00:15 +0000684 return Error(TyLoc, "invalid type for global variable");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000685
Chris Lattnerdf986172009-01-02 07:01:27 +0000686 GlobalVariable *GV = 0;
687
688 // See if the global was forward referenced, if so, use the global.
Chris Lattner91dad872009-02-02 07:24:28 +0000689 if (!Name.empty()) {
Chris Lattner1d871c52009-10-25 23:22:50 +0000690 if (GlobalValue *GVal = M->getNamedValue(Name)) {
691 if (!ForwardRefVals.erase(Name) || !isa<GlobalValue>(GVal))
692 return Error(NameLoc, "redefinition of global '@" + Name + "'");
693 GV = cast<GlobalVariable>(GVal);
694 }
Chris Lattnerdf986172009-01-02 07:01:27 +0000695 } else {
696 std::map<unsigned, std::pair<GlobalValue*, LocTy> >::iterator
697 I = ForwardRefValIDs.find(NumberedVals.size());
698 if (I != ForwardRefValIDs.end()) {
699 GV = cast<GlobalVariable>(I->second.first);
700 ForwardRefValIDs.erase(I);
701 }
702 }
703
704 if (GV == 0) {
Daniel Dunbara279bc32009-09-20 02:20:51 +0000705 GV = new GlobalVariable(*M, Ty, false, GlobalValue::ExternalLinkage, 0,
Owen Andersone9b11b42009-07-08 19:03:57 +0000706 Name, 0, false, AddrSpace);
Chris Lattnerdf986172009-01-02 07:01:27 +0000707 } else {
708 if (GV->getType()->getElementType() != Ty)
709 return Error(TyLoc,
710 "forward reference and definition of global have different types");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000711
Chris Lattnerdf986172009-01-02 07:01:27 +0000712 // Move the forward-reference to the correct spot in the module.
713 M->getGlobalList().splice(M->global_end(), M->getGlobalList(), GV);
714 }
715
716 if (Name.empty())
717 NumberedVals.push_back(GV);
Daniel Dunbara279bc32009-09-20 02:20:51 +0000718
Chris Lattnerdf986172009-01-02 07:01:27 +0000719 // Set the parsed properties on the global.
720 if (Init)
721 GV->setInitializer(Init);
722 GV->setConstant(IsConstant);
723 GV->setLinkage((GlobalValue::LinkageTypes)Linkage);
724 GV->setVisibility((GlobalValue::VisibilityTypes)Visibility);
725 GV->setThreadLocal(ThreadLocal);
Daniel Dunbara279bc32009-09-20 02:20:51 +0000726
Chris Lattnerdf986172009-01-02 07:01:27 +0000727 // Parse attributes on the global.
728 while (Lex.getKind() == lltok::comma) {
729 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +0000730
Chris Lattnerdf986172009-01-02 07:01:27 +0000731 if (Lex.getKind() == lltok::kw_section) {
732 Lex.Lex();
733 GV->setSection(Lex.getStrVal());
734 if (ParseToken(lltok::StringConstant, "expected global section string"))
735 return true;
736 } else if (Lex.getKind() == lltok::kw_align) {
737 unsigned Alignment;
738 if (ParseOptionalAlignment(Alignment)) return true;
739 GV->setAlignment(Alignment);
740 } else {
741 TokError("unknown global variable property!");
742 }
743 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000744
Chris Lattnerdf986172009-01-02 07:01:27 +0000745 return false;
746}
747
748
749//===----------------------------------------------------------------------===//
750// GlobalValue Reference/Resolution Routines.
751//===----------------------------------------------------------------------===//
752
753/// GetGlobalVal - Get a value with the specified name or ID, creating a
754/// forward reference record if needed. This can return null if the value
755/// exists but does not have the right type.
756GlobalValue *LLParser::GetGlobalVal(const std::string &Name, const Type *Ty,
757 LocTy Loc) {
758 const PointerType *PTy = dyn_cast<PointerType>(Ty);
759 if (PTy == 0) {
760 Error(Loc, "global variable reference must have pointer type");
761 return 0;
762 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000763
Chris Lattnerdf986172009-01-02 07:01:27 +0000764 // Look this name up in the normal function symbol table.
765 GlobalValue *Val =
766 cast_or_null<GlobalValue>(M->getValueSymbolTable().lookup(Name));
Daniel Dunbara279bc32009-09-20 02:20:51 +0000767
Chris Lattnerdf986172009-01-02 07:01:27 +0000768 // If this is a forward reference for the value, see if we already created a
769 // forward ref record.
770 if (Val == 0) {
771 std::map<std::string, std::pair<GlobalValue*, LocTy> >::iterator
772 I = ForwardRefVals.find(Name);
773 if (I != ForwardRefVals.end())
774 Val = I->second.first;
775 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000776
Chris Lattnerdf986172009-01-02 07:01:27 +0000777 // If we have the value in the symbol table or fwd-ref table, return it.
778 if (Val) {
779 if (Val->getType() == Ty) return Val;
780 Error(Loc, "'@" + Name + "' defined with type '" +
781 Val->getType()->getDescription() + "'");
782 return 0;
783 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000784
Chris Lattnerdf986172009-01-02 07:01:27 +0000785 // Otherwise, create a new forward reference for this value and remember it.
786 GlobalValue *FwdVal;
Chris Lattner1e407c32009-01-08 19:05:36 +0000787 if (const FunctionType *FT = dyn_cast<FunctionType>(PTy->getElementType())) {
788 // Function types can return opaque but functions can't.
789 if (isa<OpaqueType>(FT->getReturnType())) {
790 Error(Loc, "function may not return opaque type");
791 return 0;
792 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000793
Duncan Sands5f4ee1f2009-03-11 08:08:06 +0000794 FwdVal = Function::Create(FT, GlobalValue::ExternalWeakLinkage, Name, M);
Chris Lattner1e407c32009-01-08 19:05:36 +0000795 } else {
Owen Andersone9b11b42009-07-08 19:03:57 +0000796 FwdVal = new GlobalVariable(*M, PTy->getElementType(), false,
797 GlobalValue::ExternalWeakLinkage, 0, Name);
Chris Lattner1e407c32009-01-08 19:05:36 +0000798 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000799
Chris Lattnerdf986172009-01-02 07:01:27 +0000800 ForwardRefVals[Name] = std::make_pair(FwdVal, Loc);
801 return FwdVal;
802}
803
804GlobalValue *LLParser::GetGlobalVal(unsigned ID, const Type *Ty, LocTy Loc) {
805 const PointerType *PTy = dyn_cast<PointerType>(Ty);
806 if (PTy == 0) {
807 Error(Loc, "global variable reference must have pointer type");
808 return 0;
809 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000810
Chris Lattnerdf986172009-01-02 07:01:27 +0000811 GlobalValue *Val = ID < NumberedVals.size() ? NumberedVals[ID] : 0;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000812
Chris Lattnerdf986172009-01-02 07:01:27 +0000813 // If this is a forward reference for the value, see if we already created a
814 // forward ref record.
815 if (Val == 0) {
816 std::map<unsigned, std::pair<GlobalValue*, LocTy> >::iterator
817 I = ForwardRefValIDs.find(ID);
818 if (I != ForwardRefValIDs.end())
819 Val = I->second.first;
820 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000821
Chris Lattnerdf986172009-01-02 07:01:27 +0000822 // If we have the value in the symbol table or fwd-ref table, return it.
823 if (Val) {
824 if (Val->getType() == Ty) return Val;
825 Error(Loc, "'@" + utostr(ID) + "' defined with type '" +
826 Val->getType()->getDescription() + "'");
827 return 0;
828 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000829
Chris Lattnerdf986172009-01-02 07:01:27 +0000830 // Otherwise, create a new forward reference for this value and remember it.
831 GlobalValue *FwdVal;
Chris Lattner830703b2009-01-05 18:27:50 +0000832 if (const FunctionType *FT = dyn_cast<FunctionType>(PTy->getElementType())) {
833 // Function types can return opaque but functions can't.
834 if (isa<OpaqueType>(FT->getReturnType())) {
Chris Lattner0d8484f2009-01-05 18:56:52 +0000835 Error(Loc, "function may not return opaque type");
Chris Lattner830703b2009-01-05 18:27:50 +0000836 return 0;
837 }
Duncan Sands5f4ee1f2009-03-11 08:08:06 +0000838 FwdVal = Function::Create(FT, GlobalValue::ExternalWeakLinkage, "", M);
Chris Lattner830703b2009-01-05 18:27:50 +0000839 } else {
Owen Andersone9b11b42009-07-08 19:03:57 +0000840 FwdVal = new GlobalVariable(*M, PTy->getElementType(), false,
841 GlobalValue::ExternalWeakLinkage, 0, "");
Chris Lattner830703b2009-01-05 18:27:50 +0000842 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000843
Chris Lattnerdf986172009-01-02 07:01:27 +0000844 ForwardRefValIDs[ID] = std::make_pair(FwdVal, Loc);
845 return FwdVal;
846}
847
848
849//===----------------------------------------------------------------------===//
850// Helper Routines.
851//===----------------------------------------------------------------------===//
852
853/// ParseToken - If the current token has the specified kind, eat it and return
854/// success. Otherwise, emit the specified error and return failure.
855bool LLParser::ParseToken(lltok::Kind T, const char *ErrMsg) {
856 if (Lex.getKind() != T)
857 return TokError(ErrMsg);
858 Lex.Lex();
859 return false;
860}
861
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000862/// ParseStringConstant
863/// ::= StringConstant
864bool LLParser::ParseStringConstant(std::string &Result) {
865 if (Lex.getKind() != lltok::StringConstant)
866 return TokError("expected string constant");
867 Result = Lex.getStrVal();
868 Lex.Lex();
869 return false;
870}
871
872/// ParseUInt32
873/// ::= uint32
874bool LLParser::ParseUInt32(unsigned &Val) {
Chris Lattnerdf986172009-01-02 07:01:27 +0000875 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned())
876 return TokError("expected integer");
877 uint64_t Val64 = Lex.getAPSIntVal().getLimitedValue(0xFFFFFFFFULL+1);
878 if (Val64 != unsigned(Val64))
879 return TokError("expected 32-bit integer (too large)");
880 Val = Val64;
881 Lex.Lex();
882 return false;
883}
884
885
886/// ParseOptionalAddrSpace
887/// := /*empty*/
888/// := 'addrspace' '(' uint32 ')'
889bool LLParser::ParseOptionalAddrSpace(unsigned &AddrSpace) {
890 AddrSpace = 0;
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000891 if (!EatIfPresent(lltok::kw_addrspace))
Chris Lattnerdf986172009-01-02 07:01:27 +0000892 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +0000893 return ParseToken(lltok::lparen, "expected '(' in address space") ||
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000894 ParseUInt32(AddrSpace) ||
Chris Lattnerdf986172009-01-02 07:01:27 +0000895 ParseToken(lltok::rparen, "expected ')' in address space");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000896}
Chris Lattnerdf986172009-01-02 07:01:27 +0000897
898/// ParseOptionalAttrs - Parse a potentially empty attribute list. AttrKind
899/// indicates what kind of attribute list this is: 0: function arg, 1: result,
900/// 2: function attr.
Chris Lattnerad9ad7c2009-03-25 06:36:36 +0000901/// 3: function arg after value: FIXME: REMOVE IN LLVM 3.0
Chris Lattnerdf986172009-01-02 07:01:27 +0000902bool LLParser::ParseOptionalAttrs(unsigned &Attrs, unsigned AttrKind) {
903 Attrs = Attribute::None;
904 LocTy AttrLoc = Lex.getLoc();
Daniel Dunbara279bc32009-09-20 02:20:51 +0000905
Chris Lattnerdf986172009-01-02 07:01:27 +0000906 while (1) {
907 switch (Lex.getKind()) {
908 case lltok::kw_sext:
909 case lltok::kw_zext:
Chris Lattnerad9ad7c2009-03-25 06:36:36 +0000910 // Treat these as signext/zeroext if they occur in the argument list after
911 // the value, as in "call i8 @foo(i8 10 sext)". If they occur before the
912 // value, as in "call i8 @foo(i8 sext (" then it is part of a constant
913 // expr.
Chris Lattnerdf986172009-01-02 07:01:27 +0000914 // FIXME: REMOVE THIS IN LLVM 3.0
Chris Lattnerad9ad7c2009-03-25 06:36:36 +0000915 if (AttrKind == 3) {
Chris Lattnerdf986172009-01-02 07:01:27 +0000916 if (Lex.getKind() == lltok::kw_sext)
917 Attrs |= Attribute::SExt;
918 else
919 Attrs |= Attribute::ZExt;
920 break;
921 }
922 // FALL THROUGH.
923 default: // End of attributes.
924 if (AttrKind != 2 && (Attrs & Attribute::FunctionOnly))
925 return Error(AttrLoc, "invalid use of function-only attribute");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000926
Chris Lattnerad9ad7c2009-03-25 06:36:36 +0000927 if (AttrKind != 0 && AttrKind != 3 && (Attrs & Attribute::ParameterOnly))
Chris Lattnerdf986172009-01-02 07:01:27 +0000928 return Error(AttrLoc, "invalid use of parameter-only attribute");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000929
Chris Lattnerdf986172009-01-02 07:01:27 +0000930 return false;
Devang Patel578efa92009-06-05 21:57:13 +0000931 case lltok::kw_zeroext: Attrs |= Attribute::ZExt; break;
932 case lltok::kw_signext: Attrs |= Attribute::SExt; break;
933 case lltok::kw_inreg: Attrs |= Attribute::InReg; break;
934 case lltok::kw_sret: Attrs |= Attribute::StructRet; break;
935 case lltok::kw_noalias: Attrs |= Attribute::NoAlias; break;
936 case lltok::kw_nocapture: Attrs |= Attribute::NoCapture; break;
937 case lltok::kw_byval: Attrs |= Attribute::ByVal; break;
938 case lltok::kw_nest: Attrs |= Attribute::Nest; break;
Chris Lattnerdf986172009-01-02 07:01:27 +0000939
Devang Patel578efa92009-06-05 21:57:13 +0000940 case lltok::kw_noreturn: Attrs |= Attribute::NoReturn; break;
941 case lltok::kw_nounwind: Attrs |= Attribute::NoUnwind; break;
942 case lltok::kw_noinline: Attrs |= Attribute::NoInline; break;
943 case lltok::kw_readnone: Attrs |= Attribute::ReadNone; break;
944 case lltok::kw_readonly: Attrs |= Attribute::ReadOnly; break;
Dale Johannesende86d472009-08-26 01:08:21 +0000945 case lltok::kw_inlinehint: Attrs |= Attribute::InlineHint; break;
Devang Patel578efa92009-06-05 21:57:13 +0000946 case lltok::kw_alwaysinline: Attrs |= Attribute::AlwaysInline; break;
947 case lltok::kw_optsize: Attrs |= Attribute::OptimizeForSize; break;
948 case lltok::kw_ssp: Attrs |= Attribute::StackProtect; break;
949 case lltok::kw_sspreq: Attrs |= Attribute::StackProtectReq; break;
950 case lltok::kw_noredzone: Attrs |= Attribute::NoRedZone; break;
951 case lltok::kw_noimplicitfloat: Attrs |= Attribute::NoImplicitFloat; break;
Anton Korobeynikovc5ec8a72009-07-17 18:07:26 +0000952 case lltok::kw_naked: Attrs |= Attribute::Naked; break;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000953
Chris Lattnerdf986172009-01-02 07:01:27 +0000954 case lltok::kw_align: {
955 unsigned Alignment;
956 if (ParseOptionalAlignment(Alignment))
957 return true;
958 Attrs |= Attribute::constructAlignmentFromInt(Alignment);
959 continue;
960 }
961 }
962 Lex.Lex();
963 }
964}
965
966/// ParseOptionalLinkage
967/// ::= /*empty*/
Rafael Espindolabb46f522009-01-15 20:18:42 +0000968/// ::= 'private'
Bill Wendling3d10a5a2009-07-20 01:03:30 +0000969/// ::= 'linker_private'
Chris Lattnerdf986172009-01-02 07:01:27 +0000970/// ::= 'internal'
971/// ::= 'weak'
Duncan Sands667d4b82009-03-07 15:45:40 +0000972/// ::= 'weak_odr'
Chris Lattnerdf986172009-01-02 07:01:27 +0000973/// ::= 'linkonce'
Duncan Sands667d4b82009-03-07 15:45:40 +0000974/// ::= 'linkonce_odr'
Chris Lattnerdf986172009-01-02 07:01:27 +0000975/// ::= 'appending'
976/// ::= 'dllexport'
977/// ::= 'common'
978/// ::= 'dllimport'
979/// ::= 'extern_weak'
980/// ::= 'external'
981bool LLParser::ParseOptionalLinkage(unsigned &Res, bool &HasLinkage) {
982 HasLinkage = false;
983 switch (Lex.getKind()) {
Bill Wendling3d10a5a2009-07-20 01:03:30 +0000984 default: Res=GlobalValue::ExternalLinkage; return false;
985 case lltok::kw_private: Res = GlobalValue::PrivateLinkage; break;
986 case lltok::kw_linker_private: Res = GlobalValue::LinkerPrivateLinkage; break;
987 case lltok::kw_internal: Res = GlobalValue::InternalLinkage; break;
988 case lltok::kw_weak: Res = GlobalValue::WeakAnyLinkage; break;
989 case lltok::kw_weak_odr: Res = GlobalValue::WeakODRLinkage; break;
990 case lltok::kw_linkonce: Res = GlobalValue::LinkOnceAnyLinkage; break;
991 case lltok::kw_linkonce_odr: Res = GlobalValue::LinkOnceODRLinkage; break;
Chris Lattner266c7bb2009-04-13 05:44:34 +0000992 case lltok::kw_available_externally:
993 Res = GlobalValue::AvailableExternallyLinkage;
994 break;
Bill Wendling3d10a5a2009-07-20 01:03:30 +0000995 case lltok::kw_appending: Res = GlobalValue::AppendingLinkage; break;
996 case lltok::kw_dllexport: Res = GlobalValue::DLLExportLinkage; break;
997 case lltok::kw_common: Res = GlobalValue::CommonLinkage; break;
998 case lltok::kw_dllimport: Res = GlobalValue::DLLImportLinkage; break;
999 case lltok::kw_extern_weak: Res = GlobalValue::ExternalWeakLinkage; break;
1000 case lltok::kw_external: Res = GlobalValue::ExternalLinkage; break;
Chris Lattnerdf986172009-01-02 07:01:27 +00001001 }
1002 Lex.Lex();
1003 HasLinkage = true;
1004 return false;
1005}
1006
1007/// ParseOptionalVisibility
1008/// ::= /*empty*/
1009/// ::= 'default'
1010/// ::= 'hidden'
1011/// ::= 'protected'
Daniel Dunbara279bc32009-09-20 02:20:51 +00001012///
Chris Lattnerdf986172009-01-02 07:01:27 +00001013bool LLParser::ParseOptionalVisibility(unsigned &Res) {
1014 switch (Lex.getKind()) {
1015 default: Res = GlobalValue::DefaultVisibility; return false;
1016 case lltok::kw_default: Res = GlobalValue::DefaultVisibility; break;
1017 case lltok::kw_hidden: Res = GlobalValue::HiddenVisibility; break;
1018 case lltok::kw_protected: Res = GlobalValue::ProtectedVisibility; break;
1019 }
1020 Lex.Lex();
1021 return false;
1022}
1023
1024/// ParseOptionalCallingConv
1025/// ::= /*empty*/
1026/// ::= 'ccc'
1027/// ::= 'fastcc'
1028/// ::= 'coldcc'
1029/// ::= 'x86_stdcallcc'
1030/// ::= 'x86_fastcallcc'
Anton Korobeynikov385f5a92009-06-16 18:50:49 +00001031/// ::= 'arm_apcscc'
1032/// ::= 'arm_aapcscc'
1033/// ::= 'arm_aapcs_vfpcc'
Anton Korobeynikov211a14e2009-12-07 02:27:35 +00001034/// ::= 'msp430_intrcc'
Chris Lattnerdf986172009-01-02 07:01:27 +00001035/// ::= 'cc' UINT
Anton Korobeynikov385f5a92009-06-16 18:50:49 +00001036///
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001037bool LLParser::ParseOptionalCallingConv(CallingConv::ID &CC) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001038 switch (Lex.getKind()) {
1039 default: CC = CallingConv::C; return false;
1040 case lltok::kw_ccc: CC = CallingConv::C; break;
1041 case lltok::kw_fastcc: CC = CallingConv::Fast; break;
1042 case lltok::kw_coldcc: CC = CallingConv::Cold; break;
1043 case lltok::kw_x86_stdcallcc: CC = CallingConv::X86_StdCall; break;
1044 case lltok::kw_x86_fastcallcc: CC = CallingConv::X86_FastCall; break;
Anton Korobeynikov385f5a92009-06-16 18:50:49 +00001045 case lltok::kw_arm_apcscc: CC = CallingConv::ARM_APCS; break;
1046 case lltok::kw_arm_aapcscc: CC = CallingConv::ARM_AAPCS; break;
1047 case lltok::kw_arm_aapcs_vfpcc:CC = CallingConv::ARM_AAPCS_VFP; break;
Anton Korobeynikov211a14e2009-12-07 02:27:35 +00001048 case lltok::kw_msp430_intrcc: CC = CallingConv::MSP430_INTR; break;
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001049 case lltok::kw_cc: {
1050 unsigned ArbitraryCC;
1051 Lex.Lex();
1052 if (ParseUInt32(ArbitraryCC)) {
1053 return true;
1054 } else
1055 CC = static_cast<CallingConv::ID>(ArbitraryCC);
1056 return false;
1057 }
1058 break;
Chris Lattnerdf986172009-01-02 07:01:27 +00001059 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001060
Chris Lattnerdf986172009-01-02 07:01:27 +00001061 Lex.Lex();
1062 return false;
1063}
1064
Chris Lattnerb8c46862009-12-30 05:31:19 +00001065/// ParseInstructionMetadata
Chris Lattner3f3a0f62009-12-29 21:25:40 +00001066/// ::= !dbg !42 (',' !dbg !57)*
Chris Lattner1340dd32009-12-30 05:48:36 +00001067bool LLParser::
1068ParseInstructionMetadata(SmallVectorImpl<std::pair<unsigned,
1069 MDNode *> > &Result){
Chris Lattnerb8c46862009-12-30 05:31:19 +00001070 do {
1071 if (Lex.getKind() != lltok::MetadataVar)
1072 return TokError("expected metadata after comma");
Devang Patel0475c912009-09-29 00:01:14 +00001073
Chris Lattner3f3a0f62009-12-29 21:25:40 +00001074 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 Lattner1340dd32009-12-30 05:48:36 +00001083 Result.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.
Chris Lattnerb8c46862009-12-30 05:31:19 +00001086 } while (EatIfPresent(lltok::comma));
1087 return false;
Devang Patelf633a062009-09-17 23:04:48 +00001088}
1089
Chris Lattnerdf986172009-01-02 07:01:27 +00001090/// ParseOptionalAlignment
1091/// ::= /* empty */
1092/// ::= 'align' 4
1093bool LLParser::ParseOptionalAlignment(unsigned &Alignment) {
1094 Alignment = 0;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001095 if (!EatIfPresent(lltok::kw_align))
1096 return false;
Chris Lattner3fbb3ab2009-01-05 07:46:05 +00001097 LocTy AlignLoc = Lex.getLoc();
1098 if (ParseUInt32(Alignment)) return true;
1099 if (!isPowerOf2_32(Alignment))
1100 return Error(AlignLoc, "alignment is not a power of two");
1101 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00001102}
1103
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00001104/// ParseOptionalCommaAlign
1105/// ::=
1106/// ::= ',' align 4
1107///
1108/// This returns with AteExtraComma set to true if it ate an excess comma at the
1109/// end.
1110bool LLParser::ParseOptionalCommaAlign(unsigned &Alignment,
1111 bool &AteExtraComma) {
1112 AteExtraComma = false;
1113 while (EatIfPresent(lltok::comma)) {
1114 // Metadata at the end is an early exit.
Chris Lattner1d928312009-12-30 05:02:06 +00001115 if (Lex.getKind() == lltok::MetadataVar) {
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00001116 AteExtraComma = true;
1117 return false;
1118 }
1119
1120 if (Lex.getKind() == lltok::kw_align) {
Devang Patelf633a062009-09-17 23:04:48 +00001121 if (ParseOptionalAlignment(Alignment)) return true;
1122 } else
1123 return true;
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00001124 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001125
Devang Patelf633a062009-09-17 23:04:48 +00001126 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00001127}
1128
Devang Patelf633a062009-09-17 23:04:48 +00001129
Chris Lattner628c13a2009-12-30 05:14:00 +00001130/// ParseIndexList - This parses the index list for an insert/extractvalue
1131/// instruction. This sets AteExtraComma in the case where we eat an extra
1132/// comma at the end of the line and find that it is followed by metadata.
1133/// Clients that don't allow metadata can call the version of this function that
1134/// only takes one argument.
1135///
Chris Lattnerdf986172009-01-02 07:01:27 +00001136/// ParseIndexList
1137/// ::= (',' uint32)+
Chris Lattner628c13a2009-12-30 05:14:00 +00001138///
1139bool LLParser::ParseIndexList(SmallVectorImpl<unsigned> &Indices,
1140 bool &AteExtraComma) {
1141 AteExtraComma = false;
1142
Chris Lattnerdf986172009-01-02 07:01:27 +00001143 if (Lex.getKind() != lltok::comma)
1144 return TokError("expected ',' as start of index list");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001145
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001146 while (EatIfPresent(lltok::comma)) {
Chris Lattner628c13a2009-12-30 05:14:00 +00001147 if (Lex.getKind() == lltok::MetadataVar) {
1148 AteExtraComma = true;
1149 return false;
1150 }
Chris Lattnerdf986172009-01-02 07:01:27 +00001151 unsigned Idx;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001152 if (ParseUInt32(Idx)) return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00001153 Indices.push_back(Idx);
1154 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001155
Chris Lattnerdf986172009-01-02 07:01:27 +00001156 return false;
1157}
1158
1159//===----------------------------------------------------------------------===//
1160// Type Parsing.
1161//===----------------------------------------------------------------------===//
1162
1163/// ParseType - Parse and resolve a full type.
Chris Lattnera9a9e072009-03-09 04:49:14 +00001164bool LLParser::ParseType(PATypeHolder &Result, bool AllowVoid) {
1165 LocTy TypeLoc = Lex.getLoc();
Chris Lattnerdf986172009-01-02 07:01:27 +00001166 if (ParseTypeRec(Result)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001167
Chris Lattnerdf986172009-01-02 07:01:27 +00001168 // Verify no unresolved uprefs.
1169 if (!UpRefs.empty())
1170 return Error(UpRefs.back().Loc, "invalid unresolved type up reference");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001171
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001172 if (!AllowVoid && Result.get()->isVoidTy())
Chris Lattnera9a9e072009-03-09 04:49:14 +00001173 return Error(TypeLoc, "void type only allowed for function results");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001174
Chris Lattnerdf986172009-01-02 07:01:27 +00001175 return false;
1176}
1177
1178/// HandleUpRefs - Every time we finish a new layer of types, this function is
1179/// called. It loops through the UpRefs vector, which is a list of the
1180/// currently active types. For each type, if the up-reference is contained in
1181/// the newly completed type, we decrement the level count. When the level
1182/// count reaches zero, the up-referenced type is the type that is passed in:
1183/// thus we can complete the cycle.
1184///
1185PATypeHolder LLParser::HandleUpRefs(const Type *ty) {
1186 // If Ty isn't abstract, or if there are no up-references in it, then there is
1187 // nothing to resolve here.
1188 if (!ty->isAbstract() || UpRefs.empty()) return ty;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001189
Chris Lattnerdf986172009-01-02 07:01:27 +00001190 PATypeHolder Ty(ty);
1191#if 0
David Greene0e28d762009-12-23 23:38:28 +00001192 dbgs() << "Type '" << Ty->getDescription()
Chris Lattnerdf986172009-01-02 07:01:27 +00001193 << "' newly formed. Resolving upreferences.\n"
1194 << UpRefs.size() << " upreferences active!\n";
1195#endif
Daniel Dunbara279bc32009-09-20 02:20:51 +00001196
Chris Lattnerdf986172009-01-02 07:01:27 +00001197 // If we find any resolvable upreferences (i.e., those whose NestingLevel goes
1198 // to zero), we resolve them all together before we resolve them to Ty. At
1199 // the end of the loop, if there is anything to resolve to Ty, it will be in
1200 // this variable.
1201 OpaqueType *TypeToResolve = 0;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001202
Chris Lattnerdf986172009-01-02 07:01:27 +00001203 for (unsigned i = 0; i != UpRefs.size(); ++i) {
1204 // Determine if 'Ty' directly contains this up-references 'LastContainedTy'.
1205 bool ContainsType =
1206 std::find(Ty->subtype_begin(), Ty->subtype_end(),
1207 UpRefs[i].LastContainedTy) != Ty->subtype_end();
Daniel Dunbara279bc32009-09-20 02:20:51 +00001208
Chris Lattnerdf986172009-01-02 07:01:27 +00001209#if 0
David Greene0e28d762009-12-23 23:38:28 +00001210 dbgs() << " UR#" << i << " - TypeContains(" << Ty->getDescription() << ", "
Chris Lattnerdf986172009-01-02 07:01:27 +00001211 << UpRefs[i].LastContainedTy->getDescription() << ") = "
1212 << (ContainsType ? "true" : "false")
1213 << " level=" << UpRefs[i].NestingLevel << "\n";
1214#endif
1215 if (!ContainsType)
1216 continue;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001217
Chris Lattnerdf986172009-01-02 07:01:27 +00001218 // Decrement level of upreference
1219 unsigned Level = --UpRefs[i].NestingLevel;
1220 UpRefs[i].LastContainedTy = Ty;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001221
Chris Lattnerdf986172009-01-02 07:01:27 +00001222 // If the Up-reference has a non-zero level, it shouldn't be resolved yet.
1223 if (Level != 0)
1224 continue;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001225
Chris Lattnerdf986172009-01-02 07:01:27 +00001226#if 0
David Greene0e28d762009-12-23 23:38:28 +00001227 dbgs() << " * Resolving upreference for " << UpRefs[i].UpRefTy << "\n";
Chris Lattnerdf986172009-01-02 07:01:27 +00001228#endif
1229 if (!TypeToResolve)
1230 TypeToResolve = UpRefs[i].UpRefTy;
1231 else
1232 UpRefs[i].UpRefTy->refineAbstractTypeTo(TypeToResolve);
1233 UpRefs.erase(UpRefs.begin()+i); // Remove from upreference list.
1234 --i; // Do not skip the next element.
1235 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001236
Chris Lattnerdf986172009-01-02 07:01:27 +00001237 if (TypeToResolve)
1238 TypeToResolve->refineAbstractTypeTo(Ty);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001239
Chris Lattnerdf986172009-01-02 07:01:27 +00001240 return Ty;
1241}
1242
1243
1244/// ParseTypeRec - The recursive function used to process the internal
1245/// implementation details of types.
1246bool LLParser::ParseTypeRec(PATypeHolder &Result) {
1247 switch (Lex.getKind()) {
1248 default:
1249 return TokError("expected type");
1250 case lltok::Type:
1251 // TypeRec ::= 'float' | 'void' (etc)
1252 Result = Lex.getTyVal();
Daniel Dunbara279bc32009-09-20 02:20:51 +00001253 Lex.Lex();
Chris Lattnerdf986172009-01-02 07:01:27 +00001254 break;
1255 case lltok::kw_opaque:
1256 // TypeRec ::= 'opaque'
Owen Anderson0e275dc2009-08-13 23:27:32 +00001257 Result = OpaqueType::get(Context);
Chris Lattnerdf986172009-01-02 07:01:27 +00001258 Lex.Lex();
1259 break;
1260 case lltok::lbrace:
1261 // TypeRec ::= '{' ... '}'
1262 if (ParseStructType(Result, false))
1263 return true;
1264 break;
1265 case lltok::lsquare:
1266 // TypeRec ::= '[' ... ']'
1267 Lex.Lex(); // eat the lsquare.
1268 if (ParseArrayVectorType(Result, false))
1269 return true;
1270 break;
1271 case lltok::less: // Either vector or packed struct.
1272 // TypeRec ::= '<' ... '>'
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001273 Lex.Lex();
1274 if (Lex.getKind() == lltok::lbrace) {
1275 if (ParseStructType(Result, true) ||
1276 ParseToken(lltok::greater, "expected '>' at end of packed struct"))
Chris Lattnerdf986172009-01-02 07:01:27 +00001277 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00001278 } else if (ParseArrayVectorType(Result, true))
1279 return true;
1280 break;
1281 case lltok::LocalVar:
1282 case lltok::StringConstant: // FIXME: REMOVE IN LLVM 3.0
1283 // TypeRec ::= %foo
1284 if (const Type *T = M->getTypeByName(Lex.getStrVal())) {
1285 Result = T;
1286 } else {
Owen Anderson0e275dc2009-08-13 23:27:32 +00001287 Result = OpaqueType::get(Context);
Chris Lattnerdf986172009-01-02 07:01:27 +00001288 ForwardRefTypes.insert(std::make_pair(Lex.getStrVal(),
1289 std::make_pair(Result,
1290 Lex.getLoc())));
1291 M->addTypeName(Lex.getStrVal(), Result.get());
1292 }
1293 Lex.Lex();
1294 break;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001295
Chris Lattnerdf986172009-01-02 07:01:27 +00001296 case lltok::LocalVarID:
1297 // TypeRec ::= %4
1298 if (Lex.getUIntVal() < NumberedTypes.size())
1299 Result = NumberedTypes[Lex.getUIntVal()];
1300 else {
1301 std::map<unsigned, std::pair<PATypeHolder, LocTy> >::iterator
1302 I = ForwardRefTypeIDs.find(Lex.getUIntVal());
1303 if (I != ForwardRefTypeIDs.end())
1304 Result = I->second.first;
1305 else {
Owen Anderson0e275dc2009-08-13 23:27:32 +00001306 Result = OpaqueType::get(Context);
Chris Lattnerdf986172009-01-02 07:01:27 +00001307 ForwardRefTypeIDs.insert(std::make_pair(Lex.getUIntVal(),
1308 std::make_pair(Result,
1309 Lex.getLoc())));
1310 }
1311 }
1312 Lex.Lex();
1313 break;
1314 case lltok::backslash: {
1315 // TypeRec ::= '\' 4
Chris Lattnerdf986172009-01-02 07:01:27 +00001316 Lex.Lex();
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001317 unsigned Val;
1318 if (ParseUInt32(Val)) return true;
Owen Anderson0e275dc2009-08-13 23:27:32 +00001319 OpaqueType *OT = OpaqueType::get(Context); //Use temporary placeholder.
Chris Lattnerdf986172009-01-02 07:01:27 +00001320 UpRefs.push_back(UpRefRecord(Lex.getLoc(), Val, OT));
1321 Result = OT;
1322 break;
1323 }
1324 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001325
1326 // Parse the type suffixes.
Chris Lattnerdf986172009-01-02 07:01:27 +00001327 while (1) {
1328 switch (Lex.getKind()) {
1329 // End of type.
Daniel Dunbara279bc32009-09-20 02:20:51 +00001330 default: return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00001331
1332 // TypeRec ::= TypeRec '*'
1333 case lltok::star:
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001334 if (Result.get()->isLabelTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00001335 return TokError("basic block pointers are invalid");
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001336 if (Result.get()->isVoidTy())
Dan Gohmanb9070d32009-02-09 17:41:21 +00001337 return TokError("pointers to void are invalid; use i8* instead");
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001338 if (!PointerType::isValidElementType(Result.get()))
1339 return TokError("pointer to this type is invalid");
Owen Andersondebcb012009-07-29 22:17:13 +00001340 Result = HandleUpRefs(PointerType::getUnqual(Result.get()));
Chris Lattnerdf986172009-01-02 07:01:27 +00001341 Lex.Lex();
1342 break;
1343
1344 // TypeRec ::= TypeRec 'addrspace' '(' uint32 ')' '*'
1345 case lltok::kw_addrspace: {
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001346 if (Result.get()->isLabelTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00001347 return TokError("basic block pointers are invalid");
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001348 if (Result.get()->isVoidTy())
Dan Gohmanb9070d32009-02-09 17:41:21 +00001349 return TokError("pointers to void are invalid; use i8* instead");
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001350 if (!PointerType::isValidElementType(Result.get()))
1351 return TokError("pointer to this type is invalid");
Chris Lattnerdf986172009-01-02 07:01:27 +00001352 unsigned AddrSpace;
1353 if (ParseOptionalAddrSpace(AddrSpace) ||
1354 ParseToken(lltok::star, "expected '*' in address space"))
1355 return true;
1356
Owen Andersondebcb012009-07-29 22:17:13 +00001357 Result = HandleUpRefs(PointerType::get(Result.get(), AddrSpace));
Chris Lattnerdf986172009-01-02 07:01:27 +00001358 break;
1359 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001360
Chris Lattnerdf986172009-01-02 07:01:27 +00001361 /// Types '(' ArgTypeListI ')' OptFuncAttrs
1362 case lltok::lparen:
1363 if (ParseFunctionType(Result))
1364 return true;
1365 break;
1366 }
1367 }
1368}
1369
1370/// ParseParameterList
1371/// ::= '(' ')'
1372/// ::= '(' Arg (',' Arg)* ')'
1373/// Arg
1374/// ::= Type OptionalAttributes Value OptionalAttributes
1375bool LLParser::ParseParameterList(SmallVectorImpl<ParamInfo> &ArgList,
1376 PerFunctionState &PFS) {
1377 if (ParseToken(lltok::lparen, "expected '(' in call"))
1378 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001379
Chris Lattnerdf986172009-01-02 07:01:27 +00001380 while (Lex.getKind() != lltok::rparen) {
1381 // If this isn't the first argument, we need a comma.
1382 if (!ArgList.empty() &&
1383 ParseToken(lltok::comma, "expected ',' in argument list"))
1384 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001385
Chris Lattnerdf986172009-01-02 07:01:27 +00001386 // Parse the argument.
1387 LocTy ArgLoc;
Owen Anderson1d0be152009-08-13 21:58:54 +00001388 PATypeHolder ArgTy(Type::getVoidTy(Context));
Victor Hernandez19715562009-12-03 23:40:58 +00001389 unsigned ArgAttrs1 = Attribute::None;
1390 unsigned ArgAttrs2 = Attribute::None;
Chris Lattnerdf986172009-01-02 07:01:27 +00001391 Value *V;
Victor Hernandez19715562009-12-03 23:40:58 +00001392 if (ParseType(ArgTy, ArgLoc))
Chris Lattnerdf986172009-01-02 07:01:27 +00001393 return true;
Victor Hernandez19715562009-12-03 23:40:58 +00001394
Chris Lattner287881d2009-12-30 02:11:14 +00001395 // Otherwise, handle normal operands.
1396 if (ParseOptionalAttrs(ArgAttrs1, 0) ||
1397 ParseValue(ArgTy, V, PFS) ||
1398 // FIXME: Should not allow attributes after the argument, remove this
1399 // in LLVM 3.0.
1400 ParseOptionalAttrs(ArgAttrs2, 3))
1401 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00001402 ArgList.push_back(ParamInfo(ArgLoc, V, ArgAttrs1|ArgAttrs2));
1403 }
1404
1405 Lex.Lex(); // Lex the ')'.
1406 return false;
1407}
1408
1409
1410
Chris Lattnerdfd19dd2009-01-05 18:34:07 +00001411/// ParseArgumentList - Parse the argument list for a function type or function
1412/// prototype. If 'inType' is true then we are parsing a FunctionType.
Chris Lattnerdf986172009-01-02 07:01:27 +00001413/// ::= '(' ArgTypeListI ')'
1414/// ArgTypeListI
1415/// ::= /*empty*/
1416/// ::= '...'
1417/// ::= ArgTypeList ',' '...'
1418/// ::= ArgType (',' ArgType)*
Chris Lattnerdfd19dd2009-01-05 18:34:07 +00001419///
Chris Lattnerdf986172009-01-02 07:01:27 +00001420bool LLParser::ParseArgumentList(std::vector<ArgInfo> &ArgList,
Chris Lattnerdfd19dd2009-01-05 18:34:07 +00001421 bool &isVarArg, bool inType) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001422 isVarArg = false;
1423 assert(Lex.getKind() == lltok::lparen);
1424 Lex.Lex(); // eat the (.
Daniel Dunbara279bc32009-09-20 02:20:51 +00001425
Chris Lattnerdf986172009-01-02 07:01:27 +00001426 if (Lex.getKind() == lltok::rparen) {
1427 // empty
1428 } else if (Lex.getKind() == lltok::dotdotdot) {
1429 isVarArg = true;
1430 Lex.Lex();
1431 } else {
1432 LocTy TypeLoc = Lex.getLoc();
Owen Anderson1d0be152009-08-13 21:58:54 +00001433 PATypeHolder ArgTy(Type::getVoidTy(Context));
Chris Lattnerdf986172009-01-02 07:01:27 +00001434 unsigned Attrs;
Chris Lattnerdf986172009-01-02 07:01:27 +00001435 std::string Name;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001436
Chris Lattnerdfd19dd2009-01-05 18:34:07 +00001437 // If we're parsing a type, use ParseTypeRec, because we allow recursive
1438 // types (such as a function returning a pointer to itself). If parsing a
1439 // function prototype, we require fully resolved types.
1440 if ((inType ? ParseTypeRec(ArgTy) : ParseType(ArgTy)) ||
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001441 ParseOptionalAttrs(Attrs, 0)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001442
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001443 if (ArgTy->isVoidTy())
Chris Lattnera9a9e072009-03-09 04:49:14 +00001444 return Error(TypeLoc, "argument can not have void type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001445
Chris Lattnerdf986172009-01-02 07:01:27 +00001446 if (Lex.getKind() == lltok::LocalVar ||
1447 Lex.getKind() == lltok::StringConstant) { // FIXME: REMOVE IN LLVM 3.0
1448 Name = Lex.getStrVal();
1449 Lex.Lex();
1450 }
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001451
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001452 if (!FunctionType::isValidArgumentType(ArgTy))
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001453 return Error(TypeLoc, "invalid type for function argument");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001454
Chris Lattnerdf986172009-01-02 07:01:27 +00001455 ArgList.push_back(ArgInfo(TypeLoc, ArgTy, Attrs, Name));
Daniel Dunbara279bc32009-09-20 02:20:51 +00001456
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001457 while (EatIfPresent(lltok::comma)) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001458 // Handle ... at end of arg list.
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001459 if (EatIfPresent(lltok::dotdotdot)) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001460 isVarArg = true;
Chris Lattnerdf986172009-01-02 07:01:27 +00001461 break;
1462 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001463
Chris Lattnerdf986172009-01-02 07:01:27 +00001464 // Otherwise must be an argument type.
1465 TypeLoc = Lex.getLoc();
Chris Lattnera9a9e072009-03-09 04:49:14 +00001466 if ((inType ? ParseTypeRec(ArgTy) : ParseType(ArgTy)) ||
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001467 ParseOptionalAttrs(Attrs, 0)) return true;
1468
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001469 if (ArgTy->isVoidTy())
Chris Lattnera9a9e072009-03-09 04:49:14 +00001470 return Error(TypeLoc, "argument can not have void type");
1471
Chris Lattnerdf986172009-01-02 07:01:27 +00001472 if (Lex.getKind() == lltok::LocalVar ||
1473 Lex.getKind() == lltok::StringConstant) { // FIXME: REMOVE IN LLVM 3.0
1474 Name = Lex.getStrVal();
1475 Lex.Lex();
1476 } else {
1477 Name = "";
1478 }
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001479
1480 if (!ArgTy->isFirstClassType() && !isa<OpaqueType>(ArgTy))
1481 return Error(TypeLoc, "invalid type for function argument");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001482
Chris Lattnerdf986172009-01-02 07:01:27 +00001483 ArgList.push_back(ArgInfo(TypeLoc, ArgTy, Attrs, Name));
1484 }
1485 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001486
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001487 return ParseToken(lltok::rparen, "expected ')' at end of argument list");
Chris Lattnerdf986172009-01-02 07:01:27 +00001488}
Daniel Dunbara279bc32009-09-20 02:20:51 +00001489
Chris Lattnerdf986172009-01-02 07:01:27 +00001490/// ParseFunctionType
1491/// ::= Type ArgumentList OptionalAttrs
1492bool LLParser::ParseFunctionType(PATypeHolder &Result) {
1493 assert(Lex.getKind() == lltok::lparen);
1494
Chris Lattnerd77d04c2009-01-05 08:04:33 +00001495 if (!FunctionType::isValidReturnType(Result))
1496 return TokError("invalid function return type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001497
Chris Lattnerdf986172009-01-02 07:01:27 +00001498 std::vector<ArgInfo> ArgList;
1499 bool isVarArg;
1500 unsigned Attrs;
Chris Lattnerdfd19dd2009-01-05 18:34:07 +00001501 if (ParseArgumentList(ArgList, isVarArg, true) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00001502 // FIXME: Allow, but ignore attributes on function types!
1503 // FIXME: Remove in LLVM 3.0
1504 ParseOptionalAttrs(Attrs, 2))
1505 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001506
Chris Lattnerdf986172009-01-02 07:01:27 +00001507 // Reject names on the arguments lists.
1508 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
1509 if (!ArgList[i].Name.empty())
1510 return Error(ArgList[i].Loc, "argument name invalid in function type");
1511 if (!ArgList[i].Attrs != 0) {
1512 // Allow but ignore attributes on function types; this permits
1513 // auto-upgrade.
1514 // FIXME: REJECT ATTRIBUTES ON FUNCTION TYPES in LLVM 3.0
1515 }
1516 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001517
Chris Lattnerdf986172009-01-02 07:01:27 +00001518 std::vector<const Type*> ArgListTy;
1519 for (unsigned i = 0, e = ArgList.size(); i != e; ++i)
1520 ArgListTy.push_back(ArgList[i].Type);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001521
Owen Andersondebcb012009-07-29 22:17:13 +00001522 Result = HandleUpRefs(FunctionType::get(Result.get(),
Owen Andersonfba933c2009-07-01 23:57:11 +00001523 ArgListTy, isVarArg));
Chris Lattnerdf986172009-01-02 07:01:27 +00001524 return false;
1525}
1526
1527/// ParseStructType: Handles packed and unpacked types. </> parsed elsewhere.
1528/// TypeRec
1529/// ::= '{' '}'
1530/// ::= '{' TypeRec (',' TypeRec)* '}'
1531/// ::= '<' '{' '}' '>'
1532/// ::= '<' '{' TypeRec (',' TypeRec)* '}' '>'
1533bool LLParser::ParseStructType(PATypeHolder &Result, bool Packed) {
1534 assert(Lex.getKind() == lltok::lbrace);
1535 Lex.Lex(); // Consume the '{'
Daniel Dunbara279bc32009-09-20 02:20:51 +00001536
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001537 if (EatIfPresent(lltok::rbrace)) {
Owen Andersond7f2a6c2009-08-05 23:16:16 +00001538 Result = StructType::get(Context, Packed);
Chris Lattnerdf986172009-01-02 07:01:27 +00001539 return false;
1540 }
1541
1542 std::vector<PATypeHolder> ParamsList;
Chris Lattnera9a9e072009-03-09 04:49:14 +00001543 LocTy EltTyLoc = Lex.getLoc();
Chris Lattnerdf986172009-01-02 07:01:27 +00001544 if (ParseTypeRec(Result)) return true;
1545 ParamsList.push_back(Result);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001546
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001547 if (Result->isVoidTy())
Chris Lattnera9a9e072009-03-09 04:49:14 +00001548 return Error(EltTyLoc, "struct element can not have void type");
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001549 if (!StructType::isValidElementType(Result))
1550 return Error(EltTyLoc, "invalid element type for struct");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001551
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001552 while (EatIfPresent(lltok::comma)) {
Chris Lattnera9a9e072009-03-09 04:49:14 +00001553 EltTyLoc = Lex.getLoc();
Chris Lattnerdf986172009-01-02 07:01:27 +00001554 if (ParseTypeRec(Result)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001555
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001556 if (Result->isVoidTy())
Chris Lattnera9a9e072009-03-09 04:49:14 +00001557 return Error(EltTyLoc, "struct element can not have void type");
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001558 if (!StructType::isValidElementType(Result))
1559 return Error(EltTyLoc, "invalid element type for struct");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001560
Chris Lattnerdf986172009-01-02 07:01:27 +00001561 ParamsList.push_back(Result);
1562 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001563
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001564 if (ParseToken(lltok::rbrace, "expected '}' at end of struct"))
1565 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001566
Chris Lattnerdf986172009-01-02 07:01:27 +00001567 std::vector<const Type*> ParamsListTy;
1568 for (unsigned i = 0, e = ParamsList.size(); i != e; ++i)
1569 ParamsListTy.push_back(ParamsList[i].get());
Owen Andersond7f2a6c2009-08-05 23:16:16 +00001570 Result = HandleUpRefs(StructType::get(Context, ParamsListTy, Packed));
Chris Lattnerdf986172009-01-02 07:01:27 +00001571 return false;
1572}
1573
1574/// ParseArrayVectorType - Parse an array or vector type, assuming the first
1575/// token has already been consumed.
Daniel Dunbara279bc32009-09-20 02:20:51 +00001576/// TypeRec
Chris Lattnerdf986172009-01-02 07:01:27 +00001577/// ::= '[' APSINTVAL 'x' Types ']'
1578/// ::= '<' APSINTVAL 'x' Types '>'
1579bool LLParser::ParseArrayVectorType(PATypeHolder &Result, bool isVector) {
1580 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned() ||
1581 Lex.getAPSIntVal().getBitWidth() > 64)
1582 return TokError("expected number in address space");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001583
Chris Lattnerdf986172009-01-02 07:01:27 +00001584 LocTy SizeLoc = Lex.getLoc();
1585 uint64_t Size = Lex.getAPSIntVal().getZExtValue();
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001586 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +00001587
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001588 if (ParseToken(lltok::kw_x, "expected 'x' after element count"))
1589 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00001590
1591 LocTy TypeLoc = Lex.getLoc();
Owen Anderson1d0be152009-08-13 21:58:54 +00001592 PATypeHolder EltTy(Type::getVoidTy(Context));
Chris Lattnerdf986172009-01-02 07:01:27 +00001593 if (ParseTypeRec(EltTy)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001594
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001595 if (EltTy->isVoidTy())
Chris Lattnera9a9e072009-03-09 04:49:14 +00001596 return Error(TypeLoc, "array and vector element type cannot be void");
1597
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001598 if (ParseToken(isVector ? lltok::greater : lltok::rsquare,
1599 "expected end of sequential type"))
1600 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001601
Chris Lattnerdf986172009-01-02 07:01:27 +00001602 if (isVector) {
Chris Lattner452e2622009-02-28 18:12:41 +00001603 if (Size == 0)
1604 return Error(SizeLoc, "zero element vector is illegal");
Chris Lattnerdf986172009-01-02 07:01:27 +00001605 if ((unsigned)Size != Size)
1606 return Error(SizeLoc, "size too large for vector");
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001607 if (!VectorType::isValidElementType(EltTy))
Chris Lattnerdf986172009-01-02 07:01:27 +00001608 return Error(TypeLoc, "vector element type must be fp or integer");
Owen Andersondebcb012009-07-29 22:17:13 +00001609 Result = VectorType::get(EltTy, unsigned(Size));
Chris Lattnerdf986172009-01-02 07:01:27 +00001610 } else {
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001611 if (!ArrayType::isValidElementType(EltTy))
Chris Lattnerdf986172009-01-02 07:01:27 +00001612 return Error(TypeLoc, "invalid array element type");
Owen Andersondebcb012009-07-29 22:17:13 +00001613 Result = HandleUpRefs(ArrayType::get(EltTy, Size));
Chris Lattnerdf986172009-01-02 07:01:27 +00001614 }
1615 return false;
1616}
1617
1618//===----------------------------------------------------------------------===//
1619// Function Semantic Analysis.
1620//===----------------------------------------------------------------------===//
1621
Chris Lattner09d9ef42009-10-28 03:39:23 +00001622LLParser::PerFunctionState::PerFunctionState(LLParser &p, Function &f,
1623 int functionNumber)
1624 : P(p), F(f), FunctionNumber(functionNumber) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001625
1626 // Insert unnamed arguments into the NumberedVals list.
1627 for (Function::arg_iterator AI = F.arg_begin(), E = F.arg_end();
1628 AI != E; ++AI)
1629 if (!AI->hasName())
1630 NumberedVals.push_back(AI);
1631}
1632
1633LLParser::PerFunctionState::~PerFunctionState() {
1634 // If there were any forward referenced non-basicblock values, delete them.
1635 for (std::map<std::string, std::pair<Value*, LocTy> >::iterator
1636 I = ForwardRefVals.begin(), E = ForwardRefVals.end(); I != E; ++I)
1637 if (!isa<BasicBlock>(I->second.first)) {
Owen Andersonb43eae72009-07-02 17:04:01 +00001638 I->second.first->replaceAllUsesWith(
Owen Anderson9e9a0d52009-07-30 23:03:37 +00001639 UndefValue::get(I->second.first->getType()));
Chris Lattnerdf986172009-01-02 07:01:27 +00001640 delete I->second.first;
1641 I->second.first = 0;
1642 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001643
Chris Lattnerdf986172009-01-02 07:01:27 +00001644 for (std::map<unsigned, std::pair<Value*, LocTy> >::iterator
1645 I = ForwardRefValIDs.begin(), E = ForwardRefValIDs.end(); I != E; ++I)
1646 if (!isa<BasicBlock>(I->second.first)) {
Owen Andersonb43eae72009-07-02 17:04:01 +00001647 I->second.first->replaceAllUsesWith(
Owen Anderson9e9a0d52009-07-30 23:03:37 +00001648 UndefValue::get(I->second.first->getType()));
Chris Lattnerdf986172009-01-02 07:01:27 +00001649 delete I->second.first;
1650 I->second.first = 0;
1651 }
1652}
1653
Chris Lattner09d9ef42009-10-28 03:39:23 +00001654bool LLParser::PerFunctionState::FinishFunction() {
1655 // Check to see if someone took the address of labels in this block.
1656 if (!P.ForwardRefBlockAddresses.empty()) {
1657 ValID FunctionID;
1658 if (!F.getName().empty()) {
1659 FunctionID.Kind = ValID::t_GlobalName;
1660 FunctionID.StrVal = F.getName();
1661 } else {
1662 FunctionID.Kind = ValID::t_GlobalID;
1663 FunctionID.UIntVal = FunctionNumber;
1664 }
1665
1666 std::map<ValID, std::vector<std::pair<ValID, GlobalValue*> > >::iterator
1667 FRBAI = P.ForwardRefBlockAddresses.find(FunctionID);
1668 if (FRBAI != P.ForwardRefBlockAddresses.end()) {
1669 // Resolve all these references.
1670 if (P.ResolveForwardRefBlockAddresses(&F, FRBAI->second, this))
1671 return true;
1672
1673 P.ForwardRefBlockAddresses.erase(FRBAI);
1674 }
1675 }
1676
Chris Lattnerdf986172009-01-02 07:01:27 +00001677 if (!ForwardRefVals.empty())
1678 return P.Error(ForwardRefVals.begin()->second.second,
1679 "use of undefined value '%" + ForwardRefVals.begin()->first +
1680 "'");
1681 if (!ForwardRefValIDs.empty())
1682 return P.Error(ForwardRefValIDs.begin()->second.second,
1683 "use of undefined value '%" +
1684 utostr(ForwardRefValIDs.begin()->first) + "'");
1685 return false;
1686}
1687
1688
1689/// GetVal - Get a value with the specified name or ID, creating a
1690/// forward reference record if needed. This can return null if the value
1691/// exists but does not have the right type.
1692Value *LLParser::PerFunctionState::GetVal(const std::string &Name,
1693 const Type *Ty, LocTy Loc) {
1694 // Look this name up in the normal function symbol table.
1695 Value *Val = F.getValueSymbolTable().lookup(Name);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001696
Chris Lattnerdf986172009-01-02 07:01:27 +00001697 // If this is a forward reference for the value, see if we already created a
1698 // forward ref record.
1699 if (Val == 0) {
1700 std::map<std::string, std::pair<Value*, LocTy> >::iterator
1701 I = ForwardRefVals.find(Name);
1702 if (I != ForwardRefVals.end())
1703 Val = I->second.first;
1704 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001705
Chris Lattnerdf986172009-01-02 07:01:27 +00001706 // If we have the value in the symbol table or fwd-ref table, return it.
1707 if (Val) {
1708 if (Val->getType() == Ty) return Val;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001709 if (Ty->isLabelTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00001710 P.Error(Loc, "'%" + Name + "' is not a basic block");
1711 else
1712 P.Error(Loc, "'%" + Name + "' defined with type '" +
1713 Val->getType()->getDescription() + "'");
1714 return 0;
1715 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001716
Chris Lattnerdf986172009-01-02 07:01:27 +00001717 // Don't make placeholders with invalid type.
Benjamin Kramerf0127052010-01-05 13:12:22 +00001718 if (!Ty->isFirstClassType() && !isa<OpaqueType>(Ty) && !Ty->isLabelTy()) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001719 P.Error(Loc, "invalid use of a non-first-class type");
1720 return 0;
1721 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001722
Chris Lattnerdf986172009-01-02 07:01:27 +00001723 // Otherwise, create a new forward reference for this value and remember it.
1724 Value *FwdVal;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001725 if (Ty->isLabelTy())
Owen Anderson1d0be152009-08-13 21:58:54 +00001726 FwdVal = BasicBlock::Create(F.getContext(), Name, &F);
Chris Lattnerdf986172009-01-02 07:01:27 +00001727 else
1728 FwdVal = new Argument(Ty, Name);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001729
Chris Lattnerdf986172009-01-02 07:01:27 +00001730 ForwardRefVals[Name] = std::make_pair(FwdVal, Loc);
1731 return FwdVal;
1732}
1733
1734Value *LLParser::PerFunctionState::GetVal(unsigned ID, const Type *Ty,
1735 LocTy Loc) {
1736 // Look this name up in the normal function symbol table.
1737 Value *Val = ID < NumberedVals.size() ? NumberedVals[ID] : 0;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001738
Chris Lattnerdf986172009-01-02 07:01:27 +00001739 // If this is a forward reference for the value, see if we already created a
1740 // forward ref record.
1741 if (Val == 0) {
1742 std::map<unsigned, std::pair<Value*, LocTy> >::iterator
1743 I = ForwardRefValIDs.find(ID);
1744 if (I != ForwardRefValIDs.end())
1745 Val = I->second.first;
1746 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001747
Chris Lattnerdf986172009-01-02 07:01:27 +00001748 // If we have the value in the symbol table or fwd-ref table, return it.
1749 if (Val) {
1750 if (Val->getType() == Ty) return Val;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001751 if (Ty->isLabelTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00001752 P.Error(Loc, "'%" + utostr(ID) + "' is not a basic block");
1753 else
1754 P.Error(Loc, "'%" + utostr(ID) + "' defined with type '" +
1755 Val->getType()->getDescription() + "'");
1756 return 0;
1757 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001758
Benjamin Kramerf0127052010-01-05 13:12:22 +00001759 if (!Ty->isFirstClassType() && !isa<OpaqueType>(Ty) && !Ty->isLabelTy()) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001760 P.Error(Loc, "invalid use of a non-first-class type");
1761 return 0;
1762 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001763
Chris Lattnerdf986172009-01-02 07:01:27 +00001764 // Otherwise, create a new forward reference for this value and remember it.
1765 Value *FwdVal;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001766 if (Ty->isLabelTy())
Owen Anderson1d0be152009-08-13 21:58:54 +00001767 FwdVal = BasicBlock::Create(F.getContext(), "", &F);
Chris Lattnerdf986172009-01-02 07:01:27 +00001768 else
1769 FwdVal = new Argument(Ty);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001770
Chris Lattnerdf986172009-01-02 07:01:27 +00001771 ForwardRefValIDs[ID] = std::make_pair(FwdVal, Loc);
1772 return FwdVal;
1773}
1774
1775/// SetInstName - After an instruction is parsed and inserted into its
1776/// basic block, this installs its name.
1777bool LLParser::PerFunctionState::SetInstName(int NameID,
1778 const std::string &NameStr,
1779 LocTy NameLoc, Instruction *Inst) {
1780 // If this instruction has void type, it cannot have a name or ID specified.
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001781 if (Inst->getType()->isVoidTy()) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001782 if (NameID != -1 || !NameStr.empty())
1783 return P.Error(NameLoc, "instructions returning void cannot have a name");
1784 return false;
1785 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001786
Chris Lattnerdf986172009-01-02 07:01:27 +00001787 // If this was a numbered instruction, verify that the instruction is the
1788 // expected value and resolve any forward references.
1789 if (NameStr.empty()) {
1790 // If neither a name nor an ID was specified, just use the next ID.
1791 if (NameID == -1)
1792 NameID = NumberedVals.size();
Daniel Dunbara279bc32009-09-20 02:20:51 +00001793
Chris Lattnerdf986172009-01-02 07:01:27 +00001794 if (unsigned(NameID) != NumberedVals.size())
1795 return P.Error(NameLoc, "instruction expected to be numbered '%" +
1796 utostr(NumberedVals.size()) + "'");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001797
Chris Lattnerdf986172009-01-02 07:01:27 +00001798 std::map<unsigned, std::pair<Value*, LocTy> >::iterator FI =
1799 ForwardRefValIDs.find(NameID);
1800 if (FI != ForwardRefValIDs.end()) {
1801 if (FI->second.first->getType() != Inst->getType())
Daniel Dunbara279bc32009-09-20 02:20:51 +00001802 return P.Error(NameLoc, "instruction forward referenced with type '" +
Chris Lattnerdf986172009-01-02 07:01:27 +00001803 FI->second.first->getType()->getDescription() + "'");
1804 FI->second.first->replaceAllUsesWith(Inst);
Nuno Lopes2b4f28e2009-09-02 15:02:57 +00001805 delete FI->second.first;
Chris Lattnerdf986172009-01-02 07:01:27 +00001806 ForwardRefValIDs.erase(FI);
1807 }
1808
1809 NumberedVals.push_back(Inst);
1810 return false;
1811 }
1812
1813 // Otherwise, the instruction had a name. Resolve forward refs and set it.
1814 std::map<std::string, std::pair<Value*, LocTy> >::iterator
1815 FI = ForwardRefVals.find(NameStr);
1816 if (FI != ForwardRefVals.end()) {
1817 if (FI->second.first->getType() != Inst->getType())
Daniel Dunbara279bc32009-09-20 02:20:51 +00001818 return P.Error(NameLoc, "instruction forward referenced with type '" +
Chris Lattnerdf986172009-01-02 07:01:27 +00001819 FI->second.first->getType()->getDescription() + "'");
1820 FI->second.first->replaceAllUsesWith(Inst);
Nuno Lopes531552a2009-09-02 14:22:03 +00001821 delete FI->second.first;
Chris Lattnerdf986172009-01-02 07:01:27 +00001822 ForwardRefVals.erase(FI);
1823 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001824
Chris Lattnerdf986172009-01-02 07:01:27 +00001825 // Set the name on the instruction.
1826 Inst->setName(NameStr);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001827
Chris Lattnerdf986172009-01-02 07:01:27 +00001828 if (Inst->getNameStr() != NameStr)
Daniel Dunbara279bc32009-09-20 02:20:51 +00001829 return P.Error(NameLoc, "multiple definition of local value named '" +
Chris Lattnerdf986172009-01-02 07:01:27 +00001830 NameStr + "'");
1831 return false;
1832}
1833
1834/// GetBB - Get a basic block with the specified name or ID, creating a
1835/// forward reference record if needed.
1836BasicBlock *LLParser::PerFunctionState::GetBB(const std::string &Name,
1837 LocTy Loc) {
Owen Anderson1d0be152009-08-13 21:58:54 +00001838 return cast_or_null<BasicBlock>(GetVal(Name,
1839 Type::getLabelTy(F.getContext()), Loc));
Chris Lattnerdf986172009-01-02 07:01:27 +00001840}
1841
1842BasicBlock *LLParser::PerFunctionState::GetBB(unsigned ID, LocTy Loc) {
Owen Anderson1d0be152009-08-13 21:58:54 +00001843 return cast_or_null<BasicBlock>(GetVal(ID,
1844 Type::getLabelTy(F.getContext()), Loc));
Chris Lattnerdf986172009-01-02 07:01:27 +00001845}
1846
1847/// DefineBB - Define the specified basic block, which is either named or
1848/// unnamed. If there is an error, this returns null otherwise it returns
1849/// the block being defined.
1850BasicBlock *LLParser::PerFunctionState::DefineBB(const std::string &Name,
1851 LocTy Loc) {
1852 BasicBlock *BB;
1853 if (Name.empty())
1854 BB = GetBB(NumberedVals.size(), Loc);
1855 else
1856 BB = GetBB(Name, Loc);
1857 if (BB == 0) return 0; // Already diagnosed error.
Daniel Dunbara279bc32009-09-20 02:20:51 +00001858
Chris Lattnerdf986172009-01-02 07:01:27 +00001859 // Move the block to the end of the function. Forward ref'd blocks are
1860 // inserted wherever they happen to be referenced.
1861 F.getBasicBlockList().splice(F.end(), F.getBasicBlockList(), BB);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001862
Chris Lattnerdf986172009-01-02 07:01:27 +00001863 // Remove the block from forward ref sets.
1864 if (Name.empty()) {
1865 ForwardRefValIDs.erase(NumberedVals.size());
1866 NumberedVals.push_back(BB);
1867 } else {
1868 // BB forward references are already in the function symbol table.
1869 ForwardRefVals.erase(Name);
1870 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001871
Chris Lattnerdf986172009-01-02 07:01:27 +00001872 return BB;
1873}
1874
1875//===----------------------------------------------------------------------===//
1876// Constants.
1877//===----------------------------------------------------------------------===//
1878
1879/// ParseValID - Parse an abstract value that doesn't necessarily have a
1880/// type implied. For example, if we parse "4" we don't know what integer type
1881/// it has. The value will later be combined with its type and checked for
1882/// sanity.
1883bool LLParser::ParseValID(ValID &ID) {
1884 ID.Loc = Lex.getLoc();
1885 switch (Lex.getKind()) {
1886 default: return TokError("expected value token");
1887 case lltok::GlobalID: // @42
1888 ID.UIntVal = Lex.getUIntVal();
1889 ID.Kind = ValID::t_GlobalID;
1890 break;
1891 case lltok::GlobalVar: // @foo
1892 ID.StrVal = Lex.getStrVal();
1893 ID.Kind = ValID::t_GlobalName;
1894 break;
1895 case lltok::LocalVarID: // %42
1896 ID.UIntVal = Lex.getUIntVal();
1897 ID.Kind = ValID::t_LocalID;
1898 break;
1899 case lltok::LocalVar: // %foo
1900 case lltok::StringConstant: // "foo" - FIXME: REMOVE IN LLVM 3.0
1901 ID.StrVal = Lex.getStrVal();
1902 ID.Kind = ValID::t_LocalName;
1903 break;
Chris Lattnere434d272009-12-30 04:56:59 +00001904 case lltok::exclaim: // !{...} MDNode, !"foo" MDString
Nick Lewycky21cc4462009-04-04 07:22:01 +00001905 Lex.Lex();
Chris Lattner442ffa12009-12-29 21:53:55 +00001906
Chris Lattner3f5132a2009-12-29 22:40:21 +00001907 if (EatIfPresent(lltok::lbrace)) {
Nick Lewyckycb337992009-05-10 20:57:05 +00001908 SmallVector<Value*, 16> Elts;
Nick Lewycky21cc4462009-04-04 07:22:01 +00001909 if (ParseMDNodeVector(Elts) ||
1910 ParseToken(lltok::rbrace, "expected end of metadata node"))
1911 return true;
Nick Lewyckycb337992009-05-10 20:57:05 +00001912
Chris Lattner287881d2009-12-30 02:11:14 +00001913 ID.MDNodeVal = MDNode::get(Context, Elts.data(), Elts.size());
1914 ID.Kind = ValID::t_MDNode;
Nick Lewycky21cc4462009-04-04 07:22:01 +00001915 return false;
1916 }
1917
Devang Patel923078c2009-07-01 19:21:12 +00001918 // Standalone metadata reference
1919 // !{ ..., !42, ... }
Chris Lattner860775c2009-12-30 04:13:37 +00001920 if (Lex.getKind() == lltok::APSInt) {
Chris Lattner4a72efc2009-12-30 04:15:23 +00001921 if (ParseMDNodeID(ID.MDNodeVal)) return true;
Chris Lattner287881d2009-12-30 02:11:14 +00001922 ID.Kind = ValID::t_MDNode;
Devang Patel923078c2009-07-01 19:21:12 +00001923 return false;
Chris Lattner287881d2009-12-30 02:11:14 +00001924 }
1925
Nick Lewycky21cc4462009-04-04 07:22:01 +00001926 // MDString:
1927 // ::= '!' STRINGCONSTANT
Chris Lattner287881d2009-12-30 02:11:14 +00001928 if (ParseMDString(ID.MDStringVal)) return true;
1929 ID.Kind = ValID::t_MDString;
Nick Lewycky21cc4462009-04-04 07:22:01 +00001930 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00001931 case lltok::APSInt:
Daniel Dunbara279bc32009-09-20 02:20:51 +00001932 ID.APSIntVal = Lex.getAPSIntVal();
Chris Lattnerdf986172009-01-02 07:01:27 +00001933 ID.Kind = ValID::t_APSInt;
1934 break;
1935 case lltok::APFloat:
1936 ID.APFloatVal = Lex.getAPFloatVal();
1937 ID.Kind = ValID::t_APFloat;
1938 break;
1939 case lltok::kw_true:
Owen Anderson5defacc2009-07-31 17:39:07 +00001940 ID.ConstantVal = ConstantInt::getTrue(Context);
Chris Lattnerdf986172009-01-02 07:01:27 +00001941 ID.Kind = ValID::t_Constant;
1942 break;
1943 case lltok::kw_false:
Owen Anderson5defacc2009-07-31 17:39:07 +00001944 ID.ConstantVal = ConstantInt::getFalse(Context);
Chris Lattnerdf986172009-01-02 07:01:27 +00001945 ID.Kind = ValID::t_Constant;
1946 break;
1947 case lltok::kw_null: ID.Kind = ValID::t_Null; break;
1948 case lltok::kw_undef: ID.Kind = ValID::t_Undef; break;
1949 case lltok::kw_zeroinitializer: ID.Kind = ValID::t_Zero; break;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001950
Chris Lattnerdf986172009-01-02 07:01:27 +00001951 case lltok::lbrace: {
1952 // ValID ::= '{' ConstVector '}'
1953 Lex.Lex();
1954 SmallVector<Constant*, 16> Elts;
1955 if (ParseGlobalValueVector(Elts) ||
1956 ParseToken(lltok::rbrace, "expected end of struct constant"))
1957 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001958
Owen Andersond7f2a6c2009-08-05 23:16:16 +00001959 ID.ConstantVal = ConstantStruct::get(Context, Elts.data(),
1960 Elts.size(), false);
Chris Lattnerdf986172009-01-02 07:01:27 +00001961 ID.Kind = ValID::t_Constant;
1962 return false;
1963 }
1964 case lltok::less: {
1965 // ValID ::= '<' ConstVector '>' --> Vector.
1966 // ValID ::= '<' '{' ConstVector '}' '>' --> Packed Struct.
1967 Lex.Lex();
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001968 bool isPackedStruct = EatIfPresent(lltok::lbrace);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001969
Chris Lattnerdf986172009-01-02 07:01:27 +00001970 SmallVector<Constant*, 16> Elts;
1971 LocTy FirstEltLoc = Lex.getLoc();
1972 if (ParseGlobalValueVector(Elts) ||
1973 (isPackedStruct &&
1974 ParseToken(lltok::rbrace, "expected end of packed struct")) ||
1975 ParseToken(lltok::greater, "expected end of constant"))
1976 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001977
Chris Lattnerdf986172009-01-02 07:01:27 +00001978 if (isPackedStruct) {
Owen Andersonfba933c2009-07-01 23:57:11 +00001979 ID.ConstantVal =
Owen Andersond7f2a6c2009-08-05 23:16:16 +00001980 ConstantStruct::get(Context, Elts.data(), Elts.size(), true);
Chris Lattnerdf986172009-01-02 07:01:27 +00001981 ID.Kind = ValID::t_Constant;
1982 return false;
1983 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001984
Chris Lattnerdf986172009-01-02 07:01:27 +00001985 if (Elts.empty())
1986 return Error(ID.Loc, "constant vector must not be empty");
1987
1988 if (!Elts[0]->getType()->isInteger() &&
1989 !Elts[0]->getType()->isFloatingPoint())
1990 return Error(FirstEltLoc,
1991 "vector elements must have integer or floating point type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001992
Chris Lattnerdf986172009-01-02 07:01:27 +00001993 // Verify that all the vector elements have the same type.
1994 for (unsigned i = 1, e = Elts.size(); i != e; ++i)
1995 if (Elts[i]->getType() != Elts[0]->getType())
1996 return Error(FirstEltLoc,
1997 "vector element #" + utostr(i) +
1998 " is not of type '" + Elts[0]->getType()->getDescription());
Daniel Dunbara279bc32009-09-20 02:20:51 +00001999
Owen Andersonaf7ec972009-07-28 21:19:26 +00002000 ID.ConstantVal = ConstantVector::get(Elts.data(), Elts.size());
Chris Lattnerdf986172009-01-02 07:01:27 +00002001 ID.Kind = ValID::t_Constant;
2002 return false;
2003 }
2004 case lltok::lsquare: { // Array Constant
2005 Lex.Lex();
2006 SmallVector<Constant*, 16> Elts;
2007 LocTy FirstEltLoc = Lex.getLoc();
2008 if (ParseGlobalValueVector(Elts) ||
2009 ParseToken(lltok::rsquare, "expected end of array constant"))
2010 return true;
2011
2012 // Handle empty element.
2013 if (Elts.empty()) {
2014 // Use undef instead of an array because it's inconvenient to determine
2015 // the element type at this point, there being no elements to examine.
Chris Lattner081b5052009-01-05 07:52:51 +00002016 ID.Kind = ValID::t_EmptyArray;
Chris Lattnerdf986172009-01-02 07:01:27 +00002017 return false;
2018 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002019
Chris Lattnerdf986172009-01-02 07:01:27 +00002020 if (!Elts[0]->getType()->isFirstClassType())
Daniel Dunbara279bc32009-09-20 02:20:51 +00002021 return Error(FirstEltLoc, "invalid array element type: " +
Chris Lattnerdf986172009-01-02 07:01:27 +00002022 Elts[0]->getType()->getDescription());
Daniel Dunbara279bc32009-09-20 02:20:51 +00002023
Owen Andersondebcb012009-07-29 22:17:13 +00002024 ArrayType *ATy = ArrayType::get(Elts[0]->getType(), Elts.size());
Daniel Dunbara279bc32009-09-20 02:20:51 +00002025
Chris Lattnerdf986172009-01-02 07:01:27 +00002026 // Verify all elements are correct type!
Chris Lattner6d6b3cc2009-01-02 08:49:06 +00002027 for (unsigned i = 0, e = Elts.size(); i != e; ++i) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002028 if (Elts[i]->getType() != Elts[0]->getType())
2029 return Error(FirstEltLoc,
2030 "array element #" + utostr(i) +
2031 " is not of type '" +Elts[0]->getType()->getDescription());
2032 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002033
Owen Anderson1fd70962009-07-28 18:32:17 +00002034 ID.ConstantVal = ConstantArray::get(ATy, Elts.data(), Elts.size());
Chris Lattnerdf986172009-01-02 07:01:27 +00002035 ID.Kind = ValID::t_Constant;
2036 return false;
2037 }
2038 case lltok::kw_c: // c "foo"
2039 Lex.Lex();
Owen Anderson1d0be152009-08-13 21:58:54 +00002040 ID.ConstantVal = ConstantArray::get(Context, Lex.getStrVal(), false);
Chris Lattnerdf986172009-01-02 07:01:27 +00002041 if (ParseToken(lltok::StringConstant, "expected string")) return true;
2042 ID.Kind = ValID::t_Constant;
2043 return false;
2044
2045 case lltok::kw_asm: {
Dale Johannesen8ba2d5b2009-10-21 23:28:00 +00002046 // ValID ::= 'asm' SideEffect? AlignStack? STRINGCONSTANT ',' STRINGCONSTANT
2047 bool HasSideEffect, AlignStack;
Chris Lattnerdf986172009-01-02 07:01:27 +00002048 Lex.Lex();
2049 if (ParseOptionalToken(lltok::kw_sideeffect, HasSideEffect) ||
Dale Johannesen8ba2d5b2009-10-21 23:28:00 +00002050 ParseOptionalToken(lltok::kw_alignstack, AlignStack) ||
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002051 ParseStringConstant(ID.StrVal) ||
2052 ParseToken(lltok::comma, "expected comma in inline asm expression") ||
Chris Lattnerdf986172009-01-02 07:01:27 +00002053 ParseToken(lltok::StringConstant, "expected constraint string"))
2054 return true;
2055 ID.StrVal2 = Lex.getStrVal();
Daniel Dunbarf0bb41c2009-11-07 23:51:55 +00002056 ID.UIntVal = unsigned(HasSideEffect) | (unsigned(AlignStack)<<1);
Chris Lattnerdf986172009-01-02 07:01:27 +00002057 ID.Kind = ValID::t_InlineAsm;
2058 return false;
2059 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002060
Chris Lattner09d9ef42009-10-28 03:39:23 +00002061 case lltok::kw_blockaddress: {
2062 // ValID ::= 'blockaddress' '(' @foo ',' %bar ')'
2063 Lex.Lex();
2064
2065 ValID Fn, Label;
2066 LocTy FnLoc, LabelLoc;
2067
2068 if (ParseToken(lltok::lparen, "expected '(' in block address expression") ||
2069 ParseValID(Fn) ||
2070 ParseToken(lltok::comma, "expected comma in block address expression")||
2071 ParseValID(Label) ||
2072 ParseToken(lltok::rparen, "expected ')' in block address expression"))
2073 return true;
Chris Lattnercdfc9402009-11-01 01:27:45 +00002074
Chris Lattner09d9ef42009-10-28 03:39:23 +00002075 if (Fn.Kind != ValID::t_GlobalID && Fn.Kind != ValID::t_GlobalName)
2076 return Error(Fn.Loc, "expected function name in blockaddress");
Chris Lattnercdfc9402009-11-01 01:27:45 +00002077 if (Label.Kind != ValID::t_LocalID && Label.Kind != ValID::t_LocalName)
Chris Lattner09d9ef42009-10-28 03:39:23 +00002078 return Error(Label.Loc, "expected basic block name in blockaddress");
2079
2080 // Make a global variable as a placeholder for this reference.
2081 GlobalVariable *FwdRef = new GlobalVariable(*M, Type::getInt8Ty(Context),
2082 false, GlobalValue::InternalLinkage,
2083 0, "");
2084 ForwardRefBlockAddresses[Fn].push_back(std::make_pair(Label, FwdRef));
2085 ID.ConstantVal = FwdRef;
2086 ID.Kind = ValID::t_Constant;
2087 return false;
2088 }
2089
Chris Lattnerdf986172009-01-02 07:01:27 +00002090 case lltok::kw_trunc:
2091 case lltok::kw_zext:
2092 case lltok::kw_sext:
2093 case lltok::kw_fptrunc:
2094 case lltok::kw_fpext:
2095 case lltok::kw_bitcast:
2096 case lltok::kw_uitofp:
2097 case lltok::kw_sitofp:
2098 case lltok::kw_fptoui:
Daniel Dunbara279bc32009-09-20 02:20:51 +00002099 case lltok::kw_fptosi:
Chris Lattnerdf986172009-01-02 07:01:27 +00002100 case lltok::kw_inttoptr:
Daniel Dunbara279bc32009-09-20 02:20:51 +00002101 case lltok::kw_ptrtoint: {
Chris Lattnerdf986172009-01-02 07:01:27 +00002102 unsigned Opc = Lex.getUIntVal();
Owen Anderson1d0be152009-08-13 21:58:54 +00002103 PATypeHolder DestTy(Type::getVoidTy(Context));
Chris Lattnerdf986172009-01-02 07:01:27 +00002104 Constant *SrcVal;
2105 Lex.Lex();
2106 if (ParseToken(lltok::lparen, "expected '(' after constantexpr cast") ||
2107 ParseGlobalTypeAndValue(SrcVal) ||
Dan Gohman24b108b2009-06-15 21:52:11 +00002108 ParseToken(lltok::kw_to, "expected 'to' in constantexpr cast") ||
Chris Lattnerdf986172009-01-02 07:01:27 +00002109 ParseType(DestTy) ||
2110 ParseToken(lltok::rparen, "expected ')' at end of constantexpr cast"))
2111 return true;
2112 if (!CastInst::castIsValid((Instruction::CastOps)Opc, SrcVal, DestTy))
2113 return Error(ID.Loc, "invalid cast opcode for cast from '" +
2114 SrcVal->getType()->getDescription() + "' to '" +
2115 DestTy->getDescription() + "'");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002116 ID.ConstantVal = ConstantExpr::getCast((Instruction::CastOps)Opc,
Owen Andersonfba933c2009-07-01 23:57:11 +00002117 SrcVal, DestTy);
Chris Lattnerdf986172009-01-02 07:01:27 +00002118 ID.Kind = ValID::t_Constant;
2119 return false;
2120 }
2121 case lltok::kw_extractvalue: {
2122 Lex.Lex();
2123 Constant *Val;
2124 SmallVector<unsigned, 4> Indices;
2125 if (ParseToken(lltok::lparen, "expected '(' in extractvalue constantexpr")||
2126 ParseGlobalTypeAndValue(Val) ||
2127 ParseIndexList(Indices) ||
2128 ParseToken(lltok::rparen, "expected ')' in extractvalue constantexpr"))
2129 return true;
Devang Patele8bc45a2009-11-03 19:06:07 +00002130
Chris Lattnerdf986172009-01-02 07:01:27 +00002131 if (!isa<StructType>(Val->getType()) && !isa<ArrayType>(Val->getType()))
2132 return Error(ID.Loc, "extractvalue operand must be array or struct");
2133 if (!ExtractValueInst::getIndexedType(Val->getType(), Indices.begin(),
2134 Indices.end()))
2135 return Error(ID.Loc, "invalid indices for extractvalue");
Jay Foade3e51c02009-05-21 09:52:38 +00002136 ID.ConstantVal =
Owen Andersonbaf3c402009-07-29 18:55:55 +00002137 ConstantExpr::getExtractValue(Val, Indices.data(), Indices.size());
Chris Lattnerdf986172009-01-02 07:01:27 +00002138 ID.Kind = ValID::t_Constant;
2139 return false;
2140 }
2141 case lltok::kw_insertvalue: {
2142 Lex.Lex();
2143 Constant *Val0, *Val1;
2144 SmallVector<unsigned, 4> Indices;
2145 if (ParseToken(lltok::lparen, "expected '(' in insertvalue constantexpr")||
2146 ParseGlobalTypeAndValue(Val0) ||
2147 ParseToken(lltok::comma, "expected comma in insertvalue constantexpr")||
2148 ParseGlobalTypeAndValue(Val1) ||
2149 ParseIndexList(Indices) ||
2150 ParseToken(lltok::rparen, "expected ')' in insertvalue constantexpr"))
2151 return true;
2152 if (!isa<StructType>(Val0->getType()) && !isa<ArrayType>(Val0->getType()))
2153 return Error(ID.Loc, "extractvalue operand must be array or struct");
2154 if (!ExtractValueInst::getIndexedType(Val0->getType(), Indices.begin(),
2155 Indices.end()))
2156 return Error(ID.Loc, "invalid indices for insertvalue");
Owen Andersonbaf3c402009-07-29 18:55:55 +00002157 ID.ConstantVal = ConstantExpr::getInsertValue(Val0, Val1,
Owen Andersonfba933c2009-07-01 23:57:11 +00002158 Indices.data(), Indices.size());
Chris Lattnerdf986172009-01-02 07:01:27 +00002159 ID.Kind = ValID::t_Constant;
2160 return false;
2161 }
2162 case lltok::kw_icmp:
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00002163 case lltok::kw_fcmp: {
Chris Lattnerdf986172009-01-02 07:01:27 +00002164 unsigned PredVal, Opc = Lex.getUIntVal();
2165 Constant *Val0, *Val1;
2166 Lex.Lex();
2167 if (ParseCmpPredicate(PredVal, Opc) ||
2168 ParseToken(lltok::lparen, "expected '(' in compare constantexpr") ||
2169 ParseGlobalTypeAndValue(Val0) ||
2170 ParseToken(lltok::comma, "expected comma in compare constantexpr") ||
2171 ParseGlobalTypeAndValue(Val1) ||
2172 ParseToken(lltok::rparen, "expected ')' in compare constantexpr"))
2173 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002174
Chris Lattnerdf986172009-01-02 07:01:27 +00002175 if (Val0->getType() != Val1->getType())
2176 return Error(ID.Loc, "compare operands must have the same type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002177
Chris Lattnerdf986172009-01-02 07:01:27 +00002178 CmpInst::Predicate Pred = (CmpInst::Predicate)PredVal;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002179
Chris Lattnerdf986172009-01-02 07:01:27 +00002180 if (Opc == Instruction::FCmp) {
2181 if (!Val0->getType()->isFPOrFPVector())
2182 return Error(ID.Loc, "fcmp requires floating point operands");
Owen Andersonbaf3c402009-07-29 18:55:55 +00002183 ID.ConstantVal = ConstantExpr::getFCmp(Pred, Val0, Val1);
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00002184 } else {
2185 assert(Opc == Instruction::ICmp && "Unexpected opcode for CmpInst!");
Chris Lattnerdf986172009-01-02 07:01:27 +00002186 if (!Val0->getType()->isIntOrIntVector() &&
2187 !isa<PointerType>(Val0->getType()))
2188 return Error(ID.Loc, "icmp requires pointer or integer operands");
Owen Andersonbaf3c402009-07-29 18:55:55 +00002189 ID.ConstantVal = ConstantExpr::getICmp(Pred, Val0, Val1);
Chris Lattnerdf986172009-01-02 07:01:27 +00002190 }
2191 ID.Kind = ValID::t_Constant;
2192 return false;
2193 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002194
Chris Lattnerdf986172009-01-02 07:01:27 +00002195 // Binary Operators.
2196 case lltok::kw_add:
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002197 case lltok::kw_fadd:
Chris Lattnerdf986172009-01-02 07:01:27 +00002198 case lltok::kw_sub:
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002199 case lltok::kw_fsub:
Chris Lattnerdf986172009-01-02 07:01:27 +00002200 case lltok::kw_mul:
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002201 case lltok::kw_fmul:
Chris Lattnerdf986172009-01-02 07:01:27 +00002202 case lltok::kw_udiv:
2203 case lltok::kw_sdiv:
2204 case lltok::kw_fdiv:
2205 case lltok::kw_urem:
2206 case lltok::kw_srem:
2207 case lltok::kw_frem: {
Dan Gohman59858cf2009-07-27 16:11:46 +00002208 bool NUW = false;
2209 bool NSW = false;
2210 bool Exact = false;
Chris Lattnerdf986172009-01-02 07:01:27 +00002211 unsigned Opc = Lex.getUIntVal();
2212 Constant *Val0, *Val1;
2213 Lex.Lex();
Dan Gohman59858cf2009-07-27 16:11:46 +00002214 LocTy ModifierLoc = Lex.getLoc();
2215 if (Opc == Instruction::Add ||
2216 Opc == Instruction::Sub ||
2217 Opc == Instruction::Mul) {
2218 if (EatIfPresent(lltok::kw_nuw))
2219 NUW = true;
2220 if (EatIfPresent(lltok::kw_nsw)) {
2221 NSW = true;
2222 if (EatIfPresent(lltok::kw_nuw))
2223 NUW = true;
2224 }
2225 } else if (Opc == Instruction::SDiv) {
2226 if (EatIfPresent(lltok::kw_exact))
2227 Exact = true;
2228 }
Chris Lattnerdf986172009-01-02 07:01:27 +00002229 if (ParseToken(lltok::lparen, "expected '(' in binary constantexpr") ||
2230 ParseGlobalTypeAndValue(Val0) ||
2231 ParseToken(lltok::comma, "expected comma in binary constantexpr") ||
2232 ParseGlobalTypeAndValue(Val1) ||
2233 ParseToken(lltok::rparen, "expected ')' in binary constantexpr"))
2234 return true;
2235 if (Val0->getType() != Val1->getType())
2236 return Error(ID.Loc, "operands of constexpr must have same type");
Dan Gohman59858cf2009-07-27 16:11:46 +00002237 if (!Val0->getType()->isIntOrIntVector()) {
2238 if (NUW)
2239 return Error(ModifierLoc, "nuw only applies to integer operations");
2240 if (NSW)
2241 return Error(ModifierLoc, "nsw only applies to integer operations");
2242 }
2243 // API compatibility: Accept either integer or floating-point types with
2244 // add, sub, and mul.
Chris Lattnerdf986172009-01-02 07:01:27 +00002245 if (!Val0->getType()->isIntOrIntVector() &&
2246 !Val0->getType()->isFPOrFPVector())
2247 return Error(ID.Loc,"constexpr requires integer, fp, or vector operands");
Dan Gohmanf8dbee72009-09-07 23:54:19 +00002248 unsigned Flags = 0;
2249 if (NUW) Flags |= OverflowingBinaryOperator::NoUnsignedWrap;
2250 if (NSW) Flags |= OverflowingBinaryOperator::NoSignedWrap;
2251 if (Exact) Flags |= SDivOperator::IsExact;
2252 Constant *C = ConstantExpr::get(Opc, Val0, Val1, Flags);
Dan Gohman59858cf2009-07-27 16:11:46 +00002253 ID.ConstantVal = C;
Chris Lattnerdf986172009-01-02 07:01:27 +00002254 ID.Kind = ValID::t_Constant;
2255 return false;
2256 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002257
Chris Lattnerdf986172009-01-02 07:01:27 +00002258 // Logical Operations
2259 case lltok::kw_shl:
2260 case lltok::kw_lshr:
2261 case lltok::kw_ashr:
2262 case lltok::kw_and:
2263 case lltok::kw_or:
2264 case lltok::kw_xor: {
2265 unsigned Opc = Lex.getUIntVal();
2266 Constant *Val0, *Val1;
2267 Lex.Lex();
2268 if (ParseToken(lltok::lparen, "expected '(' in logical constantexpr") ||
2269 ParseGlobalTypeAndValue(Val0) ||
2270 ParseToken(lltok::comma, "expected comma in logical constantexpr") ||
2271 ParseGlobalTypeAndValue(Val1) ||
2272 ParseToken(lltok::rparen, "expected ')' in logical constantexpr"))
2273 return true;
2274 if (Val0->getType() != Val1->getType())
2275 return Error(ID.Loc, "operands of constexpr must have same type");
2276 if (!Val0->getType()->isIntOrIntVector())
2277 return Error(ID.Loc,
2278 "constexpr requires integer or integer vector operands");
Owen Andersonbaf3c402009-07-29 18:55:55 +00002279 ID.ConstantVal = ConstantExpr::get(Opc, Val0, Val1);
Chris Lattnerdf986172009-01-02 07:01:27 +00002280 ID.Kind = ValID::t_Constant;
2281 return false;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002282 }
2283
Chris Lattnerdf986172009-01-02 07:01:27 +00002284 case lltok::kw_getelementptr:
2285 case lltok::kw_shufflevector:
2286 case lltok::kw_insertelement:
2287 case lltok::kw_extractelement:
2288 case lltok::kw_select: {
2289 unsigned Opc = Lex.getUIntVal();
2290 SmallVector<Constant*, 16> Elts;
Dan Gohmandd8004d2009-07-27 21:53:46 +00002291 bool InBounds = false;
Chris Lattnerdf986172009-01-02 07:01:27 +00002292 Lex.Lex();
Dan Gohmandd8004d2009-07-27 21:53:46 +00002293 if (Opc == Instruction::GetElementPtr)
Dan Gohmandcb40a32009-07-29 15:58:36 +00002294 InBounds = EatIfPresent(lltok::kw_inbounds);
Chris Lattnerdf986172009-01-02 07:01:27 +00002295 if (ParseToken(lltok::lparen, "expected '(' in constantexpr") ||
2296 ParseGlobalValueVector(Elts) ||
2297 ParseToken(lltok::rparen, "expected ')' in constantexpr"))
2298 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002299
Chris Lattnerdf986172009-01-02 07:01:27 +00002300 if (Opc == Instruction::GetElementPtr) {
2301 if (Elts.size() == 0 || !isa<PointerType>(Elts[0]->getType()))
2302 return Error(ID.Loc, "getelementptr requires pointer operand");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002303
Chris Lattnerdf986172009-01-02 07:01:27 +00002304 if (!GetElementPtrInst::getIndexedType(Elts[0]->getType(),
Eli Friedman4e9bac32009-07-24 21:56:17 +00002305 (Value**)(Elts.data() + 1),
2306 Elts.size() - 1))
Chris Lattnerdf986172009-01-02 07:01:27 +00002307 return Error(ID.Loc, "invalid indices for getelementptr");
Dan Gohmanf8dbee72009-09-07 23:54:19 +00002308 ID.ConstantVal = InBounds ?
2309 ConstantExpr::getInBoundsGetElementPtr(Elts[0],
2310 Elts.data() + 1,
2311 Elts.size() - 1) :
2312 ConstantExpr::getGetElementPtr(Elts[0],
2313 Elts.data() + 1, Elts.size() - 1);
Chris Lattnerdf986172009-01-02 07:01:27 +00002314 } else if (Opc == Instruction::Select) {
2315 if (Elts.size() != 3)
2316 return Error(ID.Loc, "expected three operands to select");
2317 if (const char *Reason = SelectInst::areInvalidOperands(Elts[0], Elts[1],
2318 Elts[2]))
2319 return Error(ID.Loc, Reason);
Owen Andersonbaf3c402009-07-29 18:55:55 +00002320 ID.ConstantVal = ConstantExpr::getSelect(Elts[0], Elts[1], Elts[2]);
Chris Lattnerdf986172009-01-02 07:01:27 +00002321 } else if (Opc == Instruction::ShuffleVector) {
2322 if (Elts.size() != 3)
2323 return Error(ID.Loc, "expected three operands to shufflevector");
2324 if (!ShuffleVectorInst::isValidOperands(Elts[0], Elts[1], Elts[2]))
2325 return Error(ID.Loc, "invalid operands to shufflevector");
Owen Andersonfba933c2009-07-01 23:57:11 +00002326 ID.ConstantVal =
Owen Andersonbaf3c402009-07-29 18:55:55 +00002327 ConstantExpr::getShuffleVector(Elts[0], Elts[1],Elts[2]);
Chris Lattnerdf986172009-01-02 07:01:27 +00002328 } else if (Opc == Instruction::ExtractElement) {
2329 if (Elts.size() != 2)
2330 return Error(ID.Loc, "expected two operands to extractelement");
2331 if (!ExtractElementInst::isValidOperands(Elts[0], Elts[1]))
2332 return Error(ID.Loc, "invalid extractelement operands");
Owen Andersonbaf3c402009-07-29 18:55:55 +00002333 ID.ConstantVal = ConstantExpr::getExtractElement(Elts[0], Elts[1]);
Chris Lattnerdf986172009-01-02 07:01:27 +00002334 } else {
2335 assert(Opc == Instruction::InsertElement && "Unknown opcode");
2336 if (Elts.size() != 3)
2337 return Error(ID.Loc, "expected three operands to insertelement");
2338 if (!InsertElementInst::isValidOperands(Elts[0], Elts[1], Elts[2]))
2339 return Error(ID.Loc, "invalid insertelement operands");
Owen Andersonfba933c2009-07-01 23:57:11 +00002340 ID.ConstantVal =
Owen Andersonbaf3c402009-07-29 18:55:55 +00002341 ConstantExpr::getInsertElement(Elts[0], Elts[1],Elts[2]);
Chris Lattnerdf986172009-01-02 07:01:27 +00002342 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002343
Chris Lattnerdf986172009-01-02 07:01:27 +00002344 ID.Kind = ValID::t_Constant;
2345 return false;
2346 }
2347 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002348
Chris Lattnerdf986172009-01-02 07:01:27 +00002349 Lex.Lex();
2350 return false;
2351}
2352
2353/// ParseGlobalValue - Parse a global value with the specified type.
2354bool LLParser::ParseGlobalValue(const Type *Ty, Constant *&V) {
2355 V = 0;
2356 ValID ID;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002357 return ParseValID(ID) ||
2358 ConvertGlobalValIDToValue(Ty, ID, V);
Chris Lattnerdf986172009-01-02 07:01:27 +00002359}
2360
2361/// ConvertGlobalValIDToValue - Apply a type to a ValID to get a fully resolved
2362/// constant.
2363bool LLParser::ConvertGlobalValIDToValue(const Type *Ty, ValID &ID,
2364 Constant *&V) {
2365 if (isa<FunctionType>(Ty))
2366 return Error(ID.Loc, "functions are not values, refer to them as pointers");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002367
Chris Lattnerdf986172009-01-02 07:01:27 +00002368 switch (ID.Kind) {
Daniel Dunbara279bc32009-09-20 02:20:51 +00002369 default: llvm_unreachable("Unknown ValID!");
Chris Lattner287881d2009-12-30 02:11:14 +00002370 case ValID::t_MDNode:
2371 case ValID::t_MDString:
Devang Patele54abc92009-07-22 17:43:22 +00002372 return Error(ID.Loc, "invalid use of metadata");
Chris Lattnerdf986172009-01-02 07:01:27 +00002373 case ValID::t_LocalID:
2374 case ValID::t_LocalName:
2375 return Error(ID.Loc, "invalid use of function-local name");
2376 case ValID::t_InlineAsm:
2377 return Error(ID.Loc, "inline asm can only be an operand of call/invoke");
2378 case ValID::t_GlobalName:
2379 V = GetGlobalVal(ID.StrVal, Ty, ID.Loc);
2380 return V == 0;
2381 case ValID::t_GlobalID:
2382 V = GetGlobalVal(ID.UIntVal, Ty, ID.Loc);
2383 return V == 0;
2384 case ValID::t_APSInt:
2385 if (!isa<IntegerType>(Ty))
2386 return Error(ID.Loc, "integer constant must have integer type");
2387 ID.APSIntVal.extOrTrunc(Ty->getPrimitiveSizeInBits());
Owen Andersoneed707b2009-07-24 23:12:02 +00002388 V = ConstantInt::get(Context, ID.APSIntVal);
Chris Lattnerdf986172009-01-02 07:01:27 +00002389 return false;
2390 case ValID::t_APFloat:
2391 if (!Ty->isFloatingPoint() ||
2392 !ConstantFP::isValueValidForType(Ty, ID.APFloatVal))
2393 return Error(ID.Loc, "floating point constant invalid for type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002394
Chris Lattnerdf986172009-01-02 07:01:27 +00002395 // The lexer has no type info, so builds all float and double FP constants
2396 // as double. Fix this here. Long double does not need this.
2397 if (&ID.APFloatVal.getSemantics() == &APFloat::IEEEdouble &&
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00002398 Ty->isFloatTy()) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002399 bool Ignored;
2400 ID.APFloatVal.convert(APFloat::IEEEsingle, APFloat::rmNearestTiesToEven,
2401 &Ignored);
2402 }
Owen Anderson6f83c9c2009-07-27 20:59:43 +00002403 V = ConstantFP::get(Context, ID.APFloatVal);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002404
Chris Lattner959873d2009-01-05 18:24:23 +00002405 if (V->getType() != Ty)
2406 return Error(ID.Loc, "floating point constant does not have type '" +
2407 Ty->getDescription() + "'");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002408
Chris Lattnerdf986172009-01-02 07:01:27 +00002409 return false;
2410 case ValID::t_Null:
2411 if (!isa<PointerType>(Ty))
2412 return Error(ID.Loc, "null must be a pointer type");
Owen Anderson9e9a0d52009-07-30 23:03:37 +00002413 V = ConstantPointerNull::get(cast<PointerType>(Ty));
Chris Lattnerdf986172009-01-02 07:01:27 +00002414 return false;
2415 case ValID::t_Undef:
Chris Lattnere67c1aa2009-01-05 08:13:38 +00002416 // FIXME: LabelTy should not be a first-class type.
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00002417 if ((!Ty->isFirstClassType() || Ty->isLabelTy()) &&
Chris Lattner0b616352009-01-05 18:12:21 +00002418 !isa<OpaqueType>(Ty))
Chris Lattnere67c1aa2009-01-05 08:13:38 +00002419 return Error(ID.Loc, "invalid type for undef constant");
Owen Anderson9e9a0d52009-07-30 23:03:37 +00002420 V = UndefValue::get(Ty);
Chris Lattnerdf986172009-01-02 07:01:27 +00002421 return false;
Chris Lattner081b5052009-01-05 07:52:51 +00002422 case ValID::t_EmptyArray:
2423 if (!isa<ArrayType>(Ty) || cast<ArrayType>(Ty)->getNumElements() != 0)
2424 return Error(ID.Loc, "invalid empty array initializer");
Owen Anderson9e9a0d52009-07-30 23:03:37 +00002425 V = UndefValue::get(Ty);
Chris Lattner081b5052009-01-05 07:52:51 +00002426 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00002427 case ValID::t_Zero:
Chris Lattnere67c1aa2009-01-05 08:13:38 +00002428 // FIXME: LabelTy should not be a first-class type.
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00002429 if (!Ty->isFirstClassType() || Ty->isLabelTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002430 return Error(ID.Loc, "invalid type for null constant");
Owen Andersona7235ea2009-07-31 20:28:14 +00002431 V = Constant::getNullValue(Ty);
Chris Lattnerdf986172009-01-02 07:01:27 +00002432 return false;
2433 case ValID::t_Constant:
2434 if (ID.ConstantVal->getType() != Ty)
2435 return Error(ID.Loc, "constant expression type mismatch");
2436 V = ID.ConstantVal;
2437 return false;
2438 }
2439}
Daniel Dunbara279bc32009-09-20 02:20:51 +00002440
Chris Lattnera7352392009-12-30 04:42:57 +00002441/// ConvertGlobalOrMetadataValIDToValue - Apply a type to a ValID to get a fully
2442/// resolved constant or metadata value.
2443bool LLParser::ConvertGlobalOrMetadataValIDToValue(const Type *Ty, ValID &ID,
2444 Value *&V) {
2445 switch (ID.Kind) {
2446 case ValID::t_MDNode:
2447 if (!Ty->isMetadataTy())
2448 return Error(ID.Loc, "metadata value must have metadata type");
2449 V = ID.MDNodeVal;
2450 return false;
2451 case ValID::t_MDString:
2452 if (!Ty->isMetadataTy())
2453 return Error(ID.Loc, "metadata value must have metadata type");
2454 V = ID.MDStringVal;
2455 return false;
2456 default:
2457 Constant *C;
2458 if (ConvertGlobalValIDToValue(Ty, ID, C)) return true;
2459 V = C;
2460 return false;
2461 }
2462}
2463
2464
Chris Lattnerdf986172009-01-02 07:01:27 +00002465bool LLParser::ParseGlobalTypeAndValue(Constant *&V) {
Owen Anderson1d0be152009-08-13 21:58:54 +00002466 PATypeHolder Type(Type::getVoidTy(Context));
Chris Lattnerdf986172009-01-02 07:01:27 +00002467 return ParseType(Type) ||
2468 ParseGlobalValue(Type, V);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002469}
Chris Lattnerdf986172009-01-02 07:01:27 +00002470
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002471/// ParseGlobalValueVector
2472/// ::= /*empty*/
2473/// ::= TypeAndValue (',' TypeAndValue)*
Chris Lattnerdf986172009-01-02 07:01:27 +00002474bool LLParser::ParseGlobalValueVector(SmallVectorImpl<Constant*> &Elts) {
2475 // Empty list.
2476 if (Lex.getKind() == lltok::rbrace ||
2477 Lex.getKind() == lltok::rsquare ||
2478 Lex.getKind() == lltok::greater ||
2479 Lex.getKind() == lltok::rparen)
2480 return false;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002481
Chris Lattnerdf986172009-01-02 07:01:27 +00002482 Constant *C;
2483 if (ParseGlobalTypeAndValue(C)) return true;
2484 Elts.push_back(C);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002485
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002486 while (EatIfPresent(lltok::comma)) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002487 if (ParseGlobalTypeAndValue(C)) return true;
2488 Elts.push_back(C);
2489 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002490
Chris Lattnerdf986172009-01-02 07:01:27 +00002491 return false;
2492}
2493
2494
2495//===----------------------------------------------------------------------===//
2496// Function Parsing.
2497//===----------------------------------------------------------------------===//
2498
2499bool LLParser::ConvertValIDToValue(const Type *Ty, ValID &ID, Value *&V,
2500 PerFunctionState &PFS) {
Chris Lattner287881d2009-12-30 02:11:14 +00002501 switch (ID.Kind) {
2502 case ValID::t_LocalID: V = PFS.GetVal(ID.UIntVal, Ty, ID.Loc); break;
2503 case ValID::t_LocalName: V = PFS.GetVal(ID.StrVal, Ty, ID.Loc); break;
Chris Lattner287881d2009-12-30 02:11:14 +00002504 case ValID::t_InlineAsm: {
Chris Lattnerdf986172009-01-02 07:01:27 +00002505 const PointerType *PTy = dyn_cast<PointerType>(Ty);
Chris Lattnerc49363b2009-12-30 02:20:07 +00002506 const FunctionType *FTy =
2507 PTy ? dyn_cast<FunctionType>(PTy->getElementType()) : 0;
Chris Lattnerdf986172009-01-02 07:01:27 +00002508 if (!FTy || !InlineAsm::Verify(FTy, ID.StrVal2))
2509 return Error(ID.Loc, "invalid type for inline asm constraint string");
Dale Johannesen43602982009-10-13 20:46:56 +00002510 V = InlineAsm::get(FTy, ID.StrVal, ID.StrVal2, ID.UIntVal&1, ID.UIntVal>>1);
Chris Lattnerdf986172009-01-02 07:01:27 +00002511 return false;
Chris Lattner287881d2009-12-30 02:11:14 +00002512 }
Chris Lattnera7352392009-12-30 04:42:57 +00002513 default:
2514 return ConvertGlobalOrMetadataValIDToValue(Ty, ID, V);
Chris Lattner287881d2009-12-30 02:11:14 +00002515 }
Chris Lattnerdf986172009-01-02 07:01:27 +00002516
2517 return V == 0;
2518}
2519
2520bool LLParser::ParseValue(const Type *Ty, Value *&V, PerFunctionState &PFS) {
2521 V = 0;
2522 ValID ID;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002523 return ParseValID(ID) ||
2524 ConvertValIDToValue(Ty, ID, V, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00002525}
2526
2527bool LLParser::ParseTypeAndValue(Value *&V, PerFunctionState &PFS) {
Owen Anderson1d0be152009-08-13 21:58:54 +00002528 PATypeHolder T(Type::getVoidTy(Context));
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002529 return ParseType(T) ||
2530 ParseValue(T, V, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00002531}
2532
Chris Lattnerf9be95f2009-10-27 19:13:16 +00002533bool LLParser::ParseTypeAndBasicBlock(BasicBlock *&BB, LocTy &Loc,
2534 PerFunctionState &PFS) {
2535 Value *V;
2536 Loc = Lex.getLoc();
2537 if (ParseTypeAndValue(V, PFS)) return true;
2538 if (!isa<BasicBlock>(V))
2539 return Error(Loc, "expected a basic block");
2540 BB = cast<BasicBlock>(V);
2541 return false;
2542}
2543
2544
Chris Lattnerdf986172009-01-02 07:01:27 +00002545/// FunctionHeader
2546/// ::= OptionalLinkage OptionalVisibility OptionalCallingConv OptRetAttrs
2547/// Type GlobalName '(' ArgList ')' OptFuncAttrs OptSection
2548/// OptionalAlign OptGC
2549bool LLParser::ParseFunctionHeader(Function *&Fn, bool isDefine) {
2550 // Parse the linkage.
2551 LocTy LinkageLoc = Lex.getLoc();
2552 unsigned Linkage;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002553
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00002554 unsigned Visibility, RetAttrs;
2555 CallingConv::ID CC;
Owen Anderson1d0be152009-08-13 21:58:54 +00002556 PATypeHolder RetType(Type::getVoidTy(Context));
Chris Lattnerdf986172009-01-02 07:01:27 +00002557 LocTy RetTypeLoc = Lex.getLoc();
2558 if (ParseOptionalLinkage(Linkage) ||
2559 ParseOptionalVisibility(Visibility) ||
2560 ParseOptionalCallingConv(CC) ||
2561 ParseOptionalAttrs(RetAttrs, 1) ||
Chris Lattnera9a9e072009-03-09 04:49:14 +00002562 ParseType(RetType, RetTypeLoc, true /*void allowed*/))
Chris Lattnerdf986172009-01-02 07:01:27 +00002563 return true;
2564
2565 // Verify that the linkage is ok.
2566 switch ((GlobalValue::LinkageTypes)Linkage) {
2567 case GlobalValue::ExternalLinkage:
2568 break; // always ok.
2569 case GlobalValue::DLLImportLinkage:
Duncan Sands5f4ee1f2009-03-11 08:08:06 +00002570 case GlobalValue::ExternalWeakLinkage:
Chris Lattnerdf986172009-01-02 07:01:27 +00002571 if (isDefine)
2572 return Error(LinkageLoc, "invalid linkage for function definition");
2573 break;
Rafael Espindolabb46f522009-01-15 20:18:42 +00002574 case GlobalValue::PrivateLinkage:
Bill Wendling3d10a5a2009-07-20 01:03:30 +00002575 case GlobalValue::LinkerPrivateLinkage:
Chris Lattnerdf986172009-01-02 07:01:27 +00002576 case GlobalValue::InternalLinkage:
Nick Lewycky55f64db2009-04-13 07:02:02 +00002577 case GlobalValue::AvailableExternallyLinkage:
Duncan Sands667d4b82009-03-07 15:45:40 +00002578 case GlobalValue::LinkOnceAnyLinkage:
2579 case GlobalValue::LinkOnceODRLinkage:
2580 case GlobalValue::WeakAnyLinkage:
2581 case GlobalValue::WeakODRLinkage:
Chris Lattnerdf986172009-01-02 07:01:27 +00002582 case GlobalValue::DLLExportLinkage:
2583 if (!isDefine)
2584 return Error(LinkageLoc, "invalid linkage for function declaration");
2585 break;
2586 case GlobalValue::AppendingLinkage:
2587 case GlobalValue::GhostLinkage:
Duncan Sands4dc2b392009-03-11 20:14:15 +00002588 case GlobalValue::CommonLinkage:
Chris Lattnerdf986172009-01-02 07:01:27 +00002589 return Error(LinkageLoc, "invalid function linkage type");
2590 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002591
Chris Lattner99bb3152009-01-05 08:00:30 +00002592 if (!FunctionType::isValidReturnType(RetType) ||
2593 isa<OpaqueType>(RetType))
Chris Lattnerdf986172009-01-02 07:01:27 +00002594 return Error(RetTypeLoc, "invalid function return type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002595
Chris Lattnerdf986172009-01-02 07:01:27 +00002596 LocTy NameLoc = Lex.getLoc();
Chris Lattnerf570e622009-02-18 21:48:13 +00002597
2598 std::string FunctionName;
2599 if (Lex.getKind() == lltok::GlobalVar) {
2600 FunctionName = Lex.getStrVal();
2601 } else if (Lex.getKind() == lltok::GlobalID) { // @42 is ok.
2602 unsigned NameID = Lex.getUIntVal();
2603
2604 if (NameID != NumberedVals.size())
2605 return TokError("function expected to be numbered '%" +
2606 utostr(NumberedVals.size()) + "'");
2607 } else {
2608 return TokError("expected function name");
2609 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002610
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002611 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +00002612
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002613 if (Lex.getKind() != lltok::lparen)
Chris Lattnerdf986172009-01-02 07:01:27 +00002614 return TokError("expected '(' in function argument list");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002615
Chris Lattnerdf986172009-01-02 07:01:27 +00002616 std::vector<ArgInfo> ArgList;
2617 bool isVarArg;
Chris Lattnerdf986172009-01-02 07:01:27 +00002618 unsigned FuncAttrs;
Chris Lattnerdf986172009-01-02 07:01:27 +00002619 std::string Section;
Chris Lattnerdf986172009-01-02 07:01:27 +00002620 unsigned Alignment;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002621 std::string GC;
2622
Chris Lattnerdfd19dd2009-01-05 18:34:07 +00002623 if (ParseArgumentList(ArgList, isVarArg, false) ||
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002624 ParseOptionalAttrs(FuncAttrs, 2) ||
2625 (EatIfPresent(lltok::kw_section) &&
2626 ParseStringConstant(Section)) ||
2627 ParseOptionalAlignment(Alignment) ||
2628 (EatIfPresent(lltok::kw_gc) &&
2629 ParseStringConstant(GC)))
2630 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00002631
2632 // If the alignment was parsed as an attribute, move to the alignment field.
2633 if (FuncAttrs & Attribute::Alignment) {
2634 Alignment = Attribute::getAlignmentFromAttrs(FuncAttrs);
2635 FuncAttrs &= ~Attribute::Alignment;
2636 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002637
Chris Lattnerdf986172009-01-02 07:01:27 +00002638 // Okay, if we got here, the function is syntactically valid. Convert types
2639 // and do semantic checks.
2640 std::vector<const Type*> ParamTypeList;
2641 SmallVector<AttributeWithIndex, 8> Attrs;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002642 // FIXME : In 3.0, stop accepting zext, sext and inreg as optional function
Chris Lattnerdf986172009-01-02 07:01:27 +00002643 // attributes.
2644 unsigned ObsoleteFuncAttrs = Attribute::ZExt|Attribute::SExt|Attribute::InReg;
2645 if (FuncAttrs & ObsoleteFuncAttrs) {
2646 RetAttrs |= FuncAttrs & ObsoleteFuncAttrs;
2647 FuncAttrs &= ~ObsoleteFuncAttrs;
2648 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002649
Chris Lattnerdf986172009-01-02 07:01:27 +00002650 if (RetAttrs != Attribute::None)
2651 Attrs.push_back(AttributeWithIndex::get(0, RetAttrs));
Daniel Dunbara279bc32009-09-20 02:20:51 +00002652
Chris Lattnerdf986172009-01-02 07:01:27 +00002653 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
2654 ParamTypeList.push_back(ArgList[i].Type);
2655 if (ArgList[i].Attrs != Attribute::None)
2656 Attrs.push_back(AttributeWithIndex::get(i+1, ArgList[i].Attrs));
2657 }
2658
2659 if (FuncAttrs != Attribute::None)
2660 Attrs.push_back(AttributeWithIndex::get(~0, FuncAttrs));
2661
2662 AttrListPtr PAL = AttrListPtr::get(Attrs.begin(), Attrs.end());
Daniel Dunbara279bc32009-09-20 02:20:51 +00002663
Benjamin Kramerf0127052010-01-05 13:12:22 +00002664 if (PAL.paramHasAttr(1, Attribute::StructRet) && !RetType->isVoidTy())
Daniel Dunbara279bc32009-09-20 02:20:51 +00002665 return Error(RetTypeLoc, "functions with 'sret' argument must return void");
2666
Owen Andersonfba933c2009-07-01 23:57:11 +00002667 const FunctionType *FT =
Owen Andersondebcb012009-07-29 22:17:13 +00002668 FunctionType::get(RetType, ParamTypeList, isVarArg);
2669 const PointerType *PFT = PointerType::getUnqual(FT);
Chris Lattnerdf986172009-01-02 07:01:27 +00002670
2671 Fn = 0;
2672 if (!FunctionName.empty()) {
2673 // If this was a definition of a forward reference, remove the definition
2674 // from the forward reference table and fill in the forward ref.
2675 std::map<std::string, std::pair<GlobalValue*, LocTy> >::iterator FRVI =
2676 ForwardRefVals.find(FunctionName);
2677 if (FRVI != ForwardRefVals.end()) {
2678 Fn = M->getFunction(FunctionName);
2679 ForwardRefVals.erase(FRVI);
2680 } else if ((Fn = M->getFunction(FunctionName))) {
2681 // If this function already exists in the symbol table, then it is
2682 // multiply defined. We accept a few cases for old backwards compat.
2683 // FIXME: Remove this stuff for LLVM 3.0.
2684 if (Fn->getType() != PFT || Fn->getAttributes() != PAL ||
2685 (!Fn->isDeclaration() && isDefine)) {
2686 // If the redefinition has different type or different attributes,
2687 // reject it. If both have bodies, reject it.
2688 return Error(NameLoc, "invalid redefinition of function '" +
2689 FunctionName + "'");
2690 } else if (Fn->isDeclaration()) {
2691 // Make sure to strip off any argument names so we can't get conflicts.
2692 for (Function::arg_iterator AI = Fn->arg_begin(), AE = Fn->arg_end();
2693 AI != AE; ++AI)
2694 AI->setName("");
2695 }
Chris Lattner1d871c52009-10-25 23:22:50 +00002696 } else if (M->getNamedValue(FunctionName)) {
2697 return Error(NameLoc, "redefinition of function '@" + FunctionName + "'");
Chris Lattnerdf986172009-01-02 07:01:27 +00002698 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002699
Dan Gohman41905542009-08-29 23:37:49 +00002700 } else {
Chris Lattnerdf986172009-01-02 07:01:27 +00002701 // If this is a definition of a forward referenced function, make sure the
2702 // types agree.
2703 std::map<unsigned, std::pair<GlobalValue*, LocTy> >::iterator I
2704 = ForwardRefValIDs.find(NumberedVals.size());
2705 if (I != ForwardRefValIDs.end()) {
2706 Fn = cast<Function>(I->second.first);
2707 if (Fn->getType() != PFT)
2708 return Error(NameLoc, "type of definition and forward reference of '@" +
2709 utostr(NumberedVals.size()) +"' disagree");
2710 ForwardRefValIDs.erase(I);
2711 }
2712 }
2713
2714 if (Fn == 0)
2715 Fn = Function::Create(FT, GlobalValue::ExternalLinkage, FunctionName, M);
2716 else // Move the forward-reference to the correct spot in the module.
2717 M->getFunctionList().splice(M->end(), M->getFunctionList(), Fn);
2718
2719 if (FunctionName.empty())
2720 NumberedVals.push_back(Fn);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002721
Chris Lattnerdf986172009-01-02 07:01:27 +00002722 Fn->setLinkage((GlobalValue::LinkageTypes)Linkage);
2723 Fn->setVisibility((GlobalValue::VisibilityTypes)Visibility);
2724 Fn->setCallingConv(CC);
2725 Fn->setAttributes(PAL);
2726 Fn->setAlignment(Alignment);
2727 Fn->setSection(Section);
2728 if (!GC.empty()) Fn->setGC(GC.c_str());
Daniel Dunbara279bc32009-09-20 02:20:51 +00002729
Chris Lattnerdf986172009-01-02 07:01:27 +00002730 // Add all of the arguments we parsed to the function.
2731 Function::arg_iterator ArgIt = Fn->arg_begin();
2732 for (unsigned i = 0, e = ArgList.size(); i != e; ++i, ++ArgIt) {
Chris Lattner5bda3792009-11-26 22:48:23 +00002733 // If we run out of arguments in the Function prototype, exit early.
2734 // FIXME: REMOVE THIS IN LLVM 3.0, this is just for the mismatch case above.
2735 if (ArgIt == Fn->arg_end()) break;
2736
Chris Lattnerdf986172009-01-02 07:01:27 +00002737 // If the argument has a name, insert it into the argument symbol table.
2738 if (ArgList[i].Name.empty()) continue;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002739
Chris Lattnerdf986172009-01-02 07:01:27 +00002740 // Set the name, if it conflicted, it will be auto-renamed.
2741 ArgIt->setName(ArgList[i].Name);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002742
Chris Lattnerdf986172009-01-02 07:01:27 +00002743 if (ArgIt->getNameStr() != ArgList[i].Name)
2744 return Error(ArgList[i].Loc, "redefinition of argument '%" +
2745 ArgList[i].Name + "'");
2746 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002747
Chris Lattnerdf986172009-01-02 07:01:27 +00002748 return false;
2749}
2750
2751
2752/// ParseFunctionBody
2753/// ::= '{' BasicBlock+ '}'
2754/// ::= 'begin' BasicBlock+ 'end' // FIXME: remove in LLVM 3.0
2755///
2756bool LLParser::ParseFunctionBody(Function &Fn) {
2757 if (Lex.getKind() != lltok::lbrace && Lex.getKind() != lltok::kw_begin)
2758 return TokError("expected '{' in function body");
2759 Lex.Lex(); // eat the {.
Daniel Dunbara279bc32009-09-20 02:20:51 +00002760
Chris Lattner09d9ef42009-10-28 03:39:23 +00002761 int FunctionNumber = -1;
2762 if (!Fn.hasName()) FunctionNumber = NumberedVals.size()-1;
2763
2764 PerFunctionState PFS(*this, Fn, FunctionNumber);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002765
Chris Lattnerdf986172009-01-02 07:01:27 +00002766 while (Lex.getKind() != lltok::rbrace && Lex.getKind() != lltok::kw_end)
2767 if (ParseBasicBlock(PFS)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002768
Chris Lattnerdf986172009-01-02 07:01:27 +00002769 // Eat the }.
2770 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +00002771
Chris Lattnerdf986172009-01-02 07:01:27 +00002772 // Verify function is ok.
Chris Lattner09d9ef42009-10-28 03:39:23 +00002773 return PFS.FinishFunction();
Chris Lattnerdf986172009-01-02 07:01:27 +00002774}
2775
2776/// ParseBasicBlock
2777/// ::= LabelStr? Instruction*
2778bool LLParser::ParseBasicBlock(PerFunctionState &PFS) {
2779 // If this basic block starts out with a name, remember it.
2780 std::string Name;
2781 LocTy NameLoc = Lex.getLoc();
2782 if (Lex.getKind() == lltok::LabelStr) {
2783 Name = Lex.getStrVal();
2784 Lex.Lex();
2785 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002786
Chris Lattnerdf986172009-01-02 07:01:27 +00002787 BasicBlock *BB = PFS.DefineBB(Name, NameLoc);
2788 if (BB == 0) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002789
Chris Lattnerdf986172009-01-02 07:01:27 +00002790 std::string NameStr;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002791
Chris Lattnerdf986172009-01-02 07:01:27 +00002792 // Parse the instructions in this block until we get a terminator.
2793 Instruction *Inst;
Chris Lattner1340dd32009-12-30 05:48:36 +00002794 SmallVector<std::pair<unsigned, MDNode *>, 4> MetadataOnInst;
Chris Lattnerdf986172009-01-02 07:01:27 +00002795 do {
2796 // This instruction may have three possibilities for a name: a) none
2797 // specified, b) name specified "%foo =", c) number specified: "%4 =".
2798 LocTy NameLoc = Lex.getLoc();
2799 int NameID = -1;
2800 NameStr = "";
Daniel Dunbara279bc32009-09-20 02:20:51 +00002801
Chris Lattnerdf986172009-01-02 07:01:27 +00002802 if (Lex.getKind() == lltok::LocalVarID) {
2803 NameID = Lex.getUIntVal();
2804 Lex.Lex();
2805 if (ParseToken(lltok::equal, "expected '=' after instruction id"))
2806 return true;
2807 } else if (Lex.getKind() == lltok::LocalVar ||
2808 // FIXME: REMOVE IN LLVM 3.0
2809 Lex.getKind() == lltok::StringConstant) {
2810 NameStr = Lex.getStrVal();
2811 Lex.Lex();
2812 if (ParseToken(lltok::equal, "expected '=' after instruction name"))
2813 return true;
2814 }
Devang Patelf633a062009-09-17 23:04:48 +00002815
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00002816 switch (ParseInstruction(Inst, BB, PFS)) {
2817 default: assert(0 && "Unknown ParseInstruction result!");
2818 case InstError: return true;
2819 case InstNormal:
2820 // With a normal result, we check to see if the instruction is followed by
2821 // a comma and metadata.
2822 if (EatIfPresent(lltok::comma))
Chris Lattner1340dd32009-12-30 05:48:36 +00002823 if (ParseInstructionMetadata(MetadataOnInst))
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00002824 return true;
2825 break;
2826 case InstExtraComma:
2827 // If the instruction parser ate an extra comma at the end of it, it
2828 // *must* be followed by metadata.
Chris Lattner1340dd32009-12-30 05:48:36 +00002829 if (ParseInstructionMetadata(MetadataOnInst))
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00002830 return true;
2831 break;
2832 }
Devang Patelf633a062009-09-17 23:04:48 +00002833
2834 // Set metadata attached with this instruction.
Chris Lattner1340dd32009-12-30 05:48:36 +00002835 for (unsigned i = 0, e = MetadataOnInst.size(); i != e; ++i)
2836 Inst->setMetadata(MetadataOnInst[i].first, MetadataOnInst[i].second);
2837 MetadataOnInst.clear();
Devang Patelf633a062009-09-17 23:04:48 +00002838
Chris Lattnerdf986172009-01-02 07:01:27 +00002839 BB->getInstList().push_back(Inst);
2840
2841 // Set the name on the instruction.
2842 if (PFS.SetInstName(NameID, NameStr, NameLoc, Inst)) return true;
2843 } while (!isa<TerminatorInst>(Inst));
Daniel Dunbara279bc32009-09-20 02:20:51 +00002844
Chris Lattnerdf986172009-01-02 07:01:27 +00002845 return false;
2846}
2847
2848//===----------------------------------------------------------------------===//
2849// Instruction Parsing.
2850//===----------------------------------------------------------------------===//
2851
2852/// ParseInstruction - Parse one of the many different instructions.
2853///
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00002854int LLParser::ParseInstruction(Instruction *&Inst, BasicBlock *BB,
2855 PerFunctionState &PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002856 lltok::Kind Token = Lex.getKind();
2857 if (Token == lltok::Eof)
2858 return TokError("found end of file when expecting more instructions");
2859 LocTy Loc = Lex.getLoc();
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00002860 unsigned KeywordVal = Lex.getUIntVal();
Chris Lattnerdf986172009-01-02 07:01:27 +00002861 Lex.Lex(); // Eat the keyword.
Daniel Dunbara279bc32009-09-20 02:20:51 +00002862
Chris Lattnerdf986172009-01-02 07:01:27 +00002863 switch (Token) {
2864 default: return Error(Loc, "expected instruction opcode");
2865 // Terminator Instructions.
Owen Anderson1d0be152009-08-13 21:58:54 +00002866 case lltok::kw_unwind: Inst = new UnwindInst(Context); return false;
2867 case lltok::kw_unreachable: Inst = new UnreachableInst(Context); return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00002868 case lltok::kw_ret: return ParseRet(Inst, BB, PFS);
2869 case lltok::kw_br: return ParseBr(Inst, PFS);
2870 case lltok::kw_switch: return ParseSwitch(Inst, PFS);
Chris Lattnerab21db72009-10-28 00:19:10 +00002871 case lltok::kw_indirectbr: return ParseIndirectBr(Inst, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00002872 case lltok::kw_invoke: return ParseInvoke(Inst, PFS);
2873 // Binary Operators.
2874 case lltok::kw_add:
2875 case lltok::kw_sub:
Dan Gohman59858cf2009-07-27 16:11:46 +00002876 case lltok::kw_mul: {
2877 bool NUW = false;
2878 bool NSW = false;
2879 LocTy ModifierLoc = Lex.getLoc();
2880 if (EatIfPresent(lltok::kw_nuw))
2881 NUW = true;
2882 if (EatIfPresent(lltok::kw_nsw)) {
2883 NSW = true;
2884 if (EatIfPresent(lltok::kw_nuw))
2885 NUW = true;
2886 }
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002887 // API compatibility: Accept either integer or floating-point types.
Dan Gohman59858cf2009-07-27 16:11:46 +00002888 bool Result = ParseArithmetic(Inst, PFS, KeywordVal, 0);
2889 if (!Result) {
2890 if (!Inst->getType()->isIntOrIntVector()) {
2891 if (NUW)
2892 return Error(ModifierLoc, "nuw only applies to integer operations");
2893 if (NSW)
2894 return Error(ModifierLoc, "nsw only applies to integer operations");
2895 }
2896 if (NUW)
Dan Gohmanf8dbee72009-09-07 23:54:19 +00002897 cast<BinaryOperator>(Inst)->setHasNoUnsignedWrap(true);
Dan Gohman59858cf2009-07-27 16:11:46 +00002898 if (NSW)
Dan Gohmanf8dbee72009-09-07 23:54:19 +00002899 cast<BinaryOperator>(Inst)->setHasNoSignedWrap(true);
Dan Gohman59858cf2009-07-27 16:11:46 +00002900 }
2901 return Result;
2902 }
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002903 case lltok::kw_fadd:
2904 case lltok::kw_fsub:
2905 case lltok::kw_fmul: return ParseArithmetic(Inst, PFS, KeywordVal, 2);
2906
Dan Gohman59858cf2009-07-27 16:11:46 +00002907 case lltok::kw_sdiv: {
2908 bool Exact = false;
2909 if (EatIfPresent(lltok::kw_exact))
2910 Exact = true;
2911 bool Result = ParseArithmetic(Inst, PFS, KeywordVal, 1);
2912 if (!Result)
2913 if (Exact)
Dan Gohmanf8dbee72009-09-07 23:54:19 +00002914 cast<BinaryOperator>(Inst)->setIsExact(true);
Dan Gohman59858cf2009-07-27 16:11:46 +00002915 return Result;
2916 }
2917
Chris Lattnerdf986172009-01-02 07:01:27 +00002918 case lltok::kw_udiv:
Chris Lattnerdf986172009-01-02 07:01:27 +00002919 case lltok::kw_urem:
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00002920 case lltok::kw_srem: return ParseArithmetic(Inst, PFS, KeywordVal, 1);
Chris Lattnere914b592009-01-05 08:24:46 +00002921 case lltok::kw_fdiv:
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00002922 case lltok::kw_frem: return ParseArithmetic(Inst, PFS, KeywordVal, 2);
Chris Lattnerdf986172009-01-02 07:01:27 +00002923 case lltok::kw_shl:
2924 case lltok::kw_lshr:
2925 case lltok::kw_ashr:
2926 case lltok::kw_and:
2927 case lltok::kw_or:
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00002928 case lltok::kw_xor: return ParseLogical(Inst, PFS, KeywordVal);
Chris Lattnerdf986172009-01-02 07:01:27 +00002929 case lltok::kw_icmp:
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00002930 case lltok::kw_fcmp: return ParseCompare(Inst, PFS, KeywordVal);
Chris Lattnerdf986172009-01-02 07:01:27 +00002931 // Casts.
2932 case lltok::kw_trunc:
2933 case lltok::kw_zext:
2934 case lltok::kw_sext:
2935 case lltok::kw_fptrunc:
2936 case lltok::kw_fpext:
2937 case lltok::kw_bitcast:
2938 case lltok::kw_uitofp:
2939 case lltok::kw_sitofp:
2940 case lltok::kw_fptoui:
Daniel Dunbara279bc32009-09-20 02:20:51 +00002941 case lltok::kw_fptosi:
Chris Lattnerdf986172009-01-02 07:01:27 +00002942 case lltok::kw_inttoptr:
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00002943 case lltok::kw_ptrtoint: return ParseCast(Inst, PFS, KeywordVal);
Chris Lattnerdf986172009-01-02 07:01:27 +00002944 // Other.
2945 case lltok::kw_select: return ParseSelect(Inst, PFS);
Chris Lattner0088a5c2009-01-05 08:18:44 +00002946 case lltok::kw_va_arg: return ParseVA_Arg(Inst, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00002947 case lltok::kw_extractelement: return ParseExtractElement(Inst, PFS);
2948 case lltok::kw_insertelement: return ParseInsertElement(Inst, PFS);
2949 case lltok::kw_shufflevector: return ParseShuffleVector(Inst, PFS);
2950 case lltok::kw_phi: return ParsePHI(Inst, PFS);
2951 case lltok::kw_call: return ParseCall(Inst, PFS, false);
2952 case lltok::kw_tail: return ParseCall(Inst, PFS, true);
2953 // Memory.
Victor Hernandez13ad5aa2009-10-17 00:00:19 +00002954 case lltok::kw_alloca: return ParseAlloc(Inst, PFS);
2955 case lltok::kw_malloc: return ParseAlloc(Inst, PFS, BB, false);
Victor Hernandez66284e02009-10-24 04:23:03 +00002956 case lltok::kw_free: return ParseFree(Inst, PFS, BB);
Chris Lattnerdf986172009-01-02 07:01:27 +00002957 case lltok::kw_load: return ParseLoad(Inst, PFS, false);
2958 case lltok::kw_store: return ParseStore(Inst, PFS, false);
2959 case lltok::kw_volatile:
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002960 if (EatIfPresent(lltok::kw_load))
Chris Lattnerdf986172009-01-02 07:01:27 +00002961 return ParseLoad(Inst, PFS, true);
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002962 else if (EatIfPresent(lltok::kw_store))
Chris Lattnerdf986172009-01-02 07:01:27 +00002963 return ParseStore(Inst, PFS, true);
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002964 else
Chris Lattnerdf986172009-01-02 07:01:27 +00002965 return TokError("expected 'load' or 'store'");
Chris Lattnerdf986172009-01-02 07:01:27 +00002966 case lltok::kw_getresult: return ParseGetResult(Inst, PFS);
2967 case lltok::kw_getelementptr: return ParseGetElementPtr(Inst, PFS);
2968 case lltok::kw_extractvalue: return ParseExtractValue(Inst, PFS);
2969 case lltok::kw_insertvalue: return ParseInsertValue(Inst, PFS);
2970 }
2971}
2972
2973/// ParseCmpPredicate - Parse an integer or fp predicate, based on Kind.
2974bool LLParser::ParseCmpPredicate(unsigned &P, unsigned Opc) {
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00002975 if (Opc == Instruction::FCmp) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002976 switch (Lex.getKind()) {
2977 default: TokError("expected fcmp predicate (e.g. 'oeq')");
2978 case lltok::kw_oeq: P = CmpInst::FCMP_OEQ; break;
2979 case lltok::kw_one: P = CmpInst::FCMP_ONE; break;
2980 case lltok::kw_olt: P = CmpInst::FCMP_OLT; break;
2981 case lltok::kw_ogt: P = CmpInst::FCMP_OGT; break;
2982 case lltok::kw_ole: P = CmpInst::FCMP_OLE; break;
2983 case lltok::kw_oge: P = CmpInst::FCMP_OGE; break;
2984 case lltok::kw_ord: P = CmpInst::FCMP_ORD; break;
2985 case lltok::kw_uno: P = CmpInst::FCMP_UNO; break;
2986 case lltok::kw_ueq: P = CmpInst::FCMP_UEQ; break;
2987 case lltok::kw_une: P = CmpInst::FCMP_UNE; break;
2988 case lltok::kw_ult: P = CmpInst::FCMP_ULT; break;
2989 case lltok::kw_ugt: P = CmpInst::FCMP_UGT; break;
2990 case lltok::kw_ule: P = CmpInst::FCMP_ULE; break;
2991 case lltok::kw_uge: P = CmpInst::FCMP_UGE; break;
2992 case lltok::kw_true: P = CmpInst::FCMP_TRUE; break;
2993 case lltok::kw_false: P = CmpInst::FCMP_FALSE; break;
2994 }
2995 } else {
2996 switch (Lex.getKind()) {
2997 default: TokError("expected icmp predicate (e.g. 'eq')");
2998 case lltok::kw_eq: P = CmpInst::ICMP_EQ; break;
2999 case lltok::kw_ne: P = CmpInst::ICMP_NE; break;
3000 case lltok::kw_slt: P = CmpInst::ICMP_SLT; break;
3001 case lltok::kw_sgt: P = CmpInst::ICMP_SGT; break;
3002 case lltok::kw_sle: P = CmpInst::ICMP_SLE; break;
3003 case lltok::kw_sge: P = CmpInst::ICMP_SGE; break;
3004 case lltok::kw_ult: P = CmpInst::ICMP_ULT; break;
3005 case lltok::kw_ugt: P = CmpInst::ICMP_UGT; break;
3006 case lltok::kw_ule: P = CmpInst::ICMP_ULE; break;
3007 case lltok::kw_uge: P = CmpInst::ICMP_UGE; break;
3008 }
3009 }
3010 Lex.Lex();
3011 return false;
3012}
3013
3014//===----------------------------------------------------------------------===//
3015// Terminator Instructions.
3016//===----------------------------------------------------------------------===//
3017
3018/// ParseRet - Parse a return instruction.
Chris Lattner3f3a0f62009-12-29 21:25:40 +00003019/// ::= 'ret' void (',' !dbg, !1)*
3020/// ::= 'ret' TypeAndValue (',' !dbg, !1)*
3021/// ::= 'ret' TypeAndValue (',' TypeAndValue)+ (',' !dbg, !1)*
Devang Patelf633a062009-09-17 23:04:48 +00003022/// [[obsolete: LLVM 3.0]]
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00003023int LLParser::ParseRet(Instruction *&Inst, BasicBlock *BB,
3024 PerFunctionState &PFS) {
Owen Anderson1d0be152009-08-13 21:58:54 +00003025 PATypeHolder Ty(Type::getVoidTy(Context));
Chris Lattnera9a9e072009-03-09 04:49:14 +00003026 if (ParseType(Ty, true /*void allowed*/)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003027
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00003028 if (Ty->isVoidTy()) {
Owen Anderson1d0be152009-08-13 21:58:54 +00003029 Inst = ReturnInst::Create(Context);
Chris Lattnerdf986172009-01-02 07:01:27 +00003030 return false;
3031 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003032
Chris Lattnerdf986172009-01-02 07:01:27 +00003033 Value *RV;
3034 if (ParseValue(Ty, RV, PFS)) return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00003035
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00003036 bool ExtraComma = false;
Devang Patelf633a062009-09-17 23:04:48 +00003037 if (EatIfPresent(lltok::comma)) {
Devang Patel0475c912009-09-29 00:01:14 +00003038 // Parse optional custom metadata, e.g. !dbg
Chris Lattner1d928312009-12-30 05:02:06 +00003039 if (Lex.getKind() == lltok::MetadataVar) {
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00003040 ExtraComma = true;
Devang Patelf633a062009-09-17 23:04:48 +00003041 } else {
3042 // The normal case is one return value.
Chris Lattner3f3a0f62009-12-29 21:25:40 +00003043 // FIXME: LLVM 3.0 remove MRV support for 'ret i32 1, i32 2', requiring
3044 // use of 'ret {i32,i32} {i32 1, i32 2}'
Devang Patelf633a062009-09-17 23:04:48 +00003045 SmallVector<Value*, 8> RVs;
3046 RVs.push_back(RV);
Daniel Dunbara279bc32009-09-20 02:20:51 +00003047
Devang Patelf633a062009-09-17 23:04:48 +00003048 do {
Devang Patel0475c912009-09-29 00:01:14 +00003049 // If optional custom metadata, e.g. !dbg is seen then this is the
3050 // end of MRV.
Chris Lattner1d928312009-12-30 05:02:06 +00003051 if (Lex.getKind() == lltok::MetadataVar)
Daniel Dunbara279bc32009-09-20 02:20:51 +00003052 break;
3053 if (ParseTypeAndValue(RV, PFS)) return true;
3054 RVs.push_back(RV);
Devang Patelf633a062009-09-17 23:04:48 +00003055 } while (EatIfPresent(lltok::comma));
3056
3057 RV = UndefValue::get(PFS.getFunction().getReturnType());
3058 for (unsigned i = 0, e = RVs.size(); i != e; ++i) {
Daniel Dunbara279bc32009-09-20 02:20:51 +00003059 Instruction *I = InsertValueInst::Create(RV, RVs[i], i, "mrv");
3060 BB->getInstList().push_back(I);
3061 RV = I;
Devang Patelf633a062009-09-17 23:04:48 +00003062 }
Chris Lattnerdf986172009-01-02 07:01:27 +00003063 }
3064 }
Devang Patelf633a062009-09-17 23:04:48 +00003065
Owen Anderson1d0be152009-08-13 21:58:54 +00003066 Inst = ReturnInst::Create(Context, RV);
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00003067 return ExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerdf986172009-01-02 07:01:27 +00003068}
3069
3070
3071/// ParseBr
3072/// ::= 'br' TypeAndValue
3073/// ::= 'br' TypeAndValue ',' TypeAndValue ',' TypeAndValue
3074bool LLParser::ParseBr(Instruction *&Inst, PerFunctionState &PFS) {
3075 LocTy Loc, Loc2;
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003076 Value *Op0;
3077 BasicBlock *Op1, *Op2;
Chris Lattnerdf986172009-01-02 07:01:27 +00003078 if (ParseTypeAndValue(Op0, Loc, PFS)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003079
Chris Lattnerdf986172009-01-02 07:01:27 +00003080 if (BasicBlock *BB = dyn_cast<BasicBlock>(Op0)) {
3081 Inst = BranchInst::Create(BB);
3082 return false;
3083 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003084
Owen Anderson1d0be152009-08-13 21:58:54 +00003085 if (Op0->getType() != Type::getInt1Ty(Context))
Chris Lattnerdf986172009-01-02 07:01:27 +00003086 return Error(Loc, "branch condition must have 'i1' type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003087
Chris Lattnerdf986172009-01-02 07:01:27 +00003088 if (ParseToken(lltok::comma, "expected ',' after branch condition") ||
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003089 ParseTypeAndBasicBlock(Op1, Loc, PFS) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003090 ParseToken(lltok::comma, "expected ',' after true destination") ||
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003091 ParseTypeAndBasicBlock(Op2, Loc2, PFS))
Chris Lattnerdf986172009-01-02 07:01:27 +00003092 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003093
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003094 Inst = BranchInst::Create(Op1, Op2, Op0);
Chris Lattnerdf986172009-01-02 07:01:27 +00003095 return false;
3096}
3097
3098/// ParseSwitch
3099/// Instruction
3100/// ::= 'switch' TypeAndValue ',' TypeAndValue '[' JumpTable ']'
3101/// JumpTable
3102/// ::= (TypeAndValue ',' TypeAndValue)*
3103bool LLParser::ParseSwitch(Instruction *&Inst, PerFunctionState &PFS) {
3104 LocTy CondLoc, BBLoc;
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003105 Value *Cond;
3106 BasicBlock *DefaultBB;
Chris Lattnerdf986172009-01-02 07:01:27 +00003107 if (ParseTypeAndValue(Cond, CondLoc, PFS) ||
3108 ParseToken(lltok::comma, "expected ',' after switch condition") ||
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003109 ParseTypeAndBasicBlock(DefaultBB, BBLoc, PFS) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003110 ParseToken(lltok::lsquare, "expected '[' with switch table"))
3111 return true;
3112
3113 if (!isa<IntegerType>(Cond->getType()))
3114 return Error(CondLoc, "switch condition must have integer type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003115
Chris Lattnerdf986172009-01-02 07:01:27 +00003116 // Parse the jump table pairs.
3117 SmallPtrSet<Value*, 32> SeenCases;
3118 SmallVector<std::pair<ConstantInt*, BasicBlock*>, 32> Table;
3119 while (Lex.getKind() != lltok::rsquare) {
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003120 Value *Constant;
3121 BasicBlock *DestBB;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003122
Chris Lattnerdf986172009-01-02 07:01:27 +00003123 if (ParseTypeAndValue(Constant, CondLoc, PFS) ||
3124 ParseToken(lltok::comma, "expected ',' after case value") ||
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003125 ParseTypeAndBasicBlock(DestBB, PFS))
Chris Lattnerdf986172009-01-02 07:01:27 +00003126 return true;
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003127
Chris Lattnerdf986172009-01-02 07:01:27 +00003128 if (!SeenCases.insert(Constant))
3129 return Error(CondLoc, "duplicate case value in switch");
3130 if (!isa<ConstantInt>(Constant))
3131 return Error(CondLoc, "case value is not a constant integer");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003132
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003133 Table.push_back(std::make_pair(cast<ConstantInt>(Constant), DestBB));
Chris Lattnerdf986172009-01-02 07:01:27 +00003134 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003135
Chris Lattnerdf986172009-01-02 07:01:27 +00003136 Lex.Lex(); // Eat the ']'.
Daniel Dunbara279bc32009-09-20 02:20:51 +00003137
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003138 SwitchInst *SI = SwitchInst::Create(Cond, DefaultBB, Table.size());
Chris Lattnerdf986172009-01-02 07:01:27 +00003139 for (unsigned i = 0, e = Table.size(); i != e; ++i)
3140 SI->addCase(Table[i].first, Table[i].second);
3141 Inst = SI;
3142 return false;
3143}
3144
Chris Lattnerab21db72009-10-28 00:19:10 +00003145/// ParseIndirectBr
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003146/// Instruction
Chris Lattnerab21db72009-10-28 00:19:10 +00003147/// ::= 'indirectbr' TypeAndValue ',' '[' LabelList ']'
3148bool LLParser::ParseIndirectBr(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003149 LocTy AddrLoc;
3150 Value *Address;
3151 if (ParseTypeAndValue(Address, AddrLoc, PFS) ||
Chris Lattnerab21db72009-10-28 00:19:10 +00003152 ParseToken(lltok::comma, "expected ',' after indirectbr address") ||
3153 ParseToken(lltok::lsquare, "expected '[' with indirectbr"))
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003154 return true;
3155
3156 if (!isa<PointerType>(Address->getType()))
Chris Lattnerab21db72009-10-28 00:19:10 +00003157 return Error(AddrLoc, "indirectbr address must have pointer type");
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003158
3159 // Parse the destination list.
3160 SmallVector<BasicBlock*, 16> DestList;
3161
3162 if (Lex.getKind() != lltok::rsquare) {
3163 BasicBlock *DestBB;
3164 if (ParseTypeAndBasicBlock(DestBB, PFS))
3165 return true;
3166 DestList.push_back(DestBB);
3167
3168 while (EatIfPresent(lltok::comma)) {
3169 if (ParseTypeAndBasicBlock(DestBB, PFS))
3170 return true;
3171 DestList.push_back(DestBB);
3172 }
3173 }
3174
3175 if (ParseToken(lltok::rsquare, "expected ']' at end of block list"))
3176 return true;
3177
Chris Lattnerab21db72009-10-28 00:19:10 +00003178 IndirectBrInst *IBI = IndirectBrInst::Create(Address, DestList.size());
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003179 for (unsigned i = 0, e = DestList.size(); i != e; ++i)
3180 IBI->addDestination(DestList[i]);
3181 Inst = IBI;
3182 return false;
3183}
3184
3185
Chris Lattnerdf986172009-01-02 07:01:27 +00003186/// ParseInvoke
3187/// ::= 'invoke' OptionalCallingConv OptionalAttrs Type Value ParamList
3188/// OptionalAttrs 'to' TypeAndValue 'unwind' TypeAndValue
3189bool LLParser::ParseInvoke(Instruction *&Inst, PerFunctionState &PFS) {
3190 LocTy CallLoc = Lex.getLoc();
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00003191 unsigned RetAttrs, FnAttrs;
3192 CallingConv::ID CC;
Owen Anderson1d0be152009-08-13 21:58:54 +00003193 PATypeHolder RetType(Type::getVoidTy(Context));
Chris Lattnerdf986172009-01-02 07:01:27 +00003194 LocTy RetTypeLoc;
3195 ValID CalleeID;
3196 SmallVector<ParamInfo, 16> ArgList;
3197
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003198 BasicBlock *NormalBB, *UnwindBB;
Chris Lattnerdf986172009-01-02 07:01:27 +00003199 if (ParseOptionalCallingConv(CC) ||
3200 ParseOptionalAttrs(RetAttrs, 1) ||
Chris Lattnera9a9e072009-03-09 04:49:14 +00003201 ParseType(RetType, RetTypeLoc, true /*void allowed*/) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003202 ParseValID(CalleeID) ||
3203 ParseParameterList(ArgList, PFS) ||
3204 ParseOptionalAttrs(FnAttrs, 2) ||
3205 ParseToken(lltok::kw_to, "expected 'to' in invoke") ||
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003206 ParseTypeAndBasicBlock(NormalBB, PFS) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003207 ParseToken(lltok::kw_unwind, "expected 'unwind' in invoke") ||
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003208 ParseTypeAndBasicBlock(UnwindBB, PFS))
Chris Lattnerdf986172009-01-02 07:01:27 +00003209 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003210
Chris Lattnerdf986172009-01-02 07:01:27 +00003211 // If RetType is a non-function pointer type, then this is the short syntax
3212 // for the call, which means that RetType is just the return type. Infer the
3213 // rest of the function argument types from the arguments that are present.
3214 const PointerType *PFTy = 0;
3215 const FunctionType *Ty = 0;
3216 if (!(PFTy = dyn_cast<PointerType>(RetType)) ||
3217 !(Ty = dyn_cast<FunctionType>(PFTy->getElementType()))) {
3218 // Pull out the types of all of the arguments...
3219 std::vector<const Type*> ParamTypes;
3220 for (unsigned i = 0, e = ArgList.size(); i != e; ++i)
3221 ParamTypes.push_back(ArgList[i].V->getType());
Daniel Dunbara279bc32009-09-20 02:20:51 +00003222
Chris Lattnerdf986172009-01-02 07:01:27 +00003223 if (!FunctionType::isValidReturnType(RetType))
3224 return Error(RetTypeLoc, "Invalid result type for LLVM function");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003225
Owen Andersondebcb012009-07-29 22:17:13 +00003226 Ty = FunctionType::get(RetType, ParamTypes, false);
3227 PFTy = PointerType::getUnqual(Ty);
Chris Lattnerdf986172009-01-02 07:01:27 +00003228 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003229
Chris Lattnerdf986172009-01-02 07:01:27 +00003230 // Look up the callee.
3231 Value *Callee;
3232 if (ConvertValIDToValue(PFTy, CalleeID, Callee, PFS)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003233
Chris Lattnerdf986172009-01-02 07:01:27 +00003234 // FIXME: In LLVM 3.0, stop accepting zext, sext and inreg as optional
3235 // function attributes.
3236 unsigned ObsoleteFuncAttrs = Attribute::ZExt|Attribute::SExt|Attribute::InReg;
3237 if (FnAttrs & ObsoleteFuncAttrs) {
3238 RetAttrs |= FnAttrs & ObsoleteFuncAttrs;
3239 FnAttrs &= ~ObsoleteFuncAttrs;
3240 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003241
Chris Lattnerdf986172009-01-02 07:01:27 +00003242 // Set up the Attributes for the function.
3243 SmallVector<AttributeWithIndex, 8> Attrs;
3244 if (RetAttrs != Attribute::None)
3245 Attrs.push_back(AttributeWithIndex::get(0, RetAttrs));
Daniel Dunbara279bc32009-09-20 02:20:51 +00003246
Chris Lattnerdf986172009-01-02 07:01:27 +00003247 SmallVector<Value*, 8> Args;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003248
Chris Lattnerdf986172009-01-02 07:01:27 +00003249 // Loop through FunctionType's arguments and ensure they are specified
3250 // correctly. Also, gather any parameter attributes.
3251 FunctionType::param_iterator I = Ty->param_begin();
3252 FunctionType::param_iterator E = Ty->param_end();
3253 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
3254 const Type *ExpectedTy = 0;
3255 if (I != E) {
3256 ExpectedTy = *I++;
3257 } else if (!Ty->isVarArg()) {
3258 return Error(ArgList[i].Loc, "too many arguments specified");
3259 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003260
Chris Lattnerdf986172009-01-02 07:01:27 +00003261 if (ExpectedTy && ExpectedTy != ArgList[i].V->getType())
3262 return Error(ArgList[i].Loc, "argument is not of expected type '" +
3263 ExpectedTy->getDescription() + "'");
3264 Args.push_back(ArgList[i].V);
3265 if (ArgList[i].Attrs != Attribute::None)
3266 Attrs.push_back(AttributeWithIndex::get(i+1, ArgList[i].Attrs));
3267 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003268
Chris Lattnerdf986172009-01-02 07:01:27 +00003269 if (I != E)
3270 return Error(CallLoc, "not enough parameters specified for call");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003271
Chris Lattnerdf986172009-01-02 07:01:27 +00003272 if (FnAttrs != Attribute::None)
3273 Attrs.push_back(AttributeWithIndex::get(~0, FnAttrs));
Daniel Dunbara279bc32009-09-20 02:20:51 +00003274
Chris Lattnerdf986172009-01-02 07:01:27 +00003275 // Finish off the Attributes and check them
3276 AttrListPtr PAL = AttrListPtr::get(Attrs.begin(), Attrs.end());
Daniel Dunbara279bc32009-09-20 02:20:51 +00003277
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003278 InvokeInst *II = InvokeInst::Create(Callee, NormalBB, UnwindBB,
Chris Lattnerdf986172009-01-02 07:01:27 +00003279 Args.begin(), Args.end());
3280 II->setCallingConv(CC);
3281 II->setAttributes(PAL);
3282 Inst = II;
3283 return false;
3284}
3285
3286
3287
3288//===----------------------------------------------------------------------===//
3289// Binary Operators.
3290//===----------------------------------------------------------------------===//
3291
3292/// ParseArithmetic
Chris Lattnere914b592009-01-05 08:24:46 +00003293/// ::= ArithmeticOps TypeAndValue ',' Value
3294///
3295/// If OperandType is 0, then any FP or integer operand is allowed. If it is 1,
3296/// then any integer operand is allowed, if it is 2, any fp operand is allowed.
Chris Lattnerdf986172009-01-02 07:01:27 +00003297bool LLParser::ParseArithmetic(Instruction *&Inst, PerFunctionState &PFS,
Chris Lattnere914b592009-01-05 08:24:46 +00003298 unsigned Opc, unsigned OperandType) {
Chris Lattnerdf986172009-01-02 07:01:27 +00003299 LocTy Loc; Value *LHS, *RHS;
3300 if (ParseTypeAndValue(LHS, Loc, PFS) ||
3301 ParseToken(lltok::comma, "expected ',' in arithmetic operation") ||
3302 ParseValue(LHS->getType(), RHS, PFS))
3303 return true;
3304
Chris Lattnere914b592009-01-05 08:24:46 +00003305 bool Valid;
3306 switch (OperandType) {
Torok Edwinc23197a2009-07-14 16:55:14 +00003307 default: llvm_unreachable("Unknown operand type!");
Chris Lattnere914b592009-01-05 08:24:46 +00003308 case 0: // int or FP.
3309 Valid = LHS->getType()->isIntOrIntVector() ||
3310 LHS->getType()->isFPOrFPVector();
3311 break;
3312 case 1: Valid = LHS->getType()->isIntOrIntVector(); break;
3313 case 2: Valid = LHS->getType()->isFPOrFPVector(); break;
3314 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003315
Chris Lattnere914b592009-01-05 08:24:46 +00003316 if (!Valid)
3317 return Error(Loc, "invalid operand type for instruction");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003318
Chris Lattnerdf986172009-01-02 07:01:27 +00003319 Inst = BinaryOperator::Create((Instruction::BinaryOps)Opc, LHS, RHS);
3320 return false;
3321}
3322
3323/// ParseLogical
3324/// ::= ArithmeticOps TypeAndValue ',' Value {
3325bool LLParser::ParseLogical(Instruction *&Inst, PerFunctionState &PFS,
3326 unsigned Opc) {
3327 LocTy Loc; Value *LHS, *RHS;
3328 if (ParseTypeAndValue(LHS, Loc, PFS) ||
3329 ParseToken(lltok::comma, "expected ',' in logical operation") ||
3330 ParseValue(LHS->getType(), RHS, PFS))
3331 return true;
3332
3333 if (!LHS->getType()->isIntOrIntVector())
3334 return Error(Loc,"instruction requires integer or integer vector operands");
3335
3336 Inst = BinaryOperator::Create((Instruction::BinaryOps)Opc, LHS, RHS);
3337 return false;
3338}
3339
3340
3341/// ParseCompare
3342/// ::= 'icmp' IPredicates TypeAndValue ',' Value
3343/// ::= 'fcmp' FPredicates TypeAndValue ',' Value
Chris Lattnerdf986172009-01-02 07:01:27 +00003344bool LLParser::ParseCompare(Instruction *&Inst, PerFunctionState &PFS,
3345 unsigned Opc) {
3346 // Parse the integer/fp comparison predicate.
3347 LocTy Loc;
3348 unsigned Pred;
3349 Value *LHS, *RHS;
3350 if (ParseCmpPredicate(Pred, Opc) ||
3351 ParseTypeAndValue(LHS, Loc, PFS) ||
3352 ParseToken(lltok::comma, "expected ',' after compare value") ||
3353 ParseValue(LHS->getType(), RHS, PFS))
3354 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003355
Chris Lattnerdf986172009-01-02 07:01:27 +00003356 if (Opc == Instruction::FCmp) {
3357 if (!LHS->getType()->isFPOrFPVector())
3358 return Error(Loc, "fcmp requires floating point operands");
Dan Gohman1c8a23c2009-08-25 23:17:54 +00003359 Inst = new FCmpInst(CmpInst::Predicate(Pred), LHS, RHS);
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00003360 } else {
3361 assert(Opc == Instruction::ICmp && "Unknown opcode for CmpInst!");
Chris Lattnerdf986172009-01-02 07:01:27 +00003362 if (!LHS->getType()->isIntOrIntVector() &&
3363 !isa<PointerType>(LHS->getType()))
3364 return Error(Loc, "icmp requires integer operands");
Dan Gohman1c8a23c2009-08-25 23:17:54 +00003365 Inst = new ICmpInst(CmpInst::Predicate(Pred), LHS, RHS);
Chris Lattnerdf986172009-01-02 07:01:27 +00003366 }
3367 return false;
3368}
3369
3370//===----------------------------------------------------------------------===//
3371// Other Instructions.
3372//===----------------------------------------------------------------------===//
3373
3374
3375/// ParseCast
3376/// ::= CastOpc TypeAndValue 'to' Type
3377bool LLParser::ParseCast(Instruction *&Inst, PerFunctionState &PFS,
3378 unsigned Opc) {
3379 LocTy Loc; Value *Op;
Owen Anderson1d0be152009-08-13 21:58:54 +00003380 PATypeHolder DestTy(Type::getVoidTy(Context));
Chris Lattnerdf986172009-01-02 07:01:27 +00003381 if (ParseTypeAndValue(Op, Loc, PFS) ||
3382 ParseToken(lltok::kw_to, "expected 'to' after cast value") ||
3383 ParseType(DestTy))
3384 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003385
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00003386 if (!CastInst::castIsValid((Instruction::CastOps)Opc, Op, DestTy)) {
3387 CastInst::castIsValid((Instruction::CastOps)Opc, Op, DestTy);
Chris Lattnerdf986172009-01-02 07:01:27 +00003388 return Error(Loc, "invalid cast opcode for cast from '" +
3389 Op->getType()->getDescription() + "' to '" +
3390 DestTy->getDescription() + "'");
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00003391 }
Chris Lattnerdf986172009-01-02 07:01:27 +00003392 Inst = CastInst::Create((Instruction::CastOps)Opc, Op, DestTy);
3393 return false;
3394}
3395
3396/// ParseSelect
3397/// ::= 'select' TypeAndValue ',' TypeAndValue ',' TypeAndValue
3398bool LLParser::ParseSelect(Instruction *&Inst, PerFunctionState &PFS) {
3399 LocTy Loc;
3400 Value *Op0, *Op1, *Op2;
3401 if (ParseTypeAndValue(Op0, Loc, PFS) ||
3402 ParseToken(lltok::comma, "expected ',' after select condition") ||
3403 ParseTypeAndValue(Op1, PFS) ||
3404 ParseToken(lltok::comma, "expected ',' after select value") ||
3405 ParseTypeAndValue(Op2, PFS))
3406 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003407
Chris Lattnerdf986172009-01-02 07:01:27 +00003408 if (const char *Reason = SelectInst::areInvalidOperands(Op0, Op1, Op2))
3409 return Error(Loc, Reason);
Daniel Dunbara279bc32009-09-20 02:20:51 +00003410
Chris Lattnerdf986172009-01-02 07:01:27 +00003411 Inst = SelectInst::Create(Op0, Op1, Op2);
3412 return false;
3413}
3414
Chris Lattner0088a5c2009-01-05 08:18:44 +00003415/// ParseVA_Arg
3416/// ::= 'va_arg' TypeAndValue ',' Type
3417bool LLParser::ParseVA_Arg(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00003418 Value *Op;
Owen Anderson1d0be152009-08-13 21:58:54 +00003419 PATypeHolder EltTy(Type::getVoidTy(Context));
Chris Lattner0088a5c2009-01-05 08:18:44 +00003420 LocTy TypeLoc;
Chris Lattnerdf986172009-01-02 07:01:27 +00003421 if (ParseTypeAndValue(Op, PFS) ||
3422 ParseToken(lltok::comma, "expected ',' after vaarg operand") ||
Chris Lattner0088a5c2009-01-05 08:18:44 +00003423 ParseType(EltTy, TypeLoc))
Chris Lattnerdf986172009-01-02 07:01:27 +00003424 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003425
Chris Lattner0088a5c2009-01-05 08:18:44 +00003426 if (!EltTy->isFirstClassType())
3427 return Error(TypeLoc, "va_arg requires operand with first class type");
Chris Lattnerdf986172009-01-02 07:01:27 +00003428
3429 Inst = new VAArgInst(Op, EltTy);
3430 return false;
3431}
3432
3433/// ParseExtractElement
3434/// ::= 'extractelement' TypeAndValue ',' TypeAndValue
3435bool LLParser::ParseExtractElement(Instruction *&Inst, PerFunctionState &PFS) {
3436 LocTy Loc;
3437 Value *Op0, *Op1;
3438 if (ParseTypeAndValue(Op0, Loc, PFS) ||
3439 ParseToken(lltok::comma, "expected ',' after extract value") ||
3440 ParseTypeAndValue(Op1, PFS))
3441 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003442
Chris Lattnerdf986172009-01-02 07:01:27 +00003443 if (!ExtractElementInst::isValidOperands(Op0, Op1))
3444 return Error(Loc, "invalid extractelement operands");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003445
Eric Christophera3500da2009-07-25 02:28:41 +00003446 Inst = ExtractElementInst::Create(Op0, Op1);
Chris Lattnerdf986172009-01-02 07:01:27 +00003447 return false;
3448}
3449
3450/// ParseInsertElement
3451/// ::= 'insertelement' TypeAndValue ',' TypeAndValue ',' TypeAndValue
3452bool LLParser::ParseInsertElement(Instruction *&Inst, PerFunctionState &PFS) {
3453 LocTy Loc;
3454 Value *Op0, *Op1, *Op2;
3455 if (ParseTypeAndValue(Op0, Loc, PFS) ||
3456 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
3457 ParseTypeAndValue(Op1, PFS) ||
3458 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
3459 ParseTypeAndValue(Op2, PFS))
3460 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003461
Chris Lattnerdf986172009-01-02 07:01:27 +00003462 if (!InsertElementInst::isValidOperands(Op0, Op1, Op2))
Eric Christopher0aaf4e92009-07-23 01:01:32 +00003463 return Error(Loc, "invalid insertelement operands");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003464
Chris Lattnerdf986172009-01-02 07:01:27 +00003465 Inst = InsertElementInst::Create(Op0, Op1, Op2);
3466 return false;
3467}
3468
3469/// ParseShuffleVector
3470/// ::= 'shufflevector' TypeAndValue ',' TypeAndValue ',' TypeAndValue
3471bool LLParser::ParseShuffleVector(Instruction *&Inst, PerFunctionState &PFS) {
3472 LocTy Loc;
3473 Value *Op0, *Op1, *Op2;
3474 if (ParseTypeAndValue(Op0, Loc, PFS) ||
3475 ParseToken(lltok::comma, "expected ',' after shuffle mask") ||
3476 ParseTypeAndValue(Op1, PFS) ||
3477 ParseToken(lltok::comma, "expected ',' after shuffle value") ||
3478 ParseTypeAndValue(Op2, PFS))
3479 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003480
Chris Lattnerdf986172009-01-02 07:01:27 +00003481 if (!ShuffleVectorInst::isValidOperands(Op0, Op1, Op2))
3482 return Error(Loc, "invalid extractelement operands");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003483
Chris Lattnerdf986172009-01-02 07:01:27 +00003484 Inst = new ShuffleVectorInst(Op0, Op1, Op2);
3485 return false;
3486}
3487
3488/// ParsePHI
Chris Lattnerc6e20092009-10-18 05:27:44 +00003489/// ::= 'phi' Type '[' Value ',' Value ']' (',' '[' Value ',' Value ']')*
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003490int LLParser::ParsePHI(Instruction *&Inst, PerFunctionState &PFS) {
Owen Anderson1d0be152009-08-13 21:58:54 +00003491 PATypeHolder Ty(Type::getVoidTy(Context));
Chris Lattnerdf986172009-01-02 07:01:27 +00003492 Value *Op0, *Op1;
3493 LocTy TypeLoc = Lex.getLoc();
Daniel Dunbara279bc32009-09-20 02:20:51 +00003494
Chris Lattnerdf986172009-01-02 07:01:27 +00003495 if (ParseType(Ty) ||
3496 ParseToken(lltok::lsquare, "expected '[' in phi value list") ||
3497 ParseValue(Ty, Op0, PFS) ||
3498 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
Owen Anderson1d0be152009-08-13 21:58:54 +00003499 ParseValue(Type::getLabelTy(Context), Op1, PFS) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003500 ParseToken(lltok::rsquare, "expected ']' in phi value list"))
3501 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003502
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003503 bool AteExtraComma = false;
Chris Lattnerdf986172009-01-02 07:01:27 +00003504 SmallVector<std::pair<Value*, BasicBlock*>, 16> PHIVals;
3505 while (1) {
3506 PHIVals.push_back(std::make_pair(Op0, cast<BasicBlock>(Op1)));
Daniel Dunbara279bc32009-09-20 02:20:51 +00003507
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003508 if (!EatIfPresent(lltok::comma))
Chris Lattnerdf986172009-01-02 07:01:27 +00003509 break;
3510
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003511 if (Lex.getKind() == lltok::MetadataVar) {
3512 AteExtraComma = true;
Devang Patela43d46f2009-10-16 18:45:49 +00003513 break;
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003514 }
Devang Patela43d46f2009-10-16 18:45:49 +00003515
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003516 if (ParseToken(lltok::lsquare, "expected '[' in phi value list") ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003517 ParseValue(Ty, Op0, PFS) ||
3518 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
Owen Anderson1d0be152009-08-13 21:58:54 +00003519 ParseValue(Type::getLabelTy(Context), Op1, PFS) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003520 ParseToken(lltok::rsquare, "expected ']' in phi value list"))
3521 return true;
3522 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003523
Chris Lattnerdf986172009-01-02 07:01:27 +00003524 if (!Ty->isFirstClassType())
3525 return Error(TypeLoc, "phi node must have first class type");
3526
3527 PHINode *PN = PHINode::Create(Ty);
3528 PN->reserveOperandSpace(PHIVals.size());
3529 for (unsigned i = 0, e = PHIVals.size(); i != e; ++i)
3530 PN->addIncoming(PHIVals[i].first, PHIVals[i].second);
3531 Inst = PN;
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003532 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerdf986172009-01-02 07:01:27 +00003533}
3534
3535/// ParseCall
3536/// ::= 'tail'? 'call' OptionalCallingConv OptionalAttrs Type Value
3537/// ParameterList OptionalAttrs
3538bool LLParser::ParseCall(Instruction *&Inst, PerFunctionState &PFS,
3539 bool isTail) {
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00003540 unsigned RetAttrs, FnAttrs;
3541 CallingConv::ID CC;
Owen Anderson1d0be152009-08-13 21:58:54 +00003542 PATypeHolder RetType(Type::getVoidTy(Context));
Chris Lattnerdf986172009-01-02 07:01:27 +00003543 LocTy RetTypeLoc;
3544 ValID CalleeID;
3545 SmallVector<ParamInfo, 16> ArgList;
3546 LocTy CallLoc = Lex.getLoc();
Daniel Dunbara279bc32009-09-20 02:20:51 +00003547
Chris Lattnerdf986172009-01-02 07:01:27 +00003548 if ((isTail && ParseToken(lltok::kw_call, "expected 'tail call'")) ||
3549 ParseOptionalCallingConv(CC) ||
3550 ParseOptionalAttrs(RetAttrs, 1) ||
Chris Lattnera9a9e072009-03-09 04:49:14 +00003551 ParseType(RetType, RetTypeLoc, true /*void allowed*/) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003552 ParseValID(CalleeID) ||
3553 ParseParameterList(ArgList, PFS) ||
3554 ParseOptionalAttrs(FnAttrs, 2))
3555 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003556
Chris Lattnerdf986172009-01-02 07:01:27 +00003557 // If RetType is a non-function pointer type, then this is the short syntax
3558 // for the call, which means that RetType is just the return type. Infer the
3559 // rest of the function argument types from the arguments that are present.
3560 const PointerType *PFTy = 0;
3561 const FunctionType *Ty = 0;
3562 if (!(PFTy = dyn_cast<PointerType>(RetType)) ||
3563 !(Ty = dyn_cast<FunctionType>(PFTy->getElementType()))) {
3564 // Pull out the types of all of the arguments...
3565 std::vector<const Type*> ParamTypes;
3566 for (unsigned i = 0, e = ArgList.size(); i != e; ++i)
3567 ParamTypes.push_back(ArgList[i].V->getType());
Daniel Dunbara279bc32009-09-20 02:20:51 +00003568
Chris Lattnerdf986172009-01-02 07:01:27 +00003569 if (!FunctionType::isValidReturnType(RetType))
3570 return Error(RetTypeLoc, "Invalid result type for LLVM function");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003571
Owen Andersondebcb012009-07-29 22:17:13 +00003572 Ty = FunctionType::get(RetType, ParamTypes, false);
3573 PFTy = PointerType::getUnqual(Ty);
Chris Lattnerdf986172009-01-02 07:01:27 +00003574 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003575
Chris Lattnerdf986172009-01-02 07:01:27 +00003576 // Look up the callee.
3577 Value *Callee;
3578 if (ConvertValIDToValue(PFTy, CalleeID, Callee, PFS)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003579
Chris Lattnerdf986172009-01-02 07:01:27 +00003580 // FIXME: In LLVM 3.0, stop accepting zext, sext and inreg as optional
3581 // function attributes.
3582 unsigned ObsoleteFuncAttrs = Attribute::ZExt|Attribute::SExt|Attribute::InReg;
3583 if (FnAttrs & ObsoleteFuncAttrs) {
3584 RetAttrs |= FnAttrs & ObsoleteFuncAttrs;
3585 FnAttrs &= ~ObsoleteFuncAttrs;
3586 }
3587
3588 // Set up the Attributes for the function.
3589 SmallVector<AttributeWithIndex, 8> Attrs;
3590 if (RetAttrs != Attribute::None)
3591 Attrs.push_back(AttributeWithIndex::get(0, RetAttrs));
Daniel Dunbara279bc32009-09-20 02:20:51 +00003592
Chris Lattnerdf986172009-01-02 07:01:27 +00003593 SmallVector<Value*, 8> Args;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003594
Chris Lattnerdf986172009-01-02 07:01:27 +00003595 // Loop through FunctionType's arguments and ensure they are specified
3596 // correctly. Also, gather any parameter attributes.
3597 FunctionType::param_iterator I = Ty->param_begin();
3598 FunctionType::param_iterator E = Ty->param_end();
3599 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
3600 const Type *ExpectedTy = 0;
3601 if (I != E) {
3602 ExpectedTy = *I++;
3603 } else if (!Ty->isVarArg()) {
3604 return Error(ArgList[i].Loc, "too many arguments specified");
3605 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003606
Chris Lattnerdf986172009-01-02 07:01:27 +00003607 if (ExpectedTy && ExpectedTy != ArgList[i].V->getType())
3608 return Error(ArgList[i].Loc, "argument is not of expected type '" +
3609 ExpectedTy->getDescription() + "'");
3610 Args.push_back(ArgList[i].V);
3611 if (ArgList[i].Attrs != Attribute::None)
3612 Attrs.push_back(AttributeWithIndex::get(i+1, ArgList[i].Attrs));
3613 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003614
Chris Lattnerdf986172009-01-02 07:01:27 +00003615 if (I != E)
3616 return Error(CallLoc, "not enough parameters specified for call");
3617
3618 if (FnAttrs != Attribute::None)
3619 Attrs.push_back(AttributeWithIndex::get(~0, FnAttrs));
3620
3621 // Finish off the Attributes and check them
3622 AttrListPtr PAL = AttrListPtr::get(Attrs.begin(), Attrs.end());
Daniel Dunbara279bc32009-09-20 02:20:51 +00003623
Chris Lattnerdf986172009-01-02 07:01:27 +00003624 CallInst *CI = CallInst::Create(Callee, Args.begin(), Args.end());
3625 CI->setTailCall(isTail);
3626 CI->setCallingConv(CC);
3627 CI->setAttributes(PAL);
3628 Inst = CI;
3629 return false;
3630}
3631
3632//===----------------------------------------------------------------------===//
3633// Memory Instructions.
3634//===----------------------------------------------------------------------===//
3635
3636/// ParseAlloc
Devang Patelf633a062009-09-17 23:04:48 +00003637/// ::= 'malloc' Type (',' TypeAndValue)? (',' OptionalInfo)?
3638/// ::= 'alloca' Type (',' TypeAndValue)? (',' OptionalInfo)?
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00003639int LLParser::ParseAlloc(Instruction *&Inst, PerFunctionState &PFS,
3640 BasicBlock* BB, bool isAlloca) {
Owen Anderson1d0be152009-08-13 21:58:54 +00003641 PATypeHolder Ty(Type::getVoidTy(Context));
Chris Lattnerdf986172009-01-02 07:01:27 +00003642 Value *Size = 0;
Chris Lattnereeb4a842009-07-02 23:08:13 +00003643 LocTy SizeLoc;
Chris Lattnerdf986172009-01-02 07:01:27 +00003644 unsigned Alignment = 0;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003645 if (ParseType(Ty)) return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00003646
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00003647 bool AteExtraComma = false;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003648 if (EatIfPresent(lltok::comma)) {
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00003649 if (Lex.getKind() == lltok::kw_align) {
3650 if (ParseOptionalAlignment(Alignment)) return true;
3651 } else if (Lex.getKind() == lltok::MetadataVar) {
3652 AteExtraComma = true;
Devang Patelf633a062009-09-17 23:04:48 +00003653 } else {
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00003654 if (ParseTypeAndValue(Size, SizeLoc, PFS) ||
3655 ParseOptionalCommaAlign(Alignment, AteExtraComma))
3656 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00003657 }
3658 }
3659
Owen Anderson1d0be152009-08-13 21:58:54 +00003660 if (Size && Size->getType() != Type::getInt32Ty(Context))
Chris Lattnerdf986172009-01-02 07:01:27 +00003661 return Error(SizeLoc, "element count must be i32");
3662
Victor Hernandez68afa542009-10-21 19:11:40 +00003663 if (isAlloca) {
Owen Anderson50dead02009-07-15 23:53:25 +00003664 Inst = new AllocaInst(Ty, Size, Alignment);
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00003665 return AteExtraComma ? InstExtraComma : InstNormal;
Victor Hernandez13ad5aa2009-10-17 00:00:19 +00003666 }
Victor Hernandez68afa542009-10-21 19:11:40 +00003667
3668 // Autoupgrade old malloc instruction to malloc call.
3669 // FIXME: Remove in LLVM 3.0.
3670 const Type *IntPtrTy = Type::getInt32Ty(Context);
Victor Hernandez9d0b7042009-11-07 00:16:28 +00003671 Constant *AllocSize = ConstantExpr::getSizeOf(Ty);
3672 AllocSize = ConstantExpr::getTruncOrBitCast(AllocSize, IntPtrTy);
Victor Hernandez68afa542009-10-21 19:11:40 +00003673 if (!MallocF)
3674 // Prototype malloc as "void *(int32)".
3675 // This function is renamed as "malloc" in ValidateEndOfModule().
Victor Hernandez336ea062009-10-23 00:59:10 +00003676 MallocF = cast<Function>(
3677 M->getOrInsertFunction("", Type::getInt8PtrTy(Context), IntPtrTy, NULL));
Victor Hernandez9d0b7042009-11-07 00:16:28 +00003678 Inst = CallInst::CreateMalloc(BB, IntPtrTy, Ty, AllocSize, Size, MallocF);
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00003679return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerdf986172009-01-02 07:01:27 +00003680}
3681
3682/// ParseFree
3683/// ::= 'free' TypeAndValue
Victor Hernandez66284e02009-10-24 04:23:03 +00003684bool LLParser::ParseFree(Instruction *&Inst, PerFunctionState &PFS,
3685 BasicBlock* BB) {
Chris Lattnerdf986172009-01-02 07:01:27 +00003686 Value *Val; LocTy Loc;
3687 if (ParseTypeAndValue(Val, Loc, PFS)) return true;
3688 if (!isa<PointerType>(Val->getType()))
3689 return Error(Loc, "operand to free must be a pointer");
Victor Hernandez66284e02009-10-24 04:23:03 +00003690 Inst = CallInst::CreateFree(Val, BB);
Chris Lattnerdf986172009-01-02 07:01:27 +00003691 return false;
3692}
3693
3694/// ParseLoad
Devang Patelf633a062009-09-17 23:04:48 +00003695/// ::= 'volatile'? 'load' TypeAndValue (',' OptionalInfo)?
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00003696int LLParser::ParseLoad(Instruction *&Inst, PerFunctionState &PFS,
3697 bool isVolatile) {
Chris Lattnerdf986172009-01-02 07:01:27 +00003698 Value *Val; LocTy Loc;
Devang Patelf633a062009-09-17 23:04:48 +00003699 unsigned Alignment = 0;
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00003700 bool AteExtraComma = false;
3701 if (ParseTypeAndValue(Val, Loc, PFS) ||
3702 ParseOptionalCommaAlign(Alignment, AteExtraComma))
3703 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00003704
3705 if (!isa<PointerType>(Val->getType()) ||
3706 !cast<PointerType>(Val->getType())->getElementType()->isFirstClassType())
3707 return Error(Loc, "load operand must be a pointer to a first class type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003708
Chris Lattnerdf986172009-01-02 07:01:27 +00003709 Inst = new LoadInst(Val, "", isVolatile, Alignment);
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00003710 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerdf986172009-01-02 07:01:27 +00003711}
3712
3713/// ParseStore
Dan Gohmana119de82009-06-14 23:30:43 +00003714/// ::= 'volatile'? 'store' TypeAndValue ',' TypeAndValue (',' 'align' i32)?
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00003715int LLParser::ParseStore(Instruction *&Inst, PerFunctionState &PFS,
3716 bool isVolatile) {
Chris Lattnerdf986172009-01-02 07:01:27 +00003717 Value *Val, *Ptr; LocTy Loc, PtrLoc;
Devang Patelf633a062009-09-17 23:04:48 +00003718 unsigned Alignment = 0;
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00003719 bool AteExtraComma = false;
Chris Lattnerdf986172009-01-02 07:01:27 +00003720 if (ParseTypeAndValue(Val, Loc, PFS) ||
3721 ParseToken(lltok::comma, "expected ',' after store operand") ||
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00003722 ParseTypeAndValue(Ptr, PtrLoc, PFS) ||
3723 ParseOptionalCommaAlign(Alignment, AteExtraComma))
Chris Lattnerdf986172009-01-02 07:01:27 +00003724 return true;
Devang Patelf633a062009-09-17 23:04:48 +00003725
Chris Lattnerdf986172009-01-02 07:01:27 +00003726 if (!isa<PointerType>(Ptr->getType()))
3727 return Error(PtrLoc, "store operand must be a pointer");
3728 if (!Val->getType()->isFirstClassType())
3729 return Error(Loc, "store operand must be a first class value");
3730 if (cast<PointerType>(Ptr->getType())->getElementType() != Val->getType())
3731 return Error(Loc, "stored value and pointer type do not match");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003732
Chris Lattnerdf986172009-01-02 07:01:27 +00003733 Inst = new StoreInst(Val, Ptr, isVolatile, Alignment);
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00003734 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerdf986172009-01-02 07:01:27 +00003735}
3736
3737/// ParseGetResult
Dan Gohmana119de82009-06-14 23:30:43 +00003738/// ::= 'getresult' TypeAndValue ',' i32
Chris Lattnerdf986172009-01-02 07:01:27 +00003739/// FIXME: Remove support for getresult in LLVM 3.0
3740bool LLParser::ParseGetResult(Instruction *&Inst, PerFunctionState &PFS) {
3741 Value *Val; LocTy ValLoc, EltLoc;
3742 unsigned Element;
3743 if (ParseTypeAndValue(Val, ValLoc, PFS) ||
3744 ParseToken(lltok::comma, "expected ',' after getresult operand") ||
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003745 ParseUInt32(Element, EltLoc))
Chris Lattnerdf986172009-01-02 07:01:27 +00003746 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003747
Chris Lattnerdf986172009-01-02 07:01:27 +00003748 if (!isa<StructType>(Val->getType()) && !isa<ArrayType>(Val->getType()))
3749 return Error(ValLoc, "getresult inst requires an aggregate operand");
3750 if (!ExtractValueInst::getIndexedType(Val->getType(), Element))
3751 return Error(EltLoc, "invalid getresult index for value");
3752 Inst = ExtractValueInst::Create(Val, Element);
3753 return false;
3754}
3755
3756/// ParseGetElementPtr
Dan Gohmandd8004d2009-07-27 21:53:46 +00003757/// ::= 'getelementptr' 'inbounds'? TypeAndValue (',' TypeAndValue)*
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003758int LLParser::ParseGetElementPtr(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00003759 Value *Ptr, *Val; LocTy Loc, EltLoc;
Dan Gohmandd8004d2009-07-27 21:53:46 +00003760
Dan Gohmandcb40a32009-07-29 15:58:36 +00003761 bool InBounds = EatIfPresent(lltok::kw_inbounds);
Dan Gohmandd8004d2009-07-27 21:53:46 +00003762
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003763 if (ParseTypeAndValue(Ptr, Loc, PFS)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003764
Chris Lattnerdf986172009-01-02 07:01:27 +00003765 if (!isa<PointerType>(Ptr->getType()))
3766 return Error(Loc, "base of getelementptr must be a pointer");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003767
Chris Lattnerdf986172009-01-02 07:01:27 +00003768 SmallVector<Value*, 16> Indices;
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003769 bool AteExtraComma = false;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003770 while (EatIfPresent(lltok::comma)) {
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003771 if (Lex.getKind() == lltok::MetadataVar) {
3772 AteExtraComma = true;
Devang Patel6225d642009-10-13 18:49:55 +00003773 break;
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003774 }
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003775 if (ParseTypeAndValue(Val, EltLoc, PFS)) return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00003776 if (!isa<IntegerType>(Val->getType()))
3777 return Error(EltLoc, "getelementptr index must be an integer");
3778 Indices.push_back(Val);
3779 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003780
Chris Lattnerdf986172009-01-02 07:01:27 +00003781 if (!GetElementPtrInst::getIndexedType(Ptr->getType(),
3782 Indices.begin(), Indices.end()))
3783 return Error(Loc, "invalid getelementptr indices");
3784 Inst = GetElementPtrInst::Create(Ptr, Indices.begin(), Indices.end());
Dan Gohmandd8004d2009-07-27 21:53:46 +00003785 if (InBounds)
Dan Gohmanf8dbee72009-09-07 23:54:19 +00003786 cast<GetElementPtrInst>(Inst)->setIsInBounds(true);
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003787 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerdf986172009-01-02 07:01:27 +00003788}
3789
3790/// ParseExtractValue
3791/// ::= 'extractvalue' TypeAndValue (',' uint32)+
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003792int LLParser::ParseExtractValue(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00003793 Value *Val; LocTy Loc;
3794 SmallVector<unsigned, 4> Indices;
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003795 bool AteExtraComma;
Chris Lattnerdf986172009-01-02 07:01:27 +00003796 if (ParseTypeAndValue(Val, Loc, PFS) ||
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003797 ParseIndexList(Indices, AteExtraComma))
Chris Lattnerdf986172009-01-02 07:01:27 +00003798 return true;
3799
3800 if (!isa<StructType>(Val->getType()) && !isa<ArrayType>(Val->getType()))
3801 return Error(Loc, "extractvalue operand must be array or struct");
3802
3803 if (!ExtractValueInst::getIndexedType(Val->getType(), Indices.begin(),
3804 Indices.end()))
3805 return Error(Loc, "invalid indices for extractvalue");
3806 Inst = ExtractValueInst::Create(Val, Indices.begin(), Indices.end());
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003807 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerdf986172009-01-02 07:01:27 +00003808}
3809
3810/// ParseInsertValue
3811/// ::= 'insertvalue' TypeAndValue ',' TypeAndValue (',' uint32)+
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003812int LLParser::ParseInsertValue(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00003813 Value *Val0, *Val1; LocTy Loc0, Loc1;
3814 SmallVector<unsigned, 4> Indices;
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003815 bool AteExtraComma;
Chris Lattnerdf986172009-01-02 07:01:27 +00003816 if (ParseTypeAndValue(Val0, Loc0, PFS) ||
3817 ParseToken(lltok::comma, "expected comma after insertvalue operand") ||
3818 ParseTypeAndValue(Val1, Loc1, PFS) ||
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003819 ParseIndexList(Indices, AteExtraComma))
Chris Lattnerdf986172009-01-02 07:01:27 +00003820 return true;
Chris Lattner628c13a2009-12-30 05:14:00 +00003821
Chris Lattnerdf986172009-01-02 07:01:27 +00003822 if (!isa<StructType>(Val0->getType()) && !isa<ArrayType>(Val0->getType()))
3823 return Error(Loc0, "extractvalue operand must be array or struct");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003824
Chris Lattnerdf986172009-01-02 07:01:27 +00003825 if (!ExtractValueInst::getIndexedType(Val0->getType(), Indices.begin(),
3826 Indices.end()))
3827 return Error(Loc0, "invalid indices for insertvalue");
3828 Inst = InsertValueInst::Create(Val0, Val1, Indices.begin(), Indices.end());
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003829 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerdf986172009-01-02 07:01:27 +00003830}
Nick Lewycky21cc4462009-04-04 07:22:01 +00003831
3832//===----------------------------------------------------------------------===//
3833// Embedded metadata.
3834//===----------------------------------------------------------------------===//
3835
3836/// ParseMDNodeVector
Nick Lewyckycb337992009-05-10 20:57:05 +00003837/// ::= Element (',' Element)*
3838/// Element
3839/// ::= 'null' | TypeAndValue
3840bool LLParser::ParseMDNodeVector(SmallVectorImpl<Value*> &Elts) {
Nick Lewycky21cc4462009-04-04 07:22:01 +00003841 do {
Chris Lattnera7352392009-12-30 04:42:57 +00003842 // Null is a special case since it is typeless.
3843 if (EatIfPresent(lltok::kw_null)) {
3844 Elts.push_back(0);
3845 continue;
Nick Lewyckycb337992009-05-10 20:57:05 +00003846 }
Chris Lattnera7352392009-12-30 04:42:57 +00003847
3848 Value *V = 0;
3849 PATypeHolder Ty(Type::getVoidTy(Context));
3850 ValID ID;
3851 if (ParseType(Ty) || ParseValID(ID) ||
3852 ConvertGlobalOrMetadataValIDToValue(Ty, ID, V))
3853 return true;
3854
Nick Lewyckycb337992009-05-10 20:57:05 +00003855 Elts.push_back(V);
Nick Lewycky21cc4462009-04-04 07:22:01 +00003856 } while (EatIfPresent(lltok::comma));
3857
3858 return false;
3859}