blob: 941a371819e58311f0f5a3dd937bd17c9e82728f [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"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000015#include "llvm/ADT/SmallPtrSet.h"
Chris Lattnerdf986172009-01-02 07:01:27 +000016#include "llvm/AutoUpgrade.h"
Chandler Carruth0b8c9a82013-01-02 11:36:10 +000017#include "llvm/IR/CallingConv.h"
18#include "llvm/IR/Constants.h"
19#include "llvm/IR/DerivedTypes.h"
20#include "llvm/IR/InlineAsm.h"
21#include "llvm/IR/Instructions.h"
22#include "llvm/IR/Module.h"
23#include "llvm/IR/Operator.h"
24#include "llvm/IR/ValueSymbolTable.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 Lattnerdb125cf2011-07-18 04:54:35 +000029static std::string getTypeString(Type *T) {
Chris Lattner0cd0d882011-06-18 21:18:23 +000030 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;
Michael Ilseman407a6162012-11-15 22:34:00 +000055
Chris Lattner449c3102010-04-01 05:14:45 +000056 for (unsigned i = 0, e = MDList.size(); i != e; ++i) {
57 unsigned SlotNo = MDList[i].MDSlot;
Michael Ilseman407a6162012-11-15 22:34:00 +000058
Chris Lattner449c3102010-04-01 05:14:45 +000059 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 }
Michael Ilseman407a6162012-11-15 22:34:00 +000067
Bill Wendlingbaad55c2013-02-08 06:32:06 +000068 // Handle any function attribute group forward references.
69 for (std::map<Value*, std::vector<unsigned> >::iterator
70 I = ForwardRefAttrGroups.begin(), E = ForwardRefAttrGroups.end();
71 I != E; ++I) {
72 Value *V = I->first;
73 std::vector<unsigned> &Vec = I->second;
74 AttrBuilder B;
75
76 for (std::vector<unsigned>::iterator VI = Vec.begin(), VE = Vec.end();
77 VI != VE; ++VI)
78 B.merge(NumberedAttrBuilders[*VI]);
79
80 if (Function *Fn = dyn_cast<Function>(V)) {
81 AttributeSet AS = Fn->getAttributes();
82 AttrBuilder FnAttrs(AS.getFnAttributes(), AttributeSet::FunctionIndex);
83 AS = AS.removeAttributes(Context, AttributeSet::FunctionIndex,
84 AS.getFnAttributes());
85
86 FnAttrs.merge(B);
87
88 // If the alignment was parsed as an attribute, move to the alignment
89 // field.
90 if (FnAttrs.hasAlignmentAttr()) {
91 Fn->setAlignment(FnAttrs.getAlignment());
92 FnAttrs.removeAttribute(Attribute::Alignment);
93 }
94
95 AS = AS.addAttributes(Context, AttributeSet::FunctionIndex,
96 AttributeSet::get(Context,
97 AttributeSet::FunctionIndex,
98 FnAttrs));
99 Fn->setAttributes(AS);
100 } else if (CallInst *CI = dyn_cast<CallInst>(V)) {
101 AttributeSet AS = CI->getAttributes();
102 AttrBuilder FnAttrs(AS.getFnAttributes(), AttributeSet::FunctionIndex);
103 AS = AS.removeAttributes(Context, AttributeSet::FunctionIndex,
104 AS.getFnAttributes());
Bill Wendlingf5467622013-02-12 10:13:06 +0000105 FnAttrs.merge(B);
Bill Wendlingbaad55c2013-02-08 06:32:06 +0000106 AS = AS.addAttributes(Context, AttributeSet::FunctionIndex,
107 AttributeSet::get(Context,
108 AttributeSet::FunctionIndex,
109 FnAttrs));
110 CI->setAttributes(AS);
111 } else if (InvokeInst *II = dyn_cast<InvokeInst>(V)) {
112 AttributeSet AS = II->getAttributes();
113 AttrBuilder FnAttrs(AS.getFnAttributes(), AttributeSet::FunctionIndex);
114 AS = AS.removeAttributes(Context, AttributeSet::FunctionIndex,
115 AS.getFnAttributes());
Bill Wendlingf5467622013-02-12 10:13:06 +0000116 FnAttrs.merge(B);
Bill Wendlingbaad55c2013-02-08 06:32:06 +0000117 AS = AS.addAttributes(Context, AttributeSet::FunctionIndex,
118 AttributeSet::get(Context,
119 AttributeSet::FunctionIndex,
120 FnAttrs));
121 II->setAttributes(AS);
122 } else {
123 llvm_unreachable("invalid object with forward attribute group reference");
124 }
125 }
Michael Ilseman407a6162012-11-15 22:34:00 +0000126
Chris Lattner09d9ef42009-10-28 03:39:23 +0000127 // If there are entries in ForwardRefBlockAddresses at this point, they are
128 // references after the function was defined. Resolve those now.
129 while (!ForwardRefBlockAddresses.empty()) {
130 // Okay, we are referencing an already-parsed function, resolve them now.
131 Function *TheFn = 0;
132 const ValID &Fn = ForwardRefBlockAddresses.begin()->first;
133 if (Fn.Kind == ValID::t_GlobalName)
134 TheFn = M->getFunction(Fn.StrVal);
135 else if (Fn.UIntVal < NumberedVals.size())
136 TheFn = dyn_cast<Function>(NumberedVals[Fn.UIntVal]);
Michael Ilseman407a6162012-11-15 22:34:00 +0000137
Chris Lattner09d9ef42009-10-28 03:39:23 +0000138 if (TheFn == 0)
139 return Error(Fn.Loc, "unknown function referenced by blockaddress");
Michael Ilseman407a6162012-11-15 22:34:00 +0000140
Chris Lattner09d9ef42009-10-28 03:39:23 +0000141 // Resolve all these references.
Michael Ilseman407a6162012-11-15 22:34:00 +0000142 if (ResolveForwardRefBlockAddresses(TheFn,
Chris Lattner09d9ef42009-10-28 03:39:23 +0000143 ForwardRefBlockAddresses.begin()->second,
144 0))
145 return true;
Michael Ilseman407a6162012-11-15 22:34:00 +0000146
Chris Lattner09d9ef42009-10-28 03:39:23 +0000147 ForwardRefBlockAddresses.erase(ForwardRefBlockAddresses.begin());
148 }
Michael Ilseman407a6162012-11-15 22:34:00 +0000149
Chris Lattner1afcace2011-07-09 17:41:24 +0000150 for (unsigned i = 0, e = NumberedTypes.size(); i != e; ++i)
151 if (NumberedTypes[i].second.isValid())
152 return Error(NumberedTypes[i].second,
153 "use of undefined type '%" + Twine(i) + "'");
154
155 for (StringMap<std::pair<Type*, LocTy> >::iterator I =
156 NamedTypes.begin(), E = NamedTypes.end(); I != E; ++I)
157 if (I->second.second.isValid())
158 return Error(I->second.second,
159 "use of undefined type named '" + I->getKey() + "'");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000160
Chris Lattnerdf986172009-01-02 07:01:27 +0000161 if (!ForwardRefVals.empty())
162 return Error(ForwardRefVals.begin()->second.second,
163 "use of undefined value '@" + ForwardRefVals.begin()->first +
164 "'");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000165
Chris Lattnerdf986172009-01-02 07:01:27 +0000166 if (!ForwardRefValIDs.empty())
167 return Error(ForwardRefValIDs.begin()->second.second,
168 "use of undefined value '@" +
Benjamin Kramerd1e17032010-09-27 17:42:11 +0000169 Twine(ForwardRefValIDs.begin()->first) + "'");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000170
Devang Patel1c7eea62009-07-08 19:23:54 +0000171 if (!ForwardRefMDNodes.empty())
172 return Error(ForwardRefMDNodes.begin()->second.second,
173 "use of undefined metadata '!" +
Benjamin Kramerd1e17032010-09-27 17:42:11 +0000174 Twine(ForwardRefMDNodes.begin()->first) + "'");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000175
Devang Patel1c7eea62009-07-08 19:23:54 +0000176
Chris Lattnerdf986172009-01-02 07:01:27 +0000177 // Look for intrinsic functions and CallInst that need to be upgraded
178 for (Module::iterator FI = M->begin(), FE = M->end(); FI != FE; )
179 UpgradeCallsToIntrinsic(FI++); // must be post-increment, as we remove
Daniel Dunbara279bc32009-09-20 02:20:51 +0000180
Chris Lattnerdf986172009-01-02 07:01:27 +0000181 return false;
182}
183
Michael Ilseman407a6162012-11-15 22:34:00 +0000184bool LLParser::ResolveForwardRefBlockAddresses(Function *TheFn,
Chris Lattner09d9ef42009-10-28 03:39:23 +0000185 std::vector<std::pair<ValID, GlobalValue*> > &Refs,
186 PerFunctionState *PFS) {
187 // Loop over all the references, resolving them.
188 for (unsigned i = 0, e = Refs.size(); i != e; ++i) {
189 BasicBlock *Res;
Chris Lattnercdfc9402009-11-01 01:27:45 +0000190 if (PFS) {
Chris Lattner09d9ef42009-10-28 03:39:23 +0000191 if (Refs[i].first.Kind == ValID::t_LocalName)
192 Res = PFS->GetBB(Refs[i].first.StrVal, Refs[i].first.Loc);
Chris Lattnercdfc9402009-11-01 01:27:45 +0000193 else
Chris Lattner09d9ef42009-10-28 03:39:23 +0000194 Res = PFS->GetBB(Refs[i].first.UIntVal, Refs[i].first.Loc);
195 } else if (Refs[i].first.Kind == ValID::t_LocalID) {
196 return Error(Refs[i].first.Loc,
Chris Lattneree7644d2009-11-02 18:28:45 +0000197 "cannot take address of numeric label after the function is defined");
Chris Lattner09d9ef42009-10-28 03:39:23 +0000198 } else {
199 Res = dyn_cast_or_null<BasicBlock>(
200 TheFn->getValueSymbolTable().lookup(Refs[i].first.StrVal));
201 }
Michael Ilseman407a6162012-11-15 22:34:00 +0000202
Chris Lattnercdfc9402009-11-01 01:27:45 +0000203 if (Res == 0)
Chris Lattner09d9ef42009-10-28 03:39:23 +0000204 return Error(Refs[i].first.Loc,
205 "referenced value is not a basic block");
Michael Ilseman407a6162012-11-15 22:34:00 +0000206
Chris Lattner09d9ef42009-10-28 03:39:23 +0000207 // Get the BlockAddress for this and update references to use it.
208 BlockAddress *BA = BlockAddress::get(TheFn, Res);
209 Refs[i].second->replaceAllUsesWith(BA);
210 Refs[i].second->eraseFromParent();
211 }
212 return false;
213}
214
215
Chris Lattnerdf986172009-01-02 07:01:27 +0000216//===----------------------------------------------------------------------===//
217// Top-Level Entities
218//===----------------------------------------------------------------------===//
219
220bool LLParser::ParseTopLevelEntities() {
Chris Lattnerdf986172009-01-02 07:01:27 +0000221 while (1) {
222 switch (Lex.getKind()) {
223 default: return TokError("expected top-level entity");
224 case lltok::Eof: return false;
Chris Lattnerdf986172009-01-02 07:01:27 +0000225 case lltok::kw_declare: if (ParseDeclare()) return true; break;
226 case lltok::kw_define: if (ParseDefine()) return true; break;
227 case lltok::kw_module: if (ParseModuleAsm()) return true; break;
228 case lltok::kw_target: if (ParseTargetDefinition()) return true; break;
Bill Wendling3defc0b2012-11-28 08:41:48 +0000229 case lltok::kw_deplibs: if (ParseDepLibs()) return true; break;
Dan Gohman3845e502009-08-12 23:32:33 +0000230 case lltok::LocalVarID: if (ParseUnnamedType()) return true; break;
Chris Lattnerdf986172009-01-02 07:01:27 +0000231 case lltok::LocalVar: if (ParseNamedType()) return true; break;
Dan Gohman3845e502009-08-12 23:32:33 +0000232 case lltok::GlobalID: if (ParseUnnamedGlobal()) return true; break;
Chris Lattnerdf986172009-01-02 07:01:27 +0000233 case lltok::GlobalVar: if (ParseNamedGlobal()) return true; break;
Chris Lattnere434d272009-12-30 04:56:59 +0000234 case lltok::exclaim: if (ParseStandaloneMetadata()) return true; break;
Bill Wendling95ce4c22013-02-06 06:52:58 +0000235 case lltok::MetadataVar:if (ParseNamedMetadata()) return true; break;
Chris Lattnerdf986172009-01-02 07:01:27 +0000236
237 // The Global variable production with no name can have many different
238 // optional leading prefixes, the production is:
239 // GlobalVar ::= OptionalLinkage OptionalVisibility OptionalThreadLocal
Rafael Espindolabea46262011-01-08 16:42:36 +0000240 // OptionalAddrSpace OptionalUnNammedAddr
241 // ('constant'|'global') ...
Bill Wendling5e721d72010-07-01 21:55:59 +0000242 case lltok::kw_private: // OptionalLinkage
243 case lltok::kw_linker_private: // OptionalLinkage
244 case lltok::kw_linker_private_weak: // OptionalLinkage
Bill Wendling32811be2012-08-17 18:33:14 +0000245 case lltok::kw_linker_private_weak_def_auto: // FIXME: backwards compat.
Bill Wendling5e721d72010-07-01 21:55:59 +0000246 case lltok::kw_internal: // OptionalLinkage
247 case lltok::kw_weak: // OptionalLinkage
248 case lltok::kw_weak_odr: // OptionalLinkage
249 case lltok::kw_linkonce: // OptionalLinkage
250 case lltok::kw_linkonce_odr: // OptionalLinkage
Bill Wendling32811be2012-08-17 18:33:14 +0000251 case lltok::kw_linkonce_odr_auto_hide: // OptionalLinkage
Bill Wendling5e721d72010-07-01 21:55:59 +0000252 case lltok::kw_appending: // OptionalLinkage
253 case lltok::kw_dllexport: // OptionalLinkage
254 case lltok::kw_common: // OptionalLinkage
255 case lltok::kw_dllimport: // OptionalLinkage
256 case lltok::kw_extern_weak: // OptionalLinkage
257 case lltok::kw_external: { // OptionalLinkage
Chris Lattnerdf986172009-01-02 07:01:27 +0000258 unsigned Linkage, Visibility;
259 if (ParseOptionalLinkage(Linkage) ||
260 ParseOptionalVisibility(Visibility) ||
Chris Lattnereeb4a842009-07-02 23:08:13 +0000261 ParseGlobal("", SMLoc(), Linkage, true, Visibility))
Chris Lattnerdf986172009-01-02 07:01:27 +0000262 return true;
263 break;
264 }
265 case lltok::kw_default: // OptionalVisibility
266 case lltok::kw_hidden: // OptionalVisibility
267 case lltok::kw_protected: { // OptionalVisibility
268 unsigned Visibility;
269 if (ParseOptionalVisibility(Visibility) ||
Chris Lattnereeb4a842009-07-02 23:08:13 +0000270 ParseGlobal("", SMLoc(), 0, false, Visibility))
Chris Lattnerdf986172009-01-02 07:01:27 +0000271 return true;
272 break;
273 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000274
Chris Lattnerdf986172009-01-02 07:01:27 +0000275 case lltok::kw_thread_local: // OptionalThreadLocal
276 case lltok::kw_addrspace: // OptionalAddrSpace
277 case lltok::kw_constant: // GlobalType
278 case lltok::kw_global: // GlobalType
Chris Lattnereeb4a842009-07-02 23:08:13 +0000279 if (ParseGlobal("", SMLoc(), 0, false, 0)) return true;
Chris Lattnerdf986172009-01-02 07:01:27 +0000280 break;
Bill Wendling0b778662013-02-09 15:48:49 +0000281
282 case lltok::kw_attributes: if (ParseUnnamedAttrGrp()) return true; break;
Chris Lattnerdf986172009-01-02 07:01:27 +0000283 }
284 }
285}
286
287
288/// toplevelentity
289/// ::= 'module' 'asm' STRINGCONSTANT
290bool LLParser::ParseModuleAsm() {
291 assert(Lex.getKind() == lltok::kw_module);
292 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +0000293
294 std::string AsmStr;
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000295 if (ParseToken(lltok::kw_asm, "expected 'module asm'") ||
296 ParseStringConstant(AsmStr)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000297
Rafael Espindola38c4e532011-03-02 04:14:42 +0000298 M->appendModuleInlineAsm(AsmStr);
Chris Lattnerdf986172009-01-02 07:01:27 +0000299 return false;
300}
301
302/// toplevelentity
303/// ::= 'target' 'triple' '=' STRINGCONSTANT
304/// ::= 'target' 'datalayout' '=' STRINGCONSTANT
305bool LLParser::ParseTargetDefinition() {
306 assert(Lex.getKind() == lltok::kw_target);
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000307 std::string Str;
Chris Lattnerdf986172009-01-02 07:01:27 +0000308 switch (Lex.Lex()) {
309 default: return TokError("unknown target property");
310 case lltok::kw_triple:
311 Lex.Lex();
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000312 if (ParseToken(lltok::equal, "expected '=' after target triple") ||
313 ParseStringConstant(Str))
Chris Lattnerdf986172009-01-02 07:01:27 +0000314 return true;
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000315 M->setTargetTriple(Str);
Chris Lattnerdf986172009-01-02 07:01:27 +0000316 return false;
317 case lltok::kw_datalayout:
318 Lex.Lex();
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000319 if (ParseToken(lltok::equal, "expected '=' after target datalayout") ||
320 ParseStringConstant(Str))
Chris Lattnerdf986172009-01-02 07:01:27 +0000321 return true;
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000322 M->setDataLayout(Str);
Chris Lattnerdf986172009-01-02 07:01:27 +0000323 return false;
324 }
325}
326
Bill Wendling3defc0b2012-11-28 08:41:48 +0000327/// toplevelentity
328/// ::= 'deplibs' '=' '[' ']'
329/// ::= 'deplibs' '=' '[' STRINGCONSTANT (',' STRINGCONSTANT)* ']'
330/// FIXME: Remove in 4.0. Currently parse, but ignore.
331bool LLParser::ParseDepLibs() {
332 assert(Lex.getKind() == lltok::kw_deplibs);
333 Lex.Lex();
334 if (ParseToken(lltok::equal, "expected '=' after deplibs") ||
335 ParseToken(lltok::lsquare, "expected '=' after deplibs"))
336 return true;
337
338 if (EatIfPresent(lltok::rsquare))
339 return false;
340
341 do {
342 std::string Str;
343 if (ParseStringConstant(Str)) return true;
344 } while (EatIfPresent(lltok::comma));
345
346 return ParseToken(lltok::rsquare, "expected ']' at end of list");
347}
348
Dan Gohman3845e502009-08-12 23:32:33 +0000349/// ParseUnnamedType:
Dan Gohman3845e502009-08-12 23:32:33 +0000350/// ::= LocalVarID '=' 'type' type
Chris Lattnerdf986172009-01-02 07:01:27 +0000351bool LLParser::ParseUnnamedType() {
Chris Lattneredcaca82011-06-18 23:51:31 +0000352 LocTy TypeLoc = Lex.getLoc();
Chris Lattner1afcace2011-07-09 17:41:24 +0000353 unsigned TypeID = Lex.getUIntVal();
Chris Lattnera53616d2011-06-19 00:03:46 +0000354 Lex.Lex(); // eat LocalVarID;
355
356 if (ParseToken(lltok::equal, "expected '=' after name") ||
357 ParseToken(lltok::kw_type, "expected 'type' after '='"))
358 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +0000359
Chris Lattner1afcace2011-07-09 17:41:24 +0000360 if (TypeID >= NumberedTypes.size())
361 NumberedTypes.resize(TypeID+1);
Michael Ilseman407a6162012-11-15 22:34:00 +0000362
Chris Lattner1afcace2011-07-09 17:41:24 +0000363 Type *Result = 0;
364 if (ParseStructDefinition(TypeLoc, "",
365 NumberedTypes[TypeID], Result)) return true;
Michael Ilseman407a6162012-11-15 22:34:00 +0000366
Chris Lattner1afcace2011-07-09 17:41:24 +0000367 if (!isa<StructType>(Result)) {
368 std::pair<Type*, LocTy> &Entry = NumberedTypes[TypeID];
369 if (Entry.first)
370 return Error(TypeLoc, "non-struct types may not be recursive");
371 Entry.first = Result;
372 Entry.second = SMLoc();
Chris Lattnerdf986172009-01-02 07:01:27 +0000373 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000374
Chris Lattnerdf986172009-01-02 07:01:27 +0000375 return false;
376}
377
Chris Lattner1afcace2011-07-09 17:41:24 +0000378
Chris Lattnerdf986172009-01-02 07:01:27 +0000379/// toplevelentity
380/// ::= LocalVar '=' 'type' type
381bool LLParser::ParseNamedType() {
382 std::string Name = Lex.getStrVal();
383 LocTy NameLoc = Lex.getLoc();
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000384 Lex.Lex(); // eat LocalVar.
Daniel Dunbara279bc32009-09-20 02:20:51 +0000385
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000386 if (ParseToken(lltok::equal, "expected '=' after name") ||
Chris Lattner1afcace2011-07-09 17:41:24 +0000387 ParseToken(lltok::kw_type, "expected 'type' after name"))
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000388 return true;
Michael Ilseman407a6162012-11-15 22:34:00 +0000389
Chris Lattner1afcace2011-07-09 17:41:24 +0000390 Type *Result = 0;
391 if (ParseStructDefinition(NameLoc, Name,
392 NamedTypes[Name], Result)) return true;
Michael Ilseman407a6162012-11-15 22:34:00 +0000393
Chris Lattner1afcace2011-07-09 17:41:24 +0000394 if (!isa<StructType>(Result)) {
395 std::pair<Type*, LocTy> &Entry = NamedTypes[Name];
396 if (Entry.first)
397 return Error(NameLoc, "non-struct types may not be recursive");
398 Entry.first = Result;
399 Entry.second = SMLoc();
Chris Lattnerdf986172009-01-02 07:01:27 +0000400 }
Michael Ilseman407a6162012-11-15 22:34:00 +0000401
Chris Lattner1afcace2011-07-09 17:41:24 +0000402 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +0000403}
404
405
406/// toplevelentity
407/// ::= 'declare' FunctionHeader
408bool LLParser::ParseDeclare() {
409 assert(Lex.getKind() == lltok::kw_declare);
410 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +0000411
Chris Lattnerdf986172009-01-02 07:01:27 +0000412 Function *F;
413 return ParseFunctionHeader(F, false);
414}
415
416/// toplevelentity
417/// ::= 'define' FunctionHeader '{' ...
418bool LLParser::ParseDefine() {
419 assert(Lex.getKind() == lltok::kw_define);
420 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +0000421
Chris Lattnerdf986172009-01-02 07:01:27 +0000422 Function *F;
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000423 return ParseFunctionHeader(F, true) ||
424 ParseFunctionBody(*F);
Chris Lattnerdf986172009-01-02 07:01:27 +0000425}
426
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000427/// ParseGlobalType
428/// ::= 'constant'
429/// ::= 'global'
Chris Lattnerdf986172009-01-02 07:01:27 +0000430bool LLParser::ParseGlobalType(bool &IsConstant) {
431 if (Lex.getKind() == lltok::kw_constant)
432 IsConstant = true;
433 else if (Lex.getKind() == lltok::kw_global)
434 IsConstant = false;
Duncan Sands35b51072009-02-10 16:24:55 +0000435 else {
436 IsConstant = false;
Chris Lattnerdf986172009-01-02 07:01:27 +0000437 return TokError("expected 'global' or 'constant'");
Duncan Sands35b51072009-02-10 16:24:55 +0000438 }
Chris Lattnerdf986172009-01-02 07:01:27 +0000439 Lex.Lex();
440 return false;
441}
442
Dan Gohman3845e502009-08-12 23:32:33 +0000443/// ParseUnnamedGlobal:
444/// OptionalVisibility ALIAS ...
445/// OptionalLinkage OptionalVisibility ... -> global variable
446/// GlobalID '=' OptionalVisibility ALIAS ...
447/// GlobalID '=' OptionalLinkage OptionalVisibility ... -> global variable
448bool LLParser::ParseUnnamedGlobal() {
449 unsigned VarID = NumberedVals.size();
450 std::string Name;
451 LocTy NameLoc = Lex.getLoc();
452
453 // Handle the GlobalID form.
454 if (Lex.getKind() == lltok::GlobalID) {
455 if (Lex.getUIntVal() != VarID)
456 return Error(Lex.getLoc(), "variable expected to be numbered '%" +
Benjamin Kramerd1e17032010-09-27 17:42:11 +0000457 Twine(VarID) + "'");
Dan Gohman3845e502009-08-12 23:32:33 +0000458 Lex.Lex(); // eat GlobalID;
459
460 if (ParseToken(lltok::equal, "expected '=' after name"))
461 return true;
462 }
463
464 bool HasLinkage;
465 unsigned Linkage, Visibility;
466 if (ParseOptionalLinkage(Linkage, HasLinkage) ||
467 ParseOptionalVisibility(Visibility))
468 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000469
Dan Gohman3845e502009-08-12 23:32:33 +0000470 if (HasLinkage || Lex.getKind() != lltok::kw_alias)
471 return ParseGlobal(Name, NameLoc, Linkage, HasLinkage, Visibility);
472 return ParseAlias(Name, NameLoc, Visibility);
473}
474
Chris Lattnerdf986172009-01-02 07:01:27 +0000475/// ParseNamedGlobal:
476/// GlobalVar '=' OptionalVisibility ALIAS ...
477/// GlobalVar '=' OptionalLinkage OptionalVisibility ... -> global variable
478bool LLParser::ParseNamedGlobal() {
479 assert(Lex.getKind() == lltok::GlobalVar);
480 LocTy NameLoc = Lex.getLoc();
481 std::string Name = Lex.getStrVal();
482 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +0000483
Chris Lattnerdf986172009-01-02 07:01:27 +0000484 bool HasLinkage;
485 unsigned Linkage, Visibility;
486 if (ParseToken(lltok::equal, "expected '=' in global variable") ||
487 ParseOptionalLinkage(Linkage, HasLinkage) ||
488 ParseOptionalVisibility(Visibility))
489 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000490
Chris Lattnerdf986172009-01-02 07:01:27 +0000491 if (HasLinkage || Lex.getKind() != lltok::kw_alias)
492 return ParseGlobal(Name, NameLoc, Linkage, HasLinkage, Visibility);
493 return ParseAlias(Name, NameLoc, Visibility);
494}
495
Devang Patel256be962009-07-20 19:00:08 +0000496// MDString:
497// ::= '!' STRINGCONSTANT
Chris Lattner442ffa12009-12-29 21:53:55 +0000498bool LLParser::ParseMDString(MDString *&Result) {
Devang Patel256be962009-07-20 19:00:08 +0000499 std::string Str;
500 if (ParseStringConstant(Str)) return true;
Chris Lattner442ffa12009-12-29 21:53:55 +0000501 Result = MDString::get(Context, Str);
Devang Patel256be962009-07-20 19:00:08 +0000502 return false;
503}
504
505// MDNode:
506// ::= '!' MDNodeNumber
Chris Lattner449c3102010-04-01 05:14:45 +0000507//
508/// This version of ParseMDNodeID returns the slot number and null in the case
509/// of a forward reference.
510bool LLParser::ParseMDNodeID(MDNode *&Result, unsigned &SlotNo) {
511 // !{ ..., !42, ... }
512 if (ParseUInt32(SlotNo)) return true;
513
514 // Check existing MDNode.
515 if (SlotNo < NumberedMetadata.size() && NumberedMetadata[SlotNo] != 0)
516 Result = NumberedMetadata[SlotNo];
517 else
518 Result = 0;
519 return false;
520}
521
Chris Lattner4a72efc2009-12-30 04:15:23 +0000522bool LLParser::ParseMDNodeID(MDNode *&Result) {
Devang Patel256be962009-07-20 19:00:08 +0000523 // !{ ..., !42, ... }
524 unsigned MID = 0;
Chris Lattner449c3102010-04-01 05:14:45 +0000525 if (ParseMDNodeID(Result, MID)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000526
Chris Lattner449c3102010-04-01 05:14:45 +0000527 // If not a forward reference, just return it now.
528 if (Result) return false;
Devang Patel256be962009-07-20 19:00:08 +0000529
Chris Lattner449c3102010-04-01 05:14:45 +0000530 // Otherwise, create MDNode forward reference.
Dmitri Gribenko5c332db2013-05-05 00:40:33 +0000531 MDNode *FwdNode = MDNode::getTemporary(Context, None);
Devang Patel256be962009-07-20 19:00:08 +0000532 ForwardRefMDNodes[MID] = std::make_pair(FwdNode, Lex.getLoc());
Michael Ilseman407a6162012-11-15 22:34:00 +0000533
Chris Lattner0834e6a2009-12-30 04:51:58 +0000534 if (NumberedMetadata.size() <= MID)
535 NumberedMetadata.resize(MID+1);
536 NumberedMetadata[MID] = FwdNode;
Chris Lattner442ffa12009-12-29 21:53:55 +0000537 Result = FwdNode;
Devang Patel256be962009-07-20 19:00:08 +0000538 return false;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000539}
Devang Patel256be962009-07-20 19:00:08 +0000540
Chris Lattner84d03b12009-12-29 22:35:39 +0000541/// ParseNamedMetadata:
Devang Pateleff2ab62009-07-29 00:34:02 +0000542/// !foo = !{ !1, !2 }
543bool LLParser::ParseNamedMetadata() {
Chris Lattner1d928312009-12-30 05:02:06 +0000544 assert(Lex.getKind() == lltok::MetadataVar);
Devang Pateleff2ab62009-07-29 00:34:02 +0000545 std::string Name = Lex.getStrVal();
Chris Lattner1d928312009-12-30 05:02:06 +0000546 Lex.Lex();
Devang Pateleff2ab62009-07-29 00:34:02 +0000547
Chris Lattner84d03b12009-12-29 22:35:39 +0000548 if (ParseToken(lltok::equal, "expected '=' here") ||
Chris Lattnere434d272009-12-30 04:56:59 +0000549 ParseToken(lltok::exclaim, "Expected '!' here") ||
Chris Lattner84d03b12009-12-29 22:35:39 +0000550 ParseToken(lltok::lbrace, "Expected '{' here"))
Devang Pateleff2ab62009-07-29 00:34:02 +0000551 return true;
552
Dan Gohman17aa92c2010-07-21 23:38:33 +0000553 NamedMDNode *NMD = M->getOrInsertNamedMetadata(Name);
Dan Gohman9dc8ae12010-07-13 19:42:44 +0000554 if (Lex.getKind() != lltok::rbrace)
555 do {
Dan Gohman9dc8ae12010-07-13 19:42:44 +0000556 if (ParseToken(lltok::exclaim, "Expected '!' here"))
557 return true;
Michael Ilseman407a6162012-11-15 22:34:00 +0000558
Dan Gohman9dc8ae12010-07-13 19:42:44 +0000559 MDNode *N = 0;
560 if (ParseMDNodeID(N)) return true;
Dan Gohman17aa92c2010-07-21 23:38:33 +0000561 NMD->addOperand(N);
Dan Gohman9dc8ae12010-07-13 19:42:44 +0000562 } while (EatIfPresent(lltok::comma));
Devang Pateleff2ab62009-07-29 00:34:02 +0000563
564 if (ParseToken(lltok::rbrace, "expected end of metadata node"))
565 return true;
566
Devang Pateleff2ab62009-07-29 00:34:02 +0000567 return false;
568}
569
Devang Patel923078c2009-07-01 19:21:12 +0000570/// ParseStandaloneMetadata:
Daniel Dunbara279bc32009-09-20 02:20:51 +0000571/// !42 = !{...}
Devang Patel923078c2009-07-01 19:21:12 +0000572bool LLParser::ParseStandaloneMetadata() {
Chris Lattnere434d272009-12-30 04:56:59 +0000573 assert(Lex.getKind() == lltok::exclaim);
Devang Patel923078c2009-07-01 19:21:12 +0000574 Lex.Lex();
575 unsigned MetadataID = 0;
Devang Patel923078c2009-07-01 19:21:12 +0000576
577 LocTy TyLoc;
Chris Lattner1afcace2011-07-09 17:41:24 +0000578 Type *Ty = 0;
Devang Patel104cf9e2009-07-23 01:07:34 +0000579 SmallVector<Value *, 16> Elts;
Chris Lattner3f5132a2009-12-29 22:40:21 +0000580 if (ParseUInt32(MetadataID) ||
581 ParseToken(lltok::equal, "expected '=' here") ||
582 ParseType(Ty, TyLoc) ||
Chris Lattnere434d272009-12-30 04:56:59 +0000583 ParseToken(lltok::exclaim, "Expected '!' here") ||
Chris Lattner3f5132a2009-12-29 22:40:21 +0000584 ParseToken(lltok::lbrace, "Expected '{' here") ||
Victor Hernandez24e64df2010-01-10 07:14:18 +0000585 ParseMDNodeVector(Elts, NULL) ||
Chris Lattner3f5132a2009-12-29 22:40:21 +0000586 ParseToken(lltok::rbrace, "expected end of metadata node"))
Devang Patel104cf9e2009-07-23 01:07:34 +0000587 return true;
588
Jay Foadec9186b2011-04-21 19:59:31 +0000589 MDNode *Init = MDNode::get(Context, Elts);
Michael Ilseman407a6162012-11-15 22:34:00 +0000590
Chris Lattner0834e6a2009-12-30 04:51:58 +0000591 // See if this was forward referenced, if so, handle it.
Chris Lattnere80250e2009-12-29 21:43:58 +0000592 std::map<unsigned, std::pair<TrackingVH<MDNode>, LocTy> >::iterator
Devang Patel1c7eea62009-07-08 19:23:54 +0000593 FI = ForwardRefMDNodes.find(MetadataID);
594 if (FI != ForwardRefMDNodes.end()) {
Dan Gohman489b29b2010-08-20 22:02:26 +0000595 MDNode *Temp = FI->second.first;
596 Temp->replaceAllUsesWith(Init);
597 MDNode::deleteTemporary(Temp);
Devang Patel1c7eea62009-07-08 19:23:54 +0000598 ForwardRefMDNodes.erase(FI);
Michael Ilseman407a6162012-11-15 22:34:00 +0000599
Chris Lattner0834e6a2009-12-30 04:51:58 +0000600 assert(NumberedMetadata[MetadataID] == Init && "Tracking VH didn't work");
601 } else {
602 if (MetadataID >= NumberedMetadata.size())
603 NumberedMetadata.resize(MetadataID+1);
604
605 if (NumberedMetadata[MetadataID] != 0)
606 return TokError("Metadata id is already used");
607 NumberedMetadata[MetadataID] = Init;
Devang Patel1c7eea62009-07-08 19:23:54 +0000608 }
609
Devang Patel923078c2009-07-01 19:21:12 +0000610 return false;
611}
612
Chris Lattnerdf986172009-01-02 07:01:27 +0000613/// ParseAlias:
614/// ::= GlobalVar '=' OptionalVisibility 'alias' OptionalLinkage Aliasee
615/// Aliasee
Chris Lattner040f7582009-04-25 21:26:00 +0000616/// ::= TypeAndValue
617/// ::= 'bitcast' '(' TypeAndValue 'to' Type ')'
Dan Gohmandd8004d2009-07-27 21:53:46 +0000618/// ::= 'getelementptr' 'inbounds'? '(' ... ')'
Chris Lattnerdf986172009-01-02 07:01:27 +0000619///
620/// Everything through visibility has already been parsed.
621///
622bool LLParser::ParseAlias(const std::string &Name, LocTy NameLoc,
623 unsigned Visibility) {
624 assert(Lex.getKind() == lltok::kw_alias);
625 Lex.Lex();
626 unsigned Linkage;
627 LocTy LinkageLoc = Lex.getLoc();
628 if (ParseOptionalLinkage(Linkage))
629 return true;
630
631 if (Linkage != GlobalValue::ExternalLinkage &&
Duncan Sands667d4b82009-03-07 15:45:40 +0000632 Linkage != GlobalValue::WeakAnyLinkage &&
633 Linkage != GlobalValue::WeakODRLinkage &&
Rafael Espindolabb46f522009-01-15 20:18:42 +0000634 Linkage != GlobalValue::InternalLinkage &&
Bill Wendling3d10a5a2009-07-20 01:03:30 +0000635 Linkage != GlobalValue::PrivateLinkage &&
Bill Wendling5e721d72010-07-01 21:55:59 +0000636 Linkage != GlobalValue::LinkerPrivateLinkage &&
Bill Wendling32811be2012-08-17 18:33:14 +0000637 Linkage != GlobalValue::LinkerPrivateWeakLinkage)
Chris Lattnerdf986172009-01-02 07:01:27 +0000638 return Error(LinkageLoc, "invalid linkage type for alias");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000639
Chris Lattnerdf986172009-01-02 07:01:27 +0000640 Constant *Aliasee;
641 LocTy AliaseeLoc = Lex.getLoc();
Chris Lattner040f7582009-04-25 21:26:00 +0000642 if (Lex.getKind() != lltok::kw_bitcast &&
643 Lex.getKind() != lltok::kw_getelementptr) {
Chris Lattnerdf986172009-01-02 07:01:27 +0000644 if (ParseGlobalTypeAndValue(Aliasee)) return true;
645 } else {
646 // The bitcast dest type is not present, it is implied by the dest type.
647 ValID ID;
648 if (ParseValID(ID)) return true;
649 if (ID.Kind != ValID::t_Constant)
650 return Error(AliaseeLoc, "invalid aliasee");
651 Aliasee = ID.ConstantVal;
652 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000653
Duncan Sands1df98592010-02-16 11:11:14 +0000654 if (!Aliasee->getType()->isPointerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +0000655 return Error(AliaseeLoc, "alias must have pointer type");
656
657 // Okay, create the alias but do not insert it into the module yet.
658 GlobalAlias* GA = new GlobalAlias(Aliasee->getType(),
659 (GlobalValue::LinkageTypes)Linkage, Name,
660 Aliasee);
661 GA->setVisibility((GlobalValue::VisibilityTypes)Visibility);
Daniel Dunbara279bc32009-09-20 02:20:51 +0000662
Chris Lattnerdf986172009-01-02 07:01:27 +0000663 // See if this value already exists in the symbol table. If so, it is either
664 // a redefinition or a definition of a forward reference.
Chris Lattner1d871c52009-10-25 23:22:50 +0000665 if (GlobalValue *Val = M->getNamedValue(Name)) {
Chris Lattnerdf986172009-01-02 07:01:27 +0000666 // See if this was a redefinition. If so, there is no entry in
667 // ForwardRefVals.
668 std::map<std::string, std::pair<GlobalValue*, LocTy> >::iterator
669 I = ForwardRefVals.find(Name);
670 if (I == ForwardRefVals.end())
671 return Error(NameLoc, "redefinition of global named '@" + Name + "'");
672
673 // Otherwise, this was a definition of forward ref. Verify that types
674 // agree.
675 if (Val->getType() != GA->getType())
676 return Error(NameLoc,
677 "forward reference and definition of alias have different types");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000678
Chris Lattnerdf986172009-01-02 07:01:27 +0000679 // If they agree, just RAUW the old value with the alias and remove the
680 // forward ref info.
681 Val->replaceAllUsesWith(GA);
682 Val->eraseFromParent();
683 ForwardRefVals.erase(I);
684 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000685
Chris Lattnerdf986172009-01-02 07:01:27 +0000686 // Insert into the module, we know its name won't collide now.
687 M->getAliasList().push_back(GA);
Benjamin Krameraf812352010-10-16 11:28:23 +0000688 assert(GA->getName() == Name && "Should not be a name conflict!");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000689
Chris Lattnerdf986172009-01-02 07:01:27 +0000690 return false;
691}
692
693/// ParseGlobal
694/// ::= GlobalVar '=' OptionalLinkage OptionalVisibility OptionalThreadLocal
Michael Gottesmana2de37c2013-02-05 05:57:38 +0000695/// OptionalAddrSpace OptionalUnNammedAddr
696/// OptionalExternallyInitialized GlobalType Type Const
Chris Lattnerdf986172009-01-02 07:01:27 +0000697/// ::= OptionalLinkage OptionalVisibility OptionalThreadLocal
Michael Gottesmana2de37c2013-02-05 05:57:38 +0000698/// OptionalAddrSpace OptionalUnNammedAddr
699/// OptionalExternallyInitialized GlobalType Type Const
Chris Lattnerdf986172009-01-02 07:01:27 +0000700///
701/// Everything through visibility has been parsed already.
702///
703bool LLParser::ParseGlobal(const std::string &Name, LocTy NameLoc,
704 unsigned Linkage, bool HasLinkage,
705 unsigned Visibility) {
706 unsigned AddrSpace;
Michael Gottesmana2de37c2013-02-05 05:57:38 +0000707 bool IsConstant, UnnamedAddr, IsExternallyInitialized;
Hans Wennborgce718ff2012-06-23 11:37:03 +0000708 GlobalVariable::ThreadLocalMode TLM;
Rafael Espindolad72479c2011-01-13 01:30:30 +0000709 LocTy UnnamedAddrLoc;
Michael Gottesmana2de37c2013-02-05 05:57:38 +0000710 LocTy IsExternallyInitializedLoc;
Chris Lattnerdf986172009-01-02 07:01:27 +0000711 LocTy TyLoc;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000712
Chris Lattner1afcace2011-07-09 17:41:24 +0000713 Type *Ty = 0;
Hans Wennborgce718ff2012-06-23 11:37:03 +0000714 if (ParseOptionalThreadLocal(TLM) ||
Chris Lattnerdf986172009-01-02 07:01:27 +0000715 ParseOptionalAddrSpace(AddrSpace) ||
Rafael Espindolad72479c2011-01-13 01:30:30 +0000716 ParseOptionalToken(lltok::kw_unnamed_addr, UnnamedAddr,
717 &UnnamedAddrLoc) ||
Michael Gottesmana2de37c2013-02-05 05:57:38 +0000718 ParseOptionalToken(lltok::kw_externally_initialized,
719 IsExternallyInitialized,
720 &IsExternallyInitializedLoc) ||
Chris Lattnerdf986172009-01-02 07:01:27 +0000721 ParseGlobalType(IsConstant) ||
722 ParseType(Ty, TyLoc))
723 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000724
Chris Lattnerdf986172009-01-02 07:01:27 +0000725 // If the linkage is specified and is external, then no initializer is
726 // present.
727 Constant *Init = 0;
728 if (!HasLinkage || (Linkage != GlobalValue::DLLImportLinkage &&
Duncan Sands5f4ee1f2009-03-11 08:08:06 +0000729 Linkage != GlobalValue::ExternalWeakLinkage &&
Chris Lattnerdf986172009-01-02 07:01:27 +0000730 Linkage != GlobalValue::ExternalLinkage)) {
731 if (ParseGlobalValue(Ty, Init))
732 return true;
733 }
734
Duncan Sands1df98592010-02-16 11:11:14 +0000735 if (Ty->isFunctionTy() || Ty->isLabelTy())
Chris Lattner4a2f1122009-02-08 20:00:15 +0000736 return Error(TyLoc, "invalid type for global variable");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000737
Chris Lattnerdf986172009-01-02 07:01:27 +0000738 GlobalVariable *GV = 0;
739
740 // See if the global was forward referenced, if so, use the global.
Chris Lattner91dad872009-02-02 07:24:28 +0000741 if (!Name.empty()) {
Chris Lattner1d871c52009-10-25 23:22:50 +0000742 if (GlobalValue *GVal = M->getNamedValue(Name)) {
743 if (!ForwardRefVals.erase(Name) || !isa<GlobalValue>(GVal))
744 return Error(NameLoc, "redefinition of global '@" + Name + "'");
745 GV = cast<GlobalVariable>(GVal);
746 }
Chris Lattnerdf986172009-01-02 07:01:27 +0000747 } else {
748 std::map<unsigned, std::pair<GlobalValue*, LocTy> >::iterator
749 I = ForwardRefValIDs.find(NumberedVals.size());
750 if (I != ForwardRefValIDs.end()) {
751 GV = cast<GlobalVariable>(I->second.first);
752 ForwardRefValIDs.erase(I);
753 }
754 }
755
756 if (GV == 0) {
Daniel Dunbara279bc32009-09-20 02:20:51 +0000757 GV = new GlobalVariable(*M, Ty, false, GlobalValue::ExternalLinkage, 0,
Hans Wennborgce718ff2012-06-23 11:37:03 +0000758 Name, 0, GlobalVariable::NotThreadLocal,
759 AddrSpace);
Chris Lattnerdf986172009-01-02 07:01:27 +0000760 } else {
761 if (GV->getType()->getElementType() != Ty)
762 return Error(TyLoc,
763 "forward reference and definition of global have different types");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000764
Chris Lattnerdf986172009-01-02 07:01:27 +0000765 // Move the forward-reference to the correct spot in the module.
766 M->getGlobalList().splice(M->global_end(), M->getGlobalList(), GV);
767 }
768
769 if (Name.empty())
770 NumberedVals.push_back(GV);
Daniel Dunbara279bc32009-09-20 02:20:51 +0000771
Chris Lattnerdf986172009-01-02 07:01:27 +0000772 // Set the parsed properties on the global.
773 if (Init)
774 GV->setInitializer(Init);
775 GV->setConstant(IsConstant);
776 GV->setLinkage((GlobalValue::LinkageTypes)Linkage);
777 GV->setVisibility((GlobalValue::VisibilityTypes)Visibility);
Michael Gottesmana2de37c2013-02-05 05:57:38 +0000778 GV->setExternallyInitialized(IsExternallyInitialized);
Hans Wennborgce718ff2012-06-23 11:37:03 +0000779 GV->setThreadLocalMode(TLM);
Rafael Espindolabea46262011-01-08 16:42:36 +0000780 GV->setUnnamedAddr(UnnamedAddr);
Daniel Dunbara279bc32009-09-20 02:20:51 +0000781
Chris Lattnerdf986172009-01-02 07:01:27 +0000782 // Parse attributes on the global.
783 while (Lex.getKind() == lltok::comma) {
784 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +0000785
Chris Lattnerdf986172009-01-02 07:01:27 +0000786 if (Lex.getKind() == lltok::kw_section) {
787 Lex.Lex();
788 GV->setSection(Lex.getStrVal());
789 if (ParseToken(lltok::StringConstant, "expected global section string"))
790 return true;
791 } else if (Lex.getKind() == lltok::kw_align) {
792 unsigned Alignment;
793 if (ParseOptionalAlignment(Alignment)) return true;
794 GV->setAlignment(Alignment);
795 } else {
796 TokError("unknown global variable property!");
797 }
798 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000799
Chris Lattnerdf986172009-01-02 07:01:27 +0000800 return false;
801}
802
Bill Wendling95ce4c22013-02-06 06:52:58 +0000803/// ParseUnnamedAttrGrp
Bill Wendling0b778662013-02-09 15:48:49 +0000804/// ::= 'attributes' AttrGrpID '=' '{' AttrValPair+ '}'
Bill Wendling95ce4c22013-02-06 06:52:58 +0000805bool LLParser::ParseUnnamedAttrGrp() {
Bill Wendling0b778662013-02-09 15:48:49 +0000806 assert(Lex.getKind() == lltok::kw_attributes);
Bill Wendling95ce4c22013-02-06 06:52:58 +0000807 LocTy AttrGrpLoc = Lex.getLoc();
Bill Wendling0b778662013-02-09 15:48:49 +0000808 Lex.Lex();
809
810 assert(Lex.getKind() == lltok::AttrGrpID);
Bill Wendling95ce4c22013-02-06 06:52:58 +0000811 unsigned VarID = Lex.getUIntVal();
Bill Wendlingbaad55c2013-02-08 06:32:06 +0000812 std::vector<unsigned> unused;
Michael Gottesman2253a2f2013-06-27 00:25:01 +0000813 LocTy BuiltinLoc;
Bill Wendling95ce4c22013-02-06 06:52:58 +0000814 Lex.Lex();
815
816 if (ParseToken(lltok::equal, "expected '=' here") ||
Bill Wendling95ce4c22013-02-06 06:52:58 +0000817 ParseToken(lltok::lbrace, "expected '{' here") ||
Bill Wendling143d4642013-02-22 00:12:35 +0000818 ParseFnAttributeValuePairs(NumberedAttrBuilders[VarID], unused, true,
Michael Gottesman2253a2f2013-06-27 00:25:01 +0000819 BuiltinLoc) ||
Bill Wendling95ce4c22013-02-06 06:52:58 +0000820 ParseToken(lltok::rbrace, "expected end of attribute group"))
821 return true;
822
Bill Wendlingbaad55c2013-02-08 06:32:06 +0000823 if (!NumberedAttrBuilders[VarID].hasAttributes())
Bill Wendling95ce4c22013-02-06 06:52:58 +0000824 return Error(AttrGrpLoc, "attribute group has no attributes");
825
826 return false;
827}
828
Bill Wendlingea007fa2013-02-08 00:52:31 +0000829/// ParseFnAttributeValuePairs
Bill Wendling95ce4c22013-02-06 06:52:58 +0000830/// ::= <attr> | <attr> '=' <value>
Bill Wendlingbaad55c2013-02-08 06:32:06 +0000831bool LLParser::ParseFnAttributeValuePairs(AttrBuilder &B,
832 std::vector<unsigned> &FwdRefAttrGrps,
Michael Gottesman2253a2f2013-06-27 00:25:01 +0000833 bool inAttrGrp, LocTy &BuiltinLoc) {
Bill Wendlingea007fa2013-02-08 00:52:31 +0000834 bool HaveError = false;
835
836 B.clear();
837
Bill Wendling95ce4c22013-02-06 06:52:58 +0000838 while (true) {
839 lltok::Kind Token = Lex.getKind();
Michael Gottesman2253a2f2013-06-27 00:25:01 +0000840 if (Token == lltok::kw_builtin)
841 BuiltinLoc = Lex.getLoc();
Bill Wendling95ce4c22013-02-06 06:52:58 +0000842 switch (Token) {
843 default:
Bill Wendlingea007fa2013-02-08 00:52:31 +0000844 if (!inAttrGrp) return HaveError;
Bill Wendling95ce4c22013-02-06 06:52:58 +0000845 return Error(Lex.getLoc(), "unterminated attribute group");
846 case lltok::rbrace:
847 // Finished.
848 return false;
849
Bill Wendlingbaad55c2013-02-08 06:32:06 +0000850 case lltok::AttrGrpID: {
851 // Allow a function to reference an attribute group:
852 //
853 // define void @foo() #1 { ... }
854 if (inAttrGrp)
855 HaveError |=
856 Error(Lex.getLoc(),
857 "cannot have an attribute group reference in an attribute group");
858
859 unsigned AttrGrpNum = Lex.getUIntVal();
860 if (inAttrGrp) break;
861
862 // Save the reference to the attribute group. We'll fill it in later.
863 FwdRefAttrGrps.push_back(AttrGrpNum);
864 break;
865 }
Bill Wendling95ce4c22013-02-06 06:52:58 +0000866 // Target-dependent attributes:
867 case lltok::StringConstant: {
868 std::string Attr = Lex.getStrVal();
869 Lex.Lex();
870 std::string Val;
871 if (EatIfPresent(lltok::equal) &&
872 ParseStringConstant(Val))
873 return true;
874
875 B.addAttribute(Attr, Val);
Bill Wendling0f742202013-02-10 10:12:50 +0000876 continue;
Bill Wendling95ce4c22013-02-06 06:52:58 +0000877 }
878
879 // Target-independent attributes:
880 case lltok::kw_align: {
Bill Wendlingc0b4b672013-04-18 18:30:16 +0000881 // As a hack, we allow function alignment to be initially parsed as an
882 // attribute on a function declaration/definition or added to an attribute
883 // group and later moved to the alignment field.
Bill Wendling95ce4c22013-02-06 06:52:58 +0000884 unsigned Alignment;
Bill Wendlingea007fa2013-02-08 00:52:31 +0000885 if (inAttrGrp) {
Bill Wendling3f87d232013-02-10 23:15:51 +0000886 Lex.Lex();
Bill Wendlingea007fa2013-02-08 00:52:31 +0000887 if (ParseToken(lltok::equal, "expected '=' here") ||
888 ParseUInt32(Alignment))
889 return true;
890 } else {
891 if (ParseOptionalAlignment(Alignment))
892 return true;
893 }
Bill Wendling95ce4c22013-02-06 06:52:58 +0000894 B.addAlignmentAttr(Alignment);
Bill Wendlingea007fa2013-02-08 00:52:31 +0000895 continue;
Bill Wendling95ce4c22013-02-06 06:52:58 +0000896 }
897 case lltok::kw_alignstack: {
898 unsigned Alignment;
Bill Wendlingea007fa2013-02-08 00:52:31 +0000899 if (inAttrGrp) {
Bill Wendling3f87d232013-02-10 23:15:51 +0000900 Lex.Lex();
Bill Wendlingea007fa2013-02-08 00:52:31 +0000901 if (ParseToken(lltok::equal, "expected '=' here") ||
902 ParseUInt32(Alignment))
903 return true;
904 } else {
905 if (ParseOptionalStackAlignment(Alignment))
906 return true;
907 }
Bill Wendling95ce4c22013-02-06 06:52:58 +0000908 B.addStackAlignmentAttr(Alignment);
Bill Wendlingea007fa2013-02-08 00:52:31 +0000909 continue;
Bill Wendling95ce4c22013-02-06 06:52:58 +0000910 }
Kostya Serebryany8eec41f2013-02-26 06:58:09 +0000911 case lltok::kw_alwaysinline: B.addAttribute(Attribute::AlwaysInline); break;
Michael Gottesman2253a2f2013-06-27 00:25:01 +0000912 case lltok::kw_builtin: B.addAttribute(Attribute::Builtin); break;
Diego Novillo77226a02013-05-24 12:26:52 +0000913 case lltok::kw_cold: B.addAttribute(Attribute::Cold); break;
Kostya Serebryany8eec41f2013-02-26 06:58:09 +0000914 case lltok::kw_inlinehint: B.addAttribute(Attribute::InlineHint); break;
915 case lltok::kw_minsize: B.addAttribute(Attribute::MinSize); break;
916 case lltok::kw_naked: B.addAttribute(Attribute::Naked); break;
917 case lltok::kw_nobuiltin: B.addAttribute(Attribute::NoBuiltin); break;
918 case lltok::kw_noduplicate: B.addAttribute(Attribute::NoDuplicate); break;
919 case lltok::kw_noimplicitfloat: B.addAttribute(Attribute::NoImplicitFloat); break;
920 case lltok::kw_noinline: B.addAttribute(Attribute::NoInline); break;
921 case lltok::kw_nonlazybind: B.addAttribute(Attribute::NonLazyBind); break;
922 case lltok::kw_noredzone: B.addAttribute(Attribute::NoRedZone); break;
923 case lltok::kw_noreturn: B.addAttribute(Attribute::NoReturn); break;
924 case lltok::kw_nounwind: B.addAttribute(Attribute::NoUnwind); break;
925 case lltok::kw_optsize: B.addAttribute(Attribute::OptimizeForSize); break;
926 case lltok::kw_readnone: B.addAttribute(Attribute::ReadNone); break;
927 case lltok::kw_readonly: B.addAttribute(Attribute::ReadOnly); break;
928 case lltok::kw_returns_twice: B.addAttribute(Attribute::ReturnsTwice); break;
929 case lltok::kw_ssp: B.addAttribute(Attribute::StackProtect); break;
930 case lltok::kw_sspreq: B.addAttribute(Attribute::StackProtectReq); break;
931 case lltok::kw_sspstrong: B.addAttribute(Attribute::StackProtectStrong); break;
932 case lltok::kw_sanitize_address: B.addAttribute(Attribute::SanitizeAddress); break;
933 case lltok::kw_sanitize_thread: B.addAttribute(Attribute::SanitizeThread); break;
934 case lltok::kw_sanitize_memory: B.addAttribute(Attribute::SanitizeMemory); break;
935 case lltok::kw_uwtable: B.addAttribute(Attribute::UWTable); break;
Bill Wendlingea007fa2013-02-08 00:52:31 +0000936
937 // Error handling.
938 case lltok::kw_inreg:
939 case lltok::kw_signext:
940 case lltok::kw_zeroext:
941 HaveError |=
942 Error(Lex.getLoc(),
943 "invalid use of attribute on a function");
944 break;
945 case lltok::kw_byval:
946 case lltok::kw_nest:
947 case lltok::kw_noalias:
948 case lltok::kw_nocapture:
Stephen Lin456ca042013-04-20 05:14:40 +0000949 case lltok::kw_returned:
Bill Wendlingea007fa2013-02-08 00:52:31 +0000950 case lltok::kw_sret:
951 HaveError |=
952 Error(Lex.getLoc(),
953 "invalid use of parameter-only attribute on a function");
954 break;
Bill Wendling95ce4c22013-02-06 06:52:58 +0000955 }
956
957 Lex.Lex();
958 }
959}
Chris Lattnerdf986172009-01-02 07:01:27 +0000960
961//===----------------------------------------------------------------------===//
962// GlobalValue Reference/Resolution Routines.
963//===----------------------------------------------------------------------===//
964
965/// GetGlobalVal - Get a value with the specified name or ID, creating a
966/// forward reference record if needed. This can return null if the value
967/// exists but does not have the right type.
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000968GlobalValue *LLParser::GetGlobalVal(const std::string &Name, Type *Ty,
Chris Lattnerdf986172009-01-02 07:01:27 +0000969 LocTy Loc) {
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000970 PointerType *PTy = dyn_cast<PointerType>(Ty);
Chris Lattnerdf986172009-01-02 07:01:27 +0000971 if (PTy == 0) {
972 Error(Loc, "global variable reference must have pointer type");
973 return 0;
974 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000975
Chris Lattnerdf986172009-01-02 07:01:27 +0000976 // Look this name up in the normal function symbol table.
977 GlobalValue *Val =
978 cast_or_null<GlobalValue>(M->getValueSymbolTable().lookup(Name));
Daniel Dunbara279bc32009-09-20 02:20:51 +0000979
Chris Lattnerdf986172009-01-02 07:01:27 +0000980 // If this is a forward reference for the value, see if we already created a
981 // forward ref record.
982 if (Val == 0) {
983 std::map<std::string, std::pair<GlobalValue*, LocTy> >::iterator
984 I = ForwardRefVals.find(Name);
985 if (I != ForwardRefVals.end())
986 Val = I->second.first;
987 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000988
Chris Lattnerdf986172009-01-02 07:01:27 +0000989 // If we have the value in the symbol table or fwd-ref table, return it.
990 if (Val) {
991 if (Val->getType() == Ty) return Val;
992 Error(Loc, "'@" + Name + "' defined with type '" +
Chris Lattner0cd0d882011-06-18 21:18:23 +0000993 getTypeString(Val->getType()) + "'");
Chris Lattnerdf986172009-01-02 07:01:27 +0000994 return 0;
995 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000996
Chris Lattnerdf986172009-01-02 07:01:27 +0000997 // Otherwise, create a new forward reference for this value and remember it.
998 GlobalValue *FwdVal;
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000999 if (FunctionType *FT = dyn_cast<FunctionType>(PTy->getElementType()))
Duncan Sands5f4ee1f2009-03-11 08:08:06 +00001000 FwdVal = Function::Create(FT, GlobalValue::ExternalWeakLinkage, Name, M);
Chris Lattner1afcace2011-07-09 17:41:24 +00001001 else
Owen Andersone9b11b42009-07-08 19:03:57 +00001002 FwdVal = new GlobalVariable(*M, PTy->getElementType(), false,
Justin Holewinskieaff2d52012-11-16 21:03:47 +00001003 GlobalValue::ExternalWeakLinkage, 0, Name,
1004 0, GlobalVariable::NotThreadLocal,
1005 PTy->getAddressSpace());
Daniel Dunbara279bc32009-09-20 02:20:51 +00001006
Chris Lattnerdf986172009-01-02 07:01:27 +00001007 ForwardRefVals[Name] = std::make_pair(FwdVal, Loc);
1008 return FwdVal;
1009}
1010
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001011GlobalValue *LLParser::GetGlobalVal(unsigned ID, Type *Ty, LocTy Loc) {
1012 PointerType *PTy = dyn_cast<PointerType>(Ty);
Chris Lattnerdf986172009-01-02 07:01:27 +00001013 if (PTy == 0) {
1014 Error(Loc, "global variable reference must have pointer type");
1015 return 0;
1016 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001017
Chris Lattnerdf986172009-01-02 07:01:27 +00001018 GlobalValue *Val = ID < NumberedVals.size() ? NumberedVals[ID] : 0;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001019
Chris Lattnerdf986172009-01-02 07:01:27 +00001020 // If this is a forward reference for the value, see if we already created a
1021 // forward ref record.
1022 if (Val == 0) {
1023 std::map<unsigned, std::pair<GlobalValue*, LocTy> >::iterator
1024 I = ForwardRefValIDs.find(ID);
1025 if (I != ForwardRefValIDs.end())
1026 Val = I->second.first;
1027 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001028
Chris Lattnerdf986172009-01-02 07:01:27 +00001029 // If we have the value in the symbol table or fwd-ref table, return it.
1030 if (Val) {
1031 if (Val->getType() == Ty) return Val;
Benjamin Kramerd1e17032010-09-27 17:42:11 +00001032 Error(Loc, "'@" + Twine(ID) + "' defined with type '" +
Chris Lattner0cd0d882011-06-18 21:18:23 +00001033 getTypeString(Val->getType()) + "'");
Chris Lattnerdf986172009-01-02 07:01:27 +00001034 return 0;
1035 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001036
Chris Lattnerdf986172009-01-02 07:01:27 +00001037 // Otherwise, create a new forward reference for this value and remember it.
1038 GlobalValue *FwdVal;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001039 if (FunctionType *FT = dyn_cast<FunctionType>(PTy->getElementType()))
Duncan Sands5f4ee1f2009-03-11 08:08:06 +00001040 FwdVal = Function::Create(FT, GlobalValue::ExternalWeakLinkage, "", M);
Chris Lattner1afcace2011-07-09 17:41:24 +00001041 else
Owen Andersone9b11b42009-07-08 19:03:57 +00001042 FwdVal = new GlobalVariable(*M, PTy->getElementType(), false,
1043 GlobalValue::ExternalWeakLinkage, 0, "");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001044
Chris Lattnerdf986172009-01-02 07:01:27 +00001045 ForwardRefValIDs[ID] = std::make_pair(FwdVal, Loc);
1046 return FwdVal;
1047}
1048
1049
1050//===----------------------------------------------------------------------===//
1051// Helper Routines.
1052//===----------------------------------------------------------------------===//
1053
1054/// ParseToken - If the current token has the specified kind, eat it and return
1055/// success. Otherwise, emit the specified error and return failure.
1056bool LLParser::ParseToken(lltok::Kind T, const char *ErrMsg) {
1057 if (Lex.getKind() != T)
1058 return TokError(ErrMsg);
1059 Lex.Lex();
1060 return false;
1061}
1062
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001063/// ParseStringConstant
1064/// ::= StringConstant
1065bool LLParser::ParseStringConstant(std::string &Result) {
1066 if (Lex.getKind() != lltok::StringConstant)
1067 return TokError("expected string constant");
1068 Result = Lex.getStrVal();
1069 Lex.Lex();
1070 return false;
1071}
1072
1073/// ParseUInt32
1074/// ::= uint32
1075bool LLParser::ParseUInt32(unsigned &Val) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001076 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned())
1077 return TokError("expected integer");
1078 uint64_t Val64 = Lex.getAPSIntVal().getLimitedValue(0xFFFFFFFFULL+1);
1079 if (Val64 != unsigned(Val64))
1080 return TokError("expected 32-bit integer (too large)");
1081 Val = Val64;
1082 Lex.Lex();
1083 return false;
1084}
1085
Hans Wennborgce718ff2012-06-23 11:37:03 +00001086/// ParseTLSModel
1087/// := 'localdynamic'
1088/// := 'initialexec'
1089/// := 'localexec'
1090bool LLParser::ParseTLSModel(GlobalVariable::ThreadLocalMode &TLM) {
1091 switch (Lex.getKind()) {
1092 default:
1093 return TokError("expected localdynamic, initialexec or localexec");
1094 case lltok::kw_localdynamic:
1095 TLM = GlobalVariable::LocalDynamicTLSModel;
1096 break;
1097 case lltok::kw_initialexec:
1098 TLM = GlobalVariable::InitialExecTLSModel;
1099 break;
1100 case lltok::kw_localexec:
1101 TLM = GlobalVariable::LocalExecTLSModel;
1102 break;
1103 }
1104
1105 Lex.Lex();
1106 return false;
1107}
1108
1109/// ParseOptionalThreadLocal
1110/// := /*empty*/
1111/// := 'thread_local'
1112/// := 'thread_local' '(' tlsmodel ')'
1113bool LLParser::ParseOptionalThreadLocal(GlobalVariable::ThreadLocalMode &TLM) {
1114 TLM = GlobalVariable::NotThreadLocal;
1115 if (!EatIfPresent(lltok::kw_thread_local))
1116 return false;
1117
1118 TLM = GlobalVariable::GeneralDynamicTLSModel;
1119 if (Lex.getKind() == lltok::lparen) {
1120 Lex.Lex();
1121 return ParseTLSModel(TLM) ||
1122 ParseToken(lltok::rparen, "expected ')' after thread local model");
1123 }
1124 return false;
1125}
Chris Lattnerdf986172009-01-02 07:01:27 +00001126
1127/// ParseOptionalAddrSpace
1128/// := /*empty*/
1129/// := 'addrspace' '(' uint32 ')'
1130bool LLParser::ParseOptionalAddrSpace(unsigned &AddrSpace) {
1131 AddrSpace = 0;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001132 if (!EatIfPresent(lltok::kw_addrspace))
Chris Lattnerdf986172009-01-02 07:01:27 +00001133 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00001134 return ParseToken(lltok::lparen, "expected '(' in address space") ||
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001135 ParseUInt32(AddrSpace) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00001136 ParseToken(lltok::rparen, "expected ')' in address space");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001137}
Chris Lattnerdf986172009-01-02 07:01:27 +00001138
Bill Wendlinge01b81b2012-12-04 23:40:58 +00001139/// ParseOptionalParamAttrs - Parse a potentially empty list of parameter attributes.
1140bool LLParser::ParseOptionalParamAttrs(AttrBuilder &B) {
1141 bool HaveError = false;
1142
1143 B.clear();
1144
1145 while (1) {
1146 lltok::Kind Token = Lex.getKind();
1147 switch (Token) {
1148 default: // End of attributes.
1149 return HaveError;
Chris Lattnerdf986172009-01-02 07:01:27 +00001150 case lltok::kw_align: {
1151 unsigned Alignment;
1152 if (ParseOptionalAlignment(Alignment))
1153 return true;
Bill Wendling03272442012-10-08 22:20:14 +00001154 B.addAlignmentAttr(Alignment);
Chris Lattnerdf986172009-01-02 07:01:27 +00001155 continue;
1156 }
Bill Wendling034b94b2012-12-19 07:18:57 +00001157 case lltok::kw_byval: B.addAttribute(Attribute::ByVal); break;
1158 case lltok::kw_inreg: B.addAttribute(Attribute::InReg); break;
1159 case lltok::kw_nest: B.addAttribute(Attribute::Nest); break;
1160 case lltok::kw_noalias: B.addAttribute(Attribute::NoAlias); break;
1161 case lltok::kw_nocapture: B.addAttribute(Attribute::NoCapture); break;
Nick Lewyckydc897372013-07-06 00:29:58 +00001162 case lltok::kw_readnone: B.addAttribute(Attribute::ReadNone); break;
1163 case lltok::kw_readonly: B.addAttribute(Attribute::ReadOnly); break;
Stephen Lin456ca042013-04-20 05:14:40 +00001164 case lltok::kw_returned: B.addAttribute(Attribute::Returned); break;
Bill Wendling034b94b2012-12-19 07:18:57 +00001165 case lltok::kw_signext: B.addAttribute(Attribute::SExt); break;
1166 case lltok::kw_sret: B.addAttribute(Attribute::StructRet); break;
1167 case lltok::kw_zeroext: B.addAttribute(Attribute::ZExt); break;
Charles Davis1e063d12010-02-12 00:31:15 +00001168
Stephen Linb0aeb3e2013-04-20 13:16:13 +00001169 case lltok::kw_alignstack:
1170 case lltok::kw_alwaysinline:
Michael Gottesman2253a2f2013-06-27 00:25:01 +00001171 case lltok::kw_builtin:
Stephen Linb0aeb3e2013-04-20 13:16:13 +00001172 case lltok::kw_inlinehint:
1173 case lltok::kw_minsize:
1174 case lltok::kw_naked:
1175 case lltok::kw_nobuiltin:
1176 case lltok::kw_noduplicate:
1177 case lltok::kw_noimplicitfloat:
1178 case lltok::kw_noinline:
1179 case lltok::kw_nonlazybind:
1180 case lltok::kw_noredzone:
1181 case lltok::kw_noreturn:
1182 case lltok::kw_nounwind:
1183 case lltok::kw_optsize:
Stephen Linb0aeb3e2013-04-20 13:16:13 +00001184 case lltok::kw_returns_twice:
1185 case lltok::kw_sanitize_address:
1186 case lltok::kw_sanitize_memory:
1187 case lltok::kw_sanitize_thread:
1188 case lltok::kw_ssp:
1189 case lltok::kw_sspreq:
1190 case lltok::kw_sspstrong:
1191 case lltok::kw_uwtable:
Bill Wendlinge01b81b2012-12-04 23:40:58 +00001192 HaveError |= Error(Lex.getLoc(), "invalid use of function-only attribute");
1193 break;
Chris Lattnerdf986172009-01-02 07:01:27 +00001194 }
Bill Wendlingdc998cc2012-09-28 22:30:18 +00001195
Bill Wendlinge01b81b2012-12-04 23:40:58 +00001196 Lex.Lex();
1197 }
1198}
1199
1200/// ParseOptionalReturnAttrs - Parse a potentially empty list of return attributes.
1201bool LLParser::ParseOptionalReturnAttrs(AttrBuilder &B) {
1202 bool HaveError = false;
1203
1204 B.clear();
1205
1206 while (1) {
1207 lltok::Kind Token = Lex.getKind();
Bill Wendlingdc998cc2012-09-28 22:30:18 +00001208 switch (Token) {
Bill Wendlinge01b81b2012-12-04 23:40:58 +00001209 default: // End of attributes.
1210 return HaveError;
Bill Wendling034b94b2012-12-19 07:18:57 +00001211 case lltok::kw_inreg: B.addAttribute(Attribute::InReg); break;
1212 case lltok::kw_noalias: B.addAttribute(Attribute::NoAlias); break;
1213 case lltok::kw_signext: B.addAttribute(Attribute::SExt); break;
1214 case lltok::kw_zeroext: B.addAttribute(Attribute::ZExt); break;
Bill Wendlingdc998cc2012-09-28 22:30:18 +00001215
Bill Wendlinge01b81b2012-12-04 23:40:58 +00001216 // Error handling.
Stephen Linb0aeb3e2013-04-20 13:16:13 +00001217 case lltok::kw_align:
Chandler Carruth239e1e42013-04-09 19:46:46 +00001218 case lltok::kw_byval:
1219 case lltok::kw_nest:
1220 case lltok::kw_nocapture:
Stephen Lin456ca042013-04-20 05:14:40 +00001221 case lltok::kw_returned:
Chandler Carruth239e1e42013-04-09 19:46:46 +00001222 case lltok::kw_sret:
Bill Wendlinge01b81b2012-12-04 23:40:58 +00001223 HaveError |= Error(Lex.getLoc(), "invalid use of parameter-only attribute");
Bill Wendlingdc998cc2012-09-28 22:30:18 +00001224 break;
James Molloy67ae1352012-12-20 16:04:27 +00001225
Chandler Carruth239e1e42013-04-09 19:46:46 +00001226 case lltok::kw_alignstack:
1227 case lltok::kw_alwaysinline:
Michael Gottesman2253a2f2013-06-27 00:25:01 +00001228 case lltok::kw_builtin:
Diego Novillo77226a02013-05-24 12:26:52 +00001229 case lltok::kw_cold:
Chandler Carruth239e1e42013-04-09 19:46:46 +00001230 case lltok::kw_inlinehint:
1231 case lltok::kw_minsize:
1232 case lltok::kw_naked:
1233 case lltok::kw_nobuiltin:
1234 case lltok::kw_noduplicate:
1235 case lltok::kw_noimplicitfloat:
1236 case lltok::kw_noinline:
1237 case lltok::kw_nonlazybind:
1238 case lltok::kw_noredzone:
1239 case lltok::kw_noreturn:
1240 case lltok::kw_nounwind:
1241 case lltok::kw_optsize:
Chandler Carruth239e1e42013-04-09 19:46:46 +00001242 case lltok::kw_returns_twice:
1243 case lltok::kw_sanitize_address:
1244 case lltok::kw_sanitize_memory:
1245 case lltok::kw_sanitize_thread:
1246 case lltok::kw_ssp:
1247 case lltok::kw_sspreq:
1248 case lltok::kw_sspstrong:
1249 case lltok::kw_uwtable:
Bill Wendlinge01b81b2012-12-04 23:40:58 +00001250 HaveError |= Error(Lex.getLoc(), "invalid use of function-only attribute");
Bill Wendlingdc998cc2012-09-28 22:30:18 +00001251 break;
Nick Lewyckydc897372013-07-06 00:29:58 +00001252
1253 case lltok::kw_readnone:
1254 case lltok::kw_readonly:
1255 HaveError |= Error(Lex.getLoc(), "invalid use of attribute on return type");
Bill Wendlingdc998cc2012-09-28 22:30:18 +00001256 }
1257
Chris Lattnerdf986172009-01-02 07:01:27 +00001258 Lex.Lex();
1259 }
1260}
1261
1262/// ParseOptionalLinkage
1263/// ::= /*empty*/
Rafael Espindolabb46f522009-01-15 20:18:42 +00001264/// ::= 'private'
Bill Wendling3d10a5a2009-07-20 01:03:30 +00001265/// ::= 'linker_private'
Bill Wendling5e721d72010-07-01 21:55:59 +00001266/// ::= 'linker_private_weak'
Chris Lattnerdf986172009-01-02 07:01:27 +00001267/// ::= 'internal'
1268/// ::= 'weak'
Duncan Sands667d4b82009-03-07 15:45:40 +00001269/// ::= 'weak_odr'
Chris Lattnerdf986172009-01-02 07:01:27 +00001270/// ::= 'linkonce'
Duncan Sands667d4b82009-03-07 15:45:40 +00001271/// ::= 'linkonce_odr'
Bill Wendling32811be2012-08-17 18:33:14 +00001272/// ::= 'linkonce_odr_auto_hide'
Bill Wendling5e721d72010-07-01 21:55:59 +00001273/// ::= 'available_externally'
Chris Lattnerdf986172009-01-02 07:01:27 +00001274/// ::= 'appending'
1275/// ::= 'dllexport'
1276/// ::= 'common'
1277/// ::= 'dllimport'
1278/// ::= 'extern_weak'
1279/// ::= 'external'
1280bool LLParser::ParseOptionalLinkage(unsigned &Res, bool &HasLinkage) {
1281 HasLinkage = false;
1282 switch (Lex.getKind()) {
Bill Wendling3d10a5a2009-07-20 01:03:30 +00001283 default: Res=GlobalValue::ExternalLinkage; return false;
1284 case lltok::kw_private: Res = GlobalValue::PrivateLinkage; break;
1285 case lltok::kw_linker_private: Res = GlobalValue::LinkerPrivateLinkage; break;
Bill Wendling5e721d72010-07-01 21:55:59 +00001286 case lltok::kw_linker_private_weak:
1287 Res = GlobalValue::LinkerPrivateWeakLinkage;
1288 break;
Bill Wendling3d10a5a2009-07-20 01:03:30 +00001289 case lltok::kw_internal: Res = GlobalValue::InternalLinkage; break;
1290 case lltok::kw_weak: Res = GlobalValue::WeakAnyLinkage; break;
1291 case lltok::kw_weak_odr: Res = GlobalValue::WeakODRLinkage; break;
1292 case lltok::kw_linkonce: Res = GlobalValue::LinkOnceAnyLinkage; break;
1293 case lltok::kw_linkonce_odr: Res = GlobalValue::LinkOnceODRLinkage; break;
Bill Wendling32811be2012-08-17 18:33:14 +00001294 case lltok::kw_linkonce_odr_auto_hide:
1295 case lltok::kw_linker_private_weak_def_auto: // FIXME: For backwards compat.
1296 Res = GlobalValue::LinkOnceODRAutoHideLinkage;
1297 break;
Chris Lattner266c7bb2009-04-13 05:44:34 +00001298 case lltok::kw_available_externally:
1299 Res = GlobalValue::AvailableExternallyLinkage;
1300 break;
Bill Wendling3d10a5a2009-07-20 01:03:30 +00001301 case lltok::kw_appending: Res = GlobalValue::AppendingLinkage; break;
1302 case lltok::kw_dllexport: Res = GlobalValue::DLLExportLinkage; break;
1303 case lltok::kw_common: Res = GlobalValue::CommonLinkage; break;
1304 case lltok::kw_dllimport: Res = GlobalValue::DLLImportLinkage; break;
1305 case lltok::kw_extern_weak: Res = GlobalValue::ExternalWeakLinkage; break;
1306 case lltok::kw_external: Res = GlobalValue::ExternalLinkage; break;
Chris Lattnerdf986172009-01-02 07:01:27 +00001307 }
1308 Lex.Lex();
1309 HasLinkage = true;
1310 return false;
1311}
1312
1313/// ParseOptionalVisibility
1314/// ::= /*empty*/
1315/// ::= 'default'
1316/// ::= 'hidden'
1317/// ::= 'protected'
Daniel Dunbara279bc32009-09-20 02:20:51 +00001318///
Chris Lattnerdf986172009-01-02 07:01:27 +00001319bool LLParser::ParseOptionalVisibility(unsigned &Res) {
1320 switch (Lex.getKind()) {
1321 default: Res = GlobalValue::DefaultVisibility; return false;
1322 case lltok::kw_default: Res = GlobalValue::DefaultVisibility; break;
1323 case lltok::kw_hidden: Res = GlobalValue::HiddenVisibility; break;
1324 case lltok::kw_protected: Res = GlobalValue::ProtectedVisibility; break;
1325 }
1326 Lex.Lex();
1327 return false;
1328}
1329
1330/// ParseOptionalCallingConv
1331/// ::= /*empty*/
1332/// ::= 'ccc'
1333/// ::= 'fastcc'
Elena Demikhovsky35752222012-10-24 14:46:16 +00001334/// ::= 'kw_intel_ocl_bicc'
Chris Lattnerdf986172009-01-02 07:01:27 +00001335/// ::= 'coldcc'
1336/// ::= 'x86_stdcallcc'
1337/// ::= 'x86_fastcallcc'
Anton Korobeynikovded05e32010-05-16 09:08:45 +00001338/// ::= 'x86_thiscallcc'
Anton Korobeynikov385f5a92009-06-16 18:50:49 +00001339/// ::= 'arm_apcscc'
1340/// ::= 'arm_aapcscc'
1341/// ::= 'arm_aapcs_vfpcc'
Anton Korobeynikov211a14e2009-12-07 02:27:35 +00001342/// ::= 'msp430_intrcc'
Che-Liang Chiouf9930da2010-09-25 07:46:17 +00001343/// ::= 'ptx_kernel'
1344/// ::= 'ptx_device'
Micah Villmowe53d6052012-10-01 17:01:31 +00001345/// ::= 'spir_func'
1346/// ::= 'spir_kernel'
Chris Lattnerdf986172009-01-02 07:01:27 +00001347/// ::= 'cc' UINT
Anton Korobeynikov385f5a92009-06-16 18:50:49 +00001348///
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001349bool LLParser::ParseOptionalCallingConv(CallingConv::ID &CC) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001350 switch (Lex.getKind()) {
1351 default: CC = CallingConv::C; return false;
1352 case lltok::kw_ccc: CC = CallingConv::C; break;
1353 case lltok::kw_fastcc: CC = CallingConv::Fast; break;
1354 case lltok::kw_coldcc: CC = CallingConv::Cold; break;
1355 case lltok::kw_x86_stdcallcc: CC = CallingConv::X86_StdCall; break;
1356 case lltok::kw_x86_fastcallcc: CC = CallingConv::X86_FastCall; break;
Anton Korobeynikovded05e32010-05-16 09:08:45 +00001357 case lltok::kw_x86_thiscallcc: CC = CallingConv::X86_ThisCall; break;
Anton Korobeynikov385f5a92009-06-16 18:50:49 +00001358 case lltok::kw_arm_apcscc: CC = CallingConv::ARM_APCS; break;
1359 case lltok::kw_arm_aapcscc: CC = CallingConv::ARM_AAPCS; break;
1360 case lltok::kw_arm_aapcs_vfpcc:CC = CallingConv::ARM_AAPCS_VFP; break;
Anton Korobeynikov211a14e2009-12-07 02:27:35 +00001361 case lltok::kw_msp430_intrcc: CC = CallingConv::MSP430_INTR; break;
Che-Liang Chiouf9930da2010-09-25 07:46:17 +00001362 case lltok::kw_ptx_kernel: CC = CallingConv::PTX_Kernel; break;
1363 case lltok::kw_ptx_device: CC = CallingConv::PTX_Device; break;
Micah Villmowe53d6052012-10-01 17:01:31 +00001364 case lltok::kw_spir_kernel: CC = CallingConv::SPIR_KERNEL; break;
1365 case lltok::kw_spir_func: CC = CallingConv::SPIR_FUNC; break;
Elena Demikhovsky35752222012-10-24 14:46:16 +00001366 case lltok::kw_intel_ocl_bicc: CC = CallingConv::Intel_OCL_BI; break;
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001367 case lltok::kw_cc: {
1368 unsigned ArbitraryCC;
1369 Lex.Lex();
David Blaikie4d6ccb52012-01-20 21:51:11 +00001370 if (ParseUInt32(ArbitraryCC))
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001371 return true;
David Blaikie4d6ccb52012-01-20 21:51:11 +00001372 CC = static_cast<CallingConv::ID>(ArbitraryCC);
1373 return false;
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001374 }
Chris Lattnerdf986172009-01-02 07:01:27 +00001375 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001376
Chris Lattnerdf986172009-01-02 07:01:27 +00001377 Lex.Lex();
1378 return false;
1379}
1380
Chris Lattnerb8c46862009-12-30 05:31:19 +00001381/// ParseInstructionMetadata
Chris Lattner3f3a0f62009-12-29 21:25:40 +00001382/// ::= !dbg !42 (',' !dbg !57)*
Dan Gohman9d072f52010-08-24 02:05:17 +00001383bool LLParser::ParseInstructionMetadata(Instruction *Inst,
1384 PerFunctionState *PFS) {
Chris Lattnerb8c46862009-12-30 05:31:19 +00001385 do {
1386 if (Lex.getKind() != lltok::MetadataVar)
1387 return TokError("expected metadata after comma");
Devang Patel0475c912009-09-29 00:01:14 +00001388
Chris Lattner3f3a0f62009-12-29 21:25:40 +00001389 std::string Name = Lex.getStrVal();
Benjamin Kramer85dadec2011-12-06 11:50:26 +00001390 unsigned MDK = M->getMDKindID(Name);
Chris Lattner3f3a0f62009-12-29 21:25:40 +00001391 Lex.Lex();
Chris Lattner52e20312009-10-19 05:31:10 +00001392
Chris Lattner442ffa12009-12-29 21:53:55 +00001393 MDNode *Node;
Chris Lattner449c3102010-04-01 05:14:45 +00001394 SMLoc Loc = Lex.getLoc();
Dan Gohman309b3af2010-08-24 02:24:03 +00001395
1396 if (ParseToken(lltok::exclaim, "expected '!' here"))
Chris Lattnere434d272009-12-30 04:56:59 +00001397 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001398
Dan Gohman68261142010-08-24 14:35:45 +00001399 // This code is similar to that of ParseMetadataValue, however it needs to
1400 // have special-case code for a forward reference; see the comments on
1401 // ForwardRefInstMetadata for details. Also, MDStrings are not supported
1402 // at the top level here.
Dan Gohman309b3af2010-08-24 02:24:03 +00001403 if (Lex.getKind() == lltok::lbrace) {
1404 ValID ID;
1405 if (ParseMetadataListValue(ID, PFS))
1406 return true;
1407 assert(ID.Kind == ValID::t_MDNode);
1408 Inst->setMetadata(MDK, ID.MDNodeVal);
Chris Lattner449c3102010-04-01 05:14:45 +00001409 } else {
Nick Lewyckyc6877b42010-09-30 21:04:13 +00001410 unsigned NodeID = 0;
Dan Gohman309b3af2010-08-24 02:24:03 +00001411 if (ParseMDNodeID(Node, NodeID))
1412 return true;
1413 if (Node) {
1414 // If we got the node, add it to the instruction.
1415 Inst->setMetadata(MDK, Node);
1416 } else {
1417 MDRef R = { Loc, MDK, NodeID };
1418 // Otherwise, remember that this should be resolved later.
1419 ForwardRefInstMetadata[Inst].push_back(R);
1420 }
Chris Lattner449c3102010-04-01 05:14:45 +00001421 }
Chris Lattner3f3a0f62009-12-29 21:25:40 +00001422
1423 // If this is the end of the list, we're done.
Chris Lattnerb8c46862009-12-30 05:31:19 +00001424 } while (EatIfPresent(lltok::comma));
1425 return false;
Devang Patelf633a062009-09-17 23:04:48 +00001426}
1427
Chris Lattnerdf986172009-01-02 07:01:27 +00001428/// ParseOptionalAlignment
1429/// ::= /* empty */
1430/// ::= 'align' 4
1431bool LLParser::ParseOptionalAlignment(unsigned &Alignment) {
1432 Alignment = 0;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001433 if (!EatIfPresent(lltok::kw_align))
1434 return false;
Chris Lattner3fbb3ab2009-01-05 07:46:05 +00001435 LocTy AlignLoc = Lex.getLoc();
1436 if (ParseUInt32(Alignment)) return true;
1437 if (!isPowerOf2_32(Alignment))
1438 return Error(AlignLoc, "alignment is not a power of two");
Dan Gohmane16829b2010-07-30 21:07:05 +00001439 if (Alignment > Value::MaximumAlignment)
Dan Gohman138aa2a2010-07-28 20:12:04 +00001440 return Error(AlignLoc, "huge alignments are not supported yet");
Chris Lattner3fbb3ab2009-01-05 07:46:05 +00001441 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00001442}
1443
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00001444/// ParseOptionalCommaAlign
Michael Ilseman407a6162012-11-15 22:34:00 +00001445/// ::=
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00001446/// ::= ',' align 4
1447///
1448/// This returns with AteExtraComma set to true if it ate an excess comma at the
1449/// end.
1450bool LLParser::ParseOptionalCommaAlign(unsigned &Alignment,
1451 bool &AteExtraComma) {
1452 AteExtraComma = false;
1453 while (EatIfPresent(lltok::comma)) {
1454 // Metadata at the end is an early exit.
Chris Lattner1d928312009-12-30 05:02:06 +00001455 if (Lex.getKind() == lltok::MetadataVar) {
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00001456 AteExtraComma = true;
1457 return false;
1458 }
Michael Ilseman407a6162012-11-15 22:34:00 +00001459
Chris Lattner093eed12010-04-23 00:50:50 +00001460 if (Lex.getKind() != lltok::kw_align)
1461 return Error(Lex.getLoc(), "expected metadata or 'align'");
Duncan Sandsbf9fc532010-10-21 16:07:10 +00001462
Chris Lattner093eed12010-04-23 00:50:50 +00001463 if (ParseOptionalAlignment(Alignment)) return true;
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00001464 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001465
Devang Patelf633a062009-09-17 23:04:48 +00001466 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00001467}
1468
Eli Friedman47f35132011-07-25 23:16:38 +00001469/// ParseScopeAndOrdering
1470/// if isAtomic: ::= 'singlethread'? AtomicOrdering
1471/// else: ::=
1472///
1473/// This sets Scope and Ordering to the parsed values.
1474bool LLParser::ParseScopeAndOrdering(bool isAtomic, SynchronizationScope &Scope,
1475 AtomicOrdering &Ordering) {
1476 if (!isAtomic)
1477 return false;
1478
1479 Scope = CrossThread;
1480 if (EatIfPresent(lltok::kw_singlethread))
1481 Scope = SingleThread;
1482 switch (Lex.getKind()) {
1483 default: return TokError("Expected ordering on atomic instruction");
1484 case lltok::kw_unordered: Ordering = Unordered; break;
1485 case lltok::kw_monotonic: Ordering = Monotonic; break;
1486 case lltok::kw_acquire: Ordering = Acquire; break;
1487 case lltok::kw_release: Ordering = Release; break;
1488 case lltok::kw_acq_rel: Ordering = AcquireRelease; break;
1489 case lltok::kw_seq_cst: Ordering = SequentiallyConsistent; break;
1490 }
1491 Lex.Lex();
1492 return false;
1493}
1494
Charles Davis1e063d12010-02-12 00:31:15 +00001495/// ParseOptionalStackAlignment
1496/// ::= /* empty */
1497/// ::= 'alignstack' '(' 4 ')'
1498bool LLParser::ParseOptionalStackAlignment(unsigned &Alignment) {
1499 Alignment = 0;
1500 if (!EatIfPresent(lltok::kw_alignstack))
1501 return false;
1502 LocTy ParenLoc = Lex.getLoc();
1503 if (!EatIfPresent(lltok::lparen))
1504 return Error(ParenLoc, "expected '('");
1505 LocTy AlignLoc = Lex.getLoc();
1506 if (ParseUInt32(Alignment)) return true;
1507 ParenLoc = Lex.getLoc();
1508 if (!EatIfPresent(lltok::rparen))
1509 return Error(ParenLoc, "expected ')'");
1510 if (!isPowerOf2_32(Alignment))
1511 return Error(AlignLoc, "stack alignment is not a power of two");
1512 return false;
1513}
Devang Patelf633a062009-09-17 23:04:48 +00001514
Chris Lattner628c13a2009-12-30 05:14:00 +00001515/// ParseIndexList - This parses the index list for an insert/extractvalue
1516/// instruction. This sets AteExtraComma in the case where we eat an extra
1517/// comma at the end of the line and find that it is followed by metadata.
1518/// Clients that don't allow metadata can call the version of this function that
1519/// only takes one argument.
1520///
Chris Lattnerdf986172009-01-02 07:01:27 +00001521/// ParseIndexList
1522/// ::= (',' uint32)+
Chris Lattner628c13a2009-12-30 05:14:00 +00001523///
1524bool LLParser::ParseIndexList(SmallVectorImpl<unsigned> &Indices,
1525 bool &AteExtraComma) {
1526 AteExtraComma = false;
Michael Ilseman407a6162012-11-15 22:34:00 +00001527
Chris Lattnerdf986172009-01-02 07:01:27 +00001528 if (Lex.getKind() != lltok::comma)
1529 return TokError("expected ',' as start of index list");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001530
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001531 while (EatIfPresent(lltok::comma)) {
Chris Lattner628c13a2009-12-30 05:14:00 +00001532 if (Lex.getKind() == lltok::MetadataVar) {
1533 AteExtraComma = true;
1534 return false;
1535 }
Nick Lewycky28815c42010-09-29 23:32:20 +00001536 unsigned Idx = 0;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001537 if (ParseUInt32(Idx)) return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00001538 Indices.push_back(Idx);
1539 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001540
Chris Lattnerdf986172009-01-02 07:01:27 +00001541 return false;
1542}
1543
1544//===----------------------------------------------------------------------===//
1545// Type Parsing.
1546//===----------------------------------------------------------------------===//
1547
Chris Lattner1afcace2011-07-09 17:41:24 +00001548/// ParseType - Parse a type.
1549bool LLParser::ParseType(Type *&Result, bool AllowVoid) {
1550 SMLoc TypeLoc = Lex.getLoc();
Chris Lattnerdf986172009-01-02 07:01:27 +00001551 switch (Lex.getKind()) {
1552 default:
1553 return TokError("expected type");
1554 case lltok::Type:
Chris Lattner1afcace2011-07-09 17:41:24 +00001555 // Type ::= 'float' | 'void' (etc)
Chris Lattnerdf986172009-01-02 07:01:27 +00001556 Result = Lex.getTyVal();
Daniel Dunbara279bc32009-09-20 02:20:51 +00001557 Lex.Lex();
Chris Lattnerdf986172009-01-02 07:01:27 +00001558 break;
Chris Lattnerdf986172009-01-02 07:01:27 +00001559 case lltok::lbrace:
Chris Lattner1afcace2011-07-09 17:41:24 +00001560 // Type ::= StructType
1561 if (ParseAnonStructType(Result, false))
Chris Lattnerdf986172009-01-02 07:01:27 +00001562 return true;
1563 break;
1564 case lltok::lsquare:
Chris Lattner1afcace2011-07-09 17:41:24 +00001565 // Type ::= '[' ... ']'
Chris Lattnerdf986172009-01-02 07:01:27 +00001566 Lex.Lex(); // eat the lsquare.
1567 if (ParseArrayVectorType(Result, false))
1568 return true;
1569 break;
1570 case lltok::less: // Either vector or packed struct.
Chris Lattner1afcace2011-07-09 17:41:24 +00001571 // Type ::= '<' ... '>'
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001572 Lex.Lex();
1573 if (Lex.getKind() == lltok::lbrace) {
Chris Lattner1afcace2011-07-09 17:41:24 +00001574 if (ParseAnonStructType(Result, true) ||
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001575 ParseToken(lltok::greater, "expected '>' at end of packed struct"))
Chris Lattnerdf986172009-01-02 07:01:27 +00001576 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00001577 } else if (ParseArrayVectorType(Result, true))
1578 return true;
1579 break;
Chris Lattner1afcace2011-07-09 17:41:24 +00001580 case lltok::LocalVar: {
1581 // Type ::= %foo
1582 std::pair<Type*, LocTy> &Entry = NamedTypes[Lex.getStrVal()];
Michael Ilseman407a6162012-11-15 22:34:00 +00001583
Chris Lattner1afcace2011-07-09 17:41:24 +00001584 // If the type hasn't been defined yet, create a forward definition and
1585 // remember where that forward def'n was seen (in case it never is defined).
1586 if (Entry.first == 0) {
Chris Lattner3ebb6492011-08-12 18:06:37 +00001587 Entry.first = StructType::create(Context, Lex.getStrVal());
Chris Lattner1afcace2011-07-09 17:41:24 +00001588 Entry.second = Lex.getLoc();
Chris Lattnerdf986172009-01-02 07:01:27 +00001589 }
Chris Lattner1afcace2011-07-09 17:41:24 +00001590 Result = Entry.first;
Chris Lattnerdf986172009-01-02 07:01:27 +00001591 Lex.Lex();
1592 break;
Chris Lattner1afcace2011-07-09 17:41:24 +00001593 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001594
Chris Lattner1afcace2011-07-09 17:41:24 +00001595 case lltok::LocalVarID: {
1596 // Type ::= %4
1597 if (Lex.getUIntVal() >= NumberedTypes.size())
1598 NumberedTypes.resize(Lex.getUIntVal()+1);
1599 std::pair<Type*, LocTy> &Entry = NumberedTypes[Lex.getUIntVal()];
Michael Ilseman407a6162012-11-15 22:34:00 +00001600
Chris Lattner1afcace2011-07-09 17:41:24 +00001601 // If the type hasn't been defined yet, create a forward definition and
1602 // remember where that forward def'n was seen (in case it never is defined).
1603 if (Entry.first == 0) {
Chris Lattner3ebb6492011-08-12 18:06:37 +00001604 Entry.first = StructType::create(Context);
Chris Lattner1afcace2011-07-09 17:41:24 +00001605 Entry.second = Lex.getLoc();
Chris Lattnerdf986172009-01-02 07:01:27 +00001606 }
Chris Lattner1afcace2011-07-09 17:41:24 +00001607 Result = Entry.first;
Chris Lattnerdf986172009-01-02 07:01:27 +00001608 Lex.Lex();
1609 break;
Chris Lattnerdf986172009-01-02 07:01:27 +00001610 }
1611 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001612
1613 // Parse the type suffixes.
Chris Lattnerdf986172009-01-02 07:01:27 +00001614 while (1) {
1615 switch (Lex.getKind()) {
1616 // End of type.
Chris Lattner1afcace2011-07-09 17:41:24 +00001617 default:
1618 if (!AllowVoid && Result->isVoidTy())
1619 return Error(TypeLoc, "void type only allowed for function results");
1620 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00001621
Chris Lattner1afcace2011-07-09 17:41:24 +00001622 // Type ::= Type '*'
Chris Lattnerdf986172009-01-02 07:01:27 +00001623 case lltok::star:
Chris Lattner1afcace2011-07-09 17:41:24 +00001624 if (Result->isLabelTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00001625 return TokError("basic block pointers are invalid");
Chris Lattner1afcace2011-07-09 17:41:24 +00001626 if (Result->isVoidTy())
1627 return TokError("pointers to void are invalid - use i8* instead");
1628 if (!PointerType::isValidElementType(Result))
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001629 return TokError("pointer to this type is invalid");
Chris Lattner1afcace2011-07-09 17:41:24 +00001630 Result = PointerType::getUnqual(Result);
Chris Lattnerdf986172009-01-02 07:01:27 +00001631 Lex.Lex();
1632 break;
1633
Chris Lattner1afcace2011-07-09 17:41:24 +00001634 // Type ::= Type 'addrspace' '(' uint32 ')' '*'
Chris Lattnerdf986172009-01-02 07:01:27 +00001635 case lltok::kw_addrspace: {
Chris Lattner1afcace2011-07-09 17:41:24 +00001636 if (Result->isLabelTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00001637 return TokError("basic block pointers are invalid");
Chris Lattner1afcace2011-07-09 17:41:24 +00001638 if (Result->isVoidTy())
Dan Gohmanb9070d32009-02-09 17:41:21 +00001639 return TokError("pointers to void are invalid; use i8* instead");
Chris Lattner1afcace2011-07-09 17:41:24 +00001640 if (!PointerType::isValidElementType(Result))
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001641 return TokError("pointer to this type is invalid");
Chris Lattnerdf986172009-01-02 07:01:27 +00001642 unsigned AddrSpace;
1643 if (ParseOptionalAddrSpace(AddrSpace) ||
1644 ParseToken(lltok::star, "expected '*' in address space"))
1645 return true;
1646
Chris Lattner1afcace2011-07-09 17:41:24 +00001647 Result = PointerType::get(Result, AddrSpace);
Chris Lattnerdf986172009-01-02 07:01:27 +00001648 break;
1649 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001650
Chris Lattnerdf986172009-01-02 07:01:27 +00001651 /// Types '(' ArgTypeListI ')' OptFuncAttrs
1652 case lltok::lparen:
1653 if (ParseFunctionType(Result))
1654 return true;
1655 break;
1656 }
1657 }
1658}
1659
1660/// ParseParameterList
1661/// ::= '(' ')'
1662/// ::= '(' Arg (',' Arg)* ')'
1663/// Arg
1664/// ::= Type OptionalAttributes Value OptionalAttributes
1665bool LLParser::ParseParameterList(SmallVectorImpl<ParamInfo> &ArgList,
1666 PerFunctionState &PFS) {
1667 if (ParseToken(lltok::lparen, "expected '(' in call"))
1668 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001669
Bill Wendling73dee182013-01-31 00:29:54 +00001670 unsigned AttrIndex = 1;
Chris Lattnerdf986172009-01-02 07:01:27 +00001671 while (Lex.getKind() != lltok::rparen) {
1672 // If this isn't the first argument, we need a comma.
1673 if (!ArgList.empty() &&
1674 ParseToken(lltok::comma, "expected ',' in argument list"))
1675 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001676
Chris Lattnerdf986172009-01-02 07:01:27 +00001677 // Parse the argument.
1678 LocTy ArgLoc;
Chris Lattner1afcace2011-07-09 17:41:24 +00001679 Type *ArgTy = 0;
Bill Wendling702cc912012-10-15 20:35:56 +00001680 AttrBuilder ArgAttrs;
Chris Lattnerdf986172009-01-02 07:01:27 +00001681 Value *V;
Victor Hernandez19715562009-12-03 23:40:58 +00001682 if (ParseType(ArgTy, ArgLoc))
Chris Lattnerdf986172009-01-02 07:01:27 +00001683 return true;
Victor Hernandez19715562009-12-03 23:40:58 +00001684
Chris Lattner287881d2009-12-30 02:11:14 +00001685 // Otherwise, handle normal operands.
Bill Wendlinge01b81b2012-12-04 23:40:58 +00001686 if (ParseOptionalParamAttrs(ArgAttrs) || ParseValue(ArgTy, V, PFS))
Chris Lattner287881d2009-12-30 02:11:14 +00001687 return true;
Bill Wendling73dee182013-01-31 00:29:54 +00001688 ArgList.push_back(ParamInfo(ArgLoc, V, AttributeSet::get(V->getContext(),
1689 AttrIndex++,
1690 ArgAttrs)));
Chris Lattnerdf986172009-01-02 07:01:27 +00001691 }
1692
1693 Lex.Lex(); // Lex the ')'.
1694 return false;
1695}
1696
1697
1698
Chris Lattnerdfd19dd2009-01-05 18:34:07 +00001699/// ParseArgumentList - Parse the argument list for a function type or function
Chris Lattner1afcace2011-07-09 17:41:24 +00001700/// prototype.
Chris Lattnerdf986172009-01-02 07:01:27 +00001701/// ::= '(' ArgTypeListI ')'
1702/// ArgTypeListI
1703/// ::= /*empty*/
1704/// ::= '...'
1705/// ::= ArgTypeList ',' '...'
1706/// ::= ArgType (',' ArgType)*
Chris Lattnerdfd19dd2009-01-05 18:34:07 +00001707///
Chris Lattner1afcace2011-07-09 17:41:24 +00001708bool LLParser::ParseArgumentList(SmallVectorImpl<ArgInfo> &ArgList,
1709 bool &isVarArg){
Chris Lattnerdf986172009-01-02 07:01:27 +00001710 isVarArg = false;
1711 assert(Lex.getKind() == lltok::lparen);
1712 Lex.Lex(); // eat the (.
Daniel Dunbara279bc32009-09-20 02:20:51 +00001713
Chris Lattnerdf986172009-01-02 07:01:27 +00001714 if (Lex.getKind() == lltok::rparen) {
1715 // empty
1716 } else if (Lex.getKind() == lltok::dotdotdot) {
1717 isVarArg = true;
1718 Lex.Lex();
1719 } else {
1720 LocTy TypeLoc = Lex.getLoc();
Chris Lattner1afcace2011-07-09 17:41:24 +00001721 Type *ArgTy = 0;
Bill Wendling702cc912012-10-15 20:35:56 +00001722 AttrBuilder Attrs;
Chris Lattnerdf986172009-01-02 07:01:27 +00001723 std::string Name;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001724
Chris Lattner1afcace2011-07-09 17:41:24 +00001725 if (ParseType(ArgTy) ||
Bill Wendlinge01b81b2012-12-04 23:40:58 +00001726 ParseOptionalParamAttrs(Attrs)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001727
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001728 if (ArgTy->isVoidTy())
Chris Lattnera9a9e072009-03-09 04:49:14 +00001729 return Error(TypeLoc, "argument can not have void type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001730
Chris Lattner7a1b9bd2011-06-17 06:36:20 +00001731 if (Lex.getKind() == lltok::LocalVar) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001732 Name = Lex.getStrVal();
1733 Lex.Lex();
1734 }
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001735
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001736 if (!FunctionType::isValidArgumentType(ArgTy))
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001737 return Error(TypeLoc, "invalid type for function argument");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001738
Bill Wendling73dee182013-01-31 00:29:54 +00001739 unsigned AttrIndex = 1;
Bill Wendlingcb3de0b2012-10-15 04:46:55 +00001740 ArgList.push_back(ArgInfo(TypeLoc, ArgTy,
Bill Wendling73dee182013-01-31 00:29:54 +00001741 AttributeSet::get(ArgTy->getContext(),
1742 AttrIndex++, Attrs), Name));
Daniel Dunbara279bc32009-09-20 02:20:51 +00001743
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001744 while (EatIfPresent(lltok::comma)) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001745 // Handle ... at end of arg list.
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001746 if (EatIfPresent(lltok::dotdotdot)) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001747 isVarArg = true;
Chris Lattnerdf986172009-01-02 07:01:27 +00001748 break;
1749 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001750
Chris Lattnerdf986172009-01-02 07:01:27 +00001751 // Otherwise must be an argument type.
1752 TypeLoc = Lex.getLoc();
Bill Wendlinge01b81b2012-12-04 23:40:58 +00001753 if (ParseType(ArgTy) || ParseOptionalParamAttrs(Attrs)) return true;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001754
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001755 if (ArgTy->isVoidTy())
Chris Lattnera9a9e072009-03-09 04:49:14 +00001756 return Error(TypeLoc, "argument can not have void type");
1757
Chris Lattner7a1b9bd2011-06-17 06:36:20 +00001758 if (Lex.getKind() == lltok::LocalVar) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001759 Name = Lex.getStrVal();
1760 Lex.Lex();
1761 } else {
1762 Name = "";
1763 }
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001764
Chris Lattner1afcace2011-07-09 17:41:24 +00001765 if (!ArgTy->isFirstClassType())
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001766 return Error(TypeLoc, "invalid type for function argument");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001767
Bill Wendlingcb3de0b2012-10-15 04:46:55 +00001768 ArgList.push_back(ArgInfo(TypeLoc, ArgTy,
Bill Wendling73dee182013-01-31 00:29:54 +00001769 AttributeSet::get(ArgTy->getContext(),
1770 AttrIndex++, Attrs),
Bill Wendlingcb3de0b2012-10-15 04:46:55 +00001771 Name));
Chris Lattnerdf986172009-01-02 07:01:27 +00001772 }
1773 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001774
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001775 return ParseToken(lltok::rparen, "expected ')' at end of argument list");
Chris Lattnerdf986172009-01-02 07:01:27 +00001776}
Daniel Dunbara279bc32009-09-20 02:20:51 +00001777
Chris Lattnerdf986172009-01-02 07:01:27 +00001778/// ParseFunctionType
1779/// ::= Type ArgumentList OptionalAttrs
Chris Lattner1afcace2011-07-09 17:41:24 +00001780bool LLParser::ParseFunctionType(Type *&Result) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001781 assert(Lex.getKind() == lltok::lparen);
1782
Chris Lattnerd77d04c2009-01-05 08:04:33 +00001783 if (!FunctionType::isValidReturnType(Result))
1784 return TokError("invalid function return type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001785
Chris Lattner1afcace2011-07-09 17:41:24 +00001786 SmallVector<ArgInfo, 8> ArgList;
Chris Lattnerdf986172009-01-02 07:01:27 +00001787 bool isVarArg;
Chris Lattner1afcace2011-07-09 17:41:24 +00001788 if (ParseArgumentList(ArgList, isVarArg))
Chris Lattnerdf986172009-01-02 07:01:27 +00001789 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001790
Chris Lattnerdf986172009-01-02 07:01:27 +00001791 // Reject names on the arguments lists.
1792 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
1793 if (!ArgList[i].Name.empty())
1794 return Error(ArgList[i].Loc, "argument name invalid in function type");
Bill Wendling73dee182013-01-31 00:29:54 +00001795 if (ArgList[i].Attrs.hasAttributes(i + 1))
Chris Lattnera16546a2011-06-17 17:37:13 +00001796 return Error(ArgList[i].Loc,
1797 "argument attributes invalid in function type");
Chris Lattnerdf986172009-01-02 07:01:27 +00001798 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001799
Jay Foad5fdd6c82011-07-12 14:06:48 +00001800 SmallVector<Type*, 16> ArgListTy;
Chris Lattnerdf986172009-01-02 07:01:27 +00001801 for (unsigned i = 0, e = ArgList.size(); i != e; ++i)
Chris Lattner1afcace2011-07-09 17:41:24 +00001802 ArgListTy.push_back(ArgList[i].Ty);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001803
Chris Lattner1afcace2011-07-09 17:41:24 +00001804 Result = FunctionType::get(Result, ArgListTy, isVarArg);
Chris Lattnerdf986172009-01-02 07:01:27 +00001805 return false;
1806}
1807
Chris Lattner1afcace2011-07-09 17:41:24 +00001808/// ParseAnonStructType - Parse an anonymous struct type, which is inlined into
1809/// other structs.
1810bool LLParser::ParseAnonStructType(Type *&Result, bool Packed) {
1811 SmallVector<Type*, 8> Elts;
1812 if (ParseStructBody(Elts)) return true;
Michael Ilseman407a6162012-11-15 22:34:00 +00001813
Chris Lattner1afcace2011-07-09 17:41:24 +00001814 Result = StructType::get(Context, Elts, Packed);
1815 return false;
1816}
1817
1818/// ParseStructDefinition - Parse a struct in a 'type' definition.
1819bool LLParser::ParseStructDefinition(SMLoc TypeLoc, StringRef Name,
1820 std::pair<Type*, LocTy> &Entry,
1821 Type *&ResultTy) {
1822 // If the type was already defined, diagnose the redefinition.
1823 if (Entry.first && !Entry.second.isValid())
1824 return Error(TypeLoc, "redefinition of type");
Michael Ilseman407a6162012-11-15 22:34:00 +00001825
Chris Lattner1afcace2011-07-09 17:41:24 +00001826 // If we have opaque, just return without filling in the definition for the
1827 // struct. This counts as a definition as far as the .ll file goes.
1828 if (EatIfPresent(lltok::kw_opaque)) {
1829 // This type is being defined, so clear the location to indicate this.
1830 Entry.second = SMLoc();
Michael Ilseman407a6162012-11-15 22:34:00 +00001831
Chris Lattner1afcace2011-07-09 17:41:24 +00001832 // If this type number has never been uttered, create it.
1833 if (Entry.first == 0)
Chris Lattner3ebb6492011-08-12 18:06:37 +00001834 Entry.first = StructType::create(Context, Name);
Chris Lattner1afcace2011-07-09 17:41:24 +00001835 ResultTy = Entry.first;
1836 return false;
1837 }
Michael Ilseman407a6162012-11-15 22:34:00 +00001838
Chris Lattner1afcace2011-07-09 17:41:24 +00001839 // If the type starts with '<', then it is either a packed struct or a vector.
1840 bool isPacked = EatIfPresent(lltok::less);
1841
1842 // If we don't have a struct, then we have a random type alias, which we
1843 // accept for compatibility with old files. These types are not allowed to be
1844 // forward referenced and not allowed to be recursive.
1845 if (Lex.getKind() != lltok::lbrace) {
1846 if (Entry.first)
1847 return Error(TypeLoc, "forward references to non-struct type");
Michael Ilseman407a6162012-11-15 22:34:00 +00001848
Chris Lattner1afcace2011-07-09 17:41:24 +00001849 ResultTy = 0;
1850 if (isPacked)
1851 return ParseArrayVectorType(ResultTy, true);
1852 return ParseType(ResultTy);
1853 }
Michael Ilseman407a6162012-11-15 22:34:00 +00001854
Chris Lattner1afcace2011-07-09 17:41:24 +00001855 // This type is being defined, so clear the location to indicate this.
1856 Entry.second = SMLoc();
Michael Ilseman407a6162012-11-15 22:34:00 +00001857
Chris Lattner1afcace2011-07-09 17:41:24 +00001858 // If this type number has never been uttered, create it.
1859 if (Entry.first == 0)
Chris Lattner3ebb6492011-08-12 18:06:37 +00001860 Entry.first = StructType::create(Context, Name);
Michael Ilseman407a6162012-11-15 22:34:00 +00001861
Chris Lattner1afcace2011-07-09 17:41:24 +00001862 StructType *STy = cast<StructType>(Entry.first);
Michael Ilseman407a6162012-11-15 22:34:00 +00001863
Chris Lattner1afcace2011-07-09 17:41:24 +00001864 SmallVector<Type*, 8> Body;
1865 if (ParseStructBody(Body) ||
1866 (isPacked && ParseToken(lltok::greater, "expected '>' in packed struct")))
1867 return true;
Michael Ilseman407a6162012-11-15 22:34:00 +00001868
Chris Lattner1afcace2011-07-09 17:41:24 +00001869 STy->setBody(Body, isPacked);
1870 ResultTy = STy;
1871 return false;
1872}
1873
1874
Chris Lattnerdf986172009-01-02 07:01:27 +00001875/// ParseStructType: Handles packed and unpacked types. </> parsed elsewhere.
Chris Lattner1afcace2011-07-09 17:41:24 +00001876/// StructType
Chris Lattnerdf986172009-01-02 07:01:27 +00001877/// ::= '{' '}'
Chris Lattner1afcace2011-07-09 17:41:24 +00001878/// ::= '{' Type (',' Type)* '}'
Chris Lattnerdf986172009-01-02 07:01:27 +00001879/// ::= '<' '{' '}' '>'
Chris Lattner1afcace2011-07-09 17:41:24 +00001880/// ::= '<' '{' Type (',' Type)* '}' '>'
1881bool LLParser::ParseStructBody(SmallVectorImpl<Type*> &Body) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001882 assert(Lex.getKind() == lltok::lbrace);
1883 Lex.Lex(); // Consume the '{'
Daniel Dunbara279bc32009-09-20 02:20:51 +00001884
Chris Lattner1afcace2011-07-09 17:41:24 +00001885 // Handle the empty struct.
1886 if (EatIfPresent(lltok::rbrace))
Chris Lattnerdf986172009-01-02 07:01:27 +00001887 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00001888
Chris Lattnera9a9e072009-03-09 04:49:14 +00001889 LocTy EltTyLoc = Lex.getLoc();
Chris Lattner1afcace2011-07-09 17:41:24 +00001890 Type *Ty = 0;
1891 if (ParseType(Ty)) return true;
1892 Body.push_back(Ty);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001893
Chris Lattner1afcace2011-07-09 17:41:24 +00001894 if (!StructType::isValidElementType(Ty))
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001895 return Error(EltTyLoc, "invalid element type for struct");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001896
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001897 while (EatIfPresent(lltok::comma)) {
Chris Lattnera9a9e072009-03-09 04:49:14 +00001898 EltTyLoc = Lex.getLoc();
Chris Lattner1afcace2011-07-09 17:41:24 +00001899 if (ParseType(Ty)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001900
Chris Lattner1afcace2011-07-09 17:41:24 +00001901 if (!StructType::isValidElementType(Ty))
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001902 return Error(EltTyLoc, "invalid element type for struct");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001903
Chris Lattner1afcace2011-07-09 17:41:24 +00001904 Body.push_back(Ty);
Chris Lattnerdf986172009-01-02 07:01:27 +00001905 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001906
Chris Lattner1afcace2011-07-09 17:41:24 +00001907 return ParseToken(lltok::rbrace, "expected '}' at end of struct");
Chris Lattnerdf986172009-01-02 07:01:27 +00001908}
1909
1910/// ParseArrayVectorType - Parse an array or vector type, assuming the first
1911/// token has already been consumed.
Chris Lattner1afcace2011-07-09 17:41:24 +00001912/// Type
Chris Lattnerdf986172009-01-02 07:01:27 +00001913/// ::= '[' APSINTVAL 'x' Types ']'
1914/// ::= '<' APSINTVAL 'x' Types '>'
Chris Lattner1afcace2011-07-09 17:41:24 +00001915bool LLParser::ParseArrayVectorType(Type *&Result, bool isVector) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001916 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned() ||
1917 Lex.getAPSIntVal().getBitWidth() > 64)
1918 return TokError("expected number in address space");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001919
Chris Lattnerdf986172009-01-02 07:01:27 +00001920 LocTy SizeLoc = Lex.getLoc();
1921 uint64_t Size = Lex.getAPSIntVal().getZExtValue();
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001922 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +00001923
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001924 if (ParseToken(lltok::kw_x, "expected 'x' after element count"))
1925 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00001926
1927 LocTy TypeLoc = Lex.getLoc();
Chris Lattner1afcace2011-07-09 17:41:24 +00001928 Type *EltTy = 0;
1929 if (ParseType(EltTy)) return true;
Chris Lattnera9a9e072009-03-09 04:49:14 +00001930
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001931 if (ParseToken(isVector ? lltok::greater : lltok::rsquare,
1932 "expected end of sequential type"))
1933 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001934
Chris Lattnerdf986172009-01-02 07:01:27 +00001935 if (isVector) {
Chris Lattner452e2622009-02-28 18:12:41 +00001936 if (Size == 0)
1937 return Error(SizeLoc, "zero element vector is illegal");
Chris Lattnerdf986172009-01-02 07:01:27 +00001938 if ((unsigned)Size != Size)
1939 return Error(SizeLoc, "size too large for vector");
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001940 if (!VectorType::isValidElementType(EltTy))
Duncan Sands2333e292012-11-13 12:59:33 +00001941 return Error(TypeLoc, "invalid vector element type");
Owen Andersondebcb012009-07-29 22:17:13 +00001942 Result = VectorType::get(EltTy, unsigned(Size));
Chris Lattnerdf986172009-01-02 07:01:27 +00001943 } else {
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001944 if (!ArrayType::isValidElementType(EltTy))
Chris Lattnerdf986172009-01-02 07:01:27 +00001945 return Error(TypeLoc, "invalid array element type");
Chris Lattner1afcace2011-07-09 17:41:24 +00001946 Result = ArrayType::get(EltTy, Size);
Chris Lattnerdf986172009-01-02 07:01:27 +00001947 }
1948 return false;
1949}
1950
1951//===----------------------------------------------------------------------===//
1952// Function Semantic Analysis.
1953//===----------------------------------------------------------------------===//
1954
Chris Lattner09d9ef42009-10-28 03:39:23 +00001955LLParser::PerFunctionState::PerFunctionState(LLParser &p, Function &f,
1956 int functionNumber)
1957 : P(p), F(f), FunctionNumber(functionNumber) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001958
1959 // Insert unnamed arguments into the NumberedVals list.
1960 for (Function::arg_iterator AI = F.arg_begin(), E = F.arg_end();
1961 AI != E; ++AI)
1962 if (!AI->hasName())
1963 NumberedVals.push_back(AI);
1964}
1965
1966LLParser::PerFunctionState::~PerFunctionState() {
1967 // If there were any forward referenced non-basicblock values, delete them.
1968 for (std::map<std::string, std::pair<Value*, LocTy> >::iterator
1969 I = ForwardRefVals.begin(), E = ForwardRefVals.end(); I != E; ++I)
1970 if (!isa<BasicBlock>(I->second.first)) {
Owen Andersonb43eae72009-07-02 17:04:01 +00001971 I->second.first->replaceAllUsesWith(
Owen Anderson9e9a0d52009-07-30 23:03:37 +00001972 UndefValue::get(I->second.first->getType()));
Chris Lattnerdf986172009-01-02 07:01:27 +00001973 delete I->second.first;
1974 I->second.first = 0;
1975 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001976
Chris Lattnerdf986172009-01-02 07:01:27 +00001977 for (std::map<unsigned, std::pair<Value*, LocTy> >::iterator
1978 I = ForwardRefValIDs.begin(), E = ForwardRefValIDs.end(); I != E; ++I)
1979 if (!isa<BasicBlock>(I->second.first)) {
Owen Andersonb43eae72009-07-02 17:04:01 +00001980 I->second.first->replaceAllUsesWith(
Owen Anderson9e9a0d52009-07-30 23:03:37 +00001981 UndefValue::get(I->second.first->getType()));
Chris Lattnerdf986172009-01-02 07:01:27 +00001982 delete I->second.first;
1983 I->second.first = 0;
1984 }
1985}
1986
Chris Lattner09d9ef42009-10-28 03:39:23 +00001987bool LLParser::PerFunctionState::FinishFunction() {
1988 // Check to see if someone took the address of labels in this block.
1989 if (!P.ForwardRefBlockAddresses.empty()) {
1990 ValID FunctionID;
1991 if (!F.getName().empty()) {
1992 FunctionID.Kind = ValID::t_GlobalName;
1993 FunctionID.StrVal = F.getName();
1994 } else {
1995 FunctionID.Kind = ValID::t_GlobalID;
1996 FunctionID.UIntVal = FunctionNumber;
1997 }
Michael Ilseman407a6162012-11-15 22:34:00 +00001998
Chris Lattner09d9ef42009-10-28 03:39:23 +00001999 std::map<ValID, std::vector<std::pair<ValID, GlobalValue*> > >::iterator
2000 FRBAI = P.ForwardRefBlockAddresses.find(FunctionID);
2001 if (FRBAI != P.ForwardRefBlockAddresses.end()) {
2002 // Resolve all these references.
2003 if (P.ResolveForwardRefBlockAddresses(&F, FRBAI->second, this))
2004 return true;
Michael Ilseman407a6162012-11-15 22:34:00 +00002005
Chris Lattner09d9ef42009-10-28 03:39:23 +00002006 P.ForwardRefBlockAddresses.erase(FRBAI);
2007 }
2008 }
Michael Ilseman407a6162012-11-15 22:34:00 +00002009
Chris Lattnerdf986172009-01-02 07:01:27 +00002010 if (!ForwardRefVals.empty())
2011 return P.Error(ForwardRefVals.begin()->second.second,
2012 "use of undefined value '%" + ForwardRefVals.begin()->first +
2013 "'");
2014 if (!ForwardRefValIDs.empty())
2015 return P.Error(ForwardRefValIDs.begin()->second.second,
2016 "use of undefined value '%" +
Benjamin Kramerd1e17032010-09-27 17:42:11 +00002017 Twine(ForwardRefValIDs.begin()->first) + "'");
Chris Lattnerdf986172009-01-02 07:01:27 +00002018 return false;
2019}
2020
2021
2022/// GetVal - Get a value with the specified name or ID, creating a
2023/// forward reference record if needed. This can return null if the value
2024/// exists but does not have the right type.
2025Value *LLParser::PerFunctionState::GetVal(const std::string &Name,
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002026 Type *Ty, LocTy Loc) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002027 // Look this name up in the normal function symbol table.
2028 Value *Val = F.getValueSymbolTable().lookup(Name);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002029
Chris Lattnerdf986172009-01-02 07:01:27 +00002030 // If this is a forward reference for the value, see if we already created a
2031 // forward ref record.
2032 if (Val == 0) {
2033 std::map<std::string, std::pair<Value*, LocTy> >::iterator
2034 I = ForwardRefVals.find(Name);
2035 if (I != ForwardRefVals.end())
2036 Val = I->second.first;
2037 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002038
Chris Lattnerdf986172009-01-02 07:01:27 +00002039 // If we have the value in the symbol table or fwd-ref table, return it.
2040 if (Val) {
2041 if (Val->getType() == Ty) return Val;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00002042 if (Ty->isLabelTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002043 P.Error(Loc, "'%" + Name + "' is not a basic block");
2044 else
2045 P.Error(Loc, "'%" + Name + "' defined with type '" +
Chris Lattner0cd0d882011-06-18 21:18:23 +00002046 getTypeString(Val->getType()) + "'");
Chris Lattnerdf986172009-01-02 07:01:27 +00002047 return 0;
2048 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002049
Chris Lattnerdf986172009-01-02 07:01:27 +00002050 // Don't make placeholders with invalid type.
Chris Lattner1afcace2011-07-09 17:41:24 +00002051 if (!Ty->isFirstClassType() && !Ty->isLabelTy()) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002052 P.Error(Loc, "invalid use of a non-first-class type");
2053 return 0;
2054 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002055
Chris Lattnerdf986172009-01-02 07:01:27 +00002056 // Otherwise, create a new forward reference for this value and remember it.
2057 Value *FwdVal;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00002058 if (Ty->isLabelTy())
Owen Anderson1d0be152009-08-13 21:58:54 +00002059 FwdVal = BasicBlock::Create(F.getContext(), Name, &F);
Chris Lattnerdf986172009-01-02 07:01:27 +00002060 else
2061 FwdVal = new Argument(Ty, Name);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002062
Chris Lattnerdf986172009-01-02 07:01:27 +00002063 ForwardRefVals[Name] = std::make_pair(FwdVal, Loc);
2064 return FwdVal;
2065}
2066
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002067Value *LLParser::PerFunctionState::GetVal(unsigned ID, Type *Ty,
Chris Lattnerdf986172009-01-02 07:01:27 +00002068 LocTy Loc) {
2069 // Look this name up in the normal function symbol table.
2070 Value *Val = ID < NumberedVals.size() ? NumberedVals[ID] : 0;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002071
Chris Lattnerdf986172009-01-02 07:01:27 +00002072 // If this is a forward reference for the value, see if we already created a
2073 // forward ref record.
2074 if (Val == 0) {
2075 std::map<unsigned, std::pair<Value*, LocTy> >::iterator
2076 I = ForwardRefValIDs.find(ID);
2077 if (I != ForwardRefValIDs.end())
2078 Val = I->second.first;
2079 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002080
Chris Lattnerdf986172009-01-02 07:01:27 +00002081 // If we have the value in the symbol table or fwd-ref table, return it.
2082 if (Val) {
2083 if (Val->getType() == Ty) return Val;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00002084 if (Ty->isLabelTy())
Benjamin Kramerd1e17032010-09-27 17:42:11 +00002085 P.Error(Loc, "'%" + Twine(ID) + "' is not a basic block");
Chris Lattnerdf986172009-01-02 07:01:27 +00002086 else
Benjamin Kramerd1e17032010-09-27 17:42:11 +00002087 P.Error(Loc, "'%" + Twine(ID) + "' defined with type '" +
Chris Lattner0cd0d882011-06-18 21:18:23 +00002088 getTypeString(Val->getType()) + "'");
Chris Lattnerdf986172009-01-02 07:01:27 +00002089 return 0;
2090 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002091
Chris Lattner1afcace2011-07-09 17:41:24 +00002092 if (!Ty->isFirstClassType() && !Ty->isLabelTy()) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002093 P.Error(Loc, "invalid use of a non-first-class type");
2094 return 0;
2095 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002096
Chris Lattnerdf986172009-01-02 07:01:27 +00002097 // Otherwise, create a new forward reference for this value and remember it.
2098 Value *FwdVal;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00002099 if (Ty->isLabelTy())
Owen Anderson1d0be152009-08-13 21:58:54 +00002100 FwdVal = BasicBlock::Create(F.getContext(), "", &F);
Chris Lattnerdf986172009-01-02 07:01:27 +00002101 else
2102 FwdVal = new Argument(Ty);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002103
Chris Lattnerdf986172009-01-02 07:01:27 +00002104 ForwardRefValIDs[ID] = std::make_pair(FwdVal, Loc);
2105 return FwdVal;
2106}
2107
2108/// SetInstName - After an instruction is parsed and inserted into its
2109/// basic block, this installs its name.
2110bool LLParser::PerFunctionState::SetInstName(int NameID,
2111 const std::string &NameStr,
2112 LocTy NameLoc, Instruction *Inst) {
2113 // If this instruction has void type, it cannot have a name or ID specified.
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00002114 if (Inst->getType()->isVoidTy()) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002115 if (NameID != -1 || !NameStr.empty())
2116 return P.Error(NameLoc, "instructions returning void cannot have a name");
2117 return false;
2118 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002119
Chris Lattnerdf986172009-01-02 07:01:27 +00002120 // If this was a numbered instruction, verify that the instruction is the
2121 // expected value and resolve any forward references.
2122 if (NameStr.empty()) {
2123 // If neither a name nor an ID was specified, just use the next ID.
2124 if (NameID == -1)
2125 NameID = NumberedVals.size();
Daniel Dunbara279bc32009-09-20 02:20:51 +00002126
Chris Lattnerdf986172009-01-02 07:01:27 +00002127 if (unsigned(NameID) != NumberedVals.size())
2128 return P.Error(NameLoc, "instruction expected to be numbered '%" +
Benjamin Kramerd1e17032010-09-27 17:42:11 +00002129 Twine(NumberedVals.size()) + "'");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002130
Chris Lattnerdf986172009-01-02 07:01:27 +00002131 std::map<unsigned, std::pair<Value*, LocTy> >::iterator FI =
2132 ForwardRefValIDs.find(NameID);
2133 if (FI != ForwardRefValIDs.end()) {
2134 if (FI->second.first->getType() != Inst->getType())
Daniel Dunbara279bc32009-09-20 02:20:51 +00002135 return P.Error(NameLoc, "instruction forward referenced with type '" +
Chris Lattner0cd0d882011-06-18 21:18:23 +00002136 getTypeString(FI->second.first->getType()) + "'");
Chris Lattnerdf986172009-01-02 07:01:27 +00002137 FI->second.first->replaceAllUsesWith(Inst);
Nuno Lopes2b4f28e2009-09-02 15:02:57 +00002138 delete FI->second.first;
Chris Lattnerdf986172009-01-02 07:01:27 +00002139 ForwardRefValIDs.erase(FI);
2140 }
2141
2142 NumberedVals.push_back(Inst);
2143 return false;
2144 }
2145
2146 // Otherwise, the instruction had a name. Resolve forward refs and set it.
2147 std::map<std::string, std::pair<Value*, LocTy> >::iterator
2148 FI = ForwardRefVals.find(NameStr);
2149 if (FI != ForwardRefVals.end()) {
2150 if (FI->second.first->getType() != Inst->getType())
Daniel Dunbara279bc32009-09-20 02:20:51 +00002151 return P.Error(NameLoc, "instruction forward referenced with type '" +
Chris Lattner0cd0d882011-06-18 21:18:23 +00002152 getTypeString(FI->second.first->getType()) + "'");
Chris Lattnerdf986172009-01-02 07:01:27 +00002153 FI->second.first->replaceAllUsesWith(Inst);
Nuno Lopes531552a2009-09-02 14:22:03 +00002154 delete FI->second.first;
Chris Lattnerdf986172009-01-02 07:01:27 +00002155 ForwardRefVals.erase(FI);
2156 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002157
Chris Lattnerdf986172009-01-02 07:01:27 +00002158 // Set the name on the instruction.
2159 Inst->setName(NameStr);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002160
Benjamin Krameraf812352010-10-16 11:28:23 +00002161 if (Inst->getName() != NameStr)
Daniel Dunbara279bc32009-09-20 02:20:51 +00002162 return P.Error(NameLoc, "multiple definition of local value named '" +
Chris Lattnerdf986172009-01-02 07:01:27 +00002163 NameStr + "'");
2164 return false;
2165}
2166
2167/// GetBB - Get a basic block with the specified name or ID, creating a
2168/// forward reference record if needed.
2169BasicBlock *LLParser::PerFunctionState::GetBB(const std::string &Name,
2170 LocTy Loc) {
Owen Anderson1d0be152009-08-13 21:58:54 +00002171 return cast_or_null<BasicBlock>(GetVal(Name,
2172 Type::getLabelTy(F.getContext()), Loc));
Chris Lattnerdf986172009-01-02 07:01:27 +00002173}
2174
2175BasicBlock *LLParser::PerFunctionState::GetBB(unsigned ID, LocTy Loc) {
Owen Anderson1d0be152009-08-13 21:58:54 +00002176 return cast_or_null<BasicBlock>(GetVal(ID,
2177 Type::getLabelTy(F.getContext()), Loc));
Chris Lattnerdf986172009-01-02 07:01:27 +00002178}
2179
2180/// DefineBB - Define the specified basic block, which is either named or
2181/// unnamed. If there is an error, this returns null otherwise it returns
2182/// the block being defined.
2183BasicBlock *LLParser::PerFunctionState::DefineBB(const std::string &Name,
2184 LocTy Loc) {
2185 BasicBlock *BB;
2186 if (Name.empty())
2187 BB = GetBB(NumberedVals.size(), Loc);
2188 else
2189 BB = GetBB(Name, Loc);
2190 if (BB == 0) return 0; // Already diagnosed error.
Daniel Dunbara279bc32009-09-20 02:20:51 +00002191
Chris Lattnerdf986172009-01-02 07:01:27 +00002192 // Move the block to the end of the function. Forward ref'd blocks are
2193 // inserted wherever they happen to be referenced.
2194 F.getBasicBlockList().splice(F.end(), F.getBasicBlockList(), BB);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002195
Chris Lattnerdf986172009-01-02 07:01:27 +00002196 // Remove the block from forward ref sets.
2197 if (Name.empty()) {
2198 ForwardRefValIDs.erase(NumberedVals.size());
2199 NumberedVals.push_back(BB);
2200 } else {
2201 // BB forward references are already in the function symbol table.
2202 ForwardRefVals.erase(Name);
2203 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002204
Chris Lattnerdf986172009-01-02 07:01:27 +00002205 return BB;
2206}
2207
2208//===----------------------------------------------------------------------===//
2209// Constants.
2210//===----------------------------------------------------------------------===//
2211
2212/// ParseValID - Parse an abstract value that doesn't necessarily have a
2213/// type implied. For example, if we parse "4" we don't know what integer type
2214/// it has. The value will later be combined with its type and checked for
Victor Hernandez24e64df2010-01-10 07:14:18 +00002215/// sanity. PFS is used to convert function-local operands of metadata (since
2216/// metadata operands are not just parsed here but also converted to values).
2217/// PFS can be null when we are not parsing metadata values inside a function.
Victor Hernandezbf170d42010-01-05 22:22:14 +00002218bool LLParser::ParseValID(ValID &ID, PerFunctionState *PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002219 ID.Loc = Lex.getLoc();
2220 switch (Lex.getKind()) {
2221 default: return TokError("expected value token");
2222 case lltok::GlobalID: // @42
2223 ID.UIntVal = Lex.getUIntVal();
2224 ID.Kind = ValID::t_GlobalID;
2225 break;
2226 case lltok::GlobalVar: // @foo
2227 ID.StrVal = Lex.getStrVal();
2228 ID.Kind = ValID::t_GlobalName;
2229 break;
2230 case lltok::LocalVarID: // %42
2231 ID.UIntVal = Lex.getUIntVal();
2232 ID.Kind = ValID::t_LocalID;
2233 break;
2234 case lltok::LocalVar: // %foo
Chris Lattnerdf986172009-01-02 07:01:27 +00002235 ID.StrVal = Lex.getStrVal();
2236 ID.Kind = ValID::t_LocalName;
2237 break;
Dan Gohman83448032010-07-14 18:26:50 +00002238 case lltok::exclaim: // !42, !{...}, or !"foo"
2239 return ParseMetadataValue(ID, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00002240 case lltok::APSInt:
Daniel Dunbara279bc32009-09-20 02:20:51 +00002241 ID.APSIntVal = Lex.getAPSIntVal();
Chris Lattnerdf986172009-01-02 07:01:27 +00002242 ID.Kind = ValID::t_APSInt;
2243 break;
2244 case lltok::APFloat:
2245 ID.APFloatVal = Lex.getAPFloatVal();
2246 ID.Kind = ValID::t_APFloat;
2247 break;
2248 case lltok::kw_true:
Owen Anderson5defacc2009-07-31 17:39:07 +00002249 ID.ConstantVal = ConstantInt::getTrue(Context);
Chris Lattnerdf986172009-01-02 07:01:27 +00002250 ID.Kind = ValID::t_Constant;
2251 break;
2252 case lltok::kw_false:
Owen Anderson5defacc2009-07-31 17:39:07 +00002253 ID.ConstantVal = ConstantInt::getFalse(Context);
Chris Lattnerdf986172009-01-02 07:01:27 +00002254 ID.Kind = ValID::t_Constant;
2255 break;
2256 case lltok::kw_null: ID.Kind = ValID::t_Null; break;
2257 case lltok::kw_undef: ID.Kind = ValID::t_Undef; break;
2258 case lltok::kw_zeroinitializer: ID.Kind = ValID::t_Zero; break;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002259
Chris Lattnerdf986172009-01-02 07:01:27 +00002260 case lltok::lbrace: {
2261 // ValID ::= '{' ConstVector '}'
2262 Lex.Lex();
2263 SmallVector<Constant*, 16> Elts;
2264 if (ParseGlobalValueVector(Elts) ||
2265 ParseToken(lltok::rbrace, "expected end of struct constant"))
2266 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002267
Chris Lattner1afcace2011-07-09 17:41:24 +00002268 ID.ConstantStructElts = new Constant*[Elts.size()];
2269 ID.UIntVal = Elts.size();
2270 memcpy(ID.ConstantStructElts, Elts.data(), Elts.size()*sizeof(Elts[0]));
2271 ID.Kind = ValID::t_ConstantStruct;
Chris Lattnerdf986172009-01-02 07:01:27 +00002272 return false;
2273 }
2274 case lltok::less: {
2275 // ValID ::= '<' ConstVector '>' --> Vector.
2276 // ValID ::= '<' '{' ConstVector '}' '>' --> Packed Struct.
2277 Lex.Lex();
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002278 bool isPackedStruct = EatIfPresent(lltok::lbrace);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002279
Chris Lattnerdf986172009-01-02 07:01:27 +00002280 SmallVector<Constant*, 16> Elts;
2281 LocTy FirstEltLoc = Lex.getLoc();
2282 if (ParseGlobalValueVector(Elts) ||
2283 (isPackedStruct &&
2284 ParseToken(lltok::rbrace, "expected end of packed struct")) ||
2285 ParseToken(lltok::greater, "expected end of constant"))
2286 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002287
Chris Lattnerdf986172009-01-02 07:01:27 +00002288 if (isPackedStruct) {
Chris Lattner1afcace2011-07-09 17:41:24 +00002289 ID.ConstantStructElts = new Constant*[Elts.size()];
2290 memcpy(ID.ConstantStructElts, Elts.data(), Elts.size()*sizeof(Elts[0]));
2291 ID.UIntVal = Elts.size();
2292 ID.Kind = ValID::t_PackedConstantStruct;
Chris Lattnerdf986172009-01-02 07:01:27 +00002293 return false;
2294 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002295
Chris Lattnerdf986172009-01-02 07:01:27 +00002296 if (Elts.empty())
2297 return Error(ID.Loc, "constant vector must not be empty");
2298
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00002299 if (!Elts[0]->getType()->isIntegerTy() &&
Nadav Rotem16087692011-12-05 06:29:09 +00002300 !Elts[0]->getType()->isFloatingPointTy() &&
2301 !Elts[0]->getType()->isPointerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002302 return Error(FirstEltLoc,
Nadav Rotem16087692011-12-05 06:29:09 +00002303 "vector elements must have integer, pointer or floating point type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002304
Chris Lattnerdf986172009-01-02 07:01:27 +00002305 // Verify that all the vector elements have the same type.
2306 for (unsigned i = 1, e = Elts.size(); i != e; ++i)
2307 if (Elts[i]->getType() != Elts[0]->getType())
2308 return Error(FirstEltLoc,
Benjamin Kramerd1e17032010-09-27 17:42:11 +00002309 "vector element #" + Twine(i) +
Chris Lattner0cd0d882011-06-18 21:18:23 +00002310 " is not of type '" + getTypeString(Elts[0]->getType()));
Daniel Dunbara279bc32009-09-20 02:20:51 +00002311
Chris Lattner2ca5c862011-02-15 00:14:00 +00002312 ID.ConstantVal = ConstantVector::get(Elts);
Chris Lattnerdf986172009-01-02 07:01:27 +00002313 ID.Kind = ValID::t_Constant;
2314 return false;
2315 }
2316 case lltok::lsquare: { // Array Constant
2317 Lex.Lex();
2318 SmallVector<Constant*, 16> Elts;
2319 LocTy FirstEltLoc = Lex.getLoc();
2320 if (ParseGlobalValueVector(Elts) ||
2321 ParseToken(lltok::rsquare, "expected end of array constant"))
2322 return true;
2323
2324 // Handle empty element.
2325 if (Elts.empty()) {
2326 // Use undef instead of an array because it's inconvenient to determine
2327 // the element type at this point, there being no elements to examine.
Chris Lattner081b5052009-01-05 07:52:51 +00002328 ID.Kind = ValID::t_EmptyArray;
Chris Lattnerdf986172009-01-02 07:01:27 +00002329 return false;
2330 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002331
Chris Lattnerdf986172009-01-02 07:01:27 +00002332 if (!Elts[0]->getType()->isFirstClassType())
Daniel Dunbara279bc32009-09-20 02:20:51 +00002333 return Error(FirstEltLoc, "invalid array element type: " +
Chris Lattner0cd0d882011-06-18 21:18:23 +00002334 getTypeString(Elts[0]->getType()));
Daniel Dunbara279bc32009-09-20 02:20:51 +00002335
Owen Andersondebcb012009-07-29 22:17:13 +00002336 ArrayType *ATy = ArrayType::get(Elts[0]->getType(), Elts.size());
Daniel Dunbara279bc32009-09-20 02:20:51 +00002337
Chris Lattnerdf986172009-01-02 07:01:27 +00002338 // Verify all elements are correct type!
Chris Lattner6d6b3cc2009-01-02 08:49:06 +00002339 for (unsigned i = 0, e = Elts.size(); i != e; ++i) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002340 if (Elts[i]->getType() != Elts[0]->getType())
2341 return Error(FirstEltLoc,
Benjamin Kramerd1e17032010-09-27 17:42:11 +00002342 "array element #" + Twine(i) +
Chris Lattner0cd0d882011-06-18 21:18:23 +00002343 " is not of type '" + getTypeString(Elts[0]->getType()));
Chris Lattnerdf986172009-01-02 07:01:27 +00002344 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002345
Jay Foad26701082011-06-22 09:24:39 +00002346 ID.ConstantVal = ConstantArray::get(ATy, Elts);
Chris Lattnerdf986172009-01-02 07:01:27 +00002347 ID.Kind = ValID::t_Constant;
2348 return false;
2349 }
2350 case lltok::kw_c: // c "foo"
2351 Lex.Lex();
Chris Lattner18c7f802012-02-05 02:29:43 +00002352 ID.ConstantVal = ConstantDataArray::getString(Context, Lex.getStrVal(),
2353 false);
Chris Lattnerdf986172009-01-02 07:01:27 +00002354 if (ParseToken(lltok::StringConstant, "expected string")) return true;
2355 ID.Kind = ValID::t_Constant;
2356 return false;
2357
2358 case lltok::kw_asm: {
Chad Rosier27d844f2013-02-14 20:44:07 +00002359 // ValID ::= 'asm' SideEffect? AlignStack? IntelDialect? STRINGCONSTANT ','
2360 // STRINGCONSTANT
Chad Rosier581600b2012-09-05 19:00:49 +00002361 bool HasSideEffect, AlignStack, AsmDialect;
Chris Lattnerdf986172009-01-02 07:01:27 +00002362 Lex.Lex();
2363 if (ParseOptionalToken(lltok::kw_sideeffect, HasSideEffect) ||
Dale Johannesen8ba2d5b2009-10-21 23:28:00 +00002364 ParseOptionalToken(lltok::kw_alignstack, AlignStack) ||
Chad Rosier581600b2012-09-05 19:00:49 +00002365 ParseOptionalToken(lltok::kw_inteldialect, AsmDialect) ||
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002366 ParseStringConstant(ID.StrVal) ||
2367 ParseToken(lltok::comma, "expected comma in inline asm expression") ||
Chris Lattnerdf986172009-01-02 07:01:27 +00002368 ParseToken(lltok::StringConstant, "expected constraint string"))
2369 return true;
2370 ID.StrVal2 = Lex.getStrVal();
Chad Rosier36547342012-09-05 00:08:17 +00002371 ID.UIntVal = unsigned(HasSideEffect) | (unsigned(AlignStack)<<1) |
Chad Rosier581600b2012-09-05 19:00:49 +00002372 (unsigned(AsmDialect)<<2);
Chris Lattnerdf986172009-01-02 07:01:27 +00002373 ID.Kind = ValID::t_InlineAsm;
2374 return false;
2375 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002376
Chris Lattner09d9ef42009-10-28 03:39:23 +00002377 case lltok::kw_blockaddress: {
2378 // ValID ::= 'blockaddress' '(' @foo ',' %bar ')'
2379 Lex.Lex();
2380
2381 ValID Fn, Label;
2382 LocTy FnLoc, LabelLoc;
Michael Ilseman407a6162012-11-15 22:34:00 +00002383
Chris Lattner09d9ef42009-10-28 03:39:23 +00002384 if (ParseToken(lltok::lparen, "expected '(' in block address expression") ||
2385 ParseValID(Fn) ||
2386 ParseToken(lltok::comma, "expected comma in block address expression")||
2387 ParseValID(Label) ||
2388 ParseToken(lltok::rparen, "expected ')' in block address expression"))
2389 return true;
Michael Ilseman407a6162012-11-15 22:34:00 +00002390
Chris Lattner09d9ef42009-10-28 03:39:23 +00002391 if (Fn.Kind != ValID::t_GlobalID && Fn.Kind != ValID::t_GlobalName)
2392 return Error(Fn.Loc, "expected function name in blockaddress");
Chris Lattnercdfc9402009-11-01 01:27:45 +00002393 if (Label.Kind != ValID::t_LocalID && Label.Kind != ValID::t_LocalName)
Chris Lattner09d9ef42009-10-28 03:39:23 +00002394 return Error(Label.Loc, "expected basic block name in blockaddress");
Michael Ilseman407a6162012-11-15 22:34:00 +00002395
Chris Lattner09d9ef42009-10-28 03:39:23 +00002396 // Make a global variable as a placeholder for this reference.
2397 GlobalVariable *FwdRef = new GlobalVariable(*M, Type::getInt8Ty(Context),
2398 false, GlobalValue::InternalLinkage,
2399 0, "");
2400 ForwardRefBlockAddresses[Fn].push_back(std::make_pair(Label, FwdRef));
2401 ID.ConstantVal = FwdRef;
2402 ID.Kind = ValID::t_Constant;
2403 return false;
2404 }
Michael Ilseman407a6162012-11-15 22:34:00 +00002405
Chris Lattnerdf986172009-01-02 07:01:27 +00002406 case lltok::kw_trunc:
2407 case lltok::kw_zext:
2408 case lltok::kw_sext:
2409 case lltok::kw_fptrunc:
2410 case lltok::kw_fpext:
2411 case lltok::kw_bitcast:
2412 case lltok::kw_uitofp:
2413 case lltok::kw_sitofp:
2414 case lltok::kw_fptoui:
Daniel Dunbara279bc32009-09-20 02:20:51 +00002415 case lltok::kw_fptosi:
Chris Lattnerdf986172009-01-02 07:01:27 +00002416 case lltok::kw_inttoptr:
Daniel Dunbara279bc32009-09-20 02:20:51 +00002417 case lltok::kw_ptrtoint: {
Chris Lattnerdf986172009-01-02 07:01:27 +00002418 unsigned Opc = Lex.getUIntVal();
Chris Lattner1afcace2011-07-09 17:41:24 +00002419 Type *DestTy = 0;
Chris Lattnerdf986172009-01-02 07:01:27 +00002420 Constant *SrcVal;
2421 Lex.Lex();
2422 if (ParseToken(lltok::lparen, "expected '(' after constantexpr cast") ||
2423 ParseGlobalTypeAndValue(SrcVal) ||
Dan Gohman24b108b2009-06-15 21:52:11 +00002424 ParseToken(lltok::kw_to, "expected 'to' in constantexpr cast") ||
Chris Lattnerdf986172009-01-02 07:01:27 +00002425 ParseType(DestTy) ||
2426 ParseToken(lltok::rparen, "expected ')' at end of constantexpr cast"))
2427 return true;
2428 if (!CastInst::castIsValid((Instruction::CastOps)Opc, SrcVal, DestTy))
2429 return Error(ID.Loc, "invalid cast opcode for cast from '" +
Chris Lattner0cd0d882011-06-18 21:18:23 +00002430 getTypeString(SrcVal->getType()) + "' to '" +
2431 getTypeString(DestTy) + "'");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002432 ID.ConstantVal = ConstantExpr::getCast((Instruction::CastOps)Opc,
Owen Andersonfba933c2009-07-01 23:57:11 +00002433 SrcVal, DestTy);
Chris Lattnerdf986172009-01-02 07:01:27 +00002434 ID.Kind = ValID::t_Constant;
2435 return false;
2436 }
2437 case lltok::kw_extractvalue: {
2438 Lex.Lex();
2439 Constant *Val;
2440 SmallVector<unsigned, 4> Indices;
2441 if (ParseToken(lltok::lparen, "expected '(' in extractvalue constantexpr")||
2442 ParseGlobalTypeAndValue(Val) ||
2443 ParseIndexList(Indices) ||
2444 ParseToken(lltok::rparen, "expected ')' in extractvalue constantexpr"))
2445 return true;
Devang Patele8bc45a2009-11-03 19:06:07 +00002446
Chris Lattnerfdfeb692010-02-12 20:49:41 +00002447 if (!Val->getType()->isAggregateType())
2448 return Error(ID.Loc, "extractvalue operand must be aggregate type");
Jay Foadfc6d3a42011-07-13 10:26:04 +00002449 if (!ExtractValueInst::getIndexedType(Val->getType(), Indices))
Chris Lattnerdf986172009-01-02 07:01:27 +00002450 return Error(ID.Loc, "invalid indices for extractvalue");
Jay Foadfc6d3a42011-07-13 10:26:04 +00002451 ID.ConstantVal = ConstantExpr::getExtractValue(Val, Indices);
Chris Lattnerdf986172009-01-02 07:01:27 +00002452 ID.Kind = ValID::t_Constant;
2453 return false;
2454 }
2455 case lltok::kw_insertvalue: {
2456 Lex.Lex();
2457 Constant *Val0, *Val1;
2458 SmallVector<unsigned, 4> Indices;
2459 if (ParseToken(lltok::lparen, "expected '(' in insertvalue constantexpr")||
2460 ParseGlobalTypeAndValue(Val0) ||
2461 ParseToken(lltok::comma, "expected comma in insertvalue constantexpr")||
2462 ParseGlobalTypeAndValue(Val1) ||
2463 ParseIndexList(Indices) ||
2464 ParseToken(lltok::rparen, "expected ')' in insertvalue constantexpr"))
2465 return true;
Chris Lattnerfdfeb692010-02-12 20:49:41 +00002466 if (!Val0->getType()->isAggregateType())
2467 return Error(ID.Loc, "insertvalue operand must be aggregate type");
Jay Foadfc6d3a42011-07-13 10:26:04 +00002468 if (!ExtractValueInst::getIndexedType(Val0->getType(), Indices))
Chris Lattnerdf986172009-01-02 07:01:27 +00002469 return Error(ID.Loc, "invalid indices for insertvalue");
Jay Foadfc6d3a42011-07-13 10:26:04 +00002470 ID.ConstantVal = ConstantExpr::getInsertValue(Val0, Val1, Indices);
Chris Lattnerdf986172009-01-02 07:01:27 +00002471 ID.Kind = ValID::t_Constant;
2472 return false;
2473 }
2474 case lltok::kw_icmp:
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00002475 case lltok::kw_fcmp: {
Chris Lattnerdf986172009-01-02 07:01:27 +00002476 unsigned PredVal, Opc = Lex.getUIntVal();
2477 Constant *Val0, *Val1;
2478 Lex.Lex();
2479 if (ParseCmpPredicate(PredVal, Opc) ||
2480 ParseToken(lltok::lparen, "expected '(' in compare constantexpr") ||
2481 ParseGlobalTypeAndValue(Val0) ||
2482 ParseToken(lltok::comma, "expected comma in compare constantexpr") ||
2483 ParseGlobalTypeAndValue(Val1) ||
2484 ParseToken(lltok::rparen, "expected ')' in compare constantexpr"))
2485 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002486
Chris Lattnerdf986172009-01-02 07:01:27 +00002487 if (Val0->getType() != Val1->getType())
2488 return Error(ID.Loc, "compare operands must have the same type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002489
Chris Lattnerdf986172009-01-02 07:01:27 +00002490 CmpInst::Predicate Pred = (CmpInst::Predicate)PredVal;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002491
Chris Lattnerdf986172009-01-02 07:01:27 +00002492 if (Opc == Instruction::FCmp) {
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00002493 if (!Val0->getType()->isFPOrFPVectorTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002494 return Error(ID.Loc, "fcmp requires floating point operands");
Owen Andersonbaf3c402009-07-29 18:55:55 +00002495 ID.ConstantVal = ConstantExpr::getFCmp(Pred, Val0, Val1);
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00002496 } else {
2497 assert(Opc == Instruction::ICmp && "Unexpected opcode for CmpInst!");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00002498 if (!Val0->getType()->isIntOrIntVectorTy() &&
Nadav Rotem16087692011-12-05 06:29:09 +00002499 !Val0->getType()->getScalarType()->isPointerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002500 return Error(ID.Loc, "icmp requires pointer or integer operands");
Owen Andersonbaf3c402009-07-29 18:55:55 +00002501 ID.ConstantVal = ConstantExpr::getICmp(Pred, Val0, Val1);
Chris Lattnerdf986172009-01-02 07:01:27 +00002502 }
2503 ID.Kind = ValID::t_Constant;
2504 return false;
2505 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002506
Chris Lattnerdf986172009-01-02 07:01:27 +00002507 // Binary Operators.
2508 case lltok::kw_add:
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002509 case lltok::kw_fadd:
Chris Lattnerdf986172009-01-02 07:01:27 +00002510 case lltok::kw_sub:
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002511 case lltok::kw_fsub:
Chris Lattnerdf986172009-01-02 07:01:27 +00002512 case lltok::kw_mul:
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002513 case lltok::kw_fmul:
Chris Lattnerdf986172009-01-02 07:01:27 +00002514 case lltok::kw_udiv:
2515 case lltok::kw_sdiv:
2516 case lltok::kw_fdiv:
2517 case lltok::kw_urem:
2518 case lltok::kw_srem:
Chris Lattnerf067d582011-02-07 16:40:21 +00002519 case lltok::kw_frem:
2520 case lltok::kw_shl:
2521 case lltok::kw_lshr:
2522 case lltok::kw_ashr: {
Dan Gohman59858cf2009-07-27 16:11:46 +00002523 bool NUW = false;
2524 bool NSW = false;
2525 bool Exact = false;
Chris Lattnerdf986172009-01-02 07:01:27 +00002526 unsigned Opc = Lex.getUIntVal();
2527 Constant *Val0, *Val1;
2528 Lex.Lex();
Dan Gohman59858cf2009-07-27 16:11:46 +00002529 LocTy ModifierLoc = Lex.getLoc();
Chris Lattnerf067d582011-02-07 16:40:21 +00002530 if (Opc == Instruction::Add || Opc == Instruction::Sub ||
2531 Opc == Instruction::Mul || Opc == Instruction::Shl) {
Dan Gohman59858cf2009-07-27 16:11:46 +00002532 if (EatIfPresent(lltok::kw_nuw))
2533 NUW = true;
2534 if (EatIfPresent(lltok::kw_nsw)) {
2535 NSW = true;
2536 if (EatIfPresent(lltok::kw_nuw))
2537 NUW = true;
2538 }
Chris Lattnerf067d582011-02-07 16:40:21 +00002539 } else if (Opc == Instruction::SDiv || Opc == Instruction::UDiv ||
2540 Opc == Instruction::LShr || Opc == Instruction::AShr) {
Dan Gohman59858cf2009-07-27 16:11:46 +00002541 if (EatIfPresent(lltok::kw_exact))
2542 Exact = true;
2543 }
Chris Lattnerdf986172009-01-02 07:01:27 +00002544 if (ParseToken(lltok::lparen, "expected '(' in binary constantexpr") ||
2545 ParseGlobalTypeAndValue(Val0) ||
2546 ParseToken(lltok::comma, "expected comma in binary constantexpr") ||
2547 ParseGlobalTypeAndValue(Val1) ||
2548 ParseToken(lltok::rparen, "expected ')' in binary constantexpr"))
2549 return true;
2550 if (Val0->getType() != Val1->getType())
2551 return Error(ID.Loc, "operands of constexpr must have same type");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00002552 if (!Val0->getType()->isIntOrIntVectorTy()) {
Dan Gohman59858cf2009-07-27 16:11:46 +00002553 if (NUW)
2554 return Error(ModifierLoc, "nuw only applies to integer operations");
2555 if (NSW)
2556 return Error(ModifierLoc, "nsw only applies to integer operations");
2557 }
Dan Gohman1eaac532010-05-03 22:44:19 +00002558 // Check that the type is valid for the operator.
2559 switch (Opc) {
2560 case Instruction::Add:
2561 case Instruction::Sub:
2562 case Instruction::Mul:
2563 case Instruction::UDiv:
2564 case Instruction::SDiv:
2565 case Instruction::URem:
2566 case Instruction::SRem:
Chris Lattnerf067d582011-02-07 16:40:21 +00002567 case Instruction::Shl:
2568 case Instruction::AShr:
2569 case Instruction::LShr:
Dan Gohman1eaac532010-05-03 22:44:19 +00002570 if (!Val0->getType()->isIntOrIntVectorTy())
2571 return Error(ID.Loc, "constexpr requires integer operands");
2572 break;
2573 case Instruction::FAdd:
2574 case Instruction::FSub:
2575 case Instruction::FMul:
2576 case Instruction::FDiv:
2577 case Instruction::FRem:
2578 if (!Val0->getType()->isFPOrFPVectorTy())
2579 return Error(ID.Loc, "constexpr requires fp operands");
2580 break;
2581 default: llvm_unreachable("Unknown binary operator!");
2582 }
Dan Gohmanf8dbee72009-09-07 23:54:19 +00002583 unsigned Flags = 0;
2584 if (NUW) Flags |= OverflowingBinaryOperator::NoUnsignedWrap;
2585 if (NSW) Flags |= OverflowingBinaryOperator::NoSignedWrap;
Chris Lattner35bda892011-02-06 21:44:57 +00002586 if (Exact) Flags |= PossiblyExactOperator::IsExact;
Dan Gohmanf8dbee72009-09-07 23:54:19 +00002587 Constant *C = ConstantExpr::get(Opc, Val0, Val1, Flags);
Dan Gohman59858cf2009-07-27 16:11:46 +00002588 ID.ConstantVal = C;
Chris Lattnerdf986172009-01-02 07:01:27 +00002589 ID.Kind = ValID::t_Constant;
2590 return false;
2591 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002592
Chris Lattnerdf986172009-01-02 07:01:27 +00002593 // Logical Operations
Chris Lattnerdf986172009-01-02 07:01:27 +00002594 case lltok::kw_and:
2595 case lltok::kw_or:
2596 case lltok::kw_xor: {
2597 unsigned Opc = Lex.getUIntVal();
2598 Constant *Val0, *Val1;
2599 Lex.Lex();
2600 if (ParseToken(lltok::lparen, "expected '(' in logical constantexpr") ||
2601 ParseGlobalTypeAndValue(Val0) ||
2602 ParseToken(lltok::comma, "expected comma in logical constantexpr") ||
2603 ParseGlobalTypeAndValue(Val1) ||
2604 ParseToken(lltok::rparen, "expected ')' in logical constantexpr"))
2605 return true;
2606 if (Val0->getType() != Val1->getType())
2607 return Error(ID.Loc, "operands of constexpr must have same type");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00002608 if (!Val0->getType()->isIntOrIntVectorTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002609 return Error(ID.Loc,
2610 "constexpr requires integer or integer vector operands");
Owen Andersonbaf3c402009-07-29 18:55:55 +00002611 ID.ConstantVal = ConstantExpr::get(Opc, Val0, Val1);
Chris Lattnerdf986172009-01-02 07:01:27 +00002612 ID.Kind = ValID::t_Constant;
2613 return false;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002614 }
2615
Chris Lattnerdf986172009-01-02 07:01:27 +00002616 case lltok::kw_getelementptr:
2617 case lltok::kw_shufflevector:
2618 case lltok::kw_insertelement:
2619 case lltok::kw_extractelement:
2620 case lltok::kw_select: {
2621 unsigned Opc = Lex.getUIntVal();
2622 SmallVector<Constant*, 16> Elts;
Dan Gohmandd8004d2009-07-27 21:53:46 +00002623 bool InBounds = false;
Chris Lattnerdf986172009-01-02 07:01:27 +00002624 Lex.Lex();
Dan Gohmandd8004d2009-07-27 21:53:46 +00002625 if (Opc == Instruction::GetElementPtr)
Dan Gohmandcb40a32009-07-29 15:58:36 +00002626 InBounds = EatIfPresent(lltok::kw_inbounds);
Chris Lattnerdf986172009-01-02 07:01:27 +00002627 if (ParseToken(lltok::lparen, "expected '(' in constantexpr") ||
2628 ParseGlobalValueVector(Elts) ||
2629 ParseToken(lltok::rparen, "expected ')' in constantexpr"))
2630 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002631
Chris Lattnerdf986172009-01-02 07:01:27 +00002632 if (Opc == Instruction::GetElementPtr) {
Nadav Rotem16087692011-12-05 06:29:09 +00002633 if (Elts.size() == 0 ||
2634 !Elts[0]->getType()->getScalarType()->isPointerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002635 return Error(ID.Loc, "getelementptr requires pointer operand");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002636
Jay Foaddab3d292011-07-21 14:31:17 +00002637 ArrayRef<Constant *> Indices(Elts.begin() + 1, Elts.end());
Jay Foada9203102011-07-25 09:48:08 +00002638 if (!GetElementPtrInst::getIndexedType(Elts[0]->getType(), Indices))
Chris Lattnerdf986172009-01-02 07:01:27 +00002639 return Error(ID.Loc, "invalid indices for getelementptr");
Jay Foad4b5e2072011-07-21 15:15:37 +00002640 ID.ConstantVal = ConstantExpr::getGetElementPtr(Elts[0], Indices,
2641 InBounds);
Chris Lattnerdf986172009-01-02 07:01:27 +00002642 } else if (Opc == Instruction::Select) {
2643 if (Elts.size() != 3)
2644 return Error(ID.Loc, "expected three operands to select");
2645 if (const char *Reason = SelectInst::areInvalidOperands(Elts[0], Elts[1],
2646 Elts[2]))
2647 return Error(ID.Loc, Reason);
Owen Andersonbaf3c402009-07-29 18:55:55 +00002648 ID.ConstantVal = ConstantExpr::getSelect(Elts[0], Elts[1], Elts[2]);
Chris Lattnerdf986172009-01-02 07:01:27 +00002649 } else if (Opc == Instruction::ShuffleVector) {
2650 if (Elts.size() != 3)
2651 return Error(ID.Loc, "expected three operands to shufflevector");
2652 if (!ShuffleVectorInst::isValidOperands(Elts[0], Elts[1], Elts[2]))
2653 return Error(ID.Loc, "invalid operands to shufflevector");
Owen Andersonfba933c2009-07-01 23:57:11 +00002654 ID.ConstantVal =
Owen Andersonbaf3c402009-07-29 18:55:55 +00002655 ConstantExpr::getShuffleVector(Elts[0], Elts[1],Elts[2]);
Chris Lattnerdf986172009-01-02 07:01:27 +00002656 } else if (Opc == Instruction::ExtractElement) {
2657 if (Elts.size() != 2)
2658 return Error(ID.Loc, "expected two operands to extractelement");
2659 if (!ExtractElementInst::isValidOperands(Elts[0], Elts[1]))
2660 return Error(ID.Loc, "invalid extractelement operands");
Owen Andersonbaf3c402009-07-29 18:55:55 +00002661 ID.ConstantVal = ConstantExpr::getExtractElement(Elts[0], Elts[1]);
Chris Lattnerdf986172009-01-02 07:01:27 +00002662 } else {
2663 assert(Opc == Instruction::InsertElement && "Unknown opcode");
2664 if (Elts.size() != 3)
2665 return Error(ID.Loc, "expected three operands to insertelement");
2666 if (!InsertElementInst::isValidOperands(Elts[0], Elts[1], Elts[2]))
2667 return Error(ID.Loc, "invalid insertelement operands");
Owen Andersonfba933c2009-07-01 23:57:11 +00002668 ID.ConstantVal =
Owen Andersonbaf3c402009-07-29 18:55:55 +00002669 ConstantExpr::getInsertElement(Elts[0], Elts[1],Elts[2]);
Chris Lattnerdf986172009-01-02 07:01:27 +00002670 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002671
Chris Lattnerdf986172009-01-02 07:01:27 +00002672 ID.Kind = ValID::t_Constant;
2673 return false;
2674 }
2675 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002676
Chris Lattnerdf986172009-01-02 07:01:27 +00002677 Lex.Lex();
2678 return false;
2679}
2680
2681/// ParseGlobalValue - Parse a global value with the specified type.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002682bool LLParser::ParseGlobalValue(Type *Ty, Constant *&C) {
Victor Hernandez92f238d2010-01-11 22:31:58 +00002683 C = 0;
Chris Lattnerdf986172009-01-02 07:01:27 +00002684 ValID ID;
Victor Hernandez92f238d2010-01-11 22:31:58 +00002685 Value *V = NULL;
2686 bool Parsed = ParseValID(ID) ||
2687 ConvertValIDToValue(Ty, ID, V, NULL);
2688 if (V && !(C = dyn_cast<Constant>(V)))
2689 return Error(ID.Loc, "global values must be constants");
2690 return Parsed;
Chris Lattnerdf986172009-01-02 07:01:27 +00002691}
2692
Victor Hernandez92f238d2010-01-11 22:31:58 +00002693bool LLParser::ParseGlobalTypeAndValue(Constant *&V) {
Chris Lattner1afcace2011-07-09 17:41:24 +00002694 Type *Ty = 0;
2695 return ParseType(Ty) ||
2696 ParseGlobalValue(Ty, V);
Victor Hernandez92f238d2010-01-11 22:31:58 +00002697}
2698
2699/// ParseGlobalValueVector
2700/// ::= /*empty*/
2701/// ::= TypeAndValue (',' TypeAndValue)*
2702bool LLParser::ParseGlobalValueVector(SmallVectorImpl<Constant*> &Elts) {
2703 // Empty list.
2704 if (Lex.getKind() == lltok::rbrace ||
2705 Lex.getKind() == lltok::rsquare ||
2706 Lex.getKind() == lltok::greater ||
2707 Lex.getKind() == lltok::rparen)
2708 return false;
2709
2710 Constant *C;
2711 if (ParseGlobalTypeAndValue(C)) return true;
2712 Elts.push_back(C);
2713
2714 while (EatIfPresent(lltok::comma)) {
2715 if (ParseGlobalTypeAndValue(C)) return true;
2716 Elts.push_back(C);
2717 }
2718
2719 return false;
2720}
2721
Dan Gohman309b3af2010-08-24 02:24:03 +00002722bool LLParser::ParseMetadataListValue(ValID &ID, PerFunctionState *PFS) {
2723 assert(Lex.getKind() == lltok::lbrace);
2724 Lex.Lex();
2725
2726 SmallVector<Value*, 16> Elts;
2727 if (ParseMDNodeVector(Elts, PFS) ||
2728 ParseToken(lltok::rbrace, "expected end of metadata node"))
2729 return true;
2730
Jay Foadec9186b2011-04-21 19:59:31 +00002731 ID.MDNodeVal = MDNode::get(Context, Elts);
Dan Gohman309b3af2010-08-24 02:24:03 +00002732 ID.Kind = ValID::t_MDNode;
2733 return false;
2734}
2735
Dan Gohman83448032010-07-14 18:26:50 +00002736/// ParseMetadataValue
2737/// ::= !42
2738/// ::= !{...}
2739/// ::= !"string"
2740bool LLParser::ParseMetadataValue(ValID &ID, PerFunctionState *PFS) {
2741 assert(Lex.getKind() == lltok::exclaim);
2742 Lex.Lex();
2743
2744 // MDNode:
2745 // !{ ... }
Dan Gohman309b3af2010-08-24 02:24:03 +00002746 if (Lex.getKind() == lltok::lbrace)
2747 return ParseMetadataListValue(ID, PFS);
Dan Gohman83448032010-07-14 18:26:50 +00002748
2749 // Standalone metadata reference
2750 // !42
2751 if (Lex.getKind() == lltok::APSInt) {
2752 if (ParseMDNodeID(ID.MDNodeVal)) return true;
2753 ID.Kind = ValID::t_MDNode;
2754 return false;
2755 }
2756
2757 // MDString:
2758 // ::= '!' STRINGCONSTANT
2759 if (ParseMDString(ID.MDStringVal)) return true;
2760 ID.Kind = ValID::t_MDString;
2761 return false;
2762}
2763
Victor Hernandez92f238d2010-01-11 22:31:58 +00002764
2765//===----------------------------------------------------------------------===//
2766// Function Parsing.
2767//===----------------------------------------------------------------------===//
2768
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002769bool LLParser::ConvertValIDToValue(Type *Ty, ValID &ID, Value *&V,
Victor Hernandez92f238d2010-01-11 22:31:58 +00002770 PerFunctionState *PFS) {
Duncan Sands1df98592010-02-16 11:11:14 +00002771 if (Ty->isFunctionTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002772 return Error(ID.Loc, "functions are not values, refer to them as pointers");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002773
Chris Lattnerdf986172009-01-02 07:01:27 +00002774 switch (ID.Kind) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002775 case ValID::t_LocalID:
Victor Hernandez92f238d2010-01-11 22:31:58 +00002776 if (!PFS) return Error(ID.Loc, "invalid use of function-local name");
2777 V = PFS->GetVal(ID.UIntVal, Ty, ID.Loc);
2778 return (V == 0);
Chris Lattnerdf986172009-01-02 07:01:27 +00002779 case ValID::t_LocalName:
Victor Hernandez92f238d2010-01-11 22:31:58 +00002780 if (!PFS) return Error(ID.Loc, "invalid use of function-local name");
2781 V = PFS->GetVal(ID.StrVal, Ty, ID.Loc);
2782 return (V == 0);
2783 case ValID::t_InlineAsm: {
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002784 PointerType *PTy = dyn_cast<PointerType>(Ty);
Michael Ilseman407a6162012-11-15 22:34:00 +00002785 FunctionType *FTy =
Victor Hernandez92f238d2010-01-11 22:31:58 +00002786 PTy ? dyn_cast<FunctionType>(PTy->getElementType()) : 0;
2787 if (!FTy || !InlineAsm::Verify(FTy, ID.StrVal2))
2788 return Error(ID.Loc, "invalid type for inline asm constraint string");
Chad Rosier36547342012-09-05 00:08:17 +00002789 V = InlineAsm::get(FTy, ID.StrVal, ID.StrVal2, ID.UIntVal&1,
Chad Rosier581600b2012-09-05 19:00:49 +00002790 (ID.UIntVal>>1)&1, (InlineAsm::AsmDialect(ID.UIntVal>>2)));
Victor Hernandez92f238d2010-01-11 22:31:58 +00002791 return false;
2792 }
2793 case ValID::t_MDNode:
2794 if (!Ty->isMetadataTy())
2795 return Error(ID.Loc, "metadata value must have metadata type");
2796 V = ID.MDNodeVal;
2797 return false;
2798 case ValID::t_MDString:
2799 if (!Ty->isMetadataTy())
2800 return Error(ID.Loc, "metadata value must have metadata type");
2801 V = ID.MDStringVal;
2802 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00002803 case ValID::t_GlobalName:
2804 V = GetGlobalVal(ID.StrVal, Ty, ID.Loc);
2805 return V == 0;
2806 case ValID::t_GlobalID:
2807 V = GetGlobalVal(ID.UIntVal, Ty, ID.Loc);
2808 return V == 0;
2809 case ValID::t_APSInt:
Duncan Sands1df98592010-02-16 11:11:14 +00002810 if (!Ty->isIntegerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002811 return Error(ID.Loc, "integer constant must have integer type");
Jay Foad40f8f622010-12-07 08:25:19 +00002812 ID.APSIntVal = ID.APSIntVal.extOrTrunc(Ty->getPrimitiveSizeInBits());
Owen Andersoneed707b2009-07-24 23:12:02 +00002813 V = ConstantInt::get(Context, ID.APSIntVal);
Chris Lattnerdf986172009-01-02 07:01:27 +00002814 return false;
2815 case ValID::t_APFloat:
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00002816 if (!Ty->isFloatingPointTy() ||
Chris Lattnerdf986172009-01-02 07:01:27 +00002817 !ConstantFP::isValueValidForType(Ty, ID.APFloatVal))
2818 return Error(ID.Loc, "floating point constant invalid for type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002819
Dan Gohmance163392011-12-17 00:04:22 +00002820 // The lexer has no type info, so builds all half, float, and double FP
2821 // constants as double. Fix this here. Long double does not need this.
2822 if (&ID.APFloatVal.getSemantics() == &APFloat::IEEEdouble) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002823 bool Ignored;
Dan Gohmance163392011-12-17 00:04:22 +00002824 if (Ty->isHalfTy())
2825 ID.APFloatVal.convert(APFloat::IEEEhalf, APFloat::rmNearestTiesToEven,
2826 &Ignored);
2827 else if (Ty->isFloatTy())
2828 ID.APFloatVal.convert(APFloat::IEEEsingle, APFloat::rmNearestTiesToEven,
2829 &Ignored);
Chris Lattnerdf986172009-01-02 07:01:27 +00002830 }
Owen Anderson6f83c9c2009-07-27 20:59:43 +00002831 V = ConstantFP::get(Context, ID.APFloatVal);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002832
Chris Lattner959873d2009-01-05 18:24:23 +00002833 if (V->getType() != Ty)
2834 return Error(ID.Loc, "floating point constant does not have type '" +
Chris Lattner0cd0d882011-06-18 21:18:23 +00002835 getTypeString(Ty) + "'");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002836
Chris Lattnerdf986172009-01-02 07:01:27 +00002837 return false;
2838 case ValID::t_Null:
Duncan Sands1df98592010-02-16 11:11:14 +00002839 if (!Ty->isPointerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002840 return Error(ID.Loc, "null must be a pointer type");
Owen Anderson9e9a0d52009-07-30 23:03:37 +00002841 V = ConstantPointerNull::get(cast<PointerType>(Ty));
Chris Lattnerdf986172009-01-02 07:01:27 +00002842 return false;
2843 case ValID::t_Undef:
Chris Lattnere67c1aa2009-01-05 08:13:38 +00002844 // FIXME: LabelTy should not be a first-class type.
Chris Lattner1afcace2011-07-09 17:41:24 +00002845 if (!Ty->isFirstClassType() || Ty->isLabelTy())
Chris Lattnere67c1aa2009-01-05 08:13:38 +00002846 return Error(ID.Loc, "invalid type for undef constant");
Owen Anderson9e9a0d52009-07-30 23:03:37 +00002847 V = UndefValue::get(Ty);
Chris Lattnerdf986172009-01-02 07:01:27 +00002848 return false;
Chris Lattner081b5052009-01-05 07:52:51 +00002849 case ValID::t_EmptyArray:
Duncan Sands1df98592010-02-16 11:11:14 +00002850 if (!Ty->isArrayTy() || cast<ArrayType>(Ty)->getNumElements() != 0)
Chris Lattner081b5052009-01-05 07:52:51 +00002851 return Error(ID.Loc, "invalid empty array initializer");
Owen Anderson9e9a0d52009-07-30 23:03:37 +00002852 V = UndefValue::get(Ty);
Chris Lattner081b5052009-01-05 07:52:51 +00002853 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00002854 case ValID::t_Zero:
Chris Lattnere67c1aa2009-01-05 08:13:38 +00002855 // FIXME: LabelTy should not be a first-class type.
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00002856 if (!Ty->isFirstClassType() || Ty->isLabelTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002857 return Error(ID.Loc, "invalid type for null constant");
Owen Andersona7235ea2009-07-31 20:28:14 +00002858 V = Constant::getNullValue(Ty);
Chris Lattnerdf986172009-01-02 07:01:27 +00002859 return false;
2860 case ValID::t_Constant:
Chris Lattner61c70e92010-08-28 04:09:24 +00002861 if (ID.ConstantVal->getType() != Ty)
Chris Lattnerdf986172009-01-02 07:01:27 +00002862 return Error(ID.Loc, "constant expression type mismatch");
Chris Lattnerfdfeb692010-02-12 20:49:41 +00002863
Chris Lattnerdf986172009-01-02 07:01:27 +00002864 V = ID.ConstantVal;
2865 return false;
Chris Lattner1afcace2011-07-09 17:41:24 +00002866 case ValID::t_ConstantStruct:
2867 case ValID::t_PackedConstantStruct:
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002868 if (StructType *ST = dyn_cast<StructType>(Ty)) {
Chris Lattner1afcace2011-07-09 17:41:24 +00002869 if (ST->getNumElements() != ID.UIntVal)
2870 return Error(ID.Loc,
2871 "initializer with struct type has wrong # elements");
2872 if (ST->isPacked() != (ID.Kind == ValID::t_PackedConstantStruct))
2873 return Error(ID.Loc, "packed'ness of initializer and type don't match");
Michael Ilseman407a6162012-11-15 22:34:00 +00002874
Chris Lattner1afcace2011-07-09 17:41:24 +00002875 // Verify that the elements are compatible with the structtype.
2876 for (unsigned i = 0, e = ID.UIntVal; i != e; ++i)
2877 if (ID.ConstantStructElts[i]->getType() != ST->getElementType(i))
2878 return Error(ID.Loc, "element " + Twine(i) +
2879 " of struct initializer doesn't match struct element type");
Michael Ilseman407a6162012-11-15 22:34:00 +00002880
Frits van Bommel39b5abf2011-07-18 12:00:32 +00002881 V = ConstantStruct::get(ST, makeArrayRef(ID.ConstantStructElts,
2882 ID.UIntVal));
Chris Lattner1afcace2011-07-09 17:41:24 +00002883 } else
2884 return Error(ID.Loc, "constant expression type mismatch");
2885 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00002886 }
Chandler Carruth732f05c2012-01-10 18:08:01 +00002887 llvm_unreachable("Invalid ValID");
Chris Lattnerdf986172009-01-02 07:01:27 +00002888}
Daniel Dunbara279bc32009-09-20 02:20:51 +00002889
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002890bool LLParser::ParseValue(Type *Ty, Value *&V, PerFunctionState *PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002891 V = 0;
2892 ValID ID;
Chris Lattner1afcace2011-07-09 17:41:24 +00002893 return ParseValID(ID, PFS) ||
2894 ConvertValIDToValue(Ty, ID, V, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00002895}
2896
Chris Lattner1afcace2011-07-09 17:41:24 +00002897bool LLParser::ParseTypeAndValue(Value *&V, PerFunctionState *PFS) {
2898 Type *Ty = 0;
2899 return ParseType(Ty) ||
2900 ParseValue(Ty, V, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00002901}
2902
Chris Lattnerf9be95f2009-10-27 19:13:16 +00002903bool LLParser::ParseTypeAndBasicBlock(BasicBlock *&BB, LocTy &Loc,
2904 PerFunctionState &PFS) {
2905 Value *V;
2906 Loc = Lex.getLoc();
2907 if (ParseTypeAndValue(V, PFS)) return true;
2908 if (!isa<BasicBlock>(V))
2909 return Error(Loc, "expected a basic block");
2910 BB = cast<BasicBlock>(V);
2911 return false;
2912}
2913
2914
Chris Lattnerdf986172009-01-02 07:01:27 +00002915/// FunctionHeader
2916/// ::= OptionalLinkage OptionalVisibility OptionalCallingConv OptRetAttrs
Rafael Espindolabea46262011-01-08 16:42:36 +00002917/// OptUnnamedAddr Type GlobalName '(' ArgList ')' OptFuncAttrs OptSection
Chris Lattnerdf986172009-01-02 07:01:27 +00002918/// OptionalAlign OptGC
2919bool LLParser::ParseFunctionHeader(Function *&Fn, bool isDefine) {
2920 // Parse the linkage.
2921 LocTy LinkageLoc = Lex.getLoc();
2922 unsigned Linkage;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002923
Kostya Serebryany164b86b2012-01-20 17:56:17 +00002924 unsigned Visibility;
Bill Wendling702cc912012-10-15 20:35:56 +00002925 AttrBuilder RetAttrs;
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00002926 CallingConv::ID CC;
Chris Lattner1afcace2011-07-09 17:41:24 +00002927 Type *RetType = 0;
Chris Lattnerdf986172009-01-02 07:01:27 +00002928 LocTy RetTypeLoc = Lex.getLoc();
2929 if (ParseOptionalLinkage(Linkage) ||
2930 ParseOptionalVisibility(Visibility) ||
2931 ParseOptionalCallingConv(CC) ||
Bill Wendlinge01b81b2012-12-04 23:40:58 +00002932 ParseOptionalReturnAttrs(RetAttrs) ||
Chris Lattnera9a9e072009-03-09 04:49:14 +00002933 ParseType(RetType, RetTypeLoc, true /*void allowed*/))
Chris Lattnerdf986172009-01-02 07:01:27 +00002934 return true;
2935
2936 // Verify that the linkage is ok.
2937 switch ((GlobalValue::LinkageTypes)Linkage) {
2938 case GlobalValue::ExternalLinkage:
2939 break; // always ok.
2940 case GlobalValue::DLLImportLinkage:
Duncan Sands5f4ee1f2009-03-11 08:08:06 +00002941 case GlobalValue::ExternalWeakLinkage:
Chris Lattnerdf986172009-01-02 07:01:27 +00002942 if (isDefine)
2943 return Error(LinkageLoc, "invalid linkage for function definition");
2944 break;
Rafael Espindolabb46f522009-01-15 20:18:42 +00002945 case GlobalValue::PrivateLinkage:
Bill Wendling3d10a5a2009-07-20 01:03:30 +00002946 case GlobalValue::LinkerPrivateLinkage:
Bill Wendling5e721d72010-07-01 21:55:59 +00002947 case GlobalValue::LinkerPrivateWeakLinkage:
Chris Lattnerdf986172009-01-02 07:01:27 +00002948 case GlobalValue::InternalLinkage:
Nick Lewycky55f64db2009-04-13 07:02:02 +00002949 case GlobalValue::AvailableExternallyLinkage:
Duncan Sands667d4b82009-03-07 15:45:40 +00002950 case GlobalValue::LinkOnceAnyLinkage:
2951 case GlobalValue::LinkOnceODRLinkage:
Bill Wendling32811be2012-08-17 18:33:14 +00002952 case GlobalValue::LinkOnceODRAutoHideLinkage:
Duncan Sands667d4b82009-03-07 15:45:40 +00002953 case GlobalValue::WeakAnyLinkage:
2954 case GlobalValue::WeakODRLinkage:
Chris Lattnerdf986172009-01-02 07:01:27 +00002955 case GlobalValue::DLLExportLinkage:
2956 if (!isDefine)
2957 return Error(LinkageLoc, "invalid linkage for function declaration");
2958 break;
2959 case GlobalValue::AppendingLinkage:
Duncan Sands4dc2b392009-03-11 20:14:15 +00002960 case GlobalValue::CommonLinkage:
Chris Lattnerdf986172009-01-02 07:01:27 +00002961 return Error(LinkageLoc, "invalid function linkage type");
2962 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002963
Chris Lattner1afcace2011-07-09 17:41:24 +00002964 if (!FunctionType::isValidReturnType(RetType))
Chris Lattnerdf986172009-01-02 07:01:27 +00002965 return Error(RetTypeLoc, "invalid function return type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002966
Chris Lattnerdf986172009-01-02 07:01:27 +00002967 LocTy NameLoc = Lex.getLoc();
Chris Lattnerf570e622009-02-18 21:48:13 +00002968
2969 std::string FunctionName;
2970 if (Lex.getKind() == lltok::GlobalVar) {
2971 FunctionName = Lex.getStrVal();
2972 } else if (Lex.getKind() == lltok::GlobalID) { // @42 is ok.
2973 unsigned NameID = Lex.getUIntVal();
2974
2975 if (NameID != NumberedVals.size())
2976 return TokError("function expected to be numbered '%" +
Benjamin Kramerd1e17032010-09-27 17:42:11 +00002977 Twine(NumberedVals.size()) + "'");
Chris Lattnerf570e622009-02-18 21:48:13 +00002978 } else {
2979 return TokError("expected function name");
2980 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002981
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002982 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +00002983
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002984 if (Lex.getKind() != lltok::lparen)
Chris Lattnerdf986172009-01-02 07:01:27 +00002985 return TokError("expected '(' in function argument list");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002986
Chris Lattner1afcace2011-07-09 17:41:24 +00002987 SmallVector<ArgInfo, 8> ArgList;
Chris Lattnerdf986172009-01-02 07:01:27 +00002988 bool isVarArg;
Bill Wendling702cc912012-10-15 20:35:56 +00002989 AttrBuilder FuncAttrs;
Bill Wendlingbaad55c2013-02-08 06:32:06 +00002990 std::vector<unsigned> FwdRefAttrGrps;
Michael Gottesman2253a2f2013-06-27 00:25:01 +00002991 LocTy BuiltinLoc;
Chris Lattnerdf986172009-01-02 07:01:27 +00002992 std::string Section;
Chris Lattnerdf986172009-01-02 07:01:27 +00002993 unsigned Alignment;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002994 std::string GC;
Rafael Espindola3971df52011-01-25 19:09:56 +00002995 bool UnnamedAddr;
2996 LocTy UnnamedAddrLoc;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002997
Chris Lattner1afcace2011-07-09 17:41:24 +00002998 if (ParseArgumentList(ArgList, isVarArg) ||
Rafael Espindola3971df52011-01-25 19:09:56 +00002999 ParseOptionalToken(lltok::kw_unnamed_addr, UnnamedAddr,
3000 &UnnamedAddrLoc) ||
Bill Wendling143d4642013-02-22 00:12:35 +00003001 ParseFnAttributeValuePairs(FuncAttrs, FwdRefAttrGrps, false,
Michael Gottesman2253a2f2013-06-27 00:25:01 +00003002 BuiltinLoc) ||
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003003 (EatIfPresent(lltok::kw_section) &&
3004 ParseStringConstant(Section)) ||
3005 ParseOptionalAlignment(Alignment) ||
3006 (EatIfPresent(lltok::kw_gc) &&
3007 ParseStringConstant(GC)))
3008 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00003009
Michael Gottesman2253a2f2013-06-27 00:25:01 +00003010 if (FuncAttrs.contains(Attribute::Builtin))
3011 return Error(BuiltinLoc, "'builtin' attribute not valid on function");
Bill Wendling143d4642013-02-22 00:12:35 +00003012
Chris Lattnerdf986172009-01-02 07:01:27 +00003013 // If the alignment was parsed as an attribute, move to the alignment field.
Bill Wendlingf385f4c2012-10-08 23:27:46 +00003014 if (FuncAttrs.hasAlignmentAttr()) {
Bill Wendlingef99fe82012-09-21 15:26:31 +00003015 Alignment = FuncAttrs.getAlignment();
Bill Wendling034b94b2012-12-19 07:18:57 +00003016 FuncAttrs.removeAttribute(Attribute::Alignment);
Chris Lattnerdf986172009-01-02 07:01:27 +00003017 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003018
Chris Lattnerdf986172009-01-02 07:01:27 +00003019 // Okay, if we got here, the function is syntactically valid. Convert types
3020 // and do semantic checks.
Jay Foad5fdd6c82011-07-12 14:06:48 +00003021 std::vector<Type*> ParamTypeList;
Bill Wendlinga1683d62013-01-27 02:24:02 +00003022 SmallVector<AttributeSet, 8> Attrs;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003023
Bill Wendlinge603fe42012-09-19 23:54:18 +00003024 if (RetAttrs.hasAttributes())
Bill Wendlinga1683d62013-01-27 02:24:02 +00003025 Attrs.push_back(AttributeSet::get(RetType->getContext(),
3026 AttributeSet::ReturnIndex,
3027 RetAttrs));
Daniel Dunbara279bc32009-09-20 02:20:51 +00003028
Chris Lattnerdf986172009-01-02 07:01:27 +00003029 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
Chris Lattner1afcace2011-07-09 17:41:24 +00003030 ParamTypeList.push_back(ArgList[i].Ty);
Bill Wendling73dee182013-01-31 00:29:54 +00003031 if (ArgList[i].Attrs.hasAttributes(i + 1)) {
3032 AttrBuilder B(ArgList[i].Attrs, i + 1);
Bill Wendlinga1683d62013-01-27 02:24:02 +00003033 Attrs.push_back(AttributeSet::get(RetType->getContext(), i + 1, B));
3034 }
Chris Lattnerdf986172009-01-02 07:01:27 +00003035 }
3036
Bill Wendlinge603fe42012-09-19 23:54:18 +00003037 if (FuncAttrs.hasAttributes())
Bill Wendlinga1683d62013-01-27 02:24:02 +00003038 Attrs.push_back(AttributeSet::get(RetType->getContext(),
3039 AttributeSet::FunctionIndex,
3040 FuncAttrs));
Chris Lattnerdf986172009-01-02 07:01:27 +00003041
Bill Wendling99faa3b2012-12-07 23:16:57 +00003042 AttributeSet PAL = AttributeSet::get(Context, Attrs);
Daniel Dunbara279bc32009-09-20 02:20:51 +00003043
Bill Wendling94e94b32012-12-30 13:50:49 +00003044 if (PAL.hasAttribute(1, Attribute::StructRet) && !RetType->isVoidTy())
Daniel Dunbara279bc32009-09-20 02:20:51 +00003045 return Error(RetTypeLoc, "functions with 'sret' argument must return void");
3046
Chris Lattnerdb125cf2011-07-18 04:54:35 +00003047 FunctionType *FT =
Owen Andersondebcb012009-07-29 22:17:13 +00003048 FunctionType::get(RetType, ParamTypeList, isVarArg);
Chris Lattnerdb125cf2011-07-18 04:54:35 +00003049 PointerType *PFT = PointerType::getUnqual(FT);
Chris Lattnerdf986172009-01-02 07:01:27 +00003050
3051 Fn = 0;
3052 if (!FunctionName.empty()) {
3053 // If this was a definition of a forward reference, remove the definition
3054 // from the forward reference table and fill in the forward ref.
3055 std::map<std::string, std::pair<GlobalValue*, LocTy> >::iterator FRVI =
3056 ForwardRefVals.find(FunctionName);
3057 if (FRVI != ForwardRefVals.end()) {
3058 Fn = M->getFunction(FunctionName);
Nick Lewycky64ea2752012-10-11 00:38:25 +00003059 if (!Fn)
3060 return Error(FRVI->second.second, "invalid forward reference to "
3061 "function as global value!");
Chris Lattnerf1cfb952010-04-20 04:49:11 +00003062 if (Fn->getType() != PFT)
3063 return Error(FRVI->second.second, "invalid forward reference to "
3064 "function '" + FunctionName + "' with wrong type!");
Michael Ilseman407a6162012-11-15 22:34:00 +00003065
Chris Lattnerdf986172009-01-02 07:01:27 +00003066 ForwardRefVals.erase(FRVI);
3067 } else if ((Fn = M->getFunction(FunctionName))) {
Chris Lattnerd5890992011-06-17 07:06:44 +00003068 // Reject redefinitions.
3069 return Error(NameLoc, "invalid redefinition of function '" +
3070 FunctionName + "'");
Chris Lattner1d871c52009-10-25 23:22:50 +00003071 } else if (M->getNamedValue(FunctionName)) {
3072 return Error(NameLoc, "redefinition of function '@" + FunctionName + "'");
Chris Lattnerdf986172009-01-02 07:01:27 +00003073 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003074
Dan Gohman41905542009-08-29 23:37:49 +00003075 } else {
Chris Lattnerdf986172009-01-02 07:01:27 +00003076 // If this is a definition of a forward referenced function, make sure the
3077 // types agree.
3078 std::map<unsigned, std::pair<GlobalValue*, LocTy> >::iterator I
3079 = ForwardRefValIDs.find(NumberedVals.size());
3080 if (I != ForwardRefValIDs.end()) {
3081 Fn = cast<Function>(I->second.first);
3082 if (Fn->getType() != PFT)
3083 return Error(NameLoc, "type of definition and forward reference of '@" +
Benjamin Kramerd1e17032010-09-27 17:42:11 +00003084 Twine(NumberedVals.size()) + "' disagree");
Chris Lattnerdf986172009-01-02 07:01:27 +00003085 ForwardRefValIDs.erase(I);
3086 }
3087 }
3088
3089 if (Fn == 0)
3090 Fn = Function::Create(FT, GlobalValue::ExternalLinkage, FunctionName, M);
3091 else // Move the forward-reference to the correct spot in the module.
3092 M->getFunctionList().splice(M->end(), M->getFunctionList(), Fn);
3093
3094 if (FunctionName.empty())
3095 NumberedVals.push_back(Fn);
Daniel Dunbara279bc32009-09-20 02:20:51 +00003096
Chris Lattnerdf986172009-01-02 07:01:27 +00003097 Fn->setLinkage((GlobalValue::LinkageTypes)Linkage);
3098 Fn->setVisibility((GlobalValue::VisibilityTypes)Visibility);
3099 Fn->setCallingConv(CC);
3100 Fn->setAttributes(PAL);
Rafael Espindolabea46262011-01-08 16:42:36 +00003101 Fn->setUnnamedAddr(UnnamedAddr);
Chris Lattnerdf986172009-01-02 07:01:27 +00003102 Fn->setAlignment(Alignment);
3103 Fn->setSection(Section);
3104 if (!GC.empty()) Fn->setGC(GC.c_str());
Bill Wendlingbaad55c2013-02-08 06:32:06 +00003105 ForwardRefAttrGroups[Fn] = FwdRefAttrGrps;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003106
Chris Lattnerdf986172009-01-02 07:01:27 +00003107 // Add all of the arguments we parsed to the function.
3108 Function::arg_iterator ArgIt = Fn->arg_begin();
3109 for (unsigned i = 0, e = ArgList.size(); i != e; ++i, ++ArgIt) {
3110 // If the argument has a name, insert it into the argument symbol table.
3111 if (ArgList[i].Name.empty()) continue;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003112
Chris Lattnerdf986172009-01-02 07:01:27 +00003113 // Set the name, if it conflicted, it will be auto-renamed.
3114 ArgIt->setName(ArgList[i].Name);
Daniel Dunbara279bc32009-09-20 02:20:51 +00003115
Benjamin Krameraf812352010-10-16 11:28:23 +00003116 if (ArgIt->getName() != ArgList[i].Name)
Chris Lattnerdf986172009-01-02 07:01:27 +00003117 return Error(ArgList[i].Loc, "redefinition of argument '%" +
3118 ArgList[i].Name + "'");
3119 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003120
Chris Lattnerdf986172009-01-02 07:01:27 +00003121 return false;
3122}
3123
3124
3125/// ParseFunctionBody
3126/// ::= '{' BasicBlock+ '}'
Chris Lattnerdf986172009-01-02 07:01:27 +00003127///
3128bool LLParser::ParseFunctionBody(Function &Fn) {
Chris Lattner6b7c89e2011-06-17 06:42:57 +00003129 if (Lex.getKind() != lltok::lbrace)
Chris Lattnerdf986172009-01-02 07:01:27 +00003130 return TokError("expected '{' in function body");
3131 Lex.Lex(); // eat the {.
Daniel Dunbara279bc32009-09-20 02:20:51 +00003132
Chris Lattner09d9ef42009-10-28 03:39:23 +00003133 int FunctionNumber = -1;
3134 if (!Fn.hasName()) FunctionNumber = NumberedVals.size()-1;
Michael Ilseman407a6162012-11-15 22:34:00 +00003135
Chris Lattner09d9ef42009-10-28 03:39:23 +00003136 PerFunctionState PFS(*this, Fn, FunctionNumber);
Daniel Dunbara279bc32009-09-20 02:20:51 +00003137
Chris Lattner2fdf8db2010-01-09 19:20:07 +00003138 // We need at least one basic block.
Chris Lattner6b7c89e2011-06-17 06:42:57 +00003139 if (Lex.getKind() == lltok::rbrace)
Chris Lattner2fdf8db2010-01-09 19:20:07 +00003140 return TokError("function body requires at least one basic block");
Michael Ilseman407a6162012-11-15 22:34:00 +00003141
Chris Lattner6b7c89e2011-06-17 06:42:57 +00003142 while (Lex.getKind() != lltok::rbrace)
Chris Lattnerdf986172009-01-02 07:01:27 +00003143 if (ParseBasicBlock(PFS)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003144
Chris Lattnerdf986172009-01-02 07:01:27 +00003145 // Eat the }.
3146 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +00003147
Chris Lattnerdf986172009-01-02 07:01:27 +00003148 // Verify function is ok.
Chris Lattner09d9ef42009-10-28 03:39:23 +00003149 return PFS.FinishFunction();
Chris Lattnerdf986172009-01-02 07:01:27 +00003150}
3151
3152/// ParseBasicBlock
3153/// ::= LabelStr? Instruction*
3154bool LLParser::ParseBasicBlock(PerFunctionState &PFS) {
3155 // If this basic block starts out with a name, remember it.
3156 std::string Name;
3157 LocTy NameLoc = Lex.getLoc();
3158 if (Lex.getKind() == lltok::LabelStr) {
3159 Name = Lex.getStrVal();
3160 Lex.Lex();
3161 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003162
Chris Lattnerdf986172009-01-02 07:01:27 +00003163 BasicBlock *BB = PFS.DefineBB(Name, NameLoc);
3164 if (BB == 0) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003165
Chris Lattnerdf986172009-01-02 07:01:27 +00003166 std::string NameStr;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003167
Chris Lattnerdf986172009-01-02 07:01:27 +00003168 // Parse the instructions in this block until we get a terminator.
3169 Instruction *Inst;
Chris Lattner1340dd32009-12-30 05:48:36 +00003170 SmallVector<std::pair<unsigned, MDNode *>, 4> MetadataOnInst;
Chris Lattnerdf986172009-01-02 07:01:27 +00003171 do {
3172 // This instruction may have three possibilities for a name: a) none
3173 // specified, b) name specified "%foo =", c) number specified: "%4 =".
3174 LocTy NameLoc = Lex.getLoc();
3175 int NameID = -1;
3176 NameStr = "";
Daniel Dunbara279bc32009-09-20 02:20:51 +00003177
Chris Lattnerdf986172009-01-02 07:01:27 +00003178 if (Lex.getKind() == lltok::LocalVarID) {
3179 NameID = Lex.getUIntVal();
3180 Lex.Lex();
3181 if (ParseToken(lltok::equal, "expected '=' after instruction id"))
3182 return true;
Chris Lattner7a1b9bd2011-06-17 06:36:20 +00003183 } else if (Lex.getKind() == lltok::LocalVar) {
Chris Lattnerdf986172009-01-02 07:01:27 +00003184 NameStr = Lex.getStrVal();
3185 Lex.Lex();
3186 if (ParseToken(lltok::equal, "expected '=' after instruction name"))
3187 return true;
3188 }
Devang Patelf633a062009-09-17 23:04:48 +00003189
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00003190 switch (ParseInstruction(Inst, BB, PFS)) {
Craig Topper85814382012-02-07 05:05:23 +00003191 default: llvm_unreachable("Unknown ParseInstruction result!");
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00003192 case InstError: return true;
3193 case InstNormal:
Chris Lattner4ba9d9b2010-04-07 04:08:57 +00003194 BB->getInstList().push_back(Inst);
3195
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00003196 // With a normal result, we check to see if the instruction is followed by
3197 // a comma and metadata.
3198 if (EatIfPresent(lltok::comma))
Dan Gohman9d072f52010-08-24 02:05:17 +00003199 if (ParseInstructionMetadata(Inst, &PFS))
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00003200 return true;
3201 break;
3202 case InstExtraComma:
Chris Lattner4ba9d9b2010-04-07 04:08:57 +00003203 BB->getInstList().push_back(Inst);
3204
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00003205 // If the instruction parser ate an extra comma at the end of it, it
3206 // *must* be followed by metadata.
Dan Gohman9d072f52010-08-24 02:05:17 +00003207 if (ParseInstructionMetadata(Inst, &PFS))
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00003208 return true;
Michael Ilseman407a6162012-11-15 22:34:00 +00003209 break;
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00003210 }
Devang Patelf633a062009-09-17 23:04:48 +00003211
Chris Lattnerdf986172009-01-02 07:01:27 +00003212 // Set the name on the instruction.
3213 if (PFS.SetInstName(NameID, NameStr, NameLoc, Inst)) return true;
3214 } while (!isa<TerminatorInst>(Inst));
Daniel Dunbara279bc32009-09-20 02:20:51 +00003215
Chris Lattnerdf986172009-01-02 07:01:27 +00003216 return false;
3217}
3218
3219//===----------------------------------------------------------------------===//
3220// Instruction Parsing.
3221//===----------------------------------------------------------------------===//
3222
3223/// ParseInstruction - Parse one of the many different instructions.
3224///
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00003225int LLParser::ParseInstruction(Instruction *&Inst, BasicBlock *BB,
3226 PerFunctionState &PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00003227 lltok::Kind Token = Lex.getKind();
3228 if (Token == lltok::Eof)
3229 return TokError("found end of file when expecting more instructions");
3230 LocTy Loc = Lex.getLoc();
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00003231 unsigned KeywordVal = Lex.getUIntVal();
Chris Lattnerdf986172009-01-02 07:01:27 +00003232 Lex.Lex(); // Eat the keyword.
Daniel Dunbara279bc32009-09-20 02:20:51 +00003233
Chris Lattnerdf986172009-01-02 07:01:27 +00003234 switch (Token) {
3235 default: return Error(Loc, "expected instruction opcode");
3236 // Terminator Instructions.
Owen Anderson1d0be152009-08-13 21:58:54 +00003237 case lltok::kw_unreachable: Inst = new UnreachableInst(Context); return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00003238 case lltok::kw_ret: return ParseRet(Inst, BB, PFS);
3239 case lltok::kw_br: return ParseBr(Inst, PFS);
3240 case lltok::kw_switch: return ParseSwitch(Inst, PFS);
Chris Lattnerab21db72009-10-28 00:19:10 +00003241 case lltok::kw_indirectbr: return ParseIndirectBr(Inst, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00003242 case lltok::kw_invoke: return ParseInvoke(Inst, PFS);
Bill Wendlingdccc03b2011-07-31 06:30:59 +00003243 case lltok::kw_resume: return ParseResume(Inst, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00003244 // Binary Operators.
3245 case lltok::kw_add:
3246 case lltok::kw_sub:
Chris Lattnerf067d582011-02-07 16:40:21 +00003247 case lltok::kw_mul:
3248 case lltok::kw_shl: {
Chris Lattnerf067d582011-02-07 16:40:21 +00003249 bool NUW = EatIfPresent(lltok::kw_nuw);
3250 bool NSW = EatIfPresent(lltok::kw_nsw);
3251 if (!NUW) NUW = EatIfPresent(lltok::kw_nuw);
Michael Ilseman407a6162012-11-15 22:34:00 +00003252
Chris Lattnerf067d582011-02-07 16:40:21 +00003253 if (ParseArithmetic(Inst, PFS, KeywordVal, 1)) return true;
Michael Ilseman407a6162012-11-15 22:34:00 +00003254
Chris Lattnerf067d582011-02-07 16:40:21 +00003255 if (NUW) cast<BinaryOperator>(Inst)->setHasNoUnsignedWrap(true);
3256 if (NSW) cast<BinaryOperator>(Inst)->setHasNoSignedWrap(true);
3257 return false;
Dan Gohman59858cf2009-07-27 16:11:46 +00003258 }
Dan Gohmanae3a0be2009-06-04 22:49:04 +00003259 case lltok::kw_fadd:
3260 case lltok::kw_fsub:
Michael Ilseman15c13d32012-11-27 00:42:44 +00003261 case lltok::kw_fmul:
3262 case lltok::kw_fdiv:
3263 case lltok::kw_frem: {
3264 FastMathFlags FMF = EatFastMathFlagsIfPresent();
3265 int Res = ParseArithmetic(Inst, PFS, KeywordVal, 2);
3266 if (Res != 0)
3267 return Res;
3268 if (FMF.any())
3269 Inst->setFastMathFlags(FMF);
3270 return 0;
3271 }
Dan Gohmanae3a0be2009-06-04 22:49:04 +00003272
Chris Lattner35bda892011-02-06 21:44:57 +00003273 case lltok::kw_sdiv:
Chris Lattnerf067d582011-02-07 16:40:21 +00003274 case lltok::kw_udiv:
3275 case lltok::kw_lshr:
3276 case lltok::kw_ashr: {
3277 bool Exact = EatIfPresent(lltok::kw_exact);
3278
3279 if (ParseArithmetic(Inst, PFS, KeywordVal, 1)) return true;
3280 if (Exact) cast<BinaryOperator>(Inst)->setIsExact(true);
3281 return false;
Dan Gohman59858cf2009-07-27 16:11:46 +00003282 }
3283
Chris Lattnerdf986172009-01-02 07:01:27 +00003284 case lltok::kw_urem:
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00003285 case lltok::kw_srem: return ParseArithmetic(Inst, PFS, KeywordVal, 1);
Chris Lattnerdf986172009-01-02 07:01:27 +00003286 case lltok::kw_and:
3287 case lltok::kw_or:
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00003288 case lltok::kw_xor: return ParseLogical(Inst, PFS, KeywordVal);
Chris Lattnerdf986172009-01-02 07:01:27 +00003289 case lltok::kw_icmp:
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00003290 case lltok::kw_fcmp: return ParseCompare(Inst, PFS, KeywordVal);
Chris Lattnerdf986172009-01-02 07:01:27 +00003291 // Casts.
3292 case lltok::kw_trunc:
3293 case lltok::kw_zext:
3294 case lltok::kw_sext:
3295 case lltok::kw_fptrunc:
3296 case lltok::kw_fpext:
3297 case lltok::kw_bitcast:
3298 case lltok::kw_uitofp:
3299 case lltok::kw_sitofp:
3300 case lltok::kw_fptoui:
Daniel Dunbara279bc32009-09-20 02:20:51 +00003301 case lltok::kw_fptosi:
Chris Lattnerdf986172009-01-02 07:01:27 +00003302 case lltok::kw_inttoptr:
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00003303 case lltok::kw_ptrtoint: return ParseCast(Inst, PFS, KeywordVal);
Chris Lattnerdf986172009-01-02 07:01:27 +00003304 // Other.
3305 case lltok::kw_select: return ParseSelect(Inst, PFS);
Chris Lattner0088a5c2009-01-05 08:18:44 +00003306 case lltok::kw_va_arg: return ParseVA_Arg(Inst, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00003307 case lltok::kw_extractelement: return ParseExtractElement(Inst, PFS);
3308 case lltok::kw_insertelement: return ParseInsertElement(Inst, PFS);
3309 case lltok::kw_shufflevector: return ParseShuffleVector(Inst, PFS);
3310 case lltok::kw_phi: return ParsePHI(Inst, PFS);
Bill Wendlinge6e88262011-08-12 20:24:12 +00003311 case lltok::kw_landingpad: return ParseLandingPad(Inst, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00003312 case lltok::kw_call: return ParseCall(Inst, PFS, false);
3313 case lltok::kw_tail: return ParseCall(Inst, PFS, true);
3314 // Memory.
Victor Hernandez13ad5aa2009-10-17 00:00:19 +00003315 case lltok::kw_alloca: return ParseAlloc(Inst, PFS);
Chris Lattnerfbe910e2011-11-27 06:56:53 +00003316 case lltok::kw_load: return ParseLoad(Inst, PFS);
3317 case lltok::kw_store: return ParseStore(Inst, PFS);
Eli Friedmanf03bb262011-08-12 22:50:01 +00003318 case lltok::kw_cmpxchg: return ParseCmpXchg(Inst, PFS);
3319 case lltok::kw_atomicrmw: return ParseAtomicRMW(Inst, PFS);
Eli Friedman47f35132011-07-25 23:16:38 +00003320 case lltok::kw_fence: return ParseFence(Inst, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00003321 case lltok::kw_getelementptr: return ParseGetElementPtr(Inst, PFS);
3322 case lltok::kw_extractvalue: return ParseExtractValue(Inst, PFS);
3323 case lltok::kw_insertvalue: return ParseInsertValue(Inst, PFS);
3324 }
3325}
3326
3327/// ParseCmpPredicate - Parse an integer or fp predicate, based on Kind.
3328bool LLParser::ParseCmpPredicate(unsigned &P, unsigned Opc) {
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00003329 if (Opc == Instruction::FCmp) {
Chris Lattnerdf986172009-01-02 07:01:27 +00003330 switch (Lex.getKind()) {
David Tweedd80d6082013-01-07 13:32:38 +00003331 default: return TokError("expected fcmp predicate (e.g. 'oeq')");
Chris Lattnerdf986172009-01-02 07:01:27 +00003332 case lltok::kw_oeq: P = CmpInst::FCMP_OEQ; break;
3333 case lltok::kw_one: P = CmpInst::FCMP_ONE; break;
3334 case lltok::kw_olt: P = CmpInst::FCMP_OLT; break;
3335 case lltok::kw_ogt: P = CmpInst::FCMP_OGT; break;
3336 case lltok::kw_ole: P = CmpInst::FCMP_OLE; break;
3337 case lltok::kw_oge: P = CmpInst::FCMP_OGE; break;
3338 case lltok::kw_ord: P = CmpInst::FCMP_ORD; break;
3339 case lltok::kw_uno: P = CmpInst::FCMP_UNO; break;
3340 case lltok::kw_ueq: P = CmpInst::FCMP_UEQ; break;
3341 case lltok::kw_une: P = CmpInst::FCMP_UNE; break;
3342 case lltok::kw_ult: P = CmpInst::FCMP_ULT; break;
3343 case lltok::kw_ugt: P = CmpInst::FCMP_UGT; break;
3344 case lltok::kw_ule: P = CmpInst::FCMP_ULE; break;
3345 case lltok::kw_uge: P = CmpInst::FCMP_UGE; break;
3346 case lltok::kw_true: P = CmpInst::FCMP_TRUE; break;
3347 case lltok::kw_false: P = CmpInst::FCMP_FALSE; break;
3348 }
3349 } else {
3350 switch (Lex.getKind()) {
David Tweedd80d6082013-01-07 13:32:38 +00003351 default: return TokError("expected icmp predicate (e.g. 'eq')");
Chris Lattnerdf986172009-01-02 07:01:27 +00003352 case lltok::kw_eq: P = CmpInst::ICMP_EQ; break;
3353 case lltok::kw_ne: P = CmpInst::ICMP_NE; break;
3354 case lltok::kw_slt: P = CmpInst::ICMP_SLT; break;
3355 case lltok::kw_sgt: P = CmpInst::ICMP_SGT; break;
3356 case lltok::kw_sle: P = CmpInst::ICMP_SLE; break;
3357 case lltok::kw_sge: P = CmpInst::ICMP_SGE; break;
3358 case lltok::kw_ult: P = CmpInst::ICMP_ULT; break;
3359 case lltok::kw_ugt: P = CmpInst::ICMP_UGT; break;
3360 case lltok::kw_ule: P = CmpInst::ICMP_ULE; break;
3361 case lltok::kw_uge: P = CmpInst::ICMP_UGE; break;
3362 }
3363 }
3364 Lex.Lex();
3365 return false;
3366}
3367
3368//===----------------------------------------------------------------------===//
3369// Terminator Instructions.
3370//===----------------------------------------------------------------------===//
3371
3372/// ParseRet - Parse a return instruction.
Chris Lattner3f3a0f62009-12-29 21:25:40 +00003373/// ::= 'ret' void (',' !dbg, !1)*
3374/// ::= 'ret' TypeAndValue (',' !dbg, !1)*
Chris Lattner437544f2011-06-17 06:49:41 +00003375bool LLParser::ParseRet(Instruction *&Inst, BasicBlock *BB,
Chris Lattner1afcace2011-07-09 17:41:24 +00003376 PerFunctionState &PFS) {
3377 SMLoc TypeLoc = Lex.getLoc();
3378 Type *Ty = 0;
Chris Lattnera9a9e072009-03-09 04:49:14 +00003379 if (ParseType(Ty, true /*void allowed*/)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003380
Chris Lattner1afcace2011-07-09 17:41:24 +00003381 Type *ResType = PFS.getFunction().getReturnType();
Michael Ilseman407a6162012-11-15 22:34:00 +00003382
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00003383 if (Ty->isVoidTy()) {
Chris Lattner1afcace2011-07-09 17:41:24 +00003384 if (!ResType->isVoidTy())
3385 return Error(TypeLoc, "value doesn't match function result type '" +
3386 getTypeString(ResType) + "'");
Michael Ilseman407a6162012-11-15 22:34:00 +00003387
Owen Anderson1d0be152009-08-13 21:58:54 +00003388 Inst = ReturnInst::Create(Context);
Chris Lattnerdf986172009-01-02 07:01:27 +00003389 return false;
3390 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003391
Chris Lattnerdf986172009-01-02 07:01:27 +00003392 Value *RV;
3393 if (ParseValue(Ty, RV, PFS)) return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00003394
Chris Lattner1afcace2011-07-09 17:41:24 +00003395 if (ResType != RV->getType())
3396 return Error(TypeLoc, "value doesn't match function result type '" +
3397 getTypeString(ResType) + "'");
Michael Ilseman407a6162012-11-15 22:34:00 +00003398
Owen Anderson1d0be152009-08-13 21:58:54 +00003399 Inst = ReturnInst::Create(Context, RV);
Chris Lattner437544f2011-06-17 06:49:41 +00003400 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00003401}
3402
3403
3404/// ParseBr
3405/// ::= 'br' TypeAndValue
3406/// ::= 'br' TypeAndValue ',' TypeAndValue ',' TypeAndValue
3407bool LLParser::ParseBr(Instruction *&Inst, PerFunctionState &PFS) {
3408 LocTy Loc, Loc2;
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003409 Value *Op0;
3410 BasicBlock *Op1, *Op2;
Chris Lattnerdf986172009-01-02 07:01:27 +00003411 if (ParseTypeAndValue(Op0, Loc, PFS)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003412
Chris Lattnerdf986172009-01-02 07:01:27 +00003413 if (BasicBlock *BB = dyn_cast<BasicBlock>(Op0)) {
3414 Inst = BranchInst::Create(BB);
3415 return false;
3416 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003417
Owen Anderson1d0be152009-08-13 21:58:54 +00003418 if (Op0->getType() != Type::getInt1Ty(Context))
Chris Lattnerdf986172009-01-02 07:01:27 +00003419 return Error(Loc, "branch condition must have 'i1' type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003420
Chris Lattnerdf986172009-01-02 07:01:27 +00003421 if (ParseToken(lltok::comma, "expected ',' after branch condition") ||
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003422 ParseTypeAndBasicBlock(Op1, Loc, PFS) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003423 ParseToken(lltok::comma, "expected ',' after true destination") ||
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003424 ParseTypeAndBasicBlock(Op2, Loc2, PFS))
Chris Lattnerdf986172009-01-02 07:01:27 +00003425 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003426
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003427 Inst = BranchInst::Create(Op1, Op2, Op0);
Chris Lattnerdf986172009-01-02 07:01:27 +00003428 return false;
3429}
3430
3431/// ParseSwitch
3432/// Instruction
3433/// ::= 'switch' TypeAndValue ',' TypeAndValue '[' JumpTable ']'
3434/// JumpTable
3435/// ::= (TypeAndValue ',' TypeAndValue)*
3436bool LLParser::ParseSwitch(Instruction *&Inst, PerFunctionState &PFS) {
3437 LocTy CondLoc, BBLoc;
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003438 Value *Cond;
3439 BasicBlock *DefaultBB;
Chris Lattnerdf986172009-01-02 07:01:27 +00003440 if (ParseTypeAndValue(Cond, CondLoc, PFS) ||
3441 ParseToken(lltok::comma, "expected ',' after switch condition") ||
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003442 ParseTypeAndBasicBlock(DefaultBB, BBLoc, PFS) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003443 ParseToken(lltok::lsquare, "expected '[' with switch table"))
3444 return true;
3445
Duncan Sands1df98592010-02-16 11:11:14 +00003446 if (!Cond->getType()->isIntegerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00003447 return Error(CondLoc, "switch condition must have integer type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003448
Chris Lattnerdf986172009-01-02 07:01:27 +00003449 // Parse the jump table pairs.
3450 SmallPtrSet<Value*, 32> SeenCases;
3451 SmallVector<std::pair<ConstantInt*, BasicBlock*>, 32> Table;
3452 while (Lex.getKind() != lltok::rsquare) {
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003453 Value *Constant;
3454 BasicBlock *DestBB;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003455
Chris Lattnerdf986172009-01-02 07:01:27 +00003456 if (ParseTypeAndValue(Constant, CondLoc, PFS) ||
3457 ParseToken(lltok::comma, "expected ',' after case value") ||
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003458 ParseTypeAndBasicBlock(DestBB, PFS))
Chris Lattnerdf986172009-01-02 07:01:27 +00003459 return true;
Michael Ilseman407a6162012-11-15 22:34:00 +00003460
Chris Lattnerdf986172009-01-02 07:01:27 +00003461 if (!SeenCases.insert(Constant))
3462 return Error(CondLoc, "duplicate case value in switch");
3463 if (!isa<ConstantInt>(Constant))
3464 return Error(CondLoc, "case value is not a constant integer");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003465
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003466 Table.push_back(std::make_pair(cast<ConstantInt>(Constant), DestBB));
Chris Lattnerdf986172009-01-02 07:01:27 +00003467 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003468
Chris Lattnerdf986172009-01-02 07:01:27 +00003469 Lex.Lex(); // Eat the ']'.
Daniel Dunbara279bc32009-09-20 02:20:51 +00003470
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003471 SwitchInst *SI = SwitchInst::Create(Cond, DefaultBB, Table.size());
Chris Lattnerdf986172009-01-02 07:01:27 +00003472 for (unsigned i = 0, e = Table.size(); i != e; ++i)
3473 SI->addCase(Table[i].first, Table[i].second);
3474 Inst = SI;
3475 return false;
3476}
3477
Chris Lattnerab21db72009-10-28 00:19:10 +00003478/// ParseIndirectBr
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003479/// Instruction
Chris Lattnerab21db72009-10-28 00:19:10 +00003480/// ::= 'indirectbr' TypeAndValue ',' '[' LabelList ']'
3481bool LLParser::ParseIndirectBr(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003482 LocTy AddrLoc;
3483 Value *Address;
3484 if (ParseTypeAndValue(Address, AddrLoc, PFS) ||
Chris Lattnerab21db72009-10-28 00:19:10 +00003485 ParseToken(lltok::comma, "expected ',' after indirectbr address") ||
3486 ParseToken(lltok::lsquare, "expected '[' with indirectbr"))
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003487 return true;
Michael Ilseman407a6162012-11-15 22:34:00 +00003488
Duncan Sands1df98592010-02-16 11:11:14 +00003489 if (!Address->getType()->isPointerTy())
Chris Lattnerab21db72009-10-28 00:19:10 +00003490 return Error(AddrLoc, "indirectbr address must have pointer type");
Michael Ilseman407a6162012-11-15 22:34:00 +00003491
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003492 // Parse the destination list.
3493 SmallVector<BasicBlock*, 16> DestList;
Michael Ilseman407a6162012-11-15 22:34:00 +00003494
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003495 if (Lex.getKind() != lltok::rsquare) {
3496 BasicBlock *DestBB;
3497 if (ParseTypeAndBasicBlock(DestBB, PFS))
3498 return true;
3499 DestList.push_back(DestBB);
Michael Ilseman407a6162012-11-15 22:34:00 +00003500
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003501 while (EatIfPresent(lltok::comma)) {
3502 if (ParseTypeAndBasicBlock(DestBB, PFS))
3503 return true;
3504 DestList.push_back(DestBB);
3505 }
3506 }
Michael Ilseman407a6162012-11-15 22:34:00 +00003507
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003508 if (ParseToken(lltok::rsquare, "expected ']' at end of block list"))
3509 return true;
3510
Chris Lattnerab21db72009-10-28 00:19:10 +00003511 IndirectBrInst *IBI = IndirectBrInst::Create(Address, DestList.size());
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003512 for (unsigned i = 0, e = DestList.size(); i != e; ++i)
3513 IBI->addDestination(DestList[i]);
3514 Inst = IBI;
3515 return false;
3516}
3517
3518
Chris Lattnerdf986172009-01-02 07:01:27 +00003519/// ParseInvoke
3520/// ::= 'invoke' OptionalCallingConv OptionalAttrs Type Value ParamList
3521/// OptionalAttrs 'to' TypeAndValue 'unwind' TypeAndValue
3522bool LLParser::ParseInvoke(Instruction *&Inst, PerFunctionState &PFS) {
3523 LocTy CallLoc = Lex.getLoc();
Bill Wendling702cc912012-10-15 20:35:56 +00003524 AttrBuilder RetAttrs, FnAttrs;
Bill Wendlingbaad55c2013-02-08 06:32:06 +00003525 std::vector<unsigned> FwdRefAttrGrps;
Bill Wendling143d4642013-02-22 00:12:35 +00003526 LocTy NoBuiltinLoc;
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00003527 CallingConv::ID CC;
Chris Lattner1afcace2011-07-09 17:41:24 +00003528 Type *RetType = 0;
Chris Lattnerdf986172009-01-02 07:01:27 +00003529 LocTy RetTypeLoc;
3530 ValID CalleeID;
3531 SmallVector<ParamInfo, 16> ArgList;
3532
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003533 BasicBlock *NormalBB, *UnwindBB;
Chris Lattnerdf986172009-01-02 07:01:27 +00003534 if (ParseOptionalCallingConv(CC) ||
Bill Wendlinge01b81b2012-12-04 23:40:58 +00003535 ParseOptionalReturnAttrs(RetAttrs) ||
Chris Lattnera9a9e072009-03-09 04:49:14 +00003536 ParseType(RetType, RetTypeLoc, true /*void allowed*/) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003537 ParseValID(CalleeID) ||
3538 ParseParameterList(ArgList, PFS) ||
Bill Wendling143d4642013-02-22 00:12:35 +00003539 ParseFnAttributeValuePairs(FnAttrs, FwdRefAttrGrps, false,
3540 NoBuiltinLoc) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003541 ParseToken(lltok::kw_to, "expected 'to' in invoke") ||
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003542 ParseTypeAndBasicBlock(NormalBB, PFS) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003543 ParseToken(lltok::kw_unwind, "expected 'unwind' in invoke") ||
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003544 ParseTypeAndBasicBlock(UnwindBB, PFS))
Chris Lattnerdf986172009-01-02 07:01:27 +00003545 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003546
Chris Lattnerdf986172009-01-02 07:01:27 +00003547 // If RetType is a non-function pointer type, then this is the short syntax
3548 // for the call, which means that RetType is just the return type. Infer the
3549 // rest of the function argument types from the arguments that are present.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00003550 PointerType *PFTy = 0;
3551 FunctionType *Ty = 0;
Chris Lattnerdf986172009-01-02 07:01:27 +00003552 if (!(PFTy = dyn_cast<PointerType>(RetType)) ||
3553 !(Ty = dyn_cast<FunctionType>(PFTy->getElementType()))) {
3554 // Pull out the types of all of the arguments...
Jay Foad5fdd6c82011-07-12 14:06:48 +00003555 std::vector<Type*> ParamTypes;
Chris Lattnerdf986172009-01-02 07:01:27 +00003556 for (unsigned i = 0, e = ArgList.size(); i != e; ++i)
3557 ParamTypes.push_back(ArgList[i].V->getType());
Daniel Dunbara279bc32009-09-20 02:20:51 +00003558
Chris Lattnerdf986172009-01-02 07:01:27 +00003559 if (!FunctionType::isValidReturnType(RetType))
3560 return Error(RetTypeLoc, "Invalid result type for LLVM function");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003561
Owen Andersondebcb012009-07-29 22:17:13 +00003562 Ty = FunctionType::get(RetType, ParamTypes, false);
3563 PFTy = PointerType::getUnqual(Ty);
Chris Lattnerdf986172009-01-02 07:01:27 +00003564 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003565
Chris Lattnerdf986172009-01-02 07:01:27 +00003566 // Look up the callee.
3567 Value *Callee;
Victor Hernandez92f238d2010-01-11 22:31:58 +00003568 if (ConvertValIDToValue(PFTy, CalleeID, Callee, &PFS)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003569
Bill Wendling034b94b2012-12-19 07:18:57 +00003570 // Set up the Attribute for the function.
Bill Wendlinga1683d62013-01-27 02:24:02 +00003571 SmallVector<AttributeSet, 8> Attrs;
Bill Wendlinge603fe42012-09-19 23:54:18 +00003572 if (RetAttrs.hasAttributes())
Bill Wendlinga1683d62013-01-27 02:24:02 +00003573 Attrs.push_back(AttributeSet::get(RetType->getContext(),
3574 AttributeSet::ReturnIndex,
3575 RetAttrs));
Daniel Dunbara279bc32009-09-20 02:20:51 +00003576
Chris Lattnerdf986172009-01-02 07:01:27 +00003577 SmallVector<Value*, 8> Args;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003578
Chris Lattnerdf986172009-01-02 07:01:27 +00003579 // Loop through FunctionType's arguments and ensure they are specified
3580 // correctly. Also, gather any parameter attributes.
3581 FunctionType::param_iterator I = Ty->param_begin();
3582 FunctionType::param_iterator E = Ty->param_end();
3583 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
Chris Lattnerdb125cf2011-07-18 04:54:35 +00003584 Type *ExpectedTy = 0;
Chris Lattnerdf986172009-01-02 07:01:27 +00003585 if (I != E) {
3586 ExpectedTy = *I++;
3587 } else if (!Ty->isVarArg()) {
3588 return Error(ArgList[i].Loc, "too many arguments specified");
3589 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003590
Chris Lattnerdf986172009-01-02 07:01:27 +00003591 if (ExpectedTy && ExpectedTy != ArgList[i].V->getType())
3592 return Error(ArgList[i].Loc, "argument is not of expected type '" +
Chris Lattner0cd0d882011-06-18 21:18:23 +00003593 getTypeString(ExpectedTy) + "'");
Chris Lattnerdf986172009-01-02 07:01:27 +00003594 Args.push_back(ArgList[i].V);
Bill Wendling73dee182013-01-31 00:29:54 +00003595 if (ArgList[i].Attrs.hasAttributes(i + 1)) {
3596 AttrBuilder B(ArgList[i].Attrs, i + 1);
Bill Wendlinga1683d62013-01-27 02:24:02 +00003597 Attrs.push_back(AttributeSet::get(RetType->getContext(), i + 1, B));
3598 }
Chris Lattnerdf986172009-01-02 07:01:27 +00003599 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003600
Chris Lattnerdf986172009-01-02 07:01:27 +00003601 if (I != E)
3602 return Error(CallLoc, "not enough parameters specified for call");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003603
Bill Wendlinge603fe42012-09-19 23:54:18 +00003604 if (FnAttrs.hasAttributes())
Bill Wendlinga1683d62013-01-27 02:24:02 +00003605 Attrs.push_back(AttributeSet::get(RetType->getContext(),
3606 AttributeSet::FunctionIndex,
3607 FnAttrs));
Daniel Dunbara279bc32009-09-20 02:20:51 +00003608
Bill Wendling034b94b2012-12-19 07:18:57 +00003609 // Finish off the Attribute and check them
Bill Wendling99faa3b2012-12-07 23:16:57 +00003610 AttributeSet PAL = AttributeSet::get(Context, Attrs);
Daniel Dunbara279bc32009-09-20 02:20:51 +00003611
Jay Foada3efbb12011-07-15 08:37:34 +00003612 InvokeInst *II = InvokeInst::Create(Callee, NormalBB, UnwindBB, Args);
Chris Lattnerdf986172009-01-02 07:01:27 +00003613 II->setCallingConv(CC);
3614 II->setAttributes(PAL);
Bill Wendlingbaad55c2013-02-08 06:32:06 +00003615 ForwardRefAttrGroups[II] = FwdRefAttrGrps;
Chris Lattnerdf986172009-01-02 07:01:27 +00003616 Inst = II;
3617 return false;
3618}
3619
Bill Wendlingdccc03b2011-07-31 06:30:59 +00003620/// ParseResume
3621/// ::= 'resume' TypeAndValue
3622bool LLParser::ParseResume(Instruction *&Inst, PerFunctionState &PFS) {
3623 Value *Exn; LocTy ExnLoc;
Bill Wendlingdccc03b2011-07-31 06:30:59 +00003624 if (ParseTypeAndValue(Exn, ExnLoc, PFS))
3625 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00003626
Bill Wendlingdccc03b2011-07-31 06:30:59 +00003627 ResumeInst *RI = ResumeInst::Create(Exn);
3628 Inst = RI;
3629 return false;
3630}
Chris Lattnerdf986172009-01-02 07:01:27 +00003631
3632//===----------------------------------------------------------------------===//
3633// Binary Operators.
3634//===----------------------------------------------------------------------===//
3635
3636/// ParseArithmetic
Chris Lattnere914b592009-01-05 08:24:46 +00003637/// ::= ArithmeticOps TypeAndValue ',' Value
3638///
3639/// If OperandType is 0, then any FP or integer operand is allowed. If it is 1,
3640/// then any integer operand is allowed, if it is 2, any fp operand is allowed.
Chris Lattnerdf986172009-01-02 07:01:27 +00003641bool LLParser::ParseArithmetic(Instruction *&Inst, PerFunctionState &PFS,
Chris Lattnere914b592009-01-05 08:24:46 +00003642 unsigned Opc, unsigned OperandType) {
Chris Lattnerdf986172009-01-02 07:01:27 +00003643 LocTy Loc; Value *LHS, *RHS;
3644 if (ParseTypeAndValue(LHS, Loc, PFS) ||
3645 ParseToken(lltok::comma, "expected ',' in arithmetic operation") ||
3646 ParseValue(LHS->getType(), RHS, PFS))
3647 return true;
3648
Chris Lattnere914b592009-01-05 08:24:46 +00003649 bool Valid;
3650 switch (OperandType) {
Torok Edwinc23197a2009-07-14 16:55:14 +00003651 default: llvm_unreachable("Unknown operand type!");
Chris Lattnere914b592009-01-05 08:24:46 +00003652 case 0: // int or FP.
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00003653 Valid = LHS->getType()->isIntOrIntVectorTy() ||
3654 LHS->getType()->isFPOrFPVectorTy();
Chris Lattnere914b592009-01-05 08:24:46 +00003655 break;
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00003656 case 1: Valid = LHS->getType()->isIntOrIntVectorTy(); break;
3657 case 2: Valid = LHS->getType()->isFPOrFPVectorTy(); break;
Chris Lattnere914b592009-01-05 08:24:46 +00003658 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003659
Chris Lattnere914b592009-01-05 08:24:46 +00003660 if (!Valid)
3661 return Error(Loc, "invalid operand type for instruction");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003662
Chris Lattnerdf986172009-01-02 07:01:27 +00003663 Inst = BinaryOperator::Create((Instruction::BinaryOps)Opc, LHS, RHS);
3664 return false;
3665}
3666
3667/// ParseLogical
3668/// ::= ArithmeticOps TypeAndValue ',' Value {
3669bool LLParser::ParseLogical(Instruction *&Inst, PerFunctionState &PFS,
3670 unsigned Opc) {
3671 LocTy Loc; Value *LHS, *RHS;
3672 if (ParseTypeAndValue(LHS, Loc, PFS) ||
3673 ParseToken(lltok::comma, "expected ',' in logical operation") ||
3674 ParseValue(LHS->getType(), RHS, PFS))
3675 return true;
3676
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00003677 if (!LHS->getType()->isIntOrIntVectorTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00003678 return Error(Loc,"instruction requires integer or integer vector operands");
3679
3680 Inst = BinaryOperator::Create((Instruction::BinaryOps)Opc, LHS, RHS);
3681 return false;
3682}
3683
3684
3685/// ParseCompare
3686/// ::= 'icmp' IPredicates TypeAndValue ',' Value
3687/// ::= 'fcmp' FPredicates TypeAndValue ',' Value
Chris Lattnerdf986172009-01-02 07:01:27 +00003688bool LLParser::ParseCompare(Instruction *&Inst, PerFunctionState &PFS,
3689 unsigned Opc) {
3690 // Parse the integer/fp comparison predicate.
3691 LocTy Loc;
3692 unsigned Pred;
3693 Value *LHS, *RHS;
3694 if (ParseCmpPredicate(Pred, Opc) ||
3695 ParseTypeAndValue(LHS, Loc, PFS) ||
3696 ParseToken(lltok::comma, "expected ',' after compare value") ||
3697 ParseValue(LHS->getType(), RHS, PFS))
3698 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003699
Chris Lattnerdf986172009-01-02 07:01:27 +00003700 if (Opc == Instruction::FCmp) {
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00003701 if (!LHS->getType()->isFPOrFPVectorTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00003702 return Error(Loc, "fcmp requires floating point operands");
Dan Gohman1c8a23c2009-08-25 23:17:54 +00003703 Inst = new FCmpInst(CmpInst::Predicate(Pred), LHS, RHS);
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00003704 } else {
3705 assert(Opc == Instruction::ICmp && "Unknown opcode for CmpInst!");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00003706 if (!LHS->getType()->isIntOrIntVectorTy() &&
Nadav Rotem16087692011-12-05 06:29:09 +00003707 !LHS->getType()->getScalarType()->isPointerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00003708 return Error(Loc, "icmp requires integer operands");
Dan Gohman1c8a23c2009-08-25 23:17:54 +00003709 Inst = new ICmpInst(CmpInst::Predicate(Pred), LHS, RHS);
Chris Lattnerdf986172009-01-02 07:01:27 +00003710 }
3711 return false;
3712}
3713
3714//===----------------------------------------------------------------------===//
3715// Other Instructions.
3716//===----------------------------------------------------------------------===//
3717
3718
3719/// ParseCast
3720/// ::= CastOpc TypeAndValue 'to' Type
3721bool LLParser::ParseCast(Instruction *&Inst, PerFunctionState &PFS,
3722 unsigned Opc) {
Chris Lattner1afcace2011-07-09 17:41:24 +00003723 LocTy Loc;
3724 Value *Op;
3725 Type *DestTy = 0;
Chris Lattnerdf986172009-01-02 07:01:27 +00003726 if (ParseTypeAndValue(Op, Loc, PFS) ||
3727 ParseToken(lltok::kw_to, "expected 'to' after cast value") ||
3728 ParseType(DestTy))
3729 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003730
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00003731 if (!CastInst::castIsValid((Instruction::CastOps)Opc, Op, DestTy)) {
3732 CastInst::castIsValid((Instruction::CastOps)Opc, Op, DestTy);
Chris Lattnerdf986172009-01-02 07:01:27 +00003733 return Error(Loc, "invalid cast opcode for cast from '" +
Chris Lattner0cd0d882011-06-18 21:18:23 +00003734 getTypeString(Op->getType()) + "' to '" +
3735 getTypeString(DestTy) + "'");
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00003736 }
Chris Lattnerdf986172009-01-02 07:01:27 +00003737 Inst = CastInst::Create((Instruction::CastOps)Opc, Op, DestTy);
3738 return false;
3739}
3740
3741/// ParseSelect
3742/// ::= 'select' TypeAndValue ',' TypeAndValue ',' TypeAndValue
3743bool LLParser::ParseSelect(Instruction *&Inst, PerFunctionState &PFS) {
3744 LocTy Loc;
3745 Value *Op0, *Op1, *Op2;
3746 if (ParseTypeAndValue(Op0, Loc, PFS) ||
3747 ParseToken(lltok::comma, "expected ',' after select condition") ||
3748 ParseTypeAndValue(Op1, PFS) ||
3749 ParseToken(lltok::comma, "expected ',' after select value") ||
3750 ParseTypeAndValue(Op2, PFS))
3751 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003752
Chris Lattnerdf986172009-01-02 07:01:27 +00003753 if (const char *Reason = SelectInst::areInvalidOperands(Op0, Op1, Op2))
3754 return Error(Loc, Reason);
Daniel Dunbara279bc32009-09-20 02:20:51 +00003755
Chris Lattnerdf986172009-01-02 07:01:27 +00003756 Inst = SelectInst::Create(Op0, Op1, Op2);
3757 return false;
3758}
3759
Chris Lattner0088a5c2009-01-05 08:18:44 +00003760/// ParseVA_Arg
3761/// ::= 'va_arg' TypeAndValue ',' Type
3762bool LLParser::ParseVA_Arg(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00003763 Value *Op;
Chris Lattner1afcace2011-07-09 17:41:24 +00003764 Type *EltTy = 0;
Chris Lattner0088a5c2009-01-05 08:18:44 +00003765 LocTy TypeLoc;
Chris Lattnerdf986172009-01-02 07:01:27 +00003766 if (ParseTypeAndValue(Op, PFS) ||
3767 ParseToken(lltok::comma, "expected ',' after vaarg operand") ||
Chris Lattner0088a5c2009-01-05 08:18:44 +00003768 ParseType(EltTy, TypeLoc))
Chris Lattnerdf986172009-01-02 07:01:27 +00003769 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003770
Chris Lattner0088a5c2009-01-05 08:18:44 +00003771 if (!EltTy->isFirstClassType())
3772 return Error(TypeLoc, "va_arg requires operand with first class type");
Chris Lattnerdf986172009-01-02 07:01:27 +00003773
3774 Inst = new VAArgInst(Op, EltTy);
3775 return false;
3776}
3777
3778/// ParseExtractElement
3779/// ::= 'extractelement' TypeAndValue ',' TypeAndValue
3780bool LLParser::ParseExtractElement(Instruction *&Inst, PerFunctionState &PFS) {
3781 LocTy Loc;
3782 Value *Op0, *Op1;
3783 if (ParseTypeAndValue(Op0, Loc, PFS) ||
3784 ParseToken(lltok::comma, "expected ',' after extract value") ||
3785 ParseTypeAndValue(Op1, PFS))
3786 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003787
Chris Lattnerdf986172009-01-02 07:01:27 +00003788 if (!ExtractElementInst::isValidOperands(Op0, Op1))
3789 return Error(Loc, "invalid extractelement operands");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003790
Eric Christophera3500da2009-07-25 02:28:41 +00003791 Inst = ExtractElementInst::Create(Op0, Op1);
Chris Lattnerdf986172009-01-02 07:01:27 +00003792 return false;
3793}
3794
3795/// ParseInsertElement
3796/// ::= 'insertelement' TypeAndValue ',' TypeAndValue ',' TypeAndValue
3797bool LLParser::ParseInsertElement(Instruction *&Inst, PerFunctionState &PFS) {
3798 LocTy Loc;
3799 Value *Op0, *Op1, *Op2;
3800 if (ParseTypeAndValue(Op0, Loc, PFS) ||
3801 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
3802 ParseTypeAndValue(Op1, PFS) ||
3803 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
3804 ParseTypeAndValue(Op2, PFS))
3805 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003806
Chris Lattnerdf986172009-01-02 07:01:27 +00003807 if (!InsertElementInst::isValidOperands(Op0, Op1, Op2))
Eric Christopher0aaf4e92009-07-23 01:01:32 +00003808 return Error(Loc, "invalid insertelement operands");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003809
Chris Lattnerdf986172009-01-02 07:01:27 +00003810 Inst = InsertElementInst::Create(Op0, Op1, Op2);
3811 return false;
3812}
3813
3814/// ParseShuffleVector
3815/// ::= 'shufflevector' TypeAndValue ',' TypeAndValue ',' TypeAndValue
3816bool LLParser::ParseShuffleVector(Instruction *&Inst, PerFunctionState &PFS) {
3817 LocTy Loc;
3818 Value *Op0, *Op1, *Op2;
3819 if (ParseTypeAndValue(Op0, Loc, PFS) ||
3820 ParseToken(lltok::comma, "expected ',' after shuffle mask") ||
3821 ParseTypeAndValue(Op1, PFS) ||
3822 ParseToken(lltok::comma, "expected ',' after shuffle value") ||
3823 ParseTypeAndValue(Op2, PFS))
3824 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003825
Chris Lattnerdf986172009-01-02 07:01:27 +00003826 if (!ShuffleVectorInst::isValidOperands(Op0, Op1, Op2))
Pete Cooperaf393682012-02-01 23:43:12 +00003827 return Error(Loc, "invalid shufflevector operands");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003828
Chris Lattnerdf986172009-01-02 07:01:27 +00003829 Inst = new ShuffleVectorInst(Op0, Op1, Op2);
3830 return false;
3831}
3832
3833/// ParsePHI
Chris Lattnerc6e20092009-10-18 05:27:44 +00003834/// ::= 'phi' Type '[' Value ',' Value ']' (',' '[' Value ',' Value ']')*
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003835int LLParser::ParsePHI(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattner1afcace2011-07-09 17:41:24 +00003836 Type *Ty = 0; LocTy TypeLoc;
Chris Lattnerdf986172009-01-02 07:01:27 +00003837 Value *Op0, *Op1;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003838
Chris Lattner1afcace2011-07-09 17:41:24 +00003839 if (ParseType(Ty, TypeLoc) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003840 ParseToken(lltok::lsquare, "expected '[' in phi value list") ||
3841 ParseValue(Ty, Op0, PFS) ||
3842 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
Owen Anderson1d0be152009-08-13 21:58:54 +00003843 ParseValue(Type::getLabelTy(Context), Op1, PFS) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003844 ParseToken(lltok::rsquare, "expected ']' in phi value list"))
3845 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003846
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003847 bool AteExtraComma = false;
Chris Lattnerdf986172009-01-02 07:01:27 +00003848 SmallVector<std::pair<Value*, BasicBlock*>, 16> PHIVals;
3849 while (1) {
3850 PHIVals.push_back(std::make_pair(Op0, cast<BasicBlock>(Op1)));
Daniel Dunbara279bc32009-09-20 02:20:51 +00003851
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003852 if (!EatIfPresent(lltok::comma))
Chris Lattnerdf986172009-01-02 07:01:27 +00003853 break;
3854
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003855 if (Lex.getKind() == lltok::MetadataVar) {
3856 AteExtraComma = true;
Devang Patela43d46f2009-10-16 18:45:49 +00003857 break;
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003858 }
Devang Patela43d46f2009-10-16 18:45:49 +00003859
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003860 if (ParseToken(lltok::lsquare, "expected '[' in phi value list") ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003861 ParseValue(Ty, Op0, PFS) ||
3862 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
Owen Anderson1d0be152009-08-13 21:58:54 +00003863 ParseValue(Type::getLabelTy(Context), Op1, PFS) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003864 ParseToken(lltok::rsquare, "expected ']' in phi value list"))
3865 return true;
3866 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003867
Chris Lattnerdf986172009-01-02 07:01:27 +00003868 if (!Ty->isFirstClassType())
3869 return Error(TypeLoc, "phi node must have first class type");
3870
Jay Foad3ecfc862011-03-30 11:28:46 +00003871 PHINode *PN = PHINode::Create(Ty, PHIVals.size());
Chris Lattnerdf986172009-01-02 07:01:27 +00003872 for (unsigned i = 0, e = PHIVals.size(); i != e; ++i)
3873 PN->addIncoming(PHIVals[i].first, PHIVals[i].second);
3874 Inst = PN;
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003875 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerdf986172009-01-02 07:01:27 +00003876}
3877
Bill Wendlinge6e88262011-08-12 20:24:12 +00003878/// ParseLandingPad
3879/// ::= 'landingpad' Type 'personality' TypeAndValue 'cleanup'? Clause+
3880/// Clause
3881/// ::= 'catch' TypeAndValue
3882/// ::= 'filter'
3883/// ::= 'filter' TypeAndValue ( ',' TypeAndValue )*
3884bool LLParser::ParseLandingPad(Instruction *&Inst, PerFunctionState &PFS) {
3885 Type *Ty = 0; LocTy TyLoc;
3886 Value *PersFn; LocTy PersFnLoc;
Bill Wendlinge6e88262011-08-12 20:24:12 +00003887
3888 if (ParseType(Ty, TyLoc) ||
3889 ParseToken(lltok::kw_personality, "expected 'personality'") ||
3890 ParseTypeAndValue(PersFn, PersFnLoc, PFS))
3891 return true;
3892
3893 LandingPadInst *LP = LandingPadInst::Create(Ty, PersFn, 0);
3894 LP->setCleanup(EatIfPresent(lltok::kw_cleanup));
3895
3896 while (Lex.getKind() == lltok::kw_catch || Lex.getKind() == lltok::kw_filter){
3897 LandingPadInst::ClauseType CT;
3898 if (EatIfPresent(lltok::kw_catch))
3899 CT = LandingPadInst::Catch;
3900 else if (EatIfPresent(lltok::kw_filter))
3901 CT = LandingPadInst::Filter;
3902 else
3903 return TokError("expected 'catch' or 'filter' clause type");
3904
3905 Value *V; LocTy VLoc;
3906 if (ParseTypeAndValue(V, VLoc, PFS)) {
3907 delete LP;
3908 return true;
3909 }
3910
Bill Wendling746c8822011-08-12 20:52:25 +00003911 // A 'catch' type expects a non-array constant. A filter clause expects an
3912 // array constant.
3913 if (CT == LandingPadInst::Catch) {
3914 if (isa<ArrayType>(V->getType()))
3915 Error(VLoc, "'catch' clause has an invalid type");
3916 } else {
3917 if (!isa<ArrayType>(V->getType()))
3918 Error(VLoc, "'filter' clause has an invalid type");
3919 }
3920
Bill Wendlinge6e88262011-08-12 20:24:12 +00003921 LP->addClause(V);
3922 }
3923
3924 Inst = LP;
3925 return false;
3926}
3927
Chris Lattnerdf986172009-01-02 07:01:27 +00003928/// ParseCall
3929/// ::= 'tail'? 'call' OptionalCallingConv OptionalAttrs Type Value
3930/// ParameterList OptionalAttrs
3931bool LLParser::ParseCall(Instruction *&Inst, PerFunctionState &PFS,
3932 bool isTail) {
Bill Wendling702cc912012-10-15 20:35:56 +00003933 AttrBuilder RetAttrs, FnAttrs;
Bill Wendlingbaad55c2013-02-08 06:32:06 +00003934 std::vector<unsigned> FwdRefAttrGrps;
Michael Gottesman2253a2f2013-06-27 00:25:01 +00003935 LocTy BuiltinLoc;
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00003936 CallingConv::ID CC;
Chris Lattner1afcace2011-07-09 17:41:24 +00003937 Type *RetType = 0;
Chris Lattnerdf986172009-01-02 07:01:27 +00003938 LocTy RetTypeLoc;
3939 ValID CalleeID;
3940 SmallVector<ParamInfo, 16> ArgList;
3941 LocTy CallLoc = Lex.getLoc();
Daniel Dunbara279bc32009-09-20 02:20:51 +00003942
Chris Lattnerdf986172009-01-02 07:01:27 +00003943 if ((isTail && ParseToken(lltok::kw_call, "expected 'tail call'")) ||
3944 ParseOptionalCallingConv(CC) ||
Bill Wendlinge01b81b2012-12-04 23:40:58 +00003945 ParseOptionalReturnAttrs(RetAttrs) ||
Chris Lattnera9a9e072009-03-09 04:49:14 +00003946 ParseType(RetType, RetTypeLoc, true /*void allowed*/) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003947 ParseValID(CalleeID) ||
3948 ParseParameterList(ArgList, PFS) ||
Bill Wendling143d4642013-02-22 00:12:35 +00003949 ParseFnAttributeValuePairs(FnAttrs, FwdRefAttrGrps, false,
Michael Gottesman2253a2f2013-06-27 00:25:01 +00003950 BuiltinLoc))
Chris Lattnerdf986172009-01-02 07:01:27 +00003951 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003952
Chris Lattnerdf986172009-01-02 07:01:27 +00003953 // If RetType is a non-function pointer type, then this is the short syntax
3954 // for the call, which means that RetType is just the return type. Infer the
3955 // rest of the function argument types from the arguments that are present.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00003956 PointerType *PFTy = 0;
3957 FunctionType *Ty = 0;
Chris Lattnerdf986172009-01-02 07:01:27 +00003958 if (!(PFTy = dyn_cast<PointerType>(RetType)) ||
3959 !(Ty = dyn_cast<FunctionType>(PFTy->getElementType()))) {
3960 // Pull out the types of all of the arguments...
Jay Foad5fdd6c82011-07-12 14:06:48 +00003961 std::vector<Type*> ParamTypes;
Eli Friedman83b4a972010-07-24 23:06:59 +00003962 for (unsigned i = 0, e = ArgList.size(); i != e; ++i)
3963 ParamTypes.push_back(ArgList[i].V->getType());
Daniel Dunbara279bc32009-09-20 02:20:51 +00003964
Chris Lattnerdf986172009-01-02 07:01:27 +00003965 if (!FunctionType::isValidReturnType(RetType))
3966 return Error(RetTypeLoc, "Invalid result type for LLVM function");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003967
Owen Andersondebcb012009-07-29 22:17:13 +00003968 Ty = FunctionType::get(RetType, ParamTypes, false);
3969 PFTy = PointerType::getUnqual(Ty);
Chris Lattnerdf986172009-01-02 07:01:27 +00003970 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003971
Chris Lattnerdf986172009-01-02 07:01:27 +00003972 // Look up the callee.
3973 Value *Callee;
Victor Hernandez92f238d2010-01-11 22:31:58 +00003974 if (ConvertValIDToValue(PFTy, CalleeID, Callee, &PFS)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003975
Bill Wendling034b94b2012-12-19 07:18:57 +00003976 // Set up the Attribute for the function.
Bill Wendlinga1683d62013-01-27 02:24:02 +00003977 SmallVector<AttributeSet, 8> Attrs;
Bill Wendlinge603fe42012-09-19 23:54:18 +00003978 if (RetAttrs.hasAttributes())
Bill Wendlinga1683d62013-01-27 02:24:02 +00003979 Attrs.push_back(AttributeSet::get(RetType->getContext(),
3980 AttributeSet::ReturnIndex,
3981 RetAttrs));
Daniel Dunbara279bc32009-09-20 02:20:51 +00003982
Chris Lattnerdf986172009-01-02 07:01:27 +00003983 SmallVector<Value*, 8> Args;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003984
Chris Lattnerdf986172009-01-02 07:01:27 +00003985 // Loop through FunctionType's arguments and ensure they are specified
3986 // correctly. Also, gather any parameter attributes.
3987 FunctionType::param_iterator I = Ty->param_begin();
3988 FunctionType::param_iterator E = Ty->param_end();
3989 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
Chris Lattnerdb125cf2011-07-18 04:54:35 +00003990 Type *ExpectedTy = 0;
Chris Lattnerdf986172009-01-02 07:01:27 +00003991 if (I != E) {
3992 ExpectedTy = *I++;
3993 } else if (!Ty->isVarArg()) {
3994 return Error(ArgList[i].Loc, "too many arguments specified");
3995 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003996
Chris Lattnerdf986172009-01-02 07:01:27 +00003997 if (ExpectedTy && ExpectedTy != ArgList[i].V->getType())
3998 return Error(ArgList[i].Loc, "argument is not of expected type '" +
Chris Lattner0cd0d882011-06-18 21:18:23 +00003999 getTypeString(ExpectedTy) + "'");
Chris Lattnerdf986172009-01-02 07:01:27 +00004000 Args.push_back(ArgList[i].V);
Bill Wendling73dee182013-01-31 00:29:54 +00004001 if (ArgList[i].Attrs.hasAttributes(i + 1)) {
4002 AttrBuilder B(ArgList[i].Attrs, i + 1);
Bill Wendlinga1683d62013-01-27 02:24:02 +00004003 Attrs.push_back(AttributeSet::get(RetType->getContext(), i + 1, B));
4004 }
Chris Lattnerdf986172009-01-02 07:01:27 +00004005 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00004006
Chris Lattnerdf986172009-01-02 07:01:27 +00004007 if (I != E)
4008 return Error(CallLoc, "not enough parameters specified for call");
4009
Bill Wendlinge603fe42012-09-19 23:54:18 +00004010 if (FnAttrs.hasAttributes())
Bill Wendlinga1683d62013-01-27 02:24:02 +00004011 Attrs.push_back(AttributeSet::get(RetType->getContext(),
4012 AttributeSet::FunctionIndex,
4013 FnAttrs));
Chris Lattnerdf986172009-01-02 07:01:27 +00004014
Bill Wendling034b94b2012-12-19 07:18:57 +00004015 // Finish off the Attribute and check them
Bill Wendling99faa3b2012-12-07 23:16:57 +00004016 AttributeSet PAL = AttributeSet::get(Context, Attrs);
Daniel Dunbara279bc32009-09-20 02:20:51 +00004017
Jay Foada3efbb12011-07-15 08:37:34 +00004018 CallInst *CI = CallInst::Create(Callee, Args);
Chris Lattnerdf986172009-01-02 07:01:27 +00004019 CI->setTailCall(isTail);
4020 CI->setCallingConv(CC);
4021 CI->setAttributes(PAL);
Bill Wendlingbaad55c2013-02-08 06:32:06 +00004022 ForwardRefAttrGroups[CI] = FwdRefAttrGrps;
Chris Lattnerdf986172009-01-02 07:01:27 +00004023 Inst = CI;
4024 return false;
4025}
4026
4027//===----------------------------------------------------------------------===//
4028// Memory Instructions.
4029//===----------------------------------------------------------------------===//
4030
4031/// ParseAlloc
Devang Patelf633a062009-09-17 23:04:48 +00004032/// ::= 'alloca' Type (',' TypeAndValue)? (',' OptionalInfo)?
Chris Lattnerf3a789d2011-06-17 03:16:47 +00004033int LLParser::ParseAlloc(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00004034 Value *Size = 0;
Chris Lattnereeb4a842009-07-02 23:08:13 +00004035 LocTy SizeLoc;
Chris Lattnerdf986172009-01-02 07:01:27 +00004036 unsigned Alignment = 0;
Chris Lattner1afcace2011-07-09 17:41:24 +00004037 Type *Ty = 0;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00004038 if (ParseType(Ty)) return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00004039
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00004040 bool AteExtraComma = false;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00004041 if (EatIfPresent(lltok::comma)) {
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00004042 if (Lex.getKind() == lltok::kw_align) {
4043 if (ParseOptionalAlignment(Alignment)) return true;
4044 } else if (Lex.getKind() == lltok::MetadataVar) {
4045 AteExtraComma = true;
Devang Patelf633a062009-09-17 23:04:48 +00004046 } else {
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00004047 if (ParseTypeAndValue(Size, SizeLoc, PFS) ||
4048 ParseOptionalCommaAlign(Alignment, AteExtraComma))
4049 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00004050 }
4051 }
4052
Dan Gohmanf75a7d32010-05-28 01:14:11 +00004053 if (Size && !Size->getType()->isIntegerTy())
4054 return Error(SizeLoc, "element count must have integer type");
Chris Lattnerdf986172009-01-02 07:01:27 +00004055
Chris Lattnerf3a789d2011-06-17 03:16:47 +00004056 Inst = new AllocaInst(Ty, Size, Alignment);
4057 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerdf986172009-01-02 07:01:27 +00004058}
4059
4060/// ParseLoad
Eli Friedmanf03bb262011-08-12 22:50:01 +00004061/// ::= 'load' 'volatile'? TypeAndValue (',' 'align' i32)?
Michael Ilseman407a6162012-11-15 22:34:00 +00004062/// ::= 'load' 'atomic' 'volatile'? TypeAndValue
Eli Friedmanf03bb262011-08-12 22:50:01 +00004063/// 'singlethread'? AtomicOrdering (',' 'align' i32)?
Chris Lattnerfbe910e2011-11-27 06:56:53 +00004064int LLParser::ParseLoad(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00004065 Value *Val; LocTy Loc;
Devang Patelf633a062009-09-17 23:04:48 +00004066 unsigned Alignment = 0;
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00004067 bool AteExtraComma = false;
Eli Friedmanf03bb262011-08-12 22:50:01 +00004068 bool isAtomic = false;
Eli Friedman21006d42011-08-09 23:02:53 +00004069 AtomicOrdering Ordering = NotAtomic;
4070 SynchronizationScope Scope = CrossThread;
Eli Friedmanf03bb262011-08-12 22:50:01 +00004071
4072 if (Lex.getKind() == lltok::kw_atomic) {
Eli Friedmanf03bb262011-08-12 22:50:01 +00004073 isAtomic = true;
4074 Lex.Lex();
4075 }
4076
Chris Lattnerfbe910e2011-11-27 06:56:53 +00004077 bool isVolatile = false;
Eli Friedmanf03bb262011-08-12 22:50:01 +00004078 if (Lex.getKind() == lltok::kw_volatile) {
Eli Friedmanf03bb262011-08-12 22:50:01 +00004079 isVolatile = true;
4080 Lex.Lex();
4081 }
4082
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00004083 if (ParseTypeAndValue(Val, Loc, PFS) ||
Eli Friedman21006d42011-08-09 23:02:53 +00004084 ParseScopeAndOrdering(isAtomic, Scope, Ordering) ||
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00004085 ParseOptionalCommaAlign(Alignment, AteExtraComma))
4086 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00004087
Duncan Sands1df98592010-02-16 11:11:14 +00004088 if (!Val->getType()->isPointerTy() ||
Chris Lattnerdf986172009-01-02 07:01:27 +00004089 !cast<PointerType>(Val->getType())->getElementType()->isFirstClassType())
4090 return Error(Loc, "load operand must be a pointer to a first class type");
Eli Friedman21006d42011-08-09 23:02:53 +00004091 if (isAtomic && !Alignment)
4092 return Error(Loc, "atomic load must have explicit non-zero alignment");
4093 if (Ordering == Release || Ordering == AcquireRelease)
4094 return Error(Loc, "atomic load cannot use Release ordering");
Daniel Dunbara279bc32009-09-20 02:20:51 +00004095
Eli Friedman21006d42011-08-09 23:02:53 +00004096 Inst = new LoadInst(Val, "", isVolatile, Alignment, Ordering, Scope);
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00004097 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerdf986172009-01-02 07:01:27 +00004098}
4099
4100/// ParseStore
Eli Friedmanf03bb262011-08-12 22:50:01 +00004101
4102/// ::= 'store' 'volatile'? TypeAndValue ',' TypeAndValue (',' 'align' i32)?
4103/// ::= 'store' 'atomic' 'volatile'? TypeAndValue ',' TypeAndValue
Eli Friedman21006d42011-08-09 23:02:53 +00004104/// 'singlethread'? AtomicOrdering (',' 'align' i32)?
Chris Lattnerfbe910e2011-11-27 06:56:53 +00004105int LLParser::ParseStore(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00004106 Value *Val, *Ptr; LocTy Loc, PtrLoc;
Devang Patelf633a062009-09-17 23:04:48 +00004107 unsigned Alignment = 0;
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00004108 bool AteExtraComma = false;
Eli Friedmanf03bb262011-08-12 22:50:01 +00004109 bool isAtomic = false;
Eli Friedman21006d42011-08-09 23:02:53 +00004110 AtomicOrdering Ordering = NotAtomic;
4111 SynchronizationScope Scope = CrossThread;
Eli Friedmanf03bb262011-08-12 22:50:01 +00004112
4113 if (Lex.getKind() == lltok::kw_atomic) {
Eli Friedmanf03bb262011-08-12 22:50:01 +00004114 isAtomic = true;
4115 Lex.Lex();
4116 }
4117
Chris Lattnerfbe910e2011-11-27 06:56:53 +00004118 bool isVolatile = false;
Eli Friedmanf03bb262011-08-12 22:50:01 +00004119 if (Lex.getKind() == lltok::kw_volatile) {
Eli Friedmanf03bb262011-08-12 22:50:01 +00004120 isVolatile = true;
4121 Lex.Lex();
4122 }
4123
Chris Lattnerdf986172009-01-02 07:01:27 +00004124 if (ParseTypeAndValue(Val, Loc, PFS) ||
4125 ParseToken(lltok::comma, "expected ',' after store operand") ||
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00004126 ParseTypeAndValue(Ptr, PtrLoc, PFS) ||
Eli Friedman21006d42011-08-09 23:02:53 +00004127 ParseScopeAndOrdering(isAtomic, Scope, Ordering) ||
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00004128 ParseOptionalCommaAlign(Alignment, AteExtraComma))
Chris Lattnerdf986172009-01-02 07:01:27 +00004129 return true;
Devang Patelf633a062009-09-17 23:04:48 +00004130
Duncan Sands1df98592010-02-16 11:11:14 +00004131 if (!Ptr->getType()->isPointerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00004132 return Error(PtrLoc, "store operand must be a pointer");
4133 if (!Val->getType()->isFirstClassType())
4134 return Error(Loc, "store operand must be a first class value");
4135 if (cast<PointerType>(Ptr->getType())->getElementType() != Val->getType())
4136 return Error(Loc, "stored value and pointer type do not match");
Eli Friedman21006d42011-08-09 23:02:53 +00004137 if (isAtomic && !Alignment)
4138 return Error(Loc, "atomic store must have explicit non-zero alignment");
4139 if (Ordering == Acquire || Ordering == AcquireRelease)
4140 return Error(Loc, "atomic store cannot use Acquire ordering");
Daniel Dunbara279bc32009-09-20 02:20:51 +00004141
Eli Friedman21006d42011-08-09 23:02:53 +00004142 Inst = new StoreInst(Val, Ptr, isVolatile, Alignment, Ordering, Scope);
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00004143 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerdf986172009-01-02 07:01:27 +00004144}
4145
Eli Friedmanff030482011-07-28 21:48:00 +00004146/// ParseCmpXchg
Eli Friedmanf03bb262011-08-12 22:50:01 +00004147/// ::= 'cmpxchg' 'volatile'? TypeAndValue ',' TypeAndValue ',' TypeAndValue
4148/// 'singlethread'? AtomicOrdering
4149int LLParser::ParseCmpXchg(Instruction *&Inst, PerFunctionState &PFS) {
Eli Friedmanff030482011-07-28 21:48:00 +00004150 Value *Ptr, *Cmp, *New; LocTy PtrLoc, CmpLoc, NewLoc;
4151 bool AteExtraComma = false;
4152 AtomicOrdering Ordering = NotAtomic;
4153 SynchronizationScope Scope = CrossThread;
Eli Friedmanf03bb262011-08-12 22:50:01 +00004154 bool isVolatile = false;
4155
4156 if (EatIfPresent(lltok::kw_volatile))
4157 isVolatile = true;
4158
Eli Friedmanff030482011-07-28 21:48:00 +00004159 if (ParseTypeAndValue(Ptr, PtrLoc, PFS) ||
4160 ParseToken(lltok::comma, "expected ',' after cmpxchg address") ||
4161 ParseTypeAndValue(Cmp, CmpLoc, PFS) ||
4162 ParseToken(lltok::comma, "expected ',' after cmpxchg cmp operand") ||
4163 ParseTypeAndValue(New, NewLoc, PFS) ||
4164 ParseScopeAndOrdering(true /*Always atomic*/, Scope, Ordering))
4165 return true;
4166
4167 if (Ordering == Unordered)
4168 return TokError("cmpxchg cannot be unordered");
4169 if (!Ptr->getType()->isPointerTy())
4170 return Error(PtrLoc, "cmpxchg operand must be a pointer");
4171 if (cast<PointerType>(Ptr->getType())->getElementType() != Cmp->getType())
4172 return Error(CmpLoc, "compare value and pointer type do not match");
4173 if (cast<PointerType>(Ptr->getType())->getElementType() != New->getType())
4174 return Error(NewLoc, "new value and pointer type do not match");
4175 if (!New->getType()->isIntegerTy())
4176 return Error(NewLoc, "cmpxchg operand must be an integer");
4177 unsigned Size = New->getType()->getPrimitiveSizeInBits();
4178 if (Size < 8 || (Size & (Size - 1)))
4179 return Error(NewLoc, "cmpxchg operand must be power-of-two byte-sized"
4180 " integer");
4181
4182 AtomicCmpXchgInst *CXI =
4183 new AtomicCmpXchgInst(Ptr, Cmp, New, Ordering, Scope);
4184 CXI->setVolatile(isVolatile);
4185 Inst = CXI;
4186 return AteExtraComma ? InstExtraComma : InstNormal;
4187}
4188
4189/// ParseAtomicRMW
Eli Friedmanf03bb262011-08-12 22:50:01 +00004190/// ::= 'atomicrmw' 'volatile'? BinOp TypeAndValue ',' TypeAndValue
4191/// 'singlethread'? AtomicOrdering
4192int LLParser::ParseAtomicRMW(Instruction *&Inst, PerFunctionState &PFS) {
Eli Friedmanff030482011-07-28 21:48:00 +00004193 Value *Ptr, *Val; LocTy PtrLoc, ValLoc;
4194 bool AteExtraComma = false;
4195 AtomicOrdering Ordering = NotAtomic;
4196 SynchronizationScope Scope = CrossThread;
Eli Friedmanf03bb262011-08-12 22:50:01 +00004197 bool isVolatile = false;
Eli Friedmanff030482011-07-28 21:48:00 +00004198 AtomicRMWInst::BinOp Operation;
Eli Friedmanf03bb262011-08-12 22:50:01 +00004199
4200 if (EatIfPresent(lltok::kw_volatile))
4201 isVolatile = true;
4202
Eli Friedmanff030482011-07-28 21:48:00 +00004203 switch (Lex.getKind()) {
4204 default: return TokError("expected binary operation in atomicrmw");
4205 case lltok::kw_xchg: Operation = AtomicRMWInst::Xchg; break;
4206 case lltok::kw_add: Operation = AtomicRMWInst::Add; break;
4207 case lltok::kw_sub: Operation = AtomicRMWInst::Sub; break;
4208 case lltok::kw_and: Operation = AtomicRMWInst::And; break;
4209 case lltok::kw_nand: Operation = AtomicRMWInst::Nand; break;
4210 case lltok::kw_or: Operation = AtomicRMWInst::Or; break;
4211 case lltok::kw_xor: Operation = AtomicRMWInst::Xor; break;
4212 case lltok::kw_max: Operation = AtomicRMWInst::Max; break;
4213 case lltok::kw_min: Operation = AtomicRMWInst::Min; break;
4214 case lltok::kw_umax: Operation = AtomicRMWInst::UMax; break;
4215 case lltok::kw_umin: Operation = AtomicRMWInst::UMin; break;
4216 }
4217 Lex.Lex(); // Eat the operation.
4218
4219 if (ParseTypeAndValue(Ptr, PtrLoc, PFS) ||
4220 ParseToken(lltok::comma, "expected ',' after atomicrmw address") ||
4221 ParseTypeAndValue(Val, ValLoc, PFS) ||
4222 ParseScopeAndOrdering(true /*Always atomic*/, Scope, Ordering))
4223 return true;
4224
4225 if (Ordering == Unordered)
4226 return TokError("atomicrmw cannot be unordered");
4227 if (!Ptr->getType()->isPointerTy())
4228 return Error(PtrLoc, "atomicrmw operand must be a pointer");
4229 if (cast<PointerType>(Ptr->getType())->getElementType() != Val->getType())
4230 return Error(ValLoc, "atomicrmw value and pointer type do not match");
4231 if (!Val->getType()->isIntegerTy())
4232 return Error(ValLoc, "atomicrmw operand must be an integer");
4233 unsigned Size = Val->getType()->getPrimitiveSizeInBits();
4234 if (Size < 8 || (Size & (Size - 1)))
4235 return Error(ValLoc, "atomicrmw operand must be power-of-two byte-sized"
4236 " integer");
4237
4238 AtomicRMWInst *RMWI =
4239 new AtomicRMWInst(Operation, Ptr, Val, Ordering, Scope);
4240 RMWI->setVolatile(isVolatile);
4241 Inst = RMWI;
4242 return AteExtraComma ? InstExtraComma : InstNormal;
4243}
4244
Eli Friedman47f35132011-07-25 23:16:38 +00004245/// ParseFence
4246/// ::= 'fence' 'singlethread'? AtomicOrdering
4247int LLParser::ParseFence(Instruction *&Inst, PerFunctionState &PFS) {
4248 AtomicOrdering Ordering = NotAtomic;
4249 SynchronizationScope Scope = CrossThread;
4250 if (ParseScopeAndOrdering(true /*Always atomic*/, Scope, Ordering))
4251 return true;
4252
4253 if (Ordering == Unordered)
4254 return TokError("fence cannot be unordered");
4255 if (Ordering == Monotonic)
4256 return TokError("fence cannot be monotonic");
4257
4258 Inst = new FenceInst(Context, Ordering, Scope);
4259 return InstNormal;
4260}
4261
Chris Lattnerdf986172009-01-02 07:01:27 +00004262/// ParseGetElementPtr
Dan Gohmandd8004d2009-07-27 21:53:46 +00004263/// ::= 'getelementptr' 'inbounds'? TypeAndValue (',' TypeAndValue)*
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004264int LLParser::ParseGetElementPtr(Instruction *&Inst, PerFunctionState &PFS) {
Nadav Rotem16087692011-12-05 06:29:09 +00004265 Value *Ptr = 0;
4266 Value *Val = 0;
4267 LocTy Loc, EltLoc;
Dan Gohmandd8004d2009-07-27 21:53:46 +00004268
Dan Gohmandcb40a32009-07-29 15:58:36 +00004269 bool InBounds = EatIfPresent(lltok::kw_inbounds);
Dan Gohmandd8004d2009-07-27 21:53:46 +00004270
Chris Lattner3ed88ef2009-01-02 08:05:26 +00004271 if (ParseTypeAndValue(Ptr, Loc, PFS)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00004272
Eli Bendersky59eb5ee2013-04-22 17:03:42 +00004273 Type *BaseType = Ptr->getType();
4274 PointerType *BasePointerType = dyn_cast<PointerType>(BaseType->getScalarType());
4275 if (!BasePointerType)
Chris Lattnerdf986172009-01-02 07:01:27 +00004276 return Error(Loc, "base of getelementptr must be a pointer");
Daniel Dunbara279bc32009-09-20 02:20:51 +00004277
Chris Lattnerdf986172009-01-02 07:01:27 +00004278 SmallVector<Value*, 16> Indices;
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004279 bool AteExtraComma = false;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00004280 while (EatIfPresent(lltok::comma)) {
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004281 if (Lex.getKind() == lltok::MetadataVar) {
4282 AteExtraComma = true;
Devang Patel6225d642009-10-13 18:49:55 +00004283 break;
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004284 }
Chris Lattner3ed88ef2009-01-02 08:05:26 +00004285 if (ParseTypeAndValue(Val, EltLoc, PFS)) return true;
Nadav Rotem16087692011-12-05 06:29:09 +00004286 if (!Val->getType()->getScalarType()->isIntegerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00004287 return Error(EltLoc, "getelementptr index must be an integer");
Nadav Rotem16087692011-12-05 06:29:09 +00004288 if (Val->getType()->isVectorTy() != Ptr->getType()->isVectorTy())
4289 return Error(EltLoc, "getelementptr index type missmatch");
4290 if (Val->getType()->isVectorTy()) {
4291 unsigned ValNumEl = cast<VectorType>(Val->getType())->getNumElements();
4292 unsigned PtrNumEl = cast<VectorType>(Ptr->getType())->getNumElements();
4293 if (ValNumEl != PtrNumEl)
4294 return Error(EltLoc,
4295 "getelementptr vector index has a wrong number of elements");
4296 }
Chris Lattnerdf986172009-01-02 07:01:27 +00004297 Indices.push_back(Val);
4298 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00004299
Eli Bendersky59eb5ee2013-04-22 17:03:42 +00004300 if (!Indices.empty() && !BasePointerType->getElementType()->isSized())
4301 return Error(Loc, "base element of getelementptr must be sized");
4302
4303 if (!GetElementPtrInst::getIndexedType(BaseType, Indices))
Chris Lattnerdf986172009-01-02 07:01:27 +00004304 return Error(Loc, "invalid getelementptr indices");
Jay Foada9203102011-07-25 09:48:08 +00004305 Inst = GetElementPtrInst::Create(Ptr, Indices);
Dan Gohmandd8004d2009-07-27 21:53:46 +00004306 if (InBounds)
Dan Gohmanf8dbee72009-09-07 23:54:19 +00004307 cast<GetElementPtrInst>(Inst)->setIsInBounds(true);
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004308 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerdf986172009-01-02 07:01:27 +00004309}
4310
4311/// ParseExtractValue
4312/// ::= 'extractvalue' TypeAndValue (',' uint32)+
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004313int LLParser::ParseExtractValue(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00004314 Value *Val; LocTy Loc;
4315 SmallVector<unsigned, 4> Indices;
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004316 bool AteExtraComma;
Chris Lattnerdf986172009-01-02 07:01:27 +00004317 if (ParseTypeAndValue(Val, Loc, PFS) ||
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004318 ParseIndexList(Indices, AteExtraComma))
Chris Lattnerdf986172009-01-02 07:01:27 +00004319 return true;
4320
Chris Lattnerfdfeb692010-02-12 20:49:41 +00004321 if (!Val->getType()->isAggregateType())
4322 return Error(Loc, "extractvalue operand must be aggregate type");
Chris Lattnerdf986172009-01-02 07:01:27 +00004323
Jay Foadfc6d3a42011-07-13 10:26:04 +00004324 if (!ExtractValueInst::getIndexedType(Val->getType(), Indices))
Chris Lattnerdf986172009-01-02 07:01:27 +00004325 return Error(Loc, "invalid indices for extractvalue");
Jay Foadfc6d3a42011-07-13 10:26:04 +00004326 Inst = ExtractValueInst::Create(Val, Indices);
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004327 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerdf986172009-01-02 07:01:27 +00004328}
4329
4330/// ParseInsertValue
4331/// ::= 'insertvalue' TypeAndValue ',' TypeAndValue (',' uint32)+
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004332int LLParser::ParseInsertValue(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00004333 Value *Val0, *Val1; LocTy Loc0, Loc1;
4334 SmallVector<unsigned, 4> Indices;
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004335 bool AteExtraComma;
Chris Lattnerdf986172009-01-02 07:01:27 +00004336 if (ParseTypeAndValue(Val0, Loc0, PFS) ||
4337 ParseToken(lltok::comma, "expected comma after insertvalue operand") ||
4338 ParseTypeAndValue(Val1, Loc1, PFS) ||
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004339 ParseIndexList(Indices, AteExtraComma))
Chris Lattnerdf986172009-01-02 07:01:27 +00004340 return true;
Michael Ilseman407a6162012-11-15 22:34:00 +00004341
Chris Lattnerfdfeb692010-02-12 20:49:41 +00004342 if (!Val0->getType()->isAggregateType())
4343 return Error(Loc0, "insertvalue operand must be aggregate type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00004344
Jay Foadfc6d3a42011-07-13 10:26:04 +00004345 if (!ExtractValueInst::getIndexedType(Val0->getType(), Indices))
Chris Lattnerdf986172009-01-02 07:01:27 +00004346 return Error(Loc0, "invalid indices for insertvalue");
Jay Foadfc6d3a42011-07-13 10:26:04 +00004347 Inst = InsertValueInst::Create(Val0, Val1, Indices);
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004348 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerdf986172009-01-02 07:01:27 +00004349}
Nick Lewycky21cc4462009-04-04 07:22:01 +00004350
4351//===----------------------------------------------------------------------===//
4352// Embedded metadata.
4353//===----------------------------------------------------------------------===//
4354
4355/// ParseMDNodeVector
Nick Lewyckycb337992009-05-10 20:57:05 +00004356/// ::= Element (',' Element)*
4357/// Element
4358/// ::= 'null' | TypeAndValue
Victor Hernandezbf170d42010-01-05 22:22:14 +00004359bool LLParser::ParseMDNodeVector(SmallVectorImpl<Value*> &Elts,
Victor Hernandez24e64df2010-01-10 07:14:18 +00004360 PerFunctionState *PFS) {
Dan Gohmanac809752010-07-13 19:33:27 +00004361 // Check for an empty list.
4362 if (Lex.getKind() == lltok::rbrace)
4363 return false;
4364
Nick Lewycky21cc4462009-04-04 07:22:01 +00004365 do {
Chris Lattnera7352392009-12-30 04:42:57 +00004366 // Null is a special case since it is typeless.
4367 if (EatIfPresent(lltok::kw_null)) {
4368 Elts.push_back(0);
4369 continue;
Nick Lewyckycb337992009-05-10 20:57:05 +00004370 }
Michael Ilseman407a6162012-11-15 22:34:00 +00004371
Chris Lattnera7352392009-12-30 04:42:57 +00004372 Value *V = 0;
Chris Lattner1afcace2011-07-09 17:41:24 +00004373 if (ParseTypeAndValue(V, PFS)) return true;
Nick Lewyckycb337992009-05-10 20:57:05 +00004374 Elts.push_back(V);
Nick Lewycky21cc4462009-04-04 07:22:01 +00004375 } while (EatIfPresent(lltok::comma));
4376
4377 return false;
4378}