blob: 998bca5212ddf0389b1306d756a0fa12b28c82e9 [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.
Jay Foadec9186b2011-04-21 19:59:31 +0000531 MDNode *FwdNode = MDNode::getTemporary(Context, ArrayRef<Value*>());
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;
Bill Wendling143d4642013-02-22 00:12:35 +0000813 LocTy NoBuiltinLoc;
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,
819 NoBuiltinLoc) ||
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,
Bill Wendling143d4642013-02-22 00:12:35 +0000833 bool inAttrGrp, LocTy &NoBuiltinLoc) {
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();
Bill Wendling143d4642013-02-22 00:12:35 +0000840 if (Token == lltok::kw_nobuiltin)
841 NoBuiltinLoc = 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;
912 case lltok::kw_inlinehint: B.addAttribute(Attribute::InlineHint); break;
913 case lltok::kw_minsize: B.addAttribute(Attribute::MinSize); break;
914 case lltok::kw_naked: B.addAttribute(Attribute::Naked); break;
915 case lltok::kw_nobuiltin: B.addAttribute(Attribute::NoBuiltin); break;
916 case lltok::kw_noduplicate: B.addAttribute(Attribute::NoDuplicate); break;
917 case lltok::kw_noimplicitfloat: B.addAttribute(Attribute::NoImplicitFloat); break;
918 case lltok::kw_noinline: B.addAttribute(Attribute::NoInline); break;
919 case lltok::kw_nonlazybind: B.addAttribute(Attribute::NonLazyBind); break;
920 case lltok::kw_noredzone: B.addAttribute(Attribute::NoRedZone); break;
921 case lltok::kw_noreturn: B.addAttribute(Attribute::NoReturn); break;
922 case lltok::kw_nounwind: B.addAttribute(Attribute::NoUnwind); break;
923 case lltok::kw_optsize: B.addAttribute(Attribute::OptimizeForSize); break;
924 case lltok::kw_readnone: B.addAttribute(Attribute::ReadNone); break;
925 case lltok::kw_readonly: B.addAttribute(Attribute::ReadOnly); break;
926 case lltok::kw_returns_twice: B.addAttribute(Attribute::ReturnsTwice); break;
927 case lltok::kw_ssp: B.addAttribute(Attribute::StackProtect); break;
928 case lltok::kw_sspreq: B.addAttribute(Attribute::StackProtectReq); break;
929 case lltok::kw_sspstrong: B.addAttribute(Attribute::StackProtectStrong); break;
930 case lltok::kw_sanitize_address: B.addAttribute(Attribute::SanitizeAddress); break;
931 case lltok::kw_sanitize_thread: B.addAttribute(Attribute::SanitizeThread); break;
932 case lltok::kw_sanitize_memory: B.addAttribute(Attribute::SanitizeMemory); break;
933 case lltok::kw_uwtable: B.addAttribute(Attribute::UWTable); break;
Bill Wendlingea007fa2013-02-08 00:52:31 +0000934
935 // Error handling.
936 case lltok::kw_inreg:
937 case lltok::kw_signext:
938 case lltok::kw_zeroext:
939 HaveError |=
940 Error(Lex.getLoc(),
941 "invalid use of attribute on a function");
942 break;
943 case lltok::kw_byval:
944 case lltok::kw_nest:
945 case lltok::kw_noalias:
946 case lltok::kw_nocapture:
Stephen Lin456ca042013-04-20 05:14:40 +0000947 case lltok::kw_returned:
Bill Wendlingea007fa2013-02-08 00:52:31 +0000948 case lltok::kw_sret:
949 HaveError |=
950 Error(Lex.getLoc(),
951 "invalid use of parameter-only attribute on a function");
952 break;
Bill Wendling95ce4c22013-02-06 06:52:58 +0000953 }
954
955 Lex.Lex();
956 }
957}
Chris Lattnerdf986172009-01-02 07:01:27 +0000958
959//===----------------------------------------------------------------------===//
960// GlobalValue Reference/Resolution Routines.
961//===----------------------------------------------------------------------===//
962
963/// GetGlobalVal - Get a value with the specified name or ID, creating a
964/// forward reference record if needed. This can return null if the value
965/// exists but does not have the right type.
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000966GlobalValue *LLParser::GetGlobalVal(const std::string &Name, Type *Ty,
Chris Lattnerdf986172009-01-02 07:01:27 +0000967 LocTy Loc) {
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000968 PointerType *PTy = dyn_cast<PointerType>(Ty);
Chris Lattnerdf986172009-01-02 07:01:27 +0000969 if (PTy == 0) {
970 Error(Loc, "global variable reference must have pointer type");
971 return 0;
972 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000973
Chris Lattnerdf986172009-01-02 07:01:27 +0000974 // Look this name up in the normal function symbol table.
975 GlobalValue *Val =
976 cast_or_null<GlobalValue>(M->getValueSymbolTable().lookup(Name));
Daniel Dunbara279bc32009-09-20 02:20:51 +0000977
Chris Lattnerdf986172009-01-02 07:01:27 +0000978 // If this is a forward reference for the value, see if we already created a
979 // forward ref record.
980 if (Val == 0) {
981 std::map<std::string, std::pair<GlobalValue*, LocTy> >::iterator
982 I = ForwardRefVals.find(Name);
983 if (I != ForwardRefVals.end())
984 Val = I->second.first;
985 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000986
Chris Lattnerdf986172009-01-02 07:01:27 +0000987 // If we have the value in the symbol table or fwd-ref table, return it.
988 if (Val) {
989 if (Val->getType() == Ty) return Val;
990 Error(Loc, "'@" + Name + "' defined with type '" +
Chris Lattner0cd0d882011-06-18 21:18:23 +0000991 getTypeString(Val->getType()) + "'");
Chris Lattnerdf986172009-01-02 07:01:27 +0000992 return 0;
993 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000994
Chris Lattnerdf986172009-01-02 07:01:27 +0000995 // Otherwise, create a new forward reference for this value and remember it.
996 GlobalValue *FwdVal;
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000997 if (FunctionType *FT = dyn_cast<FunctionType>(PTy->getElementType()))
Duncan Sands5f4ee1f2009-03-11 08:08:06 +0000998 FwdVal = Function::Create(FT, GlobalValue::ExternalWeakLinkage, Name, M);
Chris Lattner1afcace2011-07-09 17:41:24 +0000999 else
Owen Andersone9b11b42009-07-08 19:03:57 +00001000 FwdVal = new GlobalVariable(*M, PTy->getElementType(), false,
Justin Holewinskieaff2d52012-11-16 21:03:47 +00001001 GlobalValue::ExternalWeakLinkage, 0, Name,
1002 0, GlobalVariable::NotThreadLocal,
1003 PTy->getAddressSpace());
Daniel Dunbara279bc32009-09-20 02:20:51 +00001004
Chris Lattnerdf986172009-01-02 07:01:27 +00001005 ForwardRefVals[Name] = std::make_pair(FwdVal, Loc);
1006 return FwdVal;
1007}
1008
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001009GlobalValue *LLParser::GetGlobalVal(unsigned ID, Type *Ty, LocTy Loc) {
1010 PointerType *PTy = dyn_cast<PointerType>(Ty);
Chris Lattnerdf986172009-01-02 07:01:27 +00001011 if (PTy == 0) {
1012 Error(Loc, "global variable reference must have pointer type");
1013 return 0;
1014 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001015
Chris Lattnerdf986172009-01-02 07:01:27 +00001016 GlobalValue *Val = ID < NumberedVals.size() ? NumberedVals[ID] : 0;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001017
Chris Lattnerdf986172009-01-02 07:01:27 +00001018 // If this is a forward reference for the value, see if we already created a
1019 // forward ref record.
1020 if (Val == 0) {
1021 std::map<unsigned, std::pair<GlobalValue*, LocTy> >::iterator
1022 I = ForwardRefValIDs.find(ID);
1023 if (I != ForwardRefValIDs.end())
1024 Val = I->second.first;
1025 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001026
Chris Lattnerdf986172009-01-02 07:01:27 +00001027 // If we have the value in the symbol table or fwd-ref table, return it.
1028 if (Val) {
1029 if (Val->getType() == Ty) return Val;
Benjamin Kramerd1e17032010-09-27 17:42:11 +00001030 Error(Loc, "'@" + Twine(ID) + "' defined with type '" +
Chris Lattner0cd0d882011-06-18 21:18:23 +00001031 getTypeString(Val->getType()) + "'");
Chris Lattnerdf986172009-01-02 07:01:27 +00001032 return 0;
1033 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001034
Chris Lattnerdf986172009-01-02 07:01:27 +00001035 // Otherwise, create a new forward reference for this value and remember it.
1036 GlobalValue *FwdVal;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001037 if (FunctionType *FT = dyn_cast<FunctionType>(PTy->getElementType()))
Duncan Sands5f4ee1f2009-03-11 08:08:06 +00001038 FwdVal = Function::Create(FT, GlobalValue::ExternalWeakLinkage, "", M);
Chris Lattner1afcace2011-07-09 17:41:24 +00001039 else
Owen Andersone9b11b42009-07-08 19:03:57 +00001040 FwdVal = new GlobalVariable(*M, PTy->getElementType(), false,
1041 GlobalValue::ExternalWeakLinkage, 0, "");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001042
Chris Lattnerdf986172009-01-02 07:01:27 +00001043 ForwardRefValIDs[ID] = std::make_pair(FwdVal, Loc);
1044 return FwdVal;
1045}
1046
1047
1048//===----------------------------------------------------------------------===//
1049// Helper Routines.
1050//===----------------------------------------------------------------------===//
1051
1052/// ParseToken - If the current token has the specified kind, eat it and return
1053/// success. Otherwise, emit the specified error and return failure.
1054bool LLParser::ParseToken(lltok::Kind T, const char *ErrMsg) {
1055 if (Lex.getKind() != T)
1056 return TokError(ErrMsg);
1057 Lex.Lex();
1058 return false;
1059}
1060
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001061/// ParseStringConstant
1062/// ::= StringConstant
1063bool LLParser::ParseStringConstant(std::string &Result) {
1064 if (Lex.getKind() != lltok::StringConstant)
1065 return TokError("expected string constant");
1066 Result = Lex.getStrVal();
1067 Lex.Lex();
1068 return false;
1069}
1070
1071/// ParseUInt32
1072/// ::= uint32
1073bool LLParser::ParseUInt32(unsigned &Val) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001074 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned())
1075 return TokError("expected integer");
1076 uint64_t Val64 = Lex.getAPSIntVal().getLimitedValue(0xFFFFFFFFULL+1);
1077 if (Val64 != unsigned(Val64))
1078 return TokError("expected 32-bit integer (too large)");
1079 Val = Val64;
1080 Lex.Lex();
1081 return false;
1082}
1083
Hans Wennborgce718ff2012-06-23 11:37:03 +00001084/// ParseTLSModel
1085/// := 'localdynamic'
1086/// := 'initialexec'
1087/// := 'localexec'
1088bool LLParser::ParseTLSModel(GlobalVariable::ThreadLocalMode &TLM) {
1089 switch (Lex.getKind()) {
1090 default:
1091 return TokError("expected localdynamic, initialexec or localexec");
1092 case lltok::kw_localdynamic:
1093 TLM = GlobalVariable::LocalDynamicTLSModel;
1094 break;
1095 case lltok::kw_initialexec:
1096 TLM = GlobalVariable::InitialExecTLSModel;
1097 break;
1098 case lltok::kw_localexec:
1099 TLM = GlobalVariable::LocalExecTLSModel;
1100 break;
1101 }
1102
1103 Lex.Lex();
1104 return false;
1105}
1106
1107/// ParseOptionalThreadLocal
1108/// := /*empty*/
1109/// := 'thread_local'
1110/// := 'thread_local' '(' tlsmodel ')'
1111bool LLParser::ParseOptionalThreadLocal(GlobalVariable::ThreadLocalMode &TLM) {
1112 TLM = GlobalVariable::NotThreadLocal;
1113 if (!EatIfPresent(lltok::kw_thread_local))
1114 return false;
1115
1116 TLM = GlobalVariable::GeneralDynamicTLSModel;
1117 if (Lex.getKind() == lltok::lparen) {
1118 Lex.Lex();
1119 return ParseTLSModel(TLM) ||
1120 ParseToken(lltok::rparen, "expected ')' after thread local model");
1121 }
1122 return false;
1123}
Chris Lattnerdf986172009-01-02 07:01:27 +00001124
1125/// ParseOptionalAddrSpace
1126/// := /*empty*/
1127/// := 'addrspace' '(' uint32 ')'
1128bool LLParser::ParseOptionalAddrSpace(unsigned &AddrSpace) {
1129 AddrSpace = 0;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001130 if (!EatIfPresent(lltok::kw_addrspace))
Chris Lattnerdf986172009-01-02 07:01:27 +00001131 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00001132 return ParseToken(lltok::lparen, "expected '(' in address space") ||
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001133 ParseUInt32(AddrSpace) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00001134 ParseToken(lltok::rparen, "expected ')' in address space");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001135}
Chris Lattnerdf986172009-01-02 07:01:27 +00001136
Bill Wendlinge01b81b2012-12-04 23:40:58 +00001137/// ParseOptionalParamAttrs - Parse a potentially empty list of parameter attributes.
1138bool LLParser::ParseOptionalParamAttrs(AttrBuilder &B) {
1139 bool HaveError = false;
1140
1141 B.clear();
1142
1143 while (1) {
1144 lltok::Kind Token = Lex.getKind();
1145 switch (Token) {
1146 default: // End of attributes.
1147 return HaveError;
Chris Lattnerdf986172009-01-02 07:01:27 +00001148 case lltok::kw_align: {
1149 unsigned Alignment;
1150 if (ParseOptionalAlignment(Alignment))
1151 return true;
Bill Wendling03272442012-10-08 22:20:14 +00001152 B.addAlignmentAttr(Alignment);
Chris Lattnerdf986172009-01-02 07:01:27 +00001153 continue;
1154 }
Bill Wendling034b94b2012-12-19 07:18:57 +00001155 case lltok::kw_byval: B.addAttribute(Attribute::ByVal); break;
1156 case lltok::kw_inreg: B.addAttribute(Attribute::InReg); break;
1157 case lltok::kw_nest: B.addAttribute(Attribute::Nest); break;
1158 case lltok::kw_noalias: B.addAttribute(Attribute::NoAlias); break;
1159 case lltok::kw_nocapture: B.addAttribute(Attribute::NoCapture); break;
Stephen Lin456ca042013-04-20 05:14:40 +00001160 case lltok::kw_returned: B.addAttribute(Attribute::Returned); break;
Bill Wendling034b94b2012-12-19 07:18:57 +00001161 case lltok::kw_signext: B.addAttribute(Attribute::SExt); break;
1162 case lltok::kw_sret: B.addAttribute(Attribute::StructRet); break;
1163 case lltok::kw_zeroext: B.addAttribute(Attribute::ZExt); break;
Charles Davis1e063d12010-02-12 00:31:15 +00001164
Stephen Linb0aeb3e2013-04-20 13:16:13 +00001165 case lltok::kw_alignstack:
1166 case lltok::kw_alwaysinline:
1167 case lltok::kw_inlinehint:
1168 case lltok::kw_minsize:
1169 case lltok::kw_naked:
1170 case lltok::kw_nobuiltin:
1171 case lltok::kw_noduplicate:
1172 case lltok::kw_noimplicitfloat:
1173 case lltok::kw_noinline:
1174 case lltok::kw_nonlazybind:
1175 case lltok::kw_noredzone:
1176 case lltok::kw_noreturn:
1177 case lltok::kw_nounwind:
1178 case lltok::kw_optsize:
1179 case lltok::kw_readnone:
1180 case lltok::kw_readonly:
1181 case lltok::kw_returns_twice:
1182 case lltok::kw_sanitize_address:
1183 case lltok::kw_sanitize_memory:
1184 case lltok::kw_sanitize_thread:
1185 case lltok::kw_ssp:
1186 case lltok::kw_sspreq:
1187 case lltok::kw_sspstrong:
1188 case lltok::kw_uwtable:
Bill Wendlinge01b81b2012-12-04 23:40:58 +00001189 HaveError |= Error(Lex.getLoc(), "invalid use of function-only attribute");
1190 break;
Chris Lattnerdf986172009-01-02 07:01:27 +00001191 }
Bill Wendlingdc998cc2012-09-28 22:30:18 +00001192
Bill Wendlinge01b81b2012-12-04 23:40:58 +00001193 Lex.Lex();
1194 }
1195}
1196
1197/// ParseOptionalReturnAttrs - Parse a potentially empty list of return attributes.
1198bool LLParser::ParseOptionalReturnAttrs(AttrBuilder &B) {
1199 bool HaveError = false;
1200
1201 B.clear();
1202
1203 while (1) {
1204 lltok::Kind Token = Lex.getKind();
Bill Wendlingdc998cc2012-09-28 22:30:18 +00001205 switch (Token) {
Bill Wendlinge01b81b2012-12-04 23:40:58 +00001206 default: // End of attributes.
1207 return HaveError;
Bill Wendling034b94b2012-12-19 07:18:57 +00001208 case lltok::kw_inreg: B.addAttribute(Attribute::InReg); break;
1209 case lltok::kw_noalias: B.addAttribute(Attribute::NoAlias); break;
1210 case lltok::kw_signext: B.addAttribute(Attribute::SExt); break;
1211 case lltok::kw_zeroext: B.addAttribute(Attribute::ZExt); break;
Bill Wendlingdc998cc2012-09-28 22:30:18 +00001212
Bill Wendlinge01b81b2012-12-04 23:40:58 +00001213 // Error handling.
Stephen Linb0aeb3e2013-04-20 13:16:13 +00001214 case lltok::kw_align:
Chandler Carruth239e1e42013-04-09 19:46:46 +00001215 case lltok::kw_byval:
1216 case lltok::kw_nest:
1217 case lltok::kw_nocapture:
Stephen Lin456ca042013-04-20 05:14:40 +00001218 case lltok::kw_returned:
Chandler Carruth239e1e42013-04-09 19:46:46 +00001219 case lltok::kw_sret:
Bill Wendlinge01b81b2012-12-04 23:40:58 +00001220 HaveError |= Error(Lex.getLoc(), "invalid use of parameter-only attribute");
Bill Wendlingdc998cc2012-09-28 22:30:18 +00001221 break;
James Molloy67ae1352012-12-20 16:04:27 +00001222
Chandler Carruth239e1e42013-04-09 19:46:46 +00001223 case lltok::kw_alignstack:
1224 case lltok::kw_alwaysinline:
1225 case lltok::kw_inlinehint:
1226 case lltok::kw_minsize:
1227 case lltok::kw_naked:
1228 case lltok::kw_nobuiltin:
1229 case lltok::kw_noduplicate:
1230 case lltok::kw_noimplicitfloat:
1231 case lltok::kw_noinline:
1232 case lltok::kw_nonlazybind:
1233 case lltok::kw_noredzone:
1234 case lltok::kw_noreturn:
1235 case lltok::kw_nounwind:
1236 case lltok::kw_optsize:
1237 case lltok::kw_readnone:
1238 case lltok::kw_readonly:
1239 case lltok::kw_returns_twice:
1240 case lltok::kw_sanitize_address:
1241 case lltok::kw_sanitize_memory:
1242 case lltok::kw_sanitize_thread:
1243 case lltok::kw_ssp:
1244 case lltok::kw_sspreq:
1245 case lltok::kw_sspstrong:
1246 case lltok::kw_uwtable:
Bill Wendlinge01b81b2012-12-04 23:40:58 +00001247 HaveError |= Error(Lex.getLoc(), "invalid use of function-only attribute");
Bill Wendlingdc998cc2012-09-28 22:30:18 +00001248 break;
1249 }
1250
Chris Lattnerdf986172009-01-02 07:01:27 +00001251 Lex.Lex();
1252 }
1253}
1254
1255/// ParseOptionalLinkage
1256/// ::= /*empty*/
Rafael Espindolabb46f522009-01-15 20:18:42 +00001257/// ::= 'private'
Bill Wendling3d10a5a2009-07-20 01:03:30 +00001258/// ::= 'linker_private'
Bill Wendling5e721d72010-07-01 21:55:59 +00001259/// ::= 'linker_private_weak'
Chris Lattnerdf986172009-01-02 07:01:27 +00001260/// ::= 'internal'
1261/// ::= 'weak'
Duncan Sands667d4b82009-03-07 15:45:40 +00001262/// ::= 'weak_odr'
Chris Lattnerdf986172009-01-02 07:01:27 +00001263/// ::= 'linkonce'
Duncan Sands667d4b82009-03-07 15:45:40 +00001264/// ::= 'linkonce_odr'
Bill Wendling32811be2012-08-17 18:33:14 +00001265/// ::= 'linkonce_odr_auto_hide'
Bill Wendling5e721d72010-07-01 21:55:59 +00001266/// ::= 'available_externally'
Chris Lattnerdf986172009-01-02 07:01:27 +00001267/// ::= 'appending'
1268/// ::= 'dllexport'
1269/// ::= 'common'
1270/// ::= 'dllimport'
1271/// ::= 'extern_weak'
1272/// ::= 'external'
1273bool LLParser::ParseOptionalLinkage(unsigned &Res, bool &HasLinkage) {
1274 HasLinkage = false;
1275 switch (Lex.getKind()) {
Bill Wendling3d10a5a2009-07-20 01:03:30 +00001276 default: Res=GlobalValue::ExternalLinkage; return false;
1277 case lltok::kw_private: Res = GlobalValue::PrivateLinkage; break;
1278 case lltok::kw_linker_private: Res = GlobalValue::LinkerPrivateLinkage; break;
Bill Wendling5e721d72010-07-01 21:55:59 +00001279 case lltok::kw_linker_private_weak:
1280 Res = GlobalValue::LinkerPrivateWeakLinkage;
1281 break;
Bill Wendling3d10a5a2009-07-20 01:03:30 +00001282 case lltok::kw_internal: Res = GlobalValue::InternalLinkage; break;
1283 case lltok::kw_weak: Res = GlobalValue::WeakAnyLinkage; break;
1284 case lltok::kw_weak_odr: Res = GlobalValue::WeakODRLinkage; break;
1285 case lltok::kw_linkonce: Res = GlobalValue::LinkOnceAnyLinkage; break;
1286 case lltok::kw_linkonce_odr: Res = GlobalValue::LinkOnceODRLinkage; break;
Bill Wendling32811be2012-08-17 18:33:14 +00001287 case lltok::kw_linkonce_odr_auto_hide:
1288 case lltok::kw_linker_private_weak_def_auto: // FIXME: For backwards compat.
1289 Res = GlobalValue::LinkOnceODRAutoHideLinkage;
1290 break;
Chris Lattner266c7bb2009-04-13 05:44:34 +00001291 case lltok::kw_available_externally:
1292 Res = GlobalValue::AvailableExternallyLinkage;
1293 break;
Bill Wendling3d10a5a2009-07-20 01:03:30 +00001294 case lltok::kw_appending: Res = GlobalValue::AppendingLinkage; break;
1295 case lltok::kw_dllexport: Res = GlobalValue::DLLExportLinkage; break;
1296 case lltok::kw_common: Res = GlobalValue::CommonLinkage; break;
1297 case lltok::kw_dllimport: Res = GlobalValue::DLLImportLinkage; break;
1298 case lltok::kw_extern_weak: Res = GlobalValue::ExternalWeakLinkage; break;
1299 case lltok::kw_external: Res = GlobalValue::ExternalLinkage; break;
Chris Lattnerdf986172009-01-02 07:01:27 +00001300 }
1301 Lex.Lex();
1302 HasLinkage = true;
1303 return false;
1304}
1305
1306/// ParseOptionalVisibility
1307/// ::= /*empty*/
1308/// ::= 'default'
1309/// ::= 'hidden'
1310/// ::= 'protected'
Daniel Dunbara279bc32009-09-20 02:20:51 +00001311///
Chris Lattnerdf986172009-01-02 07:01:27 +00001312bool LLParser::ParseOptionalVisibility(unsigned &Res) {
1313 switch (Lex.getKind()) {
1314 default: Res = GlobalValue::DefaultVisibility; return false;
1315 case lltok::kw_default: Res = GlobalValue::DefaultVisibility; break;
1316 case lltok::kw_hidden: Res = GlobalValue::HiddenVisibility; break;
1317 case lltok::kw_protected: Res = GlobalValue::ProtectedVisibility; break;
1318 }
1319 Lex.Lex();
1320 return false;
1321}
1322
1323/// ParseOptionalCallingConv
1324/// ::= /*empty*/
1325/// ::= 'ccc'
1326/// ::= 'fastcc'
Elena Demikhovsky35752222012-10-24 14:46:16 +00001327/// ::= 'kw_intel_ocl_bicc'
Chris Lattnerdf986172009-01-02 07:01:27 +00001328/// ::= 'coldcc'
1329/// ::= 'x86_stdcallcc'
1330/// ::= 'x86_fastcallcc'
Anton Korobeynikovded05e32010-05-16 09:08:45 +00001331/// ::= 'x86_thiscallcc'
Anton Korobeynikov385f5a92009-06-16 18:50:49 +00001332/// ::= 'arm_apcscc'
1333/// ::= 'arm_aapcscc'
1334/// ::= 'arm_aapcs_vfpcc'
Anton Korobeynikov211a14e2009-12-07 02:27:35 +00001335/// ::= 'msp430_intrcc'
Che-Liang Chiouf9930da2010-09-25 07:46:17 +00001336/// ::= 'ptx_kernel'
1337/// ::= 'ptx_device'
Micah Villmowe53d6052012-10-01 17:01:31 +00001338/// ::= 'spir_func'
1339/// ::= 'spir_kernel'
Chris Lattnerdf986172009-01-02 07:01:27 +00001340/// ::= 'cc' UINT
Anton Korobeynikov385f5a92009-06-16 18:50:49 +00001341///
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001342bool LLParser::ParseOptionalCallingConv(CallingConv::ID &CC) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001343 switch (Lex.getKind()) {
1344 default: CC = CallingConv::C; return false;
1345 case lltok::kw_ccc: CC = CallingConv::C; break;
1346 case lltok::kw_fastcc: CC = CallingConv::Fast; break;
1347 case lltok::kw_coldcc: CC = CallingConv::Cold; break;
1348 case lltok::kw_x86_stdcallcc: CC = CallingConv::X86_StdCall; break;
1349 case lltok::kw_x86_fastcallcc: CC = CallingConv::X86_FastCall; break;
Anton Korobeynikovded05e32010-05-16 09:08:45 +00001350 case lltok::kw_x86_thiscallcc: CC = CallingConv::X86_ThisCall; break;
Anton Korobeynikov385f5a92009-06-16 18:50:49 +00001351 case lltok::kw_arm_apcscc: CC = CallingConv::ARM_APCS; break;
1352 case lltok::kw_arm_aapcscc: CC = CallingConv::ARM_AAPCS; break;
1353 case lltok::kw_arm_aapcs_vfpcc:CC = CallingConv::ARM_AAPCS_VFP; break;
Anton Korobeynikov211a14e2009-12-07 02:27:35 +00001354 case lltok::kw_msp430_intrcc: CC = CallingConv::MSP430_INTR; break;
Che-Liang Chiouf9930da2010-09-25 07:46:17 +00001355 case lltok::kw_ptx_kernel: CC = CallingConv::PTX_Kernel; break;
1356 case lltok::kw_ptx_device: CC = CallingConv::PTX_Device; break;
Micah Villmowe53d6052012-10-01 17:01:31 +00001357 case lltok::kw_spir_kernel: CC = CallingConv::SPIR_KERNEL; break;
1358 case lltok::kw_spir_func: CC = CallingConv::SPIR_FUNC; break;
Elena Demikhovsky35752222012-10-24 14:46:16 +00001359 case lltok::kw_intel_ocl_bicc: CC = CallingConv::Intel_OCL_BI; break;
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001360 case lltok::kw_cc: {
1361 unsigned ArbitraryCC;
1362 Lex.Lex();
David Blaikie4d6ccb52012-01-20 21:51:11 +00001363 if (ParseUInt32(ArbitraryCC))
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001364 return true;
David Blaikie4d6ccb52012-01-20 21:51:11 +00001365 CC = static_cast<CallingConv::ID>(ArbitraryCC);
1366 return false;
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001367 }
Chris Lattnerdf986172009-01-02 07:01:27 +00001368 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001369
Chris Lattnerdf986172009-01-02 07:01:27 +00001370 Lex.Lex();
1371 return false;
1372}
1373
Chris Lattnerb8c46862009-12-30 05:31:19 +00001374/// ParseInstructionMetadata
Chris Lattner3f3a0f62009-12-29 21:25:40 +00001375/// ::= !dbg !42 (',' !dbg !57)*
Dan Gohman9d072f52010-08-24 02:05:17 +00001376bool LLParser::ParseInstructionMetadata(Instruction *Inst,
1377 PerFunctionState *PFS) {
Chris Lattnerb8c46862009-12-30 05:31:19 +00001378 do {
1379 if (Lex.getKind() != lltok::MetadataVar)
1380 return TokError("expected metadata after comma");
Devang Patel0475c912009-09-29 00:01:14 +00001381
Chris Lattner3f3a0f62009-12-29 21:25:40 +00001382 std::string Name = Lex.getStrVal();
Benjamin Kramer85dadec2011-12-06 11:50:26 +00001383 unsigned MDK = M->getMDKindID(Name);
Chris Lattner3f3a0f62009-12-29 21:25:40 +00001384 Lex.Lex();
Chris Lattner52e20312009-10-19 05:31:10 +00001385
Chris Lattner442ffa12009-12-29 21:53:55 +00001386 MDNode *Node;
Chris Lattner449c3102010-04-01 05:14:45 +00001387 SMLoc Loc = Lex.getLoc();
Dan Gohman309b3af2010-08-24 02:24:03 +00001388
1389 if (ParseToken(lltok::exclaim, "expected '!' here"))
Chris Lattnere434d272009-12-30 04:56:59 +00001390 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001391
Dan Gohman68261142010-08-24 14:35:45 +00001392 // This code is similar to that of ParseMetadataValue, however it needs to
1393 // have special-case code for a forward reference; see the comments on
1394 // ForwardRefInstMetadata for details. Also, MDStrings are not supported
1395 // at the top level here.
Dan Gohman309b3af2010-08-24 02:24:03 +00001396 if (Lex.getKind() == lltok::lbrace) {
1397 ValID ID;
1398 if (ParseMetadataListValue(ID, PFS))
1399 return true;
1400 assert(ID.Kind == ValID::t_MDNode);
1401 Inst->setMetadata(MDK, ID.MDNodeVal);
Chris Lattner449c3102010-04-01 05:14:45 +00001402 } else {
Nick Lewyckyc6877b42010-09-30 21:04:13 +00001403 unsigned NodeID = 0;
Dan Gohman309b3af2010-08-24 02:24:03 +00001404 if (ParseMDNodeID(Node, NodeID))
1405 return true;
1406 if (Node) {
1407 // If we got the node, add it to the instruction.
1408 Inst->setMetadata(MDK, Node);
1409 } else {
1410 MDRef R = { Loc, MDK, NodeID };
1411 // Otherwise, remember that this should be resolved later.
1412 ForwardRefInstMetadata[Inst].push_back(R);
1413 }
Chris Lattner449c3102010-04-01 05:14:45 +00001414 }
Chris Lattner3f3a0f62009-12-29 21:25:40 +00001415
1416 // If this is the end of the list, we're done.
Chris Lattnerb8c46862009-12-30 05:31:19 +00001417 } while (EatIfPresent(lltok::comma));
1418 return false;
Devang Patelf633a062009-09-17 23:04:48 +00001419}
1420
Chris Lattnerdf986172009-01-02 07:01:27 +00001421/// ParseOptionalAlignment
1422/// ::= /* empty */
1423/// ::= 'align' 4
1424bool LLParser::ParseOptionalAlignment(unsigned &Alignment) {
1425 Alignment = 0;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001426 if (!EatIfPresent(lltok::kw_align))
1427 return false;
Chris Lattner3fbb3ab2009-01-05 07:46:05 +00001428 LocTy AlignLoc = Lex.getLoc();
1429 if (ParseUInt32(Alignment)) return true;
1430 if (!isPowerOf2_32(Alignment))
1431 return Error(AlignLoc, "alignment is not a power of two");
Dan Gohmane16829b2010-07-30 21:07:05 +00001432 if (Alignment > Value::MaximumAlignment)
Dan Gohman138aa2a2010-07-28 20:12:04 +00001433 return Error(AlignLoc, "huge alignments are not supported yet");
Chris Lattner3fbb3ab2009-01-05 07:46:05 +00001434 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00001435}
1436
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00001437/// ParseOptionalCommaAlign
Michael Ilseman407a6162012-11-15 22:34:00 +00001438/// ::=
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00001439/// ::= ',' align 4
1440///
1441/// This returns with AteExtraComma set to true if it ate an excess comma at the
1442/// end.
1443bool LLParser::ParseOptionalCommaAlign(unsigned &Alignment,
1444 bool &AteExtraComma) {
1445 AteExtraComma = false;
1446 while (EatIfPresent(lltok::comma)) {
1447 // Metadata at the end is an early exit.
Chris Lattner1d928312009-12-30 05:02:06 +00001448 if (Lex.getKind() == lltok::MetadataVar) {
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00001449 AteExtraComma = true;
1450 return false;
1451 }
Michael Ilseman407a6162012-11-15 22:34:00 +00001452
Chris Lattner093eed12010-04-23 00:50:50 +00001453 if (Lex.getKind() != lltok::kw_align)
1454 return Error(Lex.getLoc(), "expected metadata or 'align'");
Duncan Sandsbf9fc532010-10-21 16:07:10 +00001455
Chris Lattner093eed12010-04-23 00:50:50 +00001456 if (ParseOptionalAlignment(Alignment)) return true;
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00001457 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001458
Devang Patelf633a062009-09-17 23:04:48 +00001459 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00001460}
1461
Eli Friedman47f35132011-07-25 23:16:38 +00001462/// ParseScopeAndOrdering
1463/// if isAtomic: ::= 'singlethread'? AtomicOrdering
1464/// else: ::=
1465///
1466/// This sets Scope and Ordering to the parsed values.
1467bool LLParser::ParseScopeAndOrdering(bool isAtomic, SynchronizationScope &Scope,
1468 AtomicOrdering &Ordering) {
1469 if (!isAtomic)
1470 return false;
1471
1472 Scope = CrossThread;
1473 if (EatIfPresent(lltok::kw_singlethread))
1474 Scope = SingleThread;
1475 switch (Lex.getKind()) {
1476 default: return TokError("Expected ordering on atomic instruction");
1477 case lltok::kw_unordered: Ordering = Unordered; break;
1478 case lltok::kw_monotonic: Ordering = Monotonic; break;
1479 case lltok::kw_acquire: Ordering = Acquire; break;
1480 case lltok::kw_release: Ordering = Release; break;
1481 case lltok::kw_acq_rel: Ordering = AcquireRelease; break;
1482 case lltok::kw_seq_cst: Ordering = SequentiallyConsistent; break;
1483 }
1484 Lex.Lex();
1485 return false;
1486}
1487
Charles Davis1e063d12010-02-12 00:31:15 +00001488/// ParseOptionalStackAlignment
1489/// ::= /* empty */
1490/// ::= 'alignstack' '(' 4 ')'
1491bool LLParser::ParseOptionalStackAlignment(unsigned &Alignment) {
1492 Alignment = 0;
1493 if (!EatIfPresent(lltok::kw_alignstack))
1494 return false;
1495 LocTy ParenLoc = Lex.getLoc();
1496 if (!EatIfPresent(lltok::lparen))
1497 return Error(ParenLoc, "expected '('");
1498 LocTy AlignLoc = Lex.getLoc();
1499 if (ParseUInt32(Alignment)) return true;
1500 ParenLoc = Lex.getLoc();
1501 if (!EatIfPresent(lltok::rparen))
1502 return Error(ParenLoc, "expected ')'");
1503 if (!isPowerOf2_32(Alignment))
1504 return Error(AlignLoc, "stack alignment is not a power of two");
1505 return false;
1506}
Devang Patelf633a062009-09-17 23:04:48 +00001507
Chris Lattner628c13a2009-12-30 05:14:00 +00001508/// ParseIndexList - This parses the index list for an insert/extractvalue
1509/// instruction. This sets AteExtraComma in the case where we eat an extra
1510/// comma at the end of the line and find that it is followed by metadata.
1511/// Clients that don't allow metadata can call the version of this function that
1512/// only takes one argument.
1513///
Chris Lattnerdf986172009-01-02 07:01:27 +00001514/// ParseIndexList
1515/// ::= (',' uint32)+
Chris Lattner628c13a2009-12-30 05:14:00 +00001516///
1517bool LLParser::ParseIndexList(SmallVectorImpl<unsigned> &Indices,
1518 bool &AteExtraComma) {
1519 AteExtraComma = false;
Michael Ilseman407a6162012-11-15 22:34:00 +00001520
Chris Lattnerdf986172009-01-02 07:01:27 +00001521 if (Lex.getKind() != lltok::comma)
1522 return TokError("expected ',' as start of index list");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001523
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001524 while (EatIfPresent(lltok::comma)) {
Chris Lattner628c13a2009-12-30 05:14:00 +00001525 if (Lex.getKind() == lltok::MetadataVar) {
1526 AteExtraComma = true;
1527 return false;
1528 }
Nick Lewycky28815c42010-09-29 23:32:20 +00001529 unsigned Idx = 0;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001530 if (ParseUInt32(Idx)) return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00001531 Indices.push_back(Idx);
1532 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001533
Chris Lattnerdf986172009-01-02 07:01:27 +00001534 return false;
1535}
1536
1537//===----------------------------------------------------------------------===//
1538// Type Parsing.
1539//===----------------------------------------------------------------------===//
1540
Chris Lattner1afcace2011-07-09 17:41:24 +00001541/// ParseType - Parse a type.
1542bool LLParser::ParseType(Type *&Result, bool AllowVoid) {
1543 SMLoc TypeLoc = Lex.getLoc();
Chris Lattnerdf986172009-01-02 07:01:27 +00001544 switch (Lex.getKind()) {
1545 default:
1546 return TokError("expected type");
1547 case lltok::Type:
Chris Lattner1afcace2011-07-09 17:41:24 +00001548 // Type ::= 'float' | 'void' (etc)
Chris Lattnerdf986172009-01-02 07:01:27 +00001549 Result = Lex.getTyVal();
Daniel Dunbara279bc32009-09-20 02:20:51 +00001550 Lex.Lex();
Chris Lattnerdf986172009-01-02 07:01:27 +00001551 break;
Chris Lattnerdf986172009-01-02 07:01:27 +00001552 case lltok::lbrace:
Chris Lattner1afcace2011-07-09 17:41:24 +00001553 // Type ::= StructType
1554 if (ParseAnonStructType(Result, false))
Chris Lattnerdf986172009-01-02 07:01:27 +00001555 return true;
1556 break;
1557 case lltok::lsquare:
Chris Lattner1afcace2011-07-09 17:41:24 +00001558 // Type ::= '[' ... ']'
Chris Lattnerdf986172009-01-02 07:01:27 +00001559 Lex.Lex(); // eat the lsquare.
1560 if (ParseArrayVectorType(Result, false))
1561 return true;
1562 break;
1563 case lltok::less: // Either vector or packed struct.
Chris Lattner1afcace2011-07-09 17:41:24 +00001564 // Type ::= '<' ... '>'
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001565 Lex.Lex();
1566 if (Lex.getKind() == lltok::lbrace) {
Chris Lattner1afcace2011-07-09 17:41:24 +00001567 if (ParseAnonStructType(Result, true) ||
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001568 ParseToken(lltok::greater, "expected '>' at end of packed struct"))
Chris Lattnerdf986172009-01-02 07:01:27 +00001569 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00001570 } else if (ParseArrayVectorType(Result, true))
1571 return true;
1572 break;
Chris Lattner1afcace2011-07-09 17:41:24 +00001573 case lltok::LocalVar: {
1574 // Type ::= %foo
1575 std::pair<Type*, LocTy> &Entry = NamedTypes[Lex.getStrVal()];
Michael Ilseman407a6162012-11-15 22:34:00 +00001576
Chris Lattner1afcace2011-07-09 17:41:24 +00001577 // If the type hasn't been defined yet, create a forward definition and
1578 // remember where that forward def'n was seen (in case it never is defined).
1579 if (Entry.first == 0) {
Chris Lattner3ebb6492011-08-12 18:06:37 +00001580 Entry.first = StructType::create(Context, Lex.getStrVal());
Chris Lattner1afcace2011-07-09 17:41:24 +00001581 Entry.second = Lex.getLoc();
Chris Lattnerdf986172009-01-02 07:01:27 +00001582 }
Chris Lattner1afcace2011-07-09 17:41:24 +00001583 Result = Entry.first;
Chris Lattnerdf986172009-01-02 07:01:27 +00001584 Lex.Lex();
1585 break;
Chris Lattner1afcace2011-07-09 17:41:24 +00001586 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001587
Chris Lattner1afcace2011-07-09 17:41:24 +00001588 case lltok::LocalVarID: {
1589 // Type ::= %4
1590 if (Lex.getUIntVal() >= NumberedTypes.size())
1591 NumberedTypes.resize(Lex.getUIntVal()+1);
1592 std::pair<Type*, LocTy> &Entry = NumberedTypes[Lex.getUIntVal()];
Michael Ilseman407a6162012-11-15 22:34:00 +00001593
Chris Lattner1afcace2011-07-09 17:41:24 +00001594 // If the type hasn't been defined yet, create a forward definition and
1595 // remember where that forward def'n was seen (in case it never is defined).
1596 if (Entry.first == 0) {
Chris Lattner3ebb6492011-08-12 18:06:37 +00001597 Entry.first = StructType::create(Context);
Chris Lattner1afcace2011-07-09 17:41:24 +00001598 Entry.second = Lex.getLoc();
Chris Lattnerdf986172009-01-02 07:01:27 +00001599 }
Chris Lattner1afcace2011-07-09 17:41:24 +00001600 Result = Entry.first;
Chris Lattnerdf986172009-01-02 07:01:27 +00001601 Lex.Lex();
1602 break;
Chris Lattnerdf986172009-01-02 07:01:27 +00001603 }
1604 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001605
1606 // Parse the type suffixes.
Chris Lattnerdf986172009-01-02 07:01:27 +00001607 while (1) {
1608 switch (Lex.getKind()) {
1609 // End of type.
Chris Lattner1afcace2011-07-09 17:41:24 +00001610 default:
1611 if (!AllowVoid && Result->isVoidTy())
1612 return Error(TypeLoc, "void type only allowed for function results");
1613 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00001614
Chris Lattner1afcace2011-07-09 17:41:24 +00001615 // Type ::= Type '*'
Chris Lattnerdf986172009-01-02 07:01:27 +00001616 case lltok::star:
Chris Lattner1afcace2011-07-09 17:41:24 +00001617 if (Result->isLabelTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00001618 return TokError("basic block pointers are invalid");
Chris Lattner1afcace2011-07-09 17:41:24 +00001619 if (Result->isVoidTy())
1620 return TokError("pointers to void are invalid - use i8* instead");
1621 if (!PointerType::isValidElementType(Result))
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001622 return TokError("pointer to this type is invalid");
Chris Lattner1afcace2011-07-09 17:41:24 +00001623 Result = PointerType::getUnqual(Result);
Chris Lattnerdf986172009-01-02 07:01:27 +00001624 Lex.Lex();
1625 break;
1626
Chris Lattner1afcace2011-07-09 17:41:24 +00001627 // Type ::= Type 'addrspace' '(' uint32 ')' '*'
Chris Lattnerdf986172009-01-02 07:01:27 +00001628 case lltok::kw_addrspace: {
Chris Lattner1afcace2011-07-09 17:41:24 +00001629 if (Result->isLabelTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00001630 return TokError("basic block pointers are invalid");
Chris Lattner1afcace2011-07-09 17:41:24 +00001631 if (Result->isVoidTy())
Dan Gohmanb9070d32009-02-09 17:41:21 +00001632 return TokError("pointers to void are invalid; use i8* instead");
Chris Lattner1afcace2011-07-09 17:41:24 +00001633 if (!PointerType::isValidElementType(Result))
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001634 return TokError("pointer to this type is invalid");
Chris Lattnerdf986172009-01-02 07:01:27 +00001635 unsigned AddrSpace;
1636 if (ParseOptionalAddrSpace(AddrSpace) ||
1637 ParseToken(lltok::star, "expected '*' in address space"))
1638 return true;
1639
Chris Lattner1afcace2011-07-09 17:41:24 +00001640 Result = PointerType::get(Result, AddrSpace);
Chris Lattnerdf986172009-01-02 07:01:27 +00001641 break;
1642 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001643
Chris Lattnerdf986172009-01-02 07:01:27 +00001644 /// Types '(' ArgTypeListI ')' OptFuncAttrs
1645 case lltok::lparen:
1646 if (ParseFunctionType(Result))
1647 return true;
1648 break;
1649 }
1650 }
1651}
1652
1653/// ParseParameterList
1654/// ::= '(' ')'
1655/// ::= '(' Arg (',' Arg)* ')'
1656/// Arg
1657/// ::= Type OptionalAttributes Value OptionalAttributes
1658bool LLParser::ParseParameterList(SmallVectorImpl<ParamInfo> &ArgList,
1659 PerFunctionState &PFS) {
1660 if (ParseToken(lltok::lparen, "expected '(' in call"))
1661 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001662
Bill Wendling73dee182013-01-31 00:29:54 +00001663 unsigned AttrIndex = 1;
Chris Lattnerdf986172009-01-02 07:01:27 +00001664 while (Lex.getKind() != lltok::rparen) {
1665 // If this isn't the first argument, we need a comma.
1666 if (!ArgList.empty() &&
1667 ParseToken(lltok::comma, "expected ',' in argument list"))
1668 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001669
Chris Lattnerdf986172009-01-02 07:01:27 +00001670 // Parse the argument.
1671 LocTy ArgLoc;
Chris Lattner1afcace2011-07-09 17:41:24 +00001672 Type *ArgTy = 0;
Bill Wendling702cc912012-10-15 20:35:56 +00001673 AttrBuilder ArgAttrs;
Chris Lattnerdf986172009-01-02 07:01:27 +00001674 Value *V;
Victor Hernandez19715562009-12-03 23:40:58 +00001675 if (ParseType(ArgTy, ArgLoc))
Chris Lattnerdf986172009-01-02 07:01:27 +00001676 return true;
Victor Hernandez19715562009-12-03 23:40:58 +00001677
Chris Lattner287881d2009-12-30 02:11:14 +00001678 // Otherwise, handle normal operands.
Bill Wendlinge01b81b2012-12-04 23:40:58 +00001679 if (ParseOptionalParamAttrs(ArgAttrs) || ParseValue(ArgTy, V, PFS))
Chris Lattner287881d2009-12-30 02:11:14 +00001680 return true;
Bill Wendling73dee182013-01-31 00:29:54 +00001681 ArgList.push_back(ParamInfo(ArgLoc, V, AttributeSet::get(V->getContext(),
1682 AttrIndex++,
1683 ArgAttrs)));
Chris Lattnerdf986172009-01-02 07:01:27 +00001684 }
1685
1686 Lex.Lex(); // Lex the ')'.
1687 return false;
1688}
1689
1690
1691
Chris Lattnerdfd19dd2009-01-05 18:34:07 +00001692/// ParseArgumentList - Parse the argument list for a function type or function
Chris Lattner1afcace2011-07-09 17:41:24 +00001693/// prototype.
Chris Lattnerdf986172009-01-02 07:01:27 +00001694/// ::= '(' ArgTypeListI ')'
1695/// ArgTypeListI
1696/// ::= /*empty*/
1697/// ::= '...'
1698/// ::= ArgTypeList ',' '...'
1699/// ::= ArgType (',' ArgType)*
Chris Lattnerdfd19dd2009-01-05 18:34:07 +00001700///
Chris Lattner1afcace2011-07-09 17:41:24 +00001701bool LLParser::ParseArgumentList(SmallVectorImpl<ArgInfo> &ArgList,
1702 bool &isVarArg){
Chris Lattnerdf986172009-01-02 07:01:27 +00001703 isVarArg = false;
1704 assert(Lex.getKind() == lltok::lparen);
1705 Lex.Lex(); // eat the (.
Daniel Dunbara279bc32009-09-20 02:20:51 +00001706
Chris Lattnerdf986172009-01-02 07:01:27 +00001707 if (Lex.getKind() == lltok::rparen) {
1708 // empty
1709 } else if (Lex.getKind() == lltok::dotdotdot) {
1710 isVarArg = true;
1711 Lex.Lex();
1712 } else {
1713 LocTy TypeLoc = Lex.getLoc();
Chris Lattner1afcace2011-07-09 17:41:24 +00001714 Type *ArgTy = 0;
Bill Wendling702cc912012-10-15 20:35:56 +00001715 AttrBuilder Attrs;
Chris Lattnerdf986172009-01-02 07:01:27 +00001716 std::string Name;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001717
Chris Lattner1afcace2011-07-09 17:41:24 +00001718 if (ParseType(ArgTy) ||
Bill Wendlinge01b81b2012-12-04 23:40:58 +00001719 ParseOptionalParamAttrs(Attrs)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001720
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001721 if (ArgTy->isVoidTy())
Chris Lattnera9a9e072009-03-09 04:49:14 +00001722 return Error(TypeLoc, "argument can not have void type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001723
Chris Lattner7a1b9bd2011-06-17 06:36:20 +00001724 if (Lex.getKind() == lltok::LocalVar) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001725 Name = Lex.getStrVal();
1726 Lex.Lex();
1727 }
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001728
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001729 if (!FunctionType::isValidArgumentType(ArgTy))
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001730 return Error(TypeLoc, "invalid type for function argument");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001731
Bill Wendling73dee182013-01-31 00:29:54 +00001732 unsigned AttrIndex = 1;
Bill Wendlingcb3de0b2012-10-15 04:46:55 +00001733 ArgList.push_back(ArgInfo(TypeLoc, ArgTy,
Bill Wendling73dee182013-01-31 00:29:54 +00001734 AttributeSet::get(ArgTy->getContext(),
1735 AttrIndex++, Attrs), Name));
Daniel Dunbara279bc32009-09-20 02:20:51 +00001736
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001737 while (EatIfPresent(lltok::comma)) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001738 // Handle ... at end of arg list.
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001739 if (EatIfPresent(lltok::dotdotdot)) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001740 isVarArg = true;
Chris Lattnerdf986172009-01-02 07:01:27 +00001741 break;
1742 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001743
Chris Lattnerdf986172009-01-02 07:01:27 +00001744 // Otherwise must be an argument type.
1745 TypeLoc = Lex.getLoc();
Bill Wendlinge01b81b2012-12-04 23:40:58 +00001746 if (ParseType(ArgTy) || ParseOptionalParamAttrs(Attrs)) return true;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001747
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001748 if (ArgTy->isVoidTy())
Chris Lattnera9a9e072009-03-09 04:49:14 +00001749 return Error(TypeLoc, "argument can not have void type");
1750
Chris Lattner7a1b9bd2011-06-17 06:36:20 +00001751 if (Lex.getKind() == lltok::LocalVar) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001752 Name = Lex.getStrVal();
1753 Lex.Lex();
1754 } else {
1755 Name = "";
1756 }
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001757
Chris Lattner1afcace2011-07-09 17:41:24 +00001758 if (!ArgTy->isFirstClassType())
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001759 return Error(TypeLoc, "invalid type for function argument");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001760
Bill Wendlingcb3de0b2012-10-15 04:46:55 +00001761 ArgList.push_back(ArgInfo(TypeLoc, ArgTy,
Bill Wendling73dee182013-01-31 00:29:54 +00001762 AttributeSet::get(ArgTy->getContext(),
1763 AttrIndex++, Attrs),
Bill Wendlingcb3de0b2012-10-15 04:46:55 +00001764 Name));
Chris Lattnerdf986172009-01-02 07:01:27 +00001765 }
1766 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001767
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001768 return ParseToken(lltok::rparen, "expected ')' at end of argument list");
Chris Lattnerdf986172009-01-02 07:01:27 +00001769}
Daniel Dunbara279bc32009-09-20 02:20:51 +00001770
Chris Lattnerdf986172009-01-02 07:01:27 +00001771/// ParseFunctionType
1772/// ::= Type ArgumentList OptionalAttrs
Chris Lattner1afcace2011-07-09 17:41:24 +00001773bool LLParser::ParseFunctionType(Type *&Result) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001774 assert(Lex.getKind() == lltok::lparen);
1775
Chris Lattnerd77d04c2009-01-05 08:04:33 +00001776 if (!FunctionType::isValidReturnType(Result))
1777 return TokError("invalid function return type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001778
Chris Lattner1afcace2011-07-09 17:41:24 +00001779 SmallVector<ArgInfo, 8> ArgList;
Chris Lattnerdf986172009-01-02 07:01:27 +00001780 bool isVarArg;
Chris Lattner1afcace2011-07-09 17:41:24 +00001781 if (ParseArgumentList(ArgList, isVarArg))
Chris Lattnerdf986172009-01-02 07:01:27 +00001782 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001783
Chris Lattnerdf986172009-01-02 07:01:27 +00001784 // Reject names on the arguments lists.
1785 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
1786 if (!ArgList[i].Name.empty())
1787 return Error(ArgList[i].Loc, "argument name invalid in function type");
Bill Wendling73dee182013-01-31 00:29:54 +00001788 if (ArgList[i].Attrs.hasAttributes(i + 1))
Chris Lattnera16546a2011-06-17 17:37:13 +00001789 return Error(ArgList[i].Loc,
1790 "argument attributes invalid in function type");
Chris Lattnerdf986172009-01-02 07:01:27 +00001791 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001792
Jay Foad5fdd6c82011-07-12 14:06:48 +00001793 SmallVector<Type*, 16> ArgListTy;
Chris Lattnerdf986172009-01-02 07:01:27 +00001794 for (unsigned i = 0, e = ArgList.size(); i != e; ++i)
Chris Lattner1afcace2011-07-09 17:41:24 +00001795 ArgListTy.push_back(ArgList[i].Ty);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001796
Chris Lattner1afcace2011-07-09 17:41:24 +00001797 Result = FunctionType::get(Result, ArgListTy, isVarArg);
Chris Lattnerdf986172009-01-02 07:01:27 +00001798 return false;
1799}
1800
Chris Lattner1afcace2011-07-09 17:41:24 +00001801/// ParseAnonStructType - Parse an anonymous struct type, which is inlined into
1802/// other structs.
1803bool LLParser::ParseAnonStructType(Type *&Result, bool Packed) {
1804 SmallVector<Type*, 8> Elts;
1805 if (ParseStructBody(Elts)) return true;
Michael Ilseman407a6162012-11-15 22:34:00 +00001806
Chris Lattner1afcace2011-07-09 17:41:24 +00001807 Result = StructType::get(Context, Elts, Packed);
1808 return false;
1809}
1810
1811/// ParseStructDefinition - Parse a struct in a 'type' definition.
1812bool LLParser::ParseStructDefinition(SMLoc TypeLoc, StringRef Name,
1813 std::pair<Type*, LocTy> &Entry,
1814 Type *&ResultTy) {
1815 // If the type was already defined, diagnose the redefinition.
1816 if (Entry.first && !Entry.second.isValid())
1817 return Error(TypeLoc, "redefinition of type");
Michael Ilseman407a6162012-11-15 22:34:00 +00001818
Chris Lattner1afcace2011-07-09 17:41:24 +00001819 // If we have opaque, just return without filling in the definition for the
1820 // struct. This counts as a definition as far as the .ll file goes.
1821 if (EatIfPresent(lltok::kw_opaque)) {
1822 // This type is being defined, so clear the location to indicate this.
1823 Entry.second = SMLoc();
Michael Ilseman407a6162012-11-15 22:34:00 +00001824
Chris Lattner1afcace2011-07-09 17:41:24 +00001825 // If this type number has never been uttered, create it.
1826 if (Entry.first == 0)
Chris Lattner3ebb6492011-08-12 18:06:37 +00001827 Entry.first = StructType::create(Context, Name);
Chris Lattner1afcace2011-07-09 17:41:24 +00001828 ResultTy = Entry.first;
1829 return false;
1830 }
Michael Ilseman407a6162012-11-15 22:34:00 +00001831
Chris Lattner1afcace2011-07-09 17:41:24 +00001832 // If the type starts with '<', then it is either a packed struct or a vector.
1833 bool isPacked = EatIfPresent(lltok::less);
1834
1835 // If we don't have a struct, then we have a random type alias, which we
1836 // accept for compatibility with old files. These types are not allowed to be
1837 // forward referenced and not allowed to be recursive.
1838 if (Lex.getKind() != lltok::lbrace) {
1839 if (Entry.first)
1840 return Error(TypeLoc, "forward references to non-struct type");
Michael Ilseman407a6162012-11-15 22:34:00 +00001841
Chris Lattner1afcace2011-07-09 17:41:24 +00001842 ResultTy = 0;
1843 if (isPacked)
1844 return ParseArrayVectorType(ResultTy, true);
1845 return ParseType(ResultTy);
1846 }
Michael Ilseman407a6162012-11-15 22:34:00 +00001847
Chris Lattner1afcace2011-07-09 17:41:24 +00001848 // This type is being defined, so clear the location to indicate this.
1849 Entry.second = SMLoc();
Michael Ilseman407a6162012-11-15 22:34:00 +00001850
Chris Lattner1afcace2011-07-09 17:41:24 +00001851 // If this type number has never been uttered, create it.
1852 if (Entry.first == 0)
Chris Lattner3ebb6492011-08-12 18:06:37 +00001853 Entry.first = StructType::create(Context, Name);
Michael Ilseman407a6162012-11-15 22:34:00 +00001854
Chris Lattner1afcace2011-07-09 17:41:24 +00001855 StructType *STy = cast<StructType>(Entry.first);
Michael Ilseman407a6162012-11-15 22:34:00 +00001856
Chris Lattner1afcace2011-07-09 17:41:24 +00001857 SmallVector<Type*, 8> Body;
1858 if (ParseStructBody(Body) ||
1859 (isPacked && ParseToken(lltok::greater, "expected '>' in packed struct")))
1860 return true;
Michael Ilseman407a6162012-11-15 22:34:00 +00001861
Chris Lattner1afcace2011-07-09 17:41:24 +00001862 STy->setBody(Body, isPacked);
1863 ResultTy = STy;
1864 return false;
1865}
1866
1867
Chris Lattnerdf986172009-01-02 07:01:27 +00001868/// ParseStructType: Handles packed and unpacked types. </> parsed elsewhere.
Chris Lattner1afcace2011-07-09 17:41:24 +00001869/// StructType
Chris Lattnerdf986172009-01-02 07:01:27 +00001870/// ::= '{' '}'
Chris Lattner1afcace2011-07-09 17:41:24 +00001871/// ::= '{' Type (',' Type)* '}'
Chris Lattnerdf986172009-01-02 07:01:27 +00001872/// ::= '<' '{' '}' '>'
Chris Lattner1afcace2011-07-09 17:41:24 +00001873/// ::= '<' '{' Type (',' Type)* '}' '>'
1874bool LLParser::ParseStructBody(SmallVectorImpl<Type*> &Body) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001875 assert(Lex.getKind() == lltok::lbrace);
1876 Lex.Lex(); // Consume the '{'
Daniel Dunbara279bc32009-09-20 02:20:51 +00001877
Chris Lattner1afcace2011-07-09 17:41:24 +00001878 // Handle the empty struct.
1879 if (EatIfPresent(lltok::rbrace))
Chris Lattnerdf986172009-01-02 07:01:27 +00001880 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00001881
Chris Lattnera9a9e072009-03-09 04:49:14 +00001882 LocTy EltTyLoc = Lex.getLoc();
Chris Lattner1afcace2011-07-09 17:41:24 +00001883 Type *Ty = 0;
1884 if (ParseType(Ty)) return true;
1885 Body.push_back(Ty);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001886
Chris Lattner1afcace2011-07-09 17:41:24 +00001887 if (!StructType::isValidElementType(Ty))
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001888 return Error(EltTyLoc, "invalid element type for struct");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001889
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001890 while (EatIfPresent(lltok::comma)) {
Chris Lattnera9a9e072009-03-09 04:49:14 +00001891 EltTyLoc = Lex.getLoc();
Chris Lattner1afcace2011-07-09 17:41:24 +00001892 if (ParseType(Ty)) return true;
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 Lattner1afcace2011-07-09 17:41:24 +00001897 Body.push_back(Ty);
Chris Lattnerdf986172009-01-02 07:01:27 +00001898 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001899
Chris Lattner1afcace2011-07-09 17:41:24 +00001900 return ParseToken(lltok::rbrace, "expected '}' at end of struct");
Chris Lattnerdf986172009-01-02 07:01:27 +00001901}
1902
1903/// ParseArrayVectorType - Parse an array or vector type, assuming the first
1904/// token has already been consumed.
Chris Lattner1afcace2011-07-09 17:41:24 +00001905/// Type
Chris Lattnerdf986172009-01-02 07:01:27 +00001906/// ::= '[' APSINTVAL 'x' Types ']'
1907/// ::= '<' APSINTVAL 'x' Types '>'
Chris Lattner1afcace2011-07-09 17:41:24 +00001908bool LLParser::ParseArrayVectorType(Type *&Result, bool isVector) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001909 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned() ||
1910 Lex.getAPSIntVal().getBitWidth() > 64)
1911 return TokError("expected number in address space");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001912
Chris Lattnerdf986172009-01-02 07:01:27 +00001913 LocTy SizeLoc = Lex.getLoc();
1914 uint64_t Size = Lex.getAPSIntVal().getZExtValue();
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001915 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +00001916
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001917 if (ParseToken(lltok::kw_x, "expected 'x' after element count"))
1918 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00001919
1920 LocTy TypeLoc = Lex.getLoc();
Chris Lattner1afcace2011-07-09 17:41:24 +00001921 Type *EltTy = 0;
1922 if (ParseType(EltTy)) return true;
Chris Lattnera9a9e072009-03-09 04:49:14 +00001923
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001924 if (ParseToken(isVector ? lltok::greater : lltok::rsquare,
1925 "expected end of sequential type"))
1926 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001927
Chris Lattnerdf986172009-01-02 07:01:27 +00001928 if (isVector) {
Chris Lattner452e2622009-02-28 18:12:41 +00001929 if (Size == 0)
1930 return Error(SizeLoc, "zero element vector is illegal");
Chris Lattnerdf986172009-01-02 07:01:27 +00001931 if ((unsigned)Size != Size)
1932 return Error(SizeLoc, "size too large for vector");
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001933 if (!VectorType::isValidElementType(EltTy))
Duncan Sands2333e292012-11-13 12:59:33 +00001934 return Error(TypeLoc, "invalid vector element type");
Owen Andersondebcb012009-07-29 22:17:13 +00001935 Result = VectorType::get(EltTy, unsigned(Size));
Chris Lattnerdf986172009-01-02 07:01:27 +00001936 } else {
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001937 if (!ArrayType::isValidElementType(EltTy))
Chris Lattnerdf986172009-01-02 07:01:27 +00001938 return Error(TypeLoc, "invalid array element type");
Chris Lattner1afcace2011-07-09 17:41:24 +00001939 Result = ArrayType::get(EltTy, Size);
Chris Lattnerdf986172009-01-02 07:01:27 +00001940 }
1941 return false;
1942}
1943
1944//===----------------------------------------------------------------------===//
1945// Function Semantic Analysis.
1946//===----------------------------------------------------------------------===//
1947
Chris Lattner09d9ef42009-10-28 03:39:23 +00001948LLParser::PerFunctionState::PerFunctionState(LLParser &p, Function &f,
1949 int functionNumber)
1950 : P(p), F(f), FunctionNumber(functionNumber) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001951
1952 // Insert unnamed arguments into the NumberedVals list.
1953 for (Function::arg_iterator AI = F.arg_begin(), E = F.arg_end();
1954 AI != E; ++AI)
1955 if (!AI->hasName())
1956 NumberedVals.push_back(AI);
1957}
1958
1959LLParser::PerFunctionState::~PerFunctionState() {
1960 // If there were any forward referenced non-basicblock values, delete them.
1961 for (std::map<std::string, std::pair<Value*, LocTy> >::iterator
1962 I = ForwardRefVals.begin(), E = ForwardRefVals.end(); I != E; ++I)
1963 if (!isa<BasicBlock>(I->second.first)) {
Owen Andersonb43eae72009-07-02 17:04:01 +00001964 I->second.first->replaceAllUsesWith(
Owen Anderson9e9a0d52009-07-30 23:03:37 +00001965 UndefValue::get(I->second.first->getType()));
Chris Lattnerdf986172009-01-02 07:01:27 +00001966 delete I->second.first;
1967 I->second.first = 0;
1968 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001969
Chris Lattnerdf986172009-01-02 07:01:27 +00001970 for (std::map<unsigned, std::pair<Value*, LocTy> >::iterator
1971 I = ForwardRefValIDs.begin(), E = ForwardRefValIDs.end(); I != E; ++I)
1972 if (!isa<BasicBlock>(I->second.first)) {
Owen Andersonb43eae72009-07-02 17:04:01 +00001973 I->second.first->replaceAllUsesWith(
Owen Anderson9e9a0d52009-07-30 23:03:37 +00001974 UndefValue::get(I->second.first->getType()));
Chris Lattnerdf986172009-01-02 07:01:27 +00001975 delete I->second.first;
1976 I->second.first = 0;
1977 }
1978}
1979
Chris Lattner09d9ef42009-10-28 03:39:23 +00001980bool LLParser::PerFunctionState::FinishFunction() {
1981 // Check to see if someone took the address of labels in this block.
1982 if (!P.ForwardRefBlockAddresses.empty()) {
1983 ValID FunctionID;
1984 if (!F.getName().empty()) {
1985 FunctionID.Kind = ValID::t_GlobalName;
1986 FunctionID.StrVal = F.getName();
1987 } else {
1988 FunctionID.Kind = ValID::t_GlobalID;
1989 FunctionID.UIntVal = FunctionNumber;
1990 }
Michael Ilseman407a6162012-11-15 22:34:00 +00001991
Chris Lattner09d9ef42009-10-28 03:39:23 +00001992 std::map<ValID, std::vector<std::pair<ValID, GlobalValue*> > >::iterator
1993 FRBAI = P.ForwardRefBlockAddresses.find(FunctionID);
1994 if (FRBAI != P.ForwardRefBlockAddresses.end()) {
1995 // Resolve all these references.
1996 if (P.ResolveForwardRefBlockAddresses(&F, FRBAI->second, this))
1997 return true;
Michael Ilseman407a6162012-11-15 22:34:00 +00001998
Chris Lattner09d9ef42009-10-28 03:39:23 +00001999 P.ForwardRefBlockAddresses.erase(FRBAI);
2000 }
2001 }
Michael Ilseman407a6162012-11-15 22:34:00 +00002002
Chris Lattnerdf986172009-01-02 07:01:27 +00002003 if (!ForwardRefVals.empty())
2004 return P.Error(ForwardRefVals.begin()->second.second,
2005 "use of undefined value '%" + ForwardRefVals.begin()->first +
2006 "'");
2007 if (!ForwardRefValIDs.empty())
2008 return P.Error(ForwardRefValIDs.begin()->second.second,
2009 "use of undefined value '%" +
Benjamin Kramerd1e17032010-09-27 17:42:11 +00002010 Twine(ForwardRefValIDs.begin()->first) + "'");
Chris Lattnerdf986172009-01-02 07:01:27 +00002011 return false;
2012}
2013
2014
2015/// GetVal - Get a value with the specified name or ID, creating a
2016/// forward reference record if needed. This can return null if the value
2017/// exists but does not have the right type.
2018Value *LLParser::PerFunctionState::GetVal(const std::string &Name,
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002019 Type *Ty, LocTy Loc) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002020 // Look this name up in the normal function symbol table.
2021 Value *Val = F.getValueSymbolTable().lookup(Name);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002022
Chris Lattnerdf986172009-01-02 07:01:27 +00002023 // If this is a forward reference for the value, see if we already created a
2024 // forward ref record.
2025 if (Val == 0) {
2026 std::map<std::string, std::pair<Value*, LocTy> >::iterator
2027 I = ForwardRefVals.find(Name);
2028 if (I != ForwardRefVals.end())
2029 Val = I->second.first;
2030 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002031
Chris Lattnerdf986172009-01-02 07:01:27 +00002032 // If we have the value in the symbol table or fwd-ref table, return it.
2033 if (Val) {
2034 if (Val->getType() == Ty) return Val;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00002035 if (Ty->isLabelTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002036 P.Error(Loc, "'%" + Name + "' is not a basic block");
2037 else
2038 P.Error(Loc, "'%" + Name + "' defined with type '" +
Chris Lattner0cd0d882011-06-18 21:18:23 +00002039 getTypeString(Val->getType()) + "'");
Chris Lattnerdf986172009-01-02 07:01:27 +00002040 return 0;
2041 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002042
Chris Lattnerdf986172009-01-02 07:01:27 +00002043 // Don't make placeholders with invalid type.
Chris Lattner1afcace2011-07-09 17:41:24 +00002044 if (!Ty->isFirstClassType() && !Ty->isLabelTy()) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002045 P.Error(Loc, "invalid use of a non-first-class type");
2046 return 0;
2047 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002048
Chris Lattnerdf986172009-01-02 07:01:27 +00002049 // Otherwise, create a new forward reference for this value and remember it.
2050 Value *FwdVal;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00002051 if (Ty->isLabelTy())
Owen Anderson1d0be152009-08-13 21:58:54 +00002052 FwdVal = BasicBlock::Create(F.getContext(), Name, &F);
Chris Lattnerdf986172009-01-02 07:01:27 +00002053 else
2054 FwdVal = new Argument(Ty, Name);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002055
Chris Lattnerdf986172009-01-02 07:01:27 +00002056 ForwardRefVals[Name] = std::make_pair(FwdVal, Loc);
2057 return FwdVal;
2058}
2059
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002060Value *LLParser::PerFunctionState::GetVal(unsigned ID, Type *Ty,
Chris Lattnerdf986172009-01-02 07:01:27 +00002061 LocTy Loc) {
2062 // Look this name up in the normal function symbol table.
2063 Value *Val = ID < NumberedVals.size() ? NumberedVals[ID] : 0;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002064
Chris Lattnerdf986172009-01-02 07:01:27 +00002065 // If this is a forward reference for the value, see if we already created a
2066 // forward ref record.
2067 if (Val == 0) {
2068 std::map<unsigned, std::pair<Value*, LocTy> >::iterator
2069 I = ForwardRefValIDs.find(ID);
2070 if (I != ForwardRefValIDs.end())
2071 Val = I->second.first;
2072 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002073
Chris Lattnerdf986172009-01-02 07:01:27 +00002074 // If we have the value in the symbol table or fwd-ref table, return it.
2075 if (Val) {
2076 if (Val->getType() == Ty) return Val;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00002077 if (Ty->isLabelTy())
Benjamin Kramerd1e17032010-09-27 17:42:11 +00002078 P.Error(Loc, "'%" + Twine(ID) + "' is not a basic block");
Chris Lattnerdf986172009-01-02 07:01:27 +00002079 else
Benjamin Kramerd1e17032010-09-27 17:42:11 +00002080 P.Error(Loc, "'%" + Twine(ID) + "' defined with type '" +
Chris Lattner0cd0d882011-06-18 21:18:23 +00002081 getTypeString(Val->getType()) + "'");
Chris Lattnerdf986172009-01-02 07:01:27 +00002082 return 0;
2083 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002084
Chris Lattner1afcace2011-07-09 17:41:24 +00002085 if (!Ty->isFirstClassType() && !Ty->isLabelTy()) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002086 P.Error(Loc, "invalid use of a non-first-class type");
2087 return 0;
2088 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002089
Chris Lattnerdf986172009-01-02 07:01:27 +00002090 // Otherwise, create a new forward reference for this value and remember it.
2091 Value *FwdVal;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00002092 if (Ty->isLabelTy())
Owen Anderson1d0be152009-08-13 21:58:54 +00002093 FwdVal = BasicBlock::Create(F.getContext(), "", &F);
Chris Lattnerdf986172009-01-02 07:01:27 +00002094 else
2095 FwdVal = new Argument(Ty);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002096
Chris Lattnerdf986172009-01-02 07:01:27 +00002097 ForwardRefValIDs[ID] = std::make_pair(FwdVal, Loc);
2098 return FwdVal;
2099}
2100
2101/// SetInstName - After an instruction is parsed and inserted into its
2102/// basic block, this installs its name.
2103bool LLParser::PerFunctionState::SetInstName(int NameID,
2104 const std::string &NameStr,
2105 LocTy NameLoc, Instruction *Inst) {
2106 // If this instruction has void type, it cannot have a name or ID specified.
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00002107 if (Inst->getType()->isVoidTy()) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002108 if (NameID != -1 || !NameStr.empty())
2109 return P.Error(NameLoc, "instructions returning void cannot have a name");
2110 return false;
2111 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002112
Chris Lattnerdf986172009-01-02 07:01:27 +00002113 // If this was a numbered instruction, verify that the instruction is the
2114 // expected value and resolve any forward references.
2115 if (NameStr.empty()) {
2116 // If neither a name nor an ID was specified, just use the next ID.
2117 if (NameID == -1)
2118 NameID = NumberedVals.size();
Daniel Dunbara279bc32009-09-20 02:20:51 +00002119
Chris Lattnerdf986172009-01-02 07:01:27 +00002120 if (unsigned(NameID) != NumberedVals.size())
2121 return P.Error(NameLoc, "instruction expected to be numbered '%" +
Benjamin Kramerd1e17032010-09-27 17:42:11 +00002122 Twine(NumberedVals.size()) + "'");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002123
Chris Lattnerdf986172009-01-02 07:01:27 +00002124 std::map<unsigned, std::pair<Value*, LocTy> >::iterator FI =
2125 ForwardRefValIDs.find(NameID);
2126 if (FI != ForwardRefValIDs.end()) {
2127 if (FI->second.first->getType() != Inst->getType())
Daniel Dunbara279bc32009-09-20 02:20:51 +00002128 return P.Error(NameLoc, "instruction forward referenced with type '" +
Chris Lattner0cd0d882011-06-18 21:18:23 +00002129 getTypeString(FI->second.first->getType()) + "'");
Chris Lattnerdf986172009-01-02 07:01:27 +00002130 FI->second.first->replaceAllUsesWith(Inst);
Nuno Lopes2b4f28e2009-09-02 15:02:57 +00002131 delete FI->second.first;
Chris Lattnerdf986172009-01-02 07:01:27 +00002132 ForwardRefValIDs.erase(FI);
2133 }
2134
2135 NumberedVals.push_back(Inst);
2136 return false;
2137 }
2138
2139 // Otherwise, the instruction had a name. Resolve forward refs and set it.
2140 std::map<std::string, std::pair<Value*, LocTy> >::iterator
2141 FI = ForwardRefVals.find(NameStr);
2142 if (FI != ForwardRefVals.end()) {
2143 if (FI->second.first->getType() != Inst->getType())
Daniel Dunbara279bc32009-09-20 02:20:51 +00002144 return P.Error(NameLoc, "instruction forward referenced with type '" +
Chris Lattner0cd0d882011-06-18 21:18:23 +00002145 getTypeString(FI->second.first->getType()) + "'");
Chris Lattnerdf986172009-01-02 07:01:27 +00002146 FI->second.first->replaceAllUsesWith(Inst);
Nuno Lopes531552a2009-09-02 14:22:03 +00002147 delete FI->second.first;
Chris Lattnerdf986172009-01-02 07:01:27 +00002148 ForwardRefVals.erase(FI);
2149 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002150
Chris Lattnerdf986172009-01-02 07:01:27 +00002151 // Set the name on the instruction.
2152 Inst->setName(NameStr);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002153
Benjamin Krameraf812352010-10-16 11:28:23 +00002154 if (Inst->getName() != NameStr)
Daniel Dunbara279bc32009-09-20 02:20:51 +00002155 return P.Error(NameLoc, "multiple definition of local value named '" +
Chris Lattnerdf986172009-01-02 07:01:27 +00002156 NameStr + "'");
2157 return false;
2158}
2159
2160/// GetBB - Get a basic block with the specified name or ID, creating a
2161/// forward reference record if needed.
2162BasicBlock *LLParser::PerFunctionState::GetBB(const std::string &Name,
2163 LocTy Loc) {
Owen Anderson1d0be152009-08-13 21:58:54 +00002164 return cast_or_null<BasicBlock>(GetVal(Name,
2165 Type::getLabelTy(F.getContext()), Loc));
Chris Lattnerdf986172009-01-02 07:01:27 +00002166}
2167
2168BasicBlock *LLParser::PerFunctionState::GetBB(unsigned ID, LocTy Loc) {
Owen Anderson1d0be152009-08-13 21:58:54 +00002169 return cast_or_null<BasicBlock>(GetVal(ID,
2170 Type::getLabelTy(F.getContext()), Loc));
Chris Lattnerdf986172009-01-02 07:01:27 +00002171}
2172
2173/// DefineBB - Define the specified basic block, which is either named or
2174/// unnamed. If there is an error, this returns null otherwise it returns
2175/// the block being defined.
2176BasicBlock *LLParser::PerFunctionState::DefineBB(const std::string &Name,
2177 LocTy Loc) {
2178 BasicBlock *BB;
2179 if (Name.empty())
2180 BB = GetBB(NumberedVals.size(), Loc);
2181 else
2182 BB = GetBB(Name, Loc);
2183 if (BB == 0) return 0; // Already diagnosed error.
Daniel Dunbara279bc32009-09-20 02:20:51 +00002184
Chris Lattnerdf986172009-01-02 07:01:27 +00002185 // Move the block to the end of the function. Forward ref'd blocks are
2186 // inserted wherever they happen to be referenced.
2187 F.getBasicBlockList().splice(F.end(), F.getBasicBlockList(), BB);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002188
Chris Lattnerdf986172009-01-02 07:01:27 +00002189 // Remove the block from forward ref sets.
2190 if (Name.empty()) {
2191 ForwardRefValIDs.erase(NumberedVals.size());
2192 NumberedVals.push_back(BB);
2193 } else {
2194 // BB forward references are already in the function symbol table.
2195 ForwardRefVals.erase(Name);
2196 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002197
Chris Lattnerdf986172009-01-02 07:01:27 +00002198 return BB;
2199}
2200
2201//===----------------------------------------------------------------------===//
2202// Constants.
2203//===----------------------------------------------------------------------===//
2204
2205/// ParseValID - Parse an abstract value that doesn't necessarily have a
2206/// type implied. For example, if we parse "4" we don't know what integer type
2207/// it has. The value will later be combined with its type and checked for
Victor Hernandez24e64df2010-01-10 07:14:18 +00002208/// sanity. PFS is used to convert function-local operands of metadata (since
2209/// metadata operands are not just parsed here but also converted to values).
2210/// PFS can be null when we are not parsing metadata values inside a function.
Victor Hernandezbf170d42010-01-05 22:22:14 +00002211bool LLParser::ParseValID(ValID &ID, PerFunctionState *PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002212 ID.Loc = Lex.getLoc();
2213 switch (Lex.getKind()) {
2214 default: return TokError("expected value token");
2215 case lltok::GlobalID: // @42
2216 ID.UIntVal = Lex.getUIntVal();
2217 ID.Kind = ValID::t_GlobalID;
2218 break;
2219 case lltok::GlobalVar: // @foo
2220 ID.StrVal = Lex.getStrVal();
2221 ID.Kind = ValID::t_GlobalName;
2222 break;
2223 case lltok::LocalVarID: // %42
2224 ID.UIntVal = Lex.getUIntVal();
2225 ID.Kind = ValID::t_LocalID;
2226 break;
2227 case lltok::LocalVar: // %foo
Chris Lattnerdf986172009-01-02 07:01:27 +00002228 ID.StrVal = Lex.getStrVal();
2229 ID.Kind = ValID::t_LocalName;
2230 break;
Dan Gohman83448032010-07-14 18:26:50 +00002231 case lltok::exclaim: // !42, !{...}, or !"foo"
2232 return ParseMetadataValue(ID, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00002233 case lltok::APSInt:
Daniel Dunbara279bc32009-09-20 02:20:51 +00002234 ID.APSIntVal = Lex.getAPSIntVal();
Chris Lattnerdf986172009-01-02 07:01:27 +00002235 ID.Kind = ValID::t_APSInt;
2236 break;
2237 case lltok::APFloat:
2238 ID.APFloatVal = Lex.getAPFloatVal();
2239 ID.Kind = ValID::t_APFloat;
2240 break;
2241 case lltok::kw_true:
Owen Anderson5defacc2009-07-31 17:39:07 +00002242 ID.ConstantVal = ConstantInt::getTrue(Context);
Chris Lattnerdf986172009-01-02 07:01:27 +00002243 ID.Kind = ValID::t_Constant;
2244 break;
2245 case lltok::kw_false:
Owen Anderson5defacc2009-07-31 17:39:07 +00002246 ID.ConstantVal = ConstantInt::getFalse(Context);
Chris Lattnerdf986172009-01-02 07:01:27 +00002247 ID.Kind = ValID::t_Constant;
2248 break;
2249 case lltok::kw_null: ID.Kind = ValID::t_Null; break;
2250 case lltok::kw_undef: ID.Kind = ValID::t_Undef; break;
2251 case lltok::kw_zeroinitializer: ID.Kind = ValID::t_Zero; break;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002252
Chris Lattnerdf986172009-01-02 07:01:27 +00002253 case lltok::lbrace: {
2254 // ValID ::= '{' ConstVector '}'
2255 Lex.Lex();
2256 SmallVector<Constant*, 16> Elts;
2257 if (ParseGlobalValueVector(Elts) ||
2258 ParseToken(lltok::rbrace, "expected end of struct constant"))
2259 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002260
Chris Lattner1afcace2011-07-09 17:41:24 +00002261 ID.ConstantStructElts = new Constant*[Elts.size()];
2262 ID.UIntVal = Elts.size();
2263 memcpy(ID.ConstantStructElts, Elts.data(), Elts.size()*sizeof(Elts[0]));
2264 ID.Kind = ValID::t_ConstantStruct;
Chris Lattnerdf986172009-01-02 07:01:27 +00002265 return false;
2266 }
2267 case lltok::less: {
2268 // ValID ::= '<' ConstVector '>' --> Vector.
2269 // ValID ::= '<' '{' ConstVector '}' '>' --> Packed Struct.
2270 Lex.Lex();
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002271 bool isPackedStruct = EatIfPresent(lltok::lbrace);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002272
Chris Lattnerdf986172009-01-02 07:01:27 +00002273 SmallVector<Constant*, 16> Elts;
2274 LocTy FirstEltLoc = Lex.getLoc();
2275 if (ParseGlobalValueVector(Elts) ||
2276 (isPackedStruct &&
2277 ParseToken(lltok::rbrace, "expected end of packed struct")) ||
2278 ParseToken(lltok::greater, "expected end of constant"))
2279 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002280
Chris Lattnerdf986172009-01-02 07:01:27 +00002281 if (isPackedStruct) {
Chris Lattner1afcace2011-07-09 17:41:24 +00002282 ID.ConstantStructElts = new Constant*[Elts.size()];
2283 memcpy(ID.ConstantStructElts, Elts.data(), Elts.size()*sizeof(Elts[0]));
2284 ID.UIntVal = Elts.size();
2285 ID.Kind = ValID::t_PackedConstantStruct;
Chris Lattnerdf986172009-01-02 07:01:27 +00002286 return false;
2287 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002288
Chris Lattnerdf986172009-01-02 07:01:27 +00002289 if (Elts.empty())
2290 return Error(ID.Loc, "constant vector must not be empty");
2291
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00002292 if (!Elts[0]->getType()->isIntegerTy() &&
Nadav Rotem16087692011-12-05 06:29:09 +00002293 !Elts[0]->getType()->isFloatingPointTy() &&
2294 !Elts[0]->getType()->isPointerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002295 return Error(FirstEltLoc,
Nadav Rotem16087692011-12-05 06:29:09 +00002296 "vector elements must have integer, pointer or floating point type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002297
Chris Lattnerdf986172009-01-02 07:01:27 +00002298 // Verify that all the vector elements have the same type.
2299 for (unsigned i = 1, e = Elts.size(); i != e; ++i)
2300 if (Elts[i]->getType() != Elts[0]->getType())
2301 return Error(FirstEltLoc,
Benjamin Kramerd1e17032010-09-27 17:42:11 +00002302 "vector element #" + Twine(i) +
Chris Lattner0cd0d882011-06-18 21:18:23 +00002303 " is not of type '" + getTypeString(Elts[0]->getType()));
Daniel Dunbara279bc32009-09-20 02:20:51 +00002304
Chris Lattner2ca5c862011-02-15 00:14:00 +00002305 ID.ConstantVal = ConstantVector::get(Elts);
Chris Lattnerdf986172009-01-02 07:01:27 +00002306 ID.Kind = ValID::t_Constant;
2307 return false;
2308 }
2309 case lltok::lsquare: { // Array Constant
2310 Lex.Lex();
2311 SmallVector<Constant*, 16> Elts;
2312 LocTy FirstEltLoc = Lex.getLoc();
2313 if (ParseGlobalValueVector(Elts) ||
2314 ParseToken(lltok::rsquare, "expected end of array constant"))
2315 return true;
2316
2317 // Handle empty element.
2318 if (Elts.empty()) {
2319 // Use undef instead of an array because it's inconvenient to determine
2320 // the element type at this point, there being no elements to examine.
Chris Lattner081b5052009-01-05 07:52:51 +00002321 ID.Kind = ValID::t_EmptyArray;
Chris Lattnerdf986172009-01-02 07:01:27 +00002322 return false;
2323 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002324
Chris Lattnerdf986172009-01-02 07:01:27 +00002325 if (!Elts[0]->getType()->isFirstClassType())
Daniel Dunbara279bc32009-09-20 02:20:51 +00002326 return Error(FirstEltLoc, "invalid array element type: " +
Chris Lattner0cd0d882011-06-18 21:18:23 +00002327 getTypeString(Elts[0]->getType()));
Daniel Dunbara279bc32009-09-20 02:20:51 +00002328
Owen Andersondebcb012009-07-29 22:17:13 +00002329 ArrayType *ATy = ArrayType::get(Elts[0]->getType(), Elts.size());
Daniel Dunbara279bc32009-09-20 02:20:51 +00002330
Chris Lattnerdf986172009-01-02 07:01:27 +00002331 // Verify all elements are correct type!
Chris Lattner6d6b3cc2009-01-02 08:49:06 +00002332 for (unsigned i = 0, e = Elts.size(); i != e; ++i) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002333 if (Elts[i]->getType() != Elts[0]->getType())
2334 return Error(FirstEltLoc,
Benjamin Kramerd1e17032010-09-27 17:42:11 +00002335 "array element #" + Twine(i) +
Chris Lattner0cd0d882011-06-18 21:18:23 +00002336 " is not of type '" + getTypeString(Elts[0]->getType()));
Chris Lattnerdf986172009-01-02 07:01:27 +00002337 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002338
Jay Foad26701082011-06-22 09:24:39 +00002339 ID.ConstantVal = ConstantArray::get(ATy, Elts);
Chris Lattnerdf986172009-01-02 07:01:27 +00002340 ID.Kind = ValID::t_Constant;
2341 return false;
2342 }
2343 case lltok::kw_c: // c "foo"
2344 Lex.Lex();
Chris Lattner18c7f802012-02-05 02:29:43 +00002345 ID.ConstantVal = ConstantDataArray::getString(Context, Lex.getStrVal(),
2346 false);
Chris Lattnerdf986172009-01-02 07:01:27 +00002347 if (ParseToken(lltok::StringConstant, "expected string")) return true;
2348 ID.Kind = ValID::t_Constant;
2349 return false;
2350
2351 case lltok::kw_asm: {
Chad Rosier27d844f2013-02-14 20:44:07 +00002352 // ValID ::= 'asm' SideEffect? AlignStack? IntelDialect? STRINGCONSTANT ','
2353 // STRINGCONSTANT
Chad Rosier581600b2012-09-05 19:00:49 +00002354 bool HasSideEffect, AlignStack, AsmDialect;
Chris Lattnerdf986172009-01-02 07:01:27 +00002355 Lex.Lex();
2356 if (ParseOptionalToken(lltok::kw_sideeffect, HasSideEffect) ||
Dale Johannesen8ba2d5b2009-10-21 23:28:00 +00002357 ParseOptionalToken(lltok::kw_alignstack, AlignStack) ||
Chad Rosier581600b2012-09-05 19:00:49 +00002358 ParseOptionalToken(lltok::kw_inteldialect, AsmDialect) ||
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002359 ParseStringConstant(ID.StrVal) ||
2360 ParseToken(lltok::comma, "expected comma in inline asm expression") ||
Chris Lattnerdf986172009-01-02 07:01:27 +00002361 ParseToken(lltok::StringConstant, "expected constraint string"))
2362 return true;
2363 ID.StrVal2 = Lex.getStrVal();
Chad Rosier36547342012-09-05 00:08:17 +00002364 ID.UIntVal = unsigned(HasSideEffect) | (unsigned(AlignStack)<<1) |
Chad Rosier581600b2012-09-05 19:00:49 +00002365 (unsigned(AsmDialect)<<2);
Chris Lattnerdf986172009-01-02 07:01:27 +00002366 ID.Kind = ValID::t_InlineAsm;
2367 return false;
2368 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002369
Chris Lattner09d9ef42009-10-28 03:39:23 +00002370 case lltok::kw_blockaddress: {
2371 // ValID ::= 'blockaddress' '(' @foo ',' %bar ')'
2372 Lex.Lex();
2373
2374 ValID Fn, Label;
2375 LocTy FnLoc, LabelLoc;
Michael Ilseman407a6162012-11-15 22:34:00 +00002376
Chris Lattner09d9ef42009-10-28 03:39:23 +00002377 if (ParseToken(lltok::lparen, "expected '(' in block address expression") ||
2378 ParseValID(Fn) ||
2379 ParseToken(lltok::comma, "expected comma in block address expression")||
2380 ParseValID(Label) ||
2381 ParseToken(lltok::rparen, "expected ')' in block address expression"))
2382 return true;
Michael Ilseman407a6162012-11-15 22:34:00 +00002383
Chris Lattner09d9ef42009-10-28 03:39:23 +00002384 if (Fn.Kind != ValID::t_GlobalID && Fn.Kind != ValID::t_GlobalName)
2385 return Error(Fn.Loc, "expected function name in blockaddress");
Chris Lattnercdfc9402009-11-01 01:27:45 +00002386 if (Label.Kind != ValID::t_LocalID && Label.Kind != ValID::t_LocalName)
Chris Lattner09d9ef42009-10-28 03:39:23 +00002387 return Error(Label.Loc, "expected basic block name in blockaddress");
Michael Ilseman407a6162012-11-15 22:34:00 +00002388
Chris Lattner09d9ef42009-10-28 03:39:23 +00002389 // Make a global variable as a placeholder for this reference.
2390 GlobalVariable *FwdRef = new GlobalVariable(*M, Type::getInt8Ty(Context),
2391 false, GlobalValue::InternalLinkage,
2392 0, "");
2393 ForwardRefBlockAddresses[Fn].push_back(std::make_pair(Label, FwdRef));
2394 ID.ConstantVal = FwdRef;
2395 ID.Kind = ValID::t_Constant;
2396 return false;
2397 }
Michael Ilseman407a6162012-11-15 22:34:00 +00002398
Chris Lattnerdf986172009-01-02 07:01:27 +00002399 case lltok::kw_trunc:
2400 case lltok::kw_zext:
2401 case lltok::kw_sext:
2402 case lltok::kw_fptrunc:
2403 case lltok::kw_fpext:
2404 case lltok::kw_bitcast:
2405 case lltok::kw_uitofp:
2406 case lltok::kw_sitofp:
2407 case lltok::kw_fptoui:
Daniel Dunbara279bc32009-09-20 02:20:51 +00002408 case lltok::kw_fptosi:
Chris Lattnerdf986172009-01-02 07:01:27 +00002409 case lltok::kw_inttoptr:
Daniel Dunbara279bc32009-09-20 02:20:51 +00002410 case lltok::kw_ptrtoint: {
Chris Lattnerdf986172009-01-02 07:01:27 +00002411 unsigned Opc = Lex.getUIntVal();
Chris Lattner1afcace2011-07-09 17:41:24 +00002412 Type *DestTy = 0;
Chris Lattnerdf986172009-01-02 07:01:27 +00002413 Constant *SrcVal;
2414 Lex.Lex();
2415 if (ParseToken(lltok::lparen, "expected '(' after constantexpr cast") ||
2416 ParseGlobalTypeAndValue(SrcVal) ||
Dan Gohman24b108b2009-06-15 21:52:11 +00002417 ParseToken(lltok::kw_to, "expected 'to' in constantexpr cast") ||
Chris Lattnerdf986172009-01-02 07:01:27 +00002418 ParseType(DestTy) ||
2419 ParseToken(lltok::rparen, "expected ')' at end of constantexpr cast"))
2420 return true;
2421 if (!CastInst::castIsValid((Instruction::CastOps)Opc, SrcVal, DestTy))
2422 return Error(ID.Loc, "invalid cast opcode for cast from '" +
Chris Lattner0cd0d882011-06-18 21:18:23 +00002423 getTypeString(SrcVal->getType()) + "' to '" +
2424 getTypeString(DestTy) + "'");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002425 ID.ConstantVal = ConstantExpr::getCast((Instruction::CastOps)Opc,
Owen Andersonfba933c2009-07-01 23:57:11 +00002426 SrcVal, DestTy);
Chris Lattnerdf986172009-01-02 07:01:27 +00002427 ID.Kind = ValID::t_Constant;
2428 return false;
2429 }
2430 case lltok::kw_extractvalue: {
2431 Lex.Lex();
2432 Constant *Val;
2433 SmallVector<unsigned, 4> Indices;
2434 if (ParseToken(lltok::lparen, "expected '(' in extractvalue constantexpr")||
2435 ParseGlobalTypeAndValue(Val) ||
2436 ParseIndexList(Indices) ||
2437 ParseToken(lltok::rparen, "expected ')' in extractvalue constantexpr"))
2438 return true;
Devang Patele8bc45a2009-11-03 19:06:07 +00002439
Chris Lattnerfdfeb692010-02-12 20:49:41 +00002440 if (!Val->getType()->isAggregateType())
2441 return Error(ID.Loc, "extractvalue operand must be aggregate type");
Jay Foadfc6d3a42011-07-13 10:26:04 +00002442 if (!ExtractValueInst::getIndexedType(Val->getType(), Indices))
Chris Lattnerdf986172009-01-02 07:01:27 +00002443 return Error(ID.Loc, "invalid indices for extractvalue");
Jay Foadfc6d3a42011-07-13 10:26:04 +00002444 ID.ConstantVal = ConstantExpr::getExtractValue(Val, Indices);
Chris Lattnerdf986172009-01-02 07:01:27 +00002445 ID.Kind = ValID::t_Constant;
2446 return false;
2447 }
2448 case lltok::kw_insertvalue: {
2449 Lex.Lex();
2450 Constant *Val0, *Val1;
2451 SmallVector<unsigned, 4> Indices;
2452 if (ParseToken(lltok::lparen, "expected '(' in insertvalue constantexpr")||
2453 ParseGlobalTypeAndValue(Val0) ||
2454 ParseToken(lltok::comma, "expected comma in insertvalue constantexpr")||
2455 ParseGlobalTypeAndValue(Val1) ||
2456 ParseIndexList(Indices) ||
2457 ParseToken(lltok::rparen, "expected ')' in insertvalue constantexpr"))
2458 return true;
Chris Lattnerfdfeb692010-02-12 20:49:41 +00002459 if (!Val0->getType()->isAggregateType())
2460 return Error(ID.Loc, "insertvalue operand must be aggregate type");
Jay Foadfc6d3a42011-07-13 10:26:04 +00002461 if (!ExtractValueInst::getIndexedType(Val0->getType(), Indices))
Chris Lattnerdf986172009-01-02 07:01:27 +00002462 return Error(ID.Loc, "invalid indices for insertvalue");
Jay Foadfc6d3a42011-07-13 10:26:04 +00002463 ID.ConstantVal = ConstantExpr::getInsertValue(Val0, Val1, Indices);
Chris Lattnerdf986172009-01-02 07:01:27 +00002464 ID.Kind = ValID::t_Constant;
2465 return false;
2466 }
2467 case lltok::kw_icmp:
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00002468 case lltok::kw_fcmp: {
Chris Lattnerdf986172009-01-02 07:01:27 +00002469 unsigned PredVal, Opc = Lex.getUIntVal();
2470 Constant *Val0, *Val1;
2471 Lex.Lex();
2472 if (ParseCmpPredicate(PredVal, Opc) ||
2473 ParseToken(lltok::lparen, "expected '(' in compare constantexpr") ||
2474 ParseGlobalTypeAndValue(Val0) ||
2475 ParseToken(lltok::comma, "expected comma in compare constantexpr") ||
2476 ParseGlobalTypeAndValue(Val1) ||
2477 ParseToken(lltok::rparen, "expected ')' in compare constantexpr"))
2478 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002479
Chris Lattnerdf986172009-01-02 07:01:27 +00002480 if (Val0->getType() != Val1->getType())
2481 return Error(ID.Loc, "compare operands must have the same type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002482
Chris Lattnerdf986172009-01-02 07:01:27 +00002483 CmpInst::Predicate Pred = (CmpInst::Predicate)PredVal;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002484
Chris Lattnerdf986172009-01-02 07:01:27 +00002485 if (Opc == Instruction::FCmp) {
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00002486 if (!Val0->getType()->isFPOrFPVectorTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002487 return Error(ID.Loc, "fcmp requires floating point operands");
Owen Andersonbaf3c402009-07-29 18:55:55 +00002488 ID.ConstantVal = ConstantExpr::getFCmp(Pred, Val0, Val1);
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00002489 } else {
2490 assert(Opc == Instruction::ICmp && "Unexpected opcode for CmpInst!");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00002491 if (!Val0->getType()->isIntOrIntVectorTy() &&
Nadav Rotem16087692011-12-05 06:29:09 +00002492 !Val0->getType()->getScalarType()->isPointerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002493 return Error(ID.Loc, "icmp requires pointer or integer operands");
Owen Andersonbaf3c402009-07-29 18:55:55 +00002494 ID.ConstantVal = ConstantExpr::getICmp(Pred, Val0, Val1);
Chris Lattnerdf986172009-01-02 07:01:27 +00002495 }
2496 ID.Kind = ValID::t_Constant;
2497 return false;
2498 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002499
Chris Lattnerdf986172009-01-02 07:01:27 +00002500 // Binary Operators.
2501 case lltok::kw_add:
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002502 case lltok::kw_fadd:
Chris Lattnerdf986172009-01-02 07:01:27 +00002503 case lltok::kw_sub:
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002504 case lltok::kw_fsub:
Chris Lattnerdf986172009-01-02 07:01:27 +00002505 case lltok::kw_mul:
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002506 case lltok::kw_fmul:
Chris Lattnerdf986172009-01-02 07:01:27 +00002507 case lltok::kw_udiv:
2508 case lltok::kw_sdiv:
2509 case lltok::kw_fdiv:
2510 case lltok::kw_urem:
2511 case lltok::kw_srem:
Chris Lattnerf067d582011-02-07 16:40:21 +00002512 case lltok::kw_frem:
2513 case lltok::kw_shl:
2514 case lltok::kw_lshr:
2515 case lltok::kw_ashr: {
Dan Gohman59858cf2009-07-27 16:11:46 +00002516 bool NUW = false;
2517 bool NSW = false;
2518 bool Exact = false;
Chris Lattnerdf986172009-01-02 07:01:27 +00002519 unsigned Opc = Lex.getUIntVal();
2520 Constant *Val0, *Val1;
2521 Lex.Lex();
Dan Gohman59858cf2009-07-27 16:11:46 +00002522 LocTy ModifierLoc = Lex.getLoc();
Chris Lattnerf067d582011-02-07 16:40:21 +00002523 if (Opc == Instruction::Add || Opc == Instruction::Sub ||
2524 Opc == Instruction::Mul || Opc == Instruction::Shl) {
Dan Gohman59858cf2009-07-27 16:11:46 +00002525 if (EatIfPresent(lltok::kw_nuw))
2526 NUW = true;
2527 if (EatIfPresent(lltok::kw_nsw)) {
2528 NSW = true;
2529 if (EatIfPresent(lltok::kw_nuw))
2530 NUW = true;
2531 }
Chris Lattnerf067d582011-02-07 16:40:21 +00002532 } else if (Opc == Instruction::SDiv || Opc == Instruction::UDiv ||
2533 Opc == Instruction::LShr || Opc == Instruction::AShr) {
Dan Gohman59858cf2009-07-27 16:11:46 +00002534 if (EatIfPresent(lltok::kw_exact))
2535 Exact = true;
2536 }
Chris Lattnerdf986172009-01-02 07:01:27 +00002537 if (ParseToken(lltok::lparen, "expected '(' in binary constantexpr") ||
2538 ParseGlobalTypeAndValue(Val0) ||
2539 ParseToken(lltok::comma, "expected comma in binary constantexpr") ||
2540 ParseGlobalTypeAndValue(Val1) ||
2541 ParseToken(lltok::rparen, "expected ')' in binary constantexpr"))
2542 return true;
2543 if (Val0->getType() != Val1->getType())
2544 return Error(ID.Loc, "operands of constexpr must have same type");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00002545 if (!Val0->getType()->isIntOrIntVectorTy()) {
Dan Gohman59858cf2009-07-27 16:11:46 +00002546 if (NUW)
2547 return Error(ModifierLoc, "nuw only applies to integer operations");
2548 if (NSW)
2549 return Error(ModifierLoc, "nsw only applies to integer operations");
2550 }
Dan Gohman1eaac532010-05-03 22:44:19 +00002551 // Check that the type is valid for the operator.
2552 switch (Opc) {
2553 case Instruction::Add:
2554 case Instruction::Sub:
2555 case Instruction::Mul:
2556 case Instruction::UDiv:
2557 case Instruction::SDiv:
2558 case Instruction::URem:
2559 case Instruction::SRem:
Chris Lattnerf067d582011-02-07 16:40:21 +00002560 case Instruction::Shl:
2561 case Instruction::AShr:
2562 case Instruction::LShr:
Dan Gohman1eaac532010-05-03 22:44:19 +00002563 if (!Val0->getType()->isIntOrIntVectorTy())
2564 return Error(ID.Loc, "constexpr requires integer operands");
2565 break;
2566 case Instruction::FAdd:
2567 case Instruction::FSub:
2568 case Instruction::FMul:
2569 case Instruction::FDiv:
2570 case Instruction::FRem:
2571 if (!Val0->getType()->isFPOrFPVectorTy())
2572 return Error(ID.Loc, "constexpr requires fp operands");
2573 break;
2574 default: llvm_unreachable("Unknown binary operator!");
2575 }
Dan Gohmanf8dbee72009-09-07 23:54:19 +00002576 unsigned Flags = 0;
2577 if (NUW) Flags |= OverflowingBinaryOperator::NoUnsignedWrap;
2578 if (NSW) Flags |= OverflowingBinaryOperator::NoSignedWrap;
Chris Lattner35bda892011-02-06 21:44:57 +00002579 if (Exact) Flags |= PossiblyExactOperator::IsExact;
Dan Gohmanf8dbee72009-09-07 23:54:19 +00002580 Constant *C = ConstantExpr::get(Opc, Val0, Val1, Flags);
Dan Gohman59858cf2009-07-27 16:11:46 +00002581 ID.ConstantVal = C;
Chris Lattnerdf986172009-01-02 07:01:27 +00002582 ID.Kind = ValID::t_Constant;
2583 return false;
2584 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002585
Chris Lattnerdf986172009-01-02 07:01:27 +00002586 // Logical Operations
Chris Lattnerdf986172009-01-02 07:01:27 +00002587 case lltok::kw_and:
2588 case lltok::kw_or:
2589 case lltok::kw_xor: {
2590 unsigned Opc = Lex.getUIntVal();
2591 Constant *Val0, *Val1;
2592 Lex.Lex();
2593 if (ParseToken(lltok::lparen, "expected '(' in logical constantexpr") ||
2594 ParseGlobalTypeAndValue(Val0) ||
2595 ParseToken(lltok::comma, "expected comma in logical constantexpr") ||
2596 ParseGlobalTypeAndValue(Val1) ||
2597 ParseToken(lltok::rparen, "expected ')' in logical constantexpr"))
2598 return true;
2599 if (Val0->getType() != Val1->getType())
2600 return Error(ID.Loc, "operands of constexpr must have same type");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00002601 if (!Val0->getType()->isIntOrIntVectorTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002602 return Error(ID.Loc,
2603 "constexpr requires integer or integer vector operands");
Owen Andersonbaf3c402009-07-29 18:55:55 +00002604 ID.ConstantVal = ConstantExpr::get(Opc, Val0, Val1);
Chris Lattnerdf986172009-01-02 07:01:27 +00002605 ID.Kind = ValID::t_Constant;
2606 return false;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002607 }
2608
Chris Lattnerdf986172009-01-02 07:01:27 +00002609 case lltok::kw_getelementptr:
2610 case lltok::kw_shufflevector:
2611 case lltok::kw_insertelement:
2612 case lltok::kw_extractelement:
2613 case lltok::kw_select: {
2614 unsigned Opc = Lex.getUIntVal();
2615 SmallVector<Constant*, 16> Elts;
Dan Gohmandd8004d2009-07-27 21:53:46 +00002616 bool InBounds = false;
Chris Lattnerdf986172009-01-02 07:01:27 +00002617 Lex.Lex();
Dan Gohmandd8004d2009-07-27 21:53:46 +00002618 if (Opc == Instruction::GetElementPtr)
Dan Gohmandcb40a32009-07-29 15:58:36 +00002619 InBounds = EatIfPresent(lltok::kw_inbounds);
Chris Lattnerdf986172009-01-02 07:01:27 +00002620 if (ParseToken(lltok::lparen, "expected '(' in constantexpr") ||
2621 ParseGlobalValueVector(Elts) ||
2622 ParseToken(lltok::rparen, "expected ')' in constantexpr"))
2623 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002624
Chris Lattnerdf986172009-01-02 07:01:27 +00002625 if (Opc == Instruction::GetElementPtr) {
Nadav Rotem16087692011-12-05 06:29:09 +00002626 if (Elts.size() == 0 ||
2627 !Elts[0]->getType()->getScalarType()->isPointerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002628 return Error(ID.Loc, "getelementptr requires pointer operand");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002629
Jay Foaddab3d292011-07-21 14:31:17 +00002630 ArrayRef<Constant *> Indices(Elts.begin() + 1, Elts.end());
Jay Foada9203102011-07-25 09:48:08 +00002631 if (!GetElementPtrInst::getIndexedType(Elts[0]->getType(), Indices))
Chris Lattnerdf986172009-01-02 07:01:27 +00002632 return Error(ID.Loc, "invalid indices for getelementptr");
Jay Foad4b5e2072011-07-21 15:15:37 +00002633 ID.ConstantVal = ConstantExpr::getGetElementPtr(Elts[0], Indices,
2634 InBounds);
Chris Lattnerdf986172009-01-02 07:01:27 +00002635 } else if (Opc == Instruction::Select) {
2636 if (Elts.size() != 3)
2637 return Error(ID.Loc, "expected three operands to select");
2638 if (const char *Reason = SelectInst::areInvalidOperands(Elts[0], Elts[1],
2639 Elts[2]))
2640 return Error(ID.Loc, Reason);
Owen Andersonbaf3c402009-07-29 18:55:55 +00002641 ID.ConstantVal = ConstantExpr::getSelect(Elts[0], Elts[1], Elts[2]);
Chris Lattnerdf986172009-01-02 07:01:27 +00002642 } else if (Opc == Instruction::ShuffleVector) {
2643 if (Elts.size() != 3)
2644 return Error(ID.Loc, "expected three operands to shufflevector");
2645 if (!ShuffleVectorInst::isValidOperands(Elts[0], Elts[1], Elts[2]))
2646 return Error(ID.Loc, "invalid operands to shufflevector");
Owen Andersonfba933c2009-07-01 23:57:11 +00002647 ID.ConstantVal =
Owen Andersonbaf3c402009-07-29 18:55:55 +00002648 ConstantExpr::getShuffleVector(Elts[0], Elts[1],Elts[2]);
Chris Lattnerdf986172009-01-02 07:01:27 +00002649 } else if (Opc == Instruction::ExtractElement) {
2650 if (Elts.size() != 2)
2651 return Error(ID.Loc, "expected two operands to extractelement");
2652 if (!ExtractElementInst::isValidOperands(Elts[0], Elts[1]))
2653 return Error(ID.Loc, "invalid extractelement operands");
Owen Andersonbaf3c402009-07-29 18:55:55 +00002654 ID.ConstantVal = ConstantExpr::getExtractElement(Elts[0], Elts[1]);
Chris Lattnerdf986172009-01-02 07:01:27 +00002655 } else {
2656 assert(Opc == Instruction::InsertElement && "Unknown opcode");
2657 if (Elts.size() != 3)
2658 return Error(ID.Loc, "expected three operands to insertelement");
2659 if (!InsertElementInst::isValidOperands(Elts[0], Elts[1], Elts[2]))
2660 return Error(ID.Loc, "invalid insertelement operands");
Owen Andersonfba933c2009-07-01 23:57:11 +00002661 ID.ConstantVal =
Owen Andersonbaf3c402009-07-29 18:55:55 +00002662 ConstantExpr::getInsertElement(Elts[0], Elts[1],Elts[2]);
Chris Lattnerdf986172009-01-02 07:01:27 +00002663 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002664
Chris Lattnerdf986172009-01-02 07:01:27 +00002665 ID.Kind = ValID::t_Constant;
2666 return false;
2667 }
2668 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002669
Chris Lattnerdf986172009-01-02 07:01:27 +00002670 Lex.Lex();
2671 return false;
2672}
2673
2674/// ParseGlobalValue - Parse a global value with the specified type.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002675bool LLParser::ParseGlobalValue(Type *Ty, Constant *&C) {
Victor Hernandez92f238d2010-01-11 22:31:58 +00002676 C = 0;
Chris Lattnerdf986172009-01-02 07:01:27 +00002677 ValID ID;
Victor Hernandez92f238d2010-01-11 22:31:58 +00002678 Value *V = NULL;
2679 bool Parsed = ParseValID(ID) ||
2680 ConvertValIDToValue(Ty, ID, V, NULL);
2681 if (V && !(C = dyn_cast<Constant>(V)))
2682 return Error(ID.Loc, "global values must be constants");
2683 return Parsed;
Chris Lattnerdf986172009-01-02 07:01:27 +00002684}
2685
Victor Hernandez92f238d2010-01-11 22:31:58 +00002686bool LLParser::ParseGlobalTypeAndValue(Constant *&V) {
Chris Lattner1afcace2011-07-09 17:41:24 +00002687 Type *Ty = 0;
2688 return ParseType(Ty) ||
2689 ParseGlobalValue(Ty, V);
Victor Hernandez92f238d2010-01-11 22:31:58 +00002690}
2691
2692/// ParseGlobalValueVector
2693/// ::= /*empty*/
2694/// ::= TypeAndValue (',' TypeAndValue)*
2695bool LLParser::ParseGlobalValueVector(SmallVectorImpl<Constant*> &Elts) {
2696 // Empty list.
2697 if (Lex.getKind() == lltok::rbrace ||
2698 Lex.getKind() == lltok::rsquare ||
2699 Lex.getKind() == lltok::greater ||
2700 Lex.getKind() == lltok::rparen)
2701 return false;
2702
2703 Constant *C;
2704 if (ParseGlobalTypeAndValue(C)) return true;
2705 Elts.push_back(C);
2706
2707 while (EatIfPresent(lltok::comma)) {
2708 if (ParseGlobalTypeAndValue(C)) return true;
2709 Elts.push_back(C);
2710 }
2711
2712 return false;
2713}
2714
Dan Gohman309b3af2010-08-24 02:24:03 +00002715bool LLParser::ParseMetadataListValue(ValID &ID, PerFunctionState *PFS) {
2716 assert(Lex.getKind() == lltok::lbrace);
2717 Lex.Lex();
2718
2719 SmallVector<Value*, 16> Elts;
2720 if (ParseMDNodeVector(Elts, PFS) ||
2721 ParseToken(lltok::rbrace, "expected end of metadata node"))
2722 return true;
2723
Jay Foadec9186b2011-04-21 19:59:31 +00002724 ID.MDNodeVal = MDNode::get(Context, Elts);
Dan Gohman309b3af2010-08-24 02:24:03 +00002725 ID.Kind = ValID::t_MDNode;
2726 return false;
2727}
2728
Dan Gohman83448032010-07-14 18:26:50 +00002729/// ParseMetadataValue
2730/// ::= !42
2731/// ::= !{...}
2732/// ::= !"string"
2733bool LLParser::ParseMetadataValue(ValID &ID, PerFunctionState *PFS) {
2734 assert(Lex.getKind() == lltok::exclaim);
2735 Lex.Lex();
2736
2737 // MDNode:
2738 // !{ ... }
Dan Gohman309b3af2010-08-24 02:24:03 +00002739 if (Lex.getKind() == lltok::lbrace)
2740 return ParseMetadataListValue(ID, PFS);
Dan Gohman83448032010-07-14 18:26:50 +00002741
2742 // Standalone metadata reference
2743 // !42
2744 if (Lex.getKind() == lltok::APSInt) {
2745 if (ParseMDNodeID(ID.MDNodeVal)) return true;
2746 ID.Kind = ValID::t_MDNode;
2747 return false;
2748 }
2749
2750 // MDString:
2751 // ::= '!' STRINGCONSTANT
2752 if (ParseMDString(ID.MDStringVal)) return true;
2753 ID.Kind = ValID::t_MDString;
2754 return false;
2755}
2756
Victor Hernandez92f238d2010-01-11 22:31:58 +00002757
2758//===----------------------------------------------------------------------===//
2759// Function Parsing.
2760//===----------------------------------------------------------------------===//
2761
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002762bool LLParser::ConvertValIDToValue(Type *Ty, ValID &ID, Value *&V,
Victor Hernandez92f238d2010-01-11 22:31:58 +00002763 PerFunctionState *PFS) {
Duncan Sands1df98592010-02-16 11:11:14 +00002764 if (Ty->isFunctionTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002765 return Error(ID.Loc, "functions are not values, refer to them as pointers");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002766
Chris Lattnerdf986172009-01-02 07:01:27 +00002767 switch (ID.Kind) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002768 case ValID::t_LocalID:
Victor Hernandez92f238d2010-01-11 22:31:58 +00002769 if (!PFS) return Error(ID.Loc, "invalid use of function-local name");
2770 V = PFS->GetVal(ID.UIntVal, Ty, ID.Loc);
2771 return (V == 0);
Chris Lattnerdf986172009-01-02 07:01:27 +00002772 case ValID::t_LocalName:
Victor Hernandez92f238d2010-01-11 22:31:58 +00002773 if (!PFS) return Error(ID.Loc, "invalid use of function-local name");
2774 V = PFS->GetVal(ID.StrVal, Ty, ID.Loc);
2775 return (V == 0);
2776 case ValID::t_InlineAsm: {
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002777 PointerType *PTy = dyn_cast<PointerType>(Ty);
Michael Ilseman407a6162012-11-15 22:34:00 +00002778 FunctionType *FTy =
Victor Hernandez92f238d2010-01-11 22:31:58 +00002779 PTy ? dyn_cast<FunctionType>(PTy->getElementType()) : 0;
2780 if (!FTy || !InlineAsm::Verify(FTy, ID.StrVal2))
2781 return Error(ID.Loc, "invalid type for inline asm constraint string");
Chad Rosier36547342012-09-05 00:08:17 +00002782 V = InlineAsm::get(FTy, ID.StrVal, ID.StrVal2, ID.UIntVal&1,
Chad Rosier581600b2012-09-05 19:00:49 +00002783 (ID.UIntVal>>1)&1, (InlineAsm::AsmDialect(ID.UIntVal>>2)));
Victor Hernandez92f238d2010-01-11 22:31:58 +00002784 return false;
2785 }
2786 case ValID::t_MDNode:
2787 if (!Ty->isMetadataTy())
2788 return Error(ID.Loc, "metadata value must have metadata type");
2789 V = ID.MDNodeVal;
2790 return false;
2791 case ValID::t_MDString:
2792 if (!Ty->isMetadataTy())
2793 return Error(ID.Loc, "metadata value must have metadata type");
2794 V = ID.MDStringVal;
2795 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00002796 case ValID::t_GlobalName:
2797 V = GetGlobalVal(ID.StrVal, Ty, ID.Loc);
2798 return V == 0;
2799 case ValID::t_GlobalID:
2800 V = GetGlobalVal(ID.UIntVal, Ty, ID.Loc);
2801 return V == 0;
2802 case ValID::t_APSInt:
Duncan Sands1df98592010-02-16 11:11:14 +00002803 if (!Ty->isIntegerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002804 return Error(ID.Loc, "integer constant must have integer type");
Jay Foad40f8f622010-12-07 08:25:19 +00002805 ID.APSIntVal = ID.APSIntVal.extOrTrunc(Ty->getPrimitiveSizeInBits());
Owen Andersoneed707b2009-07-24 23:12:02 +00002806 V = ConstantInt::get(Context, ID.APSIntVal);
Chris Lattnerdf986172009-01-02 07:01:27 +00002807 return false;
2808 case ValID::t_APFloat:
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00002809 if (!Ty->isFloatingPointTy() ||
Chris Lattnerdf986172009-01-02 07:01:27 +00002810 !ConstantFP::isValueValidForType(Ty, ID.APFloatVal))
2811 return Error(ID.Loc, "floating point constant invalid for type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002812
Dan Gohmance163392011-12-17 00:04:22 +00002813 // The lexer has no type info, so builds all half, float, and double FP
2814 // constants as double. Fix this here. Long double does not need this.
2815 if (&ID.APFloatVal.getSemantics() == &APFloat::IEEEdouble) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002816 bool Ignored;
Dan Gohmance163392011-12-17 00:04:22 +00002817 if (Ty->isHalfTy())
2818 ID.APFloatVal.convert(APFloat::IEEEhalf, APFloat::rmNearestTiesToEven,
2819 &Ignored);
2820 else if (Ty->isFloatTy())
2821 ID.APFloatVal.convert(APFloat::IEEEsingle, APFloat::rmNearestTiesToEven,
2822 &Ignored);
Chris Lattnerdf986172009-01-02 07:01:27 +00002823 }
Owen Anderson6f83c9c2009-07-27 20:59:43 +00002824 V = ConstantFP::get(Context, ID.APFloatVal);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002825
Chris Lattner959873d2009-01-05 18:24:23 +00002826 if (V->getType() != Ty)
2827 return Error(ID.Loc, "floating point constant does not have type '" +
Chris Lattner0cd0d882011-06-18 21:18:23 +00002828 getTypeString(Ty) + "'");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002829
Chris Lattnerdf986172009-01-02 07:01:27 +00002830 return false;
2831 case ValID::t_Null:
Duncan Sands1df98592010-02-16 11:11:14 +00002832 if (!Ty->isPointerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002833 return Error(ID.Loc, "null must be a pointer type");
Owen Anderson9e9a0d52009-07-30 23:03:37 +00002834 V = ConstantPointerNull::get(cast<PointerType>(Ty));
Chris Lattnerdf986172009-01-02 07:01:27 +00002835 return false;
2836 case ValID::t_Undef:
Chris Lattnere67c1aa2009-01-05 08:13:38 +00002837 // FIXME: LabelTy should not be a first-class type.
Chris Lattner1afcace2011-07-09 17:41:24 +00002838 if (!Ty->isFirstClassType() || Ty->isLabelTy())
Chris Lattnere67c1aa2009-01-05 08:13:38 +00002839 return Error(ID.Loc, "invalid type for undef constant");
Owen Anderson9e9a0d52009-07-30 23:03:37 +00002840 V = UndefValue::get(Ty);
Chris Lattnerdf986172009-01-02 07:01:27 +00002841 return false;
Chris Lattner081b5052009-01-05 07:52:51 +00002842 case ValID::t_EmptyArray:
Duncan Sands1df98592010-02-16 11:11:14 +00002843 if (!Ty->isArrayTy() || cast<ArrayType>(Ty)->getNumElements() != 0)
Chris Lattner081b5052009-01-05 07:52:51 +00002844 return Error(ID.Loc, "invalid empty array initializer");
Owen Anderson9e9a0d52009-07-30 23:03:37 +00002845 V = UndefValue::get(Ty);
Chris Lattner081b5052009-01-05 07:52:51 +00002846 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00002847 case ValID::t_Zero:
Chris Lattnere67c1aa2009-01-05 08:13:38 +00002848 // FIXME: LabelTy should not be a first-class type.
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00002849 if (!Ty->isFirstClassType() || Ty->isLabelTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002850 return Error(ID.Loc, "invalid type for null constant");
Owen Andersona7235ea2009-07-31 20:28:14 +00002851 V = Constant::getNullValue(Ty);
Chris Lattnerdf986172009-01-02 07:01:27 +00002852 return false;
2853 case ValID::t_Constant:
Chris Lattner61c70e92010-08-28 04:09:24 +00002854 if (ID.ConstantVal->getType() != Ty)
Chris Lattnerdf986172009-01-02 07:01:27 +00002855 return Error(ID.Loc, "constant expression type mismatch");
Chris Lattnerfdfeb692010-02-12 20:49:41 +00002856
Chris Lattnerdf986172009-01-02 07:01:27 +00002857 V = ID.ConstantVal;
2858 return false;
Chris Lattner1afcace2011-07-09 17:41:24 +00002859 case ValID::t_ConstantStruct:
2860 case ValID::t_PackedConstantStruct:
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002861 if (StructType *ST = dyn_cast<StructType>(Ty)) {
Chris Lattner1afcace2011-07-09 17:41:24 +00002862 if (ST->getNumElements() != ID.UIntVal)
2863 return Error(ID.Loc,
2864 "initializer with struct type has wrong # elements");
2865 if (ST->isPacked() != (ID.Kind == ValID::t_PackedConstantStruct))
2866 return Error(ID.Loc, "packed'ness of initializer and type don't match");
Michael Ilseman407a6162012-11-15 22:34:00 +00002867
Chris Lattner1afcace2011-07-09 17:41:24 +00002868 // Verify that the elements are compatible with the structtype.
2869 for (unsigned i = 0, e = ID.UIntVal; i != e; ++i)
2870 if (ID.ConstantStructElts[i]->getType() != ST->getElementType(i))
2871 return Error(ID.Loc, "element " + Twine(i) +
2872 " of struct initializer doesn't match struct element type");
Michael Ilseman407a6162012-11-15 22:34:00 +00002873
Frits van Bommel39b5abf2011-07-18 12:00:32 +00002874 V = ConstantStruct::get(ST, makeArrayRef(ID.ConstantStructElts,
2875 ID.UIntVal));
Chris Lattner1afcace2011-07-09 17:41:24 +00002876 } else
2877 return Error(ID.Loc, "constant expression type mismatch");
2878 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00002879 }
Chandler Carruth732f05c2012-01-10 18:08:01 +00002880 llvm_unreachable("Invalid ValID");
Chris Lattnerdf986172009-01-02 07:01:27 +00002881}
Daniel Dunbara279bc32009-09-20 02:20:51 +00002882
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002883bool LLParser::ParseValue(Type *Ty, Value *&V, PerFunctionState *PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002884 V = 0;
2885 ValID ID;
Chris Lattner1afcace2011-07-09 17:41:24 +00002886 return ParseValID(ID, PFS) ||
2887 ConvertValIDToValue(Ty, ID, V, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00002888}
2889
Chris Lattner1afcace2011-07-09 17:41:24 +00002890bool LLParser::ParseTypeAndValue(Value *&V, PerFunctionState *PFS) {
2891 Type *Ty = 0;
2892 return ParseType(Ty) ||
2893 ParseValue(Ty, V, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00002894}
2895
Chris Lattnerf9be95f2009-10-27 19:13:16 +00002896bool LLParser::ParseTypeAndBasicBlock(BasicBlock *&BB, LocTy &Loc,
2897 PerFunctionState &PFS) {
2898 Value *V;
2899 Loc = Lex.getLoc();
2900 if (ParseTypeAndValue(V, PFS)) return true;
2901 if (!isa<BasicBlock>(V))
2902 return Error(Loc, "expected a basic block");
2903 BB = cast<BasicBlock>(V);
2904 return false;
2905}
2906
2907
Chris Lattnerdf986172009-01-02 07:01:27 +00002908/// FunctionHeader
2909/// ::= OptionalLinkage OptionalVisibility OptionalCallingConv OptRetAttrs
Rafael Espindolabea46262011-01-08 16:42:36 +00002910/// OptUnnamedAddr Type GlobalName '(' ArgList ')' OptFuncAttrs OptSection
Chris Lattnerdf986172009-01-02 07:01:27 +00002911/// OptionalAlign OptGC
2912bool LLParser::ParseFunctionHeader(Function *&Fn, bool isDefine) {
2913 // Parse the linkage.
2914 LocTy LinkageLoc = Lex.getLoc();
2915 unsigned Linkage;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002916
Kostya Serebryany164b86b2012-01-20 17:56:17 +00002917 unsigned Visibility;
Bill Wendling702cc912012-10-15 20:35:56 +00002918 AttrBuilder RetAttrs;
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00002919 CallingConv::ID CC;
Chris Lattner1afcace2011-07-09 17:41:24 +00002920 Type *RetType = 0;
Chris Lattnerdf986172009-01-02 07:01:27 +00002921 LocTy RetTypeLoc = Lex.getLoc();
2922 if (ParseOptionalLinkage(Linkage) ||
2923 ParseOptionalVisibility(Visibility) ||
2924 ParseOptionalCallingConv(CC) ||
Bill Wendlinge01b81b2012-12-04 23:40:58 +00002925 ParseOptionalReturnAttrs(RetAttrs) ||
Chris Lattnera9a9e072009-03-09 04:49:14 +00002926 ParseType(RetType, RetTypeLoc, true /*void allowed*/))
Chris Lattnerdf986172009-01-02 07:01:27 +00002927 return true;
2928
2929 // Verify that the linkage is ok.
2930 switch ((GlobalValue::LinkageTypes)Linkage) {
2931 case GlobalValue::ExternalLinkage:
2932 break; // always ok.
2933 case GlobalValue::DLLImportLinkage:
Duncan Sands5f4ee1f2009-03-11 08:08:06 +00002934 case GlobalValue::ExternalWeakLinkage:
Chris Lattnerdf986172009-01-02 07:01:27 +00002935 if (isDefine)
2936 return Error(LinkageLoc, "invalid linkage for function definition");
2937 break;
Rafael Espindolabb46f522009-01-15 20:18:42 +00002938 case GlobalValue::PrivateLinkage:
Bill Wendling3d10a5a2009-07-20 01:03:30 +00002939 case GlobalValue::LinkerPrivateLinkage:
Bill Wendling5e721d72010-07-01 21:55:59 +00002940 case GlobalValue::LinkerPrivateWeakLinkage:
Chris Lattnerdf986172009-01-02 07:01:27 +00002941 case GlobalValue::InternalLinkage:
Nick Lewycky55f64db2009-04-13 07:02:02 +00002942 case GlobalValue::AvailableExternallyLinkage:
Duncan Sands667d4b82009-03-07 15:45:40 +00002943 case GlobalValue::LinkOnceAnyLinkage:
2944 case GlobalValue::LinkOnceODRLinkage:
Bill Wendling32811be2012-08-17 18:33:14 +00002945 case GlobalValue::LinkOnceODRAutoHideLinkage:
Duncan Sands667d4b82009-03-07 15:45:40 +00002946 case GlobalValue::WeakAnyLinkage:
2947 case GlobalValue::WeakODRLinkage:
Chris Lattnerdf986172009-01-02 07:01:27 +00002948 case GlobalValue::DLLExportLinkage:
2949 if (!isDefine)
2950 return Error(LinkageLoc, "invalid linkage for function declaration");
2951 break;
2952 case GlobalValue::AppendingLinkage:
Duncan Sands4dc2b392009-03-11 20:14:15 +00002953 case GlobalValue::CommonLinkage:
Chris Lattnerdf986172009-01-02 07:01:27 +00002954 return Error(LinkageLoc, "invalid function linkage type");
2955 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002956
Chris Lattner1afcace2011-07-09 17:41:24 +00002957 if (!FunctionType::isValidReturnType(RetType))
Chris Lattnerdf986172009-01-02 07:01:27 +00002958 return Error(RetTypeLoc, "invalid function return type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002959
Chris Lattnerdf986172009-01-02 07:01:27 +00002960 LocTy NameLoc = Lex.getLoc();
Chris Lattnerf570e622009-02-18 21:48:13 +00002961
2962 std::string FunctionName;
2963 if (Lex.getKind() == lltok::GlobalVar) {
2964 FunctionName = Lex.getStrVal();
2965 } else if (Lex.getKind() == lltok::GlobalID) { // @42 is ok.
2966 unsigned NameID = Lex.getUIntVal();
2967
2968 if (NameID != NumberedVals.size())
2969 return TokError("function expected to be numbered '%" +
Benjamin Kramerd1e17032010-09-27 17:42:11 +00002970 Twine(NumberedVals.size()) + "'");
Chris Lattnerf570e622009-02-18 21:48:13 +00002971 } else {
2972 return TokError("expected function name");
2973 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002974
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002975 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +00002976
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002977 if (Lex.getKind() != lltok::lparen)
Chris Lattnerdf986172009-01-02 07:01:27 +00002978 return TokError("expected '(' in function argument list");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002979
Chris Lattner1afcace2011-07-09 17:41:24 +00002980 SmallVector<ArgInfo, 8> ArgList;
Chris Lattnerdf986172009-01-02 07:01:27 +00002981 bool isVarArg;
Bill Wendling702cc912012-10-15 20:35:56 +00002982 AttrBuilder FuncAttrs;
Bill Wendlingbaad55c2013-02-08 06:32:06 +00002983 std::vector<unsigned> FwdRefAttrGrps;
Bill Wendling143d4642013-02-22 00:12:35 +00002984 LocTy NoBuiltinLoc;
Chris Lattnerdf986172009-01-02 07:01:27 +00002985 std::string Section;
Chris Lattnerdf986172009-01-02 07:01:27 +00002986 unsigned Alignment;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002987 std::string GC;
Rafael Espindola3971df52011-01-25 19:09:56 +00002988 bool UnnamedAddr;
2989 LocTy UnnamedAddrLoc;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002990
Chris Lattner1afcace2011-07-09 17:41:24 +00002991 if (ParseArgumentList(ArgList, isVarArg) ||
Rafael Espindola3971df52011-01-25 19:09:56 +00002992 ParseOptionalToken(lltok::kw_unnamed_addr, UnnamedAddr,
2993 &UnnamedAddrLoc) ||
Bill Wendling143d4642013-02-22 00:12:35 +00002994 ParseFnAttributeValuePairs(FuncAttrs, FwdRefAttrGrps, false,
2995 NoBuiltinLoc) ||
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002996 (EatIfPresent(lltok::kw_section) &&
2997 ParseStringConstant(Section)) ||
2998 ParseOptionalAlignment(Alignment) ||
2999 (EatIfPresent(lltok::kw_gc) &&
3000 ParseStringConstant(GC)))
3001 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00003002
Bill Wendling143d4642013-02-22 00:12:35 +00003003 if (FuncAttrs.contains(Attribute::NoBuiltin))
3004 return Error(NoBuiltinLoc, "'nobuiltin' attribute not valid on function");
3005
Chris Lattnerdf986172009-01-02 07:01:27 +00003006 // If the alignment was parsed as an attribute, move to the alignment field.
Bill Wendlingf385f4c2012-10-08 23:27:46 +00003007 if (FuncAttrs.hasAlignmentAttr()) {
Bill Wendlingef99fe82012-09-21 15:26:31 +00003008 Alignment = FuncAttrs.getAlignment();
Bill Wendling034b94b2012-12-19 07:18:57 +00003009 FuncAttrs.removeAttribute(Attribute::Alignment);
Chris Lattnerdf986172009-01-02 07:01:27 +00003010 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003011
Chris Lattnerdf986172009-01-02 07:01:27 +00003012 // Okay, if we got here, the function is syntactically valid. Convert types
3013 // and do semantic checks.
Jay Foad5fdd6c82011-07-12 14:06:48 +00003014 std::vector<Type*> ParamTypeList;
Bill Wendlinga1683d62013-01-27 02:24:02 +00003015 SmallVector<AttributeSet, 8> Attrs;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003016
Bill Wendlinge603fe42012-09-19 23:54:18 +00003017 if (RetAttrs.hasAttributes())
Bill Wendlinga1683d62013-01-27 02:24:02 +00003018 Attrs.push_back(AttributeSet::get(RetType->getContext(),
3019 AttributeSet::ReturnIndex,
3020 RetAttrs));
Daniel Dunbara279bc32009-09-20 02:20:51 +00003021
Chris Lattnerdf986172009-01-02 07:01:27 +00003022 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
Chris Lattner1afcace2011-07-09 17:41:24 +00003023 ParamTypeList.push_back(ArgList[i].Ty);
Bill Wendling73dee182013-01-31 00:29:54 +00003024 if (ArgList[i].Attrs.hasAttributes(i + 1)) {
3025 AttrBuilder B(ArgList[i].Attrs, i + 1);
Bill Wendlinga1683d62013-01-27 02:24:02 +00003026 Attrs.push_back(AttributeSet::get(RetType->getContext(), i + 1, B));
3027 }
Chris Lattnerdf986172009-01-02 07:01:27 +00003028 }
3029
Bill Wendlinge603fe42012-09-19 23:54:18 +00003030 if (FuncAttrs.hasAttributes())
Bill Wendlinga1683d62013-01-27 02:24:02 +00003031 Attrs.push_back(AttributeSet::get(RetType->getContext(),
3032 AttributeSet::FunctionIndex,
3033 FuncAttrs));
Chris Lattnerdf986172009-01-02 07:01:27 +00003034
Bill Wendling99faa3b2012-12-07 23:16:57 +00003035 AttributeSet PAL = AttributeSet::get(Context, Attrs);
Daniel Dunbara279bc32009-09-20 02:20:51 +00003036
Bill Wendling94e94b32012-12-30 13:50:49 +00003037 if (PAL.hasAttribute(1, Attribute::StructRet) && !RetType->isVoidTy())
Daniel Dunbara279bc32009-09-20 02:20:51 +00003038 return Error(RetTypeLoc, "functions with 'sret' argument must return void");
3039
Chris Lattnerdb125cf2011-07-18 04:54:35 +00003040 FunctionType *FT =
Owen Andersondebcb012009-07-29 22:17:13 +00003041 FunctionType::get(RetType, ParamTypeList, isVarArg);
Chris Lattnerdb125cf2011-07-18 04:54:35 +00003042 PointerType *PFT = PointerType::getUnqual(FT);
Chris Lattnerdf986172009-01-02 07:01:27 +00003043
3044 Fn = 0;
3045 if (!FunctionName.empty()) {
3046 // If this was a definition of a forward reference, remove the definition
3047 // from the forward reference table and fill in the forward ref.
3048 std::map<std::string, std::pair<GlobalValue*, LocTy> >::iterator FRVI =
3049 ForwardRefVals.find(FunctionName);
3050 if (FRVI != ForwardRefVals.end()) {
3051 Fn = M->getFunction(FunctionName);
Nick Lewycky64ea2752012-10-11 00:38:25 +00003052 if (!Fn)
3053 return Error(FRVI->second.second, "invalid forward reference to "
3054 "function as global value!");
Chris Lattnerf1cfb952010-04-20 04:49:11 +00003055 if (Fn->getType() != PFT)
3056 return Error(FRVI->second.second, "invalid forward reference to "
3057 "function '" + FunctionName + "' with wrong type!");
Michael Ilseman407a6162012-11-15 22:34:00 +00003058
Chris Lattnerdf986172009-01-02 07:01:27 +00003059 ForwardRefVals.erase(FRVI);
3060 } else if ((Fn = M->getFunction(FunctionName))) {
Chris Lattnerd5890992011-06-17 07:06:44 +00003061 // Reject redefinitions.
3062 return Error(NameLoc, "invalid redefinition of function '" +
3063 FunctionName + "'");
Chris Lattner1d871c52009-10-25 23:22:50 +00003064 } else if (M->getNamedValue(FunctionName)) {
3065 return Error(NameLoc, "redefinition of function '@" + FunctionName + "'");
Chris Lattnerdf986172009-01-02 07:01:27 +00003066 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003067
Dan Gohman41905542009-08-29 23:37:49 +00003068 } else {
Chris Lattnerdf986172009-01-02 07:01:27 +00003069 // If this is a definition of a forward referenced function, make sure the
3070 // types agree.
3071 std::map<unsigned, std::pair<GlobalValue*, LocTy> >::iterator I
3072 = ForwardRefValIDs.find(NumberedVals.size());
3073 if (I != ForwardRefValIDs.end()) {
3074 Fn = cast<Function>(I->second.first);
3075 if (Fn->getType() != PFT)
3076 return Error(NameLoc, "type of definition and forward reference of '@" +
Benjamin Kramerd1e17032010-09-27 17:42:11 +00003077 Twine(NumberedVals.size()) + "' disagree");
Chris Lattnerdf986172009-01-02 07:01:27 +00003078 ForwardRefValIDs.erase(I);
3079 }
3080 }
3081
3082 if (Fn == 0)
3083 Fn = Function::Create(FT, GlobalValue::ExternalLinkage, FunctionName, M);
3084 else // Move the forward-reference to the correct spot in the module.
3085 M->getFunctionList().splice(M->end(), M->getFunctionList(), Fn);
3086
3087 if (FunctionName.empty())
3088 NumberedVals.push_back(Fn);
Daniel Dunbara279bc32009-09-20 02:20:51 +00003089
Chris Lattnerdf986172009-01-02 07:01:27 +00003090 Fn->setLinkage((GlobalValue::LinkageTypes)Linkage);
3091 Fn->setVisibility((GlobalValue::VisibilityTypes)Visibility);
3092 Fn->setCallingConv(CC);
3093 Fn->setAttributes(PAL);
Rafael Espindolabea46262011-01-08 16:42:36 +00003094 Fn->setUnnamedAddr(UnnamedAddr);
Chris Lattnerdf986172009-01-02 07:01:27 +00003095 Fn->setAlignment(Alignment);
3096 Fn->setSection(Section);
3097 if (!GC.empty()) Fn->setGC(GC.c_str());
Bill Wendlingbaad55c2013-02-08 06:32:06 +00003098 ForwardRefAttrGroups[Fn] = FwdRefAttrGrps;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003099
Chris Lattnerdf986172009-01-02 07:01:27 +00003100 // Add all of the arguments we parsed to the function.
3101 Function::arg_iterator ArgIt = Fn->arg_begin();
3102 for (unsigned i = 0, e = ArgList.size(); i != e; ++i, ++ArgIt) {
3103 // If the argument has a name, insert it into the argument symbol table.
3104 if (ArgList[i].Name.empty()) continue;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003105
Chris Lattnerdf986172009-01-02 07:01:27 +00003106 // Set the name, if it conflicted, it will be auto-renamed.
3107 ArgIt->setName(ArgList[i].Name);
Daniel Dunbara279bc32009-09-20 02:20:51 +00003108
Benjamin Krameraf812352010-10-16 11:28:23 +00003109 if (ArgIt->getName() != ArgList[i].Name)
Chris Lattnerdf986172009-01-02 07:01:27 +00003110 return Error(ArgList[i].Loc, "redefinition of argument '%" +
3111 ArgList[i].Name + "'");
3112 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003113
Chris Lattnerdf986172009-01-02 07:01:27 +00003114 return false;
3115}
3116
3117
3118/// ParseFunctionBody
3119/// ::= '{' BasicBlock+ '}'
Chris Lattnerdf986172009-01-02 07:01:27 +00003120///
3121bool LLParser::ParseFunctionBody(Function &Fn) {
Chris Lattner6b7c89e2011-06-17 06:42:57 +00003122 if (Lex.getKind() != lltok::lbrace)
Chris Lattnerdf986172009-01-02 07:01:27 +00003123 return TokError("expected '{' in function body");
3124 Lex.Lex(); // eat the {.
Daniel Dunbara279bc32009-09-20 02:20:51 +00003125
Chris Lattner09d9ef42009-10-28 03:39:23 +00003126 int FunctionNumber = -1;
3127 if (!Fn.hasName()) FunctionNumber = NumberedVals.size()-1;
Michael Ilseman407a6162012-11-15 22:34:00 +00003128
Chris Lattner09d9ef42009-10-28 03:39:23 +00003129 PerFunctionState PFS(*this, Fn, FunctionNumber);
Daniel Dunbara279bc32009-09-20 02:20:51 +00003130
Chris Lattner2fdf8db2010-01-09 19:20:07 +00003131 // We need at least one basic block.
Chris Lattner6b7c89e2011-06-17 06:42:57 +00003132 if (Lex.getKind() == lltok::rbrace)
Chris Lattner2fdf8db2010-01-09 19:20:07 +00003133 return TokError("function body requires at least one basic block");
Michael Ilseman407a6162012-11-15 22:34:00 +00003134
Chris Lattner6b7c89e2011-06-17 06:42:57 +00003135 while (Lex.getKind() != lltok::rbrace)
Chris Lattnerdf986172009-01-02 07:01:27 +00003136 if (ParseBasicBlock(PFS)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003137
Chris Lattnerdf986172009-01-02 07:01:27 +00003138 // Eat the }.
3139 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +00003140
Chris Lattnerdf986172009-01-02 07:01:27 +00003141 // Verify function is ok.
Chris Lattner09d9ef42009-10-28 03:39:23 +00003142 return PFS.FinishFunction();
Chris Lattnerdf986172009-01-02 07:01:27 +00003143}
3144
3145/// ParseBasicBlock
3146/// ::= LabelStr? Instruction*
3147bool LLParser::ParseBasicBlock(PerFunctionState &PFS) {
3148 // If this basic block starts out with a name, remember it.
3149 std::string Name;
3150 LocTy NameLoc = Lex.getLoc();
3151 if (Lex.getKind() == lltok::LabelStr) {
3152 Name = Lex.getStrVal();
3153 Lex.Lex();
3154 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003155
Chris Lattnerdf986172009-01-02 07:01:27 +00003156 BasicBlock *BB = PFS.DefineBB(Name, NameLoc);
3157 if (BB == 0) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003158
Chris Lattnerdf986172009-01-02 07:01:27 +00003159 std::string NameStr;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003160
Chris Lattnerdf986172009-01-02 07:01:27 +00003161 // Parse the instructions in this block until we get a terminator.
3162 Instruction *Inst;
Chris Lattner1340dd32009-12-30 05:48:36 +00003163 SmallVector<std::pair<unsigned, MDNode *>, 4> MetadataOnInst;
Chris Lattnerdf986172009-01-02 07:01:27 +00003164 do {
3165 // This instruction may have three possibilities for a name: a) none
3166 // specified, b) name specified "%foo =", c) number specified: "%4 =".
3167 LocTy NameLoc = Lex.getLoc();
3168 int NameID = -1;
3169 NameStr = "";
Daniel Dunbara279bc32009-09-20 02:20:51 +00003170
Chris Lattnerdf986172009-01-02 07:01:27 +00003171 if (Lex.getKind() == lltok::LocalVarID) {
3172 NameID = Lex.getUIntVal();
3173 Lex.Lex();
3174 if (ParseToken(lltok::equal, "expected '=' after instruction id"))
3175 return true;
Chris Lattner7a1b9bd2011-06-17 06:36:20 +00003176 } else if (Lex.getKind() == lltok::LocalVar) {
Chris Lattnerdf986172009-01-02 07:01:27 +00003177 NameStr = Lex.getStrVal();
3178 Lex.Lex();
3179 if (ParseToken(lltok::equal, "expected '=' after instruction name"))
3180 return true;
3181 }
Devang Patelf633a062009-09-17 23:04:48 +00003182
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00003183 switch (ParseInstruction(Inst, BB, PFS)) {
Craig Topper85814382012-02-07 05:05:23 +00003184 default: llvm_unreachable("Unknown ParseInstruction result!");
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00003185 case InstError: return true;
3186 case InstNormal:
Chris Lattner4ba9d9b2010-04-07 04:08:57 +00003187 BB->getInstList().push_back(Inst);
3188
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00003189 // With a normal result, we check to see if the instruction is followed by
3190 // a comma and metadata.
3191 if (EatIfPresent(lltok::comma))
Dan Gohman9d072f52010-08-24 02:05:17 +00003192 if (ParseInstructionMetadata(Inst, &PFS))
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00003193 return true;
3194 break;
3195 case InstExtraComma:
Chris Lattner4ba9d9b2010-04-07 04:08:57 +00003196 BB->getInstList().push_back(Inst);
3197
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00003198 // If the instruction parser ate an extra comma at the end of it, it
3199 // *must* be followed by metadata.
Dan Gohman9d072f52010-08-24 02:05:17 +00003200 if (ParseInstructionMetadata(Inst, &PFS))
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00003201 return true;
Michael Ilseman407a6162012-11-15 22:34:00 +00003202 break;
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00003203 }
Devang Patelf633a062009-09-17 23:04:48 +00003204
Chris Lattnerdf986172009-01-02 07:01:27 +00003205 // Set the name on the instruction.
3206 if (PFS.SetInstName(NameID, NameStr, NameLoc, Inst)) return true;
3207 } while (!isa<TerminatorInst>(Inst));
Daniel Dunbara279bc32009-09-20 02:20:51 +00003208
Chris Lattnerdf986172009-01-02 07:01:27 +00003209 return false;
3210}
3211
3212//===----------------------------------------------------------------------===//
3213// Instruction Parsing.
3214//===----------------------------------------------------------------------===//
3215
3216/// ParseInstruction - Parse one of the many different instructions.
3217///
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00003218int LLParser::ParseInstruction(Instruction *&Inst, BasicBlock *BB,
3219 PerFunctionState &PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00003220 lltok::Kind Token = Lex.getKind();
3221 if (Token == lltok::Eof)
3222 return TokError("found end of file when expecting more instructions");
3223 LocTy Loc = Lex.getLoc();
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00003224 unsigned KeywordVal = Lex.getUIntVal();
Chris Lattnerdf986172009-01-02 07:01:27 +00003225 Lex.Lex(); // Eat the keyword.
Daniel Dunbara279bc32009-09-20 02:20:51 +00003226
Chris Lattnerdf986172009-01-02 07:01:27 +00003227 switch (Token) {
3228 default: return Error(Loc, "expected instruction opcode");
3229 // Terminator Instructions.
Owen Anderson1d0be152009-08-13 21:58:54 +00003230 case lltok::kw_unreachable: Inst = new UnreachableInst(Context); return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00003231 case lltok::kw_ret: return ParseRet(Inst, BB, PFS);
3232 case lltok::kw_br: return ParseBr(Inst, PFS);
3233 case lltok::kw_switch: return ParseSwitch(Inst, PFS);
Chris Lattnerab21db72009-10-28 00:19:10 +00003234 case lltok::kw_indirectbr: return ParseIndirectBr(Inst, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00003235 case lltok::kw_invoke: return ParseInvoke(Inst, PFS);
Bill Wendlingdccc03b2011-07-31 06:30:59 +00003236 case lltok::kw_resume: return ParseResume(Inst, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00003237 // Binary Operators.
3238 case lltok::kw_add:
3239 case lltok::kw_sub:
Chris Lattnerf067d582011-02-07 16:40:21 +00003240 case lltok::kw_mul:
3241 case lltok::kw_shl: {
Chris Lattnerf067d582011-02-07 16:40:21 +00003242 bool NUW = EatIfPresent(lltok::kw_nuw);
3243 bool NSW = EatIfPresent(lltok::kw_nsw);
3244 if (!NUW) NUW = EatIfPresent(lltok::kw_nuw);
Michael Ilseman407a6162012-11-15 22:34:00 +00003245
Chris Lattnerf067d582011-02-07 16:40:21 +00003246 if (ParseArithmetic(Inst, PFS, KeywordVal, 1)) return true;
Michael Ilseman407a6162012-11-15 22:34:00 +00003247
Chris Lattnerf067d582011-02-07 16:40:21 +00003248 if (NUW) cast<BinaryOperator>(Inst)->setHasNoUnsignedWrap(true);
3249 if (NSW) cast<BinaryOperator>(Inst)->setHasNoSignedWrap(true);
3250 return false;
Dan Gohman59858cf2009-07-27 16:11:46 +00003251 }
Dan Gohmanae3a0be2009-06-04 22:49:04 +00003252 case lltok::kw_fadd:
3253 case lltok::kw_fsub:
Michael Ilseman15c13d32012-11-27 00:42:44 +00003254 case lltok::kw_fmul:
3255 case lltok::kw_fdiv:
3256 case lltok::kw_frem: {
3257 FastMathFlags FMF = EatFastMathFlagsIfPresent();
3258 int Res = ParseArithmetic(Inst, PFS, KeywordVal, 2);
3259 if (Res != 0)
3260 return Res;
3261 if (FMF.any())
3262 Inst->setFastMathFlags(FMF);
3263 return 0;
3264 }
Dan Gohmanae3a0be2009-06-04 22:49:04 +00003265
Chris Lattner35bda892011-02-06 21:44:57 +00003266 case lltok::kw_sdiv:
Chris Lattnerf067d582011-02-07 16:40:21 +00003267 case lltok::kw_udiv:
3268 case lltok::kw_lshr:
3269 case lltok::kw_ashr: {
3270 bool Exact = EatIfPresent(lltok::kw_exact);
3271
3272 if (ParseArithmetic(Inst, PFS, KeywordVal, 1)) return true;
3273 if (Exact) cast<BinaryOperator>(Inst)->setIsExact(true);
3274 return false;
Dan Gohman59858cf2009-07-27 16:11:46 +00003275 }
3276
Chris Lattnerdf986172009-01-02 07:01:27 +00003277 case lltok::kw_urem:
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00003278 case lltok::kw_srem: return ParseArithmetic(Inst, PFS, KeywordVal, 1);
Chris Lattnerdf986172009-01-02 07:01:27 +00003279 case lltok::kw_and:
3280 case lltok::kw_or:
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00003281 case lltok::kw_xor: return ParseLogical(Inst, PFS, KeywordVal);
Chris Lattnerdf986172009-01-02 07:01:27 +00003282 case lltok::kw_icmp:
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00003283 case lltok::kw_fcmp: return ParseCompare(Inst, PFS, KeywordVal);
Chris Lattnerdf986172009-01-02 07:01:27 +00003284 // Casts.
3285 case lltok::kw_trunc:
3286 case lltok::kw_zext:
3287 case lltok::kw_sext:
3288 case lltok::kw_fptrunc:
3289 case lltok::kw_fpext:
3290 case lltok::kw_bitcast:
3291 case lltok::kw_uitofp:
3292 case lltok::kw_sitofp:
3293 case lltok::kw_fptoui:
Daniel Dunbara279bc32009-09-20 02:20:51 +00003294 case lltok::kw_fptosi:
Chris Lattnerdf986172009-01-02 07:01:27 +00003295 case lltok::kw_inttoptr:
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00003296 case lltok::kw_ptrtoint: return ParseCast(Inst, PFS, KeywordVal);
Chris Lattnerdf986172009-01-02 07:01:27 +00003297 // Other.
3298 case lltok::kw_select: return ParseSelect(Inst, PFS);
Chris Lattner0088a5c2009-01-05 08:18:44 +00003299 case lltok::kw_va_arg: return ParseVA_Arg(Inst, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00003300 case lltok::kw_extractelement: return ParseExtractElement(Inst, PFS);
3301 case lltok::kw_insertelement: return ParseInsertElement(Inst, PFS);
3302 case lltok::kw_shufflevector: return ParseShuffleVector(Inst, PFS);
3303 case lltok::kw_phi: return ParsePHI(Inst, PFS);
Bill Wendlinge6e88262011-08-12 20:24:12 +00003304 case lltok::kw_landingpad: return ParseLandingPad(Inst, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00003305 case lltok::kw_call: return ParseCall(Inst, PFS, false);
3306 case lltok::kw_tail: return ParseCall(Inst, PFS, true);
3307 // Memory.
Victor Hernandez13ad5aa2009-10-17 00:00:19 +00003308 case lltok::kw_alloca: return ParseAlloc(Inst, PFS);
Chris Lattnerfbe910e2011-11-27 06:56:53 +00003309 case lltok::kw_load: return ParseLoad(Inst, PFS);
3310 case lltok::kw_store: return ParseStore(Inst, PFS);
Eli Friedmanf03bb262011-08-12 22:50:01 +00003311 case lltok::kw_cmpxchg: return ParseCmpXchg(Inst, PFS);
3312 case lltok::kw_atomicrmw: return ParseAtomicRMW(Inst, PFS);
Eli Friedman47f35132011-07-25 23:16:38 +00003313 case lltok::kw_fence: return ParseFence(Inst, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00003314 case lltok::kw_getelementptr: return ParseGetElementPtr(Inst, PFS);
3315 case lltok::kw_extractvalue: return ParseExtractValue(Inst, PFS);
3316 case lltok::kw_insertvalue: return ParseInsertValue(Inst, PFS);
3317 }
3318}
3319
3320/// ParseCmpPredicate - Parse an integer or fp predicate, based on Kind.
3321bool LLParser::ParseCmpPredicate(unsigned &P, unsigned Opc) {
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00003322 if (Opc == Instruction::FCmp) {
Chris Lattnerdf986172009-01-02 07:01:27 +00003323 switch (Lex.getKind()) {
David Tweedd80d6082013-01-07 13:32:38 +00003324 default: return TokError("expected fcmp predicate (e.g. 'oeq')");
Chris Lattnerdf986172009-01-02 07:01:27 +00003325 case lltok::kw_oeq: P = CmpInst::FCMP_OEQ; break;
3326 case lltok::kw_one: P = CmpInst::FCMP_ONE; break;
3327 case lltok::kw_olt: P = CmpInst::FCMP_OLT; break;
3328 case lltok::kw_ogt: P = CmpInst::FCMP_OGT; break;
3329 case lltok::kw_ole: P = CmpInst::FCMP_OLE; break;
3330 case lltok::kw_oge: P = CmpInst::FCMP_OGE; break;
3331 case lltok::kw_ord: P = CmpInst::FCMP_ORD; break;
3332 case lltok::kw_uno: P = CmpInst::FCMP_UNO; break;
3333 case lltok::kw_ueq: P = CmpInst::FCMP_UEQ; break;
3334 case lltok::kw_une: P = CmpInst::FCMP_UNE; break;
3335 case lltok::kw_ult: P = CmpInst::FCMP_ULT; break;
3336 case lltok::kw_ugt: P = CmpInst::FCMP_UGT; break;
3337 case lltok::kw_ule: P = CmpInst::FCMP_ULE; break;
3338 case lltok::kw_uge: P = CmpInst::FCMP_UGE; break;
3339 case lltok::kw_true: P = CmpInst::FCMP_TRUE; break;
3340 case lltok::kw_false: P = CmpInst::FCMP_FALSE; break;
3341 }
3342 } else {
3343 switch (Lex.getKind()) {
David Tweedd80d6082013-01-07 13:32:38 +00003344 default: return TokError("expected icmp predicate (e.g. 'eq')");
Chris Lattnerdf986172009-01-02 07:01:27 +00003345 case lltok::kw_eq: P = CmpInst::ICMP_EQ; break;
3346 case lltok::kw_ne: P = CmpInst::ICMP_NE; break;
3347 case lltok::kw_slt: P = CmpInst::ICMP_SLT; break;
3348 case lltok::kw_sgt: P = CmpInst::ICMP_SGT; break;
3349 case lltok::kw_sle: P = CmpInst::ICMP_SLE; break;
3350 case lltok::kw_sge: P = CmpInst::ICMP_SGE; break;
3351 case lltok::kw_ult: P = CmpInst::ICMP_ULT; break;
3352 case lltok::kw_ugt: P = CmpInst::ICMP_UGT; break;
3353 case lltok::kw_ule: P = CmpInst::ICMP_ULE; break;
3354 case lltok::kw_uge: P = CmpInst::ICMP_UGE; break;
3355 }
3356 }
3357 Lex.Lex();
3358 return false;
3359}
3360
3361//===----------------------------------------------------------------------===//
3362// Terminator Instructions.
3363//===----------------------------------------------------------------------===//
3364
3365/// ParseRet - Parse a return instruction.
Chris Lattner3f3a0f62009-12-29 21:25:40 +00003366/// ::= 'ret' void (',' !dbg, !1)*
3367/// ::= 'ret' TypeAndValue (',' !dbg, !1)*
Chris Lattner437544f2011-06-17 06:49:41 +00003368bool LLParser::ParseRet(Instruction *&Inst, BasicBlock *BB,
Chris Lattner1afcace2011-07-09 17:41:24 +00003369 PerFunctionState &PFS) {
3370 SMLoc TypeLoc = Lex.getLoc();
3371 Type *Ty = 0;
Chris Lattnera9a9e072009-03-09 04:49:14 +00003372 if (ParseType(Ty, true /*void allowed*/)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003373
Chris Lattner1afcace2011-07-09 17:41:24 +00003374 Type *ResType = PFS.getFunction().getReturnType();
Michael Ilseman407a6162012-11-15 22:34:00 +00003375
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00003376 if (Ty->isVoidTy()) {
Chris Lattner1afcace2011-07-09 17:41:24 +00003377 if (!ResType->isVoidTy())
3378 return Error(TypeLoc, "value doesn't match function result type '" +
3379 getTypeString(ResType) + "'");
Michael Ilseman407a6162012-11-15 22:34:00 +00003380
Owen Anderson1d0be152009-08-13 21:58:54 +00003381 Inst = ReturnInst::Create(Context);
Chris Lattnerdf986172009-01-02 07:01:27 +00003382 return false;
3383 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003384
Chris Lattnerdf986172009-01-02 07:01:27 +00003385 Value *RV;
3386 if (ParseValue(Ty, RV, PFS)) return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00003387
Chris Lattner1afcace2011-07-09 17:41:24 +00003388 if (ResType != RV->getType())
3389 return Error(TypeLoc, "value doesn't match function result type '" +
3390 getTypeString(ResType) + "'");
Michael Ilseman407a6162012-11-15 22:34:00 +00003391
Owen Anderson1d0be152009-08-13 21:58:54 +00003392 Inst = ReturnInst::Create(Context, RV);
Chris Lattner437544f2011-06-17 06:49:41 +00003393 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00003394}
3395
3396
3397/// ParseBr
3398/// ::= 'br' TypeAndValue
3399/// ::= 'br' TypeAndValue ',' TypeAndValue ',' TypeAndValue
3400bool LLParser::ParseBr(Instruction *&Inst, PerFunctionState &PFS) {
3401 LocTy Loc, Loc2;
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003402 Value *Op0;
3403 BasicBlock *Op1, *Op2;
Chris Lattnerdf986172009-01-02 07:01:27 +00003404 if (ParseTypeAndValue(Op0, Loc, PFS)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003405
Chris Lattnerdf986172009-01-02 07:01:27 +00003406 if (BasicBlock *BB = dyn_cast<BasicBlock>(Op0)) {
3407 Inst = BranchInst::Create(BB);
3408 return false;
3409 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003410
Owen Anderson1d0be152009-08-13 21:58:54 +00003411 if (Op0->getType() != Type::getInt1Ty(Context))
Chris Lattnerdf986172009-01-02 07:01:27 +00003412 return Error(Loc, "branch condition must have 'i1' type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003413
Chris Lattnerdf986172009-01-02 07:01:27 +00003414 if (ParseToken(lltok::comma, "expected ',' after branch condition") ||
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003415 ParseTypeAndBasicBlock(Op1, Loc, PFS) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003416 ParseToken(lltok::comma, "expected ',' after true destination") ||
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003417 ParseTypeAndBasicBlock(Op2, Loc2, PFS))
Chris Lattnerdf986172009-01-02 07:01:27 +00003418 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003419
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003420 Inst = BranchInst::Create(Op1, Op2, Op0);
Chris Lattnerdf986172009-01-02 07:01:27 +00003421 return false;
3422}
3423
3424/// ParseSwitch
3425/// Instruction
3426/// ::= 'switch' TypeAndValue ',' TypeAndValue '[' JumpTable ']'
3427/// JumpTable
3428/// ::= (TypeAndValue ',' TypeAndValue)*
3429bool LLParser::ParseSwitch(Instruction *&Inst, PerFunctionState &PFS) {
3430 LocTy CondLoc, BBLoc;
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003431 Value *Cond;
3432 BasicBlock *DefaultBB;
Chris Lattnerdf986172009-01-02 07:01:27 +00003433 if (ParseTypeAndValue(Cond, CondLoc, PFS) ||
3434 ParseToken(lltok::comma, "expected ',' after switch condition") ||
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003435 ParseTypeAndBasicBlock(DefaultBB, BBLoc, PFS) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003436 ParseToken(lltok::lsquare, "expected '[' with switch table"))
3437 return true;
3438
Duncan Sands1df98592010-02-16 11:11:14 +00003439 if (!Cond->getType()->isIntegerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00003440 return Error(CondLoc, "switch condition must have integer type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003441
Chris Lattnerdf986172009-01-02 07:01:27 +00003442 // Parse the jump table pairs.
3443 SmallPtrSet<Value*, 32> SeenCases;
3444 SmallVector<std::pair<ConstantInt*, BasicBlock*>, 32> Table;
3445 while (Lex.getKind() != lltok::rsquare) {
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003446 Value *Constant;
3447 BasicBlock *DestBB;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003448
Chris Lattnerdf986172009-01-02 07:01:27 +00003449 if (ParseTypeAndValue(Constant, CondLoc, PFS) ||
3450 ParseToken(lltok::comma, "expected ',' after case value") ||
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003451 ParseTypeAndBasicBlock(DestBB, PFS))
Chris Lattnerdf986172009-01-02 07:01:27 +00003452 return true;
Michael Ilseman407a6162012-11-15 22:34:00 +00003453
Chris Lattnerdf986172009-01-02 07:01:27 +00003454 if (!SeenCases.insert(Constant))
3455 return Error(CondLoc, "duplicate case value in switch");
3456 if (!isa<ConstantInt>(Constant))
3457 return Error(CondLoc, "case value is not a constant integer");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003458
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003459 Table.push_back(std::make_pair(cast<ConstantInt>(Constant), DestBB));
Chris Lattnerdf986172009-01-02 07:01:27 +00003460 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003461
Chris Lattnerdf986172009-01-02 07:01:27 +00003462 Lex.Lex(); // Eat the ']'.
Daniel Dunbara279bc32009-09-20 02:20:51 +00003463
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003464 SwitchInst *SI = SwitchInst::Create(Cond, DefaultBB, Table.size());
Chris Lattnerdf986172009-01-02 07:01:27 +00003465 for (unsigned i = 0, e = Table.size(); i != e; ++i)
3466 SI->addCase(Table[i].first, Table[i].second);
3467 Inst = SI;
3468 return false;
3469}
3470
Chris Lattnerab21db72009-10-28 00:19:10 +00003471/// ParseIndirectBr
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003472/// Instruction
Chris Lattnerab21db72009-10-28 00:19:10 +00003473/// ::= 'indirectbr' TypeAndValue ',' '[' LabelList ']'
3474bool LLParser::ParseIndirectBr(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003475 LocTy AddrLoc;
3476 Value *Address;
3477 if (ParseTypeAndValue(Address, AddrLoc, PFS) ||
Chris Lattnerab21db72009-10-28 00:19:10 +00003478 ParseToken(lltok::comma, "expected ',' after indirectbr address") ||
3479 ParseToken(lltok::lsquare, "expected '[' with indirectbr"))
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003480 return true;
Michael Ilseman407a6162012-11-15 22:34:00 +00003481
Duncan Sands1df98592010-02-16 11:11:14 +00003482 if (!Address->getType()->isPointerTy())
Chris Lattnerab21db72009-10-28 00:19:10 +00003483 return Error(AddrLoc, "indirectbr address must have pointer type");
Michael Ilseman407a6162012-11-15 22:34:00 +00003484
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003485 // Parse the destination list.
3486 SmallVector<BasicBlock*, 16> DestList;
Michael Ilseman407a6162012-11-15 22:34:00 +00003487
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003488 if (Lex.getKind() != lltok::rsquare) {
3489 BasicBlock *DestBB;
3490 if (ParseTypeAndBasicBlock(DestBB, PFS))
3491 return true;
3492 DestList.push_back(DestBB);
Michael Ilseman407a6162012-11-15 22:34:00 +00003493
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003494 while (EatIfPresent(lltok::comma)) {
3495 if (ParseTypeAndBasicBlock(DestBB, PFS))
3496 return true;
3497 DestList.push_back(DestBB);
3498 }
3499 }
Michael Ilseman407a6162012-11-15 22:34:00 +00003500
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003501 if (ParseToken(lltok::rsquare, "expected ']' at end of block list"))
3502 return true;
3503
Chris Lattnerab21db72009-10-28 00:19:10 +00003504 IndirectBrInst *IBI = IndirectBrInst::Create(Address, DestList.size());
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003505 for (unsigned i = 0, e = DestList.size(); i != e; ++i)
3506 IBI->addDestination(DestList[i]);
3507 Inst = IBI;
3508 return false;
3509}
3510
3511
Chris Lattnerdf986172009-01-02 07:01:27 +00003512/// ParseInvoke
3513/// ::= 'invoke' OptionalCallingConv OptionalAttrs Type Value ParamList
3514/// OptionalAttrs 'to' TypeAndValue 'unwind' TypeAndValue
3515bool LLParser::ParseInvoke(Instruction *&Inst, PerFunctionState &PFS) {
3516 LocTy CallLoc = Lex.getLoc();
Bill Wendling702cc912012-10-15 20:35:56 +00003517 AttrBuilder RetAttrs, FnAttrs;
Bill Wendlingbaad55c2013-02-08 06:32:06 +00003518 std::vector<unsigned> FwdRefAttrGrps;
Bill Wendling143d4642013-02-22 00:12:35 +00003519 LocTy NoBuiltinLoc;
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00003520 CallingConv::ID CC;
Chris Lattner1afcace2011-07-09 17:41:24 +00003521 Type *RetType = 0;
Chris Lattnerdf986172009-01-02 07:01:27 +00003522 LocTy RetTypeLoc;
3523 ValID CalleeID;
3524 SmallVector<ParamInfo, 16> ArgList;
3525
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003526 BasicBlock *NormalBB, *UnwindBB;
Chris Lattnerdf986172009-01-02 07:01:27 +00003527 if (ParseOptionalCallingConv(CC) ||
Bill Wendlinge01b81b2012-12-04 23:40:58 +00003528 ParseOptionalReturnAttrs(RetAttrs) ||
Chris Lattnera9a9e072009-03-09 04:49:14 +00003529 ParseType(RetType, RetTypeLoc, true /*void allowed*/) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003530 ParseValID(CalleeID) ||
3531 ParseParameterList(ArgList, PFS) ||
Bill Wendling143d4642013-02-22 00:12:35 +00003532 ParseFnAttributeValuePairs(FnAttrs, FwdRefAttrGrps, false,
3533 NoBuiltinLoc) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003534 ParseToken(lltok::kw_to, "expected 'to' in invoke") ||
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003535 ParseTypeAndBasicBlock(NormalBB, PFS) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003536 ParseToken(lltok::kw_unwind, "expected 'unwind' in invoke") ||
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003537 ParseTypeAndBasicBlock(UnwindBB, PFS))
Chris Lattnerdf986172009-01-02 07:01:27 +00003538 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003539
Chris Lattnerdf986172009-01-02 07:01:27 +00003540 // If RetType is a non-function pointer type, then this is the short syntax
3541 // for the call, which means that RetType is just the return type. Infer the
3542 // rest of the function argument types from the arguments that are present.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00003543 PointerType *PFTy = 0;
3544 FunctionType *Ty = 0;
Chris Lattnerdf986172009-01-02 07:01:27 +00003545 if (!(PFTy = dyn_cast<PointerType>(RetType)) ||
3546 !(Ty = dyn_cast<FunctionType>(PFTy->getElementType()))) {
3547 // Pull out the types of all of the arguments...
Jay Foad5fdd6c82011-07-12 14:06:48 +00003548 std::vector<Type*> ParamTypes;
Chris Lattnerdf986172009-01-02 07:01:27 +00003549 for (unsigned i = 0, e = ArgList.size(); i != e; ++i)
3550 ParamTypes.push_back(ArgList[i].V->getType());
Daniel Dunbara279bc32009-09-20 02:20:51 +00003551
Chris Lattnerdf986172009-01-02 07:01:27 +00003552 if (!FunctionType::isValidReturnType(RetType))
3553 return Error(RetTypeLoc, "Invalid result type for LLVM function");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003554
Owen Andersondebcb012009-07-29 22:17:13 +00003555 Ty = FunctionType::get(RetType, ParamTypes, false);
3556 PFTy = PointerType::getUnqual(Ty);
Chris Lattnerdf986172009-01-02 07:01:27 +00003557 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003558
Chris Lattnerdf986172009-01-02 07:01:27 +00003559 // Look up the callee.
3560 Value *Callee;
Victor Hernandez92f238d2010-01-11 22:31:58 +00003561 if (ConvertValIDToValue(PFTy, CalleeID, Callee, &PFS)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003562
Bill Wendling034b94b2012-12-19 07:18:57 +00003563 // Set up the Attribute for the function.
Bill Wendlinga1683d62013-01-27 02:24:02 +00003564 SmallVector<AttributeSet, 8> Attrs;
Bill Wendlinge603fe42012-09-19 23:54:18 +00003565 if (RetAttrs.hasAttributes())
Bill Wendlinga1683d62013-01-27 02:24:02 +00003566 Attrs.push_back(AttributeSet::get(RetType->getContext(),
3567 AttributeSet::ReturnIndex,
3568 RetAttrs));
Daniel Dunbara279bc32009-09-20 02:20:51 +00003569
Chris Lattnerdf986172009-01-02 07:01:27 +00003570 SmallVector<Value*, 8> Args;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003571
Chris Lattnerdf986172009-01-02 07:01:27 +00003572 // Loop through FunctionType's arguments and ensure they are specified
3573 // correctly. Also, gather any parameter attributes.
3574 FunctionType::param_iterator I = Ty->param_begin();
3575 FunctionType::param_iterator E = Ty->param_end();
3576 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
Chris Lattnerdb125cf2011-07-18 04:54:35 +00003577 Type *ExpectedTy = 0;
Chris Lattnerdf986172009-01-02 07:01:27 +00003578 if (I != E) {
3579 ExpectedTy = *I++;
3580 } else if (!Ty->isVarArg()) {
3581 return Error(ArgList[i].Loc, "too many arguments specified");
3582 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003583
Chris Lattnerdf986172009-01-02 07:01:27 +00003584 if (ExpectedTy && ExpectedTy != ArgList[i].V->getType())
3585 return Error(ArgList[i].Loc, "argument is not of expected type '" +
Chris Lattner0cd0d882011-06-18 21:18:23 +00003586 getTypeString(ExpectedTy) + "'");
Chris Lattnerdf986172009-01-02 07:01:27 +00003587 Args.push_back(ArgList[i].V);
Bill Wendling73dee182013-01-31 00:29:54 +00003588 if (ArgList[i].Attrs.hasAttributes(i + 1)) {
3589 AttrBuilder B(ArgList[i].Attrs, i + 1);
Bill Wendlinga1683d62013-01-27 02:24:02 +00003590 Attrs.push_back(AttributeSet::get(RetType->getContext(), i + 1, B));
3591 }
Chris Lattnerdf986172009-01-02 07:01:27 +00003592 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003593
Chris Lattnerdf986172009-01-02 07:01:27 +00003594 if (I != E)
3595 return Error(CallLoc, "not enough parameters specified for call");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003596
Bill Wendlinge603fe42012-09-19 23:54:18 +00003597 if (FnAttrs.hasAttributes())
Bill Wendlinga1683d62013-01-27 02:24:02 +00003598 Attrs.push_back(AttributeSet::get(RetType->getContext(),
3599 AttributeSet::FunctionIndex,
3600 FnAttrs));
Daniel Dunbara279bc32009-09-20 02:20:51 +00003601
Bill Wendling034b94b2012-12-19 07:18:57 +00003602 // Finish off the Attribute and check them
Bill Wendling99faa3b2012-12-07 23:16:57 +00003603 AttributeSet PAL = AttributeSet::get(Context, Attrs);
Daniel Dunbara279bc32009-09-20 02:20:51 +00003604
Jay Foada3efbb12011-07-15 08:37:34 +00003605 InvokeInst *II = InvokeInst::Create(Callee, NormalBB, UnwindBB, Args);
Chris Lattnerdf986172009-01-02 07:01:27 +00003606 II->setCallingConv(CC);
3607 II->setAttributes(PAL);
Bill Wendlingbaad55c2013-02-08 06:32:06 +00003608 ForwardRefAttrGroups[II] = FwdRefAttrGrps;
Chris Lattnerdf986172009-01-02 07:01:27 +00003609 Inst = II;
3610 return false;
3611}
3612
Bill Wendlingdccc03b2011-07-31 06:30:59 +00003613/// ParseResume
3614/// ::= 'resume' TypeAndValue
3615bool LLParser::ParseResume(Instruction *&Inst, PerFunctionState &PFS) {
3616 Value *Exn; LocTy ExnLoc;
Bill Wendlingdccc03b2011-07-31 06:30:59 +00003617 if (ParseTypeAndValue(Exn, ExnLoc, PFS))
3618 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00003619
Bill Wendlingdccc03b2011-07-31 06:30:59 +00003620 ResumeInst *RI = ResumeInst::Create(Exn);
3621 Inst = RI;
3622 return false;
3623}
Chris Lattnerdf986172009-01-02 07:01:27 +00003624
3625//===----------------------------------------------------------------------===//
3626// Binary Operators.
3627//===----------------------------------------------------------------------===//
3628
3629/// ParseArithmetic
Chris Lattnere914b592009-01-05 08:24:46 +00003630/// ::= ArithmeticOps TypeAndValue ',' Value
3631///
3632/// If OperandType is 0, then any FP or integer operand is allowed. If it is 1,
3633/// then any integer operand is allowed, if it is 2, any fp operand is allowed.
Chris Lattnerdf986172009-01-02 07:01:27 +00003634bool LLParser::ParseArithmetic(Instruction *&Inst, PerFunctionState &PFS,
Chris Lattnere914b592009-01-05 08:24:46 +00003635 unsigned Opc, unsigned OperandType) {
Chris Lattnerdf986172009-01-02 07:01:27 +00003636 LocTy Loc; Value *LHS, *RHS;
3637 if (ParseTypeAndValue(LHS, Loc, PFS) ||
3638 ParseToken(lltok::comma, "expected ',' in arithmetic operation") ||
3639 ParseValue(LHS->getType(), RHS, PFS))
3640 return true;
3641
Chris Lattnere914b592009-01-05 08:24:46 +00003642 bool Valid;
3643 switch (OperandType) {
Torok Edwinc23197a2009-07-14 16:55:14 +00003644 default: llvm_unreachable("Unknown operand type!");
Chris Lattnere914b592009-01-05 08:24:46 +00003645 case 0: // int or FP.
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00003646 Valid = LHS->getType()->isIntOrIntVectorTy() ||
3647 LHS->getType()->isFPOrFPVectorTy();
Chris Lattnere914b592009-01-05 08:24:46 +00003648 break;
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00003649 case 1: Valid = LHS->getType()->isIntOrIntVectorTy(); break;
3650 case 2: Valid = LHS->getType()->isFPOrFPVectorTy(); break;
Chris Lattnere914b592009-01-05 08:24:46 +00003651 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003652
Chris Lattnere914b592009-01-05 08:24:46 +00003653 if (!Valid)
3654 return Error(Loc, "invalid operand type for instruction");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003655
Chris Lattnerdf986172009-01-02 07:01:27 +00003656 Inst = BinaryOperator::Create((Instruction::BinaryOps)Opc, LHS, RHS);
3657 return false;
3658}
3659
3660/// ParseLogical
3661/// ::= ArithmeticOps TypeAndValue ',' Value {
3662bool LLParser::ParseLogical(Instruction *&Inst, PerFunctionState &PFS,
3663 unsigned Opc) {
3664 LocTy Loc; Value *LHS, *RHS;
3665 if (ParseTypeAndValue(LHS, Loc, PFS) ||
3666 ParseToken(lltok::comma, "expected ',' in logical operation") ||
3667 ParseValue(LHS->getType(), RHS, PFS))
3668 return true;
3669
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00003670 if (!LHS->getType()->isIntOrIntVectorTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00003671 return Error(Loc,"instruction requires integer or integer vector operands");
3672
3673 Inst = BinaryOperator::Create((Instruction::BinaryOps)Opc, LHS, RHS);
3674 return false;
3675}
3676
3677
3678/// ParseCompare
3679/// ::= 'icmp' IPredicates TypeAndValue ',' Value
3680/// ::= 'fcmp' FPredicates TypeAndValue ',' Value
Chris Lattnerdf986172009-01-02 07:01:27 +00003681bool LLParser::ParseCompare(Instruction *&Inst, PerFunctionState &PFS,
3682 unsigned Opc) {
3683 // Parse the integer/fp comparison predicate.
3684 LocTy Loc;
3685 unsigned Pred;
3686 Value *LHS, *RHS;
3687 if (ParseCmpPredicate(Pred, Opc) ||
3688 ParseTypeAndValue(LHS, Loc, PFS) ||
3689 ParseToken(lltok::comma, "expected ',' after compare value") ||
3690 ParseValue(LHS->getType(), RHS, PFS))
3691 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003692
Chris Lattnerdf986172009-01-02 07:01:27 +00003693 if (Opc == Instruction::FCmp) {
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00003694 if (!LHS->getType()->isFPOrFPVectorTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00003695 return Error(Loc, "fcmp requires floating point operands");
Dan Gohman1c8a23c2009-08-25 23:17:54 +00003696 Inst = new FCmpInst(CmpInst::Predicate(Pred), LHS, RHS);
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00003697 } else {
3698 assert(Opc == Instruction::ICmp && "Unknown opcode for CmpInst!");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00003699 if (!LHS->getType()->isIntOrIntVectorTy() &&
Nadav Rotem16087692011-12-05 06:29:09 +00003700 !LHS->getType()->getScalarType()->isPointerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00003701 return Error(Loc, "icmp requires integer operands");
Dan Gohman1c8a23c2009-08-25 23:17:54 +00003702 Inst = new ICmpInst(CmpInst::Predicate(Pred), LHS, RHS);
Chris Lattnerdf986172009-01-02 07:01:27 +00003703 }
3704 return false;
3705}
3706
3707//===----------------------------------------------------------------------===//
3708// Other Instructions.
3709//===----------------------------------------------------------------------===//
3710
3711
3712/// ParseCast
3713/// ::= CastOpc TypeAndValue 'to' Type
3714bool LLParser::ParseCast(Instruction *&Inst, PerFunctionState &PFS,
3715 unsigned Opc) {
Chris Lattner1afcace2011-07-09 17:41:24 +00003716 LocTy Loc;
3717 Value *Op;
3718 Type *DestTy = 0;
Chris Lattnerdf986172009-01-02 07:01:27 +00003719 if (ParseTypeAndValue(Op, Loc, PFS) ||
3720 ParseToken(lltok::kw_to, "expected 'to' after cast value") ||
3721 ParseType(DestTy))
3722 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003723
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00003724 if (!CastInst::castIsValid((Instruction::CastOps)Opc, Op, DestTy)) {
3725 CastInst::castIsValid((Instruction::CastOps)Opc, Op, DestTy);
Chris Lattnerdf986172009-01-02 07:01:27 +00003726 return Error(Loc, "invalid cast opcode for cast from '" +
Chris Lattner0cd0d882011-06-18 21:18:23 +00003727 getTypeString(Op->getType()) + "' to '" +
3728 getTypeString(DestTy) + "'");
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00003729 }
Chris Lattnerdf986172009-01-02 07:01:27 +00003730 Inst = CastInst::Create((Instruction::CastOps)Opc, Op, DestTy);
3731 return false;
3732}
3733
3734/// ParseSelect
3735/// ::= 'select' TypeAndValue ',' TypeAndValue ',' TypeAndValue
3736bool LLParser::ParseSelect(Instruction *&Inst, PerFunctionState &PFS) {
3737 LocTy Loc;
3738 Value *Op0, *Op1, *Op2;
3739 if (ParseTypeAndValue(Op0, Loc, PFS) ||
3740 ParseToken(lltok::comma, "expected ',' after select condition") ||
3741 ParseTypeAndValue(Op1, PFS) ||
3742 ParseToken(lltok::comma, "expected ',' after select value") ||
3743 ParseTypeAndValue(Op2, PFS))
3744 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003745
Chris Lattnerdf986172009-01-02 07:01:27 +00003746 if (const char *Reason = SelectInst::areInvalidOperands(Op0, Op1, Op2))
3747 return Error(Loc, Reason);
Daniel Dunbara279bc32009-09-20 02:20:51 +00003748
Chris Lattnerdf986172009-01-02 07:01:27 +00003749 Inst = SelectInst::Create(Op0, Op1, Op2);
3750 return false;
3751}
3752
Chris Lattner0088a5c2009-01-05 08:18:44 +00003753/// ParseVA_Arg
3754/// ::= 'va_arg' TypeAndValue ',' Type
3755bool LLParser::ParseVA_Arg(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00003756 Value *Op;
Chris Lattner1afcace2011-07-09 17:41:24 +00003757 Type *EltTy = 0;
Chris Lattner0088a5c2009-01-05 08:18:44 +00003758 LocTy TypeLoc;
Chris Lattnerdf986172009-01-02 07:01:27 +00003759 if (ParseTypeAndValue(Op, PFS) ||
3760 ParseToken(lltok::comma, "expected ',' after vaarg operand") ||
Chris Lattner0088a5c2009-01-05 08:18:44 +00003761 ParseType(EltTy, TypeLoc))
Chris Lattnerdf986172009-01-02 07:01:27 +00003762 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003763
Chris Lattner0088a5c2009-01-05 08:18:44 +00003764 if (!EltTy->isFirstClassType())
3765 return Error(TypeLoc, "va_arg requires operand with first class type");
Chris Lattnerdf986172009-01-02 07:01:27 +00003766
3767 Inst = new VAArgInst(Op, EltTy);
3768 return false;
3769}
3770
3771/// ParseExtractElement
3772/// ::= 'extractelement' TypeAndValue ',' TypeAndValue
3773bool LLParser::ParseExtractElement(Instruction *&Inst, PerFunctionState &PFS) {
3774 LocTy Loc;
3775 Value *Op0, *Op1;
3776 if (ParseTypeAndValue(Op0, Loc, PFS) ||
3777 ParseToken(lltok::comma, "expected ',' after extract value") ||
3778 ParseTypeAndValue(Op1, PFS))
3779 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003780
Chris Lattnerdf986172009-01-02 07:01:27 +00003781 if (!ExtractElementInst::isValidOperands(Op0, Op1))
3782 return Error(Loc, "invalid extractelement operands");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003783
Eric Christophera3500da2009-07-25 02:28:41 +00003784 Inst = ExtractElementInst::Create(Op0, Op1);
Chris Lattnerdf986172009-01-02 07:01:27 +00003785 return false;
3786}
3787
3788/// ParseInsertElement
3789/// ::= 'insertelement' TypeAndValue ',' TypeAndValue ',' TypeAndValue
3790bool LLParser::ParseInsertElement(Instruction *&Inst, PerFunctionState &PFS) {
3791 LocTy Loc;
3792 Value *Op0, *Op1, *Op2;
3793 if (ParseTypeAndValue(Op0, Loc, PFS) ||
3794 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
3795 ParseTypeAndValue(Op1, PFS) ||
3796 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
3797 ParseTypeAndValue(Op2, PFS))
3798 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003799
Chris Lattnerdf986172009-01-02 07:01:27 +00003800 if (!InsertElementInst::isValidOperands(Op0, Op1, Op2))
Eric Christopher0aaf4e92009-07-23 01:01:32 +00003801 return Error(Loc, "invalid insertelement operands");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003802
Chris Lattnerdf986172009-01-02 07:01:27 +00003803 Inst = InsertElementInst::Create(Op0, Op1, Op2);
3804 return false;
3805}
3806
3807/// ParseShuffleVector
3808/// ::= 'shufflevector' TypeAndValue ',' TypeAndValue ',' TypeAndValue
3809bool LLParser::ParseShuffleVector(Instruction *&Inst, PerFunctionState &PFS) {
3810 LocTy Loc;
3811 Value *Op0, *Op1, *Op2;
3812 if (ParseTypeAndValue(Op0, Loc, PFS) ||
3813 ParseToken(lltok::comma, "expected ',' after shuffle mask") ||
3814 ParseTypeAndValue(Op1, PFS) ||
3815 ParseToken(lltok::comma, "expected ',' after shuffle value") ||
3816 ParseTypeAndValue(Op2, PFS))
3817 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003818
Chris Lattnerdf986172009-01-02 07:01:27 +00003819 if (!ShuffleVectorInst::isValidOperands(Op0, Op1, Op2))
Pete Cooperaf393682012-02-01 23:43:12 +00003820 return Error(Loc, "invalid shufflevector operands");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003821
Chris Lattnerdf986172009-01-02 07:01:27 +00003822 Inst = new ShuffleVectorInst(Op0, Op1, Op2);
3823 return false;
3824}
3825
3826/// ParsePHI
Chris Lattnerc6e20092009-10-18 05:27:44 +00003827/// ::= 'phi' Type '[' Value ',' Value ']' (',' '[' Value ',' Value ']')*
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003828int LLParser::ParsePHI(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattner1afcace2011-07-09 17:41:24 +00003829 Type *Ty = 0; LocTy TypeLoc;
Chris Lattnerdf986172009-01-02 07:01:27 +00003830 Value *Op0, *Op1;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003831
Chris Lattner1afcace2011-07-09 17:41:24 +00003832 if (ParseType(Ty, TypeLoc) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003833 ParseToken(lltok::lsquare, "expected '[' in phi value list") ||
3834 ParseValue(Ty, Op0, PFS) ||
3835 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
Owen Anderson1d0be152009-08-13 21:58:54 +00003836 ParseValue(Type::getLabelTy(Context), Op1, PFS) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003837 ParseToken(lltok::rsquare, "expected ']' in phi value list"))
3838 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003839
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003840 bool AteExtraComma = false;
Chris Lattnerdf986172009-01-02 07:01:27 +00003841 SmallVector<std::pair<Value*, BasicBlock*>, 16> PHIVals;
3842 while (1) {
3843 PHIVals.push_back(std::make_pair(Op0, cast<BasicBlock>(Op1)));
Daniel Dunbara279bc32009-09-20 02:20:51 +00003844
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003845 if (!EatIfPresent(lltok::comma))
Chris Lattnerdf986172009-01-02 07:01:27 +00003846 break;
3847
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003848 if (Lex.getKind() == lltok::MetadataVar) {
3849 AteExtraComma = true;
Devang Patela43d46f2009-10-16 18:45:49 +00003850 break;
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003851 }
Devang Patela43d46f2009-10-16 18:45:49 +00003852
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003853 if (ParseToken(lltok::lsquare, "expected '[' in phi value list") ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003854 ParseValue(Ty, Op0, PFS) ||
3855 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
Owen Anderson1d0be152009-08-13 21:58:54 +00003856 ParseValue(Type::getLabelTy(Context), Op1, PFS) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003857 ParseToken(lltok::rsquare, "expected ']' in phi value list"))
3858 return true;
3859 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003860
Chris Lattnerdf986172009-01-02 07:01:27 +00003861 if (!Ty->isFirstClassType())
3862 return Error(TypeLoc, "phi node must have first class type");
3863
Jay Foad3ecfc862011-03-30 11:28:46 +00003864 PHINode *PN = PHINode::Create(Ty, PHIVals.size());
Chris Lattnerdf986172009-01-02 07:01:27 +00003865 for (unsigned i = 0, e = PHIVals.size(); i != e; ++i)
3866 PN->addIncoming(PHIVals[i].first, PHIVals[i].second);
3867 Inst = PN;
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003868 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerdf986172009-01-02 07:01:27 +00003869}
3870
Bill Wendlinge6e88262011-08-12 20:24:12 +00003871/// ParseLandingPad
3872/// ::= 'landingpad' Type 'personality' TypeAndValue 'cleanup'? Clause+
3873/// Clause
3874/// ::= 'catch' TypeAndValue
3875/// ::= 'filter'
3876/// ::= 'filter' TypeAndValue ( ',' TypeAndValue )*
3877bool LLParser::ParseLandingPad(Instruction *&Inst, PerFunctionState &PFS) {
3878 Type *Ty = 0; LocTy TyLoc;
3879 Value *PersFn; LocTy PersFnLoc;
Bill Wendlinge6e88262011-08-12 20:24:12 +00003880
3881 if (ParseType(Ty, TyLoc) ||
3882 ParseToken(lltok::kw_personality, "expected 'personality'") ||
3883 ParseTypeAndValue(PersFn, PersFnLoc, PFS))
3884 return true;
3885
3886 LandingPadInst *LP = LandingPadInst::Create(Ty, PersFn, 0);
3887 LP->setCleanup(EatIfPresent(lltok::kw_cleanup));
3888
3889 while (Lex.getKind() == lltok::kw_catch || Lex.getKind() == lltok::kw_filter){
3890 LandingPadInst::ClauseType CT;
3891 if (EatIfPresent(lltok::kw_catch))
3892 CT = LandingPadInst::Catch;
3893 else if (EatIfPresent(lltok::kw_filter))
3894 CT = LandingPadInst::Filter;
3895 else
3896 return TokError("expected 'catch' or 'filter' clause type");
3897
3898 Value *V; LocTy VLoc;
3899 if (ParseTypeAndValue(V, VLoc, PFS)) {
3900 delete LP;
3901 return true;
3902 }
3903
Bill Wendling746c8822011-08-12 20:52:25 +00003904 // A 'catch' type expects a non-array constant. A filter clause expects an
3905 // array constant.
3906 if (CT == LandingPadInst::Catch) {
3907 if (isa<ArrayType>(V->getType()))
3908 Error(VLoc, "'catch' clause has an invalid type");
3909 } else {
3910 if (!isa<ArrayType>(V->getType()))
3911 Error(VLoc, "'filter' clause has an invalid type");
3912 }
3913
Bill Wendlinge6e88262011-08-12 20:24:12 +00003914 LP->addClause(V);
3915 }
3916
3917 Inst = LP;
3918 return false;
3919}
3920
Chris Lattnerdf986172009-01-02 07:01:27 +00003921/// ParseCall
3922/// ::= 'tail'? 'call' OptionalCallingConv OptionalAttrs Type Value
3923/// ParameterList OptionalAttrs
3924bool LLParser::ParseCall(Instruction *&Inst, PerFunctionState &PFS,
3925 bool isTail) {
Bill Wendling702cc912012-10-15 20:35:56 +00003926 AttrBuilder RetAttrs, FnAttrs;
Bill Wendlingbaad55c2013-02-08 06:32:06 +00003927 std::vector<unsigned> FwdRefAttrGrps;
Bill Wendling143d4642013-02-22 00:12:35 +00003928 LocTy NoBuiltinLoc;
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00003929 CallingConv::ID CC;
Chris Lattner1afcace2011-07-09 17:41:24 +00003930 Type *RetType = 0;
Chris Lattnerdf986172009-01-02 07:01:27 +00003931 LocTy RetTypeLoc;
3932 ValID CalleeID;
3933 SmallVector<ParamInfo, 16> ArgList;
3934 LocTy CallLoc = Lex.getLoc();
Daniel Dunbara279bc32009-09-20 02:20:51 +00003935
Chris Lattnerdf986172009-01-02 07:01:27 +00003936 if ((isTail && ParseToken(lltok::kw_call, "expected 'tail call'")) ||
3937 ParseOptionalCallingConv(CC) ||
Bill Wendlinge01b81b2012-12-04 23:40:58 +00003938 ParseOptionalReturnAttrs(RetAttrs) ||
Chris Lattnera9a9e072009-03-09 04:49:14 +00003939 ParseType(RetType, RetTypeLoc, true /*void allowed*/) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003940 ParseValID(CalleeID) ||
3941 ParseParameterList(ArgList, PFS) ||
Bill Wendling143d4642013-02-22 00:12:35 +00003942 ParseFnAttributeValuePairs(FnAttrs, FwdRefAttrGrps, false,
3943 NoBuiltinLoc))
Chris Lattnerdf986172009-01-02 07:01:27 +00003944 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003945
Chris Lattnerdf986172009-01-02 07:01:27 +00003946 // If RetType is a non-function pointer type, then this is the short syntax
3947 // for the call, which means that RetType is just the return type. Infer the
3948 // rest of the function argument types from the arguments that are present.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00003949 PointerType *PFTy = 0;
3950 FunctionType *Ty = 0;
Chris Lattnerdf986172009-01-02 07:01:27 +00003951 if (!(PFTy = dyn_cast<PointerType>(RetType)) ||
3952 !(Ty = dyn_cast<FunctionType>(PFTy->getElementType()))) {
3953 // Pull out the types of all of the arguments...
Jay Foad5fdd6c82011-07-12 14:06:48 +00003954 std::vector<Type*> ParamTypes;
Eli Friedman83b4a972010-07-24 23:06:59 +00003955 for (unsigned i = 0, e = ArgList.size(); i != e; ++i)
3956 ParamTypes.push_back(ArgList[i].V->getType());
Daniel Dunbara279bc32009-09-20 02:20:51 +00003957
Chris Lattnerdf986172009-01-02 07:01:27 +00003958 if (!FunctionType::isValidReturnType(RetType))
3959 return Error(RetTypeLoc, "Invalid result type for LLVM function");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003960
Owen Andersondebcb012009-07-29 22:17:13 +00003961 Ty = FunctionType::get(RetType, ParamTypes, false);
3962 PFTy = PointerType::getUnqual(Ty);
Chris Lattnerdf986172009-01-02 07:01:27 +00003963 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003964
Chris Lattnerdf986172009-01-02 07:01:27 +00003965 // Look up the callee.
3966 Value *Callee;
Victor Hernandez92f238d2010-01-11 22:31:58 +00003967 if (ConvertValIDToValue(PFTy, CalleeID, Callee, &PFS)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003968
Bill Wendling034b94b2012-12-19 07:18:57 +00003969 // Set up the Attribute for the function.
Bill Wendlinga1683d62013-01-27 02:24:02 +00003970 SmallVector<AttributeSet, 8> Attrs;
Bill Wendlinge603fe42012-09-19 23:54:18 +00003971 if (RetAttrs.hasAttributes())
Bill Wendlinga1683d62013-01-27 02:24:02 +00003972 Attrs.push_back(AttributeSet::get(RetType->getContext(),
3973 AttributeSet::ReturnIndex,
3974 RetAttrs));
Daniel Dunbara279bc32009-09-20 02:20:51 +00003975
Chris Lattnerdf986172009-01-02 07:01:27 +00003976 SmallVector<Value*, 8> Args;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003977
Chris Lattnerdf986172009-01-02 07:01:27 +00003978 // Loop through FunctionType's arguments and ensure they are specified
3979 // correctly. Also, gather any parameter attributes.
3980 FunctionType::param_iterator I = Ty->param_begin();
3981 FunctionType::param_iterator E = Ty->param_end();
3982 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
Chris Lattnerdb125cf2011-07-18 04:54:35 +00003983 Type *ExpectedTy = 0;
Chris Lattnerdf986172009-01-02 07:01:27 +00003984 if (I != E) {
3985 ExpectedTy = *I++;
3986 } else if (!Ty->isVarArg()) {
3987 return Error(ArgList[i].Loc, "too many arguments specified");
3988 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003989
Chris Lattnerdf986172009-01-02 07:01:27 +00003990 if (ExpectedTy && ExpectedTy != ArgList[i].V->getType())
3991 return Error(ArgList[i].Loc, "argument is not of expected type '" +
Chris Lattner0cd0d882011-06-18 21:18:23 +00003992 getTypeString(ExpectedTy) + "'");
Chris Lattnerdf986172009-01-02 07:01:27 +00003993 Args.push_back(ArgList[i].V);
Bill Wendling73dee182013-01-31 00:29:54 +00003994 if (ArgList[i].Attrs.hasAttributes(i + 1)) {
3995 AttrBuilder B(ArgList[i].Attrs, i + 1);
Bill Wendlinga1683d62013-01-27 02:24:02 +00003996 Attrs.push_back(AttributeSet::get(RetType->getContext(), i + 1, B));
3997 }
Chris Lattnerdf986172009-01-02 07:01:27 +00003998 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003999
Chris Lattnerdf986172009-01-02 07:01:27 +00004000 if (I != E)
4001 return Error(CallLoc, "not enough parameters specified for call");
4002
Bill Wendlinge603fe42012-09-19 23:54:18 +00004003 if (FnAttrs.hasAttributes())
Bill Wendlinga1683d62013-01-27 02:24:02 +00004004 Attrs.push_back(AttributeSet::get(RetType->getContext(),
4005 AttributeSet::FunctionIndex,
4006 FnAttrs));
Chris Lattnerdf986172009-01-02 07:01:27 +00004007
Bill Wendling034b94b2012-12-19 07:18:57 +00004008 // Finish off the Attribute and check them
Bill Wendling99faa3b2012-12-07 23:16:57 +00004009 AttributeSet PAL = AttributeSet::get(Context, Attrs);
Daniel Dunbara279bc32009-09-20 02:20:51 +00004010
Jay Foada3efbb12011-07-15 08:37:34 +00004011 CallInst *CI = CallInst::Create(Callee, Args);
Chris Lattnerdf986172009-01-02 07:01:27 +00004012 CI->setTailCall(isTail);
4013 CI->setCallingConv(CC);
4014 CI->setAttributes(PAL);
Bill Wendlingbaad55c2013-02-08 06:32:06 +00004015 ForwardRefAttrGroups[CI] = FwdRefAttrGrps;
Chris Lattnerdf986172009-01-02 07:01:27 +00004016 Inst = CI;
4017 return false;
4018}
4019
4020//===----------------------------------------------------------------------===//
4021// Memory Instructions.
4022//===----------------------------------------------------------------------===//
4023
4024/// ParseAlloc
Devang Patelf633a062009-09-17 23:04:48 +00004025/// ::= 'alloca' Type (',' TypeAndValue)? (',' OptionalInfo)?
Chris Lattnerf3a789d2011-06-17 03:16:47 +00004026int LLParser::ParseAlloc(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00004027 Value *Size = 0;
Chris Lattnereeb4a842009-07-02 23:08:13 +00004028 LocTy SizeLoc;
Chris Lattnerdf986172009-01-02 07:01:27 +00004029 unsigned Alignment = 0;
Chris Lattner1afcace2011-07-09 17:41:24 +00004030 Type *Ty = 0;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00004031 if (ParseType(Ty)) return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00004032
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00004033 bool AteExtraComma = false;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00004034 if (EatIfPresent(lltok::comma)) {
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00004035 if (Lex.getKind() == lltok::kw_align) {
4036 if (ParseOptionalAlignment(Alignment)) return true;
4037 } else if (Lex.getKind() == lltok::MetadataVar) {
4038 AteExtraComma = true;
Devang Patelf633a062009-09-17 23:04:48 +00004039 } else {
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00004040 if (ParseTypeAndValue(Size, SizeLoc, PFS) ||
4041 ParseOptionalCommaAlign(Alignment, AteExtraComma))
4042 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00004043 }
4044 }
4045
Dan Gohmanf75a7d32010-05-28 01:14:11 +00004046 if (Size && !Size->getType()->isIntegerTy())
4047 return Error(SizeLoc, "element count must have integer type");
Chris Lattnerdf986172009-01-02 07:01:27 +00004048
Chris Lattnerf3a789d2011-06-17 03:16:47 +00004049 Inst = new AllocaInst(Ty, Size, Alignment);
4050 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerdf986172009-01-02 07:01:27 +00004051}
4052
4053/// ParseLoad
Eli Friedmanf03bb262011-08-12 22:50:01 +00004054/// ::= 'load' 'volatile'? TypeAndValue (',' 'align' i32)?
Michael Ilseman407a6162012-11-15 22:34:00 +00004055/// ::= 'load' 'atomic' 'volatile'? TypeAndValue
Eli Friedmanf03bb262011-08-12 22:50:01 +00004056/// 'singlethread'? AtomicOrdering (',' 'align' i32)?
Chris Lattnerfbe910e2011-11-27 06:56:53 +00004057int LLParser::ParseLoad(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00004058 Value *Val; LocTy Loc;
Devang Patelf633a062009-09-17 23:04:48 +00004059 unsigned Alignment = 0;
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00004060 bool AteExtraComma = false;
Eli Friedmanf03bb262011-08-12 22:50:01 +00004061 bool isAtomic = false;
Eli Friedman21006d42011-08-09 23:02:53 +00004062 AtomicOrdering Ordering = NotAtomic;
4063 SynchronizationScope Scope = CrossThread;
Eli Friedmanf03bb262011-08-12 22:50:01 +00004064
4065 if (Lex.getKind() == lltok::kw_atomic) {
Eli Friedmanf03bb262011-08-12 22:50:01 +00004066 isAtomic = true;
4067 Lex.Lex();
4068 }
4069
Chris Lattnerfbe910e2011-11-27 06:56:53 +00004070 bool isVolatile = false;
Eli Friedmanf03bb262011-08-12 22:50:01 +00004071 if (Lex.getKind() == lltok::kw_volatile) {
Eli Friedmanf03bb262011-08-12 22:50:01 +00004072 isVolatile = true;
4073 Lex.Lex();
4074 }
4075
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00004076 if (ParseTypeAndValue(Val, Loc, PFS) ||
Eli Friedman21006d42011-08-09 23:02:53 +00004077 ParseScopeAndOrdering(isAtomic, Scope, Ordering) ||
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00004078 ParseOptionalCommaAlign(Alignment, AteExtraComma))
4079 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00004080
Duncan Sands1df98592010-02-16 11:11:14 +00004081 if (!Val->getType()->isPointerTy() ||
Chris Lattnerdf986172009-01-02 07:01:27 +00004082 !cast<PointerType>(Val->getType())->getElementType()->isFirstClassType())
4083 return Error(Loc, "load operand must be a pointer to a first class type");
Eli Friedman21006d42011-08-09 23:02:53 +00004084 if (isAtomic && !Alignment)
4085 return Error(Loc, "atomic load must have explicit non-zero alignment");
4086 if (Ordering == Release || Ordering == AcquireRelease)
4087 return Error(Loc, "atomic load cannot use Release ordering");
Daniel Dunbara279bc32009-09-20 02:20:51 +00004088
Eli Friedman21006d42011-08-09 23:02:53 +00004089 Inst = new LoadInst(Val, "", isVolatile, Alignment, Ordering, Scope);
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00004090 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerdf986172009-01-02 07:01:27 +00004091}
4092
4093/// ParseStore
Eli Friedmanf03bb262011-08-12 22:50:01 +00004094
4095/// ::= 'store' 'volatile'? TypeAndValue ',' TypeAndValue (',' 'align' i32)?
4096/// ::= 'store' 'atomic' 'volatile'? TypeAndValue ',' TypeAndValue
Eli Friedman21006d42011-08-09 23:02:53 +00004097/// 'singlethread'? AtomicOrdering (',' 'align' i32)?
Chris Lattnerfbe910e2011-11-27 06:56:53 +00004098int LLParser::ParseStore(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00004099 Value *Val, *Ptr; LocTy Loc, PtrLoc;
Devang Patelf633a062009-09-17 23:04:48 +00004100 unsigned Alignment = 0;
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00004101 bool AteExtraComma = false;
Eli Friedmanf03bb262011-08-12 22:50:01 +00004102 bool isAtomic = false;
Eli Friedman21006d42011-08-09 23:02:53 +00004103 AtomicOrdering Ordering = NotAtomic;
4104 SynchronizationScope Scope = CrossThread;
Eli Friedmanf03bb262011-08-12 22:50:01 +00004105
4106 if (Lex.getKind() == lltok::kw_atomic) {
Eli Friedmanf03bb262011-08-12 22:50:01 +00004107 isAtomic = true;
4108 Lex.Lex();
4109 }
4110
Chris Lattnerfbe910e2011-11-27 06:56:53 +00004111 bool isVolatile = false;
Eli Friedmanf03bb262011-08-12 22:50:01 +00004112 if (Lex.getKind() == lltok::kw_volatile) {
Eli Friedmanf03bb262011-08-12 22:50:01 +00004113 isVolatile = true;
4114 Lex.Lex();
4115 }
4116
Chris Lattnerdf986172009-01-02 07:01:27 +00004117 if (ParseTypeAndValue(Val, Loc, PFS) ||
4118 ParseToken(lltok::comma, "expected ',' after store operand") ||
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00004119 ParseTypeAndValue(Ptr, PtrLoc, PFS) ||
Eli Friedman21006d42011-08-09 23:02:53 +00004120 ParseScopeAndOrdering(isAtomic, Scope, Ordering) ||
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00004121 ParseOptionalCommaAlign(Alignment, AteExtraComma))
Chris Lattnerdf986172009-01-02 07:01:27 +00004122 return true;
Devang Patelf633a062009-09-17 23:04:48 +00004123
Duncan Sands1df98592010-02-16 11:11:14 +00004124 if (!Ptr->getType()->isPointerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00004125 return Error(PtrLoc, "store operand must be a pointer");
4126 if (!Val->getType()->isFirstClassType())
4127 return Error(Loc, "store operand must be a first class value");
4128 if (cast<PointerType>(Ptr->getType())->getElementType() != Val->getType())
4129 return Error(Loc, "stored value and pointer type do not match");
Eli Friedman21006d42011-08-09 23:02:53 +00004130 if (isAtomic && !Alignment)
4131 return Error(Loc, "atomic store must have explicit non-zero alignment");
4132 if (Ordering == Acquire || Ordering == AcquireRelease)
4133 return Error(Loc, "atomic store cannot use Acquire ordering");
Daniel Dunbara279bc32009-09-20 02:20:51 +00004134
Eli Friedman21006d42011-08-09 23:02:53 +00004135 Inst = new StoreInst(Val, Ptr, isVolatile, Alignment, Ordering, Scope);
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00004136 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerdf986172009-01-02 07:01:27 +00004137}
4138
Eli Friedmanff030482011-07-28 21:48:00 +00004139/// ParseCmpXchg
Eli Friedmanf03bb262011-08-12 22:50:01 +00004140/// ::= 'cmpxchg' 'volatile'? TypeAndValue ',' TypeAndValue ',' TypeAndValue
4141/// 'singlethread'? AtomicOrdering
4142int LLParser::ParseCmpXchg(Instruction *&Inst, PerFunctionState &PFS) {
Eli Friedmanff030482011-07-28 21:48:00 +00004143 Value *Ptr, *Cmp, *New; LocTy PtrLoc, CmpLoc, NewLoc;
4144 bool AteExtraComma = false;
4145 AtomicOrdering Ordering = NotAtomic;
4146 SynchronizationScope Scope = CrossThread;
Eli Friedmanf03bb262011-08-12 22:50:01 +00004147 bool isVolatile = false;
4148
4149 if (EatIfPresent(lltok::kw_volatile))
4150 isVolatile = true;
4151
Eli Friedmanff030482011-07-28 21:48:00 +00004152 if (ParseTypeAndValue(Ptr, PtrLoc, PFS) ||
4153 ParseToken(lltok::comma, "expected ',' after cmpxchg address") ||
4154 ParseTypeAndValue(Cmp, CmpLoc, PFS) ||
4155 ParseToken(lltok::comma, "expected ',' after cmpxchg cmp operand") ||
4156 ParseTypeAndValue(New, NewLoc, PFS) ||
4157 ParseScopeAndOrdering(true /*Always atomic*/, Scope, Ordering))
4158 return true;
4159
4160 if (Ordering == Unordered)
4161 return TokError("cmpxchg cannot be unordered");
4162 if (!Ptr->getType()->isPointerTy())
4163 return Error(PtrLoc, "cmpxchg operand must be a pointer");
4164 if (cast<PointerType>(Ptr->getType())->getElementType() != Cmp->getType())
4165 return Error(CmpLoc, "compare value and pointer type do not match");
4166 if (cast<PointerType>(Ptr->getType())->getElementType() != New->getType())
4167 return Error(NewLoc, "new value and pointer type do not match");
4168 if (!New->getType()->isIntegerTy())
4169 return Error(NewLoc, "cmpxchg operand must be an integer");
4170 unsigned Size = New->getType()->getPrimitiveSizeInBits();
4171 if (Size < 8 || (Size & (Size - 1)))
4172 return Error(NewLoc, "cmpxchg operand must be power-of-two byte-sized"
4173 " integer");
4174
4175 AtomicCmpXchgInst *CXI =
4176 new AtomicCmpXchgInst(Ptr, Cmp, New, Ordering, Scope);
4177 CXI->setVolatile(isVolatile);
4178 Inst = CXI;
4179 return AteExtraComma ? InstExtraComma : InstNormal;
4180}
4181
4182/// ParseAtomicRMW
Eli Friedmanf03bb262011-08-12 22:50:01 +00004183/// ::= 'atomicrmw' 'volatile'? BinOp TypeAndValue ',' TypeAndValue
4184/// 'singlethread'? AtomicOrdering
4185int LLParser::ParseAtomicRMW(Instruction *&Inst, PerFunctionState &PFS) {
Eli Friedmanff030482011-07-28 21:48:00 +00004186 Value *Ptr, *Val; LocTy PtrLoc, ValLoc;
4187 bool AteExtraComma = false;
4188 AtomicOrdering Ordering = NotAtomic;
4189 SynchronizationScope Scope = CrossThread;
Eli Friedmanf03bb262011-08-12 22:50:01 +00004190 bool isVolatile = false;
Eli Friedmanff030482011-07-28 21:48:00 +00004191 AtomicRMWInst::BinOp Operation;
Eli Friedmanf03bb262011-08-12 22:50:01 +00004192
4193 if (EatIfPresent(lltok::kw_volatile))
4194 isVolatile = true;
4195
Eli Friedmanff030482011-07-28 21:48:00 +00004196 switch (Lex.getKind()) {
4197 default: return TokError("expected binary operation in atomicrmw");
4198 case lltok::kw_xchg: Operation = AtomicRMWInst::Xchg; break;
4199 case lltok::kw_add: Operation = AtomicRMWInst::Add; break;
4200 case lltok::kw_sub: Operation = AtomicRMWInst::Sub; break;
4201 case lltok::kw_and: Operation = AtomicRMWInst::And; break;
4202 case lltok::kw_nand: Operation = AtomicRMWInst::Nand; break;
4203 case lltok::kw_or: Operation = AtomicRMWInst::Or; break;
4204 case lltok::kw_xor: Operation = AtomicRMWInst::Xor; break;
4205 case lltok::kw_max: Operation = AtomicRMWInst::Max; break;
4206 case lltok::kw_min: Operation = AtomicRMWInst::Min; break;
4207 case lltok::kw_umax: Operation = AtomicRMWInst::UMax; break;
4208 case lltok::kw_umin: Operation = AtomicRMWInst::UMin; break;
4209 }
4210 Lex.Lex(); // Eat the operation.
4211
4212 if (ParseTypeAndValue(Ptr, PtrLoc, PFS) ||
4213 ParseToken(lltok::comma, "expected ',' after atomicrmw address") ||
4214 ParseTypeAndValue(Val, ValLoc, PFS) ||
4215 ParseScopeAndOrdering(true /*Always atomic*/, Scope, Ordering))
4216 return true;
4217
4218 if (Ordering == Unordered)
4219 return TokError("atomicrmw cannot be unordered");
4220 if (!Ptr->getType()->isPointerTy())
4221 return Error(PtrLoc, "atomicrmw operand must be a pointer");
4222 if (cast<PointerType>(Ptr->getType())->getElementType() != Val->getType())
4223 return Error(ValLoc, "atomicrmw value and pointer type do not match");
4224 if (!Val->getType()->isIntegerTy())
4225 return Error(ValLoc, "atomicrmw operand must be an integer");
4226 unsigned Size = Val->getType()->getPrimitiveSizeInBits();
4227 if (Size < 8 || (Size & (Size - 1)))
4228 return Error(ValLoc, "atomicrmw operand must be power-of-two byte-sized"
4229 " integer");
4230
4231 AtomicRMWInst *RMWI =
4232 new AtomicRMWInst(Operation, Ptr, Val, Ordering, Scope);
4233 RMWI->setVolatile(isVolatile);
4234 Inst = RMWI;
4235 return AteExtraComma ? InstExtraComma : InstNormal;
4236}
4237
Eli Friedman47f35132011-07-25 23:16:38 +00004238/// ParseFence
4239/// ::= 'fence' 'singlethread'? AtomicOrdering
4240int LLParser::ParseFence(Instruction *&Inst, PerFunctionState &PFS) {
4241 AtomicOrdering Ordering = NotAtomic;
4242 SynchronizationScope Scope = CrossThread;
4243 if (ParseScopeAndOrdering(true /*Always atomic*/, Scope, Ordering))
4244 return true;
4245
4246 if (Ordering == Unordered)
4247 return TokError("fence cannot be unordered");
4248 if (Ordering == Monotonic)
4249 return TokError("fence cannot be monotonic");
4250
4251 Inst = new FenceInst(Context, Ordering, Scope);
4252 return InstNormal;
4253}
4254
Chris Lattnerdf986172009-01-02 07:01:27 +00004255/// ParseGetElementPtr
Dan Gohmandd8004d2009-07-27 21:53:46 +00004256/// ::= 'getelementptr' 'inbounds'? TypeAndValue (',' TypeAndValue)*
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004257int LLParser::ParseGetElementPtr(Instruction *&Inst, PerFunctionState &PFS) {
Nadav Rotem16087692011-12-05 06:29:09 +00004258 Value *Ptr = 0;
4259 Value *Val = 0;
4260 LocTy Loc, EltLoc;
Dan Gohmandd8004d2009-07-27 21:53:46 +00004261
Dan Gohmandcb40a32009-07-29 15:58:36 +00004262 bool InBounds = EatIfPresent(lltok::kw_inbounds);
Dan Gohmandd8004d2009-07-27 21:53:46 +00004263
Chris Lattner3ed88ef2009-01-02 08:05:26 +00004264 if (ParseTypeAndValue(Ptr, Loc, PFS)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00004265
Eli Bendersky59eb5ee2013-04-22 17:03:42 +00004266 Type *BaseType = Ptr->getType();
4267 PointerType *BasePointerType = dyn_cast<PointerType>(BaseType->getScalarType());
4268 if (!BasePointerType)
Chris Lattnerdf986172009-01-02 07:01:27 +00004269 return Error(Loc, "base of getelementptr must be a pointer");
Daniel Dunbara279bc32009-09-20 02:20:51 +00004270
Chris Lattnerdf986172009-01-02 07:01:27 +00004271 SmallVector<Value*, 16> Indices;
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004272 bool AteExtraComma = false;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00004273 while (EatIfPresent(lltok::comma)) {
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004274 if (Lex.getKind() == lltok::MetadataVar) {
4275 AteExtraComma = true;
Devang Patel6225d642009-10-13 18:49:55 +00004276 break;
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004277 }
Chris Lattner3ed88ef2009-01-02 08:05:26 +00004278 if (ParseTypeAndValue(Val, EltLoc, PFS)) return true;
Nadav Rotem16087692011-12-05 06:29:09 +00004279 if (!Val->getType()->getScalarType()->isIntegerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00004280 return Error(EltLoc, "getelementptr index must be an integer");
Nadav Rotem16087692011-12-05 06:29:09 +00004281 if (Val->getType()->isVectorTy() != Ptr->getType()->isVectorTy())
4282 return Error(EltLoc, "getelementptr index type missmatch");
4283 if (Val->getType()->isVectorTy()) {
4284 unsigned ValNumEl = cast<VectorType>(Val->getType())->getNumElements();
4285 unsigned PtrNumEl = cast<VectorType>(Ptr->getType())->getNumElements();
4286 if (ValNumEl != PtrNumEl)
4287 return Error(EltLoc,
4288 "getelementptr vector index has a wrong number of elements");
4289 }
Chris Lattnerdf986172009-01-02 07:01:27 +00004290 Indices.push_back(Val);
4291 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00004292
Eli Bendersky59eb5ee2013-04-22 17:03:42 +00004293 if (!Indices.empty() && !BasePointerType->getElementType()->isSized())
4294 return Error(Loc, "base element of getelementptr must be sized");
4295
4296 if (!GetElementPtrInst::getIndexedType(BaseType, Indices))
Chris Lattnerdf986172009-01-02 07:01:27 +00004297 return Error(Loc, "invalid getelementptr indices");
Jay Foada9203102011-07-25 09:48:08 +00004298 Inst = GetElementPtrInst::Create(Ptr, Indices);
Dan Gohmandd8004d2009-07-27 21:53:46 +00004299 if (InBounds)
Dan Gohmanf8dbee72009-09-07 23:54:19 +00004300 cast<GetElementPtrInst>(Inst)->setIsInBounds(true);
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004301 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerdf986172009-01-02 07:01:27 +00004302}
4303
4304/// ParseExtractValue
4305/// ::= 'extractvalue' TypeAndValue (',' uint32)+
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004306int LLParser::ParseExtractValue(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00004307 Value *Val; LocTy Loc;
4308 SmallVector<unsigned, 4> Indices;
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004309 bool AteExtraComma;
Chris Lattnerdf986172009-01-02 07:01:27 +00004310 if (ParseTypeAndValue(Val, Loc, PFS) ||
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004311 ParseIndexList(Indices, AteExtraComma))
Chris Lattnerdf986172009-01-02 07:01:27 +00004312 return true;
4313
Chris Lattnerfdfeb692010-02-12 20:49:41 +00004314 if (!Val->getType()->isAggregateType())
4315 return Error(Loc, "extractvalue operand must be aggregate type");
Chris Lattnerdf986172009-01-02 07:01:27 +00004316
Jay Foadfc6d3a42011-07-13 10:26:04 +00004317 if (!ExtractValueInst::getIndexedType(Val->getType(), Indices))
Chris Lattnerdf986172009-01-02 07:01:27 +00004318 return Error(Loc, "invalid indices for extractvalue");
Jay Foadfc6d3a42011-07-13 10:26:04 +00004319 Inst = ExtractValueInst::Create(Val, Indices);
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004320 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerdf986172009-01-02 07:01:27 +00004321}
4322
4323/// ParseInsertValue
4324/// ::= 'insertvalue' TypeAndValue ',' TypeAndValue (',' uint32)+
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004325int LLParser::ParseInsertValue(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00004326 Value *Val0, *Val1; LocTy Loc0, Loc1;
4327 SmallVector<unsigned, 4> Indices;
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004328 bool AteExtraComma;
Chris Lattnerdf986172009-01-02 07:01:27 +00004329 if (ParseTypeAndValue(Val0, Loc0, PFS) ||
4330 ParseToken(lltok::comma, "expected comma after insertvalue operand") ||
4331 ParseTypeAndValue(Val1, Loc1, PFS) ||
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004332 ParseIndexList(Indices, AteExtraComma))
Chris Lattnerdf986172009-01-02 07:01:27 +00004333 return true;
Michael Ilseman407a6162012-11-15 22:34:00 +00004334
Chris Lattnerfdfeb692010-02-12 20:49:41 +00004335 if (!Val0->getType()->isAggregateType())
4336 return Error(Loc0, "insertvalue operand must be aggregate type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00004337
Jay Foadfc6d3a42011-07-13 10:26:04 +00004338 if (!ExtractValueInst::getIndexedType(Val0->getType(), Indices))
Chris Lattnerdf986172009-01-02 07:01:27 +00004339 return Error(Loc0, "invalid indices for insertvalue");
Jay Foadfc6d3a42011-07-13 10:26:04 +00004340 Inst = InsertValueInst::Create(Val0, Val1, Indices);
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004341 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerdf986172009-01-02 07:01:27 +00004342}
Nick Lewycky21cc4462009-04-04 07:22:01 +00004343
4344//===----------------------------------------------------------------------===//
4345// Embedded metadata.
4346//===----------------------------------------------------------------------===//
4347
4348/// ParseMDNodeVector
Nick Lewyckycb337992009-05-10 20:57:05 +00004349/// ::= Element (',' Element)*
4350/// Element
4351/// ::= 'null' | TypeAndValue
Victor Hernandezbf170d42010-01-05 22:22:14 +00004352bool LLParser::ParseMDNodeVector(SmallVectorImpl<Value*> &Elts,
Victor Hernandez24e64df2010-01-10 07:14:18 +00004353 PerFunctionState *PFS) {
Dan Gohmanac809752010-07-13 19:33:27 +00004354 // Check for an empty list.
4355 if (Lex.getKind() == lltok::rbrace)
4356 return false;
4357
Nick Lewycky21cc4462009-04-04 07:22:01 +00004358 do {
Chris Lattnera7352392009-12-30 04:42:57 +00004359 // Null is a special case since it is typeless.
4360 if (EatIfPresent(lltok::kw_null)) {
4361 Elts.push_back(0);
4362 continue;
Nick Lewyckycb337992009-05-10 20:57:05 +00004363 }
Michael Ilseman407a6162012-11-15 22:34:00 +00004364
Chris Lattnera7352392009-12-30 04:42:57 +00004365 Value *V = 0;
Chris Lattner1afcace2011-07-09 17:41:24 +00004366 if (ParseTypeAndValue(V, PFS)) return true;
Nick Lewyckycb337992009-05-10 20:57:05 +00004367 Elts.push_back(V);
Nick Lewycky21cc4462009-04-04 07:22:01 +00004368 } while (EatIfPresent(lltok::comma));
4369
4370 return false;
4371}