blob: 351245d8e871058300ef536b243e20d8b8f203e3 [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;
Devang Patel923078c2009-07-01 19:21:12 +0000171 case lltok::Metadata: if (ParseStandaloneMetadata()) return true; break;
Devang Patel0475c912009-09-29 00:01:14 +0000172 case lltok::NamedOrCustomMD: 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
Devang Patele54abc92009-07-22 17:43:22 +0000466bool LLParser::ParseMDString(MetadataBase *&MDS) {
Devang Patel256be962009-07-20 19:00:08 +0000467 std::string Str;
468 if (ParseStringConstant(Str)) return true;
Owen Anderson647e3012009-07-31 21:35:40 +0000469 MDS = MDString::get(Context, Str);
Devang Patel256be962009-07-20 19:00:08 +0000470 return false;
471}
472
473// MDNode:
474// ::= '!' MDNodeNumber
Devang Patel104cf9e2009-07-23 01:07:34 +0000475bool LLParser::ParseMDNode(MetadataBase *&Node) {
Devang Patel256be962009-07-20 19:00:08 +0000476 // !{ ..., !42, ... }
477 unsigned MID = 0;
478 if (ParseUInt32(MID)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000479
Devang Patel256be962009-07-20 19:00:08 +0000480 // Check existing MDNode.
Devang Patel85b8de82009-11-05 01:13:02 +0000481 std::map<unsigned, WeakVH>::iterator I = MetadataCache.find(MID);
Devang Patel256be962009-07-20 19:00:08 +0000482 if (I != MetadataCache.end()) {
Devang Patel85b8de82009-11-05 01:13:02 +0000483 Node = cast<MetadataBase>(I->second);
Devang Patel256be962009-07-20 19:00:08 +0000484 return false;
485 }
486
487 // Check known forward references.
Devang Patel85b8de82009-11-05 01:13:02 +0000488 std::map<unsigned, std::pair<WeakVH, LocTy> >::iterator
Devang Patel256be962009-07-20 19:00:08 +0000489 FI = ForwardRefMDNodes.find(MID);
490 if (FI != ForwardRefMDNodes.end()) {
Devang Patel85b8de82009-11-05 01:13:02 +0000491 Node = cast<MetadataBase>(FI->second.first);
Devang Patel256be962009-07-20 19:00:08 +0000492 return false;
493 }
494
495 // Create MDNode forward reference
496 SmallVector<Value *, 1> Elts;
497 std::string FwdRefName = "llvm.mdnode.fwdref." + utostr(MID);
Owen Anderson647e3012009-07-31 21:35:40 +0000498 Elts.push_back(MDString::get(Context, FwdRefName));
499 MDNode *FwdNode = MDNode::get(Context, Elts.data(), Elts.size());
Devang Patel256be962009-07-20 19:00:08 +0000500 ForwardRefMDNodes[MID] = std::make_pair(FwdNode, Lex.getLoc());
501 Node = FwdNode;
502 return false;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000503}
Devang Patel256be962009-07-20 19:00:08 +0000504
Devang Pateleff2ab62009-07-29 00:34:02 +0000505///ParseNamedMetadata:
506/// !foo = !{ !1, !2 }
507bool LLParser::ParseNamedMetadata() {
Devang Patel0475c912009-09-29 00:01:14 +0000508 assert(Lex.getKind() == lltok::NamedOrCustomMD);
Devang Pateleff2ab62009-07-29 00:34:02 +0000509 Lex.Lex();
510 std::string Name = Lex.getStrVal();
511
512 if (ParseToken(lltok::equal, "expected '=' here"))
513 return true;
514
515 if (Lex.getKind() != lltok::Metadata)
516 return TokError("Expected '!' here");
517 Lex.Lex();
518
519 if (Lex.getKind() != lltok::lbrace)
520 return TokError("Expected '{' here");
521 Lex.Lex();
522 SmallVector<MetadataBase *, 8> Elts;
523 do {
524 if (Lex.getKind() != lltok::Metadata)
525 return TokError("Expected '!' here");
526 Lex.Lex();
527 MetadataBase *N = 0;
528 if (ParseMDNode(N)) return true;
529 Elts.push_back(N);
530 } while (EatIfPresent(lltok::comma));
531
532 if (ParseToken(lltok::rbrace, "expected end of metadata node"))
533 return true;
534
Owen Anderson1d0be152009-08-13 21:58:54 +0000535 NamedMDNode::Create(Context, Name, Elts.data(), Elts.size(), M);
Devang Pateleff2ab62009-07-29 00:34:02 +0000536 return false;
537}
538
Devang Patel923078c2009-07-01 19:21:12 +0000539/// ParseStandaloneMetadata:
Daniel Dunbara279bc32009-09-20 02:20:51 +0000540/// !42 = !{...}
Devang Patel923078c2009-07-01 19:21:12 +0000541bool LLParser::ParseStandaloneMetadata() {
542 assert(Lex.getKind() == lltok::Metadata);
543 Lex.Lex();
544 unsigned MetadataID = 0;
545 if (ParseUInt32(MetadataID))
546 return true;
547 if (MetadataCache.find(MetadataID) != MetadataCache.end())
548 return TokError("Metadata id is already used");
549 if (ParseToken(lltok::equal, "expected '=' here"))
550 return true;
551
552 LocTy TyLoc;
Owen Anderson1d0be152009-08-13 21:58:54 +0000553 PATypeHolder Ty(Type::getVoidTy(Context));
Devang Patel2214c942009-07-08 21:57:07 +0000554 if (ParseType(Ty, TyLoc))
Devang Patel923078c2009-07-01 19:21:12 +0000555 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000556
Devang Patel104cf9e2009-07-23 01:07:34 +0000557 if (Lex.getKind() != lltok::Metadata)
558 return TokError("Expected metadata here");
Devang Patel923078c2009-07-01 19:21:12 +0000559
Devang Patel104cf9e2009-07-23 01:07:34 +0000560 Lex.Lex();
561 if (Lex.getKind() != lltok::lbrace)
562 return TokError("Expected '{' here");
563
564 SmallVector<Value *, 16> Elts;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000565 if (ParseMDNodeVector(Elts)
Benjamin Kramer30d3b912009-07-27 09:06:52 +0000566 || ParseToken(lltok::rbrace, "expected end of metadata node"))
Devang Patel104cf9e2009-07-23 01:07:34 +0000567 return true;
568
Owen Anderson647e3012009-07-31 21:35:40 +0000569 MDNode *Init = MDNode::get(Context, Elts.data(), Elts.size());
Devang Patel923078c2009-07-01 19:21:12 +0000570 MetadataCache[MetadataID] = Init;
Devang Patel85b8de82009-11-05 01:13:02 +0000571 std::map<unsigned, std::pair<WeakVH, LocTy> >::iterator
Devang Patel1c7eea62009-07-08 19:23:54 +0000572 FI = ForwardRefMDNodes.find(MetadataID);
573 if (FI != ForwardRefMDNodes.end()) {
Devang Patel104cf9e2009-07-23 01:07:34 +0000574 MDNode *FwdNode = cast<MDNode>(FI->second.first);
Devang Patel1c7eea62009-07-08 19:23:54 +0000575 FwdNode->replaceAllUsesWith(Init);
576 ForwardRefMDNodes.erase(FI);
577 }
578
Devang Patel923078c2009-07-01 19:21:12 +0000579 return false;
580}
581
Victor Hernandez19715562009-12-03 23:40:58 +0000582/// ParseInlineMetadata:
583/// !{type %instr}
584/// !{...} MDNode
585/// !"foo" MDString
586bool LLParser::ParseInlineMetadata(Value *&V, PerFunctionState &PFS) {
587 assert(Lex.getKind() == lltok::Metadata && "Only for Metadata");
588 V = 0;
589
590 Lex.Lex();
591 if (Lex.getKind() == lltok::lbrace) {
592 Lex.Lex();
593 if (ParseTypeAndValue(V, PFS) ||
594 ParseToken(lltok::rbrace, "expected end of metadata node"))
595 return true;
596
597 Value *Vals[] = { V };
598 V = MDNode::get(Context, Vals, 1);
599 return false;
600 }
601
602 // Standalone metadata reference
603 // !{ ..., !42, ... }
604 if (!ParseMDNode((MetadataBase *&)V))
605 return false;
606
607 // MDString:
608 // '!' STRINGCONSTANT
609 if (ParseMDString((MetadataBase *&)V)) return true;
610 return false;
611}
612
Chris Lattnerdf986172009-01-02 07:01:27 +0000613/// ParseAlias:
614/// ::= GlobalVar '=' OptionalVisibility 'alias' OptionalLinkage Aliasee
615/// Aliasee
Chris Lattner040f7582009-04-25 21:26:00 +0000616/// ::= TypeAndValue
617/// ::= 'bitcast' '(' TypeAndValue 'to' Type ')'
Dan Gohmandd8004d2009-07-27 21:53:46 +0000618/// ::= 'getelementptr' 'inbounds'? '(' ... ')'
Chris Lattnerdf986172009-01-02 07:01:27 +0000619///
620/// Everything through visibility has already been parsed.
621///
622bool LLParser::ParseAlias(const std::string &Name, LocTy NameLoc,
623 unsigned Visibility) {
624 assert(Lex.getKind() == lltok::kw_alias);
625 Lex.Lex();
626 unsigned Linkage;
627 LocTy LinkageLoc = Lex.getLoc();
628 if (ParseOptionalLinkage(Linkage))
629 return true;
630
631 if (Linkage != GlobalValue::ExternalLinkage &&
Duncan Sands667d4b82009-03-07 15:45:40 +0000632 Linkage != GlobalValue::WeakAnyLinkage &&
633 Linkage != GlobalValue::WeakODRLinkage &&
Rafael Espindolabb46f522009-01-15 20:18:42 +0000634 Linkage != GlobalValue::InternalLinkage &&
Bill Wendling3d10a5a2009-07-20 01:03:30 +0000635 Linkage != GlobalValue::PrivateLinkage &&
636 Linkage != GlobalValue::LinkerPrivateLinkage)
Chris Lattnerdf986172009-01-02 07:01:27 +0000637 return Error(LinkageLoc, "invalid linkage type for alias");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000638
Chris Lattnerdf986172009-01-02 07:01:27 +0000639 Constant *Aliasee;
640 LocTy AliaseeLoc = Lex.getLoc();
Chris Lattner040f7582009-04-25 21:26:00 +0000641 if (Lex.getKind() != lltok::kw_bitcast &&
642 Lex.getKind() != lltok::kw_getelementptr) {
Chris Lattnerdf986172009-01-02 07:01:27 +0000643 if (ParseGlobalTypeAndValue(Aliasee)) return true;
644 } else {
645 // The bitcast dest type is not present, it is implied by the dest type.
646 ValID ID;
647 if (ParseValID(ID)) return true;
648 if (ID.Kind != ValID::t_Constant)
649 return Error(AliaseeLoc, "invalid aliasee");
650 Aliasee = ID.ConstantVal;
651 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000652
Chris Lattnerdf986172009-01-02 07:01:27 +0000653 if (!isa<PointerType>(Aliasee->getType()))
654 return Error(AliaseeLoc, "alias must have pointer type");
655
656 // Okay, create the alias but do not insert it into the module yet.
657 GlobalAlias* GA = new GlobalAlias(Aliasee->getType(),
658 (GlobalValue::LinkageTypes)Linkage, Name,
659 Aliasee);
660 GA->setVisibility((GlobalValue::VisibilityTypes)Visibility);
Daniel Dunbara279bc32009-09-20 02:20:51 +0000661
Chris Lattnerdf986172009-01-02 07:01:27 +0000662 // See if this value already exists in the symbol table. If so, it is either
663 // a redefinition or a definition of a forward reference.
Chris Lattner1d871c52009-10-25 23:22:50 +0000664 if (GlobalValue *Val = M->getNamedValue(Name)) {
Chris Lattnerdf986172009-01-02 07:01:27 +0000665 // See if this was a redefinition. If so, there is no entry in
666 // ForwardRefVals.
667 std::map<std::string, std::pair<GlobalValue*, LocTy> >::iterator
668 I = ForwardRefVals.find(Name);
669 if (I == ForwardRefVals.end())
670 return Error(NameLoc, "redefinition of global named '@" + Name + "'");
671
672 // Otherwise, this was a definition of forward ref. Verify that types
673 // agree.
674 if (Val->getType() != GA->getType())
675 return Error(NameLoc,
676 "forward reference and definition of alias have different types");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000677
Chris Lattnerdf986172009-01-02 07:01:27 +0000678 // If they agree, just RAUW the old value with the alias and remove the
679 // forward ref info.
680 Val->replaceAllUsesWith(GA);
681 Val->eraseFromParent();
682 ForwardRefVals.erase(I);
683 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000684
Chris Lattnerdf986172009-01-02 07:01:27 +0000685 // Insert into the module, we know its name won't collide now.
686 M->getAliasList().push_back(GA);
687 assert(GA->getNameStr() == Name && "Should not be a name conflict!");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000688
Chris Lattnerdf986172009-01-02 07:01:27 +0000689 return false;
690}
691
692/// ParseGlobal
693/// ::= GlobalVar '=' OptionalLinkage OptionalVisibility OptionalThreadLocal
694/// OptionalAddrSpace GlobalType Type Const
695/// ::= OptionalLinkage OptionalVisibility OptionalThreadLocal
696/// OptionalAddrSpace GlobalType Type Const
697///
698/// Everything through visibility has been parsed already.
699///
700bool LLParser::ParseGlobal(const std::string &Name, LocTy NameLoc,
701 unsigned Linkage, bool HasLinkage,
702 unsigned Visibility) {
703 unsigned AddrSpace;
704 bool ThreadLocal, IsConstant;
705 LocTy TyLoc;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000706
Owen Anderson1d0be152009-08-13 21:58:54 +0000707 PATypeHolder Ty(Type::getVoidTy(Context));
Chris Lattnerdf986172009-01-02 07:01:27 +0000708 if (ParseOptionalToken(lltok::kw_thread_local, ThreadLocal) ||
709 ParseOptionalAddrSpace(AddrSpace) ||
710 ParseGlobalType(IsConstant) ||
711 ParseType(Ty, TyLoc))
712 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000713
Chris Lattnerdf986172009-01-02 07:01:27 +0000714 // If the linkage is specified and is external, then no initializer is
715 // present.
716 Constant *Init = 0;
717 if (!HasLinkage || (Linkage != GlobalValue::DLLImportLinkage &&
Duncan Sands5f4ee1f2009-03-11 08:08:06 +0000718 Linkage != GlobalValue::ExternalWeakLinkage &&
Chris Lattnerdf986172009-01-02 07:01:27 +0000719 Linkage != GlobalValue::ExternalLinkage)) {
720 if (ParseGlobalValue(Ty, Init))
721 return true;
722 }
723
Chris Lattnercf0fe8d2009-10-05 05:54:46 +0000724 if (isa<FunctionType>(Ty) || Ty->isLabelTy())
Chris Lattner4a2f1122009-02-08 20:00:15 +0000725 return Error(TyLoc, "invalid type for global variable");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000726
Chris Lattnerdf986172009-01-02 07:01:27 +0000727 GlobalVariable *GV = 0;
728
729 // See if the global was forward referenced, if so, use the global.
Chris Lattner91dad872009-02-02 07:24:28 +0000730 if (!Name.empty()) {
Chris Lattner1d871c52009-10-25 23:22:50 +0000731 if (GlobalValue *GVal = M->getNamedValue(Name)) {
732 if (!ForwardRefVals.erase(Name) || !isa<GlobalValue>(GVal))
733 return Error(NameLoc, "redefinition of global '@" + Name + "'");
734 GV = cast<GlobalVariable>(GVal);
735 }
Chris Lattnerdf986172009-01-02 07:01:27 +0000736 } else {
737 std::map<unsigned, std::pair<GlobalValue*, LocTy> >::iterator
738 I = ForwardRefValIDs.find(NumberedVals.size());
739 if (I != ForwardRefValIDs.end()) {
740 GV = cast<GlobalVariable>(I->second.first);
741 ForwardRefValIDs.erase(I);
742 }
743 }
744
745 if (GV == 0) {
Daniel Dunbara279bc32009-09-20 02:20:51 +0000746 GV = new GlobalVariable(*M, Ty, false, GlobalValue::ExternalLinkage, 0,
Owen Andersone9b11b42009-07-08 19:03:57 +0000747 Name, 0, false, AddrSpace);
Chris Lattnerdf986172009-01-02 07:01:27 +0000748 } else {
749 if (GV->getType()->getElementType() != Ty)
750 return Error(TyLoc,
751 "forward reference and definition of global have different types");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000752
Chris Lattnerdf986172009-01-02 07:01:27 +0000753 // Move the forward-reference to the correct spot in the module.
754 M->getGlobalList().splice(M->global_end(), M->getGlobalList(), GV);
755 }
756
757 if (Name.empty())
758 NumberedVals.push_back(GV);
Daniel Dunbara279bc32009-09-20 02:20:51 +0000759
Chris Lattnerdf986172009-01-02 07:01:27 +0000760 // Set the parsed properties on the global.
761 if (Init)
762 GV->setInitializer(Init);
763 GV->setConstant(IsConstant);
764 GV->setLinkage((GlobalValue::LinkageTypes)Linkage);
765 GV->setVisibility((GlobalValue::VisibilityTypes)Visibility);
766 GV->setThreadLocal(ThreadLocal);
Daniel Dunbara279bc32009-09-20 02:20:51 +0000767
Chris Lattnerdf986172009-01-02 07:01:27 +0000768 // Parse attributes on the global.
769 while (Lex.getKind() == lltok::comma) {
770 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +0000771
Chris Lattnerdf986172009-01-02 07:01:27 +0000772 if (Lex.getKind() == lltok::kw_section) {
773 Lex.Lex();
774 GV->setSection(Lex.getStrVal());
775 if (ParseToken(lltok::StringConstant, "expected global section string"))
776 return true;
777 } else if (Lex.getKind() == lltok::kw_align) {
778 unsigned Alignment;
779 if (ParseOptionalAlignment(Alignment)) return true;
780 GV->setAlignment(Alignment);
781 } else {
782 TokError("unknown global variable property!");
783 }
784 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000785
Chris Lattnerdf986172009-01-02 07:01:27 +0000786 return false;
787}
788
789
790//===----------------------------------------------------------------------===//
791// GlobalValue Reference/Resolution Routines.
792//===----------------------------------------------------------------------===//
793
794/// GetGlobalVal - Get a value with the specified name or ID, creating a
795/// forward reference record if needed. This can return null if the value
796/// exists but does not have the right type.
797GlobalValue *LLParser::GetGlobalVal(const std::string &Name, const Type *Ty,
798 LocTy Loc) {
799 const PointerType *PTy = dyn_cast<PointerType>(Ty);
800 if (PTy == 0) {
801 Error(Loc, "global variable reference must have pointer type");
802 return 0;
803 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000804
Chris Lattnerdf986172009-01-02 07:01:27 +0000805 // Look this name up in the normal function symbol table.
806 GlobalValue *Val =
807 cast_or_null<GlobalValue>(M->getValueSymbolTable().lookup(Name));
Daniel Dunbara279bc32009-09-20 02:20:51 +0000808
Chris Lattnerdf986172009-01-02 07:01:27 +0000809 // If this is a forward reference for the value, see if we already created a
810 // forward ref record.
811 if (Val == 0) {
812 std::map<std::string, std::pair<GlobalValue*, LocTy> >::iterator
813 I = ForwardRefVals.find(Name);
814 if (I != ForwardRefVals.end())
815 Val = I->second.first;
816 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000817
Chris Lattnerdf986172009-01-02 07:01:27 +0000818 // If we have the value in the symbol table or fwd-ref table, return it.
819 if (Val) {
820 if (Val->getType() == Ty) return Val;
821 Error(Loc, "'@" + Name + "' defined with type '" +
822 Val->getType()->getDescription() + "'");
823 return 0;
824 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000825
Chris Lattnerdf986172009-01-02 07:01:27 +0000826 // Otherwise, create a new forward reference for this value and remember it.
827 GlobalValue *FwdVal;
Chris Lattner1e407c32009-01-08 19:05:36 +0000828 if (const FunctionType *FT = dyn_cast<FunctionType>(PTy->getElementType())) {
829 // Function types can return opaque but functions can't.
830 if (isa<OpaqueType>(FT->getReturnType())) {
831 Error(Loc, "function may not return opaque type");
832 return 0;
833 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000834
Duncan Sands5f4ee1f2009-03-11 08:08:06 +0000835 FwdVal = Function::Create(FT, GlobalValue::ExternalWeakLinkage, Name, M);
Chris Lattner1e407c32009-01-08 19:05:36 +0000836 } else {
Owen Andersone9b11b42009-07-08 19:03:57 +0000837 FwdVal = new GlobalVariable(*M, PTy->getElementType(), false,
838 GlobalValue::ExternalWeakLinkage, 0, Name);
Chris Lattner1e407c32009-01-08 19:05:36 +0000839 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000840
Chris Lattnerdf986172009-01-02 07:01:27 +0000841 ForwardRefVals[Name] = std::make_pair(FwdVal, Loc);
842 return FwdVal;
843}
844
845GlobalValue *LLParser::GetGlobalVal(unsigned ID, const Type *Ty, LocTy Loc) {
846 const PointerType *PTy = dyn_cast<PointerType>(Ty);
847 if (PTy == 0) {
848 Error(Loc, "global variable reference must have pointer type");
849 return 0;
850 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000851
Chris Lattnerdf986172009-01-02 07:01:27 +0000852 GlobalValue *Val = ID < NumberedVals.size() ? NumberedVals[ID] : 0;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000853
Chris Lattnerdf986172009-01-02 07:01:27 +0000854 // If this is a forward reference for the value, see if we already created a
855 // forward ref record.
856 if (Val == 0) {
857 std::map<unsigned, std::pair<GlobalValue*, LocTy> >::iterator
858 I = ForwardRefValIDs.find(ID);
859 if (I != ForwardRefValIDs.end())
860 Val = I->second.first;
861 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000862
Chris Lattnerdf986172009-01-02 07:01:27 +0000863 // If we have the value in the symbol table or fwd-ref table, return it.
864 if (Val) {
865 if (Val->getType() == Ty) return Val;
866 Error(Loc, "'@" + utostr(ID) + "' defined with type '" +
867 Val->getType()->getDescription() + "'");
868 return 0;
869 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000870
Chris Lattnerdf986172009-01-02 07:01:27 +0000871 // Otherwise, create a new forward reference for this value and remember it.
872 GlobalValue *FwdVal;
Chris Lattner830703b2009-01-05 18:27:50 +0000873 if (const FunctionType *FT = dyn_cast<FunctionType>(PTy->getElementType())) {
874 // Function types can return opaque but functions can't.
875 if (isa<OpaqueType>(FT->getReturnType())) {
Chris Lattner0d8484f2009-01-05 18:56:52 +0000876 Error(Loc, "function may not return opaque type");
Chris Lattner830703b2009-01-05 18:27:50 +0000877 return 0;
878 }
Duncan Sands5f4ee1f2009-03-11 08:08:06 +0000879 FwdVal = Function::Create(FT, GlobalValue::ExternalWeakLinkage, "", M);
Chris Lattner830703b2009-01-05 18:27:50 +0000880 } else {
Owen Andersone9b11b42009-07-08 19:03:57 +0000881 FwdVal = new GlobalVariable(*M, PTy->getElementType(), false,
882 GlobalValue::ExternalWeakLinkage, 0, "");
Chris Lattner830703b2009-01-05 18:27:50 +0000883 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000884
Chris Lattnerdf986172009-01-02 07:01:27 +0000885 ForwardRefValIDs[ID] = std::make_pair(FwdVal, Loc);
886 return FwdVal;
887}
888
889
890//===----------------------------------------------------------------------===//
891// Helper Routines.
892//===----------------------------------------------------------------------===//
893
894/// ParseToken - If the current token has the specified kind, eat it and return
895/// success. Otherwise, emit the specified error and return failure.
896bool LLParser::ParseToken(lltok::Kind T, const char *ErrMsg) {
897 if (Lex.getKind() != T)
898 return TokError(ErrMsg);
899 Lex.Lex();
900 return false;
901}
902
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000903/// ParseStringConstant
904/// ::= StringConstant
905bool LLParser::ParseStringConstant(std::string &Result) {
906 if (Lex.getKind() != lltok::StringConstant)
907 return TokError("expected string constant");
908 Result = Lex.getStrVal();
909 Lex.Lex();
910 return false;
911}
912
913/// ParseUInt32
914/// ::= uint32
915bool LLParser::ParseUInt32(unsigned &Val) {
Chris Lattnerdf986172009-01-02 07:01:27 +0000916 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned())
917 return TokError("expected integer");
918 uint64_t Val64 = Lex.getAPSIntVal().getLimitedValue(0xFFFFFFFFULL+1);
919 if (Val64 != unsigned(Val64))
920 return TokError("expected 32-bit integer (too large)");
921 Val = Val64;
922 Lex.Lex();
923 return false;
924}
925
926
927/// ParseOptionalAddrSpace
928/// := /*empty*/
929/// := 'addrspace' '(' uint32 ')'
930bool LLParser::ParseOptionalAddrSpace(unsigned &AddrSpace) {
931 AddrSpace = 0;
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000932 if (!EatIfPresent(lltok::kw_addrspace))
Chris Lattnerdf986172009-01-02 07:01:27 +0000933 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +0000934 return ParseToken(lltok::lparen, "expected '(' in address space") ||
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000935 ParseUInt32(AddrSpace) ||
Chris Lattnerdf986172009-01-02 07:01:27 +0000936 ParseToken(lltok::rparen, "expected ')' in address space");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000937}
Chris Lattnerdf986172009-01-02 07:01:27 +0000938
939/// ParseOptionalAttrs - Parse a potentially empty attribute list. AttrKind
940/// indicates what kind of attribute list this is: 0: function arg, 1: result,
941/// 2: function attr.
Chris Lattnerad9ad7c2009-03-25 06:36:36 +0000942/// 3: function arg after value: FIXME: REMOVE IN LLVM 3.0
Chris Lattnerdf986172009-01-02 07:01:27 +0000943bool LLParser::ParseOptionalAttrs(unsigned &Attrs, unsigned AttrKind) {
944 Attrs = Attribute::None;
945 LocTy AttrLoc = Lex.getLoc();
Daniel Dunbara279bc32009-09-20 02:20:51 +0000946
Chris Lattnerdf986172009-01-02 07:01:27 +0000947 while (1) {
948 switch (Lex.getKind()) {
949 case lltok::kw_sext:
950 case lltok::kw_zext:
Chris Lattnerad9ad7c2009-03-25 06:36:36 +0000951 // Treat these as signext/zeroext if they occur in the argument list after
952 // the value, as in "call i8 @foo(i8 10 sext)". If they occur before the
953 // value, as in "call i8 @foo(i8 sext (" then it is part of a constant
954 // expr.
Chris Lattnerdf986172009-01-02 07:01:27 +0000955 // FIXME: REMOVE THIS IN LLVM 3.0
Chris Lattnerad9ad7c2009-03-25 06:36:36 +0000956 if (AttrKind == 3) {
Chris Lattnerdf986172009-01-02 07:01:27 +0000957 if (Lex.getKind() == lltok::kw_sext)
958 Attrs |= Attribute::SExt;
959 else
960 Attrs |= Attribute::ZExt;
961 break;
962 }
963 // FALL THROUGH.
964 default: // End of attributes.
965 if (AttrKind != 2 && (Attrs & Attribute::FunctionOnly))
966 return Error(AttrLoc, "invalid use of function-only attribute");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000967
Chris Lattnerad9ad7c2009-03-25 06:36:36 +0000968 if (AttrKind != 0 && AttrKind != 3 && (Attrs & Attribute::ParameterOnly))
Chris Lattnerdf986172009-01-02 07:01:27 +0000969 return Error(AttrLoc, "invalid use of parameter-only attribute");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000970
Chris Lattnerdf986172009-01-02 07:01:27 +0000971 return false;
Devang Patel578efa92009-06-05 21:57:13 +0000972 case lltok::kw_zeroext: Attrs |= Attribute::ZExt; break;
973 case lltok::kw_signext: Attrs |= Attribute::SExt; break;
974 case lltok::kw_inreg: Attrs |= Attribute::InReg; break;
975 case lltok::kw_sret: Attrs |= Attribute::StructRet; break;
976 case lltok::kw_noalias: Attrs |= Attribute::NoAlias; break;
977 case lltok::kw_nocapture: Attrs |= Attribute::NoCapture; break;
978 case lltok::kw_byval: Attrs |= Attribute::ByVal; break;
979 case lltok::kw_nest: Attrs |= Attribute::Nest; break;
Chris Lattnerdf986172009-01-02 07:01:27 +0000980
Devang Patel578efa92009-06-05 21:57:13 +0000981 case lltok::kw_noreturn: Attrs |= Attribute::NoReturn; break;
982 case lltok::kw_nounwind: Attrs |= Attribute::NoUnwind; break;
983 case lltok::kw_noinline: Attrs |= Attribute::NoInline; break;
984 case lltok::kw_readnone: Attrs |= Attribute::ReadNone; break;
985 case lltok::kw_readonly: Attrs |= Attribute::ReadOnly; break;
Dale Johannesende86d472009-08-26 01:08:21 +0000986 case lltok::kw_inlinehint: Attrs |= Attribute::InlineHint; break;
Devang Patel578efa92009-06-05 21:57:13 +0000987 case lltok::kw_alwaysinline: Attrs |= Attribute::AlwaysInline; break;
988 case lltok::kw_optsize: Attrs |= Attribute::OptimizeForSize; break;
989 case lltok::kw_ssp: Attrs |= Attribute::StackProtect; break;
990 case lltok::kw_sspreq: Attrs |= Attribute::StackProtectReq; break;
991 case lltok::kw_noredzone: Attrs |= Attribute::NoRedZone; break;
992 case lltok::kw_noimplicitfloat: Attrs |= Attribute::NoImplicitFloat; break;
Anton Korobeynikovc5ec8a72009-07-17 18:07:26 +0000993 case lltok::kw_naked: Attrs |= Attribute::Naked; break;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000994
Chris Lattnerdf986172009-01-02 07:01:27 +0000995 case lltok::kw_align: {
996 unsigned Alignment;
997 if (ParseOptionalAlignment(Alignment))
998 return true;
999 Attrs |= Attribute::constructAlignmentFromInt(Alignment);
1000 continue;
1001 }
1002 }
1003 Lex.Lex();
1004 }
1005}
1006
1007/// ParseOptionalLinkage
1008/// ::= /*empty*/
Rafael Espindolabb46f522009-01-15 20:18:42 +00001009/// ::= 'private'
Bill Wendling3d10a5a2009-07-20 01:03:30 +00001010/// ::= 'linker_private'
Chris Lattnerdf986172009-01-02 07:01:27 +00001011/// ::= 'internal'
1012/// ::= 'weak'
Duncan Sands667d4b82009-03-07 15:45:40 +00001013/// ::= 'weak_odr'
Chris Lattnerdf986172009-01-02 07:01:27 +00001014/// ::= 'linkonce'
Duncan Sands667d4b82009-03-07 15:45:40 +00001015/// ::= 'linkonce_odr'
Chris Lattnerdf986172009-01-02 07:01:27 +00001016/// ::= 'appending'
1017/// ::= 'dllexport'
1018/// ::= 'common'
1019/// ::= 'dllimport'
1020/// ::= 'extern_weak'
1021/// ::= 'external'
1022bool LLParser::ParseOptionalLinkage(unsigned &Res, bool &HasLinkage) {
1023 HasLinkage = false;
1024 switch (Lex.getKind()) {
Bill Wendling3d10a5a2009-07-20 01:03:30 +00001025 default: Res=GlobalValue::ExternalLinkage; return false;
1026 case lltok::kw_private: Res = GlobalValue::PrivateLinkage; break;
1027 case lltok::kw_linker_private: Res = GlobalValue::LinkerPrivateLinkage; break;
1028 case lltok::kw_internal: Res = GlobalValue::InternalLinkage; break;
1029 case lltok::kw_weak: Res = GlobalValue::WeakAnyLinkage; break;
1030 case lltok::kw_weak_odr: Res = GlobalValue::WeakODRLinkage; break;
1031 case lltok::kw_linkonce: Res = GlobalValue::LinkOnceAnyLinkage; break;
1032 case lltok::kw_linkonce_odr: Res = GlobalValue::LinkOnceODRLinkage; break;
Chris Lattner266c7bb2009-04-13 05:44:34 +00001033 case lltok::kw_available_externally:
1034 Res = GlobalValue::AvailableExternallyLinkage;
1035 break;
Bill Wendling3d10a5a2009-07-20 01:03:30 +00001036 case lltok::kw_appending: Res = GlobalValue::AppendingLinkage; break;
1037 case lltok::kw_dllexport: Res = GlobalValue::DLLExportLinkage; break;
1038 case lltok::kw_common: Res = GlobalValue::CommonLinkage; break;
1039 case lltok::kw_dllimport: Res = GlobalValue::DLLImportLinkage; break;
1040 case lltok::kw_extern_weak: Res = GlobalValue::ExternalWeakLinkage; break;
1041 case lltok::kw_external: Res = GlobalValue::ExternalLinkage; break;
Chris Lattnerdf986172009-01-02 07:01:27 +00001042 }
1043 Lex.Lex();
1044 HasLinkage = true;
1045 return false;
1046}
1047
1048/// ParseOptionalVisibility
1049/// ::= /*empty*/
1050/// ::= 'default'
1051/// ::= 'hidden'
1052/// ::= 'protected'
Daniel Dunbara279bc32009-09-20 02:20:51 +00001053///
Chris Lattnerdf986172009-01-02 07:01:27 +00001054bool LLParser::ParseOptionalVisibility(unsigned &Res) {
1055 switch (Lex.getKind()) {
1056 default: Res = GlobalValue::DefaultVisibility; return false;
1057 case lltok::kw_default: Res = GlobalValue::DefaultVisibility; break;
1058 case lltok::kw_hidden: Res = GlobalValue::HiddenVisibility; break;
1059 case lltok::kw_protected: Res = GlobalValue::ProtectedVisibility; break;
1060 }
1061 Lex.Lex();
1062 return false;
1063}
1064
1065/// ParseOptionalCallingConv
1066/// ::= /*empty*/
1067/// ::= 'ccc'
1068/// ::= 'fastcc'
1069/// ::= 'coldcc'
1070/// ::= 'x86_stdcallcc'
1071/// ::= 'x86_fastcallcc'
Anton Korobeynikov385f5a92009-06-16 18:50:49 +00001072/// ::= 'arm_apcscc'
1073/// ::= 'arm_aapcscc'
1074/// ::= 'arm_aapcs_vfpcc'
Anton Korobeynikov211a14e2009-12-07 02:27:35 +00001075/// ::= 'msp430_intrcc'
Chris Lattnerdf986172009-01-02 07:01:27 +00001076/// ::= 'cc' UINT
Anton Korobeynikov385f5a92009-06-16 18:50:49 +00001077///
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001078bool LLParser::ParseOptionalCallingConv(CallingConv::ID &CC) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001079 switch (Lex.getKind()) {
1080 default: CC = CallingConv::C; return false;
1081 case lltok::kw_ccc: CC = CallingConv::C; break;
1082 case lltok::kw_fastcc: CC = CallingConv::Fast; break;
1083 case lltok::kw_coldcc: CC = CallingConv::Cold; break;
1084 case lltok::kw_x86_stdcallcc: CC = CallingConv::X86_StdCall; break;
1085 case lltok::kw_x86_fastcallcc: CC = CallingConv::X86_FastCall; break;
Anton Korobeynikov385f5a92009-06-16 18:50:49 +00001086 case lltok::kw_arm_apcscc: CC = CallingConv::ARM_APCS; break;
1087 case lltok::kw_arm_aapcscc: CC = CallingConv::ARM_AAPCS; break;
1088 case lltok::kw_arm_aapcs_vfpcc:CC = CallingConv::ARM_AAPCS_VFP; break;
Anton Korobeynikov211a14e2009-12-07 02:27:35 +00001089 case lltok::kw_msp430_intrcc: CC = CallingConv::MSP430_INTR; break;
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001090 case lltok::kw_cc: {
1091 unsigned ArbitraryCC;
1092 Lex.Lex();
1093 if (ParseUInt32(ArbitraryCC)) {
1094 return true;
1095 } else
1096 CC = static_cast<CallingConv::ID>(ArbitraryCC);
1097 return false;
1098 }
1099 break;
Chris Lattnerdf986172009-01-02 07:01:27 +00001100 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001101
Chris Lattnerdf986172009-01-02 07:01:27 +00001102 Lex.Lex();
1103 return false;
1104}
1105
Devang Patel0475c912009-09-29 00:01:14 +00001106/// ParseOptionalCustomMetadata
Devang Patelf633a062009-09-17 23:04:48 +00001107/// ::= /* empty */
Devang Patel0475c912009-09-29 00:01:14 +00001108/// ::= !dbg !42
1109bool LLParser::ParseOptionalCustomMetadata() {
Chris Lattner52e20312009-10-19 05:31:10 +00001110 if (Lex.getKind() != lltok::NamedOrCustomMD)
Devang Patelf633a062009-09-17 23:04:48 +00001111 return false;
Devang Patel0475c912009-09-29 00:01:14 +00001112
Chris Lattner52e20312009-10-19 05:31:10 +00001113 std::string Name = Lex.getStrVal();
1114 Lex.Lex();
1115
Devang Patelf633a062009-09-17 23:04:48 +00001116 if (Lex.getKind() != lltok::Metadata)
1117 return TokError("Expected '!' here");
1118 Lex.Lex();
Devang Patel0475c912009-09-29 00:01:14 +00001119
Devang Patelf633a062009-09-17 23:04:48 +00001120 MetadataBase *Node;
1121 if (ParseMDNode(Node)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001122
Chris Lattner08113472009-12-29 09:01:33 +00001123 unsigned MDK = M->getMDKindID(Name.c_str());
Devang Patel0475c912009-09-29 00:01:14 +00001124 MDsOnInst.push_back(std::make_pair(MDK, cast<MDNode>(Node)));
Devang Patelf633a062009-09-17 23:04:48 +00001125 return false;
1126}
1127
Chris Lattnerdf986172009-01-02 07:01:27 +00001128/// ParseOptionalAlignment
1129/// ::= /* empty */
1130/// ::= 'align' 4
1131bool LLParser::ParseOptionalAlignment(unsigned &Alignment) {
1132 Alignment = 0;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001133 if (!EatIfPresent(lltok::kw_align))
1134 return false;
Chris Lattner3fbb3ab2009-01-05 07:46:05 +00001135 LocTy AlignLoc = Lex.getLoc();
1136 if (ParseUInt32(Alignment)) return true;
1137 if (!isPowerOf2_32(Alignment))
1138 return Error(AlignLoc, "alignment is not a power of two");
1139 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00001140}
1141
Devang Patelf633a062009-09-17 23:04:48 +00001142/// ParseOptionalInfo
1143/// ::= OptionalInfo (',' OptionalInfo)+
1144bool LLParser::ParseOptionalInfo(unsigned &Alignment) {
1145
1146 // FIXME: Handle customized metadata info attached with an instruction.
1147 do {
Devang Patel0475c912009-09-29 00:01:14 +00001148 if (Lex.getKind() == lltok::NamedOrCustomMD) {
1149 if (ParseOptionalCustomMetadata()) return true;
Devang Patelf633a062009-09-17 23:04:48 +00001150 } else if (Lex.getKind() == lltok::kw_align) {
1151 if (ParseOptionalAlignment(Alignment)) return true;
1152 } else
1153 return true;
1154 } while (EatIfPresent(lltok::comma));
Daniel Dunbara279bc32009-09-20 02:20:51 +00001155
Devang Patelf633a062009-09-17 23:04:48 +00001156 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00001157}
1158
Devang Patelf633a062009-09-17 23:04:48 +00001159
Chris Lattnerdf986172009-01-02 07:01:27 +00001160/// ParseIndexList
1161/// ::= (',' uint32)+
1162bool LLParser::ParseIndexList(SmallVectorImpl<unsigned> &Indices) {
1163 if (Lex.getKind() != lltok::comma)
1164 return TokError("expected ',' as start of index list");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001165
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001166 while (EatIfPresent(lltok::comma)) {
Devang Patele8bc45a2009-11-03 19:06:07 +00001167 if (Lex.getKind() == lltok::NamedOrCustomMD)
1168 break;
Chris Lattnerdf986172009-01-02 07:01:27 +00001169 unsigned Idx;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001170 if (ParseUInt32(Idx)) return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00001171 Indices.push_back(Idx);
1172 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001173
Chris Lattnerdf986172009-01-02 07:01:27 +00001174 return false;
1175}
1176
1177//===----------------------------------------------------------------------===//
1178// Type Parsing.
1179//===----------------------------------------------------------------------===//
1180
1181/// ParseType - Parse and resolve a full type.
Chris Lattnera9a9e072009-03-09 04:49:14 +00001182bool LLParser::ParseType(PATypeHolder &Result, bool AllowVoid) {
1183 LocTy TypeLoc = Lex.getLoc();
Chris Lattnerdf986172009-01-02 07:01:27 +00001184 if (ParseTypeRec(Result)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001185
Chris Lattnerdf986172009-01-02 07:01:27 +00001186 // Verify no unresolved uprefs.
1187 if (!UpRefs.empty())
1188 return Error(UpRefs.back().Loc, "invalid unresolved type up reference");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001189
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001190 if (!AllowVoid && Result.get()->isVoidTy())
Chris Lattnera9a9e072009-03-09 04:49:14 +00001191 return Error(TypeLoc, "void type only allowed for function results");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001192
Chris Lattnerdf986172009-01-02 07:01:27 +00001193 return false;
1194}
1195
1196/// HandleUpRefs - Every time we finish a new layer of types, this function is
1197/// called. It loops through the UpRefs vector, which is a list of the
1198/// currently active types. For each type, if the up-reference is contained in
1199/// the newly completed type, we decrement the level count. When the level
1200/// count reaches zero, the up-referenced type is the type that is passed in:
1201/// thus we can complete the cycle.
1202///
1203PATypeHolder LLParser::HandleUpRefs(const Type *ty) {
1204 // If Ty isn't abstract, or if there are no up-references in it, then there is
1205 // nothing to resolve here.
1206 if (!ty->isAbstract() || UpRefs.empty()) return ty;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001207
Chris Lattnerdf986172009-01-02 07:01:27 +00001208 PATypeHolder Ty(ty);
1209#if 0
David Greene0e28d762009-12-23 23:38:28 +00001210 dbgs() << "Type '" << Ty->getDescription()
Chris Lattnerdf986172009-01-02 07:01:27 +00001211 << "' newly formed. Resolving upreferences.\n"
1212 << UpRefs.size() << " upreferences active!\n";
1213#endif
Daniel Dunbara279bc32009-09-20 02:20:51 +00001214
Chris Lattnerdf986172009-01-02 07:01:27 +00001215 // If we find any resolvable upreferences (i.e., those whose NestingLevel goes
1216 // to zero), we resolve them all together before we resolve them to Ty. At
1217 // the end of the loop, if there is anything to resolve to Ty, it will be in
1218 // this variable.
1219 OpaqueType *TypeToResolve = 0;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001220
Chris Lattnerdf986172009-01-02 07:01:27 +00001221 for (unsigned i = 0; i != UpRefs.size(); ++i) {
1222 // Determine if 'Ty' directly contains this up-references 'LastContainedTy'.
1223 bool ContainsType =
1224 std::find(Ty->subtype_begin(), Ty->subtype_end(),
1225 UpRefs[i].LastContainedTy) != Ty->subtype_end();
Daniel Dunbara279bc32009-09-20 02:20:51 +00001226
Chris Lattnerdf986172009-01-02 07:01:27 +00001227#if 0
David Greene0e28d762009-12-23 23:38:28 +00001228 dbgs() << " UR#" << i << " - TypeContains(" << Ty->getDescription() << ", "
Chris Lattnerdf986172009-01-02 07:01:27 +00001229 << UpRefs[i].LastContainedTy->getDescription() << ") = "
1230 << (ContainsType ? "true" : "false")
1231 << " level=" << UpRefs[i].NestingLevel << "\n";
1232#endif
1233 if (!ContainsType)
1234 continue;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001235
Chris Lattnerdf986172009-01-02 07:01:27 +00001236 // Decrement level of upreference
1237 unsigned Level = --UpRefs[i].NestingLevel;
1238 UpRefs[i].LastContainedTy = Ty;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001239
Chris Lattnerdf986172009-01-02 07:01:27 +00001240 // If the Up-reference has a non-zero level, it shouldn't be resolved yet.
1241 if (Level != 0)
1242 continue;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001243
Chris Lattnerdf986172009-01-02 07:01:27 +00001244#if 0
David Greene0e28d762009-12-23 23:38:28 +00001245 dbgs() << " * Resolving upreference for " << UpRefs[i].UpRefTy << "\n";
Chris Lattnerdf986172009-01-02 07:01:27 +00001246#endif
1247 if (!TypeToResolve)
1248 TypeToResolve = UpRefs[i].UpRefTy;
1249 else
1250 UpRefs[i].UpRefTy->refineAbstractTypeTo(TypeToResolve);
1251 UpRefs.erase(UpRefs.begin()+i); // Remove from upreference list.
1252 --i; // Do not skip the next element.
1253 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001254
Chris Lattnerdf986172009-01-02 07:01:27 +00001255 if (TypeToResolve)
1256 TypeToResolve->refineAbstractTypeTo(Ty);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001257
Chris Lattnerdf986172009-01-02 07:01:27 +00001258 return Ty;
1259}
1260
1261
1262/// ParseTypeRec - The recursive function used to process the internal
1263/// implementation details of types.
1264bool LLParser::ParseTypeRec(PATypeHolder &Result) {
1265 switch (Lex.getKind()) {
1266 default:
1267 return TokError("expected type");
1268 case lltok::Type:
1269 // TypeRec ::= 'float' | 'void' (etc)
1270 Result = Lex.getTyVal();
Daniel Dunbara279bc32009-09-20 02:20:51 +00001271 Lex.Lex();
Chris Lattnerdf986172009-01-02 07:01:27 +00001272 break;
1273 case lltok::kw_opaque:
1274 // TypeRec ::= 'opaque'
Owen Anderson0e275dc2009-08-13 23:27:32 +00001275 Result = OpaqueType::get(Context);
Chris Lattnerdf986172009-01-02 07:01:27 +00001276 Lex.Lex();
1277 break;
1278 case lltok::lbrace:
1279 // TypeRec ::= '{' ... '}'
1280 if (ParseStructType(Result, false))
1281 return true;
1282 break;
1283 case lltok::lsquare:
1284 // TypeRec ::= '[' ... ']'
1285 Lex.Lex(); // eat the lsquare.
1286 if (ParseArrayVectorType(Result, false))
1287 return true;
1288 break;
1289 case lltok::less: // Either vector or packed struct.
1290 // TypeRec ::= '<' ... '>'
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001291 Lex.Lex();
1292 if (Lex.getKind() == lltok::lbrace) {
1293 if (ParseStructType(Result, true) ||
1294 ParseToken(lltok::greater, "expected '>' at end of packed struct"))
Chris Lattnerdf986172009-01-02 07:01:27 +00001295 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00001296 } else if (ParseArrayVectorType(Result, true))
1297 return true;
1298 break;
1299 case lltok::LocalVar:
1300 case lltok::StringConstant: // FIXME: REMOVE IN LLVM 3.0
1301 // TypeRec ::= %foo
1302 if (const Type *T = M->getTypeByName(Lex.getStrVal())) {
1303 Result = T;
1304 } else {
Owen Anderson0e275dc2009-08-13 23:27:32 +00001305 Result = OpaqueType::get(Context);
Chris Lattnerdf986172009-01-02 07:01:27 +00001306 ForwardRefTypes.insert(std::make_pair(Lex.getStrVal(),
1307 std::make_pair(Result,
1308 Lex.getLoc())));
1309 M->addTypeName(Lex.getStrVal(), Result.get());
1310 }
1311 Lex.Lex();
1312 break;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001313
Chris Lattnerdf986172009-01-02 07:01:27 +00001314 case lltok::LocalVarID:
1315 // TypeRec ::= %4
1316 if (Lex.getUIntVal() < NumberedTypes.size())
1317 Result = NumberedTypes[Lex.getUIntVal()];
1318 else {
1319 std::map<unsigned, std::pair<PATypeHolder, LocTy> >::iterator
1320 I = ForwardRefTypeIDs.find(Lex.getUIntVal());
1321 if (I != ForwardRefTypeIDs.end())
1322 Result = I->second.first;
1323 else {
Owen Anderson0e275dc2009-08-13 23:27:32 +00001324 Result = OpaqueType::get(Context);
Chris Lattnerdf986172009-01-02 07:01:27 +00001325 ForwardRefTypeIDs.insert(std::make_pair(Lex.getUIntVal(),
1326 std::make_pair(Result,
1327 Lex.getLoc())));
1328 }
1329 }
1330 Lex.Lex();
1331 break;
1332 case lltok::backslash: {
1333 // TypeRec ::= '\' 4
Chris Lattnerdf986172009-01-02 07:01:27 +00001334 Lex.Lex();
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001335 unsigned Val;
1336 if (ParseUInt32(Val)) return true;
Owen Anderson0e275dc2009-08-13 23:27:32 +00001337 OpaqueType *OT = OpaqueType::get(Context); //Use temporary placeholder.
Chris Lattnerdf986172009-01-02 07:01:27 +00001338 UpRefs.push_back(UpRefRecord(Lex.getLoc(), Val, OT));
1339 Result = OT;
1340 break;
1341 }
1342 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001343
1344 // Parse the type suffixes.
Chris Lattnerdf986172009-01-02 07:01:27 +00001345 while (1) {
1346 switch (Lex.getKind()) {
1347 // End of type.
Daniel Dunbara279bc32009-09-20 02:20:51 +00001348 default: return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00001349
1350 // TypeRec ::= TypeRec '*'
1351 case lltok::star:
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001352 if (Result.get()->isLabelTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00001353 return TokError("basic block pointers are invalid");
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001354 if (Result.get()->isVoidTy())
Dan Gohmanb9070d32009-02-09 17:41:21 +00001355 return TokError("pointers to void are invalid; use i8* instead");
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001356 if (!PointerType::isValidElementType(Result.get()))
1357 return TokError("pointer to this type is invalid");
Owen Andersondebcb012009-07-29 22:17:13 +00001358 Result = HandleUpRefs(PointerType::getUnqual(Result.get()));
Chris Lattnerdf986172009-01-02 07:01:27 +00001359 Lex.Lex();
1360 break;
1361
1362 // TypeRec ::= TypeRec 'addrspace' '(' uint32 ')' '*'
1363 case lltok::kw_addrspace: {
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001364 if (Result.get()->isLabelTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00001365 return TokError("basic block pointers are invalid");
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001366 if (Result.get()->isVoidTy())
Dan Gohmanb9070d32009-02-09 17:41:21 +00001367 return TokError("pointers to void are invalid; use i8* instead");
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001368 if (!PointerType::isValidElementType(Result.get()))
1369 return TokError("pointer to this type is invalid");
Chris Lattnerdf986172009-01-02 07:01:27 +00001370 unsigned AddrSpace;
1371 if (ParseOptionalAddrSpace(AddrSpace) ||
1372 ParseToken(lltok::star, "expected '*' in address space"))
1373 return true;
1374
Owen Andersondebcb012009-07-29 22:17:13 +00001375 Result = HandleUpRefs(PointerType::get(Result.get(), AddrSpace));
Chris Lattnerdf986172009-01-02 07:01:27 +00001376 break;
1377 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001378
Chris Lattnerdf986172009-01-02 07:01:27 +00001379 /// Types '(' ArgTypeListI ')' OptFuncAttrs
1380 case lltok::lparen:
1381 if (ParseFunctionType(Result))
1382 return true;
1383 break;
1384 }
1385 }
1386}
1387
1388/// ParseParameterList
1389/// ::= '(' ')'
1390/// ::= '(' Arg (',' Arg)* ')'
1391/// Arg
1392/// ::= Type OptionalAttributes Value OptionalAttributes
1393bool LLParser::ParseParameterList(SmallVectorImpl<ParamInfo> &ArgList,
1394 PerFunctionState &PFS) {
1395 if (ParseToken(lltok::lparen, "expected '(' in call"))
1396 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001397
Chris Lattnerdf986172009-01-02 07:01:27 +00001398 while (Lex.getKind() != lltok::rparen) {
1399 // If this isn't the first argument, we need a comma.
1400 if (!ArgList.empty() &&
1401 ParseToken(lltok::comma, "expected ',' in argument list"))
1402 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001403
Chris Lattnerdf986172009-01-02 07:01:27 +00001404 // Parse the argument.
1405 LocTy ArgLoc;
Owen Anderson1d0be152009-08-13 21:58:54 +00001406 PATypeHolder ArgTy(Type::getVoidTy(Context));
Victor Hernandez19715562009-12-03 23:40:58 +00001407 unsigned ArgAttrs1 = Attribute::None;
1408 unsigned ArgAttrs2 = Attribute::None;
Chris Lattnerdf986172009-01-02 07:01:27 +00001409 Value *V;
Victor Hernandez19715562009-12-03 23:40:58 +00001410 if (ParseType(ArgTy, ArgLoc))
Chris Lattnerdf986172009-01-02 07:01:27 +00001411 return true;
Victor Hernandez19715562009-12-03 23:40:58 +00001412
1413 if (Lex.getKind() == lltok::Metadata) {
1414 if (ParseInlineMetadata(V, PFS))
1415 return true;
1416 } else {
1417 if (ParseOptionalAttrs(ArgAttrs1, 0) ||
1418 ParseValue(ArgTy, V, PFS) ||
1419 // FIXME: Should not allow attributes after the argument, remove this
1420 // in LLVM 3.0.
1421 ParseOptionalAttrs(ArgAttrs2, 3))
1422 return true;
1423 }
Chris Lattnerdf986172009-01-02 07:01:27 +00001424 ArgList.push_back(ParamInfo(ArgLoc, V, ArgAttrs1|ArgAttrs2));
1425 }
1426
1427 Lex.Lex(); // Lex the ')'.
1428 return false;
1429}
1430
1431
1432
Chris Lattnerdfd19dd2009-01-05 18:34:07 +00001433/// ParseArgumentList - Parse the argument list for a function type or function
1434/// prototype. If 'inType' is true then we are parsing a FunctionType.
Chris Lattnerdf986172009-01-02 07:01:27 +00001435/// ::= '(' ArgTypeListI ')'
1436/// ArgTypeListI
1437/// ::= /*empty*/
1438/// ::= '...'
1439/// ::= ArgTypeList ',' '...'
1440/// ::= ArgType (',' ArgType)*
Chris Lattnerdfd19dd2009-01-05 18:34:07 +00001441///
Chris Lattnerdf986172009-01-02 07:01:27 +00001442bool LLParser::ParseArgumentList(std::vector<ArgInfo> &ArgList,
Chris Lattnerdfd19dd2009-01-05 18:34:07 +00001443 bool &isVarArg, bool inType) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001444 isVarArg = false;
1445 assert(Lex.getKind() == lltok::lparen);
1446 Lex.Lex(); // eat the (.
Daniel Dunbara279bc32009-09-20 02:20:51 +00001447
Chris Lattnerdf986172009-01-02 07:01:27 +00001448 if (Lex.getKind() == lltok::rparen) {
1449 // empty
1450 } else if (Lex.getKind() == lltok::dotdotdot) {
1451 isVarArg = true;
1452 Lex.Lex();
1453 } else {
1454 LocTy TypeLoc = Lex.getLoc();
Owen Anderson1d0be152009-08-13 21:58:54 +00001455 PATypeHolder ArgTy(Type::getVoidTy(Context));
Chris Lattnerdf986172009-01-02 07:01:27 +00001456 unsigned Attrs;
Chris Lattnerdf986172009-01-02 07:01:27 +00001457 std::string Name;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001458
Chris Lattnerdfd19dd2009-01-05 18:34:07 +00001459 // If we're parsing a type, use ParseTypeRec, because we allow recursive
1460 // types (such as a function returning a pointer to itself). If parsing a
1461 // function prototype, we require fully resolved types.
1462 if ((inType ? ParseTypeRec(ArgTy) : ParseType(ArgTy)) ||
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001463 ParseOptionalAttrs(Attrs, 0)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001464
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001465 if (ArgTy->isVoidTy())
Chris Lattnera9a9e072009-03-09 04:49:14 +00001466 return Error(TypeLoc, "argument can not have void type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001467
Chris Lattnerdf986172009-01-02 07:01:27 +00001468 if (Lex.getKind() == lltok::LocalVar ||
1469 Lex.getKind() == lltok::StringConstant) { // FIXME: REMOVE IN LLVM 3.0
1470 Name = Lex.getStrVal();
1471 Lex.Lex();
1472 }
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001473
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001474 if (!FunctionType::isValidArgumentType(ArgTy))
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001475 return Error(TypeLoc, "invalid type for function argument");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001476
Chris Lattnerdf986172009-01-02 07:01:27 +00001477 ArgList.push_back(ArgInfo(TypeLoc, ArgTy, Attrs, Name));
Daniel Dunbara279bc32009-09-20 02:20:51 +00001478
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001479 while (EatIfPresent(lltok::comma)) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001480 // Handle ... at end of arg list.
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001481 if (EatIfPresent(lltok::dotdotdot)) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001482 isVarArg = true;
Chris Lattnerdf986172009-01-02 07:01:27 +00001483 break;
1484 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001485
Chris Lattnerdf986172009-01-02 07:01:27 +00001486 // Otherwise must be an argument type.
1487 TypeLoc = Lex.getLoc();
Chris Lattnera9a9e072009-03-09 04:49:14 +00001488 if ((inType ? ParseTypeRec(ArgTy) : ParseType(ArgTy)) ||
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001489 ParseOptionalAttrs(Attrs, 0)) return true;
1490
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001491 if (ArgTy->isVoidTy())
Chris Lattnera9a9e072009-03-09 04:49:14 +00001492 return Error(TypeLoc, "argument can not have void type");
1493
Chris Lattnerdf986172009-01-02 07:01:27 +00001494 if (Lex.getKind() == lltok::LocalVar ||
1495 Lex.getKind() == lltok::StringConstant) { // FIXME: REMOVE IN LLVM 3.0
1496 Name = Lex.getStrVal();
1497 Lex.Lex();
1498 } else {
1499 Name = "";
1500 }
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001501
1502 if (!ArgTy->isFirstClassType() && !isa<OpaqueType>(ArgTy))
1503 return Error(TypeLoc, "invalid type for function argument");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001504
Chris Lattnerdf986172009-01-02 07:01:27 +00001505 ArgList.push_back(ArgInfo(TypeLoc, ArgTy, Attrs, Name));
1506 }
1507 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001508
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001509 return ParseToken(lltok::rparen, "expected ')' at end of argument list");
Chris Lattnerdf986172009-01-02 07:01:27 +00001510}
Daniel Dunbara279bc32009-09-20 02:20:51 +00001511
Chris Lattnerdf986172009-01-02 07:01:27 +00001512/// ParseFunctionType
1513/// ::= Type ArgumentList OptionalAttrs
1514bool LLParser::ParseFunctionType(PATypeHolder &Result) {
1515 assert(Lex.getKind() == lltok::lparen);
1516
Chris Lattnerd77d04c2009-01-05 08:04:33 +00001517 if (!FunctionType::isValidReturnType(Result))
1518 return TokError("invalid function return type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001519
Chris Lattnerdf986172009-01-02 07:01:27 +00001520 std::vector<ArgInfo> ArgList;
1521 bool isVarArg;
1522 unsigned Attrs;
Chris Lattnerdfd19dd2009-01-05 18:34:07 +00001523 if (ParseArgumentList(ArgList, isVarArg, true) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00001524 // FIXME: Allow, but ignore attributes on function types!
1525 // FIXME: Remove in LLVM 3.0
1526 ParseOptionalAttrs(Attrs, 2))
1527 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001528
Chris Lattnerdf986172009-01-02 07:01:27 +00001529 // Reject names on the arguments lists.
1530 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
1531 if (!ArgList[i].Name.empty())
1532 return Error(ArgList[i].Loc, "argument name invalid in function type");
1533 if (!ArgList[i].Attrs != 0) {
1534 // Allow but ignore attributes on function types; this permits
1535 // auto-upgrade.
1536 // FIXME: REJECT ATTRIBUTES ON FUNCTION TYPES in LLVM 3.0
1537 }
1538 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001539
Chris Lattnerdf986172009-01-02 07:01:27 +00001540 std::vector<const Type*> ArgListTy;
1541 for (unsigned i = 0, e = ArgList.size(); i != e; ++i)
1542 ArgListTy.push_back(ArgList[i].Type);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001543
Owen Andersondebcb012009-07-29 22:17:13 +00001544 Result = HandleUpRefs(FunctionType::get(Result.get(),
Owen Andersonfba933c2009-07-01 23:57:11 +00001545 ArgListTy, isVarArg));
Chris Lattnerdf986172009-01-02 07:01:27 +00001546 return false;
1547}
1548
1549/// ParseStructType: Handles packed and unpacked types. </> parsed elsewhere.
1550/// TypeRec
1551/// ::= '{' '}'
1552/// ::= '{' TypeRec (',' TypeRec)* '}'
1553/// ::= '<' '{' '}' '>'
1554/// ::= '<' '{' TypeRec (',' TypeRec)* '}' '>'
1555bool LLParser::ParseStructType(PATypeHolder &Result, bool Packed) {
1556 assert(Lex.getKind() == lltok::lbrace);
1557 Lex.Lex(); // Consume the '{'
Daniel Dunbara279bc32009-09-20 02:20:51 +00001558
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001559 if (EatIfPresent(lltok::rbrace)) {
Owen Andersond7f2a6c2009-08-05 23:16:16 +00001560 Result = StructType::get(Context, Packed);
Chris Lattnerdf986172009-01-02 07:01:27 +00001561 return false;
1562 }
1563
1564 std::vector<PATypeHolder> ParamsList;
Chris Lattnera9a9e072009-03-09 04:49:14 +00001565 LocTy EltTyLoc = Lex.getLoc();
Chris Lattnerdf986172009-01-02 07:01:27 +00001566 if (ParseTypeRec(Result)) return true;
1567 ParamsList.push_back(Result);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001568
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001569 if (Result->isVoidTy())
Chris Lattnera9a9e072009-03-09 04:49:14 +00001570 return Error(EltTyLoc, "struct element can not have void type");
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001571 if (!StructType::isValidElementType(Result))
1572 return Error(EltTyLoc, "invalid element type for struct");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001573
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001574 while (EatIfPresent(lltok::comma)) {
Chris Lattnera9a9e072009-03-09 04:49:14 +00001575 EltTyLoc = Lex.getLoc();
Chris Lattnerdf986172009-01-02 07:01:27 +00001576 if (ParseTypeRec(Result)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001577
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001578 if (Result->isVoidTy())
Chris Lattnera9a9e072009-03-09 04:49:14 +00001579 return Error(EltTyLoc, "struct element can not have void type");
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001580 if (!StructType::isValidElementType(Result))
1581 return Error(EltTyLoc, "invalid element type for struct");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001582
Chris Lattnerdf986172009-01-02 07:01:27 +00001583 ParamsList.push_back(Result);
1584 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001585
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001586 if (ParseToken(lltok::rbrace, "expected '}' at end of struct"))
1587 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001588
Chris Lattnerdf986172009-01-02 07:01:27 +00001589 std::vector<const Type*> ParamsListTy;
1590 for (unsigned i = 0, e = ParamsList.size(); i != e; ++i)
1591 ParamsListTy.push_back(ParamsList[i].get());
Owen Andersond7f2a6c2009-08-05 23:16:16 +00001592 Result = HandleUpRefs(StructType::get(Context, ParamsListTy, Packed));
Chris Lattnerdf986172009-01-02 07:01:27 +00001593 return false;
1594}
1595
1596/// ParseArrayVectorType - Parse an array or vector type, assuming the first
1597/// token has already been consumed.
Daniel Dunbara279bc32009-09-20 02:20:51 +00001598/// TypeRec
Chris Lattnerdf986172009-01-02 07:01:27 +00001599/// ::= '[' APSINTVAL 'x' Types ']'
1600/// ::= '<' APSINTVAL 'x' Types '>'
1601bool LLParser::ParseArrayVectorType(PATypeHolder &Result, bool isVector) {
1602 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned() ||
1603 Lex.getAPSIntVal().getBitWidth() > 64)
1604 return TokError("expected number in address space");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001605
Chris Lattnerdf986172009-01-02 07:01:27 +00001606 LocTy SizeLoc = Lex.getLoc();
1607 uint64_t Size = Lex.getAPSIntVal().getZExtValue();
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001608 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +00001609
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001610 if (ParseToken(lltok::kw_x, "expected 'x' after element count"))
1611 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00001612
1613 LocTy TypeLoc = Lex.getLoc();
Owen Anderson1d0be152009-08-13 21:58:54 +00001614 PATypeHolder EltTy(Type::getVoidTy(Context));
Chris Lattnerdf986172009-01-02 07:01:27 +00001615 if (ParseTypeRec(EltTy)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001616
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001617 if (EltTy->isVoidTy())
Chris Lattnera9a9e072009-03-09 04:49:14 +00001618 return Error(TypeLoc, "array and vector element type cannot be void");
1619
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001620 if (ParseToken(isVector ? lltok::greater : lltok::rsquare,
1621 "expected end of sequential type"))
1622 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001623
Chris Lattnerdf986172009-01-02 07:01:27 +00001624 if (isVector) {
Chris Lattner452e2622009-02-28 18:12:41 +00001625 if (Size == 0)
1626 return Error(SizeLoc, "zero element vector is illegal");
Chris Lattnerdf986172009-01-02 07:01:27 +00001627 if ((unsigned)Size != Size)
1628 return Error(SizeLoc, "size too large for vector");
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001629 if (!VectorType::isValidElementType(EltTy))
Chris Lattnerdf986172009-01-02 07:01:27 +00001630 return Error(TypeLoc, "vector element type must be fp or integer");
Owen Andersondebcb012009-07-29 22:17:13 +00001631 Result = VectorType::get(EltTy, unsigned(Size));
Chris Lattnerdf986172009-01-02 07:01:27 +00001632 } else {
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001633 if (!ArrayType::isValidElementType(EltTy))
Chris Lattnerdf986172009-01-02 07:01:27 +00001634 return Error(TypeLoc, "invalid array element type");
Owen Andersondebcb012009-07-29 22:17:13 +00001635 Result = HandleUpRefs(ArrayType::get(EltTy, Size));
Chris Lattnerdf986172009-01-02 07:01:27 +00001636 }
1637 return false;
1638}
1639
1640//===----------------------------------------------------------------------===//
1641// Function Semantic Analysis.
1642//===----------------------------------------------------------------------===//
1643
Chris Lattner09d9ef42009-10-28 03:39:23 +00001644LLParser::PerFunctionState::PerFunctionState(LLParser &p, Function &f,
1645 int functionNumber)
1646 : P(p), F(f), FunctionNumber(functionNumber) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001647
1648 // Insert unnamed arguments into the NumberedVals list.
1649 for (Function::arg_iterator AI = F.arg_begin(), E = F.arg_end();
1650 AI != E; ++AI)
1651 if (!AI->hasName())
1652 NumberedVals.push_back(AI);
1653}
1654
1655LLParser::PerFunctionState::~PerFunctionState() {
1656 // If there were any forward referenced non-basicblock values, delete them.
1657 for (std::map<std::string, std::pair<Value*, LocTy> >::iterator
1658 I = ForwardRefVals.begin(), E = ForwardRefVals.end(); I != E; ++I)
1659 if (!isa<BasicBlock>(I->second.first)) {
Owen Andersonb43eae72009-07-02 17:04:01 +00001660 I->second.first->replaceAllUsesWith(
Owen Anderson9e9a0d52009-07-30 23:03:37 +00001661 UndefValue::get(I->second.first->getType()));
Chris Lattnerdf986172009-01-02 07:01:27 +00001662 delete I->second.first;
1663 I->second.first = 0;
1664 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001665
Chris Lattnerdf986172009-01-02 07:01:27 +00001666 for (std::map<unsigned, std::pair<Value*, LocTy> >::iterator
1667 I = ForwardRefValIDs.begin(), E = ForwardRefValIDs.end(); I != E; ++I)
1668 if (!isa<BasicBlock>(I->second.first)) {
Owen Andersonb43eae72009-07-02 17:04:01 +00001669 I->second.first->replaceAllUsesWith(
Owen Anderson9e9a0d52009-07-30 23:03:37 +00001670 UndefValue::get(I->second.first->getType()));
Chris Lattnerdf986172009-01-02 07:01:27 +00001671 delete I->second.first;
1672 I->second.first = 0;
1673 }
1674}
1675
Chris Lattner09d9ef42009-10-28 03:39:23 +00001676bool LLParser::PerFunctionState::FinishFunction() {
1677 // Check to see if someone took the address of labels in this block.
1678 if (!P.ForwardRefBlockAddresses.empty()) {
1679 ValID FunctionID;
1680 if (!F.getName().empty()) {
1681 FunctionID.Kind = ValID::t_GlobalName;
1682 FunctionID.StrVal = F.getName();
1683 } else {
1684 FunctionID.Kind = ValID::t_GlobalID;
1685 FunctionID.UIntVal = FunctionNumber;
1686 }
1687
1688 std::map<ValID, std::vector<std::pair<ValID, GlobalValue*> > >::iterator
1689 FRBAI = P.ForwardRefBlockAddresses.find(FunctionID);
1690 if (FRBAI != P.ForwardRefBlockAddresses.end()) {
1691 // Resolve all these references.
1692 if (P.ResolveForwardRefBlockAddresses(&F, FRBAI->second, this))
1693 return true;
1694
1695 P.ForwardRefBlockAddresses.erase(FRBAI);
1696 }
1697 }
1698
Chris Lattnerdf986172009-01-02 07:01:27 +00001699 if (!ForwardRefVals.empty())
1700 return P.Error(ForwardRefVals.begin()->second.second,
1701 "use of undefined value '%" + ForwardRefVals.begin()->first +
1702 "'");
1703 if (!ForwardRefValIDs.empty())
1704 return P.Error(ForwardRefValIDs.begin()->second.second,
1705 "use of undefined value '%" +
1706 utostr(ForwardRefValIDs.begin()->first) + "'");
1707 return false;
1708}
1709
1710
1711/// GetVal - Get a value with the specified name or ID, creating a
1712/// forward reference record if needed. This can return null if the value
1713/// exists but does not have the right type.
1714Value *LLParser::PerFunctionState::GetVal(const std::string &Name,
1715 const Type *Ty, LocTy Loc) {
1716 // Look this name up in the normal function symbol table.
1717 Value *Val = F.getValueSymbolTable().lookup(Name);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001718
Chris Lattnerdf986172009-01-02 07:01:27 +00001719 // If this is a forward reference for the value, see if we already created a
1720 // forward ref record.
1721 if (Val == 0) {
1722 std::map<std::string, std::pair<Value*, LocTy> >::iterator
1723 I = ForwardRefVals.find(Name);
1724 if (I != ForwardRefVals.end())
1725 Val = I->second.first;
1726 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001727
Chris Lattnerdf986172009-01-02 07:01:27 +00001728 // If we have the value in the symbol table or fwd-ref table, return it.
1729 if (Val) {
1730 if (Val->getType() == Ty) return Val;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001731 if (Ty->isLabelTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00001732 P.Error(Loc, "'%" + Name + "' is not a basic block");
1733 else
1734 P.Error(Loc, "'%" + Name + "' defined with type '" +
1735 Val->getType()->getDescription() + "'");
1736 return 0;
1737 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001738
Chris Lattnerdf986172009-01-02 07:01:27 +00001739 // Don't make placeholders with invalid type.
Owen Anderson1d0be152009-08-13 21:58:54 +00001740 if (!Ty->isFirstClassType() && !isa<OpaqueType>(Ty) &&
1741 Ty != Type::getLabelTy(F.getContext())) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001742 P.Error(Loc, "invalid use of a non-first-class type");
1743 return 0;
1744 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001745
Chris Lattnerdf986172009-01-02 07:01:27 +00001746 // Otherwise, create a new forward reference for this value and remember it.
1747 Value *FwdVal;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001748 if (Ty->isLabelTy())
Owen Anderson1d0be152009-08-13 21:58:54 +00001749 FwdVal = BasicBlock::Create(F.getContext(), Name, &F);
Chris Lattnerdf986172009-01-02 07:01:27 +00001750 else
1751 FwdVal = new Argument(Ty, Name);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001752
Chris Lattnerdf986172009-01-02 07:01:27 +00001753 ForwardRefVals[Name] = std::make_pair(FwdVal, Loc);
1754 return FwdVal;
1755}
1756
1757Value *LLParser::PerFunctionState::GetVal(unsigned ID, const Type *Ty,
1758 LocTy Loc) {
1759 // Look this name up in the normal function symbol table.
1760 Value *Val = ID < NumberedVals.size() ? NumberedVals[ID] : 0;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001761
Chris Lattnerdf986172009-01-02 07:01:27 +00001762 // If this is a forward reference for the value, see if we already created a
1763 // forward ref record.
1764 if (Val == 0) {
1765 std::map<unsigned, std::pair<Value*, LocTy> >::iterator
1766 I = ForwardRefValIDs.find(ID);
1767 if (I != ForwardRefValIDs.end())
1768 Val = I->second.first;
1769 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001770
Chris Lattnerdf986172009-01-02 07:01:27 +00001771 // If we have the value in the symbol table or fwd-ref table, return it.
1772 if (Val) {
1773 if (Val->getType() == Ty) return Val;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001774 if (Ty->isLabelTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00001775 P.Error(Loc, "'%" + utostr(ID) + "' is not a basic block");
1776 else
1777 P.Error(Loc, "'%" + utostr(ID) + "' defined with type '" +
1778 Val->getType()->getDescription() + "'");
1779 return 0;
1780 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001781
Owen Anderson1d0be152009-08-13 21:58:54 +00001782 if (!Ty->isFirstClassType() && !isa<OpaqueType>(Ty) &&
1783 Ty != Type::getLabelTy(F.getContext())) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001784 P.Error(Loc, "invalid use of a non-first-class type");
1785 return 0;
1786 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001787
Chris Lattnerdf986172009-01-02 07:01:27 +00001788 // Otherwise, create a new forward reference for this value and remember it.
1789 Value *FwdVal;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001790 if (Ty->isLabelTy())
Owen Anderson1d0be152009-08-13 21:58:54 +00001791 FwdVal = BasicBlock::Create(F.getContext(), "", &F);
Chris Lattnerdf986172009-01-02 07:01:27 +00001792 else
1793 FwdVal = new Argument(Ty);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001794
Chris Lattnerdf986172009-01-02 07:01:27 +00001795 ForwardRefValIDs[ID] = std::make_pair(FwdVal, Loc);
1796 return FwdVal;
1797}
1798
1799/// SetInstName - After an instruction is parsed and inserted into its
1800/// basic block, this installs its name.
1801bool LLParser::PerFunctionState::SetInstName(int NameID,
1802 const std::string &NameStr,
1803 LocTy NameLoc, Instruction *Inst) {
1804 // If this instruction has void type, it cannot have a name or ID specified.
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001805 if (Inst->getType()->isVoidTy()) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001806 if (NameID != -1 || !NameStr.empty())
1807 return P.Error(NameLoc, "instructions returning void cannot have a name");
1808 return false;
1809 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001810
Chris Lattnerdf986172009-01-02 07:01:27 +00001811 // If this was a numbered instruction, verify that the instruction is the
1812 // expected value and resolve any forward references.
1813 if (NameStr.empty()) {
1814 // If neither a name nor an ID was specified, just use the next ID.
1815 if (NameID == -1)
1816 NameID = NumberedVals.size();
Daniel Dunbara279bc32009-09-20 02:20:51 +00001817
Chris Lattnerdf986172009-01-02 07:01:27 +00001818 if (unsigned(NameID) != NumberedVals.size())
1819 return P.Error(NameLoc, "instruction expected to be numbered '%" +
1820 utostr(NumberedVals.size()) + "'");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001821
Chris Lattnerdf986172009-01-02 07:01:27 +00001822 std::map<unsigned, std::pair<Value*, LocTy> >::iterator FI =
1823 ForwardRefValIDs.find(NameID);
1824 if (FI != ForwardRefValIDs.end()) {
1825 if (FI->second.first->getType() != Inst->getType())
Daniel Dunbara279bc32009-09-20 02:20:51 +00001826 return P.Error(NameLoc, "instruction forward referenced with type '" +
Chris Lattnerdf986172009-01-02 07:01:27 +00001827 FI->second.first->getType()->getDescription() + "'");
1828 FI->second.first->replaceAllUsesWith(Inst);
Nuno Lopes2b4f28e2009-09-02 15:02:57 +00001829 delete FI->second.first;
Chris Lattnerdf986172009-01-02 07:01:27 +00001830 ForwardRefValIDs.erase(FI);
1831 }
1832
1833 NumberedVals.push_back(Inst);
1834 return false;
1835 }
1836
1837 // Otherwise, the instruction had a name. Resolve forward refs and set it.
1838 std::map<std::string, std::pair<Value*, LocTy> >::iterator
1839 FI = ForwardRefVals.find(NameStr);
1840 if (FI != ForwardRefVals.end()) {
1841 if (FI->second.first->getType() != Inst->getType())
Daniel Dunbara279bc32009-09-20 02:20:51 +00001842 return P.Error(NameLoc, "instruction forward referenced with type '" +
Chris Lattnerdf986172009-01-02 07:01:27 +00001843 FI->second.first->getType()->getDescription() + "'");
1844 FI->second.first->replaceAllUsesWith(Inst);
Nuno Lopes531552a2009-09-02 14:22:03 +00001845 delete FI->second.first;
Chris Lattnerdf986172009-01-02 07:01:27 +00001846 ForwardRefVals.erase(FI);
1847 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001848
Chris Lattnerdf986172009-01-02 07:01:27 +00001849 // Set the name on the instruction.
1850 Inst->setName(NameStr);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001851
Chris Lattnerdf986172009-01-02 07:01:27 +00001852 if (Inst->getNameStr() != NameStr)
Daniel Dunbara279bc32009-09-20 02:20:51 +00001853 return P.Error(NameLoc, "multiple definition of local value named '" +
Chris Lattnerdf986172009-01-02 07:01:27 +00001854 NameStr + "'");
1855 return false;
1856}
1857
1858/// GetBB - Get a basic block with the specified name or ID, creating a
1859/// forward reference record if needed.
1860BasicBlock *LLParser::PerFunctionState::GetBB(const std::string &Name,
1861 LocTy Loc) {
Owen Anderson1d0be152009-08-13 21:58:54 +00001862 return cast_or_null<BasicBlock>(GetVal(Name,
1863 Type::getLabelTy(F.getContext()), Loc));
Chris Lattnerdf986172009-01-02 07:01:27 +00001864}
1865
1866BasicBlock *LLParser::PerFunctionState::GetBB(unsigned ID, LocTy Loc) {
Owen Anderson1d0be152009-08-13 21:58:54 +00001867 return cast_or_null<BasicBlock>(GetVal(ID,
1868 Type::getLabelTy(F.getContext()), Loc));
Chris Lattnerdf986172009-01-02 07:01:27 +00001869}
1870
1871/// DefineBB - Define the specified basic block, which is either named or
1872/// unnamed. If there is an error, this returns null otherwise it returns
1873/// the block being defined.
1874BasicBlock *LLParser::PerFunctionState::DefineBB(const std::string &Name,
1875 LocTy Loc) {
1876 BasicBlock *BB;
1877 if (Name.empty())
1878 BB = GetBB(NumberedVals.size(), Loc);
1879 else
1880 BB = GetBB(Name, Loc);
1881 if (BB == 0) return 0; // Already diagnosed error.
Daniel Dunbara279bc32009-09-20 02:20:51 +00001882
Chris Lattnerdf986172009-01-02 07:01:27 +00001883 // Move the block to the end of the function. Forward ref'd blocks are
1884 // inserted wherever they happen to be referenced.
1885 F.getBasicBlockList().splice(F.end(), F.getBasicBlockList(), BB);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001886
Chris Lattnerdf986172009-01-02 07:01:27 +00001887 // Remove the block from forward ref sets.
1888 if (Name.empty()) {
1889 ForwardRefValIDs.erase(NumberedVals.size());
1890 NumberedVals.push_back(BB);
1891 } else {
1892 // BB forward references are already in the function symbol table.
1893 ForwardRefVals.erase(Name);
1894 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001895
Chris Lattnerdf986172009-01-02 07:01:27 +00001896 return BB;
1897}
1898
1899//===----------------------------------------------------------------------===//
1900// Constants.
1901//===----------------------------------------------------------------------===//
1902
1903/// ParseValID - Parse an abstract value that doesn't necessarily have a
1904/// type implied. For example, if we parse "4" we don't know what integer type
1905/// it has. The value will later be combined with its type and checked for
1906/// sanity.
1907bool LLParser::ParseValID(ValID &ID) {
1908 ID.Loc = Lex.getLoc();
1909 switch (Lex.getKind()) {
1910 default: return TokError("expected value token");
1911 case lltok::GlobalID: // @42
1912 ID.UIntVal = Lex.getUIntVal();
1913 ID.Kind = ValID::t_GlobalID;
1914 break;
1915 case lltok::GlobalVar: // @foo
1916 ID.StrVal = Lex.getStrVal();
1917 ID.Kind = ValID::t_GlobalName;
1918 break;
1919 case lltok::LocalVarID: // %42
1920 ID.UIntVal = Lex.getUIntVal();
1921 ID.Kind = ValID::t_LocalID;
1922 break;
1923 case lltok::LocalVar: // %foo
1924 case lltok::StringConstant: // "foo" - FIXME: REMOVE IN LLVM 3.0
1925 ID.StrVal = Lex.getStrVal();
1926 ID.Kind = ValID::t_LocalName;
1927 break;
Nick Lewycky21cc4462009-04-04 07:22:01 +00001928 case lltok::Metadata: { // !{...} MDNode, !"foo" MDString
Devang Patel104cf9e2009-07-23 01:07:34 +00001929 ID.Kind = ValID::t_Metadata;
Nick Lewycky21cc4462009-04-04 07:22:01 +00001930 Lex.Lex();
1931 if (Lex.getKind() == lltok::lbrace) {
Nick Lewyckycb337992009-05-10 20:57:05 +00001932 SmallVector<Value*, 16> Elts;
Nick Lewycky21cc4462009-04-04 07:22:01 +00001933 if (ParseMDNodeVector(Elts) ||
1934 ParseToken(lltok::rbrace, "expected end of metadata node"))
1935 return true;
Nick Lewyckycb337992009-05-10 20:57:05 +00001936
Owen Anderson647e3012009-07-31 21:35:40 +00001937 ID.MetadataVal = MDNode::get(Context, Elts.data(), Elts.size());
Nick Lewycky21cc4462009-04-04 07:22:01 +00001938 return false;
1939 }
1940
Devang Patel923078c2009-07-01 19:21:12 +00001941 // Standalone metadata reference
1942 // !{ ..., !42, ... }
Devang Patel104cf9e2009-07-23 01:07:34 +00001943 if (!ParseMDNode(ID.MetadataVal))
Devang Patel923078c2009-07-01 19:21:12 +00001944 return false;
Devang Patel256be962009-07-20 19:00:08 +00001945
Nick Lewycky21cc4462009-04-04 07:22:01 +00001946 // MDString:
1947 // ::= '!' STRINGCONSTANT
Devang Patele54abc92009-07-22 17:43:22 +00001948 if (ParseMDString(ID.MetadataVal)) return true;
1949 ID.Kind = ValID::t_Metadata;
Nick Lewycky21cc4462009-04-04 07:22:01 +00001950 return false;
1951 }
Chris Lattnerdf986172009-01-02 07:01:27 +00001952 case lltok::APSInt:
Daniel Dunbara279bc32009-09-20 02:20:51 +00001953 ID.APSIntVal = Lex.getAPSIntVal();
Chris Lattnerdf986172009-01-02 07:01:27 +00001954 ID.Kind = ValID::t_APSInt;
1955 break;
1956 case lltok::APFloat:
1957 ID.APFloatVal = Lex.getAPFloatVal();
1958 ID.Kind = ValID::t_APFloat;
1959 break;
1960 case lltok::kw_true:
Owen Anderson5defacc2009-07-31 17:39:07 +00001961 ID.ConstantVal = ConstantInt::getTrue(Context);
Chris Lattnerdf986172009-01-02 07:01:27 +00001962 ID.Kind = ValID::t_Constant;
1963 break;
1964 case lltok::kw_false:
Owen Anderson5defacc2009-07-31 17:39:07 +00001965 ID.ConstantVal = ConstantInt::getFalse(Context);
Chris Lattnerdf986172009-01-02 07:01:27 +00001966 ID.Kind = ValID::t_Constant;
1967 break;
1968 case lltok::kw_null: ID.Kind = ValID::t_Null; break;
1969 case lltok::kw_undef: ID.Kind = ValID::t_Undef; break;
1970 case lltok::kw_zeroinitializer: ID.Kind = ValID::t_Zero; break;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001971
Chris Lattnerdf986172009-01-02 07:01:27 +00001972 case lltok::lbrace: {
1973 // ValID ::= '{' ConstVector '}'
1974 Lex.Lex();
1975 SmallVector<Constant*, 16> Elts;
1976 if (ParseGlobalValueVector(Elts) ||
1977 ParseToken(lltok::rbrace, "expected end of struct constant"))
1978 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001979
Owen Andersond7f2a6c2009-08-05 23:16:16 +00001980 ID.ConstantVal = ConstantStruct::get(Context, Elts.data(),
1981 Elts.size(), false);
Chris Lattnerdf986172009-01-02 07:01:27 +00001982 ID.Kind = ValID::t_Constant;
1983 return false;
1984 }
1985 case lltok::less: {
1986 // ValID ::= '<' ConstVector '>' --> Vector.
1987 // ValID ::= '<' '{' ConstVector '}' '>' --> Packed Struct.
1988 Lex.Lex();
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001989 bool isPackedStruct = EatIfPresent(lltok::lbrace);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001990
Chris Lattnerdf986172009-01-02 07:01:27 +00001991 SmallVector<Constant*, 16> Elts;
1992 LocTy FirstEltLoc = Lex.getLoc();
1993 if (ParseGlobalValueVector(Elts) ||
1994 (isPackedStruct &&
1995 ParseToken(lltok::rbrace, "expected end of packed struct")) ||
1996 ParseToken(lltok::greater, "expected end of constant"))
1997 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001998
Chris Lattnerdf986172009-01-02 07:01:27 +00001999 if (isPackedStruct) {
Owen Andersonfba933c2009-07-01 23:57:11 +00002000 ID.ConstantVal =
Owen Andersond7f2a6c2009-08-05 23:16:16 +00002001 ConstantStruct::get(Context, Elts.data(), Elts.size(), true);
Chris Lattnerdf986172009-01-02 07:01:27 +00002002 ID.Kind = ValID::t_Constant;
2003 return false;
2004 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002005
Chris Lattnerdf986172009-01-02 07:01:27 +00002006 if (Elts.empty())
2007 return Error(ID.Loc, "constant vector must not be empty");
2008
2009 if (!Elts[0]->getType()->isInteger() &&
2010 !Elts[0]->getType()->isFloatingPoint())
2011 return Error(FirstEltLoc,
2012 "vector elements must have integer or floating point type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002013
Chris Lattnerdf986172009-01-02 07:01:27 +00002014 // Verify that all the vector elements have the same type.
2015 for (unsigned i = 1, e = Elts.size(); i != e; ++i)
2016 if (Elts[i]->getType() != Elts[0]->getType())
2017 return Error(FirstEltLoc,
2018 "vector element #" + utostr(i) +
2019 " is not of type '" + Elts[0]->getType()->getDescription());
Daniel Dunbara279bc32009-09-20 02:20:51 +00002020
Owen Andersonaf7ec972009-07-28 21:19:26 +00002021 ID.ConstantVal = ConstantVector::get(Elts.data(), Elts.size());
Chris Lattnerdf986172009-01-02 07:01:27 +00002022 ID.Kind = ValID::t_Constant;
2023 return false;
2024 }
2025 case lltok::lsquare: { // Array Constant
2026 Lex.Lex();
2027 SmallVector<Constant*, 16> Elts;
2028 LocTy FirstEltLoc = Lex.getLoc();
2029 if (ParseGlobalValueVector(Elts) ||
2030 ParseToken(lltok::rsquare, "expected end of array constant"))
2031 return true;
2032
2033 // Handle empty element.
2034 if (Elts.empty()) {
2035 // Use undef instead of an array because it's inconvenient to determine
2036 // the element type at this point, there being no elements to examine.
Chris Lattner081b5052009-01-05 07:52:51 +00002037 ID.Kind = ValID::t_EmptyArray;
Chris Lattnerdf986172009-01-02 07:01:27 +00002038 return false;
2039 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002040
Chris Lattnerdf986172009-01-02 07:01:27 +00002041 if (!Elts[0]->getType()->isFirstClassType())
Daniel Dunbara279bc32009-09-20 02:20:51 +00002042 return Error(FirstEltLoc, "invalid array element type: " +
Chris Lattnerdf986172009-01-02 07:01:27 +00002043 Elts[0]->getType()->getDescription());
Daniel Dunbara279bc32009-09-20 02:20:51 +00002044
Owen Andersondebcb012009-07-29 22:17:13 +00002045 ArrayType *ATy = ArrayType::get(Elts[0]->getType(), Elts.size());
Daniel Dunbara279bc32009-09-20 02:20:51 +00002046
Chris Lattnerdf986172009-01-02 07:01:27 +00002047 // Verify all elements are correct type!
Chris Lattner6d6b3cc2009-01-02 08:49:06 +00002048 for (unsigned i = 0, e = Elts.size(); i != e; ++i) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002049 if (Elts[i]->getType() != Elts[0]->getType())
2050 return Error(FirstEltLoc,
2051 "array element #" + utostr(i) +
2052 " is not of type '" +Elts[0]->getType()->getDescription());
2053 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002054
Owen Anderson1fd70962009-07-28 18:32:17 +00002055 ID.ConstantVal = ConstantArray::get(ATy, Elts.data(), Elts.size());
Chris Lattnerdf986172009-01-02 07:01:27 +00002056 ID.Kind = ValID::t_Constant;
2057 return false;
2058 }
2059 case lltok::kw_c: // c "foo"
2060 Lex.Lex();
Owen Anderson1d0be152009-08-13 21:58:54 +00002061 ID.ConstantVal = ConstantArray::get(Context, Lex.getStrVal(), false);
Chris Lattnerdf986172009-01-02 07:01:27 +00002062 if (ParseToken(lltok::StringConstant, "expected string")) return true;
2063 ID.Kind = ValID::t_Constant;
2064 return false;
2065
2066 case lltok::kw_asm: {
Dale Johannesen8ba2d5b2009-10-21 23:28:00 +00002067 // ValID ::= 'asm' SideEffect? AlignStack? STRINGCONSTANT ',' STRINGCONSTANT
2068 bool HasSideEffect, AlignStack;
Chris Lattnerdf986172009-01-02 07:01:27 +00002069 Lex.Lex();
2070 if (ParseOptionalToken(lltok::kw_sideeffect, HasSideEffect) ||
Dale Johannesen8ba2d5b2009-10-21 23:28:00 +00002071 ParseOptionalToken(lltok::kw_alignstack, AlignStack) ||
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002072 ParseStringConstant(ID.StrVal) ||
2073 ParseToken(lltok::comma, "expected comma in inline asm expression") ||
Chris Lattnerdf986172009-01-02 07:01:27 +00002074 ParseToken(lltok::StringConstant, "expected constraint string"))
2075 return true;
2076 ID.StrVal2 = Lex.getStrVal();
Daniel Dunbarf0bb41c2009-11-07 23:51:55 +00002077 ID.UIntVal = unsigned(HasSideEffect) | (unsigned(AlignStack)<<1);
Chris Lattnerdf986172009-01-02 07:01:27 +00002078 ID.Kind = ValID::t_InlineAsm;
2079 return false;
2080 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002081
Chris Lattner09d9ef42009-10-28 03:39:23 +00002082 case lltok::kw_blockaddress: {
2083 // ValID ::= 'blockaddress' '(' @foo ',' %bar ')'
2084 Lex.Lex();
2085
2086 ValID Fn, Label;
2087 LocTy FnLoc, LabelLoc;
2088
2089 if (ParseToken(lltok::lparen, "expected '(' in block address expression") ||
2090 ParseValID(Fn) ||
2091 ParseToken(lltok::comma, "expected comma in block address expression")||
2092 ParseValID(Label) ||
2093 ParseToken(lltok::rparen, "expected ')' in block address expression"))
2094 return true;
Chris Lattnercdfc9402009-11-01 01:27:45 +00002095
Chris Lattner09d9ef42009-10-28 03:39:23 +00002096 if (Fn.Kind != ValID::t_GlobalID && Fn.Kind != ValID::t_GlobalName)
2097 return Error(Fn.Loc, "expected function name in blockaddress");
Chris Lattnercdfc9402009-11-01 01:27:45 +00002098 if (Label.Kind != ValID::t_LocalID && Label.Kind != ValID::t_LocalName)
Chris Lattner09d9ef42009-10-28 03:39:23 +00002099 return Error(Label.Loc, "expected basic block name in blockaddress");
2100
2101 // Make a global variable as a placeholder for this reference.
2102 GlobalVariable *FwdRef = new GlobalVariable(*M, Type::getInt8Ty(Context),
2103 false, GlobalValue::InternalLinkage,
2104 0, "");
2105 ForwardRefBlockAddresses[Fn].push_back(std::make_pair(Label, FwdRef));
2106 ID.ConstantVal = FwdRef;
2107 ID.Kind = ValID::t_Constant;
2108 return false;
2109 }
2110
Chris Lattnerdf986172009-01-02 07:01:27 +00002111 case lltok::kw_trunc:
2112 case lltok::kw_zext:
2113 case lltok::kw_sext:
2114 case lltok::kw_fptrunc:
2115 case lltok::kw_fpext:
2116 case lltok::kw_bitcast:
2117 case lltok::kw_uitofp:
2118 case lltok::kw_sitofp:
2119 case lltok::kw_fptoui:
Daniel Dunbara279bc32009-09-20 02:20:51 +00002120 case lltok::kw_fptosi:
Chris Lattnerdf986172009-01-02 07:01:27 +00002121 case lltok::kw_inttoptr:
Daniel Dunbara279bc32009-09-20 02:20:51 +00002122 case lltok::kw_ptrtoint: {
Chris Lattnerdf986172009-01-02 07:01:27 +00002123 unsigned Opc = Lex.getUIntVal();
Owen Anderson1d0be152009-08-13 21:58:54 +00002124 PATypeHolder DestTy(Type::getVoidTy(Context));
Chris Lattnerdf986172009-01-02 07:01:27 +00002125 Constant *SrcVal;
2126 Lex.Lex();
2127 if (ParseToken(lltok::lparen, "expected '(' after constantexpr cast") ||
2128 ParseGlobalTypeAndValue(SrcVal) ||
Dan Gohman24b108b2009-06-15 21:52:11 +00002129 ParseToken(lltok::kw_to, "expected 'to' in constantexpr cast") ||
Chris Lattnerdf986172009-01-02 07:01:27 +00002130 ParseType(DestTy) ||
2131 ParseToken(lltok::rparen, "expected ')' at end of constantexpr cast"))
2132 return true;
2133 if (!CastInst::castIsValid((Instruction::CastOps)Opc, SrcVal, DestTy))
2134 return Error(ID.Loc, "invalid cast opcode for cast from '" +
2135 SrcVal->getType()->getDescription() + "' to '" +
2136 DestTy->getDescription() + "'");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002137 ID.ConstantVal = ConstantExpr::getCast((Instruction::CastOps)Opc,
Owen Andersonfba933c2009-07-01 23:57:11 +00002138 SrcVal, DestTy);
Chris Lattnerdf986172009-01-02 07:01:27 +00002139 ID.Kind = ValID::t_Constant;
2140 return false;
2141 }
2142 case lltok::kw_extractvalue: {
2143 Lex.Lex();
2144 Constant *Val;
2145 SmallVector<unsigned, 4> Indices;
2146 if (ParseToken(lltok::lparen, "expected '(' in extractvalue constantexpr")||
2147 ParseGlobalTypeAndValue(Val) ||
2148 ParseIndexList(Indices) ||
2149 ParseToken(lltok::rparen, "expected ')' in extractvalue constantexpr"))
2150 return true;
Devang Patele8bc45a2009-11-03 19:06:07 +00002151 if (Lex.getKind() == lltok::NamedOrCustomMD)
2152 if (ParseOptionalCustomMetadata()) return true;
2153
Chris Lattnerdf986172009-01-02 07:01:27 +00002154 if (!isa<StructType>(Val->getType()) && !isa<ArrayType>(Val->getType()))
2155 return Error(ID.Loc, "extractvalue operand must be array or struct");
2156 if (!ExtractValueInst::getIndexedType(Val->getType(), Indices.begin(),
2157 Indices.end()))
2158 return Error(ID.Loc, "invalid indices for extractvalue");
Jay Foade3e51c02009-05-21 09:52:38 +00002159 ID.ConstantVal =
Owen Andersonbaf3c402009-07-29 18:55:55 +00002160 ConstantExpr::getExtractValue(Val, Indices.data(), Indices.size());
Chris Lattnerdf986172009-01-02 07:01:27 +00002161 ID.Kind = ValID::t_Constant;
2162 return false;
2163 }
2164 case lltok::kw_insertvalue: {
2165 Lex.Lex();
2166 Constant *Val0, *Val1;
2167 SmallVector<unsigned, 4> Indices;
2168 if (ParseToken(lltok::lparen, "expected '(' in insertvalue constantexpr")||
2169 ParseGlobalTypeAndValue(Val0) ||
2170 ParseToken(lltok::comma, "expected comma in insertvalue constantexpr")||
2171 ParseGlobalTypeAndValue(Val1) ||
2172 ParseIndexList(Indices) ||
2173 ParseToken(lltok::rparen, "expected ')' in insertvalue constantexpr"))
2174 return true;
Devang Patele8bc45a2009-11-03 19:06:07 +00002175 if (Lex.getKind() == lltok::NamedOrCustomMD)
2176 if (ParseOptionalCustomMetadata()) return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00002177 if (!isa<StructType>(Val0->getType()) && !isa<ArrayType>(Val0->getType()))
2178 return Error(ID.Loc, "extractvalue operand must be array or struct");
2179 if (!ExtractValueInst::getIndexedType(Val0->getType(), Indices.begin(),
2180 Indices.end()))
2181 return Error(ID.Loc, "invalid indices for insertvalue");
Owen Andersonbaf3c402009-07-29 18:55:55 +00002182 ID.ConstantVal = ConstantExpr::getInsertValue(Val0, Val1,
Owen Andersonfba933c2009-07-01 23:57:11 +00002183 Indices.data(), Indices.size());
Chris Lattnerdf986172009-01-02 07:01:27 +00002184 ID.Kind = ValID::t_Constant;
2185 return false;
2186 }
2187 case lltok::kw_icmp:
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00002188 case lltok::kw_fcmp: {
Chris Lattnerdf986172009-01-02 07:01:27 +00002189 unsigned PredVal, Opc = Lex.getUIntVal();
2190 Constant *Val0, *Val1;
2191 Lex.Lex();
2192 if (ParseCmpPredicate(PredVal, Opc) ||
2193 ParseToken(lltok::lparen, "expected '(' in compare constantexpr") ||
2194 ParseGlobalTypeAndValue(Val0) ||
2195 ParseToken(lltok::comma, "expected comma in compare constantexpr") ||
2196 ParseGlobalTypeAndValue(Val1) ||
2197 ParseToken(lltok::rparen, "expected ')' in compare constantexpr"))
2198 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002199
Chris Lattnerdf986172009-01-02 07:01:27 +00002200 if (Val0->getType() != Val1->getType())
2201 return Error(ID.Loc, "compare operands must have the same type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002202
Chris Lattnerdf986172009-01-02 07:01:27 +00002203 CmpInst::Predicate Pred = (CmpInst::Predicate)PredVal;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002204
Chris Lattnerdf986172009-01-02 07:01:27 +00002205 if (Opc == Instruction::FCmp) {
2206 if (!Val0->getType()->isFPOrFPVector())
2207 return Error(ID.Loc, "fcmp requires floating point operands");
Owen Andersonbaf3c402009-07-29 18:55:55 +00002208 ID.ConstantVal = ConstantExpr::getFCmp(Pred, Val0, Val1);
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00002209 } else {
2210 assert(Opc == Instruction::ICmp && "Unexpected opcode for CmpInst!");
Chris Lattnerdf986172009-01-02 07:01:27 +00002211 if (!Val0->getType()->isIntOrIntVector() &&
2212 !isa<PointerType>(Val0->getType()))
2213 return Error(ID.Loc, "icmp requires pointer or integer operands");
Owen Andersonbaf3c402009-07-29 18:55:55 +00002214 ID.ConstantVal = ConstantExpr::getICmp(Pred, Val0, Val1);
Chris Lattnerdf986172009-01-02 07:01:27 +00002215 }
2216 ID.Kind = ValID::t_Constant;
2217 return false;
2218 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002219
Chris Lattnerdf986172009-01-02 07:01:27 +00002220 // Binary Operators.
2221 case lltok::kw_add:
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002222 case lltok::kw_fadd:
Chris Lattnerdf986172009-01-02 07:01:27 +00002223 case lltok::kw_sub:
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002224 case lltok::kw_fsub:
Chris Lattnerdf986172009-01-02 07:01:27 +00002225 case lltok::kw_mul:
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002226 case lltok::kw_fmul:
Chris Lattnerdf986172009-01-02 07:01:27 +00002227 case lltok::kw_udiv:
2228 case lltok::kw_sdiv:
2229 case lltok::kw_fdiv:
2230 case lltok::kw_urem:
2231 case lltok::kw_srem:
2232 case lltok::kw_frem: {
Dan Gohman59858cf2009-07-27 16:11:46 +00002233 bool NUW = false;
2234 bool NSW = false;
2235 bool Exact = false;
Chris Lattnerdf986172009-01-02 07:01:27 +00002236 unsigned Opc = Lex.getUIntVal();
2237 Constant *Val0, *Val1;
2238 Lex.Lex();
Dan Gohman59858cf2009-07-27 16:11:46 +00002239 LocTy ModifierLoc = Lex.getLoc();
2240 if (Opc == Instruction::Add ||
2241 Opc == Instruction::Sub ||
2242 Opc == Instruction::Mul) {
2243 if (EatIfPresent(lltok::kw_nuw))
2244 NUW = true;
2245 if (EatIfPresent(lltok::kw_nsw)) {
2246 NSW = true;
2247 if (EatIfPresent(lltok::kw_nuw))
2248 NUW = true;
2249 }
2250 } else if (Opc == Instruction::SDiv) {
2251 if (EatIfPresent(lltok::kw_exact))
2252 Exact = true;
2253 }
Chris Lattnerdf986172009-01-02 07:01:27 +00002254 if (ParseToken(lltok::lparen, "expected '(' in binary constantexpr") ||
2255 ParseGlobalTypeAndValue(Val0) ||
2256 ParseToken(lltok::comma, "expected comma in binary constantexpr") ||
2257 ParseGlobalTypeAndValue(Val1) ||
2258 ParseToken(lltok::rparen, "expected ')' in binary constantexpr"))
2259 return true;
2260 if (Val0->getType() != Val1->getType())
2261 return Error(ID.Loc, "operands of constexpr must have same type");
Dan Gohman59858cf2009-07-27 16:11:46 +00002262 if (!Val0->getType()->isIntOrIntVector()) {
2263 if (NUW)
2264 return Error(ModifierLoc, "nuw only applies to integer operations");
2265 if (NSW)
2266 return Error(ModifierLoc, "nsw only applies to integer operations");
2267 }
2268 // API compatibility: Accept either integer or floating-point types with
2269 // add, sub, and mul.
Chris Lattnerdf986172009-01-02 07:01:27 +00002270 if (!Val0->getType()->isIntOrIntVector() &&
2271 !Val0->getType()->isFPOrFPVector())
2272 return Error(ID.Loc,"constexpr requires integer, fp, or vector operands");
Dan Gohmanf8dbee72009-09-07 23:54:19 +00002273 unsigned Flags = 0;
2274 if (NUW) Flags |= OverflowingBinaryOperator::NoUnsignedWrap;
2275 if (NSW) Flags |= OverflowingBinaryOperator::NoSignedWrap;
2276 if (Exact) Flags |= SDivOperator::IsExact;
2277 Constant *C = ConstantExpr::get(Opc, Val0, Val1, Flags);
Dan Gohman59858cf2009-07-27 16:11:46 +00002278 ID.ConstantVal = C;
Chris Lattnerdf986172009-01-02 07:01:27 +00002279 ID.Kind = ValID::t_Constant;
2280 return false;
2281 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002282
Chris Lattnerdf986172009-01-02 07:01:27 +00002283 // Logical Operations
2284 case lltok::kw_shl:
2285 case lltok::kw_lshr:
2286 case lltok::kw_ashr:
2287 case lltok::kw_and:
2288 case lltok::kw_or:
2289 case lltok::kw_xor: {
2290 unsigned Opc = Lex.getUIntVal();
2291 Constant *Val0, *Val1;
2292 Lex.Lex();
2293 if (ParseToken(lltok::lparen, "expected '(' in logical constantexpr") ||
2294 ParseGlobalTypeAndValue(Val0) ||
2295 ParseToken(lltok::comma, "expected comma in logical constantexpr") ||
2296 ParseGlobalTypeAndValue(Val1) ||
2297 ParseToken(lltok::rparen, "expected ')' in logical constantexpr"))
2298 return true;
2299 if (Val0->getType() != Val1->getType())
2300 return Error(ID.Loc, "operands of constexpr must have same type");
2301 if (!Val0->getType()->isIntOrIntVector())
2302 return Error(ID.Loc,
2303 "constexpr requires integer or integer vector operands");
Owen Andersonbaf3c402009-07-29 18:55:55 +00002304 ID.ConstantVal = ConstantExpr::get(Opc, Val0, Val1);
Chris Lattnerdf986172009-01-02 07:01:27 +00002305 ID.Kind = ValID::t_Constant;
2306 return false;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002307 }
2308
Chris Lattnerdf986172009-01-02 07:01:27 +00002309 case lltok::kw_getelementptr:
2310 case lltok::kw_shufflevector:
2311 case lltok::kw_insertelement:
2312 case lltok::kw_extractelement:
2313 case lltok::kw_select: {
2314 unsigned Opc = Lex.getUIntVal();
2315 SmallVector<Constant*, 16> Elts;
Dan Gohmandd8004d2009-07-27 21:53:46 +00002316 bool InBounds = false;
Chris Lattnerdf986172009-01-02 07:01:27 +00002317 Lex.Lex();
Dan Gohmandd8004d2009-07-27 21:53:46 +00002318 if (Opc == Instruction::GetElementPtr)
Dan Gohmandcb40a32009-07-29 15:58:36 +00002319 InBounds = EatIfPresent(lltok::kw_inbounds);
Chris Lattnerdf986172009-01-02 07:01:27 +00002320 if (ParseToken(lltok::lparen, "expected '(' in constantexpr") ||
2321 ParseGlobalValueVector(Elts) ||
2322 ParseToken(lltok::rparen, "expected ')' in constantexpr"))
2323 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002324
Chris Lattnerdf986172009-01-02 07:01:27 +00002325 if (Opc == Instruction::GetElementPtr) {
2326 if (Elts.size() == 0 || !isa<PointerType>(Elts[0]->getType()))
2327 return Error(ID.Loc, "getelementptr requires pointer operand");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002328
Chris Lattnerdf986172009-01-02 07:01:27 +00002329 if (!GetElementPtrInst::getIndexedType(Elts[0]->getType(),
Eli Friedman4e9bac32009-07-24 21:56:17 +00002330 (Value**)(Elts.data() + 1),
2331 Elts.size() - 1))
Chris Lattnerdf986172009-01-02 07:01:27 +00002332 return Error(ID.Loc, "invalid indices for getelementptr");
Dan Gohmanf8dbee72009-09-07 23:54:19 +00002333 ID.ConstantVal = InBounds ?
2334 ConstantExpr::getInBoundsGetElementPtr(Elts[0],
2335 Elts.data() + 1,
2336 Elts.size() - 1) :
2337 ConstantExpr::getGetElementPtr(Elts[0],
2338 Elts.data() + 1, Elts.size() - 1);
Chris Lattnerdf986172009-01-02 07:01:27 +00002339 } else if (Opc == Instruction::Select) {
2340 if (Elts.size() != 3)
2341 return Error(ID.Loc, "expected three operands to select");
2342 if (const char *Reason = SelectInst::areInvalidOperands(Elts[0], Elts[1],
2343 Elts[2]))
2344 return Error(ID.Loc, Reason);
Owen Andersonbaf3c402009-07-29 18:55:55 +00002345 ID.ConstantVal = ConstantExpr::getSelect(Elts[0], Elts[1], Elts[2]);
Chris Lattnerdf986172009-01-02 07:01:27 +00002346 } else if (Opc == Instruction::ShuffleVector) {
2347 if (Elts.size() != 3)
2348 return Error(ID.Loc, "expected three operands to shufflevector");
2349 if (!ShuffleVectorInst::isValidOperands(Elts[0], Elts[1], Elts[2]))
2350 return Error(ID.Loc, "invalid operands to shufflevector");
Owen Andersonfba933c2009-07-01 23:57:11 +00002351 ID.ConstantVal =
Owen Andersonbaf3c402009-07-29 18:55:55 +00002352 ConstantExpr::getShuffleVector(Elts[0], Elts[1],Elts[2]);
Chris Lattnerdf986172009-01-02 07:01:27 +00002353 } else if (Opc == Instruction::ExtractElement) {
2354 if (Elts.size() != 2)
2355 return Error(ID.Loc, "expected two operands to extractelement");
2356 if (!ExtractElementInst::isValidOperands(Elts[0], Elts[1]))
2357 return Error(ID.Loc, "invalid extractelement operands");
Owen Andersonbaf3c402009-07-29 18:55:55 +00002358 ID.ConstantVal = ConstantExpr::getExtractElement(Elts[0], Elts[1]);
Chris Lattnerdf986172009-01-02 07:01:27 +00002359 } else {
2360 assert(Opc == Instruction::InsertElement && "Unknown opcode");
2361 if (Elts.size() != 3)
2362 return Error(ID.Loc, "expected three operands to insertelement");
2363 if (!InsertElementInst::isValidOperands(Elts[0], Elts[1], Elts[2]))
2364 return Error(ID.Loc, "invalid insertelement operands");
Owen Andersonfba933c2009-07-01 23:57:11 +00002365 ID.ConstantVal =
Owen Andersonbaf3c402009-07-29 18:55:55 +00002366 ConstantExpr::getInsertElement(Elts[0], Elts[1],Elts[2]);
Chris Lattnerdf986172009-01-02 07:01:27 +00002367 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002368
Chris Lattnerdf986172009-01-02 07:01:27 +00002369 ID.Kind = ValID::t_Constant;
2370 return false;
2371 }
2372 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002373
Chris Lattnerdf986172009-01-02 07:01:27 +00002374 Lex.Lex();
2375 return false;
2376}
2377
2378/// ParseGlobalValue - Parse a global value with the specified type.
2379bool LLParser::ParseGlobalValue(const Type *Ty, Constant *&V) {
2380 V = 0;
2381 ValID ID;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002382 return ParseValID(ID) ||
2383 ConvertGlobalValIDToValue(Ty, ID, V);
Chris Lattnerdf986172009-01-02 07:01:27 +00002384}
2385
2386/// ConvertGlobalValIDToValue - Apply a type to a ValID to get a fully resolved
2387/// constant.
2388bool LLParser::ConvertGlobalValIDToValue(const Type *Ty, ValID &ID,
2389 Constant *&V) {
2390 if (isa<FunctionType>(Ty))
2391 return Error(ID.Loc, "functions are not values, refer to them as pointers");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002392
Chris Lattnerdf986172009-01-02 07:01:27 +00002393 switch (ID.Kind) {
Daniel Dunbara279bc32009-09-20 02:20:51 +00002394 default: llvm_unreachable("Unknown ValID!");
Devang Patele54abc92009-07-22 17:43:22 +00002395 case ValID::t_Metadata:
2396 return Error(ID.Loc, "invalid use of metadata");
Chris Lattnerdf986172009-01-02 07:01:27 +00002397 case ValID::t_LocalID:
2398 case ValID::t_LocalName:
2399 return Error(ID.Loc, "invalid use of function-local name");
2400 case ValID::t_InlineAsm:
2401 return Error(ID.Loc, "inline asm can only be an operand of call/invoke");
2402 case ValID::t_GlobalName:
2403 V = GetGlobalVal(ID.StrVal, Ty, ID.Loc);
2404 return V == 0;
2405 case ValID::t_GlobalID:
2406 V = GetGlobalVal(ID.UIntVal, Ty, ID.Loc);
2407 return V == 0;
2408 case ValID::t_APSInt:
2409 if (!isa<IntegerType>(Ty))
2410 return Error(ID.Loc, "integer constant must have integer type");
2411 ID.APSIntVal.extOrTrunc(Ty->getPrimitiveSizeInBits());
Owen Andersoneed707b2009-07-24 23:12:02 +00002412 V = ConstantInt::get(Context, ID.APSIntVal);
Chris Lattnerdf986172009-01-02 07:01:27 +00002413 return false;
2414 case ValID::t_APFloat:
2415 if (!Ty->isFloatingPoint() ||
2416 !ConstantFP::isValueValidForType(Ty, ID.APFloatVal))
2417 return Error(ID.Loc, "floating point constant invalid for type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002418
Chris Lattnerdf986172009-01-02 07:01:27 +00002419 // The lexer has no type info, so builds all float and double FP constants
2420 // as double. Fix this here. Long double does not need this.
2421 if (&ID.APFloatVal.getSemantics() == &APFloat::IEEEdouble &&
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00002422 Ty->isFloatTy()) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002423 bool Ignored;
2424 ID.APFloatVal.convert(APFloat::IEEEsingle, APFloat::rmNearestTiesToEven,
2425 &Ignored);
2426 }
Owen Anderson6f83c9c2009-07-27 20:59:43 +00002427 V = ConstantFP::get(Context, ID.APFloatVal);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002428
Chris Lattner959873d2009-01-05 18:24:23 +00002429 if (V->getType() != Ty)
2430 return Error(ID.Loc, "floating point constant does not have type '" +
2431 Ty->getDescription() + "'");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002432
Chris Lattnerdf986172009-01-02 07:01:27 +00002433 return false;
2434 case ValID::t_Null:
2435 if (!isa<PointerType>(Ty))
2436 return Error(ID.Loc, "null must be a pointer type");
Owen Anderson9e9a0d52009-07-30 23:03:37 +00002437 V = ConstantPointerNull::get(cast<PointerType>(Ty));
Chris Lattnerdf986172009-01-02 07:01:27 +00002438 return false;
2439 case ValID::t_Undef:
Chris Lattnere67c1aa2009-01-05 08:13:38 +00002440 // FIXME: LabelTy should not be a first-class type.
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00002441 if ((!Ty->isFirstClassType() || Ty->isLabelTy()) &&
Chris Lattner0b616352009-01-05 18:12:21 +00002442 !isa<OpaqueType>(Ty))
Chris Lattnere67c1aa2009-01-05 08:13:38 +00002443 return Error(ID.Loc, "invalid type for undef constant");
Owen Anderson9e9a0d52009-07-30 23:03:37 +00002444 V = UndefValue::get(Ty);
Chris Lattnerdf986172009-01-02 07:01:27 +00002445 return false;
Chris Lattner081b5052009-01-05 07:52:51 +00002446 case ValID::t_EmptyArray:
2447 if (!isa<ArrayType>(Ty) || cast<ArrayType>(Ty)->getNumElements() != 0)
2448 return Error(ID.Loc, "invalid empty array initializer");
Owen Anderson9e9a0d52009-07-30 23:03:37 +00002449 V = UndefValue::get(Ty);
Chris Lattner081b5052009-01-05 07:52:51 +00002450 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00002451 case ValID::t_Zero:
Chris Lattnere67c1aa2009-01-05 08:13:38 +00002452 // FIXME: LabelTy should not be a first-class type.
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00002453 if (!Ty->isFirstClassType() || Ty->isLabelTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002454 return Error(ID.Loc, "invalid type for null constant");
Owen Andersona7235ea2009-07-31 20:28:14 +00002455 V = Constant::getNullValue(Ty);
Chris Lattnerdf986172009-01-02 07:01:27 +00002456 return false;
2457 case ValID::t_Constant:
2458 if (ID.ConstantVal->getType() != Ty)
2459 return Error(ID.Loc, "constant expression type mismatch");
2460 V = ID.ConstantVal;
2461 return false;
2462 }
2463}
Daniel Dunbara279bc32009-09-20 02:20:51 +00002464
Chris Lattnerdf986172009-01-02 07:01:27 +00002465bool LLParser::ParseGlobalTypeAndValue(Constant *&V) {
Owen Anderson1d0be152009-08-13 21:58:54 +00002466 PATypeHolder Type(Type::getVoidTy(Context));
Chris Lattnerdf986172009-01-02 07:01:27 +00002467 return ParseType(Type) ||
2468 ParseGlobalValue(Type, V);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002469}
Chris Lattnerdf986172009-01-02 07:01:27 +00002470
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002471/// ParseGlobalValueVector
2472/// ::= /*empty*/
2473/// ::= TypeAndValue (',' TypeAndValue)*
Chris Lattnerdf986172009-01-02 07:01:27 +00002474bool LLParser::ParseGlobalValueVector(SmallVectorImpl<Constant*> &Elts) {
2475 // Empty list.
2476 if (Lex.getKind() == lltok::rbrace ||
2477 Lex.getKind() == lltok::rsquare ||
2478 Lex.getKind() == lltok::greater ||
2479 Lex.getKind() == lltok::rparen)
2480 return false;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002481
Chris Lattnerdf986172009-01-02 07:01:27 +00002482 Constant *C;
2483 if (ParseGlobalTypeAndValue(C)) return true;
2484 Elts.push_back(C);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002485
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002486 while (EatIfPresent(lltok::comma)) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002487 if (ParseGlobalTypeAndValue(C)) return true;
2488 Elts.push_back(C);
2489 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002490
Chris Lattnerdf986172009-01-02 07:01:27 +00002491 return false;
2492}
2493
2494
2495//===----------------------------------------------------------------------===//
2496// Function Parsing.
2497//===----------------------------------------------------------------------===//
2498
2499bool LLParser::ConvertValIDToValue(const Type *Ty, ValID &ID, Value *&V,
2500 PerFunctionState &PFS) {
2501 if (ID.Kind == ValID::t_LocalID)
2502 V = PFS.GetVal(ID.UIntVal, Ty, ID.Loc);
2503 else if (ID.Kind == ValID::t_LocalName)
2504 V = PFS.GetVal(ID.StrVal, Ty, ID.Loc);
Steve Naroffb0adcdb2009-01-05 18:48:47 +00002505 else if (ID.Kind == ValID::t_InlineAsm) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002506 const PointerType *PTy = dyn_cast<PointerType>(Ty);
2507 const FunctionType *FTy =
2508 PTy ? dyn_cast<FunctionType>(PTy->getElementType()) : 0;
2509 if (!FTy || !InlineAsm::Verify(FTy, ID.StrVal2))
2510 return Error(ID.Loc, "invalid type for inline asm constraint string");
Dale Johannesen43602982009-10-13 20:46:56 +00002511 V = InlineAsm::get(FTy, ID.StrVal, ID.StrVal2, ID.UIntVal&1, ID.UIntVal>>1);
Chris Lattnerdf986172009-01-02 07:01:27 +00002512 return false;
Devang Patele54abc92009-07-22 17:43:22 +00002513 } else if (ID.Kind == ValID::t_Metadata) {
2514 V = ID.MetadataVal;
Chris Lattnerdf986172009-01-02 07:01:27 +00002515 } else {
2516 Constant *C;
2517 if (ConvertGlobalValIDToValue(Ty, ID, C)) return true;
2518 V = C;
2519 return false;
2520 }
2521
2522 return V == 0;
2523}
2524
2525bool LLParser::ParseValue(const Type *Ty, Value *&V, PerFunctionState &PFS) {
2526 V = 0;
2527 ValID ID;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002528 return ParseValID(ID) ||
2529 ConvertValIDToValue(Ty, ID, V, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00002530}
2531
2532bool LLParser::ParseTypeAndValue(Value *&V, PerFunctionState &PFS) {
Owen Anderson1d0be152009-08-13 21:58:54 +00002533 PATypeHolder T(Type::getVoidTy(Context));
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002534 return ParseType(T) ||
2535 ParseValue(T, V, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00002536}
2537
Chris Lattnerf9be95f2009-10-27 19:13:16 +00002538bool LLParser::ParseTypeAndBasicBlock(BasicBlock *&BB, LocTy &Loc,
2539 PerFunctionState &PFS) {
2540 Value *V;
2541 Loc = Lex.getLoc();
2542 if (ParseTypeAndValue(V, PFS)) return true;
2543 if (!isa<BasicBlock>(V))
2544 return Error(Loc, "expected a basic block");
2545 BB = cast<BasicBlock>(V);
2546 return false;
2547}
2548
2549
Chris Lattnerdf986172009-01-02 07:01:27 +00002550/// FunctionHeader
2551/// ::= OptionalLinkage OptionalVisibility OptionalCallingConv OptRetAttrs
2552/// Type GlobalName '(' ArgList ')' OptFuncAttrs OptSection
2553/// OptionalAlign OptGC
2554bool LLParser::ParseFunctionHeader(Function *&Fn, bool isDefine) {
2555 // Parse the linkage.
2556 LocTy LinkageLoc = Lex.getLoc();
2557 unsigned Linkage;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002558
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00002559 unsigned Visibility, RetAttrs;
2560 CallingConv::ID CC;
Owen Anderson1d0be152009-08-13 21:58:54 +00002561 PATypeHolder RetType(Type::getVoidTy(Context));
Chris Lattnerdf986172009-01-02 07:01:27 +00002562 LocTy RetTypeLoc = Lex.getLoc();
2563 if (ParseOptionalLinkage(Linkage) ||
2564 ParseOptionalVisibility(Visibility) ||
2565 ParseOptionalCallingConv(CC) ||
2566 ParseOptionalAttrs(RetAttrs, 1) ||
Chris Lattnera9a9e072009-03-09 04:49:14 +00002567 ParseType(RetType, RetTypeLoc, true /*void allowed*/))
Chris Lattnerdf986172009-01-02 07:01:27 +00002568 return true;
2569
2570 // Verify that the linkage is ok.
2571 switch ((GlobalValue::LinkageTypes)Linkage) {
2572 case GlobalValue::ExternalLinkage:
2573 break; // always ok.
2574 case GlobalValue::DLLImportLinkage:
Duncan Sands5f4ee1f2009-03-11 08:08:06 +00002575 case GlobalValue::ExternalWeakLinkage:
Chris Lattnerdf986172009-01-02 07:01:27 +00002576 if (isDefine)
2577 return Error(LinkageLoc, "invalid linkage for function definition");
2578 break;
Rafael Espindolabb46f522009-01-15 20:18:42 +00002579 case GlobalValue::PrivateLinkage:
Bill Wendling3d10a5a2009-07-20 01:03:30 +00002580 case GlobalValue::LinkerPrivateLinkage:
Chris Lattnerdf986172009-01-02 07:01:27 +00002581 case GlobalValue::InternalLinkage:
Nick Lewycky55f64db2009-04-13 07:02:02 +00002582 case GlobalValue::AvailableExternallyLinkage:
Duncan Sands667d4b82009-03-07 15:45:40 +00002583 case GlobalValue::LinkOnceAnyLinkage:
2584 case GlobalValue::LinkOnceODRLinkage:
2585 case GlobalValue::WeakAnyLinkage:
2586 case GlobalValue::WeakODRLinkage:
Chris Lattnerdf986172009-01-02 07:01:27 +00002587 case GlobalValue::DLLExportLinkage:
2588 if (!isDefine)
2589 return Error(LinkageLoc, "invalid linkage for function declaration");
2590 break;
2591 case GlobalValue::AppendingLinkage:
2592 case GlobalValue::GhostLinkage:
Duncan Sands4dc2b392009-03-11 20:14:15 +00002593 case GlobalValue::CommonLinkage:
Chris Lattnerdf986172009-01-02 07:01:27 +00002594 return Error(LinkageLoc, "invalid function linkage type");
2595 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002596
Chris Lattner99bb3152009-01-05 08:00:30 +00002597 if (!FunctionType::isValidReturnType(RetType) ||
2598 isa<OpaqueType>(RetType))
Chris Lattnerdf986172009-01-02 07:01:27 +00002599 return Error(RetTypeLoc, "invalid function return type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002600
Chris Lattnerdf986172009-01-02 07:01:27 +00002601 LocTy NameLoc = Lex.getLoc();
Chris Lattnerf570e622009-02-18 21:48:13 +00002602
2603 std::string FunctionName;
2604 if (Lex.getKind() == lltok::GlobalVar) {
2605 FunctionName = Lex.getStrVal();
2606 } else if (Lex.getKind() == lltok::GlobalID) { // @42 is ok.
2607 unsigned NameID = Lex.getUIntVal();
2608
2609 if (NameID != NumberedVals.size())
2610 return TokError("function expected to be numbered '%" +
2611 utostr(NumberedVals.size()) + "'");
2612 } else {
2613 return TokError("expected function name");
2614 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002615
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002616 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +00002617
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002618 if (Lex.getKind() != lltok::lparen)
Chris Lattnerdf986172009-01-02 07:01:27 +00002619 return TokError("expected '(' in function argument list");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002620
Chris Lattnerdf986172009-01-02 07:01:27 +00002621 std::vector<ArgInfo> ArgList;
2622 bool isVarArg;
Chris Lattnerdf986172009-01-02 07:01:27 +00002623 unsigned FuncAttrs;
Chris Lattnerdf986172009-01-02 07:01:27 +00002624 std::string Section;
Chris Lattnerdf986172009-01-02 07:01:27 +00002625 unsigned Alignment;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002626 std::string GC;
2627
Chris Lattnerdfd19dd2009-01-05 18:34:07 +00002628 if (ParseArgumentList(ArgList, isVarArg, false) ||
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002629 ParseOptionalAttrs(FuncAttrs, 2) ||
2630 (EatIfPresent(lltok::kw_section) &&
2631 ParseStringConstant(Section)) ||
2632 ParseOptionalAlignment(Alignment) ||
2633 (EatIfPresent(lltok::kw_gc) &&
2634 ParseStringConstant(GC)))
2635 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00002636
2637 // If the alignment was parsed as an attribute, move to the alignment field.
2638 if (FuncAttrs & Attribute::Alignment) {
2639 Alignment = Attribute::getAlignmentFromAttrs(FuncAttrs);
2640 FuncAttrs &= ~Attribute::Alignment;
2641 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002642
Chris Lattnerdf986172009-01-02 07:01:27 +00002643 // Okay, if we got here, the function is syntactically valid. Convert types
2644 // and do semantic checks.
2645 std::vector<const Type*> ParamTypeList;
2646 SmallVector<AttributeWithIndex, 8> Attrs;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002647 // FIXME : In 3.0, stop accepting zext, sext and inreg as optional function
Chris Lattnerdf986172009-01-02 07:01:27 +00002648 // attributes.
2649 unsigned ObsoleteFuncAttrs = Attribute::ZExt|Attribute::SExt|Attribute::InReg;
2650 if (FuncAttrs & ObsoleteFuncAttrs) {
2651 RetAttrs |= FuncAttrs & ObsoleteFuncAttrs;
2652 FuncAttrs &= ~ObsoleteFuncAttrs;
2653 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002654
Chris Lattnerdf986172009-01-02 07:01:27 +00002655 if (RetAttrs != Attribute::None)
2656 Attrs.push_back(AttributeWithIndex::get(0, RetAttrs));
Daniel Dunbara279bc32009-09-20 02:20:51 +00002657
Chris Lattnerdf986172009-01-02 07:01:27 +00002658 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
2659 ParamTypeList.push_back(ArgList[i].Type);
2660 if (ArgList[i].Attrs != Attribute::None)
2661 Attrs.push_back(AttributeWithIndex::get(i+1, ArgList[i].Attrs));
2662 }
2663
2664 if (FuncAttrs != Attribute::None)
2665 Attrs.push_back(AttributeWithIndex::get(~0, FuncAttrs));
2666
2667 AttrListPtr PAL = AttrListPtr::get(Attrs.begin(), Attrs.end());
Daniel Dunbara279bc32009-09-20 02:20:51 +00002668
Chris Lattnera9a9e072009-03-09 04:49:14 +00002669 if (PAL.paramHasAttr(1, Attribute::StructRet) &&
Owen Anderson1d0be152009-08-13 21:58:54 +00002670 RetType != Type::getVoidTy(Context))
Daniel Dunbara279bc32009-09-20 02:20:51 +00002671 return Error(RetTypeLoc, "functions with 'sret' argument must return void");
2672
Owen Andersonfba933c2009-07-01 23:57:11 +00002673 const FunctionType *FT =
Owen Andersondebcb012009-07-29 22:17:13 +00002674 FunctionType::get(RetType, ParamTypeList, isVarArg);
2675 const PointerType *PFT = PointerType::getUnqual(FT);
Chris Lattnerdf986172009-01-02 07:01:27 +00002676
2677 Fn = 0;
2678 if (!FunctionName.empty()) {
2679 // If this was a definition of a forward reference, remove the definition
2680 // from the forward reference table and fill in the forward ref.
2681 std::map<std::string, std::pair<GlobalValue*, LocTy> >::iterator FRVI =
2682 ForwardRefVals.find(FunctionName);
2683 if (FRVI != ForwardRefVals.end()) {
2684 Fn = M->getFunction(FunctionName);
2685 ForwardRefVals.erase(FRVI);
2686 } else if ((Fn = M->getFunction(FunctionName))) {
2687 // If this function already exists in the symbol table, then it is
2688 // multiply defined. We accept a few cases for old backwards compat.
2689 // FIXME: Remove this stuff for LLVM 3.0.
2690 if (Fn->getType() != PFT || Fn->getAttributes() != PAL ||
2691 (!Fn->isDeclaration() && isDefine)) {
2692 // If the redefinition has different type or different attributes,
2693 // reject it. If both have bodies, reject it.
2694 return Error(NameLoc, "invalid redefinition of function '" +
2695 FunctionName + "'");
2696 } else if (Fn->isDeclaration()) {
2697 // Make sure to strip off any argument names so we can't get conflicts.
2698 for (Function::arg_iterator AI = Fn->arg_begin(), AE = Fn->arg_end();
2699 AI != AE; ++AI)
2700 AI->setName("");
2701 }
Chris Lattner1d871c52009-10-25 23:22:50 +00002702 } else if (M->getNamedValue(FunctionName)) {
2703 return Error(NameLoc, "redefinition of function '@" + FunctionName + "'");
Chris Lattnerdf986172009-01-02 07:01:27 +00002704 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002705
Dan Gohman41905542009-08-29 23:37:49 +00002706 } else {
Chris Lattnerdf986172009-01-02 07:01:27 +00002707 // If this is a definition of a forward referenced function, make sure the
2708 // types agree.
2709 std::map<unsigned, std::pair<GlobalValue*, LocTy> >::iterator I
2710 = ForwardRefValIDs.find(NumberedVals.size());
2711 if (I != ForwardRefValIDs.end()) {
2712 Fn = cast<Function>(I->second.first);
2713 if (Fn->getType() != PFT)
2714 return Error(NameLoc, "type of definition and forward reference of '@" +
2715 utostr(NumberedVals.size()) +"' disagree");
2716 ForwardRefValIDs.erase(I);
2717 }
2718 }
2719
2720 if (Fn == 0)
2721 Fn = Function::Create(FT, GlobalValue::ExternalLinkage, FunctionName, M);
2722 else // Move the forward-reference to the correct spot in the module.
2723 M->getFunctionList().splice(M->end(), M->getFunctionList(), Fn);
2724
2725 if (FunctionName.empty())
2726 NumberedVals.push_back(Fn);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002727
Chris Lattnerdf986172009-01-02 07:01:27 +00002728 Fn->setLinkage((GlobalValue::LinkageTypes)Linkage);
2729 Fn->setVisibility((GlobalValue::VisibilityTypes)Visibility);
2730 Fn->setCallingConv(CC);
2731 Fn->setAttributes(PAL);
2732 Fn->setAlignment(Alignment);
2733 Fn->setSection(Section);
2734 if (!GC.empty()) Fn->setGC(GC.c_str());
Daniel Dunbara279bc32009-09-20 02:20:51 +00002735
Chris Lattnerdf986172009-01-02 07:01:27 +00002736 // Add all of the arguments we parsed to the function.
2737 Function::arg_iterator ArgIt = Fn->arg_begin();
2738 for (unsigned i = 0, e = ArgList.size(); i != e; ++i, ++ArgIt) {
Chris Lattner5bda3792009-11-26 22:48:23 +00002739 // If we run out of arguments in the Function prototype, exit early.
2740 // FIXME: REMOVE THIS IN LLVM 3.0, this is just for the mismatch case above.
2741 if (ArgIt == Fn->arg_end()) break;
2742
Chris Lattnerdf986172009-01-02 07:01:27 +00002743 // If the argument has a name, insert it into the argument symbol table.
2744 if (ArgList[i].Name.empty()) continue;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002745
Chris Lattnerdf986172009-01-02 07:01:27 +00002746 // Set the name, if it conflicted, it will be auto-renamed.
2747 ArgIt->setName(ArgList[i].Name);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002748
Chris Lattnerdf986172009-01-02 07:01:27 +00002749 if (ArgIt->getNameStr() != ArgList[i].Name)
2750 return Error(ArgList[i].Loc, "redefinition of argument '%" +
2751 ArgList[i].Name + "'");
2752 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002753
Chris Lattnerdf986172009-01-02 07:01:27 +00002754 return false;
2755}
2756
2757
2758/// ParseFunctionBody
2759/// ::= '{' BasicBlock+ '}'
2760/// ::= 'begin' BasicBlock+ 'end' // FIXME: remove in LLVM 3.0
2761///
2762bool LLParser::ParseFunctionBody(Function &Fn) {
2763 if (Lex.getKind() != lltok::lbrace && Lex.getKind() != lltok::kw_begin)
2764 return TokError("expected '{' in function body");
2765 Lex.Lex(); // eat the {.
Daniel Dunbara279bc32009-09-20 02:20:51 +00002766
Chris Lattner09d9ef42009-10-28 03:39:23 +00002767 int FunctionNumber = -1;
2768 if (!Fn.hasName()) FunctionNumber = NumberedVals.size()-1;
2769
2770 PerFunctionState PFS(*this, Fn, FunctionNumber);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002771
Chris Lattnerdf986172009-01-02 07:01:27 +00002772 while (Lex.getKind() != lltok::rbrace && Lex.getKind() != lltok::kw_end)
2773 if (ParseBasicBlock(PFS)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002774
Chris Lattnerdf986172009-01-02 07:01:27 +00002775 // Eat the }.
2776 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +00002777
Chris Lattnerdf986172009-01-02 07:01:27 +00002778 // Verify function is ok.
Chris Lattner09d9ef42009-10-28 03:39:23 +00002779 return PFS.FinishFunction();
Chris Lattnerdf986172009-01-02 07:01:27 +00002780}
2781
2782/// ParseBasicBlock
2783/// ::= LabelStr? Instruction*
2784bool LLParser::ParseBasicBlock(PerFunctionState &PFS) {
2785 // If this basic block starts out with a name, remember it.
2786 std::string Name;
2787 LocTy NameLoc = Lex.getLoc();
2788 if (Lex.getKind() == lltok::LabelStr) {
2789 Name = Lex.getStrVal();
2790 Lex.Lex();
2791 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002792
Chris Lattnerdf986172009-01-02 07:01:27 +00002793 BasicBlock *BB = PFS.DefineBB(Name, NameLoc);
2794 if (BB == 0) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002795
Chris Lattnerdf986172009-01-02 07:01:27 +00002796 std::string NameStr;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002797
Chris Lattnerdf986172009-01-02 07:01:27 +00002798 // Parse the instructions in this block until we get a terminator.
2799 Instruction *Inst;
2800 do {
2801 // This instruction may have three possibilities for a name: a) none
2802 // specified, b) name specified "%foo =", c) number specified: "%4 =".
2803 LocTy NameLoc = Lex.getLoc();
2804 int NameID = -1;
2805 NameStr = "";
Daniel Dunbara279bc32009-09-20 02:20:51 +00002806
Chris Lattnerdf986172009-01-02 07:01:27 +00002807 if (Lex.getKind() == lltok::LocalVarID) {
2808 NameID = Lex.getUIntVal();
2809 Lex.Lex();
2810 if (ParseToken(lltok::equal, "expected '=' after instruction id"))
2811 return true;
2812 } else if (Lex.getKind() == lltok::LocalVar ||
2813 // FIXME: REMOVE IN LLVM 3.0
2814 Lex.getKind() == lltok::StringConstant) {
2815 NameStr = Lex.getStrVal();
2816 Lex.Lex();
2817 if (ParseToken(lltok::equal, "expected '=' after instruction name"))
2818 return true;
2819 }
Devang Patelf633a062009-09-17 23:04:48 +00002820
Chris Lattnerdf986172009-01-02 07:01:27 +00002821 if (ParseInstruction(Inst, BB, PFS)) return true;
Devang Patelf633a062009-09-17 23:04:48 +00002822 if (EatIfPresent(lltok::comma))
Devang Patel0475c912009-09-29 00:01:14 +00002823 ParseOptionalCustomMetadata();
Devang Patelf633a062009-09-17 23:04:48 +00002824
2825 // Set metadata attached with this instruction.
Devang Patela2148402009-09-28 21:14:55 +00002826 for (SmallVector<std::pair<unsigned, MDNode *>, 2>::iterator
Daniel Dunbara279bc32009-09-20 02:20:51 +00002827 MDI = MDsOnInst.begin(), MDE = MDsOnInst.end(); MDI != MDE; ++MDI)
Chris Lattner3990b122009-12-28 23:41:32 +00002828 Inst->setMetadata(MDI->first, MDI->second);
Devang Patelf633a062009-09-17 23:04:48 +00002829 MDsOnInst.clear();
2830
Chris Lattnerdf986172009-01-02 07:01:27 +00002831 BB->getInstList().push_back(Inst);
2832
2833 // Set the name on the instruction.
2834 if (PFS.SetInstName(NameID, NameStr, NameLoc, Inst)) return true;
2835 } while (!isa<TerminatorInst>(Inst));
Daniel Dunbara279bc32009-09-20 02:20:51 +00002836
Chris Lattnerdf986172009-01-02 07:01:27 +00002837 return false;
2838}
2839
2840//===----------------------------------------------------------------------===//
2841// Instruction Parsing.
2842//===----------------------------------------------------------------------===//
2843
2844/// ParseInstruction - Parse one of the many different instructions.
2845///
2846bool LLParser::ParseInstruction(Instruction *&Inst, BasicBlock *BB,
2847 PerFunctionState &PFS) {
2848 lltok::Kind Token = Lex.getKind();
2849 if (Token == lltok::Eof)
2850 return TokError("found end of file when expecting more instructions");
2851 LocTy Loc = Lex.getLoc();
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00002852 unsigned KeywordVal = Lex.getUIntVal();
Chris Lattnerdf986172009-01-02 07:01:27 +00002853 Lex.Lex(); // Eat the keyword.
Daniel Dunbara279bc32009-09-20 02:20:51 +00002854
Chris Lattnerdf986172009-01-02 07:01:27 +00002855 switch (Token) {
2856 default: return Error(Loc, "expected instruction opcode");
2857 // Terminator Instructions.
Owen Anderson1d0be152009-08-13 21:58:54 +00002858 case lltok::kw_unwind: Inst = new UnwindInst(Context); return false;
2859 case lltok::kw_unreachable: Inst = new UnreachableInst(Context); return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00002860 case lltok::kw_ret: return ParseRet(Inst, BB, PFS);
2861 case lltok::kw_br: return ParseBr(Inst, PFS);
2862 case lltok::kw_switch: return ParseSwitch(Inst, PFS);
Chris Lattnerab21db72009-10-28 00:19:10 +00002863 case lltok::kw_indirectbr: return ParseIndirectBr(Inst, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00002864 case lltok::kw_invoke: return ParseInvoke(Inst, PFS);
2865 // Binary Operators.
2866 case lltok::kw_add:
2867 case lltok::kw_sub:
Dan Gohman59858cf2009-07-27 16:11:46 +00002868 case lltok::kw_mul: {
2869 bool NUW = false;
2870 bool NSW = false;
2871 LocTy ModifierLoc = Lex.getLoc();
2872 if (EatIfPresent(lltok::kw_nuw))
2873 NUW = true;
2874 if (EatIfPresent(lltok::kw_nsw)) {
2875 NSW = true;
2876 if (EatIfPresent(lltok::kw_nuw))
2877 NUW = true;
2878 }
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002879 // API compatibility: Accept either integer or floating-point types.
Dan Gohman59858cf2009-07-27 16:11:46 +00002880 bool Result = ParseArithmetic(Inst, PFS, KeywordVal, 0);
2881 if (!Result) {
2882 if (!Inst->getType()->isIntOrIntVector()) {
2883 if (NUW)
2884 return Error(ModifierLoc, "nuw only applies to integer operations");
2885 if (NSW)
2886 return Error(ModifierLoc, "nsw only applies to integer operations");
2887 }
2888 if (NUW)
Dan Gohmanf8dbee72009-09-07 23:54:19 +00002889 cast<BinaryOperator>(Inst)->setHasNoUnsignedWrap(true);
Dan Gohman59858cf2009-07-27 16:11:46 +00002890 if (NSW)
Dan Gohmanf8dbee72009-09-07 23:54:19 +00002891 cast<BinaryOperator>(Inst)->setHasNoSignedWrap(true);
Dan Gohman59858cf2009-07-27 16:11:46 +00002892 }
2893 return Result;
2894 }
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002895 case lltok::kw_fadd:
2896 case lltok::kw_fsub:
2897 case lltok::kw_fmul: return ParseArithmetic(Inst, PFS, KeywordVal, 2);
2898
Dan Gohman59858cf2009-07-27 16:11:46 +00002899 case lltok::kw_sdiv: {
2900 bool Exact = false;
2901 if (EatIfPresent(lltok::kw_exact))
2902 Exact = true;
2903 bool Result = ParseArithmetic(Inst, PFS, KeywordVal, 1);
2904 if (!Result)
2905 if (Exact)
Dan Gohmanf8dbee72009-09-07 23:54:19 +00002906 cast<BinaryOperator>(Inst)->setIsExact(true);
Dan Gohman59858cf2009-07-27 16:11:46 +00002907 return Result;
2908 }
2909
Chris Lattnerdf986172009-01-02 07:01:27 +00002910 case lltok::kw_udiv:
Chris Lattnerdf986172009-01-02 07:01:27 +00002911 case lltok::kw_urem:
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00002912 case lltok::kw_srem: return ParseArithmetic(Inst, PFS, KeywordVal, 1);
Chris Lattnere914b592009-01-05 08:24:46 +00002913 case lltok::kw_fdiv:
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00002914 case lltok::kw_frem: return ParseArithmetic(Inst, PFS, KeywordVal, 2);
Chris Lattnerdf986172009-01-02 07:01:27 +00002915 case lltok::kw_shl:
2916 case lltok::kw_lshr:
2917 case lltok::kw_ashr:
2918 case lltok::kw_and:
2919 case lltok::kw_or:
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00002920 case lltok::kw_xor: return ParseLogical(Inst, PFS, KeywordVal);
Chris Lattnerdf986172009-01-02 07:01:27 +00002921 case lltok::kw_icmp:
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00002922 case lltok::kw_fcmp: return ParseCompare(Inst, PFS, KeywordVal);
Chris Lattnerdf986172009-01-02 07:01:27 +00002923 // Casts.
2924 case lltok::kw_trunc:
2925 case lltok::kw_zext:
2926 case lltok::kw_sext:
2927 case lltok::kw_fptrunc:
2928 case lltok::kw_fpext:
2929 case lltok::kw_bitcast:
2930 case lltok::kw_uitofp:
2931 case lltok::kw_sitofp:
2932 case lltok::kw_fptoui:
Daniel Dunbara279bc32009-09-20 02:20:51 +00002933 case lltok::kw_fptosi:
Chris Lattnerdf986172009-01-02 07:01:27 +00002934 case lltok::kw_inttoptr:
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00002935 case lltok::kw_ptrtoint: return ParseCast(Inst, PFS, KeywordVal);
Chris Lattnerdf986172009-01-02 07:01:27 +00002936 // Other.
2937 case lltok::kw_select: return ParseSelect(Inst, PFS);
Chris Lattner0088a5c2009-01-05 08:18:44 +00002938 case lltok::kw_va_arg: return ParseVA_Arg(Inst, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00002939 case lltok::kw_extractelement: return ParseExtractElement(Inst, PFS);
2940 case lltok::kw_insertelement: return ParseInsertElement(Inst, PFS);
2941 case lltok::kw_shufflevector: return ParseShuffleVector(Inst, PFS);
2942 case lltok::kw_phi: return ParsePHI(Inst, PFS);
2943 case lltok::kw_call: return ParseCall(Inst, PFS, false);
2944 case lltok::kw_tail: return ParseCall(Inst, PFS, true);
2945 // Memory.
Victor Hernandez13ad5aa2009-10-17 00:00:19 +00002946 case lltok::kw_alloca: return ParseAlloc(Inst, PFS);
2947 case lltok::kw_malloc: return ParseAlloc(Inst, PFS, BB, false);
Victor Hernandez66284e02009-10-24 04:23:03 +00002948 case lltok::kw_free: return ParseFree(Inst, PFS, BB);
Chris Lattnerdf986172009-01-02 07:01:27 +00002949 case lltok::kw_load: return ParseLoad(Inst, PFS, false);
2950 case lltok::kw_store: return ParseStore(Inst, PFS, false);
2951 case lltok::kw_volatile:
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002952 if (EatIfPresent(lltok::kw_load))
Chris Lattnerdf986172009-01-02 07:01:27 +00002953 return ParseLoad(Inst, PFS, true);
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002954 else if (EatIfPresent(lltok::kw_store))
Chris Lattnerdf986172009-01-02 07:01:27 +00002955 return ParseStore(Inst, PFS, true);
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002956 else
Chris Lattnerdf986172009-01-02 07:01:27 +00002957 return TokError("expected 'load' or 'store'");
Chris Lattnerdf986172009-01-02 07:01:27 +00002958 case lltok::kw_getresult: return ParseGetResult(Inst, PFS);
2959 case lltok::kw_getelementptr: return ParseGetElementPtr(Inst, PFS);
2960 case lltok::kw_extractvalue: return ParseExtractValue(Inst, PFS);
2961 case lltok::kw_insertvalue: return ParseInsertValue(Inst, PFS);
2962 }
2963}
2964
2965/// ParseCmpPredicate - Parse an integer or fp predicate, based on Kind.
2966bool LLParser::ParseCmpPredicate(unsigned &P, unsigned Opc) {
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00002967 if (Opc == Instruction::FCmp) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002968 switch (Lex.getKind()) {
2969 default: TokError("expected fcmp predicate (e.g. 'oeq')");
2970 case lltok::kw_oeq: P = CmpInst::FCMP_OEQ; break;
2971 case lltok::kw_one: P = CmpInst::FCMP_ONE; break;
2972 case lltok::kw_olt: P = CmpInst::FCMP_OLT; break;
2973 case lltok::kw_ogt: P = CmpInst::FCMP_OGT; break;
2974 case lltok::kw_ole: P = CmpInst::FCMP_OLE; break;
2975 case lltok::kw_oge: P = CmpInst::FCMP_OGE; break;
2976 case lltok::kw_ord: P = CmpInst::FCMP_ORD; break;
2977 case lltok::kw_uno: P = CmpInst::FCMP_UNO; break;
2978 case lltok::kw_ueq: P = CmpInst::FCMP_UEQ; break;
2979 case lltok::kw_une: P = CmpInst::FCMP_UNE; break;
2980 case lltok::kw_ult: P = CmpInst::FCMP_ULT; break;
2981 case lltok::kw_ugt: P = CmpInst::FCMP_UGT; break;
2982 case lltok::kw_ule: P = CmpInst::FCMP_ULE; break;
2983 case lltok::kw_uge: P = CmpInst::FCMP_UGE; break;
2984 case lltok::kw_true: P = CmpInst::FCMP_TRUE; break;
2985 case lltok::kw_false: P = CmpInst::FCMP_FALSE; break;
2986 }
2987 } else {
2988 switch (Lex.getKind()) {
2989 default: TokError("expected icmp predicate (e.g. 'eq')");
2990 case lltok::kw_eq: P = CmpInst::ICMP_EQ; break;
2991 case lltok::kw_ne: P = CmpInst::ICMP_NE; break;
2992 case lltok::kw_slt: P = CmpInst::ICMP_SLT; break;
2993 case lltok::kw_sgt: P = CmpInst::ICMP_SGT; break;
2994 case lltok::kw_sle: P = CmpInst::ICMP_SLE; break;
2995 case lltok::kw_sge: P = CmpInst::ICMP_SGE; break;
2996 case lltok::kw_ult: P = CmpInst::ICMP_ULT; break;
2997 case lltok::kw_ugt: P = CmpInst::ICMP_UGT; break;
2998 case lltok::kw_ule: P = CmpInst::ICMP_ULE; break;
2999 case lltok::kw_uge: P = CmpInst::ICMP_UGE; break;
3000 }
3001 }
3002 Lex.Lex();
3003 return false;
3004}
3005
3006//===----------------------------------------------------------------------===//
3007// Terminator Instructions.
3008//===----------------------------------------------------------------------===//
3009
3010/// ParseRet - Parse a return instruction.
Devang Patel0475c912009-09-29 00:01:14 +00003011/// ::= 'ret' void (',' !dbg, !1)
3012/// ::= 'ret' TypeAndValue (',' !dbg, !1)
3013/// ::= 'ret' TypeAndValue (',' TypeAndValue)+ (',' !dbg, !1)
Devang Patelf633a062009-09-17 23:04:48 +00003014/// [[obsolete: LLVM 3.0]]
Chris Lattnerdf986172009-01-02 07:01:27 +00003015bool LLParser::ParseRet(Instruction *&Inst, BasicBlock *BB,
3016 PerFunctionState &PFS) {
Owen Anderson1d0be152009-08-13 21:58:54 +00003017 PATypeHolder Ty(Type::getVoidTy(Context));
Chris Lattnera9a9e072009-03-09 04:49:14 +00003018 if (ParseType(Ty, true /*void allowed*/)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003019
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00003020 if (Ty->isVoidTy()) {
Owen Anderson1d0be152009-08-13 21:58:54 +00003021 Inst = ReturnInst::Create(Context);
Chris Lattnerdf986172009-01-02 07:01:27 +00003022 return false;
3023 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003024
Chris Lattnerdf986172009-01-02 07:01:27 +00003025 Value *RV;
3026 if (ParseValue(Ty, RV, PFS)) return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00003027
Devang Patelf633a062009-09-17 23:04:48 +00003028 if (EatIfPresent(lltok::comma)) {
Devang Patel0475c912009-09-29 00:01:14 +00003029 // Parse optional custom metadata, e.g. !dbg
3030 if (Lex.getKind() == lltok::NamedOrCustomMD) {
3031 if (ParseOptionalCustomMetadata()) return true;
Devang Patelf633a062009-09-17 23:04:48 +00003032 } else {
3033 // The normal case is one return value.
3034 // FIXME: LLVM 3.0 remove MRV support for 'ret i32 1, i32 2', requiring use
3035 // of 'ret {i32,i32} {i32 1, i32 2}'
3036 SmallVector<Value*, 8> RVs;
3037 RVs.push_back(RV);
Daniel Dunbara279bc32009-09-20 02:20:51 +00003038
Devang Patelf633a062009-09-17 23:04:48 +00003039 do {
Devang Patel0475c912009-09-29 00:01:14 +00003040 // If optional custom metadata, e.g. !dbg is seen then this is the
3041 // end of MRV.
3042 if (Lex.getKind() == lltok::NamedOrCustomMD)
Daniel Dunbara279bc32009-09-20 02:20:51 +00003043 break;
3044 if (ParseTypeAndValue(RV, PFS)) return true;
3045 RVs.push_back(RV);
Devang Patelf633a062009-09-17 23:04:48 +00003046 } while (EatIfPresent(lltok::comma));
3047
3048 RV = UndefValue::get(PFS.getFunction().getReturnType());
3049 for (unsigned i = 0, e = RVs.size(); i != e; ++i) {
Daniel Dunbara279bc32009-09-20 02:20:51 +00003050 Instruction *I = InsertValueInst::Create(RV, RVs[i], i, "mrv");
3051 BB->getInstList().push_back(I);
3052 RV = I;
Devang Patelf633a062009-09-17 23:04:48 +00003053 }
Chris Lattnerdf986172009-01-02 07:01:27 +00003054 }
3055 }
Devang Patelf633a062009-09-17 23:04:48 +00003056
Owen Anderson1d0be152009-08-13 21:58:54 +00003057 Inst = ReturnInst::Create(Context, RV);
Chris Lattnerdf986172009-01-02 07:01:27 +00003058 return false;
3059}
3060
3061
3062/// ParseBr
3063/// ::= 'br' TypeAndValue
3064/// ::= 'br' TypeAndValue ',' TypeAndValue ',' TypeAndValue
3065bool LLParser::ParseBr(Instruction *&Inst, PerFunctionState &PFS) {
3066 LocTy Loc, Loc2;
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003067 Value *Op0;
3068 BasicBlock *Op1, *Op2;
Chris Lattnerdf986172009-01-02 07:01:27 +00003069 if (ParseTypeAndValue(Op0, Loc, PFS)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003070
Chris Lattnerdf986172009-01-02 07:01:27 +00003071 if (BasicBlock *BB = dyn_cast<BasicBlock>(Op0)) {
3072 Inst = BranchInst::Create(BB);
3073 return false;
3074 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003075
Owen Anderson1d0be152009-08-13 21:58:54 +00003076 if (Op0->getType() != Type::getInt1Ty(Context))
Chris Lattnerdf986172009-01-02 07:01:27 +00003077 return Error(Loc, "branch condition must have 'i1' type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003078
Chris Lattnerdf986172009-01-02 07:01:27 +00003079 if (ParseToken(lltok::comma, "expected ',' after branch condition") ||
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003080 ParseTypeAndBasicBlock(Op1, Loc, PFS) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003081 ParseToken(lltok::comma, "expected ',' after true destination") ||
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003082 ParseTypeAndBasicBlock(Op2, Loc2, PFS))
Chris Lattnerdf986172009-01-02 07:01:27 +00003083 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003084
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003085 Inst = BranchInst::Create(Op1, Op2, Op0);
Chris Lattnerdf986172009-01-02 07:01:27 +00003086 return false;
3087}
3088
3089/// ParseSwitch
3090/// Instruction
3091/// ::= 'switch' TypeAndValue ',' TypeAndValue '[' JumpTable ']'
3092/// JumpTable
3093/// ::= (TypeAndValue ',' TypeAndValue)*
3094bool LLParser::ParseSwitch(Instruction *&Inst, PerFunctionState &PFS) {
3095 LocTy CondLoc, BBLoc;
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003096 Value *Cond;
3097 BasicBlock *DefaultBB;
Chris Lattnerdf986172009-01-02 07:01:27 +00003098 if (ParseTypeAndValue(Cond, CondLoc, PFS) ||
3099 ParseToken(lltok::comma, "expected ',' after switch condition") ||
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003100 ParseTypeAndBasicBlock(DefaultBB, BBLoc, PFS) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003101 ParseToken(lltok::lsquare, "expected '[' with switch table"))
3102 return true;
3103
3104 if (!isa<IntegerType>(Cond->getType()))
3105 return Error(CondLoc, "switch condition must have integer type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003106
Chris Lattnerdf986172009-01-02 07:01:27 +00003107 // Parse the jump table pairs.
3108 SmallPtrSet<Value*, 32> SeenCases;
3109 SmallVector<std::pair<ConstantInt*, BasicBlock*>, 32> Table;
3110 while (Lex.getKind() != lltok::rsquare) {
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003111 Value *Constant;
3112 BasicBlock *DestBB;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003113
Chris Lattnerdf986172009-01-02 07:01:27 +00003114 if (ParseTypeAndValue(Constant, CondLoc, PFS) ||
3115 ParseToken(lltok::comma, "expected ',' after case value") ||
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003116 ParseTypeAndBasicBlock(DestBB, PFS))
Chris Lattnerdf986172009-01-02 07:01:27 +00003117 return true;
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003118
Chris Lattnerdf986172009-01-02 07:01:27 +00003119 if (!SeenCases.insert(Constant))
3120 return Error(CondLoc, "duplicate case value in switch");
3121 if (!isa<ConstantInt>(Constant))
3122 return Error(CondLoc, "case value is not a constant integer");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003123
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003124 Table.push_back(std::make_pair(cast<ConstantInt>(Constant), DestBB));
Chris Lattnerdf986172009-01-02 07:01:27 +00003125 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003126
Chris Lattnerdf986172009-01-02 07:01:27 +00003127 Lex.Lex(); // Eat the ']'.
Daniel Dunbara279bc32009-09-20 02:20:51 +00003128
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003129 SwitchInst *SI = SwitchInst::Create(Cond, DefaultBB, Table.size());
Chris Lattnerdf986172009-01-02 07:01:27 +00003130 for (unsigned i = 0, e = Table.size(); i != e; ++i)
3131 SI->addCase(Table[i].first, Table[i].second);
3132 Inst = SI;
3133 return false;
3134}
3135
Chris Lattnerab21db72009-10-28 00:19:10 +00003136/// ParseIndirectBr
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003137/// Instruction
Chris Lattnerab21db72009-10-28 00:19:10 +00003138/// ::= 'indirectbr' TypeAndValue ',' '[' LabelList ']'
3139bool LLParser::ParseIndirectBr(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003140 LocTy AddrLoc;
3141 Value *Address;
3142 if (ParseTypeAndValue(Address, AddrLoc, PFS) ||
Chris Lattnerab21db72009-10-28 00:19:10 +00003143 ParseToken(lltok::comma, "expected ',' after indirectbr address") ||
3144 ParseToken(lltok::lsquare, "expected '[' with indirectbr"))
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003145 return true;
3146
3147 if (!isa<PointerType>(Address->getType()))
Chris Lattnerab21db72009-10-28 00:19:10 +00003148 return Error(AddrLoc, "indirectbr address must have pointer type");
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003149
3150 // Parse the destination list.
3151 SmallVector<BasicBlock*, 16> DestList;
3152
3153 if (Lex.getKind() != lltok::rsquare) {
3154 BasicBlock *DestBB;
3155 if (ParseTypeAndBasicBlock(DestBB, PFS))
3156 return true;
3157 DestList.push_back(DestBB);
3158
3159 while (EatIfPresent(lltok::comma)) {
3160 if (ParseTypeAndBasicBlock(DestBB, PFS))
3161 return true;
3162 DestList.push_back(DestBB);
3163 }
3164 }
3165
3166 if (ParseToken(lltok::rsquare, "expected ']' at end of block list"))
3167 return true;
3168
Chris Lattnerab21db72009-10-28 00:19:10 +00003169 IndirectBrInst *IBI = IndirectBrInst::Create(Address, DestList.size());
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003170 for (unsigned i = 0, e = DestList.size(); i != e; ++i)
3171 IBI->addDestination(DestList[i]);
3172 Inst = IBI;
3173 return false;
3174}
3175
3176
Chris Lattnerdf986172009-01-02 07:01:27 +00003177/// ParseInvoke
3178/// ::= 'invoke' OptionalCallingConv OptionalAttrs Type Value ParamList
3179/// OptionalAttrs 'to' TypeAndValue 'unwind' TypeAndValue
3180bool LLParser::ParseInvoke(Instruction *&Inst, PerFunctionState &PFS) {
3181 LocTy CallLoc = Lex.getLoc();
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00003182 unsigned RetAttrs, FnAttrs;
3183 CallingConv::ID CC;
Owen Anderson1d0be152009-08-13 21:58:54 +00003184 PATypeHolder RetType(Type::getVoidTy(Context));
Chris Lattnerdf986172009-01-02 07:01:27 +00003185 LocTy RetTypeLoc;
3186 ValID CalleeID;
3187 SmallVector<ParamInfo, 16> ArgList;
3188
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003189 BasicBlock *NormalBB, *UnwindBB;
Chris Lattnerdf986172009-01-02 07:01:27 +00003190 if (ParseOptionalCallingConv(CC) ||
3191 ParseOptionalAttrs(RetAttrs, 1) ||
Chris Lattnera9a9e072009-03-09 04:49:14 +00003192 ParseType(RetType, RetTypeLoc, true /*void allowed*/) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003193 ParseValID(CalleeID) ||
3194 ParseParameterList(ArgList, PFS) ||
3195 ParseOptionalAttrs(FnAttrs, 2) ||
3196 ParseToken(lltok::kw_to, "expected 'to' in invoke") ||
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003197 ParseTypeAndBasicBlock(NormalBB, PFS) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003198 ParseToken(lltok::kw_unwind, "expected 'unwind' in invoke") ||
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003199 ParseTypeAndBasicBlock(UnwindBB, PFS))
Chris Lattnerdf986172009-01-02 07:01:27 +00003200 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003201
Chris Lattnerdf986172009-01-02 07:01:27 +00003202 // If RetType is a non-function pointer type, then this is the short syntax
3203 // for the call, which means that RetType is just the return type. Infer the
3204 // rest of the function argument types from the arguments that are present.
3205 const PointerType *PFTy = 0;
3206 const FunctionType *Ty = 0;
3207 if (!(PFTy = dyn_cast<PointerType>(RetType)) ||
3208 !(Ty = dyn_cast<FunctionType>(PFTy->getElementType()))) {
3209 // Pull out the types of all of the arguments...
3210 std::vector<const Type*> ParamTypes;
3211 for (unsigned i = 0, e = ArgList.size(); i != e; ++i)
3212 ParamTypes.push_back(ArgList[i].V->getType());
Daniel Dunbara279bc32009-09-20 02:20:51 +00003213
Chris Lattnerdf986172009-01-02 07:01:27 +00003214 if (!FunctionType::isValidReturnType(RetType))
3215 return Error(RetTypeLoc, "Invalid result type for LLVM function");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003216
Owen Andersondebcb012009-07-29 22:17:13 +00003217 Ty = FunctionType::get(RetType, ParamTypes, false);
3218 PFTy = PointerType::getUnqual(Ty);
Chris Lattnerdf986172009-01-02 07:01:27 +00003219 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003220
Chris Lattnerdf986172009-01-02 07:01:27 +00003221 // Look up the callee.
3222 Value *Callee;
3223 if (ConvertValIDToValue(PFTy, CalleeID, Callee, PFS)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003224
Chris Lattnerdf986172009-01-02 07:01:27 +00003225 // FIXME: In LLVM 3.0, stop accepting zext, sext and inreg as optional
3226 // function attributes.
3227 unsigned ObsoleteFuncAttrs = Attribute::ZExt|Attribute::SExt|Attribute::InReg;
3228 if (FnAttrs & ObsoleteFuncAttrs) {
3229 RetAttrs |= FnAttrs & ObsoleteFuncAttrs;
3230 FnAttrs &= ~ObsoleteFuncAttrs;
3231 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003232
Chris Lattnerdf986172009-01-02 07:01:27 +00003233 // Set up the Attributes for the function.
3234 SmallVector<AttributeWithIndex, 8> Attrs;
3235 if (RetAttrs != Attribute::None)
3236 Attrs.push_back(AttributeWithIndex::get(0, RetAttrs));
Daniel Dunbara279bc32009-09-20 02:20:51 +00003237
Chris Lattnerdf986172009-01-02 07:01:27 +00003238 SmallVector<Value*, 8> Args;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003239
Chris Lattnerdf986172009-01-02 07:01:27 +00003240 // Loop through FunctionType's arguments and ensure they are specified
3241 // correctly. Also, gather any parameter attributes.
3242 FunctionType::param_iterator I = Ty->param_begin();
3243 FunctionType::param_iterator E = Ty->param_end();
3244 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
3245 const Type *ExpectedTy = 0;
3246 if (I != E) {
3247 ExpectedTy = *I++;
3248 } else if (!Ty->isVarArg()) {
3249 return Error(ArgList[i].Loc, "too many arguments specified");
3250 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003251
Chris Lattnerdf986172009-01-02 07:01:27 +00003252 if (ExpectedTy && ExpectedTy != ArgList[i].V->getType())
3253 return Error(ArgList[i].Loc, "argument is not of expected type '" +
3254 ExpectedTy->getDescription() + "'");
3255 Args.push_back(ArgList[i].V);
3256 if (ArgList[i].Attrs != Attribute::None)
3257 Attrs.push_back(AttributeWithIndex::get(i+1, ArgList[i].Attrs));
3258 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003259
Chris Lattnerdf986172009-01-02 07:01:27 +00003260 if (I != E)
3261 return Error(CallLoc, "not enough parameters specified for call");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003262
Chris Lattnerdf986172009-01-02 07:01:27 +00003263 if (FnAttrs != Attribute::None)
3264 Attrs.push_back(AttributeWithIndex::get(~0, FnAttrs));
Daniel Dunbara279bc32009-09-20 02:20:51 +00003265
Chris Lattnerdf986172009-01-02 07:01:27 +00003266 // Finish off the Attributes and check them
3267 AttrListPtr PAL = AttrListPtr::get(Attrs.begin(), Attrs.end());
Daniel Dunbara279bc32009-09-20 02:20:51 +00003268
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003269 InvokeInst *II = InvokeInst::Create(Callee, NormalBB, UnwindBB,
Chris Lattnerdf986172009-01-02 07:01:27 +00003270 Args.begin(), Args.end());
3271 II->setCallingConv(CC);
3272 II->setAttributes(PAL);
3273 Inst = II;
3274 return false;
3275}
3276
3277
3278
3279//===----------------------------------------------------------------------===//
3280// Binary Operators.
3281//===----------------------------------------------------------------------===//
3282
3283/// ParseArithmetic
Chris Lattnere914b592009-01-05 08:24:46 +00003284/// ::= ArithmeticOps TypeAndValue ',' Value
3285///
3286/// If OperandType is 0, then any FP or integer operand is allowed. If it is 1,
3287/// then any integer operand is allowed, if it is 2, any fp operand is allowed.
Chris Lattnerdf986172009-01-02 07:01:27 +00003288bool LLParser::ParseArithmetic(Instruction *&Inst, PerFunctionState &PFS,
Chris Lattnere914b592009-01-05 08:24:46 +00003289 unsigned Opc, unsigned OperandType) {
Chris Lattnerdf986172009-01-02 07:01:27 +00003290 LocTy Loc; Value *LHS, *RHS;
3291 if (ParseTypeAndValue(LHS, Loc, PFS) ||
3292 ParseToken(lltok::comma, "expected ',' in arithmetic operation") ||
3293 ParseValue(LHS->getType(), RHS, PFS))
3294 return true;
3295
Chris Lattnere914b592009-01-05 08:24:46 +00003296 bool Valid;
3297 switch (OperandType) {
Torok Edwinc23197a2009-07-14 16:55:14 +00003298 default: llvm_unreachable("Unknown operand type!");
Chris Lattnere914b592009-01-05 08:24:46 +00003299 case 0: // int or FP.
3300 Valid = LHS->getType()->isIntOrIntVector() ||
3301 LHS->getType()->isFPOrFPVector();
3302 break;
3303 case 1: Valid = LHS->getType()->isIntOrIntVector(); break;
3304 case 2: Valid = LHS->getType()->isFPOrFPVector(); break;
3305 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003306
Chris Lattnere914b592009-01-05 08:24:46 +00003307 if (!Valid)
3308 return Error(Loc, "invalid operand type for instruction");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003309
Chris Lattnerdf986172009-01-02 07:01:27 +00003310 Inst = BinaryOperator::Create((Instruction::BinaryOps)Opc, LHS, RHS);
3311 return false;
3312}
3313
3314/// ParseLogical
3315/// ::= ArithmeticOps TypeAndValue ',' Value {
3316bool LLParser::ParseLogical(Instruction *&Inst, PerFunctionState &PFS,
3317 unsigned Opc) {
3318 LocTy Loc; Value *LHS, *RHS;
3319 if (ParseTypeAndValue(LHS, Loc, PFS) ||
3320 ParseToken(lltok::comma, "expected ',' in logical operation") ||
3321 ParseValue(LHS->getType(), RHS, PFS))
3322 return true;
3323
3324 if (!LHS->getType()->isIntOrIntVector())
3325 return Error(Loc,"instruction requires integer or integer vector operands");
3326
3327 Inst = BinaryOperator::Create((Instruction::BinaryOps)Opc, LHS, RHS);
3328 return false;
3329}
3330
3331
3332/// ParseCompare
3333/// ::= 'icmp' IPredicates TypeAndValue ',' Value
3334/// ::= 'fcmp' FPredicates TypeAndValue ',' Value
Chris Lattnerdf986172009-01-02 07:01:27 +00003335bool LLParser::ParseCompare(Instruction *&Inst, PerFunctionState &PFS,
3336 unsigned Opc) {
3337 // Parse the integer/fp comparison predicate.
3338 LocTy Loc;
3339 unsigned Pred;
3340 Value *LHS, *RHS;
3341 if (ParseCmpPredicate(Pred, Opc) ||
3342 ParseTypeAndValue(LHS, Loc, PFS) ||
3343 ParseToken(lltok::comma, "expected ',' after compare value") ||
3344 ParseValue(LHS->getType(), RHS, PFS))
3345 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003346
Chris Lattnerdf986172009-01-02 07:01:27 +00003347 if (Opc == Instruction::FCmp) {
3348 if (!LHS->getType()->isFPOrFPVector())
3349 return Error(Loc, "fcmp requires floating point operands");
Dan Gohman1c8a23c2009-08-25 23:17:54 +00003350 Inst = new FCmpInst(CmpInst::Predicate(Pred), LHS, RHS);
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00003351 } else {
3352 assert(Opc == Instruction::ICmp && "Unknown opcode for CmpInst!");
Chris Lattnerdf986172009-01-02 07:01:27 +00003353 if (!LHS->getType()->isIntOrIntVector() &&
3354 !isa<PointerType>(LHS->getType()))
3355 return Error(Loc, "icmp requires integer operands");
Dan Gohman1c8a23c2009-08-25 23:17:54 +00003356 Inst = new ICmpInst(CmpInst::Predicate(Pred), LHS, RHS);
Chris Lattnerdf986172009-01-02 07:01:27 +00003357 }
3358 return false;
3359}
3360
3361//===----------------------------------------------------------------------===//
3362// Other Instructions.
3363//===----------------------------------------------------------------------===//
3364
3365
3366/// ParseCast
3367/// ::= CastOpc TypeAndValue 'to' Type
3368bool LLParser::ParseCast(Instruction *&Inst, PerFunctionState &PFS,
3369 unsigned Opc) {
3370 LocTy Loc; Value *Op;
Owen Anderson1d0be152009-08-13 21:58:54 +00003371 PATypeHolder DestTy(Type::getVoidTy(Context));
Chris Lattnerdf986172009-01-02 07:01:27 +00003372 if (ParseTypeAndValue(Op, Loc, PFS) ||
3373 ParseToken(lltok::kw_to, "expected 'to' after cast value") ||
3374 ParseType(DestTy))
3375 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003376
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00003377 if (!CastInst::castIsValid((Instruction::CastOps)Opc, Op, DestTy)) {
3378 CastInst::castIsValid((Instruction::CastOps)Opc, Op, DestTy);
Chris Lattnerdf986172009-01-02 07:01:27 +00003379 return Error(Loc, "invalid cast opcode for cast from '" +
3380 Op->getType()->getDescription() + "' to '" +
3381 DestTy->getDescription() + "'");
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00003382 }
Chris Lattnerdf986172009-01-02 07:01:27 +00003383 Inst = CastInst::Create((Instruction::CastOps)Opc, Op, DestTy);
3384 return false;
3385}
3386
3387/// ParseSelect
3388/// ::= 'select' TypeAndValue ',' TypeAndValue ',' TypeAndValue
3389bool LLParser::ParseSelect(Instruction *&Inst, PerFunctionState &PFS) {
3390 LocTy Loc;
3391 Value *Op0, *Op1, *Op2;
3392 if (ParseTypeAndValue(Op0, Loc, PFS) ||
3393 ParseToken(lltok::comma, "expected ',' after select condition") ||
3394 ParseTypeAndValue(Op1, PFS) ||
3395 ParseToken(lltok::comma, "expected ',' after select value") ||
3396 ParseTypeAndValue(Op2, PFS))
3397 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003398
Chris Lattnerdf986172009-01-02 07:01:27 +00003399 if (const char *Reason = SelectInst::areInvalidOperands(Op0, Op1, Op2))
3400 return Error(Loc, Reason);
Daniel Dunbara279bc32009-09-20 02:20:51 +00003401
Chris Lattnerdf986172009-01-02 07:01:27 +00003402 Inst = SelectInst::Create(Op0, Op1, Op2);
3403 return false;
3404}
3405
Chris Lattner0088a5c2009-01-05 08:18:44 +00003406/// ParseVA_Arg
3407/// ::= 'va_arg' TypeAndValue ',' Type
3408bool LLParser::ParseVA_Arg(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00003409 Value *Op;
Owen Anderson1d0be152009-08-13 21:58:54 +00003410 PATypeHolder EltTy(Type::getVoidTy(Context));
Chris Lattner0088a5c2009-01-05 08:18:44 +00003411 LocTy TypeLoc;
Chris Lattnerdf986172009-01-02 07:01:27 +00003412 if (ParseTypeAndValue(Op, PFS) ||
3413 ParseToken(lltok::comma, "expected ',' after vaarg operand") ||
Chris Lattner0088a5c2009-01-05 08:18:44 +00003414 ParseType(EltTy, TypeLoc))
Chris Lattnerdf986172009-01-02 07:01:27 +00003415 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003416
Chris Lattner0088a5c2009-01-05 08:18:44 +00003417 if (!EltTy->isFirstClassType())
3418 return Error(TypeLoc, "va_arg requires operand with first class type");
Chris Lattnerdf986172009-01-02 07:01:27 +00003419
3420 Inst = new VAArgInst(Op, EltTy);
3421 return false;
3422}
3423
3424/// ParseExtractElement
3425/// ::= 'extractelement' TypeAndValue ',' TypeAndValue
3426bool LLParser::ParseExtractElement(Instruction *&Inst, PerFunctionState &PFS) {
3427 LocTy Loc;
3428 Value *Op0, *Op1;
3429 if (ParseTypeAndValue(Op0, Loc, PFS) ||
3430 ParseToken(lltok::comma, "expected ',' after extract value") ||
3431 ParseTypeAndValue(Op1, PFS))
3432 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003433
Chris Lattnerdf986172009-01-02 07:01:27 +00003434 if (!ExtractElementInst::isValidOperands(Op0, Op1))
3435 return Error(Loc, "invalid extractelement operands");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003436
Eric Christophera3500da2009-07-25 02:28:41 +00003437 Inst = ExtractElementInst::Create(Op0, Op1);
Chris Lattnerdf986172009-01-02 07:01:27 +00003438 return false;
3439}
3440
3441/// ParseInsertElement
3442/// ::= 'insertelement' TypeAndValue ',' TypeAndValue ',' TypeAndValue
3443bool LLParser::ParseInsertElement(Instruction *&Inst, PerFunctionState &PFS) {
3444 LocTy Loc;
3445 Value *Op0, *Op1, *Op2;
3446 if (ParseTypeAndValue(Op0, Loc, PFS) ||
3447 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
3448 ParseTypeAndValue(Op1, PFS) ||
3449 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
3450 ParseTypeAndValue(Op2, PFS))
3451 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003452
Chris Lattnerdf986172009-01-02 07:01:27 +00003453 if (!InsertElementInst::isValidOperands(Op0, Op1, Op2))
Eric Christopher0aaf4e92009-07-23 01:01:32 +00003454 return Error(Loc, "invalid insertelement operands");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003455
Chris Lattnerdf986172009-01-02 07:01:27 +00003456 Inst = InsertElementInst::Create(Op0, Op1, Op2);
3457 return false;
3458}
3459
3460/// ParseShuffleVector
3461/// ::= 'shufflevector' TypeAndValue ',' TypeAndValue ',' TypeAndValue
3462bool LLParser::ParseShuffleVector(Instruction *&Inst, PerFunctionState &PFS) {
3463 LocTy Loc;
3464 Value *Op0, *Op1, *Op2;
3465 if (ParseTypeAndValue(Op0, Loc, PFS) ||
3466 ParseToken(lltok::comma, "expected ',' after shuffle mask") ||
3467 ParseTypeAndValue(Op1, PFS) ||
3468 ParseToken(lltok::comma, "expected ',' after shuffle value") ||
3469 ParseTypeAndValue(Op2, PFS))
3470 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003471
Chris Lattnerdf986172009-01-02 07:01:27 +00003472 if (!ShuffleVectorInst::isValidOperands(Op0, Op1, Op2))
3473 return Error(Loc, "invalid extractelement operands");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003474
Chris Lattnerdf986172009-01-02 07:01:27 +00003475 Inst = new ShuffleVectorInst(Op0, Op1, Op2);
3476 return false;
3477}
3478
3479/// ParsePHI
Chris Lattnerc6e20092009-10-18 05:27:44 +00003480/// ::= 'phi' Type '[' Value ',' Value ']' (',' '[' Value ',' Value ']')*
Chris Lattnerdf986172009-01-02 07:01:27 +00003481bool LLParser::ParsePHI(Instruction *&Inst, PerFunctionState &PFS) {
Owen Anderson1d0be152009-08-13 21:58:54 +00003482 PATypeHolder Ty(Type::getVoidTy(Context));
Chris Lattnerdf986172009-01-02 07:01:27 +00003483 Value *Op0, *Op1;
3484 LocTy TypeLoc = Lex.getLoc();
Daniel Dunbara279bc32009-09-20 02:20:51 +00003485
Chris Lattnerdf986172009-01-02 07:01:27 +00003486 if (ParseType(Ty) ||
3487 ParseToken(lltok::lsquare, "expected '[' in phi value list") ||
3488 ParseValue(Ty, Op0, PFS) ||
3489 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
Owen Anderson1d0be152009-08-13 21:58:54 +00003490 ParseValue(Type::getLabelTy(Context), Op1, PFS) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003491 ParseToken(lltok::rsquare, "expected ']' in phi value list"))
3492 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003493
Chris Lattnerdf986172009-01-02 07:01:27 +00003494 SmallVector<std::pair<Value*, BasicBlock*>, 16> PHIVals;
3495 while (1) {
3496 PHIVals.push_back(std::make_pair(Op0, cast<BasicBlock>(Op1)));
Daniel Dunbara279bc32009-09-20 02:20:51 +00003497
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003498 if (!EatIfPresent(lltok::comma))
Chris Lattnerdf986172009-01-02 07:01:27 +00003499 break;
3500
Devang Patela43d46f2009-10-16 18:45:49 +00003501 if (Lex.getKind() == lltok::NamedOrCustomMD)
3502 break;
3503
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003504 if (ParseToken(lltok::lsquare, "expected '[' in phi value list") ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003505 ParseValue(Ty, Op0, PFS) ||
3506 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
Owen Anderson1d0be152009-08-13 21:58:54 +00003507 ParseValue(Type::getLabelTy(Context), Op1, PFS) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003508 ParseToken(lltok::rsquare, "expected ']' in phi value list"))
3509 return true;
3510 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003511
Devang Patela43d46f2009-10-16 18:45:49 +00003512 if (Lex.getKind() == lltok::NamedOrCustomMD)
3513 if (ParseOptionalCustomMetadata()) return true;
3514
Chris Lattnerdf986172009-01-02 07:01:27 +00003515 if (!Ty->isFirstClassType())
3516 return Error(TypeLoc, "phi node must have first class type");
3517
3518 PHINode *PN = PHINode::Create(Ty);
3519 PN->reserveOperandSpace(PHIVals.size());
3520 for (unsigned i = 0, e = PHIVals.size(); i != e; ++i)
3521 PN->addIncoming(PHIVals[i].first, PHIVals[i].second);
3522 Inst = PN;
3523 return false;
3524}
3525
3526/// ParseCall
3527/// ::= 'tail'? 'call' OptionalCallingConv OptionalAttrs Type Value
3528/// ParameterList OptionalAttrs
3529bool LLParser::ParseCall(Instruction *&Inst, PerFunctionState &PFS,
3530 bool isTail) {
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00003531 unsigned RetAttrs, FnAttrs;
3532 CallingConv::ID CC;
Owen Anderson1d0be152009-08-13 21:58:54 +00003533 PATypeHolder RetType(Type::getVoidTy(Context));
Chris Lattnerdf986172009-01-02 07:01:27 +00003534 LocTy RetTypeLoc;
3535 ValID CalleeID;
3536 SmallVector<ParamInfo, 16> ArgList;
3537 LocTy CallLoc = Lex.getLoc();
Daniel Dunbara279bc32009-09-20 02:20:51 +00003538
Chris Lattnerdf986172009-01-02 07:01:27 +00003539 if ((isTail && ParseToken(lltok::kw_call, "expected 'tail call'")) ||
3540 ParseOptionalCallingConv(CC) ||
3541 ParseOptionalAttrs(RetAttrs, 1) ||
Chris Lattnera9a9e072009-03-09 04:49:14 +00003542 ParseType(RetType, RetTypeLoc, true /*void allowed*/) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003543 ParseValID(CalleeID) ||
3544 ParseParameterList(ArgList, PFS) ||
3545 ParseOptionalAttrs(FnAttrs, 2))
3546 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003547
Chris Lattnerdf986172009-01-02 07:01:27 +00003548 // If RetType is a non-function pointer type, then this is the short syntax
3549 // for the call, which means that RetType is just the return type. Infer the
3550 // rest of the function argument types from the arguments that are present.
3551 const PointerType *PFTy = 0;
3552 const FunctionType *Ty = 0;
3553 if (!(PFTy = dyn_cast<PointerType>(RetType)) ||
3554 !(Ty = dyn_cast<FunctionType>(PFTy->getElementType()))) {
3555 // Pull out the types of all of the arguments...
3556 std::vector<const Type*> ParamTypes;
3557 for (unsigned i = 0, e = ArgList.size(); i != e; ++i)
3558 ParamTypes.push_back(ArgList[i].V->getType());
Daniel Dunbara279bc32009-09-20 02:20:51 +00003559
Chris Lattnerdf986172009-01-02 07:01:27 +00003560 if (!FunctionType::isValidReturnType(RetType))
3561 return Error(RetTypeLoc, "Invalid result type for LLVM function");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003562
Owen Andersondebcb012009-07-29 22:17:13 +00003563 Ty = FunctionType::get(RetType, ParamTypes, false);
3564 PFTy = PointerType::getUnqual(Ty);
Chris Lattnerdf986172009-01-02 07:01:27 +00003565 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003566
Chris Lattnerdf986172009-01-02 07:01:27 +00003567 // Look up the callee.
3568 Value *Callee;
3569 if (ConvertValIDToValue(PFTy, CalleeID, Callee, PFS)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003570
Chris Lattnerdf986172009-01-02 07:01:27 +00003571 // FIXME: In LLVM 3.0, stop accepting zext, sext and inreg as optional
3572 // function attributes.
3573 unsigned ObsoleteFuncAttrs = Attribute::ZExt|Attribute::SExt|Attribute::InReg;
3574 if (FnAttrs & ObsoleteFuncAttrs) {
3575 RetAttrs |= FnAttrs & ObsoleteFuncAttrs;
3576 FnAttrs &= ~ObsoleteFuncAttrs;
3577 }
3578
3579 // Set up the Attributes for the function.
3580 SmallVector<AttributeWithIndex, 8> Attrs;
3581 if (RetAttrs != Attribute::None)
3582 Attrs.push_back(AttributeWithIndex::get(0, RetAttrs));
Daniel Dunbara279bc32009-09-20 02:20:51 +00003583
Chris Lattnerdf986172009-01-02 07:01:27 +00003584 SmallVector<Value*, 8> Args;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003585
Chris Lattnerdf986172009-01-02 07:01:27 +00003586 // Loop through FunctionType's arguments and ensure they are specified
3587 // correctly. Also, gather any parameter attributes.
3588 FunctionType::param_iterator I = Ty->param_begin();
3589 FunctionType::param_iterator E = Ty->param_end();
3590 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
3591 const Type *ExpectedTy = 0;
3592 if (I != E) {
3593 ExpectedTy = *I++;
3594 } else if (!Ty->isVarArg()) {
3595 return Error(ArgList[i].Loc, "too many arguments specified");
3596 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003597
Chris Lattnerdf986172009-01-02 07:01:27 +00003598 if (ExpectedTy && ExpectedTy != ArgList[i].V->getType())
3599 return Error(ArgList[i].Loc, "argument is not of expected type '" +
3600 ExpectedTy->getDescription() + "'");
3601 Args.push_back(ArgList[i].V);
3602 if (ArgList[i].Attrs != Attribute::None)
3603 Attrs.push_back(AttributeWithIndex::get(i+1, ArgList[i].Attrs));
3604 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003605
Chris Lattnerdf986172009-01-02 07:01:27 +00003606 if (I != E)
3607 return Error(CallLoc, "not enough parameters specified for call");
3608
3609 if (FnAttrs != Attribute::None)
3610 Attrs.push_back(AttributeWithIndex::get(~0, FnAttrs));
3611
3612 // Finish off the Attributes and check them
3613 AttrListPtr PAL = AttrListPtr::get(Attrs.begin(), Attrs.end());
Daniel Dunbara279bc32009-09-20 02:20:51 +00003614
Chris Lattnerdf986172009-01-02 07:01:27 +00003615 CallInst *CI = CallInst::Create(Callee, Args.begin(), Args.end());
3616 CI->setTailCall(isTail);
3617 CI->setCallingConv(CC);
3618 CI->setAttributes(PAL);
3619 Inst = CI;
3620 return false;
3621}
3622
3623//===----------------------------------------------------------------------===//
3624// Memory Instructions.
3625//===----------------------------------------------------------------------===//
3626
3627/// ParseAlloc
Devang Patelf633a062009-09-17 23:04:48 +00003628/// ::= 'malloc' Type (',' TypeAndValue)? (',' OptionalInfo)?
3629/// ::= 'alloca' Type (',' TypeAndValue)? (',' OptionalInfo)?
Chris Lattnerdf986172009-01-02 07:01:27 +00003630bool LLParser::ParseAlloc(Instruction *&Inst, PerFunctionState &PFS,
Victor Hernandez13ad5aa2009-10-17 00:00:19 +00003631 BasicBlock* BB, bool isAlloca) {
Owen Anderson1d0be152009-08-13 21:58:54 +00003632 PATypeHolder Ty(Type::getVoidTy(Context));
Chris Lattnerdf986172009-01-02 07:01:27 +00003633 Value *Size = 0;
Chris Lattnereeb4a842009-07-02 23:08:13 +00003634 LocTy SizeLoc;
Chris Lattnerdf986172009-01-02 07:01:27 +00003635 unsigned Alignment = 0;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003636 if (ParseType(Ty)) return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00003637
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003638 if (EatIfPresent(lltok::comma)) {
Devang Patel0475c912009-09-29 00:01:14 +00003639 if (Lex.getKind() == lltok::kw_align
3640 || Lex.getKind() == lltok::NamedOrCustomMD) {
Devang Patelf633a062009-09-17 23:04:48 +00003641 if (ParseOptionalInfo(Alignment)) return true;
3642 } else {
3643 if (ParseTypeAndValue(Size, SizeLoc, PFS)) return true;
3644 if (EatIfPresent(lltok::comma))
Daniel Dunbara279bc32009-09-20 02:20:51 +00003645 if (ParseOptionalInfo(Alignment)) return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00003646 }
3647 }
3648
Owen Anderson1d0be152009-08-13 21:58:54 +00003649 if (Size && Size->getType() != Type::getInt32Ty(Context))
Chris Lattnerdf986172009-01-02 07:01:27 +00003650 return Error(SizeLoc, "element count must be i32");
3651
Victor Hernandez68afa542009-10-21 19:11:40 +00003652 if (isAlloca) {
Owen Anderson50dead02009-07-15 23:53:25 +00003653 Inst = new AllocaInst(Ty, Size, Alignment);
Victor Hernandez68afa542009-10-21 19:11:40 +00003654 return false;
Victor Hernandez13ad5aa2009-10-17 00:00:19 +00003655 }
Victor Hernandez68afa542009-10-21 19:11:40 +00003656
3657 // Autoupgrade old malloc instruction to malloc call.
3658 // FIXME: Remove in LLVM 3.0.
3659 const Type *IntPtrTy = Type::getInt32Ty(Context);
Victor Hernandez9d0b7042009-11-07 00:16:28 +00003660 Constant *AllocSize = ConstantExpr::getSizeOf(Ty);
3661 AllocSize = ConstantExpr::getTruncOrBitCast(AllocSize, IntPtrTy);
Victor Hernandez68afa542009-10-21 19:11:40 +00003662 if (!MallocF)
3663 // Prototype malloc as "void *(int32)".
3664 // This function is renamed as "malloc" in ValidateEndOfModule().
Victor Hernandez336ea062009-10-23 00:59:10 +00003665 MallocF = cast<Function>(
3666 M->getOrInsertFunction("", Type::getInt8PtrTy(Context), IntPtrTy, NULL));
Victor Hernandez9d0b7042009-11-07 00:16:28 +00003667 Inst = CallInst::CreateMalloc(BB, IntPtrTy, Ty, AllocSize, Size, MallocF);
Chris Lattnerdf986172009-01-02 07:01:27 +00003668 return false;
3669}
3670
3671/// ParseFree
3672/// ::= 'free' TypeAndValue
Victor Hernandez66284e02009-10-24 04:23:03 +00003673bool LLParser::ParseFree(Instruction *&Inst, PerFunctionState &PFS,
3674 BasicBlock* BB) {
Chris Lattnerdf986172009-01-02 07:01:27 +00003675 Value *Val; LocTy Loc;
3676 if (ParseTypeAndValue(Val, Loc, PFS)) return true;
3677 if (!isa<PointerType>(Val->getType()))
3678 return Error(Loc, "operand to free must be a pointer");
Victor Hernandez66284e02009-10-24 04:23:03 +00003679 Inst = CallInst::CreateFree(Val, BB);
Chris Lattnerdf986172009-01-02 07:01:27 +00003680 return false;
3681}
3682
3683/// ParseLoad
Devang Patelf633a062009-09-17 23:04:48 +00003684/// ::= 'volatile'? 'load' TypeAndValue (',' OptionalInfo)?
Chris Lattnerdf986172009-01-02 07:01:27 +00003685bool LLParser::ParseLoad(Instruction *&Inst, PerFunctionState &PFS,
3686 bool isVolatile) {
3687 Value *Val; LocTy Loc;
Devang Patelf633a062009-09-17 23:04:48 +00003688 unsigned Alignment = 0;
3689 if (ParseTypeAndValue(Val, Loc, PFS)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003690
Devang Patelf633a062009-09-17 23:04:48 +00003691 if (EatIfPresent(lltok::comma))
3692 if (ParseOptionalInfo(Alignment)) return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00003693
3694 if (!isa<PointerType>(Val->getType()) ||
3695 !cast<PointerType>(Val->getType())->getElementType()->isFirstClassType())
3696 return Error(Loc, "load operand must be a pointer to a first class type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003697
Chris Lattnerdf986172009-01-02 07:01:27 +00003698 Inst = new LoadInst(Val, "", isVolatile, Alignment);
3699 return false;
3700}
3701
3702/// ParseStore
Dan Gohmana119de82009-06-14 23:30:43 +00003703/// ::= 'volatile'? 'store' TypeAndValue ',' TypeAndValue (',' 'align' i32)?
Chris Lattnerdf986172009-01-02 07:01:27 +00003704bool LLParser::ParseStore(Instruction *&Inst, PerFunctionState &PFS,
3705 bool isVolatile) {
3706 Value *Val, *Ptr; LocTy Loc, PtrLoc;
Devang Patelf633a062009-09-17 23:04:48 +00003707 unsigned Alignment = 0;
Chris Lattnerdf986172009-01-02 07:01:27 +00003708 if (ParseTypeAndValue(Val, Loc, PFS) ||
3709 ParseToken(lltok::comma, "expected ',' after store operand") ||
Devang Patelf633a062009-09-17 23:04:48 +00003710 ParseTypeAndValue(Ptr, PtrLoc, PFS))
Chris Lattnerdf986172009-01-02 07:01:27 +00003711 return true;
Devang Patelf633a062009-09-17 23:04:48 +00003712
3713 if (EatIfPresent(lltok::comma))
3714 if (ParseOptionalInfo(Alignment)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003715
Chris Lattnerdf986172009-01-02 07:01:27 +00003716 if (!isa<PointerType>(Ptr->getType()))
3717 return Error(PtrLoc, "store operand must be a pointer");
3718 if (!Val->getType()->isFirstClassType())
3719 return Error(Loc, "store operand must be a first class value");
3720 if (cast<PointerType>(Ptr->getType())->getElementType() != Val->getType())
3721 return Error(Loc, "stored value and pointer type do not match");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003722
Chris Lattnerdf986172009-01-02 07:01:27 +00003723 Inst = new StoreInst(Val, Ptr, isVolatile, Alignment);
3724 return false;
3725}
3726
3727/// ParseGetResult
Dan Gohmana119de82009-06-14 23:30:43 +00003728/// ::= 'getresult' TypeAndValue ',' i32
Chris Lattnerdf986172009-01-02 07:01:27 +00003729/// FIXME: Remove support for getresult in LLVM 3.0
3730bool LLParser::ParseGetResult(Instruction *&Inst, PerFunctionState &PFS) {
3731 Value *Val; LocTy ValLoc, EltLoc;
3732 unsigned Element;
3733 if (ParseTypeAndValue(Val, ValLoc, PFS) ||
3734 ParseToken(lltok::comma, "expected ',' after getresult operand") ||
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003735 ParseUInt32(Element, EltLoc))
Chris Lattnerdf986172009-01-02 07:01:27 +00003736 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003737
Chris Lattnerdf986172009-01-02 07:01:27 +00003738 if (!isa<StructType>(Val->getType()) && !isa<ArrayType>(Val->getType()))
3739 return Error(ValLoc, "getresult inst requires an aggregate operand");
3740 if (!ExtractValueInst::getIndexedType(Val->getType(), Element))
3741 return Error(EltLoc, "invalid getresult index for value");
3742 Inst = ExtractValueInst::Create(Val, Element);
3743 return false;
3744}
3745
3746/// ParseGetElementPtr
Dan Gohmandd8004d2009-07-27 21:53:46 +00003747/// ::= 'getelementptr' 'inbounds'? TypeAndValue (',' TypeAndValue)*
Chris Lattnerdf986172009-01-02 07:01:27 +00003748bool LLParser::ParseGetElementPtr(Instruction *&Inst, PerFunctionState &PFS) {
3749 Value *Ptr, *Val; LocTy Loc, EltLoc;
Dan Gohmandd8004d2009-07-27 21:53:46 +00003750
Dan Gohmandcb40a32009-07-29 15:58:36 +00003751 bool InBounds = EatIfPresent(lltok::kw_inbounds);
Dan Gohmandd8004d2009-07-27 21:53:46 +00003752
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003753 if (ParseTypeAndValue(Ptr, Loc, PFS)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003754
Chris Lattnerdf986172009-01-02 07:01:27 +00003755 if (!isa<PointerType>(Ptr->getType()))
3756 return Error(Loc, "base of getelementptr must be a pointer");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003757
Chris Lattnerdf986172009-01-02 07:01:27 +00003758 SmallVector<Value*, 16> Indices;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003759 while (EatIfPresent(lltok::comma)) {
Devang Patel6225d642009-10-13 18:49:55 +00003760 if (Lex.getKind() == lltok::NamedOrCustomMD)
3761 break;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003762 if (ParseTypeAndValue(Val, EltLoc, PFS)) return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00003763 if (!isa<IntegerType>(Val->getType()))
3764 return Error(EltLoc, "getelementptr index must be an integer");
3765 Indices.push_back(Val);
3766 }
Devang Patel6225d642009-10-13 18:49:55 +00003767 if (Lex.getKind() == lltok::NamedOrCustomMD)
3768 if (ParseOptionalCustomMetadata()) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003769
Chris Lattnerdf986172009-01-02 07:01:27 +00003770 if (!GetElementPtrInst::getIndexedType(Ptr->getType(),
3771 Indices.begin(), Indices.end()))
3772 return Error(Loc, "invalid getelementptr indices");
3773 Inst = GetElementPtrInst::Create(Ptr, Indices.begin(), Indices.end());
Dan Gohmandd8004d2009-07-27 21:53:46 +00003774 if (InBounds)
Dan Gohmanf8dbee72009-09-07 23:54:19 +00003775 cast<GetElementPtrInst>(Inst)->setIsInBounds(true);
Chris Lattnerdf986172009-01-02 07:01:27 +00003776 return false;
3777}
3778
3779/// ParseExtractValue
3780/// ::= 'extractvalue' TypeAndValue (',' uint32)+
3781bool LLParser::ParseExtractValue(Instruction *&Inst, PerFunctionState &PFS) {
3782 Value *Val; LocTy Loc;
3783 SmallVector<unsigned, 4> Indices;
3784 if (ParseTypeAndValue(Val, Loc, PFS) ||
3785 ParseIndexList(Indices))
3786 return true;
Devang Patele8bc45a2009-11-03 19:06:07 +00003787 if (Lex.getKind() == lltok::NamedOrCustomMD)
3788 if (ParseOptionalCustomMetadata()) return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00003789
3790 if (!isa<StructType>(Val->getType()) && !isa<ArrayType>(Val->getType()))
3791 return Error(Loc, "extractvalue operand must be array or struct");
3792
3793 if (!ExtractValueInst::getIndexedType(Val->getType(), Indices.begin(),
3794 Indices.end()))
3795 return Error(Loc, "invalid indices for extractvalue");
3796 Inst = ExtractValueInst::Create(Val, Indices.begin(), Indices.end());
3797 return false;
3798}
3799
3800/// ParseInsertValue
3801/// ::= 'insertvalue' TypeAndValue ',' TypeAndValue (',' uint32)+
3802bool LLParser::ParseInsertValue(Instruction *&Inst, PerFunctionState &PFS) {
3803 Value *Val0, *Val1; LocTy Loc0, Loc1;
3804 SmallVector<unsigned, 4> Indices;
3805 if (ParseTypeAndValue(Val0, Loc0, PFS) ||
3806 ParseToken(lltok::comma, "expected comma after insertvalue operand") ||
3807 ParseTypeAndValue(Val1, Loc1, PFS) ||
3808 ParseIndexList(Indices))
3809 return true;
Devang Patele8bc45a2009-11-03 19:06:07 +00003810 if (Lex.getKind() == lltok::NamedOrCustomMD)
3811 if (ParseOptionalCustomMetadata()) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003812
Chris Lattnerdf986172009-01-02 07:01:27 +00003813 if (!isa<StructType>(Val0->getType()) && !isa<ArrayType>(Val0->getType()))
3814 return Error(Loc0, "extractvalue operand must be array or struct");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003815
Chris Lattnerdf986172009-01-02 07:01:27 +00003816 if (!ExtractValueInst::getIndexedType(Val0->getType(), Indices.begin(),
3817 Indices.end()))
3818 return Error(Loc0, "invalid indices for insertvalue");
3819 Inst = InsertValueInst::Create(Val0, Val1, Indices.begin(), Indices.end());
3820 return false;
3821}
Nick Lewycky21cc4462009-04-04 07:22:01 +00003822
3823//===----------------------------------------------------------------------===//
3824// Embedded metadata.
3825//===----------------------------------------------------------------------===//
3826
3827/// ParseMDNodeVector
Nick Lewyckycb337992009-05-10 20:57:05 +00003828/// ::= Element (',' Element)*
3829/// Element
3830/// ::= 'null' | TypeAndValue
3831bool LLParser::ParseMDNodeVector(SmallVectorImpl<Value*> &Elts) {
Nick Lewycky21cc4462009-04-04 07:22:01 +00003832 assert(Lex.getKind() == lltok::lbrace);
3833 Lex.Lex();
3834 do {
Devang Pateldb5e9002009-07-23 01:36:16 +00003835 Value *V = 0;
Nick Lewyckycb337992009-05-10 20:57:05 +00003836 if (Lex.getKind() == lltok::kw_null) {
3837 Lex.Lex();
3838 V = 0;
3839 } else {
Owen Anderson1d0be152009-08-13 21:58:54 +00003840 PATypeHolder Ty(Type::getVoidTy(Context));
Devang Patele54abc92009-07-22 17:43:22 +00003841 if (ParseType(Ty)) return true;
3842 if (Lex.getKind() == lltok::Metadata) {
3843 Lex.Lex();
Devang Patel104cf9e2009-07-23 01:07:34 +00003844 MetadataBase *Node = 0;
Devang Patele54abc92009-07-22 17:43:22 +00003845 if (!ParseMDNode(Node))
3846 V = Node;
3847 else {
3848 MetadataBase *MDS = 0;
3849 if (ParseMDString(MDS)) return true;
3850 V = MDS;
3851 }
3852 } else {
3853 Constant *C;
3854 if (ParseGlobalValue(Ty, C)) return true;
3855 V = C;
3856 }
Nick Lewyckycb337992009-05-10 20:57:05 +00003857 }
3858 Elts.push_back(V);
Nick Lewycky21cc4462009-04-04 07:22:01 +00003859 } while (EatIfPresent(lltok::comma));
3860
3861 return false;
3862}