blob: 0ec7023d01c81fca29b0c31d45b758485e7b8600 [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
Chris Lattner442ffa12009-12-29 21:53:55 +0000466bool LLParser::ParseMDString(MDString *&Result) {
Devang Patel256be962009-07-20 19:00:08 +0000467 std::string Str;
468 if (ParseStringConstant(Str)) return true;
Chris Lattner442ffa12009-12-29 21:53:55 +0000469 Result = MDString::get(Context, Str);
Devang Patel256be962009-07-20 19:00:08 +0000470 return false;
471}
472
473// MDNode:
474// ::= '!' MDNodeNumber
Chris Lattner442ffa12009-12-29 21:53:55 +0000475bool LLParser::ParseMDNode(MDNode *&Result) {
Devang Patel256be962009-07-20 19:00:08 +0000476 // !{ ..., !42, ... }
477 unsigned MID = 0;
Chris Lattnere80250e2009-12-29 21:43:58 +0000478 if (ParseUInt32(MID)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000479
Devang Patel256be962009-07-20 19:00:08 +0000480 // Check existing MDNode.
Chris Lattnere80250e2009-12-29 21:43:58 +0000481 std::map<unsigned, TrackingVH<MDNode> >::iterator I = MetadataCache.find(MID);
Devang Patel256be962009-07-20 19:00:08 +0000482 if (I != MetadataCache.end()) {
Chris Lattner442ffa12009-12-29 21:53:55 +0000483 Result = I->second;
Devang Patel256be962009-07-20 19:00:08 +0000484 return false;
485 }
486
487 // Check known forward references.
Chris Lattnere80250e2009-12-29 21:43:58 +0000488 std::map<unsigned, std::pair<TrackingVH<MDNode>, LocTy> >::iterator
Devang Patel256be962009-07-20 19:00:08 +0000489 FI = ForwardRefMDNodes.find(MID);
490 if (FI != ForwardRefMDNodes.end()) {
Chris Lattner442ffa12009-12-29 21:53:55 +0000491 Result = FI->second.first;
Devang Patel256be962009-07-20 19:00:08 +0000492 return false;
493 }
494
Chris Lattner42991ee2009-12-29 22:01:50 +0000495 // Create MDNode forward reference.
496
497 // FIXME: This is not unique enough!
Devang Patel256be962009-07-20 19:00:08 +0000498 std::string FwdRefName = "llvm.mdnode.fwdref." + utostr(MID);
Benjamin Kramerc17300f2009-12-29 22:17:06 +0000499 Value *V = MDString::get(Context, FwdRefName);
Chris Lattner42991ee2009-12-29 22:01:50 +0000500 MDNode *FwdNode = MDNode::get(Context, &V, 1);
Devang Patel256be962009-07-20 19:00:08 +0000501 ForwardRefMDNodes[MID] = std::make_pair(FwdNode, Lex.getLoc());
Chris Lattner442ffa12009-12-29 21:53:55 +0000502 Result = FwdNode;
Devang Patel256be962009-07-20 19:00:08 +0000503 return false;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000504}
Devang Patel256be962009-07-20 19:00:08 +0000505
Chris Lattner84d03b12009-12-29 22:35:39 +0000506/// ParseNamedMetadata:
Devang Pateleff2ab62009-07-29 00:34:02 +0000507/// !foo = !{ !1, !2 }
508bool LLParser::ParseNamedMetadata() {
Devang Patel0475c912009-09-29 00:01:14 +0000509 assert(Lex.getKind() == lltok::NamedOrCustomMD);
Devang Pateleff2ab62009-07-29 00:34:02 +0000510 Lex.Lex();
511 std::string Name = Lex.getStrVal();
512
Chris Lattner84d03b12009-12-29 22:35:39 +0000513 if (ParseToken(lltok::equal, "expected '=' here") ||
514 ParseToken(lltok::Metadata, "Expected '!' here") ||
515 ParseToken(lltok::lbrace, "Expected '{' here"))
Devang Pateleff2ab62009-07-29 00:34:02 +0000516 return true;
517
Devang Pateleff2ab62009-07-29 00:34:02 +0000518 SmallVector<MetadataBase *, 8> Elts;
519 do {
Chris Lattner42991ee2009-12-29 22:01:50 +0000520 if (ParseToken(lltok::Metadata, "Expected '!' here"))
521 return true;
Chris Lattner442ffa12009-12-29 21:53:55 +0000522
Chris Lattner42991ee2009-12-29 22:01:50 +0000523 // FIXME: This rejects MDStrings. Are they legal in an named MDNode or not?
Chris Lattner442ffa12009-12-29 21:53:55 +0000524 MDNode *N = 0;
Devang Pateleff2ab62009-07-29 00:34:02 +0000525 if (ParseMDNode(N)) return true;
526 Elts.push_back(N);
527 } while (EatIfPresent(lltok::comma));
528
529 if (ParseToken(lltok::rbrace, "expected end of metadata node"))
530 return true;
531
Owen Anderson1d0be152009-08-13 21:58:54 +0000532 NamedMDNode::Create(Context, Name, Elts.data(), Elts.size(), M);
Devang Pateleff2ab62009-07-29 00:34:02 +0000533 return false;
534}
535
Devang Patel923078c2009-07-01 19:21:12 +0000536/// ParseStandaloneMetadata:
Daniel Dunbara279bc32009-09-20 02:20:51 +0000537/// !42 = !{...}
Devang Patel923078c2009-07-01 19:21:12 +0000538bool LLParser::ParseStandaloneMetadata() {
539 assert(Lex.getKind() == lltok::Metadata);
540 Lex.Lex();
541 unsigned MetadataID = 0;
Devang Patel923078c2009-07-01 19:21:12 +0000542
543 LocTy TyLoc;
Owen Anderson1d0be152009-08-13 21:58:54 +0000544 PATypeHolder Ty(Type::getVoidTy(Context));
Devang Patel104cf9e2009-07-23 01:07:34 +0000545 SmallVector<Value *, 16> Elts;
Chris Lattner3f5132a2009-12-29 22:40:21 +0000546 // FIXME: This doesn't make sense here. Pull braced MD stuff parsing out!
547 if (ParseUInt32(MetadataID) ||
548 ParseToken(lltok::equal, "expected '=' here") ||
549 ParseType(Ty, TyLoc) ||
550 ParseToken(lltok::Metadata, "Expected metadata here") ||
551 ParseToken(lltok::lbrace, "Expected '{' here") ||
552 ParseMDNodeVector(Elts) ||
553 ParseToken(lltok::rbrace, "expected end of metadata node"))
Devang Patel104cf9e2009-07-23 01:07:34 +0000554 return true;
555
Chris Lattner3f5132a2009-12-29 22:40:21 +0000556 if (MetadataCache.count(MetadataID))
557 return TokError("Metadata id is already used");
558
Owen Anderson647e3012009-07-31 21:35:40 +0000559 MDNode *Init = MDNode::get(Context, Elts.data(), Elts.size());
Devang Patel923078c2009-07-01 19:21:12 +0000560 MetadataCache[MetadataID] = Init;
Chris Lattnere80250e2009-12-29 21:43:58 +0000561 std::map<unsigned, std::pair<TrackingVH<MDNode>, LocTy> >::iterator
Devang Patel1c7eea62009-07-08 19:23:54 +0000562 FI = ForwardRefMDNodes.find(MetadataID);
563 if (FI != ForwardRefMDNodes.end()) {
Chris Lattnere80250e2009-12-29 21:43:58 +0000564 FI->second.first->replaceAllUsesWith(Init);
Devang Patel1c7eea62009-07-08 19:23:54 +0000565 ForwardRefMDNodes.erase(FI);
566 }
567
Devang Patel923078c2009-07-01 19:21:12 +0000568 return false;
569}
570
Victor Hernandez19715562009-12-03 23:40:58 +0000571/// ParseInlineMetadata:
572/// !{type %instr}
573/// !{...} MDNode
574/// !"foo" MDString
575bool LLParser::ParseInlineMetadata(Value *&V, PerFunctionState &PFS) {
576 assert(Lex.getKind() == lltok::Metadata && "Only for Metadata");
577 V = 0;
578
579 Lex.Lex();
Chris Lattner3f5132a2009-12-29 22:40:21 +0000580 if (EatIfPresent(lltok::lbrace)) {
Victor Hernandez19715562009-12-03 23:40:58 +0000581 if (ParseTypeAndValue(V, PFS) ||
582 ParseToken(lltok::rbrace, "expected end of metadata node"))
583 return true;
584
Chris Lattner3f5132a2009-12-29 22:40:21 +0000585 V = MDNode::get(Context, &V, 1);
Victor Hernandez19715562009-12-03 23:40:58 +0000586 return false;
587 }
588
Chris Lattner442ffa12009-12-29 21:53:55 +0000589 // FIXME: This can't possibly work at all. r90497
590
Victor Hernandez19715562009-12-03 23:40:58 +0000591 // Standalone metadata reference
592 // !{ ..., !42, ... }
Chris Lattner442ffa12009-12-29 21:53:55 +0000593 if (!ParseMDNode((MDNode *&)V))
Victor Hernandez19715562009-12-03 23:40:58 +0000594 return false;
595
596 // MDString:
597 // '!' STRINGCONSTANT
Chris Lattner442ffa12009-12-29 21:53:55 +0000598 if (ParseMDString((MDString *&)V)) return true;
Victor Hernandez19715562009-12-03 23:40:58 +0000599 return false;
600}
601
Chris Lattnerdf986172009-01-02 07:01:27 +0000602/// ParseAlias:
603/// ::= GlobalVar '=' OptionalVisibility 'alias' OptionalLinkage Aliasee
604/// Aliasee
Chris Lattner040f7582009-04-25 21:26:00 +0000605/// ::= TypeAndValue
606/// ::= 'bitcast' '(' TypeAndValue 'to' Type ')'
Dan Gohmandd8004d2009-07-27 21:53:46 +0000607/// ::= 'getelementptr' 'inbounds'? '(' ... ')'
Chris Lattnerdf986172009-01-02 07:01:27 +0000608///
609/// Everything through visibility has already been parsed.
610///
611bool LLParser::ParseAlias(const std::string &Name, LocTy NameLoc,
612 unsigned Visibility) {
613 assert(Lex.getKind() == lltok::kw_alias);
614 Lex.Lex();
615 unsigned Linkage;
616 LocTy LinkageLoc = Lex.getLoc();
617 if (ParseOptionalLinkage(Linkage))
618 return true;
619
620 if (Linkage != GlobalValue::ExternalLinkage &&
Duncan Sands667d4b82009-03-07 15:45:40 +0000621 Linkage != GlobalValue::WeakAnyLinkage &&
622 Linkage != GlobalValue::WeakODRLinkage &&
Rafael Espindolabb46f522009-01-15 20:18:42 +0000623 Linkage != GlobalValue::InternalLinkage &&
Bill Wendling3d10a5a2009-07-20 01:03:30 +0000624 Linkage != GlobalValue::PrivateLinkage &&
625 Linkage != GlobalValue::LinkerPrivateLinkage)
Chris Lattnerdf986172009-01-02 07:01:27 +0000626 return Error(LinkageLoc, "invalid linkage type for alias");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000627
Chris Lattnerdf986172009-01-02 07:01:27 +0000628 Constant *Aliasee;
629 LocTy AliaseeLoc = Lex.getLoc();
Chris Lattner040f7582009-04-25 21:26:00 +0000630 if (Lex.getKind() != lltok::kw_bitcast &&
631 Lex.getKind() != lltok::kw_getelementptr) {
Chris Lattnerdf986172009-01-02 07:01:27 +0000632 if (ParseGlobalTypeAndValue(Aliasee)) return true;
633 } else {
634 // The bitcast dest type is not present, it is implied by the dest type.
635 ValID ID;
636 if (ParseValID(ID)) return true;
637 if (ID.Kind != ValID::t_Constant)
638 return Error(AliaseeLoc, "invalid aliasee");
639 Aliasee = ID.ConstantVal;
640 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000641
Chris Lattnerdf986172009-01-02 07:01:27 +0000642 if (!isa<PointerType>(Aliasee->getType()))
643 return Error(AliaseeLoc, "alias must have pointer type");
644
645 // Okay, create the alias but do not insert it into the module yet.
646 GlobalAlias* GA = new GlobalAlias(Aliasee->getType(),
647 (GlobalValue::LinkageTypes)Linkage, Name,
648 Aliasee);
649 GA->setVisibility((GlobalValue::VisibilityTypes)Visibility);
Daniel Dunbara279bc32009-09-20 02:20:51 +0000650
Chris Lattnerdf986172009-01-02 07:01:27 +0000651 // See if this value already exists in the symbol table. If so, it is either
652 // a redefinition or a definition of a forward reference.
Chris Lattner1d871c52009-10-25 23:22:50 +0000653 if (GlobalValue *Val = M->getNamedValue(Name)) {
Chris Lattnerdf986172009-01-02 07:01:27 +0000654 // See if this was a redefinition. If so, there is no entry in
655 // ForwardRefVals.
656 std::map<std::string, std::pair<GlobalValue*, LocTy> >::iterator
657 I = ForwardRefVals.find(Name);
658 if (I == ForwardRefVals.end())
659 return Error(NameLoc, "redefinition of global named '@" + Name + "'");
660
661 // Otherwise, this was a definition of forward ref. Verify that types
662 // agree.
663 if (Val->getType() != GA->getType())
664 return Error(NameLoc,
665 "forward reference and definition of alias have different types");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000666
Chris Lattnerdf986172009-01-02 07:01:27 +0000667 // If they agree, just RAUW the old value with the alias and remove the
668 // forward ref info.
669 Val->replaceAllUsesWith(GA);
670 Val->eraseFromParent();
671 ForwardRefVals.erase(I);
672 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000673
Chris Lattnerdf986172009-01-02 07:01:27 +0000674 // Insert into the module, we know its name won't collide now.
675 M->getAliasList().push_back(GA);
676 assert(GA->getNameStr() == Name && "Should not be a name conflict!");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000677
Chris Lattnerdf986172009-01-02 07:01:27 +0000678 return false;
679}
680
681/// ParseGlobal
682/// ::= GlobalVar '=' OptionalLinkage OptionalVisibility OptionalThreadLocal
683/// OptionalAddrSpace GlobalType Type Const
684/// ::= OptionalLinkage OptionalVisibility OptionalThreadLocal
685/// OptionalAddrSpace GlobalType Type Const
686///
687/// Everything through visibility has been parsed already.
688///
689bool LLParser::ParseGlobal(const std::string &Name, LocTy NameLoc,
690 unsigned Linkage, bool HasLinkage,
691 unsigned Visibility) {
692 unsigned AddrSpace;
693 bool ThreadLocal, IsConstant;
694 LocTy TyLoc;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000695
Owen Anderson1d0be152009-08-13 21:58:54 +0000696 PATypeHolder Ty(Type::getVoidTy(Context));
Chris Lattnerdf986172009-01-02 07:01:27 +0000697 if (ParseOptionalToken(lltok::kw_thread_local, ThreadLocal) ||
698 ParseOptionalAddrSpace(AddrSpace) ||
699 ParseGlobalType(IsConstant) ||
700 ParseType(Ty, TyLoc))
701 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000702
Chris Lattnerdf986172009-01-02 07:01:27 +0000703 // If the linkage is specified and is external, then no initializer is
704 // present.
705 Constant *Init = 0;
706 if (!HasLinkage || (Linkage != GlobalValue::DLLImportLinkage &&
Duncan Sands5f4ee1f2009-03-11 08:08:06 +0000707 Linkage != GlobalValue::ExternalWeakLinkage &&
Chris Lattnerdf986172009-01-02 07:01:27 +0000708 Linkage != GlobalValue::ExternalLinkage)) {
709 if (ParseGlobalValue(Ty, Init))
710 return true;
711 }
712
Chris Lattnercf0fe8d2009-10-05 05:54:46 +0000713 if (isa<FunctionType>(Ty) || Ty->isLabelTy())
Chris Lattner4a2f1122009-02-08 20:00:15 +0000714 return Error(TyLoc, "invalid type for global variable");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000715
Chris Lattnerdf986172009-01-02 07:01:27 +0000716 GlobalVariable *GV = 0;
717
718 // See if the global was forward referenced, if so, use the global.
Chris Lattner91dad872009-02-02 07:24:28 +0000719 if (!Name.empty()) {
Chris Lattner1d871c52009-10-25 23:22:50 +0000720 if (GlobalValue *GVal = M->getNamedValue(Name)) {
721 if (!ForwardRefVals.erase(Name) || !isa<GlobalValue>(GVal))
722 return Error(NameLoc, "redefinition of global '@" + Name + "'");
723 GV = cast<GlobalVariable>(GVal);
724 }
Chris Lattnerdf986172009-01-02 07:01:27 +0000725 } else {
726 std::map<unsigned, std::pair<GlobalValue*, LocTy> >::iterator
727 I = ForwardRefValIDs.find(NumberedVals.size());
728 if (I != ForwardRefValIDs.end()) {
729 GV = cast<GlobalVariable>(I->second.first);
730 ForwardRefValIDs.erase(I);
731 }
732 }
733
734 if (GV == 0) {
Daniel Dunbara279bc32009-09-20 02:20:51 +0000735 GV = new GlobalVariable(*M, Ty, false, GlobalValue::ExternalLinkage, 0,
Owen Andersone9b11b42009-07-08 19:03:57 +0000736 Name, 0, false, AddrSpace);
Chris Lattnerdf986172009-01-02 07:01:27 +0000737 } else {
738 if (GV->getType()->getElementType() != Ty)
739 return Error(TyLoc,
740 "forward reference and definition of global have different types");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000741
Chris Lattnerdf986172009-01-02 07:01:27 +0000742 // Move the forward-reference to the correct spot in the module.
743 M->getGlobalList().splice(M->global_end(), M->getGlobalList(), GV);
744 }
745
746 if (Name.empty())
747 NumberedVals.push_back(GV);
Daniel Dunbara279bc32009-09-20 02:20:51 +0000748
Chris Lattnerdf986172009-01-02 07:01:27 +0000749 // Set the parsed properties on the global.
750 if (Init)
751 GV->setInitializer(Init);
752 GV->setConstant(IsConstant);
753 GV->setLinkage((GlobalValue::LinkageTypes)Linkage);
754 GV->setVisibility((GlobalValue::VisibilityTypes)Visibility);
755 GV->setThreadLocal(ThreadLocal);
Daniel Dunbara279bc32009-09-20 02:20:51 +0000756
Chris Lattnerdf986172009-01-02 07:01:27 +0000757 // Parse attributes on the global.
758 while (Lex.getKind() == lltok::comma) {
759 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +0000760
Chris Lattnerdf986172009-01-02 07:01:27 +0000761 if (Lex.getKind() == lltok::kw_section) {
762 Lex.Lex();
763 GV->setSection(Lex.getStrVal());
764 if (ParseToken(lltok::StringConstant, "expected global section string"))
765 return true;
766 } else if (Lex.getKind() == lltok::kw_align) {
767 unsigned Alignment;
768 if (ParseOptionalAlignment(Alignment)) return true;
769 GV->setAlignment(Alignment);
770 } else {
771 TokError("unknown global variable property!");
772 }
773 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000774
Chris Lattnerdf986172009-01-02 07:01:27 +0000775 return false;
776}
777
778
779//===----------------------------------------------------------------------===//
780// GlobalValue Reference/Resolution Routines.
781//===----------------------------------------------------------------------===//
782
783/// GetGlobalVal - Get a value with the specified name or ID, creating a
784/// forward reference record if needed. This can return null if the value
785/// exists but does not have the right type.
786GlobalValue *LLParser::GetGlobalVal(const std::string &Name, const Type *Ty,
787 LocTy Loc) {
788 const PointerType *PTy = dyn_cast<PointerType>(Ty);
789 if (PTy == 0) {
790 Error(Loc, "global variable reference must have pointer type");
791 return 0;
792 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000793
Chris Lattnerdf986172009-01-02 07:01:27 +0000794 // Look this name up in the normal function symbol table.
795 GlobalValue *Val =
796 cast_or_null<GlobalValue>(M->getValueSymbolTable().lookup(Name));
Daniel Dunbara279bc32009-09-20 02:20:51 +0000797
Chris Lattnerdf986172009-01-02 07:01:27 +0000798 // If this is a forward reference for the value, see if we already created a
799 // forward ref record.
800 if (Val == 0) {
801 std::map<std::string, std::pair<GlobalValue*, LocTy> >::iterator
802 I = ForwardRefVals.find(Name);
803 if (I != ForwardRefVals.end())
804 Val = I->second.first;
805 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000806
Chris Lattnerdf986172009-01-02 07:01:27 +0000807 // If we have the value in the symbol table or fwd-ref table, return it.
808 if (Val) {
809 if (Val->getType() == Ty) return Val;
810 Error(Loc, "'@" + Name + "' defined with type '" +
811 Val->getType()->getDescription() + "'");
812 return 0;
813 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000814
Chris Lattnerdf986172009-01-02 07:01:27 +0000815 // Otherwise, create a new forward reference for this value and remember it.
816 GlobalValue *FwdVal;
Chris Lattner1e407c32009-01-08 19:05:36 +0000817 if (const FunctionType *FT = dyn_cast<FunctionType>(PTy->getElementType())) {
818 // Function types can return opaque but functions can't.
819 if (isa<OpaqueType>(FT->getReturnType())) {
820 Error(Loc, "function may not return opaque type");
821 return 0;
822 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000823
Duncan Sands5f4ee1f2009-03-11 08:08:06 +0000824 FwdVal = Function::Create(FT, GlobalValue::ExternalWeakLinkage, Name, M);
Chris Lattner1e407c32009-01-08 19:05:36 +0000825 } else {
Owen Andersone9b11b42009-07-08 19:03:57 +0000826 FwdVal = new GlobalVariable(*M, PTy->getElementType(), false,
827 GlobalValue::ExternalWeakLinkage, 0, Name);
Chris Lattner1e407c32009-01-08 19:05:36 +0000828 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000829
Chris Lattnerdf986172009-01-02 07:01:27 +0000830 ForwardRefVals[Name] = std::make_pair(FwdVal, Loc);
831 return FwdVal;
832}
833
834GlobalValue *LLParser::GetGlobalVal(unsigned ID, const Type *Ty, LocTy Loc) {
835 const PointerType *PTy = dyn_cast<PointerType>(Ty);
836 if (PTy == 0) {
837 Error(Loc, "global variable reference must have pointer type");
838 return 0;
839 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000840
Chris Lattnerdf986172009-01-02 07:01:27 +0000841 GlobalValue *Val = ID < NumberedVals.size() ? NumberedVals[ID] : 0;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000842
Chris Lattnerdf986172009-01-02 07:01:27 +0000843 // If this is a forward reference for the value, see if we already created a
844 // forward ref record.
845 if (Val == 0) {
846 std::map<unsigned, std::pair<GlobalValue*, LocTy> >::iterator
847 I = ForwardRefValIDs.find(ID);
848 if (I != ForwardRefValIDs.end())
849 Val = I->second.first;
850 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000851
Chris Lattnerdf986172009-01-02 07:01:27 +0000852 // If we have the value in the symbol table or fwd-ref table, return it.
853 if (Val) {
854 if (Val->getType() == Ty) return Val;
855 Error(Loc, "'@" + utostr(ID) + "' defined with type '" +
856 Val->getType()->getDescription() + "'");
857 return 0;
858 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000859
Chris Lattnerdf986172009-01-02 07:01:27 +0000860 // Otherwise, create a new forward reference for this value and remember it.
861 GlobalValue *FwdVal;
Chris Lattner830703b2009-01-05 18:27:50 +0000862 if (const FunctionType *FT = dyn_cast<FunctionType>(PTy->getElementType())) {
863 // Function types can return opaque but functions can't.
864 if (isa<OpaqueType>(FT->getReturnType())) {
Chris Lattner0d8484f2009-01-05 18:56:52 +0000865 Error(Loc, "function may not return opaque type");
Chris Lattner830703b2009-01-05 18:27:50 +0000866 return 0;
867 }
Duncan Sands5f4ee1f2009-03-11 08:08:06 +0000868 FwdVal = Function::Create(FT, GlobalValue::ExternalWeakLinkage, "", M);
Chris Lattner830703b2009-01-05 18:27:50 +0000869 } else {
Owen Andersone9b11b42009-07-08 19:03:57 +0000870 FwdVal = new GlobalVariable(*M, PTy->getElementType(), false,
871 GlobalValue::ExternalWeakLinkage, 0, "");
Chris Lattner830703b2009-01-05 18:27:50 +0000872 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000873
Chris Lattnerdf986172009-01-02 07:01:27 +0000874 ForwardRefValIDs[ID] = std::make_pair(FwdVal, Loc);
875 return FwdVal;
876}
877
878
879//===----------------------------------------------------------------------===//
880// Helper Routines.
881//===----------------------------------------------------------------------===//
882
883/// ParseToken - If the current token has the specified kind, eat it and return
884/// success. Otherwise, emit the specified error and return failure.
885bool LLParser::ParseToken(lltok::Kind T, const char *ErrMsg) {
886 if (Lex.getKind() != T)
887 return TokError(ErrMsg);
888 Lex.Lex();
889 return false;
890}
891
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000892/// ParseStringConstant
893/// ::= StringConstant
894bool LLParser::ParseStringConstant(std::string &Result) {
895 if (Lex.getKind() != lltok::StringConstant)
896 return TokError("expected string constant");
897 Result = Lex.getStrVal();
898 Lex.Lex();
899 return false;
900}
901
902/// ParseUInt32
903/// ::= uint32
904bool LLParser::ParseUInt32(unsigned &Val) {
Chris Lattnerdf986172009-01-02 07:01:27 +0000905 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned())
906 return TokError("expected integer");
907 uint64_t Val64 = Lex.getAPSIntVal().getLimitedValue(0xFFFFFFFFULL+1);
908 if (Val64 != unsigned(Val64))
909 return TokError("expected 32-bit integer (too large)");
910 Val = Val64;
911 Lex.Lex();
912 return false;
913}
914
915
916/// ParseOptionalAddrSpace
917/// := /*empty*/
918/// := 'addrspace' '(' uint32 ')'
919bool LLParser::ParseOptionalAddrSpace(unsigned &AddrSpace) {
920 AddrSpace = 0;
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000921 if (!EatIfPresent(lltok::kw_addrspace))
Chris Lattnerdf986172009-01-02 07:01:27 +0000922 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +0000923 return ParseToken(lltok::lparen, "expected '(' in address space") ||
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000924 ParseUInt32(AddrSpace) ||
Chris Lattnerdf986172009-01-02 07:01:27 +0000925 ParseToken(lltok::rparen, "expected ')' in address space");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000926}
Chris Lattnerdf986172009-01-02 07:01:27 +0000927
928/// ParseOptionalAttrs - Parse a potentially empty attribute list. AttrKind
929/// indicates what kind of attribute list this is: 0: function arg, 1: result,
930/// 2: function attr.
Chris Lattnerad9ad7c2009-03-25 06:36:36 +0000931/// 3: function arg after value: FIXME: REMOVE IN LLVM 3.0
Chris Lattnerdf986172009-01-02 07:01:27 +0000932bool LLParser::ParseOptionalAttrs(unsigned &Attrs, unsigned AttrKind) {
933 Attrs = Attribute::None;
934 LocTy AttrLoc = Lex.getLoc();
Daniel Dunbara279bc32009-09-20 02:20:51 +0000935
Chris Lattnerdf986172009-01-02 07:01:27 +0000936 while (1) {
937 switch (Lex.getKind()) {
938 case lltok::kw_sext:
939 case lltok::kw_zext:
Chris Lattnerad9ad7c2009-03-25 06:36:36 +0000940 // Treat these as signext/zeroext if they occur in the argument list after
941 // the value, as in "call i8 @foo(i8 10 sext)". If they occur before the
942 // value, as in "call i8 @foo(i8 sext (" then it is part of a constant
943 // expr.
Chris Lattnerdf986172009-01-02 07:01:27 +0000944 // FIXME: REMOVE THIS IN LLVM 3.0
Chris Lattnerad9ad7c2009-03-25 06:36:36 +0000945 if (AttrKind == 3) {
Chris Lattnerdf986172009-01-02 07:01:27 +0000946 if (Lex.getKind() == lltok::kw_sext)
947 Attrs |= Attribute::SExt;
948 else
949 Attrs |= Attribute::ZExt;
950 break;
951 }
952 // FALL THROUGH.
953 default: // End of attributes.
954 if (AttrKind != 2 && (Attrs & Attribute::FunctionOnly))
955 return Error(AttrLoc, "invalid use of function-only attribute");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000956
Chris Lattnerad9ad7c2009-03-25 06:36:36 +0000957 if (AttrKind != 0 && AttrKind != 3 && (Attrs & Attribute::ParameterOnly))
Chris Lattnerdf986172009-01-02 07:01:27 +0000958 return Error(AttrLoc, "invalid use of parameter-only attribute");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000959
Chris Lattnerdf986172009-01-02 07:01:27 +0000960 return false;
Devang Patel578efa92009-06-05 21:57:13 +0000961 case lltok::kw_zeroext: Attrs |= Attribute::ZExt; break;
962 case lltok::kw_signext: Attrs |= Attribute::SExt; break;
963 case lltok::kw_inreg: Attrs |= Attribute::InReg; break;
964 case lltok::kw_sret: Attrs |= Attribute::StructRet; break;
965 case lltok::kw_noalias: Attrs |= Attribute::NoAlias; break;
966 case lltok::kw_nocapture: Attrs |= Attribute::NoCapture; break;
967 case lltok::kw_byval: Attrs |= Attribute::ByVal; break;
968 case lltok::kw_nest: Attrs |= Attribute::Nest; break;
Chris Lattnerdf986172009-01-02 07:01:27 +0000969
Devang Patel578efa92009-06-05 21:57:13 +0000970 case lltok::kw_noreturn: Attrs |= Attribute::NoReturn; break;
971 case lltok::kw_nounwind: Attrs |= Attribute::NoUnwind; break;
972 case lltok::kw_noinline: Attrs |= Attribute::NoInline; break;
973 case lltok::kw_readnone: Attrs |= Attribute::ReadNone; break;
974 case lltok::kw_readonly: Attrs |= Attribute::ReadOnly; break;
Dale Johannesende86d472009-08-26 01:08:21 +0000975 case lltok::kw_inlinehint: Attrs |= Attribute::InlineHint; break;
Devang Patel578efa92009-06-05 21:57:13 +0000976 case lltok::kw_alwaysinline: Attrs |= Attribute::AlwaysInline; break;
977 case lltok::kw_optsize: Attrs |= Attribute::OptimizeForSize; break;
978 case lltok::kw_ssp: Attrs |= Attribute::StackProtect; break;
979 case lltok::kw_sspreq: Attrs |= Attribute::StackProtectReq; break;
980 case lltok::kw_noredzone: Attrs |= Attribute::NoRedZone; break;
981 case lltok::kw_noimplicitfloat: Attrs |= Attribute::NoImplicitFloat; break;
Anton Korobeynikovc5ec8a72009-07-17 18:07:26 +0000982 case lltok::kw_naked: Attrs |= Attribute::Naked; break;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000983
Chris Lattnerdf986172009-01-02 07:01:27 +0000984 case lltok::kw_align: {
985 unsigned Alignment;
986 if (ParseOptionalAlignment(Alignment))
987 return true;
988 Attrs |= Attribute::constructAlignmentFromInt(Alignment);
989 continue;
990 }
991 }
992 Lex.Lex();
993 }
994}
995
996/// ParseOptionalLinkage
997/// ::= /*empty*/
Rafael Espindolabb46f522009-01-15 20:18:42 +0000998/// ::= 'private'
Bill Wendling3d10a5a2009-07-20 01:03:30 +0000999/// ::= 'linker_private'
Chris Lattnerdf986172009-01-02 07:01:27 +00001000/// ::= 'internal'
1001/// ::= 'weak'
Duncan Sands667d4b82009-03-07 15:45:40 +00001002/// ::= 'weak_odr'
Chris Lattnerdf986172009-01-02 07:01:27 +00001003/// ::= 'linkonce'
Duncan Sands667d4b82009-03-07 15:45:40 +00001004/// ::= 'linkonce_odr'
Chris Lattnerdf986172009-01-02 07:01:27 +00001005/// ::= 'appending'
1006/// ::= 'dllexport'
1007/// ::= 'common'
1008/// ::= 'dllimport'
1009/// ::= 'extern_weak'
1010/// ::= 'external'
1011bool LLParser::ParseOptionalLinkage(unsigned &Res, bool &HasLinkage) {
1012 HasLinkage = false;
1013 switch (Lex.getKind()) {
Bill Wendling3d10a5a2009-07-20 01:03:30 +00001014 default: Res=GlobalValue::ExternalLinkage; return false;
1015 case lltok::kw_private: Res = GlobalValue::PrivateLinkage; break;
1016 case lltok::kw_linker_private: Res = GlobalValue::LinkerPrivateLinkage; break;
1017 case lltok::kw_internal: Res = GlobalValue::InternalLinkage; break;
1018 case lltok::kw_weak: Res = GlobalValue::WeakAnyLinkage; break;
1019 case lltok::kw_weak_odr: Res = GlobalValue::WeakODRLinkage; break;
1020 case lltok::kw_linkonce: Res = GlobalValue::LinkOnceAnyLinkage; break;
1021 case lltok::kw_linkonce_odr: Res = GlobalValue::LinkOnceODRLinkage; break;
Chris Lattner266c7bb2009-04-13 05:44:34 +00001022 case lltok::kw_available_externally:
1023 Res = GlobalValue::AvailableExternallyLinkage;
1024 break;
Bill Wendling3d10a5a2009-07-20 01:03:30 +00001025 case lltok::kw_appending: Res = GlobalValue::AppendingLinkage; break;
1026 case lltok::kw_dllexport: Res = GlobalValue::DLLExportLinkage; break;
1027 case lltok::kw_common: Res = GlobalValue::CommonLinkage; break;
1028 case lltok::kw_dllimport: Res = GlobalValue::DLLImportLinkage; break;
1029 case lltok::kw_extern_weak: Res = GlobalValue::ExternalWeakLinkage; break;
1030 case lltok::kw_external: Res = GlobalValue::ExternalLinkage; break;
Chris Lattnerdf986172009-01-02 07:01:27 +00001031 }
1032 Lex.Lex();
1033 HasLinkage = true;
1034 return false;
1035}
1036
1037/// ParseOptionalVisibility
1038/// ::= /*empty*/
1039/// ::= 'default'
1040/// ::= 'hidden'
1041/// ::= 'protected'
Daniel Dunbara279bc32009-09-20 02:20:51 +00001042///
Chris Lattnerdf986172009-01-02 07:01:27 +00001043bool LLParser::ParseOptionalVisibility(unsigned &Res) {
1044 switch (Lex.getKind()) {
1045 default: Res = GlobalValue::DefaultVisibility; return false;
1046 case lltok::kw_default: Res = GlobalValue::DefaultVisibility; break;
1047 case lltok::kw_hidden: Res = GlobalValue::HiddenVisibility; break;
1048 case lltok::kw_protected: Res = GlobalValue::ProtectedVisibility; break;
1049 }
1050 Lex.Lex();
1051 return false;
1052}
1053
1054/// ParseOptionalCallingConv
1055/// ::= /*empty*/
1056/// ::= 'ccc'
1057/// ::= 'fastcc'
1058/// ::= 'coldcc'
1059/// ::= 'x86_stdcallcc'
1060/// ::= 'x86_fastcallcc'
Anton Korobeynikov385f5a92009-06-16 18:50:49 +00001061/// ::= 'arm_apcscc'
1062/// ::= 'arm_aapcscc'
1063/// ::= 'arm_aapcs_vfpcc'
Anton Korobeynikov211a14e2009-12-07 02:27:35 +00001064/// ::= 'msp430_intrcc'
Chris Lattnerdf986172009-01-02 07:01:27 +00001065/// ::= 'cc' UINT
Anton Korobeynikov385f5a92009-06-16 18:50:49 +00001066///
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001067bool LLParser::ParseOptionalCallingConv(CallingConv::ID &CC) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001068 switch (Lex.getKind()) {
1069 default: CC = CallingConv::C; return false;
1070 case lltok::kw_ccc: CC = CallingConv::C; break;
1071 case lltok::kw_fastcc: CC = CallingConv::Fast; break;
1072 case lltok::kw_coldcc: CC = CallingConv::Cold; break;
1073 case lltok::kw_x86_stdcallcc: CC = CallingConv::X86_StdCall; break;
1074 case lltok::kw_x86_fastcallcc: CC = CallingConv::X86_FastCall; break;
Anton Korobeynikov385f5a92009-06-16 18:50:49 +00001075 case lltok::kw_arm_apcscc: CC = CallingConv::ARM_APCS; break;
1076 case lltok::kw_arm_aapcscc: CC = CallingConv::ARM_AAPCS; break;
1077 case lltok::kw_arm_aapcs_vfpcc:CC = CallingConv::ARM_AAPCS_VFP; break;
Anton Korobeynikov211a14e2009-12-07 02:27:35 +00001078 case lltok::kw_msp430_intrcc: CC = CallingConv::MSP430_INTR; break;
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001079 case lltok::kw_cc: {
1080 unsigned ArbitraryCC;
1081 Lex.Lex();
1082 if (ParseUInt32(ArbitraryCC)) {
1083 return true;
1084 } else
1085 CC = static_cast<CallingConv::ID>(ArbitraryCC);
1086 return false;
1087 }
1088 break;
Chris Lattnerdf986172009-01-02 07:01:27 +00001089 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001090
Chris Lattnerdf986172009-01-02 07:01:27 +00001091 Lex.Lex();
1092 return false;
1093}
1094
Devang Patel0475c912009-09-29 00:01:14 +00001095/// ParseOptionalCustomMetadata
Devang Patelf633a062009-09-17 23:04:48 +00001096/// ::= /* empty */
Chris Lattner3f3a0f62009-12-29 21:25:40 +00001097/// ::= !dbg !42 (',' !dbg !57)*
Devang Patel0475c912009-09-29 00:01:14 +00001098bool LLParser::ParseOptionalCustomMetadata() {
Chris Lattner52e20312009-10-19 05:31:10 +00001099 if (Lex.getKind() != lltok::NamedOrCustomMD)
Devang Patelf633a062009-09-17 23:04:48 +00001100 return false;
Devang Patel0475c912009-09-29 00:01:14 +00001101
Chris Lattner3f3a0f62009-12-29 21:25:40 +00001102 while (1) {
1103 std::string Name = Lex.getStrVal();
1104 Lex.Lex();
Chris Lattner52e20312009-10-19 05:31:10 +00001105
Chris Lattner3f3a0f62009-12-29 21:25:40 +00001106 if (Lex.getKind() != lltok::Metadata)
1107 return TokError("expected '!' here");
1108 Lex.Lex();
Devang Patel0475c912009-09-29 00:01:14 +00001109
Chris Lattner442ffa12009-12-29 21:53:55 +00001110 MDNode *Node;
Chris Lattner3f3a0f62009-12-29 21:25:40 +00001111 if (ParseMDNode(Node)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001112
Chris Lattner3f3a0f62009-12-29 21:25:40 +00001113 unsigned MDK = M->getMDKindID(Name.c_str());
Chris Lattner442ffa12009-12-29 21:53:55 +00001114 MDsOnInst.push_back(std::make_pair(MDK, Node));
Chris Lattner3f3a0f62009-12-29 21:25:40 +00001115
1116 // If this is the end of the list, we're done.
1117 if (!EatIfPresent(lltok::comma))
1118 return false;
1119
1120 // The next value must be a custom metadata id.
1121 if (Lex.getKind() != lltok::NamedOrCustomMD)
1122 return TokError("expected more custom metadata ids");
1123 }
Devang Patelf633a062009-09-17 23:04:48 +00001124}
1125
Chris Lattnerdf986172009-01-02 07:01:27 +00001126/// ParseOptionalAlignment
1127/// ::= /* empty */
1128/// ::= 'align' 4
1129bool LLParser::ParseOptionalAlignment(unsigned &Alignment) {
1130 Alignment = 0;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001131 if (!EatIfPresent(lltok::kw_align))
1132 return false;
Chris Lattner3fbb3ab2009-01-05 07:46:05 +00001133 LocTy AlignLoc = Lex.getLoc();
1134 if (ParseUInt32(Alignment)) return true;
1135 if (!isPowerOf2_32(Alignment))
1136 return Error(AlignLoc, "alignment is not a power of two");
1137 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00001138}
1139
Devang Patelf633a062009-09-17 23:04:48 +00001140/// ParseOptionalInfo
1141/// ::= OptionalInfo (',' OptionalInfo)+
1142bool LLParser::ParseOptionalInfo(unsigned &Alignment) {
1143
1144 // FIXME: Handle customized metadata info attached with an instruction.
1145 do {
Devang Patel0475c912009-09-29 00:01:14 +00001146 if (Lex.getKind() == lltok::NamedOrCustomMD) {
1147 if (ParseOptionalCustomMetadata()) return true;
Devang Patelf633a062009-09-17 23:04:48 +00001148 } else if (Lex.getKind() == lltok::kw_align) {
1149 if (ParseOptionalAlignment(Alignment)) return true;
1150 } else
1151 return true;
1152 } while (EatIfPresent(lltok::comma));
Daniel Dunbara279bc32009-09-20 02:20:51 +00001153
Devang Patelf633a062009-09-17 23:04:48 +00001154 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00001155}
1156
Devang Patelf633a062009-09-17 23:04:48 +00001157
Chris Lattnerdf986172009-01-02 07:01:27 +00001158/// ParseIndexList
1159/// ::= (',' uint32)+
1160bool LLParser::ParseIndexList(SmallVectorImpl<unsigned> &Indices) {
1161 if (Lex.getKind() != lltok::comma)
1162 return TokError("expected ',' as start of index list");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001163
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001164 while (EatIfPresent(lltok::comma)) {
Devang Patele8bc45a2009-11-03 19:06:07 +00001165 if (Lex.getKind() == lltok::NamedOrCustomMD)
1166 break;
Chris Lattnerdf986172009-01-02 07:01:27 +00001167 unsigned Idx;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001168 if (ParseUInt32(Idx)) return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00001169 Indices.push_back(Idx);
1170 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001171
Chris Lattnerdf986172009-01-02 07:01:27 +00001172 return false;
1173}
1174
1175//===----------------------------------------------------------------------===//
1176// Type Parsing.
1177//===----------------------------------------------------------------------===//
1178
1179/// ParseType - Parse and resolve a full type.
Chris Lattnera9a9e072009-03-09 04:49:14 +00001180bool LLParser::ParseType(PATypeHolder &Result, bool AllowVoid) {
1181 LocTy TypeLoc = Lex.getLoc();
Chris Lattnerdf986172009-01-02 07:01:27 +00001182 if (ParseTypeRec(Result)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001183
Chris Lattnerdf986172009-01-02 07:01:27 +00001184 // Verify no unresolved uprefs.
1185 if (!UpRefs.empty())
1186 return Error(UpRefs.back().Loc, "invalid unresolved type up reference");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001187
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001188 if (!AllowVoid && Result.get()->isVoidTy())
Chris Lattnera9a9e072009-03-09 04:49:14 +00001189 return Error(TypeLoc, "void type only allowed for function results");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001190
Chris Lattnerdf986172009-01-02 07:01:27 +00001191 return false;
1192}
1193
1194/// HandleUpRefs - Every time we finish a new layer of types, this function is
1195/// called. It loops through the UpRefs vector, which is a list of the
1196/// currently active types. For each type, if the up-reference is contained in
1197/// the newly completed type, we decrement the level count. When the level
1198/// count reaches zero, the up-referenced type is the type that is passed in:
1199/// thus we can complete the cycle.
1200///
1201PATypeHolder LLParser::HandleUpRefs(const Type *ty) {
1202 // If Ty isn't abstract, or if there are no up-references in it, then there is
1203 // nothing to resolve here.
1204 if (!ty->isAbstract() || UpRefs.empty()) return ty;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001205
Chris Lattnerdf986172009-01-02 07:01:27 +00001206 PATypeHolder Ty(ty);
1207#if 0
David Greene0e28d762009-12-23 23:38:28 +00001208 dbgs() << "Type '" << Ty->getDescription()
Chris Lattnerdf986172009-01-02 07:01:27 +00001209 << "' newly formed. Resolving upreferences.\n"
1210 << UpRefs.size() << " upreferences active!\n";
1211#endif
Daniel Dunbara279bc32009-09-20 02:20:51 +00001212
Chris Lattnerdf986172009-01-02 07:01:27 +00001213 // If we find any resolvable upreferences (i.e., those whose NestingLevel goes
1214 // to zero), we resolve them all together before we resolve them to Ty. At
1215 // the end of the loop, if there is anything to resolve to Ty, it will be in
1216 // this variable.
1217 OpaqueType *TypeToResolve = 0;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001218
Chris Lattnerdf986172009-01-02 07:01:27 +00001219 for (unsigned i = 0; i != UpRefs.size(); ++i) {
1220 // Determine if 'Ty' directly contains this up-references 'LastContainedTy'.
1221 bool ContainsType =
1222 std::find(Ty->subtype_begin(), Ty->subtype_end(),
1223 UpRefs[i].LastContainedTy) != Ty->subtype_end();
Daniel Dunbara279bc32009-09-20 02:20:51 +00001224
Chris Lattnerdf986172009-01-02 07:01:27 +00001225#if 0
David Greene0e28d762009-12-23 23:38:28 +00001226 dbgs() << " UR#" << i << " - TypeContains(" << Ty->getDescription() << ", "
Chris Lattnerdf986172009-01-02 07:01:27 +00001227 << UpRefs[i].LastContainedTy->getDescription() << ") = "
1228 << (ContainsType ? "true" : "false")
1229 << " level=" << UpRefs[i].NestingLevel << "\n";
1230#endif
1231 if (!ContainsType)
1232 continue;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001233
Chris Lattnerdf986172009-01-02 07:01:27 +00001234 // Decrement level of upreference
1235 unsigned Level = --UpRefs[i].NestingLevel;
1236 UpRefs[i].LastContainedTy = Ty;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001237
Chris Lattnerdf986172009-01-02 07:01:27 +00001238 // If the Up-reference has a non-zero level, it shouldn't be resolved yet.
1239 if (Level != 0)
1240 continue;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001241
Chris Lattnerdf986172009-01-02 07:01:27 +00001242#if 0
David Greene0e28d762009-12-23 23:38:28 +00001243 dbgs() << " * Resolving upreference for " << UpRefs[i].UpRefTy << "\n";
Chris Lattnerdf986172009-01-02 07:01:27 +00001244#endif
1245 if (!TypeToResolve)
1246 TypeToResolve = UpRefs[i].UpRefTy;
1247 else
1248 UpRefs[i].UpRefTy->refineAbstractTypeTo(TypeToResolve);
1249 UpRefs.erase(UpRefs.begin()+i); // Remove from upreference list.
1250 --i; // Do not skip the next element.
1251 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001252
Chris Lattnerdf986172009-01-02 07:01:27 +00001253 if (TypeToResolve)
1254 TypeToResolve->refineAbstractTypeTo(Ty);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001255
Chris Lattnerdf986172009-01-02 07:01:27 +00001256 return Ty;
1257}
1258
1259
1260/// ParseTypeRec - The recursive function used to process the internal
1261/// implementation details of types.
1262bool LLParser::ParseTypeRec(PATypeHolder &Result) {
1263 switch (Lex.getKind()) {
1264 default:
1265 return TokError("expected type");
1266 case lltok::Type:
1267 // TypeRec ::= 'float' | 'void' (etc)
1268 Result = Lex.getTyVal();
Daniel Dunbara279bc32009-09-20 02:20:51 +00001269 Lex.Lex();
Chris Lattnerdf986172009-01-02 07:01:27 +00001270 break;
1271 case lltok::kw_opaque:
1272 // TypeRec ::= 'opaque'
Owen Anderson0e275dc2009-08-13 23:27:32 +00001273 Result = OpaqueType::get(Context);
Chris Lattnerdf986172009-01-02 07:01:27 +00001274 Lex.Lex();
1275 break;
1276 case lltok::lbrace:
1277 // TypeRec ::= '{' ... '}'
1278 if (ParseStructType(Result, false))
1279 return true;
1280 break;
1281 case lltok::lsquare:
1282 // TypeRec ::= '[' ... ']'
1283 Lex.Lex(); // eat the lsquare.
1284 if (ParseArrayVectorType(Result, false))
1285 return true;
1286 break;
1287 case lltok::less: // Either vector or packed struct.
1288 // TypeRec ::= '<' ... '>'
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001289 Lex.Lex();
1290 if (Lex.getKind() == lltok::lbrace) {
1291 if (ParseStructType(Result, true) ||
1292 ParseToken(lltok::greater, "expected '>' at end of packed struct"))
Chris Lattnerdf986172009-01-02 07:01:27 +00001293 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00001294 } else if (ParseArrayVectorType(Result, true))
1295 return true;
1296 break;
1297 case lltok::LocalVar:
1298 case lltok::StringConstant: // FIXME: REMOVE IN LLVM 3.0
1299 // TypeRec ::= %foo
1300 if (const Type *T = M->getTypeByName(Lex.getStrVal())) {
1301 Result = T;
1302 } else {
Owen Anderson0e275dc2009-08-13 23:27:32 +00001303 Result = OpaqueType::get(Context);
Chris Lattnerdf986172009-01-02 07:01:27 +00001304 ForwardRefTypes.insert(std::make_pair(Lex.getStrVal(),
1305 std::make_pair(Result,
1306 Lex.getLoc())));
1307 M->addTypeName(Lex.getStrVal(), Result.get());
1308 }
1309 Lex.Lex();
1310 break;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001311
Chris Lattnerdf986172009-01-02 07:01:27 +00001312 case lltok::LocalVarID:
1313 // TypeRec ::= %4
1314 if (Lex.getUIntVal() < NumberedTypes.size())
1315 Result = NumberedTypes[Lex.getUIntVal()];
1316 else {
1317 std::map<unsigned, std::pair<PATypeHolder, LocTy> >::iterator
1318 I = ForwardRefTypeIDs.find(Lex.getUIntVal());
1319 if (I != ForwardRefTypeIDs.end())
1320 Result = I->second.first;
1321 else {
Owen Anderson0e275dc2009-08-13 23:27:32 +00001322 Result = OpaqueType::get(Context);
Chris Lattnerdf986172009-01-02 07:01:27 +00001323 ForwardRefTypeIDs.insert(std::make_pair(Lex.getUIntVal(),
1324 std::make_pair(Result,
1325 Lex.getLoc())));
1326 }
1327 }
1328 Lex.Lex();
1329 break;
1330 case lltok::backslash: {
1331 // TypeRec ::= '\' 4
Chris Lattnerdf986172009-01-02 07:01:27 +00001332 Lex.Lex();
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001333 unsigned Val;
1334 if (ParseUInt32(Val)) return true;
Owen Anderson0e275dc2009-08-13 23:27:32 +00001335 OpaqueType *OT = OpaqueType::get(Context); //Use temporary placeholder.
Chris Lattnerdf986172009-01-02 07:01:27 +00001336 UpRefs.push_back(UpRefRecord(Lex.getLoc(), Val, OT));
1337 Result = OT;
1338 break;
1339 }
1340 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001341
1342 // Parse the type suffixes.
Chris Lattnerdf986172009-01-02 07:01:27 +00001343 while (1) {
1344 switch (Lex.getKind()) {
1345 // End of type.
Daniel Dunbara279bc32009-09-20 02:20:51 +00001346 default: return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00001347
1348 // TypeRec ::= TypeRec '*'
1349 case lltok::star:
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001350 if (Result.get()->isLabelTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00001351 return TokError("basic block pointers are invalid");
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001352 if (Result.get()->isVoidTy())
Dan Gohmanb9070d32009-02-09 17:41:21 +00001353 return TokError("pointers to void are invalid; use i8* instead");
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001354 if (!PointerType::isValidElementType(Result.get()))
1355 return TokError("pointer to this type is invalid");
Owen Andersondebcb012009-07-29 22:17:13 +00001356 Result = HandleUpRefs(PointerType::getUnqual(Result.get()));
Chris Lattnerdf986172009-01-02 07:01:27 +00001357 Lex.Lex();
1358 break;
1359
1360 // TypeRec ::= TypeRec 'addrspace' '(' uint32 ')' '*'
1361 case lltok::kw_addrspace: {
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001362 if (Result.get()->isLabelTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00001363 return TokError("basic block pointers are invalid");
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001364 if (Result.get()->isVoidTy())
Dan Gohmanb9070d32009-02-09 17:41:21 +00001365 return TokError("pointers to void are invalid; use i8* instead");
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001366 if (!PointerType::isValidElementType(Result.get()))
1367 return TokError("pointer to this type is invalid");
Chris Lattnerdf986172009-01-02 07:01:27 +00001368 unsigned AddrSpace;
1369 if (ParseOptionalAddrSpace(AddrSpace) ||
1370 ParseToken(lltok::star, "expected '*' in address space"))
1371 return true;
1372
Owen Andersondebcb012009-07-29 22:17:13 +00001373 Result = HandleUpRefs(PointerType::get(Result.get(), AddrSpace));
Chris Lattnerdf986172009-01-02 07:01:27 +00001374 break;
1375 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001376
Chris Lattnerdf986172009-01-02 07:01:27 +00001377 /// Types '(' ArgTypeListI ')' OptFuncAttrs
1378 case lltok::lparen:
1379 if (ParseFunctionType(Result))
1380 return true;
1381 break;
1382 }
1383 }
1384}
1385
1386/// ParseParameterList
1387/// ::= '(' ')'
1388/// ::= '(' Arg (',' Arg)* ')'
1389/// Arg
1390/// ::= Type OptionalAttributes Value OptionalAttributes
1391bool LLParser::ParseParameterList(SmallVectorImpl<ParamInfo> &ArgList,
1392 PerFunctionState &PFS) {
1393 if (ParseToken(lltok::lparen, "expected '(' in call"))
1394 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001395
Chris Lattnerdf986172009-01-02 07:01:27 +00001396 while (Lex.getKind() != lltok::rparen) {
1397 // If this isn't the first argument, we need a comma.
1398 if (!ArgList.empty() &&
1399 ParseToken(lltok::comma, "expected ',' in argument list"))
1400 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001401
Chris Lattnerdf986172009-01-02 07:01:27 +00001402 // Parse the argument.
1403 LocTy ArgLoc;
Owen Anderson1d0be152009-08-13 21:58:54 +00001404 PATypeHolder ArgTy(Type::getVoidTy(Context));
Victor Hernandez19715562009-12-03 23:40:58 +00001405 unsigned ArgAttrs1 = Attribute::None;
1406 unsigned ArgAttrs2 = Attribute::None;
Chris Lattnerdf986172009-01-02 07:01:27 +00001407 Value *V;
Victor Hernandez19715562009-12-03 23:40:58 +00001408 if (ParseType(ArgTy, ArgLoc))
Chris Lattnerdf986172009-01-02 07:01:27 +00001409 return true;
Victor Hernandez19715562009-12-03 23:40:58 +00001410
1411 if (Lex.getKind() == lltok::Metadata) {
1412 if (ParseInlineMetadata(V, PFS))
1413 return true;
1414 } else {
1415 if (ParseOptionalAttrs(ArgAttrs1, 0) ||
1416 ParseValue(ArgTy, V, PFS) ||
1417 // FIXME: Should not allow attributes after the argument, remove this
1418 // in LLVM 3.0.
1419 ParseOptionalAttrs(ArgAttrs2, 3))
1420 return true;
1421 }
Chris Lattnerdf986172009-01-02 07:01:27 +00001422 ArgList.push_back(ParamInfo(ArgLoc, V, ArgAttrs1|ArgAttrs2));
1423 }
1424
1425 Lex.Lex(); // Lex the ')'.
1426 return false;
1427}
1428
1429
1430
Chris Lattnerdfd19dd2009-01-05 18:34:07 +00001431/// ParseArgumentList - Parse the argument list for a function type or function
1432/// prototype. If 'inType' is true then we are parsing a FunctionType.
Chris Lattnerdf986172009-01-02 07:01:27 +00001433/// ::= '(' ArgTypeListI ')'
1434/// ArgTypeListI
1435/// ::= /*empty*/
1436/// ::= '...'
1437/// ::= ArgTypeList ',' '...'
1438/// ::= ArgType (',' ArgType)*
Chris Lattnerdfd19dd2009-01-05 18:34:07 +00001439///
Chris Lattnerdf986172009-01-02 07:01:27 +00001440bool LLParser::ParseArgumentList(std::vector<ArgInfo> &ArgList,
Chris Lattnerdfd19dd2009-01-05 18:34:07 +00001441 bool &isVarArg, bool inType) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001442 isVarArg = false;
1443 assert(Lex.getKind() == lltok::lparen);
1444 Lex.Lex(); // eat the (.
Daniel Dunbara279bc32009-09-20 02:20:51 +00001445
Chris Lattnerdf986172009-01-02 07:01:27 +00001446 if (Lex.getKind() == lltok::rparen) {
1447 // empty
1448 } else if (Lex.getKind() == lltok::dotdotdot) {
1449 isVarArg = true;
1450 Lex.Lex();
1451 } else {
1452 LocTy TypeLoc = Lex.getLoc();
Owen Anderson1d0be152009-08-13 21:58:54 +00001453 PATypeHolder ArgTy(Type::getVoidTy(Context));
Chris Lattnerdf986172009-01-02 07:01:27 +00001454 unsigned Attrs;
Chris Lattnerdf986172009-01-02 07:01:27 +00001455 std::string Name;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001456
Chris Lattnerdfd19dd2009-01-05 18:34:07 +00001457 // If we're parsing a type, use ParseTypeRec, because we allow recursive
1458 // types (such as a function returning a pointer to itself). If parsing a
1459 // function prototype, we require fully resolved types.
1460 if ((inType ? ParseTypeRec(ArgTy) : ParseType(ArgTy)) ||
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001461 ParseOptionalAttrs(Attrs, 0)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001462
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001463 if (ArgTy->isVoidTy())
Chris Lattnera9a9e072009-03-09 04:49:14 +00001464 return Error(TypeLoc, "argument can not have void type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001465
Chris Lattnerdf986172009-01-02 07:01:27 +00001466 if (Lex.getKind() == lltok::LocalVar ||
1467 Lex.getKind() == lltok::StringConstant) { // FIXME: REMOVE IN LLVM 3.0
1468 Name = Lex.getStrVal();
1469 Lex.Lex();
1470 }
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001471
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001472 if (!FunctionType::isValidArgumentType(ArgTy))
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001473 return Error(TypeLoc, "invalid type for function argument");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001474
Chris Lattnerdf986172009-01-02 07:01:27 +00001475 ArgList.push_back(ArgInfo(TypeLoc, ArgTy, Attrs, Name));
Daniel Dunbara279bc32009-09-20 02:20:51 +00001476
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001477 while (EatIfPresent(lltok::comma)) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001478 // Handle ... at end of arg list.
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001479 if (EatIfPresent(lltok::dotdotdot)) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001480 isVarArg = true;
Chris Lattnerdf986172009-01-02 07:01:27 +00001481 break;
1482 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001483
Chris Lattnerdf986172009-01-02 07:01:27 +00001484 // Otherwise must be an argument type.
1485 TypeLoc = Lex.getLoc();
Chris Lattnera9a9e072009-03-09 04:49:14 +00001486 if ((inType ? ParseTypeRec(ArgTy) : ParseType(ArgTy)) ||
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001487 ParseOptionalAttrs(Attrs, 0)) return true;
1488
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001489 if (ArgTy->isVoidTy())
Chris Lattnera9a9e072009-03-09 04:49:14 +00001490 return Error(TypeLoc, "argument can not have void type");
1491
Chris Lattnerdf986172009-01-02 07:01:27 +00001492 if (Lex.getKind() == lltok::LocalVar ||
1493 Lex.getKind() == lltok::StringConstant) { // FIXME: REMOVE IN LLVM 3.0
1494 Name = Lex.getStrVal();
1495 Lex.Lex();
1496 } else {
1497 Name = "";
1498 }
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001499
1500 if (!ArgTy->isFirstClassType() && !isa<OpaqueType>(ArgTy))
1501 return Error(TypeLoc, "invalid type for function argument");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001502
Chris Lattnerdf986172009-01-02 07:01:27 +00001503 ArgList.push_back(ArgInfo(TypeLoc, ArgTy, Attrs, Name));
1504 }
1505 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001506
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001507 return ParseToken(lltok::rparen, "expected ')' at end of argument list");
Chris Lattnerdf986172009-01-02 07:01:27 +00001508}
Daniel Dunbara279bc32009-09-20 02:20:51 +00001509
Chris Lattnerdf986172009-01-02 07:01:27 +00001510/// ParseFunctionType
1511/// ::= Type ArgumentList OptionalAttrs
1512bool LLParser::ParseFunctionType(PATypeHolder &Result) {
1513 assert(Lex.getKind() == lltok::lparen);
1514
Chris Lattnerd77d04c2009-01-05 08:04:33 +00001515 if (!FunctionType::isValidReturnType(Result))
1516 return TokError("invalid function return type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001517
Chris Lattnerdf986172009-01-02 07:01:27 +00001518 std::vector<ArgInfo> ArgList;
1519 bool isVarArg;
1520 unsigned Attrs;
Chris Lattnerdfd19dd2009-01-05 18:34:07 +00001521 if (ParseArgumentList(ArgList, isVarArg, true) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00001522 // FIXME: Allow, but ignore attributes on function types!
1523 // FIXME: Remove in LLVM 3.0
1524 ParseOptionalAttrs(Attrs, 2))
1525 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001526
Chris Lattnerdf986172009-01-02 07:01:27 +00001527 // Reject names on the arguments lists.
1528 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
1529 if (!ArgList[i].Name.empty())
1530 return Error(ArgList[i].Loc, "argument name invalid in function type");
1531 if (!ArgList[i].Attrs != 0) {
1532 // Allow but ignore attributes on function types; this permits
1533 // auto-upgrade.
1534 // FIXME: REJECT ATTRIBUTES ON FUNCTION TYPES in LLVM 3.0
1535 }
1536 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001537
Chris Lattnerdf986172009-01-02 07:01:27 +00001538 std::vector<const Type*> ArgListTy;
1539 for (unsigned i = 0, e = ArgList.size(); i != e; ++i)
1540 ArgListTy.push_back(ArgList[i].Type);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001541
Owen Andersondebcb012009-07-29 22:17:13 +00001542 Result = HandleUpRefs(FunctionType::get(Result.get(),
Owen Andersonfba933c2009-07-01 23:57:11 +00001543 ArgListTy, isVarArg));
Chris Lattnerdf986172009-01-02 07:01:27 +00001544 return false;
1545}
1546
1547/// ParseStructType: Handles packed and unpacked types. </> parsed elsewhere.
1548/// TypeRec
1549/// ::= '{' '}'
1550/// ::= '{' TypeRec (',' TypeRec)* '}'
1551/// ::= '<' '{' '}' '>'
1552/// ::= '<' '{' TypeRec (',' TypeRec)* '}' '>'
1553bool LLParser::ParseStructType(PATypeHolder &Result, bool Packed) {
1554 assert(Lex.getKind() == lltok::lbrace);
1555 Lex.Lex(); // Consume the '{'
Daniel Dunbara279bc32009-09-20 02:20:51 +00001556
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001557 if (EatIfPresent(lltok::rbrace)) {
Owen Andersond7f2a6c2009-08-05 23:16:16 +00001558 Result = StructType::get(Context, Packed);
Chris Lattnerdf986172009-01-02 07:01:27 +00001559 return false;
1560 }
1561
1562 std::vector<PATypeHolder> ParamsList;
Chris Lattnera9a9e072009-03-09 04:49:14 +00001563 LocTy EltTyLoc = Lex.getLoc();
Chris Lattnerdf986172009-01-02 07:01:27 +00001564 if (ParseTypeRec(Result)) return true;
1565 ParamsList.push_back(Result);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001566
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001567 if (Result->isVoidTy())
Chris Lattnera9a9e072009-03-09 04:49:14 +00001568 return Error(EltTyLoc, "struct element can not have void type");
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001569 if (!StructType::isValidElementType(Result))
1570 return Error(EltTyLoc, "invalid element type for struct");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001571
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001572 while (EatIfPresent(lltok::comma)) {
Chris Lattnera9a9e072009-03-09 04:49:14 +00001573 EltTyLoc = Lex.getLoc();
Chris Lattnerdf986172009-01-02 07:01:27 +00001574 if (ParseTypeRec(Result)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001575
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001576 if (Result->isVoidTy())
Chris Lattnera9a9e072009-03-09 04:49:14 +00001577 return Error(EltTyLoc, "struct element can not have void type");
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001578 if (!StructType::isValidElementType(Result))
1579 return Error(EltTyLoc, "invalid element type for struct");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001580
Chris Lattnerdf986172009-01-02 07:01:27 +00001581 ParamsList.push_back(Result);
1582 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001583
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001584 if (ParseToken(lltok::rbrace, "expected '}' at end of struct"))
1585 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001586
Chris Lattnerdf986172009-01-02 07:01:27 +00001587 std::vector<const Type*> ParamsListTy;
1588 for (unsigned i = 0, e = ParamsList.size(); i != e; ++i)
1589 ParamsListTy.push_back(ParamsList[i].get());
Owen Andersond7f2a6c2009-08-05 23:16:16 +00001590 Result = HandleUpRefs(StructType::get(Context, ParamsListTy, Packed));
Chris Lattnerdf986172009-01-02 07:01:27 +00001591 return false;
1592}
1593
1594/// ParseArrayVectorType - Parse an array or vector type, assuming the first
1595/// token has already been consumed.
Daniel Dunbara279bc32009-09-20 02:20:51 +00001596/// TypeRec
Chris Lattnerdf986172009-01-02 07:01:27 +00001597/// ::= '[' APSINTVAL 'x' Types ']'
1598/// ::= '<' APSINTVAL 'x' Types '>'
1599bool LLParser::ParseArrayVectorType(PATypeHolder &Result, bool isVector) {
1600 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned() ||
1601 Lex.getAPSIntVal().getBitWidth() > 64)
1602 return TokError("expected number in address space");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001603
Chris Lattnerdf986172009-01-02 07:01:27 +00001604 LocTy SizeLoc = Lex.getLoc();
1605 uint64_t Size = Lex.getAPSIntVal().getZExtValue();
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001606 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +00001607
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001608 if (ParseToken(lltok::kw_x, "expected 'x' after element count"))
1609 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00001610
1611 LocTy TypeLoc = Lex.getLoc();
Owen Anderson1d0be152009-08-13 21:58:54 +00001612 PATypeHolder EltTy(Type::getVoidTy(Context));
Chris Lattnerdf986172009-01-02 07:01:27 +00001613 if (ParseTypeRec(EltTy)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001614
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001615 if (EltTy->isVoidTy())
Chris Lattnera9a9e072009-03-09 04:49:14 +00001616 return Error(TypeLoc, "array and vector element type cannot be void");
1617
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001618 if (ParseToken(isVector ? lltok::greater : lltok::rsquare,
1619 "expected end of sequential type"))
1620 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001621
Chris Lattnerdf986172009-01-02 07:01:27 +00001622 if (isVector) {
Chris Lattner452e2622009-02-28 18:12:41 +00001623 if (Size == 0)
1624 return Error(SizeLoc, "zero element vector is illegal");
Chris Lattnerdf986172009-01-02 07:01:27 +00001625 if ((unsigned)Size != Size)
1626 return Error(SizeLoc, "size too large for vector");
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001627 if (!VectorType::isValidElementType(EltTy))
Chris Lattnerdf986172009-01-02 07:01:27 +00001628 return Error(TypeLoc, "vector element type must be fp or integer");
Owen Andersondebcb012009-07-29 22:17:13 +00001629 Result = VectorType::get(EltTy, unsigned(Size));
Chris Lattnerdf986172009-01-02 07:01:27 +00001630 } else {
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001631 if (!ArrayType::isValidElementType(EltTy))
Chris Lattnerdf986172009-01-02 07:01:27 +00001632 return Error(TypeLoc, "invalid array element type");
Owen Andersondebcb012009-07-29 22:17:13 +00001633 Result = HandleUpRefs(ArrayType::get(EltTy, Size));
Chris Lattnerdf986172009-01-02 07:01:27 +00001634 }
1635 return false;
1636}
1637
1638//===----------------------------------------------------------------------===//
1639// Function Semantic Analysis.
1640//===----------------------------------------------------------------------===//
1641
Chris Lattner09d9ef42009-10-28 03:39:23 +00001642LLParser::PerFunctionState::PerFunctionState(LLParser &p, Function &f,
1643 int functionNumber)
1644 : P(p), F(f), FunctionNumber(functionNumber) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001645
1646 // Insert unnamed arguments into the NumberedVals list.
1647 for (Function::arg_iterator AI = F.arg_begin(), E = F.arg_end();
1648 AI != E; ++AI)
1649 if (!AI->hasName())
1650 NumberedVals.push_back(AI);
1651}
1652
1653LLParser::PerFunctionState::~PerFunctionState() {
1654 // If there were any forward referenced non-basicblock values, delete them.
1655 for (std::map<std::string, std::pair<Value*, LocTy> >::iterator
1656 I = ForwardRefVals.begin(), E = ForwardRefVals.end(); I != E; ++I)
1657 if (!isa<BasicBlock>(I->second.first)) {
Owen Andersonb43eae72009-07-02 17:04:01 +00001658 I->second.first->replaceAllUsesWith(
Owen Anderson9e9a0d52009-07-30 23:03:37 +00001659 UndefValue::get(I->second.first->getType()));
Chris Lattnerdf986172009-01-02 07:01:27 +00001660 delete I->second.first;
1661 I->second.first = 0;
1662 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001663
Chris Lattnerdf986172009-01-02 07:01:27 +00001664 for (std::map<unsigned, std::pair<Value*, LocTy> >::iterator
1665 I = ForwardRefValIDs.begin(), E = ForwardRefValIDs.end(); I != E; ++I)
1666 if (!isa<BasicBlock>(I->second.first)) {
Owen Andersonb43eae72009-07-02 17:04:01 +00001667 I->second.first->replaceAllUsesWith(
Owen Anderson9e9a0d52009-07-30 23:03:37 +00001668 UndefValue::get(I->second.first->getType()));
Chris Lattnerdf986172009-01-02 07:01:27 +00001669 delete I->second.first;
1670 I->second.first = 0;
1671 }
1672}
1673
Chris Lattner09d9ef42009-10-28 03:39:23 +00001674bool LLParser::PerFunctionState::FinishFunction() {
1675 // Check to see if someone took the address of labels in this block.
1676 if (!P.ForwardRefBlockAddresses.empty()) {
1677 ValID FunctionID;
1678 if (!F.getName().empty()) {
1679 FunctionID.Kind = ValID::t_GlobalName;
1680 FunctionID.StrVal = F.getName();
1681 } else {
1682 FunctionID.Kind = ValID::t_GlobalID;
1683 FunctionID.UIntVal = FunctionNumber;
1684 }
1685
1686 std::map<ValID, std::vector<std::pair<ValID, GlobalValue*> > >::iterator
1687 FRBAI = P.ForwardRefBlockAddresses.find(FunctionID);
1688 if (FRBAI != P.ForwardRefBlockAddresses.end()) {
1689 // Resolve all these references.
1690 if (P.ResolveForwardRefBlockAddresses(&F, FRBAI->second, this))
1691 return true;
1692
1693 P.ForwardRefBlockAddresses.erase(FRBAI);
1694 }
1695 }
1696
Chris Lattnerdf986172009-01-02 07:01:27 +00001697 if (!ForwardRefVals.empty())
1698 return P.Error(ForwardRefVals.begin()->second.second,
1699 "use of undefined value '%" + ForwardRefVals.begin()->first +
1700 "'");
1701 if (!ForwardRefValIDs.empty())
1702 return P.Error(ForwardRefValIDs.begin()->second.second,
1703 "use of undefined value '%" +
1704 utostr(ForwardRefValIDs.begin()->first) + "'");
1705 return false;
1706}
1707
1708
1709/// GetVal - Get a value with the specified name or ID, creating a
1710/// forward reference record if needed. This can return null if the value
1711/// exists but does not have the right type.
1712Value *LLParser::PerFunctionState::GetVal(const std::string &Name,
1713 const Type *Ty, LocTy Loc) {
1714 // Look this name up in the normal function symbol table.
1715 Value *Val = F.getValueSymbolTable().lookup(Name);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001716
Chris Lattnerdf986172009-01-02 07:01:27 +00001717 // If this is a forward reference for the value, see if we already created a
1718 // forward ref record.
1719 if (Val == 0) {
1720 std::map<std::string, std::pair<Value*, LocTy> >::iterator
1721 I = ForwardRefVals.find(Name);
1722 if (I != ForwardRefVals.end())
1723 Val = I->second.first;
1724 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001725
Chris Lattnerdf986172009-01-02 07:01:27 +00001726 // If we have the value in the symbol table or fwd-ref table, return it.
1727 if (Val) {
1728 if (Val->getType() == Ty) return Val;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001729 if (Ty->isLabelTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00001730 P.Error(Loc, "'%" + Name + "' is not a basic block");
1731 else
1732 P.Error(Loc, "'%" + Name + "' defined with type '" +
1733 Val->getType()->getDescription() + "'");
1734 return 0;
1735 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001736
Chris Lattnerdf986172009-01-02 07:01:27 +00001737 // Don't make placeholders with invalid type.
Owen Anderson1d0be152009-08-13 21:58:54 +00001738 if (!Ty->isFirstClassType() && !isa<OpaqueType>(Ty) &&
1739 Ty != Type::getLabelTy(F.getContext())) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001740 P.Error(Loc, "invalid use of a non-first-class type");
1741 return 0;
1742 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001743
Chris Lattnerdf986172009-01-02 07:01:27 +00001744 // Otherwise, create a new forward reference for this value and remember it.
1745 Value *FwdVal;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001746 if (Ty->isLabelTy())
Owen Anderson1d0be152009-08-13 21:58:54 +00001747 FwdVal = BasicBlock::Create(F.getContext(), Name, &F);
Chris Lattnerdf986172009-01-02 07:01:27 +00001748 else
1749 FwdVal = new Argument(Ty, Name);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001750
Chris Lattnerdf986172009-01-02 07:01:27 +00001751 ForwardRefVals[Name] = std::make_pair(FwdVal, Loc);
1752 return FwdVal;
1753}
1754
1755Value *LLParser::PerFunctionState::GetVal(unsigned ID, const Type *Ty,
1756 LocTy Loc) {
1757 // Look this name up in the normal function symbol table.
1758 Value *Val = ID < NumberedVals.size() ? NumberedVals[ID] : 0;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001759
Chris Lattnerdf986172009-01-02 07:01:27 +00001760 // If this is a forward reference for the value, see if we already created a
1761 // forward ref record.
1762 if (Val == 0) {
1763 std::map<unsigned, std::pair<Value*, LocTy> >::iterator
1764 I = ForwardRefValIDs.find(ID);
1765 if (I != ForwardRefValIDs.end())
1766 Val = I->second.first;
1767 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001768
Chris Lattnerdf986172009-01-02 07:01:27 +00001769 // If we have the value in the symbol table or fwd-ref table, return it.
1770 if (Val) {
1771 if (Val->getType() == Ty) return Val;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001772 if (Ty->isLabelTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00001773 P.Error(Loc, "'%" + utostr(ID) + "' is not a basic block");
1774 else
1775 P.Error(Loc, "'%" + utostr(ID) + "' defined with type '" +
1776 Val->getType()->getDescription() + "'");
1777 return 0;
1778 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001779
Owen Anderson1d0be152009-08-13 21:58:54 +00001780 if (!Ty->isFirstClassType() && !isa<OpaqueType>(Ty) &&
1781 Ty != Type::getLabelTy(F.getContext())) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001782 P.Error(Loc, "invalid use of a non-first-class type");
1783 return 0;
1784 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001785
Chris Lattnerdf986172009-01-02 07:01:27 +00001786 // Otherwise, create a new forward reference for this value and remember it.
1787 Value *FwdVal;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001788 if (Ty->isLabelTy())
Owen Anderson1d0be152009-08-13 21:58:54 +00001789 FwdVal = BasicBlock::Create(F.getContext(), "", &F);
Chris Lattnerdf986172009-01-02 07:01:27 +00001790 else
1791 FwdVal = new Argument(Ty);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001792
Chris Lattnerdf986172009-01-02 07:01:27 +00001793 ForwardRefValIDs[ID] = std::make_pair(FwdVal, Loc);
1794 return FwdVal;
1795}
1796
1797/// SetInstName - After an instruction is parsed and inserted into its
1798/// basic block, this installs its name.
1799bool LLParser::PerFunctionState::SetInstName(int NameID,
1800 const std::string &NameStr,
1801 LocTy NameLoc, Instruction *Inst) {
1802 // If this instruction has void type, it cannot have a name or ID specified.
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001803 if (Inst->getType()->isVoidTy()) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001804 if (NameID != -1 || !NameStr.empty())
1805 return P.Error(NameLoc, "instructions returning void cannot have a name");
1806 return false;
1807 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001808
Chris Lattnerdf986172009-01-02 07:01:27 +00001809 // If this was a numbered instruction, verify that the instruction is the
1810 // expected value and resolve any forward references.
1811 if (NameStr.empty()) {
1812 // If neither a name nor an ID was specified, just use the next ID.
1813 if (NameID == -1)
1814 NameID = NumberedVals.size();
Daniel Dunbara279bc32009-09-20 02:20:51 +00001815
Chris Lattnerdf986172009-01-02 07:01:27 +00001816 if (unsigned(NameID) != NumberedVals.size())
1817 return P.Error(NameLoc, "instruction expected to be numbered '%" +
1818 utostr(NumberedVals.size()) + "'");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001819
Chris Lattnerdf986172009-01-02 07:01:27 +00001820 std::map<unsigned, std::pair<Value*, LocTy> >::iterator FI =
1821 ForwardRefValIDs.find(NameID);
1822 if (FI != ForwardRefValIDs.end()) {
1823 if (FI->second.first->getType() != Inst->getType())
Daniel Dunbara279bc32009-09-20 02:20:51 +00001824 return P.Error(NameLoc, "instruction forward referenced with type '" +
Chris Lattnerdf986172009-01-02 07:01:27 +00001825 FI->second.first->getType()->getDescription() + "'");
1826 FI->second.first->replaceAllUsesWith(Inst);
Nuno Lopes2b4f28e2009-09-02 15:02:57 +00001827 delete FI->second.first;
Chris Lattnerdf986172009-01-02 07:01:27 +00001828 ForwardRefValIDs.erase(FI);
1829 }
1830
1831 NumberedVals.push_back(Inst);
1832 return false;
1833 }
1834
1835 // Otherwise, the instruction had a name. Resolve forward refs and set it.
1836 std::map<std::string, std::pair<Value*, LocTy> >::iterator
1837 FI = ForwardRefVals.find(NameStr);
1838 if (FI != ForwardRefVals.end()) {
1839 if (FI->second.first->getType() != Inst->getType())
Daniel Dunbara279bc32009-09-20 02:20:51 +00001840 return P.Error(NameLoc, "instruction forward referenced with type '" +
Chris Lattnerdf986172009-01-02 07:01:27 +00001841 FI->second.first->getType()->getDescription() + "'");
1842 FI->second.first->replaceAllUsesWith(Inst);
Nuno Lopes531552a2009-09-02 14:22:03 +00001843 delete FI->second.first;
Chris Lattnerdf986172009-01-02 07:01:27 +00001844 ForwardRefVals.erase(FI);
1845 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001846
Chris Lattnerdf986172009-01-02 07:01:27 +00001847 // Set the name on the instruction.
1848 Inst->setName(NameStr);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001849
Chris Lattnerdf986172009-01-02 07:01:27 +00001850 if (Inst->getNameStr() != NameStr)
Daniel Dunbara279bc32009-09-20 02:20:51 +00001851 return P.Error(NameLoc, "multiple definition of local value named '" +
Chris Lattnerdf986172009-01-02 07:01:27 +00001852 NameStr + "'");
1853 return false;
1854}
1855
1856/// GetBB - Get a basic block with the specified name or ID, creating a
1857/// forward reference record if needed.
1858BasicBlock *LLParser::PerFunctionState::GetBB(const std::string &Name,
1859 LocTy Loc) {
Owen Anderson1d0be152009-08-13 21:58:54 +00001860 return cast_or_null<BasicBlock>(GetVal(Name,
1861 Type::getLabelTy(F.getContext()), Loc));
Chris Lattnerdf986172009-01-02 07:01:27 +00001862}
1863
1864BasicBlock *LLParser::PerFunctionState::GetBB(unsigned ID, LocTy Loc) {
Owen Anderson1d0be152009-08-13 21:58:54 +00001865 return cast_or_null<BasicBlock>(GetVal(ID,
1866 Type::getLabelTy(F.getContext()), Loc));
Chris Lattnerdf986172009-01-02 07:01:27 +00001867}
1868
1869/// DefineBB - Define the specified basic block, which is either named or
1870/// unnamed. If there is an error, this returns null otherwise it returns
1871/// the block being defined.
1872BasicBlock *LLParser::PerFunctionState::DefineBB(const std::string &Name,
1873 LocTy Loc) {
1874 BasicBlock *BB;
1875 if (Name.empty())
1876 BB = GetBB(NumberedVals.size(), Loc);
1877 else
1878 BB = GetBB(Name, Loc);
1879 if (BB == 0) return 0; // Already diagnosed error.
Daniel Dunbara279bc32009-09-20 02:20:51 +00001880
Chris Lattnerdf986172009-01-02 07:01:27 +00001881 // Move the block to the end of the function. Forward ref'd blocks are
1882 // inserted wherever they happen to be referenced.
1883 F.getBasicBlockList().splice(F.end(), F.getBasicBlockList(), BB);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001884
Chris Lattnerdf986172009-01-02 07:01:27 +00001885 // Remove the block from forward ref sets.
1886 if (Name.empty()) {
1887 ForwardRefValIDs.erase(NumberedVals.size());
1888 NumberedVals.push_back(BB);
1889 } else {
1890 // BB forward references are already in the function symbol table.
1891 ForwardRefVals.erase(Name);
1892 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001893
Chris Lattnerdf986172009-01-02 07:01:27 +00001894 return BB;
1895}
1896
1897//===----------------------------------------------------------------------===//
1898// Constants.
1899//===----------------------------------------------------------------------===//
1900
1901/// ParseValID - Parse an abstract value that doesn't necessarily have a
1902/// type implied. For example, if we parse "4" we don't know what integer type
1903/// it has. The value will later be combined with its type and checked for
1904/// sanity.
1905bool LLParser::ParseValID(ValID &ID) {
1906 ID.Loc = Lex.getLoc();
1907 switch (Lex.getKind()) {
1908 default: return TokError("expected value token");
1909 case lltok::GlobalID: // @42
1910 ID.UIntVal = Lex.getUIntVal();
1911 ID.Kind = ValID::t_GlobalID;
1912 break;
1913 case lltok::GlobalVar: // @foo
1914 ID.StrVal = Lex.getStrVal();
1915 ID.Kind = ValID::t_GlobalName;
1916 break;
1917 case lltok::LocalVarID: // %42
1918 ID.UIntVal = Lex.getUIntVal();
1919 ID.Kind = ValID::t_LocalID;
1920 break;
1921 case lltok::LocalVar: // %foo
1922 case lltok::StringConstant: // "foo" - FIXME: REMOVE IN LLVM 3.0
1923 ID.StrVal = Lex.getStrVal();
1924 ID.Kind = ValID::t_LocalName;
1925 break;
Nick Lewycky21cc4462009-04-04 07:22:01 +00001926 case lltok::Metadata: { // !{...} MDNode, !"foo" MDString
Devang Patel104cf9e2009-07-23 01:07:34 +00001927 ID.Kind = ValID::t_Metadata;
Nick Lewycky21cc4462009-04-04 07:22:01 +00001928 Lex.Lex();
Chris Lattner442ffa12009-12-29 21:53:55 +00001929
1930 // FIXME: This doesn't belong here.
Chris Lattner3f5132a2009-12-29 22:40:21 +00001931 if (EatIfPresent(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, ... }
Chris Lattner442ffa12009-12-29 21:53:55 +00001943 // FIXME: Split MetadataVal into one for MDNode and one for MDString.
1944 if (!ParseMDNode((MDNode*&)ID.MetadataVal))
Devang Patel923078c2009-07-01 19:21:12 +00001945 return false;
Devang Patel256be962009-07-20 19:00:08 +00001946
Nick Lewycky21cc4462009-04-04 07:22:01 +00001947 // MDString:
1948 // ::= '!' STRINGCONSTANT
Chris Lattner442ffa12009-12-29 21:53:55 +00001949 if (ParseMDString((MDString*&)ID.MetadataVal)) return true;
Devang Patele54abc92009-07-22 17:43:22 +00001950 ID.Kind = ValID::t_Metadata;
Nick Lewycky21cc4462009-04-04 07:22:01 +00001951 return false;
1952 }
Chris Lattnerdf986172009-01-02 07:01:27 +00001953 case lltok::APSInt:
Daniel Dunbara279bc32009-09-20 02:20:51 +00001954 ID.APSIntVal = Lex.getAPSIntVal();
Chris Lattnerdf986172009-01-02 07:01:27 +00001955 ID.Kind = ValID::t_APSInt;
1956 break;
1957 case lltok::APFloat:
1958 ID.APFloatVal = Lex.getAPFloatVal();
1959 ID.Kind = ValID::t_APFloat;
1960 break;
1961 case lltok::kw_true:
Owen Anderson5defacc2009-07-31 17:39:07 +00001962 ID.ConstantVal = ConstantInt::getTrue(Context);
Chris Lattnerdf986172009-01-02 07:01:27 +00001963 ID.Kind = ValID::t_Constant;
1964 break;
1965 case lltok::kw_false:
Owen Anderson5defacc2009-07-31 17:39:07 +00001966 ID.ConstantVal = ConstantInt::getFalse(Context);
Chris Lattnerdf986172009-01-02 07:01:27 +00001967 ID.Kind = ValID::t_Constant;
1968 break;
1969 case lltok::kw_null: ID.Kind = ValID::t_Null; break;
1970 case lltok::kw_undef: ID.Kind = ValID::t_Undef; break;
1971 case lltok::kw_zeroinitializer: ID.Kind = ValID::t_Zero; break;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001972
Chris Lattnerdf986172009-01-02 07:01:27 +00001973 case lltok::lbrace: {
1974 // ValID ::= '{' ConstVector '}'
1975 Lex.Lex();
1976 SmallVector<Constant*, 16> Elts;
1977 if (ParseGlobalValueVector(Elts) ||
1978 ParseToken(lltok::rbrace, "expected end of struct constant"))
1979 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001980
Owen Andersond7f2a6c2009-08-05 23:16:16 +00001981 ID.ConstantVal = ConstantStruct::get(Context, Elts.data(),
1982 Elts.size(), false);
Chris Lattnerdf986172009-01-02 07:01:27 +00001983 ID.Kind = ValID::t_Constant;
1984 return false;
1985 }
1986 case lltok::less: {
1987 // ValID ::= '<' ConstVector '>' --> Vector.
1988 // ValID ::= '<' '{' ConstVector '}' '>' --> Packed Struct.
1989 Lex.Lex();
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001990 bool isPackedStruct = EatIfPresent(lltok::lbrace);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001991
Chris Lattnerdf986172009-01-02 07:01:27 +00001992 SmallVector<Constant*, 16> Elts;
1993 LocTy FirstEltLoc = Lex.getLoc();
1994 if (ParseGlobalValueVector(Elts) ||
1995 (isPackedStruct &&
1996 ParseToken(lltok::rbrace, "expected end of packed struct")) ||
1997 ParseToken(lltok::greater, "expected end of constant"))
1998 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001999
Chris Lattnerdf986172009-01-02 07:01:27 +00002000 if (isPackedStruct) {
Owen Andersonfba933c2009-07-01 23:57:11 +00002001 ID.ConstantVal =
Owen Andersond7f2a6c2009-08-05 23:16:16 +00002002 ConstantStruct::get(Context, Elts.data(), Elts.size(), true);
Chris Lattnerdf986172009-01-02 07:01:27 +00002003 ID.Kind = ValID::t_Constant;
2004 return false;
2005 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002006
Chris Lattnerdf986172009-01-02 07:01:27 +00002007 if (Elts.empty())
2008 return Error(ID.Loc, "constant vector must not be empty");
2009
2010 if (!Elts[0]->getType()->isInteger() &&
2011 !Elts[0]->getType()->isFloatingPoint())
2012 return Error(FirstEltLoc,
2013 "vector elements must have integer or floating point type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002014
Chris Lattnerdf986172009-01-02 07:01:27 +00002015 // Verify that all the vector elements have the same type.
2016 for (unsigned i = 1, e = Elts.size(); i != e; ++i)
2017 if (Elts[i]->getType() != Elts[0]->getType())
2018 return Error(FirstEltLoc,
2019 "vector element #" + utostr(i) +
2020 " is not of type '" + Elts[0]->getType()->getDescription());
Daniel Dunbara279bc32009-09-20 02:20:51 +00002021
Owen Andersonaf7ec972009-07-28 21:19:26 +00002022 ID.ConstantVal = ConstantVector::get(Elts.data(), Elts.size());
Chris Lattnerdf986172009-01-02 07:01:27 +00002023 ID.Kind = ValID::t_Constant;
2024 return false;
2025 }
2026 case lltok::lsquare: { // Array Constant
2027 Lex.Lex();
2028 SmallVector<Constant*, 16> Elts;
2029 LocTy FirstEltLoc = Lex.getLoc();
2030 if (ParseGlobalValueVector(Elts) ||
2031 ParseToken(lltok::rsquare, "expected end of array constant"))
2032 return true;
2033
2034 // Handle empty element.
2035 if (Elts.empty()) {
2036 // Use undef instead of an array because it's inconvenient to determine
2037 // the element type at this point, there being no elements to examine.
Chris Lattner081b5052009-01-05 07:52:51 +00002038 ID.Kind = ValID::t_EmptyArray;
Chris Lattnerdf986172009-01-02 07:01:27 +00002039 return false;
2040 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002041
Chris Lattnerdf986172009-01-02 07:01:27 +00002042 if (!Elts[0]->getType()->isFirstClassType())
Daniel Dunbara279bc32009-09-20 02:20:51 +00002043 return Error(FirstEltLoc, "invalid array element type: " +
Chris Lattnerdf986172009-01-02 07:01:27 +00002044 Elts[0]->getType()->getDescription());
Daniel Dunbara279bc32009-09-20 02:20:51 +00002045
Owen Andersondebcb012009-07-29 22:17:13 +00002046 ArrayType *ATy = ArrayType::get(Elts[0]->getType(), Elts.size());
Daniel Dunbara279bc32009-09-20 02:20:51 +00002047
Chris Lattnerdf986172009-01-02 07:01:27 +00002048 // Verify all elements are correct type!
Chris Lattner6d6b3cc2009-01-02 08:49:06 +00002049 for (unsigned i = 0, e = Elts.size(); i != e; ++i) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002050 if (Elts[i]->getType() != Elts[0]->getType())
2051 return Error(FirstEltLoc,
2052 "array element #" + utostr(i) +
2053 " is not of type '" +Elts[0]->getType()->getDescription());
2054 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002055
Owen Anderson1fd70962009-07-28 18:32:17 +00002056 ID.ConstantVal = ConstantArray::get(ATy, Elts.data(), Elts.size());
Chris Lattnerdf986172009-01-02 07:01:27 +00002057 ID.Kind = ValID::t_Constant;
2058 return false;
2059 }
2060 case lltok::kw_c: // c "foo"
2061 Lex.Lex();
Owen Anderson1d0be152009-08-13 21:58:54 +00002062 ID.ConstantVal = ConstantArray::get(Context, Lex.getStrVal(), false);
Chris Lattnerdf986172009-01-02 07:01:27 +00002063 if (ParseToken(lltok::StringConstant, "expected string")) return true;
2064 ID.Kind = ValID::t_Constant;
2065 return false;
2066
2067 case lltok::kw_asm: {
Dale Johannesen8ba2d5b2009-10-21 23:28:00 +00002068 // ValID ::= 'asm' SideEffect? AlignStack? STRINGCONSTANT ',' STRINGCONSTANT
2069 bool HasSideEffect, AlignStack;
Chris Lattnerdf986172009-01-02 07:01:27 +00002070 Lex.Lex();
2071 if (ParseOptionalToken(lltok::kw_sideeffect, HasSideEffect) ||
Dale Johannesen8ba2d5b2009-10-21 23:28:00 +00002072 ParseOptionalToken(lltok::kw_alignstack, AlignStack) ||
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002073 ParseStringConstant(ID.StrVal) ||
2074 ParseToken(lltok::comma, "expected comma in inline asm expression") ||
Chris Lattnerdf986172009-01-02 07:01:27 +00002075 ParseToken(lltok::StringConstant, "expected constraint string"))
2076 return true;
2077 ID.StrVal2 = Lex.getStrVal();
Daniel Dunbarf0bb41c2009-11-07 23:51:55 +00002078 ID.UIntVal = unsigned(HasSideEffect) | (unsigned(AlignStack)<<1);
Chris Lattnerdf986172009-01-02 07:01:27 +00002079 ID.Kind = ValID::t_InlineAsm;
2080 return false;
2081 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002082
Chris Lattner09d9ef42009-10-28 03:39:23 +00002083 case lltok::kw_blockaddress: {
2084 // ValID ::= 'blockaddress' '(' @foo ',' %bar ')'
2085 Lex.Lex();
2086
2087 ValID Fn, Label;
2088 LocTy FnLoc, LabelLoc;
2089
2090 if (ParseToken(lltok::lparen, "expected '(' in block address expression") ||
2091 ParseValID(Fn) ||
2092 ParseToken(lltok::comma, "expected comma in block address expression")||
2093 ParseValID(Label) ||
2094 ParseToken(lltok::rparen, "expected ')' in block address expression"))
2095 return true;
Chris Lattnercdfc9402009-11-01 01:27:45 +00002096
Chris Lattner09d9ef42009-10-28 03:39:23 +00002097 if (Fn.Kind != ValID::t_GlobalID && Fn.Kind != ValID::t_GlobalName)
2098 return Error(Fn.Loc, "expected function name in blockaddress");
Chris Lattnercdfc9402009-11-01 01:27:45 +00002099 if (Label.Kind != ValID::t_LocalID && Label.Kind != ValID::t_LocalName)
Chris Lattner09d9ef42009-10-28 03:39:23 +00002100 return Error(Label.Loc, "expected basic block name in blockaddress");
2101
2102 // Make a global variable as a placeholder for this reference.
2103 GlobalVariable *FwdRef = new GlobalVariable(*M, Type::getInt8Ty(Context),
2104 false, GlobalValue::InternalLinkage,
2105 0, "");
2106 ForwardRefBlockAddresses[Fn].push_back(std::make_pair(Label, FwdRef));
2107 ID.ConstantVal = FwdRef;
2108 ID.Kind = ValID::t_Constant;
2109 return false;
2110 }
2111
Chris Lattnerdf986172009-01-02 07:01:27 +00002112 case lltok::kw_trunc:
2113 case lltok::kw_zext:
2114 case lltok::kw_sext:
2115 case lltok::kw_fptrunc:
2116 case lltok::kw_fpext:
2117 case lltok::kw_bitcast:
2118 case lltok::kw_uitofp:
2119 case lltok::kw_sitofp:
2120 case lltok::kw_fptoui:
Daniel Dunbara279bc32009-09-20 02:20:51 +00002121 case lltok::kw_fptosi:
Chris Lattnerdf986172009-01-02 07:01:27 +00002122 case lltok::kw_inttoptr:
Daniel Dunbara279bc32009-09-20 02:20:51 +00002123 case lltok::kw_ptrtoint: {
Chris Lattnerdf986172009-01-02 07:01:27 +00002124 unsigned Opc = Lex.getUIntVal();
Owen Anderson1d0be152009-08-13 21:58:54 +00002125 PATypeHolder DestTy(Type::getVoidTy(Context));
Chris Lattnerdf986172009-01-02 07:01:27 +00002126 Constant *SrcVal;
2127 Lex.Lex();
2128 if (ParseToken(lltok::lparen, "expected '(' after constantexpr cast") ||
2129 ParseGlobalTypeAndValue(SrcVal) ||
Dan Gohman24b108b2009-06-15 21:52:11 +00002130 ParseToken(lltok::kw_to, "expected 'to' in constantexpr cast") ||
Chris Lattnerdf986172009-01-02 07:01:27 +00002131 ParseType(DestTy) ||
2132 ParseToken(lltok::rparen, "expected ')' at end of constantexpr cast"))
2133 return true;
2134 if (!CastInst::castIsValid((Instruction::CastOps)Opc, SrcVal, DestTy))
2135 return Error(ID.Loc, "invalid cast opcode for cast from '" +
2136 SrcVal->getType()->getDescription() + "' to '" +
2137 DestTy->getDescription() + "'");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002138 ID.ConstantVal = ConstantExpr::getCast((Instruction::CastOps)Opc,
Owen Andersonfba933c2009-07-01 23:57:11 +00002139 SrcVal, DestTy);
Chris Lattnerdf986172009-01-02 07:01:27 +00002140 ID.Kind = ValID::t_Constant;
2141 return false;
2142 }
2143 case lltok::kw_extractvalue: {
2144 Lex.Lex();
2145 Constant *Val;
2146 SmallVector<unsigned, 4> Indices;
2147 if (ParseToken(lltok::lparen, "expected '(' in extractvalue constantexpr")||
2148 ParseGlobalTypeAndValue(Val) ||
2149 ParseIndexList(Indices) ||
2150 ParseToken(lltok::rparen, "expected ')' in extractvalue constantexpr"))
2151 return true;
Devang Patele8bc45a2009-11-03 19:06:07 +00002152 if (Lex.getKind() == lltok::NamedOrCustomMD)
2153 if (ParseOptionalCustomMetadata()) return true;
2154
Chris Lattnerdf986172009-01-02 07:01:27 +00002155 if (!isa<StructType>(Val->getType()) && !isa<ArrayType>(Val->getType()))
2156 return Error(ID.Loc, "extractvalue operand must be array or struct");
2157 if (!ExtractValueInst::getIndexedType(Val->getType(), Indices.begin(),
2158 Indices.end()))
2159 return Error(ID.Loc, "invalid indices for extractvalue");
Jay Foade3e51c02009-05-21 09:52:38 +00002160 ID.ConstantVal =
Owen Andersonbaf3c402009-07-29 18:55:55 +00002161 ConstantExpr::getExtractValue(Val, Indices.data(), Indices.size());
Chris Lattnerdf986172009-01-02 07:01:27 +00002162 ID.Kind = ValID::t_Constant;
2163 return false;
2164 }
2165 case lltok::kw_insertvalue: {
2166 Lex.Lex();
2167 Constant *Val0, *Val1;
2168 SmallVector<unsigned, 4> Indices;
2169 if (ParseToken(lltok::lparen, "expected '(' in insertvalue constantexpr")||
2170 ParseGlobalTypeAndValue(Val0) ||
2171 ParseToken(lltok::comma, "expected comma in insertvalue constantexpr")||
2172 ParseGlobalTypeAndValue(Val1) ||
2173 ParseIndexList(Indices) ||
2174 ParseToken(lltok::rparen, "expected ')' in insertvalue constantexpr"))
2175 return true;
Devang Patele8bc45a2009-11-03 19:06:07 +00002176 if (Lex.getKind() == lltok::NamedOrCustomMD)
2177 if (ParseOptionalCustomMetadata()) return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00002178 if (!isa<StructType>(Val0->getType()) && !isa<ArrayType>(Val0->getType()))
2179 return Error(ID.Loc, "extractvalue operand must be array or struct");
2180 if (!ExtractValueInst::getIndexedType(Val0->getType(), Indices.begin(),
2181 Indices.end()))
2182 return Error(ID.Loc, "invalid indices for insertvalue");
Owen Andersonbaf3c402009-07-29 18:55:55 +00002183 ID.ConstantVal = ConstantExpr::getInsertValue(Val0, Val1,
Owen Andersonfba933c2009-07-01 23:57:11 +00002184 Indices.data(), Indices.size());
Chris Lattnerdf986172009-01-02 07:01:27 +00002185 ID.Kind = ValID::t_Constant;
2186 return false;
2187 }
2188 case lltok::kw_icmp:
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00002189 case lltok::kw_fcmp: {
Chris Lattnerdf986172009-01-02 07:01:27 +00002190 unsigned PredVal, Opc = Lex.getUIntVal();
2191 Constant *Val0, *Val1;
2192 Lex.Lex();
2193 if (ParseCmpPredicate(PredVal, Opc) ||
2194 ParseToken(lltok::lparen, "expected '(' in compare constantexpr") ||
2195 ParseGlobalTypeAndValue(Val0) ||
2196 ParseToken(lltok::comma, "expected comma in compare constantexpr") ||
2197 ParseGlobalTypeAndValue(Val1) ||
2198 ParseToken(lltok::rparen, "expected ')' in compare constantexpr"))
2199 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002200
Chris Lattnerdf986172009-01-02 07:01:27 +00002201 if (Val0->getType() != Val1->getType())
2202 return Error(ID.Loc, "compare operands must have the same type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002203
Chris Lattnerdf986172009-01-02 07:01:27 +00002204 CmpInst::Predicate Pred = (CmpInst::Predicate)PredVal;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002205
Chris Lattnerdf986172009-01-02 07:01:27 +00002206 if (Opc == Instruction::FCmp) {
2207 if (!Val0->getType()->isFPOrFPVector())
2208 return Error(ID.Loc, "fcmp requires floating point operands");
Owen Andersonbaf3c402009-07-29 18:55:55 +00002209 ID.ConstantVal = ConstantExpr::getFCmp(Pred, Val0, Val1);
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00002210 } else {
2211 assert(Opc == Instruction::ICmp && "Unexpected opcode for CmpInst!");
Chris Lattnerdf986172009-01-02 07:01:27 +00002212 if (!Val0->getType()->isIntOrIntVector() &&
2213 !isa<PointerType>(Val0->getType()))
2214 return Error(ID.Loc, "icmp requires pointer or integer operands");
Owen Andersonbaf3c402009-07-29 18:55:55 +00002215 ID.ConstantVal = ConstantExpr::getICmp(Pred, Val0, Val1);
Chris Lattnerdf986172009-01-02 07:01:27 +00002216 }
2217 ID.Kind = ValID::t_Constant;
2218 return false;
2219 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002220
Chris Lattnerdf986172009-01-02 07:01:27 +00002221 // Binary Operators.
2222 case lltok::kw_add:
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002223 case lltok::kw_fadd:
Chris Lattnerdf986172009-01-02 07:01:27 +00002224 case lltok::kw_sub:
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002225 case lltok::kw_fsub:
Chris Lattnerdf986172009-01-02 07:01:27 +00002226 case lltok::kw_mul:
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002227 case lltok::kw_fmul:
Chris Lattnerdf986172009-01-02 07:01:27 +00002228 case lltok::kw_udiv:
2229 case lltok::kw_sdiv:
2230 case lltok::kw_fdiv:
2231 case lltok::kw_urem:
2232 case lltok::kw_srem:
2233 case lltok::kw_frem: {
Dan Gohman59858cf2009-07-27 16:11:46 +00002234 bool NUW = false;
2235 bool NSW = false;
2236 bool Exact = false;
Chris Lattnerdf986172009-01-02 07:01:27 +00002237 unsigned Opc = Lex.getUIntVal();
2238 Constant *Val0, *Val1;
2239 Lex.Lex();
Dan Gohman59858cf2009-07-27 16:11:46 +00002240 LocTy ModifierLoc = Lex.getLoc();
2241 if (Opc == Instruction::Add ||
2242 Opc == Instruction::Sub ||
2243 Opc == Instruction::Mul) {
2244 if (EatIfPresent(lltok::kw_nuw))
2245 NUW = true;
2246 if (EatIfPresent(lltok::kw_nsw)) {
2247 NSW = true;
2248 if (EatIfPresent(lltok::kw_nuw))
2249 NUW = true;
2250 }
2251 } else if (Opc == Instruction::SDiv) {
2252 if (EatIfPresent(lltok::kw_exact))
2253 Exact = true;
2254 }
Chris Lattnerdf986172009-01-02 07:01:27 +00002255 if (ParseToken(lltok::lparen, "expected '(' in binary constantexpr") ||
2256 ParseGlobalTypeAndValue(Val0) ||
2257 ParseToken(lltok::comma, "expected comma in binary constantexpr") ||
2258 ParseGlobalTypeAndValue(Val1) ||
2259 ParseToken(lltok::rparen, "expected ')' in binary constantexpr"))
2260 return true;
2261 if (Val0->getType() != Val1->getType())
2262 return Error(ID.Loc, "operands of constexpr must have same type");
Dan Gohman59858cf2009-07-27 16:11:46 +00002263 if (!Val0->getType()->isIntOrIntVector()) {
2264 if (NUW)
2265 return Error(ModifierLoc, "nuw only applies to integer operations");
2266 if (NSW)
2267 return Error(ModifierLoc, "nsw only applies to integer operations");
2268 }
2269 // API compatibility: Accept either integer or floating-point types with
2270 // add, sub, and mul.
Chris Lattnerdf986172009-01-02 07:01:27 +00002271 if (!Val0->getType()->isIntOrIntVector() &&
2272 !Val0->getType()->isFPOrFPVector())
2273 return Error(ID.Loc,"constexpr requires integer, fp, or vector operands");
Dan Gohmanf8dbee72009-09-07 23:54:19 +00002274 unsigned Flags = 0;
2275 if (NUW) Flags |= OverflowingBinaryOperator::NoUnsignedWrap;
2276 if (NSW) Flags |= OverflowingBinaryOperator::NoSignedWrap;
2277 if (Exact) Flags |= SDivOperator::IsExact;
2278 Constant *C = ConstantExpr::get(Opc, Val0, Val1, Flags);
Dan Gohman59858cf2009-07-27 16:11:46 +00002279 ID.ConstantVal = C;
Chris Lattnerdf986172009-01-02 07:01:27 +00002280 ID.Kind = ValID::t_Constant;
2281 return false;
2282 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002283
Chris Lattnerdf986172009-01-02 07:01:27 +00002284 // Logical Operations
2285 case lltok::kw_shl:
2286 case lltok::kw_lshr:
2287 case lltok::kw_ashr:
2288 case lltok::kw_and:
2289 case lltok::kw_or:
2290 case lltok::kw_xor: {
2291 unsigned Opc = Lex.getUIntVal();
2292 Constant *Val0, *Val1;
2293 Lex.Lex();
2294 if (ParseToken(lltok::lparen, "expected '(' in logical constantexpr") ||
2295 ParseGlobalTypeAndValue(Val0) ||
2296 ParseToken(lltok::comma, "expected comma in logical constantexpr") ||
2297 ParseGlobalTypeAndValue(Val1) ||
2298 ParseToken(lltok::rparen, "expected ')' in logical constantexpr"))
2299 return true;
2300 if (Val0->getType() != Val1->getType())
2301 return Error(ID.Loc, "operands of constexpr must have same type");
2302 if (!Val0->getType()->isIntOrIntVector())
2303 return Error(ID.Loc,
2304 "constexpr requires integer or integer vector operands");
Owen Andersonbaf3c402009-07-29 18:55:55 +00002305 ID.ConstantVal = ConstantExpr::get(Opc, Val0, Val1);
Chris Lattnerdf986172009-01-02 07:01:27 +00002306 ID.Kind = ValID::t_Constant;
2307 return false;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002308 }
2309
Chris Lattnerdf986172009-01-02 07:01:27 +00002310 case lltok::kw_getelementptr:
2311 case lltok::kw_shufflevector:
2312 case lltok::kw_insertelement:
2313 case lltok::kw_extractelement:
2314 case lltok::kw_select: {
2315 unsigned Opc = Lex.getUIntVal();
2316 SmallVector<Constant*, 16> Elts;
Dan Gohmandd8004d2009-07-27 21:53:46 +00002317 bool InBounds = false;
Chris Lattnerdf986172009-01-02 07:01:27 +00002318 Lex.Lex();
Dan Gohmandd8004d2009-07-27 21:53:46 +00002319 if (Opc == Instruction::GetElementPtr)
Dan Gohmandcb40a32009-07-29 15:58:36 +00002320 InBounds = EatIfPresent(lltok::kw_inbounds);
Chris Lattnerdf986172009-01-02 07:01:27 +00002321 if (ParseToken(lltok::lparen, "expected '(' in constantexpr") ||
2322 ParseGlobalValueVector(Elts) ||
2323 ParseToken(lltok::rparen, "expected ')' in constantexpr"))
2324 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002325
Chris Lattnerdf986172009-01-02 07:01:27 +00002326 if (Opc == Instruction::GetElementPtr) {
2327 if (Elts.size() == 0 || !isa<PointerType>(Elts[0]->getType()))
2328 return Error(ID.Loc, "getelementptr requires pointer operand");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002329
Chris Lattnerdf986172009-01-02 07:01:27 +00002330 if (!GetElementPtrInst::getIndexedType(Elts[0]->getType(),
Eli Friedman4e9bac32009-07-24 21:56:17 +00002331 (Value**)(Elts.data() + 1),
2332 Elts.size() - 1))
Chris Lattnerdf986172009-01-02 07:01:27 +00002333 return Error(ID.Loc, "invalid indices for getelementptr");
Dan Gohmanf8dbee72009-09-07 23:54:19 +00002334 ID.ConstantVal = InBounds ?
2335 ConstantExpr::getInBoundsGetElementPtr(Elts[0],
2336 Elts.data() + 1,
2337 Elts.size() - 1) :
2338 ConstantExpr::getGetElementPtr(Elts[0],
2339 Elts.data() + 1, Elts.size() - 1);
Chris Lattnerdf986172009-01-02 07:01:27 +00002340 } else if (Opc == Instruction::Select) {
2341 if (Elts.size() != 3)
2342 return Error(ID.Loc, "expected three operands to select");
2343 if (const char *Reason = SelectInst::areInvalidOperands(Elts[0], Elts[1],
2344 Elts[2]))
2345 return Error(ID.Loc, Reason);
Owen Andersonbaf3c402009-07-29 18:55:55 +00002346 ID.ConstantVal = ConstantExpr::getSelect(Elts[0], Elts[1], Elts[2]);
Chris Lattnerdf986172009-01-02 07:01:27 +00002347 } else if (Opc == Instruction::ShuffleVector) {
2348 if (Elts.size() != 3)
2349 return Error(ID.Loc, "expected three operands to shufflevector");
2350 if (!ShuffleVectorInst::isValidOperands(Elts[0], Elts[1], Elts[2]))
2351 return Error(ID.Loc, "invalid operands to shufflevector");
Owen Andersonfba933c2009-07-01 23:57:11 +00002352 ID.ConstantVal =
Owen Andersonbaf3c402009-07-29 18:55:55 +00002353 ConstantExpr::getShuffleVector(Elts[0], Elts[1],Elts[2]);
Chris Lattnerdf986172009-01-02 07:01:27 +00002354 } else if (Opc == Instruction::ExtractElement) {
2355 if (Elts.size() != 2)
2356 return Error(ID.Loc, "expected two operands to extractelement");
2357 if (!ExtractElementInst::isValidOperands(Elts[0], Elts[1]))
2358 return Error(ID.Loc, "invalid extractelement operands");
Owen Andersonbaf3c402009-07-29 18:55:55 +00002359 ID.ConstantVal = ConstantExpr::getExtractElement(Elts[0], Elts[1]);
Chris Lattnerdf986172009-01-02 07:01:27 +00002360 } else {
2361 assert(Opc == Instruction::InsertElement && "Unknown opcode");
2362 if (Elts.size() != 3)
2363 return Error(ID.Loc, "expected three operands to insertelement");
2364 if (!InsertElementInst::isValidOperands(Elts[0], Elts[1], Elts[2]))
2365 return Error(ID.Loc, "invalid insertelement operands");
Owen Andersonfba933c2009-07-01 23:57:11 +00002366 ID.ConstantVal =
Owen Andersonbaf3c402009-07-29 18:55:55 +00002367 ConstantExpr::getInsertElement(Elts[0], Elts[1],Elts[2]);
Chris Lattnerdf986172009-01-02 07:01:27 +00002368 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002369
Chris Lattnerdf986172009-01-02 07:01:27 +00002370 ID.Kind = ValID::t_Constant;
2371 return false;
2372 }
2373 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002374
Chris Lattnerdf986172009-01-02 07:01:27 +00002375 Lex.Lex();
2376 return false;
2377}
2378
2379/// ParseGlobalValue - Parse a global value with the specified type.
2380bool LLParser::ParseGlobalValue(const Type *Ty, Constant *&V) {
2381 V = 0;
2382 ValID ID;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002383 return ParseValID(ID) ||
2384 ConvertGlobalValIDToValue(Ty, ID, V);
Chris Lattnerdf986172009-01-02 07:01:27 +00002385}
2386
2387/// ConvertGlobalValIDToValue - Apply a type to a ValID to get a fully resolved
2388/// constant.
2389bool LLParser::ConvertGlobalValIDToValue(const Type *Ty, ValID &ID,
2390 Constant *&V) {
2391 if (isa<FunctionType>(Ty))
2392 return Error(ID.Loc, "functions are not values, refer to them as pointers");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002393
Chris Lattnerdf986172009-01-02 07:01:27 +00002394 switch (ID.Kind) {
Daniel Dunbara279bc32009-09-20 02:20:51 +00002395 default: llvm_unreachable("Unknown ValID!");
Devang Patele54abc92009-07-22 17:43:22 +00002396 case ValID::t_Metadata:
2397 return Error(ID.Loc, "invalid use of metadata");
Chris Lattnerdf986172009-01-02 07:01:27 +00002398 case ValID::t_LocalID:
2399 case ValID::t_LocalName:
2400 return Error(ID.Loc, "invalid use of function-local name");
2401 case ValID::t_InlineAsm:
2402 return Error(ID.Loc, "inline asm can only be an operand of call/invoke");
2403 case ValID::t_GlobalName:
2404 V = GetGlobalVal(ID.StrVal, Ty, ID.Loc);
2405 return V == 0;
2406 case ValID::t_GlobalID:
2407 V = GetGlobalVal(ID.UIntVal, Ty, ID.Loc);
2408 return V == 0;
2409 case ValID::t_APSInt:
2410 if (!isa<IntegerType>(Ty))
2411 return Error(ID.Loc, "integer constant must have integer type");
2412 ID.APSIntVal.extOrTrunc(Ty->getPrimitiveSizeInBits());
Owen Andersoneed707b2009-07-24 23:12:02 +00002413 V = ConstantInt::get(Context, ID.APSIntVal);
Chris Lattnerdf986172009-01-02 07:01:27 +00002414 return false;
2415 case ValID::t_APFloat:
2416 if (!Ty->isFloatingPoint() ||
2417 !ConstantFP::isValueValidForType(Ty, ID.APFloatVal))
2418 return Error(ID.Loc, "floating point constant invalid for type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002419
Chris Lattnerdf986172009-01-02 07:01:27 +00002420 // The lexer has no type info, so builds all float and double FP constants
2421 // as double. Fix this here. Long double does not need this.
2422 if (&ID.APFloatVal.getSemantics() == &APFloat::IEEEdouble &&
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00002423 Ty->isFloatTy()) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002424 bool Ignored;
2425 ID.APFloatVal.convert(APFloat::IEEEsingle, APFloat::rmNearestTiesToEven,
2426 &Ignored);
2427 }
Owen Anderson6f83c9c2009-07-27 20:59:43 +00002428 V = ConstantFP::get(Context, ID.APFloatVal);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002429
Chris Lattner959873d2009-01-05 18:24:23 +00002430 if (V->getType() != Ty)
2431 return Error(ID.Loc, "floating point constant does not have type '" +
2432 Ty->getDescription() + "'");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002433
Chris Lattnerdf986172009-01-02 07:01:27 +00002434 return false;
2435 case ValID::t_Null:
2436 if (!isa<PointerType>(Ty))
2437 return Error(ID.Loc, "null must be a pointer type");
Owen Anderson9e9a0d52009-07-30 23:03:37 +00002438 V = ConstantPointerNull::get(cast<PointerType>(Ty));
Chris Lattnerdf986172009-01-02 07:01:27 +00002439 return false;
2440 case ValID::t_Undef:
Chris Lattnere67c1aa2009-01-05 08:13:38 +00002441 // FIXME: LabelTy should not be a first-class type.
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00002442 if ((!Ty->isFirstClassType() || Ty->isLabelTy()) &&
Chris Lattner0b616352009-01-05 18:12:21 +00002443 !isa<OpaqueType>(Ty))
Chris Lattnere67c1aa2009-01-05 08:13:38 +00002444 return Error(ID.Loc, "invalid type for undef constant");
Owen Anderson9e9a0d52009-07-30 23:03:37 +00002445 V = UndefValue::get(Ty);
Chris Lattnerdf986172009-01-02 07:01:27 +00002446 return false;
Chris Lattner081b5052009-01-05 07:52:51 +00002447 case ValID::t_EmptyArray:
2448 if (!isa<ArrayType>(Ty) || cast<ArrayType>(Ty)->getNumElements() != 0)
2449 return Error(ID.Loc, "invalid empty array initializer");
Owen Anderson9e9a0d52009-07-30 23:03:37 +00002450 V = UndefValue::get(Ty);
Chris Lattner081b5052009-01-05 07:52:51 +00002451 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00002452 case ValID::t_Zero:
Chris Lattnere67c1aa2009-01-05 08:13:38 +00002453 // FIXME: LabelTy should not be a first-class type.
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00002454 if (!Ty->isFirstClassType() || Ty->isLabelTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002455 return Error(ID.Loc, "invalid type for null constant");
Owen Andersona7235ea2009-07-31 20:28:14 +00002456 V = Constant::getNullValue(Ty);
Chris Lattnerdf986172009-01-02 07:01:27 +00002457 return false;
2458 case ValID::t_Constant:
2459 if (ID.ConstantVal->getType() != Ty)
2460 return Error(ID.Loc, "constant expression type mismatch");
2461 V = ID.ConstantVal;
2462 return false;
2463 }
2464}
Daniel Dunbara279bc32009-09-20 02:20:51 +00002465
Chris Lattnerdf986172009-01-02 07:01:27 +00002466bool LLParser::ParseGlobalTypeAndValue(Constant *&V) {
Owen Anderson1d0be152009-08-13 21:58:54 +00002467 PATypeHolder Type(Type::getVoidTy(Context));
Chris Lattnerdf986172009-01-02 07:01:27 +00002468 return ParseType(Type) ||
2469 ParseGlobalValue(Type, V);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002470}
Chris Lattnerdf986172009-01-02 07:01:27 +00002471
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002472/// ParseGlobalValueVector
2473/// ::= /*empty*/
2474/// ::= TypeAndValue (',' TypeAndValue)*
Chris Lattnerdf986172009-01-02 07:01:27 +00002475bool LLParser::ParseGlobalValueVector(SmallVectorImpl<Constant*> &Elts) {
2476 // Empty list.
2477 if (Lex.getKind() == lltok::rbrace ||
2478 Lex.getKind() == lltok::rsquare ||
2479 Lex.getKind() == lltok::greater ||
2480 Lex.getKind() == lltok::rparen)
2481 return false;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002482
Chris Lattnerdf986172009-01-02 07:01:27 +00002483 Constant *C;
2484 if (ParseGlobalTypeAndValue(C)) return true;
2485 Elts.push_back(C);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002486
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002487 while (EatIfPresent(lltok::comma)) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002488 if (ParseGlobalTypeAndValue(C)) return true;
2489 Elts.push_back(C);
2490 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002491
Chris Lattnerdf986172009-01-02 07:01:27 +00002492 return false;
2493}
2494
2495
2496//===----------------------------------------------------------------------===//
2497// Function Parsing.
2498//===----------------------------------------------------------------------===//
2499
2500bool LLParser::ConvertValIDToValue(const Type *Ty, ValID &ID, Value *&V,
2501 PerFunctionState &PFS) {
2502 if (ID.Kind == ValID::t_LocalID)
2503 V = PFS.GetVal(ID.UIntVal, Ty, ID.Loc);
2504 else if (ID.Kind == ValID::t_LocalName)
2505 V = PFS.GetVal(ID.StrVal, Ty, ID.Loc);
Steve Naroffb0adcdb2009-01-05 18:48:47 +00002506 else if (ID.Kind == ValID::t_InlineAsm) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002507 const PointerType *PTy = dyn_cast<PointerType>(Ty);
2508 const FunctionType *FTy =
2509 PTy ? dyn_cast<FunctionType>(PTy->getElementType()) : 0;
2510 if (!FTy || !InlineAsm::Verify(FTy, ID.StrVal2))
2511 return Error(ID.Loc, "invalid type for inline asm constraint string");
Dale Johannesen43602982009-10-13 20:46:56 +00002512 V = InlineAsm::get(FTy, ID.StrVal, ID.StrVal2, ID.UIntVal&1, ID.UIntVal>>1);
Chris Lattnerdf986172009-01-02 07:01:27 +00002513 return false;
Devang Patele54abc92009-07-22 17:43:22 +00002514 } else if (ID.Kind == ValID::t_Metadata) {
2515 V = ID.MetadataVal;
Chris Lattnerdf986172009-01-02 07:01:27 +00002516 } else {
2517 Constant *C;
2518 if (ConvertGlobalValIDToValue(Ty, ID, C)) return true;
2519 V = C;
2520 return false;
2521 }
2522
2523 return V == 0;
2524}
2525
2526bool LLParser::ParseValue(const Type *Ty, Value *&V, PerFunctionState &PFS) {
2527 V = 0;
2528 ValID ID;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002529 return ParseValID(ID) ||
2530 ConvertValIDToValue(Ty, ID, V, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00002531}
2532
2533bool LLParser::ParseTypeAndValue(Value *&V, PerFunctionState &PFS) {
Owen Anderson1d0be152009-08-13 21:58:54 +00002534 PATypeHolder T(Type::getVoidTy(Context));
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002535 return ParseType(T) ||
2536 ParseValue(T, V, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00002537}
2538
Chris Lattnerf9be95f2009-10-27 19:13:16 +00002539bool LLParser::ParseTypeAndBasicBlock(BasicBlock *&BB, LocTy &Loc,
2540 PerFunctionState &PFS) {
2541 Value *V;
2542 Loc = Lex.getLoc();
2543 if (ParseTypeAndValue(V, PFS)) return true;
2544 if (!isa<BasicBlock>(V))
2545 return Error(Loc, "expected a basic block");
2546 BB = cast<BasicBlock>(V);
2547 return false;
2548}
2549
2550
Chris Lattnerdf986172009-01-02 07:01:27 +00002551/// FunctionHeader
2552/// ::= OptionalLinkage OptionalVisibility OptionalCallingConv OptRetAttrs
2553/// Type GlobalName '(' ArgList ')' OptFuncAttrs OptSection
2554/// OptionalAlign OptGC
2555bool LLParser::ParseFunctionHeader(Function *&Fn, bool isDefine) {
2556 // Parse the linkage.
2557 LocTy LinkageLoc = Lex.getLoc();
2558 unsigned Linkage;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002559
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00002560 unsigned Visibility, RetAttrs;
2561 CallingConv::ID CC;
Owen Anderson1d0be152009-08-13 21:58:54 +00002562 PATypeHolder RetType(Type::getVoidTy(Context));
Chris Lattnerdf986172009-01-02 07:01:27 +00002563 LocTy RetTypeLoc = Lex.getLoc();
2564 if (ParseOptionalLinkage(Linkage) ||
2565 ParseOptionalVisibility(Visibility) ||
2566 ParseOptionalCallingConv(CC) ||
2567 ParseOptionalAttrs(RetAttrs, 1) ||
Chris Lattnera9a9e072009-03-09 04:49:14 +00002568 ParseType(RetType, RetTypeLoc, true /*void allowed*/))
Chris Lattnerdf986172009-01-02 07:01:27 +00002569 return true;
2570
2571 // Verify that the linkage is ok.
2572 switch ((GlobalValue::LinkageTypes)Linkage) {
2573 case GlobalValue::ExternalLinkage:
2574 break; // always ok.
2575 case GlobalValue::DLLImportLinkage:
Duncan Sands5f4ee1f2009-03-11 08:08:06 +00002576 case GlobalValue::ExternalWeakLinkage:
Chris Lattnerdf986172009-01-02 07:01:27 +00002577 if (isDefine)
2578 return Error(LinkageLoc, "invalid linkage for function definition");
2579 break;
Rafael Espindolabb46f522009-01-15 20:18:42 +00002580 case GlobalValue::PrivateLinkage:
Bill Wendling3d10a5a2009-07-20 01:03:30 +00002581 case GlobalValue::LinkerPrivateLinkage:
Chris Lattnerdf986172009-01-02 07:01:27 +00002582 case GlobalValue::InternalLinkage:
Nick Lewycky55f64db2009-04-13 07:02:02 +00002583 case GlobalValue::AvailableExternallyLinkage:
Duncan Sands667d4b82009-03-07 15:45:40 +00002584 case GlobalValue::LinkOnceAnyLinkage:
2585 case GlobalValue::LinkOnceODRLinkage:
2586 case GlobalValue::WeakAnyLinkage:
2587 case GlobalValue::WeakODRLinkage:
Chris Lattnerdf986172009-01-02 07:01:27 +00002588 case GlobalValue::DLLExportLinkage:
2589 if (!isDefine)
2590 return Error(LinkageLoc, "invalid linkage for function declaration");
2591 break;
2592 case GlobalValue::AppendingLinkage:
2593 case GlobalValue::GhostLinkage:
Duncan Sands4dc2b392009-03-11 20:14:15 +00002594 case GlobalValue::CommonLinkage:
Chris Lattnerdf986172009-01-02 07:01:27 +00002595 return Error(LinkageLoc, "invalid function linkage type");
2596 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002597
Chris Lattner99bb3152009-01-05 08:00:30 +00002598 if (!FunctionType::isValidReturnType(RetType) ||
2599 isa<OpaqueType>(RetType))
Chris Lattnerdf986172009-01-02 07:01:27 +00002600 return Error(RetTypeLoc, "invalid function return type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002601
Chris Lattnerdf986172009-01-02 07:01:27 +00002602 LocTy NameLoc = Lex.getLoc();
Chris Lattnerf570e622009-02-18 21:48:13 +00002603
2604 std::string FunctionName;
2605 if (Lex.getKind() == lltok::GlobalVar) {
2606 FunctionName = Lex.getStrVal();
2607 } else if (Lex.getKind() == lltok::GlobalID) { // @42 is ok.
2608 unsigned NameID = Lex.getUIntVal();
2609
2610 if (NameID != NumberedVals.size())
2611 return TokError("function expected to be numbered '%" +
2612 utostr(NumberedVals.size()) + "'");
2613 } else {
2614 return TokError("expected function name");
2615 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002616
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002617 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +00002618
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002619 if (Lex.getKind() != lltok::lparen)
Chris Lattnerdf986172009-01-02 07:01:27 +00002620 return TokError("expected '(' in function argument list");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002621
Chris Lattnerdf986172009-01-02 07:01:27 +00002622 std::vector<ArgInfo> ArgList;
2623 bool isVarArg;
Chris Lattnerdf986172009-01-02 07:01:27 +00002624 unsigned FuncAttrs;
Chris Lattnerdf986172009-01-02 07:01:27 +00002625 std::string Section;
Chris Lattnerdf986172009-01-02 07:01:27 +00002626 unsigned Alignment;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002627 std::string GC;
2628
Chris Lattnerdfd19dd2009-01-05 18:34:07 +00002629 if (ParseArgumentList(ArgList, isVarArg, false) ||
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002630 ParseOptionalAttrs(FuncAttrs, 2) ||
2631 (EatIfPresent(lltok::kw_section) &&
2632 ParseStringConstant(Section)) ||
2633 ParseOptionalAlignment(Alignment) ||
2634 (EatIfPresent(lltok::kw_gc) &&
2635 ParseStringConstant(GC)))
2636 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00002637
2638 // If the alignment was parsed as an attribute, move to the alignment field.
2639 if (FuncAttrs & Attribute::Alignment) {
2640 Alignment = Attribute::getAlignmentFromAttrs(FuncAttrs);
2641 FuncAttrs &= ~Attribute::Alignment;
2642 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002643
Chris Lattnerdf986172009-01-02 07:01:27 +00002644 // Okay, if we got here, the function is syntactically valid. Convert types
2645 // and do semantic checks.
2646 std::vector<const Type*> ParamTypeList;
2647 SmallVector<AttributeWithIndex, 8> Attrs;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002648 // FIXME : In 3.0, stop accepting zext, sext and inreg as optional function
Chris Lattnerdf986172009-01-02 07:01:27 +00002649 // attributes.
2650 unsigned ObsoleteFuncAttrs = Attribute::ZExt|Attribute::SExt|Attribute::InReg;
2651 if (FuncAttrs & ObsoleteFuncAttrs) {
2652 RetAttrs |= FuncAttrs & ObsoleteFuncAttrs;
2653 FuncAttrs &= ~ObsoleteFuncAttrs;
2654 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002655
Chris Lattnerdf986172009-01-02 07:01:27 +00002656 if (RetAttrs != Attribute::None)
2657 Attrs.push_back(AttributeWithIndex::get(0, RetAttrs));
Daniel Dunbara279bc32009-09-20 02:20:51 +00002658
Chris Lattnerdf986172009-01-02 07:01:27 +00002659 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
2660 ParamTypeList.push_back(ArgList[i].Type);
2661 if (ArgList[i].Attrs != Attribute::None)
2662 Attrs.push_back(AttributeWithIndex::get(i+1, ArgList[i].Attrs));
2663 }
2664
2665 if (FuncAttrs != Attribute::None)
2666 Attrs.push_back(AttributeWithIndex::get(~0, FuncAttrs));
2667
2668 AttrListPtr PAL = AttrListPtr::get(Attrs.begin(), Attrs.end());
Daniel Dunbara279bc32009-09-20 02:20:51 +00002669
Chris Lattnera9a9e072009-03-09 04:49:14 +00002670 if (PAL.paramHasAttr(1, Attribute::StructRet) &&
Owen Anderson1d0be152009-08-13 21:58:54 +00002671 RetType != Type::getVoidTy(Context))
Daniel Dunbara279bc32009-09-20 02:20:51 +00002672 return Error(RetTypeLoc, "functions with 'sret' argument must return void");
2673
Owen Andersonfba933c2009-07-01 23:57:11 +00002674 const FunctionType *FT =
Owen Andersondebcb012009-07-29 22:17:13 +00002675 FunctionType::get(RetType, ParamTypeList, isVarArg);
2676 const PointerType *PFT = PointerType::getUnqual(FT);
Chris Lattnerdf986172009-01-02 07:01:27 +00002677
2678 Fn = 0;
2679 if (!FunctionName.empty()) {
2680 // If this was a definition of a forward reference, remove the definition
2681 // from the forward reference table and fill in the forward ref.
2682 std::map<std::string, std::pair<GlobalValue*, LocTy> >::iterator FRVI =
2683 ForwardRefVals.find(FunctionName);
2684 if (FRVI != ForwardRefVals.end()) {
2685 Fn = M->getFunction(FunctionName);
2686 ForwardRefVals.erase(FRVI);
2687 } else if ((Fn = M->getFunction(FunctionName))) {
2688 // If this function already exists in the symbol table, then it is
2689 // multiply defined. We accept a few cases for old backwards compat.
2690 // FIXME: Remove this stuff for LLVM 3.0.
2691 if (Fn->getType() != PFT || Fn->getAttributes() != PAL ||
2692 (!Fn->isDeclaration() && isDefine)) {
2693 // If the redefinition has different type or different attributes,
2694 // reject it. If both have bodies, reject it.
2695 return Error(NameLoc, "invalid redefinition of function '" +
2696 FunctionName + "'");
2697 } else if (Fn->isDeclaration()) {
2698 // Make sure to strip off any argument names so we can't get conflicts.
2699 for (Function::arg_iterator AI = Fn->arg_begin(), AE = Fn->arg_end();
2700 AI != AE; ++AI)
2701 AI->setName("");
2702 }
Chris Lattner1d871c52009-10-25 23:22:50 +00002703 } else if (M->getNamedValue(FunctionName)) {
2704 return Error(NameLoc, "redefinition of function '@" + FunctionName + "'");
Chris Lattnerdf986172009-01-02 07:01:27 +00002705 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002706
Dan Gohman41905542009-08-29 23:37:49 +00002707 } else {
Chris Lattnerdf986172009-01-02 07:01:27 +00002708 // If this is a definition of a forward referenced function, make sure the
2709 // types agree.
2710 std::map<unsigned, std::pair<GlobalValue*, LocTy> >::iterator I
2711 = ForwardRefValIDs.find(NumberedVals.size());
2712 if (I != ForwardRefValIDs.end()) {
2713 Fn = cast<Function>(I->second.first);
2714 if (Fn->getType() != PFT)
2715 return Error(NameLoc, "type of definition and forward reference of '@" +
2716 utostr(NumberedVals.size()) +"' disagree");
2717 ForwardRefValIDs.erase(I);
2718 }
2719 }
2720
2721 if (Fn == 0)
2722 Fn = Function::Create(FT, GlobalValue::ExternalLinkage, FunctionName, M);
2723 else // Move the forward-reference to the correct spot in the module.
2724 M->getFunctionList().splice(M->end(), M->getFunctionList(), Fn);
2725
2726 if (FunctionName.empty())
2727 NumberedVals.push_back(Fn);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002728
Chris Lattnerdf986172009-01-02 07:01:27 +00002729 Fn->setLinkage((GlobalValue::LinkageTypes)Linkage);
2730 Fn->setVisibility((GlobalValue::VisibilityTypes)Visibility);
2731 Fn->setCallingConv(CC);
2732 Fn->setAttributes(PAL);
2733 Fn->setAlignment(Alignment);
2734 Fn->setSection(Section);
2735 if (!GC.empty()) Fn->setGC(GC.c_str());
Daniel Dunbara279bc32009-09-20 02:20:51 +00002736
Chris Lattnerdf986172009-01-02 07:01:27 +00002737 // Add all of the arguments we parsed to the function.
2738 Function::arg_iterator ArgIt = Fn->arg_begin();
2739 for (unsigned i = 0, e = ArgList.size(); i != e; ++i, ++ArgIt) {
Chris Lattner5bda3792009-11-26 22:48:23 +00002740 // If we run out of arguments in the Function prototype, exit early.
2741 // FIXME: REMOVE THIS IN LLVM 3.0, this is just for the mismatch case above.
2742 if (ArgIt == Fn->arg_end()) break;
2743
Chris Lattnerdf986172009-01-02 07:01:27 +00002744 // If the argument has a name, insert it into the argument symbol table.
2745 if (ArgList[i].Name.empty()) continue;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002746
Chris Lattnerdf986172009-01-02 07:01:27 +00002747 // Set the name, if it conflicted, it will be auto-renamed.
2748 ArgIt->setName(ArgList[i].Name);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002749
Chris Lattnerdf986172009-01-02 07:01:27 +00002750 if (ArgIt->getNameStr() != ArgList[i].Name)
2751 return Error(ArgList[i].Loc, "redefinition of argument '%" +
2752 ArgList[i].Name + "'");
2753 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002754
Chris Lattnerdf986172009-01-02 07:01:27 +00002755 return false;
2756}
2757
2758
2759/// ParseFunctionBody
2760/// ::= '{' BasicBlock+ '}'
2761/// ::= 'begin' BasicBlock+ 'end' // FIXME: remove in LLVM 3.0
2762///
2763bool LLParser::ParseFunctionBody(Function &Fn) {
2764 if (Lex.getKind() != lltok::lbrace && Lex.getKind() != lltok::kw_begin)
2765 return TokError("expected '{' in function body");
2766 Lex.Lex(); // eat the {.
Daniel Dunbara279bc32009-09-20 02:20:51 +00002767
Chris Lattner09d9ef42009-10-28 03:39:23 +00002768 int FunctionNumber = -1;
2769 if (!Fn.hasName()) FunctionNumber = NumberedVals.size()-1;
2770
2771 PerFunctionState PFS(*this, Fn, FunctionNumber);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002772
Chris Lattnerdf986172009-01-02 07:01:27 +00002773 while (Lex.getKind() != lltok::rbrace && Lex.getKind() != lltok::kw_end)
2774 if (ParseBasicBlock(PFS)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002775
Chris Lattnerdf986172009-01-02 07:01:27 +00002776 // Eat the }.
2777 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +00002778
Chris Lattnerdf986172009-01-02 07:01:27 +00002779 // Verify function is ok.
Chris Lattner09d9ef42009-10-28 03:39:23 +00002780 return PFS.FinishFunction();
Chris Lattnerdf986172009-01-02 07:01:27 +00002781}
2782
2783/// ParseBasicBlock
2784/// ::= LabelStr? Instruction*
2785bool LLParser::ParseBasicBlock(PerFunctionState &PFS) {
2786 // If this basic block starts out with a name, remember it.
2787 std::string Name;
2788 LocTy NameLoc = Lex.getLoc();
2789 if (Lex.getKind() == lltok::LabelStr) {
2790 Name = Lex.getStrVal();
2791 Lex.Lex();
2792 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002793
Chris Lattnerdf986172009-01-02 07:01:27 +00002794 BasicBlock *BB = PFS.DefineBB(Name, NameLoc);
2795 if (BB == 0) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002796
Chris Lattnerdf986172009-01-02 07:01:27 +00002797 std::string NameStr;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002798
Chris Lattnerdf986172009-01-02 07:01:27 +00002799 // Parse the instructions in this block until we get a terminator.
2800 Instruction *Inst;
2801 do {
2802 // This instruction may have three possibilities for a name: a) none
2803 // specified, b) name specified "%foo =", c) number specified: "%4 =".
2804 LocTy NameLoc = Lex.getLoc();
2805 int NameID = -1;
2806 NameStr = "";
Daniel Dunbara279bc32009-09-20 02:20:51 +00002807
Chris Lattnerdf986172009-01-02 07:01:27 +00002808 if (Lex.getKind() == lltok::LocalVarID) {
2809 NameID = Lex.getUIntVal();
2810 Lex.Lex();
2811 if (ParseToken(lltok::equal, "expected '=' after instruction id"))
2812 return true;
2813 } else if (Lex.getKind() == lltok::LocalVar ||
2814 // FIXME: REMOVE IN LLVM 3.0
2815 Lex.getKind() == lltok::StringConstant) {
2816 NameStr = Lex.getStrVal();
2817 Lex.Lex();
2818 if (ParseToken(lltok::equal, "expected '=' after instruction name"))
2819 return true;
2820 }
Devang Patelf633a062009-09-17 23:04:48 +00002821
Chris Lattnerdf986172009-01-02 07:01:27 +00002822 if (ParseInstruction(Inst, BB, PFS)) return true;
Devang Patelf633a062009-09-17 23:04:48 +00002823 if (EatIfPresent(lltok::comma))
Devang Patel0475c912009-09-29 00:01:14 +00002824 ParseOptionalCustomMetadata();
Devang Patelf633a062009-09-17 23:04:48 +00002825
2826 // Set metadata attached with this instruction.
Devang Patela2148402009-09-28 21:14:55 +00002827 for (SmallVector<std::pair<unsigned, MDNode *>, 2>::iterator
Daniel Dunbara279bc32009-09-20 02:20:51 +00002828 MDI = MDsOnInst.begin(), MDE = MDsOnInst.end(); MDI != MDE; ++MDI)
Chris Lattner3990b122009-12-28 23:41:32 +00002829 Inst->setMetadata(MDI->first, MDI->second);
Devang Patelf633a062009-09-17 23:04:48 +00002830 MDsOnInst.clear();
2831
Chris Lattnerdf986172009-01-02 07:01:27 +00002832 BB->getInstList().push_back(Inst);
2833
2834 // Set the name on the instruction.
2835 if (PFS.SetInstName(NameID, NameStr, NameLoc, Inst)) return true;
2836 } while (!isa<TerminatorInst>(Inst));
Daniel Dunbara279bc32009-09-20 02:20:51 +00002837
Chris Lattnerdf986172009-01-02 07:01:27 +00002838 return false;
2839}
2840
2841//===----------------------------------------------------------------------===//
2842// Instruction Parsing.
2843//===----------------------------------------------------------------------===//
2844
2845/// ParseInstruction - Parse one of the many different instructions.
2846///
2847bool LLParser::ParseInstruction(Instruction *&Inst, BasicBlock *BB,
2848 PerFunctionState &PFS) {
2849 lltok::Kind Token = Lex.getKind();
2850 if (Token == lltok::Eof)
2851 return TokError("found end of file when expecting more instructions");
2852 LocTy Loc = Lex.getLoc();
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00002853 unsigned KeywordVal = Lex.getUIntVal();
Chris Lattnerdf986172009-01-02 07:01:27 +00002854 Lex.Lex(); // Eat the keyword.
Daniel Dunbara279bc32009-09-20 02:20:51 +00002855
Chris Lattnerdf986172009-01-02 07:01:27 +00002856 switch (Token) {
2857 default: return Error(Loc, "expected instruction opcode");
2858 // Terminator Instructions.
Owen Anderson1d0be152009-08-13 21:58:54 +00002859 case lltok::kw_unwind: Inst = new UnwindInst(Context); return false;
2860 case lltok::kw_unreachable: Inst = new UnreachableInst(Context); return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00002861 case lltok::kw_ret: return ParseRet(Inst, BB, PFS);
2862 case lltok::kw_br: return ParseBr(Inst, PFS);
2863 case lltok::kw_switch: return ParseSwitch(Inst, PFS);
Chris Lattnerab21db72009-10-28 00:19:10 +00002864 case lltok::kw_indirectbr: return ParseIndirectBr(Inst, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00002865 case lltok::kw_invoke: return ParseInvoke(Inst, PFS);
2866 // Binary Operators.
2867 case lltok::kw_add:
2868 case lltok::kw_sub:
Dan Gohman59858cf2009-07-27 16:11:46 +00002869 case lltok::kw_mul: {
2870 bool NUW = false;
2871 bool NSW = false;
2872 LocTy ModifierLoc = Lex.getLoc();
2873 if (EatIfPresent(lltok::kw_nuw))
2874 NUW = true;
2875 if (EatIfPresent(lltok::kw_nsw)) {
2876 NSW = true;
2877 if (EatIfPresent(lltok::kw_nuw))
2878 NUW = true;
2879 }
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002880 // API compatibility: Accept either integer or floating-point types.
Dan Gohman59858cf2009-07-27 16:11:46 +00002881 bool Result = ParseArithmetic(Inst, PFS, KeywordVal, 0);
2882 if (!Result) {
2883 if (!Inst->getType()->isIntOrIntVector()) {
2884 if (NUW)
2885 return Error(ModifierLoc, "nuw only applies to integer operations");
2886 if (NSW)
2887 return Error(ModifierLoc, "nsw only applies to integer operations");
2888 }
2889 if (NUW)
Dan Gohmanf8dbee72009-09-07 23:54:19 +00002890 cast<BinaryOperator>(Inst)->setHasNoUnsignedWrap(true);
Dan Gohman59858cf2009-07-27 16:11:46 +00002891 if (NSW)
Dan Gohmanf8dbee72009-09-07 23:54:19 +00002892 cast<BinaryOperator>(Inst)->setHasNoSignedWrap(true);
Dan Gohman59858cf2009-07-27 16:11:46 +00002893 }
2894 return Result;
2895 }
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002896 case lltok::kw_fadd:
2897 case lltok::kw_fsub:
2898 case lltok::kw_fmul: return ParseArithmetic(Inst, PFS, KeywordVal, 2);
2899
Dan Gohman59858cf2009-07-27 16:11:46 +00002900 case lltok::kw_sdiv: {
2901 bool Exact = false;
2902 if (EatIfPresent(lltok::kw_exact))
2903 Exact = true;
2904 bool Result = ParseArithmetic(Inst, PFS, KeywordVal, 1);
2905 if (!Result)
2906 if (Exact)
Dan Gohmanf8dbee72009-09-07 23:54:19 +00002907 cast<BinaryOperator>(Inst)->setIsExact(true);
Dan Gohman59858cf2009-07-27 16:11:46 +00002908 return Result;
2909 }
2910
Chris Lattnerdf986172009-01-02 07:01:27 +00002911 case lltok::kw_udiv:
Chris Lattnerdf986172009-01-02 07:01:27 +00002912 case lltok::kw_urem:
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00002913 case lltok::kw_srem: return ParseArithmetic(Inst, PFS, KeywordVal, 1);
Chris Lattnere914b592009-01-05 08:24:46 +00002914 case lltok::kw_fdiv:
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00002915 case lltok::kw_frem: return ParseArithmetic(Inst, PFS, KeywordVal, 2);
Chris Lattnerdf986172009-01-02 07:01:27 +00002916 case lltok::kw_shl:
2917 case lltok::kw_lshr:
2918 case lltok::kw_ashr:
2919 case lltok::kw_and:
2920 case lltok::kw_or:
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00002921 case lltok::kw_xor: return ParseLogical(Inst, PFS, KeywordVal);
Chris Lattnerdf986172009-01-02 07:01:27 +00002922 case lltok::kw_icmp:
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00002923 case lltok::kw_fcmp: return ParseCompare(Inst, PFS, KeywordVal);
Chris Lattnerdf986172009-01-02 07:01:27 +00002924 // Casts.
2925 case lltok::kw_trunc:
2926 case lltok::kw_zext:
2927 case lltok::kw_sext:
2928 case lltok::kw_fptrunc:
2929 case lltok::kw_fpext:
2930 case lltok::kw_bitcast:
2931 case lltok::kw_uitofp:
2932 case lltok::kw_sitofp:
2933 case lltok::kw_fptoui:
Daniel Dunbara279bc32009-09-20 02:20:51 +00002934 case lltok::kw_fptosi:
Chris Lattnerdf986172009-01-02 07:01:27 +00002935 case lltok::kw_inttoptr:
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00002936 case lltok::kw_ptrtoint: return ParseCast(Inst, PFS, KeywordVal);
Chris Lattnerdf986172009-01-02 07:01:27 +00002937 // Other.
2938 case lltok::kw_select: return ParseSelect(Inst, PFS);
Chris Lattner0088a5c2009-01-05 08:18:44 +00002939 case lltok::kw_va_arg: return ParseVA_Arg(Inst, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00002940 case lltok::kw_extractelement: return ParseExtractElement(Inst, PFS);
2941 case lltok::kw_insertelement: return ParseInsertElement(Inst, PFS);
2942 case lltok::kw_shufflevector: return ParseShuffleVector(Inst, PFS);
2943 case lltok::kw_phi: return ParsePHI(Inst, PFS);
2944 case lltok::kw_call: return ParseCall(Inst, PFS, false);
2945 case lltok::kw_tail: return ParseCall(Inst, PFS, true);
2946 // Memory.
Victor Hernandez13ad5aa2009-10-17 00:00:19 +00002947 case lltok::kw_alloca: return ParseAlloc(Inst, PFS);
2948 case lltok::kw_malloc: return ParseAlloc(Inst, PFS, BB, false);
Victor Hernandez66284e02009-10-24 04:23:03 +00002949 case lltok::kw_free: return ParseFree(Inst, PFS, BB);
Chris Lattnerdf986172009-01-02 07:01:27 +00002950 case lltok::kw_load: return ParseLoad(Inst, PFS, false);
2951 case lltok::kw_store: return ParseStore(Inst, PFS, false);
2952 case lltok::kw_volatile:
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002953 if (EatIfPresent(lltok::kw_load))
Chris Lattnerdf986172009-01-02 07:01:27 +00002954 return ParseLoad(Inst, PFS, true);
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002955 else if (EatIfPresent(lltok::kw_store))
Chris Lattnerdf986172009-01-02 07:01:27 +00002956 return ParseStore(Inst, PFS, true);
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002957 else
Chris Lattnerdf986172009-01-02 07:01:27 +00002958 return TokError("expected 'load' or 'store'");
Chris Lattnerdf986172009-01-02 07:01:27 +00002959 case lltok::kw_getresult: return ParseGetResult(Inst, PFS);
2960 case lltok::kw_getelementptr: return ParseGetElementPtr(Inst, PFS);
2961 case lltok::kw_extractvalue: return ParseExtractValue(Inst, PFS);
2962 case lltok::kw_insertvalue: return ParseInsertValue(Inst, PFS);
2963 }
2964}
2965
2966/// ParseCmpPredicate - Parse an integer or fp predicate, based on Kind.
2967bool LLParser::ParseCmpPredicate(unsigned &P, unsigned Opc) {
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00002968 if (Opc == Instruction::FCmp) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002969 switch (Lex.getKind()) {
2970 default: TokError("expected fcmp predicate (e.g. 'oeq')");
2971 case lltok::kw_oeq: P = CmpInst::FCMP_OEQ; break;
2972 case lltok::kw_one: P = CmpInst::FCMP_ONE; break;
2973 case lltok::kw_olt: P = CmpInst::FCMP_OLT; break;
2974 case lltok::kw_ogt: P = CmpInst::FCMP_OGT; break;
2975 case lltok::kw_ole: P = CmpInst::FCMP_OLE; break;
2976 case lltok::kw_oge: P = CmpInst::FCMP_OGE; break;
2977 case lltok::kw_ord: P = CmpInst::FCMP_ORD; break;
2978 case lltok::kw_uno: P = CmpInst::FCMP_UNO; break;
2979 case lltok::kw_ueq: P = CmpInst::FCMP_UEQ; break;
2980 case lltok::kw_une: P = CmpInst::FCMP_UNE; break;
2981 case lltok::kw_ult: P = CmpInst::FCMP_ULT; break;
2982 case lltok::kw_ugt: P = CmpInst::FCMP_UGT; break;
2983 case lltok::kw_ule: P = CmpInst::FCMP_ULE; break;
2984 case lltok::kw_uge: P = CmpInst::FCMP_UGE; break;
2985 case lltok::kw_true: P = CmpInst::FCMP_TRUE; break;
2986 case lltok::kw_false: P = CmpInst::FCMP_FALSE; break;
2987 }
2988 } else {
2989 switch (Lex.getKind()) {
2990 default: TokError("expected icmp predicate (e.g. 'eq')");
2991 case lltok::kw_eq: P = CmpInst::ICMP_EQ; break;
2992 case lltok::kw_ne: P = CmpInst::ICMP_NE; break;
2993 case lltok::kw_slt: P = CmpInst::ICMP_SLT; break;
2994 case lltok::kw_sgt: P = CmpInst::ICMP_SGT; break;
2995 case lltok::kw_sle: P = CmpInst::ICMP_SLE; break;
2996 case lltok::kw_sge: P = CmpInst::ICMP_SGE; break;
2997 case lltok::kw_ult: P = CmpInst::ICMP_ULT; break;
2998 case lltok::kw_ugt: P = CmpInst::ICMP_UGT; break;
2999 case lltok::kw_ule: P = CmpInst::ICMP_ULE; break;
3000 case lltok::kw_uge: P = CmpInst::ICMP_UGE; break;
3001 }
3002 }
3003 Lex.Lex();
3004 return false;
3005}
3006
3007//===----------------------------------------------------------------------===//
3008// Terminator Instructions.
3009//===----------------------------------------------------------------------===//
3010
3011/// ParseRet - Parse a return instruction.
Chris Lattner3f3a0f62009-12-29 21:25:40 +00003012/// ::= 'ret' void (',' !dbg, !1)*
3013/// ::= 'ret' TypeAndValue (',' !dbg, !1)*
3014/// ::= 'ret' TypeAndValue (',' TypeAndValue)+ (',' !dbg, !1)*
Devang Patelf633a062009-09-17 23:04:48 +00003015/// [[obsolete: LLVM 3.0]]
Chris Lattnerdf986172009-01-02 07:01:27 +00003016bool LLParser::ParseRet(Instruction *&Inst, BasicBlock *BB,
3017 PerFunctionState &PFS) {
Owen Anderson1d0be152009-08-13 21:58:54 +00003018 PATypeHolder Ty(Type::getVoidTy(Context));
Chris Lattnera9a9e072009-03-09 04:49:14 +00003019 if (ParseType(Ty, true /*void allowed*/)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003020
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00003021 if (Ty->isVoidTy()) {
Owen Anderson1d0be152009-08-13 21:58:54 +00003022 Inst = ReturnInst::Create(Context);
Chris Lattnerdf986172009-01-02 07:01:27 +00003023 return false;
3024 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003025
Chris Lattnerdf986172009-01-02 07:01:27 +00003026 Value *RV;
3027 if (ParseValue(Ty, RV, PFS)) return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00003028
Devang Patelf633a062009-09-17 23:04:48 +00003029 if (EatIfPresent(lltok::comma)) {
Devang Patel0475c912009-09-29 00:01:14 +00003030 // Parse optional custom metadata, e.g. !dbg
3031 if (Lex.getKind() == lltok::NamedOrCustomMD) {
3032 if (ParseOptionalCustomMetadata()) return true;
Devang Patelf633a062009-09-17 23:04:48 +00003033 } else {
3034 // The normal case is one return value.
Chris Lattner3f3a0f62009-12-29 21:25:40 +00003035 // FIXME: LLVM 3.0 remove MRV support for 'ret i32 1, i32 2', requiring
3036 // use of 'ret {i32,i32} {i32 1, i32 2}'
Devang Patelf633a062009-09-17 23:04:48 +00003037 SmallVector<Value*, 8> RVs;
3038 RVs.push_back(RV);
Daniel Dunbara279bc32009-09-20 02:20:51 +00003039
Devang Patelf633a062009-09-17 23:04:48 +00003040 do {
Devang Patel0475c912009-09-29 00:01:14 +00003041 // If optional custom metadata, e.g. !dbg is seen then this is the
3042 // end of MRV.
3043 if (Lex.getKind() == lltok::NamedOrCustomMD)
Daniel Dunbara279bc32009-09-20 02:20:51 +00003044 break;
3045 if (ParseTypeAndValue(RV, PFS)) return true;
3046 RVs.push_back(RV);
Devang Patelf633a062009-09-17 23:04:48 +00003047 } while (EatIfPresent(lltok::comma));
3048
3049 RV = UndefValue::get(PFS.getFunction().getReturnType());
3050 for (unsigned i = 0, e = RVs.size(); i != e; ++i) {
Daniel Dunbara279bc32009-09-20 02:20:51 +00003051 Instruction *I = InsertValueInst::Create(RV, RVs[i], i, "mrv");
3052 BB->getInstList().push_back(I);
3053 RV = I;
Devang Patelf633a062009-09-17 23:04:48 +00003054 }
Chris Lattnerdf986172009-01-02 07:01:27 +00003055 }
3056 }
Devang Patelf633a062009-09-17 23:04:48 +00003057
Owen Anderson1d0be152009-08-13 21:58:54 +00003058 Inst = ReturnInst::Create(Context, RV);
Chris Lattnerdf986172009-01-02 07:01:27 +00003059 return false;
3060}
3061
3062
3063/// ParseBr
3064/// ::= 'br' TypeAndValue
3065/// ::= 'br' TypeAndValue ',' TypeAndValue ',' TypeAndValue
3066bool LLParser::ParseBr(Instruction *&Inst, PerFunctionState &PFS) {
3067 LocTy Loc, Loc2;
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003068 Value *Op0;
3069 BasicBlock *Op1, *Op2;
Chris Lattnerdf986172009-01-02 07:01:27 +00003070 if (ParseTypeAndValue(Op0, Loc, PFS)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003071
Chris Lattnerdf986172009-01-02 07:01:27 +00003072 if (BasicBlock *BB = dyn_cast<BasicBlock>(Op0)) {
3073 Inst = BranchInst::Create(BB);
3074 return false;
3075 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003076
Owen Anderson1d0be152009-08-13 21:58:54 +00003077 if (Op0->getType() != Type::getInt1Ty(Context))
Chris Lattnerdf986172009-01-02 07:01:27 +00003078 return Error(Loc, "branch condition must have 'i1' type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003079
Chris Lattnerdf986172009-01-02 07:01:27 +00003080 if (ParseToken(lltok::comma, "expected ',' after branch condition") ||
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003081 ParseTypeAndBasicBlock(Op1, Loc, PFS) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003082 ParseToken(lltok::comma, "expected ',' after true destination") ||
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003083 ParseTypeAndBasicBlock(Op2, Loc2, PFS))
Chris Lattnerdf986172009-01-02 07:01:27 +00003084 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003085
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003086 Inst = BranchInst::Create(Op1, Op2, Op0);
Chris Lattnerdf986172009-01-02 07:01:27 +00003087 return false;
3088}
3089
3090/// ParseSwitch
3091/// Instruction
3092/// ::= 'switch' TypeAndValue ',' TypeAndValue '[' JumpTable ']'
3093/// JumpTable
3094/// ::= (TypeAndValue ',' TypeAndValue)*
3095bool LLParser::ParseSwitch(Instruction *&Inst, PerFunctionState &PFS) {
3096 LocTy CondLoc, BBLoc;
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003097 Value *Cond;
3098 BasicBlock *DefaultBB;
Chris Lattnerdf986172009-01-02 07:01:27 +00003099 if (ParseTypeAndValue(Cond, CondLoc, PFS) ||
3100 ParseToken(lltok::comma, "expected ',' after switch condition") ||
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003101 ParseTypeAndBasicBlock(DefaultBB, BBLoc, PFS) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003102 ParseToken(lltok::lsquare, "expected '[' with switch table"))
3103 return true;
3104
3105 if (!isa<IntegerType>(Cond->getType()))
3106 return Error(CondLoc, "switch condition must have integer type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003107
Chris Lattnerdf986172009-01-02 07:01:27 +00003108 // Parse the jump table pairs.
3109 SmallPtrSet<Value*, 32> SeenCases;
3110 SmallVector<std::pair<ConstantInt*, BasicBlock*>, 32> Table;
3111 while (Lex.getKind() != lltok::rsquare) {
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003112 Value *Constant;
3113 BasicBlock *DestBB;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003114
Chris Lattnerdf986172009-01-02 07:01:27 +00003115 if (ParseTypeAndValue(Constant, CondLoc, PFS) ||
3116 ParseToken(lltok::comma, "expected ',' after case value") ||
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003117 ParseTypeAndBasicBlock(DestBB, PFS))
Chris Lattnerdf986172009-01-02 07:01:27 +00003118 return true;
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003119
Chris Lattnerdf986172009-01-02 07:01:27 +00003120 if (!SeenCases.insert(Constant))
3121 return Error(CondLoc, "duplicate case value in switch");
3122 if (!isa<ConstantInt>(Constant))
3123 return Error(CondLoc, "case value is not a constant integer");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003124
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003125 Table.push_back(std::make_pair(cast<ConstantInt>(Constant), DestBB));
Chris Lattnerdf986172009-01-02 07:01:27 +00003126 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003127
Chris Lattnerdf986172009-01-02 07:01:27 +00003128 Lex.Lex(); // Eat the ']'.
Daniel Dunbara279bc32009-09-20 02:20:51 +00003129
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003130 SwitchInst *SI = SwitchInst::Create(Cond, DefaultBB, Table.size());
Chris Lattnerdf986172009-01-02 07:01:27 +00003131 for (unsigned i = 0, e = Table.size(); i != e; ++i)
3132 SI->addCase(Table[i].first, Table[i].second);
3133 Inst = SI;
3134 return false;
3135}
3136
Chris Lattnerab21db72009-10-28 00:19:10 +00003137/// ParseIndirectBr
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003138/// Instruction
Chris Lattnerab21db72009-10-28 00:19:10 +00003139/// ::= 'indirectbr' TypeAndValue ',' '[' LabelList ']'
3140bool LLParser::ParseIndirectBr(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003141 LocTy AddrLoc;
3142 Value *Address;
3143 if (ParseTypeAndValue(Address, AddrLoc, PFS) ||
Chris Lattnerab21db72009-10-28 00:19:10 +00003144 ParseToken(lltok::comma, "expected ',' after indirectbr address") ||
3145 ParseToken(lltok::lsquare, "expected '[' with indirectbr"))
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003146 return true;
3147
3148 if (!isa<PointerType>(Address->getType()))
Chris Lattnerab21db72009-10-28 00:19:10 +00003149 return Error(AddrLoc, "indirectbr address must have pointer type");
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003150
3151 // Parse the destination list.
3152 SmallVector<BasicBlock*, 16> DestList;
3153
3154 if (Lex.getKind() != lltok::rsquare) {
3155 BasicBlock *DestBB;
3156 if (ParseTypeAndBasicBlock(DestBB, PFS))
3157 return true;
3158 DestList.push_back(DestBB);
3159
3160 while (EatIfPresent(lltok::comma)) {
3161 if (ParseTypeAndBasicBlock(DestBB, PFS))
3162 return true;
3163 DestList.push_back(DestBB);
3164 }
3165 }
3166
3167 if (ParseToken(lltok::rsquare, "expected ']' at end of block list"))
3168 return true;
3169
Chris Lattnerab21db72009-10-28 00:19:10 +00003170 IndirectBrInst *IBI = IndirectBrInst::Create(Address, DestList.size());
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003171 for (unsigned i = 0, e = DestList.size(); i != e; ++i)
3172 IBI->addDestination(DestList[i]);
3173 Inst = IBI;
3174 return false;
3175}
3176
3177
Chris Lattnerdf986172009-01-02 07:01:27 +00003178/// ParseInvoke
3179/// ::= 'invoke' OptionalCallingConv OptionalAttrs Type Value ParamList
3180/// OptionalAttrs 'to' TypeAndValue 'unwind' TypeAndValue
3181bool LLParser::ParseInvoke(Instruction *&Inst, PerFunctionState &PFS) {
3182 LocTy CallLoc = Lex.getLoc();
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00003183 unsigned RetAttrs, FnAttrs;
3184 CallingConv::ID CC;
Owen Anderson1d0be152009-08-13 21:58:54 +00003185 PATypeHolder RetType(Type::getVoidTy(Context));
Chris Lattnerdf986172009-01-02 07:01:27 +00003186 LocTy RetTypeLoc;
3187 ValID CalleeID;
3188 SmallVector<ParamInfo, 16> ArgList;
3189
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003190 BasicBlock *NormalBB, *UnwindBB;
Chris Lattnerdf986172009-01-02 07:01:27 +00003191 if (ParseOptionalCallingConv(CC) ||
3192 ParseOptionalAttrs(RetAttrs, 1) ||
Chris Lattnera9a9e072009-03-09 04:49:14 +00003193 ParseType(RetType, RetTypeLoc, true /*void allowed*/) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003194 ParseValID(CalleeID) ||
3195 ParseParameterList(ArgList, PFS) ||
3196 ParseOptionalAttrs(FnAttrs, 2) ||
3197 ParseToken(lltok::kw_to, "expected 'to' in invoke") ||
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003198 ParseTypeAndBasicBlock(NormalBB, PFS) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003199 ParseToken(lltok::kw_unwind, "expected 'unwind' in invoke") ||
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003200 ParseTypeAndBasicBlock(UnwindBB, PFS))
Chris Lattnerdf986172009-01-02 07:01:27 +00003201 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003202
Chris Lattnerdf986172009-01-02 07:01:27 +00003203 // If RetType is a non-function pointer type, then this is the short syntax
3204 // for the call, which means that RetType is just the return type. Infer the
3205 // rest of the function argument types from the arguments that are present.
3206 const PointerType *PFTy = 0;
3207 const FunctionType *Ty = 0;
3208 if (!(PFTy = dyn_cast<PointerType>(RetType)) ||
3209 !(Ty = dyn_cast<FunctionType>(PFTy->getElementType()))) {
3210 // Pull out the types of all of the arguments...
3211 std::vector<const Type*> ParamTypes;
3212 for (unsigned i = 0, e = ArgList.size(); i != e; ++i)
3213 ParamTypes.push_back(ArgList[i].V->getType());
Daniel Dunbara279bc32009-09-20 02:20:51 +00003214
Chris Lattnerdf986172009-01-02 07:01:27 +00003215 if (!FunctionType::isValidReturnType(RetType))
3216 return Error(RetTypeLoc, "Invalid result type for LLVM function");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003217
Owen Andersondebcb012009-07-29 22:17:13 +00003218 Ty = FunctionType::get(RetType, ParamTypes, false);
3219 PFTy = PointerType::getUnqual(Ty);
Chris Lattnerdf986172009-01-02 07:01:27 +00003220 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003221
Chris Lattnerdf986172009-01-02 07:01:27 +00003222 // Look up the callee.
3223 Value *Callee;
3224 if (ConvertValIDToValue(PFTy, CalleeID, Callee, PFS)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003225
Chris Lattnerdf986172009-01-02 07:01:27 +00003226 // FIXME: In LLVM 3.0, stop accepting zext, sext and inreg as optional
3227 // function attributes.
3228 unsigned ObsoleteFuncAttrs = Attribute::ZExt|Attribute::SExt|Attribute::InReg;
3229 if (FnAttrs & ObsoleteFuncAttrs) {
3230 RetAttrs |= FnAttrs & ObsoleteFuncAttrs;
3231 FnAttrs &= ~ObsoleteFuncAttrs;
3232 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003233
Chris Lattnerdf986172009-01-02 07:01:27 +00003234 // Set up the Attributes for the function.
3235 SmallVector<AttributeWithIndex, 8> Attrs;
3236 if (RetAttrs != Attribute::None)
3237 Attrs.push_back(AttributeWithIndex::get(0, RetAttrs));
Daniel Dunbara279bc32009-09-20 02:20:51 +00003238
Chris Lattnerdf986172009-01-02 07:01:27 +00003239 SmallVector<Value*, 8> Args;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003240
Chris Lattnerdf986172009-01-02 07:01:27 +00003241 // Loop through FunctionType's arguments and ensure they are specified
3242 // correctly. Also, gather any parameter attributes.
3243 FunctionType::param_iterator I = Ty->param_begin();
3244 FunctionType::param_iterator E = Ty->param_end();
3245 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
3246 const Type *ExpectedTy = 0;
3247 if (I != E) {
3248 ExpectedTy = *I++;
3249 } else if (!Ty->isVarArg()) {
3250 return Error(ArgList[i].Loc, "too many arguments specified");
3251 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003252
Chris Lattnerdf986172009-01-02 07:01:27 +00003253 if (ExpectedTy && ExpectedTy != ArgList[i].V->getType())
3254 return Error(ArgList[i].Loc, "argument is not of expected type '" +
3255 ExpectedTy->getDescription() + "'");
3256 Args.push_back(ArgList[i].V);
3257 if (ArgList[i].Attrs != Attribute::None)
3258 Attrs.push_back(AttributeWithIndex::get(i+1, ArgList[i].Attrs));
3259 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003260
Chris Lattnerdf986172009-01-02 07:01:27 +00003261 if (I != E)
3262 return Error(CallLoc, "not enough parameters specified for call");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003263
Chris Lattnerdf986172009-01-02 07:01:27 +00003264 if (FnAttrs != Attribute::None)
3265 Attrs.push_back(AttributeWithIndex::get(~0, FnAttrs));
Daniel Dunbara279bc32009-09-20 02:20:51 +00003266
Chris Lattnerdf986172009-01-02 07:01:27 +00003267 // Finish off the Attributes and check them
3268 AttrListPtr PAL = AttrListPtr::get(Attrs.begin(), Attrs.end());
Daniel Dunbara279bc32009-09-20 02:20:51 +00003269
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003270 InvokeInst *II = InvokeInst::Create(Callee, NormalBB, UnwindBB,
Chris Lattnerdf986172009-01-02 07:01:27 +00003271 Args.begin(), Args.end());
3272 II->setCallingConv(CC);
3273 II->setAttributes(PAL);
3274 Inst = II;
3275 return false;
3276}
3277
3278
3279
3280//===----------------------------------------------------------------------===//
3281// Binary Operators.
3282//===----------------------------------------------------------------------===//
3283
3284/// ParseArithmetic
Chris Lattnere914b592009-01-05 08:24:46 +00003285/// ::= ArithmeticOps TypeAndValue ',' Value
3286///
3287/// If OperandType is 0, then any FP or integer operand is allowed. If it is 1,
3288/// then any integer operand is allowed, if it is 2, any fp operand is allowed.
Chris Lattnerdf986172009-01-02 07:01:27 +00003289bool LLParser::ParseArithmetic(Instruction *&Inst, PerFunctionState &PFS,
Chris Lattnere914b592009-01-05 08:24:46 +00003290 unsigned Opc, unsigned OperandType) {
Chris Lattnerdf986172009-01-02 07:01:27 +00003291 LocTy Loc; Value *LHS, *RHS;
3292 if (ParseTypeAndValue(LHS, Loc, PFS) ||
3293 ParseToken(lltok::comma, "expected ',' in arithmetic operation") ||
3294 ParseValue(LHS->getType(), RHS, PFS))
3295 return true;
3296
Chris Lattnere914b592009-01-05 08:24:46 +00003297 bool Valid;
3298 switch (OperandType) {
Torok Edwinc23197a2009-07-14 16:55:14 +00003299 default: llvm_unreachable("Unknown operand type!");
Chris Lattnere914b592009-01-05 08:24:46 +00003300 case 0: // int or FP.
3301 Valid = LHS->getType()->isIntOrIntVector() ||
3302 LHS->getType()->isFPOrFPVector();
3303 break;
3304 case 1: Valid = LHS->getType()->isIntOrIntVector(); break;
3305 case 2: Valid = LHS->getType()->isFPOrFPVector(); break;
3306 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003307
Chris Lattnere914b592009-01-05 08:24:46 +00003308 if (!Valid)
3309 return Error(Loc, "invalid operand type for instruction");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003310
Chris Lattnerdf986172009-01-02 07:01:27 +00003311 Inst = BinaryOperator::Create((Instruction::BinaryOps)Opc, LHS, RHS);
3312 return false;
3313}
3314
3315/// ParseLogical
3316/// ::= ArithmeticOps TypeAndValue ',' Value {
3317bool LLParser::ParseLogical(Instruction *&Inst, PerFunctionState &PFS,
3318 unsigned Opc) {
3319 LocTy Loc; Value *LHS, *RHS;
3320 if (ParseTypeAndValue(LHS, Loc, PFS) ||
3321 ParseToken(lltok::comma, "expected ',' in logical operation") ||
3322 ParseValue(LHS->getType(), RHS, PFS))
3323 return true;
3324
3325 if (!LHS->getType()->isIntOrIntVector())
3326 return Error(Loc,"instruction requires integer or integer vector operands");
3327
3328 Inst = BinaryOperator::Create((Instruction::BinaryOps)Opc, LHS, RHS);
3329 return false;
3330}
3331
3332
3333/// ParseCompare
3334/// ::= 'icmp' IPredicates TypeAndValue ',' Value
3335/// ::= 'fcmp' FPredicates TypeAndValue ',' Value
Chris Lattnerdf986172009-01-02 07:01:27 +00003336bool LLParser::ParseCompare(Instruction *&Inst, PerFunctionState &PFS,
3337 unsigned Opc) {
3338 // Parse the integer/fp comparison predicate.
3339 LocTy Loc;
3340 unsigned Pred;
3341 Value *LHS, *RHS;
3342 if (ParseCmpPredicate(Pred, Opc) ||
3343 ParseTypeAndValue(LHS, Loc, PFS) ||
3344 ParseToken(lltok::comma, "expected ',' after compare value") ||
3345 ParseValue(LHS->getType(), RHS, PFS))
3346 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003347
Chris Lattnerdf986172009-01-02 07:01:27 +00003348 if (Opc == Instruction::FCmp) {
3349 if (!LHS->getType()->isFPOrFPVector())
3350 return Error(Loc, "fcmp requires floating point operands");
Dan Gohman1c8a23c2009-08-25 23:17:54 +00003351 Inst = new FCmpInst(CmpInst::Predicate(Pred), LHS, RHS);
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00003352 } else {
3353 assert(Opc == Instruction::ICmp && "Unknown opcode for CmpInst!");
Chris Lattnerdf986172009-01-02 07:01:27 +00003354 if (!LHS->getType()->isIntOrIntVector() &&
3355 !isa<PointerType>(LHS->getType()))
3356 return Error(Loc, "icmp requires integer operands");
Dan Gohman1c8a23c2009-08-25 23:17:54 +00003357 Inst = new ICmpInst(CmpInst::Predicate(Pred), LHS, RHS);
Chris Lattnerdf986172009-01-02 07:01:27 +00003358 }
3359 return false;
3360}
3361
3362//===----------------------------------------------------------------------===//
3363// Other Instructions.
3364//===----------------------------------------------------------------------===//
3365
3366
3367/// ParseCast
3368/// ::= CastOpc TypeAndValue 'to' Type
3369bool LLParser::ParseCast(Instruction *&Inst, PerFunctionState &PFS,
3370 unsigned Opc) {
3371 LocTy Loc; Value *Op;
Owen Anderson1d0be152009-08-13 21:58:54 +00003372 PATypeHolder DestTy(Type::getVoidTy(Context));
Chris Lattnerdf986172009-01-02 07:01:27 +00003373 if (ParseTypeAndValue(Op, Loc, PFS) ||
3374 ParseToken(lltok::kw_to, "expected 'to' after cast value") ||
3375 ParseType(DestTy))
3376 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003377
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00003378 if (!CastInst::castIsValid((Instruction::CastOps)Opc, Op, DestTy)) {
3379 CastInst::castIsValid((Instruction::CastOps)Opc, Op, DestTy);
Chris Lattnerdf986172009-01-02 07:01:27 +00003380 return Error(Loc, "invalid cast opcode for cast from '" +
3381 Op->getType()->getDescription() + "' to '" +
3382 DestTy->getDescription() + "'");
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00003383 }
Chris Lattnerdf986172009-01-02 07:01:27 +00003384 Inst = CastInst::Create((Instruction::CastOps)Opc, Op, DestTy);
3385 return false;
3386}
3387
3388/// ParseSelect
3389/// ::= 'select' TypeAndValue ',' TypeAndValue ',' TypeAndValue
3390bool LLParser::ParseSelect(Instruction *&Inst, PerFunctionState &PFS) {
3391 LocTy Loc;
3392 Value *Op0, *Op1, *Op2;
3393 if (ParseTypeAndValue(Op0, Loc, PFS) ||
3394 ParseToken(lltok::comma, "expected ',' after select condition") ||
3395 ParseTypeAndValue(Op1, PFS) ||
3396 ParseToken(lltok::comma, "expected ',' after select value") ||
3397 ParseTypeAndValue(Op2, PFS))
3398 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003399
Chris Lattnerdf986172009-01-02 07:01:27 +00003400 if (const char *Reason = SelectInst::areInvalidOperands(Op0, Op1, Op2))
3401 return Error(Loc, Reason);
Daniel Dunbara279bc32009-09-20 02:20:51 +00003402
Chris Lattnerdf986172009-01-02 07:01:27 +00003403 Inst = SelectInst::Create(Op0, Op1, Op2);
3404 return false;
3405}
3406
Chris Lattner0088a5c2009-01-05 08:18:44 +00003407/// ParseVA_Arg
3408/// ::= 'va_arg' TypeAndValue ',' Type
3409bool LLParser::ParseVA_Arg(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00003410 Value *Op;
Owen Anderson1d0be152009-08-13 21:58:54 +00003411 PATypeHolder EltTy(Type::getVoidTy(Context));
Chris Lattner0088a5c2009-01-05 08:18:44 +00003412 LocTy TypeLoc;
Chris Lattnerdf986172009-01-02 07:01:27 +00003413 if (ParseTypeAndValue(Op, PFS) ||
3414 ParseToken(lltok::comma, "expected ',' after vaarg operand") ||
Chris Lattner0088a5c2009-01-05 08:18:44 +00003415 ParseType(EltTy, TypeLoc))
Chris Lattnerdf986172009-01-02 07:01:27 +00003416 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003417
Chris Lattner0088a5c2009-01-05 08:18:44 +00003418 if (!EltTy->isFirstClassType())
3419 return Error(TypeLoc, "va_arg requires operand with first class type");
Chris Lattnerdf986172009-01-02 07:01:27 +00003420
3421 Inst = new VAArgInst(Op, EltTy);
3422 return false;
3423}
3424
3425/// ParseExtractElement
3426/// ::= 'extractelement' TypeAndValue ',' TypeAndValue
3427bool LLParser::ParseExtractElement(Instruction *&Inst, PerFunctionState &PFS) {
3428 LocTy Loc;
3429 Value *Op0, *Op1;
3430 if (ParseTypeAndValue(Op0, Loc, PFS) ||
3431 ParseToken(lltok::comma, "expected ',' after extract value") ||
3432 ParseTypeAndValue(Op1, PFS))
3433 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003434
Chris Lattnerdf986172009-01-02 07:01:27 +00003435 if (!ExtractElementInst::isValidOperands(Op0, Op1))
3436 return Error(Loc, "invalid extractelement operands");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003437
Eric Christophera3500da2009-07-25 02:28:41 +00003438 Inst = ExtractElementInst::Create(Op0, Op1);
Chris Lattnerdf986172009-01-02 07:01:27 +00003439 return false;
3440}
3441
3442/// ParseInsertElement
3443/// ::= 'insertelement' TypeAndValue ',' TypeAndValue ',' TypeAndValue
3444bool LLParser::ParseInsertElement(Instruction *&Inst, PerFunctionState &PFS) {
3445 LocTy Loc;
3446 Value *Op0, *Op1, *Op2;
3447 if (ParseTypeAndValue(Op0, Loc, PFS) ||
3448 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
3449 ParseTypeAndValue(Op1, PFS) ||
3450 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
3451 ParseTypeAndValue(Op2, PFS))
3452 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003453
Chris Lattnerdf986172009-01-02 07:01:27 +00003454 if (!InsertElementInst::isValidOperands(Op0, Op1, Op2))
Eric Christopher0aaf4e92009-07-23 01:01:32 +00003455 return Error(Loc, "invalid insertelement operands");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003456
Chris Lattnerdf986172009-01-02 07:01:27 +00003457 Inst = InsertElementInst::Create(Op0, Op1, Op2);
3458 return false;
3459}
3460
3461/// ParseShuffleVector
3462/// ::= 'shufflevector' TypeAndValue ',' TypeAndValue ',' TypeAndValue
3463bool LLParser::ParseShuffleVector(Instruction *&Inst, PerFunctionState &PFS) {
3464 LocTy Loc;
3465 Value *Op0, *Op1, *Op2;
3466 if (ParseTypeAndValue(Op0, Loc, PFS) ||
3467 ParseToken(lltok::comma, "expected ',' after shuffle mask") ||
3468 ParseTypeAndValue(Op1, PFS) ||
3469 ParseToken(lltok::comma, "expected ',' after shuffle value") ||
3470 ParseTypeAndValue(Op2, PFS))
3471 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003472
Chris Lattnerdf986172009-01-02 07:01:27 +00003473 if (!ShuffleVectorInst::isValidOperands(Op0, Op1, Op2))
3474 return Error(Loc, "invalid extractelement operands");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003475
Chris Lattnerdf986172009-01-02 07:01:27 +00003476 Inst = new ShuffleVectorInst(Op0, Op1, Op2);
3477 return false;
3478}
3479
3480/// ParsePHI
Chris Lattnerc6e20092009-10-18 05:27:44 +00003481/// ::= 'phi' Type '[' Value ',' Value ']' (',' '[' Value ',' Value ']')*
Chris Lattnerdf986172009-01-02 07:01:27 +00003482bool LLParser::ParsePHI(Instruction *&Inst, PerFunctionState &PFS) {
Owen Anderson1d0be152009-08-13 21:58:54 +00003483 PATypeHolder Ty(Type::getVoidTy(Context));
Chris Lattnerdf986172009-01-02 07:01:27 +00003484 Value *Op0, *Op1;
3485 LocTy TypeLoc = Lex.getLoc();
Daniel Dunbara279bc32009-09-20 02:20:51 +00003486
Chris Lattnerdf986172009-01-02 07:01:27 +00003487 if (ParseType(Ty) ||
3488 ParseToken(lltok::lsquare, "expected '[' in phi value list") ||
3489 ParseValue(Ty, Op0, PFS) ||
3490 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
Owen Anderson1d0be152009-08-13 21:58:54 +00003491 ParseValue(Type::getLabelTy(Context), Op1, PFS) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003492 ParseToken(lltok::rsquare, "expected ']' in phi value list"))
3493 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003494
Chris Lattnerdf986172009-01-02 07:01:27 +00003495 SmallVector<std::pair<Value*, BasicBlock*>, 16> PHIVals;
3496 while (1) {
3497 PHIVals.push_back(std::make_pair(Op0, cast<BasicBlock>(Op1)));
Daniel Dunbara279bc32009-09-20 02:20:51 +00003498
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003499 if (!EatIfPresent(lltok::comma))
Chris Lattnerdf986172009-01-02 07:01:27 +00003500 break;
3501
Devang Patela43d46f2009-10-16 18:45:49 +00003502 if (Lex.getKind() == lltok::NamedOrCustomMD)
3503 break;
3504
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003505 if (ParseToken(lltok::lsquare, "expected '[' in phi value list") ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003506 ParseValue(Ty, Op0, PFS) ||
3507 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
Owen Anderson1d0be152009-08-13 21:58:54 +00003508 ParseValue(Type::getLabelTy(Context), Op1, PFS) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003509 ParseToken(lltok::rsquare, "expected ']' in phi value list"))
3510 return true;
3511 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003512
Devang Patela43d46f2009-10-16 18:45:49 +00003513 if (Lex.getKind() == lltok::NamedOrCustomMD)
3514 if (ParseOptionalCustomMetadata()) return true;
3515
Chris Lattnerdf986172009-01-02 07:01:27 +00003516 if (!Ty->isFirstClassType())
3517 return Error(TypeLoc, "phi node must have first class type");
3518
3519 PHINode *PN = PHINode::Create(Ty);
3520 PN->reserveOperandSpace(PHIVals.size());
3521 for (unsigned i = 0, e = PHIVals.size(); i != e; ++i)
3522 PN->addIncoming(PHIVals[i].first, PHIVals[i].second);
3523 Inst = PN;
3524 return false;
3525}
3526
3527/// ParseCall
3528/// ::= 'tail'? 'call' OptionalCallingConv OptionalAttrs Type Value
3529/// ParameterList OptionalAttrs
3530bool LLParser::ParseCall(Instruction *&Inst, PerFunctionState &PFS,
3531 bool isTail) {
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00003532 unsigned RetAttrs, FnAttrs;
3533 CallingConv::ID CC;
Owen Anderson1d0be152009-08-13 21:58:54 +00003534 PATypeHolder RetType(Type::getVoidTy(Context));
Chris Lattnerdf986172009-01-02 07:01:27 +00003535 LocTy RetTypeLoc;
3536 ValID CalleeID;
3537 SmallVector<ParamInfo, 16> ArgList;
3538 LocTy CallLoc = Lex.getLoc();
Daniel Dunbara279bc32009-09-20 02:20:51 +00003539
Chris Lattnerdf986172009-01-02 07:01:27 +00003540 if ((isTail && ParseToken(lltok::kw_call, "expected 'tail call'")) ||
3541 ParseOptionalCallingConv(CC) ||
3542 ParseOptionalAttrs(RetAttrs, 1) ||
Chris Lattnera9a9e072009-03-09 04:49:14 +00003543 ParseType(RetType, RetTypeLoc, true /*void allowed*/) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003544 ParseValID(CalleeID) ||
3545 ParseParameterList(ArgList, PFS) ||
3546 ParseOptionalAttrs(FnAttrs, 2))
3547 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003548
Chris Lattnerdf986172009-01-02 07:01:27 +00003549 // If RetType is a non-function pointer type, then this is the short syntax
3550 // for the call, which means that RetType is just the return type. Infer the
3551 // rest of the function argument types from the arguments that are present.
3552 const PointerType *PFTy = 0;
3553 const FunctionType *Ty = 0;
3554 if (!(PFTy = dyn_cast<PointerType>(RetType)) ||
3555 !(Ty = dyn_cast<FunctionType>(PFTy->getElementType()))) {
3556 // Pull out the types of all of the arguments...
3557 std::vector<const Type*> ParamTypes;
3558 for (unsigned i = 0, e = ArgList.size(); i != e; ++i)
3559 ParamTypes.push_back(ArgList[i].V->getType());
Daniel Dunbara279bc32009-09-20 02:20:51 +00003560
Chris Lattnerdf986172009-01-02 07:01:27 +00003561 if (!FunctionType::isValidReturnType(RetType))
3562 return Error(RetTypeLoc, "Invalid result type for LLVM function");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003563
Owen Andersondebcb012009-07-29 22:17:13 +00003564 Ty = FunctionType::get(RetType, ParamTypes, false);
3565 PFTy = PointerType::getUnqual(Ty);
Chris Lattnerdf986172009-01-02 07:01:27 +00003566 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003567
Chris Lattnerdf986172009-01-02 07:01:27 +00003568 // Look up the callee.
3569 Value *Callee;
3570 if (ConvertValIDToValue(PFTy, CalleeID, Callee, PFS)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003571
Chris Lattnerdf986172009-01-02 07:01:27 +00003572 // FIXME: In LLVM 3.0, stop accepting zext, sext and inreg as optional
3573 // function attributes.
3574 unsigned ObsoleteFuncAttrs = Attribute::ZExt|Attribute::SExt|Attribute::InReg;
3575 if (FnAttrs & ObsoleteFuncAttrs) {
3576 RetAttrs |= FnAttrs & ObsoleteFuncAttrs;
3577 FnAttrs &= ~ObsoleteFuncAttrs;
3578 }
3579
3580 // Set up the Attributes for the function.
3581 SmallVector<AttributeWithIndex, 8> Attrs;
3582 if (RetAttrs != Attribute::None)
3583 Attrs.push_back(AttributeWithIndex::get(0, RetAttrs));
Daniel Dunbara279bc32009-09-20 02:20:51 +00003584
Chris Lattnerdf986172009-01-02 07:01:27 +00003585 SmallVector<Value*, 8> Args;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003586
Chris Lattnerdf986172009-01-02 07:01:27 +00003587 // Loop through FunctionType's arguments and ensure they are specified
3588 // correctly. Also, gather any parameter attributes.
3589 FunctionType::param_iterator I = Ty->param_begin();
3590 FunctionType::param_iterator E = Ty->param_end();
3591 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
3592 const Type *ExpectedTy = 0;
3593 if (I != E) {
3594 ExpectedTy = *I++;
3595 } else if (!Ty->isVarArg()) {
3596 return Error(ArgList[i].Loc, "too many arguments specified");
3597 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003598
Chris Lattnerdf986172009-01-02 07:01:27 +00003599 if (ExpectedTy && ExpectedTy != ArgList[i].V->getType())
3600 return Error(ArgList[i].Loc, "argument is not of expected type '" +
3601 ExpectedTy->getDescription() + "'");
3602 Args.push_back(ArgList[i].V);
3603 if (ArgList[i].Attrs != Attribute::None)
3604 Attrs.push_back(AttributeWithIndex::get(i+1, ArgList[i].Attrs));
3605 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003606
Chris Lattnerdf986172009-01-02 07:01:27 +00003607 if (I != E)
3608 return Error(CallLoc, "not enough parameters specified for call");
3609
3610 if (FnAttrs != Attribute::None)
3611 Attrs.push_back(AttributeWithIndex::get(~0, FnAttrs));
3612
3613 // Finish off the Attributes and check them
3614 AttrListPtr PAL = AttrListPtr::get(Attrs.begin(), Attrs.end());
Daniel Dunbara279bc32009-09-20 02:20:51 +00003615
Chris Lattnerdf986172009-01-02 07:01:27 +00003616 CallInst *CI = CallInst::Create(Callee, Args.begin(), Args.end());
3617 CI->setTailCall(isTail);
3618 CI->setCallingConv(CC);
3619 CI->setAttributes(PAL);
3620 Inst = CI;
3621 return false;
3622}
3623
3624//===----------------------------------------------------------------------===//
3625// Memory Instructions.
3626//===----------------------------------------------------------------------===//
3627
3628/// ParseAlloc
Devang Patelf633a062009-09-17 23:04:48 +00003629/// ::= 'malloc' Type (',' TypeAndValue)? (',' OptionalInfo)?
3630/// ::= 'alloca' Type (',' TypeAndValue)? (',' OptionalInfo)?
Chris Lattnerdf986172009-01-02 07:01:27 +00003631bool LLParser::ParseAlloc(Instruction *&Inst, PerFunctionState &PFS,
Victor Hernandez13ad5aa2009-10-17 00:00:19 +00003632 BasicBlock* BB, bool isAlloca) {
Owen Anderson1d0be152009-08-13 21:58:54 +00003633 PATypeHolder Ty(Type::getVoidTy(Context));
Chris Lattnerdf986172009-01-02 07:01:27 +00003634 Value *Size = 0;
Chris Lattnereeb4a842009-07-02 23:08:13 +00003635 LocTy SizeLoc;
Chris Lattnerdf986172009-01-02 07:01:27 +00003636 unsigned Alignment = 0;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003637 if (ParseType(Ty)) return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00003638
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003639 if (EatIfPresent(lltok::comma)) {
Devang Patel0475c912009-09-29 00:01:14 +00003640 if (Lex.getKind() == lltok::kw_align
3641 || Lex.getKind() == lltok::NamedOrCustomMD) {
Devang Patelf633a062009-09-17 23:04:48 +00003642 if (ParseOptionalInfo(Alignment)) return true;
3643 } else {
3644 if (ParseTypeAndValue(Size, SizeLoc, PFS)) return true;
3645 if (EatIfPresent(lltok::comma))
Daniel Dunbara279bc32009-09-20 02:20:51 +00003646 if (ParseOptionalInfo(Alignment)) return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00003647 }
3648 }
3649
Owen Anderson1d0be152009-08-13 21:58:54 +00003650 if (Size && Size->getType() != Type::getInt32Ty(Context))
Chris Lattnerdf986172009-01-02 07:01:27 +00003651 return Error(SizeLoc, "element count must be i32");
3652
Victor Hernandez68afa542009-10-21 19:11:40 +00003653 if (isAlloca) {
Owen Anderson50dead02009-07-15 23:53:25 +00003654 Inst = new AllocaInst(Ty, Size, Alignment);
Victor Hernandez68afa542009-10-21 19:11:40 +00003655 return false;
Victor Hernandez13ad5aa2009-10-17 00:00:19 +00003656 }
Victor Hernandez68afa542009-10-21 19:11:40 +00003657
3658 // Autoupgrade old malloc instruction to malloc call.
3659 // FIXME: Remove in LLVM 3.0.
3660 const Type *IntPtrTy = Type::getInt32Ty(Context);
Victor Hernandez9d0b7042009-11-07 00:16:28 +00003661 Constant *AllocSize = ConstantExpr::getSizeOf(Ty);
3662 AllocSize = ConstantExpr::getTruncOrBitCast(AllocSize, IntPtrTy);
Victor Hernandez68afa542009-10-21 19:11:40 +00003663 if (!MallocF)
3664 // Prototype malloc as "void *(int32)".
3665 // This function is renamed as "malloc" in ValidateEndOfModule().
Victor Hernandez336ea062009-10-23 00:59:10 +00003666 MallocF = cast<Function>(
3667 M->getOrInsertFunction("", Type::getInt8PtrTy(Context), IntPtrTy, NULL));
Victor Hernandez9d0b7042009-11-07 00:16:28 +00003668 Inst = CallInst::CreateMalloc(BB, IntPtrTy, Ty, AllocSize, Size, MallocF);
Chris Lattnerdf986172009-01-02 07:01:27 +00003669 return false;
3670}
3671
3672/// ParseFree
3673/// ::= 'free' TypeAndValue
Victor Hernandez66284e02009-10-24 04:23:03 +00003674bool LLParser::ParseFree(Instruction *&Inst, PerFunctionState &PFS,
3675 BasicBlock* BB) {
Chris Lattnerdf986172009-01-02 07:01:27 +00003676 Value *Val; LocTy Loc;
3677 if (ParseTypeAndValue(Val, Loc, PFS)) return true;
3678 if (!isa<PointerType>(Val->getType()))
3679 return Error(Loc, "operand to free must be a pointer");
Victor Hernandez66284e02009-10-24 04:23:03 +00003680 Inst = CallInst::CreateFree(Val, BB);
Chris Lattnerdf986172009-01-02 07:01:27 +00003681 return false;
3682}
3683
3684/// ParseLoad
Devang Patelf633a062009-09-17 23:04:48 +00003685/// ::= 'volatile'? 'load' TypeAndValue (',' OptionalInfo)?
Chris Lattnerdf986172009-01-02 07:01:27 +00003686bool LLParser::ParseLoad(Instruction *&Inst, PerFunctionState &PFS,
3687 bool isVolatile) {
3688 Value *Val; LocTy Loc;
Devang Patelf633a062009-09-17 23:04:48 +00003689 unsigned Alignment = 0;
3690 if (ParseTypeAndValue(Val, Loc, PFS)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003691
Devang Patelf633a062009-09-17 23:04:48 +00003692 if (EatIfPresent(lltok::comma))
3693 if (ParseOptionalInfo(Alignment)) return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00003694
3695 if (!isa<PointerType>(Val->getType()) ||
3696 !cast<PointerType>(Val->getType())->getElementType()->isFirstClassType())
3697 return Error(Loc, "load operand must be a pointer to a first class type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003698
Chris Lattnerdf986172009-01-02 07:01:27 +00003699 Inst = new LoadInst(Val, "", isVolatile, Alignment);
3700 return false;
3701}
3702
3703/// ParseStore
Dan Gohmana119de82009-06-14 23:30:43 +00003704/// ::= 'volatile'? 'store' TypeAndValue ',' TypeAndValue (',' 'align' i32)?
Chris Lattnerdf986172009-01-02 07:01:27 +00003705bool LLParser::ParseStore(Instruction *&Inst, PerFunctionState &PFS,
3706 bool isVolatile) {
3707 Value *Val, *Ptr; LocTy Loc, PtrLoc;
Devang Patelf633a062009-09-17 23:04:48 +00003708 unsigned Alignment = 0;
Chris Lattnerdf986172009-01-02 07:01:27 +00003709 if (ParseTypeAndValue(Val, Loc, PFS) ||
3710 ParseToken(lltok::comma, "expected ',' after store operand") ||
Devang Patelf633a062009-09-17 23:04:48 +00003711 ParseTypeAndValue(Ptr, PtrLoc, PFS))
Chris Lattnerdf986172009-01-02 07:01:27 +00003712 return true;
Devang Patelf633a062009-09-17 23:04:48 +00003713
3714 if (EatIfPresent(lltok::comma))
3715 if (ParseOptionalInfo(Alignment)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003716
Chris Lattnerdf986172009-01-02 07:01:27 +00003717 if (!isa<PointerType>(Ptr->getType()))
3718 return Error(PtrLoc, "store operand must be a pointer");
3719 if (!Val->getType()->isFirstClassType())
3720 return Error(Loc, "store operand must be a first class value");
3721 if (cast<PointerType>(Ptr->getType())->getElementType() != Val->getType())
3722 return Error(Loc, "stored value and pointer type do not match");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003723
Chris Lattnerdf986172009-01-02 07:01:27 +00003724 Inst = new StoreInst(Val, Ptr, isVolatile, Alignment);
3725 return false;
3726}
3727
3728/// ParseGetResult
Dan Gohmana119de82009-06-14 23:30:43 +00003729/// ::= 'getresult' TypeAndValue ',' i32
Chris Lattnerdf986172009-01-02 07:01:27 +00003730/// FIXME: Remove support for getresult in LLVM 3.0
3731bool LLParser::ParseGetResult(Instruction *&Inst, PerFunctionState &PFS) {
3732 Value *Val; LocTy ValLoc, EltLoc;
3733 unsigned Element;
3734 if (ParseTypeAndValue(Val, ValLoc, PFS) ||
3735 ParseToken(lltok::comma, "expected ',' after getresult operand") ||
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003736 ParseUInt32(Element, EltLoc))
Chris Lattnerdf986172009-01-02 07:01:27 +00003737 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003738
Chris Lattnerdf986172009-01-02 07:01:27 +00003739 if (!isa<StructType>(Val->getType()) && !isa<ArrayType>(Val->getType()))
3740 return Error(ValLoc, "getresult inst requires an aggregate operand");
3741 if (!ExtractValueInst::getIndexedType(Val->getType(), Element))
3742 return Error(EltLoc, "invalid getresult index for value");
3743 Inst = ExtractValueInst::Create(Val, Element);
3744 return false;
3745}
3746
3747/// ParseGetElementPtr
Dan Gohmandd8004d2009-07-27 21:53:46 +00003748/// ::= 'getelementptr' 'inbounds'? TypeAndValue (',' TypeAndValue)*
Chris Lattnerdf986172009-01-02 07:01:27 +00003749bool LLParser::ParseGetElementPtr(Instruction *&Inst, PerFunctionState &PFS) {
3750 Value *Ptr, *Val; LocTy Loc, EltLoc;
Dan Gohmandd8004d2009-07-27 21:53:46 +00003751
Dan Gohmandcb40a32009-07-29 15:58:36 +00003752 bool InBounds = EatIfPresent(lltok::kw_inbounds);
Dan Gohmandd8004d2009-07-27 21:53:46 +00003753
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003754 if (ParseTypeAndValue(Ptr, Loc, PFS)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003755
Chris Lattnerdf986172009-01-02 07:01:27 +00003756 if (!isa<PointerType>(Ptr->getType()))
3757 return Error(Loc, "base of getelementptr must be a pointer");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003758
Chris Lattnerdf986172009-01-02 07:01:27 +00003759 SmallVector<Value*, 16> Indices;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003760 while (EatIfPresent(lltok::comma)) {
Devang Patel6225d642009-10-13 18:49:55 +00003761 if (Lex.getKind() == lltok::NamedOrCustomMD)
3762 break;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003763 if (ParseTypeAndValue(Val, EltLoc, PFS)) return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00003764 if (!isa<IntegerType>(Val->getType()))
3765 return Error(EltLoc, "getelementptr index must be an integer");
3766 Indices.push_back(Val);
3767 }
Devang Patel6225d642009-10-13 18:49:55 +00003768 if (Lex.getKind() == lltok::NamedOrCustomMD)
3769 if (ParseOptionalCustomMetadata()) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003770
Chris Lattnerdf986172009-01-02 07:01:27 +00003771 if (!GetElementPtrInst::getIndexedType(Ptr->getType(),
3772 Indices.begin(), Indices.end()))
3773 return Error(Loc, "invalid getelementptr indices");
3774 Inst = GetElementPtrInst::Create(Ptr, Indices.begin(), Indices.end());
Dan Gohmandd8004d2009-07-27 21:53:46 +00003775 if (InBounds)
Dan Gohmanf8dbee72009-09-07 23:54:19 +00003776 cast<GetElementPtrInst>(Inst)->setIsInBounds(true);
Chris Lattnerdf986172009-01-02 07:01:27 +00003777 return false;
3778}
3779
3780/// ParseExtractValue
3781/// ::= 'extractvalue' TypeAndValue (',' uint32)+
3782bool LLParser::ParseExtractValue(Instruction *&Inst, PerFunctionState &PFS) {
3783 Value *Val; LocTy Loc;
3784 SmallVector<unsigned, 4> Indices;
3785 if (ParseTypeAndValue(Val, Loc, PFS) ||
3786 ParseIndexList(Indices))
3787 return true;
Devang Patele8bc45a2009-11-03 19:06:07 +00003788 if (Lex.getKind() == lltok::NamedOrCustomMD)
3789 if (ParseOptionalCustomMetadata()) return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00003790
3791 if (!isa<StructType>(Val->getType()) && !isa<ArrayType>(Val->getType()))
3792 return Error(Loc, "extractvalue operand must be array or struct");
3793
3794 if (!ExtractValueInst::getIndexedType(Val->getType(), Indices.begin(),
3795 Indices.end()))
3796 return Error(Loc, "invalid indices for extractvalue");
3797 Inst = ExtractValueInst::Create(Val, Indices.begin(), Indices.end());
3798 return false;
3799}
3800
3801/// ParseInsertValue
3802/// ::= 'insertvalue' TypeAndValue ',' TypeAndValue (',' uint32)+
3803bool LLParser::ParseInsertValue(Instruction *&Inst, PerFunctionState &PFS) {
3804 Value *Val0, *Val1; LocTy Loc0, Loc1;
3805 SmallVector<unsigned, 4> Indices;
3806 if (ParseTypeAndValue(Val0, Loc0, PFS) ||
3807 ParseToken(lltok::comma, "expected comma after insertvalue operand") ||
3808 ParseTypeAndValue(Val1, Loc1, PFS) ||
3809 ParseIndexList(Indices))
3810 return true;
Devang Patele8bc45a2009-11-03 19:06:07 +00003811 if (Lex.getKind() == lltok::NamedOrCustomMD)
3812 if (ParseOptionalCustomMetadata()) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003813
Chris Lattnerdf986172009-01-02 07:01:27 +00003814 if (!isa<StructType>(Val0->getType()) && !isa<ArrayType>(Val0->getType()))
3815 return Error(Loc0, "extractvalue operand must be array or struct");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003816
Chris Lattnerdf986172009-01-02 07:01:27 +00003817 if (!ExtractValueInst::getIndexedType(Val0->getType(), Indices.begin(),
3818 Indices.end()))
3819 return Error(Loc0, "invalid indices for insertvalue");
3820 Inst = InsertValueInst::Create(Val0, Val1, Indices.begin(), Indices.end());
3821 return false;
3822}
Nick Lewycky21cc4462009-04-04 07:22:01 +00003823
3824//===----------------------------------------------------------------------===//
3825// Embedded metadata.
3826//===----------------------------------------------------------------------===//
3827
3828/// ParseMDNodeVector
Nick Lewyckycb337992009-05-10 20:57:05 +00003829/// ::= Element (',' Element)*
3830/// Element
3831/// ::= 'null' | TypeAndValue
3832bool LLParser::ParseMDNodeVector(SmallVectorImpl<Value*> &Elts) {
Nick Lewycky21cc4462009-04-04 07:22:01 +00003833 do {
Devang Pateldb5e9002009-07-23 01:36:16 +00003834 Value *V = 0;
Chris Lattner442ffa12009-12-29 21:53:55 +00003835 // FIXME: REWRITE.
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();
Chris Lattner442ffa12009-12-29 21:53:55 +00003844 MDNode *Node = 0;
Devang Patele54abc92009-07-22 17:43:22 +00003845 if (!ParseMDNode(Node))
3846 V = Node;
3847 else {
Chris Lattner442ffa12009-12-29 21:53:55 +00003848 MDString *MDS = 0;
Devang Patele54abc92009-07-22 17:43:22 +00003849 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}