blob: a917d858f5ad6ffa5e419cf939474651ea87d5fc [file] [log] [blame]
Chris Lattnerdf986172009-01-02 07:01:27 +00001//===-- LLParser.cpp - Parser Class ---------------------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file defines the parser class for .ll files.
11//
12//===----------------------------------------------------------------------===//
13
14#include "LLParser.h"
15#include "llvm/AutoUpgrade.h"
16#include "llvm/CallingConv.h"
17#include "llvm/Constants.h"
18#include "llvm/DerivedTypes.h"
19#include "llvm/InlineAsm.h"
20#include "llvm/Instructions.h"
21#include "llvm/Module.h"
Dan Gohman1224c382009-07-20 21:19:07 +000022#include "llvm/Operator.h"
Chris Lattnerdf986172009-01-02 07:01:27 +000023#include "llvm/ValueSymbolTable.h"
24#include "llvm/ADT/SmallPtrSet.h"
25#include "llvm/ADT/StringExtras.h"
Torok Edwinc25e7582009-07-11 20:10:48 +000026#include "llvm/Support/ErrorHandling.h"
Chris Lattnerdf986172009-01-02 07:01:27 +000027#include "llvm/Support/raw_ostream.h"
28using namespace llvm;
29
Chris Lattner3ed88ef2009-01-02 08:05:26 +000030/// Run: module ::= toplevelentity*
Chris Lattnerad7d1e22009-01-04 20:44:11 +000031bool LLParser::Run() {
Chris Lattner3ed88ef2009-01-02 08:05:26 +000032 // Prime the lexer.
33 Lex.Lex();
34
Chris Lattnerad7d1e22009-01-04 20:44:11 +000035 return ParseTopLevelEntities() ||
36 ValidateEndOfModule();
Chris Lattnerdf986172009-01-02 07:01:27 +000037}
38
39/// ValidateEndOfModule - Do final validity and sanity checks at the end of the
40/// module.
41bool LLParser::ValidateEndOfModule() {
Victor Hernandez68afa542009-10-21 19:11:40 +000042 // Update auto-upgraded malloc calls to "malloc".
Chris Lattnercf4d2f12009-10-18 05:09:15 +000043 // FIXME: Remove in LLVM 3.0.
Victor Hernandez13ad5aa2009-10-17 00:00:19 +000044 if (MallocF) {
45 MallocF->setName("malloc");
46 // If setName() does not set the name to "malloc", then there is already a
47 // declaration of "malloc". In that case, iterate over all calls to MallocF
48 // and get them to call the declared "malloc" instead.
49 if (MallocF->getName() != "malloc") {
Chris Lattner09d9ef42009-10-28 03:39:23 +000050 Constant *RealMallocF = M->getFunction("malloc");
Victor Hernandez68afa542009-10-21 19:11:40 +000051 if (RealMallocF->getType() != MallocF->getType())
52 RealMallocF = ConstantExpr::getBitCast(RealMallocF, MallocF->getType());
53 MallocF->replaceAllUsesWith(RealMallocF);
Victor Hernandez13ad5aa2009-10-17 00:00:19 +000054 MallocF->eraseFromParent();
55 MallocF = NULL;
56 }
57 }
Chris Lattner09d9ef42009-10-28 03:39:23 +000058
59
60 // If there are entries in ForwardRefBlockAddresses at this point, they are
61 // references after the function was defined. Resolve those now.
62 while (!ForwardRefBlockAddresses.empty()) {
63 // Okay, we are referencing an already-parsed function, resolve them now.
64 Function *TheFn = 0;
65 const ValID &Fn = ForwardRefBlockAddresses.begin()->first;
66 if (Fn.Kind == ValID::t_GlobalName)
67 TheFn = M->getFunction(Fn.StrVal);
68 else if (Fn.UIntVal < NumberedVals.size())
69 TheFn = dyn_cast<Function>(NumberedVals[Fn.UIntVal]);
70
71 if (TheFn == 0)
72 return Error(Fn.Loc, "unknown function referenced by blockaddress");
73
74 // Resolve all these references.
75 if (ResolveForwardRefBlockAddresses(TheFn,
76 ForwardRefBlockAddresses.begin()->second,
77 0))
78 return true;
79
80 ForwardRefBlockAddresses.erase(ForwardRefBlockAddresses.begin());
81 }
82
83
Chris Lattnerdf986172009-01-02 07:01:27 +000084 if (!ForwardRefTypes.empty())
85 return Error(ForwardRefTypes.begin()->second.second,
86 "use of undefined type named '" +
87 ForwardRefTypes.begin()->first + "'");
88 if (!ForwardRefTypeIDs.empty())
89 return Error(ForwardRefTypeIDs.begin()->second.second,
90 "use of undefined type '%" +
91 utostr(ForwardRefTypeIDs.begin()->first) + "'");
Daniel Dunbara279bc32009-09-20 02:20:51 +000092
Chris Lattnerdf986172009-01-02 07:01:27 +000093 if (!ForwardRefVals.empty())
94 return Error(ForwardRefVals.begin()->second.second,
95 "use of undefined value '@" + ForwardRefVals.begin()->first +
96 "'");
Daniel Dunbara279bc32009-09-20 02:20:51 +000097
Chris Lattnerdf986172009-01-02 07:01:27 +000098 if (!ForwardRefValIDs.empty())
99 return Error(ForwardRefValIDs.begin()->second.second,
100 "use of undefined value '@" +
101 utostr(ForwardRefValIDs.begin()->first) + "'");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000102
Devang Patel1c7eea62009-07-08 19:23:54 +0000103 if (!ForwardRefMDNodes.empty())
104 return Error(ForwardRefMDNodes.begin()->second.second,
105 "use of undefined metadata '!" +
106 utostr(ForwardRefMDNodes.begin()->first) + "'");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000107
Devang Patel1c7eea62009-07-08 19:23:54 +0000108
Chris Lattnerdf986172009-01-02 07:01:27 +0000109 // Look for intrinsic functions and CallInst that need to be upgraded
110 for (Module::iterator FI = M->begin(), FE = M->end(); FI != FE; )
111 UpgradeCallsToIntrinsic(FI++); // must be post-increment, as we remove
Daniel Dunbara279bc32009-09-20 02:20:51 +0000112
Devang Patele4b27562009-08-28 23:24:31 +0000113 // Check debug info intrinsics.
114 CheckDebugInfoIntrinsics(M);
Chris Lattnerdf986172009-01-02 07:01:27 +0000115 return false;
116}
117
Chris Lattner09d9ef42009-10-28 03:39:23 +0000118bool LLParser::ResolveForwardRefBlockAddresses(Function *TheFn,
119 std::vector<std::pair<ValID, GlobalValue*> > &Refs,
120 PerFunctionState *PFS) {
121 // Loop over all the references, resolving them.
122 for (unsigned i = 0, e = Refs.size(); i != e; ++i) {
123 BasicBlock *Res;
Chris Lattnercdfc9402009-11-01 01:27:45 +0000124 if (PFS) {
Chris Lattner09d9ef42009-10-28 03:39:23 +0000125 if (Refs[i].first.Kind == ValID::t_LocalName)
126 Res = PFS->GetBB(Refs[i].first.StrVal, Refs[i].first.Loc);
Chris Lattnercdfc9402009-11-01 01:27:45 +0000127 else
Chris Lattner09d9ef42009-10-28 03:39:23 +0000128 Res = PFS->GetBB(Refs[i].first.UIntVal, Refs[i].first.Loc);
129 } else if (Refs[i].first.Kind == ValID::t_LocalID) {
130 return Error(Refs[i].first.Loc,
Chris Lattneree7644d2009-11-02 18:28:45 +0000131 "cannot take address of numeric label after the function is defined");
Chris Lattner09d9ef42009-10-28 03:39:23 +0000132 } else {
133 Res = dyn_cast_or_null<BasicBlock>(
134 TheFn->getValueSymbolTable().lookup(Refs[i].first.StrVal));
135 }
136
Chris Lattnercdfc9402009-11-01 01:27:45 +0000137 if (Res == 0)
Chris Lattner09d9ef42009-10-28 03:39:23 +0000138 return Error(Refs[i].first.Loc,
139 "referenced value is not a basic block");
140
141 // Get the BlockAddress for this and update references to use it.
142 BlockAddress *BA = BlockAddress::get(TheFn, Res);
143 Refs[i].second->replaceAllUsesWith(BA);
144 Refs[i].second->eraseFromParent();
145 }
146 return false;
147}
148
149
Chris Lattnerdf986172009-01-02 07:01:27 +0000150//===----------------------------------------------------------------------===//
151// Top-Level Entities
152//===----------------------------------------------------------------------===//
153
154bool LLParser::ParseTopLevelEntities() {
Chris Lattnerdf986172009-01-02 07:01:27 +0000155 while (1) {
156 switch (Lex.getKind()) {
157 default: return TokError("expected top-level entity");
158 case lltok::Eof: return false;
159 //case lltok::kw_define:
160 case lltok::kw_declare: if (ParseDeclare()) return true; break;
161 case lltok::kw_define: if (ParseDefine()) return true; break;
162 case lltok::kw_module: if (ParseModuleAsm()) return true; break;
163 case lltok::kw_target: if (ParseTargetDefinition()) return true; break;
164 case lltok::kw_deplibs: if (ParseDepLibs()) return true; break;
165 case lltok::kw_type: if (ParseUnnamedType()) return true; break;
Dan Gohman3845e502009-08-12 23:32:33 +0000166 case lltok::LocalVarID: if (ParseUnnamedType()) return true; break;
Chris Lattnerdf986172009-01-02 07:01:27 +0000167 case lltok::StringConstant: // FIXME: REMOVE IN LLVM 3.0
168 case lltok::LocalVar: if (ParseNamedType()) return true; break;
Dan Gohman3845e502009-08-12 23:32:33 +0000169 case lltok::GlobalID: if (ParseUnnamedGlobal()) return true; break;
Chris Lattnerdf986172009-01-02 07:01:27 +0000170 case lltok::GlobalVar: if (ParseNamedGlobal()) return true; break;
Chris Lattnere434d272009-12-30 04:56:59 +0000171 case lltok::exclaim: if (ParseStandaloneMetadata()) return true; break;
Chris Lattner1d928312009-12-30 05:02:06 +0000172 case lltok::MetadataVar: if (ParseNamedMetadata()) return true; break;
Chris Lattnerdf986172009-01-02 07:01:27 +0000173
174 // The Global variable production with no name can have many different
175 // optional leading prefixes, the production is:
176 // GlobalVar ::= OptionalLinkage OptionalVisibility OptionalThreadLocal
177 // OptionalAddrSpace ('constant'|'global') ...
Bill Wendling3d10a5a2009-07-20 01:03:30 +0000178 case lltok::kw_private : // OptionalLinkage
179 case lltok::kw_linker_private: // OptionalLinkage
180 case lltok::kw_internal: // OptionalLinkage
181 case lltok::kw_weak: // OptionalLinkage
182 case lltok::kw_weak_odr: // OptionalLinkage
183 case lltok::kw_linkonce: // OptionalLinkage
184 case lltok::kw_linkonce_odr: // OptionalLinkage
185 case lltok::kw_appending: // OptionalLinkage
186 case lltok::kw_dllexport: // OptionalLinkage
187 case lltok::kw_common: // OptionalLinkage
188 case lltok::kw_dllimport: // OptionalLinkage
189 case lltok::kw_extern_weak: // OptionalLinkage
190 case lltok::kw_external: { // OptionalLinkage
Chris Lattnerdf986172009-01-02 07:01:27 +0000191 unsigned Linkage, Visibility;
192 if (ParseOptionalLinkage(Linkage) ||
193 ParseOptionalVisibility(Visibility) ||
Chris Lattnereeb4a842009-07-02 23:08:13 +0000194 ParseGlobal("", SMLoc(), Linkage, true, Visibility))
Chris Lattnerdf986172009-01-02 07:01:27 +0000195 return true;
196 break;
197 }
198 case lltok::kw_default: // OptionalVisibility
199 case lltok::kw_hidden: // OptionalVisibility
200 case lltok::kw_protected: { // OptionalVisibility
201 unsigned Visibility;
202 if (ParseOptionalVisibility(Visibility) ||
Chris Lattnereeb4a842009-07-02 23:08:13 +0000203 ParseGlobal("", SMLoc(), 0, false, Visibility))
Chris Lattnerdf986172009-01-02 07:01:27 +0000204 return true;
205 break;
206 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000207
Chris Lattnerdf986172009-01-02 07:01:27 +0000208 case lltok::kw_thread_local: // OptionalThreadLocal
209 case lltok::kw_addrspace: // OptionalAddrSpace
210 case lltok::kw_constant: // GlobalType
211 case lltok::kw_global: // GlobalType
Chris Lattnereeb4a842009-07-02 23:08:13 +0000212 if (ParseGlobal("", SMLoc(), 0, false, 0)) return true;
Chris Lattnerdf986172009-01-02 07:01:27 +0000213 break;
214 }
215 }
216}
217
218
219/// toplevelentity
220/// ::= 'module' 'asm' STRINGCONSTANT
221bool LLParser::ParseModuleAsm() {
222 assert(Lex.getKind() == lltok::kw_module);
223 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +0000224
225 std::string AsmStr;
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000226 if (ParseToken(lltok::kw_asm, "expected 'module asm'") ||
227 ParseStringConstant(AsmStr)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000228
Chris Lattnerdf986172009-01-02 07:01:27 +0000229 const std::string &AsmSoFar = M->getModuleInlineAsm();
230 if (AsmSoFar.empty())
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000231 M->setModuleInlineAsm(AsmStr);
Chris Lattnerdf986172009-01-02 07:01:27 +0000232 else
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000233 M->setModuleInlineAsm(AsmSoFar+"\n"+AsmStr);
Chris Lattnerdf986172009-01-02 07:01:27 +0000234 return false;
235}
236
237/// toplevelentity
238/// ::= 'target' 'triple' '=' STRINGCONSTANT
239/// ::= 'target' 'datalayout' '=' STRINGCONSTANT
240bool LLParser::ParseTargetDefinition() {
241 assert(Lex.getKind() == lltok::kw_target);
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000242 std::string Str;
Chris Lattnerdf986172009-01-02 07:01:27 +0000243 switch (Lex.Lex()) {
244 default: return TokError("unknown target property");
245 case lltok::kw_triple:
246 Lex.Lex();
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000247 if (ParseToken(lltok::equal, "expected '=' after target triple") ||
248 ParseStringConstant(Str))
Chris Lattnerdf986172009-01-02 07:01:27 +0000249 return true;
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000250 M->setTargetTriple(Str);
Chris Lattnerdf986172009-01-02 07:01:27 +0000251 return false;
252 case lltok::kw_datalayout:
253 Lex.Lex();
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000254 if (ParseToken(lltok::equal, "expected '=' after target datalayout") ||
255 ParseStringConstant(Str))
Chris Lattnerdf986172009-01-02 07:01:27 +0000256 return true;
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000257 M->setDataLayout(Str);
Chris Lattnerdf986172009-01-02 07:01:27 +0000258 return false;
259 }
260}
261
262/// toplevelentity
263/// ::= 'deplibs' '=' '[' ']'
264/// ::= 'deplibs' '=' '[' STRINGCONSTANT (',' STRINGCONSTANT)* ']'
265bool LLParser::ParseDepLibs() {
266 assert(Lex.getKind() == lltok::kw_deplibs);
Chris Lattnerdf986172009-01-02 07:01:27 +0000267 Lex.Lex();
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000268 if (ParseToken(lltok::equal, "expected '=' after deplibs") ||
269 ParseToken(lltok::lsquare, "expected '=' after deplibs"))
270 return true;
271
272 if (EatIfPresent(lltok::rsquare))
273 return false;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000274
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000275 std::string Str;
276 if (ParseStringConstant(Str)) return true;
277 M->addLibrary(Str);
278
279 while (EatIfPresent(lltok::comma)) {
280 if (ParseStringConstant(Str)) return true;
281 M->addLibrary(Str);
282 }
283
284 return ParseToken(lltok::rsquare, "expected ']' at end of list");
Chris Lattnerdf986172009-01-02 07:01:27 +0000285}
286
Dan Gohman3845e502009-08-12 23:32:33 +0000287/// ParseUnnamedType:
Chris Lattnerdf986172009-01-02 07:01:27 +0000288/// ::= 'type' type
Dan Gohman3845e502009-08-12 23:32:33 +0000289/// ::= LocalVarID '=' 'type' type
Chris Lattnerdf986172009-01-02 07:01:27 +0000290bool LLParser::ParseUnnamedType() {
Dan Gohman3845e502009-08-12 23:32:33 +0000291 unsigned TypeID = NumberedTypes.size();
292
293 // Handle the LocalVarID form.
294 if (Lex.getKind() == lltok::LocalVarID) {
295 if (Lex.getUIntVal() != TypeID)
296 return Error(Lex.getLoc(), "type expected to be numbered '%" +
297 utostr(TypeID) + "'");
298 Lex.Lex(); // eat LocalVarID;
299
300 if (ParseToken(lltok::equal, "expected '=' after name"))
301 return true;
302 }
303
Chris Lattnerdf986172009-01-02 07:01:27 +0000304 assert(Lex.getKind() == lltok::kw_type);
305 LocTy TypeLoc = Lex.getLoc();
306 Lex.Lex(); // eat kw_type
307
Owen Anderson1d0be152009-08-13 21:58:54 +0000308 PATypeHolder Ty(Type::getVoidTy(Context));
Chris Lattnerdf986172009-01-02 07:01:27 +0000309 if (ParseType(Ty)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000310
Chris Lattnerdf986172009-01-02 07:01:27 +0000311 // See if this type was previously referenced.
312 std::map<unsigned, std::pair<PATypeHolder, LocTy> >::iterator
313 FI = ForwardRefTypeIDs.find(TypeID);
314 if (FI != ForwardRefTypeIDs.end()) {
Chris Lattnerc38daba2009-01-05 18:19:46 +0000315 if (FI->second.first.get() == Ty)
316 return Error(TypeLoc, "self referential type is invalid");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000317
Chris Lattnerdf986172009-01-02 07:01:27 +0000318 cast<DerivedType>(FI->second.first.get())->refineAbstractTypeTo(Ty);
319 Ty = FI->second.first.get();
320 ForwardRefTypeIDs.erase(FI);
321 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000322
Chris Lattnerdf986172009-01-02 07:01:27 +0000323 NumberedTypes.push_back(Ty);
Daniel Dunbara279bc32009-09-20 02:20:51 +0000324
Chris Lattnerdf986172009-01-02 07:01:27 +0000325 return false;
326}
327
328/// toplevelentity
329/// ::= LocalVar '=' 'type' type
330bool LLParser::ParseNamedType() {
331 std::string Name = Lex.getStrVal();
332 LocTy NameLoc = Lex.getLoc();
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000333 Lex.Lex(); // eat LocalVar.
Daniel Dunbara279bc32009-09-20 02:20:51 +0000334
Owen Anderson1d0be152009-08-13 21:58:54 +0000335 PATypeHolder Ty(Type::getVoidTy(Context));
Daniel Dunbara279bc32009-09-20 02:20:51 +0000336
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000337 if (ParseToken(lltok::equal, "expected '=' after name") ||
338 ParseToken(lltok::kw_type, "expected 'type' after name") ||
339 ParseType(Ty))
340 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000341
Chris Lattnerdf986172009-01-02 07:01:27 +0000342 // Set the type name, checking for conflicts as we do so.
343 bool AlreadyExists = M->addTypeName(Name, Ty);
344 if (!AlreadyExists) return false;
345
346 // See if this type is a forward reference. We need to eagerly resolve
347 // types to allow recursive type redefinitions below.
348 std::map<std::string, std::pair<PATypeHolder, LocTy> >::iterator
349 FI = ForwardRefTypes.find(Name);
350 if (FI != ForwardRefTypes.end()) {
Chris Lattnerc38daba2009-01-05 18:19:46 +0000351 if (FI->second.first.get() == Ty)
352 return Error(NameLoc, "self referential type is invalid");
353
Chris Lattnerdf986172009-01-02 07:01:27 +0000354 cast<DerivedType>(FI->second.first.get())->refineAbstractTypeTo(Ty);
355 Ty = FI->second.first.get();
356 ForwardRefTypes.erase(FI);
357 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000358
Chris Lattnerdf986172009-01-02 07:01:27 +0000359 // Inserting a name that is already defined, get the existing name.
360 const Type *Existing = M->getTypeByName(Name);
361 assert(Existing && "Conflict but no matching type?!");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000362
Chris Lattnerdf986172009-01-02 07:01:27 +0000363 // Otherwise, this is an attempt to redefine a type. That's okay if
364 // the redefinition is identical to the original.
365 // FIXME: REMOVE REDEFINITIONS IN LLVM 3.0
366 if (Existing == Ty) return false;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000367
Chris Lattnerdf986172009-01-02 07:01:27 +0000368 // Any other kind of (non-equivalent) redefinition is an error.
369 return Error(NameLoc, "redefinition of type named '" + Name + "' of type '" +
370 Ty->getDescription() + "'");
371}
372
373
374/// toplevelentity
375/// ::= 'declare' FunctionHeader
376bool LLParser::ParseDeclare() {
377 assert(Lex.getKind() == lltok::kw_declare);
378 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +0000379
Chris Lattnerdf986172009-01-02 07:01:27 +0000380 Function *F;
381 return ParseFunctionHeader(F, false);
382}
383
384/// toplevelentity
385/// ::= 'define' FunctionHeader '{' ...
386bool LLParser::ParseDefine() {
387 assert(Lex.getKind() == lltok::kw_define);
388 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +0000389
Chris Lattnerdf986172009-01-02 07:01:27 +0000390 Function *F;
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000391 return ParseFunctionHeader(F, true) ||
392 ParseFunctionBody(*F);
Chris Lattnerdf986172009-01-02 07:01:27 +0000393}
394
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000395/// ParseGlobalType
396/// ::= 'constant'
397/// ::= 'global'
Chris Lattnerdf986172009-01-02 07:01:27 +0000398bool LLParser::ParseGlobalType(bool &IsConstant) {
399 if (Lex.getKind() == lltok::kw_constant)
400 IsConstant = true;
401 else if (Lex.getKind() == lltok::kw_global)
402 IsConstant = false;
Duncan Sands35b51072009-02-10 16:24:55 +0000403 else {
404 IsConstant = false;
Chris Lattnerdf986172009-01-02 07:01:27 +0000405 return TokError("expected 'global' or 'constant'");
Duncan Sands35b51072009-02-10 16:24:55 +0000406 }
Chris Lattnerdf986172009-01-02 07:01:27 +0000407 Lex.Lex();
408 return false;
409}
410
Dan Gohman3845e502009-08-12 23:32:33 +0000411/// ParseUnnamedGlobal:
412/// OptionalVisibility ALIAS ...
413/// OptionalLinkage OptionalVisibility ... -> global variable
414/// GlobalID '=' OptionalVisibility ALIAS ...
415/// GlobalID '=' OptionalLinkage OptionalVisibility ... -> global variable
416bool LLParser::ParseUnnamedGlobal() {
417 unsigned VarID = NumberedVals.size();
418 std::string Name;
419 LocTy NameLoc = Lex.getLoc();
420
421 // Handle the GlobalID form.
422 if (Lex.getKind() == lltok::GlobalID) {
423 if (Lex.getUIntVal() != VarID)
424 return Error(Lex.getLoc(), "variable expected to be numbered '%" +
425 utostr(VarID) + "'");
426 Lex.Lex(); // eat GlobalID;
427
428 if (ParseToken(lltok::equal, "expected '=' after name"))
429 return true;
430 }
431
432 bool HasLinkage;
433 unsigned Linkage, Visibility;
434 if (ParseOptionalLinkage(Linkage, HasLinkage) ||
435 ParseOptionalVisibility(Visibility))
436 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000437
Dan Gohman3845e502009-08-12 23:32:33 +0000438 if (HasLinkage || Lex.getKind() != lltok::kw_alias)
439 return ParseGlobal(Name, NameLoc, Linkage, HasLinkage, Visibility);
440 return ParseAlias(Name, NameLoc, Visibility);
441}
442
Chris Lattnerdf986172009-01-02 07:01:27 +0000443/// ParseNamedGlobal:
444/// GlobalVar '=' OptionalVisibility ALIAS ...
445/// GlobalVar '=' OptionalLinkage OptionalVisibility ... -> global variable
446bool LLParser::ParseNamedGlobal() {
447 assert(Lex.getKind() == lltok::GlobalVar);
448 LocTy NameLoc = Lex.getLoc();
449 std::string Name = Lex.getStrVal();
450 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +0000451
Chris Lattnerdf986172009-01-02 07:01:27 +0000452 bool HasLinkage;
453 unsigned Linkage, Visibility;
454 if (ParseToken(lltok::equal, "expected '=' in global variable") ||
455 ParseOptionalLinkage(Linkage, HasLinkage) ||
456 ParseOptionalVisibility(Visibility))
457 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000458
Chris Lattnerdf986172009-01-02 07:01:27 +0000459 if (HasLinkage || Lex.getKind() != lltok::kw_alias)
460 return ParseGlobal(Name, NameLoc, Linkage, HasLinkage, Visibility);
461 return ParseAlias(Name, NameLoc, Visibility);
462}
463
Devang Patel256be962009-07-20 19:00:08 +0000464// MDString:
465// ::= '!' STRINGCONSTANT
Chris Lattner442ffa12009-12-29 21:53:55 +0000466bool LLParser::ParseMDString(MDString *&Result) {
Devang Patel256be962009-07-20 19:00:08 +0000467 std::string Str;
468 if (ParseStringConstant(Str)) return true;
Chris Lattner442ffa12009-12-29 21:53:55 +0000469 Result = MDString::get(Context, Str);
Devang Patel256be962009-07-20 19:00:08 +0000470 return false;
471}
472
473// MDNode:
474// ::= '!' MDNodeNumber
Chris Lattner4a72efc2009-12-30 04:15:23 +0000475bool LLParser::ParseMDNodeID(MDNode *&Result) {
Devang Patel256be962009-07-20 19:00:08 +0000476 // !{ ..., !42, ... }
477 unsigned MID = 0;
Chris Lattnere80250e2009-12-29 21:43:58 +0000478 if (ParseUInt32(MID)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000479
Devang Patel256be962009-07-20 19:00:08 +0000480 // Check existing MDNode.
Chris Lattner0834e6a2009-12-30 04:51:58 +0000481 if (MID < NumberedMetadata.size() && NumberedMetadata[MID] != 0) {
482 Result = NumberedMetadata[MID];
Devang Patel256be962009-07-20 19:00:08 +0000483 return false;
484 }
485
Chris Lattner42991ee2009-12-29 22:01:50 +0000486 // Create MDNode forward reference.
487
488 // FIXME: This is not unique enough!
Devang Patel256be962009-07-20 19:00:08 +0000489 std::string FwdRefName = "llvm.mdnode.fwdref." + utostr(MID);
Benjamin Kramerc17300f2009-12-29 22:17:06 +0000490 Value *V = MDString::get(Context, FwdRefName);
Chris Lattner42991ee2009-12-29 22:01:50 +0000491 MDNode *FwdNode = MDNode::get(Context, &V, 1);
Devang Patel256be962009-07-20 19:00:08 +0000492 ForwardRefMDNodes[MID] = std::make_pair(FwdNode, Lex.getLoc());
Chris Lattner0834e6a2009-12-30 04:51:58 +0000493
494 if (NumberedMetadata.size() <= MID)
495 NumberedMetadata.resize(MID+1);
496 NumberedMetadata[MID] = FwdNode;
Chris Lattner442ffa12009-12-29 21:53:55 +0000497 Result = FwdNode;
Devang Patel256be962009-07-20 19:00:08 +0000498 return false;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000499}
Devang Patel256be962009-07-20 19:00:08 +0000500
Chris Lattner84d03b12009-12-29 22:35:39 +0000501/// ParseNamedMetadata:
Devang Pateleff2ab62009-07-29 00:34:02 +0000502/// !foo = !{ !1, !2 }
503bool LLParser::ParseNamedMetadata() {
Chris Lattner1d928312009-12-30 05:02:06 +0000504 assert(Lex.getKind() == lltok::MetadataVar);
Devang Pateleff2ab62009-07-29 00:34:02 +0000505 std::string Name = Lex.getStrVal();
Chris Lattner1d928312009-12-30 05:02:06 +0000506 Lex.Lex();
Devang Pateleff2ab62009-07-29 00:34:02 +0000507
Chris Lattner84d03b12009-12-29 22:35:39 +0000508 if (ParseToken(lltok::equal, "expected '=' here") ||
Chris Lattnere434d272009-12-30 04:56:59 +0000509 ParseToken(lltok::exclaim, "Expected '!' here") ||
Chris Lattner84d03b12009-12-29 22:35:39 +0000510 ParseToken(lltok::lbrace, "Expected '{' here"))
Devang Pateleff2ab62009-07-29 00:34:02 +0000511 return true;
512
Devang Patel3e30c2a2010-01-05 20:41:31 +0000513 SmallVector<MDNode *, 8> Elts;
Devang Pateleff2ab62009-07-29 00:34:02 +0000514 do {
Devang Patel69d02e02010-01-05 21:47:32 +0000515 // Null is a special case since it is typeless.
516 if (EatIfPresent(lltok::kw_null)) {
517 Elts.push_back(0);
518 continue;
519 }
520
Chris Lattnere434d272009-12-30 04:56:59 +0000521 if (ParseToken(lltok::exclaim, "Expected '!' here"))
Chris Lattner42991ee2009-12-29 22:01:50 +0000522 return true;
Chris Lattner442ffa12009-12-29 21:53:55 +0000523
Chris Lattner442ffa12009-12-29 21:53:55 +0000524 MDNode *N = 0;
Chris Lattner4a72efc2009-12-30 04:15:23 +0000525 if (ParseMDNodeID(N)) return true;
Devang Pateleff2ab62009-07-29 00:34:02 +0000526 Elts.push_back(N);
527 } while (EatIfPresent(lltok::comma));
528
529 if (ParseToken(lltok::rbrace, "expected end of metadata node"))
530 return true;
531
Owen Anderson1d0be152009-08-13 21:58:54 +0000532 NamedMDNode::Create(Context, Name, Elts.data(), Elts.size(), M);
Devang Pateleff2ab62009-07-29 00:34:02 +0000533 return false;
534}
535
Devang Patel923078c2009-07-01 19:21:12 +0000536/// ParseStandaloneMetadata:
Daniel Dunbara279bc32009-09-20 02:20:51 +0000537/// !42 = !{...}
Devang Patel923078c2009-07-01 19:21:12 +0000538bool LLParser::ParseStandaloneMetadata() {
Chris Lattnere434d272009-12-30 04:56:59 +0000539 assert(Lex.getKind() == lltok::exclaim);
Devang Patel923078c2009-07-01 19:21:12 +0000540 Lex.Lex();
541 unsigned MetadataID = 0;
Devang Patel923078c2009-07-01 19:21:12 +0000542
543 LocTy TyLoc;
Owen Anderson1d0be152009-08-13 21:58:54 +0000544 PATypeHolder Ty(Type::getVoidTy(Context));
Devang Patel104cf9e2009-07-23 01:07:34 +0000545 SmallVector<Value *, 16> Elts;
Chris Lattner3f5132a2009-12-29 22:40:21 +0000546 if (ParseUInt32(MetadataID) ||
547 ParseToken(lltok::equal, "expected '=' here") ||
548 ParseType(Ty, TyLoc) ||
Chris Lattnere434d272009-12-30 04:56:59 +0000549 ParseToken(lltok::exclaim, "Expected '!' here") ||
Chris Lattner3f5132a2009-12-29 22:40:21 +0000550 ParseToken(lltok::lbrace, "Expected '{' here") ||
Victor Hernandezbf170d42010-01-05 22:22:14 +0000551 ParseMDNodeVector(Elts, NULL) ||
Chris Lattner3f5132a2009-12-29 22:40:21 +0000552 ParseToken(lltok::rbrace, "expected end of metadata node"))
Devang Patel104cf9e2009-07-23 01:07:34 +0000553 return true;
554
Owen Anderson647e3012009-07-31 21:35:40 +0000555 MDNode *Init = MDNode::get(Context, Elts.data(), Elts.size());
Chris Lattner0834e6a2009-12-30 04:51:58 +0000556
557 // See if this was forward referenced, if so, handle it.
Chris Lattnere80250e2009-12-29 21:43:58 +0000558 std::map<unsigned, std::pair<TrackingVH<MDNode>, LocTy> >::iterator
Devang Patel1c7eea62009-07-08 19:23:54 +0000559 FI = ForwardRefMDNodes.find(MetadataID);
560 if (FI != ForwardRefMDNodes.end()) {
Chris Lattnere80250e2009-12-29 21:43:58 +0000561 FI->second.first->replaceAllUsesWith(Init);
Devang Patel1c7eea62009-07-08 19:23:54 +0000562 ForwardRefMDNodes.erase(FI);
Chris Lattner0834e6a2009-12-30 04:51:58 +0000563
564 assert(NumberedMetadata[MetadataID] == Init && "Tracking VH didn't work");
565 } else {
566 if (MetadataID >= NumberedMetadata.size())
567 NumberedMetadata.resize(MetadataID+1);
568
569 if (NumberedMetadata[MetadataID] != 0)
570 return TokError("Metadata id is already used");
571 NumberedMetadata[MetadataID] = Init;
Devang Patel1c7eea62009-07-08 19:23:54 +0000572 }
573
Devang Patel923078c2009-07-01 19:21:12 +0000574 return false;
575}
576
Chris Lattnerdf986172009-01-02 07:01:27 +0000577/// ParseAlias:
578/// ::= GlobalVar '=' OptionalVisibility 'alias' OptionalLinkage Aliasee
579/// Aliasee
Chris Lattner040f7582009-04-25 21:26:00 +0000580/// ::= TypeAndValue
581/// ::= 'bitcast' '(' TypeAndValue 'to' Type ')'
Dan Gohmandd8004d2009-07-27 21:53:46 +0000582/// ::= 'getelementptr' 'inbounds'? '(' ... ')'
Chris Lattnerdf986172009-01-02 07:01:27 +0000583///
584/// Everything through visibility has already been parsed.
585///
586bool LLParser::ParseAlias(const std::string &Name, LocTy NameLoc,
587 unsigned Visibility) {
588 assert(Lex.getKind() == lltok::kw_alias);
589 Lex.Lex();
590 unsigned Linkage;
591 LocTy LinkageLoc = Lex.getLoc();
592 if (ParseOptionalLinkage(Linkage))
593 return true;
594
595 if (Linkage != GlobalValue::ExternalLinkage &&
Duncan Sands667d4b82009-03-07 15:45:40 +0000596 Linkage != GlobalValue::WeakAnyLinkage &&
597 Linkage != GlobalValue::WeakODRLinkage &&
Rafael Espindolabb46f522009-01-15 20:18:42 +0000598 Linkage != GlobalValue::InternalLinkage &&
Bill Wendling3d10a5a2009-07-20 01:03:30 +0000599 Linkage != GlobalValue::PrivateLinkage &&
600 Linkage != GlobalValue::LinkerPrivateLinkage)
Chris Lattnerdf986172009-01-02 07:01:27 +0000601 return Error(LinkageLoc, "invalid linkage type for alias");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000602
Chris Lattnerdf986172009-01-02 07:01:27 +0000603 Constant *Aliasee;
604 LocTy AliaseeLoc = Lex.getLoc();
Chris Lattner040f7582009-04-25 21:26:00 +0000605 if (Lex.getKind() != lltok::kw_bitcast &&
606 Lex.getKind() != lltok::kw_getelementptr) {
Chris Lattnerdf986172009-01-02 07:01:27 +0000607 if (ParseGlobalTypeAndValue(Aliasee)) return true;
608 } else {
609 // The bitcast dest type is not present, it is implied by the dest type.
610 ValID ID;
611 if (ParseValID(ID)) return true;
612 if (ID.Kind != ValID::t_Constant)
613 return Error(AliaseeLoc, "invalid aliasee");
614 Aliasee = ID.ConstantVal;
615 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000616
Chris Lattnerdf986172009-01-02 07:01:27 +0000617 if (!isa<PointerType>(Aliasee->getType()))
618 return Error(AliaseeLoc, "alias must have pointer type");
619
620 // Okay, create the alias but do not insert it into the module yet.
621 GlobalAlias* GA = new GlobalAlias(Aliasee->getType(),
622 (GlobalValue::LinkageTypes)Linkage, Name,
623 Aliasee);
624 GA->setVisibility((GlobalValue::VisibilityTypes)Visibility);
Daniel Dunbara279bc32009-09-20 02:20:51 +0000625
Chris Lattnerdf986172009-01-02 07:01:27 +0000626 // See if this value already exists in the symbol table. If so, it is either
627 // a redefinition or a definition of a forward reference.
Chris Lattner1d871c52009-10-25 23:22:50 +0000628 if (GlobalValue *Val = M->getNamedValue(Name)) {
Chris Lattnerdf986172009-01-02 07:01:27 +0000629 // See if this was a redefinition. If so, there is no entry in
630 // ForwardRefVals.
631 std::map<std::string, std::pair<GlobalValue*, LocTy> >::iterator
632 I = ForwardRefVals.find(Name);
633 if (I == ForwardRefVals.end())
634 return Error(NameLoc, "redefinition of global named '@" + Name + "'");
635
636 // Otherwise, this was a definition of forward ref. Verify that types
637 // agree.
638 if (Val->getType() != GA->getType())
639 return Error(NameLoc,
640 "forward reference and definition of alias have different types");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000641
Chris Lattnerdf986172009-01-02 07:01:27 +0000642 // If they agree, just RAUW the old value with the alias and remove the
643 // forward ref info.
644 Val->replaceAllUsesWith(GA);
645 Val->eraseFromParent();
646 ForwardRefVals.erase(I);
647 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000648
Chris Lattnerdf986172009-01-02 07:01:27 +0000649 // Insert into the module, we know its name won't collide now.
650 M->getAliasList().push_back(GA);
651 assert(GA->getNameStr() == Name && "Should not be a name conflict!");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000652
Chris Lattnerdf986172009-01-02 07:01:27 +0000653 return false;
654}
655
656/// ParseGlobal
657/// ::= GlobalVar '=' OptionalLinkage OptionalVisibility OptionalThreadLocal
658/// OptionalAddrSpace GlobalType Type Const
659/// ::= OptionalLinkage OptionalVisibility OptionalThreadLocal
660/// OptionalAddrSpace GlobalType Type Const
661///
662/// Everything through visibility has been parsed already.
663///
664bool LLParser::ParseGlobal(const std::string &Name, LocTy NameLoc,
665 unsigned Linkage, bool HasLinkage,
666 unsigned Visibility) {
667 unsigned AddrSpace;
668 bool ThreadLocal, IsConstant;
669 LocTy TyLoc;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000670
Owen Anderson1d0be152009-08-13 21:58:54 +0000671 PATypeHolder Ty(Type::getVoidTy(Context));
Chris Lattnerdf986172009-01-02 07:01:27 +0000672 if (ParseOptionalToken(lltok::kw_thread_local, ThreadLocal) ||
673 ParseOptionalAddrSpace(AddrSpace) ||
674 ParseGlobalType(IsConstant) ||
675 ParseType(Ty, TyLoc))
676 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000677
Chris Lattnerdf986172009-01-02 07:01:27 +0000678 // If the linkage is specified and is external, then no initializer is
679 // present.
680 Constant *Init = 0;
681 if (!HasLinkage || (Linkage != GlobalValue::DLLImportLinkage &&
Duncan Sands5f4ee1f2009-03-11 08:08:06 +0000682 Linkage != GlobalValue::ExternalWeakLinkage &&
Chris Lattnerdf986172009-01-02 07:01:27 +0000683 Linkage != GlobalValue::ExternalLinkage)) {
684 if (ParseGlobalValue(Ty, Init))
685 return true;
686 }
687
Chris Lattnercf0fe8d2009-10-05 05:54:46 +0000688 if (isa<FunctionType>(Ty) || Ty->isLabelTy())
Chris Lattner4a2f1122009-02-08 20:00:15 +0000689 return Error(TyLoc, "invalid type for global variable");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000690
Chris Lattnerdf986172009-01-02 07:01:27 +0000691 GlobalVariable *GV = 0;
692
693 // See if the global was forward referenced, if so, use the global.
Chris Lattner91dad872009-02-02 07:24:28 +0000694 if (!Name.empty()) {
Chris Lattner1d871c52009-10-25 23:22:50 +0000695 if (GlobalValue *GVal = M->getNamedValue(Name)) {
696 if (!ForwardRefVals.erase(Name) || !isa<GlobalValue>(GVal))
697 return Error(NameLoc, "redefinition of global '@" + Name + "'");
698 GV = cast<GlobalVariable>(GVal);
699 }
Chris Lattnerdf986172009-01-02 07:01:27 +0000700 } else {
701 std::map<unsigned, std::pair<GlobalValue*, LocTy> >::iterator
702 I = ForwardRefValIDs.find(NumberedVals.size());
703 if (I != ForwardRefValIDs.end()) {
704 GV = cast<GlobalVariable>(I->second.first);
705 ForwardRefValIDs.erase(I);
706 }
707 }
708
709 if (GV == 0) {
Daniel Dunbara279bc32009-09-20 02:20:51 +0000710 GV = new GlobalVariable(*M, Ty, false, GlobalValue::ExternalLinkage, 0,
Owen Andersone9b11b42009-07-08 19:03:57 +0000711 Name, 0, false, AddrSpace);
Chris Lattnerdf986172009-01-02 07:01:27 +0000712 } else {
713 if (GV->getType()->getElementType() != Ty)
714 return Error(TyLoc,
715 "forward reference and definition of global have different types");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000716
Chris Lattnerdf986172009-01-02 07:01:27 +0000717 // Move the forward-reference to the correct spot in the module.
718 M->getGlobalList().splice(M->global_end(), M->getGlobalList(), GV);
719 }
720
721 if (Name.empty())
722 NumberedVals.push_back(GV);
Daniel Dunbara279bc32009-09-20 02:20:51 +0000723
Chris Lattnerdf986172009-01-02 07:01:27 +0000724 // Set the parsed properties on the global.
725 if (Init)
726 GV->setInitializer(Init);
727 GV->setConstant(IsConstant);
728 GV->setLinkage((GlobalValue::LinkageTypes)Linkage);
729 GV->setVisibility((GlobalValue::VisibilityTypes)Visibility);
730 GV->setThreadLocal(ThreadLocal);
Daniel Dunbara279bc32009-09-20 02:20:51 +0000731
Chris Lattnerdf986172009-01-02 07:01:27 +0000732 // Parse attributes on the global.
733 while (Lex.getKind() == lltok::comma) {
734 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +0000735
Chris Lattnerdf986172009-01-02 07:01:27 +0000736 if (Lex.getKind() == lltok::kw_section) {
737 Lex.Lex();
738 GV->setSection(Lex.getStrVal());
739 if (ParseToken(lltok::StringConstant, "expected global section string"))
740 return true;
741 } else if (Lex.getKind() == lltok::kw_align) {
742 unsigned Alignment;
743 if (ParseOptionalAlignment(Alignment)) return true;
744 GV->setAlignment(Alignment);
745 } else {
746 TokError("unknown global variable property!");
747 }
748 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000749
Chris Lattnerdf986172009-01-02 07:01:27 +0000750 return false;
751}
752
753
754//===----------------------------------------------------------------------===//
755// GlobalValue Reference/Resolution Routines.
756//===----------------------------------------------------------------------===//
757
758/// GetGlobalVal - Get a value with the specified name or ID, creating a
759/// forward reference record if needed. This can return null if the value
760/// exists but does not have the right type.
761GlobalValue *LLParser::GetGlobalVal(const std::string &Name, const Type *Ty,
762 LocTy Loc) {
763 const PointerType *PTy = dyn_cast<PointerType>(Ty);
764 if (PTy == 0) {
765 Error(Loc, "global variable reference must have pointer type");
766 return 0;
767 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000768
Chris Lattnerdf986172009-01-02 07:01:27 +0000769 // Look this name up in the normal function symbol table.
770 GlobalValue *Val =
771 cast_or_null<GlobalValue>(M->getValueSymbolTable().lookup(Name));
Daniel Dunbara279bc32009-09-20 02:20:51 +0000772
Chris Lattnerdf986172009-01-02 07:01:27 +0000773 // If this is a forward reference for the value, see if we already created a
774 // forward ref record.
775 if (Val == 0) {
776 std::map<std::string, std::pair<GlobalValue*, LocTy> >::iterator
777 I = ForwardRefVals.find(Name);
778 if (I != ForwardRefVals.end())
779 Val = I->second.first;
780 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000781
Chris Lattnerdf986172009-01-02 07:01:27 +0000782 // If we have the value in the symbol table or fwd-ref table, return it.
783 if (Val) {
784 if (Val->getType() == Ty) return Val;
785 Error(Loc, "'@" + Name + "' defined with type '" +
786 Val->getType()->getDescription() + "'");
787 return 0;
788 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000789
Chris Lattnerdf986172009-01-02 07:01:27 +0000790 // Otherwise, create a new forward reference for this value and remember it.
791 GlobalValue *FwdVal;
Chris Lattner1e407c32009-01-08 19:05:36 +0000792 if (const FunctionType *FT = dyn_cast<FunctionType>(PTy->getElementType())) {
793 // Function types can return opaque but functions can't.
794 if (isa<OpaqueType>(FT->getReturnType())) {
795 Error(Loc, "function may not return opaque type");
796 return 0;
797 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000798
Duncan Sands5f4ee1f2009-03-11 08:08:06 +0000799 FwdVal = Function::Create(FT, GlobalValue::ExternalWeakLinkage, Name, M);
Chris Lattner1e407c32009-01-08 19:05:36 +0000800 } else {
Owen Andersone9b11b42009-07-08 19:03:57 +0000801 FwdVal = new GlobalVariable(*M, PTy->getElementType(), false,
802 GlobalValue::ExternalWeakLinkage, 0, Name);
Chris Lattner1e407c32009-01-08 19:05:36 +0000803 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000804
Chris Lattnerdf986172009-01-02 07:01:27 +0000805 ForwardRefVals[Name] = std::make_pair(FwdVal, Loc);
806 return FwdVal;
807}
808
809GlobalValue *LLParser::GetGlobalVal(unsigned ID, const Type *Ty, LocTy Loc) {
810 const PointerType *PTy = dyn_cast<PointerType>(Ty);
811 if (PTy == 0) {
812 Error(Loc, "global variable reference must have pointer type");
813 return 0;
814 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000815
Chris Lattnerdf986172009-01-02 07:01:27 +0000816 GlobalValue *Val = ID < NumberedVals.size() ? NumberedVals[ID] : 0;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000817
Chris Lattnerdf986172009-01-02 07:01:27 +0000818 // If this is a forward reference for the value, see if we already created a
819 // forward ref record.
820 if (Val == 0) {
821 std::map<unsigned, std::pair<GlobalValue*, LocTy> >::iterator
822 I = ForwardRefValIDs.find(ID);
823 if (I != ForwardRefValIDs.end())
824 Val = I->second.first;
825 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000826
Chris Lattnerdf986172009-01-02 07:01:27 +0000827 // If we have the value in the symbol table or fwd-ref table, return it.
828 if (Val) {
829 if (Val->getType() == Ty) return Val;
830 Error(Loc, "'@" + utostr(ID) + "' defined with type '" +
831 Val->getType()->getDescription() + "'");
832 return 0;
833 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000834
Chris Lattnerdf986172009-01-02 07:01:27 +0000835 // Otherwise, create a new forward reference for this value and remember it.
836 GlobalValue *FwdVal;
Chris Lattner830703b2009-01-05 18:27:50 +0000837 if (const FunctionType *FT = dyn_cast<FunctionType>(PTy->getElementType())) {
838 // Function types can return opaque but functions can't.
839 if (isa<OpaqueType>(FT->getReturnType())) {
Chris Lattner0d8484f2009-01-05 18:56:52 +0000840 Error(Loc, "function may not return opaque type");
Chris Lattner830703b2009-01-05 18:27:50 +0000841 return 0;
842 }
Duncan Sands5f4ee1f2009-03-11 08:08:06 +0000843 FwdVal = Function::Create(FT, GlobalValue::ExternalWeakLinkage, "", M);
Chris Lattner830703b2009-01-05 18:27:50 +0000844 } else {
Owen Andersone9b11b42009-07-08 19:03:57 +0000845 FwdVal = new GlobalVariable(*M, PTy->getElementType(), false,
846 GlobalValue::ExternalWeakLinkage, 0, "");
Chris Lattner830703b2009-01-05 18:27:50 +0000847 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000848
Chris Lattnerdf986172009-01-02 07:01:27 +0000849 ForwardRefValIDs[ID] = std::make_pair(FwdVal, Loc);
850 return FwdVal;
851}
852
853
854//===----------------------------------------------------------------------===//
855// Helper Routines.
856//===----------------------------------------------------------------------===//
857
858/// ParseToken - If the current token has the specified kind, eat it and return
859/// success. Otherwise, emit the specified error and return failure.
860bool LLParser::ParseToken(lltok::Kind T, const char *ErrMsg) {
861 if (Lex.getKind() != T)
862 return TokError(ErrMsg);
863 Lex.Lex();
864 return false;
865}
866
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000867/// ParseStringConstant
868/// ::= StringConstant
869bool LLParser::ParseStringConstant(std::string &Result) {
870 if (Lex.getKind() != lltok::StringConstant)
871 return TokError("expected string constant");
872 Result = Lex.getStrVal();
873 Lex.Lex();
874 return false;
875}
876
877/// ParseUInt32
878/// ::= uint32
879bool LLParser::ParseUInt32(unsigned &Val) {
Chris Lattnerdf986172009-01-02 07:01:27 +0000880 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned())
881 return TokError("expected integer");
882 uint64_t Val64 = Lex.getAPSIntVal().getLimitedValue(0xFFFFFFFFULL+1);
883 if (Val64 != unsigned(Val64))
884 return TokError("expected 32-bit integer (too large)");
885 Val = Val64;
886 Lex.Lex();
887 return false;
888}
889
890
891/// ParseOptionalAddrSpace
892/// := /*empty*/
893/// := 'addrspace' '(' uint32 ')'
894bool LLParser::ParseOptionalAddrSpace(unsigned &AddrSpace) {
895 AddrSpace = 0;
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000896 if (!EatIfPresent(lltok::kw_addrspace))
Chris Lattnerdf986172009-01-02 07:01:27 +0000897 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +0000898 return ParseToken(lltok::lparen, "expected '(' in address space") ||
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000899 ParseUInt32(AddrSpace) ||
Chris Lattnerdf986172009-01-02 07:01:27 +0000900 ParseToken(lltok::rparen, "expected ')' in address space");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000901}
Chris Lattnerdf986172009-01-02 07:01:27 +0000902
903/// ParseOptionalAttrs - Parse a potentially empty attribute list. AttrKind
904/// indicates what kind of attribute list this is: 0: function arg, 1: result,
905/// 2: function attr.
Chris Lattnerad9ad7c2009-03-25 06:36:36 +0000906/// 3: function arg after value: FIXME: REMOVE IN LLVM 3.0
Chris Lattnerdf986172009-01-02 07:01:27 +0000907bool LLParser::ParseOptionalAttrs(unsigned &Attrs, unsigned AttrKind) {
908 Attrs = Attribute::None;
909 LocTy AttrLoc = Lex.getLoc();
Daniel Dunbara279bc32009-09-20 02:20:51 +0000910
Chris Lattnerdf986172009-01-02 07:01:27 +0000911 while (1) {
912 switch (Lex.getKind()) {
913 case lltok::kw_sext:
914 case lltok::kw_zext:
Chris Lattnerad9ad7c2009-03-25 06:36:36 +0000915 // Treat these as signext/zeroext if they occur in the argument list after
916 // the value, as in "call i8 @foo(i8 10 sext)". If they occur before the
917 // value, as in "call i8 @foo(i8 sext (" then it is part of a constant
918 // expr.
Chris Lattnerdf986172009-01-02 07:01:27 +0000919 // FIXME: REMOVE THIS IN LLVM 3.0
Chris Lattnerad9ad7c2009-03-25 06:36:36 +0000920 if (AttrKind == 3) {
Chris Lattnerdf986172009-01-02 07:01:27 +0000921 if (Lex.getKind() == lltok::kw_sext)
922 Attrs |= Attribute::SExt;
923 else
924 Attrs |= Attribute::ZExt;
925 break;
926 }
927 // FALL THROUGH.
928 default: // End of attributes.
929 if (AttrKind != 2 && (Attrs & Attribute::FunctionOnly))
930 return Error(AttrLoc, "invalid use of function-only attribute");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000931
Chris Lattnerad9ad7c2009-03-25 06:36:36 +0000932 if (AttrKind != 0 && AttrKind != 3 && (Attrs & Attribute::ParameterOnly))
Chris Lattnerdf986172009-01-02 07:01:27 +0000933 return Error(AttrLoc, "invalid use of parameter-only attribute");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000934
Chris Lattnerdf986172009-01-02 07:01:27 +0000935 return false;
Devang Patel578efa92009-06-05 21:57:13 +0000936 case lltok::kw_zeroext: Attrs |= Attribute::ZExt; break;
937 case lltok::kw_signext: Attrs |= Attribute::SExt; break;
938 case lltok::kw_inreg: Attrs |= Attribute::InReg; break;
939 case lltok::kw_sret: Attrs |= Attribute::StructRet; break;
940 case lltok::kw_noalias: Attrs |= Attribute::NoAlias; break;
941 case lltok::kw_nocapture: Attrs |= Attribute::NoCapture; break;
942 case lltok::kw_byval: Attrs |= Attribute::ByVal; break;
943 case lltok::kw_nest: Attrs |= Attribute::Nest; break;
Chris Lattnerdf986172009-01-02 07:01:27 +0000944
Devang Patel578efa92009-06-05 21:57:13 +0000945 case lltok::kw_noreturn: Attrs |= Attribute::NoReturn; break;
946 case lltok::kw_nounwind: Attrs |= Attribute::NoUnwind; break;
947 case lltok::kw_noinline: Attrs |= Attribute::NoInline; break;
948 case lltok::kw_readnone: Attrs |= Attribute::ReadNone; break;
949 case lltok::kw_readonly: Attrs |= Attribute::ReadOnly; break;
Dale Johannesende86d472009-08-26 01:08:21 +0000950 case lltok::kw_inlinehint: Attrs |= Attribute::InlineHint; break;
Devang Patel578efa92009-06-05 21:57:13 +0000951 case lltok::kw_alwaysinline: Attrs |= Attribute::AlwaysInline; break;
952 case lltok::kw_optsize: Attrs |= Attribute::OptimizeForSize; break;
953 case lltok::kw_ssp: Attrs |= Attribute::StackProtect; break;
954 case lltok::kw_sspreq: Attrs |= Attribute::StackProtectReq; break;
955 case lltok::kw_noredzone: Attrs |= Attribute::NoRedZone; break;
956 case lltok::kw_noimplicitfloat: Attrs |= Attribute::NoImplicitFloat; break;
Anton Korobeynikovc5ec8a72009-07-17 18:07:26 +0000957 case lltok::kw_naked: Attrs |= Attribute::Naked; break;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000958
Chris Lattnerdf986172009-01-02 07:01:27 +0000959 case lltok::kw_align: {
960 unsigned Alignment;
961 if (ParseOptionalAlignment(Alignment))
962 return true;
963 Attrs |= Attribute::constructAlignmentFromInt(Alignment);
964 continue;
965 }
966 }
967 Lex.Lex();
968 }
969}
970
971/// ParseOptionalLinkage
972/// ::= /*empty*/
Rafael Espindolabb46f522009-01-15 20:18:42 +0000973/// ::= 'private'
Bill Wendling3d10a5a2009-07-20 01:03:30 +0000974/// ::= 'linker_private'
Chris Lattnerdf986172009-01-02 07:01:27 +0000975/// ::= 'internal'
976/// ::= 'weak'
Duncan Sands667d4b82009-03-07 15:45:40 +0000977/// ::= 'weak_odr'
Chris Lattnerdf986172009-01-02 07:01:27 +0000978/// ::= 'linkonce'
Duncan Sands667d4b82009-03-07 15:45:40 +0000979/// ::= 'linkonce_odr'
Chris Lattnerdf986172009-01-02 07:01:27 +0000980/// ::= 'appending'
981/// ::= 'dllexport'
982/// ::= 'common'
983/// ::= 'dllimport'
984/// ::= 'extern_weak'
985/// ::= 'external'
986bool LLParser::ParseOptionalLinkage(unsigned &Res, bool &HasLinkage) {
987 HasLinkage = false;
988 switch (Lex.getKind()) {
Bill Wendling3d10a5a2009-07-20 01:03:30 +0000989 default: Res=GlobalValue::ExternalLinkage; return false;
990 case lltok::kw_private: Res = GlobalValue::PrivateLinkage; break;
991 case lltok::kw_linker_private: Res = GlobalValue::LinkerPrivateLinkage; break;
992 case lltok::kw_internal: Res = GlobalValue::InternalLinkage; break;
993 case lltok::kw_weak: Res = GlobalValue::WeakAnyLinkage; break;
994 case lltok::kw_weak_odr: Res = GlobalValue::WeakODRLinkage; break;
995 case lltok::kw_linkonce: Res = GlobalValue::LinkOnceAnyLinkage; break;
996 case lltok::kw_linkonce_odr: Res = GlobalValue::LinkOnceODRLinkage; break;
Chris Lattner266c7bb2009-04-13 05:44:34 +0000997 case lltok::kw_available_externally:
998 Res = GlobalValue::AvailableExternallyLinkage;
999 break;
Bill Wendling3d10a5a2009-07-20 01:03:30 +00001000 case lltok::kw_appending: Res = GlobalValue::AppendingLinkage; break;
1001 case lltok::kw_dllexport: Res = GlobalValue::DLLExportLinkage; break;
1002 case lltok::kw_common: Res = GlobalValue::CommonLinkage; break;
1003 case lltok::kw_dllimport: Res = GlobalValue::DLLImportLinkage; break;
1004 case lltok::kw_extern_weak: Res = GlobalValue::ExternalWeakLinkage; break;
1005 case lltok::kw_external: Res = GlobalValue::ExternalLinkage; break;
Chris Lattnerdf986172009-01-02 07:01:27 +00001006 }
1007 Lex.Lex();
1008 HasLinkage = true;
1009 return false;
1010}
1011
1012/// ParseOptionalVisibility
1013/// ::= /*empty*/
1014/// ::= 'default'
1015/// ::= 'hidden'
1016/// ::= 'protected'
Daniel Dunbara279bc32009-09-20 02:20:51 +00001017///
Chris Lattnerdf986172009-01-02 07:01:27 +00001018bool LLParser::ParseOptionalVisibility(unsigned &Res) {
1019 switch (Lex.getKind()) {
1020 default: Res = GlobalValue::DefaultVisibility; return false;
1021 case lltok::kw_default: Res = GlobalValue::DefaultVisibility; break;
1022 case lltok::kw_hidden: Res = GlobalValue::HiddenVisibility; break;
1023 case lltok::kw_protected: Res = GlobalValue::ProtectedVisibility; break;
1024 }
1025 Lex.Lex();
1026 return false;
1027}
1028
1029/// ParseOptionalCallingConv
1030/// ::= /*empty*/
1031/// ::= 'ccc'
1032/// ::= 'fastcc'
1033/// ::= 'coldcc'
1034/// ::= 'x86_stdcallcc'
1035/// ::= 'x86_fastcallcc'
Anton Korobeynikov385f5a92009-06-16 18:50:49 +00001036/// ::= 'arm_apcscc'
1037/// ::= 'arm_aapcscc'
1038/// ::= 'arm_aapcs_vfpcc'
Anton Korobeynikov211a14e2009-12-07 02:27:35 +00001039/// ::= 'msp430_intrcc'
Chris Lattnerdf986172009-01-02 07:01:27 +00001040/// ::= 'cc' UINT
Anton Korobeynikov385f5a92009-06-16 18:50:49 +00001041///
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001042bool LLParser::ParseOptionalCallingConv(CallingConv::ID &CC) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001043 switch (Lex.getKind()) {
1044 default: CC = CallingConv::C; return false;
1045 case lltok::kw_ccc: CC = CallingConv::C; break;
1046 case lltok::kw_fastcc: CC = CallingConv::Fast; break;
1047 case lltok::kw_coldcc: CC = CallingConv::Cold; break;
1048 case lltok::kw_x86_stdcallcc: CC = CallingConv::X86_StdCall; break;
1049 case lltok::kw_x86_fastcallcc: CC = CallingConv::X86_FastCall; break;
Anton Korobeynikov385f5a92009-06-16 18:50:49 +00001050 case lltok::kw_arm_apcscc: CC = CallingConv::ARM_APCS; break;
1051 case lltok::kw_arm_aapcscc: CC = CallingConv::ARM_AAPCS; break;
1052 case lltok::kw_arm_aapcs_vfpcc:CC = CallingConv::ARM_AAPCS_VFP; break;
Anton Korobeynikov211a14e2009-12-07 02:27:35 +00001053 case lltok::kw_msp430_intrcc: CC = CallingConv::MSP430_INTR; break;
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001054 case lltok::kw_cc: {
1055 unsigned ArbitraryCC;
1056 Lex.Lex();
1057 if (ParseUInt32(ArbitraryCC)) {
1058 return true;
1059 } else
1060 CC = static_cast<CallingConv::ID>(ArbitraryCC);
1061 return false;
1062 }
1063 break;
Chris Lattnerdf986172009-01-02 07:01:27 +00001064 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001065
Chris Lattnerdf986172009-01-02 07:01:27 +00001066 Lex.Lex();
1067 return false;
1068}
1069
Chris Lattnerb8c46862009-12-30 05:31:19 +00001070/// ParseInstructionMetadata
Chris Lattner3f3a0f62009-12-29 21:25:40 +00001071/// ::= !dbg !42 (',' !dbg !57)*
Chris Lattner1340dd32009-12-30 05:48:36 +00001072bool LLParser::
1073ParseInstructionMetadata(SmallVectorImpl<std::pair<unsigned,
1074 MDNode *> > &Result){
Chris Lattnerb8c46862009-12-30 05:31:19 +00001075 do {
1076 if (Lex.getKind() != lltok::MetadataVar)
1077 return TokError("expected metadata after comma");
Devang Patel0475c912009-09-29 00:01:14 +00001078
Chris Lattner3f3a0f62009-12-29 21:25:40 +00001079 std::string Name = Lex.getStrVal();
1080 Lex.Lex();
Chris Lattner52e20312009-10-19 05:31:10 +00001081
Chris Lattner442ffa12009-12-29 21:53:55 +00001082 MDNode *Node;
Chris Lattnere434d272009-12-30 04:56:59 +00001083 if (ParseToken(lltok::exclaim, "expected '!' here") ||
1084 ParseMDNodeID(Node))
1085 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001086
Chris Lattner3f3a0f62009-12-29 21:25:40 +00001087 unsigned MDK = M->getMDKindID(Name.c_str());
Chris Lattner1340dd32009-12-30 05:48:36 +00001088 Result.push_back(std::make_pair(MDK, Node));
Chris Lattner3f3a0f62009-12-29 21:25:40 +00001089
1090 // If this is the end of the list, we're done.
Chris Lattnerb8c46862009-12-30 05:31:19 +00001091 } while (EatIfPresent(lltok::comma));
1092 return false;
Devang Patelf633a062009-09-17 23:04:48 +00001093}
1094
Chris Lattnerdf986172009-01-02 07:01:27 +00001095/// ParseOptionalAlignment
1096/// ::= /* empty */
1097/// ::= 'align' 4
1098bool LLParser::ParseOptionalAlignment(unsigned &Alignment) {
1099 Alignment = 0;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001100 if (!EatIfPresent(lltok::kw_align))
1101 return false;
Chris Lattner3fbb3ab2009-01-05 07:46:05 +00001102 LocTy AlignLoc = Lex.getLoc();
1103 if (ParseUInt32(Alignment)) return true;
1104 if (!isPowerOf2_32(Alignment))
1105 return Error(AlignLoc, "alignment is not a power of two");
1106 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00001107}
1108
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00001109/// ParseOptionalCommaAlign
1110/// ::=
1111/// ::= ',' align 4
1112///
1113/// This returns with AteExtraComma set to true if it ate an excess comma at the
1114/// end.
1115bool LLParser::ParseOptionalCommaAlign(unsigned &Alignment,
1116 bool &AteExtraComma) {
1117 AteExtraComma = false;
1118 while (EatIfPresent(lltok::comma)) {
1119 // Metadata at the end is an early exit.
Chris Lattner1d928312009-12-30 05:02:06 +00001120 if (Lex.getKind() == lltok::MetadataVar) {
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00001121 AteExtraComma = true;
1122 return false;
1123 }
1124
1125 if (Lex.getKind() == lltok::kw_align) {
Devang Patelf633a062009-09-17 23:04:48 +00001126 if (ParseOptionalAlignment(Alignment)) return true;
1127 } else
1128 return true;
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00001129 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001130
Devang Patelf633a062009-09-17 23:04:48 +00001131 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00001132}
1133
Devang Patelf633a062009-09-17 23:04:48 +00001134
Chris Lattner628c13a2009-12-30 05:14:00 +00001135/// ParseIndexList - This parses the index list for an insert/extractvalue
1136/// instruction. This sets AteExtraComma in the case where we eat an extra
1137/// comma at the end of the line and find that it is followed by metadata.
1138/// Clients that don't allow metadata can call the version of this function that
1139/// only takes one argument.
1140///
Chris Lattnerdf986172009-01-02 07:01:27 +00001141/// ParseIndexList
1142/// ::= (',' uint32)+
Chris Lattner628c13a2009-12-30 05:14:00 +00001143///
1144bool LLParser::ParseIndexList(SmallVectorImpl<unsigned> &Indices,
1145 bool &AteExtraComma) {
1146 AteExtraComma = false;
1147
Chris Lattnerdf986172009-01-02 07:01:27 +00001148 if (Lex.getKind() != lltok::comma)
1149 return TokError("expected ',' as start of index list");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001150
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001151 while (EatIfPresent(lltok::comma)) {
Chris Lattner628c13a2009-12-30 05:14:00 +00001152 if (Lex.getKind() == lltok::MetadataVar) {
1153 AteExtraComma = true;
1154 return false;
1155 }
Chris Lattnerdf986172009-01-02 07:01:27 +00001156 unsigned Idx;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001157 if (ParseUInt32(Idx)) return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00001158 Indices.push_back(Idx);
1159 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001160
Chris Lattnerdf986172009-01-02 07:01:27 +00001161 return false;
1162}
1163
1164//===----------------------------------------------------------------------===//
1165// Type Parsing.
1166//===----------------------------------------------------------------------===//
1167
1168/// ParseType - Parse and resolve a full type.
Chris Lattnera9a9e072009-03-09 04:49:14 +00001169bool LLParser::ParseType(PATypeHolder &Result, bool AllowVoid) {
1170 LocTy TypeLoc = Lex.getLoc();
Chris Lattnerdf986172009-01-02 07:01:27 +00001171 if (ParseTypeRec(Result)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001172
Chris Lattnerdf986172009-01-02 07:01:27 +00001173 // Verify no unresolved uprefs.
1174 if (!UpRefs.empty())
1175 return Error(UpRefs.back().Loc, "invalid unresolved type up reference");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001176
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001177 if (!AllowVoid && Result.get()->isVoidTy())
Chris Lattnera9a9e072009-03-09 04:49:14 +00001178 return Error(TypeLoc, "void type only allowed for function results");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001179
Chris Lattnerdf986172009-01-02 07:01:27 +00001180 return false;
1181}
1182
1183/// HandleUpRefs - Every time we finish a new layer of types, this function is
1184/// called. It loops through the UpRefs vector, which is a list of the
1185/// currently active types. For each type, if the up-reference is contained in
1186/// the newly completed type, we decrement the level count. When the level
1187/// count reaches zero, the up-referenced type is the type that is passed in:
1188/// thus we can complete the cycle.
1189///
1190PATypeHolder LLParser::HandleUpRefs(const Type *ty) {
1191 // If Ty isn't abstract, or if there are no up-references in it, then there is
1192 // nothing to resolve here.
1193 if (!ty->isAbstract() || UpRefs.empty()) return ty;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001194
Chris Lattnerdf986172009-01-02 07:01:27 +00001195 PATypeHolder Ty(ty);
1196#if 0
David Greene0e28d762009-12-23 23:38:28 +00001197 dbgs() << "Type '" << Ty->getDescription()
Chris Lattnerdf986172009-01-02 07:01:27 +00001198 << "' newly formed. Resolving upreferences.\n"
1199 << UpRefs.size() << " upreferences active!\n";
1200#endif
Daniel Dunbara279bc32009-09-20 02:20:51 +00001201
Chris Lattnerdf986172009-01-02 07:01:27 +00001202 // If we find any resolvable upreferences (i.e., those whose NestingLevel goes
1203 // to zero), we resolve them all together before we resolve them to Ty. At
1204 // the end of the loop, if there is anything to resolve to Ty, it will be in
1205 // this variable.
1206 OpaqueType *TypeToResolve = 0;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001207
Chris Lattnerdf986172009-01-02 07:01:27 +00001208 for (unsigned i = 0; i != UpRefs.size(); ++i) {
1209 // Determine if 'Ty' directly contains this up-references 'LastContainedTy'.
1210 bool ContainsType =
1211 std::find(Ty->subtype_begin(), Ty->subtype_end(),
1212 UpRefs[i].LastContainedTy) != Ty->subtype_end();
Daniel Dunbara279bc32009-09-20 02:20:51 +00001213
Chris Lattnerdf986172009-01-02 07:01:27 +00001214#if 0
David Greene0e28d762009-12-23 23:38:28 +00001215 dbgs() << " UR#" << i << " - TypeContains(" << Ty->getDescription() << ", "
Chris Lattnerdf986172009-01-02 07:01:27 +00001216 << UpRefs[i].LastContainedTy->getDescription() << ") = "
1217 << (ContainsType ? "true" : "false")
1218 << " level=" << UpRefs[i].NestingLevel << "\n";
1219#endif
1220 if (!ContainsType)
1221 continue;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001222
Chris Lattnerdf986172009-01-02 07:01:27 +00001223 // Decrement level of upreference
1224 unsigned Level = --UpRefs[i].NestingLevel;
1225 UpRefs[i].LastContainedTy = Ty;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001226
Chris Lattnerdf986172009-01-02 07:01:27 +00001227 // If the Up-reference has a non-zero level, it shouldn't be resolved yet.
1228 if (Level != 0)
1229 continue;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001230
Chris Lattnerdf986172009-01-02 07:01:27 +00001231#if 0
David Greene0e28d762009-12-23 23:38:28 +00001232 dbgs() << " * Resolving upreference for " << UpRefs[i].UpRefTy << "\n";
Chris Lattnerdf986172009-01-02 07:01:27 +00001233#endif
1234 if (!TypeToResolve)
1235 TypeToResolve = UpRefs[i].UpRefTy;
1236 else
1237 UpRefs[i].UpRefTy->refineAbstractTypeTo(TypeToResolve);
1238 UpRefs.erase(UpRefs.begin()+i); // Remove from upreference list.
1239 --i; // Do not skip the next element.
1240 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001241
Chris Lattnerdf986172009-01-02 07:01:27 +00001242 if (TypeToResolve)
1243 TypeToResolve->refineAbstractTypeTo(Ty);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001244
Chris Lattnerdf986172009-01-02 07:01:27 +00001245 return Ty;
1246}
1247
1248
1249/// ParseTypeRec - The recursive function used to process the internal
1250/// implementation details of types.
1251bool LLParser::ParseTypeRec(PATypeHolder &Result) {
1252 switch (Lex.getKind()) {
1253 default:
1254 return TokError("expected type");
1255 case lltok::Type:
1256 // TypeRec ::= 'float' | 'void' (etc)
1257 Result = Lex.getTyVal();
Daniel Dunbara279bc32009-09-20 02:20:51 +00001258 Lex.Lex();
Chris Lattnerdf986172009-01-02 07:01:27 +00001259 break;
1260 case lltok::kw_opaque:
1261 // TypeRec ::= 'opaque'
Owen Anderson0e275dc2009-08-13 23:27:32 +00001262 Result = OpaqueType::get(Context);
Chris Lattnerdf986172009-01-02 07:01:27 +00001263 Lex.Lex();
1264 break;
1265 case lltok::lbrace:
1266 // TypeRec ::= '{' ... '}'
1267 if (ParseStructType(Result, false))
1268 return true;
1269 break;
1270 case lltok::lsquare:
1271 // TypeRec ::= '[' ... ']'
1272 Lex.Lex(); // eat the lsquare.
1273 if (ParseArrayVectorType(Result, false))
1274 return true;
1275 break;
1276 case lltok::less: // Either vector or packed struct.
1277 // TypeRec ::= '<' ... '>'
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001278 Lex.Lex();
1279 if (Lex.getKind() == lltok::lbrace) {
1280 if (ParseStructType(Result, true) ||
1281 ParseToken(lltok::greater, "expected '>' at end of packed struct"))
Chris Lattnerdf986172009-01-02 07:01:27 +00001282 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00001283 } else if (ParseArrayVectorType(Result, true))
1284 return true;
1285 break;
1286 case lltok::LocalVar:
1287 case lltok::StringConstant: // FIXME: REMOVE IN LLVM 3.0
1288 // TypeRec ::= %foo
1289 if (const Type *T = M->getTypeByName(Lex.getStrVal())) {
1290 Result = T;
1291 } else {
Owen Anderson0e275dc2009-08-13 23:27:32 +00001292 Result = OpaqueType::get(Context);
Chris Lattnerdf986172009-01-02 07:01:27 +00001293 ForwardRefTypes.insert(std::make_pair(Lex.getStrVal(),
1294 std::make_pair(Result,
1295 Lex.getLoc())));
1296 M->addTypeName(Lex.getStrVal(), Result.get());
1297 }
1298 Lex.Lex();
1299 break;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001300
Chris Lattnerdf986172009-01-02 07:01:27 +00001301 case lltok::LocalVarID:
1302 // TypeRec ::= %4
1303 if (Lex.getUIntVal() < NumberedTypes.size())
1304 Result = NumberedTypes[Lex.getUIntVal()];
1305 else {
1306 std::map<unsigned, std::pair<PATypeHolder, LocTy> >::iterator
1307 I = ForwardRefTypeIDs.find(Lex.getUIntVal());
1308 if (I != ForwardRefTypeIDs.end())
1309 Result = I->second.first;
1310 else {
Owen Anderson0e275dc2009-08-13 23:27:32 +00001311 Result = OpaqueType::get(Context);
Chris Lattnerdf986172009-01-02 07:01:27 +00001312 ForwardRefTypeIDs.insert(std::make_pair(Lex.getUIntVal(),
1313 std::make_pair(Result,
1314 Lex.getLoc())));
1315 }
1316 }
1317 Lex.Lex();
1318 break;
1319 case lltok::backslash: {
1320 // TypeRec ::= '\' 4
Chris Lattnerdf986172009-01-02 07:01:27 +00001321 Lex.Lex();
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001322 unsigned Val;
1323 if (ParseUInt32(Val)) return true;
Owen Anderson0e275dc2009-08-13 23:27:32 +00001324 OpaqueType *OT = OpaqueType::get(Context); //Use temporary placeholder.
Chris Lattnerdf986172009-01-02 07:01:27 +00001325 UpRefs.push_back(UpRefRecord(Lex.getLoc(), Val, OT));
1326 Result = OT;
1327 break;
1328 }
1329 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001330
1331 // Parse the type suffixes.
Chris Lattnerdf986172009-01-02 07:01:27 +00001332 while (1) {
1333 switch (Lex.getKind()) {
1334 // End of type.
Daniel Dunbara279bc32009-09-20 02:20:51 +00001335 default: return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00001336
1337 // TypeRec ::= TypeRec '*'
1338 case lltok::star:
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001339 if (Result.get()->isLabelTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00001340 return TokError("basic block pointers are invalid");
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001341 if (Result.get()->isVoidTy())
Dan Gohmanb9070d32009-02-09 17:41:21 +00001342 return TokError("pointers to void are invalid; use i8* instead");
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001343 if (!PointerType::isValidElementType(Result.get()))
1344 return TokError("pointer to this type is invalid");
Owen Andersondebcb012009-07-29 22:17:13 +00001345 Result = HandleUpRefs(PointerType::getUnqual(Result.get()));
Chris Lattnerdf986172009-01-02 07:01:27 +00001346 Lex.Lex();
1347 break;
1348
1349 // TypeRec ::= TypeRec 'addrspace' '(' uint32 ')' '*'
1350 case lltok::kw_addrspace: {
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001351 if (Result.get()->isLabelTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00001352 return TokError("basic block pointers are invalid");
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001353 if (Result.get()->isVoidTy())
Dan Gohmanb9070d32009-02-09 17:41:21 +00001354 return TokError("pointers to void are invalid; use i8* instead");
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001355 if (!PointerType::isValidElementType(Result.get()))
1356 return TokError("pointer to this type is invalid");
Chris Lattnerdf986172009-01-02 07:01:27 +00001357 unsigned AddrSpace;
1358 if (ParseOptionalAddrSpace(AddrSpace) ||
1359 ParseToken(lltok::star, "expected '*' in address space"))
1360 return true;
1361
Owen Andersondebcb012009-07-29 22:17:13 +00001362 Result = HandleUpRefs(PointerType::get(Result.get(), AddrSpace));
Chris Lattnerdf986172009-01-02 07:01:27 +00001363 break;
1364 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001365
Chris Lattnerdf986172009-01-02 07:01:27 +00001366 /// Types '(' ArgTypeListI ')' OptFuncAttrs
1367 case lltok::lparen:
1368 if (ParseFunctionType(Result))
1369 return true;
1370 break;
1371 }
1372 }
1373}
1374
1375/// ParseParameterList
1376/// ::= '(' ')'
1377/// ::= '(' Arg (',' Arg)* ')'
1378/// Arg
1379/// ::= Type OptionalAttributes Value OptionalAttributes
1380bool LLParser::ParseParameterList(SmallVectorImpl<ParamInfo> &ArgList,
1381 PerFunctionState &PFS) {
1382 if (ParseToken(lltok::lparen, "expected '(' in call"))
1383 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001384
Chris Lattnerdf986172009-01-02 07:01:27 +00001385 while (Lex.getKind() != lltok::rparen) {
1386 // If this isn't the first argument, we need a comma.
1387 if (!ArgList.empty() &&
1388 ParseToken(lltok::comma, "expected ',' in argument list"))
1389 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001390
Chris Lattnerdf986172009-01-02 07:01:27 +00001391 // Parse the argument.
1392 LocTy ArgLoc;
Owen Anderson1d0be152009-08-13 21:58:54 +00001393 PATypeHolder ArgTy(Type::getVoidTy(Context));
Victor Hernandez19715562009-12-03 23:40:58 +00001394 unsigned ArgAttrs1 = Attribute::None;
1395 unsigned ArgAttrs2 = Attribute::None;
Chris Lattnerdf986172009-01-02 07:01:27 +00001396 Value *V;
Victor Hernandez19715562009-12-03 23:40:58 +00001397 if (ParseType(ArgTy, ArgLoc))
Chris Lattnerdf986172009-01-02 07:01:27 +00001398 return true;
Victor Hernandez19715562009-12-03 23:40:58 +00001399
Chris Lattner287881d2009-12-30 02:11:14 +00001400 // Otherwise, handle normal operands.
1401 if (ParseOptionalAttrs(ArgAttrs1, 0) ||
1402 ParseValue(ArgTy, V, PFS) ||
1403 // FIXME: Should not allow attributes after the argument, remove this
1404 // in LLVM 3.0.
1405 ParseOptionalAttrs(ArgAttrs2, 3))
1406 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00001407 ArgList.push_back(ParamInfo(ArgLoc, V, ArgAttrs1|ArgAttrs2));
1408 }
1409
1410 Lex.Lex(); // Lex the ')'.
1411 return false;
1412}
1413
1414
1415
Chris Lattnerdfd19dd2009-01-05 18:34:07 +00001416/// ParseArgumentList - Parse the argument list for a function type or function
1417/// prototype. If 'inType' is true then we are parsing a FunctionType.
Chris Lattnerdf986172009-01-02 07:01:27 +00001418/// ::= '(' ArgTypeListI ')'
1419/// ArgTypeListI
1420/// ::= /*empty*/
1421/// ::= '...'
1422/// ::= ArgTypeList ',' '...'
1423/// ::= ArgType (',' ArgType)*
Chris Lattnerdfd19dd2009-01-05 18:34:07 +00001424///
Chris Lattnerdf986172009-01-02 07:01:27 +00001425bool LLParser::ParseArgumentList(std::vector<ArgInfo> &ArgList,
Chris Lattnerdfd19dd2009-01-05 18:34:07 +00001426 bool &isVarArg, bool inType) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001427 isVarArg = false;
1428 assert(Lex.getKind() == lltok::lparen);
1429 Lex.Lex(); // eat the (.
Daniel Dunbara279bc32009-09-20 02:20:51 +00001430
Chris Lattnerdf986172009-01-02 07:01:27 +00001431 if (Lex.getKind() == lltok::rparen) {
1432 // empty
1433 } else if (Lex.getKind() == lltok::dotdotdot) {
1434 isVarArg = true;
1435 Lex.Lex();
1436 } else {
1437 LocTy TypeLoc = Lex.getLoc();
Owen Anderson1d0be152009-08-13 21:58:54 +00001438 PATypeHolder ArgTy(Type::getVoidTy(Context));
Chris Lattnerdf986172009-01-02 07:01:27 +00001439 unsigned Attrs;
Chris Lattnerdf986172009-01-02 07:01:27 +00001440 std::string Name;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001441
Chris Lattnerdfd19dd2009-01-05 18:34:07 +00001442 // If we're parsing a type, use ParseTypeRec, because we allow recursive
1443 // types (such as a function returning a pointer to itself). If parsing a
1444 // function prototype, we require fully resolved types.
1445 if ((inType ? ParseTypeRec(ArgTy) : ParseType(ArgTy)) ||
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001446 ParseOptionalAttrs(Attrs, 0)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001447
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001448 if (ArgTy->isVoidTy())
Chris Lattnera9a9e072009-03-09 04:49:14 +00001449 return Error(TypeLoc, "argument can not have void type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001450
Chris Lattnerdf986172009-01-02 07:01:27 +00001451 if (Lex.getKind() == lltok::LocalVar ||
1452 Lex.getKind() == lltok::StringConstant) { // FIXME: REMOVE IN LLVM 3.0
1453 Name = Lex.getStrVal();
1454 Lex.Lex();
1455 }
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001456
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001457 if (!FunctionType::isValidArgumentType(ArgTy))
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001458 return Error(TypeLoc, "invalid type for function argument");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001459
Chris Lattnerdf986172009-01-02 07:01:27 +00001460 ArgList.push_back(ArgInfo(TypeLoc, ArgTy, Attrs, Name));
Daniel Dunbara279bc32009-09-20 02:20:51 +00001461
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001462 while (EatIfPresent(lltok::comma)) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001463 // Handle ... at end of arg list.
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001464 if (EatIfPresent(lltok::dotdotdot)) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001465 isVarArg = true;
Chris Lattnerdf986172009-01-02 07:01:27 +00001466 break;
1467 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001468
Chris Lattnerdf986172009-01-02 07:01:27 +00001469 // Otherwise must be an argument type.
1470 TypeLoc = Lex.getLoc();
Chris Lattnera9a9e072009-03-09 04:49:14 +00001471 if ((inType ? ParseTypeRec(ArgTy) : ParseType(ArgTy)) ||
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001472 ParseOptionalAttrs(Attrs, 0)) return true;
1473
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001474 if (ArgTy->isVoidTy())
Chris Lattnera9a9e072009-03-09 04:49:14 +00001475 return Error(TypeLoc, "argument can not have void type");
1476
Chris Lattnerdf986172009-01-02 07:01:27 +00001477 if (Lex.getKind() == lltok::LocalVar ||
1478 Lex.getKind() == lltok::StringConstant) { // FIXME: REMOVE IN LLVM 3.0
1479 Name = Lex.getStrVal();
1480 Lex.Lex();
1481 } else {
1482 Name = "";
1483 }
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001484
1485 if (!ArgTy->isFirstClassType() && !isa<OpaqueType>(ArgTy))
1486 return Error(TypeLoc, "invalid type for function argument");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001487
Chris Lattnerdf986172009-01-02 07:01:27 +00001488 ArgList.push_back(ArgInfo(TypeLoc, ArgTy, Attrs, Name));
1489 }
1490 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001491
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001492 return ParseToken(lltok::rparen, "expected ')' at end of argument list");
Chris Lattnerdf986172009-01-02 07:01:27 +00001493}
Daniel Dunbara279bc32009-09-20 02:20:51 +00001494
Chris Lattnerdf986172009-01-02 07:01:27 +00001495/// ParseFunctionType
1496/// ::= Type ArgumentList OptionalAttrs
1497bool LLParser::ParseFunctionType(PATypeHolder &Result) {
1498 assert(Lex.getKind() == lltok::lparen);
1499
Chris Lattnerd77d04c2009-01-05 08:04:33 +00001500 if (!FunctionType::isValidReturnType(Result))
1501 return TokError("invalid function return type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001502
Chris Lattnerdf986172009-01-02 07:01:27 +00001503 std::vector<ArgInfo> ArgList;
1504 bool isVarArg;
1505 unsigned Attrs;
Chris Lattnerdfd19dd2009-01-05 18:34:07 +00001506 if (ParseArgumentList(ArgList, isVarArg, true) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00001507 // FIXME: Allow, but ignore attributes on function types!
1508 // FIXME: Remove in LLVM 3.0
1509 ParseOptionalAttrs(Attrs, 2))
1510 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001511
Chris Lattnerdf986172009-01-02 07:01:27 +00001512 // Reject names on the arguments lists.
1513 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
1514 if (!ArgList[i].Name.empty())
1515 return Error(ArgList[i].Loc, "argument name invalid in function type");
1516 if (!ArgList[i].Attrs != 0) {
1517 // Allow but ignore attributes on function types; this permits
1518 // auto-upgrade.
1519 // FIXME: REJECT ATTRIBUTES ON FUNCTION TYPES in LLVM 3.0
1520 }
1521 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001522
Chris Lattnerdf986172009-01-02 07:01:27 +00001523 std::vector<const Type*> ArgListTy;
1524 for (unsigned i = 0, e = ArgList.size(); i != e; ++i)
1525 ArgListTy.push_back(ArgList[i].Type);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001526
Owen Andersondebcb012009-07-29 22:17:13 +00001527 Result = HandleUpRefs(FunctionType::get(Result.get(),
Owen Andersonfba933c2009-07-01 23:57:11 +00001528 ArgListTy, isVarArg));
Chris Lattnerdf986172009-01-02 07:01:27 +00001529 return false;
1530}
1531
1532/// ParseStructType: Handles packed and unpacked types. </> parsed elsewhere.
1533/// TypeRec
1534/// ::= '{' '}'
1535/// ::= '{' TypeRec (',' TypeRec)* '}'
1536/// ::= '<' '{' '}' '>'
1537/// ::= '<' '{' TypeRec (',' TypeRec)* '}' '>'
1538bool LLParser::ParseStructType(PATypeHolder &Result, bool Packed) {
1539 assert(Lex.getKind() == lltok::lbrace);
1540 Lex.Lex(); // Consume the '{'
Daniel Dunbara279bc32009-09-20 02:20:51 +00001541
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001542 if (EatIfPresent(lltok::rbrace)) {
Owen Andersond7f2a6c2009-08-05 23:16:16 +00001543 Result = StructType::get(Context, Packed);
Chris Lattnerdf986172009-01-02 07:01:27 +00001544 return false;
1545 }
1546
1547 std::vector<PATypeHolder> ParamsList;
Chris Lattnera9a9e072009-03-09 04:49:14 +00001548 LocTy EltTyLoc = Lex.getLoc();
Chris Lattnerdf986172009-01-02 07:01:27 +00001549 if (ParseTypeRec(Result)) return true;
1550 ParamsList.push_back(Result);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001551
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001552 if (Result->isVoidTy())
Chris Lattnera9a9e072009-03-09 04:49:14 +00001553 return Error(EltTyLoc, "struct element can not have void type");
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001554 if (!StructType::isValidElementType(Result))
1555 return Error(EltTyLoc, "invalid element type for struct");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001556
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001557 while (EatIfPresent(lltok::comma)) {
Chris Lattnera9a9e072009-03-09 04:49:14 +00001558 EltTyLoc = Lex.getLoc();
Chris Lattnerdf986172009-01-02 07:01:27 +00001559 if (ParseTypeRec(Result)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001560
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001561 if (Result->isVoidTy())
Chris Lattnera9a9e072009-03-09 04:49:14 +00001562 return Error(EltTyLoc, "struct element can not have void type");
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001563 if (!StructType::isValidElementType(Result))
1564 return Error(EltTyLoc, "invalid element type for struct");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001565
Chris Lattnerdf986172009-01-02 07:01:27 +00001566 ParamsList.push_back(Result);
1567 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001568
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001569 if (ParseToken(lltok::rbrace, "expected '}' at end of struct"))
1570 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001571
Chris Lattnerdf986172009-01-02 07:01:27 +00001572 std::vector<const Type*> ParamsListTy;
1573 for (unsigned i = 0, e = ParamsList.size(); i != e; ++i)
1574 ParamsListTy.push_back(ParamsList[i].get());
Owen Andersond7f2a6c2009-08-05 23:16:16 +00001575 Result = HandleUpRefs(StructType::get(Context, ParamsListTy, Packed));
Chris Lattnerdf986172009-01-02 07:01:27 +00001576 return false;
1577}
1578
1579/// ParseArrayVectorType - Parse an array or vector type, assuming the first
1580/// token has already been consumed.
Daniel Dunbara279bc32009-09-20 02:20:51 +00001581/// TypeRec
Chris Lattnerdf986172009-01-02 07:01:27 +00001582/// ::= '[' APSINTVAL 'x' Types ']'
1583/// ::= '<' APSINTVAL 'x' Types '>'
1584bool LLParser::ParseArrayVectorType(PATypeHolder &Result, bool isVector) {
1585 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned() ||
1586 Lex.getAPSIntVal().getBitWidth() > 64)
1587 return TokError("expected number in address space");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001588
Chris Lattnerdf986172009-01-02 07:01:27 +00001589 LocTy SizeLoc = Lex.getLoc();
1590 uint64_t Size = Lex.getAPSIntVal().getZExtValue();
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001591 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +00001592
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001593 if (ParseToken(lltok::kw_x, "expected 'x' after element count"))
1594 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00001595
1596 LocTy TypeLoc = Lex.getLoc();
Owen Anderson1d0be152009-08-13 21:58:54 +00001597 PATypeHolder EltTy(Type::getVoidTy(Context));
Chris Lattnerdf986172009-01-02 07:01:27 +00001598 if (ParseTypeRec(EltTy)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001599
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001600 if (EltTy->isVoidTy())
Chris Lattnera9a9e072009-03-09 04:49:14 +00001601 return Error(TypeLoc, "array and vector element type cannot be void");
1602
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001603 if (ParseToken(isVector ? lltok::greater : lltok::rsquare,
1604 "expected end of sequential type"))
1605 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001606
Chris Lattnerdf986172009-01-02 07:01:27 +00001607 if (isVector) {
Chris Lattner452e2622009-02-28 18:12:41 +00001608 if (Size == 0)
1609 return Error(SizeLoc, "zero element vector is illegal");
Chris Lattnerdf986172009-01-02 07:01:27 +00001610 if ((unsigned)Size != Size)
1611 return Error(SizeLoc, "size too large for vector");
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001612 if (!VectorType::isValidElementType(EltTy))
Chris Lattnerdf986172009-01-02 07:01:27 +00001613 return Error(TypeLoc, "vector element type must be fp or integer");
Owen Andersondebcb012009-07-29 22:17:13 +00001614 Result = VectorType::get(EltTy, unsigned(Size));
Chris Lattnerdf986172009-01-02 07:01:27 +00001615 } else {
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001616 if (!ArrayType::isValidElementType(EltTy))
Chris Lattnerdf986172009-01-02 07:01:27 +00001617 return Error(TypeLoc, "invalid array element type");
Owen Andersondebcb012009-07-29 22:17:13 +00001618 Result = HandleUpRefs(ArrayType::get(EltTy, Size));
Chris Lattnerdf986172009-01-02 07:01:27 +00001619 }
1620 return false;
1621}
1622
1623//===----------------------------------------------------------------------===//
1624// Function Semantic Analysis.
1625//===----------------------------------------------------------------------===//
1626
Chris Lattner09d9ef42009-10-28 03:39:23 +00001627LLParser::PerFunctionState::PerFunctionState(LLParser &p, Function &f,
1628 int functionNumber)
1629 : P(p), F(f), FunctionNumber(functionNumber) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001630
1631 // Insert unnamed arguments into the NumberedVals list.
1632 for (Function::arg_iterator AI = F.arg_begin(), E = F.arg_end();
1633 AI != E; ++AI)
1634 if (!AI->hasName())
1635 NumberedVals.push_back(AI);
1636}
1637
1638LLParser::PerFunctionState::~PerFunctionState() {
1639 // If there were any forward referenced non-basicblock values, delete them.
1640 for (std::map<std::string, std::pair<Value*, LocTy> >::iterator
1641 I = ForwardRefVals.begin(), E = ForwardRefVals.end(); I != E; ++I)
1642 if (!isa<BasicBlock>(I->second.first)) {
Owen Andersonb43eae72009-07-02 17:04:01 +00001643 I->second.first->replaceAllUsesWith(
Owen Anderson9e9a0d52009-07-30 23:03:37 +00001644 UndefValue::get(I->second.first->getType()));
Chris Lattnerdf986172009-01-02 07:01:27 +00001645 delete I->second.first;
1646 I->second.first = 0;
1647 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001648
Chris Lattnerdf986172009-01-02 07:01:27 +00001649 for (std::map<unsigned, std::pair<Value*, LocTy> >::iterator
1650 I = ForwardRefValIDs.begin(), E = ForwardRefValIDs.end(); I != E; ++I)
1651 if (!isa<BasicBlock>(I->second.first)) {
Owen Andersonb43eae72009-07-02 17:04:01 +00001652 I->second.first->replaceAllUsesWith(
Owen Anderson9e9a0d52009-07-30 23:03:37 +00001653 UndefValue::get(I->second.first->getType()));
Chris Lattnerdf986172009-01-02 07:01:27 +00001654 delete I->second.first;
1655 I->second.first = 0;
1656 }
1657}
1658
Chris Lattner09d9ef42009-10-28 03:39:23 +00001659bool LLParser::PerFunctionState::FinishFunction() {
1660 // Check to see if someone took the address of labels in this block.
1661 if (!P.ForwardRefBlockAddresses.empty()) {
1662 ValID FunctionID;
1663 if (!F.getName().empty()) {
1664 FunctionID.Kind = ValID::t_GlobalName;
1665 FunctionID.StrVal = F.getName();
1666 } else {
1667 FunctionID.Kind = ValID::t_GlobalID;
1668 FunctionID.UIntVal = FunctionNumber;
1669 }
1670
1671 std::map<ValID, std::vector<std::pair<ValID, GlobalValue*> > >::iterator
1672 FRBAI = P.ForwardRefBlockAddresses.find(FunctionID);
1673 if (FRBAI != P.ForwardRefBlockAddresses.end()) {
1674 // Resolve all these references.
1675 if (P.ResolveForwardRefBlockAddresses(&F, FRBAI->second, this))
1676 return true;
1677
1678 P.ForwardRefBlockAddresses.erase(FRBAI);
1679 }
1680 }
1681
Chris Lattnerdf986172009-01-02 07:01:27 +00001682 if (!ForwardRefVals.empty())
1683 return P.Error(ForwardRefVals.begin()->second.second,
1684 "use of undefined value '%" + ForwardRefVals.begin()->first +
1685 "'");
1686 if (!ForwardRefValIDs.empty())
1687 return P.Error(ForwardRefValIDs.begin()->second.second,
1688 "use of undefined value '%" +
1689 utostr(ForwardRefValIDs.begin()->first) + "'");
1690 return false;
1691}
1692
1693
1694/// GetVal - Get a value with the specified name or ID, creating a
1695/// forward reference record if needed. This can return null if the value
1696/// exists but does not have the right type.
1697Value *LLParser::PerFunctionState::GetVal(const std::string &Name,
1698 const Type *Ty, LocTy Loc) {
1699 // Look this name up in the normal function symbol table.
1700 Value *Val = F.getValueSymbolTable().lookup(Name);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001701
Chris Lattnerdf986172009-01-02 07:01:27 +00001702 // If this is a forward reference for the value, see if we already created a
1703 // forward ref record.
1704 if (Val == 0) {
1705 std::map<std::string, std::pair<Value*, LocTy> >::iterator
1706 I = ForwardRefVals.find(Name);
1707 if (I != ForwardRefVals.end())
1708 Val = I->second.first;
1709 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001710
Chris Lattnerdf986172009-01-02 07:01:27 +00001711 // If we have the value in the symbol table or fwd-ref table, return it.
1712 if (Val) {
1713 if (Val->getType() == Ty) return Val;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001714 if (Ty->isLabelTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00001715 P.Error(Loc, "'%" + Name + "' is not a basic block");
1716 else
1717 P.Error(Loc, "'%" + Name + "' defined with type '" +
1718 Val->getType()->getDescription() + "'");
1719 return 0;
1720 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001721
Chris Lattnerdf986172009-01-02 07:01:27 +00001722 // Don't make placeholders with invalid type.
Benjamin Kramerf0127052010-01-05 13:12:22 +00001723 if (!Ty->isFirstClassType() && !isa<OpaqueType>(Ty) && !Ty->isLabelTy()) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001724 P.Error(Loc, "invalid use of a non-first-class type");
1725 return 0;
1726 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001727
Chris Lattnerdf986172009-01-02 07:01:27 +00001728 // Otherwise, create a new forward reference for this value and remember it.
1729 Value *FwdVal;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001730 if (Ty->isLabelTy())
Owen Anderson1d0be152009-08-13 21:58:54 +00001731 FwdVal = BasicBlock::Create(F.getContext(), Name, &F);
Chris Lattnerdf986172009-01-02 07:01:27 +00001732 else
1733 FwdVal = new Argument(Ty, Name);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001734
Chris Lattnerdf986172009-01-02 07:01:27 +00001735 ForwardRefVals[Name] = std::make_pair(FwdVal, Loc);
1736 return FwdVal;
1737}
1738
1739Value *LLParser::PerFunctionState::GetVal(unsigned ID, const Type *Ty,
1740 LocTy Loc) {
1741 // Look this name up in the normal function symbol table.
1742 Value *Val = ID < NumberedVals.size() ? NumberedVals[ID] : 0;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001743
Chris Lattnerdf986172009-01-02 07:01:27 +00001744 // If this is a forward reference for the value, see if we already created a
1745 // forward ref record.
1746 if (Val == 0) {
1747 std::map<unsigned, std::pair<Value*, LocTy> >::iterator
1748 I = ForwardRefValIDs.find(ID);
1749 if (I != ForwardRefValIDs.end())
1750 Val = I->second.first;
1751 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001752
Chris Lattnerdf986172009-01-02 07:01:27 +00001753 // If we have the value in the symbol table or fwd-ref table, return it.
1754 if (Val) {
1755 if (Val->getType() == Ty) return Val;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001756 if (Ty->isLabelTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00001757 P.Error(Loc, "'%" + utostr(ID) + "' is not a basic block");
1758 else
1759 P.Error(Loc, "'%" + utostr(ID) + "' defined with type '" +
1760 Val->getType()->getDescription() + "'");
1761 return 0;
1762 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001763
Benjamin Kramerf0127052010-01-05 13:12:22 +00001764 if (!Ty->isFirstClassType() && !isa<OpaqueType>(Ty) && !Ty->isLabelTy()) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001765 P.Error(Loc, "invalid use of a non-first-class type");
1766 return 0;
1767 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001768
Chris Lattnerdf986172009-01-02 07:01:27 +00001769 // Otherwise, create a new forward reference for this value and remember it.
1770 Value *FwdVal;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001771 if (Ty->isLabelTy())
Owen Anderson1d0be152009-08-13 21:58:54 +00001772 FwdVal = BasicBlock::Create(F.getContext(), "", &F);
Chris Lattnerdf986172009-01-02 07:01:27 +00001773 else
1774 FwdVal = new Argument(Ty);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001775
Chris Lattnerdf986172009-01-02 07:01:27 +00001776 ForwardRefValIDs[ID] = std::make_pair(FwdVal, Loc);
1777 return FwdVal;
1778}
1779
1780/// SetInstName - After an instruction is parsed and inserted into its
1781/// basic block, this installs its name.
1782bool LLParser::PerFunctionState::SetInstName(int NameID,
1783 const std::string &NameStr,
1784 LocTy NameLoc, Instruction *Inst) {
1785 // If this instruction has void type, it cannot have a name or ID specified.
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001786 if (Inst->getType()->isVoidTy()) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001787 if (NameID != -1 || !NameStr.empty())
1788 return P.Error(NameLoc, "instructions returning void cannot have a name");
1789 return false;
1790 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001791
Chris Lattnerdf986172009-01-02 07:01:27 +00001792 // If this was a numbered instruction, verify that the instruction is the
1793 // expected value and resolve any forward references.
1794 if (NameStr.empty()) {
1795 // If neither a name nor an ID was specified, just use the next ID.
1796 if (NameID == -1)
1797 NameID = NumberedVals.size();
Daniel Dunbara279bc32009-09-20 02:20:51 +00001798
Chris Lattnerdf986172009-01-02 07:01:27 +00001799 if (unsigned(NameID) != NumberedVals.size())
1800 return P.Error(NameLoc, "instruction expected to be numbered '%" +
1801 utostr(NumberedVals.size()) + "'");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001802
Chris Lattnerdf986172009-01-02 07:01:27 +00001803 std::map<unsigned, std::pair<Value*, LocTy> >::iterator FI =
1804 ForwardRefValIDs.find(NameID);
1805 if (FI != ForwardRefValIDs.end()) {
1806 if (FI->second.first->getType() != Inst->getType())
Daniel Dunbara279bc32009-09-20 02:20:51 +00001807 return P.Error(NameLoc, "instruction forward referenced with type '" +
Chris Lattnerdf986172009-01-02 07:01:27 +00001808 FI->second.first->getType()->getDescription() + "'");
1809 FI->second.first->replaceAllUsesWith(Inst);
Nuno Lopes2b4f28e2009-09-02 15:02:57 +00001810 delete FI->second.first;
Chris Lattnerdf986172009-01-02 07:01:27 +00001811 ForwardRefValIDs.erase(FI);
1812 }
1813
1814 NumberedVals.push_back(Inst);
1815 return false;
1816 }
1817
1818 // Otherwise, the instruction had a name. Resolve forward refs and set it.
1819 std::map<std::string, std::pair<Value*, LocTy> >::iterator
1820 FI = ForwardRefVals.find(NameStr);
1821 if (FI != ForwardRefVals.end()) {
1822 if (FI->second.first->getType() != Inst->getType())
Daniel Dunbara279bc32009-09-20 02:20:51 +00001823 return P.Error(NameLoc, "instruction forward referenced with type '" +
Chris Lattnerdf986172009-01-02 07:01:27 +00001824 FI->second.first->getType()->getDescription() + "'");
1825 FI->second.first->replaceAllUsesWith(Inst);
Nuno Lopes531552a2009-09-02 14:22:03 +00001826 delete FI->second.first;
Chris Lattnerdf986172009-01-02 07:01:27 +00001827 ForwardRefVals.erase(FI);
1828 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001829
Chris Lattnerdf986172009-01-02 07:01:27 +00001830 // Set the name on the instruction.
1831 Inst->setName(NameStr);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001832
Chris Lattnerdf986172009-01-02 07:01:27 +00001833 if (Inst->getNameStr() != NameStr)
Daniel Dunbara279bc32009-09-20 02:20:51 +00001834 return P.Error(NameLoc, "multiple definition of local value named '" +
Chris Lattnerdf986172009-01-02 07:01:27 +00001835 NameStr + "'");
1836 return false;
1837}
1838
1839/// GetBB - Get a basic block with the specified name or ID, creating a
1840/// forward reference record if needed.
1841BasicBlock *LLParser::PerFunctionState::GetBB(const std::string &Name,
1842 LocTy Loc) {
Owen Anderson1d0be152009-08-13 21:58:54 +00001843 return cast_or_null<BasicBlock>(GetVal(Name,
1844 Type::getLabelTy(F.getContext()), Loc));
Chris Lattnerdf986172009-01-02 07:01:27 +00001845}
1846
1847BasicBlock *LLParser::PerFunctionState::GetBB(unsigned ID, LocTy Loc) {
Owen Anderson1d0be152009-08-13 21:58:54 +00001848 return cast_or_null<BasicBlock>(GetVal(ID,
1849 Type::getLabelTy(F.getContext()), Loc));
Chris Lattnerdf986172009-01-02 07:01:27 +00001850}
1851
1852/// DefineBB - Define the specified basic block, which is either named or
1853/// unnamed. If there is an error, this returns null otherwise it returns
1854/// the block being defined.
1855BasicBlock *LLParser::PerFunctionState::DefineBB(const std::string &Name,
1856 LocTy Loc) {
1857 BasicBlock *BB;
1858 if (Name.empty())
1859 BB = GetBB(NumberedVals.size(), Loc);
1860 else
1861 BB = GetBB(Name, Loc);
1862 if (BB == 0) return 0; // Already diagnosed error.
Daniel Dunbara279bc32009-09-20 02:20:51 +00001863
Chris Lattnerdf986172009-01-02 07:01:27 +00001864 // Move the block to the end of the function. Forward ref'd blocks are
1865 // inserted wherever they happen to be referenced.
1866 F.getBasicBlockList().splice(F.end(), F.getBasicBlockList(), BB);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001867
Chris Lattnerdf986172009-01-02 07:01:27 +00001868 // Remove the block from forward ref sets.
1869 if (Name.empty()) {
1870 ForwardRefValIDs.erase(NumberedVals.size());
1871 NumberedVals.push_back(BB);
1872 } else {
1873 // BB forward references are already in the function symbol table.
1874 ForwardRefVals.erase(Name);
1875 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001876
Chris Lattnerdf986172009-01-02 07:01:27 +00001877 return BB;
1878}
1879
1880//===----------------------------------------------------------------------===//
1881// Constants.
1882//===----------------------------------------------------------------------===//
1883
1884/// ParseValID - Parse an abstract value that doesn't necessarily have a
1885/// type implied. For example, if we parse "4" we don't know what integer type
1886/// it has. The value will later be combined with its type and checked for
1887/// sanity.
Victor Hernandezbf170d42010-01-05 22:22:14 +00001888bool LLParser::ParseValID(ValID &ID, PerFunctionState *PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001889 ID.Loc = Lex.getLoc();
1890 switch (Lex.getKind()) {
1891 default: return TokError("expected value token");
1892 case lltok::GlobalID: // @42
1893 ID.UIntVal = Lex.getUIntVal();
1894 ID.Kind = ValID::t_GlobalID;
1895 break;
1896 case lltok::GlobalVar: // @foo
1897 ID.StrVal = Lex.getStrVal();
1898 ID.Kind = ValID::t_GlobalName;
1899 break;
1900 case lltok::LocalVarID: // %42
1901 ID.UIntVal = Lex.getUIntVal();
1902 ID.Kind = ValID::t_LocalID;
1903 break;
1904 case lltok::LocalVar: // %foo
1905 case lltok::StringConstant: // "foo" - FIXME: REMOVE IN LLVM 3.0
1906 ID.StrVal = Lex.getStrVal();
1907 ID.Kind = ValID::t_LocalName;
1908 break;
Chris Lattnere434d272009-12-30 04:56:59 +00001909 case lltok::exclaim: // !{...} MDNode, !"foo" MDString
Nick Lewycky21cc4462009-04-04 07:22:01 +00001910 Lex.Lex();
Chris Lattner442ffa12009-12-29 21:53:55 +00001911
Chris Lattner3f5132a2009-12-29 22:40:21 +00001912 if (EatIfPresent(lltok::lbrace)) {
Nick Lewyckycb337992009-05-10 20:57:05 +00001913 SmallVector<Value*, 16> Elts;
Victor Hernandezbf170d42010-01-05 22:22:14 +00001914 if (ParseMDNodeVector(Elts, PFS) ||
Nick Lewycky21cc4462009-04-04 07:22:01 +00001915 ParseToken(lltok::rbrace, "expected end of metadata node"))
1916 return true;
Nick Lewyckycb337992009-05-10 20:57:05 +00001917
Chris Lattner287881d2009-12-30 02:11:14 +00001918 ID.MDNodeVal = MDNode::get(Context, Elts.data(), Elts.size());
1919 ID.Kind = ValID::t_MDNode;
Nick Lewycky21cc4462009-04-04 07:22:01 +00001920 return false;
1921 }
1922
Devang Patel923078c2009-07-01 19:21:12 +00001923 // Standalone metadata reference
1924 // !{ ..., !42, ... }
Chris Lattner860775c2009-12-30 04:13:37 +00001925 if (Lex.getKind() == lltok::APSInt) {
Chris Lattner4a72efc2009-12-30 04:15:23 +00001926 if (ParseMDNodeID(ID.MDNodeVal)) return true;
Chris Lattner287881d2009-12-30 02:11:14 +00001927 ID.Kind = ValID::t_MDNode;
Devang Patel923078c2009-07-01 19:21:12 +00001928 return false;
Chris Lattner287881d2009-12-30 02:11:14 +00001929 }
1930
Nick Lewycky21cc4462009-04-04 07:22:01 +00001931 // MDString:
1932 // ::= '!' STRINGCONSTANT
Chris Lattner287881d2009-12-30 02:11:14 +00001933 if (ParseMDString(ID.MDStringVal)) return true;
1934 ID.Kind = ValID::t_MDString;
Nick Lewycky21cc4462009-04-04 07:22:01 +00001935 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00001936 case lltok::APSInt:
Daniel Dunbara279bc32009-09-20 02:20:51 +00001937 ID.APSIntVal = Lex.getAPSIntVal();
Chris Lattnerdf986172009-01-02 07:01:27 +00001938 ID.Kind = ValID::t_APSInt;
1939 break;
1940 case lltok::APFloat:
1941 ID.APFloatVal = Lex.getAPFloatVal();
1942 ID.Kind = ValID::t_APFloat;
1943 break;
1944 case lltok::kw_true:
Owen Anderson5defacc2009-07-31 17:39:07 +00001945 ID.ConstantVal = ConstantInt::getTrue(Context);
Chris Lattnerdf986172009-01-02 07:01:27 +00001946 ID.Kind = ValID::t_Constant;
1947 break;
1948 case lltok::kw_false:
Owen Anderson5defacc2009-07-31 17:39:07 +00001949 ID.ConstantVal = ConstantInt::getFalse(Context);
Chris Lattnerdf986172009-01-02 07:01:27 +00001950 ID.Kind = ValID::t_Constant;
1951 break;
1952 case lltok::kw_null: ID.Kind = ValID::t_Null; break;
1953 case lltok::kw_undef: ID.Kind = ValID::t_Undef; break;
1954 case lltok::kw_zeroinitializer: ID.Kind = ValID::t_Zero; break;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001955
Chris Lattnerdf986172009-01-02 07:01:27 +00001956 case lltok::lbrace: {
1957 // ValID ::= '{' ConstVector '}'
1958 Lex.Lex();
1959 SmallVector<Constant*, 16> Elts;
1960 if (ParseGlobalValueVector(Elts) ||
1961 ParseToken(lltok::rbrace, "expected end of struct constant"))
1962 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001963
Owen Andersond7f2a6c2009-08-05 23:16:16 +00001964 ID.ConstantVal = ConstantStruct::get(Context, Elts.data(),
1965 Elts.size(), false);
Chris Lattnerdf986172009-01-02 07:01:27 +00001966 ID.Kind = ValID::t_Constant;
1967 return false;
1968 }
1969 case lltok::less: {
1970 // ValID ::= '<' ConstVector '>' --> Vector.
1971 // ValID ::= '<' '{' ConstVector '}' '>' --> Packed Struct.
1972 Lex.Lex();
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001973 bool isPackedStruct = EatIfPresent(lltok::lbrace);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001974
Chris Lattnerdf986172009-01-02 07:01:27 +00001975 SmallVector<Constant*, 16> Elts;
1976 LocTy FirstEltLoc = Lex.getLoc();
1977 if (ParseGlobalValueVector(Elts) ||
1978 (isPackedStruct &&
1979 ParseToken(lltok::rbrace, "expected end of packed struct")) ||
1980 ParseToken(lltok::greater, "expected end of constant"))
1981 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001982
Chris Lattnerdf986172009-01-02 07:01:27 +00001983 if (isPackedStruct) {
Owen Andersonfba933c2009-07-01 23:57:11 +00001984 ID.ConstantVal =
Owen Andersond7f2a6c2009-08-05 23:16:16 +00001985 ConstantStruct::get(Context, Elts.data(), Elts.size(), true);
Chris Lattnerdf986172009-01-02 07:01:27 +00001986 ID.Kind = ValID::t_Constant;
1987 return false;
1988 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001989
Chris Lattnerdf986172009-01-02 07:01:27 +00001990 if (Elts.empty())
1991 return Error(ID.Loc, "constant vector must not be empty");
1992
1993 if (!Elts[0]->getType()->isInteger() &&
1994 !Elts[0]->getType()->isFloatingPoint())
1995 return Error(FirstEltLoc,
1996 "vector elements must have integer or floating point type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001997
Chris Lattnerdf986172009-01-02 07:01:27 +00001998 // Verify that all the vector elements have the same type.
1999 for (unsigned i = 1, e = Elts.size(); i != e; ++i)
2000 if (Elts[i]->getType() != Elts[0]->getType())
2001 return Error(FirstEltLoc,
2002 "vector element #" + utostr(i) +
2003 " is not of type '" + Elts[0]->getType()->getDescription());
Daniel Dunbara279bc32009-09-20 02:20:51 +00002004
Owen Andersonaf7ec972009-07-28 21:19:26 +00002005 ID.ConstantVal = ConstantVector::get(Elts.data(), Elts.size());
Chris Lattnerdf986172009-01-02 07:01:27 +00002006 ID.Kind = ValID::t_Constant;
2007 return false;
2008 }
2009 case lltok::lsquare: { // Array Constant
2010 Lex.Lex();
2011 SmallVector<Constant*, 16> Elts;
2012 LocTy FirstEltLoc = Lex.getLoc();
2013 if (ParseGlobalValueVector(Elts) ||
2014 ParseToken(lltok::rsquare, "expected end of array constant"))
2015 return true;
2016
2017 // Handle empty element.
2018 if (Elts.empty()) {
2019 // Use undef instead of an array because it's inconvenient to determine
2020 // the element type at this point, there being no elements to examine.
Chris Lattner081b5052009-01-05 07:52:51 +00002021 ID.Kind = ValID::t_EmptyArray;
Chris Lattnerdf986172009-01-02 07:01:27 +00002022 return false;
2023 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002024
Chris Lattnerdf986172009-01-02 07:01:27 +00002025 if (!Elts[0]->getType()->isFirstClassType())
Daniel Dunbara279bc32009-09-20 02:20:51 +00002026 return Error(FirstEltLoc, "invalid array element type: " +
Chris Lattnerdf986172009-01-02 07:01:27 +00002027 Elts[0]->getType()->getDescription());
Daniel Dunbara279bc32009-09-20 02:20:51 +00002028
Owen Andersondebcb012009-07-29 22:17:13 +00002029 ArrayType *ATy = ArrayType::get(Elts[0]->getType(), Elts.size());
Daniel Dunbara279bc32009-09-20 02:20:51 +00002030
Chris Lattnerdf986172009-01-02 07:01:27 +00002031 // Verify all elements are correct type!
Chris Lattner6d6b3cc2009-01-02 08:49:06 +00002032 for (unsigned i = 0, e = Elts.size(); i != e; ++i) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002033 if (Elts[i]->getType() != Elts[0]->getType())
2034 return Error(FirstEltLoc,
2035 "array element #" + utostr(i) +
2036 " is not of type '" +Elts[0]->getType()->getDescription());
2037 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002038
Owen Anderson1fd70962009-07-28 18:32:17 +00002039 ID.ConstantVal = ConstantArray::get(ATy, Elts.data(), Elts.size());
Chris Lattnerdf986172009-01-02 07:01:27 +00002040 ID.Kind = ValID::t_Constant;
2041 return false;
2042 }
2043 case lltok::kw_c: // c "foo"
2044 Lex.Lex();
Owen Anderson1d0be152009-08-13 21:58:54 +00002045 ID.ConstantVal = ConstantArray::get(Context, Lex.getStrVal(), false);
Chris Lattnerdf986172009-01-02 07:01:27 +00002046 if (ParseToken(lltok::StringConstant, "expected string")) return true;
2047 ID.Kind = ValID::t_Constant;
2048 return false;
2049
2050 case lltok::kw_asm: {
Dale Johannesen8ba2d5b2009-10-21 23:28:00 +00002051 // ValID ::= 'asm' SideEffect? AlignStack? STRINGCONSTANT ',' STRINGCONSTANT
2052 bool HasSideEffect, AlignStack;
Chris Lattnerdf986172009-01-02 07:01:27 +00002053 Lex.Lex();
2054 if (ParseOptionalToken(lltok::kw_sideeffect, HasSideEffect) ||
Dale Johannesen8ba2d5b2009-10-21 23:28:00 +00002055 ParseOptionalToken(lltok::kw_alignstack, AlignStack) ||
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002056 ParseStringConstant(ID.StrVal) ||
2057 ParseToken(lltok::comma, "expected comma in inline asm expression") ||
Chris Lattnerdf986172009-01-02 07:01:27 +00002058 ParseToken(lltok::StringConstant, "expected constraint string"))
2059 return true;
2060 ID.StrVal2 = Lex.getStrVal();
Daniel Dunbarf0bb41c2009-11-07 23:51:55 +00002061 ID.UIntVal = unsigned(HasSideEffect) | (unsigned(AlignStack)<<1);
Chris Lattnerdf986172009-01-02 07:01:27 +00002062 ID.Kind = ValID::t_InlineAsm;
2063 return false;
2064 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002065
Chris Lattner09d9ef42009-10-28 03:39:23 +00002066 case lltok::kw_blockaddress: {
2067 // ValID ::= 'blockaddress' '(' @foo ',' %bar ')'
2068 Lex.Lex();
2069
2070 ValID Fn, Label;
2071 LocTy FnLoc, LabelLoc;
2072
2073 if (ParseToken(lltok::lparen, "expected '(' in block address expression") ||
2074 ParseValID(Fn) ||
2075 ParseToken(lltok::comma, "expected comma in block address expression")||
2076 ParseValID(Label) ||
2077 ParseToken(lltok::rparen, "expected ')' in block address expression"))
2078 return true;
Chris Lattnercdfc9402009-11-01 01:27:45 +00002079
Chris Lattner09d9ef42009-10-28 03:39:23 +00002080 if (Fn.Kind != ValID::t_GlobalID && Fn.Kind != ValID::t_GlobalName)
2081 return Error(Fn.Loc, "expected function name in blockaddress");
Chris Lattnercdfc9402009-11-01 01:27:45 +00002082 if (Label.Kind != ValID::t_LocalID && Label.Kind != ValID::t_LocalName)
Chris Lattner09d9ef42009-10-28 03:39:23 +00002083 return Error(Label.Loc, "expected basic block name in blockaddress");
2084
2085 // Make a global variable as a placeholder for this reference.
2086 GlobalVariable *FwdRef = new GlobalVariable(*M, Type::getInt8Ty(Context),
2087 false, GlobalValue::InternalLinkage,
2088 0, "");
2089 ForwardRefBlockAddresses[Fn].push_back(std::make_pair(Label, FwdRef));
2090 ID.ConstantVal = FwdRef;
2091 ID.Kind = ValID::t_Constant;
2092 return false;
2093 }
2094
Chris Lattnerdf986172009-01-02 07:01:27 +00002095 case lltok::kw_trunc:
2096 case lltok::kw_zext:
2097 case lltok::kw_sext:
2098 case lltok::kw_fptrunc:
2099 case lltok::kw_fpext:
2100 case lltok::kw_bitcast:
2101 case lltok::kw_uitofp:
2102 case lltok::kw_sitofp:
2103 case lltok::kw_fptoui:
Daniel Dunbara279bc32009-09-20 02:20:51 +00002104 case lltok::kw_fptosi:
Chris Lattnerdf986172009-01-02 07:01:27 +00002105 case lltok::kw_inttoptr:
Daniel Dunbara279bc32009-09-20 02:20:51 +00002106 case lltok::kw_ptrtoint: {
Chris Lattnerdf986172009-01-02 07:01:27 +00002107 unsigned Opc = Lex.getUIntVal();
Owen Anderson1d0be152009-08-13 21:58:54 +00002108 PATypeHolder DestTy(Type::getVoidTy(Context));
Chris Lattnerdf986172009-01-02 07:01:27 +00002109 Constant *SrcVal;
2110 Lex.Lex();
2111 if (ParseToken(lltok::lparen, "expected '(' after constantexpr cast") ||
2112 ParseGlobalTypeAndValue(SrcVal) ||
Dan Gohman24b108b2009-06-15 21:52:11 +00002113 ParseToken(lltok::kw_to, "expected 'to' in constantexpr cast") ||
Chris Lattnerdf986172009-01-02 07:01:27 +00002114 ParseType(DestTy) ||
2115 ParseToken(lltok::rparen, "expected ')' at end of constantexpr cast"))
2116 return true;
2117 if (!CastInst::castIsValid((Instruction::CastOps)Opc, SrcVal, DestTy))
2118 return Error(ID.Loc, "invalid cast opcode for cast from '" +
2119 SrcVal->getType()->getDescription() + "' to '" +
2120 DestTy->getDescription() + "'");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002121 ID.ConstantVal = ConstantExpr::getCast((Instruction::CastOps)Opc,
Owen Andersonfba933c2009-07-01 23:57:11 +00002122 SrcVal, DestTy);
Chris Lattnerdf986172009-01-02 07:01:27 +00002123 ID.Kind = ValID::t_Constant;
2124 return false;
2125 }
2126 case lltok::kw_extractvalue: {
2127 Lex.Lex();
2128 Constant *Val;
2129 SmallVector<unsigned, 4> Indices;
2130 if (ParseToken(lltok::lparen, "expected '(' in extractvalue constantexpr")||
2131 ParseGlobalTypeAndValue(Val) ||
2132 ParseIndexList(Indices) ||
2133 ParseToken(lltok::rparen, "expected ')' in extractvalue constantexpr"))
2134 return true;
Devang Patele8bc45a2009-11-03 19:06:07 +00002135
Chris Lattnerdf986172009-01-02 07:01:27 +00002136 if (!isa<StructType>(Val->getType()) && !isa<ArrayType>(Val->getType()))
2137 return Error(ID.Loc, "extractvalue operand must be array or struct");
2138 if (!ExtractValueInst::getIndexedType(Val->getType(), Indices.begin(),
2139 Indices.end()))
2140 return Error(ID.Loc, "invalid indices for extractvalue");
Jay Foade3e51c02009-05-21 09:52:38 +00002141 ID.ConstantVal =
Owen Andersonbaf3c402009-07-29 18:55:55 +00002142 ConstantExpr::getExtractValue(Val, Indices.data(), Indices.size());
Chris Lattnerdf986172009-01-02 07:01:27 +00002143 ID.Kind = ValID::t_Constant;
2144 return false;
2145 }
2146 case lltok::kw_insertvalue: {
2147 Lex.Lex();
2148 Constant *Val0, *Val1;
2149 SmallVector<unsigned, 4> Indices;
2150 if (ParseToken(lltok::lparen, "expected '(' in insertvalue constantexpr")||
2151 ParseGlobalTypeAndValue(Val0) ||
2152 ParseToken(lltok::comma, "expected comma in insertvalue constantexpr")||
2153 ParseGlobalTypeAndValue(Val1) ||
2154 ParseIndexList(Indices) ||
2155 ParseToken(lltok::rparen, "expected ')' in insertvalue constantexpr"))
2156 return true;
2157 if (!isa<StructType>(Val0->getType()) && !isa<ArrayType>(Val0->getType()))
2158 return Error(ID.Loc, "extractvalue operand must be array or struct");
2159 if (!ExtractValueInst::getIndexedType(Val0->getType(), Indices.begin(),
2160 Indices.end()))
2161 return Error(ID.Loc, "invalid indices for insertvalue");
Owen Andersonbaf3c402009-07-29 18:55:55 +00002162 ID.ConstantVal = ConstantExpr::getInsertValue(Val0, Val1,
Owen Andersonfba933c2009-07-01 23:57:11 +00002163 Indices.data(), Indices.size());
Chris Lattnerdf986172009-01-02 07:01:27 +00002164 ID.Kind = ValID::t_Constant;
2165 return false;
2166 }
2167 case lltok::kw_icmp:
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00002168 case lltok::kw_fcmp: {
Chris Lattnerdf986172009-01-02 07:01:27 +00002169 unsigned PredVal, Opc = Lex.getUIntVal();
2170 Constant *Val0, *Val1;
2171 Lex.Lex();
2172 if (ParseCmpPredicate(PredVal, Opc) ||
2173 ParseToken(lltok::lparen, "expected '(' in compare constantexpr") ||
2174 ParseGlobalTypeAndValue(Val0) ||
2175 ParseToken(lltok::comma, "expected comma in compare constantexpr") ||
2176 ParseGlobalTypeAndValue(Val1) ||
2177 ParseToken(lltok::rparen, "expected ')' in compare constantexpr"))
2178 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002179
Chris Lattnerdf986172009-01-02 07:01:27 +00002180 if (Val0->getType() != Val1->getType())
2181 return Error(ID.Loc, "compare operands must have the same type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002182
Chris Lattnerdf986172009-01-02 07:01:27 +00002183 CmpInst::Predicate Pred = (CmpInst::Predicate)PredVal;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002184
Chris Lattnerdf986172009-01-02 07:01:27 +00002185 if (Opc == Instruction::FCmp) {
2186 if (!Val0->getType()->isFPOrFPVector())
2187 return Error(ID.Loc, "fcmp requires floating point operands");
Owen Andersonbaf3c402009-07-29 18:55:55 +00002188 ID.ConstantVal = ConstantExpr::getFCmp(Pred, Val0, Val1);
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00002189 } else {
2190 assert(Opc == Instruction::ICmp && "Unexpected opcode for CmpInst!");
Chris Lattnerdf986172009-01-02 07:01:27 +00002191 if (!Val0->getType()->isIntOrIntVector() &&
2192 !isa<PointerType>(Val0->getType()))
2193 return Error(ID.Loc, "icmp requires pointer or integer operands");
Owen Andersonbaf3c402009-07-29 18:55:55 +00002194 ID.ConstantVal = ConstantExpr::getICmp(Pred, Val0, Val1);
Chris Lattnerdf986172009-01-02 07:01:27 +00002195 }
2196 ID.Kind = ValID::t_Constant;
2197 return false;
2198 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002199
Chris Lattnerdf986172009-01-02 07:01:27 +00002200 // Binary Operators.
2201 case lltok::kw_add:
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002202 case lltok::kw_fadd:
Chris Lattnerdf986172009-01-02 07:01:27 +00002203 case lltok::kw_sub:
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002204 case lltok::kw_fsub:
Chris Lattnerdf986172009-01-02 07:01:27 +00002205 case lltok::kw_mul:
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002206 case lltok::kw_fmul:
Chris Lattnerdf986172009-01-02 07:01:27 +00002207 case lltok::kw_udiv:
2208 case lltok::kw_sdiv:
2209 case lltok::kw_fdiv:
2210 case lltok::kw_urem:
2211 case lltok::kw_srem:
2212 case lltok::kw_frem: {
Dan Gohman59858cf2009-07-27 16:11:46 +00002213 bool NUW = false;
2214 bool NSW = false;
2215 bool Exact = false;
Chris Lattnerdf986172009-01-02 07:01:27 +00002216 unsigned Opc = Lex.getUIntVal();
2217 Constant *Val0, *Val1;
2218 Lex.Lex();
Dan Gohman59858cf2009-07-27 16:11:46 +00002219 LocTy ModifierLoc = Lex.getLoc();
2220 if (Opc == Instruction::Add ||
2221 Opc == Instruction::Sub ||
2222 Opc == Instruction::Mul) {
2223 if (EatIfPresent(lltok::kw_nuw))
2224 NUW = true;
2225 if (EatIfPresent(lltok::kw_nsw)) {
2226 NSW = true;
2227 if (EatIfPresent(lltok::kw_nuw))
2228 NUW = true;
2229 }
2230 } else if (Opc == Instruction::SDiv) {
2231 if (EatIfPresent(lltok::kw_exact))
2232 Exact = true;
2233 }
Chris Lattnerdf986172009-01-02 07:01:27 +00002234 if (ParseToken(lltok::lparen, "expected '(' in binary constantexpr") ||
2235 ParseGlobalTypeAndValue(Val0) ||
2236 ParseToken(lltok::comma, "expected comma in binary constantexpr") ||
2237 ParseGlobalTypeAndValue(Val1) ||
2238 ParseToken(lltok::rparen, "expected ')' in binary constantexpr"))
2239 return true;
2240 if (Val0->getType() != Val1->getType())
2241 return Error(ID.Loc, "operands of constexpr must have same type");
Dan Gohman59858cf2009-07-27 16:11:46 +00002242 if (!Val0->getType()->isIntOrIntVector()) {
2243 if (NUW)
2244 return Error(ModifierLoc, "nuw only applies to integer operations");
2245 if (NSW)
2246 return Error(ModifierLoc, "nsw only applies to integer operations");
2247 }
2248 // API compatibility: Accept either integer or floating-point types with
2249 // add, sub, and mul.
Chris Lattnerdf986172009-01-02 07:01:27 +00002250 if (!Val0->getType()->isIntOrIntVector() &&
2251 !Val0->getType()->isFPOrFPVector())
2252 return Error(ID.Loc,"constexpr requires integer, fp, or vector operands");
Dan Gohmanf8dbee72009-09-07 23:54:19 +00002253 unsigned Flags = 0;
2254 if (NUW) Flags |= OverflowingBinaryOperator::NoUnsignedWrap;
2255 if (NSW) Flags |= OverflowingBinaryOperator::NoSignedWrap;
2256 if (Exact) Flags |= SDivOperator::IsExact;
2257 Constant *C = ConstantExpr::get(Opc, Val0, Val1, Flags);
Dan Gohman59858cf2009-07-27 16:11:46 +00002258 ID.ConstantVal = C;
Chris Lattnerdf986172009-01-02 07:01:27 +00002259 ID.Kind = ValID::t_Constant;
2260 return false;
2261 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002262
Chris Lattnerdf986172009-01-02 07:01:27 +00002263 // Logical Operations
2264 case lltok::kw_shl:
2265 case lltok::kw_lshr:
2266 case lltok::kw_ashr:
2267 case lltok::kw_and:
2268 case lltok::kw_or:
2269 case lltok::kw_xor: {
2270 unsigned Opc = Lex.getUIntVal();
2271 Constant *Val0, *Val1;
2272 Lex.Lex();
2273 if (ParseToken(lltok::lparen, "expected '(' in logical constantexpr") ||
2274 ParseGlobalTypeAndValue(Val0) ||
2275 ParseToken(lltok::comma, "expected comma in logical constantexpr") ||
2276 ParseGlobalTypeAndValue(Val1) ||
2277 ParseToken(lltok::rparen, "expected ')' in logical constantexpr"))
2278 return true;
2279 if (Val0->getType() != Val1->getType())
2280 return Error(ID.Loc, "operands of constexpr must have same type");
2281 if (!Val0->getType()->isIntOrIntVector())
2282 return Error(ID.Loc,
2283 "constexpr requires integer or integer vector operands");
Owen Andersonbaf3c402009-07-29 18:55:55 +00002284 ID.ConstantVal = ConstantExpr::get(Opc, Val0, Val1);
Chris Lattnerdf986172009-01-02 07:01:27 +00002285 ID.Kind = ValID::t_Constant;
2286 return false;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002287 }
2288
Chris Lattnerdf986172009-01-02 07:01:27 +00002289 case lltok::kw_getelementptr:
2290 case lltok::kw_shufflevector:
2291 case lltok::kw_insertelement:
2292 case lltok::kw_extractelement:
2293 case lltok::kw_select: {
2294 unsigned Opc = Lex.getUIntVal();
2295 SmallVector<Constant*, 16> Elts;
Dan Gohmandd8004d2009-07-27 21:53:46 +00002296 bool InBounds = false;
Chris Lattnerdf986172009-01-02 07:01:27 +00002297 Lex.Lex();
Dan Gohmandd8004d2009-07-27 21:53:46 +00002298 if (Opc == Instruction::GetElementPtr)
Dan Gohmandcb40a32009-07-29 15:58:36 +00002299 InBounds = EatIfPresent(lltok::kw_inbounds);
Chris Lattnerdf986172009-01-02 07:01:27 +00002300 if (ParseToken(lltok::lparen, "expected '(' in constantexpr") ||
2301 ParseGlobalValueVector(Elts) ||
2302 ParseToken(lltok::rparen, "expected ')' in constantexpr"))
2303 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002304
Chris Lattnerdf986172009-01-02 07:01:27 +00002305 if (Opc == Instruction::GetElementPtr) {
2306 if (Elts.size() == 0 || !isa<PointerType>(Elts[0]->getType()))
2307 return Error(ID.Loc, "getelementptr requires pointer operand");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002308
Chris Lattnerdf986172009-01-02 07:01:27 +00002309 if (!GetElementPtrInst::getIndexedType(Elts[0]->getType(),
Eli Friedman4e9bac32009-07-24 21:56:17 +00002310 (Value**)(Elts.data() + 1),
2311 Elts.size() - 1))
Chris Lattnerdf986172009-01-02 07:01:27 +00002312 return Error(ID.Loc, "invalid indices for getelementptr");
Dan Gohmanf8dbee72009-09-07 23:54:19 +00002313 ID.ConstantVal = InBounds ?
2314 ConstantExpr::getInBoundsGetElementPtr(Elts[0],
2315 Elts.data() + 1,
2316 Elts.size() - 1) :
2317 ConstantExpr::getGetElementPtr(Elts[0],
2318 Elts.data() + 1, Elts.size() - 1);
Chris Lattnerdf986172009-01-02 07:01:27 +00002319 } else if (Opc == Instruction::Select) {
2320 if (Elts.size() != 3)
2321 return Error(ID.Loc, "expected three operands to select");
2322 if (const char *Reason = SelectInst::areInvalidOperands(Elts[0], Elts[1],
2323 Elts[2]))
2324 return Error(ID.Loc, Reason);
Owen Andersonbaf3c402009-07-29 18:55:55 +00002325 ID.ConstantVal = ConstantExpr::getSelect(Elts[0], Elts[1], Elts[2]);
Chris Lattnerdf986172009-01-02 07:01:27 +00002326 } else if (Opc == Instruction::ShuffleVector) {
2327 if (Elts.size() != 3)
2328 return Error(ID.Loc, "expected three operands to shufflevector");
2329 if (!ShuffleVectorInst::isValidOperands(Elts[0], Elts[1], Elts[2]))
2330 return Error(ID.Loc, "invalid operands to shufflevector");
Owen Andersonfba933c2009-07-01 23:57:11 +00002331 ID.ConstantVal =
Owen Andersonbaf3c402009-07-29 18:55:55 +00002332 ConstantExpr::getShuffleVector(Elts[0], Elts[1],Elts[2]);
Chris Lattnerdf986172009-01-02 07:01:27 +00002333 } else if (Opc == Instruction::ExtractElement) {
2334 if (Elts.size() != 2)
2335 return Error(ID.Loc, "expected two operands to extractelement");
2336 if (!ExtractElementInst::isValidOperands(Elts[0], Elts[1]))
2337 return Error(ID.Loc, "invalid extractelement operands");
Owen Andersonbaf3c402009-07-29 18:55:55 +00002338 ID.ConstantVal = ConstantExpr::getExtractElement(Elts[0], Elts[1]);
Chris Lattnerdf986172009-01-02 07:01:27 +00002339 } else {
2340 assert(Opc == Instruction::InsertElement && "Unknown opcode");
2341 if (Elts.size() != 3)
2342 return Error(ID.Loc, "expected three operands to insertelement");
2343 if (!InsertElementInst::isValidOperands(Elts[0], Elts[1], Elts[2]))
2344 return Error(ID.Loc, "invalid insertelement operands");
Owen Andersonfba933c2009-07-01 23:57:11 +00002345 ID.ConstantVal =
Owen Andersonbaf3c402009-07-29 18:55:55 +00002346 ConstantExpr::getInsertElement(Elts[0], Elts[1],Elts[2]);
Chris Lattnerdf986172009-01-02 07:01:27 +00002347 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002348
Chris Lattnerdf986172009-01-02 07:01:27 +00002349 ID.Kind = ValID::t_Constant;
2350 return false;
2351 }
2352 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002353
Chris Lattnerdf986172009-01-02 07:01:27 +00002354 Lex.Lex();
2355 return false;
2356}
2357
2358/// ParseGlobalValue - Parse a global value with the specified type.
2359bool LLParser::ParseGlobalValue(const Type *Ty, Constant *&V) {
2360 V = 0;
2361 ValID ID;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002362 return ParseValID(ID) ||
2363 ConvertGlobalValIDToValue(Ty, ID, V);
Chris Lattnerdf986172009-01-02 07:01:27 +00002364}
2365
2366/// ConvertGlobalValIDToValue - Apply a type to a ValID to get a fully resolved
2367/// constant.
2368bool LLParser::ConvertGlobalValIDToValue(const Type *Ty, ValID &ID,
2369 Constant *&V) {
2370 if (isa<FunctionType>(Ty))
2371 return Error(ID.Loc, "functions are not values, refer to them as pointers");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002372
Chris Lattnerdf986172009-01-02 07:01:27 +00002373 switch (ID.Kind) {
Daniel Dunbara279bc32009-09-20 02:20:51 +00002374 default: llvm_unreachable("Unknown ValID!");
Chris Lattner287881d2009-12-30 02:11:14 +00002375 case ValID::t_MDNode:
2376 case ValID::t_MDString:
Devang Patele54abc92009-07-22 17:43:22 +00002377 return Error(ID.Loc, "invalid use of metadata");
Chris Lattnerdf986172009-01-02 07:01:27 +00002378 case ValID::t_LocalID:
2379 case ValID::t_LocalName:
2380 return Error(ID.Loc, "invalid use of function-local name");
2381 case ValID::t_InlineAsm:
2382 return Error(ID.Loc, "inline asm can only be an operand of call/invoke");
2383 case ValID::t_GlobalName:
2384 V = GetGlobalVal(ID.StrVal, Ty, ID.Loc);
2385 return V == 0;
2386 case ValID::t_GlobalID:
2387 V = GetGlobalVal(ID.UIntVal, Ty, ID.Loc);
2388 return V == 0;
2389 case ValID::t_APSInt:
2390 if (!isa<IntegerType>(Ty))
2391 return Error(ID.Loc, "integer constant must have integer type");
2392 ID.APSIntVal.extOrTrunc(Ty->getPrimitiveSizeInBits());
Owen Andersoneed707b2009-07-24 23:12:02 +00002393 V = ConstantInt::get(Context, ID.APSIntVal);
Chris Lattnerdf986172009-01-02 07:01:27 +00002394 return false;
2395 case ValID::t_APFloat:
2396 if (!Ty->isFloatingPoint() ||
2397 !ConstantFP::isValueValidForType(Ty, ID.APFloatVal))
2398 return Error(ID.Loc, "floating point constant invalid for type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002399
Chris Lattnerdf986172009-01-02 07:01:27 +00002400 // The lexer has no type info, so builds all float and double FP constants
2401 // as double. Fix this here. Long double does not need this.
2402 if (&ID.APFloatVal.getSemantics() == &APFloat::IEEEdouble &&
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00002403 Ty->isFloatTy()) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002404 bool Ignored;
2405 ID.APFloatVal.convert(APFloat::IEEEsingle, APFloat::rmNearestTiesToEven,
2406 &Ignored);
2407 }
Owen Anderson6f83c9c2009-07-27 20:59:43 +00002408 V = ConstantFP::get(Context, ID.APFloatVal);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002409
Chris Lattner959873d2009-01-05 18:24:23 +00002410 if (V->getType() != Ty)
2411 return Error(ID.Loc, "floating point constant does not have type '" +
2412 Ty->getDescription() + "'");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002413
Chris Lattnerdf986172009-01-02 07:01:27 +00002414 return false;
2415 case ValID::t_Null:
2416 if (!isa<PointerType>(Ty))
2417 return Error(ID.Loc, "null must be a pointer type");
Owen Anderson9e9a0d52009-07-30 23:03:37 +00002418 V = ConstantPointerNull::get(cast<PointerType>(Ty));
Chris Lattnerdf986172009-01-02 07:01:27 +00002419 return false;
2420 case ValID::t_Undef:
Chris Lattnere67c1aa2009-01-05 08:13:38 +00002421 // FIXME: LabelTy should not be a first-class type.
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00002422 if ((!Ty->isFirstClassType() || Ty->isLabelTy()) &&
Chris Lattner0b616352009-01-05 18:12:21 +00002423 !isa<OpaqueType>(Ty))
Chris Lattnere67c1aa2009-01-05 08:13:38 +00002424 return Error(ID.Loc, "invalid type for undef constant");
Owen Anderson9e9a0d52009-07-30 23:03:37 +00002425 V = UndefValue::get(Ty);
Chris Lattnerdf986172009-01-02 07:01:27 +00002426 return false;
Chris Lattner081b5052009-01-05 07:52:51 +00002427 case ValID::t_EmptyArray:
2428 if (!isa<ArrayType>(Ty) || cast<ArrayType>(Ty)->getNumElements() != 0)
2429 return Error(ID.Loc, "invalid empty array initializer");
Owen Anderson9e9a0d52009-07-30 23:03:37 +00002430 V = UndefValue::get(Ty);
Chris Lattner081b5052009-01-05 07:52:51 +00002431 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00002432 case ValID::t_Zero:
Chris Lattnere67c1aa2009-01-05 08:13:38 +00002433 // FIXME: LabelTy should not be a first-class type.
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00002434 if (!Ty->isFirstClassType() || Ty->isLabelTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002435 return Error(ID.Loc, "invalid type for null constant");
Owen Andersona7235ea2009-07-31 20:28:14 +00002436 V = Constant::getNullValue(Ty);
Chris Lattnerdf986172009-01-02 07:01:27 +00002437 return false;
2438 case ValID::t_Constant:
2439 if (ID.ConstantVal->getType() != Ty)
2440 return Error(ID.Loc, "constant expression type mismatch");
2441 V = ID.ConstantVal;
2442 return false;
2443 }
2444}
Daniel Dunbara279bc32009-09-20 02:20:51 +00002445
Chris Lattnera7352392009-12-30 04:42:57 +00002446/// ConvertGlobalOrMetadataValIDToValue - Apply a type to a ValID to get a fully
Victor Hernandezbf170d42010-01-05 22:22:14 +00002447/// resolved constant, metadata, or function-local value
Chris Lattnera7352392009-12-30 04:42:57 +00002448bool LLParser::ConvertGlobalOrMetadataValIDToValue(const Type *Ty, ValID &ID,
Victor Hernandezbf170d42010-01-05 22:22:14 +00002449 Value *&V,
2450 PerFunctionState *PFS) {
Chris Lattnera7352392009-12-30 04:42:57 +00002451 switch (ID.Kind) {
2452 case ValID::t_MDNode:
2453 if (!Ty->isMetadataTy())
2454 return Error(ID.Loc, "metadata value must have metadata type");
2455 V = ID.MDNodeVal;
2456 return false;
2457 case ValID::t_MDString:
2458 if (!Ty->isMetadataTy())
2459 return Error(ID.Loc, "metadata value must have metadata type");
2460 V = ID.MDStringVal;
2461 return false;
Victor Hernandezbf170d42010-01-05 22:22:14 +00002462 case ValID::t_LocalID:
2463 case ValID::t_LocalName:
2464 if (!PFS)
2465 return Error(ID.Loc, "invalid use of function-local name");
2466 if (ConvertValIDToValue(Ty, ID, V, *PFS)) return true;
2467 return false;
Chris Lattnera7352392009-12-30 04:42:57 +00002468 default:
2469 Constant *C;
2470 if (ConvertGlobalValIDToValue(Ty, ID, C)) return true;
2471 V = C;
2472 return false;
2473 }
2474}
2475
2476
Chris Lattnerdf986172009-01-02 07:01:27 +00002477bool LLParser::ParseGlobalTypeAndValue(Constant *&V) {
Owen Anderson1d0be152009-08-13 21:58:54 +00002478 PATypeHolder Type(Type::getVoidTy(Context));
Chris Lattnerdf986172009-01-02 07:01:27 +00002479 return ParseType(Type) ||
2480 ParseGlobalValue(Type, V);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002481}
Chris Lattnerdf986172009-01-02 07:01:27 +00002482
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002483/// ParseGlobalValueVector
2484/// ::= /*empty*/
2485/// ::= TypeAndValue (',' TypeAndValue)*
Chris Lattnerdf986172009-01-02 07:01:27 +00002486bool LLParser::ParseGlobalValueVector(SmallVectorImpl<Constant*> &Elts) {
2487 // Empty list.
2488 if (Lex.getKind() == lltok::rbrace ||
2489 Lex.getKind() == lltok::rsquare ||
2490 Lex.getKind() == lltok::greater ||
2491 Lex.getKind() == lltok::rparen)
2492 return false;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002493
Chris Lattnerdf986172009-01-02 07:01:27 +00002494 Constant *C;
2495 if (ParseGlobalTypeAndValue(C)) return true;
2496 Elts.push_back(C);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002497
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002498 while (EatIfPresent(lltok::comma)) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002499 if (ParseGlobalTypeAndValue(C)) return true;
2500 Elts.push_back(C);
2501 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002502
Chris Lattnerdf986172009-01-02 07:01:27 +00002503 return false;
2504}
2505
2506
2507//===----------------------------------------------------------------------===//
2508// Function Parsing.
2509//===----------------------------------------------------------------------===//
2510
2511bool LLParser::ConvertValIDToValue(const Type *Ty, ValID &ID, Value *&V,
2512 PerFunctionState &PFS) {
Chris Lattner287881d2009-12-30 02:11:14 +00002513 switch (ID.Kind) {
2514 case ValID::t_LocalID: V = PFS.GetVal(ID.UIntVal, Ty, ID.Loc); break;
2515 case ValID::t_LocalName: V = PFS.GetVal(ID.StrVal, Ty, ID.Loc); break;
Chris Lattner287881d2009-12-30 02:11:14 +00002516 case ValID::t_InlineAsm: {
Chris Lattnerdf986172009-01-02 07:01:27 +00002517 const PointerType *PTy = dyn_cast<PointerType>(Ty);
Chris Lattnerc49363b2009-12-30 02:20:07 +00002518 const FunctionType *FTy =
2519 PTy ? dyn_cast<FunctionType>(PTy->getElementType()) : 0;
Chris Lattnerdf986172009-01-02 07:01:27 +00002520 if (!FTy || !InlineAsm::Verify(FTy, ID.StrVal2))
2521 return Error(ID.Loc, "invalid type for inline asm constraint string");
Dale Johannesen43602982009-10-13 20:46:56 +00002522 V = InlineAsm::get(FTy, ID.StrVal, ID.StrVal2, ID.UIntVal&1, ID.UIntVal>>1);
Chris Lattnerdf986172009-01-02 07:01:27 +00002523 return false;
Chris Lattner287881d2009-12-30 02:11:14 +00002524 }
Chris Lattnera7352392009-12-30 04:42:57 +00002525 default:
Victor Hernandezbf170d42010-01-05 22:22:14 +00002526 return ConvertGlobalOrMetadataValIDToValue(Ty, ID, V, &PFS);
Chris Lattner287881d2009-12-30 02:11:14 +00002527 }
Chris Lattnerdf986172009-01-02 07:01:27 +00002528
2529 return V == 0;
2530}
2531
2532bool LLParser::ParseValue(const Type *Ty, Value *&V, PerFunctionState &PFS) {
2533 V = 0;
2534 ValID ID;
Victor Hernandezbf170d42010-01-05 22:22:14 +00002535 return ParseValID(ID, &PFS) ||
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002536 ConvertValIDToValue(Ty, ID, V, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00002537}
2538
2539bool LLParser::ParseTypeAndValue(Value *&V, PerFunctionState &PFS) {
Owen Anderson1d0be152009-08-13 21:58:54 +00002540 PATypeHolder T(Type::getVoidTy(Context));
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002541 return ParseType(T) ||
2542 ParseValue(T, V, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00002543}
2544
Chris Lattnerf9be95f2009-10-27 19:13:16 +00002545bool LLParser::ParseTypeAndBasicBlock(BasicBlock *&BB, LocTy &Loc,
2546 PerFunctionState &PFS) {
2547 Value *V;
2548 Loc = Lex.getLoc();
2549 if (ParseTypeAndValue(V, PFS)) return true;
2550 if (!isa<BasicBlock>(V))
2551 return Error(Loc, "expected a basic block");
2552 BB = cast<BasicBlock>(V);
2553 return false;
2554}
2555
2556
Chris Lattnerdf986172009-01-02 07:01:27 +00002557/// FunctionHeader
2558/// ::= OptionalLinkage OptionalVisibility OptionalCallingConv OptRetAttrs
2559/// Type GlobalName '(' ArgList ')' OptFuncAttrs OptSection
2560/// OptionalAlign OptGC
2561bool LLParser::ParseFunctionHeader(Function *&Fn, bool isDefine) {
2562 // Parse the linkage.
2563 LocTy LinkageLoc = Lex.getLoc();
2564 unsigned Linkage;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002565
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00002566 unsigned Visibility, RetAttrs;
2567 CallingConv::ID CC;
Owen Anderson1d0be152009-08-13 21:58:54 +00002568 PATypeHolder RetType(Type::getVoidTy(Context));
Chris Lattnerdf986172009-01-02 07:01:27 +00002569 LocTy RetTypeLoc = Lex.getLoc();
2570 if (ParseOptionalLinkage(Linkage) ||
2571 ParseOptionalVisibility(Visibility) ||
2572 ParseOptionalCallingConv(CC) ||
2573 ParseOptionalAttrs(RetAttrs, 1) ||
Chris Lattnera9a9e072009-03-09 04:49:14 +00002574 ParseType(RetType, RetTypeLoc, true /*void allowed*/))
Chris Lattnerdf986172009-01-02 07:01:27 +00002575 return true;
2576
2577 // Verify that the linkage is ok.
2578 switch ((GlobalValue::LinkageTypes)Linkage) {
2579 case GlobalValue::ExternalLinkage:
2580 break; // always ok.
2581 case GlobalValue::DLLImportLinkage:
Duncan Sands5f4ee1f2009-03-11 08:08:06 +00002582 case GlobalValue::ExternalWeakLinkage:
Chris Lattnerdf986172009-01-02 07:01:27 +00002583 if (isDefine)
2584 return Error(LinkageLoc, "invalid linkage for function definition");
2585 break;
Rafael Espindolabb46f522009-01-15 20:18:42 +00002586 case GlobalValue::PrivateLinkage:
Bill Wendling3d10a5a2009-07-20 01:03:30 +00002587 case GlobalValue::LinkerPrivateLinkage:
Chris Lattnerdf986172009-01-02 07:01:27 +00002588 case GlobalValue::InternalLinkage:
Nick Lewycky55f64db2009-04-13 07:02:02 +00002589 case GlobalValue::AvailableExternallyLinkage:
Duncan Sands667d4b82009-03-07 15:45:40 +00002590 case GlobalValue::LinkOnceAnyLinkage:
2591 case GlobalValue::LinkOnceODRLinkage:
2592 case GlobalValue::WeakAnyLinkage:
2593 case GlobalValue::WeakODRLinkage:
Chris Lattnerdf986172009-01-02 07:01:27 +00002594 case GlobalValue::DLLExportLinkage:
2595 if (!isDefine)
2596 return Error(LinkageLoc, "invalid linkage for function declaration");
2597 break;
2598 case GlobalValue::AppendingLinkage:
2599 case GlobalValue::GhostLinkage:
Duncan Sands4dc2b392009-03-11 20:14:15 +00002600 case GlobalValue::CommonLinkage:
Chris Lattnerdf986172009-01-02 07:01:27 +00002601 return Error(LinkageLoc, "invalid function linkage type");
2602 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002603
Chris Lattner99bb3152009-01-05 08:00:30 +00002604 if (!FunctionType::isValidReturnType(RetType) ||
2605 isa<OpaqueType>(RetType))
Chris Lattnerdf986172009-01-02 07:01:27 +00002606 return Error(RetTypeLoc, "invalid function return type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002607
Chris Lattnerdf986172009-01-02 07:01:27 +00002608 LocTy NameLoc = Lex.getLoc();
Chris Lattnerf570e622009-02-18 21:48:13 +00002609
2610 std::string FunctionName;
2611 if (Lex.getKind() == lltok::GlobalVar) {
2612 FunctionName = Lex.getStrVal();
2613 } else if (Lex.getKind() == lltok::GlobalID) { // @42 is ok.
2614 unsigned NameID = Lex.getUIntVal();
2615
2616 if (NameID != NumberedVals.size())
2617 return TokError("function expected to be numbered '%" +
2618 utostr(NumberedVals.size()) + "'");
2619 } else {
2620 return TokError("expected function name");
2621 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002622
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002623 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +00002624
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002625 if (Lex.getKind() != lltok::lparen)
Chris Lattnerdf986172009-01-02 07:01:27 +00002626 return TokError("expected '(' in function argument list");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002627
Chris Lattnerdf986172009-01-02 07:01:27 +00002628 std::vector<ArgInfo> ArgList;
2629 bool isVarArg;
Chris Lattnerdf986172009-01-02 07:01:27 +00002630 unsigned FuncAttrs;
Chris Lattnerdf986172009-01-02 07:01:27 +00002631 std::string Section;
Chris Lattnerdf986172009-01-02 07:01:27 +00002632 unsigned Alignment;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002633 std::string GC;
2634
Chris Lattnerdfd19dd2009-01-05 18:34:07 +00002635 if (ParseArgumentList(ArgList, isVarArg, false) ||
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002636 ParseOptionalAttrs(FuncAttrs, 2) ||
2637 (EatIfPresent(lltok::kw_section) &&
2638 ParseStringConstant(Section)) ||
2639 ParseOptionalAlignment(Alignment) ||
2640 (EatIfPresent(lltok::kw_gc) &&
2641 ParseStringConstant(GC)))
2642 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00002643
2644 // If the alignment was parsed as an attribute, move to the alignment field.
2645 if (FuncAttrs & Attribute::Alignment) {
2646 Alignment = Attribute::getAlignmentFromAttrs(FuncAttrs);
2647 FuncAttrs &= ~Attribute::Alignment;
2648 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002649
Chris Lattnerdf986172009-01-02 07:01:27 +00002650 // Okay, if we got here, the function is syntactically valid. Convert types
2651 // and do semantic checks.
2652 std::vector<const Type*> ParamTypeList;
2653 SmallVector<AttributeWithIndex, 8> Attrs;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002654 // FIXME : In 3.0, stop accepting zext, sext and inreg as optional function
Chris Lattnerdf986172009-01-02 07:01:27 +00002655 // attributes.
2656 unsigned ObsoleteFuncAttrs = Attribute::ZExt|Attribute::SExt|Attribute::InReg;
2657 if (FuncAttrs & ObsoleteFuncAttrs) {
2658 RetAttrs |= FuncAttrs & ObsoleteFuncAttrs;
2659 FuncAttrs &= ~ObsoleteFuncAttrs;
2660 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002661
Chris Lattnerdf986172009-01-02 07:01:27 +00002662 if (RetAttrs != Attribute::None)
2663 Attrs.push_back(AttributeWithIndex::get(0, RetAttrs));
Daniel Dunbara279bc32009-09-20 02:20:51 +00002664
Chris Lattnerdf986172009-01-02 07:01:27 +00002665 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
2666 ParamTypeList.push_back(ArgList[i].Type);
2667 if (ArgList[i].Attrs != Attribute::None)
2668 Attrs.push_back(AttributeWithIndex::get(i+1, ArgList[i].Attrs));
2669 }
2670
2671 if (FuncAttrs != Attribute::None)
2672 Attrs.push_back(AttributeWithIndex::get(~0, FuncAttrs));
2673
2674 AttrListPtr PAL = AttrListPtr::get(Attrs.begin(), Attrs.end());
Daniel Dunbara279bc32009-09-20 02:20:51 +00002675
Benjamin Kramerf0127052010-01-05 13:12:22 +00002676 if (PAL.paramHasAttr(1, Attribute::StructRet) && !RetType->isVoidTy())
Daniel Dunbara279bc32009-09-20 02:20:51 +00002677 return Error(RetTypeLoc, "functions with 'sret' argument must return void");
2678
Owen Andersonfba933c2009-07-01 23:57:11 +00002679 const FunctionType *FT =
Owen Andersondebcb012009-07-29 22:17:13 +00002680 FunctionType::get(RetType, ParamTypeList, isVarArg);
2681 const PointerType *PFT = PointerType::getUnqual(FT);
Chris Lattnerdf986172009-01-02 07:01:27 +00002682
2683 Fn = 0;
2684 if (!FunctionName.empty()) {
2685 // If this was a definition of a forward reference, remove the definition
2686 // from the forward reference table and fill in the forward ref.
2687 std::map<std::string, std::pair<GlobalValue*, LocTy> >::iterator FRVI =
2688 ForwardRefVals.find(FunctionName);
2689 if (FRVI != ForwardRefVals.end()) {
2690 Fn = M->getFunction(FunctionName);
2691 ForwardRefVals.erase(FRVI);
2692 } else if ((Fn = M->getFunction(FunctionName))) {
2693 // If this function already exists in the symbol table, then it is
2694 // multiply defined. We accept a few cases for old backwards compat.
2695 // FIXME: Remove this stuff for LLVM 3.0.
2696 if (Fn->getType() != PFT || Fn->getAttributes() != PAL ||
2697 (!Fn->isDeclaration() && isDefine)) {
2698 // If the redefinition has different type or different attributes,
2699 // reject it. If both have bodies, reject it.
2700 return Error(NameLoc, "invalid redefinition of function '" +
2701 FunctionName + "'");
2702 } else if (Fn->isDeclaration()) {
2703 // Make sure to strip off any argument names so we can't get conflicts.
2704 for (Function::arg_iterator AI = Fn->arg_begin(), AE = Fn->arg_end();
2705 AI != AE; ++AI)
2706 AI->setName("");
2707 }
Chris Lattner1d871c52009-10-25 23:22:50 +00002708 } else if (M->getNamedValue(FunctionName)) {
2709 return Error(NameLoc, "redefinition of function '@" + FunctionName + "'");
Chris Lattnerdf986172009-01-02 07:01:27 +00002710 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002711
Dan Gohman41905542009-08-29 23:37:49 +00002712 } else {
Chris Lattnerdf986172009-01-02 07:01:27 +00002713 // If this is a definition of a forward referenced function, make sure the
2714 // types agree.
2715 std::map<unsigned, std::pair<GlobalValue*, LocTy> >::iterator I
2716 = ForwardRefValIDs.find(NumberedVals.size());
2717 if (I != ForwardRefValIDs.end()) {
2718 Fn = cast<Function>(I->second.first);
2719 if (Fn->getType() != PFT)
2720 return Error(NameLoc, "type of definition and forward reference of '@" +
2721 utostr(NumberedVals.size()) +"' disagree");
2722 ForwardRefValIDs.erase(I);
2723 }
2724 }
2725
2726 if (Fn == 0)
2727 Fn = Function::Create(FT, GlobalValue::ExternalLinkage, FunctionName, M);
2728 else // Move the forward-reference to the correct spot in the module.
2729 M->getFunctionList().splice(M->end(), M->getFunctionList(), Fn);
2730
2731 if (FunctionName.empty())
2732 NumberedVals.push_back(Fn);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002733
Chris Lattnerdf986172009-01-02 07:01:27 +00002734 Fn->setLinkage((GlobalValue::LinkageTypes)Linkage);
2735 Fn->setVisibility((GlobalValue::VisibilityTypes)Visibility);
2736 Fn->setCallingConv(CC);
2737 Fn->setAttributes(PAL);
2738 Fn->setAlignment(Alignment);
2739 Fn->setSection(Section);
2740 if (!GC.empty()) Fn->setGC(GC.c_str());
Daniel Dunbara279bc32009-09-20 02:20:51 +00002741
Chris Lattnerdf986172009-01-02 07:01:27 +00002742 // Add all of the arguments we parsed to the function.
2743 Function::arg_iterator ArgIt = Fn->arg_begin();
2744 for (unsigned i = 0, e = ArgList.size(); i != e; ++i, ++ArgIt) {
Chris Lattner5bda3792009-11-26 22:48:23 +00002745 // If we run out of arguments in the Function prototype, exit early.
2746 // FIXME: REMOVE THIS IN LLVM 3.0, this is just for the mismatch case above.
2747 if (ArgIt == Fn->arg_end()) break;
2748
Chris Lattnerdf986172009-01-02 07:01:27 +00002749 // If the argument has a name, insert it into the argument symbol table.
2750 if (ArgList[i].Name.empty()) continue;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002751
Chris Lattnerdf986172009-01-02 07:01:27 +00002752 // Set the name, if it conflicted, it will be auto-renamed.
2753 ArgIt->setName(ArgList[i].Name);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002754
Chris Lattnerdf986172009-01-02 07:01:27 +00002755 if (ArgIt->getNameStr() != ArgList[i].Name)
2756 return Error(ArgList[i].Loc, "redefinition of argument '%" +
2757 ArgList[i].Name + "'");
2758 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002759
Chris Lattnerdf986172009-01-02 07:01:27 +00002760 return false;
2761}
2762
2763
2764/// ParseFunctionBody
2765/// ::= '{' BasicBlock+ '}'
2766/// ::= 'begin' BasicBlock+ 'end' // FIXME: remove in LLVM 3.0
2767///
2768bool LLParser::ParseFunctionBody(Function &Fn) {
2769 if (Lex.getKind() != lltok::lbrace && Lex.getKind() != lltok::kw_begin)
2770 return TokError("expected '{' in function body");
2771 Lex.Lex(); // eat the {.
Daniel Dunbara279bc32009-09-20 02:20:51 +00002772
Chris Lattner09d9ef42009-10-28 03:39:23 +00002773 int FunctionNumber = -1;
2774 if (!Fn.hasName()) FunctionNumber = NumberedVals.size()-1;
2775
2776 PerFunctionState PFS(*this, Fn, FunctionNumber);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002777
Chris Lattnerdf986172009-01-02 07:01:27 +00002778 while (Lex.getKind() != lltok::rbrace && Lex.getKind() != lltok::kw_end)
2779 if (ParseBasicBlock(PFS)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002780
Chris Lattnerdf986172009-01-02 07:01:27 +00002781 // Eat the }.
2782 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +00002783
Chris Lattnerdf986172009-01-02 07:01:27 +00002784 // Verify function is ok.
Chris Lattner09d9ef42009-10-28 03:39:23 +00002785 return PFS.FinishFunction();
Chris Lattnerdf986172009-01-02 07:01:27 +00002786}
2787
2788/// ParseBasicBlock
2789/// ::= LabelStr? Instruction*
2790bool LLParser::ParseBasicBlock(PerFunctionState &PFS) {
2791 // If this basic block starts out with a name, remember it.
2792 std::string Name;
2793 LocTy NameLoc = Lex.getLoc();
2794 if (Lex.getKind() == lltok::LabelStr) {
2795 Name = Lex.getStrVal();
2796 Lex.Lex();
2797 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002798
Chris Lattnerdf986172009-01-02 07:01:27 +00002799 BasicBlock *BB = PFS.DefineBB(Name, NameLoc);
2800 if (BB == 0) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002801
Chris Lattnerdf986172009-01-02 07:01:27 +00002802 std::string NameStr;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002803
Chris Lattnerdf986172009-01-02 07:01:27 +00002804 // Parse the instructions in this block until we get a terminator.
2805 Instruction *Inst;
Chris Lattner1340dd32009-12-30 05:48:36 +00002806 SmallVector<std::pair<unsigned, MDNode *>, 4> MetadataOnInst;
Chris Lattnerdf986172009-01-02 07:01:27 +00002807 do {
2808 // This instruction may have three possibilities for a name: a) none
2809 // specified, b) name specified "%foo =", c) number specified: "%4 =".
2810 LocTy NameLoc = Lex.getLoc();
2811 int NameID = -1;
2812 NameStr = "";
Daniel Dunbara279bc32009-09-20 02:20:51 +00002813
Chris Lattnerdf986172009-01-02 07:01:27 +00002814 if (Lex.getKind() == lltok::LocalVarID) {
2815 NameID = Lex.getUIntVal();
2816 Lex.Lex();
2817 if (ParseToken(lltok::equal, "expected '=' after instruction id"))
2818 return true;
2819 } else if (Lex.getKind() == lltok::LocalVar ||
2820 // FIXME: REMOVE IN LLVM 3.0
2821 Lex.getKind() == lltok::StringConstant) {
2822 NameStr = Lex.getStrVal();
2823 Lex.Lex();
2824 if (ParseToken(lltok::equal, "expected '=' after instruction name"))
2825 return true;
2826 }
Devang Patelf633a062009-09-17 23:04:48 +00002827
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00002828 switch (ParseInstruction(Inst, BB, PFS)) {
2829 default: assert(0 && "Unknown ParseInstruction result!");
2830 case InstError: return true;
2831 case InstNormal:
2832 // With a normal result, we check to see if the instruction is followed by
2833 // a comma and metadata.
2834 if (EatIfPresent(lltok::comma))
Chris Lattner1340dd32009-12-30 05:48:36 +00002835 if (ParseInstructionMetadata(MetadataOnInst))
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00002836 return true;
2837 break;
2838 case InstExtraComma:
2839 // If the instruction parser ate an extra comma at the end of it, it
2840 // *must* be followed by metadata.
Chris Lattner1340dd32009-12-30 05:48:36 +00002841 if (ParseInstructionMetadata(MetadataOnInst))
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00002842 return true;
2843 break;
2844 }
Devang Patelf633a062009-09-17 23:04:48 +00002845
2846 // Set metadata attached with this instruction.
Chris Lattner1340dd32009-12-30 05:48:36 +00002847 for (unsigned i = 0, e = MetadataOnInst.size(); i != e; ++i)
2848 Inst->setMetadata(MetadataOnInst[i].first, MetadataOnInst[i].second);
2849 MetadataOnInst.clear();
Devang Patelf633a062009-09-17 23:04:48 +00002850
Chris Lattnerdf986172009-01-02 07:01:27 +00002851 BB->getInstList().push_back(Inst);
2852
2853 // Set the name on the instruction.
2854 if (PFS.SetInstName(NameID, NameStr, NameLoc, Inst)) return true;
2855 } while (!isa<TerminatorInst>(Inst));
Daniel Dunbara279bc32009-09-20 02:20:51 +00002856
Chris Lattnerdf986172009-01-02 07:01:27 +00002857 return false;
2858}
2859
2860//===----------------------------------------------------------------------===//
2861// Instruction Parsing.
2862//===----------------------------------------------------------------------===//
2863
2864/// ParseInstruction - Parse one of the many different instructions.
2865///
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00002866int LLParser::ParseInstruction(Instruction *&Inst, BasicBlock *BB,
2867 PerFunctionState &PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002868 lltok::Kind Token = Lex.getKind();
2869 if (Token == lltok::Eof)
2870 return TokError("found end of file when expecting more instructions");
2871 LocTy Loc = Lex.getLoc();
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00002872 unsigned KeywordVal = Lex.getUIntVal();
Chris Lattnerdf986172009-01-02 07:01:27 +00002873 Lex.Lex(); // Eat the keyword.
Daniel Dunbara279bc32009-09-20 02:20:51 +00002874
Chris Lattnerdf986172009-01-02 07:01:27 +00002875 switch (Token) {
2876 default: return Error(Loc, "expected instruction opcode");
2877 // Terminator Instructions.
Owen Anderson1d0be152009-08-13 21:58:54 +00002878 case lltok::kw_unwind: Inst = new UnwindInst(Context); return false;
2879 case lltok::kw_unreachable: Inst = new UnreachableInst(Context); return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00002880 case lltok::kw_ret: return ParseRet(Inst, BB, PFS);
2881 case lltok::kw_br: return ParseBr(Inst, PFS);
2882 case lltok::kw_switch: return ParseSwitch(Inst, PFS);
Chris Lattnerab21db72009-10-28 00:19:10 +00002883 case lltok::kw_indirectbr: return ParseIndirectBr(Inst, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00002884 case lltok::kw_invoke: return ParseInvoke(Inst, PFS);
2885 // Binary Operators.
2886 case lltok::kw_add:
2887 case lltok::kw_sub:
Dan Gohman59858cf2009-07-27 16:11:46 +00002888 case lltok::kw_mul: {
2889 bool NUW = false;
2890 bool NSW = false;
2891 LocTy ModifierLoc = Lex.getLoc();
2892 if (EatIfPresent(lltok::kw_nuw))
2893 NUW = true;
2894 if (EatIfPresent(lltok::kw_nsw)) {
2895 NSW = true;
2896 if (EatIfPresent(lltok::kw_nuw))
2897 NUW = true;
2898 }
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002899 // API compatibility: Accept either integer or floating-point types.
Dan Gohman59858cf2009-07-27 16:11:46 +00002900 bool Result = ParseArithmetic(Inst, PFS, KeywordVal, 0);
2901 if (!Result) {
2902 if (!Inst->getType()->isIntOrIntVector()) {
2903 if (NUW)
2904 return Error(ModifierLoc, "nuw only applies to integer operations");
2905 if (NSW)
2906 return Error(ModifierLoc, "nsw only applies to integer operations");
2907 }
2908 if (NUW)
Dan Gohmanf8dbee72009-09-07 23:54:19 +00002909 cast<BinaryOperator>(Inst)->setHasNoUnsignedWrap(true);
Dan Gohman59858cf2009-07-27 16:11:46 +00002910 if (NSW)
Dan Gohmanf8dbee72009-09-07 23:54:19 +00002911 cast<BinaryOperator>(Inst)->setHasNoSignedWrap(true);
Dan Gohman59858cf2009-07-27 16:11:46 +00002912 }
2913 return Result;
2914 }
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002915 case lltok::kw_fadd:
2916 case lltok::kw_fsub:
2917 case lltok::kw_fmul: return ParseArithmetic(Inst, PFS, KeywordVal, 2);
2918
Dan Gohman59858cf2009-07-27 16:11:46 +00002919 case lltok::kw_sdiv: {
2920 bool Exact = false;
2921 if (EatIfPresent(lltok::kw_exact))
2922 Exact = true;
2923 bool Result = ParseArithmetic(Inst, PFS, KeywordVal, 1);
2924 if (!Result)
2925 if (Exact)
Dan Gohmanf8dbee72009-09-07 23:54:19 +00002926 cast<BinaryOperator>(Inst)->setIsExact(true);
Dan Gohman59858cf2009-07-27 16:11:46 +00002927 return Result;
2928 }
2929
Chris Lattnerdf986172009-01-02 07:01:27 +00002930 case lltok::kw_udiv:
Chris Lattnerdf986172009-01-02 07:01:27 +00002931 case lltok::kw_urem:
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00002932 case lltok::kw_srem: return ParseArithmetic(Inst, PFS, KeywordVal, 1);
Chris Lattnere914b592009-01-05 08:24:46 +00002933 case lltok::kw_fdiv:
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00002934 case lltok::kw_frem: return ParseArithmetic(Inst, PFS, KeywordVal, 2);
Chris Lattnerdf986172009-01-02 07:01:27 +00002935 case lltok::kw_shl:
2936 case lltok::kw_lshr:
2937 case lltok::kw_ashr:
2938 case lltok::kw_and:
2939 case lltok::kw_or:
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00002940 case lltok::kw_xor: return ParseLogical(Inst, PFS, KeywordVal);
Chris Lattnerdf986172009-01-02 07:01:27 +00002941 case lltok::kw_icmp:
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00002942 case lltok::kw_fcmp: return ParseCompare(Inst, PFS, KeywordVal);
Chris Lattnerdf986172009-01-02 07:01:27 +00002943 // Casts.
2944 case lltok::kw_trunc:
2945 case lltok::kw_zext:
2946 case lltok::kw_sext:
2947 case lltok::kw_fptrunc:
2948 case lltok::kw_fpext:
2949 case lltok::kw_bitcast:
2950 case lltok::kw_uitofp:
2951 case lltok::kw_sitofp:
2952 case lltok::kw_fptoui:
Daniel Dunbara279bc32009-09-20 02:20:51 +00002953 case lltok::kw_fptosi:
Chris Lattnerdf986172009-01-02 07:01:27 +00002954 case lltok::kw_inttoptr:
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00002955 case lltok::kw_ptrtoint: return ParseCast(Inst, PFS, KeywordVal);
Chris Lattnerdf986172009-01-02 07:01:27 +00002956 // Other.
2957 case lltok::kw_select: return ParseSelect(Inst, PFS);
Chris Lattner0088a5c2009-01-05 08:18:44 +00002958 case lltok::kw_va_arg: return ParseVA_Arg(Inst, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00002959 case lltok::kw_extractelement: return ParseExtractElement(Inst, PFS);
2960 case lltok::kw_insertelement: return ParseInsertElement(Inst, PFS);
2961 case lltok::kw_shufflevector: return ParseShuffleVector(Inst, PFS);
2962 case lltok::kw_phi: return ParsePHI(Inst, PFS);
2963 case lltok::kw_call: return ParseCall(Inst, PFS, false);
2964 case lltok::kw_tail: return ParseCall(Inst, PFS, true);
2965 // Memory.
Victor Hernandez13ad5aa2009-10-17 00:00:19 +00002966 case lltok::kw_alloca: return ParseAlloc(Inst, PFS);
2967 case lltok::kw_malloc: return ParseAlloc(Inst, PFS, BB, false);
Victor Hernandez66284e02009-10-24 04:23:03 +00002968 case lltok::kw_free: return ParseFree(Inst, PFS, BB);
Chris Lattnerdf986172009-01-02 07:01:27 +00002969 case lltok::kw_load: return ParseLoad(Inst, PFS, false);
2970 case lltok::kw_store: return ParseStore(Inst, PFS, false);
2971 case lltok::kw_volatile:
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002972 if (EatIfPresent(lltok::kw_load))
Chris Lattnerdf986172009-01-02 07:01:27 +00002973 return ParseLoad(Inst, PFS, true);
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002974 else if (EatIfPresent(lltok::kw_store))
Chris Lattnerdf986172009-01-02 07:01:27 +00002975 return ParseStore(Inst, PFS, true);
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002976 else
Chris Lattnerdf986172009-01-02 07:01:27 +00002977 return TokError("expected 'load' or 'store'");
Chris Lattnerdf986172009-01-02 07:01:27 +00002978 case lltok::kw_getresult: return ParseGetResult(Inst, PFS);
2979 case lltok::kw_getelementptr: return ParseGetElementPtr(Inst, PFS);
2980 case lltok::kw_extractvalue: return ParseExtractValue(Inst, PFS);
2981 case lltok::kw_insertvalue: return ParseInsertValue(Inst, PFS);
2982 }
2983}
2984
2985/// ParseCmpPredicate - Parse an integer or fp predicate, based on Kind.
2986bool LLParser::ParseCmpPredicate(unsigned &P, unsigned Opc) {
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00002987 if (Opc == Instruction::FCmp) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002988 switch (Lex.getKind()) {
2989 default: TokError("expected fcmp predicate (e.g. 'oeq')");
2990 case lltok::kw_oeq: P = CmpInst::FCMP_OEQ; break;
2991 case lltok::kw_one: P = CmpInst::FCMP_ONE; break;
2992 case lltok::kw_olt: P = CmpInst::FCMP_OLT; break;
2993 case lltok::kw_ogt: P = CmpInst::FCMP_OGT; break;
2994 case lltok::kw_ole: P = CmpInst::FCMP_OLE; break;
2995 case lltok::kw_oge: P = CmpInst::FCMP_OGE; break;
2996 case lltok::kw_ord: P = CmpInst::FCMP_ORD; break;
2997 case lltok::kw_uno: P = CmpInst::FCMP_UNO; break;
2998 case lltok::kw_ueq: P = CmpInst::FCMP_UEQ; break;
2999 case lltok::kw_une: P = CmpInst::FCMP_UNE; break;
3000 case lltok::kw_ult: P = CmpInst::FCMP_ULT; break;
3001 case lltok::kw_ugt: P = CmpInst::FCMP_UGT; break;
3002 case lltok::kw_ule: P = CmpInst::FCMP_ULE; break;
3003 case lltok::kw_uge: P = CmpInst::FCMP_UGE; break;
3004 case lltok::kw_true: P = CmpInst::FCMP_TRUE; break;
3005 case lltok::kw_false: P = CmpInst::FCMP_FALSE; break;
3006 }
3007 } else {
3008 switch (Lex.getKind()) {
3009 default: TokError("expected icmp predicate (e.g. 'eq')");
3010 case lltok::kw_eq: P = CmpInst::ICMP_EQ; break;
3011 case lltok::kw_ne: P = CmpInst::ICMP_NE; break;
3012 case lltok::kw_slt: P = CmpInst::ICMP_SLT; break;
3013 case lltok::kw_sgt: P = CmpInst::ICMP_SGT; break;
3014 case lltok::kw_sle: P = CmpInst::ICMP_SLE; break;
3015 case lltok::kw_sge: P = CmpInst::ICMP_SGE; break;
3016 case lltok::kw_ult: P = CmpInst::ICMP_ULT; break;
3017 case lltok::kw_ugt: P = CmpInst::ICMP_UGT; break;
3018 case lltok::kw_ule: P = CmpInst::ICMP_ULE; break;
3019 case lltok::kw_uge: P = CmpInst::ICMP_UGE; break;
3020 }
3021 }
3022 Lex.Lex();
3023 return false;
3024}
3025
3026//===----------------------------------------------------------------------===//
3027// Terminator Instructions.
3028//===----------------------------------------------------------------------===//
3029
3030/// ParseRet - Parse a return instruction.
Chris Lattner3f3a0f62009-12-29 21:25:40 +00003031/// ::= 'ret' void (',' !dbg, !1)*
3032/// ::= 'ret' TypeAndValue (',' !dbg, !1)*
3033/// ::= 'ret' TypeAndValue (',' TypeAndValue)+ (',' !dbg, !1)*
Devang Patelf633a062009-09-17 23:04:48 +00003034/// [[obsolete: LLVM 3.0]]
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00003035int LLParser::ParseRet(Instruction *&Inst, BasicBlock *BB,
3036 PerFunctionState &PFS) {
Owen Anderson1d0be152009-08-13 21:58:54 +00003037 PATypeHolder Ty(Type::getVoidTy(Context));
Chris Lattnera9a9e072009-03-09 04:49:14 +00003038 if (ParseType(Ty, true /*void allowed*/)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003039
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00003040 if (Ty->isVoidTy()) {
Owen Anderson1d0be152009-08-13 21:58:54 +00003041 Inst = ReturnInst::Create(Context);
Chris Lattnerdf986172009-01-02 07:01:27 +00003042 return false;
3043 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003044
Chris Lattnerdf986172009-01-02 07:01:27 +00003045 Value *RV;
3046 if (ParseValue(Ty, RV, PFS)) return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00003047
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00003048 bool ExtraComma = false;
Devang Patelf633a062009-09-17 23:04:48 +00003049 if (EatIfPresent(lltok::comma)) {
Devang Patel0475c912009-09-29 00:01:14 +00003050 // Parse optional custom metadata, e.g. !dbg
Chris Lattner1d928312009-12-30 05:02:06 +00003051 if (Lex.getKind() == lltok::MetadataVar) {
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00003052 ExtraComma = true;
Devang Patelf633a062009-09-17 23:04:48 +00003053 } else {
3054 // The normal case is one return value.
Chris Lattner3f3a0f62009-12-29 21:25:40 +00003055 // FIXME: LLVM 3.0 remove MRV support for 'ret i32 1, i32 2', requiring
3056 // use of 'ret {i32,i32} {i32 1, i32 2}'
Devang Patelf633a062009-09-17 23:04:48 +00003057 SmallVector<Value*, 8> RVs;
3058 RVs.push_back(RV);
Daniel Dunbara279bc32009-09-20 02:20:51 +00003059
Devang Patelf633a062009-09-17 23:04:48 +00003060 do {
Devang Patel0475c912009-09-29 00:01:14 +00003061 // If optional custom metadata, e.g. !dbg is seen then this is the
3062 // end of MRV.
Chris Lattner1d928312009-12-30 05:02:06 +00003063 if (Lex.getKind() == lltok::MetadataVar)
Daniel Dunbara279bc32009-09-20 02:20:51 +00003064 break;
3065 if (ParseTypeAndValue(RV, PFS)) return true;
3066 RVs.push_back(RV);
Devang Patelf633a062009-09-17 23:04:48 +00003067 } while (EatIfPresent(lltok::comma));
3068
3069 RV = UndefValue::get(PFS.getFunction().getReturnType());
3070 for (unsigned i = 0, e = RVs.size(); i != e; ++i) {
Daniel Dunbara279bc32009-09-20 02:20:51 +00003071 Instruction *I = InsertValueInst::Create(RV, RVs[i], i, "mrv");
3072 BB->getInstList().push_back(I);
3073 RV = I;
Devang Patelf633a062009-09-17 23:04:48 +00003074 }
Chris Lattnerdf986172009-01-02 07:01:27 +00003075 }
3076 }
Devang Patelf633a062009-09-17 23:04:48 +00003077
Owen Anderson1d0be152009-08-13 21:58:54 +00003078 Inst = ReturnInst::Create(Context, RV);
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00003079 return ExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerdf986172009-01-02 07:01:27 +00003080}
3081
3082
3083/// ParseBr
3084/// ::= 'br' TypeAndValue
3085/// ::= 'br' TypeAndValue ',' TypeAndValue ',' TypeAndValue
3086bool LLParser::ParseBr(Instruction *&Inst, PerFunctionState &PFS) {
3087 LocTy Loc, Loc2;
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003088 Value *Op0;
3089 BasicBlock *Op1, *Op2;
Chris Lattnerdf986172009-01-02 07:01:27 +00003090 if (ParseTypeAndValue(Op0, Loc, PFS)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003091
Chris Lattnerdf986172009-01-02 07:01:27 +00003092 if (BasicBlock *BB = dyn_cast<BasicBlock>(Op0)) {
3093 Inst = BranchInst::Create(BB);
3094 return false;
3095 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003096
Owen Anderson1d0be152009-08-13 21:58:54 +00003097 if (Op0->getType() != Type::getInt1Ty(Context))
Chris Lattnerdf986172009-01-02 07:01:27 +00003098 return Error(Loc, "branch condition must have 'i1' type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003099
Chris Lattnerdf986172009-01-02 07:01:27 +00003100 if (ParseToken(lltok::comma, "expected ',' after branch condition") ||
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003101 ParseTypeAndBasicBlock(Op1, Loc, PFS) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003102 ParseToken(lltok::comma, "expected ',' after true destination") ||
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003103 ParseTypeAndBasicBlock(Op2, Loc2, PFS))
Chris Lattnerdf986172009-01-02 07:01:27 +00003104 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003105
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003106 Inst = BranchInst::Create(Op1, Op2, Op0);
Chris Lattnerdf986172009-01-02 07:01:27 +00003107 return false;
3108}
3109
3110/// ParseSwitch
3111/// Instruction
3112/// ::= 'switch' TypeAndValue ',' TypeAndValue '[' JumpTable ']'
3113/// JumpTable
3114/// ::= (TypeAndValue ',' TypeAndValue)*
3115bool LLParser::ParseSwitch(Instruction *&Inst, PerFunctionState &PFS) {
3116 LocTy CondLoc, BBLoc;
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003117 Value *Cond;
3118 BasicBlock *DefaultBB;
Chris Lattnerdf986172009-01-02 07:01:27 +00003119 if (ParseTypeAndValue(Cond, CondLoc, PFS) ||
3120 ParseToken(lltok::comma, "expected ',' after switch condition") ||
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003121 ParseTypeAndBasicBlock(DefaultBB, BBLoc, PFS) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003122 ParseToken(lltok::lsquare, "expected '[' with switch table"))
3123 return true;
3124
3125 if (!isa<IntegerType>(Cond->getType()))
3126 return Error(CondLoc, "switch condition must have integer type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003127
Chris Lattnerdf986172009-01-02 07:01:27 +00003128 // Parse the jump table pairs.
3129 SmallPtrSet<Value*, 32> SeenCases;
3130 SmallVector<std::pair<ConstantInt*, BasicBlock*>, 32> Table;
3131 while (Lex.getKind() != lltok::rsquare) {
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003132 Value *Constant;
3133 BasicBlock *DestBB;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003134
Chris Lattnerdf986172009-01-02 07:01:27 +00003135 if (ParseTypeAndValue(Constant, CondLoc, PFS) ||
3136 ParseToken(lltok::comma, "expected ',' after case value") ||
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003137 ParseTypeAndBasicBlock(DestBB, PFS))
Chris Lattnerdf986172009-01-02 07:01:27 +00003138 return true;
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003139
Chris Lattnerdf986172009-01-02 07:01:27 +00003140 if (!SeenCases.insert(Constant))
3141 return Error(CondLoc, "duplicate case value in switch");
3142 if (!isa<ConstantInt>(Constant))
3143 return Error(CondLoc, "case value is not a constant integer");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003144
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003145 Table.push_back(std::make_pair(cast<ConstantInt>(Constant), DestBB));
Chris Lattnerdf986172009-01-02 07:01:27 +00003146 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003147
Chris Lattnerdf986172009-01-02 07:01:27 +00003148 Lex.Lex(); // Eat the ']'.
Daniel Dunbara279bc32009-09-20 02:20:51 +00003149
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003150 SwitchInst *SI = SwitchInst::Create(Cond, DefaultBB, Table.size());
Chris Lattnerdf986172009-01-02 07:01:27 +00003151 for (unsigned i = 0, e = Table.size(); i != e; ++i)
3152 SI->addCase(Table[i].first, Table[i].second);
3153 Inst = SI;
3154 return false;
3155}
3156
Chris Lattnerab21db72009-10-28 00:19:10 +00003157/// ParseIndirectBr
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003158/// Instruction
Chris Lattnerab21db72009-10-28 00:19:10 +00003159/// ::= 'indirectbr' TypeAndValue ',' '[' LabelList ']'
3160bool LLParser::ParseIndirectBr(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003161 LocTy AddrLoc;
3162 Value *Address;
3163 if (ParseTypeAndValue(Address, AddrLoc, PFS) ||
Chris Lattnerab21db72009-10-28 00:19:10 +00003164 ParseToken(lltok::comma, "expected ',' after indirectbr address") ||
3165 ParseToken(lltok::lsquare, "expected '[' with indirectbr"))
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003166 return true;
3167
3168 if (!isa<PointerType>(Address->getType()))
Chris Lattnerab21db72009-10-28 00:19:10 +00003169 return Error(AddrLoc, "indirectbr address must have pointer type");
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003170
3171 // Parse the destination list.
3172 SmallVector<BasicBlock*, 16> DestList;
3173
3174 if (Lex.getKind() != lltok::rsquare) {
3175 BasicBlock *DestBB;
3176 if (ParseTypeAndBasicBlock(DestBB, PFS))
3177 return true;
3178 DestList.push_back(DestBB);
3179
3180 while (EatIfPresent(lltok::comma)) {
3181 if (ParseTypeAndBasicBlock(DestBB, PFS))
3182 return true;
3183 DestList.push_back(DestBB);
3184 }
3185 }
3186
3187 if (ParseToken(lltok::rsquare, "expected ']' at end of block list"))
3188 return true;
3189
Chris Lattnerab21db72009-10-28 00:19:10 +00003190 IndirectBrInst *IBI = IndirectBrInst::Create(Address, DestList.size());
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003191 for (unsigned i = 0, e = DestList.size(); i != e; ++i)
3192 IBI->addDestination(DestList[i]);
3193 Inst = IBI;
3194 return false;
3195}
3196
3197
Chris Lattnerdf986172009-01-02 07:01:27 +00003198/// ParseInvoke
3199/// ::= 'invoke' OptionalCallingConv OptionalAttrs Type Value ParamList
3200/// OptionalAttrs 'to' TypeAndValue 'unwind' TypeAndValue
3201bool LLParser::ParseInvoke(Instruction *&Inst, PerFunctionState &PFS) {
3202 LocTy CallLoc = Lex.getLoc();
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00003203 unsigned RetAttrs, FnAttrs;
3204 CallingConv::ID CC;
Owen Anderson1d0be152009-08-13 21:58:54 +00003205 PATypeHolder RetType(Type::getVoidTy(Context));
Chris Lattnerdf986172009-01-02 07:01:27 +00003206 LocTy RetTypeLoc;
3207 ValID CalleeID;
3208 SmallVector<ParamInfo, 16> ArgList;
3209
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003210 BasicBlock *NormalBB, *UnwindBB;
Chris Lattnerdf986172009-01-02 07:01:27 +00003211 if (ParseOptionalCallingConv(CC) ||
3212 ParseOptionalAttrs(RetAttrs, 1) ||
Chris Lattnera9a9e072009-03-09 04:49:14 +00003213 ParseType(RetType, RetTypeLoc, true /*void allowed*/) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003214 ParseValID(CalleeID) ||
3215 ParseParameterList(ArgList, PFS) ||
3216 ParseOptionalAttrs(FnAttrs, 2) ||
3217 ParseToken(lltok::kw_to, "expected 'to' in invoke") ||
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003218 ParseTypeAndBasicBlock(NormalBB, PFS) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003219 ParseToken(lltok::kw_unwind, "expected 'unwind' in invoke") ||
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003220 ParseTypeAndBasicBlock(UnwindBB, PFS))
Chris Lattnerdf986172009-01-02 07:01:27 +00003221 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003222
Chris Lattnerdf986172009-01-02 07:01:27 +00003223 // If RetType is a non-function pointer type, then this is the short syntax
3224 // for the call, which means that RetType is just the return type. Infer the
3225 // rest of the function argument types from the arguments that are present.
3226 const PointerType *PFTy = 0;
3227 const FunctionType *Ty = 0;
3228 if (!(PFTy = dyn_cast<PointerType>(RetType)) ||
3229 !(Ty = dyn_cast<FunctionType>(PFTy->getElementType()))) {
3230 // Pull out the types of all of the arguments...
3231 std::vector<const Type*> ParamTypes;
3232 for (unsigned i = 0, e = ArgList.size(); i != e; ++i)
3233 ParamTypes.push_back(ArgList[i].V->getType());
Daniel Dunbara279bc32009-09-20 02:20:51 +00003234
Chris Lattnerdf986172009-01-02 07:01:27 +00003235 if (!FunctionType::isValidReturnType(RetType))
3236 return Error(RetTypeLoc, "Invalid result type for LLVM function");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003237
Owen Andersondebcb012009-07-29 22:17:13 +00003238 Ty = FunctionType::get(RetType, ParamTypes, false);
3239 PFTy = PointerType::getUnqual(Ty);
Chris Lattnerdf986172009-01-02 07:01:27 +00003240 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003241
Chris Lattnerdf986172009-01-02 07:01:27 +00003242 // Look up the callee.
3243 Value *Callee;
3244 if (ConvertValIDToValue(PFTy, CalleeID, Callee, PFS)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003245
Chris Lattnerdf986172009-01-02 07:01:27 +00003246 // FIXME: In LLVM 3.0, stop accepting zext, sext and inreg as optional
3247 // function attributes.
3248 unsigned ObsoleteFuncAttrs = Attribute::ZExt|Attribute::SExt|Attribute::InReg;
3249 if (FnAttrs & ObsoleteFuncAttrs) {
3250 RetAttrs |= FnAttrs & ObsoleteFuncAttrs;
3251 FnAttrs &= ~ObsoleteFuncAttrs;
3252 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003253
Chris Lattnerdf986172009-01-02 07:01:27 +00003254 // Set up the Attributes for the function.
3255 SmallVector<AttributeWithIndex, 8> Attrs;
3256 if (RetAttrs != Attribute::None)
3257 Attrs.push_back(AttributeWithIndex::get(0, RetAttrs));
Daniel Dunbara279bc32009-09-20 02:20:51 +00003258
Chris Lattnerdf986172009-01-02 07:01:27 +00003259 SmallVector<Value*, 8> Args;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003260
Chris Lattnerdf986172009-01-02 07:01:27 +00003261 // Loop through FunctionType's arguments and ensure they are specified
3262 // correctly. Also, gather any parameter attributes.
3263 FunctionType::param_iterator I = Ty->param_begin();
3264 FunctionType::param_iterator E = Ty->param_end();
3265 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
3266 const Type *ExpectedTy = 0;
3267 if (I != E) {
3268 ExpectedTy = *I++;
3269 } else if (!Ty->isVarArg()) {
3270 return Error(ArgList[i].Loc, "too many arguments specified");
3271 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003272
Chris Lattnerdf986172009-01-02 07:01:27 +00003273 if (ExpectedTy && ExpectedTy != ArgList[i].V->getType())
3274 return Error(ArgList[i].Loc, "argument is not of expected type '" +
3275 ExpectedTy->getDescription() + "'");
3276 Args.push_back(ArgList[i].V);
3277 if (ArgList[i].Attrs != Attribute::None)
3278 Attrs.push_back(AttributeWithIndex::get(i+1, ArgList[i].Attrs));
3279 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003280
Chris Lattnerdf986172009-01-02 07:01:27 +00003281 if (I != E)
3282 return Error(CallLoc, "not enough parameters specified for call");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003283
Chris Lattnerdf986172009-01-02 07:01:27 +00003284 if (FnAttrs != Attribute::None)
3285 Attrs.push_back(AttributeWithIndex::get(~0, FnAttrs));
Daniel Dunbara279bc32009-09-20 02:20:51 +00003286
Chris Lattnerdf986172009-01-02 07:01:27 +00003287 // Finish off the Attributes and check them
3288 AttrListPtr PAL = AttrListPtr::get(Attrs.begin(), Attrs.end());
Daniel Dunbara279bc32009-09-20 02:20:51 +00003289
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003290 InvokeInst *II = InvokeInst::Create(Callee, NormalBB, UnwindBB,
Chris Lattnerdf986172009-01-02 07:01:27 +00003291 Args.begin(), Args.end());
3292 II->setCallingConv(CC);
3293 II->setAttributes(PAL);
3294 Inst = II;
3295 return false;
3296}
3297
3298
3299
3300//===----------------------------------------------------------------------===//
3301// Binary Operators.
3302//===----------------------------------------------------------------------===//
3303
3304/// ParseArithmetic
Chris Lattnere914b592009-01-05 08:24:46 +00003305/// ::= ArithmeticOps TypeAndValue ',' Value
3306///
3307/// If OperandType is 0, then any FP or integer operand is allowed. If it is 1,
3308/// then any integer operand is allowed, if it is 2, any fp operand is allowed.
Chris Lattnerdf986172009-01-02 07:01:27 +00003309bool LLParser::ParseArithmetic(Instruction *&Inst, PerFunctionState &PFS,
Chris Lattnere914b592009-01-05 08:24:46 +00003310 unsigned Opc, unsigned OperandType) {
Chris Lattnerdf986172009-01-02 07:01:27 +00003311 LocTy Loc; Value *LHS, *RHS;
3312 if (ParseTypeAndValue(LHS, Loc, PFS) ||
3313 ParseToken(lltok::comma, "expected ',' in arithmetic operation") ||
3314 ParseValue(LHS->getType(), RHS, PFS))
3315 return true;
3316
Chris Lattnere914b592009-01-05 08:24:46 +00003317 bool Valid;
3318 switch (OperandType) {
Torok Edwinc23197a2009-07-14 16:55:14 +00003319 default: llvm_unreachable("Unknown operand type!");
Chris Lattnere914b592009-01-05 08:24:46 +00003320 case 0: // int or FP.
3321 Valid = LHS->getType()->isIntOrIntVector() ||
3322 LHS->getType()->isFPOrFPVector();
3323 break;
3324 case 1: Valid = LHS->getType()->isIntOrIntVector(); break;
3325 case 2: Valid = LHS->getType()->isFPOrFPVector(); break;
3326 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003327
Chris Lattnere914b592009-01-05 08:24:46 +00003328 if (!Valid)
3329 return Error(Loc, "invalid operand type for instruction");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003330
Chris Lattnerdf986172009-01-02 07:01:27 +00003331 Inst = BinaryOperator::Create((Instruction::BinaryOps)Opc, LHS, RHS);
3332 return false;
3333}
3334
3335/// ParseLogical
3336/// ::= ArithmeticOps TypeAndValue ',' Value {
3337bool LLParser::ParseLogical(Instruction *&Inst, PerFunctionState &PFS,
3338 unsigned Opc) {
3339 LocTy Loc; Value *LHS, *RHS;
3340 if (ParseTypeAndValue(LHS, Loc, PFS) ||
3341 ParseToken(lltok::comma, "expected ',' in logical operation") ||
3342 ParseValue(LHS->getType(), RHS, PFS))
3343 return true;
3344
3345 if (!LHS->getType()->isIntOrIntVector())
3346 return Error(Loc,"instruction requires integer or integer vector operands");
3347
3348 Inst = BinaryOperator::Create((Instruction::BinaryOps)Opc, LHS, RHS);
3349 return false;
3350}
3351
3352
3353/// ParseCompare
3354/// ::= 'icmp' IPredicates TypeAndValue ',' Value
3355/// ::= 'fcmp' FPredicates TypeAndValue ',' Value
Chris Lattnerdf986172009-01-02 07:01:27 +00003356bool LLParser::ParseCompare(Instruction *&Inst, PerFunctionState &PFS,
3357 unsigned Opc) {
3358 // Parse the integer/fp comparison predicate.
3359 LocTy Loc;
3360 unsigned Pred;
3361 Value *LHS, *RHS;
3362 if (ParseCmpPredicate(Pred, Opc) ||
3363 ParseTypeAndValue(LHS, Loc, PFS) ||
3364 ParseToken(lltok::comma, "expected ',' after compare value") ||
3365 ParseValue(LHS->getType(), RHS, PFS))
3366 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003367
Chris Lattnerdf986172009-01-02 07:01:27 +00003368 if (Opc == Instruction::FCmp) {
3369 if (!LHS->getType()->isFPOrFPVector())
3370 return Error(Loc, "fcmp requires floating point operands");
Dan Gohman1c8a23c2009-08-25 23:17:54 +00003371 Inst = new FCmpInst(CmpInst::Predicate(Pred), LHS, RHS);
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00003372 } else {
3373 assert(Opc == Instruction::ICmp && "Unknown opcode for CmpInst!");
Chris Lattnerdf986172009-01-02 07:01:27 +00003374 if (!LHS->getType()->isIntOrIntVector() &&
3375 !isa<PointerType>(LHS->getType()))
3376 return Error(Loc, "icmp requires integer operands");
Dan Gohman1c8a23c2009-08-25 23:17:54 +00003377 Inst = new ICmpInst(CmpInst::Predicate(Pred), LHS, RHS);
Chris Lattnerdf986172009-01-02 07:01:27 +00003378 }
3379 return false;
3380}
3381
3382//===----------------------------------------------------------------------===//
3383// Other Instructions.
3384//===----------------------------------------------------------------------===//
3385
3386
3387/// ParseCast
3388/// ::= CastOpc TypeAndValue 'to' Type
3389bool LLParser::ParseCast(Instruction *&Inst, PerFunctionState &PFS,
3390 unsigned Opc) {
3391 LocTy Loc; Value *Op;
Owen Anderson1d0be152009-08-13 21:58:54 +00003392 PATypeHolder DestTy(Type::getVoidTy(Context));
Chris Lattnerdf986172009-01-02 07:01:27 +00003393 if (ParseTypeAndValue(Op, Loc, PFS) ||
3394 ParseToken(lltok::kw_to, "expected 'to' after cast value") ||
3395 ParseType(DestTy))
3396 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003397
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00003398 if (!CastInst::castIsValid((Instruction::CastOps)Opc, Op, DestTy)) {
3399 CastInst::castIsValid((Instruction::CastOps)Opc, Op, DestTy);
Chris Lattnerdf986172009-01-02 07:01:27 +00003400 return Error(Loc, "invalid cast opcode for cast from '" +
3401 Op->getType()->getDescription() + "' to '" +
3402 DestTy->getDescription() + "'");
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00003403 }
Chris Lattnerdf986172009-01-02 07:01:27 +00003404 Inst = CastInst::Create((Instruction::CastOps)Opc, Op, DestTy);
3405 return false;
3406}
3407
3408/// ParseSelect
3409/// ::= 'select' TypeAndValue ',' TypeAndValue ',' TypeAndValue
3410bool LLParser::ParseSelect(Instruction *&Inst, PerFunctionState &PFS) {
3411 LocTy Loc;
3412 Value *Op0, *Op1, *Op2;
3413 if (ParseTypeAndValue(Op0, Loc, PFS) ||
3414 ParseToken(lltok::comma, "expected ',' after select condition") ||
3415 ParseTypeAndValue(Op1, PFS) ||
3416 ParseToken(lltok::comma, "expected ',' after select value") ||
3417 ParseTypeAndValue(Op2, PFS))
3418 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003419
Chris Lattnerdf986172009-01-02 07:01:27 +00003420 if (const char *Reason = SelectInst::areInvalidOperands(Op0, Op1, Op2))
3421 return Error(Loc, Reason);
Daniel Dunbara279bc32009-09-20 02:20:51 +00003422
Chris Lattnerdf986172009-01-02 07:01:27 +00003423 Inst = SelectInst::Create(Op0, Op1, Op2);
3424 return false;
3425}
3426
Chris Lattner0088a5c2009-01-05 08:18:44 +00003427/// ParseVA_Arg
3428/// ::= 'va_arg' TypeAndValue ',' Type
3429bool LLParser::ParseVA_Arg(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00003430 Value *Op;
Owen Anderson1d0be152009-08-13 21:58:54 +00003431 PATypeHolder EltTy(Type::getVoidTy(Context));
Chris Lattner0088a5c2009-01-05 08:18:44 +00003432 LocTy TypeLoc;
Chris Lattnerdf986172009-01-02 07:01:27 +00003433 if (ParseTypeAndValue(Op, PFS) ||
3434 ParseToken(lltok::comma, "expected ',' after vaarg operand") ||
Chris Lattner0088a5c2009-01-05 08:18:44 +00003435 ParseType(EltTy, TypeLoc))
Chris Lattnerdf986172009-01-02 07:01:27 +00003436 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003437
Chris Lattner0088a5c2009-01-05 08:18:44 +00003438 if (!EltTy->isFirstClassType())
3439 return Error(TypeLoc, "va_arg requires operand with first class type");
Chris Lattnerdf986172009-01-02 07:01:27 +00003440
3441 Inst = new VAArgInst(Op, EltTy);
3442 return false;
3443}
3444
3445/// ParseExtractElement
3446/// ::= 'extractelement' TypeAndValue ',' TypeAndValue
3447bool LLParser::ParseExtractElement(Instruction *&Inst, PerFunctionState &PFS) {
3448 LocTy Loc;
3449 Value *Op0, *Op1;
3450 if (ParseTypeAndValue(Op0, Loc, PFS) ||
3451 ParseToken(lltok::comma, "expected ',' after extract value") ||
3452 ParseTypeAndValue(Op1, PFS))
3453 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003454
Chris Lattnerdf986172009-01-02 07:01:27 +00003455 if (!ExtractElementInst::isValidOperands(Op0, Op1))
3456 return Error(Loc, "invalid extractelement operands");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003457
Eric Christophera3500da2009-07-25 02:28:41 +00003458 Inst = ExtractElementInst::Create(Op0, Op1);
Chris Lattnerdf986172009-01-02 07:01:27 +00003459 return false;
3460}
3461
3462/// ParseInsertElement
3463/// ::= 'insertelement' TypeAndValue ',' TypeAndValue ',' TypeAndValue
3464bool LLParser::ParseInsertElement(Instruction *&Inst, PerFunctionState &PFS) {
3465 LocTy Loc;
3466 Value *Op0, *Op1, *Op2;
3467 if (ParseTypeAndValue(Op0, Loc, PFS) ||
3468 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
3469 ParseTypeAndValue(Op1, PFS) ||
3470 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
3471 ParseTypeAndValue(Op2, PFS))
3472 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003473
Chris Lattnerdf986172009-01-02 07:01:27 +00003474 if (!InsertElementInst::isValidOperands(Op0, Op1, Op2))
Eric Christopher0aaf4e92009-07-23 01:01:32 +00003475 return Error(Loc, "invalid insertelement operands");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003476
Chris Lattnerdf986172009-01-02 07:01:27 +00003477 Inst = InsertElementInst::Create(Op0, Op1, Op2);
3478 return false;
3479}
3480
3481/// ParseShuffleVector
3482/// ::= 'shufflevector' TypeAndValue ',' TypeAndValue ',' TypeAndValue
3483bool LLParser::ParseShuffleVector(Instruction *&Inst, PerFunctionState &PFS) {
3484 LocTy Loc;
3485 Value *Op0, *Op1, *Op2;
3486 if (ParseTypeAndValue(Op0, Loc, PFS) ||
3487 ParseToken(lltok::comma, "expected ',' after shuffle mask") ||
3488 ParseTypeAndValue(Op1, PFS) ||
3489 ParseToken(lltok::comma, "expected ',' after shuffle value") ||
3490 ParseTypeAndValue(Op2, PFS))
3491 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003492
Chris Lattnerdf986172009-01-02 07:01:27 +00003493 if (!ShuffleVectorInst::isValidOperands(Op0, Op1, Op2))
3494 return Error(Loc, "invalid extractelement operands");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003495
Chris Lattnerdf986172009-01-02 07:01:27 +00003496 Inst = new ShuffleVectorInst(Op0, Op1, Op2);
3497 return false;
3498}
3499
3500/// ParsePHI
Chris Lattnerc6e20092009-10-18 05:27:44 +00003501/// ::= 'phi' Type '[' Value ',' Value ']' (',' '[' Value ',' Value ']')*
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003502int LLParser::ParsePHI(Instruction *&Inst, PerFunctionState &PFS) {
Owen Anderson1d0be152009-08-13 21:58:54 +00003503 PATypeHolder Ty(Type::getVoidTy(Context));
Chris Lattnerdf986172009-01-02 07:01:27 +00003504 Value *Op0, *Op1;
3505 LocTy TypeLoc = Lex.getLoc();
Daniel Dunbara279bc32009-09-20 02:20:51 +00003506
Chris Lattnerdf986172009-01-02 07:01:27 +00003507 if (ParseType(Ty) ||
3508 ParseToken(lltok::lsquare, "expected '[' in phi value list") ||
3509 ParseValue(Ty, Op0, PFS) ||
3510 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
Owen Anderson1d0be152009-08-13 21:58:54 +00003511 ParseValue(Type::getLabelTy(Context), Op1, PFS) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003512 ParseToken(lltok::rsquare, "expected ']' in phi value list"))
3513 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003514
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003515 bool AteExtraComma = false;
Chris Lattnerdf986172009-01-02 07:01:27 +00003516 SmallVector<std::pair<Value*, BasicBlock*>, 16> PHIVals;
3517 while (1) {
3518 PHIVals.push_back(std::make_pair(Op0, cast<BasicBlock>(Op1)));
Daniel Dunbara279bc32009-09-20 02:20:51 +00003519
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003520 if (!EatIfPresent(lltok::comma))
Chris Lattnerdf986172009-01-02 07:01:27 +00003521 break;
3522
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003523 if (Lex.getKind() == lltok::MetadataVar) {
3524 AteExtraComma = true;
Devang Patela43d46f2009-10-16 18:45:49 +00003525 break;
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003526 }
Devang Patela43d46f2009-10-16 18:45:49 +00003527
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003528 if (ParseToken(lltok::lsquare, "expected '[' in phi value list") ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003529 ParseValue(Ty, Op0, PFS) ||
3530 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
Owen Anderson1d0be152009-08-13 21:58:54 +00003531 ParseValue(Type::getLabelTy(Context), Op1, PFS) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003532 ParseToken(lltok::rsquare, "expected ']' in phi value list"))
3533 return true;
3534 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003535
Chris Lattnerdf986172009-01-02 07:01:27 +00003536 if (!Ty->isFirstClassType())
3537 return Error(TypeLoc, "phi node must have first class type");
3538
3539 PHINode *PN = PHINode::Create(Ty);
3540 PN->reserveOperandSpace(PHIVals.size());
3541 for (unsigned i = 0, e = PHIVals.size(); i != e; ++i)
3542 PN->addIncoming(PHIVals[i].first, PHIVals[i].second);
3543 Inst = PN;
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003544 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerdf986172009-01-02 07:01:27 +00003545}
3546
3547/// ParseCall
3548/// ::= 'tail'? 'call' OptionalCallingConv OptionalAttrs Type Value
3549/// ParameterList OptionalAttrs
3550bool LLParser::ParseCall(Instruction *&Inst, PerFunctionState &PFS,
3551 bool isTail) {
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00003552 unsigned RetAttrs, FnAttrs;
3553 CallingConv::ID CC;
Owen Anderson1d0be152009-08-13 21:58:54 +00003554 PATypeHolder RetType(Type::getVoidTy(Context));
Chris Lattnerdf986172009-01-02 07:01:27 +00003555 LocTy RetTypeLoc;
3556 ValID CalleeID;
3557 SmallVector<ParamInfo, 16> ArgList;
3558 LocTy CallLoc = Lex.getLoc();
Daniel Dunbara279bc32009-09-20 02:20:51 +00003559
Chris Lattnerdf986172009-01-02 07:01:27 +00003560 if ((isTail && ParseToken(lltok::kw_call, "expected 'tail call'")) ||
3561 ParseOptionalCallingConv(CC) ||
3562 ParseOptionalAttrs(RetAttrs, 1) ||
Chris Lattnera9a9e072009-03-09 04:49:14 +00003563 ParseType(RetType, RetTypeLoc, true /*void allowed*/) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003564 ParseValID(CalleeID) ||
3565 ParseParameterList(ArgList, PFS) ||
3566 ParseOptionalAttrs(FnAttrs, 2))
3567 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003568
Chris Lattnerdf986172009-01-02 07:01:27 +00003569 // If RetType is a non-function pointer type, then this is the short syntax
3570 // for the call, which means that RetType is just the return type. Infer the
3571 // rest of the function argument types from the arguments that are present.
3572 const PointerType *PFTy = 0;
3573 const FunctionType *Ty = 0;
3574 if (!(PFTy = dyn_cast<PointerType>(RetType)) ||
3575 !(Ty = dyn_cast<FunctionType>(PFTy->getElementType()))) {
3576 // Pull out the types of all of the arguments...
3577 std::vector<const Type*> ParamTypes;
3578 for (unsigned i = 0, e = ArgList.size(); i != e; ++i)
3579 ParamTypes.push_back(ArgList[i].V->getType());
Daniel Dunbara279bc32009-09-20 02:20:51 +00003580
Chris Lattnerdf986172009-01-02 07:01:27 +00003581 if (!FunctionType::isValidReturnType(RetType))
3582 return Error(RetTypeLoc, "Invalid result type for LLVM function");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003583
Owen Andersondebcb012009-07-29 22:17:13 +00003584 Ty = FunctionType::get(RetType, ParamTypes, false);
3585 PFTy = PointerType::getUnqual(Ty);
Chris Lattnerdf986172009-01-02 07:01:27 +00003586 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003587
Chris Lattnerdf986172009-01-02 07:01:27 +00003588 // Look up the callee.
3589 Value *Callee;
3590 if (ConvertValIDToValue(PFTy, CalleeID, Callee, PFS)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003591
Chris Lattnerdf986172009-01-02 07:01:27 +00003592 // FIXME: In LLVM 3.0, stop accepting zext, sext and inreg as optional
3593 // function attributes.
3594 unsigned ObsoleteFuncAttrs = Attribute::ZExt|Attribute::SExt|Attribute::InReg;
3595 if (FnAttrs & ObsoleteFuncAttrs) {
3596 RetAttrs |= FnAttrs & ObsoleteFuncAttrs;
3597 FnAttrs &= ~ObsoleteFuncAttrs;
3598 }
3599
3600 // Set up the Attributes for the function.
3601 SmallVector<AttributeWithIndex, 8> Attrs;
3602 if (RetAttrs != Attribute::None)
3603 Attrs.push_back(AttributeWithIndex::get(0, RetAttrs));
Daniel Dunbara279bc32009-09-20 02:20:51 +00003604
Chris Lattnerdf986172009-01-02 07:01:27 +00003605 SmallVector<Value*, 8> Args;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003606
Chris Lattnerdf986172009-01-02 07:01:27 +00003607 // Loop through FunctionType's arguments and ensure they are specified
3608 // correctly. Also, gather any parameter attributes.
3609 FunctionType::param_iterator I = Ty->param_begin();
3610 FunctionType::param_iterator E = Ty->param_end();
3611 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
3612 const Type *ExpectedTy = 0;
3613 if (I != E) {
3614 ExpectedTy = *I++;
3615 } else if (!Ty->isVarArg()) {
3616 return Error(ArgList[i].Loc, "too many arguments specified");
3617 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003618
Chris Lattnerdf986172009-01-02 07:01:27 +00003619 if (ExpectedTy && ExpectedTy != ArgList[i].V->getType())
3620 return Error(ArgList[i].Loc, "argument is not of expected type '" +
3621 ExpectedTy->getDescription() + "'");
3622 Args.push_back(ArgList[i].V);
3623 if (ArgList[i].Attrs != Attribute::None)
3624 Attrs.push_back(AttributeWithIndex::get(i+1, ArgList[i].Attrs));
3625 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003626
Chris Lattnerdf986172009-01-02 07:01:27 +00003627 if (I != E)
3628 return Error(CallLoc, "not enough parameters specified for call");
3629
3630 if (FnAttrs != Attribute::None)
3631 Attrs.push_back(AttributeWithIndex::get(~0, FnAttrs));
3632
3633 // Finish off the Attributes and check them
3634 AttrListPtr PAL = AttrListPtr::get(Attrs.begin(), Attrs.end());
Daniel Dunbara279bc32009-09-20 02:20:51 +00003635
Chris Lattnerdf986172009-01-02 07:01:27 +00003636 CallInst *CI = CallInst::Create(Callee, Args.begin(), Args.end());
3637 CI->setTailCall(isTail);
3638 CI->setCallingConv(CC);
3639 CI->setAttributes(PAL);
3640 Inst = CI;
3641 return false;
3642}
3643
3644//===----------------------------------------------------------------------===//
3645// Memory Instructions.
3646//===----------------------------------------------------------------------===//
3647
3648/// ParseAlloc
Devang Patelf633a062009-09-17 23:04:48 +00003649/// ::= 'malloc' Type (',' TypeAndValue)? (',' OptionalInfo)?
3650/// ::= 'alloca' Type (',' TypeAndValue)? (',' OptionalInfo)?
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00003651int LLParser::ParseAlloc(Instruction *&Inst, PerFunctionState &PFS,
3652 BasicBlock* BB, bool isAlloca) {
Owen Anderson1d0be152009-08-13 21:58:54 +00003653 PATypeHolder Ty(Type::getVoidTy(Context));
Chris Lattnerdf986172009-01-02 07:01:27 +00003654 Value *Size = 0;
Chris Lattnereeb4a842009-07-02 23:08:13 +00003655 LocTy SizeLoc;
Chris Lattnerdf986172009-01-02 07:01:27 +00003656 unsigned Alignment = 0;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003657 if (ParseType(Ty)) return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00003658
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00003659 bool AteExtraComma = false;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003660 if (EatIfPresent(lltok::comma)) {
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00003661 if (Lex.getKind() == lltok::kw_align) {
3662 if (ParseOptionalAlignment(Alignment)) return true;
3663 } else if (Lex.getKind() == lltok::MetadataVar) {
3664 AteExtraComma = true;
Devang Patelf633a062009-09-17 23:04:48 +00003665 } else {
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00003666 if (ParseTypeAndValue(Size, SizeLoc, PFS) ||
3667 ParseOptionalCommaAlign(Alignment, AteExtraComma))
3668 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00003669 }
3670 }
3671
Benjamin Kramer8c65f6e2010-01-05 21:05:54 +00003672 if (Size && !Size->getType()->isInteger(32))
Chris Lattnerdf986172009-01-02 07:01:27 +00003673 return Error(SizeLoc, "element count must be i32");
3674
Victor Hernandez68afa542009-10-21 19:11:40 +00003675 if (isAlloca) {
Owen Anderson50dead02009-07-15 23:53:25 +00003676 Inst = new AllocaInst(Ty, Size, Alignment);
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00003677 return AteExtraComma ? InstExtraComma : InstNormal;
Victor Hernandez13ad5aa2009-10-17 00:00:19 +00003678 }
Victor Hernandez68afa542009-10-21 19:11:40 +00003679
3680 // Autoupgrade old malloc instruction to malloc call.
3681 // FIXME: Remove in LLVM 3.0.
3682 const Type *IntPtrTy = Type::getInt32Ty(Context);
Victor Hernandez9d0b7042009-11-07 00:16:28 +00003683 Constant *AllocSize = ConstantExpr::getSizeOf(Ty);
3684 AllocSize = ConstantExpr::getTruncOrBitCast(AllocSize, IntPtrTy);
Victor Hernandez68afa542009-10-21 19:11:40 +00003685 if (!MallocF)
3686 // Prototype malloc as "void *(int32)".
3687 // This function is renamed as "malloc" in ValidateEndOfModule().
Victor Hernandez336ea062009-10-23 00:59:10 +00003688 MallocF = cast<Function>(
3689 M->getOrInsertFunction("", Type::getInt8PtrTy(Context), IntPtrTy, NULL));
Victor Hernandez9d0b7042009-11-07 00:16:28 +00003690 Inst = CallInst::CreateMalloc(BB, IntPtrTy, Ty, AllocSize, Size, MallocF);
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00003691return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerdf986172009-01-02 07:01:27 +00003692}
3693
3694/// ParseFree
3695/// ::= 'free' TypeAndValue
Victor Hernandez66284e02009-10-24 04:23:03 +00003696bool LLParser::ParseFree(Instruction *&Inst, PerFunctionState &PFS,
3697 BasicBlock* BB) {
Chris Lattnerdf986172009-01-02 07:01:27 +00003698 Value *Val; LocTy Loc;
3699 if (ParseTypeAndValue(Val, Loc, PFS)) return true;
3700 if (!isa<PointerType>(Val->getType()))
3701 return Error(Loc, "operand to free must be a pointer");
Victor Hernandez66284e02009-10-24 04:23:03 +00003702 Inst = CallInst::CreateFree(Val, BB);
Chris Lattnerdf986172009-01-02 07:01:27 +00003703 return false;
3704}
3705
3706/// ParseLoad
Devang Patelf633a062009-09-17 23:04:48 +00003707/// ::= 'volatile'? 'load' TypeAndValue (',' OptionalInfo)?
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00003708int LLParser::ParseLoad(Instruction *&Inst, PerFunctionState &PFS,
3709 bool isVolatile) {
Chris Lattnerdf986172009-01-02 07:01:27 +00003710 Value *Val; LocTy Loc;
Devang Patelf633a062009-09-17 23:04:48 +00003711 unsigned Alignment = 0;
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00003712 bool AteExtraComma = false;
3713 if (ParseTypeAndValue(Val, Loc, PFS) ||
3714 ParseOptionalCommaAlign(Alignment, AteExtraComma))
3715 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00003716
3717 if (!isa<PointerType>(Val->getType()) ||
3718 !cast<PointerType>(Val->getType())->getElementType()->isFirstClassType())
3719 return Error(Loc, "load operand must be a pointer to a first class type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003720
Chris Lattnerdf986172009-01-02 07:01:27 +00003721 Inst = new LoadInst(Val, "", isVolatile, Alignment);
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00003722 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerdf986172009-01-02 07:01:27 +00003723}
3724
3725/// ParseStore
Dan Gohmana119de82009-06-14 23:30:43 +00003726/// ::= 'volatile'? 'store' TypeAndValue ',' TypeAndValue (',' 'align' i32)?
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00003727int LLParser::ParseStore(Instruction *&Inst, PerFunctionState &PFS,
3728 bool isVolatile) {
Chris Lattnerdf986172009-01-02 07:01:27 +00003729 Value *Val, *Ptr; LocTy Loc, PtrLoc;
Devang Patelf633a062009-09-17 23:04:48 +00003730 unsigned Alignment = 0;
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00003731 bool AteExtraComma = false;
Chris Lattnerdf986172009-01-02 07:01:27 +00003732 if (ParseTypeAndValue(Val, Loc, PFS) ||
3733 ParseToken(lltok::comma, "expected ',' after store operand") ||
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00003734 ParseTypeAndValue(Ptr, PtrLoc, PFS) ||
3735 ParseOptionalCommaAlign(Alignment, AteExtraComma))
Chris Lattnerdf986172009-01-02 07:01:27 +00003736 return true;
Devang Patelf633a062009-09-17 23:04:48 +00003737
Chris Lattnerdf986172009-01-02 07:01:27 +00003738 if (!isa<PointerType>(Ptr->getType()))
3739 return Error(PtrLoc, "store operand must be a pointer");
3740 if (!Val->getType()->isFirstClassType())
3741 return Error(Loc, "store operand must be a first class value");
3742 if (cast<PointerType>(Ptr->getType())->getElementType() != Val->getType())
3743 return Error(Loc, "stored value and pointer type do not match");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003744
Chris Lattnerdf986172009-01-02 07:01:27 +00003745 Inst = new StoreInst(Val, Ptr, isVolatile, Alignment);
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00003746 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerdf986172009-01-02 07:01:27 +00003747}
3748
3749/// ParseGetResult
Dan Gohmana119de82009-06-14 23:30:43 +00003750/// ::= 'getresult' TypeAndValue ',' i32
Chris Lattnerdf986172009-01-02 07:01:27 +00003751/// FIXME: Remove support for getresult in LLVM 3.0
3752bool LLParser::ParseGetResult(Instruction *&Inst, PerFunctionState &PFS) {
3753 Value *Val; LocTy ValLoc, EltLoc;
3754 unsigned Element;
3755 if (ParseTypeAndValue(Val, ValLoc, PFS) ||
3756 ParseToken(lltok::comma, "expected ',' after getresult operand") ||
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003757 ParseUInt32(Element, EltLoc))
Chris Lattnerdf986172009-01-02 07:01:27 +00003758 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003759
Chris Lattnerdf986172009-01-02 07:01:27 +00003760 if (!isa<StructType>(Val->getType()) && !isa<ArrayType>(Val->getType()))
3761 return Error(ValLoc, "getresult inst requires an aggregate operand");
3762 if (!ExtractValueInst::getIndexedType(Val->getType(), Element))
3763 return Error(EltLoc, "invalid getresult index for value");
3764 Inst = ExtractValueInst::Create(Val, Element);
3765 return false;
3766}
3767
3768/// ParseGetElementPtr
Dan Gohmandd8004d2009-07-27 21:53:46 +00003769/// ::= 'getelementptr' 'inbounds'? TypeAndValue (',' TypeAndValue)*
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003770int LLParser::ParseGetElementPtr(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00003771 Value *Ptr, *Val; LocTy Loc, EltLoc;
Dan Gohmandd8004d2009-07-27 21:53:46 +00003772
Dan Gohmandcb40a32009-07-29 15:58:36 +00003773 bool InBounds = EatIfPresent(lltok::kw_inbounds);
Dan Gohmandd8004d2009-07-27 21:53:46 +00003774
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003775 if (ParseTypeAndValue(Ptr, Loc, PFS)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003776
Chris Lattnerdf986172009-01-02 07:01:27 +00003777 if (!isa<PointerType>(Ptr->getType()))
3778 return Error(Loc, "base of getelementptr must be a pointer");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003779
Chris Lattnerdf986172009-01-02 07:01:27 +00003780 SmallVector<Value*, 16> Indices;
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003781 bool AteExtraComma = false;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003782 while (EatIfPresent(lltok::comma)) {
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003783 if (Lex.getKind() == lltok::MetadataVar) {
3784 AteExtraComma = true;
Devang Patel6225d642009-10-13 18:49:55 +00003785 break;
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003786 }
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003787 if (ParseTypeAndValue(Val, EltLoc, PFS)) return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00003788 if (!isa<IntegerType>(Val->getType()))
3789 return Error(EltLoc, "getelementptr index must be an integer");
3790 Indices.push_back(Val);
3791 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003792
Chris Lattnerdf986172009-01-02 07:01:27 +00003793 if (!GetElementPtrInst::getIndexedType(Ptr->getType(),
3794 Indices.begin(), Indices.end()))
3795 return Error(Loc, "invalid getelementptr indices");
3796 Inst = GetElementPtrInst::Create(Ptr, Indices.begin(), Indices.end());
Dan Gohmandd8004d2009-07-27 21:53:46 +00003797 if (InBounds)
Dan Gohmanf8dbee72009-09-07 23:54:19 +00003798 cast<GetElementPtrInst>(Inst)->setIsInBounds(true);
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003799 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerdf986172009-01-02 07:01:27 +00003800}
3801
3802/// ParseExtractValue
3803/// ::= 'extractvalue' TypeAndValue (',' uint32)+
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003804int LLParser::ParseExtractValue(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00003805 Value *Val; LocTy Loc;
3806 SmallVector<unsigned, 4> Indices;
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003807 bool AteExtraComma;
Chris Lattnerdf986172009-01-02 07:01:27 +00003808 if (ParseTypeAndValue(Val, Loc, PFS) ||
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003809 ParseIndexList(Indices, AteExtraComma))
Chris Lattnerdf986172009-01-02 07:01:27 +00003810 return true;
3811
3812 if (!isa<StructType>(Val->getType()) && !isa<ArrayType>(Val->getType()))
3813 return Error(Loc, "extractvalue operand must be array or struct");
3814
3815 if (!ExtractValueInst::getIndexedType(Val->getType(), Indices.begin(),
3816 Indices.end()))
3817 return Error(Loc, "invalid indices for extractvalue");
3818 Inst = ExtractValueInst::Create(Val, Indices.begin(), Indices.end());
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003819 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerdf986172009-01-02 07:01:27 +00003820}
3821
3822/// ParseInsertValue
3823/// ::= 'insertvalue' TypeAndValue ',' TypeAndValue (',' uint32)+
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003824int LLParser::ParseInsertValue(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00003825 Value *Val0, *Val1; LocTy Loc0, Loc1;
3826 SmallVector<unsigned, 4> Indices;
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003827 bool AteExtraComma;
Chris Lattnerdf986172009-01-02 07:01:27 +00003828 if (ParseTypeAndValue(Val0, Loc0, PFS) ||
3829 ParseToken(lltok::comma, "expected comma after insertvalue operand") ||
3830 ParseTypeAndValue(Val1, Loc1, PFS) ||
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003831 ParseIndexList(Indices, AteExtraComma))
Chris Lattnerdf986172009-01-02 07:01:27 +00003832 return true;
Chris Lattner628c13a2009-12-30 05:14:00 +00003833
Chris Lattnerdf986172009-01-02 07:01:27 +00003834 if (!isa<StructType>(Val0->getType()) && !isa<ArrayType>(Val0->getType()))
3835 return Error(Loc0, "extractvalue operand must be array or struct");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003836
Chris Lattnerdf986172009-01-02 07:01:27 +00003837 if (!ExtractValueInst::getIndexedType(Val0->getType(), Indices.begin(),
3838 Indices.end()))
3839 return Error(Loc0, "invalid indices for insertvalue");
3840 Inst = InsertValueInst::Create(Val0, Val1, Indices.begin(), Indices.end());
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003841 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerdf986172009-01-02 07:01:27 +00003842}
Nick Lewycky21cc4462009-04-04 07:22:01 +00003843
3844//===----------------------------------------------------------------------===//
3845// Embedded metadata.
3846//===----------------------------------------------------------------------===//
3847
3848/// ParseMDNodeVector
Nick Lewyckycb337992009-05-10 20:57:05 +00003849/// ::= Element (',' Element)*
3850/// Element
3851/// ::= 'null' | TypeAndValue
Victor Hernandezbf170d42010-01-05 22:22:14 +00003852bool LLParser::ParseMDNodeVector(SmallVectorImpl<Value*> &Elts,
3853 PerFunctionState *PFS) {
Nick Lewycky21cc4462009-04-04 07:22:01 +00003854 do {
Chris Lattnera7352392009-12-30 04:42:57 +00003855 // Null is a special case since it is typeless.
3856 if (EatIfPresent(lltok::kw_null)) {
3857 Elts.push_back(0);
3858 continue;
Nick Lewyckycb337992009-05-10 20:57:05 +00003859 }
Chris Lattnera7352392009-12-30 04:42:57 +00003860
3861 Value *V = 0;
3862 PATypeHolder Ty(Type::getVoidTy(Context));
3863 ValID ID;
Victor Hernandezbf170d42010-01-05 22:22:14 +00003864 if (ParseType(Ty) || ParseValID(ID, PFS) ||
3865 ConvertGlobalOrMetadataValIDToValue(Ty, ID, V, PFS))
Chris Lattnera7352392009-12-30 04:42:57 +00003866 return true;
3867
Nick Lewyckycb337992009-05-10 20:57:05 +00003868 Elts.push_back(V);
Nick Lewycky21cc4462009-04-04 07:22:01 +00003869 } while (EatIfPresent(lltok::comma));
3870
3871 return false;
3872}