blob: 4b066fef727cf6a81b9b6bdd6f897228b6f7c1a3 [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"
Torok Edwinc25e7582009-07-11 20:10:48 +000025#include "llvm/Support/ErrorHandling.h"
Chris Lattnerdf986172009-01-02 07:01:27 +000026#include "llvm/Support/raw_ostream.h"
27using namespace llvm;
28
Chris Lattner0cd0d882011-06-18 21:18:23 +000029static std::string getTypeString(const Type *T) {
30 std::string Result;
31 raw_string_ostream Tmp(Result);
32 Tmp << *T;
33 return Tmp.str();
34}
35
Chris Lattner3ed88ef2009-01-02 08:05:26 +000036/// Run: module ::= toplevelentity*
Chris Lattnerad7d1e22009-01-04 20:44:11 +000037bool LLParser::Run() {
Chris Lattner3ed88ef2009-01-02 08:05:26 +000038 // Prime the lexer.
39 Lex.Lex();
40
Chris Lattnerad7d1e22009-01-04 20:44:11 +000041 return ParseTopLevelEntities() ||
42 ValidateEndOfModule();
Chris Lattnerdf986172009-01-02 07:01:27 +000043}
44
45/// ValidateEndOfModule - Do final validity and sanity checks at the end of the
46/// module.
47bool LLParser::ValidateEndOfModule() {
Chris Lattner449c3102010-04-01 05:14:45 +000048 // Handle any instruction metadata forward references.
49 if (!ForwardRefInstMetadata.empty()) {
50 for (DenseMap<Instruction*, std::vector<MDRef> >::iterator
51 I = ForwardRefInstMetadata.begin(), E = ForwardRefInstMetadata.end();
52 I != E; ++I) {
53 Instruction *Inst = I->first;
54 const std::vector<MDRef> &MDList = I->second;
55
56 for (unsigned i = 0, e = MDList.size(); i != e; ++i) {
57 unsigned SlotNo = MDList[i].MDSlot;
58
59 if (SlotNo >= NumberedMetadata.size() || NumberedMetadata[SlotNo] == 0)
60 return Error(MDList[i].Loc, "use of undefined metadata '!" +
Benjamin Kramerd1e17032010-09-27 17:42:11 +000061 Twine(SlotNo) + "'");
Chris Lattner449c3102010-04-01 05:14:45 +000062 Inst->setMetadata(MDList[i].MDKind, NumberedMetadata[SlotNo]);
63 }
64 }
65 ForwardRefInstMetadata.clear();
66 }
67
68
Chris Lattner09d9ef42009-10-28 03:39:23 +000069 // If there are entries in ForwardRefBlockAddresses at this point, they are
70 // references after the function was defined. Resolve those now.
71 while (!ForwardRefBlockAddresses.empty()) {
72 // Okay, we are referencing an already-parsed function, resolve them now.
73 Function *TheFn = 0;
74 const ValID &Fn = ForwardRefBlockAddresses.begin()->first;
75 if (Fn.Kind == ValID::t_GlobalName)
76 TheFn = M->getFunction(Fn.StrVal);
77 else if (Fn.UIntVal < NumberedVals.size())
78 TheFn = dyn_cast<Function>(NumberedVals[Fn.UIntVal]);
79
80 if (TheFn == 0)
81 return Error(Fn.Loc, "unknown function referenced by blockaddress");
82
83 // Resolve all these references.
84 if (ResolveForwardRefBlockAddresses(TheFn,
85 ForwardRefBlockAddresses.begin()->second,
86 0))
87 return true;
88
89 ForwardRefBlockAddresses.erase(ForwardRefBlockAddresses.begin());
90 }
91
Chris Lattner1afcace2011-07-09 17:41:24 +000092 for (unsigned i = 0, e = NumberedTypes.size(); i != e; ++i)
93 if (NumberedTypes[i].second.isValid())
94 return Error(NumberedTypes[i].second,
95 "use of undefined type '%" + Twine(i) + "'");
96
97 for (StringMap<std::pair<Type*, LocTy> >::iterator I =
98 NamedTypes.begin(), E = NamedTypes.end(); I != E; ++I)
99 if (I->second.second.isValid())
100 return Error(I->second.second,
101 "use of undefined type named '" + I->getKey() + "'");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000102
Chris Lattnerdf986172009-01-02 07:01:27 +0000103 if (!ForwardRefVals.empty())
104 return Error(ForwardRefVals.begin()->second.second,
105 "use of undefined value '@" + ForwardRefVals.begin()->first +
106 "'");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000107
Chris Lattnerdf986172009-01-02 07:01:27 +0000108 if (!ForwardRefValIDs.empty())
109 return Error(ForwardRefValIDs.begin()->second.second,
110 "use of undefined value '@" +
Benjamin Kramerd1e17032010-09-27 17:42:11 +0000111 Twine(ForwardRefValIDs.begin()->first) + "'");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000112
Devang Patel1c7eea62009-07-08 19:23:54 +0000113 if (!ForwardRefMDNodes.empty())
114 return Error(ForwardRefMDNodes.begin()->second.second,
115 "use of undefined metadata '!" +
Benjamin Kramerd1e17032010-09-27 17:42:11 +0000116 Twine(ForwardRefMDNodes.begin()->first) + "'");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000117
Devang Patel1c7eea62009-07-08 19:23:54 +0000118
Chris Lattnerdf986172009-01-02 07:01:27 +0000119 // Look for intrinsic functions and CallInst that need to be upgraded
120 for (Module::iterator FI = M->begin(), FE = M->end(); FI != FE; )
121 UpgradeCallsToIntrinsic(FI++); // must be post-increment, as we remove
Daniel Dunbara279bc32009-09-20 02:20:51 +0000122
Devang Patele4b27562009-08-28 23:24:31 +0000123 // Check debug info intrinsics.
124 CheckDebugInfoIntrinsics(M);
Chris Lattnerdf986172009-01-02 07:01:27 +0000125 return false;
126}
127
Chris Lattner09d9ef42009-10-28 03:39:23 +0000128bool LLParser::ResolveForwardRefBlockAddresses(Function *TheFn,
129 std::vector<std::pair<ValID, GlobalValue*> > &Refs,
130 PerFunctionState *PFS) {
131 // Loop over all the references, resolving them.
132 for (unsigned i = 0, e = Refs.size(); i != e; ++i) {
133 BasicBlock *Res;
Chris Lattnercdfc9402009-11-01 01:27:45 +0000134 if (PFS) {
Chris Lattner09d9ef42009-10-28 03:39:23 +0000135 if (Refs[i].first.Kind == ValID::t_LocalName)
136 Res = PFS->GetBB(Refs[i].first.StrVal, Refs[i].first.Loc);
Chris Lattnercdfc9402009-11-01 01:27:45 +0000137 else
Chris Lattner09d9ef42009-10-28 03:39:23 +0000138 Res = PFS->GetBB(Refs[i].first.UIntVal, Refs[i].first.Loc);
139 } else if (Refs[i].first.Kind == ValID::t_LocalID) {
140 return Error(Refs[i].first.Loc,
Chris Lattneree7644d2009-11-02 18:28:45 +0000141 "cannot take address of numeric label after the function is defined");
Chris Lattner09d9ef42009-10-28 03:39:23 +0000142 } else {
143 Res = dyn_cast_or_null<BasicBlock>(
144 TheFn->getValueSymbolTable().lookup(Refs[i].first.StrVal));
145 }
146
Chris Lattnercdfc9402009-11-01 01:27:45 +0000147 if (Res == 0)
Chris Lattner09d9ef42009-10-28 03:39:23 +0000148 return Error(Refs[i].first.Loc,
149 "referenced value is not a basic block");
150
151 // Get the BlockAddress for this and update references to use it.
152 BlockAddress *BA = BlockAddress::get(TheFn, Res);
153 Refs[i].second->replaceAllUsesWith(BA);
154 Refs[i].second->eraseFromParent();
155 }
156 return false;
157}
158
159
Chris Lattnerdf986172009-01-02 07:01:27 +0000160//===----------------------------------------------------------------------===//
161// Top-Level Entities
162//===----------------------------------------------------------------------===//
163
164bool LLParser::ParseTopLevelEntities() {
Chris Lattnerdf986172009-01-02 07:01:27 +0000165 while (1) {
166 switch (Lex.getKind()) {
167 default: return TokError("expected top-level entity");
168 case lltok::Eof: return false;
Chris Lattnerdf986172009-01-02 07:01:27 +0000169 case lltok::kw_declare: if (ParseDeclare()) return true; break;
170 case lltok::kw_define: if (ParseDefine()) return true; break;
171 case lltok::kw_module: if (ParseModuleAsm()) return true; break;
172 case lltok::kw_target: if (ParseTargetDefinition()) return true; break;
173 case lltok::kw_deplibs: if (ParseDepLibs()) return true; break;
Dan Gohman3845e502009-08-12 23:32:33 +0000174 case lltok::LocalVarID: if (ParseUnnamedType()) return true; break;
Chris Lattnerdf986172009-01-02 07:01:27 +0000175 case lltok::LocalVar: if (ParseNamedType()) return true; break;
Dan Gohman3845e502009-08-12 23:32:33 +0000176 case lltok::GlobalID: if (ParseUnnamedGlobal()) return true; break;
Chris Lattnerdf986172009-01-02 07:01:27 +0000177 case lltok::GlobalVar: if (ParseNamedGlobal()) return true; break;
Chris Lattnere434d272009-12-30 04:56:59 +0000178 case lltok::exclaim: if (ParseStandaloneMetadata()) return true; break;
Chris Lattner1d928312009-12-30 05:02:06 +0000179 case lltok::MetadataVar: if (ParseNamedMetadata()) return true; break;
Chris Lattnerdf986172009-01-02 07:01:27 +0000180
181 // The Global variable production with no name can have many different
182 // optional leading prefixes, the production is:
183 // GlobalVar ::= OptionalLinkage OptionalVisibility OptionalThreadLocal
Rafael Espindolabea46262011-01-08 16:42:36 +0000184 // OptionalAddrSpace OptionalUnNammedAddr
185 // ('constant'|'global') ...
Bill Wendling5e721d72010-07-01 21:55:59 +0000186 case lltok::kw_private: // OptionalLinkage
187 case lltok::kw_linker_private: // OptionalLinkage
188 case lltok::kw_linker_private_weak: // OptionalLinkage
Bill Wendling55ae5152010-08-20 22:05:50 +0000189 case lltok::kw_linker_private_weak_def_auto: // OptionalLinkage
Bill Wendling5e721d72010-07-01 21:55:59 +0000190 case lltok::kw_internal: // OptionalLinkage
191 case lltok::kw_weak: // OptionalLinkage
192 case lltok::kw_weak_odr: // OptionalLinkage
193 case lltok::kw_linkonce: // OptionalLinkage
194 case lltok::kw_linkonce_odr: // OptionalLinkage
195 case lltok::kw_appending: // OptionalLinkage
196 case lltok::kw_dllexport: // OptionalLinkage
197 case lltok::kw_common: // OptionalLinkage
198 case lltok::kw_dllimport: // OptionalLinkage
199 case lltok::kw_extern_weak: // OptionalLinkage
200 case lltok::kw_external: { // OptionalLinkage
Chris Lattnerdf986172009-01-02 07:01:27 +0000201 unsigned Linkage, Visibility;
202 if (ParseOptionalLinkage(Linkage) ||
203 ParseOptionalVisibility(Visibility) ||
Chris Lattnereeb4a842009-07-02 23:08:13 +0000204 ParseGlobal("", SMLoc(), Linkage, true, Visibility))
Chris Lattnerdf986172009-01-02 07:01:27 +0000205 return true;
206 break;
207 }
208 case lltok::kw_default: // OptionalVisibility
209 case lltok::kw_hidden: // OptionalVisibility
210 case lltok::kw_protected: { // OptionalVisibility
211 unsigned Visibility;
212 if (ParseOptionalVisibility(Visibility) ||
Chris Lattnereeb4a842009-07-02 23:08:13 +0000213 ParseGlobal("", SMLoc(), 0, false, Visibility))
Chris Lattnerdf986172009-01-02 07:01:27 +0000214 return true;
215 break;
216 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000217
Chris Lattnerdf986172009-01-02 07:01:27 +0000218 case lltok::kw_thread_local: // OptionalThreadLocal
219 case lltok::kw_addrspace: // OptionalAddrSpace
220 case lltok::kw_constant: // GlobalType
221 case lltok::kw_global: // GlobalType
Chris Lattnereeb4a842009-07-02 23:08:13 +0000222 if (ParseGlobal("", SMLoc(), 0, false, 0)) return true;
Chris Lattnerdf986172009-01-02 07:01:27 +0000223 break;
224 }
225 }
226}
227
228
229/// toplevelentity
230/// ::= 'module' 'asm' STRINGCONSTANT
231bool LLParser::ParseModuleAsm() {
232 assert(Lex.getKind() == lltok::kw_module);
233 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +0000234
235 std::string AsmStr;
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000236 if (ParseToken(lltok::kw_asm, "expected 'module asm'") ||
237 ParseStringConstant(AsmStr)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000238
Rafael Espindola38c4e532011-03-02 04:14:42 +0000239 M->appendModuleInlineAsm(AsmStr);
Chris Lattnerdf986172009-01-02 07:01:27 +0000240 return false;
241}
242
243/// toplevelentity
244/// ::= 'target' 'triple' '=' STRINGCONSTANT
245/// ::= 'target' 'datalayout' '=' STRINGCONSTANT
246bool LLParser::ParseTargetDefinition() {
247 assert(Lex.getKind() == lltok::kw_target);
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000248 std::string Str;
Chris Lattnerdf986172009-01-02 07:01:27 +0000249 switch (Lex.Lex()) {
250 default: return TokError("unknown target property");
251 case lltok::kw_triple:
252 Lex.Lex();
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000253 if (ParseToken(lltok::equal, "expected '=' after target triple") ||
254 ParseStringConstant(Str))
Chris Lattnerdf986172009-01-02 07:01:27 +0000255 return true;
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000256 M->setTargetTriple(Str);
Chris Lattnerdf986172009-01-02 07:01:27 +0000257 return false;
258 case lltok::kw_datalayout:
259 Lex.Lex();
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000260 if (ParseToken(lltok::equal, "expected '=' after target datalayout") ||
261 ParseStringConstant(Str))
Chris Lattnerdf986172009-01-02 07:01:27 +0000262 return true;
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000263 M->setDataLayout(Str);
Chris Lattnerdf986172009-01-02 07:01:27 +0000264 return false;
265 }
266}
267
268/// toplevelentity
269/// ::= 'deplibs' '=' '[' ']'
270/// ::= 'deplibs' '=' '[' STRINGCONSTANT (',' STRINGCONSTANT)* ']'
271bool LLParser::ParseDepLibs() {
272 assert(Lex.getKind() == lltok::kw_deplibs);
Chris Lattnerdf986172009-01-02 07:01:27 +0000273 Lex.Lex();
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000274 if (ParseToken(lltok::equal, "expected '=' after deplibs") ||
275 ParseToken(lltok::lsquare, "expected '=' after deplibs"))
276 return true;
277
278 if (EatIfPresent(lltok::rsquare))
279 return false;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000280
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000281 std::string Str;
282 if (ParseStringConstant(Str)) return true;
283 M->addLibrary(Str);
284
285 while (EatIfPresent(lltok::comma)) {
286 if (ParseStringConstant(Str)) return true;
287 M->addLibrary(Str);
288 }
289
290 return ParseToken(lltok::rsquare, "expected ']' at end of list");
Chris Lattnerdf986172009-01-02 07:01:27 +0000291}
292
Dan Gohman3845e502009-08-12 23:32:33 +0000293/// ParseUnnamedType:
Dan Gohman3845e502009-08-12 23:32:33 +0000294/// ::= LocalVarID '=' 'type' type
Chris Lattnerdf986172009-01-02 07:01:27 +0000295bool LLParser::ParseUnnamedType() {
Chris Lattneredcaca82011-06-18 23:51:31 +0000296 LocTy TypeLoc = Lex.getLoc();
Chris Lattner1afcace2011-07-09 17:41:24 +0000297 unsigned TypeID = Lex.getUIntVal();
Chris Lattnera53616d2011-06-19 00:03:46 +0000298 Lex.Lex(); // eat LocalVarID;
299
300 if (ParseToken(lltok::equal, "expected '=' after name") ||
301 ParseToken(lltok::kw_type, "expected 'type' after '='"))
302 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +0000303
Chris Lattner1afcace2011-07-09 17:41:24 +0000304 if (TypeID >= NumberedTypes.size())
305 NumberedTypes.resize(TypeID+1);
306
307 Type *Result = 0;
308 if (ParseStructDefinition(TypeLoc, "",
309 NumberedTypes[TypeID], Result)) return true;
310
311 if (!isa<StructType>(Result)) {
312 std::pair<Type*, LocTy> &Entry = NumberedTypes[TypeID];
313 if (Entry.first)
314 return Error(TypeLoc, "non-struct types may not be recursive");
315 Entry.first = Result;
316 Entry.second = SMLoc();
Chris Lattnerdf986172009-01-02 07:01:27 +0000317 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000318
Chris Lattnerdf986172009-01-02 07:01:27 +0000319 return false;
320}
321
Chris Lattner1afcace2011-07-09 17:41:24 +0000322
Chris Lattnerdf986172009-01-02 07:01:27 +0000323/// toplevelentity
324/// ::= LocalVar '=' 'type' type
325bool LLParser::ParseNamedType() {
326 std::string Name = Lex.getStrVal();
327 LocTy NameLoc = Lex.getLoc();
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000328 Lex.Lex(); // eat LocalVar.
Daniel Dunbara279bc32009-09-20 02:20:51 +0000329
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000330 if (ParseToken(lltok::equal, "expected '=' after name") ||
Chris Lattner1afcace2011-07-09 17:41:24 +0000331 ParseToken(lltok::kw_type, "expected 'type' after name"))
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000332 return true;
Chris Lattner1afcace2011-07-09 17:41:24 +0000333
334 Type *Result = 0;
335 if (ParseStructDefinition(NameLoc, Name,
336 NamedTypes[Name], Result)) return true;
337
338 if (!isa<StructType>(Result)) {
339 std::pair<Type*, LocTy> &Entry = NamedTypes[Name];
340 if (Entry.first)
341 return Error(NameLoc, "non-struct types may not be recursive");
342 Entry.first = Result;
343 Entry.second = SMLoc();
Chris Lattnerdf986172009-01-02 07:01:27 +0000344 }
Chris Lattner1afcace2011-07-09 17:41:24 +0000345
346 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +0000347}
348
349
350/// toplevelentity
351/// ::= 'declare' FunctionHeader
352bool LLParser::ParseDeclare() {
353 assert(Lex.getKind() == lltok::kw_declare);
354 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +0000355
Chris Lattnerdf986172009-01-02 07:01:27 +0000356 Function *F;
357 return ParseFunctionHeader(F, false);
358}
359
360/// toplevelentity
361/// ::= 'define' FunctionHeader '{' ...
362bool LLParser::ParseDefine() {
363 assert(Lex.getKind() == lltok::kw_define);
364 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +0000365
Chris Lattnerdf986172009-01-02 07:01:27 +0000366 Function *F;
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000367 return ParseFunctionHeader(F, true) ||
368 ParseFunctionBody(*F);
Chris Lattnerdf986172009-01-02 07:01:27 +0000369}
370
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000371/// ParseGlobalType
372/// ::= 'constant'
373/// ::= 'global'
Chris Lattnerdf986172009-01-02 07:01:27 +0000374bool LLParser::ParseGlobalType(bool &IsConstant) {
375 if (Lex.getKind() == lltok::kw_constant)
376 IsConstant = true;
377 else if (Lex.getKind() == lltok::kw_global)
378 IsConstant = false;
Duncan Sands35b51072009-02-10 16:24:55 +0000379 else {
380 IsConstant = false;
Chris Lattnerdf986172009-01-02 07:01:27 +0000381 return TokError("expected 'global' or 'constant'");
Duncan Sands35b51072009-02-10 16:24:55 +0000382 }
Chris Lattnerdf986172009-01-02 07:01:27 +0000383 Lex.Lex();
384 return false;
385}
386
Dan Gohman3845e502009-08-12 23:32:33 +0000387/// ParseUnnamedGlobal:
388/// OptionalVisibility ALIAS ...
389/// OptionalLinkage OptionalVisibility ... -> global variable
390/// GlobalID '=' OptionalVisibility ALIAS ...
391/// GlobalID '=' OptionalLinkage OptionalVisibility ... -> global variable
392bool LLParser::ParseUnnamedGlobal() {
393 unsigned VarID = NumberedVals.size();
394 std::string Name;
395 LocTy NameLoc = Lex.getLoc();
396
397 // Handle the GlobalID form.
398 if (Lex.getKind() == lltok::GlobalID) {
399 if (Lex.getUIntVal() != VarID)
400 return Error(Lex.getLoc(), "variable expected to be numbered '%" +
Benjamin Kramerd1e17032010-09-27 17:42:11 +0000401 Twine(VarID) + "'");
Dan Gohman3845e502009-08-12 23:32:33 +0000402 Lex.Lex(); // eat GlobalID;
403
404 if (ParseToken(lltok::equal, "expected '=' after name"))
405 return true;
406 }
407
408 bool HasLinkage;
409 unsigned Linkage, Visibility;
410 if (ParseOptionalLinkage(Linkage, HasLinkage) ||
411 ParseOptionalVisibility(Visibility))
412 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000413
Dan Gohman3845e502009-08-12 23:32:33 +0000414 if (HasLinkage || Lex.getKind() != lltok::kw_alias)
415 return ParseGlobal(Name, NameLoc, Linkage, HasLinkage, Visibility);
416 return ParseAlias(Name, NameLoc, Visibility);
417}
418
Chris Lattnerdf986172009-01-02 07:01:27 +0000419/// ParseNamedGlobal:
420/// GlobalVar '=' OptionalVisibility ALIAS ...
421/// GlobalVar '=' OptionalLinkage OptionalVisibility ... -> global variable
422bool LLParser::ParseNamedGlobal() {
423 assert(Lex.getKind() == lltok::GlobalVar);
424 LocTy NameLoc = Lex.getLoc();
425 std::string Name = Lex.getStrVal();
426 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +0000427
Chris Lattnerdf986172009-01-02 07:01:27 +0000428 bool HasLinkage;
429 unsigned Linkage, Visibility;
430 if (ParseToken(lltok::equal, "expected '=' in global variable") ||
431 ParseOptionalLinkage(Linkage, HasLinkage) ||
432 ParseOptionalVisibility(Visibility))
433 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000434
Chris Lattnerdf986172009-01-02 07:01:27 +0000435 if (HasLinkage || Lex.getKind() != lltok::kw_alias)
436 return ParseGlobal(Name, NameLoc, Linkage, HasLinkage, Visibility);
437 return ParseAlias(Name, NameLoc, Visibility);
438}
439
Devang Patel256be962009-07-20 19:00:08 +0000440// MDString:
441// ::= '!' STRINGCONSTANT
Chris Lattner442ffa12009-12-29 21:53:55 +0000442bool LLParser::ParseMDString(MDString *&Result) {
Devang Patel256be962009-07-20 19:00:08 +0000443 std::string Str;
444 if (ParseStringConstant(Str)) return true;
Chris Lattner442ffa12009-12-29 21:53:55 +0000445 Result = MDString::get(Context, Str);
Devang Patel256be962009-07-20 19:00:08 +0000446 return false;
447}
448
449// MDNode:
450// ::= '!' MDNodeNumber
Chris Lattner449c3102010-04-01 05:14:45 +0000451//
452/// This version of ParseMDNodeID returns the slot number and null in the case
453/// of a forward reference.
454bool LLParser::ParseMDNodeID(MDNode *&Result, unsigned &SlotNo) {
455 // !{ ..., !42, ... }
456 if (ParseUInt32(SlotNo)) return true;
457
458 // Check existing MDNode.
459 if (SlotNo < NumberedMetadata.size() && NumberedMetadata[SlotNo] != 0)
460 Result = NumberedMetadata[SlotNo];
461 else
462 Result = 0;
463 return false;
464}
465
Chris Lattner4a72efc2009-12-30 04:15:23 +0000466bool LLParser::ParseMDNodeID(MDNode *&Result) {
Devang Patel256be962009-07-20 19:00:08 +0000467 // !{ ..., !42, ... }
468 unsigned MID = 0;
Chris Lattner449c3102010-04-01 05:14:45 +0000469 if (ParseMDNodeID(Result, MID)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000470
Chris Lattner449c3102010-04-01 05:14:45 +0000471 // If not a forward reference, just return it now.
472 if (Result) return false;
Devang Patel256be962009-07-20 19:00:08 +0000473
Chris Lattner449c3102010-04-01 05:14:45 +0000474 // Otherwise, create MDNode forward reference.
Jay Foadec9186b2011-04-21 19:59:31 +0000475 MDNode *FwdNode = MDNode::getTemporary(Context, ArrayRef<Value*>());
Devang Patel256be962009-07-20 19:00:08 +0000476 ForwardRefMDNodes[MID] = std::make_pair(FwdNode, Lex.getLoc());
Chris Lattner0834e6a2009-12-30 04:51:58 +0000477
478 if (NumberedMetadata.size() <= MID)
479 NumberedMetadata.resize(MID+1);
480 NumberedMetadata[MID] = FwdNode;
Chris Lattner442ffa12009-12-29 21:53:55 +0000481 Result = FwdNode;
Devang Patel256be962009-07-20 19:00:08 +0000482 return false;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000483}
Devang Patel256be962009-07-20 19:00:08 +0000484
Chris Lattner84d03b12009-12-29 22:35:39 +0000485/// ParseNamedMetadata:
Devang Pateleff2ab62009-07-29 00:34:02 +0000486/// !foo = !{ !1, !2 }
487bool LLParser::ParseNamedMetadata() {
Chris Lattner1d928312009-12-30 05:02:06 +0000488 assert(Lex.getKind() == lltok::MetadataVar);
Devang Pateleff2ab62009-07-29 00:34:02 +0000489 std::string Name = Lex.getStrVal();
Chris Lattner1d928312009-12-30 05:02:06 +0000490 Lex.Lex();
Devang Pateleff2ab62009-07-29 00:34:02 +0000491
Chris Lattner84d03b12009-12-29 22:35:39 +0000492 if (ParseToken(lltok::equal, "expected '=' here") ||
Chris Lattnere434d272009-12-30 04:56:59 +0000493 ParseToken(lltok::exclaim, "Expected '!' here") ||
Chris Lattner84d03b12009-12-29 22:35:39 +0000494 ParseToken(lltok::lbrace, "Expected '{' here"))
Devang Pateleff2ab62009-07-29 00:34:02 +0000495 return true;
496
Dan Gohman17aa92c2010-07-21 23:38:33 +0000497 NamedMDNode *NMD = M->getOrInsertNamedMetadata(Name);
Dan Gohman9dc8ae12010-07-13 19:42:44 +0000498 if (Lex.getKind() != lltok::rbrace)
499 do {
Dan Gohman9dc8ae12010-07-13 19:42:44 +0000500 if (ParseToken(lltok::exclaim, "Expected '!' here"))
501 return true;
Chris Lattner442ffa12009-12-29 21:53:55 +0000502
Dan Gohman9dc8ae12010-07-13 19:42:44 +0000503 MDNode *N = 0;
504 if (ParseMDNodeID(N)) return true;
Dan Gohman17aa92c2010-07-21 23:38:33 +0000505 NMD->addOperand(N);
Dan Gohman9dc8ae12010-07-13 19:42:44 +0000506 } while (EatIfPresent(lltok::comma));
Devang Pateleff2ab62009-07-29 00:34:02 +0000507
508 if (ParseToken(lltok::rbrace, "expected end of metadata node"))
509 return true;
510
Devang Pateleff2ab62009-07-29 00:34:02 +0000511 return false;
512}
513
Devang Patel923078c2009-07-01 19:21:12 +0000514/// ParseStandaloneMetadata:
Daniel Dunbara279bc32009-09-20 02:20:51 +0000515/// !42 = !{...}
Devang Patel923078c2009-07-01 19:21:12 +0000516bool LLParser::ParseStandaloneMetadata() {
Chris Lattnere434d272009-12-30 04:56:59 +0000517 assert(Lex.getKind() == lltok::exclaim);
Devang Patel923078c2009-07-01 19:21:12 +0000518 Lex.Lex();
519 unsigned MetadataID = 0;
Devang Patel923078c2009-07-01 19:21:12 +0000520
521 LocTy TyLoc;
Chris Lattner1afcace2011-07-09 17:41:24 +0000522 Type *Ty = 0;
Devang Patel104cf9e2009-07-23 01:07:34 +0000523 SmallVector<Value *, 16> Elts;
Chris Lattner3f5132a2009-12-29 22:40:21 +0000524 if (ParseUInt32(MetadataID) ||
525 ParseToken(lltok::equal, "expected '=' here") ||
526 ParseType(Ty, TyLoc) ||
Chris Lattnere434d272009-12-30 04:56:59 +0000527 ParseToken(lltok::exclaim, "Expected '!' here") ||
Chris Lattner3f5132a2009-12-29 22:40:21 +0000528 ParseToken(lltok::lbrace, "Expected '{' here") ||
Victor Hernandez24e64df2010-01-10 07:14:18 +0000529 ParseMDNodeVector(Elts, NULL) ||
Chris Lattner3f5132a2009-12-29 22:40:21 +0000530 ParseToken(lltok::rbrace, "expected end of metadata node"))
Devang Patel104cf9e2009-07-23 01:07:34 +0000531 return true;
532
Jay Foadec9186b2011-04-21 19:59:31 +0000533 MDNode *Init = MDNode::get(Context, Elts);
Chris Lattner0834e6a2009-12-30 04:51:58 +0000534
535 // See if this was forward referenced, if so, handle it.
Chris Lattnere80250e2009-12-29 21:43:58 +0000536 std::map<unsigned, std::pair<TrackingVH<MDNode>, LocTy> >::iterator
Devang Patel1c7eea62009-07-08 19:23:54 +0000537 FI = ForwardRefMDNodes.find(MetadataID);
538 if (FI != ForwardRefMDNodes.end()) {
Dan Gohman489b29b2010-08-20 22:02:26 +0000539 MDNode *Temp = FI->second.first;
540 Temp->replaceAllUsesWith(Init);
541 MDNode::deleteTemporary(Temp);
Devang Patel1c7eea62009-07-08 19:23:54 +0000542 ForwardRefMDNodes.erase(FI);
Chris Lattner0834e6a2009-12-30 04:51:58 +0000543
544 assert(NumberedMetadata[MetadataID] == Init && "Tracking VH didn't work");
545 } else {
546 if (MetadataID >= NumberedMetadata.size())
547 NumberedMetadata.resize(MetadataID+1);
548
549 if (NumberedMetadata[MetadataID] != 0)
550 return TokError("Metadata id is already used");
551 NumberedMetadata[MetadataID] = Init;
Devang Patel1c7eea62009-07-08 19:23:54 +0000552 }
553
Devang Patel923078c2009-07-01 19:21:12 +0000554 return false;
555}
556
Chris Lattnerdf986172009-01-02 07:01:27 +0000557/// ParseAlias:
558/// ::= GlobalVar '=' OptionalVisibility 'alias' OptionalLinkage Aliasee
559/// Aliasee
Chris Lattner040f7582009-04-25 21:26:00 +0000560/// ::= TypeAndValue
561/// ::= 'bitcast' '(' TypeAndValue 'to' Type ')'
Dan Gohmandd8004d2009-07-27 21:53:46 +0000562/// ::= 'getelementptr' 'inbounds'? '(' ... ')'
Chris Lattnerdf986172009-01-02 07:01:27 +0000563///
564/// Everything through visibility has already been parsed.
565///
566bool LLParser::ParseAlias(const std::string &Name, LocTy NameLoc,
567 unsigned Visibility) {
568 assert(Lex.getKind() == lltok::kw_alias);
569 Lex.Lex();
570 unsigned Linkage;
571 LocTy LinkageLoc = Lex.getLoc();
572 if (ParseOptionalLinkage(Linkage))
573 return true;
574
575 if (Linkage != GlobalValue::ExternalLinkage &&
Duncan Sands667d4b82009-03-07 15:45:40 +0000576 Linkage != GlobalValue::WeakAnyLinkage &&
577 Linkage != GlobalValue::WeakODRLinkage &&
Rafael Espindolabb46f522009-01-15 20:18:42 +0000578 Linkage != GlobalValue::InternalLinkage &&
Bill Wendling3d10a5a2009-07-20 01:03:30 +0000579 Linkage != GlobalValue::PrivateLinkage &&
Bill Wendling5e721d72010-07-01 21:55:59 +0000580 Linkage != GlobalValue::LinkerPrivateLinkage &&
Bill Wendling55ae5152010-08-20 22:05:50 +0000581 Linkage != GlobalValue::LinkerPrivateWeakLinkage &&
582 Linkage != GlobalValue::LinkerPrivateWeakDefAutoLinkage)
Chris Lattnerdf986172009-01-02 07:01:27 +0000583 return Error(LinkageLoc, "invalid linkage type for alias");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000584
Chris Lattnerdf986172009-01-02 07:01:27 +0000585 Constant *Aliasee;
586 LocTy AliaseeLoc = Lex.getLoc();
Chris Lattner040f7582009-04-25 21:26:00 +0000587 if (Lex.getKind() != lltok::kw_bitcast &&
588 Lex.getKind() != lltok::kw_getelementptr) {
Chris Lattnerdf986172009-01-02 07:01:27 +0000589 if (ParseGlobalTypeAndValue(Aliasee)) return true;
590 } else {
591 // The bitcast dest type is not present, it is implied by the dest type.
592 ValID ID;
593 if (ParseValID(ID)) return true;
594 if (ID.Kind != ValID::t_Constant)
595 return Error(AliaseeLoc, "invalid aliasee");
596 Aliasee = ID.ConstantVal;
597 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000598
Duncan Sands1df98592010-02-16 11:11:14 +0000599 if (!Aliasee->getType()->isPointerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +0000600 return Error(AliaseeLoc, "alias must have pointer type");
601
602 // Okay, create the alias but do not insert it into the module yet.
603 GlobalAlias* GA = new GlobalAlias(Aliasee->getType(),
604 (GlobalValue::LinkageTypes)Linkage, Name,
605 Aliasee);
606 GA->setVisibility((GlobalValue::VisibilityTypes)Visibility);
Daniel Dunbara279bc32009-09-20 02:20:51 +0000607
Chris Lattnerdf986172009-01-02 07:01:27 +0000608 // See if this value already exists in the symbol table. If so, it is either
609 // a redefinition or a definition of a forward reference.
Chris Lattner1d871c52009-10-25 23:22:50 +0000610 if (GlobalValue *Val = M->getNamedValue(Name)) {
Chris Lattnerdf986172009-01-02 07:01:27 +0000611 // See if this was a redefinition. If so, there is no entry in
612 // ForwardRefVals.
613 std::map<std::string, std::pair<GlobalValue*, LocTy> >::iterator
614 I = ForwardRefVals.find(Name);
615 if (I == ForwardRefVals.end())
616 return Error(NameLoc, "redefinition of global named '@" + Name + "'");
617
618 // Otherwise, this was a definition of forward ref. Verify that types
619 // agree.
620 if (Val->getType() != GA->getType())
621 return Error(NameLoc,
622 "forward reference and definition of alias have different types");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000623
Chris Lattnerdf986172009-01-02 07:01:27 +0000624 // If they agree, just RAUW the old value with the alias and remove the
625 // forward ref info.
626 Val->replaceAllUsesWith(GA);
627 Val->eraseFromParent();
628 ForwardRefVals.erase(I);
629 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000630
Chris Lattnerdf986172009-01-02 07:01:27 +0000631 // Insert into the module, we know its name won't collide now.
632 M->getAliasList().push_back(GA);
Benjamin Krameraf812352010-10-16 11:28:23 +0000633 assert(GA->getName() == Name && "Should not be a name conflict!");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000634
Chris Lattnerdf986172009-01-02 07:01:27 +0000635 return false;
636}
637
638/// ParseGlobal
639/// ::= GlobalVar '=' OptionalLinkage OptionalVisibility OptionalThreadLocal
Rafael Espindolabea46262011-01-08 16:42:36 +0000640/// OptionalAddrSpace OptionalUnNammedAddr GlobalType Type Const
Chris Lattnerdf986172009-01-02 07:01:27 +0000641/// ::= OptionalLinkage OptionalVisibility OptionalThreadLocal
Rafael Espindolabea46262011-01-08 16:42:36 +0000642/// OptionalAddrSpace OptionalUnNammedAddr GlobalType Type Const
Chris Lattnerdf986172009-01-02 07:01:27 +0000643///
644/// Everything through visibility has been parsed already.
645///
646bool LLParser::ParseGlobal(const std::string &Name, LocTy NameLoc,
647 unsigned Linkage, bool HasLinkage,
648 unsigned Visibility) {
649 unsigned AddrSpace;
Rafael Espindolabea46262011-01-08 16:42:36 +0000650 bool ThreadLocal, IsConstant, UnnamedAddr;
Rafael Espindolad72479c2011-01-13 01:30:30 +0000651 LocTy UnnamedAddrLoc;
Chris Lattnerdf986172009-01-02 07:01:27 +0000652 LocTy TyLoc;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000653
Chris Lattner1afcace2011-07-09 17:41:24 +0000654 Type *Ty = 0;
Chris Lattnerdf986172009-01-02 07:01:27 +0000655 if (ParseOptionalToken(lltok::kw_thread_local, ThreadLocal) ||
656 ParseOptionalAddrSpace(AddrSpace) ||
Rafael Espindolad72479c2011-01-13 01:30:30 +0000657 ParseOptionalToken(lltok::kw_unnamed_addr, UnnamedAddr,
658 &UnnamedAddrLoc) ||
Chris Lattnerdf986172009-01-02 07:01:27 +0000659 ParseGlobalType(IsConstant) ||
660 ParseType(Ty, TyLoc))
661 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000662
Chris Lattnerdf986172009-01-02 07:01:27 +0000663 // If the linkage is specified and is external, then no initializer is
664 // present.
665 Constant *Init = 0;
666 if (!HasLinkage || (Linkage != GlobalValue::DLLImportLinkage &&
Duncan Sands5f4ee1f2009-03-11 08:08:06 +0000667 Linkage != GlobalValue::ExternalWeakLinkage &&
Chris Lattnerdf986172009-01-02 07:01:27 +0000668 Linkage != GlobalValue::ExternalLinkage)) {
669 if (ParseGlobalValue(Ty, Init))
670 return true;
671 }
672
Duncan Sands1df98592010-02-16 11:11:14 +0000673 if (Ty->isFunctionTy() || Ty->isLabelTy())
Chris Lattner4a2f1122009-02-08 20:00:15 +0000674 return Error(TyLoc, "invalid type for global variable");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000675
Chris Lattnerdf986172009-01-02 07:01:27 +0000676 GlobalVariable *GV = 0;
677
678 // See if the global was forward referenced, if so, use the global.
Chris Lattner91dad872009-02-02 07:24:28 +0000679 if (!Name.empty()) {
Chris Lattner1d871c52009-10-25 23:22:50 +0000680 if (GlobalValue *GVal = M->getNamedValue(Name)) {
681 if (!ForwardRefVals.erase(Name) || !isa<GlobalValue>(GVal))
682 return Error(NameLoc, "redefinition of global '@" + Name + "'");
683 GV = cast<GlobalVariable>(GVal);
684 }
Chris Lattnerdf986172009-01-02 07:01:27 +0000685 } else {
686 std::map<unsigned, std::pair<GlobalValue*, LocTy> >::iterator
687 I = ForwardRefValIDs.find(NumberedVals.size());
688 if (I != ForwardRefValIDs.end()) {
689 GV = cast<GlobalVariable>(I->second.first);
690 ForwardRefValIDs.erase(I);
691 }
692 }
693
694 if (GV == 0) {
Daniel Dunbara279bc32009-09-20 02:20:51 +0000695 GV = new GlobalVariable(*M, Ty, false, GlobalValue::ExternalLinkage, 0,
Owen Andersone9b11b42009-07-08 19:03:57 +0000696 Name, 0, false, AddrSpace);
Chris Lattnerdf986172009-01-02 07:01:27 +0000697 } else {
698 if (GV->getType()->getElementType() != Ty)
699 return Error(TyLoc,
700 "forward reference and definition of global have different types");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000701
Chris Lattnerdf986172009-01-02 07:01:27 +0000702 // Move the forward-reference to the correct spot in the module.
703 M->getGlobalList().splice(M->global_end(), M->getGlobalList(), GV);
704 }
705
706 if (Name.empty())
707 NumberedVals.push_back(GV);
Daniel Dunbara279bc32009-09-20 02:20:51 +0000708
Chris Lattnerdf986172009-01-02 07:01:27 +0000709 // Set the parsed properties on the global.
710 if (Init)
711 GV->setInitializer(Init);
712 GV->setConstant(IsConstant);
713 GV->setLinkage((GlobalValue::LinkageTypes)Linkage);
714 GV->setVisibility((GlobalValue::VisibilityTypes)Visibility);
715 GV->setThreadLocal(ThreadLocal);
Rafael Espindolabea46262011-01-08 16:42:36 +0000716 GV->setUnnamedAddr(UnnamedAddr);
Daniel Dunbara279bc32009-09-20 02:20:51 +0000717
Chris Lattnerdf986172009-01-02 07:01:27 +0000718 // Parse attributes on the global.
719 while (Lex.getKind() == lltok::comma) {
720 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +0000721
Chris Lattnerdf986172009-01-02 07:01:27 +0000722 if (Lex.getKind() == lltok::kw_section) {
723 Lex.Lex();
724 GV->setSection(Lex.getStrVal());
725 if (ParseToken(lltok::StringConstant, "expected global section string"))
726 return true;
727 } else if (Lex.getKind() == lltok::kw_align) {
728 unsigned Alignment;
729 if (ParseOptionalAlignment(Alignment)) return true;
730 GV->setAlignment(Alignment);
731 } else {
732 TokError("unknown global variable property!");
733 }
734 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000735
Chris Lattnerdf986172009-01-02 07:01:27 +0000736 return false;
737}
738
739
740//===----------------------------------------------------------------------===//
741// GlobalValue Reference/Resolution Routines.
742//===----------------------------------------------------------------------===//
743
744/// GetGlobalVal - Get a value with the specified name or ID, creating a
745/// forward reference record if needed. This can return null if the value
746/// exists but does not have the right type.
747GlobalValue *LLParser::GetGlobalVal(const std::string &Name, const Type *Ty,
748 LocTy Loc) {
749 const PointerType *PTy = dyn_cast<PointerType>(Ty);
750 if (PTy == 0) {
751 Error(Loc, "global variable reference must have pointer type");
752 return 0;
753 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000754
Chris Lattnerdf986172009-01-02 07:01:27 +0000755 // Look this name up in the normal function symbol table.
756 GlobalValue *Val =
757 cast_or_null<GlobalValue>(M->getValueSymbolTable().lookup(Name));
Daniel Dunbara279bc32009-09-20 02:20:51 +0000758
Chris Lattnerdf986172009-01-02 07:01:27 +0000759 // If this is a forward reference for the value, see if we already created a
760 // forward ref record.
761 if (Val == 0) {
762 std::map<std::string, std::pair<GlobalValue*, LocTy> >::iterator
763 I = ForwardRefVals.find(Name);
764 if (I != ForwardRefVals.end())
765 Val = I->second.first;
766 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000767
Chris Lattnerdf986172009-01-02 07:01:27 +0000768 // If we have the value in the symbol table or fwd-ref table, return it.
769 if (Val) {
770 if (Val->getType() == Ty) return Val;
771 Error(Loc, "'@" + Name + "' defined with type '" +
Chris Lattner0cd0d882011-06-18 21:18:23 +0000772 getTypeString(Val->getType()) + "'");
Chris Lattnerdf986172009-01-02 07:01:27 +0000773 return 0;
774 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000775
Chris Lattnerdf986172009-01-02 07:01:27 +0000776 // Otherwise, create a new forward reference for this value and remember it.
777 GlobalValue *FwdVal;
Chris Lattner1afcace2011-07-09 17:41:24 +0000778 if (const FunctionType *FT = dyn_cast<FunctionType>(PTy->getElementType()))
Duncan Sands5f4ee1f2009-03-11 08:08:06 +0000779 FwdVal = Function::Create(FT, GlobalValue::ExternalWeakLinkage, Name, M);
Chris Lattner1afcace2011-07-09 17:41:24 +0000780 else
Owen Andersone9b11b42009-07-08 19:03:57 +0000781 FwdVal = new GlobalVariable(*M, PTy->getElementType(), false,
782 GlobalValue::ExternalWeakLinkage, 0, Name);
Daniel Dunbara279bc32009-09-20 02:20:51 +0000783
Chris Lattnerdf986172009-01-02 07:01:27 +0000784 ForwardRefVals[Name] = std::make_pair(FwdVal, Loc);
785 return FwdVal;
786}
787
788GlobalValue *LLParser::GetGlobalVal(unsigned ID, const Type *Ty, LocTy Loc) {
789 const PointerType *PTy = dyn_cast<PointerType>(Ty);
790 if (PTy == 0) {
791 Error(Loc, "global variable reference must have pointer type");
792 return 0;
793 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000794
Chris Lattnerdf986172009-01-02 07:01:27 +0000795 GlobalValue *Val = ID < NumberedVals.size() ? NumberedVals[ID] : 0;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000796
Chris Lattnerdf986172009-01-02 07:01:27 +0000797 // If this is a forward reference for the value, see if we already created a
798 // forward ref record.
799 if (Val == 0) {
800 std::map<unsigned, std::pair<GlobalValue*, LocTy> >::iterator
801 I = ForwardRefValIDs.find(ID);
802 if (I != ForwardRefValIDs.end())
803 Val = I->second.first;
804 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000805
Chris Lattnerdf986172009-01-02 07:01:27 +0000806 // If we have the value in the symbol table or fwd-ref table, return it.
807 if (Val) {
808 if (Val->getType() == Ty) return Val;
Benjamin Kramerd1e17032010-09-27 17:42:11 +0000809 Error(Loc, "'@" + Twine(ID) + "' defined with type '" +
Chris Lattner0cd0d882011-06-18 21:18:23 +0000810 getTypeString(Val->getType()) + "'");
Chris Lattnerdf986172009-01-02 07:01:27 +0000811 return 0;
812 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000813
Chris Lattnerdf986172009-01-02 07:01:27 +0000814 // Otherwise, create a new forward reference for this value and remember it.
815 GlobalValue *FwdVal;
Chris Lattner1afcace2011-07-09 17:41:24 +0000816 if (const FunctionType *FT = dyn_cast<FunctionType>(PTy->getElementType()))
Duncan Sands5f4ee1f2009-03-11 08:08:06 +0000817 FwdVal = Function::Create(FT, GlobalValue::ExternalWeakLinkage, "", M);
Chris Lattner1afcace2011-07-09 17:41:24 +0000818 else
Owen Andersone9b11b42009-07-08 19:03:57 +0000819 FwdVal = new GlobalVariable(*M, PTy->getElementType(), false,
820 GlobalValue::ExternalWeakLinkage, 0, "");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000821
Chris Lattnerdf986172009-01-02 07:01:27 +0000822 ForwardRefValIDs[ID] = std::make_pair(FwdVal, Loc);
823 return FwdVal;
824}
825
826
827//===----------------------------------------------------------------------===//
828// Helper Routines.
829//===----------------------------------------------------------------------===//
830
831/// ParseToken - If the current token has the specified kind, eat it and return
832/// success. Otherwise, emit the specified error and return failure.
833bool LLParser::ParseToken(lltok::Kind T, const char *ErrMsg) {
834 if (Lex.getKind() != T)
835 return TokError(ErrMsg);
836 Lex.Lex();
837 return false;
838}
839
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000840/// ParseStringConstant
841/// ::= StringConstant
842bool LLParser::ParseStringConstant(std::string &Result) {
843 if (Lex.getKind() != lltok::StringConstant)
844 return TokError("expected string constant");
845 Result = Lex.getStrVal();
846 Lex.Lex();
847 return false;
848}
849
850/// ParseUInt32
851/// ::= uint32
852bool LLParser::ParseUInt32(unsigned &Val) {
Chris Lattnerdf986172009-01-02 07:01:27 +0000853 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned())
854 return TokError("expected integer");
855 uint64_t Val64 = Lex.getAPSIntVal().getLimitedValue(0xFFFFFFFFULL+1);
856 if (Val64 != unsigned(Val64))
857 return TokError("expected 32-bit integer (too large)");
858 Val = Val64;
859 Lex.Lex();
860 return false;
861}
862
863
864/// ParseOptionalAddrSpace
865/// := /*empty*/
866/// := 'addrspace' '(' uint32 ')'
867bool LLParser::ParseOptionalAddrSpace(unsigned &AddrSpace) {
868 AddrSpace = 0;
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000869 if (!EatIfPresent(lltok::kw_addrspace))
Chris Lattnerdf986172009-01-02 07:01:27 +0000870 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +0000871 return ParseToken(lltok::lparen, "expected '(' in address space") ||
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000872 ParseUInt32(AddrSpace) ||
Chris Lattnerdf986172009-01-02 07:01:27 +0000873 ParseToken(lltok::rparen, "expected ')' in address space");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000874}
Chris Lattnerdf986172009-01-02 07:01:27 +0000875
876/// ParseOptionalAttrs - Parse a potentially empty attribute list. AttrKind
877/// indicates what kind of attribute list this is: 0: function arg, 1: result,
878/// 2: function attr.
879bool LLParser::ParseOptionalAttrs(unsigned &Attrs, unsigned AttrKind) {
880 Attrs = Attribute::None;
881 LocTy AttrLoc = Lex.getLoc();
Daniel Dunbara279bc32009-09-20 02:20:51 +0000882
Chris Lattnerdf986172009-01-02 07:01:27 +0000883 while (1) {
884 switch (Lex.getKind()) {
Chris Lattnerdf986172009-01-02 07:01:27 +0000885 default: // End of attributes.
886 if (AttrKind != 2 && (Attrs & Attribute::FunctionOnly))
887 return Error(AttrLoc, "invalid use of function-only attribute");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000888
Chris Lattnerf3a789d2011-06-17 03:16:47 +0000889 // As a hack, we allow "align 2" on functions as a synonym for
890 // "alignstack 2".
891 if (AttrKind == 2 &&
892 (Attrs & ~(Attribute::FunctionOnly | Attribute::Alignment)))
893 return Error(AttrLoc, "invalid use of attribute on a function");
894
895 if (AttrKind != 0 && (Attrs & Attribute::ParameterOnly))
Chris Lattnerdf986172009-01-02 07:01:27 +0000896 return Error(AttrLoc, "invalid use of parameter-only attribute");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000897
Chris Lattnerdf986172009-01-02 07:01:27 +0000898 return false;
Devang Patel578efa92009-06-05 21:57:13 +0000899 case lltok::kw_zeroext: Attrs |= Attribute::ZExt; break;
900 case lltok::kw_signext: Attrs |= Attribute::SExt; break;
901 case lltok::kw_inreg: Attrs |= Attribute::InReg; break;
902 case lltok::kw_sret: Attrs |= Attribute::StructRet; break;
903 case lltok::kw_noalias: Attrs |= Attribute::NoAlias; break;
904 case lltok::kw_nocapture: Attrs |= Attribute::NoCapture; break;
905 case lltok::kw_byval: Attrs |= Attribute::ByVal; break;
906 case lltok::kw_nest: Attrs |= Attribute::Nest; break;
Chris Lattnerdf986172009-01-02 07:01:27 +0000907
Devang Patel578efa92009-06-05 21:57:13 +0000908 case lltok::kw_noreturn: Attrs |= Attribute::NoReturn; break;
909 case lltok::kw_nounwind: Attrs |= Attribute::NoUnwind; break;
Rafael Espindolafc2bb8c2011-05-25 03:44:17 +0000910 case lltok::kw_uwtable: Attrs |= Attribute::UWTable; break;
Devang Patel578efa92009-06-05 21:57:13 +0000911 case lltok::kw_noinline: Attrs |= Attribute::NoInline; break;
912 case lltok::kw_readnone: Attrs |= Attribute::ReadNone; break;
913 case lltok::kw_readonly: Attrs |= Attribute::ReadOnly; break;
Jakob Stoklund Olesen570a4a52010-02-06 01:16:28 +0000914 case lltok::kw_inlinehint: Attrs |= Attribute::InlineHint; break;
Devang Patel578efa92009-06-05 21:57:13 +0000915 case lltok::kw_alwaysinline: Attrs |= Attribute::AlwaysInline; break;
916 case lltok::kw_optsize: Attrs |= Attribute::OptimizeForSize; break;
917 case lltok::kw_ssp: Attrs |= Attribute::StackProtect; break;
918 case lltok::kw_sspreq: Attrs |= Attribute::StackProtectReq; break;
919 case lltok::kw_noredzone: Attrs |= Attribute::NoRedZone; break;
920 case lltok::kw_noimplicitfloat: Attrs |= Attribute::NoImplicitFloat; break;
Anton Korobeynikovc5ec8a72009-07-17 18:07:26 +0000921 case lltok::kw_naked: Attrs |= Attribute::Naked; break;
Charles Davis970bfcc2010-10-25 15:37:09 +0000922 case lltok::kw_hotpatch: Attrs |= Attribute::Hotpatch; break;
John McCall3a3465b2011-06-15 20:36:13 +0000923 case lltok::kw_nonlazybind: Attrs |= Attribute::NonLazyBind; break;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000924
Charles Davis1e063d12010-02-12 00:31:15 +0000925 case lltok::kw_alignstack: {
926 unsigned Alignment;
927 if (ParseOptionalStackAlignment(Alignment))
928 return true;
929 Attrs |= Attribute::constructStackAlignmentFromInt(Alignment);
930 continue;
931 }
932
Chris Lattnerdf986172009-01-02 07:01:27 +0000933 case lltok::kw_align: {
934 unsigned Alignment;
935 if (ParseOptionalAlignment(Alignment))
936 return true;
937 Attrs |= Attribute::constructAlignmentFromInt(Alignment);
938 continue;
939 }
Charles Davis1e063d12010-02-12 00:31:15 +0000940
Chris Lattnerdf986172009-01-02 07:01:27 +0000941 }
942 Lex.Lex();
943 }
944}
945
946/// ParseOptionalLinkage
947/// ::= /*empty*/
Rafael Espindolabb46f522009-01-15 20:18:42 +0000948/// ::= 'private'
Bill Wendling3d10a5a2009-07-20 01:03:30 +0000949/// ::= 'linker_private'
Bill Wendling5e721d72010-07-01 21:55:59 +0000950/// ::= 'linker_private_weak'
Bill Wendling55ae5152010-08-20 22:05:50 +0000951/// ::= 'linker_private_weak_def_auto'
Chris Lattnerdf986172009-01-02 07:01:27 +0000952/// ::= 'internal'
953/// ::= 'weak'
Duncan Sands667d4b82009-03-07 15:45:40 +0000954/// ::= 'weak_odr'
Chris Lattnerdf986172009-01-02 07:01:27 +0000955/// ::= 'linkonce'
Duncan Sands667d4b82009-03-07 15:45:40 +0000956/// ::= 'linkonce_odr'
Bill Wendling5e721d72010-07-01 21:55:59 +0000957/// ::= 'available_externally'
Chris Lattnerdf986172009-01-02 07:01:27 +0000958/// ::= 'appending'
959/// ::= 'dllexport'
960/// ::= 'common'
961/// ::= 'dllimport'
962/// ::= 'extern_weak'
963/// ::= 'external'
964bool LLParser::ParseOptionalLinkage(unsigned &Res, bool &HasLinkage) {
965 HasLinkage = false;
966 switch (Lex.getKind()) {
Bill Wendling3d10a5a2009-07-20 01:03:30 +0000967 default: Res=GlobalValue::ExternalLinkage; return false;
968 case lltok::kw_private: Res = GlobalValue::PrivateLinkage; break;
969 case lltok::kw_linker_private: Res = GlobalValue::LinkerPrivateLinkage; break;
Bill Wendling5e721d72010-07-01 21:55:59 +0000970 case lltok::kw_linker_private_weak:
971 Res = GlobalValue::LinkerPrivateWeakLinkage;
972 break;
Bill Wendling55ae5152010-08-20 22:05:50 +0000973 case lltok::kw_linker_private_weak_def_auto:
974 Res = GlobalValue::LinkerPrivateWeakDefAutoLinkage;
975 break;
Bill Wendling3d10a5a2009-07-20 01:03:30 +0000976 case lltok::kw_internal: Res = GlobalValue::InternalLinkage; break;
977 case lltok::kw_weak: Res = GlobalValue::WeakAnyLinkage; break;
978 case lltok::kw_weak_odr: Res = GlobalValue::WeakODRLinkage; break;
979 case lltok::kw_linkonce: Res = GlobalValue::LinkOnceAnyLinkage; break;
980 case lltok::kw_linkonce_odr: Res = GlobalValue::LinkOnceODRLinkage; break;
Chris Lattner266c7bb2009-04-13 05:44:34 +0000981 case lltok::kw_available_externally:
982 Res = GlobalValue::AvailableExternallyLinkage;
983 break;
Bill Wendling3d10a5a2009-07-20 01:03:30 +0000984 case lltok::kw_appending: Res = GlobalValue::AppendingLinkage; break;
985 case lltok::kw_dllexport: Res = GlobalValue::DLLExportLinkage; break;
986 case lltok::kw_common: Res = GlobalValue::CommonLinkage; break;
987 case lltok::kw_dllimport: Res = GlobalValue::DLLImportLinkage; break;
988 case lltok::kw_extern_weak: Res = GlobalValue::ExternalWeakLinkage; break;
989 case lltok::kw_external: Res = GlobalValue::ExternalLinkage; break;
Chris Lattnerdf986172009-01-02 07:01:27 +0000990 }
991 Lex.Lex();
992 HasLinkage = true;
993 return false;
994}
995
996/// ParseOptionalVisibility
997/// ::= /*empty*/
998/// ::= 'default'
999/// ::= 'hidden'
1000/// ::= 'protected'
Daniel Dunbara279bc32009-09-20 02:20:51 +00001001///
Chris Lattnerdf986172009-01-02 07:01:27 +00001002bool LLParser::ParseOptionalVisibility(unsigned &Res) {
1003 switch (Lex.getKind()) {
1004 default: Res = GlobalValue::DefaultVisibility; return false;
1005 case lltok::kw_default: Res = GlobalValue::DefaultVisibility; break;
1006 case lltok::kw_hidden: Res = GlobalValue::HiddenVisibility; break;
1007 case lltok::kw_protected: Res = GlobalValue::ProtectedVisibility; break;
1008 }
1009 Lex.Lex();
1010 return false;
1011}
1012
1013/// ParseOptionalCallingConv
1014/// ::= /*empty*/
1015/// ::= 'ccc'
1016/// ::= 'fastcc'
1017/// ::= 'coldcc'
1018/// ::= 'x86_stdcallcc'
1019/// ::= 'x86_fastcallcc'
Anton Korobeynikovded05e32010-05-16 09:08:45 +00001020/// ::= 'x86_thiscallcc'
Anton Korobeynikov385f5a92009-06-16 18:50:49 +00001021/// ::= 'arm_apcscc'
1022/// ::= 'arm_aapcscc'
1023/// ::= 'arm_aapcs_vfpcc'
Anton Korobeynikov211a14e2009-12-07 02:27:35 +00001024/// ::= 'msp430_intrcc'
Che-Liang Chiouf9930da2010-09-25 07:46:17 +00001025/// ::= 'ptx_kernel'
1026/// ::= 'ptx_device'
Chris Lattnerdf986172009-01-02 07:01:27 +00001027/// ::= 'cc' UINT
Anton Korobeynikov385f5a92009-06-16 18:50:49 +00001028///
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001029bool LLParser::ParseOptionalCallingConv(CallingConv::ID &CC) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001030 switch (Lex.getKind()) {
1031 default: CC = CallingConv::C; return false;
1032 case lltok::kw_ccc: CC = CallingConv::C; break;
1033 case lltok::kw_fastcc: CC = CallingConv::Fast; break;
1034 case lltok::kw_coldcc: CC = CallingConv::Cold; break;
1035 case lltok::kw_x86_stdcallcc: CC = CallingConv::X86_StdCall; break;
1036 case lltok::kw_x86_fastcallcc: CC = CallingConv::X86_FastCall; break;
Anton Korobeynikovded05e32010-05-16 09:08:45 +00001037 case lltok::kw_x86_thiscallcc: CC = CallingConv::X86_ThisCall; break;
Anton Korobeynikov385f5a92009-06-16 18:50:49 +00001038 case lltok::kw_arm_apcscc: CC = CallingConv::ARM_APCS; break;
1039 case lltok::kw_arm_aapcscc: CC = CallingConv::ARM_AAPCS; break;
1040 case lltok::kw_arm_aapcs_vfpcc:CC = CallingConv::ARM_AAPCS_VFP; break;
Anton Korobeynikov211a14e2009-12-07 02:27:35 +00001041 case lltok::kw_msp430_intrcc: CC = CallingConv::MSP430_INTR; break;
Che-Liang Chiouf9930da2010-09-25 07:46:17 +00001042 case lltok::kw_ptx_kernel: CC = CallingConv::PTX_Kernel; break;
1043 case lltok::kw_ptx_device: CC = CallingConv::PTX_Device; break;
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001044 case lltok::kw_cc: {
1045 unsigned ArbitraryCC;
1046 Lex.Lex();
1047 if (ParseUInt32(ArbitraryCC)) {
1048 return true;
1049 } else
1050 CC = static_cast<CallingConv::ID>(ArbitraryCC);
1051 return false;
1052 }
1053 break;
Chris Lattnerdf986172009-01-02 07:01:27 +00001054 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001055
Chris Lattnerdf986172009-01-02 07:01:27 +00001056 Lex.Lex();
1057 return false;
1058}
1059
Chris Lattnerb8c46862009-12-30 05:31:19 +00001060/// ParseInstructionMetadata
Chris Lattner3f3a0f62009-12-29 21:25:40 +00001061/// ::= !dbg !42 (',' !dbg !57)*
Dan Gohman9d072f52010-08-24 02:05:17 +00001062bool LLParser::ParseInstructionMetadata(Instruction *Inst,
1063 PerFunctionState *PFS) {
Chris Lattnerb8c46862009-12-30 05:31:19 +00001064 do {
1065 if (Lex.getKind() != lltok::MetadataVar)
1066 return TokError("expected metadata after comma");
Devang Patel0475c912009-09-29 00:01:14 +00001067
Chris Lattner3f3a0f62009-12-29 21:25:40 +00001068 std::string Name = Lex.getStrVal();
Dan Gohman309b3af2010-08-24 02:24:03 +00001069 unsigned MDK = M->getMDKindID(Name.c_str());
Chris Lattner3f3a0f62009-12-29 21:25:40 +00001070 Lex.Lex();
Chris Lattner52e20312009-10-19 05:31:10 +00001071
Chris Lattner442ffa12009-12-29 21:53:55 +00001072 MDNode *Node;
Chris Lattner449c3102010-04-01 05:14:45 +00001073 SMLoc Loc = Lex.getLoc();
Dan Gohman309b3af2010-08-24 02:24:03 +00001074
1075 if (ParseToken(lltok::exclaim, "expected '!' here"))
Chris Lattnere434d272009-12-30 04:56:59 +00001076 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001077
Dan Gohman68261142010-08-24 14:35:45 +00001078 // This code is similar to that of ParseMetadataValue, however it needs to
1079 // have special-case code for a forward reference; see the comments on
1080 // ForwardRefInstMetadata for details. Also, MDStrings are not supported
1081 // at the top level here.
Dan Gohman309b3af2010-08-24 02:24:03 +00001082 if (Lex.getKind() == lltok::lbrace) {
1083 ValID ID;
1084 if (ParseMetadataListValue(ID, PFS))
1085 return true;
1086 assert(ID.Kind == ValID::t_MDNode);
1087 Inst->setMetadata(MDK, ID.MDNodeVal);
Chris Lattner449c3102010-04-01 05:14:45 +00001088 } else {
Nick Lewyckyc6877b42010-09-30 21:04:13 +00001089 unsigned NodeID = 0;
Dan Gohman309b3af2010-08-24 02:24:03 +00001090 if (ParseMDNodeID(Node, NodeID))
1091 return true;
1092 if (Node) {
1093 // If we got the node, add it to the instruction.
1094 Inst->setMetadata(MDK, Node);
1095 } else {
1096 MDRef R = { Loc, MDK, NodeID };
1097 // Otherwise, remember that this should be resolved later.
1098 ForwardRefInstMetadata[Inst].push_back(R);
1099 }
Chris Lattner449c3102010-04-01 05:14:45 +00001100 }
Chris Lattner3f3a0f62009-12-29 21:25:40 +00001101
1102 // If this is the end of the list, we're done.
Chris Lattnerb8c46862009-12-30 05:31:19 +00001103 } while (EatIfPresent(lltok::comma));
1104 return false;
Devang Patelf633a062009-09-17 23:04:48 +00001105}
1106
Chris Lattnerdf986172009-01-02 07:01:27 +00001107/// ParseOptionalAlignment
1108/// ::= /* empty */
1109/// ::= 'align' 4
1110bool LLParser::ParseOptionalAlignment(unsigned &Alignment) {
1111 Alignment = 0;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001112 if (!EatIfPresent(lltok::kw_align))
1113 return false;
Chris Lattner3fbb3ab2009-01-05 07:46:05 +00001114 LocTy AlignLoc = Lex.getLoc();
1115 if (ParseUInt32(Alignment)) return true;
1116 if (!isPowerOf2_32(Alignment))
1117 return Error(AlignLoc, "alignment is not a power of two");
Dan Gohmane16829b2010-07-30 21:07:05 +00001118 if (Alignment > Value::MaximumAlignment)
Dan Gohman138aa2a2010-07-28 20:12:04 +00001119 return Error(AlignLoc, "huge alignments are not supported yet");
Chris Lattner3fbb3ab2009-01-05 07:46:05 +00001120 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00001121}
1122
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00001123/// ParseOptionalCommaAlign
1124/// ::=
1125/// ::= ',' align 4
1126///
1127/// This returns with AteExtraComma set to true if it ate an excess comma at the
1128/// end.
1129bool LLParser::ParseOptionalCommaAlign(unsigned &Alignment,
1130 bool &AteExtraComma) {
1131 AteExtraComma = false;
1132 while (EatIfPresent(lltok::comma)) {
1133 // Metadata at the end is an early exit.
Chris Lattner1d928312009-12-30 05:02:06 +00001134 if (Lex.getKind() == lltok::MetadataVar) {
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00001135 AteExtraComma = true;
1136 return false;
1137 }
1138
Chris Lattner093eed12010-04-23 00:50:50 +00001139 if (Lex.getKind() != lltok::kw_align)
1140 return Error(Lex.getLoc(), "expected metadata or 'align'");
Duncan Sandsbf9fc532010-10-21 16:07:10 +00001141
Chris Lattner093eed12010-04-23 00:50:50 +00001142 if (ParseOptionalAlignment(Alignment)) return true;
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00001143 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001144
Devang Patelf633a062009-09-17 23:04:48 +00001145 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00001146}
1147
Charles Davis1e063d12010-02-12 00:31:15 +00001148/// ParseOptionalStackAlignment
1149/// ::= /* empty */
1150/// ::= 'alignstack' '(' 4 ')'
1151bool LLParser::ParseOptionalStackAlignment(unsigned &Alignment) {
1152 Alignment = 0;
1153 if (!EatIfPresent(lltok::kw_alignstack))
1154 return false;
1155 LocTy ParenLoc = Lex.getLoc();
1156 if (!EatIfPresent(lltok::lparen))
1157 return Error(ParenLoc, "expected '('");
1158 LocTy AlignLoc = Lex.getLoc();
1159 if (ParseUInt32(Alignment)) return true;
1160 ParenLoc = Lex.getLoc();
1161 if (!EatIfPresent(lltok::rparen))
1162 return Error(ParenLoc, "expected ')'");
1163 if (!isPowerOf2_32(Alignment))
1164 return Error(AlignLoc, "stack alignment is not a power of two");
1165 return false;
1166}
Devang Patelf633a062009-09-17 23:04:48 +00001167
Chris Lattner628c13a2009-12-30 05:14:00 +00001168/// ParseIndexList - This parses the index list for an insert/extractvalue
1169/// instruction. This sets AteExtraComma in the case where we eat an extra
1170/// comma at the end of the line and find that it is followed by metadata.
1171/// Clients that don't allow metadata can call the version of this function that
1172/// only takes one argument.
1173///
Chris Lattnerdf986172009-01-02 07:01:27 +00001174/// ParseIndexList
1175/// ::= (',' uint32)+
Chris Lattner628c13a2009-12-30 05:14:00 +00001176///
1177bool LLParser::ParseIndexList(SmallVectorImpl<unsigned> &Indices,
1178 bool &AteExtraComma) {
1179 AteExtraComma = false;
1180
Chris Lattnerdf986172009-01-02 07:01:27 +00001181 if (Lex.getKind() != lltok::comma)
1182 return TokError("expected ',' as start of index list");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001183
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001184 while (EatIfPresent(lltok::comma)) {
Chris Lattner628c13a2009-12-30 05:14:00 +00001185 if (Lex.getKind() == lltok::MetadataVar) {
1186 AteExtraComma = true;
1187 return false;
1188 }
Nick Lewycky28815c42010-09-29 23:32:20 +00001189 unsigned Idx = 0;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001190 if (ParseUInt32(Idx)) return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00001191 Indices.push_back(Idx);
1192 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001193
Chris Lattnerdf986172009-01-02 07:01:27 +00001194 return false;
1195}
1196
1197//===----------------------------------------------------------------------===//
1198// Type Parsing.
1199//===----------------------------------------------------------------------===//
1200
Chris Lattner1afcace2011-07-09 17:41:24 +00001201/// ParseType - Parse a type.
1202bool LLParser::ParseType(Type *&Result, bool AllowVoid) {
1203 SMLoc TypeLoc = Lex.getLoc();
Chris Lattnerdf986172009-01-02 07:01:27 +00001204 switch (Lex.getKind()) {
1205 default:
1206 return TokError("expected type");
1207 case lltok::Type:
Chris Lattner1afcace2011-07-09 17:41:24 +00001208 // Type ::= 'float' | 'void' (etc)
Chris Lattnerdf986172009-01-02 07:01:27 +00001209 Result = Lex.getTyVal();
Daniel Dunbara279bc32009-09-20 02:20:51 +00001210 Lex.Lex();
Chris Lattnerdf986172009-01-02 07:01:27 +00001211 break;
Chris Lattnerdf986172009-01-02 07:01:27 +00001212 case lltok::lbrace:
Chris Lattner1afcace2011-07-09 17:41:24 +00001213 // Type ::= StructType
1214 if (ParseAnonStructType(Result, false))
Chris Lattnerdf986172009-01-02 07:01:27 +00001215 return true;
1216 break;
1217 case lltok::lsquare:
Chris Lattner1afcace2011-07-09 17:41:24 +00001218 // Type ::= '[' ... ']'
Chris Lattnerdf986172009-01-02 07:01:27 +00001219 Lex.Lex(); // eat the lsquare.
1220 if (ParseArrayVectorType(Result, false))
1221 return true;
1222 break;
1223 case lltok::less: // Either vector or packed struct.
Chris Lattner1afcace2011-07-09 17:41:24 +00001224 // Type ::= '<' ... '>'
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001225 Lex.Lex();
1226 if (Lex.getKind() == lltok::lbrace) {
Chris Lattner1afcace2011-07-09 17:41:24 +00001227 if (ParseAnonStructType(Result, true) ||
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001228 ParseToken(lltok::greater, "expected '>' at end of packed struct"))
Chris Lattnerdf986172009-01-02 07:01:27 +00001229 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00001230 } else if (ParseArrayVectorType(Result, true))
1231 return true;
1232 break;
Chris Lattner1afcace2011-07-09 17:41:24 +00001233 case lltok::LocalVar: {
1234 // Type ::= %foo
1235 std::pair<Type*, LocTy> &Entry = NamedTypes[Lex.getStrVal()];
1236
1237 // If the type hasn't been defined yet, create a forward definition and
1238 // remember where that forward def'n was seen (in case it never is defined).
1239 if (Entry.first == 0) {
1240 Entry.first = StructType::createNamed(Context, Lex.getStrVal());
1241 Entry.second = Lex.getLoc();
Chris Lattnerdf986172009-01-02 07:01:27 +00001242 }
Chris Lattner1afcace2011-07-09 17:41:24 +00001243 Result = Entry.first;
Chris Lattnerdf986172009-01-02 07:01:27 +00001244 Lex.Lex();
1245 break;
Chris Lattner1afcace2011-07-09 17:41:24 +00001246 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001247
Chris Lattner1afcace2011-07-09 17:41:24 +00001248 case lltok::LocalVarID: {
1249 // Type ::= %4
1250 if (Lex.getUIntVal() >= NumberedTypes.size())
1251 NumberedTypes.resize(Lex.getUIntVal()+1);
1252 std::pair<Type*, LocTy> &Entry = NumberedTypes[Lex.getUIntVal()];
1253
1254 // If the type hasn't been defined yet, create a forward definition and
1255 // remember where that forward def'n was seen (in case it never is defined).
1256 if (Entry.first == 0) {
1257 Entry.first = StructType::createNamed(Context, "");
1258 Entry.second = Lex.getLoc();
Chris Lattnerdf986172009-01-02 07:01:27 +00001259 }
Chris Lattner1afcace2011-07-09 17:41:24 +00001260 Result = Entry.first;
Chris Lattnerdf986172009-01-02 07:01:27 +00001261 Lex.Lex();
1262 break;
Chris Lattnerdf986172009-01-02 07:01:27 +00001263 }
1264 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001265
1266 // Parse the type suffixes.
Chris Lattnerdf986172009-01-02 07:01:27 +00001267 while (1) {
1268 switch (Lex.getKind()) {
1269 // End of type.
Chris Lattner1afcace2011-07-09 17:41:24 +00001270 default:
1271 if (!AllowVoid && Result->isVoidTy())
1272 return Error(TypeLoc, "void type only allowed for function results");
1273 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00001274
Chris Lattner1afcace2011-07-09 17:41:24 +00001275 // Type ::= Type '*'
Chris Lattnerdf986172009-01-02 07:01:27 +00001276 case lltok::star:
Chris Lattner1afcace2011-07-09 17:41:24 +00001277 if (Result->isLabelTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00001278 return TokError("basic block pointers are invalid");
Chris Lattner1afcace2011-07-09 17:41:24 +00001279 if (Result->isVoidTy())
1280 return TokError("pointers to void are invalid - use i8* instead");
1281 if (!PointerType::isValidElementType(Result))
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001282 return TokError("pointer to this type is invalid");
Chris Lattner1afcace2011-07-09 17:41:24 +00001283 Result = PointerType::getUnqual(Result);
Chris Lattnerdf986172009-01-02 07:01:27 +00001284 Lex.Lex();
1285 break;
1286
Chris Lattner1afcace2011-07-09 17:41:24 +00001287 // Type ::= Type 'addrspace' '(' uint32 ')' '*'
Chris Lattnerdf986172009-01-02 07:01:27 +00001288 case lltok::kw_addrspace: {
Chris Lattner1afcace2011-07-09 17:41:24 +00001289 if (Result->isLabelTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00001290 return TokError("basic block pointers are invalid");
Chris Lattner1afcace2011-07-09 17:41:24 +00001291 if (Result->isVoidTy())
Dan Gohmanb9070d32009-02-09 17:41:21 +00001292 return TokError("pointers to void are invalid; use i8* instead");
Chris Lattner1afcace2011-07-09 17:41:24 +00001293 if (!PointerType::isValidElementType(Result))
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001294 return TokError("pointer to this type is invalid");
Chris Lattnerdf986172009-01-02 07:01:27 +00001295 unsigned AddrSpace;
1296 if (ParseOptionalAddrSpace(AddrSpace) ||
1297 ParseToken(lltok::star, "expected '*' in address space"))
1298 return true;
1299
Chris Lattner1afcace2011-07-09 17:41:24 +00001300 Result = PointerType::get(Result, AddrSpace);
Chris Lattnerdf986172009-01-02 07:01:27 +00001301 break;
1302 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001303
Chris Lattnerdf986172009-01-02 07:01:27 +00001304 /// Types '(' ArgTypeListI ')' OptFuncAttrs
1305 case lltok::lparen:
1306 if (ParseFunctionType(Result))
1307 return true;
1308 break;
1309 }
1310 }
1311}
1312
1313/// ParseParameterList
1314/// ::= '(' ')'
1315/// ::= '(' Arg (',' Arg)* ')'
1316/// Arg
1317/// ::= Type OptionalAttributes Value OptionalAttributes
1318bool LLParser::ParseParameterList(SmallVectorImpl<ParamInfo> &ArgList,
1319 PerFunctionState &PFS) {
1320 if (ParseToken(lltok::lparen, "expected '(' in call"))
1321 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001322
Chris Lattnerdf986172009-01-02 07:01:27 +00001323 while (Lex.getKind() != lltok::rparen) {
1324 // If this isn't the first argument, we need a comma.
1325 if (!ArgList.empty() &&
1326 ParseToken(lltok::comma, "expected ',' in argument list"))
1327 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001328
Chris Lattnerdf986172009-01-02 07:01:27 +00001329 // Parse the argument.
1330 LocTy ArgLoc;
Chris Lattner1afcace2011-07-09 17:41:24 +00001331 Type *ArgTy = 0;
Victor Hernandez19715562009-12-03 23:40:58 +00001332 unsigned ArgAttrs1 = Attribute::None;
1333 unsigned ArgAttrs2 = Attribute::None;
Chris Lattnerdf986172009-01-02 07:01:27 +00001334 Value *V;
Victor Hernandez19715562009-12-03 23:40:58 +00001335 if (ParseType(ArgTy, ArgLoc))
Chris Lattnerdf986172009-01-02 07:01:27 +00001336 return true;
Victor Hernandez19715562009-12-03 23:40:58 +00001337
Chris Lattner287881d2009-12-30 02:11:14 +00001338 // Otherwise, handle normal operands.
Chris Lattnerf3a789d2011-06-17 03:16:47 +00001339 if (ParseOptionalAttrs(ArgAttrs1, 0) || ParseValue(ArgTy, V, PFS))
Chris Lattner287881d2009-12-30 02:11:14 +00001340 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00001341 ArgList.push_back(ParamInfo(ArgLoc, V, ArgAttrs1|ArgAttrs2));
1342 }
1343
1344 Lex.Lex(); // Lex the ')'.
1345 return false;
1346}
1347
1348
1349
Chris Lattnerdfd19dd2009-01-05 18:34:07 +00001350/// ParseArgumentList - Parse the argument list for a function type or function
Chris Lattner1afcace2011-07-09 17:41:24 +00001351/// prototype.
Chris Lattnerdf986172009-01-02 07:01:27 +00001352/// ::= '(' ArgTypeListI ')'
1353/// ArgTypeListI
1354/// ::= /*empty*/
1355/// ::= '...'
1356/// ::= ArgTypeList ',' '...'
1357/// ::= ArgType (',' ArgType)*
Chris Lattnerdfd19dd2009-01-05 18:34:07 +00001358///
Chris Lattner1afcace2011-07-09 17:41:24 +00001359bool LLParser::ParseArgumentList(SmallVectorImpl<ArgInfo> &ArgList,
1360 bool &isVarArg){
Chris Lattnerdf986172009-01-02 07:01:27 +00001361 isVarArg = false;
1362 assert(Lex.getKind() == lltok::lparen);
1363 Lex.Lex(); // eat the (.
Daniel Dunbara279bc32009-09-20 02:20:51 +00001364
Chris Lattnerdf986172009-01-02 07:01:27 +00001365 if (Lex.getKind() == lltok::rparen) {
1366 // empty
1367 } else if (Lex.getKind() == lltok::dotdotdot) {
1368 isVarArg = true;
1369 Lex.Lex();
1370 } else {
1371 LocTy TypeLoc = Lex.getLoc();
Chris Lattner1afcace2011-07-09 17:41:24 +00001372 Type *ArgTy = 0;
Chris Lattnerdf986172009-01-02 07:01:27 +00001373 unsigned Attrs;
Chris Lattnerdf986172009-01-02 07:01:27 +00001374 std::string Name;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001375
Chris Lattner1afcace2011-07-09 17:41:24 +00001376 if (ParseType(ArgTy) ||
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001377 ParseOptionalAttrs(Attrs, 0)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001378
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001379 if (ArgTy->isVoidTy())
Chris Lattnera9a9e072009-03-09 04:49:14 +00001380 return Error(TypeLoc, "argument can not have void type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001381
Chris Lattner7a1b9bd2011-06-17 06:36:20 +00001382 if (Lex.getKind() == lltok::LocalVar) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001383 Name = Lex.getStrVal();
1384 Lex.Lex();
1385 }
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001386
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001387 if (!FunctionType::isValidArgumentType(ArgTy))
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001388 return Error(TypeLoc, "invalid type for function argument");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001389
Chris Lattnerdf986172009-01-02 07:01:27 +00001390 ArgList.push_back(ArgInfo(TypeLoc, ArgTy, Attrs, Name));
Daniel Dunbara279bc32009-09-20 02:20:51 +00001391
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001392 while (EatIfPresent(lltok::comma)) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001393 // Handle ... at end of arg list.
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001394 if (EatIfPresent(lltok::dotdotdot)) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001395 isVarArg = true;
Chris Lattnerdf986172009-01-02 07:01:27 +00001396 break;
1397 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001398
Chris Lattnerdf986172009-01-02 07:01:27 +00001399 // Otherwise must be an argument type.
1400 TypeLoc = Lex.getLoc();
Chris Lattner1afcace2011-07-09 17:41:24 +00001401 if (ParseType(ArgTy) || ParseOptionalAttrs(Attrs, 0)) return true;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001402
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001403 if (ArgTy->isVoidTy())
Chris Lattnera9a9e072009-03-09 04:49:14 +00001404 return Error(TypeLoc, "argument can not have void type");
1405
Chris Lattner7a1b9bd2011-06-17 06:36:20 +00001406 if (Lex.getKind() == lltok::LocalVar) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001407 Name = Lex.getStrVal();
1408 Lex.Lex();
1409 } else {
1410 Name = "";
1411 }
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001412
Chris Lattner1afcace2011-07-09 17:41:24 +00001413 if (!ArgTy->isFirstClassType())
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001414 return Error(TypeLoc, "invalid type for function argument");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001415
Chris Lattnerdf986172009-01-02 07:01:27 +00001416 ArgList.push_back(ArgInfo(TypeLoc, ArgTy, Attrs, Name));
1417 }
1418 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001419
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001420 return ParseToken(lltok::rparen, "expected ')' at end of argument list");
Chris Lattnerdf986172009-01-02 07:01:27 +00001421}
Daniel Dunbara279bc32009-09-20 02:20:51 +00001422
Chris Lattnerdf986172009-01-02 07:01:27 +00001423/// ParseFunctionType
1424/// ::= Type ArgumentList OptionalAttrs
Chris Lattner1afcace2011-07-09 17:41:24 +00001425bool LLParser::ParseFunctionType(Type *&Result) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001426 assert(Lex.getKind() == lltok::lparen);
1427
Chris Lattnerd77d04c2009-01-05 08:04:33 +00001428 if (!FunctionType::isValidReturnType(Result))
1429 return TokError("invalid function return type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001430
Chris Lattner1afcace2011-07-09 17:41:24 +00001431 SmallVector<ArgInfo, 8> ArgList;
Chris Lattnerdf986172009-01-02 07:01:27 +00001432 bool isVarArg;
Chris Lattner1afcace2011-07-09 17:41:24 +00001433 if (ParseArgumentList(ArgList, isVarArg))
Chris Lattnerdf986172009-01-02 07:01:27 +00001434 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001435
Chris Lattnerdf986172009-01-02 07:01:27 +00001436 // Reject names on the arguments lists.
1437 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
1438 if (!ArgList[i].Name.empty())
1439 return Error(ArgList[i].Loc, "argument name invalid in function type");
Chris Lattnera16546a2011-06-17 17:37:13 +00001440 if (ArgList[i].Attrs != 0)
1441 return Error(ArgList[i].Loc,
1442 "argument attributes invalid in function type");
Chris Lattnerdf986172009-01-02 07:01:27 +00001443 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001444
Jay Foad5fdd6c82011-07-12 14:06:48 +00001445 SmallVector<Type*, 16> ArgListTy;
Chris Lattnerdf986172009-01-02 07:01:27 +00001446 for (unsigned i = 0, e = ArgList.size(); i != e; ++i)
Chris Lattner1afcace2011-07-09 17:41:24 +00001447 ArgListTy.push_back(ArgList[i].Ty);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001448
Chris Lattner1afcace2011-07-09 17:41:24 +00001449 Result = FunctionType::get(Result, ArgListTy, isVarArg);
Chris Lattnerdf986172009-01-02 07:01:27 +00001450 return false;
1451}
1452
Chris Lattner1afcace2011-07-09 17:41:24 +00001453/// ParseAnonStructType - Parse an anonymous struct type, which is inlined into
1454/// other structs.
1455bool LLParser::ParseAnonStructType(Type *&Result, bool Packed) {
1456 SmallVector<Type*, 8> Elts;
1457 if (ParseStructBody(Elts)) return true;
1458
1459 Result = StructType::get(Context, Elts, Packed);
1460 return false;
1461}
1462
1463/// ParseStructDefinition - Parse a struct in a 'type' definition.
1464bool LLParser::ParseStructDefinition(SMLoc TypeLoc, StringRef Name,
1465 std::pair<Type*, LocTy> &Entry,
1466 Type *&ResultTy) {
1467 // If the type was already defined, diagnose the redefinition.
1468 if (Entry.first && !Entry.second.isValid())
1469 return Error(TypeLoc, "redefinition of type");
1470
1471 // If we have opaque, just return without filling in the definition for the
1472 // struct. This counts as a definition as far as the .ll file goes.
1473 if (EatIfPresent(lltok::kw_opaque)) {
1474 // This type is being defined, so clear the location to indicate this.
1475 Entry.second = SMLoc();
1476
1477 // If this type number has never been uttered, create it.
1478 if (Entry.first == 0)
1479 Entry.first = StructType::createNamed(Context, Name);
1480 ResultTy = Entry.first;
1481 return false;
1482 }
1483
1484 // If the type starts with '<', then it is either a packed struct or a vector.
1485 bool isPacked = EatIfPresent(lltok::less);
1486
1487 // If we don't have a struct, then we have a random type alias, which we
1488 // accept for compatibility with old files. These types are not allowed to be
1489 // forward referenced and not allowed to be recursive.
1490 if (Lex.getKind() != lltok::lbrace) {
1491 if (Entry.first)
1492 return Error(TypeLoc, "forward references to non-struct type");
1493
1494 ResultTy = 0;
1495 if (isPacked)
1496 return ParseArrayVectorType(ResultTy, true);
1497 return ParseType(ResultTy);
1498 }
1499
1500 // This type is being defined, so clear the location to indicate this.
1501 Entry.second = SMLoc();
1502
1503 // If this type number has never been uttered, create it.
1504 if (Entry.first == 0)
1505 Entry.first = StructType::createNamed(Context, Name);
1506
1507 StructType *STy = cast<StructType>(Entry.first);
1508
1509 SmallVector<Type*, 8> Body;
1510 if (ParseStructBody(Body) ||
1511 (isPacked && ParseToken(lltok::greater, "expected '>' in packed struct")))
1512 return true;
1513
1514 STy->setBody(Body, isPacked);
1515 ResultTy = STy;
1516 return false;
1517}
1518
1519
Chris Lattnerdf986172009-01-02 07:01:27 +00001520/// ParseStructType: Handles packed and unpacked types. </> parsed elsewhere.
Chris Lattner1afcace2011-07-09 17:41:24 +00001521/// StructType
Chris Lattnerdf986172009-01-02 07:01:27 +00001522/// ::= '{' '}'
Chris Lattner1afcace2011-07-09 17:41:24 +00001523/// ::= '{' Type (',' Type)* '}'
Chris Lattnerdf986172009-01-02 07:01:27 +00001524/// ::= '<' '{' '}' '>'
Chris Lattner1afcace2011-07-09 17:41:24 +00001525/// ::= '<' '{' Type (',' Type)* '}' '>'
1526bool LLParser::ParseStructBody(SmallVectorImpl<Type*> &Body) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001527 assert(Lex.getKind() == lltok::lbrace);
1528 Lex.Lex(); // Consume the '{'
Daniel Dunbara279bc32009-09-20 02:20:51 +00001529
Chris Lattner1afcace2011-07-09 17:41:24 +00001530 // Handle the empty struct.
1531 if (EatIfPresent(lltok::rbrace))
Chris Lattnerdf986172009-01-02 07:01:27 +00001532 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00001533
Chris Lattnera9a9e072009-03-09 04:49:14 +00001534 LocTy EltTyLoc = Lex.getLoc();
Chris Lattner1afcace2011-07-09 17:41:24 +00001535 Type *Ty = 0;
1536 if (ParseType(Ty)) return true;
1537 Body.push_back(Ty);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001538
Chris Lattner1afcace2011-07-09 17:41:24 +00001539 if (!StructType::isValidElementType(Ty))
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001540 return Error(EltTyLoc, "invalid element type for struct");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001541
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001542 while (EatIfPresent(lltok::comma)) {
Chris Lattnera9a9e072009-03-09 04:49:14 +00001543 EltTyLoc = Lex.getLoc();
Chris Lattner1afcace2011-07-09 17:41:24 +00001544 if (ParseType(Ty)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001545
Chris Lattner1afcace2011-07-09 17:41:24 +00001546 if (!StructType::isValidElementType(Ty))
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001547 return Error(EltTyLoc, "invalid element type for struct");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001548
Chris Lattner1afcace2011-07-09 17:41:24 +00001549 Body.push_back(Ty);
Chris Lattnerdf986172009-01-02 07:01:27 +00001550 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001551
Chris Lattner1afcace2011-07-09 17:41:24 +00001552 return ParseToken(lltok::rbrace, "expected '}' at end of struct");
Chris Lattnerdf986172009-01-02 07:01:27 +00001553}
1554
1555/// ParseArrayVectorType - Parse an array or vector type, assuming the first
1556/// token has already been consumed.
Chris Lattner1afcace2011-07-09 17:41:24 +00001557/// Type
Chris Lattnerdf986172009-01-02 07:01:27 +00001558/// ::= '[' APSINTVAL 'x' Types ']'
1559/// ::= '<' APSINTVAL 'x' Types '>'
Chris Lattner1afcace2011-07-09 17:41:24 +00001560bool LLParser::ParseArrayVectorType(Type *&Result, bool isVector) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001561 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned() ||
1562 Lex.getAPSIntVal().getBitWidth() > 64)
1563 return TokError("expected number in address space");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001564
Chris Lattnerdf986172009-01-02 07:01:27 +00001565 LocTy SizeLoc = Lex.getLoc();
1566 uint64_t Size = Lex.getAPSIntVal().getZExtValue();
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001567 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +00001568
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001569 if (ParseToken(lltok::kw_x, "expected 'x' after element count"))
1570 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00001571
1572 LocTy TypeLoc = Lex.getLoc();
Chris Lattner1afcace2011-07-09 17:41:24 +00001573 Type *EltTy = 0;
1574 if (ParseType(EltTy)) return true;
Chris Lattnera9a9e072009-03-09 04:49:14 +00001575
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001576 if (ParseToken(isVector ? lltok::greater : lltok::rsquare,
1577 "expected end of sequential type"))
1578 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001579
Chris Lattnerdf986172009-01-02 07:01:27 +00001580 if (isVector) {
Chris Lattner452e2622009-02-28 18:12:41 +00001581 if (Size == 0)
1582 return Error(SizeLoc, "zero element vector is illegal");
Chris Lattnerdf986172009-01-02 07:01:27 +00001583 if ((unsigned)Size != Size)
1584 return Error(SizeLoc, "size too large for vector");
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001585 if (!VectorType::isValidElementType(EltTy))
Chris Lattnerdf986172009-01-02 07:01:27 +00001586 return Error(TypeLoc, "vector element type must be fp or integer");
Owen Andersondebcb012009-07-29 22:17:13 +00001587 Result = VectorType::get(EltTy, unsigned(Size));
Chris Lattnerdf986172009-01-02 07:01:27 +00001588 } else {
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001589 if (!ArrayType::isValidElementType(EltTy))
Chris Lattnerdf986172009-01-02 07:01:27 +00001590 return Error(TypeLoc, "invalid array element type");
Chris Lattner1afcace2011-07-09 17:41:24 +00001591 Result = ArrayType::get(EltTy, Size);
Chris Lattnerdf986172009-01-02 07:01:27 +00001592 }
1593 return false;
1594}
1595
1596//===----------------------------------------------------------------------===//
1597// Function Semantic Analysis.
1598//===----------------------------------------------------------------------===//
1599
Chris Lattner09d9ef42009-10-28 03:39:23 +00001600LLParser::PerFunctionState::PerFunctionState(LLParser &p, Function &f,
1601 int functionNumber)
1602 : P(p), F(f), FunctionNumber(functionNumber) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001603
1604 // Insert unnamed arguments into the NumberedVals list.
1605 for (Function::arg_iterator AI = F.arg_begin(), E = F.arg_end();
1606 AI != E; ++AI)
1607 if (!AI->hasName())
1608 NumberedVals.push_back(AI);
1609}
1610
1611LLParser::PerFunctionState::~PerFunctionState() {
1612 // If there were any forward referenced non-basicblock values, delete them.
1613 for (std::map<std::string, std::pair<Value*, LocTy> >::iterator
1614 I = ForwardRefVals.begin(), E = ForwardRefVals.end(); I != E; ++I)
1615 if (!isa<BasicBlock>(I->second.first)) {
Owen Andersonb43eae72009-07-02 17:04:01 +00001616 I->second.first->replaceAllUsesWith(
Owen Anderson9e9a0d52009-07-30 23:03:37 +00001617 UndefValue::get(I->second.first->getType()));
Chris Lattnerdf986172009-01-02 07:01:27 +00001618 delete I->second.first;
1619 I->second.first = 0;
1620 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001621
Chris Lattnerdf986172009-01-02 07:01:27 +00001622 for (std::map<unsigned, std::pair<Value*, LocTy> >::iterator
1623 I = ForwardRefValIDs.begin(), E = ForwardRefValIDs.end(); I != E; ++I)
1624 if (!isa<BasicBlock>(I->second.first)) {
Owen Andersonb43eae72009-07-02 17:04:01 +00001625 I->second.first->replaceAllUsesWith(
Owen Anderson9e9a0d52009-07-30 23:03:37 +00001626 UndefValue::get(I->second.first->getType()));
Chris Lattnerdf986172009-01-02 07:01:27 +00001627 delete I->second.first;
1628 I->second.first = 0;
1629 }
1630}
1631
Chris Lattner09d9ef42009-10-28 03:39:23 +00001632bool LLParser::PerFunctionState::FinishFunction() {
1633 // Check to see if someone took the address of labels in this block.
1634 if (!P.ForwardRefBlockAddresses.empty()) {
1635 ValID FunctionID;
1636 if (!F.getName().empty()) {
1637 FunctionID.Kind = ValID::t_GlobalName;
1638 FunctionID.StrVal = F.getName();
1639 } else {
1640 FunctionID.Kind = ValID::t_GlobalID;
1641 FunctionID.UIntVal = FunctionNumber;
1642 }
1643
1644 std::map<ValID, std::vector<std::pair<ValID, GlobalValue*> > >::iterator
1645 FRBAI = P.ForwardRefBlockAddresses.find(FunctionID);
1646 if (FRBAI != P.ForwardRefBlockAddresses.end()) {
1647 // Resolve all these references.
1648 if (P.ResolveForwardRefBlockAddresses(&F, FRBAI->second, this))
1649 return true;
1650
1651 P.ForwardRefBlockAddresses.erase(FRBAI);
1652 }
1653 }
1654
Chris Lattnerdf986172009-01-02 07:01:27 +00001655 if (!ForwardRefVals.empty())
1656 return P.Error(ForwardRefVals.begin()->second.second,
1657 "use of undefined value '%" + ForwardRefVals.begin()->first +
1658 "'");
1659 if (!ForwardRefValIDs.empty())
1660 return P.Error(ForwardRefValIDs.begin()->second.second,
1661 "use of undefined value '%" +
Benjamin Kramerd1e17032010-09-27 17:42:11 +00001662 Twine(ForwardRefValIDs.begin()->first) + "'");
Chris Lattnerdf986172009-01-02 07:01:27 +00001663 return false;
1664}
1665
1666
1667/// GetVal - Get a value with the specified name or ID, creating a
1668/// forward reference record if needed. This can return null if the value
1669/// exists but does not have the right type.
1670Value *LLParser::PerFunctionState::GetVal(const std::string &Name,
1671 const Type *Ty, LocTy Loc) {
1672 // Look this name up in the normal function symbol table.
1673 Value *Val = F.getValueSymbolTable().lookup(Name);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001674
Chris Lattnerdf986172009-01-02 07:01:27 +00001675 // If this is a forward reference for the value, see if we already created a
1676 // forward ref record.
1677 if (Val == 0) {
1678 std::map<std::string, std::pair<Value*, LocTy> >::iterator
1679 I = ForwardRefVals.find(Name);
1680 if (I != ForwardRefVals.end())
1681 Val = I->second.first;
1682 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001683
Chris Lattnerdf986172009-01-02 07:01:27 +00001684 // If we have the value in the symbol table or fwd-ref table, return it.
1685 if (Val) {
1686 if (Val->getType() == Ty) return Val;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001687 if (Ty->isLabelTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00001688 P.Error(Loc, "'%" + Name + "' is not a basic block");
1689 else
1690 P.Error(Loc, "'%" + Name + "' defined with type '" +
Chris Lattner0cd0d882011-06-18 21:18:23 +00001691 getTypeString(Val->getType()) + "'");
Chris Lattnerdf986172009-01-02 07:01:27 +00001692 return 0;
1693 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001694
Chris Lattnerdf986172009-01-02 07:01:27 +00001695 // Don't make placeholders with invalid type.
Chris Lattner1afcace2011-07-09 17:41:24 +00001696 if (!Ty->isFirstClassType() && !Ty->isLabelTy()) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001697 P.Error(Loc, "invalid use of a non-first-class type");
1698 return 0;
1699 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001700
Chris Lattnerdf986172009-01-02 07:01:27 +00001701 // Otherwise, create a new forward reference for this value and remember it.
1702 Value *FwdVal;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001703 if (Ty->isLabelTy())
Owen Anderson1d0be152009-08-13 21:58:54 +00001704 FwdVal = BasicBlock::Create(F.getContext(), Name, &F);
Chris Lattnerdf986172009-01-02 07:01:27 +00001705 else
1706 FwdVal = new Argument(Ty, Name);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001707
Chris Lattnerdf986172009-01-02 07:01:27 +00001708 ForwardRefVals[Name] = std::make_pair(FwdVal, Loc);
1709 return FwdVal;
1710}
1711
1712Value *LLParser::PerFunctionState::GetVal(unsigned ID, const Type *Ty,
1713 LocTy Loc) {
1714 // Look this name up in the normal function symbol table.
1715 Value *Val = ID < NumberedVals.size() ? NumberedVals[ID] : 0;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001716
Chris Lattnerdf986172009-01-02 07:01:27 +00001717 // If this is a forward reference for the value, see if we already created a
1718 // forward ref record.
1719 if (Val == 0) {
1720 std::map<unsigned, std::pair<Value*, LocTy> >::iterator
1721 I = ForwardRefValIDs.find(ID);
1722 if (I != ForwardRefValIDs.end())
1723 Val = I->second.first;
1724 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001725
Chris Lattnerdf986172009-01-02 07:01:27 +00001726 // If we have the value in the symbol table or fwd-ref table, return it.
1727 if (Val) {
1728 if (Val->getType() == Ty) return Val;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001729 if (Ty->isLabelTy())
Benjamin Kramerd1e17032010-09-27 17:42:11 +00001730 P.Error(Loc, "'%" + Twine(ID) + "' is not a basic block");
Chris Lattnerdf986172009-01-02 07:01:27 +00001731 else
Benjamin Kramerd1e17032010-09-27 17:42:11 +00001732 P.Error(Loc, "'%" + Twine(ID) + "' defined with type '" +
Chris Lattner0cd0d882011-06-18 21:18:23 +00001733 getTypeString(Val->getType()) + "'");
Chris Lattnerdf986172009-01-02 07:01:27 +00001734 return 0;
1735 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001736
Chris Lattner1afcace2011-07-09 17:41:24 +00001737 if (!Ty->isFirstClassType() && !Ty->isLabelTy()) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001738 P.Error(Loc, "invalid use of a non-first-class type");
1739 return 0;
1740 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001741
Chris Lattnerdf986172009-01-02 07:01:27 +00001742 // Otherwise, create a new forward reference for this value and remember it.
1743 Value *FwdVal;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001744 if (Ty->isLabelTy())
Owen Anderson1d0be152009-08-13 21:58:54 +00001745 FwdVal = BasicBlock::Create(F.getContext(), "", &F);
Chris Lattnerdf986172009-01-02 07:01:27 +00001746 else
1747 FwdVal = new Argument(Ty);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001748
Chris Lattnerdf986172009-01-02 07:01:27 +00001749 ForwardRefValIDs[ID] = std::make_pair(FwdVal, Loc);
1750 return FwdVal;
1751}
1752
1753/// SetInstName - After an instruction is parsed and inserted into its
1754/// basic block, this installs its name.
1755bool LLParser::PerFunctionState::SetInstName(int NameID,
1756 const std::string &NameStr,
1757 LocTy NameLoc, Instruction *Inst) {
1758 // If this instruction has void type, it cannot have a name or ID specified.
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001759 if (Inst->getType()->isVoidTy()) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001760 if (NameID != -1 || !NameStr.empty())
1761 return P.Error(NameLoc, "instructions returning void cannot have a name");
1762 return false;
1763 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001764
Chris Lattnerdf986172009-01-02 07:01:27 +00001765 // If this was a numbered instruction, verify that the instruction is the
1766 // expected value and resolve any forward references.
1767 if (NameStr.empty()) {
1768 // If neither a name nor an ID was specified, just use the next ID.
1769 if (NameID == -1)
1770 NameID = NumberedVals.size();
Daniel Dunbara279bc32009-09-20 02:20:51 +00001771
Chris Lattnerdf986172009-01-02 07:01:27 +00001772 if (unsigned(NameID) != NumberedVals.size())
1773 return P.Error(NameLoc, "instruction expected to be numbered '%" +
Benjamin Kramerd1e17032010-09-27 17:42:11 +00001774 Twine(NumberedVals.size()) + "'");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001775
Chris Lattnerdf986172009-01-02 07:01:27 +00001776 std::map<unsigned, std::pair<Value*, LocTy> >::iterator FI =
1777 ForwardRefValIDs.find(NameID);
1778 if (FI != ForwardRefValIDs.end()) {
1779 if (FI->second.first->getType() != Inst->getType())
Daniel Dunbara279bc32009-09-20 02:20:51 +00001780 return P.Error(NameLoc, "instruction forward referenced with type '" +
Chris Lattner0cd0d882011-06-18 21:18:23 +00001781 getTypeString(FI->second.first->getType()) + "'");
Chris Lattnerdf986172009-01-02 07:01:27 +00001782 FI->second.first->replaceAllUsesWith(Inst);
Nuno Lopes2b4f28e2009-09-02 15:02:57 +00001783 delete FI->second.first;
Chris Lattnerdf986172009-01-02 07:01:27 +00001784 ForwardRefValIDs.erase(FI);
1785 }
1786
1787 NumberedVals.push_back(Inst);
1788 return false;
1789 }
1790
1791 // Otherwise, the instruction had a name. Resolve forward refs and set it.
1792 std::map<std::string, std::pair<Value*, LocTy> >::iterator
1793 FI = ForwardRefVals.find(NameStr);
1794 if (FI != ForwardRefVals.end()) {
1795 if (FI->second.first->getType() != Inst->getType())
Daniel Dunbara279bc32009-09-20 02:20:51 +00001796 return P.Error(NameLoc, "instruction forward referenced with type '" +
Chris Lattner0cd0d882011-06-18 21:18:23 +00001797 getTypeString(FI->second.first->getType()) + "'");
Chris Lattnerdf986172009-01-02 07:01:27 +00001798 FI->second.first->replaceAllUsesWith(Inst);
Nuno Lopes531552a2009-09-02 14:22:03 +00001799 delete FI->second.first;
Chris Lattnerdf986172009-01-02 07:01:27 +00001800 ForwardRefVals.erase(FI);
1801 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001802
Chris Lattnerdf986172009-01-02 07:01:27 +00001803 // Set the name on the instruction.
1804 Inst->setName(NameStr);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001805
Benjamin Krameraf812352010-10-16 11:28:23 +00001806 if (Inst->getName() != NameStr)
Daniel Dunbara279bc32009-09-20 02:20:51 +00001807 return P.Error(NameLoc, "multiple definition of local value named '" +
Chris Lattnerdf986172009-01-02 07:01:27 +00001808 NameStr + "'");
1809 return false;
1810}
1811
1812/// GetBB - Get a basic block with the specified name or ID, creating a
1813/// forward reference record if needed.
1814BasicBlock *LLParser::PerFunctionState::GetBB(const std::string &Name,
1815 LocTy Loc) {
Owen Anderson1d0be152009-08-13 21:58:54 +00001816 return cast_or_null<BasicBlock>(GetVal(Name,
1817 Type::getLabelTy(F.getContext()), Loc));
Chris Lattnerdf986172009-01-02 07:01:27 +00001818}
1819
1820BasicBlock *LLParser::PerFunctionState::GetBB(unsigned ID, LocTy Loc) {
Owen Anderson1d0be152009-08-13 21:58:54 +00001821 return cast_or_null<BasicBlock>(GetVal(ID,
1822 Type::getLabelTy(F.getContext()), Loc));
Chris Lattnerdf986172009-01-02 07:01:27 +00001823}
1824
1825/// DefineBB - Define the specified basic block, which is either named or
1826/// unnamed. If there is an error, this returns null otherwise it returns
1827/// the block being defined.
1828BasicBlock *LLParser::PerFunctionState::DefineBB(const std::string &Name,
1829 LocTy Loc) {
1830 BasicBlock *BB;
1831 if (Name.empty())
1832 BB = GetBB(NumberedVals.size(), Loc);
1833 else
1834 BB = GetBB(Name, Loc);
1835 if (BB == 0) return 0; // Already diagnosed error.
Daniel Dunbara279bc32009-09-20 02:20:51 +00001836
Chris Lattnerdf986172009-01-02 07:01:27 +00001837 // Move the block to the end of the function. Forward ref'd blocks are
1838 // inserted wherever they happen to be referenced.
1839 F.getBasicBlockList().splice(F.end(), F.getBasicBlockList(), BB);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001840
Chris Lattnerdf986172009-01-02 07:01:27 +00001841 // Remove the block from forward ref sets.
1842 if (Name.empty()) {
1843 ForwardRefValIDs.erase(NumberedVals.size());
1844 NumberedVals.push_back(BB);
1845 } else {
1846 // BB forward references are already in the function symbol table.
1847 ForwardRefVals.erase(Name);
1848 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001849
Chris Lattnerdf986172009-01-02 07:01:27 +00001850 return BB;
1851}
1852
1853//===----------------------------------------------------------------------===//
1854// Constants.
1855//===----------------------------------------------------------------------===//
1856
1857/// ParseValID - Parse an abstract value that doesn't necessarily have a
1858/// type implied. For example, if we parse "4" we don't know what integer type
1859/// it has. The value will later be combined with its type and checked for
Victor Hernandez24e64df2010-01-10 07:14:18 +00001860/// sanity. PFS is used to convert function-local operands of metadata (since
1861/// metadata operands are not just parsed here but also converted to values).
1862/// PFS can be null when we are not parsing metadata values inside a function.
Victor Hernandezbf170d42010-01-05 22:22:14 +00001863bool LLParser::ParseValID(ValID &ID, PerFunctionState *PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001864 ID.Loc = Lex.getLoc();
1865 switch (Lex.getKind()) {
1866 default: return TokError("expected value token");
1867 case lltok::GlobalID: // @42
1868 ID.UIntVal = Lex.getUIntVal();
1869 ID.Kind = ValID::t_GlobalID;
1870 break;
1871 case lltok::GlobalVar: // @foo
1872 ID.StrVal = Lex.getStrVal();
1873 ID.Kind = ValID::t_GlobalName;
1874 break;
1875 case lltok::LocalVarID: // %42
1876 ID.UIntVal = Lex.getUIntVal();
1877 ID.Kind = ValID::t_LocalID;
1878 break;
1879 case lltok::LocalVar: // %foo
Chris Lattnerdf986172009-01-02 07:01:27 +00001880 ID.StrVal = Lex.getStrVal();
1881 ID.Kind = ValID::t_LocalName;
1882 break;
Dan Gohman83448032010-07-14 18:26:50 +00001883 case lltok::exclaim: // !42, !{...}, or !"foo"
1884 return ParseMetadataValue(ID, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00001885 case lltok::APSInt:
Daniel Dunbara279bc32009-09-20 02:20:51 +00001886 ID.APSIntVal = Lex.getAPSIntVal();
Chris Lattnerdf986172009-01-02 07:01:27 +00001887 ID.Kind = ValID::t_APSInt;
1888 break;
1889 case lltok::APFloat:
1890 ID.APFloatVal = Lex.getAPFloatVal();
1891 ID.Kind = ValID::t_APFloat;
1892 break;
1893 case lltok::kw_true:
Owen Anderson5defacc2009-07-31 17:39:07 +00001894 ID.ConstantVal = ConstantInt::getTrue(Context);
Chris Lattnerdf986172009-01-02 07:01:27 +00001895 ID.Kind = ValID::t_Constant;
1896 break;
1897 case lltok::kw_false:
Owen Anderson5defacc2009-07-31 17:39:07 +00001898 ID.ConstantVal = ConstantInt::getFalse(Context);
Chris Lattnerdf986172009-01-02 07:01:27 +00001899 ID.Kind = ValID::t_Constant;
1900 break;
1901 case lltok::kw_null: ID.Kind = ValID::t_Null; break;
1902 case lltok::kw_undef: ID.Kind = ValID::t_Undef; break;
1903 case lltok::kw_zeroinitializer: ID.Kind = ValID::t_Zero; break;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001904
Chris Lattnerdf986172009-01-02 07:01:27 +00001905 case lltok::lbrace: {
1906 // ValID ::= '{' ConstVector '}'
1907 Lex.Lex();
1908 SmallVector<Constant*, 16> Elts;
1909 if (ParseGlobalValueVector(Elts) ||
1910 ParseToken(lltok::rbrace, "expected end of struct constant"))
1911 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001912
Chris Lattner1afcace2011-07-09 17:41:24 +00001913 ID.ConstantStructElts = new Constant*[Elts.size()];
1914 ID.UIntVal = Elts.size();
1915 memcpy(ID.ConstantStructElts, Elts.data(), Elts.size()*sizeof(Elts[0]));
1916 ID.Kind = ValID::t_ConstantStruct;
Chris Lattnerdf986172009-01-02 07:01:27 +00001917 return false;
1918 }
1919 case lltok::less: {
1920 // ValID ::= '<' ConstVector '>' --> Vector.
1921 // ValID ::= '<' '{' ConstVector '}' '>' --> Packed Struct.
1922 Lex.Lex();
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001923 bool isPackedStruct = EatIfPresent(lltok::lbrace);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001924
Chris Lattnerdf986172009-01-02 07:01:27 +00001925 SmallVector<Constant*, 16> Elts;
1926 LocTy FirstEltLoc = Lex.getLoc();
1927 if (ParseGlobalValueVector(Elts) ||
1928 (isPackedStruct &&
1929 ParseToken(lltok::rbrace, "expected end of packed struct")) ||
1930 ParseToken(lltok::greater, "expected end of constant"))
1931 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001932
Chris Lattnerdf986172009-01-02 07:01:27 +00001933 if (isPackedStruct) {
Chris Lattner1afcace2011-07-09 17:41:24 +00001934 ID.ConstantStructElts = new Constant*[Elts.size()];
1935 memcpy(ID.ConstantStructElts, Elts.data(), Elts.size()*sizeof(Elts[0]));
1936 ID.UIntVal = Elts.size();
1937 ID.Kind = ValID::t_PackedConstantStruct;
Chris Lattnerdf986172009-01-02 07:01:27 +00001938 return false;
1939 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001940
Chris Lattnerdf986172009-01-02 07:01:27 +00001941 if (Elts.empty())
1942 return Error(ID.Loc, "constant vector must not be empty");
1943
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001944 if (!Elts[0]->getType()->isIntegerTy() &&
1945 !Elts[0]->getType()->isFloatingPointTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00001946 return Error(FirstEltLoc,
1947 "vector elements must have integer or floating point type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001948
Chris Lattnerdf986172009-01-02 07:01:27 +00001949 // Verify that all the vector elements have the same type.
1950 for (unsigned i = 1, e = Elts.size(); i != e; ++i)
1951 if (Elts[i]->getType() != Elts[0]->getType())
1952 return Error(FirstEltLoc,
Benjamin Kramerd1e17032010-09-27 17:42:11 +00001953 "vector element #" + Twine(i) +
Chris Lattner0cd0d882011-06-18 21:18:23 +00001954 " is not of type '" + getTypeString(Elts[0]->getType()));
Daniel Dunbara279bc32009-09-20 02:20:51 +00001955
Chris Lattner2ca5c862011-02-15 00:14:00 +00001956 ID.ConstantVal = ConstantVector::get(Elts);
Chris Lattnerdf986172009-01-02 07:01:27 +00001957 ID.Kind = ValID::t_Constant;
1958 return false;
1959 }
1960 case lltok::lsquare: { // Array Constant
1961 Lex.Lex();
1962 SmallVector<Constant*, 16> Elts;
1963 LocTy FirstEltLoc = Lex.getLoc();
1964 if (ParseGlobalValueVector(Elts) ||
1965 ParseToken(lltok::rsquare, "expected end of array constant"))
1966 return true;
1967
1968 // Handle empty element.
1969 if (Elts.empty()) {
1970 // Use undef instead of an array because it's inconvenient to determine
1971 // the element type at this point, there being no elements to examine.
Chris Lattner081b5052009-01-05 07:52:51 +00001972 ID.Kind = ValID::t_EmptyArray;
Chris Lattnerdf986172009-01-02 07:01:27 +00001973 return false;
1974 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001975
Chris Lattnerdf986172009-01-02 07:01:27 +00001976 if (!Elts[0]->getType()->isFirstClassType())
Daniel Dunbara279bc32009-09-20 02:20:51 +00001977 return Error(FirstEltLoc, "invalid array element type: " +
Chris Lattner0cd0d882011-06-18 21:18:23 +00001978 getTypeString(Elts[0]->getType()));
Daniel Dunbara279bc32009-09-20 02:20:51 +00001979
Owen Andersondebcb012009-07-29 22:17:13 +00001980 ArrayType *ATy = ArrayType::get(Elts[0]->getType(), Elts.size());
Daniel Dunbara279bc32009-09-20 02:20:51 +00001981
Chris Lattnerdf986172009-01-02 07:01:27 +00001982 // Verify all elements are correct type!
Chris Lattner6d6b3cc2009-01-02 08:49:06 +00001983 for (unsigned i = 0, e = Elts.size(); i != e; ++i) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001984 if (Elts[i]->getType() != Elts[0]->getType())
1985 return Error(FirstEltLoc,
Benjamin Kramerd1e17032010-09-27 17:42:11 +00001986 "array element #" + Twine(i) +
Chris Lattner0cd0d882011-06-18 21:18:23 +00001987 " is not of type '" + getTypeString(Elts[0]->getType()));
Chris Lattnerdf986172009-01-02 07:01:27 +00001988 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001989
Jay Foad26701082011-06-22 09:24:39 +00001990 ID.ConstantVal = ConstantArray::get(ATy, Elts);
Chris Lattnerdf986172009-01-02 07:01:27 +00001991 ID.Kind = ValID::t_Constant;
1992 return false;
1993 }
1994 case lltok::kw_c: // c "foo"
1995 Lex.Lex();
Owen Anderson1d0be152009-08-13 21:58:54 +00001996 ID.ConstantVal = ConstantArray::get(Context, Lex.getStrVal(), false);
Chris Lattnerdf986172009-01-02 07:01:27 +00001997 if (ParseToken(lltok::StringConstant, "expected string")) return true;
1998 ID.Kind = ValID::t_Constant;
1999 return false;
2000
2001 case lltok::kw_asm: {
Dale Johannesen8ba2d5b2009-10-21 23:28:00 +00002002 // ValID ::= 'asm' SideEffect? AlignStack? STRINGCONSTANT ',' STRINGCONSTANT
2003 bool HasSideEffect, AlignStack;
Chris Lattnerdf986172009-01-02 07:01:27 +00002004 Lex.Lex();
2005 if (ParseOptionalToken(lltok::kw_sideeffect, HasSideEffect) ||
Dale Johannesen8ba2d5b2009-10-21 23:28:00 +00002006 ParseOptionalToken(lltok::kw_alignstack, AlignStack) ||
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002007 ParseStringConstant(ID.StrVal) ||
2008 ParseToken(lltok::comma, "expected comma in inline asm expression") ||
Chris Lattnerdf986172009-01-02 07:01:27 +00002009 ParseToken(lltok::StringConstant, "expected constraint string"))
2010 return true;
2011 ID.StrVal2 = Lex.getStrVal();
Daniel Dunbarf0bb41c2009-11-07 23:51:55 +00002012 ID.UIntVal = unsigned(HasSideEffect) | (unsigned(AlignStack)<<1);
Chris Lattnerdf986172009-01-02 07:01:27 +00002013 ID.Kind = ValID::t_InlineAsm;
2014 return false;
2015 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002016
Chris Lattner09d9ef42009-10-28 03:39:23 +00002017 case lltok::kw_blockaddress: {
2018 // ValID ::= 'blockaddress' '(' @foo ',' %bar ')'
2019 Lex.Lex();
2020
2021 ValID Fn, Label;
2022 LocTy FnLoc, LabelLoc;
2023
2024 if (ParseToken(lltok::lparen, "expected '(' in block address expression") ||
2025 ParseValID(Fn) ||
2026 ParseToken(lltok::comma, "expected comma in block address expression")||
2027 ParseValID(Label) ||
2028 ParseToken(lltok::rparen, "expected ')' in block address expression"))
2029 return true;
Chris Lattnercdfc9402009-11-01 01:27:45 +00002030
Chris Lattner09d9ef42009-10-28 03:39:23 +00002031 if (Fn.Kind != ValID::t_GlobalID && Fn.Kind != ValID::t_GlobalName)
2032 return Error(Fn.Loc, "expected function name in blockaddress");
Chris Lattnercdfc9402009-11-01 01:27:45 +00002033 if (Label.Kind != ValID::t_LocalID && Label.Kind != ValID::t_LocalName)
Chris Lattner09d9ef42009-10-28 03:39:23 +00002034 return Error(Label.Loc, "expected basic block name in blockaddress");
2035
2036 // Make a global variable as a placeholder for this reference.
2037 GlobalVariable *FwdRef = new GlobalVariable(*M, Type::getInt8Ty(Context),
2038 false, GlobalValue::InternalLinkage,
2039 0, "");
2040 ForwardRefBlockAddresses[Fn].push_back(std::make_pair(Label, FwdRef));
2041 ID.ConstantVal = FwdRef;
2042 ID.Kind = ValID::t_Constant;
2043 return false;
2044 }
2045
Chris Lattnerdf986172009-01-02 07:01:27 +00002046 case lltok::kw_trunc:
2047 case lltok::kw_zext:
2048 case lltok::kw_sext:
2049 case lltok::kw_fptrunc:
2050 case lltok::kw_fpext:
2051 case lltok::kw_bitcast:
2052 case lltok::kw_uitofp:
2053 case lltok::kw_sitofp:
2054 case lltok::kw_fptoui:
Daniel Dunbara279bc32009-09-20 02:20:51 +00002055 case lltok::kw_fptosi:
Chris Lattnerdf986172009-01-02 07:01:27 +00002056 case lltok::kw_inttoptr:
Daniel Dunbara279bc32009-09-20 02:20:51 +00002057 case lltok::kw_ptrtoint: {
Chris Lattnerdf986172009-01-02 07:01:27 +00002058 unsigned Opc = Lex.getUIntVal();
Chris Lattner1afcace2011-07-09 17:41:24 +00002059 Type *DestTy = 0;
Chris Lattnerdf986172009-01-02 07:01:27 +00002060 Constant *SrcVal;
2061 Lex.Lex();
2062 if (ParseToken(lltok::lparen, "expected '(' after constantexpr cast") ||
2063 ParseGlobalTypeAndValue(SrcVal) ||
Dan Gohman24b108b2009-06-15 21:52:11 +00002064 ParseToken(lltok::kw_to, "expected 'to' in constantexpr cast") ||
Chris Lattnerdf986172009-01-02 07:01:27 +00002065 ParseType(DestTy) ||
2066 ParseToken(lltok::rparen, "expected ')' at end of constantexpr cast"))
2067 return true;
2068 if (!CastInst::castIsValid((Instruction::CastOps)Opc, SrcVal, DestTy))
2069 return Error(ID.Loc, "invalid cast opcode for cast from '" +
Chris Lattner0cd0d882011-06-18 21:18:23 +00002070 getTypeString(SrcVal->getType()) + "' to '" +
2071 getTypeString(DestTy) + "'");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002072 ID.ConstantVal = ConstantExpr::getCast((Instruction::CastOps)Opc,
Owen Andersonfba933c2009-07-01 23:57:11 +00002073 SrcVal, DestTy);
Chris Lattnerdf986172009-01-02 07:01:27 +00002074 ID.Kind = ValID::t_Constant;
2075 return false;
2076 }
2077 case lltok::kw_extractvalue: {
2078 Lex.Lex();
2079 Constant *Val;
2080 SmallVector<unsigned, 4> Indices;
2081 if (ParseToken(lltok::lparen, "expected '(' in extractvalue constantexpr")||
2082 ParseGlobalTypeAndValue(Val) ||
2083 ParseIndexList(Indices) ||
2084 ParseToken(lltok::rparen, "expected ')' in extractvalue constantexpr"))
2085 return true;
Devang Patele8bc45a2009-11-03 19:06:07 +00002086
Chris Lattnerfdfeb692010-02-12 20:49:41 +00002087 if (!Val->getType()->isAggregateType())
2088 return Error(ID.Loc, "extractvalue operand must be aggregate type");
Chris Lattnerdf986172009-01-02 07:01:27 +00002089 if (!ExtractValueInst::getIndexedType(Val->getType(), Indices.begin(),
2090 Indices.end()))
2091 return Error(ID.Loc, "invalid indices for extractvalue");
Jay Foade3e51c02009-05-21 09:52:38 +00002092 ID.ConstantVal =
Owen Andersonbaf3c402009-07-29 18:55:55 +00002093 ConstantExpr::getExtractValue(Val, Indices.data(), Indices.size());
Chris Lattnerdf986172009-01-02 07:01:27 +00002094 ID.Kind = ValID::t_Constant;
2095 return false;
2096 }
2097 case lltok::kw_insertvalue: {
2098 Lex.Lex();
2099 Constant *Val0, *Val1;
2100 SmallVector<unsigned, 4> Indices;
2101 if (ParseToken(lltok::lparen, "expected '(' in insertvalue constantexpr")||
2102 ParseGlobalTypeAndValue(Val0) ||
2103 ParseToken(lltok::comma, "expected comma in insertvalue constantexpr")||
2104 ParseGlobalTypeAndValue(Val1) ||
2105 ParseIndexList(Indices) ||
2106 ParseToken(lltok::rparen, "expected ')' in insertvalue constantexpr"))
2107 return true;
Chris Lattnerfdfeb692010-02-12 20:49:41 +00002108 if (!Val0->getType()->isAggregateType())
2109 return Error(ID.Loc, "insertvalue operand must be aggregate type");
Chris Lattnerdf986172009-01-02 07:01:27 +00002110 if (!ExtractValueInst::getIndexedType(Val0->getType(), Indices.begin(),
2111 Indices.end()))
2112 return Error(ID.Loc, "invalid indices for insertvalue");
Owen Andersonbaf3c402009-07-29 18:55:55 +00002113 ID.ConstantVal = ConstantExpr::getInsertValue(Val0, Val1,
Owen Andersonfba933c2009-07-01 23:57:11 +00002114 Indices.data(), Indices.size());
Chris Lattnerdf986172009-01-02 07:01:27 +00002115 ID.Kind = ValID::t_Constant;
2116 return false;
2117 }
2118 case lltok::kw_icmp:
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00002119 case lltok::kw_fcmp: {
Chris Lattnerdf986172009-01-02 07:01:27 +00002120 unsigned PredVal, Opc = Lex.getUIntVal();
2121 Constant *Val0, *Val1;
2122 Lex.Lex();
2123 if (ParseCmpPredicate(PredVal, Opc) ||
2124 ParseToken(lltok::lparen, "expected '(' in compare constantexpr") ||
2125 ParseGlobalTypeAndValue(Val0) ||
2126 ParseToken(lltok::comma, "expected comma in compare constantexpr") ||
2127 ParseGlobalTypeAndValue(Val1) ||
2128 ParseToken(lltok::rparen, "expected ')' in compare constantexpr"))
2129 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002130
Chris Lattnerdf986172009-01-02 07:01:27 +00002131 if (Val0->getType() != Val1->getType())
2132 return Error(ID.Loc, "compare operands must have the same type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002133
Chris Lattnerdf986172009-01-02 07:01:27 +00002134 CmpInst::Predicate Pred = (CmpInst::Predicate)PredVal;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002135
Chris Lattnerdf986172009-01-02 07:01:27 +00002136 if (Opc == Instruction::FCmp) {
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00002137 if (!Val0->getType()->isFPOrFPVectorTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002138 return Error(ID.Loc, "fcmp requires floating point operands");
Owen Andersonbaf3c402009-07-29 18:55:55 +00002139 ID.ConstantVal = ConstantExpr::getFCmp(Pred, Val0, Val1);
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00002140 } else {
2141 assert(Opc == Instruction::ICmp && "Unexpected opcode for CmpInst!");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00002142 if (!Val0->getType()->isIntOrIntVectorTy() &&
Duncan Sands1df98592010-02-16 11:11:14 +00002143 !Val0->getType()->isPointerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002144 return Error(ID.Loc, "icmp requires pointer or integer operands");
Owen Andersonbaf3c402009-07-29 18:55:55 +00002145 ID.ConstantVal = ConstantExpr::getICmp(Pred, Val0, Val1);
Chris Lattnerdf986172009-01-02 07:01:27 +00002146 }
2147 ID.Kind = ValID::t_Constant;
2148 return false;
2149 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002150
Chris Lattnerdf986172009-01-02 07:01:27 +00002151 // Binary Operators.
2152 case lltok::kw_add:
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002153 case lltok::kw_fadd:
Chris Lattnerdf986172009-01-02 07:01:27 +00002154 case lltok::kw_sub:
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002155 case lltok::kw_fsub:
Chris Lattnerdf986172009-01-02 07:01:27 +00002156 case lltok::kw_mul:
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002157 case lltok::kw_fmul:
Chris Lattnerdf986172009-01-02 07:01:27 +00002158 case lltok::kw_udiv:
2159 case lltok::kw_sdiv:
2160 case lltok::kw_fdiv:
2161 case lltok::kw_urem:
2162 case lltok::kw_srem:
Chris Lattnerf067d582011-02-07 16:40:21 +00002163 case lltok::kw_frem:
2164 case lltok::kw_shl:
2165 case lltok::kw_lshr:
2166 case lltok::kw_ashr: {
Dan Gohman59858cf2009-07-27 16:11:46 +00002167 bool NUW = false;
2168 bool NSW = false;
2169 bool Exact = false;
Chris Lattnerdf986172009-01-02 07:01:27 +00002170 unsigned Opc = Lex.getUIntVal();
2171 Constant *Val0, *Val1;
2172 Lex.Lex();
Dan Gohman59858cf2009-07-27 16:11:46 +00002173 LocTy ModifierLoc = Lex.getLoc();
Chris Lattnerf067d582011-02-07 16:40:21 +00002174 if (Opc == Instruction::Add || Opc == Instruction::Sub ||
2175 Opc == Instruction::Mul || Opc == Instruction::Shl) {
Dan Gohman59858cf2009-07-27 16:11:46 +00002176 if (EatIfPresent(lltok::kw_nuw))
2177 NUW = true;
2178 if (EatIfPresent(lltok::kw_nsw)) {
2179 NSW = true;
2180 if (EatIfPresent(lltok::kw_nuw))
2181 NUW = true;
2182 }
Chris Lattnerf067d582011-02-07 16:40:21 +00002183 } else if (Opc == Instruction::SDiv || Opc == Instruction::UDiv ||
2184 Opc == Instruction::LShr || Opc == Instruction::AShr) {
Dan Gohman59858cf2009-07-27 16:11:46 +00002185 if (EatIfPresent(lltok::kw_exact))
2186 Exact = true;
2187 }
Chris Lattnerdf986172009-01-02 07:01:27 +00002188 if (ParseToken(lltok::lparen, "expected '(' in binary constantexpr") ||
2189 ParseGlobalTypeAndValue(Val0) ||
2190 ParseToken(lltok::comma, "expected comma in binary constantexpr") ||
2191 ParseGlobalTypeAndValue(Val1) ||
2192 ParseToken(lltok::rparen, "expected ')' in binary constantexpr"))
2193 return true;
2194 if (Val0->getType() != Val1->getType())
2195 return Error(ID.Loc, "operands of constexpr must have same type");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00002196 if (!Val0->getType()->isIntOrIntVectorTy()) {
Dan Gohman59858cf2009-07-27 16:11:46 +00002197 if (NUW)
2198 return Error(ModifierLoc, "nuw only applies to integer operations");
2199 if (NSW)
2200 return Error(ModifierLoc, "nsw only applies to integer operations");
2201 }
Dan Gohman1eaac532010-05-03 22:44:19 +00002202 // Check that the type is valid for the operator.
2203 switch (Opc) {
2204 case Instruction::Add:
2205 case Instruction::Sub:
2206 case Instruction::Mul:
2207 case Instruction::UDiv:
2208 case Instruction::SDiv:
2209 case Instruction::URem:
2210 case Instruction::SRem:
Chris Lattnerf067d582011-02-07 16:40:21 +00002211 case Instruction::Shl:
2212 case Instruction::AShr:
2213 case Instruction::LShr:
Dan Gohman1eaac532010-05-03 22:44:19 +00002214 if (!Val0->getType()->isIntOrIntVectorTy())
2215 return Error(ID.Loc, "constexpr requires integer operands");
2216 break;
2217 case Instruction::FAdd:
2218 case Instruction::FSub:
2219 case Instruction::FMul:
2220 case Instruction::FDiv:
2221 case Instruction::FRem:
2222 if (!Val0->getType()->isFPOrFPVectorTy())
2223 return Error(ID.Loc, "constexpr requires fp operands");
2224 break;
2225 default: llvm_unreachable("Unknown binary operator!");
2226 }
Dan Gohmanf8dbee72009-09-07 23:54:19 +00002227 unsigned Flags = 0;
2228 if (NUW) Flags |= OverflowingBinaryOperator::NoUnsignedWrap;
2229 if (NSW) Flags |= OverflowingBinaryOperator::NoSignedWrap;
Chris Lattner35bda892011-02-06 21:44:57 +00002230 if (Exact) Flags |= PossiblyExactOperator::IsExact;
Dan Gohmanf8dbee72009-09-07 23:54:19 +00002231 Constant *C = ConstantExpr::get(Opc, Val0, Val1, Flags);
Dan Gohman59858cf2009-07-27 16:11:46 +00002232 ID.ConstantVal = C;
Chris Lattnerdf986172009-01-02 07:01:27 +00002233 ID.Kind = ValID::t_Constant;
2234 return false;
2235 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002236
Chris Lattnerdf986172009-01-02 07:01:27 +00002237 // Logical Operations
Chris Lattnerdf986172009-01-02 07:01:27 +00002238 case lltok::kw_and:
2239 case lltok::kw_or:
2240 case lltok::kw_xor: {
2241 unsigned Opc = Lex.getUIntVal();
2242 Constant *Val0, *Val1;
2243 Lex.Lex();
2244 if (ParseToken(lltok::lparen, "expected '(' in logical constantexpr") ||
2245 ParseGlobalTypeAndValue(Val0) ||
2246 ParseToken(lltok::comma, "expected comma in logical constantexpr") ||
2247 ParseGlobalTypeAndValue(Val1) ||
2248 ParseToken(lltok::rparen, "expected ')' in logical constantexpr"))
2249 return true;
2250 if (Val0->getType() != Val1->getType())
2251 return Error(ID.Loc, "operands of constexpr must have same type");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00002252 if (!Val0->getType()->isIntOrIntVectorTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002253 return Error(ID.Loc,
2254 "constexpr requires integer or integer vector operands");
Owen Andersonbaf3c402009-07-29 18:55:55 +00002255 ID.ConstantVal = ConstantExpr::get(Opc, Val0, Val1);
Chris Lattnerdf986172009-01-02 07:01:27 +00002256 ID.Kind = ValID::t_Constant;
2257 return false;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002258 }
2259
Chris Lattnerdf986172009-01-02 07:01:27 +00002260 case lltok::kw_getelementptr:
2261 case lltok::kw_shufflevector:
2262 case lltok::kw_insertelement:
2263 case lltok::kw_extractelement:
2264 case lltok::kw_select: {
2265 unsigned Opc = Lex.getUIntVal();
2266 SmallVector<Constant*, 16> Elts;
Dan Gohmandd8004d2009-07-27 21:53:46 +00002267 bool InBounds = false;
Chris Lattnerdf986172009-01-02 07:01:27 +00002268 Lex.Lex();
Dan Gohmandd8004d2009-07-27 21:53:46 +00002269 if (Opc == Instruction::GetElementPtr)
Dan Gohmandcb40a32009-07-29 15:58:36 +00002270 InBounds = EatIfPresent(lltok::kw_inbounds);
Chris Lattnerdf986172009-01-02 07:01:27 +00002271 if (ParseToken(lltok::lparen, "expected '(' in constantexpr") ||
2272 ParseGlobalValueVector(Elts) ||
2273 ParseToken(lltok::rparen, "expected ')' in constantexpr"))
2274 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002275
Chris Lattnerdf986172009-01-02 07:01:27 +00002276 if (Opc == Instruction::GetElementPtr) {
Duncan Sands1df98592010-02-16 11:11:14 +00002277 if (Elts.size() == 0 || !Elts[0]->getType()->isPointerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002278 return Error(ID.Loc, "getelementptr requires pointer operand");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002279
Chris Lattnerdf986172009-01-02 07:01:27 +00002280 if (!GetElementPtrInst::getIndexedType(Elts[0]->getType(),
Eli Friedman4e9bac32009-07-24 21:56:17 +00002281 (Value**)(Elts.data() + 1),
2282 Elts.size() - 1))
Chris Lattnerdf986172009-01-02 07:01:27 +00002283 return Error(ID.Loc, "invalid indices for getelementptr");
Dan Gohmanf8dbee72009-09-07 23:54:19 +00002284 ID.ConstantVal = InBounds ?
2285 ConstantExpr::getInBoundsGetElementPtr(Elts[0],
2286 Elts.data() + 1,
2287 Elts.size() - 1) :
2288 ConstantExpr::getGetElementPtr(Elts[0],
2289 Elts.data() + 1, Elts.size() - 1);
Chris Lattnerdf986172009-01-02 07:01:27 +00002290 } else if (Opc == Instruction::Select) {
2291 if (Elts.size() != 3)
2292 return Error(ID.Loc, "expected three operands to select");
2293 if (const char *Reason = SelectInst::areInvalidOperands(Elts[0], Elts[1],
2294 Elts[2]))
2295 return Error(ID.Loc, Reason);
Owen Andersonbaf3c402009-07-29 18:55:55 +00002296 ID.ConstantVal = ConstantExpr::getSelect(Elts[0], Elts[1], Elts[2]);
Chris Lattnerdf986172009-01-02 07:01:27 +00002297 } else if (Opc == Instruction::ShuffleVector) {
2298 if (Elts.size() != 3)
2299 return Error(ID.Loc, "expected three operands to shufflevector");
2300 if (!ShuffleVectorInst::isValidOperands(Elts[0], Elts[1], Elts[2]))
2301 return Error(ID.Loc, "invalid operands to shufflevector");
Owen Andersonfba933c2009-07-01 23:57:11 +00002302 ID.ConstantVal =
Owen Andersonbaf3c402009-07-29 18:55:55 +00002303 ConstantExpr::getShuffleVector(Elts[0], Elts[1],Elts[2]);
Chris Lattnerdf986172009-01-02 07:01:27 +00002304 } else if (Opc == Instruction::ExtractElement) {
2305 if (Elts.size() != 2)
2306 return Error(ID.Loc, "expected two operands to extractelement");
2307 if (!ExtractElementInst::isValidOperands(Elts[0], Elts[1]))
2308 return Error(ID.Loc, "invalid extractelement operands");
Owen Andersonbaf3c402009-07-29 18:55:55 +00002309 ID.ConstantVal = ConstantExpr::getExtractElement(Elts[0], Elts[1]);
Chris Lattnerdf986172009-01-02 07:01:27 +00002310 } else {
2311 assert(Opc == Instruction::InsertElement && "Unknown opcode");
2312 if (Elts.size() != 3)
2313 return Error(ID.Loc, "expected three operands to insertelement");
2314 if (!InsertElementInst::isValidOperands(Elts[0], Elts[1], Elts[2]))
2315 return Error(ID.Loc, "invalid insertelement operands");
Owen Andersonfba933c2009-07-01 23:57:11 +00002316 ID.ConstantVal =
Owen Andersonbaf3c402009-07-29 18:55:55 +00002317 ConstantExpr::getInsertElement(Elts[0], Elts[1],Elts[2]);
Chris Lattnerdf986172009-01-02 07:01:27 +00002318 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002319
Chris Lattnerdf986172009-01-02 07:01:27 +00002320 ID.Kind = ValID::t_Constant;
2321 return false;
2322 }
2323 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002324
Chris Lattnerdf986172009-01-02 07:01:27 +00002325 Lex.Lex();
2326 return false;
2327}
2328
2329/// ParseGlobalValue - Parse a global value with the specified type.
Victor Hernandez92f238d2010-01-11 22:31:58 +00002330bool LLParser::ParseGlobalValue(const Type *Ty, Constant *&C) {
2331 C = 0;
Chris Lattnerdf986172009-01-02 07:01:27 +00002332 ValID ID;
Victor Hernandez92f238d2010-01-11 22:31:58 +00002333 Value *V = NULL;
2334 bool Parsed = ParseValID(ID) ||
2335 ConvertValIDToValue(Ty, ID, V, NULL);
2336 if (V && !(C = dyn_cast<Constant>(V)))
2337 return Error(ID.Loc, "global values must be constants");
2338 return Parsed;
Chris Lattnerdf986172009-01-02 07:01:27 +00002339}
2340
Victor Hernandez92f238d2010-01-11 22:31:58 +00002341bool LLParser::ParseGlobalTypeAndValue(Constant *&V) {
Chris Lattner1afcace2011-07-09 17:41:24 +00002342 Type *Ty = 0;
2343 return ParseType(Ty) ||
2344 ParseGlobalValue(Ty, V);
Victor Hernandez92f238d2010-01-11 22:31:58 +00002345}
2346
2347/// ParseGlobalValueVector
2348/// ::= /*empty*/
2349/// ::= TypeAndValue (',' TypeAndValue)*
2350bool LLParser::ParseGlobalValueVector(SmallVectorImpl<Constant*> &Elts) {
2351 // Empty list.
2352 if (Lex.getKind() == lltok::rbrace ||
2353 Lex.getKind() == lltok::rsquare ||
2354 Lex.getKind() == lltok::greater ||
2355 Lex.getKind() == lltok::rparen)
2356 return false;
2357
2358 Constant *C;
2359 if (ParseGlobalTypeAndValue(C)) return true;
2360 Elts.push_back(C);
2361
2362 while (EatIfPresent(lltok::comma)) {
2363 if (ParseGlobalTypeAndValue(C)) return true;
2364 Elts.push_back(C);
2365 }
2366
2367 return false;
2368}
2369
Dan Gohman309b3af2010-08-24 02:24:03 +00002370bool LLParser::ParseMetadataListValue(ValID &ID, PerFunctionState *PFS) {
2371 assert(Lex.getKind() == lltok::lbrace);
2372 Lex.Lex();
2373
2374 SmallVector<Value*, 16> Elts;
2375 if (ParseMDNodeVector(Elts, PFS) ||
2376 ParseToken(lltok::rbrace, "expected end of metadata node"))
2377 return true;
2378
Jay Foadec9186b2011-04-21 19:59:31 +00002379 ID.MDNodeVal = MDNode::get(Context, Elts);
Dan Gohman309b3af2010-08-24 02:24:03 +00002380 ID.Kind = ValID::t_MDNode;
2381 return false;
2382}
2383
Dan Gohman83448032010-07-14 18:26:50 +00002384/// ParseMetadataValue
2385/// ::= !42
2386/// ::= !{...}
2387/// ::= !"string"
2388bool LLParser::ParseMetadataValue(ValID &ID, PerFunctionState *PFS) {
2389 assert(Lex.getKind() == lltok::exclaim);
2390 Lex.Lex();
2391
2392 // MDNode:
2393 // !{ ... }
Dan Gohman309b3af2010-08-24 02:24:03 +00002394 if (Lex.getKind() == lltok::lbrace)
2395 return ParseMetadataListValue(ID, PFS);
Dan Gohman83448032010-07-14 18:26:50 +00002396
2397 // Standalone metadata reference
2398 // !42
2399 if (Lex.getKind() == lltok::APSInt) {
2400 if (ParseMDNodeID(ID.MDNodeVal)) return true;
2401 ID.Kind = ValID::t_MDNode;
2402 return false;
2403 }
2404
2405 // MDString:
2406 // ::= '!' STRINGCONSTANT
2407 if (ParseMDString(ID.MDStringVal)) return true;
2408 ID.Kind = ValID::t_MDString;
2409 return false;
2410}
2411
Victor Hernandez92f238d2010-01-11 22:31:58 +00002412
2413//===----------------------------------------------------------------------===//
2414// Function Parsing.
2415//===----------------------------------------------------------------------===//
2416
2417bool LLParser::ConvertValIDToValue(const Type *Ty, ValID &ID, Value *&V,
2418 PerFunctionState *PFS) {
Duncan Sands1df98592010-02-16 11:11:14 +00002419 if (Ty->isFunctionTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002420 return Error(ID.Loc, "functions are not values, refer to them as pointers");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002421
Chris Lattnerdf986172009-01-02 07:01:27 +00002422 switch (ID.Kind) {
Daniel Dunbara279bc32009-09-20 02:20:51 +00002423 default: llvm_unreachable("Unknown ValID!");
Chris Lattnerdf986172009-01-02 07:01:27 +00002424 case ValID::t_LocalID:
Victor Hernandez92f238d2010-01-11 22:31:58 +00002425 if (!PFS) return Error(ID.Loc, "invalid use of function-local name");
2426 V = PFS->GetVal(ID.UIntVal, Ty, ID.Loc);
2427 return (V == 0);
Chris Lattnerdf986172009-01-02 07:01:27 +00002428 case ValID::t_LocalName:
Victor Hernandez92f238d2010-01-11 22:31:58 +00002429 if (!PFS) return Error(ID.Loc, "invalid use of function-local name");
2430 V = PFS->GetVal(ID.StrVal, Ty, ID.Loc);
2431 return (V == 0);
2432 case ValID::t_InlineAsm: {
2433 const PointerType *PTy = dyn_cast<PointerType>(Ty);
2434 const FunctionType *FTy =
2435 PTy ? dyn_cast<FunctionType>(PTy->getElementType()) : 0;
2436 if (!FTy || !InlineAsm::Verify(FTy, ID.StrVal2))
2437 return Error(ID.Loc, "invalid type for inline asm constraint string");
2438 V = InlineAsm::get(FTy, ID.StrVal, ID.StrVal2, ID.UIntVal&1, ID.UIntVal>>1);
2439 return false;
2440 }
2441 case ValID::t_MDNode:
2442 if (!Ty->isMetadataTy())
2443 return Error(ID.Loc, "metadata value must have metadata type");
2444 V = ID.MDNodeVal;
2445 return false;
2446 case ValID::t_MDString:
2447 if (!Ty->isMetadataTy())
2448 return Error(ID.Loc, "metadata value must have metadata type");
2449 V = ID.MDStringVal;
2450 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00002451 case ValID::t_GlobalName:
2452 V = GetGlobalVal(ID.StrVal, Ty, ID.Loc);
2453 return V == 0;
2454 case ValID::t_GlobalID:
2455 V = GetGlobalVal(ID.UIntVal, Ty, ID.Loc);
2456 return V == 0;
2457 case ValID::t_APSInt:
Duncan Sands1df98592010-02-16 11:11:14 +00002458 if (!Ty->isIntegerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002459 return Error(ID.Loc, "integer constant must have integer type");
Jay Foad40f8f622010-12-07 08:25:19 +00002460 ID.APSIntVal = ID.APSIntVal.extOrTrunc(Ty->getPrimitiveSizeInBits());
Owen Andersoneed707b2009-07-24 23:12:02 +00002461 V = ConstantInt::get(Context, ID.APSIntVal);
Chris Lattnerdf986172009-01-02 07:01:27 +00002462 return false;
2463 case ValID::t_APFloat:
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00002464 if (!Ty->isFloatingPointTy() ||
Chris Lattnerdf986172009-01-02 07:01:27 +00002465 !ConstantFP::isValueValidForType(Ty, ID.APFloatVal))
2466 return Error(ID.Loc, "floating point constant invalid for type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002467
Chris Lattnerdf986172009-01-02 07:01:27 +00002468 // The lexer has no type info, so builds all float and double FP constants
2469 // as double. Fix this here. Long double does not need this.
2470 if (&ID.APFloatVal.getSemantics() == &APFloat::IEEEdouble &&
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00002471 Ty->isFloatTy()) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002472 bool Ignored;
2473 ID.APFloatVal.convert(APFloat::IEEEsingle, APFloat::rmNearestTiesToEven,
2474 &Ignored);
2475 }
Owen Anderson6f83c9c2009-07-27 20:59:43 +00002476 V = ConstantFP::get(Context, ID.APFloatVal);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002477
Chris Lattner959873d2009-01-05 18:24:23 +00002478 if (V->getType() != Ty)
2479 return Error(ID.Loc, "floating point constant does not have type '" +
Chris Lattner0cd0d882011-06-18 21:18:23 +00002480 getTypeString(Ty) + "'");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002481
Chris Lattnerdf986172009-01-02 07:01:27 +00002482 return false;
2483 case ValID::t_Null:
Duncan Sands1df98592010-02-16 11:11:14 +00002484 if (!Ty->isPointerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002485 return Error(ID.Loc, "null must be a pointer type");
Owen Anderson9e9a0d52009-07-30 23:03:37 +00002486 V = ConstantPointerNull::get(cast<PointerType>(Ty));
Chris Lattnerdf986172009-01-02 07:01:27 +00002487 return false;
2488 case ValID::t_Undef:
Chris Lattnere67c1aa2009-01-05 08:13:38 +00002489 // FIXME: LabelTy should not be a first-class type.
Chris Lattner1afcace2011-07-09 17:41:24 +00002490 if (!Ty->isFirstClassType() || Ty->isLabelTy())
Chris Lattnere67c1aa2009-01-05 08:13:38 +00002491 return Error(ID.Loc, "invalid type for undef constant");
Owen Anderson9e9a0d52009-07-30 23:03:37 +00002492 V = UndefValue::get(Ty);
Chris Lattnerdf986172009-01-02 07:01:27 +00002493 return false;
Chris Lattner081b5052009-01-05 07:52:51 +00002494 case ValID::t_EmptyArray:
Duncan Sands1df98592010-02-16 11:11:14 +00002495 if (!Ty->isArrayTy() || cast<ArrayType>(Ty)->getNumElements() != 0)
Chris Lattner081b5052009-01-05 07:52:51 +00002496 return Error(ID.Loc, "invalid empty array initializer");
Owen Anderson9e9a0d52009-07-30 23:03:37 +00002497 V = UndefValue::get(Ty);
Chris Lattner081b5052009-01-05 07:52:51 +00002498 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00002499 case ValID::t_Zero:
Chris Lattnere67c1aa2009-01-05 08:13:38 +00002500 // FIXME: LabelTy should not be a first-class type.
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00002501 if (!Ty->isFirstClassType() || Ty->isLabelTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002502 return Error(ID.Loc, "invalid type for null constant");
Owen Andersona7235ea2009-07-31 20:28:14 +00002503 V = Constant::getNullValue(Ty);
Chris Lattnerdf986172009-01-02 07:01:27 +00002504 return false;
2505 case ValID::t_Constant:
Chris Lattner61c70e92010-08-28 04:09:24 +00002506 if (ID.ConstantVal->getType() != Ty)
Chris Lattnerdf986172009-01-02 07:01:27 +00002507 return Error(ID.Loc, "constant expression type mismatch");
Chris Lattnerfdfeb692010-02-12 20:49:41 +00002508
Chris Lattnerdf986172009-01-02 07:01:27 +00002509 V = ID.ConstantVal;
2510 return false;
Chris Lattner1afcace2011-07-09 17:41:24 +00002511 case ValID::t_ConstantStruct:
2512 case ValID::t_PackedConstantStruct:
2513 if (const StructType *ST = dyn_cast<StructType>(Ty)) {
2514 if (ST->getNumElements() != ID.UIntVal)
2515 return Error(ID.Loc,
2516 "initializer with struct type has wrong # elements");
2517 if (ST->isPacked() != (ID.Kind == ValID::t_PackedConstantStruct))
2518 return Error(ID.Loc, "packed'ness of initializer and type don't match");
2519
2520 // Verify that the elements are compatible with the structtype.
2521 for (unsigned i = 0, e = ID.UIntVal; i != e; ++i)
2522 if (ID.ConstantStructElts[i]->getType() != ST->getElementType(i))
2523 return Error(ID.Loc, "element " + Twine(i) +
2524 " of struct initializer doesn't match struct element type");
2525
2526 V = ConstantStruct::get(ST, ArrayRef<Constant*>(ID.ConstantStructElts,
2527 ID.UIntVal));
2528 } else
2529 return Error(ID.Loc, "constant expression type mismatch");
2530 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00002531 }
2532}
Daniel Dunbara279bc32009-09-20 02:20:51 +00002533
Chris Lattner1afcace2011-07-09 17:41:24 +00002534bool LLParser::ParseValue(const Type *Ty, Value *&V, PerFunctionState *PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002535 V = 0;
2536 ValID ID;
Chris Lattner1afcace2011-07-09 17:41:24 +00002537 return ParseValID(ID, PFS) ||
2538 ConvertValIDToValue(Ty, ID, V, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00002539}
2540
Chris Lattner1afcace2011-07-09 17:41:24 +00002541bool LLParser::ParseTypeAndValue(Value *&V, PerFunctionState *PFS) {
2542 Type *Ty = 0;
2543 return ParseType(Ty) ||
2544 ParseValue(Ty, V, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00002545}
2546
Chris Lattnerf9be95f2009-10-27 19:13:16 +00002547bool LLParser::ParseTypeAndBasicBlock(BasicBlock *&BB, LocTy &Loc,
2548 PerFunctionState &PFS) {
2549 Value *V;
2550 Loc = Lex.getLoc();
2551 if (ParseTypeAndValue(V, PFS)) return true;
2552 if (!isa<BasicBlock>(V))
2553 return Error(Loc, "expected a basic block");
2554 BB = cast<BasicBlock>(V);
2555 return false;
2556}
2557
2558
Chris Lattnerdf986172009-01-02 07:01:27 +00002559/// FunctionHeader
2560/// ::= OptionalLinkage OptionalVisibility OptionalCallingConv OptRetAttrs
Rafael Espindolabea46262011-01-08 16:42:36 +00002561/// OptUnnamedAddr Type GlobalName '(' ArgList ')' OptFuncAttrs OptSection
Chris Lattnerdf986172009-01-02 07:01:27 +00002562/// OptionalAlign OptGC
2563bool LLParser::ParseFunctionHeader(Function *&Fn, bool isDefine) {
2564 // Parse the linkage.
2565 LocTy LinkageLoc = Lex.getLoc();
2566 unsigned Linkage;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002567
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00002568 unsigned Visibility, RetAttrs;
2569 CallingConv::ID CC;
Chris Lattner1afcace2011-07-09 17:41:24 +00002570 Type *RetType = 0;
Chris Lattnerdf986172009-01-02 07:01:27 +00002571 LocTy RetTypeLoc = Lex.getLoc();
2572 if (ParseOptionalLinkage(Linkage) ||
2573 ParseOptionalVisibility(Visibility) ||
2574 ParseOptionalCallingConv(CC) ||
2575 ParseOptionalAttrs(RetAttrs, 1) ||
Chris Lattnera9a9e072009-03-09 04:49:14 +00002576 ParseType(RetType, RetTypeLoc, true /*void allowed*/))
Chris Lattnerdf986172009-01-02 07:01:27 +00002577 return true;
2578
2579 // Verify that the linkage is ok.
2580 switch ((GlobalValue::LinkageTypes)Linkage) {
2581 case GlobalValue::ExternalLinkage:
2582 break; // always ok.
2583 case GlobalValue::DLLImportLinkage:
Duncan Sands5f4ee1f2009-03-11 08:08:06 +00002584 case GlobalValue::ExternalWeakLinkage:
Chris Lattnerdf986172009-01-02 07:01:27 +00002585 if (isDefine)
2586 return Error(LinkageLoc, "invalid linkage for function definition");
2587 break;
Rafael Espindolabb46f522009-01-15 20:18:42 +00002588 case GlobalValue::PrivateLinkage:
Bill Wendling3d10a5a2009-07-20 01:03:30 +00002589 case GlobalValue::LinkerPrivateLinkage:
Bill Wendling5e721d72010-07-01 21:55:59 +00002590 case GlobalValue::LinkerPrivateWeakLinkage:
Bill Wendling55ae5152010-08-20 22:05:50 +00002591 case GlobalValue::LinkerPrivateWeakDefAutoLinkage:
Chris Lattnerdf986172009-01-02 07:01:27 +00002592 case GlobalValue::InternalLinkage:
Nick Lewycky55f64db2009-04-13 07:02:02 +00002593 case GlobalValue::AvailableExternallyLinkage:
Duncan Sands667d4b82009-03-07 15:45:40 +00002594 case GlobalValue::LinkOnceAnyLinkage:
2595 case GlobalValue::LinkOnceODRLinkage:
2596 case GlobalValue::WeakAnyLinkage:
2597 case GlobalValue::WeakODRLinkage:
Chris Lattnerdf986172009-01-02 07:01:27 +00002598 case GlobalValue::DLLExportLinkage:
2599 if (!isDefine)
2600 return Error(LinkageLoc, "invalid linkage for function declaration");
2601 break;
2602 case GlobalValue::AppendingLinkage:
Duncan Sands4dc2b392009-03-11 20:14:15 +00002603 case GlobalValue::CommonLinkage:
Chris Lattnerdf986172009-01-02 07:01:27 +00002604 return Error(LinkageLoc, "invalid function linkage type");
2605 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002606
Chris Lattner1afcace2011-07-09 17:41:24 +00002607 if (!FunctionType::isValidReturnType(RetType))
Chris Lattnerdf986172009-01-02 07:01:27 +00002608 return Error(RetTypeLoc, "invalid function return type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002609
Chris Lattnerdf986172009-01-02 07:01:27 +00002610 LocTy NameLoc = Lex.getLoc();
Chris Lattnerf570e622009-02-18 21:48:13 +00002611
2612 std::string FunctionName;
2613 if (Lex.getKind() == lltok::GlobalVar) {
2614 FunctionName = Lex.getStrVal();
2615 } else if (Lex.getKind() == lltok::GlobalID) { // @42 is ok.
2616 unsigned NameID = Lex.getUIntVal();
2617
2618 if (NameID != NumberedVals.size())
2619 return TokError("function expected to be numbered '%" +
Benjamin Kramerd1e17032010-09-27 17:42:11 +00002620 Twine(NumberedVals.size()) + "'");
Chris Lattnerf570e622009-02-18 21:48:13 +00002621 } else {
2622 return TokError("expected function name");
2623 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002624
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002625 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +00002626
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002627 if (Lex.getKind() != lltok::lparen)
Chris Lattnerdf986172009-01-02 07:01:27 +00002628 return TokError("expected '(' in function argument list");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002629
Chris Lattner1afcace2011-07-09 17:41:24 +00002630 SmallVector<ArgInfo, 8> ArgList;
Chris Lattnerdf986172009-01-02 07:01:27 +00002631 bool isVarArg;
Chris Lattnerdf986172009-01-02 07:01:27 +00002632 unsigned FuncAttrs;
Chris Lattnerdf986172009-01-02 07:01:27 +00002633 std::string Section;
Chris Lattnerdf986172009-01-02 07:01:27 +00002634 unsigned Alignment;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002635 std::string GC;
Rafael Espindola3971df52011-01-25 19:09:56 +00002636 bool UnnamedAddr;
2637 LocTy UnnamedAddrLoc;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002638
Chris Lattner1afcace2011-07-09 17:41:24 +00002639 if (ParseArgumentList(ArgList, isVarArg) ||
Rafael Espindola3971df52011-01-25 19:09:56 +00002640 ParseOptionalToken(lltok::kw_unnamed_addr, UnnamedAddr,
2641 &UnnamedAddrLoc) ||
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002642 ParseOptionalAttrs(FuncAttrs, 2) ||
2643 (EatIfPresent(lltok::kw_section) &&
2644 ParseStringConstant(Section)) ||
2645 ParseOptionalAlignment(Alignment) ||
2646 (EatIfPresent(lltok::kw_gc) &&
2647 ParseStringConstant(GC)))
2648 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00002649
2650 // If the alignment was parsed as an attribute, move to the alignment field.
2651 if (FuncAttrs & Attribute::Alignment) {
2652 Alignment = Attribute::getAlignmentFromAttrs(FuncAttrs);
2653 FuncAttrs &= ~Attribute::Alignment;
2654 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002655
Chris Lattnerdf986172009-01-02 07:01:27 +00002656 // Okay, if we got here, the function is syntactically valid. Convert types
2657 // and do semantic checks.
Jay Foad5fdd6c82011-07-12 14:06:48 +00002658 std::vector<Type*> ParamTypeList;
Chris Lattnerdf986172009-01-02 07:01:27 +00002659 SmallVector<AttributeWithIndex, 8> Attrs;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002660
Chris Lattnerdf986172009-01-02 07:01:27 +00002661 if (RetAttrs != Attribute::None)
2662 Attrs.push_back(AttributeWithIndex::get(0, RetAttrs));
Daniel Dunbara279bc32009-09-20 02:20:51 +00002663
Chris Lattnerdf986172009-01-02 07:01:27 +00002664 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
Chris Lattner1afcace2011-07-09 17:41:24 +00002665 ParamTypeList.push_back(ArgList[i].Ty);
Chris Lattnerdf986172009-01-02 07:01:27 +00002666 if (ArgList[i].Attrs != Attribute::None)
2667 Attrs.push_back(AttributeWithIndex::get(i+1, ArgList[i].Attrs));
2668 }
2669
2670 if (FuncAttrs != Attribute::None)
2671 Attrs.push_back(AttributeWithIndex::get(~0, FuncAttrs));
2672
2673 AttrListPtr PAL = AttrListPtr::get(Attrs.begin(), Attrs.end());
Daniel Dunbara279bc32009-09-20 02:20:51 +00002674
Benjamin Kramerf0127052010-01-05 13:12:22 +00002675 if (PAL.paramHasAttr(1, Attribute::StructRet) && !RetType->isVoidTy())
Daniel Dunbara279bc32009-09-20 02:20:51 +00002676 return Error(RetTypeLoc, "functions with 'sret' argument must return void");
2677
Owen Andersonfba933c2009-07-01 23:57:11 +00002678 const FunctionType *FT =
Owen Andersondebcb012009-07-29 22:17:13 +00002679 FunctionType::get(RetType, ParamTypeList, isVarArg);
2680 const PointerType *PFT = PointerType::getUnqual(FT);
Chris Lattnerdf986172009-01-02 07:01:27 +00002681
2682 Fn = 0;
2683 if (!FunctionName.empty()) {
2684 // If this was a definition of a forward reference, remove the definition
2685 // from the forward reference table and fill in the forward ref.
2686 std::map<std::string, std::pair<GlobalValue*, LocTy> >::iterator FRVI =
2687 ForwardRefVals.find(FunctionName);
2688 if (FRVI != ForwardRefVals.end()) {
2689 Fn = M->getFunction(FunctionName);
Chris Lattnerf1cfb952010-04-20 04:49:11 +00002690 if (Fn->getType() != PFT)
2691 return Error(FRVI->second.second, "invalid forward reference to "
2692 "function '" + FunctionName + "' with wrong type!");
2693
Chris Lattnerdf986172009-01-02 07:01:27 +00002694 ForwardRefVals.erase(FRVI);
2695 } else if ((Fn = M->getFunction(FunctionName))) {
Chris Lattnerd5890992011-06-17 07:06:44 +00002696 // Reject redefinitions.
2697 return Error(NameLoc, "invalid redefinition of function '" +
2698 FunctionName + "'");
Chris Lattner1d871c52009-10-25 23:22:50 +00002699 } else if (M->getNamedValue(FunctionName)) {
2700 return Error(NameLoc, "redefinition of function '@" + FunctionName + "'");
Chris Lattnerdf986172009-01-02 07:01:27 +00002701 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002702
Dan Gohman41905542009-08-29 23:37:49 +00002703 } else {
Chris Lattnerdf986172009-01-02 07:01:27 +00002704 // If this is a definition of a forward referenced function, make sure the
2705 // types agree.
2706 std::map<unsigned, std::pair<GlobalValue*, LocTy> >::iterator I
2707 = ForwardRefValIDs.find(NumberedVals.size());
2708 if (I != ForwardRefValIDs.end()) {
2709 Fn = cast<Function>(I->second.first);
2710 if (Fn->getType() != PFT)
2711 return Error(NameLoc, "type of definition and forward reference of '@" +
Benjamin Kramerd1e17032010-09-27 17:42:11 +00002712 Twine(NumberedVals.size()) + "' disagree");
Chris Lattnerdf986172009-01-02 07:01:27 +00002713 ForwardRefValIDs.erase(I);
2714 }
2715 }
2716
2717 if (Fn == 0)
2718 Fn = Function::Create(FT, GlobalValue::ExternalLinkage, FunctionName, M);
2719 else // Move the forward-reference to the correct spot in the module.
2720 M->getFunctionList().splice(M->end(), M->getFunctionList(), Fn);
2721
2722 if (FunctionName.empty())
2723 NumberedVals.push_back(Fn);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002724
Chris Lattnerdf986172009-01-02 07:01:27 +00002725 Fn->setLinkage((GlobalValue::LinkageTypes)Linkage);
2726 Fn->setVisibility((GlobalValue::VisibilityTypes)Visibility);
2727 Fn->setCallingConv(CC);
2728 Fn->setAttributes(PAL);
Rafael Espindolabea46262011-01-08 16:42:36 +00002729 Fn->setUnnamedAddr(UnnamedAddr);
Chris Lattnerdf986172009-01-02 07:01:27 +00002730 Fn->setAlignment(Alignment);
2731 Fn->setSection(Section);
2732 if (!GC.empty()) Fn->setGC(GC.c_str());
Daniel Dunbara279bc32009-09-20 02:20:51 +00002733
Chris Lattnerdf986172009-01-02 07:01:27 +00002734 // Add all of the arguments we parsed to the function.
2735 Function::arg_iterator ArgIt = Fn->arg_begin();
2736 for (unsigned i = 0, e = ArgList.size(); i != e; ++i, ++ArgIt) {
2737 // If the argument has a name, insert it into the argument symbol table.
2738 if (ArgList[i].Name.empty()) continue;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002739
Chris Lattnerdf986172009-01-02 07:01:27 +00002740 // Set the name, if it conflicted, it will be auto-renamed.
2741 ArgIt->setName(ArgList[i].Name);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002742
Benjamin Krameraf812352010-10-16 11:28:23 +00002743 if (ArgIt->getName() != ArgList[i].Name)
Chris Lattnerdf986172009-01-02 07:01:27 +00002744 return Error(ArgList[i].Loc, "redefinition of argument '%" +
2745 ArgList[i].Name + "'");
2746 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002747
Chris Lattnerdf986172009-01-02 07:01:27 +00002748 return false;
2749}
2750
2751
2752/// ParseFunctionBody
2753/// ::= '{' BasicBlock+ '}'
Chris Lattnerdf986172009-01-02 07:01:27 +00002754///
2755bool LLParser::ParseFunctionBody(Function &Fn) {
Chris Lattner6b7c89e2011-06-17 06:42:57 +00002756 if (Lex.getKind() != lltok::lbrace)
Chris Lattnerdf986172009-01-02 07:01:27 +00002757 return TokError("expected '{' in function body");
2758 Lex.Lex(); // eat the {.
Daniel Dunbara279bc32009-09-20 02:20:51 +00002759
Chris Lattner09d9ef42009-10-28 03:39:23 +00002760 int FunctionNumber = -1;
2761 if (!Fn.hasName()) FunctionNumber = NumberedVals.size()-1;
2762
2763 PerFunctionState PFS(*this, Fn, FunctionNumber);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002764
Chris Lattner2fdf8db2010-01-09 19:20:07 +00002765 // We need at least one basic block.
Chris Lattner6b7c89e2011-06-17 06:42:57 +00002766 if (Lex.getKind() == lltok::rbrace)
Chris Lattner2fdf8db2010-01-09 19:20:07 +00002767 return TokError("function body requires at least one basic block");
2768
Chris Lattner6b7c89e2011-06-17 06:42:57 +00002769 while (Lex.getKind() != lltok::rbrace)
Chris Lattnerdf986172009-01-02 07:01:27 +00002770 if (ParseBasicBlock(PFS)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002771
Chris Lattnerdf986172009-01-02 07:01:27 +00002772 // Eat the }.
2773 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +00002774
Chris Lattnerdf986172009-01-02 07:01:27 +00002775 // Verify function is ok.
Chris Lattner09d9ef42009-10-28 03:39:23 +00002776 return PFS.FinishFunction();
Chris Lattnerdf986172009-01-02 07:01:27 +00002777}
2778
2779/// ParseBasicBlock
2780/// ::= LabelStr? Instruction*
2781bool LLParser::ParseBasicBlock(PerFunctionState &PFS) {
2782 // If this basic block starts out with a name, remember it.
2783 std::string Name;
2784 LocTy NameLoc = Lex.getLoc();
2785 if (Lex.getKind() == lltok::LabelStr) {
2786 Name = Lex.getStrVal();
2787 Lex.Lex();
2788 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002789
Chris Lattnerdf986172009-01-02 07:01:27 +00002790 BasicBlock *BB = PFS.DefineBB(Name, NameLoc);
2791 if (BB == 0) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002792
Chris Lattnerdf986172009-01-02 07:01:27 +00002793 std::string NameStr;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002794
Chris Lattnerdf986172009-01-02 07:01:27 +00002795 // Parse the instructions in this block until we get a terminator.
2796 Instruction *Inst;
Chris Lattner1340dd32009-12-30 05:48:36 +00002797 SmallVector<std::pair<unsigned, MDNode *>, 4> MetadataOnInst;
Chris Lattnerdf986172009-01-02 07:01:27 +00002798 do {
2799 // This instruction may have three possibilities for a name: a) none
2800 // specified, b) name specified "%foo =", c) number specified: "%4 =".
2801 LocTy NameLoc = Lex.getLoc();
2802 int NameID = -1;
2803 NameStr = "";
Daniel Dunbara279bc32009-09-20 02:20:51 +00002804
Chris Lattnerdf986172009-01-02 07:01:27 +00002805 if (Lex.getKind() == lltok::LocalVarID) {
2806 NameID = Lex.getUIntVal();
2807 Lex.Lex();
2808 if (ParseToken(lltok::equal, "expected '=' after instruction id"))
2809 return true;
Chris Lattner7a1b9bd2011-06-17 06:36:20 +00002810 } else if (Lex.getKind() == lltok::LocalVar) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002811 NameStr = Lex.getStrVal();
2812 Lex.Lex();
2813 if (ParseToken(lltok::equal, "expected '=' after instruction name"))
2814 return true;
2815 }
Devang Patelf633a062009-09-17 23:04:48 +00002816
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00002817 switch (ParseInstruction(Inst, BB, PFS)) {
2818 default: assert(0 && "Unknown ParseInstruction result!");
2819 case InstError: return true;
2820 case InstNormal:
Chris Lattner4ba9d9b2010-04-07 04:08:57 +00002821 BB->getInstList().push_back(Inst);
2822
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00002823 // With a normal result, we check to see if the instruction is followed by
2824 // a comma and metadata.
2825 if (EatIfPresent(lltok::comma))
Dan Gohman9d072f52010-08-24 02:05:17 +00002826 if (ParseInstructionMetadata(Inst, &PFS))
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00002827 return true;
2828 break;
2829 case InstExtraComma:
Chris Lattner4ba9d9b2010-04-07 04:08:57 +00002830 BB->getInstList().push_back(Inst);
2831
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00002832 // If the instruction parser ate an extra comma at the end of it, it
2833 // *must* be followed by metadata.
Dan Gohman9d072f52010-08-24 02:05:17 +00002834 if (ParseInstructionMetadata(Inst, &PFS))
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00002835 return true;
2836 break;
2837 }
Devang Patelf633a062009-09-17 23:04:48 +00002838
Chris Lattnerdf986172009-01-02 07:01:27 +00002839 // Set the name on the instruction.
2840 if (PFS.SetInstName(NameID, NameStr, NameLoc, Inst)) return true;
2841 } while (!isa<TerminatorInst>(Inst));
Daniel Dunbara279bc32009-09-20 02:20:51 +00002842
Chris Lattnerdf986172009-01-02 07:01:27 +00002843 return false;
2844}
2845
2846//===----------------------------------------------------------------------===//
2847// Instruction Parsing.
2848//===----------------------------------------------------------------------===//
2849
2850/// ParseInstruction - Parse one of the many different instructions.
2851///
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00002852int LLParser::ParseInstruction(Instruction *&Inst, BasicBlock *BB,
2853 PerFunctionState &PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002854 lltok::Kind Token = Lex.getKind();
2855 if (Token == lltok::Eof)
2856 return TokError("found end of file when expecting more instructions");
2857 LocTy Loc = Lex.getLoc();
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00002858 unsigned KeywordVal = Lex.getUIntVal();
Chris Lattnerdf986172009-01-02 07:01:27 +00002859 Lex.Lex(); // Eat the keyword.
Daniel Dunbara279bc32009-09-20 02:20:51 +00002860
Chris Lattnerdf986172009-01-02 07:01:27 +00002861 switch (Token) {
2862 default: return Error(Loc, "expected instruction opcode");
2863 // Terminator Instructions.
Owen Anderson1d0be152009-08-13 21:58:54 +00002864 case lltok::kw_unwind: Inst = new UnwindInst(Context); return false;
2865 case lltok::kw_unreachable: Inst = new UnreachableInst(Context); return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00002866 case lltok::kw_ret: return ParseRet(Inst, BB, PFS);
2867 case lltok::kw_br: return ParseBr(Inst, PFS);
2868 case lltok::kw_switch: return ParseSwitch(Inst, PFS);
Chris Lattnerab21db72009-10-28 00:19:10 +00002869 case lltok::kw_indirectbr: return ParseIndirectBr(Inst, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00002870 case lltok::kw_invoke: return ParseInvoke(Inst, PFS);
2871 // Binary Operators.
2872 case lltok::kw_add:
2873 case lltok::kw_sub:
Chris Lattnerf067d582011-02-07 16:40:21 +00002874 case lltok::kw_mul:
2875 case lltok::kw_shl: {
Chris Lattnerf067d582011-02-07 16:40:21 +00002876 bool NUW = EatIfPresent(lltok::kw_nuw);
2877 bool NSW = EatIfPresent(lltok::kw_nsw);
2878 if (!NUW) NUW = EatIfPresent(lltok::kw_nuw);
2879
2880 if (ParseArithmetic(Inst, PFS, KeywordVal, 1)) return true;
2881
2882 if (NUW) cast<BinaryOperator>(Inst)->setHasNoUnsignedWrap(true);
2883 if (NSW) cast<BinaryOperator>(Inst)->setHasNoSignedWrap(true);
2884 return false;
Dan Gohman59858cf2009-07-27 16:11:46 +00002885 }
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002886 case lltok::kw_fadd:
2887 case lltok::kw_fsub:
2888 case lltok::kw_fmul: return ParseArithmetic(Inst, PFS, KeywordVal, 2);
2889
Chris Lattner35bda892011-02-06 21:44:57 +00002890 case lltok::kw_sdiv:
Chris Lattnerf067d582011-02-07 16:40:21 +00002891 case lltok::kw_udiv:
2892 case lltok::kw_lshr:
2893 case lltok::kw_ashr: {
2894 bool Exact = EatIfPresent(lltok::kw_exact);
2895
2896 if (ParseArithmetic(Inst, PFS, KeywordVal, 1)) return true;
2897 if (Exact) cast<BinaryOperator>(Inst)->setIsExact(true);
2898 return false;
Dan Gohman59858cf2009-07-27 16:11:46 +00002899 }
2900
Chris Lattnerdf986172009-01-02 07:01:27 +00002901 case lltok::kw_urem:
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00002902 case lltok::kw_srem: return ParseArithmetic(Inst, PFS, KeywordVal, 1);
Chris Lattnere914b592009-01-05 08:24:46 +00002903 case lltok::kw_fdiv:
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00002904 case lltok::kw_frem: return ParseArithmetic(Inst, PFS, KeywordVal, 2);
Chris Lattnerdf986172009-01-02 07:01:27 +00002905 case lltok::kw_and:
2906 case lltok::kw_or:
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00002907 case lltok::kw_xor: return ParseLogical(Inst, PFS, KeywordVal);
Chris Lattnerdf986172009-01-02 07:01:27 +00002908 case lltok::kw_icmp:
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00002909 case lltok::kw_fcmp: return ParseCompare(Inst, PFS, KeywordVal);
Chris Lattnerdf986172009-01-02 07:01:27 +00002910 // Casts.
2911 case lltok::kw_trunc:
2912 case lltok::kw_zext:
2913 case lltok::kw_sext:
2914 case lltok::kw_fptrunc:
2915 case lltok::kw_fpext:
2916 case lltok::kw_bitcast:
2917 case lltok::kw_uitofp:
2918 case lltok::kw_sitofp:
2919 case lltok::kw_fptoui:
Daniel Dunbara279bc32009-09-20 02:20:51 +00002920 case lltok::kw_fptosi:
Chris Lattnerdf986172009-01-02 07:01:27 +00002921 case lltok::kw_inttoptr:
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00002922 case lltok::kw_ptrtoint: return ParseCast(Inst, PFS, KeywordVal);
Chris Lattnerdf986172009-01-02 07:01:27 +00002923 // Other.
2924 case lltok::kw_select: return ParseSelect(Inst, PFS);
Chris Lattner0088a5c2009-01-05 08:18:44 +00002925 case lltok::kw_va_arg: return ParseVA_Arg(Inst, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00002926 case lltok::kw_extractelement: return ParseExtractElement(Inst, PFS);
2927 case lltok::kw_insertelement: return ParseInsertElement(Inst, PFS);
2928 case lltok::kw_shufflevector: return ParseShuffleVector(Inst, PFS);
2929 case lltok::kw_phi: return ParsePHI(Inst, PFS);
2930 case lltok::kw_call: return ParseCall(Inst, PFS, false);
2931 case lltok::kw_tail: return ParseCall(Inst, PFS, true);
2932 // Memory.
Victor Hernandez13ad5aa2009-10-17 00:00:19 +00002933 case lltok::kw_alloca: return ParseAlloc(Inst, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00002934 case lltok::kw_load: return ParseLoad(Inst, PFS, false);
2935 case lltok::kw_store: return ParseStore(Inst, PFS, false);
2936 case lltok::kw_volatile:
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002937 if (EatIfPresent(lltok::kw_load))
Chris Lattnerdf986172009-01-02 07:01:27 +00002938 return ParseLoad(Inst, PFS, true);
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002939 else if (EatIfPresent(lltok::kw_store))
Chris Lattnerdf986172009-01-02 07:01:27 +00002940 return ParseStore(Inst, PFS, true);
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002941 else
Chris Lattnerdf986172009-01-02 07:01:27 +00002942 return TokError("expected 'load' or 'store'");
Chris Lattnerdf986172009-01-02 07:01:27 +00002943 case lltok::kw_getelementptr: return ParseGetElementPtr(Inst, PFS);
2944 case lltok::kw_extractvalue: return ParseExtractValue(Inst, PFS);
2945 case lltok::kw_insertvalue: return ParseInsertValue(Inst, PFS);
2946 }
2947}
2948
2949/// ParseCmpPredicate - Parse an integer or fp predicate, based on Kind.
2950bool LLParser::ParseCmpPredicate(unsigned &P, unsigned Opc) {
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00002951 if (Opc == Instruction::FCmp) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002952 switch (Lex.getKind()) {
2953 default: TokError("expected fcmp predicate (e.g. 'oeq')");
2954 case lltok::kw_oeq: P = CmpInst::FCMP_OEQ; break;
2955 case lltok::kw_one: P = CmpInst::FCMP_ONE; break;
2956 case lltok::kw_olt: P = CmpInst::FCMP_OLT; break;
2957 case lltok::kw_ogt: P = CmpInst::FCMP_OGT; break;
2958 case lltok::kw_ole: P = CmpInst::FCMP_OLE; break;
2959 case lltok::kw_oge: P = CmpInst::FCMP_OGE; break;
2960 case lltok::kw_ord: P = CmpInst::FCMP_ORD; break;
2961 case lltok::kw_uno: P = CmpInst::FCMP_UNO; break;
2962 case lltok::kw_ueq: P = CmpInst::FCMP_UEQ; break;
2963 case lltok::kw_une: P = CmpInst::FCMP_UNE; break;
2964 case lltok::kw_ult: P = CmpInst::FCMP_ULT; break;
2965 case lltok::kw_ugt: P = CmpInst::FCMP_UGT; break;
2966 case lltok::kw_ule: P = CmpInst::FCMP_ULE; break;
2967 case lltok::kw_uge: P = CmpInst::FCMP_UGE; break;
2968 case lltok::kw_true: P = CmpInst::FCMP_TRUE; break;
2969 case lltok::kw_false: P = CmpInst::FCMP_FALSE; break;
2970 }
2971 } else {
2972 switch (Lex.getKind()) {
2973 default: TokError("expected icmp predicate (e.g. 'eq')");
2974 case lltok::kw_eq: P = CmpInst::ICMP_EQ; break;
2975 case lltok::kw_ne: P = CmpInst::ICMP_NE; break;
2976 case lltok::kw_slt: P = CmpInst::ICMP_SLT; break;
2977 case lltok::kw_sgt: P = CmpInst::ICMP_SGT; break;
2978 case lltok::kw_sle: P = CmpInst::ICMP_SLE; break;
2979 case lltok::kw_sge: P = CmpInst::ICMP_SGE; break;
2980 case lltok::kw_ult: P = CmpInst::ICMP_ULT; break;
2981 case lltok::kw_ugt: P = CmpInst::ICMP_UGT; break;
2982 case lltok::kw_ule: P = CmpInst::ICMP_ULE; break;
2983 case lltok::kw_uge: P = CmpInst::ICMP_UGE; break;
2984 }
2985 }
2986 Lex.Lex();
2987 return false;
2988}
2989
2990//===----------------------------------------------------------------------===//
2991// Terminator Instructions.
2992//===----------------------------------------------------------------------===//
2993
2994/// ParseRet - Parse a return instruction.
Chris Lattner3f3a0f62009-12-29 21:25:40 +00002995/// ::= 'ret' void (',' !dbg, !1)*
2996/// ::= 'ret' TypeAndValue (',' !dbg, !1)*
Chris Lattner437544f2011-06-17 06:49:41 +00002997bool LLParser::ParseRet(Instruction *&Inst, BasicBlock *BB,
Chris Lattner1afcace2011-07-09 17:41:24 +00002998 PerFunctionState &PFS) {
2999 SMLoc TypeLoc = Lex.getLoc();
3000 Type *Ty = 0;
Chris Lattnera9a9e072009-03-09 04:49:14 +00003001 if (ParseType(Ty, true /*void allowed*/)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003002
Chris Lattner1afcace2011-07-09 17:41:24 +00003003 Type *ResType = PFS.getFunction().getReturnType();
3004
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00003005 if (Ty->isVoidTy()) {
Chris Lattner1afcace2011-07-09 17:41:24 +00003006 if (!ResType->isVoidTy())
3007 return Error(TypeLoc, "value doesn't match function result type '" +
3008 getTypeString(ResType) + "'");
3009
Owen Anderson1d0be152009-08-13 21:58:54 +00003010 Inst = ReturnInst::Create(Context);
Chris Lattnerdf986172009-01-02 07:01:27 +00003011 return false;
3012 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003013
Chris Lattnerdf986172009-01-02 07:01:27 +00003014 Value *RV;
3015 if (ParseValue(Ty, RV, PFS)) return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00003016
Chris Lattner1afcace2011-07-09 17:41:24 +00003017 if (ResType != RV->getType())
3018 return Error(TypeLoc, "value doesn't match function result type '" +
3019 getTypeString(ResType) + "'");
3020
Owen Anderson1d0be152009-08-13 21:58:54 +00003021 Inst = ReturnInst::Create(Context, RV);
Chris Lattner437544f2011-06-17 06:49:41 +00003022 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00003023}
3024
3025
3026/// ParseBr
3027/// ::= 'br' TypeAndValue
3028/// ::= 'br' TypeAndValue ',' TypeAndValue ',' TypeAndValue
3029bool LLParser::ParseBr(Instruction *&Inst, PerFunctionState &PFS) {
3030 LocTy Loc, Loc2;
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003031 Value *Op0;
3032 BasicBlock *Op1, *Op2;
Chris Lattnerdf986172009-01-02 07:01:27 +00003033 if (ParseTypeAndValue(Op0, Loc, PFS)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003034
Chris Lattnerdf986172009-01-02 07:01:27 +00003035 if (BasicBlock *BB = dyn_cast<BasicBlock>(Op0)) {
3036 Inst = BranchInst::Create(BB);
3037 return false;
3038 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003039
Owen Anderson1d0be152009-08-13 21:58:54 +00003040 if (Op0->getType() != Type::getInt1Ty(Context))
Chris Lattnerdf986172009-01-02 07:01:27 +00003041 return Error(Loc, "branch condition must have 'i1' type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003042
Chris Lattnerdf986172009-01-02 07:01:27 +00003043 if (ParseToken(lltok::comma, "expected ',' after branch condition") ||
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003044 ParseTypeAndBasicBlock(Op1, Loc, PFS) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003045 ParseToken(lltok::comma, "expected ',' after true destination") ||
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003046 ParseTypeAndBasicBlock(Op2, Loc2, PFS))
Chris Lattnerdf986172009-01-02 07:01:27 +00003047 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003048
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003049 Inst = BranchInst::Create(Op1, Op2, Op0);
Chris Lattnerdf986172009-01-02 07:01:27 +00003050 return false;
3051}
3052
3053/// ParseSwitch
3054/// Instruction
3055/// ::= 'switch' TypeAndValue ',' TypeAndValue '[' JumpTable ']'
3056/// JumpTable
3057/// ::= (TypeAndValue ',' TypeAndValue)*
3058bool LLParser::ParseSwitch(Instruction *&Inst, PerFunctionState &PFS) {
3059 LocTy CondLoc, BBLoc;
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003060 Value *Cond;
3061 BasicBlock *DefaultBB;
Chris Lattnerdf986172009-01-02 07:01:27 +00003062 if (ParseTypeAndValue(Cond, CondLoc, PFS) ||
3063 ParseToken(lltok::comma, "expected ',' after switch condition") ||
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003064 ParseTypeAndBasicBlock(DefaultBB, BBLoc, PFS) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003065 ParseToken(lltok::lsquare, "expected '[' with switch table"))
3066 return true;
3067
Duncan Sands1df98592010-02-16 11:11:14 +00003068 if (!Cond->getType()->isIntegerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00003069 return Error(CondLoc, "switch condition must have integer type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003070
Chris Lattnerdf986172009-01-02 07:01:27 +00003071 // Parse the jump table pairs.
3072 SmallPtrSet<Value*, 32> SeenCases;
3073 SmallVector<std::pair<ConstantInt*, BasicBlock*>, 32> Table;
3074 while (Lex.getKind() != lltok::rsquare) {
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003075 Value *Constant;
3076 BasicBlock *DestBB;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003077
Chris Lattnerdf986172009-01-02 07:01:27 +00003078 if (ParseTypeAndValue(Constant, CondLoc, PFS) ||
3079 ParseToken(lltok::comma, "expected ',' after case value") ||
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003080 ParseTypeAndBasicBlock(DestBB, PFS))
Chris Lattnerdf986172009-01-02 07:01:27 +00003081 return true;
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003082
Chris Lattnerdf986172009-01-02 07:01:27 +00003083 if (!SeenCases.insert(Constant))
3084 return Error(CondLoc, "duplicate case value in switch");
3085 if (!isa<ConstantInt>(Constant))
3086 return Error(CondLoc, "case value is not a constant integer");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003087
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003088 Table.push_back(std::make_pair(cast<ConstantInt>(Constant), DestBB));
Chris Lattnerdf986172009-01-02 07:01:27 +00003089 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003090
Chris Lattnerdf986172009-01-02 07:01:27 +00003091 Lex.Lex(); // Eat the ']'.
Daniel Dunbara279bc32009-09-20 02:20:51 +00003092
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003093 SwitchInst *SI = SwitchInst::Create(Cond, DefaultBB, Table.size());
Chris Lattnerdf986172009-01-02 07:01:27 +00003094 for (unsigned i = 0, e = Table.size(); i != e; ++i)
3095 SI->addCase(Table[i].first, Table[i].second);
3096 Inst = SI;
3097 return false;
3098}
3099
Chris Lattnerab21db72009-10-28 00:19:10 +00003100/// ParseIndirectBr
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003101/// Instruction
Chris Lattnerab21db72009-10-28 00:19:10 +00003102/// ::= 'indirectbr' TypeAndValue ',' '[' LabelList ']'
3103bool LLParser::ParseIndirectBr(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003104 LocTy AddrLoc;
3105 Value *Address;
3106 if (ParseTypeAndValue(Address, AddrLoc, PFS) ||
Chris Lattnerab21db72009-10-28 00:19:10 +00003107 ParseToken(lltok::comma, "expected ',' after indirectbr address") ||
3108 ParseToken(lltok::lsquare, "expected '[' with indirectbr"))
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003109 return true;
3110
Duncan Sands1df98592010-02-16 11:11:14 +00003111 if (!Address->getType()->isPointerTy())
Chris Lattnerab21db72009-10-28 00:19:10 +00003112 return Error(AddrLoc, "indirectbr address must have pointer type");
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003113
3114 // Parse the destination list.
3115 SmallVector<BasicBlock*, 16> DestList;
3116
3117 if (Lex.getKind() != lltok::rsquare) {
3118 BasicBlock *DestBB;
3119 if (ParseTypeAndBasicBlock(DestBB, PFS))
3120 return true;
3121 DestList.push_back(DestBB);
3122
3123 while (EatIfPresent(lltok::comma)) {
3124 if (ParseTypeAndBasicBlock(DestBB, PFS))
3125 return true;
3126 DestList.push_back(DestBB);
3127 }
3128 }
3129
3130 if (ParseToken(lltok::rsquare, "expected ']' at end of block list"))
3131 return true;
3132
Chris Lattnerab21db72009-10-28 00:19:10 +00003133 IndirectBrInst *IBI = IndirectBrInst::Create(Address, DestList.size());
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003134 for (unsigned i = 0, e = DestList.size(); i != e; ++i)
3135 IBI->addDestination(DestList[i]);
3136 Inst = IBI;
3137 return false;
3138}
3139
3140
Chris Lattnerdf986172009-01-02 07:01:27 +00003141/// ParseInvoke
3142/// ::= 'invoke' OptionalCallingConv OptionalAttrs Type Value ParamList
3143/// OptionalAttrs 'to' TypeAndValue 'unwind' TypeAndValue
3144bool LLParser::ParseInvoke(Instruction *&Inst, PerFunctionState &PFS) {
3145 LocTy CallLoc = Lex.getLoc();
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00003146 unsigned RetAttrs, FnAttrs;
3147 CallingConv::ID CC;
Chris Lattner1afcace2011-07-09 17:41:24 +00003148 Type *RetType = 0;
Chris Lattnerdf986172009-01-02 07:01:27 +00003149 LocTy RetTypeLoc;
3150 ValID CalleeID;
3151 SmallVector<ParamInfo, 16> ArgList;
3152
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003153 BasicBlock *NormalBB, *UnwindBB;
Chris Lattnerdf986172009-01-02 07:01:27 +00003154 if (ParseOptionalCallingConv(CC) ||
3155 ParseOptionalAttrs(RetAttrs, 1) ||
Chris Lattnera9a9e072009-03-09 04:49:14 +00003156 ParseType(RetType, RetTypeLoc, true /*void allowed*/) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003157 ParseValID(CalleeID) ||
3158 ParseParameterList(ArgList, PFS) ||
3159 ParseOptionalAttrs(FnAttrs, 2) ||
3160 ParseToken(lltok::kw_to, "expected 'to' in invoke") ||
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003161 ParseTypeAndBasicBlock(NormalBB, PFS) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003162 ParseToken(lltok::kw_unwind, "expected 'unwind' in invoke") ||
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003163 ParseTypeAndBasicBlock(UnwindBB, PFS))
Chris Lattnerdf986172009-01-02 07:01:27 +00003164 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003165
Chris Lattnerdf986172009-01-02 07:01:27 +00003166 // If RetType is a non-function pointer type, then this is the short syntax
3167 // for the call, which means that RetType is just the return type. Infer the
3168 // rest of the function argument types from the arguments that are present.
3169 const PointerType *PFTy = 0;
3170 const FunctionType *Ty = 0;
3171 if (!(PFTy = dyn_cast<PointerType>(RetType)) ||
3172 !(Ty = dyn_cast<FunctionType>(PFTy->getElementType()))) {
3173 // Pull out the types of all of the arguments...
Jay Foad5fdd6c82011-07-12 14:06:48 +00003174 std::vector<Type*> ParamTypes;
Chris Lattnerdf986172009-01-02 07:01:27 +00003175 for (unsigned i = 0, e = ArgList.size(); i != e; ++i)
3176 ParamTypes.push_back(ArgList[i].V->getType());
Daniel Dunbara279bc32009-09-20 02:20:51 +00003177
Chris Lattnerdf986172009-01-02 07:01:27 +00003178 if (!FunctionType::isValidReturnType(RetType))
3179 return Error(RetTypeLoc, "Invalid result type for LLVM function");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003180
Owen Andersondebcb012009-07-29 22:17:13 +00003181 Ty = FunctionType::get(RetType, ParamTypes, false);
3182 PFTy = PointerType::getUnqual(Ty);
Chris Lattnerdf986172009-01-02 07:01:27 +00003183 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003184
Chris Lattnerdf986172009-01-02 07:01:27 +00003185 // Look up the callee.
3186 Value *Callee;
Victor Hernandez92f238d2010-01-11 22:31:58 +00003187 if (ConvertValIDToValue(PFTy, CalleeID, Callee, &PFS)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003188
Chris Lattnerdf986172009-01-02 07:01:27 +00003189 // Set up the Attributes for the function.
3190 SmallVector<AttributeWithIndex, 8> Attrs;
3191 if (RetAttrs != Attribute::None)
3192 Attrs.push_back(AttributeWithIndex::get(0, RetAttrs));
Daniel Dunbara279bc32009-09-20 02:20:51 +00003193
Chris Lattnerdf986172009-01-02 07:01:27 +00003194 SmallVector<Value*, 8> Args;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003195
Chris Lattnerdf986172009-01-02 07:01:27 +00003196 // Loop through FunctionType's arguments and ensure they are specified
3197 // correctly. Also, gather any parameter attributes.
3198 FunctionType::param_iterator I = Ty->param_begin();
3199 FunctionType::param_iterator E = Ty->param_end();
3200 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
3201 const Type *ExpectedTy = 0;
3202 if (I != E) {
3203 ExpectedTy = *I++;
3204 } else if (!Ty->isVarArg()) {
3205 return Error(ArgList[i].Loc, "too many arguments specified");
3206 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003207
Chris Lattnerdf986172009-01-02 07:01:27 +00003208 if (ExpectedTy && ExpectedTy != ArgList[i].V->getType())
3209 return Error(ArgList[i].Loc, "argument is not of expected type '" +
Chris Lattner0cd0d882011-06-18 21:18:23 +00003210 getTypeString(ExpectedTy) + "'");
Chris Lattnerdf986172009-01-02 07:01:27 +00003211 Args.push_back(ArgList[i].V);
3212 if (ArgList[i].Attrs != Attribute::None)
3213 Attrs.push_back(AttributeWithIndex::get(i+1, ArgList[i].Attrs));
3214 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003215
Chris Lattnerdf986172009-01-02 07:01:27 +00003216 if (I != E)
3217 return Error(CallLoc, "not enough parameters specified for call");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003218
Chris Lattnerdf986172009-01-02 07:01:27 +00003219 if (FnAttrs != Attribute::None)
3220 Attrs.push_back(AttributeWithIndex::get(~0, FnAttrs));
Daniel Dunbara279bc32009-09-20 02:20:51 +00003221
Chris Lattnerdf986172009-01-02 07:01:27 +00003222 // Finish off the Attributes and check them
3223 AttrListPtr PAL = AttrListPtr::get(Attrs.begin(), Attrs.end());
Daniel Dunbara279bc32009-09-20 02:20:51 +00003224
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003225 InvokeInst *II = InvokeInst::Create(Callee, NormalBB, UnwindBB,
Chris Lattnerdf986172009-01-02 07:01:27 +00003226 Args.begin(), Args.end());
3227 II->setCallingConv(CC);
3228 II->setAttributes(PAL);
3229 Inst = II;
3230 return false;
3231}
3232
3233
3234
3235//===----------------------------------------------------------------------===//
3236// Binary Operators.
3237//===----------------------------------------------------------------------===//
3238
3239/// ParseArithmetic
Chris Lattnere914b592009-01-05 08:24:46 +00003240/// ::= ArithmeticOps TypeAndValue ',' Value
3241///
3242/// If OperandType is 0, then any FP or integer operand is allowed. If it is 1,
3243/// then any integer operand is allowed, if it is 2, any fp operand is allowed.
Chris Lattnerdf986172009-01-02 07:01:27 +00003244bool LLParser::ParseArithmetic(Instruction *&Inst, PerFunctionState &PFS,
Chris Lattnere914b592009-01-05 08:24:46 +00003245 unsigned Opc, unsigned OperandType) {
Chris Lattnerdf986172009-01-02 07:01:27 +00003246 LocTy Loc; Value *LHS, *RHS;
3247 if (ParseTypeAndValue(LHS, Loc, PFS) ||
3248 ParseToken(lltok::comma, "expected ',' in arithmetic operation") ||
3249 ParseValue(LHS->getType(), RHS, PFS))
3250 return true;
3251
Chris Lattnere914b592009-01-05 08:24:46 +00003252 bool Valid;
3253 switch (OperandType) {
Torok Edwinc23197a2009-07-14 16:55:14 +00003254 default: llvm_unreachable("Unknown operand type!");
Chris Lattnere914b592009-01-05 08:24:46 +00003255 case 0: // int or FP.
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00003256 Valid = LHS->getType()->isIntOrIntVectorTy() ||
3257 LHS->getType()->isFPOrFPVectorTy();
Chris Lattnere914b592009-01-05 08:24:46 +00003258 break;
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00003259 case 1: Valid = LHS->getType()->isIntOrIntVectorTy(); break;
3260 case 2: Valid = LHS->getType()->isFPOrFPVectorTy(); break;
Chris Lattnere914b592009-01-05 08:24:46 +00003261 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003262
Chris Lattnere914b592009-01-05 08:24:46 +00003263 if (!Valid)
3264 return Error(Loc, "invalid operand type for instruction");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003265
Chris Lattnerdf986172009-01-02 07:01:27 +00003266 Inst = BinaryOperator::Create((Instruction::BinaryOps)Opc, LHS, RHS);
3267 return false;
3268}
3269
3270/// ParseLogical
3271/// ::= ArithmeticOps TypeAndValue ',' Value {
3272bool LLParser::ParseLogical(Instruction *&Inst, PerFunctionState &PFS,
3273 unsigned Opc) {
3274 LocTy Loc; Value *LHS, *RHS;
3275 if (ParseTypeAndValue(LHS, Loc, PFS) ||
3276 ParseToken(lltok::comma, "expected ',' in logical operation") ||
3277 ParseValue(LHS->getType(), RHS, PFS))
3278 return true;
3279
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00003280 if (!LHS->getType()->isIntOrIntVectorTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00003281 return Error(Loc,"instruction requires integer or integer vector operands");
3282
3283 Inst = BinaryOperator::Create((Instruction::BinaryOps)Opc, LHS, RHS);
3284 return false;
3285}
3286
3287
3288/// ParseCompare
3289/// ::= 'icmp' IPredicates TypeAndValue ',' Value
3290/// ::= 'fcmp' FPredicates TypeAndValue ',' Value
Chris Lattnerdf986172009-01-02 07:01:27 +00003291bool LLParser::ParseCompare(Instruction *&Inst, PerFunctionState &PFS,
3292 unsigned Opc) {
3293 // Parse the integer/fp comparison predicate.
3294 LocTy Loc;
3295 unsigned Pred;
3296 Value *LHS, *RHS;
3297 if (ParseCmpPredicate(Pred, Opc) ||
3298 ParseTypeAndValue(LHS, Loc, PFS) ||
3299 ParseToken(lltok::comma, "expected ',' after compare value") ||
3300 ParseValue(LHS->getType(), RHS, PFS))
3301 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003302
Chris Lattnerdf986172009-01-02 07:01:27 +00003303 if (Opc == Instruction::FCmp) {
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00003304 if (!LHS->getType()->isFPOrFPVectorTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00003305 return Error(Loc, "fcmp requires floating point operands");
Dan Gohman1c8a23c2009-08-25 23:17:54 +00003306 Inst = new FCmpInst(CmpInst::Predicate(Pred), LHS, RHS);
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00003307 } else {
3308 assert(Opc == Instruction::ICmp && "Unknown opcode for CmpInst!");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00003309 if (!LHS->getType()->isIntOrIntVectorTy() &&
Duncan Sands1df98592010-02-16 11:11:14 +00003310 !LHS->getType()->isPointerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00003311 return Error(Loc, "icmp requires integer operands");
Dan Gohman1c8a23c2009-08-25 23:17:54 +00003312 Inst = new ICmpInst(CmpInst::Predicate(Pred), LHS, RHS);
Chris Lattnerdf986172009-01-02 07:01:27 +00003313 }
3314 return false;
3315}
3316
3317//===----------------------------------------------------------------------===//
3318// Other Instructions.
3319//===----------------------------------------------------------------------===//
3320
3321
3322/// ParseCast
3323/// ::= CastOpc TypeAndValue 'to' Type
3324bool LLParser::ParseCast(Instruction *&Inst, PerFunctionState &PFS,
3325 unsigned Opc) {
Chris Lattner1afcace2011-07-09 17:41:24 +00003326 LocTy Loc;
3327 Value *Op;
3328 Type *DestTy = 0;
Chris Lattnerdf986172009-01-02 07:01:27 +00003329 if (ParseTypeAndValue(Op, Loc, PFS) ||
3330 ParseToken(lltok::kw_to, "expected 'to' after cast value") ||
3331 ParseType(DestTy))
3332 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003333
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00003334 if (!CastInst::castIsValid((Instruction::CastOps)Opc, Op, DestTy)) {
3335 CastInst::castIsValid((Instruction::CastOps)Opc, Op, DestTy);
Chris Lattnerdf986172009-01-02 07:01:27 +00003336 return Error(Loc, "invalid cast opcode for cast from '" +
Chris Lattner0cd0d882011-06-18 21:18:23 +00003337 getTypeString(Op->getType()) + "' to '" +
3338 getTypeString(DestTy) + "'");
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00003339 }
Chris Lattnerdf986172009-01-02 07:01:27 +00003340 Inst = CastInst::Create((Instruction::CastOps)Opc, Op, DestTy);
3341 return false;
3342}
3343
3344/// ParseSelect
3345/// ::= 'select' TypeAndValue ',' TypeAndValue ',' TypeAndValue
3346bool LLParser::ParseSelect(Instruction *&Inst, PerFunctionState &PFS) {
3347 LocTy Loc;
3348 Value *Op0, *Op1, *Op2;
3349 if (ParseTypeAndValue(Op0, Loc, PFS) ||
3350 ParseToken(lltok::comma, "expected ',' after select condition") ||
3351 ParseTypeAndValue(Op1, PFS) ||
3352 ParseToken(lltok::comma, "expected ',' after select value") ||
3353 ParseTypeAndValue(Op2, PFS))
3354 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003355
Chris Lattnerdf986172009-01-02 07:01:27 +00003356 if (const char *Reason = SelectInst::areInvalidOperands(Op0, Op1, Op2))
3357 return Error(Loc, Reason);
Daniel Dunbara279bc32009-09-20 02:20:51 +00003358
Chris Lattnerdf986172009-01-02 07:01:27 +00003359 Inst = SelectInst::Create(Op0, Op1, Op2);
3360 return false;
3361}
3362
Chris Lattner0088a5c2009-01-05 08:18:44 +00003363/// ParseVA_Arg
3364/// ::= 'va_arg' TypeAndValue ',' Type
3365bool LLParser::ParseVA_Arg(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00003366 Value *Op;
Chris Lattner1afcace2011-07-09 17:41:24 +00003367 Type *EltTy = 0;
Chris Lattner0088a5c2009-01-05 08:18:44 +00003368 LocTy TypeLoc;
Chris Lattnerdf986172009-01-02 07:01:27 +00003369 if (ParseTypeAndValue(Op, PFS) ||
3370 ParseToken(lltok::comma, "expected ',' after vaarg operand") ||
Chris Lattner0088a5c2009-01-05 08:18:44 +00003371 ParseType(EltTy, TypeLoc))
Chris Lattnerdf986172009-01-02 07:01:27 +00003372 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003373
Chris Lattner0088a5c2009-01-05 08:18:44 +00003374 if (!EltTy->isFirstClassType())
3375 return Error(TypeLoc, "va_arg requires operand with first class type");
Chris Lattnerdf986172009-01-02 07:01:27 +00003376
3377 Inst = new VAArgInst(Op, EltTy);
3378 return false;
3379}
3380
3381/// ParseExtractElement
3382/// ::= 'extractelement' TypeAndValue ',' TypeAndValue
3383bool LLParser::ParseExtractElement(Instruction *&Inst, PerFunctionState &PFS) {
3384 LocTy Loc;
3385 Value *Op0, *Op1;
3386 if (ParseTypeAndValue(Op0, Loc, PFS) ||
3387 ParseToken(lltok::comma, "expected ',' after extract value") ||
3388 ParseTypeAndValue(Op1, PFS))
3389 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003390
Chris Lattnerdf986172009-01-02 07:01:27 +00003391 if (!ExtractElementInst::isValidOperands(Op0, Op1))
3392 return Error(Loc, "invalid extractelement operands");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003393
Eric Christophera3500da2009-07-25 02:28:41 +00003394 Inst = ExtractElementInst::Create(Op0, Op1);
Chris Lattnerdf986172009-01-02 07:01:27 +00003395 return false;
3396}
3397
3398/// ParseInsertElement
3399/// ::= 'insertelement' TypeAndValue ',' TypeAndValue ',' TypeAndValue
3400bool LLParser::ParseInsertElement(Instruction *&Inst, PerFunctionState &PFS) {
3401 LocTy Loc;
3402 Value *Op0, *Op1, *Op2;
3403 if (ParseTypeAndValue(Op0, Loc, PFS) ||
3404 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
3405 ParseTypeAndValue(Op1, PFS) ||
3406 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
3407 ParseTypeAndValue(Op2, PFS))
3408 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003409
Chris Lattnerdf986172009-01-02 07:01:27 +00003410 if (!InsertElementInst::isValidOperands(Op0, Op1, Op2))
Eric Christopher0aaf4e92009-07-23 01:01:32 +00003411 return Error(Loc, "invalid insertelement operands");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003412
Chris Lattnerdf986172009-01-02 07:01:27 +00003413 Inst = InsertElementInst::Create(Op0, Op1, Op2);
3414 return false;
3415}
3416
3417/// ParseShuffleVector
3418/// ::= 'shufflevector' TypeAndValue ',' TypeAndValue ',' TypeAndValue
3419bool LLParser::ParseShuffleVector(Instruction *&Inst, PerFunctionState &PFS) {
3420 LocTy Loc;
3421 Value *Op0, *Op1, *Op2;
3422 if (ParseTypeAndValue(Op0, Loc, PFS) ||
3423 ParseToken(lltok::comma, "expected ',' after shuffle mask") ||
3424 ParseTypeAndValue(Op1, PFS) ||
3425 ParseToken(lltok::comma, "expected ',' after shuffle value") ||
3426 ParseTypeAndValue(Op2, PFS))
3427 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003428
Chris Lattnerdf986172009-01-02 07:01:27 +00003429 if (!ShuffleVectorInst::isValidOperands(Op0, Op1, Op2))
3430 return Error(Loc, "invalid extractelement operands");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003431
Chris Lattnerdf986172009-01-02 07:01:27 +00003432 Inst = new ShuffleVectorInst(Op0, Op1, Op2);
3433 return false;
3434}
3435
3436/// ParsePHI
Chris Lattnerc6e20092009-10-18 05:27:44 +00003437/// ::= 'phi' Type '[' Value ',' Value ']' (',' '[' Value ',' Value ']')*
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003438int LLParser::ParsePHI(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattner1afcace2011-07-09 17:41:24 +00003439 Type *Ty = 0; LocTy TypeLoc;
Chris Lattnerdf986172009-01-02 07:01:27 +00003440 Value *Op0, *Op1;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003441
Chris Lattner1afcace2011-07-09 17:41:24 +00003442 if (ParseType(Ty, TypeLoc) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003443 ParseToken(lltok::lsquare, "expected '[' in phi value list") ||
3444 ParseValue(Ty, Op0, PFS) ||
3445 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
Owen Anderson1d0be152009-08-13 21:58:54 +00003446 ParseValue(Type::getLabelTy(Context), Op1, PFS) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003447 ParseToken(lltok::rsquare, "expected ']' in phi value list"))
3448 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003449
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003450 bool AteExtraComma = false;
Chris Lattnerdf986172009-01-02 07:01:27 +00003451 SmallVector<std::pair<Value*, BasicBlock*>, 16> PHIVals;
3452 while (1) {
3453 PHIVals.push_back(std::make_pair(Op0, cast<BasicBlock>(Op1)));
Daniel Dunbara279bc32009-09-20 02:20:51 +00003454
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003455 if (!EatIfPresent(lltok::comma))
Chris Lattnerdf986172009-01-02 07:01:27 +00003456 break;
3457
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003458 if (Lex.getKind() == lltok::MetadataVar) {
3459 AteExtraComma = true;
Devang Patela43d46f2009-10-16 18:45:49 +00003460 break;
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003461 }
Devang Patela43d46f2009-10-16 18:45:49 +00003462
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003463 if (ParseToken(lltok::lsquare, "expected '[' in phi value list") ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003464 ParseValue(Ty, Op0, PFS) ||
3465 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
Owen Anderson1d0be152009-08-13 21:58:54 +00003466 ParseValue(Type::getLabelTy(Context), Op1, PFS) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003467 ParseToken(lltok::rsquare, "expected ']' in phi value list"))
3468 return true;
3469 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003470
Chris Lattnerdf986172009-01-02 07:01:27 +00003471 if (!Ty->isFirstClassType())
3472 return Error(TypeLoc, "phi node must have first class type");
3473
Jay Foad3ecfc862011-03-30 11:28:46 +00003474 PHINode *PN = PHINode::Create(Ty, PHIVals.size());
Chris Lattnerdf986172009-01-02 07:01:27 +00003475 for (unsigned i = 0, e = PHIVals.size(); i != e; ++i)
3476 PN->addIncoming(PHIVals[i].first, PHIVals[i].second);
3477 Inst = PN;
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003478 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerdf986172009-01-02 07:01:27 +00003479}
3480
3481/// ParseCall
3482/// ::= 'tail'? 'call' OptionalCallingConv OptionalAttrs Type Value
3483/// ParameterList OptionalAttrs
3484bool LLParser::ParseCall(Instruction *&Inst, PerFunctionState &PFS,
3485 bool isTail) {
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00003486 unsigned RetAttrs, FnAttrs;
3487 CallingConv::ID CC;
Chris Lattner1afcace2011-07-09 17:41:24 +00003488 Type *RetType = 0;
Chris Lattnerdf986172009-01-02 07:01:27 +00003489 LocTy RetTypeLoc;
3490 ValID CalleeID;
3491 SmallVector<ParamInfo, 16> ArgList;
3492 LocTy CallLoc = Lex.getLoc();
Daniel Dunbara279bc32009-09-20 02:20:51 +00003493
Chris Lattnerdf986172009-01-02 07:01:27 +00003494 if ((isTail && ParseToken(lltok::kw_call, "expected 'tail call'")) ||
3495 ParseOptionalCallingConv(CC) ||
3496 ParseOptionalAttrs(RetAttrs, 1) ||
Chris Lattnera9a9e072009-03-09 04:49:14 +00003497 ParseType(RetType, RetTypeLoc, true /*void allowed*/) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003498 ParseValID(CalleeID) ||
3499 ParseParameterList(ArgList, PFS) ||
3500 ParseOptionalAttrs(FnAttrs, 2))
3501 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003502
Chris Lattnerdf986172009-01-02 07:01:27 +00003503 // If RetType is a non-function pointer type, then this is the short syntax
3504 // for the call, which means that RetType is just the return type. Infer the
3505 // rest of the function argument types from the arguments that are present.
3506 const PointerType *PFTy = 0;
3507 const FunctionType *Ty = 0;
3508 if (!(PFTy = dyn_cast<PointerType>(RetType)) ||
3509 !(Ty = dyn_cast<FunctionType>(PFTy->getElementType()))) {
3510 // Pull out the types of all of the arguments...
Jay Foad5fdd6c82011-07-12 14:06:48 +00003511 std::vector<Type*> ParamTypes;
Eli Friedman83b4a972010-07-24 23:06:59 +00003512 for (unsigned i = 0, e = ArgList.size(); i != e; ++i)
3513 ParamTypes.push_back(ArgList[i].V->getType());
Daniel Dunbara279bc32009-09-20 02:20:51 +00003514
Chris Lattnerdf986172009-01-02 07:01:27 +00003515 if (!FunctionType::isValidReturnType(RetType))
3516 return Error(RetTypeLoc, "Invalid result type for LLVM function");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003517
Owen Andersondebcb012009-07-29 22:17:13 +00003518 Ty = FunctionType::get(RetType, ParamTypes, false);
3519 PFTy = PointerType::getUnqual(Ty);
Chris Lattnerdf986172009-01-02 07:01:27 +00003520 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003521
Chris Lattnerdf986172009-01-02 07:01:27 +00003522 // Look up the callee.
3523 Value *Callee;
Victor Hernandez92f238d2010-01-11 22:31:58 +00003524 if (ConvertValIDToValue(PFTy, CalleeID, Callee, &PFS)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003525
Chris Lattnerdf986172009-01-02 07:01:27 +00003526 // Set up the Attributes for the function.
3527 SmallVector<AttributeWithIndex, 8> Attrs;
3528 if (RetAttrs != Attribute::None)
3529 Attrs.push_back(AttributeWithIndex::get(0, RetAttrs));
Daniel Dunbara279bc32009-09-20 02:20:51 +00003530
Chris Lattnerdf986172009-01-02 07:01:27 +00003531 SmallVector<Value*, 8> Args;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003532
Chris Lattnerdf986172009-01-02 07:01:27 +00003533 // Loop through FunctionType's arguments and ensure they are specified
3534 // correctly. Also, gather any parameter attributes.
3535 FunctionType::param_iterator I = Ty->param_begin();
3536 FunctionType::param_iterator E = Ty->param_end();
3537 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
3538 const Type *ExpectedTy = 0;
3539 if (I != E) {
3540 ExpectedTy = *I++;
3541 } else if (!Ty->isVarArg()) {
3542 return Error(ArgList[i].Loc, "too many arguments specified");
3543 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003544
Chris Lattnerdf986172009-01-02 07:01:27 +00003545 if (ExpectedTy && ExpectedTy != ArgList[i].V->getType())
3546 return Error(ArgList[i].Loc, "argument is not of expected type '" +
Chris Lattner0cd0d882011-06-18 21:18:23 +00003547 getTypeString(ExpectedTy) + "'");
Chris Lattnerdf986172009-01-02 07:01:27 +00003548 Args.push_back(ArgList[i].V);
3549 if (ArgList[i].Attrs != Attribute::None)
3550 Attrs.push_back(AttributeWithIndex::get(i+1, ArgList[i].Attrs));
3551 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003552
Chris Lattnerdf986172009-01-02 07:01:27 +00003553 if (I != E)
3554 return Error(CallLoc, "not enough parameters specified for call");
3555
3556 if (FnAttrs != Attribute::None)
3557 Attrs.push_back(AttributeWithIndex::get(~0, FnAttrs));
3558
3559 // Finish off the Attributes and check them
3560 AttrListPtr PAL = AttrListPtr::get(Attrs.begin(), Attrs.end());
Daniel Dunbara279bc32009-09-20 02:20:51 +00003561
Chris Lattnerdf986172009-01-02 07:01:27 +00003562 CallInst *CI = CallInst::Create(Callee, Args.begin(), Args.end());
3563 CI->setTailCall(isTail);
3564 CI->setCallingConv(CC);
3565 CI->setAttributes(PAL);
3566 Inst = CI;
3567 return false;
3568}
3569
3570//===----------------------------------------------------------------------===//
3571// Memory Instructions.
3572//===----------------------------------------------------------------------===//
3573
3574/// ParseAlloc
Devang Patelf633a062009-09-17 23:04:48 +00003575/// ::= 'alloca' Type (',' TypeAndValue)? (',' OptionalInfo)?
Chris Lattnerf3a789d2011-06-17 03:16:47 +00003576int LLParser::ParseAlloc(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00003577 Value *Size = 0;
Chris Lattnereeb4a842009-07-02 23:08:13 +00003578 LocTy SizeLoc;
Chris Lattnerdf986172009-01-02 07:01:27 +00003579 unsigned Alignment = 0;
Chris Lattner1afcace2011-07-09 17:41:24 +00003580 Type *Ty = 0;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003581 if (ParseType(Ty)) return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00003582
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00003583 bool AteExtraComma = false;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003584 if (EatIfPresent(lltok::comma)) {
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00003585 if (Lex.getKind() == lltok::kw_align) {
3586 if (ParseOptionalAlignment(Alignment)) return true;
3587 } else if (Lex.getKind() == lltok::MetadataVar) {
3588 AteExtraComma = true;
Devang Patelf633a062009-09-17 23:04:48 +00003589 } else {
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00003590 if (ParseTypeAndValue(Size, SizeLoc, PFS) ||
3591 ParseOptionalCommaAlign(Alignment, AteExtraComma))
3592 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00003593 }
3594 }
3595
Dan Gohmanf75a7d32010-05-28 01:14:11 +00003596 if (Size && !Size->getType()->isIntegerTy())
3597 return Error(SizeLoc, "element count must have integer type");
Chris Lattnerdf986172009-01-02 07:01:27 +00003598
Chris Lattnerf3a789d2011-06-17 03:16:47 +00003599 Inst = new AllocaInst(Ty, Size, Alignment);
3600 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerdf986172009-01-02 07:01:27 +00003601}
3602
3603/// ParseLoad
Devang Patelf633a062009-09-17 23:04:48 +00003604/// ::= 'volatile'? 'load' TypeAndValue (',' OptionalInfo)?
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00003605int LLParser::ParseLoad(Instruction *&Inst, PerFunctionState &PFS,
3606 bool isVolatile) {
Chris Lattnerdf986172009-01-02 07:01:27 +00003607 Value *Val; LocTy Loc;
Devang Patelf633a062009-09-17 23:04:48 +00003608 unsigned Alignment = 0;
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00003609 bool AteExtraComma = false;
3610 if (ParseTypeAndValue(Val, Loc, PFS) ||
3611 ParseOptionalCommaAlign(Alignment, AteExtraComma))
3612 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00003613
Duncan Sands1df98592010-02-16 11:11:14 +00003614 if (!Val->getType()->isPointerTy() ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003615 !cast<PointerType>(Val->getType())->getElementType()->isFirstClassType())
3616 return Error(Loc, "load operand must be a pointer to a first class type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003617
Chris Lattnerdf986172009-01-02 07:01:27 +00003618 Inst = new LoadInst(Val, "", isVolatile, Alignment);
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00003619 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerdf986172009-01-02 07:01:27 +00003620}
3621
3622/// ParseStore
Dan Gohmana119de82009-06-14 23:30:43 +00003623/// ::= 'volatile'? 'store' TypeAndValue ',' TypeAndValue (',' 'align' i32)?
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00003624int LLParser::ParseStore(Instruction *&Inst, PerFunctionState &PFS,
3625 bool isVolatile) {
Chris Lattnerdf986172009-01-02 07:01:27 +00003626 Value *Val, *Ptr; LocTy Loc, PtrLoc;
Devang Patelf633a062009-09-17 23:04:48 +00003627 unsigned Alignment = 0;
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00003628 bool AteExtraComma = false;
Chris Lattnerdf986172009-01-02 07:01:27 +00003629 if (ParseTypeAndValue(Val, Loc, PFS) ||
3630 ParseToken(lltok::comma, "expected ',' after store operand") ||
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00003631 ParseTypeAndValue(Ptr, PtrLoc, PFS) ||
3632 ParseOptionalCommaAlign(Alignment, AteExtraComma))
Chris Lattnerdf986172009-01-02 07:01:27 +00003633 return true;
Devang Patelf633a062009-09-17 23:04:48 +00003634
Duncan Sands1df98592010-02-16 11:11:14 +00003635 if (!Ptr->getType()->isPointerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00003636 return Error(PtrLoc, "store operand must be a pointer");
3637 if (!Val->getType()->isFirstClassType())
3638 return Error(Loc, "store operand must be a first class value");
3639 if (cast<PointerType>(Ptr->getType())->getElementType() != Val->getType())
3640 return Error(Loc, "stored value and pointer type do not match");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003641
Chris Lattnerdf986172009-01-02 07:01:27 +00003642 Inst = new StoreInst(Val, Ptr, isVolatile, Alignment);
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00003643 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerdf986172009-01-02 07:01:27 +00003644}
3645
Chris Lattnerdf986172009-01-02 07:01:27 +00003646/// ParseGetElementPtr
Dan Gohmandd8004d2009-07-27 21:53:46 +00003647/// ::= 'getelementptr' 'inbounds'? TypeAndValue (',' TypeAndValue)*
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003648int LLParser::ParseGetElementPtr(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00003649 Value *Ptr, *Val; LocTy Loc, EltLoc;
Dan Gohmandd8004d2009-07-27 21:53:46 +00003650
Dan Gohmandcb40a32009-07-29 15:58:36 +00003651 bool InBounds = EatIfPresent(lltok::kw_inbounds);
Dan Gohmandd8004d2009-07-27 21:53:46 +00003652
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003653 if (ParseTypeAndValue(Ptr, Loc, PFS)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003654
Duncan Sands1df98592010-02-16 11:11:14 +00003655 if (!Ptr->getType()->isPointerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00003656 return Error(Loc, "base of getelementptr must be a pointer");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003657
Chris Lattnerdf986172009-01-02 07:01:27 +00003658 SmallVector<Value*, 16> Indices;
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003659 bool AteExtraComma = false;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003660 while (EatIfPresent(lltok::comma)) {
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003661 if (Lex.getKind() == lltok::MetadataVar) {
3662 AteExtraComma = true;
Devang Patel6225d642009-10-13 18:49:55 +00003663 break;
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003664 }
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003665 if (ParseTypeAndValue(Val, EltLoc, PFS)) return true;
Duncan Sands1df98592010-02-16 11:11:14 +00003666 if (!Val->getType()->isIntegerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00003667 return Error(EltLoc, "getelementptr index must be an integer");
3668 Indices.push_back(Val);
3669 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003670
Chris Lattnerdf986172009-01-02 07:01:27 +00003671 if (!GetElementPtrInst::getIndexedType(Ptr->getType(),
3672 Indices.begin(), Indices.end()))
3673 return Error(Loc, "invalid getelementptr indices");
3674 Inst = GetElementPtrInst::Create(Ptr, Indices.begin(), Indices.end());
Dan Gohmandd8004d2009-07-27 21:53:46 +00003675 if (InBounds)
Dan Gohmanf8dbee72009-09-07 23:54:19 +00003676 cast<GetElementPtrInst>(Inst)->setIsInBounds(true);
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003677 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerdf986172009-01-02 07:01:27 +00003678}
3679
3680/// ParseExtractValue
3681/// ::= 'extractvalue' TypeAndValue (',' uint32)+
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003682int LLParser::ParseExtractValue(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00003683 Value *Val; LocTy Loc;
3684 SmallVector<unsigned, 4> Indices;
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003685 bool AteExtraComma;
Chris Lattnerdf986172009-01-02 07:01:27 +00003686 if (ParseTypeAndValue(Val, Loc, PFS) ||
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003687 ParseIndexList(Indices, AteExtraComma))
Chris Lattnerdf986172009-01-02 07:01:27 +00003688 return true;
3689
Chris Lattnerfdfeb692010-02-12 20:49:41 +00003690 if (!Val->getType()->isAggregateType())
3691 return Error(Loc, "extractvalue operand must be aggregate type");
Chris Lattnerdf986172009-01-02 07:01:27 +00003692
3693 if (!ExtractValueInst::getIndexedType(Val->getType(), Indices.begin(),
3694 Indices.end()))
3695 return Error(Loc, "invalid indices for extractvalue");
3696 Inst = ExtractValueInst::Create(Val, Indices.begin(), Indices.end());
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003697 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerdf986172009-01-02 07:01:27 +00003698}
3699
3700/// ParseInsertValue
3701/// ::= 'insertvalue' TypeAndValue ',' TypeAndValue (',' uint32)+
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003702int LLParser::ParseInsertValue(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00003703 Value *Val0, *Val1; LocTy Loc0, Loc1;
3704 SmallVector<unsigned, 4> Indices;
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003705 bool AteExtraComma;
Chris Lattnerdf986172009-01-02 07:01:27 +00003706 if (ParseTypeAndValue(Val0, Loc0, PFS) ||
3707 ParseToken(lltok::comma, "expected comma after insertvalue operand") ||
3708 ParseTypeAndValue(Val1, Loc1, PFS) ||
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003709 ParseIndexList(Indices, AteExtraComma))
Chris Lattnerdf986172009-01-02 07:01:27 +00003710 return true;
Chris Lattner628c13a2009-12-30 05:14:00 +00003711
Chris Lattnerfdfeb692010-02-12 20:49:41 +00003712 if (!Val0->getType()->isAggregateType())
3713 return Error(Loc0, "insertvalue operand must be aggregate type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003714
Chris Lattnerdf986172009-01-02 07:01:27 +00003715 if (!ExtractValueInst::getIndexedType(Val0->getType(), Indices.begin(),
3716 Indices.end()))
3717 return Error(Loc0, "invalid indices for insertvalue");
3718 Inst = InsertValueInst::Create(Val0, Val1, Indices.begin(), Indices.end());
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003719 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerdf986172009-01-02 07:01:27 +00003720}
Nick Lewycky21cc4462009-04-04 07:22:01 +00003721
3722//===----------------------------------------------------------------------===//
3723// Embedded metadata.
3724//===----------------------------------------------------------------------===//
3725
3726/// ParseMDNodeVector
Nick Lewyckycb337992009-05-10 20:57:05 +00003727/// ::= Element (',' Element)*
3728/// Element
3729/// ::= 'null' | TypeAndValue
Victor Hernandezbf170d42010-01-05 22:22:14 +00003730bool LLParser::ParseMDNodeVector(SmallVectorImpl<Value*> &Elts,
Victor Hernandez24e64df2010-01-10 07:14:18 +00003731 PerFunctionState *PFS) {
Dan Gohmanac809752010-07-13 19:33:27 +00003732 // Check for an empty list.
3733 if (Lex.getKind() == lltok::rbrace)
3734 return false;
3735
Nick Lewycky21cc4462009-04-04 07:22:01 +00003736 do {
Chris Lattnera7352392009-12-30 04:42:57 +00003737 // Null is a special case since it is typeless.
3738 if (EatIfPresent(lltok::kw_null)) {
3739 Elts.push_back(0);
3740 continue;
Nick Lewyckycb337992009-05-10 20:57:05 +00003741 }
Chris Lattnera7352392009-12-30 04:42:57 +00003742
3743 Value *V = 0;
Chris Lattner1afcace2011-07-09 17:41:24 +00003744 if (ParseTypeAndValue(V, PFS)) return true;
Nick Lewyckycb337992009-05-10 20:57:05 +00003745 Elts.push_back(V);
Nick Lewycky21cc4462009-04-04 07:22:01 +00003746 } while (EatIfPresent(lltok::comma));
3747
3748 return false;
3749}