blob: 0a3617575ef5fc38e3f3ca0ca3af8a3bf447eeaf [file] [log] [blame]
Chris Lattnerdf986172009-01-02 07:01:27 +00001//===-- LLParser.cpp - Parser Class ---------------------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file defines the parser class for .ll files.
11//
12//===----------------------------------------------------------------------===//
13
14#include "LLParser.h"
15#include "llvm/AutoUpgrade.h"
16#include "llvm/CallingConv.h"
17#include "llvm/Constants.h"
18#include "llvm/DerivedTypes.h"
19#include "llvm/InlineAsm.h"
20#include "llvm/Instructions.h"
21#include "llvm/Module.h"
Dan Gohman1224c382009-07-20 21:19:07 +000022#include "llvm/Operator.h"
Chris Lattnerdf986172009-01-02 07:01:27 +000023#include "llvm/ValueSymbolTable.h"
24#include "llvm/ADT/SmallPtrSet.h"
25#include "llvm/ADT/StringExtras.h"
Torok Edwinc25e7582009-07-11 20:10:48 +000026#include "llvm/Support/ErrorHandling.h"
Chris Lattnerdf986172009-01-02 07:01:27 +000027#include "llvm/Support/raw_ostream.h"
28using namespace llvm;
29
Chris Lattner3ed88ef2009-01-02 08:05:26 +000030/// Run: module ::= toplevelentity*
Chris Lattnerad7d1e22009-01-04 20:44:11 +000031bool LLParser::Run() {
Chris Lattner3ed88ef2009-01-02 08:05:26 +000032 // Prime the lexer.
33 Lex.Lex();
34
Chris Lattnerad7d1e22009-01-04 20:44:11 +000035 return ParseTopLevelEntities() ||
36 ValidateEndOfModule();
Chris Lattnerdf986172009-01-02 07:01:27 +000037}
38
39/// ValidateEndOfModule - Do final validity and sanity checks at the end of the
40/// module.
41bool LLParser::ValidateEndOfModule() {
Victor Hernandez68afa542009-10-21 19:11:40 +000042 // Update auto-upgraded malloc calls to "malloc".
Chris Lattnercf4d2f12009-10-18 05:09:15 +000043 // FIXME: Remove in LLVM 3.0.
Victor Hernandez13ad5aa2009-10-17 00:00:19 +000044 if (MallocF) {
45 MallocF->setName("malloc");
46 // If setName() does not set the name to "malloc", then there is already a
47 // declaration of "malloc". In that case, iterate over all calls to MallocF
48 // and get them to call the declared "malloc" instead.
49 if (MallocF->getName() != "malloc") {
Chris Lattner09d9ef42009-10-28 03:39:23 +000050 Constant *RealMallocF = M->getFunction("malloc");
Victor Hernandez68afa542009-10-21 19:11:40 +000051 if (RealMallocF->getType() != MallocF->getType())
52 RealMallocF = ConstantExpr::getBitCast(RealMallocF, MallocF->getType());
53 MallocF->replaceAllUsesWith(RealMallocF);
Victor Hernandez13ad5aa2009-10-17 00:00:19 +000054 MallocF->eraseFromParent();
55 MallocF = NULL;
56 }
57 }
Chris Lattner09d9ef42009-10-28 03:39:23 +000058
59
60 // If there are entries in ForwardRefBlockAddresses at this point, they are
61 // references after the function was defined. Resolve those now.
62 while (!ForwardRefBlockAddresses.empty()) {
63 // Okay, we are referencing an already-parsed function, resolve them now.
64 Function *TheFn = 0;
65 const ValID &Fn = ForwardRefBlockAddresses.begin()->first;
66 if (Fn.Kind == ValID::t_GlobalName)
67 TheFn = M->getFunction(Fn.StrVal);
68 else if (Fn.UIntVal < NumberedVals.size())
69 TheFn = dyn_cast<Function>(NumberedVals[Fn.UIntVal]);
70
71 if (TheFn == 0)
72 return Error(Fn.Loc, "unknown function referenced by blockaddress");
73
74 // Resolve all these references.
75 if (ResolveForwardRefBlockAddresses(TheFn,
76 ForwardRefBlockAddresses.begin()->second,
77 0))
78 return true;
79
80 ForwardRefBlockAddresses.erase(ForwardRefBlockAddresses.begin());
81 }
82
83
Chris Lattnerdf986172009-01-02 07:01:27 +000084 if (!ForwardRefTypes.empty())
85 return Error(ForwardRefTypes.begin()->second.second,
86 "use of undefined type named '" +
87 ForwardRefTypes.begin()->first + "'");
88 if (!ForwardRefTypeIDs.empty())
89 return Error(ForwardRefTypeIDs.begin()->second.second,
90 "use of undefined type '%" +
91 utostr(ForwardRefTypeIDs.begin()->first) + "'");
Daniel Dunbara279bc32009-09-20 02:20:51 +000092
Chris Lattnerdf986172009-01-02 07:01:27 +000093 if (!ForwardRefVals.empty())
94 return Error(ForwardRefVals.begin()->second.second,
95 "use of undefined value '@" + ForwardRefVals.begin()->first +
96 "'");
Daniel Dunbara279bc32009-09-20 02:20:51 +000097
Chris Lattnerdf986172009-01-02 07:01:27 +000098 if (!ForwardRefValIDs.empty())
99 return Error(ForwardRefValIDs.begin()->second.second,
100 "use of undefined value '@" +
101 utostr(ForwardRefValIDs.begin()->first) + "'");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000102
Devang Patel1c7eea62009-07-08 19:23:54 +0000103 if (!ForwardRefMDNodes.empty())
104 return Error(ForwardRefMDNodes.begin()->second.second,
105 "use of undefined metadata '!" +
106 utostr(ForwardRefMDNodes.begin()->first) + "'");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000107
Devang Patel1c7eea62009-07-08 19:23:54 +0000108
Chris Lattnerdf986172009-01-02 07:01:27 +0000109 // Look for intrinsic functions and CallInst that need to be upgraded
110 for (Module::iterator FI = M->begin(), FE = M->end(); FI != FE; )
111 UpgradeCallsToIntrinsic(FI++); // must be post-increment, as we remove
Daniel Dunbara279bc32009-09-20 02:20:51 +0000112
Devang Patele4b27562009-08-28 23:24:31 +0000113 // Check debug info intrinsics.
114 CheckDebugInfoIntrinsics(M);
Chris Lattnerdf986172009-01-02 07:01:27 +0000115 return false;
116}
117
Chris Lattner09d9ef42009-10-28 03:39:23 +0000118bool LLParser::ResolveForwardRefBlockAddresses(Function *TheFn,
119 std::vector<std::pair<ValID, GlobalValue*> > &Refs,
120 PerFunctionState *PFS) {
121 // Loop over all the references, resolving them.
122 for (unsigned i = 0, e = Refs.size(); i != e; ++i) {
123 BasicBlock *Res;
Chris Lattnercdfc9402009-11-01 01:27:45 +0000124 if (PFS) {
Chris Lattner09d9ef42009-10-28 03:39:23 +0000125 if (Refs[i].first.Kind == ValID::t_LocalName)
126 Res = PFS->GetBB(Refs[i].first.StrVal, Refs[i].first.Loc);
Chris Lattnercdfc9402009-11-01 01:27:45 +0000127 else
Chris Lattner09d9ef42009-10-28 03:39:23 +0000128 Res = PFS->GetBB(Refs[i].first.UIntVal, Refs[i].first.Loc);
129 } else if (Refs[i].first.Kind == ValID::t_LocalID) {
130 return Error(Refs[i].first.Loc,
Chris Lattneree7644d2009-11-02 18:28:45 +0000131 "cannot take address of numeric label after the function is defined");
Chris Lattner09d9ef42009-10-28 03:39:23 +0000132 } else {
133 Res = dyn_cast_or_null<BasicBlock>(
134 TheFn->getValueSymbolTable().lookup(Refs[i].first.StrVal));
135 }
136
Chris Lattnercdfc9402009-11-01 01:27:45 +0000137 if (Res == 0)
Chris Lattner09d9ef42009-10-28 03:39:23 +0000138 return Error(Refs[i].first.Loc,
139 "referenced value is not a basic block");
140
141 // Get the BlockAddress for this and update references to use it.
142 BlockAddress *BA = BlockAddress::get(TheFn, Res);
143 Refs[i].second->replaceAllUsesWith(BA);
144 Refs[i].second->eraseFromParent();
145 }
146 return false;
147}
148
149
Chris Lattnerdf986172009-01-02 07:01:27 +0000150//===----------------------------------------------------------------------===//
151// Top-Level Entities
152//===----------------------------------------------------------------------===//
153
154bool LLParser::ParseTopLevelEntities() {
Chris Lattnerdf986172009-01-02 07:01:27 +0000155 while (1) {
156 switch (Lex.getKind()) {
157 default: return TokError("expected top-level entity");
158 case lltok::Eof: return false;
159 //case lltok::kw_define:
160 case lltok::kw_declare: if (ParseDeclare()) return true; break;
161 case lltok::kw_define: if (ParseDefine()) return true; break;
162 case lltok::kw_module: if (ParseModuleAsm()) return true; break;
163 case lltok::kw_target: if (ParseTargetDefinition()) return true; break;
164 case lltok::kw_deplibs: if (ParseDepLibs()) return true; break;
165 case lltok::kw_type: if (ParseUnnamedType()) return true; break;
Dan Gohman3845e502009-08-12 23:32:33 +0000166 case lltok::LocalVarID: if (ParseUnnamedType()) return true; break;
Chris Lattnerdf986172009-01-02 07:01:27 +0000167 case lltok::StringConstant: // FIXME: REMOVE IN LLVM 3.0
168 case lltok::LocalVar: if (ParseNamedType()) return true; break;
Dan Gohman3845e502009-08-12 23:32:33 +0000169 case lltok::GlobalID: if (ParseUnnamedGlobal()) return true; break;
Chris Lattnerdf986172009-01-02 07:01:27 +0000170 case lltok::GlobalVar: if (ParseNamedGlobal()) return true; break;
Chris Lattnere434d272009-12-30 04:56:59 +0000171 case lltok::exclaim: if (ParseStandaloneMetadata()) return true; break;
Chris Lattner1d928312009-12-30 05:02:06 +0000172 case lltok::MetadataVar: if (ParseNamedMetadata()) return true; break;
Chris Lattnerdf986172009-01-02 07:01:27 +0000173
174 // The Global variable production with no name can have many different
175 // optional leading prefixes, the production is:
176 // GlobalVar ::= OptionalLinkage OptionalVisibility OptionalThreadLocal
177 // OptionalAddrSpace ('constant'|'global') ...
Bill Wendling3d10a5a2009-07-20 01:03:30 +0000178 case lltok::kw_private : // OptionalLinkage
179 case lltok::kw_linker_private: // OptionalLinkage
180 case lltok::kw_internal: // OptionalLinkage
181 case lltok::kw_weak: // OptionalLinkage
182 case lltok::kw_weak_odr: // OptionalLinkage
183 case lltok::kw_linkonce: // OptionalLinkage
184 case lltok::kw_linkonce_odr: // OptionalLinkage
185 case lltok::kw_appending: // OptionalLinkage
186 case lltok::kw_dllexport: // OptionalLinkage
187 case lltok::kw_common: // OptionalLinkage
188 case lltok::kw_dllimport: // OptionalLinkage
189 case lltok::kw_extern_weak: // OptionalLinkage
190 case lltok::kw_external: { // OptionalLinkage
Chris Lattnerdf986172009-01-02 07:01:27 +0000191 unsigned Linkage, Visibility;
192 if (ParseOptionalLinkage(Linkage) ||
193 ParseOptionalVisibility(Visibility) ||
Chris Lattnereeb4a842009-07-02 23:08:13 +0000194 ParseGlobal("", SMLoc(), Linkage, true, Visibility))
Chris Lattnerdf986172009-01-02 07:01:27 +0000195 return true;
196 break;
197 }
198 case lltok::kw_default: // OptionalVisibility
199 case lltok::kw_hidden: // OptionalVisibility
200 case lltok::kw_protected: { // OptionalVisibility
201 unsigned Visibility;
202 if (ParseOptionalVisibility(Visibility) ||
Chris Lattnereeb4a842009-07-02 23:08:13 +0000203 ParseGlobal("", SMLoc(), 0, false, Visibility))
Chris Lattnerdf986172009-01-02 07:01:27 +0000204 return true;
205 break;
206 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000207
Chris Lattnerdf986172009-01-02 07:01:27 +0000208 case lltok::kw_thread_local: // OptionalThreadLocal
209 case lltok::kw_addrspace: // OptionalAddrSpace
210 case lltok::kw_constant: // GlobalType
211 case lltok::kw_global: // GlobalType
Chris Lattnereeb4a842009-07-02 23:08:13 +0000212 if (ParseGlobal("", SMLoc(), 0, false, 0)) return true;
Chris Lattnerdf986172009-01-02 07:01:27 +0000213 break;
214 }
215 }
216}
217
218
219/// toplevelentity
220/// ::= 'module' 'asm' STRINGCONSTANT
221bool LLParser::ParseModuleAsm() {
222 assert(Lex.getKind() == lltok::kw_module);
223 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +0000224
225 std::string AsmStr;
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000226 if (ParseToken(lltok::kw_asm, "expected 'module asm'") ||
227 ParseStringConstant(AsmStr)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000228
Chris Lattnerdf986172009-01-02 07:01:27 +0000229 const std::string &AsmSoFar = M->getModuleInlineAsm();
230 if (AsmSoFar.empty())
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000231 M->setModuleInlineAsm(AsmStr);
Chris Lattnerdf986172009-01-02 07:01:27 +0000232 else
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000233 M->setModuleInlineAsm(AsmSoFar+"\n"+AsmStr);
Chris Lattnerdf986172009-01-02 07:01:27 +0000234 return false;
235}
236
237/// toplevelentity
238/// ::= 'target' 'triple' '=' STRINGCONSTANT
239/// ::= 'target' 'datalayout' '=' STRINGCONSTANT
240bool LLParser::ParseTargetDefinition() {
241 assert(Lex.getKind() == lltok::kw_target);
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000242 std::string Str;
Chris Lattnerdf986172009-01-02 07:01:27 +0000243 switch (Lex.Lex()) {
244 default: return TokError("unknown target property");
245 case lltok::kw_triple:
246 Lex.Lex();
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000247 if (ParseToken(lltok::equal, "expected '=' after target triple") ||
248 ParseStringConstant(Str))
Chris Lattnerdf986172009-01-02 07:01:27 +0000249 return true;
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000250 M->setTargetTriple(Str);
Chris Lattnerdf986172009-01-02 07:01:27 +0000251 return false;
252 case lltok::kw_datalayout:
253 Lex.Lex();
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000254 if (ParseToken(lltok::equal, "expected '=' after target datalayout") ||
255 ParseStringConstant(Str))
Chris Lattnerdf986172009-01-02 07:01:27 +0000256 return true;
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000257 M->setDataLayout(Str);
Chris Lattnerdf986172009-01-02 07:01:27 +0000258 return false;
259 }
260}
261
262/// toplevelentity
263/// ::= 'deplibs' '=' '[' ']'
264/// ::= 'deplibs' '=' '[' STRINGCONSTANT (',' STRINGCONSTANT)* ']'
265bool LLParser::ParseDepLibs() {
266 assert(Lex.getKind() == lltok::kw_deplibs);
Chris Lattnerdf986172009-01-02 07:01:27 +0000267 Lex.Lex();
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000268 if (ParseToken(lltok::equal, "expected '=' after deplibs") ||
269 ParseToken(lltok::lsquare, "expected '=' after deplibs"))
270 return true;
271
272 if (EatIfPresent(lltok::rsquare))
273 return false;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000274
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000275 std::string Str;
276 if (ParseStringConstant(Str)) return true;
277 M->addLibrary(Str);
278
279 while (EatIfPresent(lltok::comma)) {
280 if (ParseStringConstant(Str)) return true;
281 M->addLibrary(Str);
282 }
283
284 return ParseToken(lltok::rsquare, "expected ']' at end of list");
Chris Lattnerdf986172009-01-02 07:01:27 +0000285}
286
Dan Gohman3845e502009-08-12 23:32:33 +0000287/// ParseUnnamedType:
Chris Lattnerdf986172009-01-02 07:01:27 +0000288/// ::= 'type' type
Dan Gohman3845e502009-08-12 23:32:33 +0000289/// ::= LocalVarID '=' 'type' type
Chris Lattnerdf986172009-01-02 07:01:27 +0000290bool LLParser::ParseUnnamedType() {
Dan Gohman3845e502009-08-12 23:32:33 +0000291 unsigned TypeID = NumberedTypes.size();
292
293 // Handle the LocalVarID form.
294 if (Lex.getKind() == lltok::LocalVarID) {
295 if (Lex.getUIntVal() != TypeID)
296 return Error(Lex.getLoc(), "type expected to be numbered '%" +
297 utostr(TypeID) + "'");
298 Lex.Lex(); // eat LocalVarID;
299
300 if (ParseToken(lltok::equal, "expected '=' after name"))
301 return true;
302 }
303
Chris Lattnerdf986172009-01-02 07:01:27 +0000304 assert(Lex.getKind() == lltok::kw_type);
305 LocTy TypeLoc = Lex.getLoc();
306 Lex.Lex(); // eat kw_type
307
Owen Anderson1d0be152009-08-13 21:58:54 +0000308 PATypeHolder Ty(Type::getVoidTy(Context));
Chris Lattnerdf986172009-01-02 07:01:27 +0000309 if (ParseType(Ty)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000310
Chris Lattnerdf986172009-01-02 07:01:27 +0000311 // See if this type was previously referenced.
312 std::map<unsigned, std::pair<PATypeHolder, LocTy> >::iterator
313 FI = ForwardRefTypeIDs.find(TypeID);
314 if (FI != ForwardRefTypeIDs.end()) {
Chris Lattnerc38daba2009-01-05 18:19:46 +0000315 if (FI->second.first.get() == Ty)
316 return Error(TypeLoc, "self referential type is invalid");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000317
Chris Lattnerdf986172009-01-02 07:01:27 +0000318 cast<DerivedType>(FI->second.first.get())->refineAbstractTypeTo(Ty);
319 Ty = FI->second.first.get();
320 ForwardRefTypeIDs.erase(FI);
321 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000322
Chris Lattnerdf986172009-01-02 07:01:27 +0000323 NumberedTypes.push_back(Ty);
Daniel Dunbara279bc32009-09-20 02:20:51 +0000324
Chris Lattnerdf986172009-01-02 07:01:27 +0000325 return false;
326}
327
328/// toplevelentity
329/// ::= LocalVar '=' 'type' type
330bool LLParser::ParseNamedType() {
331 std::string Name = Lex.getStrVal();
332 LocTy NameLoc = Lex.getLoc();
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000333 Lex.Lex(); // eat LocalVar.
Daniel Dunbara279bc32009-09-20 02:20:51 +0000334
Owen Anderson1d0be152009-08-13 21:58:54 +0000335 PATypeHolder Ty(Type::getVoidTy(Context));
Daniel Dunbara279bc32009-09-20 02:20:51 +0000336
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000337 if (ParseToken(lltok::equal, "expected '=' after name") ||
338 ParseToken(lltok::kw_type, "expected 'type' after name") ||
339 ParseType(Ty))
340 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000341
Chris Lattnerdf986172009-01-02 07:01:27 +0000342 // Set the type name, checking for conflicts as we do so.
343 bool AlreadyExists = M->addTypeName(Name, Ty);
344 if (!AlreadyExists) return false;
345
346 // See if this type is a forward reference. We need to eagerly resolve
347 // types to allow recursive type redefinitions below.
348 std::map<std::string, std::pair<PATypeHolder, LocTy> >::iterator
349 FI = ForwardRefTypes.find(Name);
350 if (FI != ForwardRefTypes.end()) {
Chris Lattnerc38daba2009-01-05 18:19:46 +0000351 if (FI->second.first.get() == Ty)
352 return Error(NameLoc, "self referential type is invalid");
353
Chris Lattnerdf986172009-01-02 07:01:27 +0000354 cast<DerivedType>(FI->second.first.get())->refineAbstractTypeTo(Ty);
355 Ty = FI->second.first.get();
356 ForwardRefTypes.erase(FI);
357 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000358
Chris Lattnerdf986172009-01-02 07:01:27 +0000359 // Inserting a name that is already defined, get the existing name.
360 const Type *Existing = M->getTypeByName(Name);
361 assert(Existing && "Conflict but no matching type?!");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000362
Chris Lattnerdf986172009-01-02 07:01:27 +0000363 // Otherwise, this is an attempt to redefine a type. That's okay if
364 // the redefinition is identical to the original.
365 // FIXME: REMOVE REDEFINITIONS IN LLVM 3.0
366 if (Existing == Ty) return false;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000367
Chris Lattnerdf986172009-01-02 07:01:27 +0000368 // Any other kind of (non-equivalent) redefinition is an error.
369 return Error(NameLoc, "redefinition of type named '" + Name + "' of type '" +
370 Ty->getDescription() + "'");
371}
372
373
374/// toplevelentity
375/// ::= 'declare' FunctionHeader
376bool LLParser::ParseDeclare() {
377 assert(Lex.getKind() == lltok::kw_declare);
378 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +0000379
Chris Lattnerdf986172009-01-02 07:01:27 +0000380 Function *F;
381 return ParseFunctionHeader(F, false);
382}
383
384/// toplevelentity
385/// ::= 'define' FunctionHeader '{' ...
386bool LLParser::ParseDefine() {
387 assert(Lex.getKind() == lltok::kw_define);
388 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +0000389
Chris Lattnerdf986172009-01-02 07:01:27 +0000390 Function *F;
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000391 return ParseFunctionHeader(F, true) ||
392 ParseFunctionBody(*F);
Chris Lattnerdf986172009-01-02 07:01:27 +0000393}
394
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000395/// ParseGlobalType
396/// ::= 'constant'
397/// ::= 'global'
Chris Lattnerdf986172009-01-02 07:01:27 +0000398bool LLParser::ParseGlobalType(bool &IsConstant) {
399 if (Lex.getKind() == lltok::kw_constant)
400 IsConstant = true;
401 else if (Lex.getKind() == lltok::kw_global)
402 IsConstant = false;
Duncan Sands35b51072009-02-10 16:24:55 +0000403 else {
404 IsConstant = false;
Chris Lattnerdf986172009-01-02 07:01:27 +0000405 return TokError("expected 'global' or 'constant'");
Duncan Sands35b51072009-02-10 16:24:55 +0000406 }
Chris Lattnerdf986172009-01-02 07:01:27 +0000407 Lex.Lex();
408 return false;
409}
410
Dan Gohman3845e502009-08-12 23:32:33 +0000411/// ParseUnnamedGlobal:
412/// OptionalVisibility ALIAS ...
413/// OptionalLinkage OptionalVisibility ... -> global variable
414/// GlobalID '=' OptionalVisibility ALIAS ...
415/// GlobalID '=' OptionalLinkage OptionalVisibility ... -> global variable
416bool LLParser::ParseUnnamedGlobal() {
417 unsigned VarID = NumberedVals.size();
418 std::string Name;
419 LocTy NameLoc = Lex.getLoc();
420
421 // Handle the GlobalID form.
422 if (Lex.getKind() == lltok::GlobalID) {
423 if (Lex.getUIntVal() != VarID)
424 return Error(Lex.getLoc(), "variable expected to be numbered '%" +
425 utostr(VarID) + "'");
426 Lex.Lex(); // eat GlobalID;
427
428 if (ParseToken(lltok::equal, "expected '=' after name"))
429 return true;
430 }
431
432 bool HasLinkage;
433 unsigned Linkage, Visibility;
434 if (ParseOptionalLinkage(Linkage, HasLinkage) ||
435 ParseOptionalVisibility(Visibility))
436 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000437
Dan Gohman3845e502009-08-12 23:32:33 +0000438 if (HasLinkage || Lex.getKind() != lltok::kw_alias)
439 return ParseGlobal(Name, NameLoc, Linkage, HasLinkage, Visibility);
440 return ParseAlias(Name, NameLoc, Visibility);
441}
442
Chris Lattnerdf986172009-01-02 07:01:27 +0000443/// ParseNamedGlobal:
444/// GlobalVar '=' OptionalVisibility ALIAS ...
445/// GlobalVar '=' OptionalLinkage OptionalVisibility ... -> global variable
446bool LLParser::ParseNamedGlobal() {
447 assert(Lex.getKind() == lltok::GlobalVar);
448 LocTy NameLoc = Lex.getLoc();
449 std::string Name = Lex.getStrVal();
450 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +0000451
Chris Lattnerdf986172009-01-02 07:01:27 +0000452 bool HasLinkage;
453 unsigned Linkage, Visibility;
454 if (ParseToken(lltok::equal, "expected '=' in global variable") ||
455 ParseOptionalLinkage(Linkage, HasLinkage) ||
456 ParseOptionalVisibility(Visibility))
457 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000458
Chris Lattnerdf986172009-01-02 07:01:27 +0000459 if (HasLinkage || Lex.getKind() != lltok::kw_alias)
460 return ParseGlobal(Name, NameLoc, Linkage, HasLinkage, Visibility);
461 return ParseAlias(Name, NameLoc, Visibility);
462}
463
Devang Patel256be962009-07-20 19:00:08 +0000464// MDString:
465// ::= '!' STRINGCONSTANT
Chris Lattner442ffa12009-12-29 21:53:55 +0000466bool LLParser::ParseMDString(MDString *&Result) {
Devang Patel256be962009-07-20 19:00:08 +0000467 std::string Str;
468 if (ParseStringConstant(Str)) return true;
Chris Lattner442ffa12009-12-29 21:53:55 +0000469 Result = MDString::get(Context, Str);
Devang Patel256be962009-07-20 19:00:08 +0000470 return false;
471}
472
473// MDNode:
474// ::= '!' MDNodeNumber
Chris Lattner4a72efc2009-12-30 04:15:23 +0000475bool LLParser::ParseMDNodeID(MDNode *&Result) {
Devang Patel256be962009-07-20 19:00:08 +0000476 // !{ ..., !42, ... }
477 unsigned MID = 0;
Chris Lattnere80250e2009-12-29 21:43:58 +0000478 if (ParseUInt32(MID)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000479
Devang Patel256be962009-07-20 19:00:08 +0000480 // Check existing MDNode.
Chris Lattner0834e6a2009-12-30 04:51:58 +0000481 if (MID < NumberedMetadata.size() && NumberedMetadata[MID] != 0) {
482 Result = NumberedMetadata[MID];
Devang Patel256be962009-07-20 19:00:08 +0000483 return false;
484 }
485
Chris Lattner42991ee2009-12-29 22:01:50 +0000486 // Create MDNode forward reference.
487
488 // FIXME: This is not unique enough!
Devang Patel256be962009-07-20 19:00:08 +0000489 std::string FwdRefName = "llvm.mdnode.fwdref." + utostr(MID);
Benjamin Kramerc17300f2009-12-29 22:17:06 +0000490 Value *V = MDString::get(Context, FwdRefName);
Chris Lattner42991ee2009-12-29 22:01:50 +0000491 MDNode *FwdNode = MDNode::get(Context, &V, 1);
Devang Patel256be962009-07-20 19:00:08 +0000492 ForwardRefMDNodes[MID] = std::make_pair(FwdNode, Lex.getLoc());
Chris Lattner0834e6a2009-12-30 04:51:58 +0000493
494 if (NumberedMetadata.size() <= MID)
495 NumberedMetadata.resize(MID+1);
496 NumberedMetadata[MID] = FwdNode;
Chris Lattner442ffa12009-12-29 21:53:55 +0000497 Result = FwdNode;
Devang Patel256be962009-07-20 19:00:08 +0000498 return false;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000499}
Devang Patel256be962009-07-20 19:00:08 +0000500
Chris Lattner84d03b12009-12-29 22:35:39 +0000501/// ParseNamedMetadata:
Devang Pateleff2ab62009-07-29 00:34:02 +0000502/// !foo = !{ !1, !2 }
503bool LLParser::ParseNamedMetadata() {
Chris Lattner1d928312009-12-30 05:02:06 +0000504 assert(Lex.getKind() == lltok::MetadataVar);
Devang Pateleff2ab62009-07-29 00:34:02 +0000505 std::string Name = Lex.getStrVal();
Chris Lattner1d928312009-12-30 05:02:06 +0000506 Lex.Lex();
Devang Pateleff2ab62009-07-29 00:34:02 +0000507
Chris Lattner84d03b12009-12-29 22:35:39 +0000508 if (ParseToken(lltok::equal, "expected '=' here") ||
Chris Lattnere434d272009-12-30 04:56:59 +0000509 ParseToken(lltok::exclaim, "Expected '!' here") ||
Chris Lattner84d03b12009-12-29 22:35:39 +0000510 ParseToken(lltok::lbrace, "Expected '{' here"))
Devang Pateleff2ab62009-07-29 00:34:02 +0000511 return true;
512
Devang Patel3e30c2a2010-01-05 20:41:31 +0000513 SmallVector<MDNode *, 8> Elts;
Devang Pateleff2ab62009-07-29 00:34:02 +0000514 do {
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 Lattner442ffa12009-12-29 21:53:55 +0000518 MDNode *N = 0;
Chris Lattner4a72efc2009-12-30 04:15:23 +0000519 if (ParseMDNodeID(N)) return true;
Devang Pateleff2ab62009-07-29 00:34:02 +0000520 Elts.push_back(N);
521 } while (EatIfPresent(lltok::comma));
522
523 if (ParseToken(lltok::rbrace, "expected end of metadata node"))
524 return true;
525
Owen Anderson1d0be152009-08-13 21:58:54 +0000526 NamedMDNode::Create(Context, Name, Elts.data(), Elts.size(), M);
Devang Pateleff2ab62009-07-29 00:34:02 +0000527 return false;
528}
529
Devang Patel923078c2009-07-01 19:21:12 +0000530/// ParseStandaloneMetadata:
Daniel Dunbara279bc32009-09-20 02:20:51 +0000531/// !42 = !{...}
Devang Patel923078c2009-07-01 19:21:12 +0000532bool LLParser::ParseStandaloneMetadata() {
Chris Lattnere434d272009-12-30 04:56:59 +0000533 assert(Lex.getKind() == lltok::exclaim);
Devang Patel923078c2009-07-01 19:21:12 +0000534 Lex.Lex();
535 unsigned MetadataID = 0;
Devang Patel923078c2009-07-01 19:21:12 +0000536
537 LocTy TyLoc;
Owen Anderson1d0be152009-08-13 21:58:54 +0000538 PATypeHolder Ty(Type::getVoidTy(Context));
Devang Patel104cf9e2009-07-23 01:07:34 +0000539 SmallVector<Value *, 16> Elts;
Chris Lattner3f5132a2009-12-29 22:40:21 +0000540 if (ParseUInt32(MetadataID) ||
541 ParseToken(lltok::equal, "expected '=' here") ||
542 ParseType(Ty, TyLoc) ||
Chris Lattnere434d272009-12-30 04:56:59 +0000543 ParseToken(lltok::exclaim, "Expected '!' here") ||
Chris Lattner3f5132a2009-12-29 22:40:21 +0000544 ParseToken(lltok::lbrace, "Expected '{' here") ||
545 ParseMDNodeVector(Elts) ||
546 ParseToken(lltok::rbrace, "expected end of metadata node"))
Devang Patel104cf9e2009-07-23 01:07:34 +0000547 return true;
548
Owen Anderson647e3012009-07-31 21:35:40 +0000549 MDNode *Init = MDNode::get(Context, Elts.data(), Elts.size());
Chris Lattner0834e6a2009-12-30 04:51:58 +0000550
551 // See if this was forward referenced, if so, handle it.
Chris Lattnere80250e2009-12-29 21:43:58 +0000552 std::map<unsigned, std::pair<TrackingVH<MDNode>, LocTy> >::iterator
Devang Patel1c7eea62009-07-08 19:23:54 +0000553 FI = ForwardRefMDNodes.find(MetadataID);
554 if (FI != ForwardRefMDNodes.end()) {
Chris Lattnere80250e2009-12-29 21:43:58 +0000555 FI->second.first->replaceAllUsesWith(Init);
Devang Patel1c7eea62009-07-08 19:23:54 +0000556 ForwardRefMDNodes.erase(FI);
Chris Lattner0834e6a2009-12-30 04:51:58 +0000557
558 assert(NumberedMetadata[MetadataID] == Init && "Tracking VH didn't work");
559 } else {
560 if (MetadataID >= NumberedMetadata.size())
561 NumberedMetadata.resize(MetadataID+1);
562
563 if (NumberedMetadata[MetadataID] != 0)
564 return TokError("Metadata id is already used");
565 NumberedMetadata[MetadataID] = Init;
Devang Patel1c7eea62009-07-08 19:23:54 +0000566 }
567
Devang Patel923078c2009-07-01 19:21:12 +0000568 return false;
569}
570
Chris Lattnerdf986172009-01-02 07:01:27 +0000571/// ParseAlias:
572/// ::= GlobalVar '=' OptionalVisibility 'alias' OptionalLinkage Aliasee
573/// Aliasee
Chris Lattner040f7582009-04-25 21:26:00 +0000574/// ::= TypeAndValue
575/// ::= 'bitcast' '(' TypeAndValue 'to' Type ')'
Dan Gohmandd8004d2009-07-27 21:53:46 +0000576/// ::= 'getelementptr' 'inbounds'? '(' ... ')'
Chris Lattnerdf986172009-01-02 07:01:27 +0000577///
578/// Everything through visibility has already been parsed.
579///
580bool LLParser::ParseAlias(const std::string &Name, LocTy NameLoc,
581 unsigned Visibility) {
582 assert(Lex.getKind() == lltok::kw_alias);
583 Lex.Lex();
584 unsigned Linkage;
585 LocTy LinkageLoc = Lex.getLoc();
586 if (ParseOptionalLinkage(Linkage))
587 return true;
588
589 if (Linkage != GlobalValue::ExternalLinkage &&
Duncan Sands667d4b82009-03-07 15:45:40 +0000590 Linkage != GlobalValue::WeakAnyLinkage &&
591 Linkage != GlobalValue::WeakODRLinkage &&
Rafael Espindolabb46f522009-01-15 20:18:42 +0000592 Linkage != GlobalValue::InternalLinkage &&
Bill Wendling3d10a5a2009-07-20 01:03:30 +0000593 Linkage != GlobalValue::PrivateLinkage &&
594 Linkage != GlobalValue::LinkerPrivateLinkage)
Chris Lattnerdf986172009-01-02 07:01:27 +0000595 return Error(LinkageLoc, "invalid linkage type for alias");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000596
Chris Lattnerdf986172009-01-02 07:01:27 +0000597 Constant *Aliasee;
598 LocTy AliaseeLoc = Lex.getLoc();
Chris Lattner040f7582009-04-25 21:26:00 +0000599 if (Lex.getKind() != lltok::kw_bitcast &&
600 Lex.getKind() != lltok::kw_getelementptr) {
Chris Lattnerdf986172009-01-02 07:01:27 +0000601 if (ParseGlobalTypeAndValue(Aliasee)) return true;
602 } else {
603 // The bitcast dest type is not present, it is implied by the dest type.
604 ValID ID;
605 if (ParseValID(ID)) return true;
606 if (ID.Kind != ValID::t_Constant)
607 return Error(AliaseeLoc, "invalid aliasee");
608 Aliasee = ID.ConstantVal;
609 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000610
Chris Lattnerdf986172009-01-02 07:01:27 +0000611 if (!isa<PointerType>(Aliasee->getType()))
612 return Error(AliaseeLoc, "alias must have pointer type");
613
614 // Okay, create the alias but do not insert it into the module yet.
615 GlobalAlias* GA = new GlobalAlias(Aliasee->getType(),
616 (GlobalValue::LinkageTypes)Linkage, Name,
617 Aliasee);
618 GA->setVisibility((GlobalValue::VisibilityTypes)Visibility);
Daniel Dunbara279bc32009-09-20 02:20:51 +0000619
Chris Lattnerdf986172009-01-02 07:01:27 +0000620 // See if this value already exists in the symbol table. If so, it is either
621 // a redefinition or a definition of a forward reference.
Chris Lattner1d871c52009-10-25 23:22:50 +0000622 if (GlobalValue *Val = M->getNamedValue(Name)) {
Chris Lattnerdf986172009-01-02 07:01:27 +0000623 // See if this was a redefinition. If so, there is no entry in
624 // ForwardRefVals.
625 std::map<std::string, std::pair<GlobalValue*, LocTy> >::iterator
626 I = ForwardRefVals.find(Name);
627 if (I == ForwardRefVals.end())
628 return Error(NameLoc, "redefinition of global named '@" + Name + "'");
629
630 // Otherwise, this was a definition of forward ref. Verify that types
631 // agree.
632 if (Val->getType() != GA->getType())
633 return Error(NameLoc,
634 "forward reference and definition of alias have different types");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000635
Chris Lattnerdf986172009-01-02 07:01:27 +0000636 // If they agree, just RAUW the old value with the alias and remove the
637 // forward ref info.
638 Val->replaceAllUsesWith(GA);
639 Val->eraseFromParent();
640 ForwardRefVals.erase(I);
641 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000642
Chris Lattnerdf986172009-01-02 07:01:27 +0000643 // Insert into the module, we know its name won't collide now.
644 M->getAliasList().push_back(GA);
645 assert(GA->getNameStr() == Name && "Should not be a name conflict!");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000646
Chris Lattnerdf986172009-01-02 07:01:27 +0000647 return false;
648}
649
650/// ParseGlobal
651/// ::= GlobalVar '=' OptionalLinkage OptionalVisibility OptionalThreadLocal
652/// OptionalAddrSpace GlobalType Type Const
653/// ::= OptionalLinkage OptionalVisibility OptionalThreadLocal
654/// OptionalAddrSpace GlobalType Type Const
655///
656/// Everything through visibility has been parsed already.
657///
658bool LLParser::ParseGlobal(const std::string &Name, LocTy NameLoc,
659 unsigned Linkage, bool HasLinkage,
660 unsigned Visibility) {
661 unsigned AddrSpace;
662 bool ThreadLocal, IsConstant;
663 LocTy TyLoc;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000664
Owen Anderson1d0be152009-08-13 21:58:54 +0000665 PATypeHolder Ty(Type::getVoidTy(Context));
Chris Lattnerdf986172009-01-02 07:01:27 +0000666 if (ParseOptionalToken(lltok::kw_thread_local, ThreadLocal) ||
667 ParseOptionalAddrSpace(AddrSpace) ||
668 ParseGlobalType(IsConstant) ||
669 ParseType(Ty, TyLoc))
670 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000671
Chris Lattnerdf986172009-01-02 07:01:27 +0000672 // If the linkage is specified and is external, then no initializer is
673 // present.
674 Constant *Init = 0;
675 if (!HasLinkage || (Linkage != GlobalValue::DLLImportLinkage &&
Duncan Sands5f4ee1f2009-03-11 08:08:06 +0000676 Linkage != GlobalValue::ExternalWeakLinkage &&
Chris Lattnerdf986172009-01-02 07:01:27 +0000677 Linkage != GlobalValue::ExternalLinkage)) {
678 if (ParseGlobalValue(Ty, Init))
679 return true;
680 }
681
Chris Lattnercf0fe8d2009-10-05 05:54:46 +0000682 if (isa<FunctionType>(Ty) || Ty->isLabelTy())
Chris Lattner4a2f1122009-02-08 20:00:15 +0000683 return Error(TyLoc, "invalid type for global variable");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000684
Chris Lattnerdf986172009-01-02 07:01:27 +0000685 GlobalVariable *GV = 0;
686
687 // See if the global was forward referenced, if so, use the global.
Chris Lattner91dad872009-02-02 07:24:28 +0000688 if (!Name.empty()) {
Chris Lattner1d871c52009-10-25 23:22:50 +0000689 if (GlobalValue *GVal = M->getNamedValue(Name)) {
690 if (!ForwardRefVals.erase(Name) || !isa<GlobalValue>(GVal))
691 return Error(NameLoc, "redefinition of global '@" + Name + "'");
692 GV = cast<GlobalVariable>(GVal);
693 }
Chris Lattnerdf986172009-01-02 07:01:27 +0000694 } else {
695 std::map<unsigned, std::pair<GlobalValue*, LocTy> >::iterator
696 I = ForwardRefValIDs.find(NumberedVals.size());
697 if (I != ForwardRefValIDs.end()) {
698 GV = cast<GlobalVariable>(I->second.first);
699 ForwardRefValIDs.erase(I);
700 }
701 }
702
703 if (GV == 0) {
Daniel Dunbara279bc32009-09-20 02:20:51 +0000704 GV = new GlobalVariable(*M, Ty, false, GlobalValue::ExternalLinkage, 0,
Owen Andersone9b11b42009-07-08 19:03:57 +0000705 Name, 0, false, AddrSpace);
Chris Lattnerdf986172009-01-02 07:01:27 +0000706 } else {
707 if (GV->getType()->getElementType() != Ty)
708 return Error(TyLoc,
709 "forward reference and definition of global have different types");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000710
Chris Lattnerdf986172009-01-02 07:01:27 +0000711 // Move the forward-reference to the correct spot in the module.
712 M->getGlobalList().splice(M->global_end(), M->getGlobalList(), GV);
713 }
714
715 if (Name.empty())
716 NumberedVals.push_back(GV);
Daniel Dunbara279bc32009-09-20 02:20:51 +0000717
Chris Lattnerdf986172009-01-02 07:01:27 +0000718 // Set the parsed properties on the global.
719 if (Init)
720 GV->setInitializer(Init);
721 GV->setConstant(IsConstant);
722 GV->setLinkage((GlobalValue::LinkageTypes)Linkage);
723 GV->setVisibility((GlobalValue::VisibilityTypes)Visibility);
724 GV->setThreadLocal(ThreadLocal);
Daniel Dunbara279bc32009-09-20 02:20:51 +0000725
Chris Lattnerdf986172009-01-02 07:01:27 +0000726 // Parse attributes on the global.
727 while (Lex.getKind() == lltok::comma) {
728 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +0000729
Chris Lattnerdf986172009-01-02 07:01:27 +0000730 if (Lex.getKind() == lltok::kw_section) {
731 Lex.Lex();
732 GV->setSection(Lex.getStrVal());
733 if (ParseToken(lltok::StringConstant, "expected global section string"))
734 return true;
735 } else if (Lex.getKind() == lltok::kw_align) {
736 unsigned Alignment;
737 if (ParseOptionalAlignment(Alignment)) return true;
738 GV->setAlignment(Alignment);
739 } else {
740 TokError("unknown global variable property!");
741 }
742 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000743
Chris Lattnerdf986172009-01-02 07:01:27 +0000744 return false;
745}
746
747
748//===----------------------------------------------------------------------===//
749// GlobalValue Reference/Resolution Routines.
750//===----------------------------------------------------------------------===//
751
752/// GetGlobalVal - Get a value with the specified name or ID, creating a
753/// forward reference record if needed. This can return null if the value
754/// exists but does not have the right type.
755GlobalValue *LLParser::GetGlobalVal(const std::string &Name, const Type *Ty,
756 LocTy Loc) {
757 const PointerType *PTy = dyn_cast<PointerType>(Ty);
758 if (PTy == 0) {
759 Error(Loc, "global variable reference must have pointer type");
760 return 0;
761 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000762
Chris Lattnerdf986172009-01-02 07:01:27 +0000763 // Look this name up in the normal function symbol table.
764 GlobalValue *Val =
765 cast_or_null<GlobalValue>(M->getValueSymbolTable().lookup(Name));
Daniel Dunbara279bc32009-09-20 02:20:51 +0000766
Chris Lattnerdf986172009-01-02 07:01:27 +0000767 // If this is a forward reference for the value, see if we already created a
768 // forward ref record.
769 if (Val == 0) {
770 std::map<std::string, std::pair<GlobalValue*, LocTy> >::iterator
771 I = ForwardRefVals.find(Name);
772 if (I != ForwardRefVals.end())
773 Val = I->second.first;
774 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000775
Chris Lattnerdf986172009-01-02 07:01:27 +0000776 // If we have the value in the symbol table or fwd-ref table, return it.
777 if (Val) {
778 if (Val->getType() == Ty) return Val;
779 Error(Loc, "'@" + Name + "' defined with type '" +
780 Val->getType()->getDescription() + "'");
781 return 0;
782 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000783
Chris Lattnerdf986172009-01-02 07:01:27 +0000784 // Otherwise, create a new forward reference for this value and remember it.
785 GlobalValue *FwdVal;
Chris Lattner1e407c32009-01-08 19:05:36 +0000786 if (const FunctionType *FT = dyn_cast<FunctionType>(PTy->getElementType())) {
787 // Function types can return opaque but functions can't.
788 if (isa<OpaqueType>(FT->getReturnType())) {
789 Error(Loc, "function may not return opaque type");
790 return 0;
791 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000792
Duncan Sands5f4ee1f2009-03-11 08:08:06 +0000793 FwdVal = Function::Create(FT, GlobalValue::ExternalWeakLinkage, Name, M);
Chris Lattner1e407c32009-01-08 19:05:36 +0000794 } else {
Owen Andersone9b11b42009-07-08 19:03:57 +0000795 FwdVal = new GlobalVariable(*M, PTy->getElementType(), false,
796 GlobalValue::ExternalWeakLinkage, 0, Name);
Chris Lattner1e407c32009-01-08 19:05:36 +0000797 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000798
Chris Lattnerdf986172009-01-02 07:01:27 +0000799 ForwardRefVals[Name] = std::make_pair(FwdVal, Loc);
800 return FwdVal;
801}
802
803GlobalValue *LLParser::GetGlobalVal(unsigned ID, const Type *Ty, LocTy Loc) {
804 const PointerType *PTy = dyn_cast<PointerType>(Ty);
805 if (PTy == 0) {
806 Error(Loc, "global variable reference must have pointer type");
807 return 0;
808 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000809
Chris Lattnerdf986172009-01-02 07:01:27 +0000810 GlobalValue *Val = ID < NumberedVals.size() ? NumberedVals[ID] : 0;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000811
Chris Lattnerdf986172009-01-02 07:01:27 +0000812 // If this is a forward reference for the value, see if we already created a
813 // forward ref record.
814 if (Val == 0) {
815 std::map<unsigned, std::pair<GlobalValue*, LocTy> >::iterator
816 I = ForwardRefValIDs.find(ID);
817 if (I != ForwardRefValIDs.end())
818 Val = I->second.first;
819 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000820
Chris Lattnerdf986172009-01-02 07:01:27 +0000821 // If we have the value in the symbol table or fwd-ref table, return it.
822 if (Val) {
823 if (Val->getType() == Ty) return Val;
824 Error(Loc, "'@" + utostr(ID) + "' defined with type '" +
825 Val->getType()->getDescription() + "'");
826 return 0;
827 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000828
Chris Lattnerdf986172009-01-02 07:01:27 +0000829 // Otherwise, create a new forward reference for this value and remember it.
830 GlobalValue *FwdVal;
Chris Lattner830703b2009-01-05 18:27:50 +0000831 if (const FunctionType *FT = dyn_cast<FunctionType>(PTy->getElementType())) {
832 // Function types can return opaque but functions can't.
833 if (isa<OpaqueType>(FT->getReturnType())) {
Chris Lattner0d8484f2009-01-05 18:56:52 +0000834 Error(Loc, "function may not return opaque type");
Chris Lattner830703b2009-01-05 18:27:50 +0000835 return 0;
836 }
Duncan Sands5f4ee1f2009-03-11 08:08:06 +0000837 FwdVal = Function::Create(FT, GlobalValue::ExternalWeakLinkage, "", M);
Chris Lattner830703b2009-01-05 18:27:50 +0000838 } else {
Owen Andersone9b11b42009-07-08 19:03:57 +0000839 FwdVal = new GlobalVariable(*M, PTy->getElementType(), false,
840 GlobalValue::ExternalWeakLinkage, 0, "");
Chris Lattner830703b2009-01-05 18:27:50 +0000841 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000842
Chris Lattnerdf986172009-01-02 07:01:27 +0000843 ForwardRefValIDs[ID] = std::make_pair(FwdVal, Loc);
844 return FwdVal;
845}
846
847
848//===----------------------------------------------------------------------===//
849// Helper Routines.
850//===----------------------------------------------------------------------===//
851
852/// ParseToken - If the current token has the specified kind, eat it and return
853/// success. Otherwise, emit the specified error and return failure.
854bool LLParser::ParseToken(lltok::Kind T, const char *ErrMsg) {
855 if (Lex.getKind() != T)
856 return TokError(ErrMsg);
857 Lex.Lex();
858 return false;
859}
860
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000861/// ParseStringConstant
862/// ::= StringConstant
863bool LLParser::ParseStringConstant(std::string &Result) {
864 if (Lex.getKind() != lltok::StringConstant)
865 return TokError("expected string constant");
866 Result = Lex.getStrVal();
867 Lex.Lex();
868 return false;
869}
870
871/// ParseUInt32
872/// ::= uint32
873bool LLParser::ParseUInt32(unsigned &Val) {
Chris Lattnerdf986172009-01-02 07:01:27 +0000874 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned())
875 return TokError("expected integer");
876 uint64_t Val64 = Lex.getAPSIntVal().getLimitedValue(0xFFFFFFFFULL+1);
877 if (Val64 != unsigned(Val64))
878 return TokError("expected 32-bit integer (too large)");
879 Val = Val64;
880 Lex.Lex();
881 return false;
882}
883
884
885/// ParseOptionalAddrSpace
886/// := /*empty*/
887/// := 'addrspace' '(' uint32 ')'
888bool LLParser::ParseOptionalAddrSpace(unsigned &AddrSpace) {
889 AddrSpace = 0;
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000890 if (!EatIfPresent(lltok::kw_addrspace))
Chris Lattnerdf986172009-01-02 07:01:27 +0000891 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +0000892 return ParseToken(lltok::lparen, "expected '(' in address space") ||
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000893 ParseUInt32(AddrSpace) ||
Chris Lattnerdf986172009-01-02 07:01:27 +0000894 ParseToken(lltok::rparen, "expected ')' in address space");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000895}
Chris Lattnerdf986172009-01-02 07:01:27 +0000896
897/// ParseOptionalAttrs - Parse a potentially empty attribute list. AttrKind
898/// indicates what kind of attribute list this is: 0: function arg, 1: result,
899/// 2: function attr.
Chris Lattnerad9ad7c2009-03-25 06:36:36 +0000900/// 3: function arg after value: FIXME: REMOVE IN LLVM 3.0
Chris Lattnerdf986172009-01-02 07:01:27 +0000901bool LLParser::ParseOptionalAttrs(unsigned &Attrs, unsigned AttrKind) {
902 Attrs = Attribute::None;
903 LocTy AttrLoc = Lex.getLoc();
Daniel Dunbara279bc32009-09-20 02:20:51 +0000904
Chris Lattnerdf986172009-01-02 07:01:27 +0000905 while (1) {
906 switch (Lex.getKind()) {
907 case lltok::kw_sext:
908 case lltok::kw_zext:
Chris Lattnerad9ad7c2009-03-25 06:36:36 +0000909 // Treat these as signext/zeroext if they occur in the argument list after
910 // the value, as in "call i8 @foo(i8 10 sext)". If they occur before the
911 // value, as in "call i8 @foo(i8 sext (" then it is part of a constant
912 // expr.
Chris Lattnerdf986172009-01-02 07:01:27 +0000913 // FIXME: REMOVE THIS IN LLVM 3.0
Chris Lattnerad9ad7c2009-03-25 06:36:36 +0000914 if (AttrKind == 3) {
Chris Lattnerdf986172009-01-02 07:01:27 +0000915 if (Lex.getKind() == lltok::kw_sext)
916 Attrs |= Attribute::SExt;
917 else
918 Attrs |= Attribute::ZExt;
919 break;
920 }
921 // FALL THROUGH.
922 default: // End of attributes.
923 if (AttrKind != 2 && (Attrs & Attribute::FunctionOnly))
924 return Error(AttrLoc, "invalid use of function-only attribute");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000925
Chris Lattnerad9ad7c2009-03-25 06:36:36 +0000926 if (AttrKind != 0 && AttrKind != 3 && (Attrs & Attribute::ParameterOnly))
Chris Lattnerdf986172009-01-02 07:01:27 +0000927 return Error(AttrLoc, "invalid use of parameter-only attribute");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000928
Chris Lattnerdf986172009-01-02 07:01:27 +0000929 return false;
Devang Patel578efa92009-06-05 21:57:13 +0000930 case lltok::kw_zeroext: Attrs |= Attribute::ZExt; break;
931 case lltok::kw_signext: Attrs |= Attribute::SExt; break;
932 case lltok::kw_inreg: Attrs |= Attribute::InReg; break;
933 case lltok::kw_sret: Attrs |= Attribute::StructRet; break;
934 case lltok::kw_noalias: Attrs |= Attribute::NoAlias; break;
935 case lltok::kw_nocapture: Attrs |= Attribute::NoCapture; break;
936 case lltok::kw_byval: Attrs |= Attribute::ByVal; break;
937 case lltok::kw_nest: Attrs |= Attribute::Nest; break;
Chris Lattnerdf986172009-01-02 07:01:27 +0000938
Devang Patel578efa92009-06-05 21:57:13 +0000939 case lltok::kw_noreturn: Attrs |= Attribute::NoReturn; break;
940 case lltok::kw_nounwind: Attrs |= Attribute::NoUnwind; break;
941 case lltok::kw_noinline: Attrs |= Attribute::NoInline; break;
942 case lltok::kw_readnone: Attrs |= Attribute::ReadNone; break;
943 case lltok::kw_readonly: Attrs |= Attribute::ReadOnly; break;
Dale Johannesende86d472009-08-26 01:08:21 +0000944 case lltok::kw_inlinehint: Attrs |= Attribute::InlineHint; break;
Devang Patel578efa92009-06-05 21:57:13 +0000945 case lltok::kw_alwaysinline: Attrs |= Attribute::AlwaysInline; break;
946 case lltok::kw_optsize: Attrs |= Attribute::OptimizeForSize; break;
947 case lltok::kw_ssp: Attrs |= Attribute::StackProtect; break;
948 case lltok::kw_sspreq: Attrs |= Attribute::StackProtectReq; break;
949 case lltok::kw_noredzone: Attrs |= Attribute::NoRedZone; break;
950 case lltok::kw_noimplicitfloat: Attrs |= Attribute::NoImplicitFloat; break;
Anton Korobeynikovc5ec8a72009-07-17 18:07:26 +0000951 case lltok::kw_naked: Attrs |= Attribute::Naked; break;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000952
Chris Lattnerdf986172009-01-02 07:01:27 +0000953 case lltok::kw_align: {
954 unsigned Alignment;
955 if (ParseOptionalAlignment(Alignment))
956 return true;
957 Attrs |= Attribute::constructAlignmentFromInt(Alignment);
958 continue;
959 }
960 }
961 Lex.Lex();
962 }
963}
964
965/// ParseOptionalLinkage
966/// ::= /*empty*/
Rafael Espindolabb46f522009-01-15 20:18:42 +0000967/// ::= 'private'
Bill Wendling3d10a5a2009-07-20 01:03:30 +0000968/// ::= 'linker_private'
Chris Lattnerdf986172009-01-02 07:01:27 +0000969/// ::= 'internal'
970/// ::= 'weak'
Duncan Sands667d4b82009-03-07 15:45:40 +0000971/// ::= 'weak_odr'
Chris Lattnerdf986172009-01-02 07:01:27 +0000972/// ::= 'linkonce'
Duncan Sands667d4b82009-03-07 15:45:40 +0000973/// ::= 'linkonce_odr'
Chris Lattnerdf986172009-01-02 07:01:27 +0000974/// ::= 'appending'
975/// ::= 'dllexport'
976/// ::= 'common'
977/// ::= 'dllimport'
978/// ::= 'extern_weak'
979/// ::= 'external'
980bool LLParser::ParseOptionalLinkage(unsigned &Res, bool &HasLinkage) {
981 HasLinkage = false;
982 switch (Lex.getKind()) {
Bill Wendling3d10a5a2009-07-20 01:03:30 +0000983 default: Res=GlobalValue::ExternalLinkage; return false;
984 case lltok::kw_private: Res = GlobalValue::PrivateLinkage; break;
985 case lltok::kw_linker_private: Res = GlobalValue::LinkerPrivateLinkage; break;
986 case lltok::kw_internal: Res = GlobalValue::InternalLinkage; break;
987 case lltok::kw_weak: Res = GlobalValue::WeakAnyLinkage; break;
988 case lltok::kw_weak_odr: Res = GlobalValue::WeakODRLinkage; break;
989 case lltok::kw_linkonce: Res = GlobalValue::LinkOnceAnyLinkage; break;
990 case lltok::kw_linkonce_odr: Res = GlobalValue::LinkOnceODRLinkage; break;
Chris Lattner266c7bb2009-04-13 05:44:34 +0000991 case lltok::kw_available_externally:
992 Res = GlobalValue::AvailableExternallyLinkage;
993 break;
Bill Wendling3d10a5a2009-07-20 01:03:30 +0000994 case lltok::kw_appending: Res = GlobalValue::AppendingLinkage; break;
995 case lltok::kw_dllexport: Res = GlobalValue::DLLExportLinkage; break;
996 case lltok::kw_common: Res = GlobalValue::CommonLinkage; break;
997 case lltok::kw_dllimport: Res = GlobalValue::DLLImportLinkage; break;
998 case lltok::kw_extern_weak: Res = GlobalValue::ExternalWeakLinkage; break;
999 case lltok::kw_external: Res = GlobalValue::ExternalLinkage; break;
Chris Lattnerdf986172009-01-02 07:01:27 +00001000 }
1001 Lex.Lex();
1002 HasLinkage = true;
1003 return false;
1004}
1005
1006/// ParseOptionalVisibility
1007/// ::= /*empty*/
1008/// ::= 'default'
1009/// ::= 'hidden'
1010/// ::= 'protected'
Daniel Dunbara279bc32009-09-20 02:20:51 +00001011///
Chris Lattnerdf986172009-01-02 07:01:27 +00001012bool LLParser::ParseOptionalVisibility(unsigned &Res) {
1013 switch (Lex.getKind()) {
1014 default: Res = GlobalValue::DefaultVisibility; return false;
1015 case lltok::kw_default: Res = GlobalValue::DefaultVisibility; break;
1016 case lltok::kw_hidden: Res = GlobalValue::HiddenVisibility; break;
1017 case lltok::kw_protected: Res = GlobalValue::ProtectedVisibility; break;
1018 }
1019 Lex.Lex();
1020 return false;
1021}
1022
1023/// ParseOptionalCallingConv
1024/// ::= /*empty*/
1025/// ::= 'ccc'
1026/// ::= 'fastcc'
1027/// ::= 'coldcc'
1028/// ::= 'x86_stdcallcc'
1029/// ::= 'x86_fastcallcc'
Anton Korobeynikov385f5a92009-06-16 18:50:49 +00001030/// ::= 'arm_apcscc'
1031/// ::= 'arm_aapcscc'
1032/// ::= 'arm_aapcs_vfpcc'
Anton Korobeynikov211a14e2009-12-07 02:27:35 +00001033/// ::= 'msp430_intrcc'
Chris Lattnerdf986172009-01-02 07:01:27 +00001034/// ::= 'cc' UINT
Anton Korobeynikov385f5a92009-06-16 18:50:49 +00001035///
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001036bool LLParser::ParseOptionalCallingConv(CallingConv::ID &CC) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001037 switch (Lex.getKind()) {
1038 default: CC = CallingConv::C; return false;
1039 case lltok::kw_ccc: CC = CallingConv::C; break;
1040 case lltok::kw_fastcc: CC = CallingConv::Fast; break;
1041 case lltok::kw_coldcc: CC = CallingConv::Cold; break;
1042 case lltok::kw_x86_stdcallcc: CC = CallingConv::X86_StdCall; break;
1043 case lltok::kw_x86_fastcallcc: CC = CallingConv::X86_FastCall; break;
Anton Korobeynikov385f5a92009-06-16 18:50:49 +00001044 case lltok::kw_arm_apcscc: CC = CallingConv::ARM_APCS; break;
1045 case lltok::kw_arm_aapcscc: CC = CallingConv::ARM_AAPCS; break;
1046 case lltok::kw_arm_aapcs_vfpcc:CC = CallingConv::ARM_AAPCS_VFP; break;
Anton Korobeynikov211a14e2009-12-07 02:27:35 +00001047 case lltok::kw_msp430_intrcc: CC = CallingConv::MSP430_INTR; break;
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001048 case lltok::kw_cc: {
1049 unsigned ArbitraryCC;
1050 Lex.Lex();
1051 if (ParseUInt32(ArbitraryCC)) {
1052 return true;
1053 } else
1054 CC = static_cast<CallingConv::ID>(ArbitraryCC);
1055 return false;
1056 }
1057 break;
Chris Lattnerdf986172009-01-02 07:01:27 +00001058 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001059
Chris Lattnerdf986172009-01-02 07:01:27 +00001060 Lex.Lex();
1061 return false;
1062}
1063
Chris Lattnerb8c46862009-12-30 05:31:19 +00001064/// ParseInstructionMetadata
Chris Lattner3f3a0f62009-12-29 21:25:40 +00001065/// ::= !dbg !42 (',' !dbg !57)*
Chris Lattner1340dd32009-12-30 05:48:36 +00001066bool LLParser::
1067ParseInstructionMetadata(SmallVectorImpl<std::pair<unsigned,
1068 MDNode *> > &Result){
Chris Lattnerb8c46862009-12-30 05:31:19 +00001069 do {
1070 if (Lex.getKind() != lltok::MetadataVar)
1071 return TokError("expected metadata after comma");
Devang Patel0475c912009-09-29 00:01:14 +00001072
Chris Lattner3f3a0f62009-12-29 21:25:40 +00001073 std::string Name = Lex.getStrVal();
1074 Lex.Lex();
Chris Lattner52e20312009-10-19 05:31:10 +00001075
Chris Lattner442ffa12009-12-29 21:53:55 +00001076 MDNode *Node;
Chris Lattnere434d272009-12-30 04:56:59 +00001077 if (ParseToken(lltok::exclaim, "expected '!' here") ||
1078 ParseMDNodeID(Node))
1079 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001080
Chris Lattner3f3a0f62009-12-29 21:25:40 +00001081 unsigned MDK = M->getMDKindID(Name.c_str());
Chris Lattner1340dd32009-12-30 05:48:36 +00001082 Result.push_back(std::make_pair(MDK, Node));
Chris Lattner3f3a0f62009-12-29 21:25:40 +00001083
1084 // If this is the end of the list, we're done.
Chris Lattnerb8c46862009-12-30 05:31:19 +00001085 } while (EatIfPresent(lltok::comma));
1086 return false;
Devang Patelf633a062009-09-17 23:04:48 +00001087}
1088
Chris Lattnerdf986172009-01-02 07:01:27 +00001089/// ParseOptionalAlignment
1090/// ::= /* empty */
1091/// ::= 'align' 4
1092bool LLParser::ParseOptionalAlignment(unsigned &Alignment) {
1093 Alignment = 0;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001094 if (!EatIfPresent(lltok::kw_align))
1095 return false;
Chris Lattner3fbb3ab2009-01-05 07:46:05 +00001096 LocTy AlignLoc = Lex.getLoc();
1097 if (ParseUInt32(Alignment)) return true;
1098 if (!isPowerOf2_32(Alignment))
1099 return Error(AlignLoc, "alignment is not a power of two");
1100 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00001101}
1102
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00001103/// ParseOptionalCommaAlign
1104/// ::=
1105/// ::= ',' align 4
1106///
1107/// This returns with AteExtraComma set to true if it ate an excess comma at the
1108/// end.
1109bool LLParser::ParseOptionalCommaAlign(unsigned &Alignment,
1110 bool &AteExtraComma) {
1111 AteExtraComma = false;
1112 while (EatIfPresent(lltok::comma)) {
1113 // Metadata at the end is an early exit.
Chris Lattner1d928312009-12-30 05:02:06 +00001114 if (Lex.getKind() == lltok::MetadataVar) {
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00001115 AteExtraComma = true;
1116 return false;
1117 }
1118
1119 if (Lex.getKind() == lltok::kw_align) {
Devang Patelf633a062009-09-17 23:04:48 +00001120 if (ParseOptionalAlignment(Alignment)) return true;
1121 } else
1122 return true;
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00001123 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001124
Devang Patelf633a062009-09-17 23:04:48 +00001125 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00001126}
1127
Devang Patelf633a062009-09-17 23:04:48 +00001128
Chris Lattner628c13a2009-12-30 05:14:00 +00001129/// ParseIndexList - This parses the index list for an insert/extractvalue
1130/// instruction. This sets AteExtraComma in the case where we eat an extra
1131/// comma at the end of the line and find that it is followed by metadata.
1132/// Clients that don't allow metadata can call the version of this function that
1133/// only takes one argument.
1134///
Chris Lattnerdf986172009-01-02 07:01:27 +00001135/// ParseIndexList
1136/// ::= (',' uint32)+
Chris Lattner628c13a2009-12-30 05:14:00 +00001137///
1138bool LLParser::ParseIndexList(SmallVectorImpl<unsigned> &Indices,
1139 bool &AteExtraComma) {
1140 AteExtraComma = false;
1141
Chris Lattnerdf986172009-01-02 07:01:27 +00001142 if (Lex.getKind() != lltok::comma)
1143 return TokError("expected ',' as start of index list");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001144
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001145 while (EatIfPresent(lltok::comma)) {
Chris Lattner628c13a2009-12-30 05:14:00 +00001146 if (Lex.getKind() == lltok::MetadataVar) {
1147 AteExtraComma = true;
1148 return false;
1149 }
Chris Lattnerdf986172009-01-02 07:01:27 +00001150 unsigned Idx;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001151 if (ParseUInt32(Idx)) return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00001152 Indices.push_back(Idx);
1153 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001154
Chris Lattnerdf986172009-01-02 07:01:27 +00001155 return false;
1156}
1157
1158//===----------------------------------------------------------------------===//
1159// Type Parsing.
1160//===----------------------------------------------------------------------===//
1161
1162/// ParseType - Parse and resolve a full type.
Chris Lattnera9a9e072009-03-09 04:49:14 +00001163bool LLParser::ParseType(PATypeHolder &Result, bool AllowVoid) {
1164 LocTy TypeLoc = Lex.getLoc();
Chris Lattnerdf986172009-01-02 07:01:27 +00001165 if (ParseTypeRec(Result)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001166
Chris Lattnerdf986172009-01-02 07:01:27 +00001167 // Verify no unresolved uprefs.
1168 if (!UpRefs.empty())
1169 return Error(UpRefs.back().Loc, "invalid unresolved type up reference");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001170
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001171 if (!AllowVoid && Result.get()->isVoidTy())
Chris Lattnera9a9e072009-03-09 04:49:14 +00001172 return Error(TypeLoc, "void type only allowed for function results");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001173
Chris Lattnerdf986172009-01-02 07:01:27 +00001174 return false;
1175}
1176
1177/// HandleUpRefs - Every time we finish a new layer of types, this function is
1178/// called. It loops through the UpRefs vector, which is a list of the
1179/// currently active types. For each type, if the up-reference is contained in
1180/// the newly completed type, we decrement the level count. When the level
1181/// count reaches zero, the up-referenced type is the type that is passed in:
1182/// thus we can complete the cycle.
1183///
1184PATypeHolder LLParser::HandleUpRefs(const Type *ty) {
1185 // If Ty isn't abstract, or if there are no up-references in it, then there is
1186 // nothing to resolve here.
1187 if (!ty->isAbstract() || UpRefs.empty()) return ty;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001188
Chris Lattnerdf986172009-01-02 07:01:27 +00001189 PATypeHolder Ty(ty);
1190#if 0
David Greene0e28d762009-12-23 23:38:28 +00001191 dbgs() << "Type '" << Ty->getDescription()
Chris Lattnerdf986172009-01-02 07:01:27 +00001192 << "' newly formed. Resolving upreferences.\n"
1193 << UpRefs.size() << " upreferences active!\n";
1194#endif
Daniel Dunbara279bc32009-09-20 02:20:51 +00001195
Chris Lattnerdf986172009-01-02 07:01:27 +00001196 // If we find any resolvable upreferences (i.e., those whose NestingLevel goes
1197 // to zero), we resolve them all together before we resolve them to Ty. At
1198 // the end of the loop, if there is anything to resolve to Ty, it will be in
1199 // this variable.
1200 OpaqueType *TypeToResolve = 0;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001201
Chris Lattnerdf986172009-01-02 07:01:27 +00001202 for (unsigned i = 0; i != UpRefs.size(); ++i) {
1203 // Determine if 'Ty' directly contains this up-references 'LastContainedTy'.
1204 bool ContainsType =
1205 std::find(Ty->subtype_begin(), Ty->subtype_end(),
1206 UpRefs[i].LastContainedTy) != Ty->subtype_end();
Daniel Dunbara279bc32009-09-20 02:20:51 +00001207
Chris Lattnerdf986172009-01-02 07:01:27 +00001208#if 0
David Greene0e28d762009-12-23 23:38:28 +00001209 dbgs() << " UR#" << i << " - TypeContains(" << Ty->getDescription() << ", "
Chris Lattnerdf986172009-01-02 07:01:27 +00001210 << UpRefs[i].LastContainedTy->getDescription() << ") = "
1211 << (ContainsType ? "true" : "false")
1212 << " level=" << UpRefs[i].NestingLevel << "\n";
1213#endif
1214 if (!ContainsType)
1215 continue;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001216
Chris Lattnerdf986172009-01-02 07:01:27 +00001217 // Decrement level of upreference
1218 unsigned Level = --UpRefs[i].NestingLevel;
1219 UpRefs[i].LastContainedTy = Ty;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001220
Chris Lattnerdf986172009-01-02 07:01:27 +00001221 // If the Up-reference has a non-zero level, it shouldn't be resolved yet.
1222 if (Level != 0)
1223 continue;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001224
Chris Lattnerdf986172009-01-02 07:01:27 +00001225#if 0
David Greene0e28d762009-12-23 23:38:28 +00001226 dbgs() << " * Resolving upreference for " << UpRefs[i].UpRefTy << "\n";
Chris Lattnerdf986172009-01-02 07:01:27 +00001227#endif
1228 if (!TypeToResolve)
1229 TypeToResolve = UpRefs[i].UpRefTy;
1230 else
1231 UpRefs[i].UpRefTy->refineAbstractTypeTo(TypeToResolve);
1232 UpRefs.erase(UpRefs.begin()+i); // Remove from upreference list.
1233 --i; // Do not skip the next element.
1234 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001235
Chris Lattnerdf986172009-01-02 07:01:27 +00001236 if (TypeToResolve)
1237 TypeToResolve->refineAbstractTypeTo(Ty);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001238
Chris Lattnerdf986172009-01-02 07:01:27 +00001239 return Ty;
1240}
1241
1242
1243/// ParseTypeRec - The recursive function used to process the internal
1244/// implementation details of types.
1245bool LLParser::ParseTypeRec(PATypeHolder &Result) {
1246 switch (Lex.getKind()) {
1247 default:
1248 return TokError("expected type");
1249 case lltok::Type:
1250 // TypeRec ::= 'float' | 'void' (etc)
1251 Result = Lex.getTyVal();
Daniel Dunbara279bc32009-09-20 02:20:51 +00001252 Lex.Lex();
Chris Lattnerdf986172009-01-02 07:01:27 +00001253 break;
1254 case lltok::kw_opaque:
1255 // TypeRec ::= 'opaque'
Owen Anderson0e275dc2009-08-13 23:27:32 +00001256 Result = OpaqueType::get(Context);
Chris Lattnerdf986172009-01-02 07:01:27 +00001257 Lex.Lex();
1258 break;
1259 case lltok::lbrace:
1260 // TypeRec ::= '{' ... '}'
1261 if (ParseStructType(Result, false))
1262 return true;
1263 break;
1264 case lltok::lsquare:
1265 // TypeRec ::= '[' ... ']'
1266 Lex.Lex(); // eat the lsquare.
1267 if (ParseArrayVectorType(Result, false))
1268 return true;
1269 break;
1270 case lltok::less: // Either vector or packed struct.
1271 // TypeRec ::= '<' ... '>'
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001272 Lex.Lex();
1273 if (Lex.getKind() == lltok::lbrace) {
1274 if (ParseStructType(Result, true) ||
1275 ParseToken(lltok::greater, "expected '>' at end of packed struct"))
Chris Lattnerdf986172009-01-02 07:01:27 +00001276 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00001277 } else if (ParseArrayVectorType(Result, true))
1278 return true;
1279 break;
1280 case lltok::LocalVar:
1281 case lltok::StringConstant: // FIXME: REMOVE IN LLVM 3.0
1282 // TypeRec ::= %foo
1283 if (const Type *T = M->getTypeByName(Lex.getStrVal())) {
1284 Result = T;
1285 } else {
Owen Anderson0e275dc2009-08-13 23:27:32 +00001286 Result = OpaqueType::get(Context);
Chris Lattnerdf986172009-01-02 07:01:27 +00001287 ForwardRefTypes.insert(std::make_pair(Lex.getStrVal(),
1288 std::make_pair(Result,
1289 Lex.getLoc())));
1290 M->addTypeName(Lex.getStrVal(), Result.get());
1291 }
1292 Lex.Lex();
1293 break;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001294
Chris Lattnerdf986172009-01-02 07:01:27 +00001295 case lltok::LocalVarID:
1296 // TypeRec ::= %4
1297 if (Lex.getUIntVal() < NumberedTypes.size())
1298 Result = NumberedTypes[Lex.getUIntVal()];
1299 else {
1300 std::map<unsigned, std::pair<PATypeHolder, LocTy> >::iterator
1301 I = ForwardRefTypeIDs.find(Lex.getUIntVal());
1302 if (I != ForwardRefTypeIDs.end())
1303 Result = I->second.first;
1304 else {
Owen Anderson0e275dc2009-08-13 23:27:32 +00001305 Result = OpaqueType::get(Context);
Chris Lattnerdf986172009-01-02 07:01:27 +00001306 ForwardRefTypeIDs.insert(std::make_pair(Lex.getUIntVal(),
1307 std::make_pair(Result,
1308 Lex.getLoc())));
1309 }
1310 }
1311 Lex.Lex();
1312 break;
1313 case lltok::backslash: {
1314 // TypeRec ::= '\' 4
Chris Lattnerdf986172009-01-02 07:01:27 +00001315 Lex.Lex();
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001316 unsigned Val;
1317 if (ParseUInt32(Val)) return true;
Owen Anderson0e275dc2009-08-13 23:27:32 +00001318 OpaqueType *OT = OpaqueType::get(Context); //Use temporary placeholder.
Chris Lattnerdf986172009-01-02 07:01:27 +00001319 UpRefs.push_back(UpRefRecord(Lex.getLoc(), Val, OT));
1320 Result = OT;
1321 break;
1322 }
1323 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001324
1325 // Parse the type suffixes.
Chris Lattnerdf986172009-01-02 07:01:27 +00001326 while (1) {
1327 switch (Lex.getKind()) {
1328 // End of type.
Daniel Dunbara279bc32009-09-20 02:20:51 +00001329 default: return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00001330
1331 // TypeRec ::= TypeRec '*'
1332 case lltok::star:
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001333 if (Result.get()->isLabelTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00001334 return TokError("basic block pointers are invalid");
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001335 if (Result.get()->isVoidTy())
Dan Gohmanb9070d32009-02-09 17:41:21 +00001336 return TokError("pointers to void are invalid; use i8* instead");
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001337 if (!PointerType::isValidElementType(Result.get()))
1338 return TokError("pointer to this type is invalid");
Owen Andersondebcb012009-07-29 22:17:13 +00001339 Result = HandleUpRefs(PointerType::getUnqual(Result.get()));
Chris Lattnerdf986172009-01-02 07:01:27 +00001340 Lex.Lex();
1341 break;
1342
1343 // TypeRec ::= TypeRec 'addrspace' '(' uint32 ')' '*'
1344 case lltok::kw_addrspace: {
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001345 if (Result.get()->isLabelTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00001346 return TokError("basic block pointers are invalid");
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001347 if (Result.get()->isVoidTy())
Dan Gohmanb9070d32009-02-09 17:41:21 +00001348 return TokError("pointers to void are invalid; use i8* instead");
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001349 if (!PointerType::isValidElementType(Result.get()))
1350 return TokError("pointer to this type is invalid");
Chris Lattnerdf986172009-01-02 07:01:27 +00001351 unsigned AddrSpace;
1352 if (ParseOptionalAddrSpace(AddrSpace) ||
1353 ParseToken(lltok::star, "expected '*' in address space"))
1354 return true;
1355
Owen Andersondebcb012009-07-29 22:17:13 +00001356 Result = HandleUpRefs(PointerType::get(Result.get(), AddrSpace));
Chris Lattnerdf986172009-01-02 07:01:27 +00001357 break;
1358 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001359
Chris Lattnerdf986172009-01-02 07:01:27 +00001360 /// Types '(' ArgTypeListI ')' OptFuncAttrs
1361 case lltok::lparen:
1362 if (ParseFunctionType(Result))
1363 return true;
1364 break;
1365 }
1366 }
1367}
1368
1369/// ParseParameterList
1370/// ::= '(' ')'
1371/// ::= '(' Arg (',' Arg)* ')'
1372/// Arg
1373/// ::= Type OptionalAttributes Value OptionalAttributes
1374bool LLParser::ParseParameterList(SmallVectorImpl<ParamInfo> &ArgList,
1375 PerFunctionState &PFS) {
1376 if (ParseToken(lltok::lparen, "expected '(' in call"))
1377 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001378
Chris Lattnerdf986172009-01-02 07:01:27 +00001379 while (Lex.getKind() != lltok::rparen) {
1380 // If this isn't the first argument, we need a comma.
1381 if (!ArgList.empty() &&
1382 ParseToken(lltok::comma, "expected ',' in argument list"))
1383 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001384
Chris Lattnerdf986172009-01-02 07:01:27 +00001385 // Parse the argument.
1386 LocTy ArgLoc;
Owen Anderson1d0be152009-08-13 21:58:54 +00001387 PATypeHolder ArgTy(Type::getVoidTy(Context));
Victor Hernandez19715562009-12-03 23:40:58 +00001388 unsigned ArgAttrs1 = Attribute::None;
1389 unsigned ArgAttrs2 = Attribute::None;
Chris Lattnerdf986172009-01-02 07:01:27 +00001390 Value *V;
Victor Hernandez19715562009-12-03 23:40:58 +00001391 if (ParseType(ArgTy, ArgLoc))
Chris Lattnerdf986172009-01-02 07:01:27 +00001392 return true;
Victor Hernandez19715562009-12-03 23:40:58 +00001393
Chris Lattner287881d2009-12-30 02:11:14 +00001394 // Otherwise, handle normal operands.
1395 if (ParseOptionalAttrs(ArgAttrs1, 0) ||
1396 ParseValue(ArgTy, V, PFS) ||
1397 // FIXME: Should not allow attributes after the argument, remove this
1398 // in LLVM 3.0.
1399 ParseOptionalAttrs(ArgAttrs2, 3))
1400 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00001401 ArgList.push_back(ParamInfo(ArgLoc, V, ArgAttrs1|ArgAttrs2));
1402 }
1403
1404 Lex.Lex(); // Lex the ')'.
1405 return false;
1406}
1407
1408
1409
Chris Lattnerdfd19dd2009-01-05 18:34:07 +00001410/// ParseArgumentList - Parse the argument list for a function type or function
1411/// prototype. If 'inType' is true then we are parsing a FunctionType.
Chris Lattnerdf986172009-01-02 07:01:27 +00001412/// ::= '(' ArgTypeListI ')'
1413/// ArgTypeListI
1414/// ::= /*empty*/
1415/// ::= '...'
1416/// ::= ArgTypeList ',' '...'
1417/// ::= ArgType (',' ArgType)*
Chris Lattnerdfd19dd2009-01-05 18:34:07 +00001418///
Chris Lattnerdf986172009-01-02 07:01:27 +00001419bool LLParser::ParseArgumentList(std::vector<ArgInfo> &ArgList,
Chris Lattnerdfd19dd2009-01-05 18:34:07 +00001420 bool &isVarArg, bool inType) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001421 isVarArg = false;
1422 assert(Lex.getKind() == lltok::lparen);
1423 Lex.Lex(); // eat the (.
Daniel Dunbara279bc32009-09-20 02:20:51 +00001424
Chris Lattnerdf986172009-01-02 07:01:27 +00001425 if (Lex.getKind() == lltok::rparen) {
1426 // empty
1427 } else if (Lex.getKind() == lltok::dotdotdot) {
1428 isVarArg = true;
1429 Lex.Lex();
1430 } else {
1431 LocTy TypeLoc = Lex.getLoc();
Owen Anderson1d0be152009-08-13 21:58:54 +00001432 PATypeHolder ArgTy(Type::getVoidTy(Context));
Chris Lattnerdf986172009-01-02 07:01:27 +00001433 unsigned Attrs;
Chris Lattnerdf986172009-01-02 07:01:27 +00001434 std::string Name;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001435
Chris Lattnerdfd19dd2009-01-05 18:34:07 +00001436 // If we're parsing a type, use ParseTypeRec, because we allow recursive
1437 // types (such as a function returning a pointer to itself). If parsing a
1438 // function prototype, we require fully resolved types.
1439 if ((inType ? ParseTypeRec(ArgTy) : ParseType(ArgTy)) ||
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001440 ParseOptionalAttrs(Attrs, 0)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001441
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001442 if (ArgTy->isVoidTy())
Chris Lattnera9a9e072009-03-09 04:49:14 +00001443 return Error(TypeLoc, "argument can not have void type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001444
Chris Lattnerdf986172009-01-02 07:01:27 +00001445 if (Lex.getKind() == lltok::LocalVar ||
1446 Lex.getKind() == lltok::StringConstant) { // FIXME: REMOVE IN LLVM 3.0
1447 Name = Lex.getStrVal();
1448 Lex.Lex();
1449 }
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001450
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001451 if (!FunctionType::isValidArgumentType(ArgTy))
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001452 return Error(TypeLoc, "invalid type for function argument");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001453
Chris Lattnerdf986172009-01-02 07:01:27 +00001454 ArgList.push_back(ArgInfo(TypeLoc, ArgTy, Attrs, Name));
Daniel Dunbara279bc32009-09-20 02:20:51 +00001455
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001456 while (EatIfPresent(lltok::comma)) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001457 // Handle ... at end of arg list.
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001458 if (EatIfPresent(lltok::dotdotdot)) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001459 isVarArg = true;
Chris Lattnerdf986172009-01-02 07:01:27 +00001460 break;
1461 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001462
Chris Lattnerdf986172009-01-02 07:01:27 +00001463 // Otherwise must be an argument type.
1464 TypeLoc = Lex.getLoc();
Chris Lattnera9a9e072009-03-09 04:49:14 +00001465 if ((inType ? ParseTypeRec(ArgTy) : ParseType(ArgTy)) ||
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001466 ParseOptionalAttrs(Attrs, 0)) return true;
1467
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001468 if (ArgTy->isVoidTy())
Chris Lattnera9a9e072009-03-09 04:49:14 +00001469 return Error(TypeLoc, "argument can not have void type");
1470
Chris Lattnerdf986172009-01-02 07:01:27 +00001471 if (Lex.getKind() == lltok::LocalVar ||
1472 Lex.getKind() == lltok::StringConstant) { // FIXME: REMOVE IN LLVM 3.0
1473 Name = Lex.getStrVal();
1474 Lex.Lex();
1475 } else {
1476 Name = "";
1477 }
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001478
1479 if (!ArgTy->isFirstClassType() && !isa<OpaqueType>(ArgTy))
1480 return Error(TypeLoc, "invalid type for function argument");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001481
Chris Lattnerdf986172009-01-02 07:01:27 +00001482 ArgList.push_back(ArgInfo(TypeLoc, ArgTy, Attrs, Name));
1483 }
1484 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001485
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001486 return ParseToken(lltok::rparen, "expected ')' at end of argument list");
Chris Lattnerdf986172009-01-02 07:01:27 +00001487}
Daniel Dunbara279bc32009-09-20 02:20:51 +00001488
Chris Lattnerdf986172009-01-02 07:01:27 +00001489/// ParseFunctionType
1490/// ::= Type ArgumentList OptionalAttrs
1491bool LLParser::ParseFunctionType(PATypeHolder &Result) {
1492 assert(Lex.getKind() == lltok::lparen);
1493
Chris Lattnerd77d04c2009-01-05 08:04:33 +00001494 if (!FunctionType::isValidReturnType(Result))
1495 return TokError("invalid function return type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001496
Chris Lattnerdf986172009-01-02 07:01:27 +00001497 std::vector<ArgInfo> ArgList;
1498 bool isVarArg;
1499 unsigned Attrs;
Chris Lattnerdfd19dd2009-01-05 18:34:07 +00001500 if (ParseArgumentList(ArgList, isVarArg, true) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00001501 // FIXME: Allow, but ignore attributes on function types!
1502 // FIXME: Remove in LLVM 3.0
1503 ParseOptionalAttrs(Attrs, 2))
1504 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001505
Chris Lattnerdf986172009-01-02 07:01:27 +00001506 // Reject names on the arguments lists.
1507 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
1508 if (!ArgList[i].Name.empty())
1509 return Error(ArgList[i].Loc, "argument name invalid in function type");
1510 if (!ArgList[i].Attrs != 0) {
1511 // Allow but ignore attributes on function types; this permits
1512 // auto-upgrade.
1513 // FIXME: REJECT ATTRIBUTES ON FUNCTION TYPES in LLVM 3.0
1514 }
1515 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001516
Chris Lattnerdf986172009-01-02 07:01:27 +00001517 std::vector<const Type*> ArgListTy;
1518 for (unsigned i = 0, e = ArgList.size(); i != e; ++i)
1519 ArgListTy.push_back(ArgList[i].Type);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001520
Owen Andersondebcb012009-07-29 22:17:13 +00001521 Result = HandleUpRefs(FunctionType::get(Result.get(),
Owen Andersonfba933c2009-07-01 23:57:11 +00001522 ArgListTy, isVarArg));
Chris Lattnerdf986172009-01-02 07:01:27 +00001523 return false;
1524}
1525
1526/// ParseStructType: Handles packed and unpacked types. </> parsed elsewhere.
1527/// TypeRec
1528/// ::= '{' '}'
1529/// ::= '{' TypeRec (',' TypeRec)* '}'
1530/// ::= '<' '{' '}' '>'
1531/// ::= '<' '{' TypeRec (',' TypeRec)* '}' '>'
1532bool LLParser::ParseStructType(PATypeHolder &Result, bool Packed) {
1533 assert(Lex.getKind() == lltok::lbrace);
1534 Lex.Lex(); // Consume the '{'
Daniel Dunbara279bc32009-09-20 02:20:51 +00001535
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001536 if (EatIfPresent(lltok::rbrace)) {
Owen Andersond7f2a6c2009-08-05 23:16:16 +00001537 Result = StructType::get(Context, Packed);
Chris Lattnerdf986172009-01-02 07:01:27 +00001538 return false;
1539 }
1540
1541 std::vector<PATypeHolder> ParamsList;
Chris Lattnera9a9e072009-03-09 04:49:14 +00001542 LocTy EltTyLoc = Lex.getLoc();
Chris Lattnerdf986172009-01-02 07:01:27 +00001543 if (ParseTypeRec(Result)) return true;
1544 ParamsList.push_back(Result);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001545
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001546 if (Result->isVoidTy())
Chris Lattnera9a9e072009-03-09 04:49:14 +00001547 return Error(EltTyLoc, "struct element can not have void type");
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001548 if (!StructType::isValidElementType(Result))
1549 return Error(EltTyLoc, "invalid element type for struct");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001550
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001551 while (EatIfPresent(lltok::comma)) {
Chris Lattnera9a9e072009-03-09 04:49:14 +00001552 EltTyLoc = Lex.getLoc();
Chris Lattnerdf986172009-01-02 07:01:27 +00001553 if (ParseTypeRec(Result)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001554
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001555 if (Result->isVoidTy())
Chris Lattnera9a9e072009-03-09 04:49:14 +00001556 return Error(EltTyLoc, "struct element can not have void type");
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001557 if (!StructType::isValidElementType(Result))
1558 return Error(EltTyLoc, "invalid element type for struct");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001559
Chris Lattnerdf986172009-01-02 07:01:27 +00001560 ParamsList.push_back(Result);
1561 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001562
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001563 if (ParseToken(lltok::rbrace, "expected '}' at end of struct"))
1564 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001565
Chris Lattnerdf986172009-01-02 07:01:27 +00001566 std::vector<const Type*> ParamsListTy;
1567 for (unsigned i = 0, e = ParamsList.size(); i != e; ++i)
1568 ParamsListTy.push_back(ParamsList[i].get());
Owen Andersond7f2a6c2009-08-05 23:16:16 +00001569 Result = HandleUpRefs(StructType::get(Context, ParamsListTy, Packed));
Chris Lattnerdf986172009-01-02 07:01:27 +00001570 return false;
1571}
1572
1573/// ParseArrayVectorType - Parse an array or vector type, assuming the first
1574/// token has already been consumed.
Daniel Dunbara279bc32009-09-20 02:20:51 +00001575/// TypeRec
Chris Lattnerdf986172009-01-02 07:01:27 +00001576/// ::= '[' APSINTVAL 'x' Types ']'
1577/// ::= '<' APSINTVAL 'x' Types '>'
1578bool LLParser::ParseArrayVectorType(PATypeHolder &Result, bool isVector) {
1579 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned() ||
1580 Lex.getAPSIntVal().getBitWidth() > 64)
1581 return TokError("expected number in address space");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001582
Chris Lattnerdf986172009-01-02 07:01:27 +00001583 LocTy SizeLoc = Lex.getLoc();
1584 uint64_t Size = Lex.getAPSIntVal().getZExtValue();
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001585 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +00001586
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001587 if (ParseToken(lltok::kw_x, "expected 'x' after element count"))
1588 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00001589
1590 LocTy TypeLoc = Lex.getLoc();
Owen Anderson1d0be152009-08-13 21:58:54 +00001591 PATypeHolder EltTy(Type::getVoidTy(Context));
Chris Lattnerdf986172009-01-02 07:01:27 +00001592 if (ParseTypeRec(EltTy)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001593
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001594 if (EltTy->isVoidTy())
Chris Lattnera9a9e072009-03-09 04:49:14 +00001595 return Error(TypeLoc, "array and vector element type cannot be void");
1596
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001597 if (ParseToken(isVector ? lltok::greater : lltok::rsquare,
1598 "expected end of sequential type"))
1599 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001600
Chris Lattnerdf986172009-01-02 07:01:27 +00001601 if (isVector) {
Chris Lattner452e2622009-02-28 18:12:41 +00001602 if (Size == 0)
1603 return Error(SizeLoc, "zero element vector is illegal");
Chris Lattnerdf986172009-01-02 07:01:27 +00001604 if ((unsigned)Size != Size)
1605 return Error(SizeLoc, "size too large for vector");
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001606 if (!VectorType::isValidElementType(EltTy))
Chris Lattnerdf986172009-01-02 07:01:27 +00001607 return Error(TypeLoc, "vector element type must be fp or integer");
Owen Andersondebcb012009-07-29 22:17:13 +00001608 Result = VectorType::get(EltTy, unsigned(Size));
Chris Lattnerdf986172009-01-02 07:01:27 +00001609 } else {
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001610 if (!ArrayType::isValidElementType(EltTy))
Chris Lattnerdf986172009-01-02 07:01:27 +00001611 return Error(TypeLoc, "invalid array element type");
Owen Andersondebcb012009-07-29 22:17:13 +00001612 Result = HandleUpRefs(ArrayType::get(EltTy, Size));
Chris Lattnerdf986172009-01-02 07:01:27 +00001613 }
1614 return false;
1615}
1616
1617//===----------------------------------------------------------------------===//
1618// Function Semantic Analysis.
1619//===----------------------------------------------------------------------===//
1620
Chris Lattner09d9ef42009-10-28 03:39:23 +00001621LLParser::PerFunctionState::PerFunctionState(LLParser &p, Function &f,
1622 int functionNumber)
1623 : P(p), F(f), FunctionNumber(functionNumber) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001624
1625 // Insert unnamed arguments into the NumberedVals list.
1626 for (Function::arg_iterator AI = F.arg_begin(), E = F.arg_end();
1627 AI != E; ++AI)
1628 if (!AI->hasName())
1629 NumberedVals.push_back(AI);
1630}
1631
1632LLParser::PerFunctionState::~PerFunctionState() {
1633 // If there were any forward referenced non-basicblock values, delete them.
1634 for (std::map<std::string, std::pair<Value*, LocTy> >::iterator
1635 I = ForwardRefVals.begin(), E = ForwardRefVals.end(); I != E; ++I)
1636 if (!isa<BasicBlock>(I->second.first)) {
Owen Andersonb43eae72009-07-02 17:04:01 +00001637 I->second.first->replaceAllUsesWith(
Owen Anderson9e9a0d52009-07-30 23:03:37 +00001638 UndefValue::get(I->second.first->getType()));
Chris Lattnerdf986172009-01-02 07:01:27 +00001639 delete I->second.first;
1640 I->second.first = 0;
1641 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001642
Chris Lattnerdf986172009-01-02 07:01:27 +00001643 for (std::map<unsigned, std::pair<Value*, LocTy> >::iterator
1644 I = ForwardRefValIDs.begin(), E = ForwardRefValIDs.end(); I != E; ++I)
1645 if (!isa<BasicBlock>(I->second.first)) {
Owen Andersonb43eae72009-07-02 17:04:01 +00001646 I->second.first->replaceAllUsesWith(
Owen Anderson9e9a0d52009-07-30 23:03:37 +00001647 UndefValue::get(I->second.first->getType()));
Chris Lattnerdf986172009-01-02 07:01:27 +00001648 delete I->second.first;
1649 I->second.first = 0;
1650 }
1651}
1652
Chris Lattner09d9ef42009-10-28 03:39:23 +00001653bool LLParser::PerFunctionState::FinishFunction() {
1654 // Check to see if someone took the address of labels in this block.
1655 if (!P.ForwardRefBlockAddresses.empty()) {
1656 ValID FunctionID;
1657 if (!F.getName().empty()) {
1658 FunctionID.Kind = ValID::t_GlobalName;
1659 FunctionID.StrVal = F.getName();
1660 } else {
1661 FunctionID.Kind = ValID::t_GlobalID;
1662 FunctionID.UIntVal = FunctionNumber;
1663 }
1664
1665 std::map<ValID, std::vector<std::pair<ValID, GlobalValue*> > >::iterator
1666 FRBAI = P.ForwardRefBlockAddresses.find(FunctionID);
1667 if (FRBAI != P.ForwardRefBlockAddresses.end()) {
1668 // Resolve all these references.
1669 if (P.ResolveForwardRefBlockAddresses(&F, FRBAI->second, this))
1670 return true;
1671
1672 P.ForwardRefBlockAddresses.erase(FRBAI);
1673 }
1674 }
1675
Chris Lattnerdf986172009-01-02 07:01:27 +00001676 if (!ForwardRefVals.empty())
1677 return P.Error(ForwardRefVals.begin()->second.second,
1678 "use of undefined value '%" + ForwardRefVals.begin()->first +
1679 "'");
1680 if (!ForwardRefValIDs.empty())
1681 return P.Error(ForwardRefValIDs.begin()->second.second,
1682 "use of undefined value '%" +
1683 utostr(ForwardRefValIDs.begin()->first) + "'");
1684 return false;
1685}
1686
1687
1688/// GetVal - Get a value with the specified name or ID, creating a
1689/// forward reference record if needed. This can return null if the value
1690/// exists but does not have the right type.
1691Value *LLParser::PerFunctionState::GetVal(const std::string &Name,
1692 const Type *Ty, LocTy Loc) {
1693 // Look this name up in the normal function symbol table.
1694 Value *Val = F.getValueSymbolTable().lookup(Name);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001695
Chris Lattnerdf986172009-01-02 07:01:27 +00001696 // If this is a forward reference for the value, see if we already created a
1697 // forward ref record.
1698 if (Val == 0) {
1699 std::map<std::string, std::pair<Value*, LocTy> >::iterator
1700 I = ForwardRefVals.find(Name);
1701 if (I != ForwardRefVals.end())
1702 Val = I->second.first;
1703 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001704
Chris Lattnerdf986172009-01-02 07:01:27 +00001705 // If we have the value in the symbol table or fwd-ref table, return it.
1706 if (Val) {
1707 if (Val->getType() == Ty) return Val;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001708 if (Ty->isLabelTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00001709 P.Error(Loc, "'%" + Name + "' is not a basic block");
1710 else
1711 P.Error(Loc, "'%" + Name + "' defined with type '" +
1712 Val->getType()->getDescription() + "'");
1713 return 0;
1714 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001715
Chris Lattnerdf986172009-01-02 07:01:27 +00001716 // Don't make placeholders with invalid type.
Benjamin Kramerf0127052010-01-05 13:12:22 +00001717 if (!Ty->isFirstClassType() && !isa<OpaqueType>(Ty) && !Ty->isLabelTy()) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001718 P.Error(Loc, "invalid use of a non-first-class type");
1719 return 0;
1720 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001721
Chris Lattnerdf986172009-01-02 07:01:27 +00001722 // Otherwise, create a new forward reference for this value and remember it.
1723 Value *FwdVal;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001724 if (Ty->isLabelTy())
Owen Anderson1d0be152009-08-13 21:58:54 +00001725 FwdVal = BasicBlock::Create(F.getContext(), Name, &F);
Chris Lattnerdf986172009-01-02 07:01:27 +00001726 else
1727 FwdVal = new Argument(Ty, Name);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001728
Chris Lattnerdf986172009-01-02 07:01:27 +00001729 ForwardRefVals[Name] = std::make_pair(FwdVal, Loc);
1730 return FwdVal;
1731}
1732
1733Value *LLParser::PerFunctionState::GetVal(unsigned ID, const Type *Ty,
1734 LocTy Loc) {
1735 // Look this name up in the normal function symbol table.
1736 Value *Val = ID < NumberedVals.size() ? NumberedVals[ID] : 0;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001737
Chris Lattnerdf986172009-01-02 07:01:27 +00001738 // If this is a forward reference for the value, see if we already created a
1739 // forward ref record.
1740 if (Val == 0) {
1741 std::map<unsigned, std::pair<Value*, LocTy> >::iterator
1742 I = ForwardRefValIDs.find(ID);
1743 if (I != ForwardRefValIDs.end())
1744 Val = I->second.first;
1745 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001746
Chris Lattnerdf986172009-01-02 07:01:27 +00001747 // If we have the value in the symbol table or fwd-ref table, return it.
1748 if (Val) {
1749 if (Val->getType() == Ty) return Val;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001750 if (Ty->isLabelTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00001751 P.Error(Loc, "'%" + utostr(ID) + "' is not a basic block");
1752 else
1753 P.Error(Loc, "'%" + utostr(ID) + "' defined with type '" +
1754 Val->getType()->getDescription() + "'");
1755 return 0;
1756 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001757
Benjamin Kramerf0127052010-01-05 13:12:22 +00001758 if (!Ty->isFirstClassType() && !isa<OpaqueType>(Ty) && !Ty->isLabelTy()) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001759 P.Error(Loc, "invalid use of a non-first-class type");
1760 return 0;
1761 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001762
Chris Lattnerdf986172009-01-02 07:01:27 +00001763 // Otherwise, create a new forward reference for this value and remember it.
1764 Value *FwdVal;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001765 if (Ty->isLabelTy())
Owen Anderson1d0be152009-08-13 21:58:54 +00001766 FwdVal = BasicBlock::Create(F.getContext(), "", &F);
Chris Lattnerdf986172009-01-02 07:01:27 +00001767 else
1768 FwdVal = new Argument(Ty);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001769
Chris Lattnerdf986172009-01-02 07:01:27 +00001770 ForwardRefValIDs[ID] = std::make_pair(FwdVal, Loc);
1771 return FwdVal;
1772}
1773
1774/// SetInstName - After an instruction is parsed and inserted into its
1775/// basic block, this installs its name.
1776bool LLParser::PerFunctionState::SetInstName(int NameID,
1777 const std::string &NameStr,
1778 LocTy NameLoc, Instruction *Inst) {
1779 // If this instruction has void type, it cannot have a name or ID specified.
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001780 if (Inst->getType()->isVoidTy()) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001781 if (NameID != -1 || !NameStr.empty())
1782 return P.Error(NameLoc, "instructions returning void cannot have a name");
1783 return false;
1784 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001785
Chris Lattnerdf986172009-01-02 07:01:27 +00001786 // If this was a numbered instruction, verify that the instruction is the
1787 // expected value and resolve any forward references.
1788 if (NameStr.empty()) {
1789 // If neither a name nor an ID was specified, just use the next ID.
1790 if (NameID == -1)
1791 NameID = NumberedVals.size();
Daniel Dunbara279bc32009-09-20 02:20:51 +00001792
Chris Lattnerdf986172009-01-02 07:01:27 +00001793 if (unsigned(NameID) != NumberedVals.size())
1794 return P.Error(NameLoc, "instruction expected to be numbered '%" +
1795 utostr(NumberedVals.size()) + "'");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001796
Chris Lattnerdf986172009-01-02 07:01:27 +00001797 std::map<unsigned, std::pair<Value*, LocTy> >::iterator FI =
1798 ForwardRefValIDs.find(NameID);
1799 if (FI != ForwardRefValIDs.end()) {
1800 if (FI->second.first->getType() != Inst->getType())
Daniel Dunbara279bc32009-09-20 02:20:51 +00001801 return P.Error(NameLoc, "instruction forward referenced with type '" +
Chris Lattnerdf986172009-01-02 07:01:27 +00001802 FI->second.first->getType()->getDescription() + "'");
1803 FI->second.first->replaceAllUsesWith(Inst);
Nuno Lopes2b4f28e2009-09-02 15:02:57 +00001804 delete FI->second.first;
Chris Lattnerdf986172009-01-02 07:01:27 +00001805 ForwardRefValIDs.erase(FI);
1806 }
1807
1808 NumberedVals.push_back(Inst);
1809 return false;
1810 }
1811
1812 // Otherwise, the instruction had a name. Resolve forward refs and set it.
1813 std::map<std::string, std::pair<Value*, LocTy> >::iterator
1814 FI = ForwardRefVals.find(NameStr);
1815 if (FI != ForwardRefVals.end()) {
1816 if (FI->second.first->getType() != Inst->getType())
Daniel Dunbara279bc32009-09-20 02:20:51 +00001817 return P.Error(NameLoc, "instruction forward referenced with type '" +
Chris Lattnerdf986172009-01-02 07:01:27 +00001818 FI->second.first->getType()->getDescription() + "'");
1819 FI->second.first->replaceAllUsesWith(Inst);
Nuno Lopes531552a2009-09-02 14:22:03 +00001820 delete FI->second.first;
Chris Lattnerdf986172009-01-02 07:01:27 +00001821 ForwardRefVals.erase(FI);
1822 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001823
Chris Lattnerdf986172009-01-02 07:01:27 +00001824 // Set the name on the instruction.
1825 Inst->setName(NameStr);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001826
Chris Lattnerdf986172009-01-02 07:01:27 +00001827 if (Inst->getNameStr() != NameStr)
Daniel Dunbara279bc32009-09-20 02:20:51 +00001828 return P.Error(NameLoc, "multiple definition of local value named '" +
Chris Lattnerdf986172009-01-02 07:01:27 +00001829 NameStr + "'");
1830 return false;
1831}
1832
1833/// GetBB - Get a basic block with the specified name or ID, creating a
1834/// forward reference record if needed.
1835BasicBlock *LLParser::PerFunctionState::GetBB(const std::string &Name,
1836 LocTy Loc) {
Owen Anderson1d0be152009-08-13 21:58:54 +00001837 return cast_or_null<BasicBlock>(GetVal(Name,
1838 Type::getLabelTy(F.getContext()), Loc));
Chris Lattnerdf986172009-01-02 07:01:27 +00001839}
1840
1841BasicBlock *LLParser::PerFunctionState::GetBB(unsigned ID, LocTy Loc) {
Owen Anderson1d0be152009-08-13 21:58:54 +00001842 return cast_or_null<BasicBlock>(GetVal(ID,
1843 Type::getLabelTy(F.getContext()), Loc));
Chris Lattnerdf986172009-01-02 07:01:27 +00001844}
1845
1846/// DefineBB - Define the specified basic block, which is either named or
1847/// unnamed. If there is an error, this returns null otherwise it returns
1848/// the block being defined.
1849BasicBlock *LLParser::PerFunctionState::DefineBB(const std::string &Name,
1850 LocTy Loc) {
1851 BasicBlock *BB;
1852 if (Name.empty())
1853 BB = GetBB(NumberedVals.size(), Loc);
1854 else
1855 BB = GetBB(Name, Loc);
1856 if (BB == 0) return 0; // Already diagnosed error.
Daniel Dunbara279bc32009-09-20 02:20:51 +00001857
Chris Lattnerdf986172009-01-02 07:01:27 +00001858 // Move the block to the end of the function. Forward ref'd blocks are
1859 // inserted wherever they happen to be referenced.
1860 F.getBasicBlockList().splice(F.end(), F.getBasicBlockList(), BB);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001861
Chris Lattnerdf986172009-01-02 07:01:27 +00001862 // Remove the block from forward ref sets.
1863 if (Name.empty()) {
1864 ForwardRefValIDs.erase(NumberedVals.size());
1865 NumberedVals.push_back(BB);
1866 } else {
1867 // BB forward references are already in the function symbol table.
1868 ForwardRefVals.erase(Name);
1869 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001870
Chris Lattnerdf986172009-01-02 07:01:27 +00001871 return BB;
1872}
1873
1874//===----------------------------------------------------------------------===//
1875// Constants.
1876//===----------------------------------------------------------------------===//
1877
1878/// ParseValID - Parse an abstract value that doesn't necessarily have a
1879/// type implied. For example, if we parse "4" we don't know what integer type
1880/// it has. The value will later be combined with its type and checked for
1881/// sanity.
1882bool LLParser::ParseValID(ValID &ID) {
1883 ID.Loc = Lex.getLoc();
1884 switch (Lex.getKind()) {
1885 default: return TokError("expected value token");
1886 case lltok::GlobalID: // @42
1887 ID.UIntVal = Lex.getUIntVal();
1888 ID.Kind = ValID::t_GlobalID;
1889 break;
1890 case lltok::GlobalVar: // @foo
1891 ID.StrVal = Lex.getStrVal();
1892 ID.Kind = ValID::t_GlobalName;
1893 break;
1894 case lltok::LocalVarID: // %42
1895 ID.UIntVal = Lex.getUIntVal();
1896 ID.Kind = ValID::t_LocalID;
1897 break;
1898 case lltok::LocalVar: // %foo
1899 case lltok::StringConstant: // "foo" - FIXME: REMOVE IN LLVM 3.0
1900 ID.StrVal = Lex.getStrVal();
1901 ID.Kind = ValID::t_LocalName;
1902 break;
Chris Lattnere434d272009-12-30 04:56:59 +00001903 case lltok::exclaim: // !{...} MDNode, !"foo" MDString
Nick Lewycky21cc4462009-04-04 07:22:01 +00001904 Lex.Lex();
Chris Lattner442ffa12009-12-29 21:53:55 +00001905
Chris Lattner3f5132a2009-12-29 22:40:21 +00001906 if (EatIfPresent(lltok::lbrace)) {
Nick Lewyckycb337992009-05-10 20:57:05 +00001907 SmallVector<Value*, 16> Elts;
Nick Lewycky21cc4462009-04-04 07:22:01 +00001908 if (ParseMDNodeVector(Elts) ||
1909 ParseToken(lltok::rbrace, "expected end of metadata node"))
1910 return true;
Nick Lewyckycb337992009-05-10 20:57:05 +00001911
Chris Lattner287881d2009-12-30 02:11:14 +00001912 ID.MDNodeVal = MDNode::get(Context, Elts.data(), Elts.size());
1913 ID.Kind = ValID::t_MDNode;
Nick Lewycky21cc4462009-04-04 07:22:01 +00001914 return false;
1915 }
1916
Devang Patel923078c2009-07-01 19:21:12 +00001917 // Standalone metadata reference
1918 // !{ ..., !42, ... }
Chris Lattner860775c2009-12-30 04:13:37 +00001919 if (Lex.getKind() == lltok::APSInt) {
Chris Lattner4a72efc2009-12-30 04:15:23 +00001920 if (ParseMDNodeID(ID.MDNodeVal)) return true;
Chris Lattner287881d2009-12-30 02:11:14 +00001921 ID.Kind = ValID::t_MDNode;
Devang Patel923078c2009-07-01 19:21:12 +00001922 return false;
Chris Lattner287881d2009-12-30 02:11:14 +00001923 }
1924
Nick Lewycky21cc4462009-04-04 07:22:01 +00001925 // MDString:
1926 // ::= '!' STRINGCONSTANT
Chris Lattner287881d2009-12-30 02:11:14 +00001927 if (ParseMDString(ID.MDStringVal)) return true;
1928 ID.Kind = ValID::t_MDString;
Nick Lewycky21cc4462009-04-04 07:22:01 +00001929 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00001930 case lltok::APSInt:
Daniel Dunbara279bc32009-09-20 02:20:51 +00001931 ID.APSIntVal = Lex.getAPSIntVal();
Chris Lattnerdf986172009-01-02 07:01:27 +00001932 ID.Kind = ValID::t_APSInt;
1933 break;
1934 case lltok::APFloat:
1935 ID.APFloatVal = Lex.getAPFloatVal();
1936 ID.Kind = ValID::t_APFloat;
1937 break;
1938 case lltok::kw_true:
Owen Anderson5defacc2009-07-31 17:39:07 +00001939 ID.ConstantVal = ConstantInt::getTrue(Context);
Chris Lattnerdf986172009-01-02 07:01:27 +00001940 ID.Kind = ValID::t_Constant;
1941 break;
1942 case lltok::kw_false:
Owen Anderson5defacc2009-07-31 17:39:07 +00001943 ID.ConstantVal = ConstantInt::getFalse(Context);
Chris Lattnerdf986172009-01-02 07:01:27 +00001944 ID.Kind = ValID::t_Constant;
1945 break;
1946 case lltok::kw_null: ID.Kind = ValID::t_Null; break;
1947 case lltok::kw_undef: ID.Kind = ValID::t_Undef; break;
1948 case lltok::kw_zeroinitializer: ID.Kind = ValID::t_Zero; break;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001949
Chris Lattnerdf986172009-01-02 07:01:27 +00001950 case lltok::lbrace: {
1951 // ValID ::= '{' ConstVector '}'
1952 Lex.Lex();
1953 SmallVector<Constant*, 16> Elts;
1954 if (ParseGlobalValueVector(Elts) ||
1955 ParseToken(lltok::rbrace, "expected end of struct constant"))
1956 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001957
Owen Andersond7f2a6c2009-08-05 23:16:16 +00001958 ID.ConstantVal = ConstantStruct::get(Context, Elts.data(),
1959 Elts.size(), false);
Chris Lattnerdf986172009-01-02 07:01:27 +00001960 ID.Kind = ValID::t_Constant;
1961 return false;
1962 }
1963 case lltok::less: {
1964 // ValID ::= '<' ConstVector '>' --> Vector.
1965 // ValID ::= '<' '{' ConstVector '}' '>' --> Packed Struct.
1966 Lex.Lex();
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001967 bool isPackedStruct = EatIfPresent(lltok::lbrace);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001968
Chris Lattnerdf986172009-01-02 07:01:27 +00001969 SmallVector<Constant*, 16> Elts;
1970 LocTy FirstEltLoc = Lex.getLoc();
1971 if (ParseGlobalValueVector(Elts) ||
1972 (isPackedStruct &&
1973 ParseToken(lltok::rbrace, "expected end of packed struct")) ||
1974 ParseToken(lltok::greater, "expected end of constant"))
1975 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001976
Chris Lattnerdf986172009-01-02 07:01:27 +00001977 if (isPackedStruct) {
Owen Andersonfba933c2009-07-01 23:57:11 +00001978 ID.ConstantVal =
Owen Andersond7f2a6c2009-08-05 23:16:16 +00001979 ConstantStruct::get(Context, Elts.data(), Elts.size(), true);
Chris Lattnerdf986172009-01-02 07:01:27 +00001980 ID.Kind = ValID::t_Constant;
1981 return false;
1982 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001983
Chris Lattnerdf986172009-01-02 07:01:27 +00001984 if (Elts.empty())
1985 return Error(ID.Loc, "constant vector must not be empty");
1986
1987 if (!Elts[0]->getType()->isInteger() &&
1988 !Elts[0]->getType()->isFloatingPoint())
1989 return Error(FirstEltLoc,
1990 "vector elements must have integer or floating point type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001991
Chris Lattnerdf986172009-01-02 07:01:27 +00001992 // Verify that all the vector elements have the same type.
1993 for (unsigned i = 1, e = Elts.size(); i != e; ++i)
1994 if (Elts[i]->getType() != Elts[0]->getType())
1995 return Error(FirstEltLoc,
1996 "vector element #" + utostr(i) +
1997 " is not of type '" + Elts[0]->getType()->getDescription());
Daniel Dunbara279bc32009-09-20 02:20:51 +00001998
Owen Andersonaf7ec972009-07-28 21:19:26 +00001999 ID.ConstantVal = ConstantVector::get(Elts.data(), Elts.size());
Chris Lattnerdf986172009-01-02 07:01:27 +00002000 ID.Kind = ValID::t_Constant;
2001 return false;
2002 }
2003 case lltok::lsquare: { // Array Constant
2004 Lex.Lex();
2005 SmallVector<Constant*, 16> Elts;
2006 LocTy FirstEltLoc = Lex.getLoc();
2007 if (ParseGlobalValueVector(Elts) ||
2008 ParseToken(lltok::rsquare, "expected end of array constant"))
2009 return true;
2010
2011 // Handle empty element.
2012 if (Elts.empty()) {
2013 // Use undef instead of an array because it's inconvenient to determine
2014 // the element type at this point, there being no elements to examine.
Chris Lattner081b5052009-01-05 07:52:51 +00002015 ID.Kind = ValID::t_EmptyArray;
Chris Lattnerdf986172009-01-02 07:01:27 +00002016 return false;
2017 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002018
Chris Lattnerdf986172009-01-02 07:01:27 +00002019 if (!Elts[0]->getType()->isFirstClassType())
Daniel Dunbara279bc32009-09-20 02:20:51 +00002020 return Error(FirstEltLoc, "invalid array element type: " +
Chris Lattnerdf986172009-01-02 07:01:27 +00002021 Elts[0]->getType()->getDescription());
Daniel Dunbara279bc32009-09-20 02:20:51 +00002022
Owen Andersondebcb012009-07-29 22:17:13 +00002023 ArrayType *ATy = ArrayType::get(Elts[0]->getType(), Elts.size());
Daniel Dunbara279bc32009-09-20 02:20:51 +00002024
Chris Lattnerdf986172009-01-02 07:01:27 +00002025 // Verify all elements are correct type!
Chris Lattner6d6b3cc2009-01-02 08:49:06 +00002026 for (unsigned i = 0, e = Elts.size(); i != e; ++i) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002027 if (Elts[i]->getType() != Elts[0]->getType())
2028 return Error(FirstEltLoc,
2029 "array element #" + utostr(i) +
2030 " is not of type '" +Elts[0]->getType()->getDescription());
2031 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002032
Owen Anderson1fd70962009-07-28 18:32:17 +00002033 ID.ConstantVal = ConstantArray::get(ATy, Elts.data(), Elts.size());
Chris Lattnerdf986172009-01-02 07:01:27 +00002034 ID.Kind = ValID::t_Constant;
2035 return false;
2036 }
2037 case lltok::kw_c: // c "foo"
2038 Lex.Lex();
Owen Anderson1d0be152009-08-13 21:58:54 +00002039 ID.ConstantVal = ConstantArray::get(Context, Lex.getStrVal(), false);
Chris Lattnerdf986172009-01-02 07:01:27 +00002040 if (ParseToken(lltok::StringConstant, "expected string")) return true;
2041 ID.Kind = ValID::t_Constant;
2042 return false;
2043
2044 case lltok::kw_asm: {
Dale Johannesen8ba2d5b2009-10-21 23:28:00 +00002045 // ValID ::= 'asm' SideEffect? AlignStack? STRINGCONSTANT ',' STRINGCONSTANT
2046 bool HasSideEffect, AlignStack;
Chris Lattnerdf986172009-01-02 07:01:27 +00002047 Lex.Lex();
2048 if (ParseOptionalToken(lltok::kw_sideeffect, HasSideEffect) ||
Dale Johannesen8ba2d5b2009-10-21 23:28:00 +00002049 ParseOptionalToken(lltok::kw_alignstack, AlignStack) ||
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002050 ParseStringConstant(ID.StrVal) ||
2051 ParseToken(lltok::comma, "expected comma in inline asm expression") ||
Chris Lattnerdf986172009-01-02 07:01:27 +00002052 ParseToken(lltok::StringConstant, "expected constraint string"))
2053 return true;
2054 ID.StrVal2 = Lex.getStrVal();
Daniel Dunbarf0bb41c2009-11-07 23:51:55 +00002055 ID.UIntVal = unsigned(HasSideEffect) | (unsigned(AlignStack)<<1);
Chris Lattnerdf986172009-01-02 07:01:27 +00002056 ID.Kind = ValID::t_InlineAsm;
2057 return false;
2058 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002059
Chris Lattner09d9ef42009-10-28 03:39:23 +00002060 case lltok::kw_blockaddress: {
2061 // ValID ::= 'blockaddress' '(' @foo ',' %bar ')'
2062 Lex.Lex();
2063
2064 ValID Fn, Label;
2065 LocTy FnLoc, LabelLoc;
2066
2067 if (ParseToken(lltok::lparen, "expected '(' in block address expression") ||
2068 ParseValID(Fn) ||
2069 ParseToken(lltok::comma, "expected comma in block address expression")||
2070 ParseValID(Label) ||
2071 ParseToken(lltok::rparen, "expected ')' in block address expression"))
2072 return true;
Chris Lattnercdfc9402009-11-01 01:27:45 +00002073
Chris Lattner09d9ef42009-10-28 03:39:23 +00002074 if (Fn.Kind != ValID::t_GlobalID && Fn.Kind != ValID::t_GlobalName)
2075 return Error(Fn.Loc, "expected function name in blockaddress");
Chris Lattnercdfc9402009-11-01 01:27:45 +00002076 if (Label.Kind != ValID::t_LocalID && Label.Kind != ValID::t_LocalName)
Chris Lattner09d9ef42009-10-28 03:39:23 +00002077 return Error(Label.Loc, "expected basic block name in blockaddress");
2078
2079 // Make a global variable as a placeholder for this reference.
2080 GlobalVariable *FwdRef = new GlobalVariable(*M, Type::getInt8Ty(Context),
2081 false, GlobalValue::InternalLinkage,
2082 0, "");
2083 ForwardRefBlockAddresses[Fn].push_back(std::make_pair(Label, FwdRef));
2084 ID.ConstantVal = FwdRef;
2085 ID.Kind = ValID::t_Constant;
2086 return false;
2087 }
2088
Chris Lattnerdf986172009-01-02 07:01:27 +00002089 case lltok::kw_trunc:
2090 case lltok::kw_zext:
2091 case lltok::kw_sext:
2092 case lltok::kw_fptrunc:
2093 case lltok::kw_fpext:
2094 case lltok::kw_bitcast:
2095 case lltok::kw_uitofp:
2096 case lltok::kw_sitofp:
2097 case lltok::kw_fptoui:
Daniel Dunbara279bc32009-09-20 02:20:51 +00002098 case lltok::kw_fptosi:
Chris Lattnerdf986172009-01-02 07:01:27 +00002099 case lltok::kw_inttoptr:
Daniel Dunbara279bc32009-09-20 02:20:51 +00002100 case lltok::kw_ptrtoint: {
Chris Lattnerdf986172009-01-02 07:01:27 +00002101 unsigned Opc = Lex.getUIntVal();
Owen Anderson1d0be152009-08-13 21:58:54 +00002102 PATypeHolder DestTy(Type::getVoidTy(Context));
Chris Lattnerdf986172009-01-02 07:01:27 +00002103 Constant *SrcVal;
2104 Lex.Lex();
2105 if (ParseToken(lltok::lparen, "expected '(' after constantexpr cast") ||
2106 ParseGlobalTypeAndValue(SrcVal) ||
Dan Gohman24b108b2009-06-15 21:52:11 +00002107 ParseToken(lltok::kw_to, "expected 'to' in constantexpr cast") ||
Chris Lattnerdf986172009-01-02 07:01:27 +00002108 ParseType(DestTy) ||
2109 ParseToken(lltok::rparen, "expected ')' at end of constantexpr cast"))
2110 return true;
2111 if (!CastInst::castIsValid((Instruction::CastOps)Opc, SrcVal, DestTy))
2112 return Error(ID.Loc, "invalid cast opcode for cast from '" +
2113 SrcVal->getType()->getDescription() + "' to '" +
2114 DestTy->getDescription() + "'");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002115 ID.ConstantVal = ConstantExpr::getCast((Instruction::CastOps)Opc,
Owen Andersonfba933c2009-07-01 23:57:11 +00002116 SrcVal, DestTy);
Chris Lattnerdf986172009-01-02 07:01:27 +00002117 ID.Kind = ValID::t_Constant;
2118 return false;
2119 }
2120 case lltok::kw_extractvalue: {
2121 Lex.Lex();
2122 Constant *Val;
2123 SmallVector<unsigned, 4> Indices;
2124 if (ParseToken(lltok::lparen, "expected '(' in extractvalue constantexpr")||
2125 ParseGlobalTypeAndValue(Val) ||
2126 ParseIndexList(Indices) ||
2127 ParseToken(lltok::rparen, "expected ')' in extractvalue constantexpr"))
2128 return true;
Devang Patele8bc45a2009-11-03 19:06:07 +00002129
Chris Lattnerdf986172009-01-02 07:01:27 +00002130 if (!isa<StructType>(Val->getType()) && !isa<ArrayType>(Val->getType()))
2131 return Error(ID.Loc, "extractvalue operand must be array or struct");
2132 if (!ExtractValueInst::getIndexedType(Val->getType(), Indices.begin(),
2133 Indices.end()))
2134 return Error(ID.Loc, "invalid indices for extractvalue");
Jay Foade3e51c02009-05-21 09:52:38 +00002135 ID.ConstantVal =
Owen Andersonbaf3c402009-07-29 18:55:55 +00002136 ConstantExpr::getExtractValue(Val, Indices.data(), Indices.size());
Chris Lattnerdf986172009-01-02 07:01:27 +00002137 ID.Kind = ValID::t_Constant;
2138 return false;
2139 }
2140 case lltok::kw_insertvalue: {
2141 Lex.Lex();
2142 Constant *Val0, *Val1;
2143 SmallVector<unsigned, 4> Indices;
2144 if (ParseToken(lltok::lparen, "expected '(' in insertvalue constantexpr")||
2145 ParseGlobalTypeAndValue(Val0) ||
2146 ParseToken(lltok::comma, "expected comma in insertvalue constantexpr")||
2147 ParseGlobalTypeAndValue(Val1) ||
2148 ParseIndexList(Indices) ||
2149 ParseToken(lltok::rparen, "expected ')' in insertvalue constantexpr"))
2150 return true;
2151 if (!isa<StructType>(Val0->getType()) && !isa<ArrayType>(Val0->getType()))
2152 return Error(ID.Loc, "extractvalue operand must be array or struct");
2153 if (!ExtractValueInst::getIndexedType(Val0->getType(), Indices.begin(),
2154 Indices.end()))
2155 return Error(ID.Loc, "invalid indices for insertvalue");
Owen Andersonbaf3c402009-07-29 18:55:55 +00002156 ID.ConstantVal = ConstantExpr::getInsertValue(Val0, Val1,
Owen Andersonfba933c2009-07-01 23:57:11 +00002157 Indices.data(), Indices.size());
Chris Lattnerdf986172009-01-02 07:01:27 +00002158 ID.Kind = ValID::t_Constant;
2159 return false;
2160 }
2161 case lltok::kw_icmp:
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00002162 case lltok::kw_fcmp: {
Chris Lattnerdf986172009-01-02 07:01:27 +00002163 unsigned PredVal, Opc = Lex.getUIntVal();
2164 Constant *Val0, *Val1;
2165 Lex.Lex();
2166 if (ParseCmpPredicate(PredVal, Opc) ||
2167 ParseToken(lltok::lparen, "expected '(' in compare constantexpr") ||
2168 ParseGlobalTypeAndValue(Val0) ||
2169 ParseToken(lltok::comma, "expected comma in compare constantexpr") ||
2170 ParseGlobalTypeAndValue(Val1) ||
2171 ParseToken(lltok::rparen, "expected ')' in compare constantexpr"))
2172 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002173
Chris Lattnerdf986172009-01-02 07:01:27 +00002174 if (Val0->getType() != Val1->getType())
2175 return Error(ID.Loc, "compare operands must have the same type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002176
Chris Lattnerdf986172009-01-02 07:01:27 +00002177 CmpInst::Predicate Pred = (CmpInst::Predicate)PredVal;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002178
Chris Lattnerdf986172009-01-02 07:01:27 +00002179 if (Opc == Instruction::FCmp) {
2180 if (!Val0->getType()->isFPOrFPVector())
2181 return Error(ID.Loc, "fcmp requires floating point operands");
Owen Andersonbaf3c402009-07-29 18:55:55 +00002182 ID.ConstantVal = ConstantExpr::getFCmp(Pred, Val0, Val1);
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00002183 } else {
2184 assert(Opc == Instruction::ICmp && "Unexpected opcode for CmpInst!");
Chris Lattnerdf986172009-01-02 07:01:27 +00002185 if (!Val0->getType()->isIntOrIntVector() &&
2186 !isa<PointerType>(Val0->getType()))
2187 return Error(ID.Loc, "icmp requires pointer or integer operands");
Owen Andersonbaf3c402009-07-29 18:55:55 +00002188 ID.ConstantVal = ConstantExpr::getICmp(Pred, Val0, Val1);
Chris Lattnerdf986172009-01-02 07:01:27 +00002189 }
2190 ID.Kind = ValID::t_Constant;
2191 return false;
2192 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002193
Chris Lattnerdf986172009-01-02 07:01:27 +00002194 // Binary Operators.
2195 case lltok::kw_add:
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002196 case lltok::kw_fadd:
Chris Lattnerdf986172009-01-02 07:01:27 +00002197 case lltok::kw_sub:
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002198 case lltok::kw_fsub:
Chris Lattnerdf986172009-01-02 07:01:27 +00002199 case lltok::kw_mul:
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002200 case lltok::kw_fmul:
Chris Lattnerdf986172009-01-02 07:01:27 +00002201 case lltok::kw_udiv:
2202 case lltok::kw_sdiv:
2203 case lltok::kw_fdiv:
2204 case lltok::kw_urem:
2205 case lltok::kw_srem:
2206 case lltok::kw_frem: {
Dan Gohman59858cf2009-07-27 16:11:46 +00002207 bool NUW = false;
2208 bool NSW = false;
2209 bool Exact = false;
Chris Lattnerdf986172009-01-02 07:01:27 +00002210 unsigned Opc = Lex.getUIntVal();
2211 Constant *Val0, *Val1;
2212 Lex.Lex();
Dan Gohman59858cf2009-07-27 16:11:46 +00002213 LocTy ModifierLoc = Lex.getLoc();
2214 if (Opc == Instruction::Add ||
2215 Opc == Instruction::Sub ||
2216 Opc == Instruction::Mul) {
2217 if (EatIfPresent(lltok::kw_nuw))
2218 NUW = true;
2219 if (EatIfPresent(lltok::kw_nsw)) {
2220 NSW = true;
2221 if (EatIfPresent(lltok::kw_nuw))
2222 NUW = true;
2223 }
2224 } else if (Opc == Instruction::SDiv) {
2225 if (EatIfPresent(lltok::kw_exact))
2226 Exact = true;
2227 }
Chris Lattnerdf986172009-01-02 07:01:27 +00002228 if (ParseToken(lltok::lparen, "expected '(' in binary constantexpr") ||
2229 ParseGlobalTypeAndValue(Val0) ||
2230 ParseToken(lltok::comma, "expected comma in binary constantexpr") ||
2231 ParseGlobalTypeAndValue(Val1) ||
2232 ParseToken(lltok::rparen, "expected ')' in binary constantexpr"))
2233 return true;
2234 if (Val0->getType() != Val1->getType())
2235 return Error(ID.Loc, "operands of constexpr must have same type");
Dan Gohman59858cf2009-07-27 16:11:46 +00002236 if (!Val0->getType()->isIntOrIntVector()) {
2237 if (NUW)
2238 return Error(ModifierLoc, "nuw only applies to integer operations");
2239 if (NSW)
2240 return Error(ModifierLoc, "nsw only applies to integer operations");
2241 }
2242 // API compatibility: Accept either integer or floating-point types with
2243 // add, sub, and mul.
Chris Lattnerdf986172009-01-02 07:01:27 +00002244 if (!Val0->getType()->isIntOrIntVector() &&
2245 !Val0->getType()->isFPOrFPVector())
2246 return Error(ID.Loc,"constexpr requires integer, fp, or vector operands");
Dan Gohmanf8dbee72009-09-07 23:54:19 +00002247 unsigned Flags = 0;
2248 if (NUW) Flags |= OverflowingBinaryOperator::NoUnsignedWrap;
2249 if (NSW) Flags |= OverflowingBinaryOperator::NoSignedWrap;
2250 if (Exact) Flags |= SDivOperator::IsExact;
2251 Constant *C = ConstantExpr::get(Opc, Val0, Val1, Flags);
Dan Gohman59858cf2009-07-27 16:11:46 +00002252 ID.ConstantVal = C;
Chris Lattnerdf986172009-01-02 07:01:27 +00002253 ID.Kind = ValID::t_Constant;
2254 return false;
2255 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002256
Chris Lattnerdf986172009-01-02 07:01:27 +00002257 // Logical Operations
2258 case lltok::kw_shl:
2259 case lltok::kw_lshr:
2260 case lltok::kw_ashr:
2261 case lltok::kw_and:
2262 case lltok::kw_or:
2263 case lltok::kw_xor: {
2264 unsigned Opc = Lex.getUIntVal();
2265 Constant *Val0, *Val1;
2266 Lex.Lex();
2267 if (ParseToken(lltok::lparen, "expected '(' in logical constantexpr") ||
2268 ParseGlobalTypeAndValue(Val0) ||
2269 ParseToken(lltok::comma, "expected comma in logical constantexpr") ||
2270 ParseGlobalTypeAndValue(Val1) ||
2271 ParseToken(lltok::rparen, "expected ')' in logical constantexpr"))
2272 return true;
2273 if (Val0->getType() != Val1->getType())
2274 return Error(ID.Loc, "operands of constexpr must have same type");
2275 if (!Val0->getType()->isIntOrIntVector())
2276 return Error(ID.Loc,
2277 "constexpr requires integer or integer vector operands");
Owen Andersonbaf3c402009-07-29 18:55:55 +00002278 ID.ConstantVal = ConstantExpr::get(Opc, Val0, Val1);
Chris Lattnerdf986172009-01-02 07:01:27 +00002279 ID.Kind = ValID::t_Constant;
2280 return false;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002281 }
2282
Chris Lattnerdf986172009-01-02 07:01:27 +00002283 case lltok::kw_getelementptr:
2284 case lltok::kw_shufflevector:
2285 case lltok::kw_insertelement:
2286 case lltok::kw_extractelement:
2287 case lltok::kw_select: {
2288 unsigned Opc = Lex.getUIntVal();
2289 SmallVector<Constant*, 16> Elts;
Dan Gohmandd8004d2009-07-27 21:53:46 +00002290 bool InBounds = false;
Chris Lattnerdf986172009-01-02 07:01:27 +00002291 Lex.Lex();
Dan Gohmandd8004d2009-07-27 21:53:46 +00002292 if (Opc == Instruction::GetElementPtr)
Dan Gohmandcb40a32009-07-29 15:58:36 +00002293 InBounds = EatIfPresent(lltok::kw_inbounds);
Chris Lattnerdf986172009-01-02 07:01:27 +00002294 if (ParseToken(lltok::lparen, "expected '(' in constantexpr") ||
2295 ParseGlobalValueVector(Elts) ||
2296 ParseToken(lltok::rparen, "expected ')' in constantexpr"))
2297 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002298
Chris Lattnerdf986172009-01-02 07:01:27 +00002299 if (Opc == Instruction::GetElementPtr) {
2300 if (Elts.size() == 0 || !isa<PointerType>(Elts[0]->getType()))
2301 return Error(ID.Loc, "getelementptr requires pointer operand");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002302
Chris Lattnerdf986172009-01-02 07:01:27 +00002303 if (!GetElementPtrInst::getIndexedType(Elts[0]->getType(),
Eli Friedman4e9bac32009-07-24 21:56:17 +00002304 (Value**)(Elts.data() + 1),
2305 Elts.size() - 1))
Chris Lattnerdf986172009-01-02 07:01:27 +00002306 return Error(ID.Loc, "invalid indices for getelementptr");
Dan Gohmanf8dbee72009-09-07 23:54:19 +00002307 ID.ConstantVal = InBounds ?
2308 ConstantExpr::getInBoundsGetElementPtr(Elts[0],
2309 Elts.data() + 1,
2310 Elts.size() - 1) :
2311 ConstantExpr::getGetElementPtr(Elts[0],
2312 Elts.data() + 1, Elts.size() - 1);
Chris Lattnerdf986172009-01-02 07:01:27 +00002313 } else if (Opc == Instruction::Select) {
2314 if (Elts.size() != 3)
2315 return Error(ID.Loc, "expected three operands to select");
2316 if (const char *Reason = SelectInst::areInvalidOperands(Elts[0], Elts[1],
2317 Elts[2]))
2318 return Error(ID.Loc, Reason);
Owen Andersonbaf3c402009-07-29 18:55:55 +00002319 ID.ConstantVal = ConstantExpr::getSelect(Elts[0], Elts[1], Elts[2]);
Chris Lattnerdf986172009-01-02 07:01:27 +00002320 } else if (Opc == Instruction::ShuffleVector) {
2321 if (Elts.size() != 3)
2322 return Error(ID.Loc, "expected three operands to shufflevector");
2323 if (!ShuffleVectorInst::isValidOperands(Elts[0], Elts[1], Elts[2]))
2324 return Error(ID.Loc, "invalid operands to shufflevector");
Owen Andersonfba933c2009-07-01 23:57:11 +00002325 ID.ConstantVal =
Owen Andersonbaf3c402009-07-29 18:55:55 +00002326 ConstantExpr::getShuffleVector(Elts[0], Elts[1],Elts[2]);
Chris Lattnerdf986172009-01-02 07:01:27 +00002327 } else if (Opc == Instruction::ExtractElement) {
2328 if (Elts.size() != 2)
2329 return Error(ID.Loc, "expected two operands to extractelement");
2330 if (!ExtractElementInst::isValidOperands(Elts[0], Elts[1]))
2331 return Error(ID.Loc, "invalid extractelement operands");
Owen Andersonbaf3c402009-07-29 18:55:55 +00002332 ID.ConstantVal = ConstantExpr::getExtractElement(Elts[0], Elts[1]);
Chris Lattnerdf986172009-01-02 07:01:27 +00002333 } else {
2334 assert(Opc == Instruction::InsertElement && "Unknown opcode");
2335 if (Elts.size() != 3)
2336 return Error(ID.Loc, "expected three operands to insertelement");
2337 if (!InsertElementInst::isValidOperands(Elts[0], Elts[1], Elts[2]))
2338 return Error(ID.Loc, "invalid insertelement operands");
Owen Andersonfba933c2009-07-01 23:57:11 +00002339 ID.ConstantVal =
Owen Andersonbaf3c402009-07-29 18:55:55 +00002340 ConstantExpr::getInsertElement(Elts[0], Elts[1],Elts[2]);
Chris Lattnerdf986172009-01-02 07:01:27 +00002341 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002342
Chris Lattnerdf986172009-01-02 07:01:27 +00002343 ID.Kind = ValID::t_Constant;
2344 return false;
2345 }
2346 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002347
Chris Lattnerdf986172009-01-02 07:01:27 +00002348 Lex.Lex();
2349 return false;
2350}
2351
2352/// ParseGlobalValue - Parse a global value with the specified type.
2353bool LLParser::ParseGlobalValue(const Type *Ty, Constant *&V) {
2354 V = 0;
2355 ValID ID;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002356 return ParseValID(ID) ||
2357 ConvertGlobalValIDToValue(Ty, ID, V);
Chris Lattnerdf986172009-01-02 07:01:27 +00002358}
2359
2360/// ConvertGlobalValIDToValue - Apply a type to a ValID to get a fully resolved
2361/// constant.
2362bool LLParser::ConvertGlobalValIDToValue(const Type *Ty, ValID &ID,
2363 Constant *&V) {
2364 if (isa<FunctionType>(Ty))
2365 return Error(ID.Loc, "functions are not values, refer to them as pointers");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002366
Chris Lattnerdf986172009-01-02 07:01:27 +00002367 switch (ID.Kind) {
Daniel Dunbara279bc32009-09-20 02:20:51 +00002368 default: llvm_unreachable("Unknown ValID!");
Chris Lattner287881d2009-12-30 02:11:14 +00002369 case ValID::t_MDNode:
2370 case ValID::t_MDString:
Devang Patele54abc92009-07-22 17:43:22 +00002371 return Error(ID.Loc, "invalid use of metadata");
Chris Lattnerdf986172009-01-02 07:01:27 +00002372 case ValID::t_LocalID:
2373 case ValID::t_LocalName:
2374 return Error(ID.Loc, "invalid use of function-local name");
2375 case ValID::t_InlineAsm:
2376 return Error(ID.Loc, "inline asm can only be an operand of call/invoke");
2377 case ValID::t_GlobalName:
2378 V = GetGlobalVal(ID.StrVal, Ty, ID.Loc);
2379 return V == 0;
2380 case ValID::t_GlobalID:
2381 V = GetGlobalVal(ID.UIntVal, Ty, ID.Loc);
2382 return V == 0;
2383 case ValID::t_APSInt:
2384 if (!isa<IntegerType>(Ty))
2385 return Error(ID.Loc, "integer constant must have integer type");
2386 ID.APSIntVal.extOrTrunc(Ty->getPrimitiveSizeInBits());
Owen Andersoneed707b2009-07-24 23:12:02 +00002387 V = ConstantInt::get(Context, ID.APSIntVal);
Chris Lattnerdf986172009-01-02 07:01:27 +00002388 return false;
2389 case ValID::t_APFloat:
2390 if (!Ty->isFloatingPoint() ||
2391 !ConstantFP::isValueValidForType(Ty, ID.APFloatVal))
2392 return Error(ID.Loc, "floating point constant invalid for type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002393
Chris Lattnerdf986172009-01-02 07:01:27 +00002394 // The lexer has no type info, so builds all float and double FP constants
2395 // as double. Fix this here. Long double does not need this.
2396 if (&ID.APFloatVal.getSemantics() == &APFloat::IEEEdouble &&
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00002397 Ty->isFloatTy()) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002398 bool Ignored;
2399 ID.APFloatVal.convert(APFloat::IEEEsingle, APFloat::rmNearestTiesToEven,
2400 &Ignored);
2401 }
Owen Anderson6f83c9c2009-07-27 20:59:43 +00002402 V = ConstantFP::get(Context, ID.APFloatVal);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002403
Chris Lattner959873d2009-01-05 18:24:23 +00002404 if (V->getType() != Ty)
2405 return Error(ID.Loc, "floating point constant does not have type '" +
2406 Ty->getDescription() + "'");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002407
Chris Lattnerdf986172009-01-02 07:01:27 +00002408 return false;
2409 case ValID::t_Null:
2410 if (!isa<PointerType>(Ty))
2411 return Error(ID.Loc, "null must be a pointer type");
Owen Anderson9e9a0d52009-07-30 23:03:37 +00002412 V = ConstantPointerNull::get(cast<PointerType>(Ty));
Chris Lattnerdf986172009-01-02 07:01:27 +00002413 return false;
2414 case ValID::t_Undef:
Chris Lattnere67c1aa2009-01-05 08:13:38 +00002415 // FIXME: LabelTy should not be a first-class type.
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00002416 if ((!Ty->isFirstClassType() || Ty->isLabelTy()) &&
Chris Lattner0b616352009-01-05 18:12:21 +00002417 !isa<OpaqueType>(Ty))
Chris Lattnere67c1aa2009-01-05 08:13:38 +00002418 return Error(ID.Loc, "invalid type for undef constant");
Owen Anderson9e9a0d52009-07-30 23:03:37 +00002419 V = UndefValue::get(Ty);
Chris Lattnerdf986172009-01-02 07:01:27 +00002420 return false;
Chris Lattner081b5052009-01-05 07:52:51 +00002421 case ValID::t_EmptyArray:
2422 if (!isa<ArrayType>(Ty) || cast<ArrayType>(Ty)->getNumElements() != 0)
2423 return Error(ID.Loc, "invalid empty array initializer");
Owen Anderson9e9a0d52009-07-30 23:03:37 +00002424 V = UndefValue::get(Ty);
Chris Lattner081b5052009-01-05 07:52:51 +00002425 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00002426 case ValID::t_Zero:
Chris Lattnere67c1aa2009-01-05 08:13:38 +00002427 // FIXME: LabelTy should not be a first-class type.
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00002428 if (!Ty->isFirstClassType() || Ty->isLabelTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002429 return Error(ID.Loc, "invalid type for null constant");
Owen Andersona7235ea2009-07-31 20:28:14 +00002430 V = Constant::getNullValue(Ty);
Chris Lattnerdf986172009-01-02 07:01:27 +00002431 return false;
2432 case ValID::t_Constant:
2433 if (ID.ConstantVal->getType() != Ty)
2434 return Error(ID.Loc, "constant expression type mismatch");
2435 V = ID.ConstantVal;
2436 return false;
2437 }
2438}
Daniel Dunbara279bc32009-09-20 02:20:51 +00002439
Chris Lattnera7352392009-12-30 04:42:57 +00002440/// ConvertGlobalOrMetadataValIDToValue - Apply a type to a ValID to get a fully
2441/// resolved constant or metadata value.
2442bool LLParser::ConvertGlobalOrMetadataValIDToValue(const Type *Ty, ValID &ID,
2443 Value *&V) {
2444 switch (ID.Kind) {
2445 case ValID::t_MDNode:
2446 if (!Ty->isMetadataTy())
2447 return Error(ID.Loc, "metadata value must have metadata type");
2448 V = ID.MDNodeVal;
2449 return false;
2450 case ValID::t_MDString:
2451 if (!Ty->isMetadataTy())
2452 return Error(ID.Loc, "metadata value must have metadata type");
2453 V = ID.MDStringVal;
2454 return false;
2455 default:
2456 Constant *C;
2457 if (ConvertGlobalValIDToValue(Ty, ID, C)) return true;
2458 V = C;
2459 return false;
2460 }
2461}
2462
2463
Chris Lattnerdf986172009-01-02 07:01:27 +00002464bool LLParser::ParseGlobalTypeAndValue(Constant *&V) {
Owen Anderson1d0be152009-08-13 21:58:54 +00002465 PATypeHolder Type(Type::getVoidTy(Context));
Chris Lattnerdf986172009-01-02 07:01:27 +00002466 return ParseType(Type) ||
2467 ParseGlobalValue(Type, V);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002468}
Chris Lattnerdf986172009-01-02 07:01:27 +00002469
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002470/// ParseGlobalValueVector
2471/// ::= /*empty*/
2472/// ::= TypeAndValue (',' TypeAndValue)*
Chris Lattnerdf986172009-01-02 07:01:27 +00002473bool LLParser::ParseGlobalValueVector(SmallVectorImpl<Constant*> &Elts) {
2474 // Empty list.
2475 if (Lex.getKind() == lltok::rbrace ||
2476 Lex.getKind() == lltok::rsquare ||
2477 Lex.getKind() == lltok::greater ||
2478 Lex.getKind() == lltok::rparen)
2479 return false;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002480
Chris Lattnerdf986172009-01-02 07:01:27 +00002481 Constant *C;
2482 if (ParseGlobalTypeAndValue(C)) return true;
2483 Elts.push_back(C);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002484
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002485 while (EatIfPresent(lltok::comma)) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002486 if (ParseGlobalTypeAndValue(C)) return true;
2487 Elts.push_back(C);
2488 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002489
Chris Lattnerdf986172009-01-02 07:01:27 +00002490 return false;
2491}
2492
2493
2494//===----------------------------------------------------------------------===//
2495// Function Parsing.
2496//===----------------------------------------------------------------------===//
2497
2498bool LLParser::ConvertValIDToValue(const Type *Ty, ValID &ID, Value *&V,
2499 PerFunctionState &PFS) {
Chris Lattner287881d2009-12-30 02:11:14 +00002500 switch (ID.Kind) {
2501 case ValID::t_LocalID: V = PFS.GetVal(ID.UIntVal, Ty, ID.Loc); break;
2502 case ValID::t_LocalName: V = PFS.GetVal(ID.StrVal, Ty, ID.Loc); break;
Chris Lattner287881d2009-12-30 02:11:14 +00002503 case ValID::t_InlineAsm: {
Chris Lattnerdf986172009-01-02 07:01:27 +00002504 const PointerType *PTy = dyn_cast<PointerType>(Ty);
Chris Lattnerc49363b2009-12-30 02:20:07 +00002505 const FunctionType *FTy =
2506 PTy ? dyn_cast<FunctionType>(PTy->getElementType()) : 0;
Chris Lattnerdf986172009-01-02 07:01:27 +00002507 if (!FTy || !InlineAsm::Verify(FTy, ID.StrVal2))
2508 return Error(ID.Loc, "invalid type for inline asm constraint string");
Dale Johannesen43602982009-10-13 20:46:56 +00002509 V = InlineAsm::get(FTy, ID.StrVal, ID.StrVal2, ID.UIntVal&1, ID.UIntVal>>1);
Chris Lattnerdf986172009-01-02 07:01:27 +00002510 return false;
Chris Lattner287881d2009-12-30 02:11:14 +00002511 }
Chris Lattnera7352392009-12-30 04:42:57 +00002512 default:
2513 return ConvertGlobalOrMetadataValIDToValue(Ty, ID, V);
Chris Lattner287881d2009-12-30 02:11:14 +00002514 }
Chris Lattnerdf986172009-01-02 07:01:27 +00002515
2516 return V == 0;
2517}
2518
2519bool LLParser::ParseValue(const Type *Ty, Value *&V, PerFunctionState &PFS) {
2520 V = 0;
2521 ValID ID;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002522 return ParseValID(ID) ||
2523 ConvertValIDToValue(Ty, ID, V, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00002524}
2525
2526bool LLParser::ParseTypeAndValue(Value *&V, PerFunctionState &PFS) {
Owen Anderson1d0be152009-08-13 21:58:54 +00002527 PATypeHolder T(Type::getVoidTy(Context));
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002528 return ParseType(T) ||
2529 ParseValue(T, V, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00002530}
2531
Chris Lattnerf9be95f2009-10-27 19:13:16 +00002532bool LLParser::ParseTypeAndBasicBlock(BasicBlock *&BB, LocTy &Loc,
2533 PerFunctionState &PFS) {
2534 Value *V;
2535 Loc = Lex.getLoc();
2536 if (ParseTypeAndValue(V, PFS)) return true;
2537 if (!isa<BasicBlock>(V))
2538 return Error(Loc, "expected a basic block");
2539 BB = cast<BasicBlock>(V);
2540 return false;
2541}
2542
2543
Chris Lattnerdf986172009-01-02 07:01:27 +00002544/// FunctionHeader
2545/// ::= OptionalLinkage OptionalVisibility OptionalCallingConv OptRetAttrs
2546/// Type GlobalName '(' ArgList ')' OptFuncAttrs OptSection
2547/// OptionalAlign OptGC
2548bool LLParser::ParseFunctionHeader(Function *&Fn, bool isDefine) {
2549 // Parse the linkage.
2550 LocTy LinkageLoc = Lex.getLoc();
2551 unsigned Linkage;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002552
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00002553 unsigned Visibility, RetAttrs;
2554 CallingConv::ID CC;
Owen Anderson1d0be152009-08-13 21:58:54 +00002555 PATypeHolder RetType(Type::getVoidTy(Context));
Chris Lattnerdf986172009-01-02 07:01:27 +00002556 LocTy RetTypeLoc = Lex.getLoc();
2557 if (ParseOptionalLinkage(Linkage) ||
2558 ParseOptionalVisibility(Visibility) ||
2559 ParseOptionalCallingConv(CC) ||
2560 ParseOptionalAttrs(RetAttrs, 1) ||
Chris Lattnera9a9e072009-03-09 04:49:14 +00002561 ParseType(RetType, RetTypeLoc, true /*void allowed*/))
Chris Lattnerdf986172009-01-02 07:01:27 +00002562 return true;
2563
2564 // Verify that the linkage is ok.
2565 switch ((GlobalValue::LinkageTypes)Linkage) {
2566 case GlobalValue::ExternalLinkage:
2567 break; // always ok.
2568 case GlobalValue::DLLImportLinkage:
Duncan Sands5f4ee1f2009-03-11 08:08:06 +00002569 case GlobalValue::ExternalWeakLinkage:
Chris Lattnerdf986172009-01-02 07:01:27 +00002570 if (isDefine)
2571 return Error(LinkageLoc, "invalid linkage for function definition");
2572 break;
Rafael Espindolabb46f522009-01-15 20:18:42 +00002573 case GlobalValue::PrivateLinkage:
Bill Wendling3d10a5a2009-07-20 01:03:30 +00002574 case GlobalValue::LinkerPrivateLinkage:
Chris Lattnerdf986172009-01-02 07:01:27 +00002575 case GlobalValue::InternalLinkage:
Nick Lewycky55f64db2009-04-13 07:02:02 +00002576 case GlobalValue::AvailableExternallyLinkage:
Duncan Sands667d4b82009-03-07 15:45:40 +00002577 case GlobalValue::LinkOnceAnyLinkage:
2578 case GlobalValue::LinkOnceODRLinkage:
2579 case GlobalValue::WeakAnyLinkage:
2580 case GlobalValue::WeakODRLinkage:
Chris Lattnerdf986172009-01-02 07:01:27 +00002581 case GlobalValue::DLLExportLinkage:
2582 if (!isDefine)
2583 return Error(LinkageLoc, "invalid linkage for function declaration");
2584 break;
2585 case GlobalValue::AppendingLinkage:
2586 case GlobalValue::GhostLinkage:
Duncan Sands4dc2b392009-03-11 20:14:15 +00002587 case GlobalValue::CommonLinkage:
Chris Lattnerdf986172009-01-02 07:01:27 +00002588 return Error(LinkageLoc, "invalid function linkage type");
2589 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002590
Chris Lattner99bb3152009-01-05 08:00:30 +00002591 if (!FunctionType::isValidReturnType(RetType) ||
2592 isa<OpaqueType>(RetType))
Chris Lattnerdf986172009-01-02 07:01:27 +00002593 return Error(RetTypeLoc, "invalid function return type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002594
Chris Lattnerdf986172009-01-02 07:01:27 +00002595 LocTy NameLoc = Lex.getLoc();
Chris Lattnerf570e622009-02-18 21:48:13 +00002596
2597 std::string FunctionName;
2598 if (Lex.getKind() == lltok::GlobalVar) {
2599 FunctionName = Lex.getStrVal();
2600 } else if (Lex.getKind() == lltok::GlobalID) { // @42 is ok.
2601 unsigned NameID = Lex.getUIntVal();
2602
2603 if (NameID != NumberedVals.size())
2604 return TokError("function expected to be numbered '%" +
2605 utostr(NumberedVals.size()) + "'");
2606 } else {
2607 return TokError("expected function name");
2608 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002609
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002610 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +00002611
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002612 if (Lex.getKind() != lltok::lparen)
Chris Lattnerdf986172009-01-02 07:01:27 +00002613 return TokError("expected '(' in function argument list");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002614
Chris Lattnerdf986172009-01-02 07:01:27 +00002615 std::vector<ArgInfo> ArgList;
2616 bool isVarArg;
Chris Lattnerdf986172009-01-02 07:01:27 +00002617 unsigned FuncAttrs;
Chris Lattnerdf986172009-01-02 07:01:27 +00002618 std::string Section;
Chris Lattnerdf986172009-01-02 07:01:27 +00002619 unsigned Alignment;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002620 std::string GC;
2621
Chris Lattnerdfd19dd2009-01-05 18:34:07 +00002622 if (ParseArgumentList(ArgList, isVarArg, false) ||
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002623 ParseOptionalAttrs(FuncAttrs, 2) ||
2624 (EatIfPresent(lltok::kw_section) &&
2625 ParseStringConstant(Section)) ||
2626 ParseOptionalAlignment(Alignment) ||
2627 (EatIfPresent(lltok::kw_gc) &&
2628 ParseStringConstant(GC)))
2629 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00002630
2631 // If the alignment was parsed as an attribute, move to the alignment field.
2632 if (FuncAttrs & Attribute::Alignment) {
2633 Alignment = Attribute::getAlignmentFromAttrs(FuncAttrs);
2634 FuncAttrs &= ~Attribute::Alignment;
2635 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002636
Chris Lattnerdf986172009-01-02 07:01:27 +00002637 // Okay, if we got here, the function is syntactically valid. Convert types
2638 // and do semantic checks.
2639 std::vector<const Type*> ParamTypeList;
2640 SmallVector<AttributeWithIndex, 8> Attrs;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002641 // FIXME : In 3.0, stop accepting zext, sext and inreg as optional function
Chris Lattnerdf986172009-01-02 07:01:27 +00002642 // attributes.
2643 unsigned ObsoleteFuncAttrs = Attribute::ZExt|Attribute::SExt|Attribute::InReg;
2644 if (FuncAttrs & ObsoleteFuncAttrs) {
2645 RetAttrs |= FuncAttrs & ObsoleteFuncAttrs;
2646 FuncAttrs &= ~ObsoleteFuncAttrs;
2647 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002648
Chris Lattnerdf986172009-01-02 07:01:27 +00002649 if (RetAttrs != Attribute::None)
2650 Attrs.push_back(AttributeWithIndex::get(0, RetAttrs));
Daniel Dunbara279bc32009-09-20 02:20:51 +00002651
Chris Lattnerdf986172009-01-02 07:01:27 +00002652 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
2653 ParamTypeList.push_back(ArgList[i].Type);
2654 if (ArgList[i].Attrs != Attribute::None)
2655 Attrs.push_back(AttributeWithIndex::get(i+1, ArgList[i].Attrs));
2656 }
2657
2658 if (FuncAttrs != Attribute::None)
2659 Attrs.push_back(AttributeWithIndex::get(~0, FuncAttrs));
2660
2661 AttrListPtr PAL = AttrListPtr::get(Attrs.begin(), Attrs.end());
Daniel Dunbara279bc32009-09-20 02:20:51 +00002662
Benjamin Kramerf0127052010-01-05 13:12:22 +00002663 if (PAL.paramHasAttr(1, Attribute::StructRet) && !RetType->isVoidTy())
Daniel Dunbara279bc32009-09-20 02:20:51 +00002664 return Error(RetTypeLoc, "functions with 'sret' argument must return void");
2665
Owen Andersonfba933c2009-07-01 23:57:11 +00002666 const FunctionType *FT =
Owen Andersondebcb012009-07-29 22:17:13 +00002667 FunctionType::get(RetType, ParamTypeList, isVarArg);
2668 const PointerType *PFT = PointerType::getUnqual(FT);
Chris Lattnerdf986172009-01-02 07:01:27 +00002669
2670 Fn = 0;
2671 if (!FunctionName.empty()) {
2672 // If this was a definition of a forward reference, remove the definition
2673 // from the forward reference table and fill in the forward ref.
2674 std::map<std::string, std::pair<GlobalValue*, LocTy> >::iterator FRVI =
2675 ForwardRefVals.find(FunctionName);
2676 if (FRVI != ForwardRefVals.end()) {
2677 Fn = M->getFunction(FunctionName);
2678 ForwardRefVals.erase(FRVI);
2679 } else if ((Fn = M->getFunction(FunctionName))) {
2680 // If this function already exists in the symbol table, then it is
2681 // multiply defined. We accept a few cases for old backwards compat.
2682 // FIXME: Remove this stuff for LLVM 3.0.
2683 if (Fn->getType() != PFT || Fn->getAttributes() != PAL ||
2684 (!Fn->isDeclaration() && isDefine)) {
2685 // If the redefinition has different type or different attributes,
2686 // reject it. If both have bodies, reject it.
2687 return Error(NameLoc, "invalid redefinition of function '" +
2688 FunctionName + "'");
2689 } else if (Fn->isDeclaration()) {
2690 // Make sure to strip off any argument names so we can't get conflicts.
2691 for (Function::arg_iterator AI = Fn->arg_begin(), AE = Fn->arg_end();
2692 AI != AE; ++AI)
2693 AI->setName("");
2694 }
Chris Lattner1d871c52009-10-25 23:22:50 +00002695 } else if (M->getNamedValue(FunctionName)) {
2696 return Error(NameLoc, "redefinition of function '@" + FunctionName + "'");
Chris Lattnerdf986172009-01-02 07:01:27 +00002697 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002698
Dan Gohman41905542009-08-29 23:37:49 +00002699 } else {
Chris Lattnerdf986172009-01-02 07:01:27 +00002700 // If this is a definition of a forward referenced function, make sure the
2701 // types agree.
2702 std::map<unsigned, std::pair<GlobalValue*, LocTy> >::iterator I
2703 = ForwardRefValIDs.find(NumberedVals.size());
2704 if (I != ForwardRefValIDs.end()) {
2705 Fn = cast<Function>(I->second.first);
2706 if (Fn->getType() != PFT)
2707 return Error(NameLoc, "type of definition and forward reference of '@" +
2708 utostr(NumberedVals.size()) +"' disagree");
2709 ForwardRefValIDs.erase(I);
2710 }
2711 }
2712
2713 if (Fn == 0)
2714 Fn = Function::Create(FT, GlobalValue::ExternalLinkage, FunctionName, M);
2715 else // Move the forward-reference to the correct spot in the module.
2716 M->getFunctionList().splice(M->end(), M->getFunctionList(), Fn);
2717
2718 if (FunctionName.empty())
2719 NumberedVals.push_back(Fn);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002720
Chris Lattnerdf986172009-01-02 07:01:27 +00002721 Fn->setLinkage((GlobalValue::LinkageTypes)Linkage);
2722 Fn->setVisibility((GlobalValue::VisibilityTypes)Visibility);
2723 Fn->setCallingConv(CC);
2724 Fn->setAttributes(PAL);
2725 Fn->setAlignment(Alignment);
2726 Fn->setSection(Section);
2727 if (!GC.empty()) Fn->setGC(GC.c_str());
Daniel Dunbara279bc32009-09-20 02:20:51 +00002728
Chris Lattnerdf986172009-01-02 07:01:27 +00002729 // Add all of the arguments we parsed to the function.
2730 Function::arg_iterator ArgIt = Fn->arg_begin();
2731 for (unsigned i = 0, e = ArgList.size(); i != e; ++i, ++ArgIt) {
Chris Lattner5bda3792009-11-26 22:48:23 +00002732 // If we run out of arguments in the Function prototype, exit early.
2733 // FIXME: REMOVE THIS IN LLVM 3.0, this is just for the mismatch case above.
2734 if (ArgIt == Fn->arg_end()) break;
2735
Chris Lattnerdf986172009-01-02 07:01:27 +00002736 // If the argument has a name, insert it into the argument symbol table.
2737 if (ArgList[i].Name.empty()) continue;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002738
Chris Lattnerdf986172009-01-02 07:01:27 +00002739 // Set the name, if it conflicted, it will be auto-renamed.
2740 ArgIt->setName(ArgList[i].Name);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002741
Chris Lattnerdf986172009-01-02 07:01:27 +00002742 if (ArgIt->getNameStr() != ArgList[i].Name)
2743 return Error(ArgList[i].Loc, "redefinition of argument '%" +
2744 ArgList[i].Name + "'");
2745 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002746
Chris Lattnerdf986172009-01-02 07:01:27 +00002747 return false;
2748}
2749
2750
2751/// ParseFunctionBody
2752/// ::= '{' BasicBlock+ '}'
2753/// ::= 'begin' BasicBlock+ 'end' // FIXME: remove in LLVM 3.0
2754///
2755bool LLParser::ParseFunctionBody(Function &Fn) {
2756 if (Lex.getKind() != lltok::lbrace && Lex.getKind() != lltok::kw_begin)
2757 return TokError("expected '{' in function body");
2758 Lex.Lex(); // eat the {.
Daniel Dunbara279bc32009-09-20 02:20:51 +00002759
Chris Lattner09d9ef42009-10-28 03:39:23 +00002760 int FunctionNumber = -1;
2761 if (!Fn.hasName()) FunctionNumber = NumberedVals.size()-1;
2762
2763 PerFunctionState PFS(*this, Fn, FunctionNumber);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002764
Chris Lattnerdf986172009-01-02 07:01:27 +00002765 while (Lex.getKind() != lltok::rbrace && Lex.getKind() != lltok::kw_end)
2766 if (ParseBasicBlock(PFS)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002767
Chris Lattnerdf986172009-01-02 07:01:27 +00002768 // Eat the }.
2769 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +00002770
Chris Lattnerdf986172009-01-02 07:01:27 +00002771 // Verify function is ok.
Chris Lattner09d9ef42009-10-28 03:39:23 +00002772 return PFS.FinishFunction();
Chris Lattnerdf986172009-01-02 07:01:27 +00002773}
2774
2775/// ParseBasicBlock
2776/// ::= LabelStr? Instruction*
2777bool LLParser::ParseBasicBlock(PerFunctionState &PFS) {
2778 // If this basic block starts out with a name, remember it.
2779 std::string Name;
2780 LocTy NameLoc = Lex.getLoc();
2781 if (Lex.getKind() == lltok::LabelStr) {
2782 Name = Lex.getStrVal();
2783 Lex.Lex();
2784 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002785
Chris Lattnerdf986172009-01-02 07:01:27 +00002786 BasicBlock *BB = PFS.DefineBB(Name, NameLoc);
2787 if (BB == 0) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002788
Chris Lattnerdf986172009-01-02 07:01:27 +00002789 std::string NameStr;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002790
Chris Lattnerdf986172009-01-02 07:01:27 +00002791 // Parse the instructions in this block until we get a terminator.
2792 Instruction *Inst;
Chris Lattner1340dd32009-12-30 05:48:36 +00002793 SmallVector<std::pair<unsigned, MDNode *>, 4> MetadataOnInst;
Chris Lattnerdf986172009-01-02 07:01:27 +00002794 do {
2795 // This instruction may have three possibilities for a name: a) none
2796 // specified, b) name specified "%foo =", c) number specified: "%4 =".
2797 LocTy NameLoc = Lex.getLoc();
2798 int NameID = -1;
2799 NameStr = "";
Daniel Dunbara279bc32009-09-20 02:20:51 +00002800
Chris Lattnerdf986172009-01-02 07:01:27 +00002801 if (Lex.getKind() == lltok::LocalVarID) {
2802 NameID = Lex.getUIntVal();
2803 Lex.Lex();
2804 if (ParseToken(lltok::equal, "expected '=' after instruction id"))
2805 return true;
2806 } else if (Lex.getKind() == lltok::LocalVar ||
2807 // FIXME: REMOVE IN LLVM 3.0
2808 Lex.getKind() == lltok::StringConstant) {
2809 NameStr = Lex.getStrVal();
2810 Lex.Lex();
2811 if (ParseToken(lltok::equal, "expected '=' after instruction name"))
2812 return true;
2813 }
Devang Patelf633a062009-09-17 23:04:48 +00002814
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00002815 switch (ParseInstruction(Inst, BB, PFS)) {
2816 default: assert(0 && "Unknown ParseInstruction result!");
2817 case InstError: return true;
2818 case InstNormal:
2819 // With a normal result, we check to see if the instruction is followed by
2820 // a comma and metadata.
2821 if (EatIfPresent(lltok::comma))
Chris Lattner1340dd32009-12-30 05:48:36 +00002822 if (ParseInstructionMetadata(MetadataOnInst))
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00002823 return true;
2824 break;
2825 case InstExtraComma:
2826 // If the instruction parser ate an extra comma at the end of it, it
2827 // *must* be followed by metadata.
Chris Lattner1340dd32009-12-30 05:48:36 +00002828 if (ParseInstructionMetadata(MetadataOnInst))
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00002829 return true;
2830 break;
2831 }
Devang Patelf633a062009-09-17 23:04:48 +00002832
2833 // Set metadata attached with this instruction.
Chris Lattner1340dd32009-12-30 05:48:36 +00002834 for (unsigned i = 0, e = MetadataOnInst.size(); i != e; ++i)
2835 Inst->setMetadata(MetadataOnInst[i].first, MetadataOnInst[i].second);
2836 MetadataOnInst.clear();
Devang Patelf633a062009-09-17 23:04:48 +00002837
Chris Lattnerdf986172009-01-02 07:01:27 +00002838 BB->getInstList().push_back(Inst);
2839
2840 // Set the name on the instruction.
2841 if (PFS.SetInstName(NameID, NameStr, NameLoc, Inst)) return true;
2842 } while (!isa<TerminatorInst>(Inst));
Daniel Dunbara279bc32009-09-20 02:20:51 +00002843
Chris Lattnerdf986172009-01-02 07:01:27 +00002844 return false;
2845}
2846
2847//===----------------------------------------------------------------------===//
2848// Instruction Parsing.
2849//===----------------------------------------------------------------------===//
2850
2851/// ParseInstruction - Parse one of the many different instructions.
2852///
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00002853int LLParser::ParseInstruction(Instruction *&Inst, BasicBlock *BB,
2854 PerFunctionState &PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002855 lltok::Kind Token = Lex.getKind();
2856 if (Token == lltok::Eof)
2857 return TokError("found end of file when expecting more instructions");
2858 LocTy Loc = Lex.getLoc();
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00002859 unsigned KeywordVal = Lex.getUIntVal();
Chris Lattnerdf986172009-01-02 07:01:27 +00002860 Lex.Lex(); // Eat the keyword.
Daniel Dunbara279bc32009-09-20 02:20:51 +00002861
Chris Lattnerdf986172009-01-02 07:01:27 +00002862 switch (Token) {
2863 default: return Error(Loc, "expected instruction opcode");
2864 // Terminator Instructions.
Owen Anderson1d0be152009-08-13 21:58:54 +00002865 case lltok::kw_unwind: Inst = new UnwindInst(Context); return false;
2866 case lltok::kw_unreachable: Inst = new UnreachableInst(Context); return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00002867 case lltok::kw_ret: return ParseRet(Inst, BB, PFS);
2868 case lltok::kw_br: return ParseBr(Inst, PFS);
2869 case lltok::kw_switch: return ParseSwitch(Inst, PFS);
Chris Lattnerab21db72009-10-28 00:19:10 +00002870 case lltok::kw_indirectbr: return ParseIndirectBr(Inst, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00002871 case lltok::kw_invoke: return ParseInvoke(Inst, PFS);
2872 // Binary Operators.
2873 case lltok::kw_add:
2874 case lltok::kw_sub:
Dan Gohman59858cf2009-07-27 16:11:46 +00002875 case lltok::kw_mul: {
2876 bool NUW = false;
2877 bool NSW = false;
2878 LocTy ModifierLoc = Lex.getLoc();
2879 if (EatIfPresent(lltok::kw_nuw))
2880 NUW = true;
2881 if (EatIfPresent(lltok::kw_nsw)) {
2882 NSW = true;
2883 if (EatIfPresent(lltok::kw_nuw))
2884 NUW = true;
2885 }
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002886 // API compatibility: Accept either integer or floating-point types.
Dan Gohman59858cf2009-07-27 16:11:46 +00002887 bool Result = ParseArithmetic(Inst, PFS, KeywordVal, 0);
2888 if (!Result) {
2889 if (!Inst->getType()->isIntOrIntVector()) {
2890 if (NUW)
2891 return Error(ModifierLoc, "nuw only applies to integer operations");
2892 if (NSW)
2893 return Error(ModifierLoc, "nsw only applies to integer operations");
2894 }
2895 if (NUW)
Dan Gohmanf8dbee72009-09-07 23:54:19 +00002896 cast<BinaryOperator>(Inst)->setHasNoUnsignedWrap(true);
Dan Gohman59858cf2009-07-27 16:11:46 +00002897 if (NSW)
Dan Gohmanf8dbee72009-09-07 23:54:19 +00002898 cast<BinaryOperator>(Inst)->setHasNoSignedWrap(true);
Dan Gohman59858cf2009-07-27 16:11:46 +00002899 }
2900 return Result;
2901 }
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002902 case lltok::kw_fadd:
2903 case lltok::kw_fsub:
2904 case lltok::kw_fmul: return ParseArithmetic(Inst, PFS, KeywordVal, 2);
2905
Dan Gohman59858cf2009-07-27 16:11:46 +00002906 case lltok::kw_sdiv: {
2907 bool Exact = false;
2908 if (EatIfPresent(lltok::kw_exact))
2909 Exact = true;
2910 bool Result = ParseArithmetic(Inst, PFS, KeywordVal, 1);
2911 if (!Result)
2912 if (Exact)
Dan Gohmanf8dbee72009-09-07 23:54:19 +00002913 cast<BinaryOperator>(Inst)->setIsExact(true);
Dan Gohman59858cf2009-07-27 16:11:46 +00002914 return Result;
2915 }
2916
Chris Lattnerdf986172009-01-02 07:01:27 +00002917 case lltok::kw_udiv:
Chris Lattnerdf986172009-01-02 07:01:27 +00002918 case lltok::kw_urem:
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00002919 case lltok::kw_srem: return ParseArithmetic(Inst, PFS, KeywordVal, 1);
Chris Lattnere914b592009-01-05 08:24:46 +00002920 case lltok::kw_fdiv:
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00002921 case lltok::kw_frem: return ParseArithmetic(Inst, PFS, KeywordVal, 2);
Chris Lattnerdf986172009-01-02 07:01:27 +00002922 case lltok::kw_shl:
2923 case lltok::kw_lshr:
2924 case lltok::kw_ashr:
2925 case lltok::kw_and:
2926 case lltok::kw_or:
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00002927 case lltok::kw_xor: return ParseLogical(Inst, PFS, KeywordVal);
Chris Lattnerdf986172009-01-02 07:01:27 +00002928 case lltok::kw_icmp:
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00002929 case lltok::kw_fcmp: return ParseCompare(Inst, PFS, KeywordVal);
Chris Lattnerdf986172009-01-02 07:01:27 +00002930 // Casts.
2931 case lltok::kw_trunc:
2932 case lltok::kw_zext:
2933 case lltok::kw_sext:
2934 case lltok::kw_fptrunc:
2935 case lltok::kw_fpext:
2936 case lltok::kw_bitcast:
2937 case lltok::kw_uitofp:
2938 case lltok::kw_sitofp:
2939 case lltok::kw_fptoui:
Daniel Dunbara279bc32009-09-20 02:20:51 +00002940 case lltok::kw_fptosi:
Chris Lattnerdf986172009-01-02 07:01:27 +00002941 case lltok::kw_inttoptr:
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00002942 case lltok::kw_ptrtoint: return ParseCast(Inst, PFS, KeywordVal);
Chris Lattnerdf986172009-01-02 07:01:27 +00002943 // Other.
2944 case lltok::kw_select: return ParseSelect(Inst, PFS);
Chris Lattner0088a5c2009-01-05 08:18:44 +00002945 case lltok::kw_va_arg: return ParseVA_Arg(Inst, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00002946 case lltok::kw_extractelement: return ParseExtractElement(Inst, PFS);
2947 case lltok::kw_insertelement: return ParseInsertElement(Inst, PFS);
2948 case lltok::kw_shufflevector: return ParseShuffleVector(Inst, PFS);
2949 case lltok::kw_phi: return ParsePHI(Inst, PFS);
2950 case lltok::kw_call: return ParseCall(Inst, PFS, false);
2951 case lltok::kw_tail: return ParseCall(Inst, PFS, true);
2952 // Memory.
Victor Hernandez13ad5aa2009-10-17 00:00:19 +00002953 case lltok::kw_alloca: return ParseAlloc(Inst, PFS);
2954 case lltok::kw_malloc: return ParseAlloc(Inst, PFS, BB, false);
Victor Hernandez66284e02009-10-24 04:23:03 +00002955 case lltok::kw_free: return ParseFree(Inst, PFS, BB);
Chris Lattnerdf986172009-01-02 07:01:27 +00002956 case lltok::kw_load: return ParseLoad(Inst, PFS, false);
2957 case lltok::kw_store: return ParseStore(Inst, PFS, false);
2958 case lltok::kw_volatile:
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002959 if (EatIfPresent(lltok::kw_load))
Chris Lattnerdf986172009-01-02 07:01:27 +00002960 return ParseLoad(Inst, PFS, true);
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002961 else if (EatIfPresent(lltok::kw_store))
Chris Lattnerdf986172009-01-02 07:01:27 +00002962 return ParseStore(Inst, PFS, true);
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002963 else
Chris Lattnerdf986172009-01-02 07:01:27 +00002964 return TokError("expected 'load' or 'store'");
Chris Lattnerdf986172009-01-02 07:01:27 +00002965 case lltok::kw_getresult: return ParseGetResult(Inst, PFS);
2966 case lltok::kw_getelementptr: return ParseGetElementPtr(Inst, PFS);
2967 case lltok::kw_extractvalue: return ParseExtractValue(Inst, PFS);
2968 case lltok::kw_insertvalue: return ParseInsertValue(Inst, PFS);
2969 }
2970}
2971
2972/// ParseCmpPredicate - Parse an integer or fp predicate, based on Kind.
2973bool LLParser::ParseCmpPredicate(unsigned &P, unsigned Opc) {
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00002974 if (Opc == Instruction::FCmp) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002975 switch (Lex.getKind()) {
2976 default: TokError("expected fcmp predicate (e.g. 'oeq')");
2977 case lltok::kw_oeq: P = CmpInst::FCMP_OEQ; break;
2978 case lltok::kw_one: P = CmpInst::FCMP_ONE; break;
2979 case lltok::kw_olt: P = CmpInst::FCMP_OLT; break;
2980 case lltok::kw_ogt: P = CmpInst::FCMP_OGT; break;
2981 case lltok::kw_ole: P = CmpInst::FCMP_OLE; break;
2982 case lltok::kw_oge: P = CmpInst::FCMP_OGE; break;
2983 case lltok::kw_ord: P = CmpInst::FCMP_ORD; break;
2984 case lltok::kw_uno: P = CmpInst::FCMP_UNO; break;
2985 case lltok::kw_ueq: P = CmpInst::FCMP_UEQ; break;
2986 case lltok::kw_une: P = CmpInst::FCMP_UNE; break;
2987 case lltok::kw_ult: P = CmpInst::FCMP_ULT; break;
2988 case lltok::kw_ugt: P = CmpInst::FCMP_UGT; break;
2989 case lltok::kw_ule: P = CmpInst::FCMP_ULE; break;
2990 case lltok::kw_uge: P = CmpInst::FCMP_UGE; break;
2991 case lltok::kw_true: P = CmpInst::FCMP_TRUE; break;
2992 case lltok::kw_false: P = CmpInst::FCMP_FALSE; break;
2993 }
2994 } else {
2995 switch (Lex.getKind()) {
2996 default: TokError("expected icmp predicate (e.g. 'eq')");
2997 case lltok::kw_eq: P = CmpInst::ICMP_EQ; break;
2998 case lltok::kw_ne: P = CmpInst::ICMP_NE; break;
2999 case lltok::kw_slt: P = CmpInst::ICMP_SLT; break;
3000 case lltok::kw_sgt: P = CmpInst::ICMP_SGT; break;
3001 case lltok::kw_sle: P = CmpInst::ICMP_SLE; break;
3002 case lltok::kw_sge: P = CmpInst::ICMP_SGE; break;
3003 case lltok::kw_ult: P = CmpInst::ICMP_ULT; break;
3004 case lltok::kw_ugt: P = CmpInst::ICMP_UGT; break;
3005 case lltok::kw_ule: P = CmpInst::ICMP_ULE; break;
3006 case lltok::kw_uge: P = CmpInst::ICMP_UGE; break;
3007 }
3008 }
3009 Lex.Lex();
3010 return false;
3011}
3012
3013//===----------------------------------------------------------------------===//
3014// Terminator Instructions.
3015//===----------------------------------------------------------------------===//
3016
3017/// ParseRet - Parse a return instruction.
Chris Lattner3f3a0f62009-12-29 21:25:40 +00003018/// ::= 'ret' void (',' !dbg, !1)*
3019/// ::= 'ret' TypeAndValue (',' !dbg, !1)*
3020/// ::= 'ret' TypeAndValue (',' TypeAndValue)+ (',' !dbg, !1)*
Devang Patelf633a062009-09-17 23:04:48 +00003021/// [[obsolete: LLVM 3.0]]
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00003022int LLParser::ParseRet(Instruction *&Inst, BasicBlock *BB,
3023 PerFunctionState &PFS) {
Owen Anderson1d0be152009-08-13 21:58:54 +00003024 PATypeHolder Ty(Type::getVoidTy(Context));
Chris Lattnera9a9e072009-03-09 04:49:14 +00003025 if (ParseType(Ty, true /*void allowed*/)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003026
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00003027 if (Ty->isVoidTy()) {
Owen Anderson1d0be152009-08-13 21:58:54 +00003028 Inst = ReturnInst::Create(Context);
Chris Lattnerdf986172009-01-02 07:01:27 +00003029 return false;
3030 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003031
Chris Lattnerdf986172009-01-02 07:01:27 +00003032 Value *RV;
3033 if (ParseValue(Ty, RV, PFS)) return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00003034
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00003035 bool ExtraComma = false;
Devang Patelf633a062009-09-17 23:04:48 +00003036 if (EatIfPresent(lltok::comma)) {
Devang Patel0475c912009-09-29 00:01:14 +00003037 // Parse optional custom metadata, e.g. !dbg
Chris Lattner1d928312009-12-30 05:02:06 +00003038 if (Lex.getKind() == lltok::MetadataVar) {
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00003039 ExtraComma = true;
Devang Patelf633a062009-09-17 23:04:48 +00003040 } else {
3041 // The normal case is one return value.
Chris Lattner3f3a0f62009-12-29 21:25:40 +00003042 // FIXME: LLVM 3.0 remove MRV support for 'ret i32 1, i32 2', requiring
3043 // use of 'ret {i32,i32} {i32 1, i32 2}'
Devang Patelf633a062009-09-17 23:04:48 +00003044 SmallVector<Value*, 8> RVs;
3045 RVs.push_back(RV);
Daniel Dunbara279bc32009-09-20 02:20:51 +00003046
Devang Patelf633a062009-09-17 23:04:48 +00003047 do {
Devang Patel0475c912009-09-29 00:01:14 +00003048 // If optional custom metadata, e.g. !dbg is seen then this is the
3049 // end of MRV.
Chris Lattner1d928312009-12-30 05:02:06 +00003050 if (Lex.getKind() == lltok::MetadataVar)
Daniel Dunbara279bc32009-09-20 02:20:51 +00003051 break;
3052 if (ParseTypeAndValue(RV, PFS)) return true;
3053 RVs.push_back(RV);
Devang Patelf633a062009-09-17 23:04:48 +00003054 } while (EatIfPresent(lltok::comma));
3055
3056 RV = UndefValue::get(PFS.getFunction().getReturnType());
3057 for (unsigned i = 0, e = RVs.size(); i != e; ++i) {
Daniel Dunbara279bc32009-09-20 02:20:51 +00003058 Instruction *I = InsertValueInst::Create(RV, RVs[i], i, "mrv");
3059 BB->getInstList().push_back(I);
3060 RV = I;
Devang Patelf633a062009-09-17 23:04:48 +00003061 }
Chris Lattnerdf986172009-01-02 07:01:27 +00003062 }
3063 }
Devang Patelf633a062009-09-17 23:04:48 +00003064
Owen Anderson1d0be152009-08-13 21:58:54 +00003065 Inst = ReturnInst::Create(Context, RV);
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00003066 return ExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerdf986172009-01-02 07:01:27 +00003067}
3068
3069
3070/// ParseBr
3071/// ::= 'br' TypeAndValue
3072/// ::= 'br' TypeAndValue ',' TypeAndValue ',' TypeAndValue
3073bool LLParser::ParseBr(Instruction *&Inst, PerFunctionState &PFS) {
3074 LocTy Loc, Loc2;
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003075 Value *Op0;
3076 BasicBlock *Op1, *Op2;
Chris Lattnerdf986172009-01-02 07:01:27 +00003077 if (ParseTypeAndValue(Op0, Loc, PFS)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003078
Chris Lattnerdf986172009-01-02 07:01:27 +00003079 if (BasicBlock *BB = dyn_cast<BasicBlock>(Op0)) {
3080 Inst = BranchInst::Create(BB);
3081 return false;
3082 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003083
Owen Anderson1d0be152009-08-13 21:58:54 +00003084 if (Op0->getType() != Type::getInt1Ty(Context))
Chris Lattnerdf986172009-01-02 07:01:27 +00003085 return Error(Loc, "branch condition must have 'i1' type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003086
Chris Lattnerdf986172009-01-02 07:01:27 +00003087 if (ParseToken(lltok::comma, "expected ',' after branch condition") ||
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003088 ParseTypeAndBasicBlock(Op1, Loc, PFS) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003089 ParseToken(lltok::comma, "expected ',' after true destination") ||
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003090 ParseTypeAndBasicBlock(Op2, Loc2, PFS))
Chris Lattnerdf986172009-01-02 07:01:27 +00003091 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003092
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003093 Inst = BranchInst::Create(Op1, Op2, Op0);
Chris Lattnerdf986172009-01-02 07:01:27 +00003094 return false;
3095}
3096
3097/// ParseSwitch
3098/// Instruction
3099/// ::= 'switch' TypeAndValue ',' TypeAndValue '[' JumpTable ']'
3100/// JumpTable
3101/// ::= (TypeAndValue ',' TypeAndValue)*
3102bool LLParser::ParseSwitch(Instruction *&Inst, PerFunctionState &PFS) {
3103 LocTy CondLoc, BBLoc;
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003104 Value *Cond;
3105 BasicBlock *DefaultBB;
Chris Lattnerdf986172009-01-02 07:01:27 +00003106 if (ParseTypeAndValue(Cond, CondLoc, PFS) ||
3107 ParseToken(lltok::comma, "expected ',' after switch condition") ||
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003108 ParseTypeAndBasicBlock(DefaultBB, BBLoc, PFS) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003109 ParseToken(lltok::lsquare, "expected '[' with switch table"))
3110 return true;
3111
3112 if (!isa<IntegerType>(Cond->getType()))
3113 return Error(CondLoc, "switch condition must have integer type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003114
Chris Lattnerdf986172009-01-02 07:01:27 +00003115 // Parse the jump table pairs.
3116 SmallPtrSet<Value*, 32> SeenCases;
3117 SmallVector<std::pair<ConstantInt*, BasicBlock*>, 32> Table;
3118 while (Lex.getKind() != lltok::rsquare) {
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003119 Value *Constant;
3120 BasicBlock *DestBB;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003121
Chris Lattnerdf986172009-01-02 07:01:27 +00003122 if (ParseTypeAndValue(Constant, CondLoc, PFS) ||
3123 ParseToken(lltok::comma, "expected ',' after case value") ||
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003124 ParseTypeAndBasicBlock(DestBB, PFS))
Chris Lattnerdf986172009-01-02 07:01:27 +00003125 return true;
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003126
Chris Lattnerdf986172009-01-02 07:01:27 +00003127 if (!SeenCases.insert(Constant))
3128 return Error(CondLoc, "duplicate case value in switch");
3129 if (!isa<ConstantInt>(Constant))
3130 return Error(CondLoc, "case value is not a constant integer");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003131
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003132 Table.push_back(std::make_pair(cast<ConstantInt>(Constant), DestBB));
Chris Lattnerdf986172009-01-02 07:01:27 +00003133 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003134
Chris Lattnerdf986172009-01-02 07:01:27 +00003135 Lex.Lex(); // Eat the ']'.
Daniel Dunbara279bc32009-09-20 02:20:51 +00003136
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003137 SwitchInst *SI = SwitchInst::Create(Cond, DefaultBB, Table.size());
Chris Lattnerdf986172009-01-02 07:01:27 +00003138 for (unsigned i = 0, e = Table.size(); i != e; ++i)
3139 SI->addCase(Table[i].first, Table[i].second);
3140 Inst = SI;
3141 return false;
3142}
3143
Chris Lattnerab21db72009-10-28 00:19:10 +00003144/// ParseIndirectBr
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003145/// Instruction
Chris Lattnerab21db72009-10-28 00:19:10 +00003146/// ::= 'indirectbr' TypeAndValue ',' '[' LabelList ']'
3147bool LLParser::ParseIndirectBr(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003148 LocTy AddrLoc;
3149 Value *Address;
3150 if (ParseTypeAndValue(Address, AddrLoc, PFS) ||
Chris Lattnerab21db72009-10-28 00:19:10 +00003151 ParseToken(lltok::comma, "expected ',' after indirectbr address") ||
3152 ParseToken(lltok::lsquare, "expected '[' with indirectbr"))
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003153 return true;
3154
3155 if (!isa<PointerType>(Address->getType()))
Chris Lattnerab21db72009-10-28 00:19:10 +00003156 return Error(AddrLoc, "indirectbr address must have pointer type");
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003157
3158 // Parse the destination list.
3159 SmallVector<BasicBlock*, 16> DestList;
3160
3161 if (Lex.getKind() != lltok::rsquare) {
3162 BasicBlock *DestBB;
3163 if (ParseTypeAndBasicBlock(DestBB, PFS))
3164 return true;
3165 DestList.push_back(DestBB);
3166
3167 while (EatIfPresent(lltok::comma)) {
3168 if (ParseTypeAndBasicBlock(DestBB, PFS))
3169 return true;
3170 DestList.push_back(DestBB);
3171 }
3172 }
3173
3174 if (ParseToken(lltok::rsquare, "expected ']' at end of block list"))
3175 return true;
3176
Chris Lattnerab21db72009-10-28 00:19:10 +00003177 IndirectBrInst *IBI = IndirectBrInst::Create(Address, DestList.size());
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003178 for (unsigned i = 0, e = DestList.size(); i != e; ++i)
3179 IBI->addDestination(DestList[i]);
3180 Inst = IBI;
3181 return false;
3182}
3183
3184
Chris Lattnerdf986172009-01-02 07:01:27 +00003185/// ParseInvoke
3186/// ::= 'invoke' OptionalCallingConv OptionalAttrs Type Value ParamList
3187/// OptionalAttrs 'to' TypeAndValue 'unwind' TypeAndValue
3188bool LLParser::ParseInvoke(Instruction *&Inst, PerFunctionState &PFS) {
3189 LocTy CallLoc = Lex.getLoc();
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00003190 unsigned RetAttrs, FnAttrs;
3191 CallingConv::ID CC;
Owen Anderson1d0be152009-08-13 21:58:54 +00003192 PATypeHolder RetType(Type::getVoidTy(Context));
Chris Lattnerdf986172009-01-02 07:01:27 +00003193 LocTy RetTypeLoc;
3194 ValID CalleeID;
3195 SmallVector<ParamInfo, 16> ArgList;
3196
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003197 BasicBlock *NormalBB, *UnwindBB;
Chris Lattnerdf986172009-01-02 07:01:27 +00003198 if (ParseOptionalCallingConv(CC) ||
3199 ParseOptionalAttrs(RetAttrs, 1) ||
Chris Lattnera9a9e072009-03-09 04:49:14 +00003200 ParseType(RetType, RetTypeLoc, true /*void allowed*/) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003201 ParseValID(CalleeID) ||
3202 ParseParameterList(ArgList, PFS) ||
3203 ParseOptionalAttrs(FnAttrs, 2) ||
3204 ParseToken(lltok::kw_to, "expected 'to' in invoke") ||
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003205 ParseTypeAndBasicBlock(NormalBB, PFS) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003206 ParseToken(lltok::kw_unwind, "expected 'unwind' in invoke") ||
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003207 ParseTypeAndBasicBlock(UnwindBB, PFS))
Chris Lattnerdf986172009-01-02 07:01:27 +00003208 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003209
Chris Lattnerdf986172009-01-02 07:01:27 +00003210 // If RetType is a non-function pointer type, then this is the short syntax
3211 // for the call, which means that RetType is just the return type. Infer the
3212 // rest of the function argument types from the arguments that are present.
3213 const PointerType *PFTy = 0;
3214 const FunctionType *Ty = 0;
3215 if (!(PFTy = dyn_cast<PointerType>(RetType)) ||
3216 !(Ty = dyn_cast<FunctionType>(PFTy->getElementType()))) {
3217 // Pull out the types of all of the arguments...
3218 std::vector<const Type*> ParamTypes;
3219 for (unsigned i = 0, e = ArgList.size(); i != e; ++i)
3220 ParamTypes.push_back(ArgList[i].V->getType());
Daniel Dunbara279bc32009-09-20 02:20:51 +00003221
Chris Lattnerdf986172009-01-02 07:01:27 +00003222 if (!FunctionType::isValidReturnType(RetType))
3223 return Error(RetTypeLoc, "Invalid result type for LLVM function");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003224
Owen Andersondebcb012009-07-29 22:17:13 +00003225 Ty = FunctionType::get(RetType, ParamTypes, false);
3226 PFTy = PointerType::getUnqual(Ty);
Chris Lattnerdf986172009-01-02 07:01:27 +00003227 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003228
Chris Lattnerdf986172009-01-02 07:01:27 +00003229 // Look up the callee.
3230 Value *Callee;
3231 if (ConvertValIDToValue(PFTy, CalleeID, Callee, PFS)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003232
Chris Lattnerdf986172009-01-02 07:01:27 +00003233 // FIXME: In LLVM 3.0, stop accepting zext, sext and inreg as optional
3234 // function attributes.
3235 unsigned ObsoleteFuncAttrs = Attribute::ZExt|Attribute::SExt|Attribute::InReg;
3236 if (FnAttrs & ObsoleteFuncAttrs) {
3237 RetAttrs |= FnAttrs & ObsoleteFuncAttrs;
3238 FnAttrs &= ~ObsoleteFuncAttrs;
3239 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003240
Chris Lattnerdf986172009-01-02 07:01:27 +00003241 // Set up the Attributes for the function.
3242 SmallVector<AttributeWithIndex, 8> Attrs;
3243 if (RetAttrs != Attribute::None)
3244 Attrs.push_back(AttributeWithIndex::get(0, RetAttrs));
Daniel Dunbara279bc32009-09-20 02:20:51 +00003245
Chris Lattnerdf986172009-01-02 07:01:27 +00003246 SmallVector<Value*, 8> Args;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003247
Chris Lattnerdf986172009-01-02 07:01:27 +00003248 // Loop through FunctionType's arguments and ensure they are specified
3249 // correctly. Also, gather any parameter attributes.
3250 FunctionType::param_iterator I = Ty->param_begin();
3251 FunctionType::param_iterator E = Ty->param_end();
3252 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
3253 const Type *ExpectedTy = 0;
3254 if (I != E) {
3255 ExpectedTy = *I++;
3256 } else if (!Ty->isVarArg()) {
3257 return Error(ArgList[i].Loc, "too many arguments specified");
3258 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003259
Chris Lattnerdf986172009-01-02 07:01:27 +00003260 if (ExpectedTy && ExpectedTy != ArgList[i].V->getType())
3261 return Error(ArgList[i].Loc, "argument is not of expected type '" +
3262 ExpectedTy->getDescription() + "'");
3263 Args.push_back(ArgList[i].V);
3264 if (ArgList[i].Attrs != Attribute::None)
3265 Attrs.push_back(AttributeWithIndex::get(i+1, ArgList[i].Attrs));
3266 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003267
Chris Lattnerdf986172009-01-02 07:01:27 +00003268 if (I != E)
3269 return Error(CallLoc, "not enough parameters specified for call");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003270
Chris Lattnerdf986172009-01-02 07:01:27 +00003271 if (FnAttrs != Attribute::None)
3272 Attrs.push_back(AttributeWithIndex::get(~0, FnAttrs));
Daniel Dunbara279bc32009-09-20 02:20:51 +00003273
Chris Lattnerdf986172009-01-02 07:01:27 +00003274 // Finish off the Attributes and check them
3275 AttrListPtr PAL = AttrListPtr::get(Attrs.begin(), Attrs.end());
Daniel Dunbara279bc32009-09-20 02:20:51 +00003276
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003277 InvokeInst *II = InvokeInst::Create(Callee, NormalBB, UnwindBB,
Chris Lattnerdf986172009-01-02 07:01:27 +00003278 Args.begin(), Args.end());
3279 II->setCallingConv(CC);
3280 II->setAttributes(PAL);
3281 Inst = II;
3282 return false;
3283}
3284
3285
3286
3287//===----------------------------------------------------------------------===//
3288// Binary Operators.
3289//===----------------------------------------------------------------------===//
3290
3291/// ParseArithmetic
Chris Lattnere914b592009-01-05 08:24:46 +00003292/// ::= ArithmeticOps TypeAndValue ',' Value
3293///
3294/// If OperandType is 0, then any FP or integer operand is allowed. If it is 1,
3295/// then any integer operand is allowed, if it is 2, any fp operand is allowed.
Chris Lattnerdf986172009-01-02 07:01:27 +00003296bool LLParser::ParseArithmetic(Instruction *&Inst, PerFunctionState &PFS,
Chris Lattnere914b592009-01-05 08:24:46 +00003297 unsigned Opc, unsigned OperandType) {
Chris Lattnerdf986172009-01-02 07:01:27 +00003298 LocTy Loc; Value *LHS, *RHS;
3299 if (ParseTypeAndValue(LHS, Loc, PFS) ||
3300 ParseToken(lltok::comma, "expected ',' in arithmetic operation") ||
3301 ParseValue(LHS->getType(), RHS, PFS))
3302 return true;
3303
Chris Lattnere914b592009-01-05 08:24:46 +00003304 bool Valid;
3305 switch (OperandType) {
Torok Edwinc23197a2009-07-14 16:55:14 +00003306 default: llvm_unreachable("Unknown operand type!");
Chris Lattnere914b592009-01-05 08:24:46 +00003307 case 0: // int or FP.
3308 Valid = LHS->getType()->isIntOrIntVector() ||
3309 LHS->getType()->isFPOrFPVector();
3310 break;
3311 case 1: Valid = LHS->getType()->isIntOrIntVector(); break;
3312 case 2: Valid = LHS->getType()->isFPOrFPVector(); break;
3313 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003314
Chris Lattnere914b592009-01-05 08:24:46 +00003315 if (!Valid)
3316 return Error(Loc, "invalid operand type for instruction");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003317
Chris Lattnerdf986172009-01-02 07:01:27 +00003318 Inst = BinaryOperator::Create((Instruction::BinaryOps)Opc, LHS, RHS);
3319 return false;
3320}
3321
3322/// ParseLogical
3323/// ::= ArithmeticOps TypeAndValue ',' Value {
3324bool LLParser::ParseLogical(Instruction *&Inst, PerFunctionState &PFS,
3325 unsigned Opc) {
3326 LocTy Loc; Value *LHS, *RHS;
3327 if (ParseTypeAndValue(LHS, Loc, PFS) ||
3328 ParseToken(lltok::comma, "expected ',' in logical operation") ||
3329 ParseValue(LHS->getType(), RHS, PFS))
3330 return true;
3331
3332 if (!LHS->getType()->isIntOrIntVector())
3333 return Error(Loc,"instruction requires integer or integer vector operands");
3334
3335 Inst = BinaryOperator::Create((Instruction::BinaryOps)Opc, LHS, RHS);
3336 return false;
3337}
3338
3339
3340/// ParseCompare
3341/// ::= 'icmp' IPredicates TypeAndValue ',' Value
3342/// ::= 'fcmp' FPredicates TypeAndValue ',' Value
Chris Lattnerdf986172009-01-02 07:01:27 +00003343bool LLParser::ParseCompare(Instruction *&Inst, PerFunctionState &PFS,
3344 unsigned Opc) {
3345 // Parse the integer/fp comparison predicate.
3346 LocTy Loc;
3347 unsigned Pred;
3348 Value *LHS, *RHS;
3349 if (ParseCmpPredicate(Pred, Opc) ||
3350 ParseTypeAndValue(LHS, Loc, PFS) ||
3351 ParseToken(lltok::comma, "expected ',' after compare value") ||
3352 ParseValue(LHS->getType(), RHS, PFS))
3353 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003354
Chris Lattnerdf986172009-01-02 07:01:27 +00003355 if (Opc == Instruction::FCmp) {
3356 if (!LHS->getType()->isFPOrFPVector())
3357 return Error(Loc, "fcmp requires floating point operands");
Dan Gohman1c8a23c2009-08-25 23:17:54 +00003358 Inst = new FCmpInst(CmpInst::Predicate(Pred), LHS, RHS);
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00003359 } else {
3360 assert(Opc == Instruction::ICmp && "Unknown opcode for CmpInst!");
Chris Lattnerdf986172009-01-02 07:01:27 +00003361 if (!LHS->getType()->isIntOrIntVector() &&
3362 !isa<PointerType>(LHS->getType()))
3363 return Error(Loc, "icmp requires integer operands");
Dan Gohman1c8a23c2009-08-25 23:17:54 +00003364 Inst = new ICmpInst(CmpInst::Predicate(Pred), LHS, RHS);
Chris Lattnerdf986172009-01-02 07:01:27 +00003365 }
3366 return false;
3367}
3368
3369//===----------------------------------------------------------------------===//
3370// Other Instructions.
3371//===----------------------------------------------------------------------===//
3372
3373
3374/// ParseCast
3375/// ::= CastOpc TypeAndValue 'to' Type
3376bool LLParser::ParseCast(Instruction *&Inst, PerFunctionState &PFS,
3377 unsigned Opc) {
3378 LocTy Loc; Value *Op;
Owen Anderson1d0be152009-08-13 21:58:54 +00003379 PATypeHolder DestTy(Type::getVoidTy(Context));
Chris Lattnerdf986172009-01-02 07:01:27 +00003380 if (ParseTypeAndValue(Op, Loc, PFS) ||
3381 ParseToken(lltok::kw_to, "expected 'to' after cast value") ||
3382 ParseType(DestTy))
3383 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003384
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00003385 if (!CastInst::castIsValid((Instruction::CastOps)Opc, Op, DestTy)) {
3386 CastInst::castIsValid((Instruction::CastOps)Opc, Op, DestTy);
Chris Lattnerdf986172009-01-02 07:01:27 +00003387 return Error(Loc, "invalid cast opcode for cast from '" +
3388 Op->getType()->getDescription() + "' to '" +
3389 DestTy->getDescription() + "'");
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00003390 }
Chris Lattnerdf986172009-01-02 07:01:27 +00003391 Inst = CastInst::Create((Instruction::CastOps)Opc, Op, DestTy);
3392 return false;
3393}
3394
3395/// ParseSelect
3396/// ::= 'select' TypeAndValue ',' TypeAndValue ',' TypeAndValue
3397bool LLParser::ParseSelect(Instruction *&Inst, PerFunctionState &PFS) {
3398 LocTy Loc;
3399 Value *Op0, *Op1, *Op2;
3400 if (ParseTypeAndValue(Op0, Loc, PFS) ||
3401 ParseToken(lltok::comma, "expected ',' after select condition") ||
3402 ParseTypeAndValue(Op1, PFS) ||
3403 ParseToken(lltok::comma, "expected ',' after select value") ||
3404 ParseTypeAndValue(Op2, PFS))
3405 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003406
Chris Lattnerdf986172009-01-02 07:01:27 +00003407 if (const char *Reason = SelectInst::areInvalidOperands(Op0, Op1, Op2))
3408 return Error(Loc, Reason);
Daniel Dunbara279bc32009-09-20 02:20:51 +00003409
Chris Lattnerdf986172009-01-02 07:01:27 +00003410 Inst = SelectInst::Create(Op0, Op1, Op2);
3411 return false;
3412}
3413
Chris Lattner0088a5c2009-01-05 08:18:44 +00003414/// ParseVA_Arg
3415/// ::= 'va_arg' TypeAndValue ',' Type
3416bool LLParser::ParseVA_Arg(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00003417 Value *Op;
Owen Anderson1d0be152009-08-13 21:58:54 +00003418 PATypeHolder EltTy(Type::getVoidTy(Context));
Chris Lattner0088a5c2009-01-05 08:18:44 +00003419 LocTy TypeLoc;
Chris Lattnerdf986172009-01-02 07:01:27 +00003420 if (ParseTypeAndValue(Op, PFS) ||
3421 ParseToken(lltok::comma, "expected ',' after vaarg operand") ||
Chris Lattner0088a5c2009-01-05 08:18:44 +00003422 ParseType(EltTy, TypeLoc))
Chris Lattnerdf986172009-01-02 07:01:27 +00003423 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003424
Chris Lattner0088a5c2009-01-05 08:18:44 +00003425 if (!EltTy->isFirstClassType())
3426 return Error(TypeLoc, "va_arg requires operand with first class type");
Chris Lattnerdf986172009-01-02 07:01:27 +00003427
3428 Inst = new VAArgInst(Op, EltTy);
3429 return false;
3430}
3431
3432/// ParseExtractElement
3433/// ::= 'extractelement' TypeAndValue ',' TypeAndValue
3434bool LLParser::ParseExtractElement(Instruction *&Inst, PerFunctionState &PFS) {
3435 LocTy Loc;
3436 Value *Op0, *Op1;
3437 if (ParseTypeAndValue(Op0, Loc, PFS) ||
3438 ParseToken(lltok::comma, "expected ',' after extract value") ||
3439 ParseTypeAndValue(Op1, PFS))
3440 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003441
Chris Lattnerdf986172009-01-02 07:01:27 +00003442 if (!ExtractElementInst::isValidOperands(Op0, Op1))
3443 return Error(Loc, "invalid extractelement operands");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003444
Eric Christophera3500da2009-07-25 02:28:41 +00003445 Inst = ExtractElementInst::Create(Op0, Op1);
Chris Lattnerdf986172009-01-02 07:01:27 +00003446 return false;
3447}
3448
3449/// ParseInsertElement
3450/// ::= 'insertelement' TypeAndValue ',' TypeAndValue ',' TypeAndValue
3451bool LLParser::ParseInsertElement(Instruction *&Inst, PerFunctionState &PFS) {
3452 LocTy Loc;
3453 Value *Op0, *Op1, *Op2;
3454 if (ParseTypeAndValue(Op0, Loc, PFS) ||
3455 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
3456 ParseTypeAndValue(Op1, PFS) ||
3457 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
3458 ParseTypeAndValue(Op2, PFS))
3459 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003460
Chris Lattnerdf986172009-01-02 07:01:27 +00003461 if (!InsertElementInst::isValidOperands(Op0, Op1, Op2))
Eric Christopher0aaf4e92009-07-23 01:01:32 +00003462 return Error(Loc, "invalid insertelement operands");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003463
Chris Lattnerdf986172009-01-02 07:01:27 +00003464 Inst = InsertElementInst::Create(Op0, Op1, Op2);
3465 return false;
3466}
3467
3468/// ParseShuffleVector
3469/// ::= 'shufflevector' TypeAndValue ',' TypeAndValue ',' TypeAndValue
3470bool LLParser::ParseShuffleVector(Instruction *&Inst, PerFunctionState &PFS) {
3471 LocTy Loc;
3472 Value *Op0, *Op1, *Op2;
3473 if (ParseTypeAndValue(Op0, Loc, PFS) ||
3474 ParseToken(lltok::comma, "expected ',' after shuffle mask") ||
3475 ParseTypeAndValue(Op1, PFS) ||
3476 ParseToken(lltok::comma, "expected ',' after shuffle value") ||
3477 ParseTypeAndValue(Op2, PFS))
3478 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003479
Chris Lattnerdf986172009-01-02 07:01:27 +00003480 if (!ShuffleVectorInst::isValidOperands(Op0, Op1, Op2))
3481 return Error(Loc, "invalid extractelement operands");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003482
Chris Lattnerdf986172009-01-02 07:01:27 +00003483 Inst = new ShuffleVectorInst(Op0, Op1, Op2);
3484 return false;
3485}
3486
3487/// ParsePHI
Chris Lattnerc6e20092009-10-18 05:27:44 +00003488/// ::= 'phi' Type '[' Value ',' Value ']' (',' '[' Value ',' Value ']')*
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003489int LLParser::ParsePHI(Instruction *&Inst, PerFunctionState &PFS) {
Owen Anderson1d0be152009-08-13 21:58:54 +00003490 PATypeHolder Ty(Type::getVoidTy(Context));
Chris Lattnerdf986172009-01-02 07:01:27 +00003491 Value *Op0, *Op1;
3492 LocTy TypeLoc = Lex.getLoc();
Daniel Dunbara279bc32009-09-20 02:20:51 +00003493
Chris Lattnerdf986172009-01-02 07:01:27 +00003494 if (ParseType(Ty) ||
3495 ParseToken(lltok::lsquare, "expected '[' in phi value list") ||
3496 ParseValue(Ty, Op0, PFS) ||
3497 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
Owen Anderson1d0be152009-08-13 21:58:54 +00003498 ParseValue(Type::getLabelTy(Context), Op1, PFS) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003499 ParseToken(lltok::rsquare, "expected ']' in phi value list"))
3500 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003501
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003502 bool AteExtraComma = false;
Chris Lattnerdf986172009-01-02 07:01:27 +00003503 SmallVector<std::pair<Value*, BasicBlock*>, 16> PHIVals;
3504 while (1) {
3505 PHIVals.push_back(std::make_pair(Op0, cast<BasicBlock>(Op1)));
Daniel Dunbara279bc32009-09-20 02:20:51 +00003506
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003507 if (!EatIfPresent(lltok::comma))
Chris Lattnerdf986172009-01-02 07:01:27 +00003508 break;
3509
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003510 if (Lex.getKind() == lltok::MetadataVar) {
3511 AteExtraComma = true;
Devang Patela43d46f2009-10-16 18:45:49 +00003512 break;
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003513 }
Devang Patela43d46f2009-10-16 18:45:49 +00003514
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003515 if (ParseToken(lltok::lsquare, "expected '[' in phi value list") ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003516 ParseValue(Ty, Op0, PFS) ||
3517 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
Owen Anderson1d0be152009-08-13 21:58:54 +00003518 ParseValue(Type::getLabelTy(Context), Op1, PFS) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003519 ParseToken(lltok::rsquare, "expected ']' in phi value list"))
3520 return true;
3521 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003522
Chris Lattnerdf986172009-01-02 07:01:27 +00003523 if (!Ty->isFirstClassType())
3524 return Error(TypeLoc, "phi node must have first class type");
3525
3526 PHINode *PN = PHINode::Create(Ty);
3527 PN->reserveOperandSpace(PHIVals.size());
3528 for (unsigned i = 0, e = PHIVals.size(); i != e; ++i)
3529 PN->addIncoming(PHIVals[i].first, PHIVals[i].second);
3530 Inst = PN;
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003531 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerdf986172009-01-02 07:01:27 +00003532}
3533
3534/// ParseCall
3535/// ::= 'tail'? 'call' OptionalCallingConv OptionalAttrs Type Value
3536/// ParameterList OptionalAttrs
3537bool LLParser::ParseCall(Instruction *&Inst, PerFunctionState &PFS,
3538 bool isTail) {
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00003539 unsigned RetAttrs, FnAttrs;
3540 CallingConv::ID CC;
Owen Anderson1d0be152009-08-13 21:58:54 +00003541 PATypeHolder RetType(Type::getVoidTy(Context));
Chris Lattnerdf986172009-01-02 07:01:27 +00003542 LocTy RetTypeLoc;
3543 ValID CalleeID;
3544 SmallVector<ParamInfo, 16> ArgList;
3545 LocTy CallLoc = Lex.getLoc();
Daniel Dunbara279bc32009-09-20 02:20:51 +00003546
Chris Lattnerdf986172009-01-02 07:01:27 +00003547 if ((isTail && ParseToken(lltok::kw_call, "expected 'tail call'")) ||
3548 ParseOptionalCallingConv(CC) ||
3549 ParseOptionalAttrs(RetAttrs, 1) ||
Chris Lattnera9a9e072009-03-09 04:49:14 +00003550 ParseType(RetType, RetTypeLoc, true /*void allowed*/) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003551 ParseValID(CalleeID) ||
3552 ParseParameterList(ArgList, PFS) ||
3553 ParseOptionalAttrs(FnAttrs, 2))
3554 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003555
Chris Lattnerdf986172009-01-02 07:01:27 +00003556 // If RetType is a non-function pointer type, then this is the short syntax
3557 // for the call, which means that RetType is just the return type. Infer the
3558 // rest of the function argument types from the arguments that are present.
3559 const PointerType *PFTy = 0;
3560 const FunctionType *Ty = 0;
3561 if (!(PFTy = dyn_cast<PointerType>(RetType)) ||
3562 !(Ty = dyn_cast<FunctionType>(PFTy->getElementType()))) {
3563 // Pull out the types of all of the arguments...
3564 std::vector<const Type*> ParamTypes;
3565 for (unsigned i = 0, e = ArgList.size(); i != e; ++i)
3566 ParamTypes.push_back(ArgList[i].V->getType());
Daniel Dunbara279bc32009-09-20 02:20:51 +00003567
Chris Lattnerdf986172009-01-02 07:01:27 +00003568 if (!FunctionType::isValidReturnType(RetType))
3569 return Error(RetTypeLoc, "Invalid result type for LLVM function");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003570
Owen Andersondebcb012009-07-29 22:17:13 +00003571 Ty = FunctionType::get(RetType, ParamTypes, false);
3572 PFTy = PointerType::getUnqual(Ty);
Chris Lattnerdf986172009-01-02 07:01:27 +00003573 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003574
Chris Lattnerdf986172009-01-02 07:01:27 +00003575 // Look up the callee.
3576 Value *Callee;
3577 if (ConvertValIDToValue(PFTy, CalleeID, Callee, PFS)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003578
Chris Lattnerdf986172009-01-02 07:01:27 +00003579 // FIXME: In LLVM 3.0, stop accepting zext, sext and inreg as optional
3580 // function attributes.
3581 unsigned ObsoleteFuncAttrs = Attribute::ZExt|Attribute::SExt|Attribute::InReg;
3582 if (FnAttrs & ObsoleteFuncAttrs) {
3583 RetAttrs |= FnAttrs & ObsoleteFuncAttrs;
3584 FnAttrs &= ~ObsoleteFuncAttrs;
3585 }
3586
3587 // Set up the Attributes for the function.
3588 SmallVector<AttributeWithIndex, 8> Attrs;
3589 if (RetAttrs != Attribute::None)
3590 Attrs.push_back(AttributeWithIndex::get(0, RetAttrs));
Daniel Dunbara279bc32009-09-20 02:20:51 +00003591
Chris Lattnerdf986172009-01-02 07:01:27 +00003592 SmallVector<Value*, 8> Args;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003593
Chris Lattnerdf986172009-01-02 07:01:27 +00003594 // Loop through FunctionType's arguments and ensure they are specified
3595 // correctly. Also, gather any parameter attributes.
3596 FunctionType::param_iterator I = Ty->param_begin();
3597 FunctionType::param_iterator E = Ty->param_end();
3598 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
3599 const Type *ExpectedTy = 0;
3600 if (I != E) {
3601 ExpectedTy = *I++;
3602 } else if (!Ty->isVarArg()) {
3603 return Error(ArgList[i].Loc, "too many arguments specified");
3604 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003605
Chris Lattnerdf986172009-01-02 07:01:27 +00003606 if (ExpectedTy && ExpectedTy != ArgList[i].V->getType())
3607 return Error(ArgList[i].Loc, "argument is not of expected type '" +
3608 ExpectedTy->getDescription() + "'");
3609 Args.push_back(ArgList[i].V);
3610 if (ArgList[i].Attrs != Attribute::None)
3611 Attrs.push_back(AttributeWithIndex::get(i+1, ArgList[i].Attrs));
3612 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003613
Chris Lattnerdf986172009-01-02 07:01:27 +00003614 if (I != E)
3615 return Error(CallLoc, "not enough parameters specified for call");
3616
3617 if (FnAttrs != Attribute::None)
3618 Attrs.push_back(AttributeWithIndex::get(~0, FnAttrs));
3619
3620 // Finish off the Attributes and check them
3621 AttrListPtr PAL = AttrListPtr::get(Attrs.begin(), Attrs.end());
Daniel Dunbara279bc32009-09-20 02:20:51 +00003622
Chris Lattnerdf986172009-01-02 07:01:27 +00003623 CallInst *CI = CallInst::Create(Callee, Args.begin(), Args.end());
3624 CI->setTailCall(isTail);
3625 CI->setCallingConv(CC);
3626 CI->setAttributes(PAL);
3627 Inst = CI;
3628 return false;
3629}
3630
3631//===----------------------------------------------------------------------===//
3632// Memory Instructions.
3633//===----------------------------------------------------------------------===//
3634
3635/// ParseAlloc
Devang Patelf633a062009-09-17 23:04:48 +00003636/// ::= 'malloc' Type (',' TypeAndValue)? (',' OptionalInfo)?
3637/// ::= 'alloca' Type (',' TypeAndValue)? (',' OptionalInfo)?
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00003638int LLParser::ParseAlloc(Instruction *&Inst, PerFunctionState &PFS,
3639 BasicBlock* BB, bool isAlloca) {
Owen Anderson1d0be152009-08-13 21:58:54 +00003640 PATypeHolder Ty(Type::getVoidTy(Context));
Chris Lattnerdf986172009-01-02 07:01:27 +00003641 Value *Size = 0;
Chris Lattnereeb4a842009-07-02 23:08:13 +00003642 LocTy SizeLoc;
Chris Lattnerdf986172009-01-02 07:01:27 +00003643 unsigned Alignment = 0;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003644 if (ParseType(Ty)) return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00003645
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00003646 bool AteExtraComma = false;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003647 if (EatIfPresent(lltok::comma)) {
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00003648 if (Lex.getKind() == lltok::kw_align) {
3649 if (ParseOptionalAlignment(Alignment)) return true;
3650 } else if (Lex.getKind() == lltok::MetadataVar) {
3651 AteExtraComma = true;
Devang Patelf633a062009-09-17 23:04:48 +00003652 } else {
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00003653 if (ParseTypeAndValue(Size, SizeLoc, PFS) ||
3654 ParseOptionalCommaAlign(Alignment, AteExtraComma))
3655 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00003656 }
3657 }
3658
Owen Anderson1d0be152009-08-13 21:58:54 +00003659 if (Size && Size->getType() != Type::getInt32Ty(Context))
Chris Lattnerdf986172009-01-02 07:01:27 +00003660 return Error(SizeLoc, "element count must be i32");
3661
Victor Hernandez68afa542009-10-21 19:11:40 +00003662 if (isAlloca) {
Owen Anderson50dead02009-07-15 23:53:25 +00003663 Inst = new AllocaInst(Ty, Size, Alignment);
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00003664 return AteExtraComma ? InstExtraComma : InstNormal;
Victor Hernandez13ad5aa2009-10-17 00:00:19 +00003665 }
Victor Hernandez68afa542009-10-21 19:11:40 +00003666
3667 // Autoupgrade old malloc instruction to malloc call.
3668 // FIXME: Remove in LLVM 3.0.
3669 const Type *IntPtrTy = Type::getInt32Ty(Context);
Victor Hernandez9d0b7042009-11-07 00:16:28 +00003670 Constant *AllocSize = ConstantExpr::getSizeOf(Ty);
3671 AllocSize = ConstantExpr::getTruncOrBitCast(AllocSize, IntPtrTy);
Victor Hernandez68afa542009-10-21 19:11:40 +00003672 if (!MallocF)
3673 // Prototype malloc as "void *(int32)".
3674 // This function is renamed as "malloc" in ValidateEndOfModule().
Victor Hernandez336ea062009-10-23 00:59:10 +00003675 MallocF = cast<Function>(
3676 M->getOrInsertFunction("", Type::getInt8PtrTy(Context), IntPtrTy, NULL));
Victor Hernandez9d0b7042009-11-07 00:16:28 +00003677 Inst = CallInst::CreateMalloc(BB, IntPtrTy, Ty, AllocSize, Size, MallocF);
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00003678return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerdf986172009-01-02 07:01:27 +00003679}
3680
3681/// ParseFree
3682/// ::= 'free' TypeAndValue
Victor Hernandez66284e02009-10-24 04:23:03 +00003683bool LLParser::ParseFree(Instruction *&Inst, PerFunctionState &PFS,
3684 BasicBlock* BB) {
Chris Lattnerdf986172009-01-02 07:01:27 +00003685 Value *Val; LocTy Loc;
3686 if (ParseTypeAndValue(Val, Loc, PFS)) return true;
3687 if (!isa<PointerType>(Val->getType()))
3688 return Error(Loc, "operand to free must be a pointer");
Victor Hernandez66284e02009-10-24 04:23:03 +00003689 Inst = CallInst::CreateFree(Val, BB);
Chris Lattnerdf986172009-01-02 07:01:27 +00003690 return false;
3691}
3692
3693/// ParseLoad
Devang Patelf633a062009-09-17 23:04:48 +00003694/// ::= 'volatile'? 'load' TypeAndValue (',' OptionalInfo)?
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00003695int LLParser::ParseLoad(Instruction *&Inst, PerFunctionState &PFS,
3696 bool isVolatile) {
Chris Lattnerdf986172009-01-02 07:01:27 +00003697 Value *Val; LocTy Loc;
Devang Patelf633a062009-09-17 23:04:48 +00003698 unsigned Alignment = 0;
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00003699 bool AteExtraComma = false;
3700 if (ParseTypeAndValue(Val, Loc, PFS) ||
3701 ParseOptionalCommaAlign(Alignment, AteExtraComma))
3702 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00003703
3704 if (!isa<PointerType>(Val->getType()) ||
3705 !cast<PointerType>(Val->getType())->getElementType()->isFirstClassType())
3706 return Error(Loc, "load operand must be a pointer to a first class type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003707
Chris Lattnerdf986172009-01-02 07:01:27 +00003708 Inst = new LoadInst(Val, "", isVolatile, Alignment);
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00003709 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerdf986172009-01-02 07:01:27 +00003710}
3711
3712/// ParseStore
Dan Gohmana119de82009-06-14 23:30:43 +00003713/// ::= 'volatile'? 'store' TypeAndValue ',' TypeAndValue (',' 'align' i32)?
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00003714int LLParser::ParseStore(Instruction *&Inst, PerFunctionState &PFS,
3715 bool isVolatile) {
Chris Lattnerdf986172009-01-02 07:01:27 +00003716 Value *Val, *Ptr; LocTy Loc, PtrLoc;
Devang Patelf633a062009-09-17 23:04:48 +00003717 unsigned Alignment = 0;
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00003718 bool AteExtraComma = false;
Chris Lattnerdf986172009-01-02 07:01:27 +00003719 if (ParseTypeAndValue(Val, Loc, PFS) ||
3720 ParseToken(lltok::comma, "expected ',' after store operand") ||
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00003721 ParseTypeAndValue(Ptr, PtrLoc, PFS) ||
3722 ParseOptionalCommaAlign(Alignment, AteExtraComma))
Chris Lattnerdf986172009-01-02 07:01:27 +00003723 return true;
Devang Patelf633a062009-09-17 23:04:48 +00003724
Chris Lattnerdf986172009-01-02 07:01:27 +00003725 if (!isa<PointerType>(Ptr->getType()))
3726 return Error(PtrLoc, "store operand must be a pointer");
3727 if (!Val->getType()->isFirstClassType())
3728 return Error(Loc, "store operand must be a first class value");
3729 if (cast<PointerType>(Ptr->getType())->getElementType() != Val->getType())
3730 return Error(Loc, "stored value and pointer type do not match");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003731
Chris Lattnerdf986172009-01-02 07:01:27 +00003732 Inst = new StoreInst(Val, Ptr, isVolatile, Alignment);
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00003733 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerdf986172009-01-02 07:01:27 +00003734}
3735
3736/// ParseGetResult
Dan Gohmana119de82009-06-14 23:30:43 +00003737/// ::= 'getresult' TypeAndValue ',' i32
Chris Lattnerdf986172009-01-02 07:01:27 +00003738/// FIXME: Remove support for getresult in LLVM 3.0
3739bool LLParser::ParseGetResult(Instruction *&Inst, PerFunctionState &PFS) {
3740 Value *Val; LocTy ValLoc, EltLoc;
3741 unsigned Element;
3742 if (ParseTypeAndValue(Val, ValLoc, PFS) ||
3743 ParseToken(lltok::comma, "expected ',' after getresult operand") ||
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003744 ParseUInt32(Element, EltLoc))
Chris Lattnerdf986172009-01-02 07:01:27 +00003745 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003746
Chris Lattnerdf986172009-01-02 07:01:27 +00003747 if (!isa<StructType>(Val->getType()) && !isa<ArrayType>(Val->getType()))
3748 return Error(ValLoc, "getresult inst requires an aggregate operand");
3749 if (!ExtractValueInst::getIndexedType(Val->getType(), Element))
3750 return Error(EltLoc, "invalid getresult index for value");
3751 Inst = ExtractValueInst::Create(Val, Element);
3752 return false;
3753}
3754
3755/// ParseGetElementPtr
Dan Gohmandd8004d2009-07-27 21:53:46 +00003756/// ::= 'getelementptr' 'inbounds'? TypeAndValue (',' TypeAndValue)*
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003757int LLParser::ParseGetElementPtr(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00003758 Value *Ptr, *Val; LocTy Loc, EltLoc;
Dan Gohmandd8004d2009-07-27 21:53:46 +00003759
Dan Gohmandcb40a32009-07-29 15:58:36 +00003760 bool InBounds = EatIfPresent(lltok::kw_inbounds);
Dan Gohmandd8004d2009-07-27 21:53:46 +00003761
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003762 if (ParseTypeAndValue(Ptr, Loc, PFS)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003763
Chris Lattnerdf986172009-01-02 07:01:27 +00003764 if (!isa<PointerType>(Ptr->getType()))
3765 return Error(Loc, "base of getelementptr must be a pointer");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003766
Chris Lattnerdf986172009-01-02 07:01:27 +00003767 SmallVector<Value*, 16> Indices;
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003768 bool AteExtraComma = false;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003769 while (EatIfPresent(lltok::comma)) {
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003770 if (Lex.getKind() == lltok::MetadataVar) {
3771 AteExtraComma = true;
Devang Patel6225d642009-10-13 18:49:55 +00003772 break;
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003773 }
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003774 if (ParseTypeAndValue(Val, EltLoc, PFS)) return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00003775 if (!isa<IntegerType>(Val->getType()))
3776 return Error(EltLoc, "getelementptr index must be an integer");
3777 Indices.push_back(Val);
3778 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003779
Chris Lattnerdf986172009-01-02 07:01:27 +00003780 if (!GetElementPtrInst::getIndexedType(Ptr->getType(),
3781 Indices.begin(), Indices.end()))
3782 return Error(Loc, "invalid getelementptr indices");
3783 Inst = GetElementPtrInst::Create(Ptr, Indices.begin(), Indices.end());
Dan Gohmandd8004d2009-07-27 21:53:46 +00003784 if (InBounds)
Dan Gohmanf8dbee72009-09-07 23:54:19 +00003785 cast<GetElementPtrInst>(Inst)->setIsInBounds(true);
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003786 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerdf986172009-01-02 07:01:27 +00003787}
3788
3789/// ParseExtractValue
3790/// ::= 'extractvalue' TypeAndValue (',' uint32)+
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003791int LLParser::ParseExtractValue(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00003792 Value *Val; LocTy Loc;
3793 SmallVector<unsigned, 4> Indices;
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003794 bool AteExtraComma;
Chris Lattnerdf986172009-01-02 07:01:27 +00003795 if (ParseTypeAndValue(Val, Loc, PFS) ||
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003796 ParseIndexList(Indices, AteExtraComma))
Chris Lattnerdf986172009-01-02 07:01:27 +00003797 return true;
3798
3799 if (!isa<StructType>(Val->getType()) && !isa<ArrayType>(Val->getType()))
3800 return Error(Loc, "extractvalue operand must be array or struct");
3801
3802 if (!ExtractValueInst::getIndexedType(Val->getType(), Indices.begin(),
3803 Indices.end()))
3804 return Error(Loc, "invalid indices for extractvalue");
3805 Inst = ExtractValueInst::Create(Val, Indices.begin(), Indices.end());
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003806 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerdf986172009-01-02 07:01:27 +00003807}
3808
3809/// ParseInsertValue
3810/// ::= 'insertvalue' TypeAndValue ',' TypeAndValue (',' uint32)+
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003811int LLParser::ParseInsertValue(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00003812 Value *Val0, *Val1; LocTy Loc0, Loc1;
3813 SmallVector<unsigned, 4> Indices;
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003814 bool AteExtraComma;
Chris Lattnerdf986172009-01-02 07:01:27 +00003815 if (ParseTypeAndValue(Val0, Loc0, PFS) ||
3816 ParseToken(lltok::comma, "expected comma after insertvalue operand") ||
3817 ParseTypeAndValue(Val1, Loc1, PFS) ||
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003818 ParseIndexList(Indices, AteExtraComma))
Chris Lattnerdf986172009-01-02 07:01:27 +00003819 return true;
Chris Lattner628c13a2009-12-30 05:14:00 +00003820
Chris Lattnerdf986172009-01-02 07:01:27 +00003821 if (!isa<StructType>(Val0->getType()) && !isa<ArrayType>(Val0->getType()))
3822 return Error(Loc0, "extractvalue operand must be array or struct");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003823
Chris Lattnerdf986172009-01-02 07:01:27 +00003824 if (!ExtractValueInst::getIndexedType(Val0->getType(), Indices.begin(),
3825 Indices.end()))
3826 return Error(Loc0, "invalid indices for insertvalue");
3827 Inst = InsertValueInst::Create(Val0, Val1, Indices.begin(), Indices.end());
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003828 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerdf986172009-01-02 07:01:27 +00003829}
Nick Lewycky21cc4462009-04-04 07:22:01 +00003830
3831//===----------------------------------------------------------------------===//
3832// Embedded metadata.
3833//===----------------------------------------------------------------------===//
3834
3835/// ParseMDNodeVector
Nick Lewyckycb337992009-05-10 20:57:05 +00003836/// ::= Element (',' Element)*
3837/// Element
3838/// ::= 'null' | TypeAndValue
3839bool LLParser::ParseMDNodeVector(SmallVectorImpl<Value*> &Elts) {
Nick Lewycky21cc4462009-04-04 07:22:01 +00003840 do {
Chris Lattnera7352392009-12-30 04:42:57 +00003841 // Null is a special case since it is typeless.
3842 if (EatIfPresent(lltok::kw_null)) {
3843 Elts.push_back(0);
3844 continue;
Nick Lewyckycb337992009-05-10 20:57:05 +00003845 }
Chris Lattnera7352392009-12-30 04:42:57 +00003846
3847 Value *V = 0;
3848 PATypeHolder Ty(Type::getVoidTy(Context));
3849 ValID ID;
3850 if (ParseType(Ty) || ParseValID(ID) ||
3851 ConvertGlobalOrMetadataValIDToValue(Ty, ID, V))
3852 return true;
3853
Nick Lewyckycb337992009-05-10 20:57:05 +00003854 Elts.push_back(V);
Nick Lewycky21cc4462009-04-04 07:22:01 +00003855 } while (EatIfPresent(lltok::comma));
3856
3857 return false;
3858}