blob: c55a16520f91e20cf9db7f4ff5fd3f6243874ffc [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() {
Chris Lattner449c3102010-04-01 05:14:45 +000042 // Handle any instruction metadata forward references.
43 if (!ForwardRefInstMetadata.empty()) {
44 for (DenseMap<Instruction*, std::vector<MDRef> >::iterator
45 I = ForwardRefInstMetadata.begin(), E = ForwardRefInstMetadata.end();
46 I != E; ++I) {
47 Instruction *Inst = I->first;
48 const std::vector<MDRef> &MDList = I->second;
49
50 for (unsigned i = 0, e = MDList.size(); i != e; ++i) {
51 unsigned SlotNo = MDList[i].MDSlot;
52
53 if (SlotNo >= NumberedMetadata.size() || NumberedMetadata[SlotNo] == 0)
54 return Error(MDList[i].Loc, "use of undefined metadata '!" +
55 utostr(SlotNo) + "'");
56 Inst->setMetadata(MDList[i].MDKind, NumberedMetadata[SlotNo]);
57 }
58 }
59 ForwardRefInstMetadata.clear();
60 }
61
62
Victor Hernandez68afa542009-10-21 19:11:40 +000063 // Update auto-upgraded malloc calls to "malloc".
Chris Lattnercf4d2f12009-10-18 05:09:15 +000064 // FIXME: Remove in LLVM 3.0.
Victor Hernandez13ad5aa2009-10-17 00:00:19 +000065 if (MallocF) {
66 MallocF->setName("malloc");
67 // If setName() does not set the name to "malloc", then there is already a
68 // declaration of "malloc". In that case, iterate over all calls to MallocF
69 // and get them to call the declared "malloc" instead.
70 if (MallocF->getName() != "malloc") {
Chris Lattner09d9ef42009-10-28 03:39:23 +000071 Constant *RealMallocF = M->getFunction("malloc");
Victor Hernandez68afa542009-10-21 19:11:40 +000072 if (RealMallocF->getType() != MallocF->getType())
73 RealMallocF = ConstantExpr::getBitCast(RealMallocF, MallocF->getType());
74 MallocF->replaceAllUsesWith(RealMallocF);
Victor Hernandez13ad5aa2009-10-17 00:00:19 +000075 MallocF->eraseFromParent();
76 MallocF = NULL;
77 }
78 }
Chris Lattner09d9ef42009-10-28 03:39:23 +000079
80
81 // If there are entries in ForwardRefBlockAddresses at this point, they are
82 // references after the function was defined. Resolve those now.
83 while (!ForwardRefBlockAddresses.empty()) {
84 // Okay, we are referencing an already-parsed function, resolve them now.
85 Function *TheFn = 0;
86 const ValID &Fn = ForwardRefBlockAddresses.begin()->first;
87 if (Fn.Kind == ValID::t_GlobalName)
88 TheFn = M->getFunction(Fn.StrVal);
89 else if (Fn.UIntVal < NumberedVals.size())
90 TheFn = dyn_cast<Function>(NumberedVals[Fn.UIntVal]);
91
92 if (TheFn == 0)
93 return Error(Fn.Loc, "unknown function referenced by blockaddress");
94
95 // Resolve all these references.
96 if (ResolveForwardRefBlockAddresses(TheFn,
97 ForwardRefBlockAddresses.begin()->second,
98 0))
99 return true;
100
101 ForwardRefBlockAddresses.erase(ForwardRefBlockAddresses.begin());
102 }
103
104
Chris Lattnerdf986172009-01-02 07:01:27 +0000105 if (!ForwardRefTypes.empty())
106 return Error(ForwardRefTypes.begin()->second.second,
107 "use of undefined type named '" +
108 ForwardRefTypes.begin()->first + "'");
109 if (!ForwardRefTypeIDs.empty())
110 return Error(ForwardRefTypeIDs.begin()->second.second,
111 "use of undefined type '%" +
112 utostr(ForwardRefTypeIDs.begin()->first) + "'");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000113
Chris Lattnerdf986172009-01-02 07:01:27 +0000114 if (!ForwardRefVals.empty())
115 return Error(ForwardRefVals.begin()->second.second,
116 "use of undefined value '@" + ForwardRefVals.begin()->first +
117 "'");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000118
Chris Lattnerdf986172009-01-02 07:01:27 +0000119 if (!ForwardRefValIDs.empty())
120 return Error(ForwardRefValIDs.begin()->second.second,
121 "use of undefined value '@" +
122 utostr(ForwardRefValIDs.begin()->first) + "'");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000123
Devang Patel1c7eea62009-07-08 19:23:54 +0000124 if (!ForwardRefMDNodes.empty())
125 return Error(ForwardRefMDNodes.begin()->second.second,
126 "use of undefined metadata '!" +
127 utostr(ForwardRefMDNodes.begin()->first) + "'");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000128
Devang Patel1c7eea62009-07-08 19:23:54 +0000129
Chris Lattnerdf986172009-01-02 07:01:27 +0000130 // Look for intrinsic functions and CallInst that need to be upgraded
131 for (Module::iterator FI = M->begin(), FE = M->end(); FI != FE; )
132 UpgradeCallsToIntrinsic(FI++); // must be post-increment, as we remove
Daniel Dunbara279bc32009-09-20 02:20:51 +0000133
Devang Patele4b27562009-08-28 23:24:31 +0000134 // Check debug info intrinsics.
135 CheckDebugInfoIntrinsics(M);
Chris Lattnerdf986172009-01-02 07:01:27 +0000136 return false;
137}
138
Chris Lattner09d9ef42009-10-28 03:39:23 +0000139bool LLParser::ResolveForwardRefBlockAddresses(Function *TheFn,
140 std::vector<std::pair<ValID, GlobalValue*> > &Refs,
141 PerFunctionState *PFS) {
142 // Loop over all the references, resolving them.
143 for (unsigned i = 0, e = Refs.size(); i != e; ++i) {
144 BasicBlock *Res;
Chris Lattnercdfc9402009-11-01 01:27:45 +0000145 if (PFS) {
Chris Lattner09d9ef42009-10-28 03:39:23 +0000146 if (Refs[i].first.Kind == ValID::t_LocalName)
147 Res = PFS->GetBB(Refs[i].first.StrVal, Refs[i].first.Loc);
Chris Lattnercdfc9402009-11-01 01:27:45 +0000148 else
Chris Lattner09d9ef42009-10-28 03:39:23 +0000149 Res = PFS->GetBB(Refs[i].first.UIntVal, Refs[i].first.Loc);
150 } else if (Refs[i].first.Kind == ValID::t_LocalID) {
151 return Error(Refs[i].first.Loc,
Chris Lattneree7644d2009-11-02 18:28:45 +0000152 "cannot take address of numeric label after the function is defined");
Chris Lattner09d9ef42009-10-28 03:39:23 +0000153 } else {
154 Res = dyn_cast_or_null<BasicBlock>(
155 TheFn->getValueSymbolTable().lookup(Refs[i].first.StrVal));
156 }
157
Chris Lattnercdfc9402009-11-01 01:27:45 +0000158 if (Res == 0)
Chris Lattner09d9ef42009-10-28 03:39:23 +0000159 return Error(Refs[i].first.Loc,
160 "referenced value is not a basic block");
161
162 // Get the BlockAddress for this and update references to use it.
163 BlockAddress *BA = BlockAddress::get(TheFn, Res);
164 Refs[i].second->replaceAllUsesWith(BA);
165 Refs[i].second->eraseFromParent();
166 }
167 return false;
168}
169
170
Chris Lattnerdf986172009-01-02 07:01:27 +0000171//===----------------------------------------------------------------------===//
172// Top-Level Entities
173//===----------------------------------------------------------------------===//
174
175bool LLParser::ParseTopLevelEntities() {
Chris Lattnerdf986172009-01-02 07:01:27 +0000176 while (1) {
177 switch (Lex.getKind()) {
178 default: return TokError("expected top-level entity");
179 case lltok::Eof: return false;
180 //case lltok::kw_define:
181 case lltok::kw_declare: if (ParseDeclare()) return true; break;
182 case lltok::kw_define: if (ParseDefine()) return true; break;
183 case lltok::kw_module: if (ParseModuleAsm()) return true; break;
184 case lltok::kw_target: if (ParseTargetDefinition()) return true; break;
185 case lltok::kw_deplibs: if (ParseDepLibs()) return true; break;
186 case lltok::kw_type: if (ParseUnnamedType()) return true; break;
Dan Gohman3845e502009-08-12 23:32:33 +0000187 case lltok::LocalVarID: if (ParseUnnamedType()) return true; break;
Chris Lattnerdf986172009-01-02 07:01:27 +0000188 case lltok::StringConstant: // FIXME: REMOVE IN LLVM 3.0
189 case lltok::LocalVar: if (ParseNamedType()) return true; break;
Dan Gohman3845e502009-08-12 23:32:33 +0000190 case lltok::GlobalID: if (ParseUnnamedGlobal()) return true; break;
Chris Lattnerdf986172009-01-02 07:01:27 +0000191 case lltok::GlobalVar: if (ParseNamedGlobal()) return true; break;
Chris Lattnere434d272009-12-30 04:56:59 +0000192 case lltok::exclaim: if (ParseStandaloneMetadata()) return true; break;
Chris Lattner1d928312009-12-30 05:02:06 +0000193 case lltok::MetadataVar: if (ParseNamedMetadata()) return true; break;
Chris Lattnerdf986172009-01-02 07:01:27 +0000194
195 // The Global variable production with no name can have many different
196 // optional leading prefixes, the production is:
197 // GlobalVar ::= OptionalLinkage OptionalVisibility OptionalThreadLocal
198 // OptionalAddrSpace ('constant'|'global') ...
Bill Wendling5e721d72010-07-01 21:55:59 +0000199 case lltok::kw_private: // OptionalLinkage
200 case lltok::kw_linker_private: // OptionalLinkage
201 case lltok::kw_linker_private_weak: // OptionalLinkage
202 case lltok::kw_internal: // OptionalLinkage
203 case lltok::kw_weak: // OptionalLinkage
204 case lltok::kw_weak_odr: // OptionalLinkage
205 case lltok::kw_linkonce: // OptionalLinkage
206 case lltok::kw_linkonce_odr: // OptionalLinkage
207 case lltok::kw_appending: // OptionalLinkage
208 case lltok::kw_dllexport: // OptionalLinkage
209 case lltok::kw_common: // OptionalLinkage
210 case lltok::kw_dllimport: // OptionalLinkage
211 case lltok::kw_extern_weak: // OptionalLinkage
212 case lltok::kw_external: { // OptionalLinkage
Chris Lattnerdf986172009-01-02 07:01:27 +0000213 unsigned Linkage, Visibility;
214 if (ParseOptionalLinkage(Linkage) ||
215 ParseOptionalVisibility(Visibility) ||
Chris Lattnereeb4a842009-07-02 23:08:13 +0000216 ParseGlobal("", SMLoc(), Linkage, true, Visibility))
Chris Lattnerdf986172009-01-02 07:01:27 +0000217 return true;
218 break;
219 }
220 case lltok::kw_default: // OptionalVisibility
221 case lltok::kw_hidden: // OptionalVisibility
222 case lltok::kw_protected: { // OptionalVisibility
223 unsigned Visibility;
224 if (ParseOptionalVisibility(Visibility) ||
Chris Lattnereeb4a842009-07-02 23:08:13 +0000225 ParseGlobal("", SMLoc(), 0, false, Visibility))
Chris Lattnerdf986172009-01-02 07:01:27 +0000226 return true;
227 break;
228 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000229
Chris Lattnerdf986172009-01-02 07:01:27 +0000230 case lltok::kw_thread_local: // OptionalThreadLocal
231 case lltok::kw_addrspace: // OptionalAddrSpace
232 case lltok::kw_constant: // GlobalType
233 case lltok::kw_global: // GlobalType
Chris Lattnereeb4a842009-07-02 23:08:13 +0000234 if (ParseGlobal("", SMLoc(), 0, false, 0)) return true;
Chris Lattnerdf986172009-01-02 07:01:27 +0000235 break;
236 }
237 }
238}
239
240
241/// toplevelentity
242/// ::= 'module' 'asm' STRINGCONSTANT
243bool LLParser::ParseModuleAsm() {
244 assert(Lex.getKind() == lltok::kw_module);
245 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +0000246
247 std::string AsmStr;
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000248 if (ParseToken(lltok::kw_asm, "expected 'module asm'") ||
249 ParseStringConstant(AsmStr)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000250
Chris Lattnerdf986172009-01-02 07:01:27 +0000251 const std::string &AsmSoFar = M->getModuleInlineAsm();
252 if (AsmSoFar.empty())
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000253 M->setModuleInlineAsm(AsmStr);
Chris Lattnerdf986172009-01-02 07:01:27 +0000254 else
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000255 M->setModuleInlineAsm(AsmSoFar+"\n"+AsmStr);
Chris Lattnerdf986172009-01-02 07:01:27 +0000256 return false;
257}
258
259/// toplevelentity
260/// ::= 'target' 'triple' '=' STRINGCONSTANT
261/// ::= 'target' 'datalayout' '=' STRINGCONSTANT
262bool LLParser::ParseTargetDefinition() {
263 assert(Lex.getKind() == lltok::kw_target);
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000264 std::string Str;
Chris Lattnerdf986172009-01-02 07:01:27 +0000265 switch (Lex.Lex()) {
266 default: return TokError("unknown target property");
267 case lltok::kw_triple:
268 Lex.Lex();
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000269 if (ParseToken(lltok::equal, "expected '=' after target triple") ||
270 ParseStringConstant(Str))
Chris Lattnerdf986172009-01-02 07:01:27 +0000271 return true;
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000272 M->setTargetTriple(Str);
Chris Lattnerdf986172009-01-02 07:01:27 +0000273 return false;
274 case lltok::kw_datalayout:
275 Lex.Lex();
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000276 if (ParseToken(lltok::equal, "expected '=' after target datalayout") ||
277 ParseStringConstant(Str))
Chris Lattnerdf986172009-01-02 07:01:27 +0000278 return true;
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000279 M->setDataLayout(Str);
Chris Lattnerdf986172009-01-02 07:01:27 +0000280 return false;
281 }
282}
283
284/// toplevelentity
285/// ::= 'deplibs' '=' '[' ']'
286/// ::= 'deplibs' '=' '[' STRINGCONSTANT (',' STRINGCONSTANT)* ']'
287bool LLParser::ParseDepLibs() {
288 assert(Lex.getKind() == lltok::kw_deplibs);
Chris Lattnerdf986172009-01-02 07:01:27 +0000289 Lex.Lex();
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000290 if (ParseToken(lltok::equal, "expected '=' after deplibs") ||
291 ParseToken(lltok::lsquare, "expected '=' after deplibs"))
292 return true;
293
294 if (EatIfPresent(lltok::rsquare))
295 return false;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000296
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000297 std::string Str;
298 if (ParseStringConstant(Str)) return true;
299 M->addLibrary(Str);
300
301 while (EatIfPresent(lltok::comma)) {
302 if (ParseStringConstant(Str)) return true;
303 M->addLibrary(Str);
304 }
305
306 return ParseToken(lltok::rsquare, "expected ']' at end of list");
Chris Lattnerdf986172009-01-02 07:01:27 +0000307}
308
Dan Gohman3845e502009-08-12 23:32:33 +0000309/// ParseUnnamedType:
Chris Lattnerdf986172009-01-02 07:01:27 +0000310/// ::= 'type' type
Dan Gohman3845e502009-08-12 23:32:33 +0000311/// ::= LocalVarID '=' 'type' type
Chris Lattnerdf986172009-01-02 07:01:27 +0000312bool LLParser::ParseUnnamedType() {
Dan Gohman3845e502009-08-12 23:32:33 +0000313 unsigned TypeID = NumberedTypes.size();
314
315 // Handle the LocalVarID form.
316 if (Lex.getKind() == lltok::LocalVarID) {
317 if (Lex.getUIntVal() != TypeID)
318 return Error(Lex.getLoc(), "type expected to be numbered '%" +
319 utostr(TypeID) + "'");
320 Lex.Lex(); // eat LocalVarID;
321
322 if (ParseToken(lltok::equal, "expected '=' after name"))
323 return true;
324 }
325
Chris Lattnerdf986172009-01-02 07:01:27 +0000326 LocTy TypeLoc = Lex.getLoc();
Chris Lattnerf7240de2010-04-10 18:01:25 +0000327 if (ParseToken(lltok::kw_type, "expected 'type' after '='")) return true;
Chris Lattnerdf986172009-01-02 07:01:27 +0000328
Owen Anderson1d0be152009-08-13 21:58:54 +0000329 PATypeHolder Ty(Type::getVoidTy(Context));
Chris Lattnerdf986172009-01-02 07:01:27 +0000330 if (ParseType(Ty)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000331
Chris Lattnerdf986172009-01-02 07:01:27 +0000332 // See if this type was previously referenced.
333 std::map<unsigned, std::pair<PATypeHolder, LocTy> >::iterator
334 FI = ForwardRefTypeIDs.find(TypeID);
335 if (FI != ForwardRefTypeIDs.end()) {
Chris Lattnerc38daba2009-01-05 18:19:46 +0000336 if (FI->second.first.get() == Ty)
337 return Error(TypeLoc, "self referential type is invalid");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000338
Chris Lattnerdf986172009-01-02 07:01:27 +0000339 cast<DerivedType>(FI->second.first.get())->refineAbstractTypeTo(Ty);
340 Ty = FI->second.first.get();
341 ForwardRefTypeIDs.erase(FI);
342 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000343
Chris Lattnerdf986172009-01-02 07:01:27 +0000344 NumberedTypes.push_back(Ty);
Daniel Dunbara279bc32009-09-20 02:20:51 +0000345
Chris Lattnerdf986172009-01-02 07:01:27 +0000346 return false;
347}
348
349/// toplevelentity
350/// ::= LocalVar '=' 'type' type
351bool LLParser::ParseNamedType() {
352 std::string Name = Lex.getStrVal();
353 LocTy NameLoc = Lex.getLoc();
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000354 Lex.Lex(); // eat LocalVar.
Daniel Dunbara279bc32009-09-20 02:20:51 +0000355
Owen Anderson1d0be152009-08-13 21:58:54 +0000356 PATypeHolder Ty(Type::getVoidTy(Context));
Daniel Dunbara279bc32009-09-20 02:20:51 +0000357
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000358 if (ParseToken(lltok::equal, "expected '=' after name") ||
359 ParseToken(lltok::kw_type, "expected 'type' after name") ||
360 ParseType(Ty))
361 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000362
Chris Lattnerdf986172009-01-02 07:01:27 +0000363 // Set the type name, checking for conflicts as we do so.
364 bool AlreadyExists = M->addTypeName(Name, Ty);
365 if (!AlreadyExists) return false;
366
367 // See if this type is a forward reference. We need to eagerly resolve
368 // types to allow recursive type redefinitions below.
369 std::map<std::string, std::pair<PATypeHolder, LocTy> >::iterator
370 FI = ForwardRefTypes.find(Name);
371 if (FI != ForwardRefTypes.end()) {
Chris Lattnerc38daba2009-01-05 18:19:46 +0000372 if (FI->second.first.get() == Ty)
373 return Error(NameLoc, "self referential type is invalid");
374
Chris Lattnerdf986172009-01-02 07:01:27 +0000375 cast<DerivedType>(FI->second.first.get())->refineAbstractTypeTo(Ty);
376 Ty = FI->second.first.get();
377 ForwardRefTypes.erase(FI);
378 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000379
Chris Lattnerdf986172009-01-02 07:01:27 +0000380 // Inserting a name that is already defined, get the existing name.
381 const Type *Existing = M->getTypeByName(Name);
382 assert(Existing && "Conflict but no matching type?!");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000383
Chris Lattnerdf986172009-01-02 07:01:27 +0000384 // Otherwise, this is an attempt to redefine a type. That's okay if
385 // the redefinition is identical to the original.
386 // FIXME: REMOVE REDEFINITIONS IN LLVM 3.0
387 if (Existing == Ty) return false;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000388
Chris Lattnerdf986172009-01-02 07:01:27 +0000389 // Any other kind of (non-equivalent) redefinition is an error.
390 return Error(NameLoc, "redefinition of type named '" + Name + "' of type '" +
391 Ty->getDescription() + "'");
392}
393
394
395/// toplevelentity
396/// ::= 'declare' FunctionHeader
397bool LLParser::ParseDeclare() {
398 assert(Lex.getKind() == lltok::kw_declare);
399 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +0000400
Chris Lattnerdf986172009-01-02 07:01:27 +0000401 Function *F;
402 return ParseFunctionHeader(F, false);
403}
404
405/// toplevelentity
406/// ::= 'define' FunctionHeader '{' ...
407bool LLParser::ParseDefine() {
408 assert(Lex.getKind() == lltok::kw_define);
409 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +0000410
Chris Lattnerdf986172009-01-02 07:01:27 +0000411 Function *F;
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000412 return ParseFunctionHeader(F, true) ||
413 ParseFunctionBody(*F);
Chris Lattnerdf986172009-01-02 07:01:27 +0000414}
415
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000416/// ParseGlobalType
417/// ::= 'constant'
418/// ::= 'global'
Chris Lattnerdf986172009-01-02 07:01:27 +0000419bool LLParser::ParseGlobalType(bool &IsConstant) {
420 if (Lex.getKind() == lltok::kw_constant)
421 IsConstant = true;
422 else if (Lex.getKind() == lltok::kw_global)
423 IsConstant = false;
Duncan Sands35b51072009-02-10 16:24:55 +0000424 else {
425 IsConstant = false;
Chris Lattnerdf986172009-01-02 07:01:27 +0000426 return TokError("expected 'global' or 'constant'");
Duncan Sands35b51072009-02-10 16:24:55 +0000427 }
Chris Lattnerdf986172009-01-02 07:01:27 +0000428 Lex.Lex();
429 return false;
430}
431
Dan Gohman3845e502009-08-12 23:32:33 +0000432/// ParseUnnamedGlobal:
433/// OptionalVisibility ALIAS ...
434/// OptionalLinkage OptionalVisibility ... -> global variable
435/// GlobalID '=' OptionalVisibility ALIAS ...
436/// GlobalID '=' OptionalLinkage OptionalVisibility ... -> global variable
437bool LLParser::ParseUnnamedGlobal() {
438 unsigned VarID = NumberedVals.size();
439 std::string Name;
440 LocTy NameLoc = Lex.getLoc();
441
442 // Handle the GlobalID form.
443 if (Lex.getKind() == lltok::GlobalID) {
444 if (Lex.getUIntVal() != VarID)
445 return Error(Lex.getLoc(), "variable expected to be numbered '%" +
446 utostr(VarID) + "'");
447 Lex.Lex(); // eat GlobalID;
448
449 if (ParseToken(lltok::equal, "expected '=' after name"))
450 return true;
451 }
452
453 bool HasLinkage;
454 unsigned Linkage, Visibility;
455 if (ParseOptionalLinkage(Linkage, HasLinkage) ||
456 ParseOptionalVisibility(Visibility))
457 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000458
Dan Gohman3845e502009-08-12 23:32:33 +0000459 if (HasLinkage || Lex.getKind() != lltok::kw_alias)
460 return ParseGlobal(Name, NameLoc, Linkage, HasLinkage, Visibility);
461 return ParseAlias(Name, NameLoc, Visibility);
462}
463
Chris Lattnerdf986172009-01-02 07:01:27 +0000464/// ParseNamedGlobal:
465/// GlobalVar '=' OptionalVisibility ALIAS ...
466/// GlobalVar '=' OptionalLinkage OptionalVisibility ... -> global variable
467bool LLParser::ParseNamedGlobal() {
468 assert(Lex.getKind() == lltok::GlobalVar);
469 LocTy NameLoc = Lex.getLoc();
470 std::string Name = Lex.getStrVal();
471 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +0000472
Chris Lattnerdf986172009-01-02 07:01:27 +0000473 bool HasLinkage;
474 unsigned Linkage, Visibility;
475 if (ParseToken(lltok::equal, "expected '=' in global variable") ||
476 ParseOptionalLinkage(Linkage, HasLinkage) ||
477 ParseOptionalVisibility(Visibility))
478 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000479
Chris Lattnerdf986172009-01-02 07:01:27 +0000480 if (HasLinkage || Lex.getKind() != lltok::kw_alias)
481 return ParseGlobal(Name, NameLoc, Linkage, HasLinkage, Visibility);
482 return ParseAlias(Name, NameLoc, Visibility);
483}
484
Devang Patel256be962009-07-20 19:00:08 +0000485// MDString:
486// ::= '!' STRINGCONSTANT
Chris Lattner442ffa12009-12-29 21:53:55 +0000487bool LLParser::ParseMDString(MDString *&Result) {
Devang Patel256be962009-07-20 19:00:08 +0000488 std::string Str;
489 if (ParseStringConstant(Str)) return true;
Chris Lattner442ffa12009-12-29 21:53:55 +0000490 Result = MDString::get(Context, Str);
Devang Patel256be962009-07-20 19:00:08 +0000491 return false;
492}
493
494// MDNode:
495// ::= '!' MDNodeNumber
Chris Lattner449c3102010-04-01 05:14:45 +0000496//
497/// This version of ParseMDNodeID returns the slot number and null in the case
498/// of a forward reference.
499bool LLParser::ParseMDNodeID(MDNode *&Result, unsigned &SlotNo) {
500 // !{ ..., !42, ... }
501 if (ParseUInt32(SlotNo)) return true;
502
503 // Check existing MDNode.
504 if (SlotNo < NumberedMetadata.size() && NumberedMetadata[SlotNo] != 0)
505 Result = NumberedMetadata[SlotNo];
506 else
507 Result = 0;
508 return false;
509}
510
Chris Lattner4a72efc2009-12-30 04:15:23 +0000511bool LLParser::ParseMDNodeID(MDNode *&Result) {
Devang Patel256be962009-07-20 19:00:08 +0000512 // !{ ..., !42, ... }
513 unsigned MID = 0;
Chris Lattner449c3102010-04-01 05:14:45 +0000514 if (ParseMDNodeID(Result, MID)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000515
Chris Lattner449c3102010-04-01 05:14:45 +0000516 // If not a forward reference, just return it now.
517 if (Result) return false;
Devang Patel256be962009-07-20 19:00:08 +0000518
Chris Lattner449c3102010-04-01 05:14:45 +0000519 // Otherwise, create MDNode forward reference.
Chris Lattner42991ee2009-12-29 22:01:50 +0000520
521 // FIXME: This is not unique enough!
Devang Patel256be962009-07-20 19:00:08 +0000522 std::string FwdRefName = "llvm.mdnode.fwdref." + utostr(MID);
Benjamin Kramerc17300f2009-12-29 22:17:06 +0000523 Value *V = MDString::get(Context, FwdRefName);
Chris Lattner42991ee2009-12-29 22:01:50 +0000524 MDNode *FwdNode = MDNode::get(Context, &V, 1);
Devang Patel256be962009-07-20 19:00:08 +0000525 ForwardRefMDNodes[MID] = std::make_pair(FwdNode, Lex.getLoc());
Chris Lattner0834e6a2009-12-30 04:51:58 +0000526
527 if (NumberedMetadata.size() <= MID)
528 NumberedMetadata.resize(MID+1);
529 NumberedMetadata[MID] = FwdNode;
Chris Lattner442ffa12009-12-29 21:53:55 +0000530 Result = FwdNode;
Devang Patel256be962009-07-20 19:00:08 +0000531 return false;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000532}
Devang Patel256be962009-07-20 19:00:08 +0000533
Chris Lattner84d03b12009-12-29 22:35:39 +0000534/// ParseNamedMetadata:
Devang Pateleff2ab62009-07-29 00:34:02 +0000535/// !foo = !{ !1, !2 }
536bool LLParser::ParseNamedMetadata() {
Chris Lattner1d928312009-12-30 05:02:06 +0000537 assert(Lex.getKind() == lltok::MetadataVar);
Devang Pateleff2ab62009-07-29 00:34:02 +0000538 std::string Name = Lex.getStrVal();
Chris Lattner1d928312009-12-30 05:02:06 +0000539 Lex.Lex();
Devang Pateleff2ab62009-07-29 00:34:02 +0000540
Chris Lattner84d03b12009-12-29 22:35:39 +0000541 if (ParseToken(lltok::equal, "expected '=' here") ||
Chris Lattnere434d272009-12-30 04:56:59 +0000542 ParseToken(lltok::exclaim, "Expected '!' here") ||
Chris Lattner84d03b12009-12-29 22:35:39 +0000543 ParseToken(lltok::lbrace, "Expected '{' here"))
Devang Pateleff2ab62009-07-29 00:34:02 +0000544 return true;
545
Dan Gohman17aa92c2010-07-21 23:38:33 +0000546 NamedMDNode *NMD = M->getOrInsertNamedMetadata(Name);
Dan Gohman9dc8ae12010-07-13 19:42:44 +0000547 if (Lex.getKind() != lltok::rbrace)
548 do {
Dan Gohman9dc8ae12010-07-13 19:42:44 +0000549 if (ParseToken(lltok::exclaim, "Expected '!' here"))
550 return true;
Chris Lattner442ffa12009-12-29 21:53:55 +0000551
Dan Gohman9dc8ae12010-07-13 19:42:44 +0000552 MDNode *N = 0;
553 if (ParseMDNodeID(N)) return true;
Dan Gohman17aa92c2010-07-21 23:38:33 +0000554 NMD->addOperand(N);
Dan Gohman9dc8ae12010-07-13 19:42:44 +0000555 } while (EatIfPresent(lltok::comma));
Devang Pateleff2ab62009-07-29 00:34:02 +0000556
557 if (ParseToken(lltok::rbrace, "expected end of metadata node"))
558 return true;
559
Devang Pateleff2ab62009-07-29 00:34:02 +0000560 return false;
561}
562
Devang Patel923078c2009-07-01 19:21:12 +0000563/// ParseStandaloneMetadata:
Daniel Dunbara279bc32009-09-20 02:20:51 +0000564/// !42 = !{...}
Devang Patel923078c2009-07-01 19:21:12 +0000565bool LLParser::ParseStandaloneMetadata() {
Chris Lattnere434d272009-12-30 04:56:59 +0000566 assert(Lex.getKind() == lltok::exclaim);
Devang Patel923078c2009-07-01 19:21:12 +0000567 Lex.Lex();
568 unsigned MetadataID = 0;
Devang Patel923078c2009-07-01 19:21:12 +0000569
570 LocTy TyLoc;
Owen Anderson1d0be152009-08-13 21:58:54 +0000571 PATypeHolder Ty(Type::getVoidTy(Context));
Devang Patel104cf9e2009-07-23 01:07:34 +0000572 SmallVector<Value *, 16> Elts;
Chris Lattner3f5132a2009-12-29 22:40:21 +0000573 if (ParseUInt32(MetadataID) ||
574 ParseToken(lltok::equal, "expected '=' here") ||
575 ParseType(Ty, TyLoc) ||
Chris Lattnere434d272009-12-30 04:56:59 +0000576 ParseToken(lltok::exclaim, "Expected '!' here") ||
Chris Lattner3f5132a2009-12-29 22:40:21 +0000577 ParseToken(lltok::lbrace, "Expected '{' here") ||
Victor Hernandez24e64df2010-01-10 07:14:18 +0000578 ParseMDNodeVector(Elts, NULL) ||
Chris Lattner3f5132a2009-12-29 22:40:21 +0000579 ParseToken(lltok::rbrace, "expected end of metadata node"))
Devang Patel104cf9e2009-07-23 01:07:34 +0000580 return true;
581
Owen Anderson647e3012009-07-31 21:35:40 +0000582 MDNode *Init = MDNode::get(Context, Elts.data(), Elts.size());
Chris Lattner0834e6a2009-12-30 04:51:58 +0000583
584 // See if this was forward referenced, if so, handle it.
Chris Lattnere80250e2009-12-29 21:43:58 +0000585 std::map<unsigned, std::pair<TrackingVH<MDNode>, LocTy> >::iterator
Devang Patel1c7eea62009-07-08 19:23:54 +0000586 FI = ForwardRefMDNodes.find(MetadataID);
587 if (FI != ForwardRefMDNodes.end()) {
Chris Lattnere80250e2009-12-29 21:43:58 +0000588 FI->second.first->replaceAllUsesWith(Init);
Devang Patel1c7eea62009-07-08 19:23:54 +0000589 ForwardRefMDNodes.erase(FI);
Chris Lattner0834e6a2009-12-30 04:51:58 +0000590
591 assert(NumberedMetadata[MetadataID] == Init && "Tracking VH didn't work");
592 } else {
593 if (MetadataID >= NumberedMetadata.size())
594 NumberedMetadata.resize(MetadataID+1);
595
596 if (NumberedMetadata[MetadataID] != 0)
597 return TokError("Metadata id is already used");
598 NumberedMetadata[MetadataID] = Init;
Devang Patel1c7eea62009-07-08 19:23:54 +0000599 }
600
Devang Patel923078c2009-07-01 19:21:12 +0000601 return false;
602}
603
Chris Lattnerdf986172009-01-02 07:01:27 +0000604/// ParseAlias:
605/// ::= GlobalVar '=' OptionalVisibility 'alias' OptionalLinkage Aliasee
606/// Aliasee
Chris Lattner040f7582009-04-25 21:26:00 +0000607/// ::= TypeAndValue
608/// ::= 'bitcast' '(' TypeAndValue 'to' Type ')'
Dan Gohmandd8004d2009-07-27 21:53:46 +0000609/// ::= 'getelementptr' 'inbounds'? '(' ... ')'
Chris Lattnerdf986172009-01-02 07:01:27 +0000610///
611/// Everything through visibility has already been parsed.
612///
613bool LLParser::ParseAlias(const std::string &Name, LocTy NameLoc,
614 unsigned Visibility) {
615 assert(Lex.getKind() == lltok::kw_alias);
616 Lex.Lex();
617 unsigned Linkage;
618 LocTy LinkageLoc = Lex.getLoc();
619 if (ParseOptionalLinkage(Linkage))
620 return true;
621
622 if (Linkage != GlobalValue::ExternalLinkage &&
Duncan Sands667d4b82009-03-07 15:45:40 +0000623 Linkage != GlobalValue::WeakAnyLinkage &&
624 Linkage != GlobalValue::WeakODRLinkage &&
Rafael Espindolabb46f522009-01-15 20:18:42 +0000625 Linkage != GlobalValue::InternalLinkage &&
Bill Wendling3d10a5a2009-07-20 01:03:30 +0000626 Linkage != GlobalValue::PrivateLinkage &&
Bill Wendling5e721d72010-07-01 21:55:59 +0000627 Linkage != GlobalValue::LinkerPrivateLinkage &&
628 Linkage != GlobalValue::LinkerPrivateWeakLinkage)
Chris Lattnerdf986172009-01-02 07:01:27 +0000629 return Error(LinkageLoc, "invalid linkage type for alias");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000630
Chris Lattnerdf986172009-01-02 07:01:27 +0000631 Constant *Aliasee;
632 LocTy AliaseeLoc = Lex.getLoc();
Chris Lattner040f7582009-04-25 21:26:00 +0000633 if (Lex.getKind() != lltok::kw_bitcast &&
634 Lex.getKind() != lltok::kw_getelementptr) {
Chris Lattnerdf986172009-01-02 07:01:27 +0000635 if (ParseGlobalTypeAndValue(Aliasee)) return true;
636 } else {
637 // The bitcast dest type is not present, it is implied by the dest type.
638 ValID ID;
639 if (ParseValID(ID)) return true;
640 if (ID.Kind != ValID::t_Constant)
641 return Error(AliaseeLoc, "invalid aliasee");
642 Aliasee = ID.ConstantVal;
643 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000644
Duncan Sands1df98592010-02-16 11:11:14 +0000645 if (!Aliasee->getType()->isPointerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +0000646 return Error(AliaseeLoc, "alias must have pointer type");
647
648 // Okay, create the alias but do not insert it into the module yet.
649 GlobalAlias* GA = new GlobalAlias(Aliasee->getType(),
650 (GlobalValue::LinkageTypes)Linkage, Name,
651 Aliasee);
652 GA->setVisibility((GlobalValue::VisibilityTypes)Visibility);
Daniel Dunbara279bc32009-09-20 02:20:51 +0000653
Chris Lattnerdf986172009-01-02 07:01:27 +0000654 // See if this value already exists in the symbol table. If so, it is either
655 // a redefinition or a definition of a forward reference.
Chris Lattner1d871c52009-10-25 23:22:50 +0000656 if (GlobalValue *Val = M->getNamedValue(Name)) {
Chris Lattnerdf986172009-01-02 07:01:27 +0000657 // See if this was a redefinition. If so, there is no entry in
658 // ForwardRefVals.
659 std::map<std::string, std::pair<GlobalValue*, LocTy> >::iterator
660 I = ForwardRefVals.find(Name);
661 if (I == ForwardRefVals.end())
662 return Error(NameLoc, "redefinition of global named '@" + Name + "'");
663
664 // Otherwise, this was a definition of forward ref. Verify that types
665 // agree.
666 if (Val->getType() != GA->getType())
667 return Error(NameLoc,
668 "forward reference and definition of alias have different types");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000669
Chris Lattnerdf986172009-01-02 07:01:27 +0000670 // If they agree, just RAUW the old value with the alias and remove the
671 // forward ref info.
672 Val->replaceAllUsesWith(GA);
673 Val->eraseFromParent();
674 ForwardRefVals.erase(I);
675 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000676
Chris Lattnerdf986172009-01-02 07:01:27 +0000677 // Insert into the module, we know its name won't collide now.
678 M->getAliasList().push_back(GA);
679 assert(GA->getNameStr() == Name && "Should not be a name conflict!");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000680
Chris Lattnerdf986172009-01-02 07:01:27 +0000681 return false;
682}
683
684/// ParseGlobal
685/// ::= GlobalVar '=' OptionalLinkage OptionalVisibility OptionalThreadLocal
686/// OptionalAddrSpace GlobalType Type Const
687/// ::= OptionalLinkage OptionalVisibility OptionalThreadLocal
688/// OptionalAddrSpace GlobalType Type Const
689///
690/// Everything through visibility has been parsed already.
691///
692bool LLParser::ParseGlobal(const std::string &Name, LocTy NameLoc,
693 unsigned Linkage, bool HasLinkage,
694 unsigned Visibility) {
695 unsigned AddrSpace;
696 bool ThreadLocal, IsConstant;
697 LocTy TyLoc;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000698
Owen Anderson1d0be152009-08-13 21:58:54 +0000699 PATypeHolder Ty(Type::getVoidTy(Context));
Chris Lattnerdf986172009-01-02 07:01:27 +0000700 if (ParseOptionalToken(lltok::kw_thread_local, ThreadLocal) ||
701 ParseOptionalAddrSpace(AddrSpace) ||
702 ParseGlobalType(IsConstant) ||
703 ParseType(Ty, TyLoc))
704 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000705
Chris Lattnerdf986172009-01-02 07:01:27 +0000706 // If the linkage is specified and is external, then no initializer is
707 // present.
708 Constant *Init = 0;
709 if (!HasLinkage || (Linkage != GlobalValue::DLLImportLinkage &&
Duncan Sands5f4ee1f2009-03-11 08:08:06 +0000710 Linkage != GlobalValue::ExternalWeakLinkage &&
Chris Lattnerdf986172009-01-02 07:01:27 +0000711 Linkage != GlobalValue::ExternalLinkage)) {
712 if (ParseGlobalValue(Ty, Init))
713 return true;
714 }
715
Duncan Sands1df98592010-02-16 11:11:14 +0000716 if (Ty->isFunctionTy() || Ty->isLabelTy())
Chris Lattner4a2f1122009-02-08 20:00:15 +0000717 return Error(TyLoc, "invalid type for global variable");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000718
Chris Lattnerdf986172009-01-02 07:01:27 +0000719 GlobalVariable *GV = 0;
720
721 // See if the global was forward referenced, if so, use the global.
Chris Lattner91dad872009-02-02 07:24:28 +0000722 if (!Name.empty()) {
Chris Lattner1d871c52009-10-25 23:22:50 +0000723 if (GlobalValue *GVal = M->getNamedValue(Name)) {
724 if (!ForwardRefVals.erase(Name) || !isa<GlobalValue>(GVal))
725 return Error(NameLoc, "redefinition of global '@" + Name + "'");
726 GV = cast<GlobalVariable>(GVal);
727 }
Chris Lattnerdf986172009-01-02 07:01:27 +0000728 } else {
729 std::map<unsigned, std::pair<GlobalValue*, LocTy> >::iterator
730 I = ForwardRefValIDs.find(NumberedVals.size());
731 if (I != ForwardRefValIDs.end()) {
732 GV = cast<GlobalVariable>(I->second.first);
733 ForwardRefValIDs.erase(I);
734 }
735 }
736
737 if (GV == 0) {
Daniel Dunbara279bc32009-09-20 02:20:51 +0000738 GV = new GlobalVariable(*M, Ty, false, GlobalValue::ExternalLinkage, 0,
Owen Andersone9b11b42009-07-08 19:03:57 +0000739 Name, 0, false, AddrSpace);
Chris Lattnerdf986172009-01-02 07:01:27 +0000740 } else {
741 if (GV->getType()->getElementType() != Ty)
742 return Error(TyLoc,
743 "forward reference and definition of global have different types");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000744
Chris Lattnerdf986172009-01-02 07:01:27 +0000745 // Move the forward-reference to the correct spot in the module.
746 M->getGlobalList().splice(M->global_end(), M->getGlobalList(), GV);
747 }
748
749 if (Name.empty())
750 NumberedVals.push_back(GV);
Daniel Dunbara279bc32009-09-20 02:20:51 +0000751
Chris Lattnerdf986172009-01-02 07:01:27 +0000752 // Set the parsed properties on the global.
753 if (Init)
754 GV->setInitializer(Init);
755 GV->setConstant(IsConstant);
756 GV->setLinkage((GlobalValue::LinkageTypes)Linkage);
757 GV->setVisibility((GlobalValue::VisibilityTypes)Visibility);
758 GV->setThreadLocal(ThreadLocal);
Daniel Dunbara279bc32009-09-20 02:20:51 +0000759
Chris Lattnerdf986172009-01-02 07:01:27 +0000760 // Parse attributes on the global.
761 while (Lex.getKind() == lltok::comma) {
762 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +0000763
Chris Lattnerdf986172009-01-02 07:01:27 +0000764 if (Lex.getKind() == lltok::kw_section) {
765 Lex.Lex();
766 GV->setSection(Lex.getStrVal());
767 if (ParseToken(lltok::StringConstant, "expected global section string"))
768 return true;
769 } else if (Lex.getKind() == lltok::kw_align) {
770 unsigned Alignment;
771 if (ParseOptionalAlignment(Alignment)) return true;
772 GV->setAlignment(Alignment);
773 } else {
774 TokError("unknown global variable property!");
775 }
776 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000777
Chris Lattnerdf986172009-01-02 07:01:27 +0000778 return false;
779}
780
781
782//===----------------------------------------------------------------------===//
783// GlobalValue Reference/Resolution Routines.
784//===----------------------------------------------------------------------===//
785
786/// GetGlobalVal - Get a value with the specified name or ID, creating a
787/// forward reference record if needed. This can return null if the value
788/// exists but does not have the right type.
789GlobalValue *LLParser::GetGlobalVal(const std::string &Name, const Type *Ty,
790 LocTy Loc) {
791 const PointerType *PTy = dyn_cast<PointerType>(Ty);
792 if (PTy == 0) {
793 Error(Loc, "global variable reference must have pointer type");
794 return 0;
795 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000796
Chris Lattnerdf986172009-01-02 07:01:27 +0000797 // Look this name up in the normal function symbol table.
798 GlobalValue *Val =
799 cast_or_null<GlobalValue>(M->getValueSymbolTable().lookup(Name));
Daniel Dunbara279bc32009-09-20 02:20:51 +0000800
Chris Lattnerdf986172009-01-02 07:01:27 +0000801 // If this is a forward reference for the value, see if we already created a
802 // forward ref record.
803 if (Val == 0) {
804 std::map<std::string, std::pair<GlobalValue*, LocTy> >::iterator
805 I = ForwardRefVals.find(Name);
806 if (I != ForwardRefVals.end())
807 Val = I->second.first;
808 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000809
Chris Lattnerdf986172009-01-02 07:01:27 +0000810 // If we have the value in the symbol table or fwd-ref table, return it.
811 if (Val) {
812 if (Val->getType() == Ty) return Val;
813 Error(Loc, "'@" + Name + "' defined with type '" +
814 Val->getType()->getDescription() + "'");
815 return 0;
816 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000817
Chris Lattnerdf986172009-01-02 07:01:27 +0000818 // Otherwise, create a new forward reference for this value and remember it.
819 GlobalValue *FwdVal;
Chris Lattner1e407c32009-01-08 19:05:36 +0000820 if (const FunctionType *FT = dyn_cast<FunctionType>(PTy->getElementType())) {
821 // Function types can return opaque but functions can't.
Duncan Sands47c51882010-02-16 14:50:09 +0000822 if (FT->getReturnType()->isOpaqueTy()) {
Chris Lattner1e407c32009-01-08 19:05:36 +0000823 Error(Loc, "function may not return opaque type");
824 return 0;
825 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000826
Duncan Sands5f4ee1f2009-03-11 08:08:06 +0000827 FwdVal = Function::Create(FT, GlobalValue::ExternalWeakLinkage, Name, M);
Chris Lattner1e407c32009-01-08 19:05:36 +0000828 } else {
Owen Andersone9b11b42009-07-08 19:03:57 +0000829 FwdVal = new GlobalVariable(*M, PTy->getElementType(), false,
830 GlobalValue::ExternalWeakLinkage, 0, Name);
Chris Lattner1e407c32009-01-08 19:05:36 +0000831 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000832
Chris Lattnerdf986172009-01-02 07:01:27 +0000833 ForwardRefVals[Name] = std::make_pair(FwdVal, Loc);
834 return FwdVal;
835}
836
837GlobalValue *LLParser::GetGlobalVal(unsigned ID, const Type *Ty, LocTy Loc) {
838 const PointerType *PTy = dyn_cast<PointerType>(Ty);
839 if (PTy == 0) {
840 Error(Loc, "global variable reference must have pointer type");
841 return 0;
842 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000843
Chris Lattnerdf986172009-01-02 07:01:27 +0000844 GlobalValue *Val = ID < NumberedVals.size() ? NumberedVals[ID] : 0;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000845
Chris Lattnerdf986172009-01-02 07:01:27 +0000846 // If this is a forward reference for the value, see if we already created a
847 // forward ref record.
848 if (Val == 0) {
849 std::map<unsigned, std::pair<GlobalValue*, LocTy> >::iterator
850 I = ForwardRefValIDs.find(ID);
851 if (I != ForwardRefValIDs.end())
852 Val = I->second.first;
853 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000854
Chris Lattnerdf986172009-01-02 07:01:27 +0000855 // If we have the value in the symbol table or fwd-ref table, return it.
856 if (Val) {
857 if (Val->getType() == Ty) return Val;
858 Error(Loc, "'@" + utostr(ID) + "' defined with type '" +
859 Val->getType()->getDescription() + "'");
860 return 0;
861 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000862
Chris Lattnerdf986172009-01-02 07:01:27 +0000863 // Otherwise, create a new forward reference for this value and remember it.
864 GlobalValue *FwdVal;
Chris Lattner830703b2009-01-05 18:27:50 +0000865 if (const FunctionType *FT = dyn_cast<FunctionType>(PTy->getElementType())) {
866 // Function types can return opaque but functions can't.
Duncan Sands47c51882010-02-16 14:50:09 +0000867 if (FT->getReturnType()->isOpaqueTy()) {
Chris Lattner0d8484f2009-01-05 18:56:52 +0000868 Error(Loc, "function may not return opaque type");
Chris Lattner830703b2009-01-05 18:27:50 +0000869 return 0;
870 }
Duncan Sands5f4ee1f2009-03-11 08:08:06 +0000871 FwdVal = Function::Create(FT, GlobalValue::ExternalWeakLinkage, "", M);
Chris Lattner830703b2009-01-05 18:27:50 +0000872 } else {
Owen Andersone9b11b42009-07-08 19:03:57 +0000873 FwdVal = new GlobalVariable(*M, PTy->getElementType(), false,
874 GlobalValue::ExternalWeakLinkage, 0, "");
Chris Lattner830703b2009-01-05 18:27:50 +0000875 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000876
Chris Lattnerdf986172009-01-02 07:01:27 +0000877 ForwardRefValIDs[ID] = std::make_pair(FwdVal, Loc);
878 return FwdVal;
879}
880
881
882//===----------------------------------------------------------------------===//
883// Helper Routines.
884//===----------------------------------------------------------------------===//
885
886/// ParseToken - If the current token has the specified kind, eat it and return
887/// success. Otherwise, emit the specified error and return failure.
888bool LLParser::ParseToken(lltok::Kind T, const char *ErrMsg) {
889 if (Lex.getKind() != T)
890 return TokError(ErrMsg);
891 Lex.Lex();
892 return false;
893}
894
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000895/// ParseStringConstant
896/// ::= StringConstant
897bool LLParser::ParseStringConstant(std::string &Result) {
898 if (Lex.getKind() != lltok::StringConstant)
899 return TokError("expected string constant");
900 Result = Lex.getStrVal();
901 Lex.Lex();
902 return false;
903}
904
905/// ParseUInt32
906/// ::= uint32
907bool LLParser::ParseUInt32(unsigned &Val) {
Chris Lattnerdf986172009-01-02 07:01:27 +0000908 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned())
909 return TokError("expected integer");
910 uint64_t Val64 = Lex.getAPSIntVal().getLimitedValue(0xFFFFFFFFULL+1);
911 if (Val64 != unsigned(Val64))
912 return TokError("expected 32-bit integer (too large)");
913 Val = Val64;
914 Lex.Lex();
915 return false;
916}
917
918
919/// ParseOptionalAddrSpace
920/// := /*empty*/
921/// := 'addrspace' '(' uint32 ')'
922bool LLParser::ParseOptionalAddrSpace(unsigned &AddrSpace) {
923 AddrSpace = 0;
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000924 if (!EatIfPresent(lltok::kw_addrspace))
Chris Lattnerdf986172009-01-02 07:01:27 +0000925 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +0000926 return ParseToken(lltok::lparen, "expected '(' in address space") ||
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000927 ParseUInt32(AddrSpace) ||
Chris Lattnerdf986172009-01-02 07:01:27 +0000928 ParseToken(lltok::rparen, "expected ')' in address space");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000929}
Chris Lattnerdf986172009-01-02 07:01:27 +0000930
931/// ParseOptionalAttrs - Parse a potentially empty attribute list. AttrKind
932/// indicates what kind of attribute list this is: 0: function arg, 1: result,
933/// 2: function attr.
Chris Lattnerad9ad7c2009-03-25 06:36:36 +0000934/// 3: function arg after value: FIXME: REMOVE IN LLVM 3.0
Chris Lattnerdf986172009-01-02 07:01:27 +0000935bool LLParser::ParseOptionalAttrs(unsigned &Attrs, unsigned AttrKind) {
936 Attrs = Attribute::None;
937 LocTy AttrLoc = Lex.getLoc();
Daniel Dunbara279bc32009-09-20 02:20:51 +0000938
Chris Lattnerdf986172009-01-02 07:01:27 +0000939 while (1) {
940 switch (Lex.getKind()) {
941 case lltok::kw_sext:
942 case lltok::kw_zext:
Chris Lattnerad9ad7c2009-03-25 06:36:36 +0000943 // Treat these as signext/zeroext if they occur in the argument list after
944 // the value, as in "call i8 @foo(i8 10 sext)". If they occur before the
945 // value, as in "call i8 @foo(i8 sext (" then it is part of a constant
946 // expr.
Chris Lattnerdf986172009-01-02 07:01:27 +0000947 // FIXME: REMOVE THIS IN LLVM 3.0
Chris Lattnerad9ad7c2009-03-25 06:36:36 +0000948 if (AttrKind == 3) {
Chris Lattnerdf986172009-01-02 07:01:27 +0000949 if (Lex.getKind() == lltok::kw_sext)
950 Attrs |= Attribute::SExt;
951 else
952 Attrs |= Attribute::ZExt;
953 break;
954 }
955 // FALL THROUGH.
956 default: // End of attributes.
957 if (AttrKind != 2 && (Attrs & Attribute::FunctionOnly))
958 return Error(AttrLoc, "invalid use of function-only attribute");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000959
Chris Lattnerad9ad7c2009-03-25 06:36:36 +0000960 if (AttrKind != 0 && AttrKind != 3 && (Attrs & Attribute::ParameterOnly))
Chris Lattnerdf986172009-01-02 07:01:27 +0000961 return Error(AttrLoc, "invalid use of parameter-only attribute");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000962
Chris Lattnerdf986172009-01-02 07:01:27 +0000963 return false;
Devang Patel578efa92009-06-05 21:57:13 +0000964 case lltok::kw_zeroext: Attrs |= Attribute::ZExt; break;
965 case lltok::kw_signext: Attrs |= Attribute::SExt; break;
966 case lltok::kw_inreg: Attrs |= Attribute::InReg; break;
967 case lltok::kw_sret: Attrs |= Attribute::StructRet; break;
968 case lltok::kw_noalias: Attrs |= Attribute::NoAlias; break;
969 case lltok::kw_nocapture: Attrs |= Attribute::NoCapture; break;
970 case lltok::kw_byval: Attrs |= Attribute::ByVal; break;
971 case lltok::kw_nest: Attrs |= Attribute::Nest; break;
Chris Lattnerdf986172009-01-02 07:01:27 +0000972
Devang Patel578efa92009-06-05 21:57:13 +0000973 case lltok::kw_noreturn: Attrs |= Attribute::NoReturn; break;
974 case lltok::kw_nounwind: Attrs |= Attribute::NoUnwind; break;
975 case lltok::kw_noinline: Attrs |= Attribute::NoInline; break;
976 case lltok::kw_readnone: Attrs |= Attribute::ReadNone; break;
977 case lltok::kw_readonly: Attrs |= Attribute::ReadOnly; break;
Jakob Stoklund Olesen570a4a52010-02-06 01:16:28 +0000978 case lltok::kw_inlinehint: Attrs |= Attribute::InlineHint; break;
Devang Patel578efa92009-06-05 21:57:13 +0000979 case lltok::kw_alwaysinline: Attrs |= Attribute::AlwaysInline; break;
980 case lltok::kw_optsize: Attrs |= Attribute::OptimizeForSize; break;
981 case lltok::kw_ssp: Attrs |= Attribute::StackProtect; break;
982 case lltok::kw_sspreq: Attrs |= Attribute::StackProtectReq; break;
983 case lltok::kw_noredzone: Attrs |= Attribute::NoRedZone; break;
984 case lltok::kw_noimplicitfloat: Attrs |= Attribute::NoImplicitFloat; break;
Anton Korobeynikovc5ec8a72009-07-17 18:07:26 +0000985 case lltok::kw_naked: Attrs |= Attribute::Naked; break;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000986
Charles Davis1e063d12010-02-12 00:31:15 +0000987 case lltok::kw_alignstack: {
988 unsigned Alignment;
989 if (ParseOptionalStackAlignment(Alignment))
990 return true;
991 Attrs |= Attribute::constructStackAlignmentFromInt(Alignment);
992 continue;
993 }
994
Chris Lattnerdf986172009-01-02 07:01:27 +0000995 case lltok::kw_align: {
996 unsigned Alignment;
997 if (ParseOptionalAlignment(Alignment))
998 return true;
999 Attrs |= Attribute::constructAlignmentFromInt(Alignment);
1000 continue;
1001 }
Charles Davis1e063d12010-02-12 00:31:15 +00001002
Chris Lattnerdf986172009-01-02 07:01:27 +00001003 }
1004 Lex.Lex();
1005 }
1006}
1007
1008/// ParseOptionalLinkage
1009/// ::= /*empty*/
Rafael Espindolabb46f522009-01-15 20:18:42 +00001010/// ::= 'private'
Bill Wendling3d10a5a2009-07-20 01:03:30 +00001011/// ::= 'linker_private'
Bill Wendling5e721d72010-07-01 21:55:59 +00001012/// ::= 'linker_private_weak'
Chris Lattnerdf986172009-01-02 07:01:27 +00001013/// ::= 'internal'
1014/// ::= 'weak'
Duncan Sands667d4b82009-03-07 15:45:40 +00001015/// ::= 'weak_odr'
Chris Lattnerdf986172009-01-02 07:01:27 +00001016/// ::= 'linkonce'
Duncan Sands667d4b82009-03-07 15:45:40 +00001017/// ::= 'linkonce_odr'
Bill Wendling5e721d72010-07-01 21:55:59 +00001018/// ::= 'available_externally'
Chris Lattnerdf986172009-01-02 07:01:27 +00001019/// ::= 'appending'
1020/// ::= 'dllexport'
1021/// ::= 'common'
1022/// ::= 'dllimport'
1023/// ::= 'extern_weak'
1024/// ::= 'external'
1025bool LLParser::ParseOptionalLinkage(unsigned &Res, bool &HasLinkage) {
1026 HasLinkage = false;
1027 switch (Lex.getKind()) {
Bill Wendling3d10a5a2009-07-20 01:03:30 +00001028 default: Res=GlobalValue::ExternalLinkage; return false;
1029 case lltok::kw_private: Res = GlobalValue::PrivateLinkage; break;
1030 case lltok::kw_linker_private: Res = GlobalValue::LinkerPrivateLinkage; break;
Bill Wendling5e721d72010-07-01 21:55:59 +00001031 case lltok::kw_linker_private_weak:
1032 Res = GlobalValue::LinkerPrivateWeakLinkage;
1033 break;
Bill Wendling3d10a5a2009-07-20 01:03:30 +00001034 case lltok::kw_internal: Res = GlobalValue::InternalLinkage; break;
1035 case lltok::kw_weak: Res = GlobalValue::WeakAnyLinkage; break;
1036 case lltok::kw_weak_odr: Res = GlobalValue::WeakODRLinkage; break;
1037 case lltok::kw_linkonce: Res = GlobalValue::LinkOnceAnyLinkage; break;
1038 case lltok::kw_linkonce_odr: Res = GlobalValue::LinkOnceODRLinkage; break;
Chris Lattner266c7bb2009-04-13 05:44:34 +00001039 case lltok::kw_available_externally:
1040 Res = GlobalValue::AvailableExternallyLinkage;
1041 break;
Bill Wendling3d10a5a2009-07-20 01:03:30 +00001042 case lltok::kw_appending: Res = GlobalValue::AppendingLinkage; break;
1043 case lltok::kw_dllexport: Res = GlobalValue::DLLExportLinkage; break;
1044 case lltok::kw_common: Res = GlobalValue::CommonLinkage; break;
1045 case lltok::kw_dllimport: Res = GlobalValue::DLLImportLinkage; break;
1046 case lltok::kw_extern_weak: Res = GlobalValue::ExternalWeakLinkage; break;
1047 case lltok::kw_external: Res = GlobalValue::ExternalLinkage; break;
Chris Lattnerdf986172009-01-02 07:01:27 +00001048 }
1049 Lex.Lex();
1050 HasLinkage = true;
1051 return false;
1052}
1053
1054/// ParseOptionalVisibility
1055/// ::= /*empty*/
1056/// ::= 'default'
1057/// ::= 'hidden'
1058/// ::= 'protected'
Daniel Dunbara279bc32009-09-20 02:20:51 +00001059///
Chris Lattnerdf986172009-01-02 07:01:27 +00001060bool LLParser::ParseOptionalVisibility(unsigned &Res) {
1061 switch (Lex.getKind()) {
1062 default: Res = GlobalValue::DefaultVisibility; return false;
1063 case lltok::kw_default: Res = GlobalValue::DefaultVisibility; break;
1064 case lltok::kw_hidden: Res = GlobalValue::HiddenVisibility; break;
1065 case lltok::kw_protected: Res = GlobalValue::ProtectedVisibility; break;
1066 }
1067 Lex.Lex();
1068 return false;
1069}
1070
1071/// ParseOptionalCallingConv
1072/// ::= /*empty*/
1073/// ::= 'ccc'
1074/// ::= 'fastcc'
1075/// ::= 'coldcc'
1076/// ::= 'x86_stdcallcc'
1077/// ::= 'x86_fastcallcc'
Anton Korobeynikovded05e32010-05-16 09:08:45 +00001078/// ::= 'x86_thiscallcc'
Anton Korobeynikov385f5a92009-06-16 18:50:49 +00001079/// ::= 'arm_apcscc'
1080/// ::= 'arm_aapcscc'
1081/// ::= 'arm_aapcs_vfpcc'
Anton Korobeynikov211a14e2009-12-07 02:27:35 +00001082/// ::= 'msp430_intrcc'
Chris Lattnerdf986172009-01-02 07:01:27 +00001083/// ::= 'cc' UINT
Anton Korobeynikov385f5a92009-06-16 18:50:49 +00001084///
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001085bool LLParser::ParseOptionalCallingConv(CallingConv::ID &CC) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001086 switch (Lex.getKind()) {
1087 default: CC = CallingConv::C; return false;
1088 case lltok::kw_ccc: CC = CallingConv::C; break;
1089 case lltok::kw_fastcc: CC = CallingConv::Fast; break;
1090 case lltok::kw_coldcc: CC = CallingConv::Cold; break;
1091 case lltok::kw_x86_stdcallcc: CC = CallingConv::X86_StdCall; break;
1092 case lltok::kw_x86_fastcallcc: CC = CallingConv::X86_FastCall; break;
Anton Korobeynikovded05e32010-05-16 09:08:45 +00001093 case lltok::kw_x86_thiscallcc: CC = CallingConv::X86_ThisCall; break;
Anton Korobeynikov385f5a92009-06-16 18:50:49 +00001094 case lltok::kw_arm_apcscc: CC = CallingConv::ARM_APCS; break;
1095 case lltok::kw_arm_aapcscc: CC = CallingConv::ARM_AAPCS; break;
1096 case lltok::kw_arm_aapcs_vfpcc:CC = CallingConv::ARM_AAPCS_VFP; break;
Anton Korobeynikov211a14e2009-12-07 02:27:35 +00001097 case lltok::kw_msp430_intrcc: CC = CallingConv::MSP430_INTR; break;
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001098 case lltok::kw_cc: {
1099 unsigned ArbitraryCC;
1100 Lex.Lex();
1101 if (ParseUInt32(ArbitraryCC)) {
1102 return true;
1103 } else
1104 CC = static_cast<CallingConv::ID>(ArbitraryCC);
1105 return false;
1106 }
1107 break;
Chris Lattnerdf986172009-01-02 07:01:27 +00001108 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001109
Chris Lattnerdf986172009-01-02 07:01:27 +00001110 Lex.Lex();
1111 return false;
1112}
1113
Chris Lattnerb8c46862009-12-30 05:31:19 +00001114/// ParseInstructionMetadata
Chris Lattner3f3a0f62009-12-29 21:25:40 +00001115/// ::= !dbg !42 (',' !dbg !57)*
Chris Lattnerfe805242010-04-01 04:51:13 +00001116bool LLParser::ParseInstructionMetadata(Instruction *Inst) {
Chris Lattnerb8c46862009-12-30 05:31:19 +00001117 do {
1118 if (Lex.getKind() != lltok::MetadataVar)
1119 return TokError("expected metadata after comma");
Devang Patel0475c912009-09-29 00:01:14 +00001120
Chris Lattner3f3a0f62009-12-29 21:25:40 +00001121 std::string Name = Lex.getStrVal();
1122 Lex.Lex();
Chris Lattner52e20312009-10-19 05:31:10 +00001123
Chris Lattner442ffa12009-12-29 21:53:55 +00001124 MDNode *Node;
Chris Lattner449c3102010-04-01 05:14:45 +00001125 unsigned NodeID;
1126 SMLoc Loc = Lex.getLoc();
Chris Lattnere434d272009-12-30 04:56:59 +00001127 if (ParseToken(lltok::exclaim, "expected '!' here") ||
Chris Lattner449c3102010-04-01 05:14:45 +00001128 ParseMDNodeID(Node, NodeID))
Chris Lattnere434d272009-12-30 04:56:59 +00001129 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001130
Chris Lattner3f3a0f62009-12-29 21:25:40 +00001131 unsigned MDK = M->getMDKindID(Name.c_str());
Chris Lattner449c3102010-04-01 05:14:45 +00001132 if (Node) {
1133 // If we got the node, add it to the instruction.
1134 Inst->setMetadata(MDK, Node);
1135 } else {
1136 MDRef R = { Loc, MDK, NodeID };
1137 // Otherwise, remember that this should be resolved later.
1138 ForwardRefInstMetadata[Inst].push_back(R);
1139 }
Chris Lattner3f3a0f62009-12-29 21:25:40 +00001140
1141 // If this is the end of the list, we're done.
Chris Lattnerb8c46862009-12-30 05:31:19 +00001142 } while (EatIfPresent(lltok::comma));
1143 return false;
Devang Patelf633a062009-09-17 23:04:48 +00001144}
1145
Chris Lattnerdf986172009-01-02 07:01:27 +00001146/// ParseOptionalAlignment
1147/// ::= /* empty */
1148/// ::= 'align' 4
1149bool LLParser::ParseOptionalAlignment(unsigned &Alignment) {
1150 Alignment = 0;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001151 if (!EatIfPresent(lltok::kw_align))
1152 return false;
Chris Lattner3fbb3ab2009-01-05 07:46:05 +00001153 LocTy AlignLoc = Lex.getLoc();
1154 if (ParseUInt32(Alignment)) return true;
1155 if (!isPowerOf2_32(Alignment))
1156 return Error(AlignLoc, "alignment is not a power of two");
Dan Gohmane16829b2010-07-30 21:07:05 +00001157 if (Alignment > Value::MaximumAlignment)
Dan Gohman138aa2a2010-07-28 20:12:04 +00001158 return Error(AlignLoc, "huge alignments are not supported yet");
Chris Lattner3fbb3ab2009-01-05 07:46:05 +00001159 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00001160}
1161
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00001162/// ParseOptionalCommaAlign
1163/// ::=
1164/// ::= ',' align 4
1165///
1166/// This returns with AteExtraComma set to true if it ate an excess comma at the
1167/// end.
1168bool LLParser::ParseOptionalCommaAlign(unsigned &Alignment,
1169 bool &AteExtraComma) {
1170 AteExtraComma = false;
1171 while (EatIfPresent(lltok::comma)) {
1172 // Metadata at the end is an early exit.
Chris Lattner1d928312009-12-30 05:02:06 +00001173 if (Lex.getKind() == lltok::MetadataVar) {
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00001174 AteExtraComma = true;
1175 return false;
1176 }
1177
Chris Lattner093eed12010-04-23 00:50:50 +00001178 if (Lex.getKind() != lltok::kw_align)
1179 return Error(Lex.getLoc(), "expected metadata or 'align'");
1180
Dan Gohman138aa2a2010-07-28 20:12:04 +00001181 LocTy AlignLoc = Lex.getLoc();
Chris Lattner093eed12010-04-23 00:50:50 +00001182 if (ParseOptionalAlignment(Alignment)) return true;
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00001183 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001184
Devang Patelf633a062009-09-17 23:04:48 +00001185 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00001186}
1187
Charles Davis1e063d12010-02-12 00:31:15 +00001188/// ParseOptionalStackAlignment
1189/// ::= /* empty */
1190/// ::= 'alignstack' '(' 4 ')'
1191bool LLParser::ParseOptionalStackAlignment(unsigned &Alignment) {
1192 Alignment = 0;
1193 if (!EatIfPresent(lltok::kw_alignstack))
1194 return false;
1195 LocTy ParenLoc = Lex.getLoc();
1196 if (!EatIfPresent(lltok::lparen))
1197 return Error(ParenLoc, "expected '('");
1198 LocTy AlignLoc = Lex.getLoc();
1199 if (ParseUInt32(Alignment)) return true;
1200 ParenLoc = Lex.getLoc();
1201 if (!EatIfPresent(lltok::rparen))
1202 return Error(ParenLoc, "expected ')'");
1203 if (!isPowerOf2_32(Alignment))
1204 return Error(AlignLoc, "stack alignment is not a power of two");
1205 return false;
1206}
Devang Patelf633a062009-09-17 23:04:48 +00001207
Chris Lattner628c13a2009-12-30 05:14:00 +00001208/// ParseIndexList - This parses the index list for an insert/extractvalue
1209/// instruction. This sets AteExtraComma in the case where we eat an extra
1210/// comma at the end of the line and find that it is followed by metadata.
1211/// Clients that don't allow metadata can call the version of this function that
1212/// only takes one argument.
1213///
Chris Lattnerdf986172009-01-02 07:01:27 +00001214/// ParseIndexList
1215/// ::= (',' uint32)+
Chris Lattner628c13a2009-12-30 05:14:00 +00001216///
1217bool LLParser::ParseIndexList(SmallVectorImpl<unsigned> &Indices,
1218 bool &AteExtraComma) {
1219 AteExtraComma = false;
1220
Chris Lattnerdf986172009-01-02 07:01:27 +00001221 if (Lex.getKind() != lltok::comma)
1222 return TokError("expected ',' as start of index list");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001223
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001224 while (EatIfPresent(lltok::comma)) {
Chris Lattner628c13a2009-12-30 05:14:00 +00001225 if (Lex.getKind() == lltok::MetadataVar) {
1226 AteExtraComma = true;
1227 return false;
1228 }
Chris Lattnerdf986172009-01-02 07:01:27 +00001229 unsigned Idx;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001230 if (ParseUInt32(Idx)) return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00001231 Indices.push_back(Idx);
1232 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001233
Chris Lattnerdf986172009-01-02 07:01:27 +00001234 return false;
1235}
1236
1237//===----------------------------------------------------------------------===//
1238// Type Parsing.
1239//===----------------------------------------------------------------------===//
1240
1241/// ParseType - Parse and resolve a full type.
Chris Lattnera9a9e072009-03-09 04:49:14 +00001242bool LLParser::ParseType(PATypeHolder &Result, bool AllowVoid) {
1243 LocTy TypeLoc = Lex.getLoc();
Chris Lattnerdf986172009-01-02 07:01:27 +00001244 if (ParseTypeRec(Result)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001245
Chris Lattnerdf986172009-01-02 07:01:27 +00001246 // Verify no unresolved uprefs.
1247 if (!UpRefs.empty())
1248 return Error(UpRefs.back().Loc, "invalid unresolved type up reference");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001249
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001250 if (!AllowVoid && Result.get()->isVoidTy())
Chris Lattnera9a9e072009-03-09 04:49:14 +00001251 return Error(TypeLoc, "void type only allowed for function results");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001252
Chris Lattnerdf986172009-01-02 07:01:27 +00001253 return false;
1254}
1255
1256/// HandleUpRefs - Every time we finish a new layer of types, this function is
1257/// called. It loops through the UpRefs vector, which is a list of the
1258/// currently active types. For each type, if the up-reference is contained in
1259/// the newly completed type, we decrement the level count. When the level
1260/// count reaches zero, the up-referenced type is the type that is passed in:
1261/// thus we can complete the cycle.
1262///
1263PATypeHolder LLParser::HandleUpRefs(const Type *ty) {
1264 // If Ty isn't abstract, or if there are no up-references in it, then there is
1265 // nothing to resolve here.
1266 if (!ty->isAbstract() || UpRefs.empty()) return ty;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001267
Chris Lattnerdf986172009-01-02 07:01:27 +00001268 PATypeHolder Ty(ty);
1269#if 0
David Greene0e28d762009-12-23 23:38:28 +00001270 dbgs() << "Type '" << Ty->getDescription()
Chris Lattnerdf986172009-01-02 07:01:27 +00001271 << "' newly formed. Resolving upreferences.\n"
1272 << UpRefs.size() << " upreferences active!\n";
1273#endif
Daniel Dunbara279bc32009-09-20 02:20:51 +00001274
Chris Lattnerdf986172009-01-02 07:01:27 +00001275 // If we find any resolvable upreferences (i.e., those whose NestingLevel goes
1276 // to zero), we resolve them all together before we resolve them to Ty. At
1277 // the end of the loop, if there is anything to resolve to Ty, it will be in
1278 // this variable.
1279 OpaqueType *TypeToResolve = 0;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001280
Chris Lattnerdf986172009-01-02 07:01:27 +00001281 for (unsigned i = 0; i != UpRefs.size(); ++i) {
1282 // Determine if 'Ty' directly contains this up-references 'LastContainedTy'.
1283 bool ContainsType =
1284 std::find(Ty->subtype_begin(), Ty->subtype_end(),
1285 UpRefs[i].LastContainedTy) != Ty->subtype_end();
Daniel Dunbara279bc32009-09-20 02:20:51 +00001286
Chris Lattnerdf986172009-01-02 07:01:27 +00001287#if 0
David Greene0e28d762009-12-23 23:38:28 +00001288 dbgs() << " UR#" << i << " - TypeContains(" << Ty->getDescription() << ", "
Chris Lattnerdf986172009-01-02 07:01:27 +00001289 << UpRefs[i].LastContainedTy->getDescription() << ") = "
1290 << (ContainsType ? "true" : "false")
1291 << " level=" << UpRefs[i].NestingLevel << "\n";
1292#endif
1293 if (!ContainsType)
1294 continue;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001295
Chris Lattnerdf986172009-01-02 07:01:27 +00001296 // Decrement level of upreference
1297 unsigned Level = --UpRefs[i].NestingLevel;
1298 UpRefs[i].LastContainedTy = Ty;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001299
Chris Lattnerdf986172009-01-02 07:01:27 +00001300 // If the Up-reference has a non-zero level, it shouldn't be resolved yet.
1301 if (Level != 0)
1302 continue;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001303
Chris Lattnerdf986172009-01-02 07:01:27 +00001304#if 0
David Greene0e28d762009-12-23 23:38:28 +00001305 dbgs() << " * Resolving upreference for " << UpRefs[i].UpRefTy << "\n";
Chris Lattnerdf986172009-01-02 07:01:27 +00001306#endif
1307 if (!TypeToResolve)
1308 TypeToResolve = UpRefs[i].UpRefTy;
1309 else
1310 UpRefs[i].UpRefTy->refineAbstractTypeTo(TypeToResolve);
1311 UpRefs.erase(UpRefs.begin()+i); // Remove from upreference list.
1312 --i; // Do not skip the next element.
1313 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001314
Chris Lattnerdf986172009-01-02 07:01:27 +00001315 if (TypeToResolve)
1316 TypeToResolve->refineAbstractTypeTo(Ty);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001317
Chris Lattnerdf986172009-01-02 07:01:27 +00001318 return Ty;
1319}
1320
1321
1322/// ParseTypeRec - The recursive function used to process the internal
1323/// implementation details of types.
1324bool LLParser::ParseTypeRec(PATypeHolder &Result) {
1325 switch (Lex.getKind()) {
1326 default:
1327 return TokError("expected type");
1328 case lltok::Type:
1329 // TypeRec ::= 'float' | 'void' (etc)
1330 Result = Lex.getTyVal();
Daniel Dunbara279bc32009-09-20 02:20:51 +00001331 Lex.Lex();
Chris Lattnerdf986172009-01-02 07:01:27 +00001332 break;
1333 case lltok::kw_opaque:
1334 // TypeRec ::= 'opaque'
Owen Anderson0e275dc2009-08-13 23:27:32 +00001335 Result = OpaqueType::get(Context);
Chris Lattnerdf986172009-01-02 07:01:27 +00001336 Lex.Lex();
1337 break;
1338 case lltok::lbrace:
1339 // TypeRec ::= '{' ... '}'
1340 if (ParseStructType(Result, false))
1341 return true;
1342 break;
Chris Lattnerfdfeb692010-02-12 20:49:41 +00001343 case lltok::kw_union:
1344 // TypeRec ::= 'union' '{' ... '}'
1345 if (ParseUnionType(Result))
1346 return true;
1347 break;
Chris Lattnerdf986172009-01-02 07:01:27 +00001348 case lltok::lsquare:
1349 // TypeRec ::= '[' ... ']'
1350 Lex.Lex(); // eat the lsquare.
1351 if (ParseArrayVectorType(Result, false))
1352 return true;
1353 break;
1354 case lltok::less: // Either vector or packed struct.
1355 // TypeRec ::= '<' ... '>'
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001356 Lex.Lex();
1357 if (Lex.getKind() == lltok::lbrace) {
1358 if (ParseStructType(Result, true) ||
1359 ParseToken(lltok::greater, "expected '>' at end of packed struct"))
Chris Lattnerdf986172009-01-02 07:01:27 +00001360 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00001361 } else if (ParseArrayVectorType(Result, true))
1362 return true;
1363 break;
1364 case lltok::LocalVar:
1365 case lltok::StringConstant: // FIXME: REMOVE IN LLVM 3.0
1366 // TypeRec ::= %foo
1367 if (const Type *T = M->getTypeByName(Lex.getStrVal())) {
1368 Result = T;
1369 } else {
Owen Anderson0e275dc2009-08-13 23:27:32 +00001370 Result = OpaqueType::get(Context);
Chris Lattnerdf986172009-01-02 07:01:27 +00001371 ForwardRefTypes.insert(std::make_pair(Lex.getStrVal(),
1372 std::make_pair(Result,
1373 Lex.getLoc())));
1374 M->addTypeName(Lex.getStrVal(), Result.get());
1375 }
1376 Lex.Lex();
1377 break;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001378
Chris Lattnerdf986172009-01-02 07:01:27 +00001379 case lltok::LocalVarID:
1380 // TypeRec ::= %4
1381 if (Lex.getUIntVal() < NumberedTypes.size())
1382 Result = NumberedTypes[Lex.getUIntVal()];
1383 else {
1384 std::map<unsigned, std::pair<PATypeHolder, LocTy> >::iterator
1385 I = ForwardRefTypeIDs.find(Lex.getUIntVal());
1386 if (I != ForwardRefTypeIDs.end())
1387 Result = I->second.first;
1388 else {
Owen Anderson0e275dc2009-08-13 23:27:32 +00001389 Result = OpaqueType::get(Context);
Chris Lattnerdf986172009-01-02 07:01:27 +00001390 ForwardRefTypeIDs.insert(std::make_pair(Lex.getUIntVal(),
1391 std::make_pair(Result,
1392 Lex.getLoc())));
1393 }
1394 }
1395 Lex.Lex();
1396 break;
1397 case lltok::backslash: {
1398 // TypeRec ::= '\' 4
Chris Lattnerdf986172009-01-02 07:01:27 +00001399 Lex.Lex();
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001400 unsigned Val;
1401 if (ParseUInt32(Val)) return true;
Owen Anderson0e275dc2009-08-13 23:27:32 +00001402 OpaqueType *OT = OpaqueType::get(Context); //Use temporary placeholder.
Chris Lattnerdf986172009-01-02 07:01:27 +00001403 UpRefs.push_back(UpRefRecord(Lex.getLoc(), Val, OT));
1404 Result = OT;
1405 break;
1406 }
1407 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001408
1409 // Parse the type suffixes.
Chris Lattnerdf986172009-01-02 07:01:27 +00001410 while (1) {
1411 switch (Lex.getKind()) {
1412 // End of type.
Daniel Dunbara279bc32009-09-20 02:20:51 +00001413 default: return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00001414
1415 // TypeRec ::= TypeRec '*'
1416 case lltok::star:
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001417 if (Result.get()->isLabelTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00001418 return TokError("basic block pointers are invalid");
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001419 if (Result.get()->isVoidTy())
Dan Gohmanb9070d32009-02-09 17:41:21 +00001420 return TokError("pointers to void are invalid; use i8* instead");
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001421 if (!PointerType::isValidElementType(Result.get()))
1422 return TokError("pointer to this type is invalid");
Owen Andersondebcb012009-07-29 22:17:13 +00001423 Result = HandleUpRefs(PointerType::getUnqual(Result.get()));
Chris Lattnerdf986172009-01-02 07:01:27 +00001424 Lex.Lex();
1425 break;
1426
1427 // TypeRec ::= TypeRec 'addrspace' '(' uint32 ')' '*'
1428 case lltok::kw_addrspace: {
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001429 if (Result.get()->isLabelTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00001430 return TokError("basic block pointers are invalid");
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001431 if (Result.get()->isVoidTy())
Dan Gohmanb9070d32009-02-09 17:41:21 +00001432 return TokError("pointers to void are invalid; use i8* instead");
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001433 if (!PointerType::isValidElementType(Result.get()))
1434 return TokError("pointer to this type is invalid");
Chris Lattnerdf986172009-01-02 07:01:27 +00001435 unsigned AddrSpace;
1436 if (ParseOptionalAddrSpace(AddrSpace) ||
1437 ParseToken(lltok::star, "expected '*' in address space"))
1438 return true;
1439
Owen Andersondebcb012009-07-29 22:17:13 +00001440 Result = HandleUpRefs(PointerType::get(Result.get(), AddrSpace));
Chris Lattnerdf986172009-01-02 07:01:27 +00001441 break;
1442 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001443
Chris Lattnerdf986172009-01-02 07:01:27 +00001444 /// Types '(' ArgTypeListI ')' OptFuncAttrs
1445 case lltok::lparen:
1446 if (ParseFunctionType(Result))
1447 return true;
1448 break;
1449 }
1450 }
1451}
1452
1453/// ParseParameterList
1454/// ::= '(' ')'
1455/// ::= '(' Arg (',' Arg)* ')'
1456/// Arg
1457/// ::= Type OptionalAttributes Value OptionalAttributes
1458bool LLParser::ParseParameterList(SmallVectorImpl<ParamInfo> &ArgList,
1459 PerFunctionState &PFS) {
1460 if (ParseToken(lltok::lparen, "expected '(' in call"))
1461 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001462
Chris Lattnerdf986172009-01-02 07:01:27 +00001463 while (Lex.getKind() != lltok::rparen) {
1464 // If this isn't the first argument, we need a comma.
1465 if (!ArgList.empty() &&
1466 ParseToken(lltok::comma, "expected ',' in argument list"))
1467 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001468
Chris Lattnerdf986172009-01-02 07:01:27 +00001469 // Parse the argument.
1470 LocTy ArgLoc;
Owen Anderson1d0be152009-08-13 21:58:54 +00001471 PATypeHolder ArgTy(Type::getVoidTy(Context));
Victor Hernandez19715562009-12-03 23:40:58 +00001472 unsigned ArgAttrs1 = Attribute::None;
1473 unsigned ArgAttrs2 = Attribute::None;
Chris Lattnerdf986172009-01-02 07:01:27 +00001474 Value *V;
Victor Hernandez19715562009-12-03 23:40:58 +00001475 if (ParseType(ArgTy, ArgLoc))
Chris Lattnerdf986172009-01-02 07:01:27 +00001476 return true;
Victor Hernandez19715562009-12-03 23:40:58 +00001477
Chris Lattner287881d2009-12-30 02:11:14 +00001478 // Otherwise, handle normal operands.
1479 if (ParseOptionalAttrs(ArgAttrs1, 0) ||
1480 ParseValue(ArgTy, V, PFS) ||
1481 // FIXME: Should not allow attributes after the argument, remove this
1482 // in LLVM 3.0.
1483 ParseOptionalAttrs(ArgAttrs2, 3))
1484 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00001485 ArgList.push_back(ParamInfo(ArgLoc, V, ArgAttrs1|ArgAttrs2));
1486 }
1487
1488 Lex.Lex(); // Lex the ')'.
1489 return false;
1490}
1491
1492
1493
Chris Lattnerdfd19dd2009-01-05 18:34:07 +00001494/// ParseArgumentList - Parse the argument list for a function type or function
1495/// prototype. If 'inType' is true then we are parsing a FunctionType.
Chris Lattnerdf986172009-01-02 07:01:27 +00001496/// ::= '(' ArgTypeListI ')'
1497/// ArgTypeListI
1498/// ::= /*empty*/
1499/// ::= '...'
1500/// ::= ArgTypeList ',' '...'
1501/// ::= ArgType (',' ArgType)*
Chris Lattnerdfd19dd2009-01-05 18:34:07 +00001502///
Chris Lattnerdf986172009-01-02 07:01:27 +00001503bool LLParser::ParseArgumentList(std::vector<ArgInfo> &ArgList,
Chris Lattnerdfd19dd2009-01-05 18:34:07 +00001504 bool &isVarArg, bool inType) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001505 isVarArg = false;
1506 assert(Lex.getKind() == lltok::lparen);
1507 Lex.Lex(); // eat the (.
Daniel Dunbara279bc32009-09-20 02:20:51 +00001508
Chris Lattnerdf986172009-01-02 07:01:27 +00001509 if (Lex.getKind() == lltok::rparen) {
1510 // empty
1511 } else if (Lex.getKind() == lltok::dotdotdot) {
1512 isVarArg = true;
1513 Lex.Lex();
1514 } else {
1515 LocTy TypeLoc = Lex.getLoc();
Owen Anderson1d0be152009-08-13 21:58:54 +00001516 PATypeHolder ArgTy(Type::getVoidTy(Context));
Chris Lattnerdf986172009-01-02 07:01:27 +00001517 unsigned Attrs;
Chris Lattnerdf986172009-01-02 07:01:27 +00001518 std::string Name;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001519
Chris Lattnerdfd19dd2009-01-05 18:34:07 +00001520 // If we're parsing a type, use ParseTypeRec, because we allow recursive
1521 // types (such as a function returning a pointer to itself). If parsing a
1522 // function prototype, we require fully resolved types.
1523 if ((inType ? ParseTypeRec(ArgTy) : ParseType(ArgTy)) ||
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001524 ParseOptionalAttrs(Attrs, 0)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001525
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001526 if (ArgTy->isVoidTy())
Chris Lattnera9a9e072009-03-09 04:49:14 +00001527 return Error(TypeLoc, "argument can not have void type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001528
Chris Lattnerdf986172009-01-02 07:01:27 +00001529 if (Lex.getKind() == lltok::LocalVar ||
1530 Lex.getKind() == lltok::StringConstant) { // FIXME: REMOVE IN LLVM 3.0
1531 Name = Lex.getStrVal();
1532 Lex.Lex();
1533 }
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001534
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001535 if (!FunctionType::isValidArgumentType(ArgTy))
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001536 return Error(TypeLoc, "invalid type for function argument");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001537
Chris Lattnerdf986172009-01-02 07:01:27 +00001538 ArgList.push_back(ArgInfo(TypeLoc, ArgTy, Attrs, Name));
Daniel Dunbara279bc32009-09-20 02:20:51 +00001539
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001540 while (EatIfPresent(lltok::comma)) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001541 // Handle ... at end of arg list.
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001542 if (EatIfPresent(lltok::dotdotdot)) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001543 isVarArg = true;
Chris Lattnerdf986172009-01-02 07:01:27 +00001544 break;
1545 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001546
Chris Lattnerdf986172009-01-02 07:01:27 +00001547 // Otherwise must be an argument type.
1548 TypeLoc = Lex.getLoc();
Chris Lattnera9a9e072009-03-09 04:49:14 +00001549 if ((inType ? ParseTypeRec(ArgTy) : ParseType(ArgTy)) ||
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001550 ParseOptionalAttrs(Attrs, 0)) return true;
1551
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001552 if (ArgTy->isVoidTy())
Chris Lattnera9a9e072009-03-09 04:49:14 +00001553 return Error(TypeLoc, "argument can not have void type");
1554
Chris Lattnerdf986172009-01-02 07:01:27 +00001555 if (Lex.getKind() == lltok::LocalVar ||
1556 Lex.getKind() == lltok::StringConstant) { // FIXME: REMOVE IN LLVM 3.0
1557 Name = Lex.getStrVal();
1558 Lex.Lex();
1559 } else {
1560 Name = "";
1561 }
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001562
Duncan Sands47c51882010-02-16 14:50:09 +00001563 if (!ArgTy->isFirstClassType() && !ArgTy->isOpaqueTy())
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001564 return Error(TypeLoc, "invalid type for function argument");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001565
Chris Lattnerdf986172009-01-02 07:01:27 +00001566 ArgList.push_back(ArgInfo(TypeLoc, ArgTy, Attrs, Name));
1567 }
1568 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001569
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001570 return ParseToken(lltok::rparen, "expected ')' at end of argument list");
Chris Lattnerdf986172009-01-02 07:01:27 +00001571}
Daniel Dunbara279bc32009-09-20 02:20:51 +00001572
Chris Lattnerdf986172009-01-02 07:01:27 +00001573/// ParseFunctionType
1574/// ::= Type ArgumentList OptionalAttrs
1575bool LLParser::ParseFunctionType(PATypeHolder &Result) {
1576 assert(Lex.getKind() == lltok::lparen);
1577
Chris Lattnerd77d04c2009-01-05 08:04:33 +00001578 if (!FunctionType::isValidReturnType(Result))
1579 return TokError("invalid function return type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001580
Chris Lattnerdf986172009-01-02 07:01:27 +00001581 std::vector<ArgInfo> ArgList;
1582 bool isVarArg;
1583 unsigned Attrs;
Chris Lattnerdfd19dd2009-01-05 18:34:07 +00001584 if (ParseArgumentList(ArgList, isVarArg, true) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00001585 // FIXME: Allow, but ignore attributes on function types!
1586 // FIXME: Remove in LLVM 3.0
1587 ParseOptionalAttrs(Attrs, 2))
1588 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001589
Chris Lattnerdf986172009-01-02 07:01:27 +00001590 // Reject names on the arguments lists.
1591 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
1592 if (!ArgList[i].Name.empty())
1593 return Error(ArgList[i].Loc, "argument name invalid in function type");
1594 if (!ArgList[i].Attrs != 0) {
1595 // Allow but ignore attributes on function types; this permits
1596 // auto-upgrade.
1597 // FIXME: REJECT ATTRIBUTES ON FUNCTION TYPES in LLVM 3.0
1598 }
1599 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001600
Chris Lattnerdf986172009-01-02 07:01:27 +00001601 std::vector<const Type*> ArgListTy;
1602 for (unsigned i = 0, e = ArgList.size(); i != e; ++i)
1603 ArgListTy.push_back(ArgList[i].Type);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001604
Owen Andersondebcb012009-07-29 22:17:13 +00001605 Result = HandleUpRefs(FunctionType::get(Result.get(),
Owen Andersonfba933c2009-07-01 23:57:11 +00001606 ArgListTy, isVarArg));
Chris Lattnerdf986172009-01-02 07:01:27 +00001607 return false;
1608}
1609
1610/// ParseStructType: Handles packed and unpacked types. </> parsed elsewhere.
1611/// TypeRec
1612/// ::= '{' '}'
1613/// ::= '{' TypeRec (',' TypeRec)* '}'
1614/// ::= '<' '{' '}' '>'
1615/// ::= '<' '{' TypeRec (',' TypeRec)* '}' '>'
1616bool LLParser::ParseStructType(PATypeHolder &Result, bool Packed) {
1617 assert(Lex.getKind() == lltok::lbrace);
1618 Lex.Lex(); // Consume the '{'
Daniel Dunbara279bc32009-09-20 02:20:51 +00001619
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001620 if (EatIfPresent(lltok::rbrace)) {
Owen Andersond7f2a6c2009-08-05 23:16:16 +00001621 Result = StructType::get(Context, Packed);
Chris Lattnerdf986172009-01-02 07:01:27 +00001622 return false;
1623 }
1624
1625 std::vector<PATypeHolder> ParamsList;
Chris Lattnera9a9e072009-03-09 04:49:14 +00001626 LocTy EltTyLoc = Lex.getLoc();
Chris Lattnerdf986172009-01-02 07:01:27 +00001627 if (ParseTypeRec(Result)) return true;
1628 ParamsList.push_back(Result);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001629
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001630 if (Result->isVoidTy())
Chris Lattnera9a9e072009-03-09 04:49:14 +00001631 return Error(EltTyLoc, "struct element can not have void type");
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001632 if (!StructType::isValidElementType(Result))
1633 return Error(EltTyLoc, "invalid element type for struct");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001634
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001635 while (EatIfPresent(lltok::comma)) {
Chris Lattnera9a9e072009-03-09 04:49:14 +00001636 EltTyLoc = Lex.getLoc();
Chris Lattnerdf986172009-01-02 07:01:27 +00001637 if (ParseTypeRec(Result)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001638
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001639 if (Result->isVoidTy())
Chris Lattnera9a9e072009-03-09 04:49:14 +00001640 return Error(EltTyLoc, "struct element can not have void type");
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001641 if (!StructType::isValidElementType(Result))
1642 return Error(EltTyLoc, "invalid element type for struct");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001643
Chris Lattnerdf986172009-01-02 07:01:27 +00001644 ParamsList.push_back(Result);
1645 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001646
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001647 if (ParseToken(lltok::rbrace, "expected '}' at end of struct"))
1648 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001649
Chris Lattnerdf986172009-01-02 07:01:27 +00001650 std::vector<const Type*> ParamsListTy;
1651 for (unsigned i = 0, e = ParamsList.size(); i != e; ++i)
1652 ParamsListTy.push_back(ParamsList[i].get());
Owen Andersond7f2a6c2009-08-05 23:16:16 +00001653 Result = HandleUpRefs(StructType::get(Context, ParamsListTy, Packed));
Chris Lattnerdf986172009-01-02 07:01:27 +00001654 return false;
1655}
1656
Chris Lattnerfdfeb692010-02-12 20:49:41 +00001657/// ParseUnionType
1658/// TypeRec
1659/// ::= 'union' '{' TypeRec (',' TypeRec)* '}'
1660bool LLParser::ParseUnionType(PATypeHolder &Result) {
1661 assert(Lex.getKind() == lltok::kw_union);
1662 Lex.Lex(); // Consume the 'union'
1663
1664 if (ParseToken(lltok::lbrace, "'{' expected after 'union'")) return true;
1665
1666 SmallVector<PATypeHolder, 8> ParamsList;
1667 do {
1668 LocTy EltTyLoc = Lex.getLoc();
1669 if (ParseTypeRec(Result)) return true;
1670 ParamsList.push_back(Result);
1671
1672 if (Result->isVoidTy())
1673 return Error(EltTyLoc, "union element can not have void type");
1674 if (!UnionType::isValidElementType(Result))
1675 return Error(EltTyLoc, "invalid element type for union");
1676
1677 } while (EatIfPresent(lltok::comma)) ;
1678
1679 if (ParseToken(lltok::rbrace, "expected '}' at end of union"))
1680 return true;
1681
1682 SmallVector<const Type*, 8> ParamsListTy;
1683 for (unsigned i = 0, e = ParamsList.size(); i != e; ++i)
1684 ParamsListTy.push_back(ParamsList[i].get());
1685 Result = HandleUpRefs(UnionType::get(&ParamsListTy[0], ParamsListTy.size()));
1686 return false;
1687}
1688
Chris Lattnerdf986172009-01-02 07:01:27 +00001689/// ParseArrayVectorType - Parse an array or vector type, assuming the first
1690/// token has already been consumed.
Daniel Dunbara279bc32009-09-20 02:20:51 +00001691/// TypeRec
Chris Lattnerdf986172009-01-02 07:01:27 +00001692/// ::= '[' APSINTVAL 'x' Types ']'
1693/// ::= '<' APSINTVAL 'x' Types '>'
1694bool LLParser::ParseArrayVectorType(PATypeHolder &Result, bool isVector) {
1695 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned() ||
1696 Lex.getAPSIntVal().getBitWidth() > 64)
1697 return TokError("expected number in address space");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001698
Chris Lattnerdf986172009-01-02 07:01:27 +00001699 LocTy SizeLoc = Lex.getLoc();
1700 uint64_t Size = Lex.getAPSIntVal().getZExtValue();
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001701 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +00001702
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001703 if (ParseToken(lltok::kw_x, "expected 'x' after element count"))
1704 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00001705
1706 LocTy TypeLoc = Lex.getLoc();
Owen Anderson1d0be152009-08-13 21:58:54 +00001707 PATypeHolder EltTy(Type::getVoidTy(Context));
Chris Lattnerdf986172009-01-02 07:01:27 +00001708 if (ParseTypeRec(EltTy)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001709
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001710 if (EltTy->isVoidTy())
Chris Lattnera9a9e072009-03-09 04:49:14 +00001711 return Error(TypeLoc, "array and vector element type cannot be void");
1712
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001713 if (ParseToken(isVector ? lltok::greater : lltok::rsquare,
1714 "expected end of sequential type"))
1715 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001716
Chris Lattnerdf986172009-01-02 07:01:27 +00001717 if (isVector) {
Chris Lattner452e2622009-02-28 18:12:41 +00001718 if (Size == 0)
1719 return Error(SizeLoc, "zero element vector is illegal");
Chris Lattnerdf986172009-01-02 07:01:27 +00001720 if ((unsigned)Size != Size)
1721 return Error(SizeLoc, "size too large for vector");
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001722 if (!VectorType::isValidElementType(EltTy))
Chris Lattnerdf986172009-01-02 07:01:27 +00001723 return Error(TypeLoc, "vector element type must be fp or integer");
Owen Andersondebcb012009-07-29 22:17:13 +00001724 Result = VectorType::get(EltTy, unsigned(Size));
Chris Lattnerdf986172009-01-02 07:01:27 +00001725 } else {
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001726 if (!ArrayType::isValidElementType(EltTy))
Chris Lattnerdf986172009-01-02 07:01:27 +00001727 return Error(TypeLoc, "invalid array element type");
Owen Andersondebcb012009-07-29 22:17:13 +00001728 Result = HandleUpRefs(ArrayType::get(EltTy, Size));
Chris Lattnerdf986172009-01-02 07:01:27 +00001729 }
1730 return false;
1731}
1732
1733//===----------------------------------------------------------------------===//
1734// Function Semantic Analysis.
1735//===----------------------------------------------------------------------===//
1736
Chris Lattner09d9ef42009-10-28 03:39:23 +00001737LLParser::PerFunctionState::PerFunctionState(LLParser &p, Function &f,
1738 int functionNumber)
1739 : P(p), F(f), FunctionNumber(functionNumber) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001740
1741 // Insert unnamed arguments into the NumberedVals list.
1742 for (Function::arg_iterator AI = F.arg_begin(), E = F.arg_end();
1743 AI != E; ++AI)
1744 if (!AI->hasName())
1745 NumberedVals.push_back(AI);
1746}
1747
1748LLParser::PerFunctionState::~PerFunctionState() {
1749 // If there were any forward referenced non-basicblock values, delete them.
1750 for (std::map<std::string, std::pair<Value*, LocTy> >::iterator
1751 I = ForwardRefVals.begin(), E = ForwardRefVals.end(); I != E; ++I)
1752 if (!isa<BasicBlock>(I->second.first)) {
Owen Andersonb43eae72009-07-02 17:04:01 +00001753 I->second.first->replaceAllUsesWith(
Owen Anderson9e9a0d52009-07-30 23:03:37 +00001754 UndefValue::get(I->second.first->getType()));
Chris Lattnerdf986172009-01-02 07:01:27 +00001755 delete I->second.first;
1756 I->second.first = 0;
1757 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001758
Chris Lattnerdf986172009-01-02 07:01:27 +00001759 for (std::map<unsigned, std::pair<Value*, LocTy> >::iterator
1760 I = ForwardRefValIDs.begin(), E = ForwardRefValIDs.end(); I != E; ++I)
1761 if (!isa<BasicBlock>(I->second.first)) {
Owen Andersonb43eae72009-07-02 17:04:01 +00001762 I->second.first->replaceAllUsesWith(
Owen Anderson9e9a0d52009-07-30 23:03:37 +00001763 UndefValue::get(I->second.first->getType()));
Chris Lattnerdf986172009-01-02 07:01:27 +00001764 delete I->second.first;
1765 I->second.first = 0;
1766 }
1767}
1768
Chris Lattner09d9ef42009-10-28 03:39:23 +00001769bool LLParser::PerFunctionState::FinishFunction() {
1770 // Check to see if someone took the address of labels in this block.
1771 if (!P.ForwardRefBlockAddresses.empty()) {
1772 ValID FunctionID;
1773 if (!F.getName().empty()) {
1774 FunctionID.Kind = ValID::t_GlobalName;
1775 FunctionID.StrVal = F.getName();
1776 } else {
1777 FunctionID.Kind = ValID::t_GlobalID;
1778 FunctionID.UIntVal = FunctionNumber;
1779 }
1780
1781 std::map<ValID, std::vector<std::pair<ValID, GlobalValue*> > >::iterator
1782 FRBAI = P.ForwardRefBlockAddresses.find(FunctionID);
1783 if (FRBAI != P.ForwardRefBlockAddresses.end()) {
1784 // Resolve all these references.
1785 if (P.ResolveForwardRefBlockAddresses(&F, FRBAI->second, this))
1786 return true;
1787
1788 P.ForwardRefBlockAddresses.erase(FRBAI);
1789 }
1790 }
1791
Chris Lattnerdf986172009-01-02 07:01:27 +00001792 if (!ForwardRefVals.empty())
1793 return P.Error(ForwardRefVals.begin()->second.second,
1794 "use of undefined value '%" + ForwardRefVals.begin()->first +
1795 "'");
1796 if (!ForwardRefValIDs.empty())
1797 return P.Error(ForwardRefValIDs.begin()->second.second,
1798 "use of undefined value '%" +
1799 utostr(ForwardRefValIDs.begin()->first) + "'");
1800 return false;
1801}
1802
1803
1804/// GetVal - Get a value with the specified name or ID, creating a
1805/// forward reference record if needed. This can return null if the value
1806/// exists but does not have the right type.
1807Value *LLParser::PerFunctionState::GetVal(const std::string &Name,
1808 const Type *Ty, LocTy Loc) {
1809 // Look this name up in the normal function symbol table.
1810 Value *Val = F.getValueSymbolTable().lookup(Name);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001811
Chris Lattnerdf986172009-01-02 07:01:27 +00001812 // If this is a forward reference for the value, see if we already created a
1813 // forward ref record.
1814 if (Val == 0) {
1815 std::map<std::string, std::pair<Value*, LocTy> >::iterator
1816 I = ForwardRefVals.find(Name);
1817 if (I != ForwardRefVals.end())
1818 Val = I->second.first;
1819 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001820
Chris Lattnerdf986172009-01-02 07:01:27 +00001821 // If we have the value in the symbol table or fwd-ref table, return it.
1822 if (Val) {
1823 if (Val->getType() == Ty) return Val;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001824 if (Ty->isLabelTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00001825 P.Error(Loc, "'%" + Name + "' is not a basic block");
1826 else
1827 P.Error(Loc, "'%" + Name + "' defined with type '" +
1828 Val->getType()->getDescription() + "'");
1829 return 0;
1830 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001831
Chris Lattnerdf986172009-01-02 07:01:27 +00001832 // Don't make placeholders with invalid type.
Duncan Sands47c51882010-02-16 14:50:09 +00001833 if (!Ty->isFirstClassType() && !Ty->isOpaqueTy() && !Ty->isLabelTy()) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001834 P.Error(Loc, "invalid use of a non-first-class type");
1835 return 0;
1836 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001837
Chris Lattnerdf986172009-01-02 07:01:27 +00001838 // Otherwise, create a new forward reference for this value and remember it.
1839 Value *FwdVal;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001840 if (Ty->isLabelTy())
Owen Anderson1d0be152009-08-13 21:58:54 +00001841 FwdVal = BasicBlock::Create(F.getContext(), Name, &F);
Chris Lattnerdf986172009-01-02 07:01:27 +00001842 else
1843 FwdVal = new Argument(Ty, Name);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001844
Chris Lattnerdf986172009-01-02 07:01:27 +00001845 ForwardRefVals[Name] = std::make_pair(FwdVal, Loc);
1846 return FwdVal;
1847}
1848
1849Value *LLParser::PerFunctionState::GetVal(unsigned ID, const Type *Ty,
1850 LocTy Loc) {
1851 // Look this name up in the normal function symbol table.
1852 Value *Val = ID < NumberedVals.size() ? NumberedVals[ID] : 0;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001853
Chris Lattnerdf986172009-01-02 07:01:27 +00001854 // If this is a forward reference for the value, see if we already created a
1855 // forward ref record.
1856 if (Val == 0) {
1857 std::map<unsigned, std::pair<Value*, LocTy> >::iterator
1858 I = ForwardRefValIDs.find(ID);
1859 if (I != ForwardRefValIDs.end())
1860 Val = I->second.first;
1861 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001862
Chris Lattnerdf986172009-01-02 07:01:27 +00001863 // If we have the value in the symbol table or fwd-ref table, return it.
1864 if (Val) {
1865 if (Val->getType() == Ty) return Val;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001866 if (Ty->isLabelTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00001867 P.Error(Loc, "'%" + utostr(ID) + "' is not a basic block");
1868 else
1869 P.Error(Loc, "'%" + utostr(ID) + "' defined with type '" +
1870 Val->getType()->getDescription() + "'");
1871 return 0;
1872 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001873
Duncan Sands47c51882010-02-16 14:50:09 +00001874 if (!Ty->isFirstClassType() && !Ty->isOpaqueTy() && !Ty->isLabelTy()) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001875 P.Error(Loc, "invalid use of a non-first-class type");
1876 return 0;
1877 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001878
Chris Lattnerdf986172009-01-02 07:01:27 +00001879 // Otherwise, create a new forward reference for this value and remember it.
1880 Value *FwdVal;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001881 if (Ty->isLabelTy())
Owen Anderson1d0be152009-08-13 21:58:54 +00001882 FwdVal = BasicBlock::Create(F.getContext(), "", &F);
Chris Lattnerdf986172009-01-02 07:01:27 +00001883 else
1884 FwdVal = new Argument(Ty);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001885
Chris Lattnerdf986172009-01-02 07:01:27 +00001886 ForwardRefValIDs[ID] = std::make_pair(FwdVal, Loc);
1887 return FwdVal;
1888}
1889
1890/// SetInstName - After an instruction is parsed and inserted into its
1891/// basic block, this installs its name.
1892bool LLParser::PerFunctionState::SetInstName(int NameID,
1893 const std::string &NameStr,
1894 LocTy NameLoc, Instruction *Inst) {
1895 // If this instruction has void type, it cannot have a name or ID specified.
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001896 if (Inst->getType()->isVoidTy()) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001897 if (NameID != -1 || !NameStr.empty())
1898 return P.Error(NameLoc, "instructions returning void cannot have a name");
1899 return false;
1900 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001901
Chris Lattnerdf986172009-01-02 07:01:27 +00001902 // If this was a numbered instruction, verify that the instruction is the
1903 // expected value and resolve any forward references.
1904 if (NameStr.empty()) {
1905 // If neither a name nor an ID was specified, just use the next ID.
1906 if (NameID == -1)
1907 NameID = NumberedVals.size();
Daniel Dunbara279bc32009-09-20 02:20:51 +00001908
Chris Lattnerdf986172009-01-02 07:01:27 +00001909 if (unsigned(NameID) != NumberedVals.size())
1910 return P.Error(NameLoc, "instruction expected to be numbered '%" +
1911 utostr(NumberedVals.size()) + "'");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001912
Chris Lattnerdf986172009-01-02 07:01:27 +00001913 std::map<unsigned, std::pair<Value*, LocTy> >::iterator FI =
1914 ForwardRefValIDs.find(NameID);
1915 if (FI != ForwardRefValIDs.end()) {
1916 if (FI->second.first->getType() != Inst->getType())
Daniel Dunbara279bc32009-09-20 02:20:51 +00001917 return P.Error(NameLoc, "instruction forward referenced with type '" +
Chris Lattnerdf986172009-01-02 07:01:27 +00001918 FI->second.first->getType()->getDescription() + "'");
1919 FI->second.first->replaceAllUsesWith(Inst);
Nuno Lopes2b4f28e2009-09-02 15:02:57 +00001920 delete FI->second.first;
Chris Lattnerdf986172009-01-02 07:01:27 +00001921 ForwardRefValIDs.erase(FI);
1922 }
1923
1924 NumberedVals.push_back(Inst);
1925 return false;
1926 }
1927
1928 // Otherwise, the instruction had a name. Resolve forward refs and set it.
1929 std::map<std::string, std::pair<Value*, LocTy> >::iterator
1930 FI = ForwardRefVals.find(NameStr);
1931 if (FI != ForwardRefVals.end()) {
1932 if (FI->second.first->getType() != Inst->getType())
Daniel Dunbara279bc32009-09-20 02:20:51 +00001933 return P.Error(NameLoc, "instruction forward referenced with type '" +
Chris Lattnerdf986172009-01-02 07:01:27 +00001934 FI->second.first->getType()->getDescription() + "'");
1935 FI->second.first->replaceAllUsesWith(Inst);
Nuno Lopes531552a2009-09-02 14:22:03 +00001936 delete FI->second.first;
Chris Lattnerdf986172009-01-02 07:01:27 +00001937 ForwardRefVals.erase(FI);
1938 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001939
Chris Lattnerdf986172009-01-02 07:01:27 +00001940 // Set the name on the instruction.
1941 Inst->setName(NameStr);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001942
Chris Lattnerdf986172009-01-02 07:01:27 +00001943 if (Inst->getNameStr() != NameStr)
Daniel Dunbara279bc32009-09-20 02:20:51 +00001944 return P.Error(NameLoc, "multiple definition of local value named '" +
Chris Lattnerdf986172009-01-02 07:01:27 +00001945 NameStr + "'");
1946 return false;
1947}
1948
1949/// GetBB - Get a basic block with the specified name or ID, creating a
1950/// forward reference record if needed.
1951BasicBlock *LLParser::PerFunctionState::GetBB(const std::string &Name,
1952 LocTy Loc) {
Owen Anderson1d0be152009-08-13 21:58:54 +00001953 return cast_or_null<BasicBlock>(GetVal(Name,
1954 Type::getLabelTy(F.getContext()), Loc));
Chris Lattnerdf986172009-01-02 07:01:27 +00001955}
1956
1957BasicBlock *LLParser::PerFunctionState::GetBB(unsigned ID, LocTy Loc) {
Owen Anderson1d0be152009-08-13 21:58:54 +00001958 return cast_or_null<BasicBlock>(GetVal(ID,
1959 Type::getLabelTy(F.getContext()), Loc));
Chris Lattnerdf986172009-01-02 07:01:27 +00001960}
1961
1962/// DefineBB - Define the specified basic block, which is either named or
1963/// unnamed. If there is an error, this returns null otherwise it returns
1964/// the block being defined.
1965BasicBlock *LLParser::PerFunctionState::DefineBB(const std::string &Name,
1966 LocTy Loc) {
1967 BasicBlock *BB;
1968 if (Name.empty())
1969 BB = GetBB(NumberedVals.size(), Loc);
1970 else
1971 BB = GetBB(Name, Loc);
1972 if (BB == 0) return 0; // Already diagnosed error.
Daniel Dunbara279bc32009-09-20 02:20:51 +00001973
Chris Lattnerdf986172009-01-02 07:01:27 +00001974 // Move the block to the end of the function. Forward ref'd blocks are
1975 // inserted wherever they happen to be referenced.
1976 F.getBasicBlockList().splice(F.end(), F.getBasicBlockList(), BB);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001977
Chris Lattnerdf986172009-01-02 07:01:27 +00001978 // Remove the block from forward ref sets.
1979 if (Name.empty()) {
1980 ForwardRefValIDs.erase(NumberedVals.size());
1981 NumberedVals.push_back(BB);
1982 } else {
1983 // BB forward references are already in the function symbol table.
1984 ForwardRefVals.erase(Name);
1985 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001986
Chris Lattnerdf986172009-01-02 07:01:27 +00001987 return BB;
1988}
1989
1990//===----------------------------------------------------------------------===//
1991// Constants.
1992//===----------------------------------------------------------------------===//
1993
1994/// ParseValID - Parse an abstract value that doesn't necessarily have a
1995/// type implied. For example, if we parse "4" we don't know what integer type
1996/// it has. The value will later be combined with its type and checked for
Victor Hernandez24e64df2010-01-10 07:14:18 +00001997/// sanity. PFS is used to convert function-local operands of metadata (since
1998/// metadata operands are not just parsed here but also converted to values).
1999/// PFS can be null when we are not parsing metadata values inside a function.
Victor Hernandezbf170d42010-01-05 22:22:14 +00002000bool LLParser::ParseValID(ValID &ID, PerFunctionState *PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002001 ID.Loc = Lex.getLoc();
2002 switch (Lex.getKind()) {
2003 default: return TokError("expected value token");
2004 case lltok::GlobalID: // @42
2005 ID.UIntVal = Lex.getUIntVal();
2006 ID.Kind = ValID::t_GlobalID;
2007 break;
2008 case lltok::GlobalVar: // @foo
2009 ID.StrVal = Lex.getStrVal();
2010 ID.Kind = ValID::t_GlobalName;
2011 break;
2012 case lltok::LocalVarID: // %42
2013 ID.UIntVal = Lex.getUIntVal();
2014 ID.Kind = ValID::t_LocalID;
2015 break;
2016 case lltok::LocalVar: // %foo
2017 case lltok::StringConstant: // "foo" - FIXME: REMOVE IN LLVM 3.0
2018 ID.StrVal = Lex.getStrVal();
2019 ID.Kind = ValID::t_LocalName;
2020 break;
Dan Gohman83448032010-07-14 18:26:50 +00002021 case lltok::exclaim: // !42, !{...}, or !"foo"
2022 return ParseMetadataValue(ID, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00002023 case lltok::APSInt:
Daniel Dunbara279bc32009-09-20 02:20:51 +00002024 ID.APSIntVal = Lex.getAPSIntVal();
Chris Lattnerdf986172009-01-02 07:01:27 +00002025 ID.Kind = ValID::t_APSInt;
2026 break;
2027 case lltok::APFloat:
2028 ID.APFloatVal = Lex.getAPFloatVal();
2029 ID.Kind = ValID::t_APFloat;
2030 break;
2031 case lltok::kw_true:
Owen Anderson5defacc2009-07-31 17:39:07 +00002032 ID.ConstantVal = ConstantInt::getTrue(Context);
Chris Lattnerdf986172009-01-02 07:01:27 +00002033 ID.Kind = ValID::t_Constant;
2034 break;
2035 case lltok::kw_false:
Owen Anderson5defacc2009-07-31 17:39:07 +00002036 ID.ConstantVal = ConstantInt::getFalse(Context);
Chris Lattnerdf986172009-01-02 07:01:27 +00002037 ID.Kind = ValID::t_Constant;
2038 break;
2039 case lltok::kw_null: ID.Kind = ValID::t_Null; break;
2040 case lltok::kw_undef: ID.Kind = ValID::t_Undef; break;
2041 case lltok::kw_zeroinitializer: ID.Kind = ValID::t_Zero; break;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002042
Chris Lattnerdf986172009-01-02 07:01:27 +00002043 case lltok::lbrace: {
2044 // ValID ::= '{' ConstVector '}'
2045 Lex.Lex();
2046 SmallVector<Constant*, 16> Elts;
2047 if (ParseGlobalValueVector(Elts) ||
2048 ParseToken(lltok::rbrace, "expected end of struct constant"))
2049 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002050
Owen Andersond7f2a6c2009-08-05 23:16:16 +00002051 ID.ConstantVal = ConstantStruct::get(Context, Elts.data(),
2052 Elts.size(), false);
Chris Lattnerdf986172009-01-02 07:01:27 +00002053 ID.Kind = ValID::t_Constant;
2054 return false;
2055 }
2056 case lltok::less: {
2057 // ValID ::= '<' ConstVector '>' --> Vector.
2058 // ValID ::= '<' '{' ConstVector '}' '>' --> Packed Struct.
2059 Lex.Lex();
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002060 bool isPackedStruct = EatIfPresent(lltok::lbrace);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002061
Chris Lattnerdf986172009-01-02 07:01:27 +00002062 SmallVector<Constant*, 16> Elts;
2063 LocTy FirstEltLoc = Lex.getLoc();
2064 if (ParseGlobalValueVector(Elts) ||
2065 (isPackedStruct &&
2066 ParseToken(lltok::rbrace, "expected end of packed struct")) ||
2067 ParseToken(lltok::greater, "expected end of constant"))
2068 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002069
Chris Lattnerdf986172009-01-02 07:01:27 +00002070 if (isPackedStruct) {
Owen Andersonfba933c2009-07-01 23:57:11 +00002071 ID.ConstantVal =
Owen Andersond7f2a6c2009-08-05 23:16:16 +00002072 ConstantStruct::get(Context, Elts.data(), Elts.size(), true);
Chris Lattnerdf986172009-01-02 07:01:27 +00002073 ID.Kind = ValID::t_Constant;
2074 return false;
2075 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002076
Chris Lattnerdf986172009-01-02 07:01:27 +00002077 if (Elts.empty())
2078 return Error(ID.Loc, "constant vector must not be empty");
2079
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00002080 if (!Elts[0]->getType()->isIntegerTy() &&
2081 !Elts[0]->getType()->isFloatingPointTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002082 return Error(FirstEltLoc,
2083 "vector elements must have integer or floating point type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002084
Chris Lattnerdf986172009-01-02 07:01:27 +00002085 // Verify that all the vector elements have the same type.
2086 for (unsigned i = 1, e = Elts.size(); i != e; ++i)
2087 if (Elts[i]->getType() != Elts[0]->getType())
2088 return Error(FirstEltLoc,
2089 "vector element #" + utostr(i) +
2090 " is not of type '" + Elts[0]->getType()->getDescription());
Daniel Dunbara279bc32009-09-20 02:20:51 +00002091
Owen Andersonaf7ec972009-07-28 21:19:26 +00002092 ID.ConstantVal = ConstantVector::get(Elts.data(), Elts.size());
Chris Lattnerdf986172009-01-02 07:01:27 +00002093 ID.Kind = ValID::t_Constant;
2094 return false;
2095 }
2096 case lltok::lsquare: { // Array Constant
2097 Lex.Lex();
2098 SmallVector<Constant*, 16> Elts;
2099 LocTy FirstEltLoc = Lex.getLoc();
2100 if (ParseGlobalValueVector(Elts) ||
2101 ParseToken(lltok::rsquare, "expected end of array constant"))
2102 return true;
2103
2104 // Handle empty element.
2105 if (Elts.empty()) {
2106 // Use undef instead of an array because it's inconvenient to determine
2107 // the element type at this point, there being no elements to examine.
Chris Lattner081b5052009-01-05 07:52:51 +00002108 ID.Kind = ValID::t_EmptyArray;
Chris Lattnerdf986172009-01-02 07:01:27 +00002109 return false;
2110 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002111
Chris Lattnerdf986172009-01-02 07:01:27 +00002112 if (!Elts[0]->getType()->isFirstClassType())
Daniel Dunbara279bc32009-09-20 02:20:51 +00002113 return Error(FirstEltLoc, "invalid array element type: " +
Chris Lattnerdf986172009-01-02 07:01:27 +00002114 Elts[0]->getType()->getDescription());
Daniel Dunbara279bc32009-09-20 02:20:51 +00002115
Owen Andersondebcb012009-07-29 22:17:13 +00002116 ArrayType *ATy = ArrayType::get(Elts[0]->getType(), Elts.size());
Daniel Dunbara279bc32009-09-20 02:20:51 +00002117
Chris Lattnerdf986172009-01-02 07:01:27 +00002118 // Verify all elements are correct type!
Chris Lattner6d6b3cc2009-01-02 08:49:06 +00002119 for (unsigned i = 0, e = Elts.size(); i != e; ++i) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002120 if (Elts[i]->getType() != Elts[0]->getType())
2121 return Error(FirstEltLoc,
2122 "array element #" + utostr(i) +
2123 " is not of type '" +Elts[0]->getType()->getDescription());
2124 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002125
Owen Anderson1fd70962009-07-28 18:32:17 +00002126 ID.ConstantVal = ConstantArray::get(ATy, Elts.data(), Elts.size());
Chris Lattnerdf986172009-01-02 07:01:27 +00002127 ID.Kind = ValID::t_Constant;
2128 return false;
2129 }
2130 case lltok::kw_c: // c "foo"
2131 Lex.Lex();
Owen Anderson1d0be152009-08-13 21:58:54 +00002132 ID.ConstantVal = ConstantArray::get(Context, Lex.getStrVal(), false);
Chris Lattnerdf986172009-01-02 07:01:27 +00002133 if (ParseToken(lltok::StringConstant, "expected string")) return true;
2134 ID.Kind = ValID::t_Constant;
2135 return false;
2136
2137 case lltok::kw_asm: {
Dale Johannesen8ba2d5b2009-10-21 23:28:00 +00002138 // ValID ::= 'asm' SideEffect? AlignStack? STRINGCONSTANT ',' STRINGCONSTANT
2139 bool HasSideEffect, AlignStack;
Chris Lattnerdf986172009-01-02 07:01:27 +00002140 Lex.Lex();
2141 if (ParseOptionalToken(lltok::kw_sideeffect, HasSideEffect) ||
Dale Johannesen8ba2d5b2009-10-21 23:28:00 +00002142 ParseOptionalToken(lltok::kw_alignstack, AlignStack) ||
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002143 ParseStringConstant(ID.StrVal) ||
2144 ParseToken(lltok::comma, "expected comma in inline asm expression") ||
Chris Lattnerdf986172009-01-02 07:01:27 +00002145 ParseToken(lltok::StringConstant, "expected constraint string"))
2146 return true;
2147 ID.StrVal2 = Lex.getStrVal();
Daniel Dunbarf0bb41c2009-11-07 23:51:55 +00002148 ID.UIntVal = unsigned(HasSideEffect) | (unsigned(AlignStack)<<1);
Chris Lattnerdf986172009-01-02 07:01:27 +00002149 ID.Kind = ValID::t_InlineAsm;
2150 return false;
2151 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002152
Chris Lattner09d9ef42009-10-28 03:39:23 +00002153 case lltok::kw_blockaddress: {
2154 // ValID ::= 'blockaddress' '(' @foo ',' %bar ')'
2155 Lex.Lex();
2156
2157 ValID Fn, Label;
2158 LocTy FnLoc, LabelLoc;
2159
2160 if (ParseToken(lltok::lparen, "expected '(' in block address expression") ||
2161 ParseValID(Fn) ||
2162 ParseToken(lltok::comma, "expected comma in block address expression")||
2163 ParseValID(Label) ||
2164 ParseToken(lltok::rparen, "expected ')' in block address expression"))
2165 return true;
Chris Lattnercdfc9402009-11-01 01:27:45 +00002166
Chris Lattner09d9ef42009-10-28 03:39:23 +00002167 if (Fn.Kind != ValID::t_GlobalID && Fn.Kind != ValID::t_GlobalName)
2168 return Error(Fn.Loc, "expected function name in blockaddress");
Chris Lattnercdfc9402009-11-01 01:27:45 +00002169 if (Label.Kind != ValID::t_LocalID && Label.Kind != ValID::t_LocalName)
Chris Lattner09d9ef42009-10-28 03:39:23 +00002170 return Error(Label.Loc, "expected basic block name in blockaddress");
2171
2172 // Make a global variable as a placeholder for this reference.
2173 GlobalVariable *FwdRef = new GlobalVariable(*M, Type::getInt8Ty(Context),
2174 false, GlobalValue::InternalLinkage,
2175 0, "");
2176 ForwardRefBlockAddresses[Fn].push_back(std::make_pair(Label, FwdRef));
2177 ID.ConstantVal = FwdRef;
2178 ID.Kind = ValID::t_Constant;
2179 return false;
2180 }
2181
Chris Lattnerdf986172009-01-02 07:01:27 +00002182 case lltok::kw_trunc:
2183 case lltok::kw_zext:
2184 case lltok::kw_sext:
2185 case lltok::kw_fptrunc:
2186 case lltok::kw_fpext:
2187 case lltok::kw_bitcast:
2188 case lltok::kw_uitofp:
2189 case lltok::kw_sitofp:
2190 case lltok::kw_fptoui:
Daniel Dunbara279bc32009-09-20 02:20:51 +00002191 case lltok::kw_fptosi:
Chris Lattnerdf986172009-01-02 07:01:27 +00002192 case lltok::kw_inttoptr:
Daniel Dunbara279bc32009-09-20 02:20:51 +00002193 case lltok::kw_ptrtoint: {
Chris Lattnerdf986172009-01-02 07:01:27 +00002194 unsigned Opc = Lex.getUIntVal();
Owen Anderson1d0be152009-08-13 21:58:54 +00002195 PATypeHolder DestTy(Type::getVoidTy(Context));
Chris Lattnerdf986172009-01-02 07:01:27 +00002196 Constant *SrcVal;
2197 Lex.Lex();
2198 if (ParseToken(lltok::lparen, "expected '(' after constantexpr cast") ||
2199 ParseGlobalTypeAndValue(SrcVal) ||
Dan Gohman24b108b2009-06-15 21:52:11 +00002200 ParseToken(lltok::kw_to, "expected 'to' in constantexpr cast") ||
Chris Lattnerdf986172009-01-02 07:01:27 +00002201 ParseType(DestTy) ||
2202 ParseToken(lltok::rparen, "expected ')' at end of constantexpr cast"))
2203 return true;
2204 if (!CastInst::castIsValid((Instruction::CastOps)Opc, SrcVal, DestTy))
2205 return Error(ID.Loc, "invalid cast opcode for cast from '" +
2206 SrcVal->getType()->getDescription() + "' to '" +
2207 DestTy->getDescription() + "'");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002208 ID.ConstantVal = ConstantExpr::getCast((Instruction::CastOps)Opc,
Owen Andersonfba933c2009-07-01 23:57:11 +00002209 SrcVal, DestTy);
Chris Lattnerdf986172009-01-02 07:01:27 +00002210 ID.Kind = ValID::t_Constant;
2211 return false;
2212 }
2213 case lltok::kw_extractvalue: {
2214 Lex.Lex();
2215 Constant *Val;
2216 SmallVector<unsigned, 4> Indices;
2217 if (ParseToken(lltok::lparen, "expected '(' in extractvalue constantexpr")||
2218 ParseGlobalTypeAndValue(Val) ||
2219 ParseIndexList(Indices) ||
2220 ParseToken(lltok::rparen, "expected ')' in extractvalue constantexpr"))
2221 return true;
Devang Patele8bc45a2009-11-03 19:06:07 +00002222
Chris Lattnerfdfeb692010-02-12 20:49:41 +00002223 if (!Val->getType()->isAggregateType())
2224 return Error(ID.Loc, "extractvalue operand must be aggregate type");
Chris Lattnerdf986172009-01-02 07:01:27 +00002225 if (!ExtractValueInst::getIndexedType(Val->getType(), Indices.begin(),
2226 Indices.end()))
2227 return Error(ID.Loc, "invalid indices for extractvalue");
Jay Foade3e51c02009-05-21 09:52:38 +00002228 ID.ConstantVal =
Owen Andersonbaf3c402009-07-29 18:55:55 +00002229 ConstantExpr::getExtractValue(Val, Indices.data(), Indices.size());
Chris Lattnerdf986172009-01-02 07:01:27 +00002230 ID.Kind = ValID::t_Constant;
2231 return false;
2232 }
2233 case lltok::kw_insertvalue: {
2234 Lex.Lex();
2235 Constant *Val0, *Val1;
2236 SmallVector<unsigned, 4> Indices;
2237 if (ParseToken(lltok::lparen, "expected '(' in insertvalue constantexpr")||
2238 ParseGlobalTypeAndValue(Val0) ||
2239 ParseToken(lltok::comma, "expected comma in insertvalue constantexpr")||
2240 ParseGlobalTypeAndValue(Val1) ||
2241 ParseIndexList(Indices) ||
2242 ParseToken(lltok::rparen, "expected ')' in insertvalue constantexpr"))
2243 return true;
Chris Lattnerfdfeb692010-02-12 20:49:41 +00002244 if (!Val0->getType()->isAggregateType())
2245 return Error(ID.Loc, "insertvalue operand must be aggregate type");
Chris Lattnerdf986172009-01-02 07:01:27 +00002246 if (!ExtractValueInst::getIndexedType(Val0->getType(), Indices.begin(),
2247 Indices.end()))
2248 return Error(ID.Loc, "invalid indices for insertvalue");
Owen Andersonbaf3c402009-07-29 18:55:55 +00002249 ID.ConstantVal = ConstantExpr::getInsertValue(Val0, Val1,
Owen Andersonfba933c2009-07-01 23:57:11 +00002250 Indices.data(), Indices.size());
Chris Lattnerdf986172009-01-02 07:01:27 +00002251 ID.Kind = ValID::t_Constant;
2252 return false;
2253 }
2254 case lltok::kw_icmp:
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00002255 case lltok::kw_fcmp: {
Chris Lattnerdf986172009-01-02 07:01:27 +00002256 unsigned PredVal, Opc = Lex.getUIntVal();
2257 Constant *Val0, *Val1;
2258 Lex.Lex();
2259 if (ParseCmpPredicate(PredVal, Opc) ||
2260 ParseToken(lltok::lparen, "expected '(' in compare constantexpr") ||
2261 ParseGlobalTypeAndValue(Val0) ||
2262 ParseToken(lltok::comma, "expected comma in compare constantexpr") ||
2263 ParseGlobalTypeAndValue(Val1) ||
2264 ParseToken(lltok::rparen, "expected ')' in compare constantexpr"))
2265 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002266
Chris Lattnerdf986172009-01-02 07:01:27 +00002267 if (Val0->getType() != Val1->getType())
2268 return Error(ID.Loc, "compare operands must have the same type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002269
Chris Lattnerdf986172009-01-02 07:01:27 +00002270 CmpInst::Predicate Pred = (CmpInst::Predicate)PredVal;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002271
Chris Lattnerdf986172009-01-02 07:01:27 +00002272 if (Opc == Instruction::FCmp) {
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00002273 if (!Val0->getType()->isFPOrFPVectorTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002274 return Error(ID.Loc, "fcmp requires floating point operands");
Owen Andersonbaf3c402009-07-29 18:55:55 +00002275 ID.ConstantVal = ConstantExpr::getFCmp(Pred, Val0, Val1);
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00002276 } else {
2277 assert(Opc == Instruction::ICmp && "Unexpected opcode for CmpInst!");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00002278 if (!Val0->getType()->isIntOrIntVectorTy() &&
Duncan Sands1df98592010-02-16 11:11:14 +00002279 !Val0->getType()->isPointerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002280 return Error(ID.Loc, "icmp requires pointer or integer operands");
Owen Andersonbaf3c402009-07-29 18:55:55 +00002281 ID.ConstantVal = ConstantExpr::getICmp(Pred, Val0, Val1);
Chris Lattnerdf986172009-01-02 07:01:27 +00002282 }
2283 ID.Kind = ValID::t_Constant;
2284 return false;
2285 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002286
Chris Lattnerdf986172009-01-02 07:01:27 +00002287 // Binary Operators.
2288 case lltok::kw_add:
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002289 case lltok::kw_fadd:
Chris Lattnerdf986172009-01-02 07:01:27 +00002290 case lltok::kw_sub:
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002291 case lltok::kw_fsub:
Chris Lattnerdf986172009-01-02 07:01:27 +00002292 case lltok::kw_mul:
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002293 case lltok::kw_fmul:
Chris Lattnerdf986172009-01-02 07:01:27 +00002294 case lltok::kw_udiv:
2295 case lltok::kw_sdiv:
2296 case lltok::kw_fdiv:
2297 case lltok::kw_urem:
2298 case lltok::kw_srem:
2299 case lltok::kw_frem: {
Dan Gohman59858cf2009-07-27 16:11:46 +00002300 bool NUW = false;
2301 bool NSW = false;
2302 bool Exact = false;
Chris Lattnerdf986172009-01-02 07:01:27 +00002303 unsigned Opc = Lex.getUIntVal();
2304 Constant *Val0, *Val1;
2305 Lex.Lex();
Dan Gohman59858cf2009-07-27 16:11:46 +00002306 LocTy ModifierLoc = Lex.getLoc();
2307 if (Opc == Instruction::Add ||
2308 Opc == Instruction::Sub ||
2309 Opc == Instruction::Mul) {
2310 if (EatIfPresent(lltok::kw_nuw))
2311 NUW = true;
2312 if (EatIfPresent(lltok::kw_nsw)) {
2313 NSW = true;
2314 if (EatIfPresent(lltok::kw_nuw))
2315 NUW = true;
2316 }
2317 } else if (Opc == Instruction::SDiv) {
2318 if (EatIfPresent(lltok::kw_exact))
2319 Exact = true;
2320 }
Chris Lattnerdf986172009-01-02 07:01:27 +00002321 if (ParseToken(lltok::lparen, "expected '(' in binary constantexpr") ||
2322 ParseGlobalTypeAndValue(Val0) ||
2323 ParseToken(lltok::comma, "expected comma in binary constantexpr") ||
2324 ParseGlobalTypeAndValue(Val1) ||
2325 ParseToken(lltok::rparen, "expected ')' in binary constantexpr"))
2326 return true;
2327 if (Val0->getType() != Val1->getType())
2328 return Error(ID.Loc, "operands of constexpr must have same type");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00002329 if (!Val0->getType()->isIntOrIntVectorTy()) {
Dan Gohman59858cf2009-07-27 16:11:46 +00002330 if (NUW)
2331 return Error(ModifierLoc, "nuw only applies to integer operations");
2332 if (NSW)
2333 return Error(ModifierLoc, "nsw only applies to integer operations");
2334 }
Dan Gohman1eaac532010-05-03 22:44:19 +00002335 // Check that the type is valid for the operator.
2336 switch (Opc) {
2337 case Instruction::Add:
2338 case Instruction::Sub:
2339 case Instruction::Mul:
2340 case Instruction::UDiv:
2341 case Instruction::SDiv:
2342 case Instruction::URem:
2343 case Instruction::SRem:
2344 if (!Val0->getType()->isIntOrIntVectorTy())
2345 return Error(ID.Loc, "constexpr requires integer operands");
2346 break;
2347 case Instruction::FAdd:
2348 case Instruction::FSub:
2349 case Instruction::FMul:
2350 case Instruction::FDiv:
2351 case Instruction::FRem:
2352 if (!Val0->getType()->isFPOrFPVectorTy())
2353 return Error(ID.Loc, "constexpr requires fp operands");
2354 break;
2355 default: llvm_unreachable("Unknown binary operator!");
2356 }
Dan Gohmanf8dbee72009-09-07 23:54:19 +00002357 unsigned Flags = 0;
2358 if (NUW) Flags |= OverflowingBinaryOperator::NoUnsignedWrap;
2359 if (NSW) Flags |= OverflowingBinaryOperator::NoSignedWrap;
2360 if (Exact) Flags |= SDivOperator::IsExact;
2361 Constant *C = ConstantExpr::get(Opc, Val0, Val1, Flags);
Dan Gohman59858cf2009-07-27 16:11:46 +00002362 ID.ConstantVal = C;
Chris Lattnerdf986172009-01-02 07:01:27 +00002363 ID.Kind = ValID::t_Constant;
2364 return false;
2365 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002366
Chris Lattnerdf986172009-01-02 07:01:27 +00002367 // Logical Operations
2368 case lltok::kw_shl:
2369 case lltok::kw_lshr:
2370 case lltok::kw_ashr:
2371 case lltok::kw_and:
2372 case lltok::kw_or:
2373 case lltok::kw_xor: {
2374 unsigned Opc = Lex.getUIntVal();
2375 Constant *Val0, *Val1;
2376 Lex.Lex();
2377 if (ParseToken(lltok::lparen, "expected '(' in logical constantexpr") ||
2378 ParseGlobalTypeAndValue(Val0) ||
2379 ParseToken(lltok::comma, "expected comma in logical constantexpr") ||
2380 ParseGlobalTypeAndValue(Val1) ||
2381 ParseToken(lltok::rparen, "expected ')' in logical constantexpr"))
2382 return true;
2383 if (Val0->getType() != Val1->getType())
2384 return Error(ID.Loc, "operands of constexpr must have same type");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00002385 if (!Val0->getType()->isIntOrIntVectorTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002386 return Error(ID.Loc,
2387 "constexpr requires integer or integer vector operands");
Owen Andersonbaf3c402009-07-29 18:55:55 +00002388 ID.ConstantVal = ConstantExpr::get(Opc, Val0, Val1);
Chris Lattnerdf986172009-01-02 07:01:27 +00002389 ID.Kind = ValID::t_Constant;
2390 return false;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002391 }
2392
Chris Lattnerdf986172009-01-02 07:01:27 +00002393 case lltok::kw_getelementptr:
2394 case lltok::kw_shufflevector:
2395 case lltok::kw_insertelement:
2396 case lltok::kw_extractelement:
2397 case lltok::kw_select: {
2398 unsigned Opc = Lex.getUIntVal();
2399 SmallVector<Constant*, 16> Elts;
Dan Gohmandd8004d2009-07-27 21:53:46 +00002400 bool InBounds = false;
Chris Lattnerdf986172009-01-02 07:01:27 +00002401 Lex.Lex();
Dan Gohmandd8004d2009-07-27 21:53:46 +00002402 if (Opc == Instruction::GetElementPtr)
Dan Gohmandcb40a32009-07-29 15:58:36 +00002403 InBounds = EatIfPresent(lltok::kw_inbounds);
Chris Lattnerdf986172009-01-02 07:01:27 +00002404 if (ParseToken(lltok::lparen, "expected '(' in constantexpr") ||
2405 ParseGlobalValueVector(Elts) ||
2406 ParseToken(lltok::rparen, "expected ')' in constantexpr"))
2407 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002408
Chris Lattnerdf986172009-01-02 07:01:27 +00002409 if (Opc == Instruction::GetElementPtr) {
Duncan Sands1df98592010-02-16 11:11:14 +00002410 if (Elts.size() == 0 || !Elts[0]->getType()->isPointerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002411 return Error(ID.Loc, "getelementptr requires pointer operand");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002412
Chris Lattnerdf986172009-01-02 07:01:27 +00002413 if (!GetElementPtrInst::getIndexedType(Elts[0]->getType(),
Eli Friedman4e9bac32009-07-24 21:56:17 +00002414 (Value**)(Elts.data() + 1),
2415 Elts.size() - 1))
Chris Lattnerdf986172009-01-02 07:01:27 +00002416 return Error(ID.Loc, "invalid indices for getelementptr");
Dan Gohmanf8dbee72009-09-07 23:54:19 +00002417 ID.ConstantVal = InBounds ?
2418 ConstantExpr::getInBoundsGetElementPtr(Elts[0],
2419 Elts.data() + 1,
2420 Elts.size() - 1) :
2421 ConstantExpr::getGetElementPtr(Elts[0],
2422 Elts.data() + 1, Elts.size() - 1);
Chris Lattnerdf986172009-01-02 07:01:27 +00002423 } else if (Opc == Instruction::Select) {
2424 if (Elts.size() != 3)
2425 return Error(ID.Loc, "expected three operands to select");
2426 if (const char *Reason = SelectInst::areInvalidOperands(Elts[0], Elts[1],
2427 Elts[2]))
2428 return Error(ID.Loc, Reason);
Owen Andersonbaf3c402009-07-29 18:55:55 +00002429 ID.ConstantVal = ConstantExpr::getSelect(Elts[0], Elts[1], Elts[2]);
Chris Lattnerdf986172009-01-02 07:01:27 +00002430 } else if (Opc == Instruction::ShuffleVector) {
2431 if (Elts.size() != 3)
2432 return Error(ID.Loc, "expected three operands to shufflevector");
2433 if (!ShuffleVectorInst::isValidOperands(Elts[0], Elts[1], Elts[2]))
2434 return Error(ID.Loc, "invalid operands to shufflevector");
Owen Andersonfba933c2009-07-01 23:57:11 +00002435 ID.ConstantVal =
Owen Andersonbaf3c402009-07-29 18:55:55 +00002436 ConstantExpr::getShuffleVector(Elts[0], Elts[1],Elts[2]);
Chris Lattnerdf986172009-01-02 07:01:27 +00002437 } else if (Opc == Instruction::ExtractElement) {
2438 if (Elts.size() != 2)
2439 return Error(ID.Loc, "expected two operands to extractelement");
2440 if (!ExtractElementInst::isValidOperands(Elts[0], Elts[1]))
2441 return Error(ID.Loc, "invalid extractelement operands");
Owen Andersonbaf3c402009-07-29 18:55:55 +00002442 ID.ConstantVal = ConstantExpr::getExtractElement(Elts[0], Elts[1]);
Chris Lattnerdf986172009-01-02 07:01:27 +00002443 } else {
2444 assert(Opc == Instruction::InsertElement && "Unknown opcode");
2445 if (Elts.size() != 3)
2446 return Error(ID.Loc, "expected three operands to insertelement");
2447 if (!InsertElementInst::isValidOperands(Elts[0], Elts[1], Elts[2]))
2448 return Error(ID.Loc, "invalid insertelement operands");
Owen Andersonfba933c2009-07-01 23:57:11 +00002449 ID.ConstantVal =
Owen Andersonbaf3c402009-07-29 18:55:55 +00002450 ConstantExpr::getInsertElement(Elts[0], Elts[1],Elts[2]);
Chris Lattnerdf986172009-01-02 07:01:27 +00002451 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002452
Chris Lattnerdf986172009-01-02 07:01:27 +00002453 ID.Kind = ValID::t_Constant;
2454 return false;
2455 }
2456 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002457
Chris Lattnerdf986172009-01-02 07:01:27 +00002458 Lex.Lex();
2459 return false;
2460}
2461
2462/// ParseGlobalValue - Parse a global value with the specified type.
Victor Hernandez92f238d2010-01-11 22:31:58 +00002463bool LLParser::ParseGlobalValue(const Type *Ty, Constant *&C) {
2464 C = 0;
Chris Lattnerdf986172009-01-02 07:01:27 +00002465 ValID ID;
Victor Hernandez92f238d2010-01-11 22:31:58 +00002466 Value *V = NULL;
2467 bool Parsed = ParseValID(ID) ||
2468 ConvertValIDToValue(Ty, ID, V, NULL);
2469 if (V && !(C = dyn_cast<Constant>(V)))
2470 return Error(ID.Loc, "global values must be constants");
2471 return Parsed;
Chris Lattnerdf986172009-01-02 07:01:27 +00002472}
2473
Victor Hernandez92f238d2010-01-11 22:31:58 +00002474bool LLParser::ParseGlobalTypeAndValue(Constant *&V) {
2475 PATypeHolder Type(Type::getVoidTy(Context));
2476 return ParseType(Type) ||
2477 ParseGlobalValue(Type, V);
2478}
2479
2480/// ParseGlobalValueVector
2481/// ::= /*empty*/
2482/// ::= TypeAndValue (',' TypeAndValue)*
2483bool LLParser::ParseGlobalValueVector(SmallVectorImpl<Constant*> &Elts) {
2484 // Empty list.
2485 if (Lex.getKind() == lltok::rbrace ||
2486 Lex.getKind() == lltok::rsquare ||
2487 Lex.getKind() == lltok::greater ||
2488 Lex.getKind() == lltok::rparen)
2489 return false;
2490
2491 Constant *C;
2492 if (ParseGlobalTypeAndValue(C)) return true;
2493 Elts.push_back(C);
2494
2495 while (EatIfPresent(lltok::comma)) {
2496 if (ParseGlobalTypeAndValue(C)) return true;
2497 Elts.push_back(C);
2498 }
2499
2500 return false;
2501}
2502
Dan Gohman83448032010-07-14 18:26:50 +00002503/// ParseMetadataValue
2504/// ::= !42
2505/// ::= !{...}
2506/// ::= !"string"
2507bool LLParser::ParseMetadataValue(ValID &ID, PerFunctionState *PFS) {
2508 assert(Lex.getKind() == lltok::exclaim);
2509 Lex.Lex();
2510
2511 // MDNode:
2512 // !{ ... }
2513 if (EatIfPresent(lltok::lbrace)) {
2514 SmallVector<Value*, 16> Elts;
2515 if (ParseMDNodeVector(Elts, PFS) ||
2516 ParseToken(lltok::rbrace, "expected end of metadata node"))
2517 return true;
2518
2519 ID.MDNodeVal = MDNode::get(Context, Elts.data(), Elts.size());
2520 ID.Kind = ValID::t_MDNode;
2521 return false;
2522 }
2523
2524 // Standalone metadata reference
2525 // !42
2526 if (Lex.getKind() == lltok::APSInt) {
2527 if (ParseMDNodeID(ID.MDNodeVal)) return true;
2528 ID.Kind = ValID::t_MDNode;
2529 return false;
2530 }
2531
2532 // MDString:
2533 // ::= '!' STRINGCONSTANT
2534 if (ParseMDString(ID.MDStringVal)) return true;
2535 ID.Kind = ValID::t_MDString;
2536 return false;
2537}
2538
Victor Hernandez92f238d2010-01-11 22:31:58 +00002539
2540//===----------------------------------------------------------------------===//
2541// Function Parsing.
2542//===----------------------------------------------------------------------===//
2543
2544bool LLParser::ConvertValIDToValue(const Type *Ty, ValID &ID, Value *&V,
2545 PerFunctionState *PFS) {
Duncan Sands1df98592010-02-16 11:11:14 +00002546 if (Ty->isFunctionTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002547 return Error(ID.Loc, "functions are not values, refer to them as pointers");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002548
Chris Lattnerdf986172009-01-02 07:01:27 +00002549 switch (ID.Kind) {
Daniel Dunbara279bc32009-09-20 02:20:51 +00002550 default: llvm_unreachable("Unknown ValID!");
Chris Lattnerdf986172009-01-02 07:01:27 +00002551 case ValID::t_LocalID:
Victor Hernandez92f238d2010-01-11 22:31:58 +00002552 if (!PFS) return Error(ID.Loc, "invalid use of function-local name");
2553 V = PFS->GetVal(ID.UIntVal, Ty, ID.Loc);
2554 return (V == 0);
Chris Lattnerdf986172009-01-02 07:01:27 +00002555 case ValID::t_LocalName:
Victor Hernandez92f238d2010-01-11 22:31:58 +00002556 if (!PFS) return Error(ID.Loc, "invalid use of function-local name");
2557 V = PFS->GetVal(ID.StrVal, Ty, ID.Loc);
2558 return (V == 0);
2559 case ValID::t_InlineAsm: {
2560 const PointerType *PTy = dyn_cast<PointerType>(Ty);
2561 const FunctionType *FTy =
2562 PTy ? dyn_cast<FunctionType>(PTy->getElementType()) : 0;
2563 if (!FTy || !InlineAsm::Verify(FTy, ID.StrVal2))
2564 return Error(ID.Loc, "invalid type for inline asm constraint string");
2565 V = InlineAsm::get(FTy, ID.StrVal, ID.StrVal2, ID.UIntVal&1, ID.UIntVal>>1);
2566 return false;
2567 }
2568 case ValID::t_MDNode:
2569 if (!Ty->isMetadataTy())
2570 return Error(ID.Loc, "metadata value must have metadata type");
2571 V = ID.MDNodeVal;
2572 return false;
2573 case ValID::t_MDString:
2574 if (!Ty->isMetadataTy())
2575 return Error(ID.Loc, "metadata value must have metadata type");
2576 V = ID.MDStringVal;
2577 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00002578 case ValID::t_GlobalName:
2579 V = GetGlobalVal(ID.StrVal, Ty, ID.Loc);
2580 return V == 0;
2581 case ValID::t_GlobalID:
2582 V = GetGlobalVal(ID.UIntVal, Ty, ID.Loc);
2583 return V == 0;
2584 case ValID::t_APSInt:
Duncan Sands1df98592010-02-16 11:11:14 +00002585 if (!Ty->isIntegerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002586 return Error(ID.Loc, "integer constant must have integer type");
2587 ID.APSIntVal.extOrTrunc(Ty->getPrimitiveSizeInBits());
Owen Andersoneed707b2009-07-24 23:12:02 +00002588 V = ConstantInt::get(Context, ID.APSIntVal);
Chris Lattnerdf986172009-01-02 07:01:27 +00002589 return false;
2590 case ValID::t_APFloat:
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00002591 if (!Ty->isFloatingPointTy() ||
Chris Lattnerdf986172009-01-02 07:01:27 +00002592 !ConstantFP::isValueValidForType(Ty, ID.APFloatVal))
2593 return Error(ID.Loc, "floating point constant invalid for type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002594
Chris Lattnerdf986172009-01-02 07:01:27 +00002595 // The lexer has no type info, so builds all float and double FP constants
2596 // as double. Fix this here. Long double does not need this.
2597 if (&ID.APFloatVal.getSemantics() == &APFloat::IEEEdouble &&
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00002598 Ty->isFloatTy()) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002599 bool Ignored;
2600 ID.APFloatVal.convert(APFloat::IEEEsingle, APFloat::rmNearestTiesToEven,
2601 &Ignored);
2602 }
Owen Anderson6f83c9c2009-07-27 20:59:43 +00002603 V = ConstantFP::get(Context, ID.APFloatVal);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002604
Chris Lattner959873d2009-01-05 18:24:23 +00002605 if (V->getType() != Ty)
2606 return Error(ID.Loc, "floating point constant does not have type '" +
2607 Ty->getDescription() + "'");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002608
Chris Lattnerdf986172009-01-02 07:01:27 +00002609 return false;
2610 case ValID::t_Null:
Duncan Sands1df98592010-02-16 11:11:14 +00002611 if (!Ty->isPointerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002612 return Error(ID.Loc, "null must be a pointer type");
Owen Anderson9e9a0d52009-07-30 23:03:37 +00002613 V = ConstantPointerNull::get(cast<PointerType>(Ty));
Chris Lattnerdf986172009-01-02 07:01:27 +00002614 return false;
2615 case ValID::t_Undef:
Chris Lattnere67c1aa2009-01-05 08:13:38 +00002616 // FIXME: LabelTy should not be a first-class type.
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00002617 if ((!Ty->isFirstClassType() || Ty->isLabelTy()) &&
Duncan Sands47c51882010-02-16 14:50:09 +00002618 !Ty->isOpaqueTy())
Chris Lattnere67c1aa2009-01-05 08:13:38 +00002619 return Error(ID.Loc, "invalid type for undef constant");
Owen Anderson9e9a0d52009-07-30 23:03:37 +00002620 V = UndefValue::get(Ty);
Chris Lattnerdf986172009-01-02 07:01:27 +00002621 return false;
Chris Lattner081b5052009-01-05 07:52:51 +00002622 case ValID::t_EmptyArray:
Duncan Sands1df98592010-02-16 11:11:14 +00002623 if (!Ty->isArrayTy() || cast<ArrayType>(Ty)->getNumElements() != 0)
Chris Lattner081b5052009-01-05 07:52:51 +00002624 return Error(ID.Loc, "invalid empty array initializer");
Owen Anderson9e9a0d52009-07-30 23:03:37 +00002625 V = UndefValue::get(Ty);
Chris Lattner081b5052009-01-05 07:52:51 +00002626 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00002627 case ValID::t_Zero:
Chris Lattnere67c1aa2009-01-05 08:13:38 +00002628 // FIXME: LabelTy should not be a first-class type.
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00002629 if (!Ty->isFirstClassType() || Ty->isLabelTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002630 return Error(ID.Loc, "invalid type for null constant");
Owen Andersona7235ea2009-07-31 20:28:14 +00002631 V = Constant::getNullValue(Ty);
Chris Lattnerdf986172009-01-02 07:01:27 +00002632 return false;
2633 case ValID::t_Constant:
Chris Lattnerfdfeb692010-02-12 20:49:41 +00002634 if (ID.ConstantVal->getType() != Ty) {
2635 // Allow a constant struct with a single member to be converted
2636 // to a union, if the union has a member which is the same type
2637 // as the struct member.
2638 if (const UnionType* utype = dyn_cast<UnionType>(Ty)) {
2639 return ParseUnionValue(utype, ID, V);
2640 }
2641
Chris Lattnerdf986172009-01-02 07:01:27 +00002642 return Error(ID.Loc, "constant expression type mismatch");
Chris Lattnerfdfeb692010-02-12 20:49:41 +00002643 }
2644
Chris Lattnerdf986172009-01-02 07:01:27 +00002645 V = ID.ConstantVal;
2646 return false;
2647 }
2648}
Daniel Dunbara279bc32009-09-20 02:20:51 +00002649
Chris Lattnerdf986172009-01-02 07:01:27 +00002650bool LLParser::ParseValue(const Type *Ty, Value *&V, PerFunctionState &PFS) {
2651 V = 0;
2652 ValID ID;
Victor Hernandezbf170d42010-01-05 22:22:14 +00002653 return ParseValID(ID, &PFS) ||
Victor Hernandez92f238d2010-01-11 22:31:58 +00002654 ConvertValIDToValue(Ty, ID, V, &PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00002655}
2656
2657bool LLParser::ParseTypeAndValue(Value *&V, PerFunctionState &PFS) {
Owen Anderson1d0be152009-08-13 21:58:54 +00002658 PATypeHolder T(Type::getVoidTy(Context));
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002659 return ParseType(T) ||
2660 ParseValue(T, V, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00002661}
2662
Chris Lattnerf9be95f2009-10-27 19:13:16 +00002663bool LLParser::ParseTypeAndBasicBlock(BasicBlock *&BB, LocTy &Loc,
2664 PerFunctionState &PFS) {
2665 Value *V;
2666 Loc = Lex.getLoc();
2667 if (ParseTypeAndValue(V, PFS)) return true;
2668 if (!isa<BasicBlock>(V))
2669 return Error(Loc, "expected a basic block");
2670 BB = cast<BasicBlock>(V);
2671 return false;
2672}
2673
Chris Lattnerfdfeb692010-02-12 20:49:41 +00002674bool LLParser::ParseUnionValue(const UnionType* utype, ValID &ID, Value *&V) {
2675 if (const StructType* stype = dyn_cast<StructType>(ID.ConstantVal->getType())) {
2676 if (stype->getNumContainedTypes() != 1)
2677 return Error(ID.Loc, "constant expression type mismatch");
2678 int index = utype->getElementTypeIndex(stype->getContainedType(0));
2679 if (index < 0)
2680 return Error(ID.Loc, "initializer type is not a member of the union");
2681
2682 V = ConstantUnion::get(
2683 utype, cast<Constant>(ID.ConstantVal->getOperand(0)));
2684 return false;
2685 }
2686
2687 return Error(ID.Loc, "constant expression type mismatch");
2688}
2689
Chris Lattnerf9be95f2009-10-27 19:13:16 +00002690
Chris Lattnerdf986172009-01-02 07:01:27 +00002691/// FunctionHeader
2692/// ::= OptionalLinkage OptionalVisibility OptionalCallingConv OptRetAttrs
2693/// Type GlobalName '(' ArgList ')' OptFuncAttrs OptSection
2694/// OptionalAlign OptGC
2695bool LLParser::ParseFunctionHeader(Function *&Fn, bool isDefine) {
2696 // Parse the linkage.
2697 LocTy LinkageLoc = Lex.getLoc();
2698 unsigned Linkage;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002699
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00002700 unsigned Visibility, RetAttrs;
2701 CallingConv::ID CC;
Owen Anderson1d0be152009-08-13 21:58:54 +00002702 PATypeHolder RetType(Type::getVoidTy(Context));
Chris Lattnerdf986172009-01-02 07:01:27 +00002703 LocTy RetTypeLoc = Lex.getLoc();
2704 if (ParseOptionalLinkage(Linkage) ||
2705 ParseOptionalVisibility(Visibility) ||
2706 ParseOptionalCallingConv(CC) ||
2707 ParseOptionalAttrs(RetAttrs, 1) ||
Chris Lattnera9a9e072009-03-09 04:49:14 +00002708 ParseType(RetType, RetTypeLoc, true /*void allowed*/))
Chris Lattnerdf986172009-01-02 07:01:27 +00002709 return true;
2710
2711 // Verify that the linkage is ok.
2712 switch ((GlobalValue::LinkageTypes)Linkage) {
2713 case GlobalValue::ExternalLinkage:
2714 break; // always ok.
2715 case GlobalValue::DLLImportLinkage:
Duncan Sands5f4ee1f2009-03-11 08:08:06 +00002716 case GlobalValue::ExternalWeakLinkage:
Chris Lattnerdf986172009-01-02 07:01:27 +00002717 if (isDefine)
2718 return Error(LinkageLoc, "invalid linkage for function definition");
2719 break;
Rafael Espindolabb46f522009-01-15 20:18:42 +00002720 case GlobalValue::PrivateLinkage:
Bill Wendling3d10a5a2009-07-20 01:03:30 +00002721 case GlobalValue::LinkerPrivateLinkage:
Bill Wendling5e721d72010-07-01 21:55:59 +00002722 case GlobalValue::LinkerPrivateWeakLinkage:
Chris Lattnerdf986172009-01-02 07:01:27 +00002723 case GlobalValue::InternalLinkage:
Nick Lewycky55f64db2009-04-13 07:02:02 +00002724 case GlobalValue::AvailableExternallyLinkage:
Duncan Sands667d4b82009-03-07 15:45:40 +00002725 case GlobalValue::LinkOnceAnyLinkage:
2726 case GlobalValue::LinkOnceODRLinkage:
2727 case GlobalValue::WeakAnyLinkage:
2728 case GlobalValue::WeakODRLinkage:
Chris Lattnerdf986172009-01-02 07:01:27 +00002729 case GlobalValue::DLLExportLinkage:
2730 if (!isDefine)
2731 return Error(LinkageLoc, "invalid linkage for function declaration");
2732 break;
2733 case GlobalValue::AppendingLinkage:
Duncan Sands4dc2b392009-03-11 20:14:15 +00002734 case GlobalValue::CommonLinkage:
Chris Lattnerdf986172009-01-02 07:01:27 +00002735 return Error(LinkageLoc, "invalid function linkage type");
2736 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002737
Chris Lattner99bb3152009-01-05 08:00:30 +00002738 if (!FunctionType::isValidReturnType(RetType) ||
Duncan Sands47c51882010-02-16 14:50:09 +00002739 RetType->isOpaqueTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002740 return Error(RetTypeLoc, "invalid function return type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002741
Chris Lattnerdf986172009-01-02 07:01:27 +00002742 LocTy NameLoc = Lex.getLoc();
Chris Lattnerf570e622009-02-18 21:48:13 +00002743
2744 std::string FunctionName;
2745 if (Lex.getKind() == lltok::GlobalVar) {
2746 FunctionName = Lex.getStrVal();
2747 } else if (Lex.getKind() == lltok::GlobalID) { // @42 is ok.
2748 unsigned NameID = Lex.getUIntVal();
2749
2750 if (NameID != NumberedVals.size())
2751 return TokError("function expected to be numbered '%" +
2752 utostr(NumberedVals.size()) + "'");
2753 } else {
2754 return TokError("expected function name");
2755 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002756
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002757 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +00002758
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002759 if (Lex.getKind() != lltok::lparen)
Chris Lattnerdf986172009-01-02 07:01:27 +00002760 return TokError("expected '(' in function argument list");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002761
Chris Lattnerdf986172009-01-02 07:01:27 +00002762 std::vector<ArgInfo> ArgList;
2763 bool isVarArg;
Chris Lattnerdf986172009-01-02 07:01:27 +00002764 unsigned FuncAttrs;
Chris Lattnerdf986172009-01-02 07:01:27 +00002765 std::string Section;
Chris Lattnerdf986172009-01-02 07:01:27 +00002766 unsigned Alignment;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002767 std::string GC;
2768
Chris Lattnerdfd19dd2009-01-05 18:34:07 +00002769 if (ParseArgumentList(ArgList, isVarArg, false) ||
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002770 ParseOptionalAttrs(FuncAttrs, 2) ||
2771 (EatIfPresent(lltok::kw_section) &&
2772 ParseStringConstant(Section)) ||
2773 ParseOptionalAlignment(Alignment) ||
2774 (EatIfPresent(lltok::kw_gc) &&
2775 ParseStringConstant(GC)))
2776 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00002777
2778 // If the alignment was parsed as an attribute, move to the alignment field.
2779 if (FuncAttrs & Attribute::Alignment) {
2780 Alignment = Attribute::getAlignmentFromAttrs(FuncAttrs);
2781 FuncAttrs &= ~Attribute::Alignment;
2782 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002783
Chris Lattnerdf986172009-01-02 07:01:27 +00002784 // Okay, if we got here, the function is syntactically valid. Convert types
2785 // and do semantic checks.
2786 std::vector<const Type*> ParamTypeList;
2787 SmallVector<AttributeWithIndex, 8> Attrs;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002788 // FIXME : In 3.0, stop accepting zext, sext and inreg as optional function
Chris Lattnerdf986172009-01-02 07:01:27 +00002789 // attributes.
2790 unsigned ObsoleteFuncAttrs = Attribute::ZExt|Attribute::SExt|Attribute::InReg;
2791 if (FuncAttrs & ObsoleteFuncAttrs) {
2792 RetAttrs |= FuncAttrs & ObsoleteFuncAttrs;
2793 FuncAttrs &= ~ObsoleteFuncAttrs;
2794 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002795
Chris Lattnerdf986172009-01-02 07:01:27 +00002796 if (RetAttrs != Attribute::None)
2797 Attrs.push_back(AttributeWithIndex::get(0, RetAttrs));
Daniel Dunbara279bc32009-09-20 02:20:51 +00002798
Chris Lattnerdf986172009-01-02 07:01:27 +00002799 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
2800 ParamTypeList.push_back(ArgList[i].Type);
2801 if (ArgList[i].Attrs != Attribute::None)
2802 Attrs.push_back(AttributeWithIndex::get(i+1, ArgList[i].Attrs));
2803 }
2804
2805 if (FuncAttrs != Attribute::None)
2806 Attrs.push_back(AttributeWithIndex::get(~0, FuncAttrs));
2807
2808 AttrListPtr PAL = AttrListPtr::get(Attrs.begin(), Attrs.end());
Daniel Dunbara279bc32009-09-20 02:20:51 +00002809
Benjamin Kramerf0127052010-01-05 13:12:22 +00002810 if (PAL.paramHasAttr(1, Attribute::StructRet) && !RetType->isVoidTy())
Daniel Dunbara279bc32009-09-20 02:20:51 +00002811 return Error(RetTypeLoc, "functions with 'sret' argument must return void");
2812
Owen Andersonfba933c2009-07-01 23:57:11 +00002813 const FunctionType *FT =
Owen Andersondebcb012009-07-29 22:17:13 +00002814 FunctionType::get(RetType, ParamTypeList, isVarArg);
2815 const PointerType *PFT = PointerType::getUnqual(FT);
Chris Lattnerdf986172009-01-02 07:01:27 +00002816
2817 Fn = 0;
2818 if (!FunctionName.empty()) {
2819 // If this was a definition of a forward reference, remove the definition
2820 // from the forward reference table and fill in the forward ref.
2821 std::map<std::string, std::pair<GlobalValue*, LocTy> >::iterator FRVI =
2822 ForwardRefVals.find(FunctionName);
2823 if (FRVI != ForwardRefVals.end()) {
2824 Fn = M->getFunction(FunctionName);
Chris Lattnerf1cfb952010-04-20 04:49:11 +00002825 if (Fn->getType() != PFT)
2826 return Error(FRVI->second.second, "invalid forward reference to "
2827 "function '" + FunctionName + "' with wrong type!");
2828
Chris Lattnerdf986172009-01-02 07:01:27 +00002829 ForwardRefVals.erase(FRVI);
2830 } else if ((Fn = M->getFunction(FunctionName))) {
2831 // If this function already exists in the symbol table, then it is
2832 // multiply defined. We accept a few cases for old backwards compat.
2833 // FIXME: Remove this stuff for LLVM 3.0.
2834 if (Fn->getType() != PFT || Fn->getAttributes() != PAL ||
2835 (!Fn->isDeclaration() && isDefine)) {
2836 // If the redefinition has different type or different attributes,
2837 // reject it. If both have bodies, reject it.
2838 return Error(NameLoc, "invalid redefinition of function '" +
2839 FunctionName + "'");
2840 } else if (Fn->isDeclaration()) {
2841 // Make sure to strip off any argument names so we can't get conflicts.
2842 for (Function::arg_iterator AI = Fn->arg_begin(), AE = Fn->arg_end();
2843 AI != AE; ++AI)
2844 AI->setName("");
2845 }
Chris Lattner1d871c52009-10-25 23:22:50 +00002846 } else if (M->getNamedValue(FunctionName)) {
2847 return Error(NameLoc, "redefinition of function '@" + FunctionName + "'");
Chris Lattnerdf986172009-01-02 07:01:27 +00002848 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002849
Dan Gohman41905542009-08-29 23:37:49 +00002850 } else {
Chris Lattnerdf986172009-01-02 07:01:27 +00002851 // If this is a definition of a forward referenced function, make sure the
2852 // types agree.
2853 std::map<unsigned, std::pair<GlobalValue*, LocTy> >::iterator I
2854 = ForwardRefValIDs.find(NumberedVals.size());
2855 if (I != ForwardRefValIDs.end()) {
2856 Fn = cast<Function>(I->second.first);
2857 if (Fn->getType() != PFT)
2858 return Error(NameLoc, "type of definition and forward reference of '@" +
2859 utostr(NumberedVals.size()) +"' disagree");
2860 ForwardRefValIDs.erase(I);
2861 }
2862 }
2863
2864 if (Fn == 0)
2865 Fn = Function::Create(FT, GlobalValue::ExternalLinkage, FunctionName, M);
2866 else // Move the forward-reference to the correct spot in the module.
2867 M->getFunctionList().splice(M->end(), M->getFunctionList(), Fn);
2868
2869 if (FunctionName.empty())
2870 NumberedVals.push_back(Fn);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002871
Chris Lattnerdf986172009-01-02 07:01:27 +00002872 Fn->setLinkage((GlobalValue::LinkageTypes)Linkage);
2873 Fn->setVisibility((GlobalValue::VisibilityTypes)Visibility);
2874 Fn->setCallingConv(CC);
2875 Fn->setAttributes(PAL);
2876 Fn->setAlignment(Alignment);
2877 Fn->setSection(Section);
2878 if (!GC.empty()) Fn->setGC(GC.c_str());
Daniel Dunbara279bc32009-09-20 02:20:51 +00002879
Chris Lattnerdf986172009-01-02 07:01:27 +00002880 // Add all of the arguments we parsed to the function.
2881 Function::arg_iterator ArgIt = Fn->arg_begin();
2882 for (unsigned i = 0, e = ArgList.size(); i != e; ++i, ++ArgIt) {
Chris Lattner5bda3792009-11-26 22:48:23 +00002883 // If we run out of arguments in the Function prototype, exit early.
2884 // FIXME: REMOVE THIS IN LLVM 3.0, this is just for the mismatch case above.
2885 if (ArgIt == Fn->arg_end()) break;
2886
Chris Lattnerdf986172009-01-02 07:01:27 +00002887 // If the argument has a name, insert it into the argument symbol table.
2888 if (ArgList[i].Name.empty()) continue;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002889
Chris Lattnerdf986172009-01-02 07:01:27 +00002890 // Set the name, if it conflicted, it will be auto-renamed.
2891 ArgIt->setName(ArgList[i].Name);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002892
Chris Lattnerdf986172009-01-02 07:01:27 +00002893 if (ArgIt->getNameStr() != ArgList[i].Name)
2894 return Error(ArgList[i].Loc, "redefinition of argument '%" +
2895 ArgList[i].Name + "'");
2896 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002897
Chris Lattnerdf986172009-01-02 07:01:27 +00002898 return false;
2899}
2900
2901
2902/// ParseFunctionBody
2903/// ::= '{' BasicBlock+ '}'
2904/// ::= 'begin' BasicBlock+ 'end' // FIXME: remove in LLVM 3.0
2905///
2906bool LLParser::ParseFunctionBody(Function &Fn) {
2907 if (Lex.getKind() != lltok::lbrace && Lex.getKind() != lltok::kw_begin)
2908 return TokError("expected '{' in function body");
2909 Lex.Lex(); // eat the {.
Daniel Dunbara279bc32009-09-20 02:20:51 +00002910
Chris Lattner09d9ef42009-10-28 03:39:23 +00002911 int FunctionNumber = -1;
2912 if (!Fn.hasName()) FunctionNumber = NumberedVals.size()-1;
2913
2914 PerFunctionState PFS(*this, Fn, FunctionNumber);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002915
Chris Lattner2fdf8db2010-01-09 19:20:07 +00002916 // We need at least one basic block.
2917 if (Lex.getKind() == lltok::rbrace || Lex.getKind() == lltok::kw_end)
2918 return TokError("function body requires at least one basic block");
2919
Chris Lattnerdf986172009-01-02 07:01:27 +00002920 while (Lex.getKind() != lltok::rbrace && Lex.getKind() != lltok::kw_end)
2921 if (ParseBasicBlock(PFS)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002922
Chris Lattnerdf986172009-01-02 07:01:27 +00002923 // Eat the }.
2924 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +00002925
Chris Lattnerdf986172009-01-02 07:01:27 +00002926 // Verify function is ok.
Chris Lattner09d9ef42009-10-28 03:39:23 +00002927 return PFS.FinishFunction();
Chris Lattnerdf986172009-01-02 07:01:27 +00002928}
2929
2930/// ParseBasicBlock
2931/// ::= LabelStr? Instruction*
2932bool LLParser::ParseBasicBlock(PerFunctionState &PFS) {
2933 // If this basic block starts out with a name, remember it.
2934 std::string Name;
2935 LocTy NameLoc = Lex.getLoc();
2936 if (Lex.getKind() == lltok::LabelStr) {
2937 Name = Lex.getStrVal();
2938 Lex.Lex();
2939 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002940
Chris Lattnerdf986172009-01-02 07:01:27 +00002941 BasicBlock *BB = PFS.DefineBB(Name, NameLoc);
2942 if (BB == 0) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002943
Chris Lattnerdf986172009-01-02 07:01:27 +00002944 std::string NameStr;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002945
Chris Lattnerdf986172009-01-02 07:01:27 +00002946 // Parse the instructions in this block until we get a terminator.
2947 Instruction *Inst;
Chris Lattner1340dd32009-12-30 05:48:36 +00002948 SmallVector<std::pair<unsigned, MDNode *>, 4> MetadataOnInst;
Chris Lattnerdf986172009-01-02 07:01:27 +00002949 do {
2950 // This instruction may have three possibilities for a name: a) none
2951 // specified, b) name specified "%foo =", c) number specified: "%4 =".
2952 LocTy NameLoc = Lex.getLoc();
2953 int NameID = -1;
2954 NameStr = "";
Daniel Dunbara279bc32009-09-20 02:20:51 +00002955
Chris Lattnerdf986172009-01-02 07:01:27 +00002956 if (Lex.getKind() == lltok::LocalVarID) {
2957 NameID = Lex.getUIntVal();
2958 Lex.Lex();
2959 if (ParseToken(lltok::equal, "expected '=' after instruction id"))
2960 return true;
2961 } else if (Lex.getKind() == lltok::LocalVar ||
2962 // FIXME: REMOVE IN LLVM 3.0
2963 Lex.getKind() == lltok::StringConstant) {
2964 NameStr = Lex.getStrVal();
2965 Lex.Lex();
2966 if (ParseToken(lltok::equal, "expected '=' after instruction name"))
2967 return true;
2968 }
Devang Patelf633a062009-09-17 23:04:48 +00002969
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00002970 switch (ParseInstruction(Inst, BB, PFS)) {
2971 default: assert(0 && "Unknown ParseInstruction result!");
2972 case InstError: return true;
2973 case InstNormal:
Chris Lattner4ba9d9b2010-04-07 04:08:57 +00002974 BB->getInstList().push_back(Inst);
2975
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00002976 // With a normal result, we check to see if the instruction is followed by
2977 // a comma and metadata.
2978 if (EatIfPresent(lltok::comma))
Chris Lattnerfe805242010-04-01 04:51:13 +00002979 if (ParseInstructionMetadata(Inst))
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00002980 return true;
2981 break;
2982 case InstExtraComma:
Chris Lattner4ba9d9b2010-04-07 04:08:57 +00002983 BB->getInstList().push_back(Inst);
2984
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00002985 // If the instruction parser ate an extra comma at the end of it, it
2986 // *must* be followed by metadata.
Chris Lattnerfe805242010-04-01 04:51:13 +00002987 if (ParseInstructionMetadata(Inst))
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00002988 return true;
2989 break;
2990 }
Devang Patelf633a062009-09-17 23:04:48 +00002991
Chris Lattnerdf986172009-01-02 07:01:27 +00002992 // Set the name on the instruction.
2993 if (PFS.SetInstName(NameID, NameStr, NameLoc, Inst)) return true;
2994 } while (!isa<TerminatorInst>(Inst));
Daniel Dunbara279bc32009-09-20 02:20:51 +00002995
Chris Lattnerdf986172009-01-02 07:01:27 +00002996 return false;
2997}
2998
2999//===----------------------------------------------------------------------===//
3000// Instruction Parsing.
3001//===----------------------------------------------------------------------===//
3002
3003/// ParseInstruction - Parse one of the many different instructions.
3004///
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00003005int LLParser::ParseInstruction(Instruction *&Inst, BasicBlock *BB,
3006 PerFunctionState &PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00003007 lltok::Kind Token = Lex.getKind();
3008 if (Token == lltok::Eof)
3009 return TokError("found end of file when expecting more instructions");
3010 LocTy Loc = Lex.getLoc();
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00003011 unsigned KeywordVal = Lex.getUIntVal();
Chris Lattnerdf986172009-01-02 07:01:27 +00003012 Lex.Lex(); // Eat the keyword.
Daniel Dunbara279bc32009-09-20 02:20:51 +00003013
Chris Lattnerdf986172009-01-02 07:01:27 +00003014 switch (Token) {
3015 default: return Error(Loc, "expected instruction opcode");
3016 // Terminator Instructions.
Owen Anderson1d0be152009-08-13 21:58:54 +00003017 case lltok::kw_unwind: Inst = new UnwindInst(Context); return false;
3018 case lltok::kw_unreachable: Inst = new UnreachableInst(Context); return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00003019 case lltok::kw_ret: return ParseRet(Inst, BB, PFS);
3020 case lltok::kw_br: return ParseBr(Inst, PFS);
3021 case lltok::kw_switch: return ParseSwitch(Inst, PFS);
Chris Lattnerab21db72009-10-28 00:19:10 +00003022 case lltok::kw_indirectbr: return ParseIndirectBr(Inst, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00003023 case lltok::kw_invoke: return ParseInvoke(Inst, PFS);
3024 // Binary Operators.
3025 case lltok::kw_add:
3026 case lltok::kw_sub:
Dan Gohman59858cf2009-07-27 16:11:46 +00003027 case lltok::kw_mul: {
3028 bool NUW = false;
3029 bool NSW = false;
3030 LocTy ModifierLoc = Lex.getLoc();
3031 if (EatIfPresent(lltok::kw_nuw))
3032 NUW = true;
3033 if (EatIfPresent(lltok::kw_nsw)) {
3034 NSW = true;
3035 if (EatIfPresent(lltok::kw_nuw))
3036 NUW = true;
3037 }
Dan Gohman1eaac532010-05-03 22:44:19 +00003038 bool Result = ParseArithmetic(Inst, PFS, KeywordVal, 1);
Dan Gohman59858cf2009-07-27 16:11:46 +00003039 if (!Result) {
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00003040 if (!Inst->getType()->isIntOrIntVectorTy()) {
Dan Gohman59858cf2009-07-27 16:11:46 +00003041 if (NUW)
3042 return Error(ModifierLoc, "nuw only applies to integer operations");
3043 if (NSW)
3044 return Error(ModifierLoc, "nsw only applies to integer operations");
3045 }
3046 if (NUW)
Dan Gohmanf8dbee72009-09-07 23:54:19 +00003047 cast<BinaryOperator>(Inst)->setHasNoUnsignedWrap(true);
Dan Gohman59858cf2009-07-27 16:11:46 +00003048 if (NSW)
Dan Gohmanf8dbee72009-09-07 23:54:19 +00003049 cast<BinaryOperator>(Inst)->setHasNoSignedWrap(true);
Dan Gohman59858cf2009-07-27 16:11:46 +00003050 }
3051 return Result;
3052 }
Dan Gohmanae3a0be2009-06-04 22:49:04 +00003053 case lltok::kw_fadd:
3054 case lltok::kw_fsub:
3055 case lltok::kw_fmul: return ParseArithmetic(Inst, PFS, KeywordVal, 2);
3056
Dan Gohman59858cf2009-07-27 16:11:46 +00003057 case lltok::kw_sdiv: {
3058 bool Exact = false;
3059 if (EatIfPresent(lltok::kw_exact))
3060 Exact = true;
3061 bool Result = ParseArithmetic(Inst, PFS, KeywordVal, 1);
3062 if (!Result)
3063 if (Exact)
Dan Gohmanf8dbee72009-09-07 23:54:19 +00003064 cast<BinaryOperator>(Inst)->setIsExact(true);
Dan Gohman59858cf2009-07-27 16:11:46 +00003065 return Result;
3066 }
3067
Chris Lattnerdf986172009-01-02 07:01:27 +00003068 case lltok::kw_udiv:
Chris Lattnerdf986172009-01-02 07:01:27 +00003069 case lltok::kw_urem:
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00003070 case lltok::kw_srem: return ParseArithmetic(Inst, PFS, KeywordVal, 1);
Chris Lattnere914b592009-01-05 08:24:46 +00003071 case lltok::kw_fdiv:
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00003072 case lltok::kw_frem: return ParseArithmetic(Inst, PFS, KeywordVal, 2);
Chris Lattnerdf986172009-01-02 07:01:27 +00003073 case lltok::kw_shl:
3074 case lltok::kw_lshr:
3075 case lltok::kw_ashr:
3076 case lltok::kw_and:
3077 case lltok::kw_or:
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00003078 case lltok::kw_xor: return ParseLogical(Inst, PFS, KeywordVal);
Chris Lattnerdf986172009-01-02 07:01:27 +00003079 case lltok::kw_icmp:
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00003080 case lltok::kw_fcmp: return ParseCompare(Inst, PFS, KeywordVal);
Chris Lattnerdf986172009-01-02 07:01:27 +00003081 // Casts.
3082 case lltok::kw_trunc:
3083 case lltok::kw_zext:
3084 case lltok::kw_sext:
3085 case lltok::kw_fptrunc:
3086 case lltok::kw_fpext:
3087 case lltok::kw_bitcast:
3088 case lltok::kw_uitofp:
3089 case lltok::kw_sitofp:
3090 case lltok::kw_fptoui:
Daniel Dunbara279bc32009-09-20 02:20:51 +00003091 case lltok::kw_fptosi:
Chris Lattnerdf986172009-01-02 07:01:27 +00003092 case lltok::kw_inttoptr:
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00003093 case lltok::kw_ptrtoint: return ParseCast(Inst, PFS, KeywordVal);
Chris Lattnerdf986172009-01-02 07:01:27 +00003094 // Other.
3095 case lltok::kw_select: return ParseSelect(Inst, PFS);
Chris Lattner0088a5c2009-01-05 08:18:44 +00003096 case lltok::kw_va_arg: return ParseVA_Arg(Inst, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00003097 case lltok::kw_extractelement: return ParseExtractElement(Inst, PFS);
3098 case lltok::kw_insertelement: return ParseInsertElement(Inst, PFS);
3099 case lltok::kw_shufflevector: return ParseShuffleVector(Inst, PFS);
3100 case lltok::kw_phi: return ParsePHI(Inst, PFS);
3101 case lltok::kw_call: return ParseCall(Inst, PFS, false);
3102 case lltok::kw_tail: return ParseCall(Inst, PFS, true);
3103 // Memory.
Victor Hernandez13ad5aa2009-10-17 00:00:19 +00003104 case lltok::kw_alloca: return ParseAlloc(Inst, PFS);
3105 case lltok::kw_malloc: return ParseAlloc(Inst, PFS, BB, false);
Victor Hernandez66284e02009-10-24 04:23:03 +00003106 case lltok::kw_free: return ParseFree(Inst, PFS, BB);
Chris Lattnerdf986172009-01-02 07:01:27 +00003107 case lltok::kw_load: return ParseLoad(Inst, PFS, false);
3108 case lltok::kw_store: return ParseStore(Inst, PFS, false);
3109 case lltok::kw_volatile:
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003110 if (EatIfPresent(lltok::kw_load))
Chris Lattnerdf986172009-01-02 07:01:27 +00003111 return ParseLoad(Inst, PFS, true);
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003112 else if (EatIfPresent(lltok::kw_store))
Chris Lattnerdf986172009-01-02 07:01:27 +00003113 return ParseStore(Inst, PFS, true);
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003114 else
Chris Lattnerdf986172009-01-02 07:01:27 +00003115 return TokError("expected 'load' or 'store'");
Chris Lattnerdf986172009-01-02 07:01:27 +00003116 case lltok::kw_getresult: return ParseGetResult(Inst, PFS);
3117 case lltok::kw_getelementptr: return ParseGetElementPtr(Inst, PFS);
3118 case lltok::kw_extractvalue: return ParseExtractValue(Inst, PFS);
3119 case lltok::kw_insertvalue: return ParseInsertValue(Inst, PFS);
3120 }
3121}
3122
3123/// ParseCmpPredicate - Parse an integer or fp predicate, based on Kind.
3124bool LLParser::ParseCmpPredicate(unsigned &P, unsigned Opc) {
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00003125 if (Opc == Instruction::FCmp) {
Chris Lattnerdf986172009-01-02 07:01:27 +00003126 switch (Lex.getKind()) {
3127 default: TokError("expected fcmp predicate (e.g. 'oeq')");
3128 case lltok::kw_oeq: P = CmpInst::FCMP_OEQ; break;
3129 case lltok::kw_one: P = CmpInst::FCMP_ONE; break;
3130 case lltok::kw_olt: P = CmpInst::FCMP_OLT; break;
3131 case lltok::kw_ogt: P = CmpInst::FCMP_OGT; break;
3132 case lltok::kw_ole: P = CmpInst::FCMP_OLE; break;
3133 case lltok::kw_oge: P = CmpInst::FCMP_OGE; break;
3134 case lltok::kw_ord: P = CmpInst::FCMP_ORD; break;
3135 case lltok::kw_uno: P = CmpInst::FCMP_UNO; break;
3136 case lltok::kw_ueq: P = CmpInst::FCMP_UEQ; break;
3137 case lltok::kw_une: P = CmpInst::FCMP_UNE; break;
3138 case lltok::kw_ult: P = CmpInst::FCMP_ULT; break;
3139 case lltok::kw_ugt: P = CmpInst::FCMP_UGT; break;
3140 case lltok::kw_ule: P = CmpInst::FCMP_ULE; break;
3141 case lltok::kw_uge: P = CmpInst::FCMP_UGE; break;
3142 case lltok::kw_true: P = CmpInst::FCMP_TRUE; break;
3143 case lltok::kw_false: P = CmpInst::FCMP_FALSE; break;
3144 }
3145 } else {
3146 switch (Lex.getKind()) {
3147 default: TokError("expected icmp predicate (e.g. 'eq')");
3148 case lltok::kw_eq: P = CmpInst::ICMP_EQ; break;
3149 case lltok::kw_ne: P = CmpInst::ICMP_NE; break;
3150 case lltok::kw_slt: P = CmpInst::ICMP_SLT; break;
3151 case lltok::kw_sgt: P = CmpInst::ICMP_SGT; break;
3152 case lltok::kw_sle: P = CmpInst::ICMP_SLE; break;
3153 case lltok::kw_sge: P = CmpInst::ICMP_SGE; break;
3154 case lltok::kw_ult: P = CmpInst::ICMP_ULT; break;
3155 case lltok::kw_ugt: P = CmpInst::ICMP_UGT; break;
3156 case lltok::kw_ule: P = CmpInst::ICMP_ULE; break;
3157 case lltok::kw_uge: P = CmpInst::ICMP_UGE; break;
3158 }
3159 }
3160 Lex.Lex();
3161 return false;
3162}
3163
3164//===----------------------------------------------------------------------===//
3165// Terminator Instructions.
3166//===----------------------------------------------------------------------===//
3167
3168/// ParseRet - Parse a return instruction.
Chris Lattner3f3a0f62009-12-29 21:25:40 +00003169/// ::= 'ret' void (',' !dbg, !1)*
3170/// ::= 'ret' TypeAndValue (',' !dbg, !1)*
3171/// ::= 'ret' TypeAndValue (',' TypeAndValue)+ (',' !dbg, !1)*
Devang Patelf633a062009-09-17 23:04:48 +00003172/// [[obsolete: LLVM 3.0]]
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00003173int LLParser::ParseRet(Instruction *&Inst, BasicBlock *BB,
3174 PerFunctionState &PFS) {
Owen Anderson1d0be152009-08-13 21:58:54 +00003175 PATypeHolder Ty(Type::getVoidTy(Context));
Chris Lattnera9a9e072009-03-09 04:49:14 +00003176 if (ParseType(Ty, true /*void allowed*/)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003177
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00003178 if (Ty->isVoidTy()) {
Owen Anderson1d0be152009-08-13 21:58:54 +00003179 Inst = ReturnInst::Create(Context);
Chris Lattnerdf986172009-01-02 07:01:27 +00003180 return false;
3181 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003182
Chris Lattnerdf986172009-01-02 07:01:27 +00003183 Value *RV;
3184 if (ParseValue(Ty, RV, PFS)) return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00003185
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00003186 bool ExtraComma = false;
Devang Patelf633a062009-09-17 23:04:48 +00003187 if (EatIfPresent(lltok::comma)) {
Devang Patel0475c912009-09-29 00:01:14 +00003188 // Parse optional custom metadata, e.g. !dbg
Chris Lattner1d928312009-12-30 05:02:06 +00003189 if (Lex.getKind() == lltok::MetadataVar) {
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00003190 ExtraComma = true;
Devang Patelf633a062009-09-17 23:04:48 +00003191 } else {
3192 // The normal case is one return value.
Chris Lattner3f3a0f62009-12-29 21:25:40 +00003193 // FIXME: LLVM 3.0 remove MRV support for 'ret i32 1, i32 2', requiring
3194 // use of 'ret {i32,i32} {i32 1, i32 2}'
Devang Patelf633a062009-09-17 23:04:48 +00003195 SmallVector<Value*, 8> RVs;
3196 RVs.push_back(RV);
Daniel Dunbara279bc32009-09-20 02:20:51 +00003197
Devang Patelf633a062009-09-17 23:04:48 +00003198 do {
Devang Patel0475c912009-09-29 00:01:14 +00003199 // If optional custom metadata, e.g. !dbg is seen then this is the
3200 // end of MRV.
Chris Lattner1d928312009-12-30 05:02:06 +00003201 if (Lex.getKind() == lltok::MetadataVar)
Daniel Dunbara279bc32009-09-20 02:20:51 +00003202 break;
3203 if (ParseTypeAndValue(RV, PFS)) return true;
3204 RVs.push_back(RV);
Devang Patelf633a062009-09-17 23:04:48 +00003205 } while (EatIfPresent(lltok::comma));
3206
3207 RV = UndefValue::get(PFS.getFunction().getReturnType());
3208 for (unsigned i = 0, e = RVs.size(); i != e; ++i) {
Daniel Dunbara279bc32009-09-20 02:20:51 +00003209 Instruction *I = InsertValueInst::Create(RV, RVs[i], i, "mrv");
3210 BB->getInstList().push_back(I);
3211 RV = I;
Devang Patelf633a062009-09-17 23:04:48 +00003212 }
Chris Lattnerdf986172009-01-02 07:01:27 +00003213 }
3214 }
Devang Patelf633a062009-09-17 23:04:48 +00003215
Owen Anderson1d0be152009-08-13 21:58:54 +00003216 Inst = ReturnInst::Create(Context, RV);
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00003217 return ExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerdf986172009-01-02 07:01:27 +00003218}
3219
3220
3221/// ParseBr
3222/// ::= 'br' TypeAndValue
3223/// ::= 'br' TypeAndValue ',' TypeAndValue ',' TypeAndValue
3224bool LLParser::ParseBr(Instruction *&Inst, PerFunctionState &PFS) {
3225 LocTy Loc, Loc2;
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003226 Value *Op0;
3227 BasicBlock *Op1, *Op2;
Chris Lattnerdf986172009-01-02 07:01:27 +00003228 if (ParseTypeAndValue(Op0, Loc, PFS)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003229
Chris Lattnerdf986172009-01-02 07:01:27 +00003230 if (BasicBlock *BB = dyn_cast<BasicBlock>(Op0)) {
3231 Inst = BranchInst::Create(BB);
3232 return false;
3233 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003234
Owen Anderson1d0be152009-08-13 21:58:54 +00003235 if (Op0->getType() != Type::getInt1Ty(Context))
Chris Lattnerdf986172009-01-02 07:01:27 +00003236 return Error(Loc, "branch condition must have 'i1' type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003237
Chris Lattnerdf986172009-01-02 07:01:27 +00003238 if (ParseToken(lltok::comma, "expected ',' after branch condition") ||
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003239 ParseTypeAndBasicBlock(Op1, Loc, PFS) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003240 ParseToken(lltok::comma, "expected ',' after true destination") ||
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003241 ParseTypeAndBasicBlock(Op2, Loc2, PFS))
Chris Lattnerdf986172009-01-02 07:01:27 +00003242 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003243
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003244 Inst = BranchInst::Create(Op1, Op2, Op0);
Chris Lattnerdf986172009-01-02 07:01:27 +00003245 return false;
3246}
3247
3248/// ParseSwitch
3249/// Instruction
3250/// ::= 'switch' TypeAndValue ',' TypeAndValue '[' JumpTable ']'
3251/// JumpTable
3252/// ::= (TypeAndValue ',' TypeAndValue)*
3253bool LLParser::ParseSwitch(Instruction *&Inst, PerFunctionState &PFS) {
3254 LocTy CondLoc, BBLoc;
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003255 Value *Cond;
3256 BasicBlock *DefaultBB;
Chris Lattnerdf986172009-01-02 07:01:27 +00003257 if (ParseTypeAndValue(Cond, CondLoc, PFS) ||
3258 ParseToken(lltok::comma, "expected ',' after switch condition") ||
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003259 ParseTypeAndBasicBlock(DefaultBB, BBLoc, PFS) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003260 ParseToken(lltok::lsquare, "expected '[' with switch table"))
3261 return true;
3262
Duncan Sands1df98592010-02-16 11:11:14 +00003263 if (!Cond->getType()->isIntegerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00003264 return Error(CondLoc, "switch condition must have integer type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003265
Chris Lattnerdf986172009-01-02 07:01:27 +00003266 // Parse the jump table pairs.
3267 SmallPtrSet<Value*, 32> SeenCases;
3268 SmallVector<std::pair<ConstantInt*, BasicBlock*>, 32> Table;
3269 while (Lex.getKind() != lltok::rsquare) {
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003270 Value *Constant;
3271 BasicBlock *DestBB;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003272
Chris Lattnerdf986172009-01-02 07:01:27 +00003273 if (ParseTypeAndValue(Constant, CondLoc, PFS) ||
3274 ParseToken(lltok::comma, "expected ',' after case value") ||
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003275 ParseTypeAndBasicBlock(DestBB, PFS))
Chris Lattnerdf986172009-01-02 07:01:27 +00003276 return true;
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003277
Chris Lattnerdf986172009-01-02 07:01:27 +00003278 if (!SeenCases.insert(Constant))
3279 return Error(CondLoc, "duplicate case value in switch");
3280 if (!isa<ConstantInt>(Constant))
3281 return Error(CondLoc, "case value is not a constant integer");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003282
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003283 Table.push_back(std::make_pair(cast<ConstantInt>(Constant), DestBB));
Chris Lattnerdf986172009-01-02 07:01:27 +00003284 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003285
Chris Lattnerdf986172009-01-02 07:01:27 +00003286 Lex.Lex(); // Eat the ']'.
Daniel Dunbara279bc32009-09-20 02:20:51 +00003287
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003288 SwitchInst *SI = SwitchInst::Create(Cond, DefaultBB, Table.size());
Chris Lattnerdf986172009-01-02 07:01:27 +00003289 for (unsigned i = 0, e = Table.size(); i != e; ++i)
3290 SI->addCase(Table[i].first, Table[i].second);
3291 Inst = SI;
3292 return false;
3293}
3294
Chris Lattnerab21db72009-10-28 00:19:10 +00003295/// ParseIndirectBr
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003296/// Instruction
Chris Lattnerab21db72009-10-28 00:19:10 +00003297/// ::= 'indirectbr' TypeAndValue ',' '[' LabelList ']'
3298bool LLParser::ParseIndirectBr(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003299 LocTy AddrLoc;
3300 Value *Address;
3301 if (ParseTypeAndValue(Address, AddrLoc, PFS) ||
Chris Lattnerab21db72009-10-28 00:19:10 +00003302 ParseToken(lltok::comma, "expected ',' after indirectbr address") ||
3303 ParseToken(lltok::lsquare, "expected '[' with indirectbr"))
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003304 return true;
3305
Duncan Sands1df98592010-02-16 11:11:14 +00003306 if (!Address->getType()->isPointerTy())
Chris Lattnerab21db72009-10-28 00:19:10 +00003307 return Error(AddrLoc, "indirectbr address must have pointer type");
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003308
3309 // Parse the destination list.
3310 SmallVector<BasicBlock*, 16> DestList;
3311
3312 if (Lex.getKind() != lltok::rsquare) {
3313 BasicBlock *DestBB;
3314 if (ParseTypeAndBasicBlock(DestBB, PFS))
3315 return true;
3316 DestList.push_back(DestBB);
3317
3318 while (EatIfPresent(lltok::comma)) {
3319 if (ParseTypeAndBasicBlock(DestBB, PFS))
3320 return true;
3321 DestList.push_back(DestBB);
3322 }
3323 }
3324
3325 if (ParseToken(lltok::rsquare, "expected ']' at end of block list"))
3326 return true;
3327
Chris Lattnerab21db72009-10-28 00:19:10 +00003328 IndirectBrInst *IBI = IndirectBrInst::Create(Address, DestList.size());
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003329 for (unsigned i = 0, e = DestList.size(); i != e; ++i)
3330 IBI->addDestination(DestList[i]);
3331 Inst = IBI;
3332 return false;
3333}
3334
3335
Chris Lattnerdf986172009-01-02 07:01:27 +00003336/// ParseInvoke
3337/// ::= 'invoke' OptionalCallingConv OptionalAttrs Type Value ParamList
3338/// OptionalAttrs 'to' TypeAndValue 'unwind' TypeAndValue
3339bool LLParser::ParseInvoke(Instruction *&Inst, PerFunctionState &PFS) {
3340 LocTy CallLoc = Lex.getLoc();
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00003341 unsigned RetAttrs, FnAttrs;
3342 CallingConv::ID CC;
Owen Anderson1d0be152009-08-13 21:58:54 +00003343 PATypeHolder RetType(Type::getVoidTy(Context));
Chris Lattnerdf986172009-01-02 07:01:27 +00003344 LocTy RetTypeLoc;
3345 ValID CalleeID;
3346 SmallVector<ParamInfo, 16> ArgList;
3347
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003348 BasicBlock *NormalBB, *UnwindBB;
Chris Lattnerdf986172009-01-02 07:01:27 +00003349 if (ParseOptionalCallingConv(CC) ||
3350 ParseOptionalAttrs(RetAttrs, 1) ||
Chris Lattnera9a9e072009-03-09 04:49:14 +00003351 ParseType(RetType, RetTypeLoc, true /*void allowed*/) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003352 ParseValID(CalleeID) ||
3353 ParseParameterList(ArgList, PFS) ||
3354 ParseOptionalAttrs(FnAttrs, 2) ||
3355 ParseToken(lltok::kw_to, "expected 'to' in invoke") ||
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003356 ParseTypeAndBasicBlock(NormalBB, PFS) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003357 ParseToken(lltok::kw_unwind, "expected 'unwind' in invoke") ||
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003358 ParseTypeAndBasicBlock(UnwindBB, PFS))
Chris Lattnerdf986172009-01-02 07:01:27 +00003359 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003360
Chris Lattnerdf986172009-01-02 07:01:27 +00003361 // If RetType is a non-function pointer type, then this is the short syntax
3362 // for the call, which means that RetType is just the return type. Infer the
3363 // rest of the function argument types from the arguments that are present.
3364 const PointerType *PFTy = 0;
3365 const FunctionType *Ty = 0;
3366 if (!(PFTy = dyn_cast<PointerType>(RetType)) ||
3367 !(Ty = dyn_cast<FunctionType>(PFTy->getElementType()))) {
3368 // Pull out the types of all of the arguments...
3369 std::vector<const Type*> ParamTypes;
3370 for (unsigned i = 0, e = ArgList.size(); i != e; ++i)
3371 ParamTypes.push_back(ArgList[i].V->getType());
Daniel Dunbara279bc32009-09-20 02:20:51 +00003372
Chris Lattnerdf986172009-01-02 07:01:27 +00003373 if (!FunctionType::isValidReturnType(RetType))
3374 return Error(RetTypeLoc, "Invalid result type for LLVM function");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003375
Owen Andersondebcb012009-07-29 22:17:13 +00003376 Ty = FunctionType::get(RetType, ParamTypes, false);
3377 PFTy = PointerType::getUnqual(Ty);
Chris Lattnerdf986172009-01-02 07:01:27 +00003378 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003379
Chris Lattnerdf986172009-01-02 07:01:27 +00003380 // Look up the callee.
3381 Value *Callee;
Victor Hernandez92f238d2010-01-11 22:31:58 +00003382 if (ConvertValIDToValue(PFTy, CalleeID, Callee, &PFS)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003383
Chris Lattnerdf986172009-01-02 07:01:27 +00003384 // FIXME: In LLVM 3.0, stop accepting zext, sext and inreg as optional
3385 // function attributes.
3386 unsigned ObsoleteFuncAttrs = Attribute::ZExt|Attribute::SExt|Attribute::InReg;
3387 if (FnAttrs & ObsoleteFuncAttrs) {
3388 RetAttrs |= FnAttrs & ObsoleteFuncAttrs;
3389 FnAttrs &= ~ObsoleteFuncAttrs;
3390 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003391
Chris Lattnerdf986172009-01-02 07:01:27 +00003392 // Set up the Attributes for the function.
3393 SmallVector<AttributeWithIndex, 8> Attrs;
3394 if (RetAttrs != Attribute::None)
3395 Attrs.push_back(AttributeWithIndex::get(0, RetAttrs));
Daniel Dunbara279bc32009-09-20 02:20:51 +00003396
Chris Lattnerdf986172009-01-02 07:01:27 +00003397 SmallVector<Value*, 8> Args;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003398
Chris Lattnerdf986172009-01-02 07:01:27 +00003399 // Loop through FunctionType's arguments and ensure they are specified
3400 // correctly. Also, gather any parameter attributes.
3401 FunctionType::param_iterator I = Ty->param_begin();
3402 FunctionType::param_iterator E = Ty->param_end();
3403 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
3404 const Type *ExpectedTy = 0;
3405 if (I != E) {
3406 ExpectedTy = *I++;
3407 } else if (!Ty->isVarArg()) {
3408 return Error(ArgList[i].Loc, "too many arguments specified");
3409 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003410
Chris Lattnerdf986172009-01-02 07:01:27 +00003411 if (ExpectedTy && ExpectedTy != ArgList[i].V->getType())
3412 return Error(ArgList[i].Loc, "argument is not of expected type '" +
3413 ExpectedTy->getDescription() + "'");
3414 Args.push_back(ArgList[i].V);
3415 if (ArgList[i].Attrs != Attribute::None)
3416 Attrs.push_back(AttributeWithIndex::get(i+1, ArgList[i].Attrs));
3417 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003418
Chris Lattnerdf986172009-01-02 07:01:27 +00003419 if (I != E)
3420 return Error(CallLoc, "not enough parameters specified for call");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003421
Chris Lattnerdf986172009-01-02 07:01:27 +00003422 if (FnAttrs != Attribute::None)
3423 Attrs.push_back(AttributeWithIndex::get(~0, FnAttrs));
Daniel Dunbara279bc32009-09-20 02:20:51 +00003424
Chris Lattnerdf986172009-01-02 07:01:27 +00003425 // Finish off the Attributes and check them
3426 AttrListPtr PAL = AttrListPtr::get(Attrs.begin(), Attrs.end());
Daniel Dunbara279bc32009-09-20 02:20:51 +00003427
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003428 InvokeInst *II = InvokeInst::Create(Callee, NormalBB, UnwindBB,
Chris Lattnerdf986172009-01-02 07:01:27 +00003429 Args.begin(), Args.end());
3430 II->setCallingConv(CC);
3431 II->setAttributes(PAL);
3432 Inst = II;
3433 return false;
3434}
3435
3436
3437
3438//===----------------------------------------------------------------------===//
3439// Binary Operators.
3440//===----------------------------------------------------------------------===//
3441
3442/// ParseArithmetic
Chris Lattnere914b592009-01-05 08:24:46 +00003443/// ::= ArithmeticOps TypeAndValue ',' Value
3444///
3445/// If OperandType is 0, then any FP or integer operand is allowed. If it is 1,
3446/// then any integer operand is allowed, if it is 2, any fp operand is allowed.
Chris Lattnerdf986172009-01-02 07:01:27 +00003447bool LLParser::ParseArithmetic(Instruction *&Inst, PerFunctionState &PFS,
Chris Lattnere914b592009-01-05 08:24:46 +00003448 unsigned Opc, unsigned OperandType) {
Chris Lattnerdf986172009-01-02 07:01:27 +00003449 LocTy Loc; Value *LHS, *RHS;
3450 if (ParseTypeAndValue(LHS, Loc, PFS) ||
3451 ParseToken(lltok::comma, "expected ',' in arithmetic operation") ||
3452 ParseValue(LHS->getType(), RHS, PFS))
3453 return true;
3454
Chris Lattnere914b592009-01-05 08:24:46 +00003455 bool Valid;
3456 switch (OperandType) {
Torok Edwinc23197a2009-07-14 16:55:14 +00003457 default: llvm_unreachable("Unknown operand type!");
Chris Lattnere914b592009-01-05 08:24:46 +00003458 case 0: // int or FP.
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00003459 Valid = LHS->getType()->isIntOrIntVectorTy() ||
3460 LHS->getType()->isFPOrFPVectorTy();
Chris Lattnere914b592009-01-05 08:24:46 +00003461 break;
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00003462 case 1: Valid = LHS->getType()->isIntOrIntVectorTy(); break;
3463 case 2: Valid = LHS->getType()->isFPOrFPVectorTy(); break;
Chris Lattnere914b592009-01-05 08:24:46 +00003464 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003465
Chris Lattnere914b592009-01-05 08:24:46 +00003466 if (!Valid)
3467 return Error(Loc, "invalid operand type for instruction");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003468
Chris Lattnerdf986172009-01-02 07:01:27 +00003469 Inst = BinaryOperator::Create((Instruction::BinaryOps)Opc, LHS, RHS);
3470 return false;
3471}
3472
3473/// ParseLogical
3474/// ::= ArithmeticOps TypeAndValue ',' Value {
3475bool LLParser::ParseLogical(Instruction *&Inst, PerFunctionState &PFS,
3476 unsigned Opc) {
3477 LocTy Loc; Value *LHS, *RHS;
3478 if (ParseTypeAndValue(LHS, Loc, PFS) ||
3479 ParseToken(lltok::comma, "expected ',' in logical operation") ||
3480 ParseValue(LHS->getType(), RHS, PFS))
3481 return true;
3482
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00003483 if (!LHS->getType()->isIntOrIntVectorTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00003484 return Error(Loc,"instruction requires integer or integer vector operands");
3485
3486 Inst = BinaryOperator::Create((Instruction::BinaryOps)Opc, LHS, RHS);
3487 return false;
3488}
3489
3490
3491/// ParseCompare
3492/// ::= 'icmp' IPredicates TypeAndValue ',' Value
3493/// ::= 'fcmp' FPredicates TypeAndValue ',' Value
Chris Lattnerdf986172009-01-02 07:01:27 +00003494bool LLParser::ParseCompare(Instruction *&Inst, PerFunctionState &PFS,
3495 unsigned Opc) {
3496 // Parse the integer/fp comparison predicate.
3497 LocTy Loc;
3498 unsigned Pred;
3499 Value *LHS, *RHS;
3500 if (ParseCmpPredicate(Pred, Opc) ||
3501 ParseTypeAndValue(LHS, Loc, PFS) ||
3502 ParseToken(lltok::comma, "expected ',' after compare value") ||
3503 ParseValue(LHS->getType(), RHS, PFS))
3504 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003505
Chris Lattnerdf986172009-01-02 07:01:27 +00003506 if (Opc == Instruction::FCmp) {
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00003507 if (!LHS->getType()->isFPOrFPVectorTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00003508 return Error(Loc, "fcmp requires floating point operands");
Dan Gohman1c8a23c2009-08-25 23:17:54 +00003509 Inst = new FCmpInst(CmpInst::Predicate(Pred), LHS, RHS);
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00003510 } else {
3511 assert(Opc == Instruction::ICmp && "Unknown opcode for CmpInst!");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00003512 if (!LHS->getType()->isIntOrIntVectorTy() &&
Duncan Sands1df98592010-02-16 11:11:14 +00003513 !LHS->getType()->isPointerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00003514 return Error(Loc, "icmp requires integer operands");
Dan Gohman1c8a23c2009-08-25 23:17:54 +00003515 Inst = new ICmpInst(CmpInst::Predicate(Pred), LHS, RHS);
Chris Lattnerdf986172009-01-02 07:01:27 +00003516 }
3517 return false;
3518}
3519
3520//===----------------------------------------------------------------------===//
3521// Other Instructions.
3522//===----------------------------------------------------------------------===//
3523
3524
3525/// ParseCast
3526/// ::= CastOpc TypeAndValue 'to' Type
3527bool LLParser::ParseCast(Instruction *&Inst, PerFunctionState &PFS,
3528 unsigned Opc) {
3529 LocTy Loc; Value *Op;
Owen Anderson1d0be152009-08-13 21:58:54 +00003530 PATypeHolder DestTy(Type::getVoidTy(Context));
Chris Lattnerdf986172009-01-02 07:01:27 +00003531 if (ParseTypeAndValue(Op, Loc, PFS) ||
3532 ParseToken(lltok::kw_to, "expected 'to' after cast value") ||
3533 ParseType(DestTy))
3534 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003535
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00003536 if (!CastInst::castIsValid((Instruction::CastOps)Opc, Op, DestTy)) {
3537 CastInst::castIsValid((Instruction::CastOps)Opc, Op, DestTy);
Chris Lattnerdf986172009-01-02 07:01:27 +00003538 return Error(Loc, "invalid cast opcode for cast from '" +
3539 Op->getType()->getDescription() + "' to '" +
3540 DestTy->getDescription() + "'");
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00003541 }
Chris Lattnerdf986172009-01-02 07:01:27 +00003542 Inst = CastInst::Create((Instruction::CastOps)Opc, Op, DestTy);
3543 return false;
3544}
3545
3546/// ParseSelect
3547/// ::= 'select' TypeAndValue ',' TypeAndValue ',' TypeAndValue
3548bool LLParser::ParseSelect(Instruction *&Inst, PerFunctionState &PFS) {
3549 LocTy Loc;
3550 Value *Op0, *Op1, *Op2;
3551 if (ParseTypeAndValue(Op0, Loc, PFS) ||
3552 ParseToken(lltok::comma, "expected ',' after select condition") ||
3553 ParseTypeAndValue(Op1, PFS) ||
3554 ParseToken(lltok::comma, "expected ',' after select value") ||
3555 ParseTypeAndValue(Op2, PFS))
3556 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003557
Chris Lattnerdf986172009-01-02 07:01:27 +00003558 if (const char *Reason = SelectInst::areInvalidOperands(Op0, Op1, Op2))
3559 return Error(Loc, Reason);
Daniel Dunbara279bc32009-09-20 02:20:51 +00003560
Chris Lattnerdf986172009-01-02 07:01:27 +00003561 Inst = SelectInst::Create(Op0, Op1, Op2);
3562 return false;
3563}
3564
Chris Lattner0088a5c2009-01-05 08:18:44 +00003565/// ParseVA_Arg
3566/// ::= 'va_arg' TypeAndValue ',' Type
3567bool LLParser::ParseVA_Arg(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00003568 Value *Op;
Owen Anderson1d0be152009-08-13 21:58:54 +00003569 PATypeHolder EltTy(Type::getVoidTy(Context));
Chris Lattner0088a5c2009-01-05 08:18:44 +00003570 LocTy TypeLoc;
Chris Lattnerdf986172009-01-02 07:01:27 +00003571 if (ParseTypeAndValue(Op, PFS) ||
3572 ParseToken(lltok::comma, "expected ',' after vaarg operand") ||
Chris Lattner0088a5c2009-01-05 08:18:44 +00003573 ParseType(EltTy, TypeLoc))
Chris Lattnerdf986172009-01-02 07:01:27 +00003574 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003575
Chris Lattner0088a5c2009-01-05 08:18:44 +00003576 if (!EltTy->isFirstClassType())
3577 return Error(TypeLoc, "va_arg requires operand with first class type");
Chris Lattnerdf986172009-01-02 07:01:27 +00003578
3579 Inst = new VAArgInst(Op, EltTy);
3580 return false;
3581}
3582
3583/// ParseExtractElement
3584/// ::= 'extractelement' TypeAndValue ',' TypeAndValue
3585bool LLParser::ParseExtractElement(Instruction *&Inst, PerFunctionState &PFS) {
3586 LocTy Loc;
3587 Value *Op0, *Op1;
3588 if (ParseTypeAndValue(Op0, Loc, PFS) ||
3589 ParseToken(lltok::comma, "expected ',' after extract value") ||
3590 ParseTypeAndValue(Op1, PFS))
3591 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003592
Chris Lattnerdf986172009-01-02 07:01:27 +00003593 if (!ExtractElementInst::isValidOperands(Op0, Op1))
3594 return Error(Loc, "invalid extractelement operands");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003595
Eric Christophera3500da2009-07-25 02:28:41 +00003596 Inst = ExtractElementInst::Create(Op0, Op1);
Chris Lattnerdf986172009-01-02 07:01:27 +00003597 return false;
3598}
3599
3600/// ParseInsertElement
3601/// ::= 'insertelement' TypeAndValue ',' TypeAndValue ',' TypeAndValue
3602bool LLParser::ParseInsertElement(Instruction *&Inst, PerFunctionState &PFS) {
3603 LocTy Loc;
3604 Value *Op0, *Op1, *Op2;
3605 if (ParseTypeAndValue(Op0, Loc, PFS) ||
3606 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
3607 ParseTypeAndValue(Op1, PFS) ||
3608 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
3609 ParseTypeAndValue(Op2, PFS))
3610 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003611
Chris Lattnerdf986172009-01-02 07:01:27 +00003612 if (!InsertElementInst::isValidOperands(Op0, Op1, Op2))
Eric Christopher0aaf4e92009-07-23 01:01:32 +00003613 return Error(Loc, "invalid insertelement operands");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003614
Chris Lattnerdf986172009-01-02 07:01:27 +00003615 Inst = InsertElementInst::Create(Op0, Op1, Op2);
3616 return false;
3617}
3618
3619/// ParseShuffleVector
3620/// ::= 'shufflevector' TypeAndValue ',' TypeAndValue ',' TypeAndValue
3621bool LLParser::ParseShuffleVector(Instruction *&Inst, PerFunctionState &PFS) {
3622 LocTy Loc;
3623 Value *Op0, *Op1, *Op2;
3624 if (ParseTypeAndValue(Op0, Loc, PFS) ||
3625 ParseToken(lltok::comma, "expected ',' after shuffle mask") ||
3626 ParseTypeAndValue(Op1, PFS) ||
3627 ParseToken(lltok::comma, "expected ',' after shuffle value") ||
3628 ParseTypeAndValue(Op2, PFS))
3629 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003630
Chris Lattnerdf986172009-01-02 07:01:27 +00003631 if (!ShuffleVectorInst::isValidOperands(Op0, Op1, Op2))
3632 return Error(Loc, "invalid extractelement operands");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003633
Chris Lattnerdf986172009-01-02 07:01:27 +00003634 Inst = new ShuffleVectorInst(Op0, Op1, Op2);
3635 return false;
3636}
3637
3638/// ParsePHI
Chris Lattnerc6e20092009-10-18 05:27:44 +00003639/// ::= 'phi' Type '[' Value ',' Value ']' (',' '[' Value ',' Value ']')*
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003640int LLParser::ParsePHI(Instruction *&Inst, PerFunctionState &PFS) {
Owen Anderson1d0be152009-08-13 21:58:54 +00003641 PATypeHolder Ty(Type::getVoidTy(Context));
Chris Lattnerdf986172009-01-02 07:01:27 +00003642 Value *Op0, *Op1;
3643 LocTy TypeLoc = Lex.getLoc();
Daniel Dunbara279bc32009-09-20 02:20:51 +00003644
Chris Lattnerdf986172009-01-02 07:01:27 +00003645 if (ParseType(Ty) ||
3646 ParseToken(lltok::lsquare, "expected '[' in phi value list") ||
3647 ParseValue(Ty, Op0, PFS) ||
3648 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
Owen Anderson1d0be152009-08-13 21:58:54 +00003649 ParseValue(Type::getLabelTy(Context), Op1, PFS) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003650 ParseToken(lltok::rsquare, "expected ']' in phi value list"))
3651 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003652
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003653 bool AteExtraComma = false;
Chris Lattnerdf986172009-01-02 07:01:27 +00003654 SmallVector<std::pair<Value*, BasicBlock*>, 16> PHIVals;
3655 while (1) {
3656 PHIVals.push_back(std::make_pair(Op0, cast<BasicBlock>(Op1)));
Daniel Dunbara279bc32009-09-20 02:20:51 +00003657
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003658 if (!EatIfPresent(lltok::comma))
Chris Lattnerdf986172009-01-02 07:01:27 +00003659 break;
3660
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003661 if (Lex.getKind() == lltok::MetadataVar) {
3662 AteExtraComma = true;
Devang Patela43d46f2009-10-16 18:45:49 +00003663 break;
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003664 }
Devang Patela43d46f2009-10-16 18:45:49 +00003665
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003666 if (ParseToken(lltok::lsquare, "expected '[' in phi value list") ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003667 ParseValue(Ty, Op0, PFS) ||
3668 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
Owen Anderson1d0be152009-08-13 21:58:54 +00003669 ParseValue(Type::getLabelTy(Context), Op1, PFS) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003670 ParseToken(lltok::rsquare, "expected ']' in phi value list"))
3671 return true;
3672 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003673
Chris Lattnerdf986172009-01-02 07:01:27 +00003674 if (!Ty->isFirstClassType())
3675 return Error(TypeLoc, "phi node must have first class type");
3676
3677 PHINode *PN = PHINode::Create(Ty);
3678 PN->reserveOperandSpace(PHIVals.size());
3679 for (unsigned i = 0, e = PHIVals.size(); i != e; ++i)
3680 PN->addIncoming(PHIVals[i].first, PHIVals[i].second);
3681 Inst = PN;
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003682 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerdf986172009-01-02 07:01:27 +00003683}
3684
3685/// ParseCall
3686/// ::= 'tail'? 'call' OptionalCallingConv OptionalAttrs Type Value
3687/// ParameterList OptionalAttrs
3688bool LLParser::ParseCall(Instruction *&Inst, PerFunctionState &PFS,
3689 bool isTail) {
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00003690 unsigned RetAttrs, FnAttrs;
3691 CallingConv::ID CC;
Owen Anderson1d0be152009-08-13 21:58:54 +00003692 PATypeHolder RetType(Type::getVoidTy(Context));
Chris Lattnerdf986172009-01-02 07:01:27 +00003693 LocTy RetTypeLoc;
3694 ValID CalleeID;
3695 SmallVector<ParamInfo, 16> ArgList;
3696 LocTy CallLoc = Lex.getLoc();
Daniel Dunbara279bc32009-09-20 02:20:51 +00003697
Chris Lattnerdf986172009-01-02 07:01:27 +00003698 if ((isTail && ParseToken(lltok::kw_call, "expected 'tail call'")) ||
3699 ParseOptionalCallingConv(CC) ||
3700 ParseOptionalAttrs(RetAttrs, 1) ||
Chris Lattnera9a9e072009-03-09 04:49:14 +00003701 ParseType(RetType, RetTypeLoc, true /*void allowed*/) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003702 ParseValID(CalleeID) ||
3703 ParseParameterList(ArgList, PFS) ||
3704 ParseOptionalAttrs(FnAttrs, 2))
3705 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003706
Chris Lattnerdf986172009-01-02 07:01:27 +00003707 // If RetType is a non-function pointer type, then this is the short syntax
3708 // for the call, which means that RetType is just the return type. Infer the
3709 // rest of the function argument types from the arguments that are present.
3710 const PointerType *PFTy = 0;
3711 const FunctionType *Ty = 0;
3712 if (!(PFTy = dyn_cast<PointerType>(RetType)) ||
3713 !(Ty = dyn_cast<FunctionType>(PFTy->getElementType()))) {
3714 // Pull out the types of all of the arguments...
3715 std::vector<const Type*> ParamTypes;
Eli Friedman83b4a972010-07-24 23:06:59 +00003716 for (unsigned i = 0, e = ArgList.size(); i != e; ++i)
3717 ParamTypes.push_back(ArgList[i].V->getType());
Daniel Dunbara279bc32009-09-20 02:20:51 +00003718
Chris Lattnerdf986172009-01-02 07:01:27 +00003719 if (!FunctionType::isValidReturnType(RetType))
3720 return Error(RetTypeLoc, "Invalid result type for LLVM function");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003721
Owen Andersondebcb012009-07-29 22:17:13 +00003722 Ty = FunctionType::get(RetType, ParamTypes, false);
3723 PFTy = PointerType::getUnqual(Ty);
Chris Lattnerdf986172009-01-02 07:01:27 +00003724 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003725
Chris Lattnerdf986172009-01-02 07:01:27 +00003726 // Look up the callee.
3727 Value *Callee;
Victor Hernandez92f238d2010-01-11 22:31:58 +00003728 if (ConvertValIDToValue(PFTy, CalleeID, Callee, &PFS)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003729
Chris Lattnerdf986172009-01-02 07:01:27 +00003730 // FIXME: In LLVM 3.0, stop accepting zext, sext and inreg as optional
3731 // function attributes.
3732 unsigned ObsoleteFuncAttrs = Attribute::ZExt|Attribute::SExt|Attribute::InReg;
3733 if (FnAttrs & ObsoleteFuncAttrs) {
3734 RetAttrs |= FnAttrs & ObsoleteFuncAttrs;
3735 FnAttrs &= ~ObsoleteFuncAttrs;
3736 }
3737
3738 // Set up the Attributes for the function.
3739 SmallVector<AttributeWithIndex, 8> Attrs;
3740 if (RetAttrs != Attribute::None)
3741 Attrs.push_back(AttributeWithIndex::get(0, RetAttrs));
Daniel Dunbara279bc32009-09-20 02:20:51 +00003742
Chris Lattnerdf986172009-01-02 07:01:27 +00003743 SmallVector<Value*, 8> Args;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003744
Chris Lattnerdf986172009-01-02 07:01:27 +00003745 // Loop through FunctionType's arguments and ensure they are specified
3746 // correctly. Also, gather any parameter attributes.
3747 FunctionType::param_iterator I = Ty->param_begin();
3748 FunctionType::param_iterator E = Ty->param_end();
3749 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
3750 const Type *ExpectedTy = 0;
3751 if (I != E) {
3752 ExpectedTy = *I++;
3753 } else if (!Ty->isVarArg()) {
3754 return Error(ArgList[i].Loc, "too many arguments specified");
3755 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003756
Chris Lattnerdf986172009-01-02 07:01:27 +00003757 if (ExpectedTy && ExpectedTy != ArgList[i].V->getType())
3758 return Error(ArgList[i].Loc, "argument is not of expected type '" +
3759 ExpectedTy->getDescription() + "'");
3760 Args.push_back(ArgList[i].V);
3761 if (ArgList[i].Attrs != Attribute::None)
3762 Attrs.push_back(AttributeWithIndex::get(i+1, ArgList[i].Attrs));
3763 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003764
Chris Lattnerdf986172009-01-02 07:01:27 +00003765 if (I != E)
3766 return Error(CallLoc, "not enough parameters specified for call");
3767
3768 if (FnAttrs != Attribute::None)
3769 Attrs.push_back(AttributeWithIndex::get(~0, FnAttrs));
3770
3771 // Finish off the Attributes and check them
3772 AttrListPtr PAL = AttrListPtr::get(Attrs.begin(), Attrs.end());
Daniel Dunbara279bc32009-09-20 02:20:51 +00003773
Chris Lattnerdf986172009-01-02 07:01:27 +00003774 CallInst *CI = CallInst::Create(Callee, Args.begin(), Args.end());
3775 CI->setTailCall(isTail);
3776 CI->setCallingConv(CC);
3777 CI->setAttributes(PAL);
3778 Inst = CI;
3779 return false;
3780}
3781
3782//===----------------------------------------------------------------------===//
3783// Memory Instructions.
3784//===----------------------------------------------------------------------===//
3785
3786/// ParseAlloc
Devang Patelf633a062009-09-17 23:04:48 +00003787/// ::= 'malloc' Type (',' TypeAndValue)? (',' OptionalInfo)?
3788/// ::= 'alloca' Type (',' TypeAndValue)? (',' OptionalInfo)?
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00003789int LLParser::ParseAlloc(Instruction *&Inst, PerFunctionState &PFS,
3790 BasicBlock* BB, bool isAlloca) {
Owen Anderson1d0be152009-08-13 21:58:54 +00003791 PATypeHolder Ty(Type::getVoidTy(Context));
Chris Lattnerdf986172009-01-02 07:01:27 +00003792 Value *Size = 0;
Chris Lattnereeb4a842009-07-02 23:08:13 +00003793 LocTy SizeLoc;
Chris Lattnerdf986172009-01-02 07:01:27 +00003794 unsigned Alignment = 0;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003795 if (ParseType(Ty)) return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00003796
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00003797 bool AteExtraComma = false;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003798 if (EatIfPresent(lltok::comma)) {
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00003799 if (Lex.getKind() == lltok::kw_align) {
3800 if (ParseOptionalAlignment(Alignment)) return true;
3801 } else if (Lex.getKind() == lltok::MetadataVar) {
3802 AteExtraComma = true;
Devang Patelf633a062009-09-17 23:04:48 +00003803 } else {
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00003804 if (ParseTypeAndValue(Size, SizeLoc, PFS) ||
3805 ParseOptionalCommaAlign(Alignment, AteExtraComma))
3806 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00003807 }
3808 }
3809
Dan Gohmanf75a7d32010-05-28 01:14:11 +00003810 if (Size && !Size->getType()->isIntegerTy())
3811 return Error(SizeLoc, "element count must have integer type");
Chris Lattnerdf986172009-01-02 07:01:27 +00003812
Victor Hernandez68afa542009-10-21 19:11:40 +00003813 if (isAlloca) {
Owen Anderson50dead02009-07-15 23:53:25 +00003814 Inst = new AllocaInst(Ty, Size, Alignment);
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00003815 return AteExtraComma ? InstExtraComma : InstNormal;
Victor Hernandez13ad5aa2009-10-17 00:00:19 +00003816 }
Victor Hernandez68afa542009-10-21 19:11:40 +00003817
3818 // Autoupgrade old malloc instruction to malloc call.
3819 // FIXME: Remove in LLVM 3.0.
Dan Gohmanf75a7d32010-05-28 01:14:11 +00003820 if (Size && !Size->getType()->isIntegerTy(32))
3821 return Error(SizeLoc, "element count must be i32");
Victor Hernandez68afa542009-10-21 19:11:40 +00003822 const Type *IntPtrTy = Type::getInt32Ty(Context);
Victor Hernandez9d0b7042009-11-07 00:16:28 +00003823 Constant *AllocSize = ConstantExpr::getSizeOf(Ty);
3824 AllocSize = ConstantExpr::getTruncOrBitCast(AllocSize, IntPtrTy);
Victor Hernandez68afa542009-10-21 19:11:40 +00003825 if (!MallocF)
3826 // Prototype malloc as "void *(int32)".
3827 // This function is renamed as "malloc" in ValidateEndOfModule().
Victor Hernandez336ea062009-10-23 00:59:10 +00003828 MallocF = cast<Function>(
3829 M->getOrInsertFunction("", Type::getInt8PtrTy(Context), IntPtrTy, NULL));
Victor Hernandez9d0b7042009-11-07 00:16:28 +00003830 Inst = CallInst::CreateMalloc(BB, IntPtrTy, Ty, AllocSize, Size, MallocF);
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00003831return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerdf986172009-01-02 07:01:27 +00003832}
3833
3834/// ParseFree
3835/// ::= 'free' TypeAndValue
Victor Hernandez66284e02009-10-24 04:23:03 +00003836bool LLParser::ParseFree(Instruction *&Inst, PerFunctionState &PFS,
3837 BasicBlock* BB) {
Chris Lattnerdf986172009-01-02 07:01:27 +00003838 Value *Val; LocTy Loc;
3839 if (ParseTypeAndValue(Val, Loc, PFS)) return true;
Duncan Sands1df98592010-02-16 11:11:14 +00003840 if (!Val->getType()->isPointerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00003841 return Error(Loc, "operand to free must be a pointer");
Victor Hernandez66284e02009-10-24 04:23:03 +00003842 Inst = CallInst::CreateFree(Val, BB);
Chris Lattnerdf986172009-01-02 07:01:27 +00003843 return false;
3844}
3845
3846/// ParseLoad
Devang Patelf633a062009-09-17 23:04:48 +00003847/// ::= 'volatile'? 'load' TypeAndValue (',' OptionalInfo)?
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00003848int LLParser::ParseLoad(Instruction *&Inst, PerFunctionState &PFS,
3849 bool isVolatile) {
Chris Lattnerdf986172009-01-02 07:01:27 +00003850 Value *Val; LocTy Loc;
Devang Patelf633a062009-09-17 23:04:48 +00003851 unsigned Alignment = 0;
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00003852 bool AteExtraComma = false;
3853 if (ParseTypeAndValue(Val, Loc, PFS) ||
3854 ParseOptionalCommaAlign(Alignment, AteExtraComma))
3855 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00003856
Duncan Sands1df98592010-02-16 11:11:14 +00003857 if (!Val->getType()->isPointerTy() ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003858 !cast<PointerType>(Val->getType())->getElementType()->isFirstClassType())
3859 return Error(Loc, "load operand must be a pointer to a first class type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003860
Chris Lattnerdf986172009-01-02 07:01:27 +00003861 Inst = new LoadInst(Val, "", isVolatile, Alignment);
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00003862 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerdf986172009-01-02 07:01:27 +00003863}
3864
3865/// ParseStore
Dan Gohmana119de82009-06-14 23:30:43 +00003866/// ::= 'volatile'? 'store' TypeAndValue ',' TypeAndValue (',' 'align' i32)?
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00003867int LLParser::ParseStore(Instruction *&Inst, PerFunctionState &PFS,
3868 bool isVolatile) {
Chris Lattnerdf986172009-01-02 07:01:27 +00003869 Value *Val, *Ptr; LocTy Loc, PtrLoc;
Devang Patelf633a062009-09-17 23:04:48 +00003870 unsigned Alignment = 0;
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00003871 bool AteExtraComma = false;
Chris Lattnerdf986172009-01-02 07:01:27 +00003872 if (ParseTypeAndValue(Val, Loc, PFS) ||
3873 ParseToken(lltok::comma, "expected ',' after store operand") ||
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00003874 ParseTypeAndValue(Ptr, PtrLoc, PFS) ||
3875 ParseOptionalCommaAlign(Alignment, AteExtraComma))
Chris Lattnerdf986172009-01-02 07:01:27 +00003876 return true;
Devang Patelf633a062009-09-17 23:04:48 +00003877
Duncan Sands1df98592010-02-16 11:11:14 +00003878 if (!Ptr->getType()->isPointerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00003879 return Error(PtrLoc, "store operand must be a pointer");
3880 if (!Val->getType()->isFirstClassType())
3881 return Error(Loc, "store operand must be a first class value");
3882 if (cast<PointerType>(Ptr->getType())->getElementType() != Val->getType())
3883 return Error(Loc, "stored value and pointer type do not match");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003884
Chris Lattnerdf986172009-01-02 07:01:27 +00003885 Inst = new StoreInst(Val, Ptr, isVolatile, Alignment);
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00003886 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerdf986172009-01-02 07:01:27 +00003887}
3888
3889/// ParseGetResult
Dan Gohmana119de82009-06-14 23:30:43 +00003890/// ::= 'getresult' TypeAndValue ',' i32
Chris Lattnerdf986172009-01-02 07:01:27 +00003891/// FIXME: Remove support for getresult in LLVM 3.0
3892bool LLParser::ParseGetResult(Instruction *&Inst, PerFunctionState &PFS) {
3893 Value *Val; LocTy ValLoc, EltLoc;
3894 unsigned Element;
3895 if (ParseTypeAndValue(Val, ValLoc, PFS) ||
3896 ParseToken(lltok::comma, "expected ',' after getresult operand") ||
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003897 ParseUInt32(Element, EltLoc))
Chris Lattnerdf986172009-01-02 07:01:27 +00003898 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003899
Duncan Sands1df98592010-02-16 11:11:14 +00003900 if (!Val->getType()->isStructTy() && !Val->getType()->isArrayTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00003901 return Error(ValLoc, "getresult inst requires an aggregate operand");
3902 if (!ExtractValueInst::getIndexedType(Val->getType(), Element))
3903 return Error(EltLoc, "invalid getresult index for value");
3904 Inst = ExtractValueInst::Create(Val, Element);
3905 return false;
3906}
3907
3908/// ParseGetElementPtr
Dan Gohmandd8004d2009-07-27 21:53:46 +00003909/// ::= 'getelementptr' 'inbounds'? TypeAndValue (',' TypeAndValue)*
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003910int LLParser::ParseGetElementPtr(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00003911 Value *Ptr, *Val; LocTy Loc, EltLoc;
Dan Gohmandd8004d2009-07-27 21:53:46 +00003912
Dan Gohmandcb40a32009-07-29 15:58:36 +00003913 bool InBounds = EatIfPresent(lltok::kw_inbounds);
Dan Gohmandd8004d2009-07-27 21:53:46 +00003914
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003915 if (ParseTypeAndValue(Ptr, Loc, PFS)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003916
Duncan Sands1df98592010-02-16 11:11:14 +00003917 if (!Ptr->getType()->isPointerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00003918 return Error(Loc, "base of getelementptr must be a pointer");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003919
Chris Lattnerdf986172009-01-02 07:01:27 +00003920 SmallVector<Value*, 16> Indices;
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003921 bool AteExtraComma = false;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003922 while (EatIfPresent(lltok::comma)) {
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003923 if (Lex.getKind() == lltok::MetadataVar) {
3924 AteExtraComma = true;
Devang Patel6225d642009-10-13 18:49:55 +00003925 break;
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003926 }
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003927 if (ParseTypeAndValue(Val, EltLoc, PFS)) return true;
Duncan Sands1df98592010-02-16 11:11:14 +00003928 if (!Val->getType()->isIntegerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00003929 return Error(EltLoc, "getelementptr index must be an integer");
3930 Indices.push_back(Val);
3931 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003932
Chris Lattnerdf986172009-01-02 07:01:27 +00003933 if (!GetElementPtrInst::getIndexedType(Ptr->getType(),
3934 Indices.begin(), Indices.end()))
3935 return Error(Loc, "invalid getelementptr indices");
3936 Inst = GetElementPtrInst::Create(Ptr, Indices.begin(), Indices.end());
Dan Gohmandd8004d2009-07-27 21:53:46 +00003937 if (InBounds)
Dan Gohmanf8dbee72009-09-07 23:54:19 +00003938 cast<GetElementPtrInst>(Inst)->setIsInBounds(true);
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003939 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerdf986172009-01-02 07:01:27 +00003940}
3941
3942/// ParseExtractValue
3943/// ::= 'extractvalue' TypeAndValue (',' uint32)+
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003944int LLParser::ParseExtractValue(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00003945 Value *Val; LocTy Loc;
3946 SmallVector<unsigned, 4> Indices;
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003947 bool AteExtraComma;
Chris Lattnerdf986172009-01-02 07:01:27 +00003948 if (ParseTypeAndValue(Val, Loc, PFS) ||
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003949 ParseIndexList(Indices, AteExtraComma))
Chris Lattnerdf986172009-01-02 07:01:27 +00003950 return true;
3951
Chris Lattnerfdfeb692010-02-12 20:49:41 +00003952 if (!Val->getType()->isAggregateType())
3953 return Error(Loc, "extractvalue operand must be aggregate type");
Chris Lattnerdf986172009-01-02 07:01:27 +00003954
3955 if (!ExtractValueInst::getIndexedType(Val->getType(), Indices.begin(),
3956 Indices.end()))
3957 return Error(Loc, "invalid indices for extractvalue");
3958 Inst = ExtractValueInst::Create(Val, Indices.begin(), Indices.end());
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003959 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerdf986172009-01-02 07:01:27 +00003960}
3961
3962/// ParseInsertValue
3963/// ::= 'insertvalue' TypeAndValue ',' TypeAndValue (',' uint32)+
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003964int LLParser::ParseInsertValue(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00003965 Value *Val0, *Val1; LocTy Loc0, Loc1;
3966 SmallVector<unsigned, 4> Indices;
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003967 bool AteExtraComma;
Chris Lattnerdf986172009-01-02 07:01:27 +00003968 if (ParseTypeAndValue(Val0, Loc0, PFS) ||
3969 ParseToken(lltok::comma, "expected comma after insertvalue operand") ||
3970 ParseTypeAndValue(Val1, Loc1, PFS) ||
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003971 ParseIndexList(Indices, AteExtraComma))
Chris Lattnerdf986172009-01-02 07:01:27 +00003972 return true;
Chris Lattner628c13a2009-12-30 05:14:00 +00003973
Chris Lattnerfdfeb692010-02-12 20:49:41 +00003974 if (!Val0->getType()->isAggregateType())
3975 return Error(Loc0, "insertvalue operand must be aggregate type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003976
Chris Lattnerdf986172009-01-02 07:01:27 +00003977 if (!ExtractValueInst::getIndexedType(Val0->getType(), Indices.begin(),
3978 Indices.end()))
3979 return Error(Loc0, "invalid indices for insertvalue");
3980 Inst = InsertValueInst::Create(Val0, Val1, Indices.begin(), Indices.end());
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003981 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerdf986172009-01-02 07:01:27 +00003982}
Nick Lewycky21cc4462009-04-04 07:22:01 +00003983
3984//===----------------------------------------------------------------------===//
3985// Embedded metadata.
3986//===----------------------------------------------------------------------===//
3987
3988/// ParseMDNodeVector
Nick Lewyckycb337992009-05-10 20:57:05 +00003989/// ::= Element (',' Element)*
3990/// Element
3991/// ::= 'null' | TypeAndValue
Victor Hernandezbf170d42010-01-05 22:22:14 +00003992bool LLParser::ParseMDNodeVector(SmallVectorImpl<Value*> &Elts,
Victor Hernandez24e64df2010-01-10 07:14:18 +00003993 PerFunctionState *PFS) {
Dan Gohmanac809752010-07-13 19:33:27 +00003994 // Check for an empty list.
3995 if (Lex.getKind() == lltok::rbrace)
3996 return false;
3997
Nick Lewycky21cc4462009-04-04 07:22:01 +00003998 do {
Chris Lattnera7352392009-12-30 04:42:57 +00003999 // Null is a special case since it is typeless.
4000 if (EatIfPresent(lltok::kw_null)) {
4001 Elts.push_back(0);
4002 continue;
Nick Lewyckycb337992009-05-10 20:57:05 +00004003 }
Chris Lattnera7352392009-12-30 04:42:57 +00004004
4005 Value *V = 0;
4006 PATypeHolder Ty(Type::getVoidTy(Context));
4007 ValID ID;
Victor Hernandezbf170d42010-01-05 22:22:14 +00004008 if (ParseType(Ty) || ParseValID(ID, PFS) ||
Victor Hernandez92f238d2010-01-11 22:31:58 +00004009 ConvertValIDToValue(Ty, ID, V, PFS))
Chris Lattnera7352392009-12-30 04:42:57 +00004010 return true;
4011
Nick Lewyckycb337992009-05-10 20:57:05 +00004012 Elts.push_back(V);
Nick Lewycky21cc4462009-04-04 07:22:01 +00004013 } while (EatIfPresent(lltok::comma));
4014
4015 return false;
4016}