blob: b22d251f9e9ae3b3f7c967427d9ec8a86db74802 [file] [log] [blame]
Chris Lattnerdf986172009-01-02 07:01:27 +00001//===-- LLParser.cpp - Parser Class ---------------------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file defines the parser class for .ll files.
11//
12//===----------------------------------------------------------------------===//
13
14#include "LLParser.h"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000015#include "llvm/ADT/SmallPtrSet.h"
Chris Lattnerdf986172009-01-02 07:01:27 +000016#include "llvm/AutoUpgrade.h"
Chandler Carruth0b8c9a82013-01-02 11:36:10 +000017#include "llvm/IR/CallingConv.h"
18#include "llvm/IR/Constants.h"
19#include "llvm/IR/DerivedTypes.h"
20#include "llvm/IR/InlineAsm.h"
21#include "llvm/IR/Instructions.h"
22#include "llvm/IR/Module.h"
23#include "llvm/IR/Operator.h"
24#include "llvm/IR/ValueSymbolTable.h"
Torok Edwinc25e7582009-07-11 20:10:48 +000025#include "llvm/Support/ErrorHandling.h"
Chris Lattnerdf986172009-01-02 07:01:27 +000026#include "llvm/Support/raw_ostream.h"
27using namespace llvm;
28
Chris Lattnerdb125cf2011-07-18 04:54:35 +000029static std::string getTypeString(Type *T) {
Chris Lattner0cd0d882011-06-18 21:18:23 +000030 std::string Result;
31 raw_string_ostream Tmp(Result);
32 Tmp << *T;
33 return Tmp.str();
34}
35
Chris Lattner3ed88ef2009-01-02 08:05:26 +000036/// Run: module ::= toplevelentity*
Chris Lattnerad7d1e22009-01-04 20:44:11 +000037bool LLParser::Run() {
Chris Lattner3ed88ef2009-01-02 08:05:26 +000038 // Prime the lexer.
39 Lex.Lex();
40
Chris Lattnerad7d1e22009-01-04 20:44:11 +000041 return ParseTopLevelEntities() ||
42 ValidateEndOfModule();
Chris Lattnerdf986172009-01-02 07:01:27 +000043}
44
45/// ValidateEndOfModule - Do final validity and sanity checks at the end of the
46/// module.
47bool LLParser::ValidateEndOfModule() {
Chris Lattner449c3102010-04-01 05:14:45 +000048 // Handle any instruction metadata forward references.
49 if (!ForwardRefInstMetadata.empty()) {
50 for (DenseMap<Instruction*, std::vector<MDRef> >::iterator
51 I = ForwardRefInstMetadata.begin(), E = ForwardRefInstMetadata.end();
52 I != E; ++I) {
53 Instruction *Inst = I->first;
54 const std::vector<MDRef> &MDList = I->second;
Michael Ilseman407a6162012-11-15 22:34:00 +000055
Chris Lattner449c3102010-04-01 05:14:45 +000056 for (unsigned i = 0, e = MDList.size(); i != e; ++i) {
57 unsigned SlotNo = MDList[i].MDSlot;
Michael Ilseman407a6162012-11-15 22:34:00 +000058
Chris Lattner449c3102010-04-01 05:14:45 +000059 if (SlotNo >= NumberedMetadata.size() || NumberedMetadata[SlotNo] == 0)
60 return Error(MDList[i].Loc, "use of undefined metadata '!" +
Benjamin Kramerd1e17032010-09-27 17:42:11 +000061 Twine(SlotNo) + "'");
Chris Lattner449c3102010-04-01 05:14:45 +000062 Inst->setMetadata(MDList[i].MDKind, NumberedMetadata[SlotNo]);
63 }
64 }
65 ForwardRefInstMetadata.clear();
66 }
Michael Ilseman407a6162012-11-15 22:34:00 +000067
Bill Wendlingbaad55c2013-02-08 06:32:06 +000068 // Handle any function attribute group forward references.
69 for (std::map<Value*, std::vector<unsigned> >::iterator
70 I = ForwardRefAttrGroups.begin(), E = ForwardRefAttrGroups.end();
71 I != E; ++I) {
72 Value *V = I->first;
73 std::vector<unsigned> &Vec = I->second;
74 AttrBuilder B;
75
76 for (std::vector<unsigned>::iterator VI = Vec.begin(), VE = Vec.end();
77 VI != VE; ++VI)
78 B.merge(NumberedAttrBuilders[*VI]);
79
80 if (Function *Fn = dyn_cast<Function>(V)) {
81 AttributeSet AS = Fn->getAttributes();
82 AttrBuilder FnAttrs(AS.getFnAttributes(), AttributeSet::FunctionIndex);
83 AS = AS.removeAttributes(Context, AttributeSet::FunctionIndex,
84 AS.getFnAttributes());
85
86 FnAttrs.merge(B);
87
88 // If the alignment was parsed as an attribute, move to the alignment
89 // field.
90 if (FnAttrs.hasAlignmentAttr()) {
91 Fn->setAlignment(FnAttrs.getAlignment());
92 FnAttrs.removeAttribute(Attribute::Alignment);
93 }
94
95 AS = AS.addAttributes(Context, AttributeSet::FunctionIndex,
96 AttributeSet::get(Context,
97 AttributeSet::FunctionIndex,
98 FnAttrs));
99 Fn->setAttributes(AS);
100 } else if (CallInst *CI = dyn_cast<CallInst>(V)) {
101 AttributeSet AS = CI->getAttributes();
102 AttrBuilder FnAttrs(AS.getFnAttributes(), AttributeSet::FunctionIndex);
103 AS = AS.removeAttributes(Context, AttributeSet::FunctionIndex,
104 AS.getFnAttributes());
Bill Wendlingf5467622013-02-12 10:13:06 +0000105 FnAttrs.merge(B);
Bill Wendlingbaad55c2013-02-08 06:32:06 +0000106 AS = AS.addAttributes(Context, AttributeSet::FunctionIndex,
107 AttributeSet::get(Context,
108 AttributeSet::FunctionIndex,
109 FnAttrs));
110 CI->setAttributes(AS);
111 } else if (InvokeInst *II = dyn_cast<InvokeInst>(V)) {
112 AttributeSet AS = II->getAttributes();
113 AttrBuilder FnAttrs(AS.getFnAttributes(), AttributeSet::FunctionIndex);
114 AS = AS.removeAttributes(Context, AttributeSet::FunctionIndex,
115 AS.getFnAttributes());
Bill Wendlingf5467622013-02-12 10:13:06 +0000116 FnAttrs.merge(B);
Bill Wendlingbaad55c2013-02-08 06:32:06 +0000117 AS = AS.addAttributes(Context, AttributeSet::FunctionIndex,
118 AttributeSet::get(Context,
119 AttributeSet::FunctionIndex,
120 FnAttrs));
121 II->setAttributes(AS);
122 } else {
123 llvm_unreachable("invalid object with forward attribute group reference");
124 }
125 }
Michael Ilseman407a6162012-11-15 22:34:00 +0000126
Chris Lattner09d9ef42009-10-28 03:39:23 +0000127 // If there are entries in ForwardRefBlockAddresses at this point, they are
128 // references after the function was defined. Resolve those now.
129 while (!ForwardRefBlockAddresses.empty()) {
130 // Okay, we are referencing an already-parsed function, resolve them now.
131 Function *TheFn = 0;
132 const ValID &Fn = ForwardRefBlockAddresses.begin()->first;
133 if (Fn.Kind == ValID::t_GlobalName)
134 TheFn = M->getFunction(Fn.StrVal);
135 else if (Fn.UIntVal < NumberedVals.size())
136 TheFn = dyn_cast<Function>(NumberedVals[Fn.UIntVal]);
Michael Ilseman407a6162012-11-15 22:34:00 +0000137
Chris Lattner09d9ef42009-10-28 03:39:23 +0000138 if (TheFn == 0)
139 return Error(Fn.Loc, "unknown function referenced by blockaddress");
Michael Ilseman407a6162012-11-15 22:34:00 +0000140
Chris Lattner09d9ef42009-10-28 03:39:23 +0000141 // Resolve all these references.
Michael Ilseman407a6162012-11-15 22:34:00 +0000142 if (ResolveForwardRefBlockAddresses(TheFn,
Chris Lattner09d9ef42009-10-28 03:39:23 +0000143 ForwardRefBlockAddresses.begin()->second,
144 0))
145 return true;
Michael Ilseman407a6162012-11-15 22:34:00 +0000146
Chris Lattner09d9ef42009-10-28 03:39:23 +0000147 ForwardRefBlockAddresses.erase(ForwardRefBlockAddresses.begin());
148 }
Michael Ilseman407a6162012-11-15 22:34:00 +0000149
Chris Lattner1afcace2011-07-09 17:41:24 +0000150 for (unsigned i = 0, e = NumberedTypes.size(); i != e; ++i)
151 if (NumberedTypes[i].second.isValid())
152 return Error(NumberedTypes[i].second,
153 "use of undefined type '%" + Twine(i) + "'");
154
155 for (StringMap<std::pair<Type*, LocTy> >::iterator I =
156 NamedTypes.begin(), E = NamedTypes.end(); I != E; ++I)
157 if (I->second.second.isValid())
158 return Error(I->second.second,
159 "use of undefined type named '" + I->getKey() + "'");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000160
Chris Lattnerdf986172009-01-02 07:01:27 +0000161 if (!ForwardRefVals.empty())
162 return Error(ForwardRefVals.begin()->second.second,
163 "use of undefined value '@" + ForwardRefVals.begin()->first +
164 "'");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000165
Chris Lattnerdf986172009-01-02 07:01:27 +0000166 if (!ForwardRefValIDs.empty())
167 return Error(ForwardRefValIDs.begin()->second.second,
168 "use of undefined value '@" +
Benjamin Kramerd1e17032010-09-27 17:42:11 +0000169 Twine(ForwardRefValIDs.begin()->first) + "'");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000170
Devang Patel1c7eea62009-07-08 19:23:54 +0000171 if (!ForwardRefMDNodes.empty())
172 return Error(ForwardRefMDNodes.begin()->second.second,
173 "use of undefined metadata '!" +
Benjamin Kramerd1e17032010-09-27 17:42:11 +0000174 Twine(ForwardRefMDNodes.begin()->first) + "'");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000175
Devang Patel1c7eea62009-07-08 19:23:54 +0000176
Chris Lattnerdf986172009-01-02 07:01:27 +0000177 // Look for intrinsic functions and CallInst that need to be upgraded
178 for (Module::iterator FI = M->begin(), FE = M->end(); FI != FE; )
179 UpgradeCallsToIntrinsic(FI++); // must be post-increment, as we remove
Daniel Dunbara279bc32009-09-20 02:20:51 +0000180
Chris Lattnerdf986172009-01-02 07:01:27 +0000181 return false;
182}
183
Michael Ilseman407a6162012-11-15 22:34:00 +0000184bool LLParser::ResolveForwardRefBlockAddresses(Function *TheFn,
Chris Lattner09d9ef42009-10-28 03:39:23 +0000185 std::vector<std::pair<ValID, GlobalValue*> > &Refs,
186 PerFunctionState *PFS) {
187 // Loop over all the references, resolving them.
188 for (unsigned i = 0, e = Refs.size(); i != e; ++i) {
189 BasicBlock *Res;
Chris Lattnercdfc9402009-11-01 01:27:45 +0000190 if (PFS) {
Chris Lattner09d9ef42009-10-28 03:39:23 +0000191 if (Refs[i].first.Kind == ValID::t_LocalName)
192 Res = PFS->GetBB(Refs[i].first.StrVal, Refs[i].first.Loc);
Chris Lattnercdfc9402009-11-01 01:27:45 +0000193 else
Chris Lattner09d9ef42009-10-28 03:39:23 +0000194 Res = PFS->GetBB(Refs[i].first.UIntVal, Refs[i].first.Loc);
195 } else if (Refs[i].first.Kind == ValID::t_LocalID) {
196 return Error(Refs[i].first.Loc,
Chris Lattneree7644d2009-11-02 18:28:45 +0000197 "cannot take address of numeric label after the function is defined");
Chris Lattner09d9ef42009-10-28 03:39:23 +0000198 } else {
199 Res = dyn_cast_or_null<BasicBlock>(
200 TheFn->getValueSymbolTable().lookup(Refs[i].first.StrVal));
201 }
Michael Ilseman407a6162012-11-15 22:34:00 +0000202
Chris Lattnercdfc9402009-11-01 01:27:45 +0000203 if (Res == 0)
Chris Lattner09d9ef42009-10-28 03:39:23 +0000204 return Error(Refs[i].first.Loc,
205 "referenced value is not a basic block");
Michael Ilseman407a6162012-11-15 22:34:00 +0000206
Chris Lattner09d9ef42009-10-28 03:39:23 +0000207 // Get the BlockAddress for this and update references to use it.
208 BlockAddress *BA = BlockAddress::get(TheFn, Res);
209 Refs[i].second->replaceAllUsesWith(BA);
210 Refs[i].second->eraseFromParent();
211 }
212 return false;
213}
214
215
Chris Lattnerdf986172009-01-02 07:01:27 +0000216//===----------------------------------------------------------------------===//
217// Top-Level Entities
218//===----------------------------------------------------------------------===//
219
220bool LLParser::ParseTopLevelEntities() {
Chris Lattnerdf986172009-01-02 07:01:27 +0000221 while (1) {
222 switch (Lex.getKind()) {
223 default: return TokError("expected top-level entity");
224 case lltok::Eof: return false;
Chris Lattnerdf986172009-01-02 07:01:27 +0000225 case lltok::kw_declare: if (ParseDeclare()) return true; break;
226 case lltok::kw_define: if (ParseDefine()) return true; break;
227 case lltok::kw_module: if (ParseModuleAsm()) return true; break;
228 case lltok::kw_target: if (ParseTargetDefinition()) return true; break;
Bill Wendling3defc0b2012-11-28 08:41:48 +0000229 case lltok::kw_deplibs: if (ParseDepLibs()) return true; break;
Dan Gohman3845e502009-08-12 23:32:33 +0000230 case lltok::LocalVarID: if (ParseUnnamedType()) return true; break;
Chris Lattnerdf986172009-01-02 07:01:27 +0000231 case lltok::LocalVar: if (ParseNamedType()) return true; break;
Dan Gohman3845e502009-08-12 23:32:33 +0000232 case lltok::GlobalID: if (ParseUnnamedGlobal()) return true; break;
Chris Lattnerdf986172009-01-02 07:01:27 +0000233 case lltok::GlobalVar: if (ParseNamedGlobal()) return true; break;
Chris Lattnere434d272009-12-30 04:56:59 +0000234 case lltok::exclaim: if (ParseStandaloneMetadata()) return true; break;
Bill Wendling95ce4c22013-02-06 06:52:58 +0000235 case lltok::MetadataVar:if (ParseNamedMetadata()) return true; break;
Chris Lattnerdf986172009-01-02 07:01:27 +0000236
237 // The Global variable production with no name can have many different
238 // optional leading prefixes, the production is:
239 // GlobalVar ::= OptionalLinkage OptionalVisibility OptionalThreadLocal
Rafael Espindolabea46262011-01-08 16:42:36 +0000240 // OptionalAddrSpace OptionalUnNammedAddr
241 // ('constant'|'global') ...
Bill Wendling5e721d72010-07-01 21:55:59 +0000242 case lltok::kw_private: // OptionalLinkage
243 case lltok::kw_linker_private: // OptionalLinkage
244 case lltok::kw_linker_private_weak: // OptionalLinkage
Bill Wendling32811be2012-08-17 18:33:14 +0000245 case lltok::kw_linker_private_weak_def_auto: // FIXME: backwards compat.
Bill Wendling5e721d72010-07-01 21:55:59 +0000246 case lltok::kw_internal: // OptionalLinkage
247 case lltok::kw_weak: // OptionalLinkage
248 case lltok::kw_weak_odr: // OptionalLinkage
249 case lltok::kw_linkonce: // OptionalLinkage
250 case lltok::kw_linkonce_odr: // OptionalLinkage
Bill Wendling32811be2012-08-17 18:33:14 +0000251 case lltok::kw_linkonce_odr_auto_hide: // OptionalLinkage
Bill Wendling5e721d72010-07-01 21:55:59 +0000252 case lltok::kw_appending: // OptionalLinkage
253 case lltok::kw_dllexport: // OptionalLinkage
254 case lltok::kw_common: // OptionalLinkage
255 case lltok::kw_dllimport: // OptionalLinkage
256 case lltok::kw_extern_weak: // OptionalLinkage
257 case lltok::kw_external: { // OptionalLinkage
Chris Lattnerdf986172009-01-02 07:01:27 +0000258 unsigned Linkage, Visibility;
259 if (ParseOptionalLinkage(Linkage) ||
260 ParseOptionalVisibility(Visibility) ||
Chris Lattnereeb4a842009-07-02 23:08:13 +0000261 ParseGlobal("", SMLoc(), Linkage, true, Visibility))
Chris Lattnerdf986172009-01-02 07:01:27 +0000262 return true;
263 break;
264 }
265 case lltok::kw_default: // OptionalVisibility
266 case lltok::kw_hidden: // OptionalVisibility
267 case lltok::kw_protected: { // OptionalVisibility
268 unsigned Visibility;
269 if (ParseOptionalVisibility(Visibility) ||
Chris Lattnereeb4a842009-07-02 23:08:13 +0000270 ParseGlobal("", SMLoc(), 0, false, Visibility))
Chris Lattnerdf986172009-01-02 07:01:27 +0000271 return true;
272 break;
273 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000274
Chris Lattnerdf986172009-01-02 07:01:27 +0000275 case lltok::kw_thread_local: // OptionalThreadLocal
276 case lltok::kw_addrspace: // OptionalAddrSpace
277 case lltok::kw_constant: // GlobalType
278 case lltok::kw_global: // GlobalType
Chris Lattnereeb4a842009-07-02 23:08:13 +0000279 if (ParseGlobal("", SMLoc(), 0, false, 0)) return true;
Chris Lattnerdf986172009-01-02 07:01:27 +0000280 break;
Bill Wendling0b778662013-02-09 15:48:49 +0000281
282 case lltok::kw_attributes: if (ParseUnnamedAttrGrp()) return true; break;
Chris Lattnerdf986172009-01-02 07:01:27 +0000283 }
284 }
285}
286
287
288/// toplevelentity
289/// ::= 'module' 'asm' STRINGCONSTANT
290bool LLParser::ParseModuleAsm() {
291 assert(Lex.getKind() == lltok::kw_module);
292 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +0000293
294 std::string AsmStr;
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000295 if (ParseToken(lltok::kw_asm, "expected 'module asm'") ||
296 ParseStringConstant(AsmStr)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000297
Rafael Espindola38c4e532011-03-02 04:14:42 +0000298 M->appendModuleInlineAsm(AsmStr);
Chris Lattnerdf986172009-01-02 07:01:27 +0000299 return false;
300}
301
302/// toplevelentity
303/// ::= 'target' 'triple' '=' STRINGCONSTANT
304/// ::= 'target' 'datalayout' '=' STRINGCONSTANT
305bool LLParser::ParseTargetDefinition() {
306 assert(Lex.getKind() == lltok::kw_target);
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000307 std::string Str;
Chris Lattnerdf986172009-01-02 07:01:27 +0000308 switch (Lex.Lex()) {
309 default: return TokError("unknown target property");
310 case lltok::kw_triple:
311 Lex.Lex();
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000312 if (ParseToken(lltok::equal, "expected '=' after target triple") ||
313 ParseStringConstant(Str))
Chris Lattnerdf986172009-01-02 07:01:27 +0000314 return true;
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000315 M->setTargetTriple(Str);
Chris Lattnerdf986172009-01-02 07:01:27 +0000316 return false;
317 case lltok::kw_datalayout:
318 Lex.Lex();
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000319 if (ParseToken(lltok::equal, "expected '=' after target datalayout") ||
320 ParseStringConstant(Str))
Chris Lattnerdf986172009-01-02 07:01:27 +0000321 return true;
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000322 M->setDataLayout(Str);
Chris Lattnerdf986172009-01-02 07:01:27 +0000323 return false;
324 }
325}
326
Bill Wendling3defc0b2012-11-28 08:41:48 +0000327/// toplevelentity
328/// ::= 'deplibs' '=' '[' ']'
329/// ::= 'deplibs' '=' '[' STRINGCONSTANT (',' STRINGCONSTANT)* ']'
330/// FIXME: Remove in 4.0. Currently parse, but ignore.
331bool LLParser::ParseDepLibs() {
332 assert(Lex.getKind() == lltok::kw_deplibs);
333 Lex.Lex();
334 if (ParseToken(lltok::equal, "expected '=' after deplibs") ||
335 ParseToken(lltok::lsquare, "expected '=' after deplibs"))
336 return true;
337
338 if (EatIfPresent(lltok::rsquare))
339 return false;
340
341 do {
342 std::string Str;
343 if (ParseStringConstant(Str)) return true;
344 } while (EatIfPresent(lltok::comma));
345
346 return ParseToken(lltok::rsquare, "expected ']' at end of list");
347}
348
Dan Gohman3845e502009-08-12 23:32:33 +0000349/// ParseUnnamedType:
Dan Gohman3845e502009-08-12 23:32:33 +0000350/// ::= LocalVarID '=' 'type' type
Chris Lattnerdf986172009-01-02 07:01:27 +0000351bool LLParser::ParseUnnamedType() {
Chris Lattneredcaca82011-06-18 23:51:31 +0000352 LocTy TypeLoc = Lex.getLoc();
Chris Lattner1afcace2011-07-09 17:41:24 +0000353 unsigned TypeID = Lex.getUIntVal();
Chris Lattnera53616d2011-06-19 00:03:46 +0000354 Lex.Lex(); // eat LocalVarID;
355
356 if (ParseToken(lltok::equal, "expected '=' after name") ||
357 ParseToken(lltok::kw_type, "expected 'type' after '='"))
358 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +0000359
Chris Lattner1afcace2011-07-09 17:41:24 +0000360 if (TypeID >= NumberedTypes.size())
361 NumberedTypes.resize(TypeID+1);
Michael Ilseman407a6162012-11-15 22:34:00 +0000362
Chris Lattner1afcace2011-07-09 17:41:24 +0000363 Type *Result = 0;
364 if (ParseStructDefinition(TypeLoc, "",
365 NumberedTypes[TypeID], Result)) return true;
Michael Ilseman407a6162012-11-15 22:34:00 +0000366
Chris Lattner1afcace2011-07-09 17:41:24 +0000367 if (!isa<StructType>(Result)) {
368 std::pair<Type*, LocTy> &Entry = NumberedTypes[TypeID];
369 if (Entry.first)
370 return Error(TypeLoc, "non-struct types may not be recursive");
371 Entry.first = Result;
372 Entry.second = SMLoc();
Chris Lattnerdf986172009-01-02 07:01:27 +0000373 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000374
Chris Lattnerdf986172009-01-02 07:01:27 +0000375 return false;
376}
377
Chris Lattner1afcace2011-07-09 17:41:24 +0000378
Chris Lattnerdf986172009-01-02 07:01:27 +0000379/// toplevelentity
380/// ::= LocalVar '=' 'type' type
381bool LLParser::ParseNamedType() {
382 std::string Name = Lex.getStrVal();
383 LocTy NameLoc = Lex.getLoc();
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000384 Lex.Lex(); // eat LocalVar.
Daniel Dunbara279bc32009-09-20 02:20:51 +0000385
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000386 if (ParseToken(lltok::equal, "expected '=' after name") ||
Chris Lattner1afcace2011-07-09 17:41:24 +0000387 ParseToken(lltok::kw_type, "expected 'type' after name"))
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000388 return true;
Michael Ilseman407a6162012-11-15 22:34:00 +0000389
Chris Lattner1afcace2011-07-09 17:41:24 +0000390 Type *Result = 0;
391 if (ParseStructDefinition(NameLoc, Name,
392 NamedTypes[Name], Result)) return true;
Michael Ilseman407a6162012-11-15 22:34:00 +0000393
Chris Lattner1afcace2011-07-09 17:41:24 +0000394 if (!isa<StructType>(Result)) {
395 std::pair<Type*, LocTy> &Entry = NamedTypes[Name];
396 if (Entry.first)
397 return Error(NameLoc, "non-struct types may not be recursive");
398 Entry.first = Result;
399 Entry.second = SMLoc();
Chris Lattnerdf986172009-01-02 07:01:27 +0000400 }
Michael Ilseman407a6162012-11-15 22:34:00 +0000401
Chris Lattner1afcace2011-07-09 17:41:24 +0000402 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +0000403}
404
405
406/// toplevelentity
407/// ::= 'declare' FunctionHeader
408bool LLParser::ParseDeclare() {
409 assert(Lex.getKind() == lltok::kw_declare);
410 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +0000411
Chris Lattnerdf986172009-01-02 07:01:27 +0000412 Function *F;
413 return ParseFunctionHeader(F, false);
414}
415
416/// toplevelentity
417/// ::= 'define' FunctionHeader '{' ...
418bool LLParser::ParseDefine() {
419 assert(Lex.getKind() == lltok::kw_define);
420 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +0000421
Chris Lattnerdf986172009-01-02 07:01:27 +0000422 Function *F;
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000423 return ParseFunctionHeader(F, true) ||
424 ParseFunctionBody(*F);
Chris Lattnerdf986172009-01-02 07:01:27 +0000425}
426
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000427/// ParseGlobalType
428/// ::= 'constant'
429/// ::= 'global'
Chris Lattnerdf986172009-01-02 07:01:27 +0000430bool LLParser::ParseGlobalType(bool &IsConstant) {
431 if (Lex.getKind() == lltok::kw_constant)
432 IsConstant = true;
433 else if (Lex.getKind() == lltok::kw_global)
434 IsConstant = false;
Duncan Sands35b51072009-02-10 16:24:55 +0000435 else {
436 IsConstant = false;
Chris Lattnerdf986172009-01-02 07:01:27 +0000437 return TokError("expected 'global' or 'constant'");
Duncan Sands35b51072009-02-10 16:24:55 +0000438 }
Chris Lattnerdf986172009-01-02 07:01:27 +0000439 Lex.Lex();
440 return false;
441}
442
Dan Gohman3845e502009-08-12 23:32:33 +0000443/// ParseUnnamedGlobal:
444/// OptionalVisibility ALIAS ...
445/// OptionalLinkage OptionalVisibility ... -> global variable
446/// GlobalID '=' OptionalVisibility ALIAS ...
447/// GlobalID '=' OptionalLinkage OptionalVisibility ... -> global variable
448bool LLParser::ParseUnnamedGlobal() {
449 unsigned VarID = NumberedVals.size();
450 std::string Name;
451 LocTy NameLoc = Lex.getLoc();
452
453 // Handle the GlobalID form.
454 if (Lex.getKind() == lltok::GlobalID) {
455 if (Lex.getUIntVal() != VarID)
456 return Error(Lex.getLoc(), "variable expected to be numbered '%" +
Benjamin Kramerd1e17032010-09-27 17:42:11 +0000457 Twine(VarID) + "'");
Dan Gohman3845e502009-08-12 23:32:33 +0000458 Lex.Lex(); // eat GlobalID;
459
460 if (ParseToken(lltok::equal, "expected '=' after name"))
461 return true;
462 }
463
464 bool HasLinkage;
465 unsigned Linkage, Visibility;
466 if (ParseOptionalLinkage(Linkage, HasLinkage) ||
467 ParseOptionalVisibility(Visibility))
468 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000469
Dan Gohman3845e502009-08-12 23:32:33 +0000470 if (HasLinkage || Lex.getKind() != lltok::kw_alias)
471 return ParseGlobal(Name, NameLoc, Linkage, HasLinkage, Visibility);
472 return ParseAlias(Name, NameLoc, Visibility);
473}
474
Chris Lattnerdf986172009-01-02 07:01:27 +0000475/// ParseNamedGlobal:
476/// GlobalVar '=' OptionalVisibility ALIAS ...
477/// GlobalVar '=' OptionalLinkage OptionalVisibility ... -> global variable
478bool LLParser::ParseNamedGlobal() {
479 assert(Lex.getKind() == lltok::GlobalVar);
480 LocTy NameLoc = Lex.getLoc();
481 std::string Name = Lex.getStrVal();
482 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +0000483
Chris Lattnerdf986172009-01-02 07:01:27 +0000484 bool HasLinkage;
485 unsigned Linkage, Visibility;
486 if (ParseToken(lltok::equal, "expected '=' in global variable") ||
487 ParseOptionalLinkage(Linkage, HasLinkage) ||
488 ParseOptionalVisibility(Visibility))
489 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000490
Chris Lattnerdf986172009-01-02 07:01:27 +0000491 if (HasLinkage || Lex.getKind() != lltok::kw_alias)
492 return ParseGlobal(Name, NameLoc, Linkage, HasLinkage, Visibility);
493 return ParseAlias(Name, NameLoc, Visibility);
494}
495
Devang Patel256be962009-07-20 19:00:08 +0000496// MDString:
497// ::= '!' STRINGCONSTANT
Chris Lattner442ffa12009-12-29 21:53:55 +0000498bool LLParser::ParseMDString(MDString *&Result) {
Devang Patel256be962009-07-20 19:00:08 +0000499 std::string Str;
500 if (ParseStringConstant(Str)) return true;
Chris Lattner442ffa12009-12-29 21:53:55 +0000501 Result = MDString::get(Context, Str);
Devang Patel256be962009-07-20 19:00:08 +0000502 return false;
503}
504
505// MDNode:
506// ::= '!' MDNodeNumber
Chris Lattner449c3102010-04-01 05:14:45 +0000507//
508/// This version of ParseMDNodeID returns the slot number and null in the case
509/// of a forward reference.
510bool LLParser::ParseMDNodeID(MDNode *&Result, unsigned &SlotNo) {
511 // !{ ..., !42, ... }
512 if (ParseUInt32(SlotNo)) return true;
513
514 // Check existing MDNode.
515 if (SlotNo < NumberedMetadata.size() && NumberedMetadata[SlotNo] != 0)
516 Result = NumberedMetadata[SlotNo];
517 else
518 Result = 0;
519 return false;
520}
521
Chris Lattner4a72efc2009-12-30 04:15:23 +0000522bool LLParser::ParseMDNodeID(MDNode *&Result) {
Devang Patel256be962009-07-20 19:00:08 +0000523 // !{ ..., !42, ... }
524 unsigned MID = 0;
Chris Lattner449c3102010-04-01 05:14:45 +0000525 if (ParseMDNodeID(Result, MID)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000526
Chris Lattner449c3102010-04-01 05:14:45 +0000527 // If not a forward reference, just return it now.
528 if (Result) return false;
Devang Patel256be962009-07-20 19:00:08 +0000529
Chris Lattner449c3102010-04-01 05:14:45 +0000530 // Otherwise, create MDNode forward reference.
Dmitri Gribenko5c332db2013-05-05 00:40:33 +0000531 MDNode *FwdNode = MDNode::getTemporary(Context, None);
Devang Patel256be962009-07-20 19:00:08 +0000532 ForwardRefMDNodes[MID] = std::make_pair(FwdNode, Lex.getLoc());
Michael Ilseman407a6162012-11-15 22:34:00 +0000533
Chris Lattner0834e6a2009-12-30 04:51:58 +0000534 if (NumberedMetadata.size() <= MID)
535 NumberedMetadata.resize(MID+1);
536 NumberedMetadata[MID] = FwdNode;
Chris Lattner442ffa12009-12-29 21:53:55 +0000537 Result = FwdNode;
Devang Patel256be962009-07-20 19:00:08 +0000538 return false;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000539}
Devang Patel256be962009-07-20 19:00:08 +0000540
Chris Lattner84d03b12009-12-29 22:35:39 +0000541/// ParseNamedMetadata:
Devang Pateleff2ab62009-07-29 00:34:02 +0000542/// !foo = !{ !1, !2 }
543bool LLParser::ParseNamedMetadata() {
Chris Lattner1d928312009-12-30 05:02:06 +0000544 assert(Lex.getKind() == lltok::MetadataVar);
Devang Pateleff2ab62009-07-29 00:34:02 +0000545 std::string Name = Lex.getStrVal();
Chris Lattner1d928312009-12-30 05:02:06 +0000546 Lex.Lex();
Devang Pateleff2ab62009-07-29 00:34:02 +0000547
Chris Lattner84d03b12009-12-29 22:35:39 +0000548 if (ParseToken(lltok::equal, "expected '=' here") ||
Chris Lattnere434d272009-12-30 04:56:59 +0000549 ParseToken(lltok::exclaim, "Expected '!' here") ||
Chris Lattner84d03b12009-12-29 22:35:39 +0000550 ParseToken(lltok::lbrace, "Expected '{' here"))
Devang Pateleff2ab62009-07-29 00:34:02 +0000551 return true;
552
Dan Gohman17aa92c2010-07-21 23:38:33 +0000553 NamedMDNode *NMD = M->getOrInsertNamedMetadata(Name);
Dan Gohman9dc8ae12010-07-13 19:42:44 +0000554 if (Lex.getKind() != lltok::rbrace)
555 do {
Dan Gohman9dc8ae12010-07-13 19:42:44 +0000556 if (ParseToken(lltok::exclaim, "Expected '!' here"))
557 return true;
Michael Ilseman407a6162012-11-15 22:34:00 +0000558
Dan Gohman9dc8ae12010-07-13 19:42:44 +0000559 MDNode *N = 0;
560 if (ParseMDNodeID(N)) return true;
Dan Gohman17aa92c2010-07-21 23:38:33 +0000561 NMD->addOperand(N);
Dan Gohman9dc8ae12010-07-13 19:42:44 +0000562 } while (EatIfPresent(lltok::comma));
Devang Pateleff2ab62009-07-29 00:34:02 +0000563
564 if (ParseToken(lltok::rbrace, "expected end of metadata node"))
565 return true;
566
Devang Pateleff2ab62009-07-29 00:34:02 +0000567 return false;
568}
569
Devang Patel923078c2009-07-01 19:21:12 +0000570/// ParseStandaloneMetadata:
Daniel Dunbara279bc32009-09-20 02:20:51 +0000571/// !42 = !{...}
Devang Patel923078c2009-07-01 19:21:12 +0000572bool LLParser::ParseStandaloneMetadata() {
Chris Lattnere434d272009-12-30 04:56:59 +0000573 assert(Lex.getKind() == lltok::exclaim);
Devang Patel923078c2009-07-01 19:21:12 +0000574 Lex.Lex();
575 unsigned MetadataID = 0;
Devang Patel923078c2009-07-01 19:21:12 +0000576
577 LocTy TyLoc;
Chris Lattner1afcace2011-07-09 17:41:24 +0000578 Type *Ty = 0;
Devang Patel104cf9e2009-07-23 01:07:34 +0000579 SmallVector<Value *, 16> Elts;
Chris Lattner3f5132a2009-12-29 22:40:21 +0000580 if (ParseUInt32(MetadataID) ||
581 ParseToken(lltok::equal, "expected '=' here") ||
582 ParseType(Ty, TyLoc) ||
Chris Lattnere434d272009-12-30 04:56:59 +0000583 ParseToken(lltok::exclaim, "Expected '!' here") ||
Chris Lattner3f5132a2009-12-29 22:40:21 +0000584 ParseToken(lltok::lbrace, "Expected '{' here") ||
Victor Hernandez24e64df2010-01-10 07:14:18 +0000585 ParseMDNodeVector(Elts, NULL) ||
Chris Lattner3f5132a2009-12-29 22:40:21 +0000586 ParseToken(lltok::rbrace, "expected end of metadata node"))
Devang Patel104cf9e2009-07-23 01:07:34 +0000587 return true;
588
Jay Foadec9186b2011-04-21 19:59:31 +0000589 MDNode *Init = MDNode::get(Context, Elts);
Michael Ilseman407a6162012-11-15 22:34:00 +0000590
Chris Lattner0834e6a2009-12-30 04:51:58 +0000591 // See if this was forward referenced, if so, handle it.
Chris Lattnere80250e2009-12-29 21:43:58 +0000592 std::map<unsigned, std::pair<TrackingVH<MDNode>, LocTy> >::iterator
Devang Patel1c7eea62009-07-08 19:23:54 +0000593 FI = ForwardRefMDNodes.find(MetadataID);
594 if (FI != ForwardRefMDNodes.end()) {
Dan Gohman489b29b2010-08-20 22:02:26 +0000595 MDNode *Temp = FI->second.first;
596 Temp->replaceAllUsesWith(Init);
597 MDNode::deleteTemporary(Temp);
Devang Patel1c7eea62009-07-08 19:23:54 +0000598 ForwardRefMDNodes.erase(FI);
Michael Ilseman407a6162012-11-15 22:34:00 +0000599
Chris Lattner0834e6a2009-12-30 04:51:58 +0000600 assert(NumberedMetadata[MetadataID] == Init && "Tracking VH didn't work");
601 } else {
602 if (MetadataID >= NumberedMetadata.size())
603 NumberedMetadata.resize(MetadataID+1);
604
605 if (NumberedMetadata[MetadataID] != 0)
606 return TokError("Metadata id is already used");
607 NumberedMetadata[MetadataID] = Init;
Devang Patel1c7eea62009-07-08 19:23:54 +0000608 }
609
Devang Patel923078c2009-07-01 19:21:12 +0000610 return false;
611}
612
Chris Lattnerdf986172009-01-02 07:01:27 +0000613/// ParseAlias:
614/// ::= GlobalVar '=' OptionalVisibility 'alias' OptionalLinkage Aliasee
615/// Aliasee
Chris Lattner040f7582009-04-25 21:26:00 +0000616/// ::= TypeAndValue
617/// ::= 'bitcast' '(' TypeAndValue 'to' Type ')'
Dan Gohmandd8004d2009-07-27 21:53:46 +0000618/// ::= 'getelementptr' 'inbounds'? '(' ... ')'
Chris Lattnerdf986172009-01-02 07:01:27 +0000619///
620/// Everything through visibility has already been parsed.
621///
622bool LLParser::ParseAlias(const std::string &Name, LocTy NameLoc,
623 unsigned Visibility) {
624 assert(Lex.getKind() == lltok::kw_alias);
625 Lex.Lex();
626 unsigned Linkage;
627 LocTy LinkageLoc = Lex.getLoc();
628 if (ParseOptionalLinkage(Linkage))
629 return true;
630
631 if (Linkage != GlobalValue::ExternalLinkage &&
Duncan Sands667d4b82009-03-07 15:45:40 +0000632 Linkage != GlobalValue::WeakAnyLinkage &&
633 Linkage != GlobalValue::WeakODRLinkage &&
Rafael Espindolabb46f522009-01-15 20:18:42 +0000634 Linkage != GlobalValue::InternalLinkage &&
Bill Wendling3d10a5a2009-07-20 01:03:30 +0000635 Linkage != GlobalValue::PrivateLinkage &&
Bill Wendling5e721d72010-07-01 21:55:59 +0000636 Linkage != GlobalValue::LinkerPrivateLinkage &&
Bill Wendling32811be2012-08-17 18:33:14 +0000637 Linkage != GlobalValue::LinkerPrivateWeakLinkage)
Chris Lattnerdf986172009-01-02 07:01:27 +0000638 return Error(LinkageLoc, "invalid linkage type for alias");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000639
Chris Lattnerdf986172009-01-02 07:01:27 +0000640 Constant *Aliasee;
641 LocTy AliaseeLoc = Lex.getLoc();
Chris Lattner040f7582009-04-25 21:26:00 +0000642 if (Lex.getKind() != lltok::kw_bitcast &&
643 Lex.getKind() != lltok::kw_getelementptr) {
Chris Lattnerdf986172009-01-02 07:01:27 +0000644 if (ParseGlobalTypeAndValue(Aliasee)) return true;
645 } else {
646 // The bitcast dest type is not present, it is implied by the dest type.
647 ValID ID;
648 if (ParseValID(ID)) return true;
649 if (ID.Kind != ValID::t_Constant)
650 return Error(AliaseeLoc, "invalid aliasee");
651 Aliasee = ID.ConstantVal;
652 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000653
Duncan Sands1df98592010-02-16 11:11:14 +0000654 if (!Aliasee->getType()->isPointerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +0000655 return Error(AliaseeLoc, "alias must have pointer type");
656
657 // Okay, create the alias but do not insert it into the module yet.
658 GlobalAlias* GA = new GlobalAlias(Aliasee->getType(),
659 (GlobalValue::LinkageTypes)Linkage, Name,
660 Aliasee);
661 GA->setVisibility((GlobalValue::VisibilityTypes)Visibility);
Daniel Dunbara279bc32009-09-20 02:20:51 +0000662
Chris Lattnerdf986172009-01-02 07:01:27 +0000663 // See if this value already exists in the symbol table. If so, it is either
664 // a redefinition or a definition of a forward reference.
Chris Lattner1d871c52009-10-25 23:22:50 +0000665 if (GlobalValue *Val = M->getNamedValue(Name)) {
Chris Lattnerdf986172009-01-02 07:01:27 +0000666 // See if this was a redefinition. If so, there is no entry in
667 // ForwardRefVals.
668 std::map<std::string, std::pair<GlobalValue*, LocTy> >::iterator
669 I = ForwardRefVals.find(Name);
670 if (I == ForwardRefVals.end())
671 return Error(NameLoc, "redefinition of global named '@" + Name + "'");
672
673 // Otherwise, this was a definition of forward ref. Verify that types
674 // agree.
675 if (Val->getType() != GA->getType())
676 return Error(NameLoc,
677 "forward reference and definition of alias have different types");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000678
Chris Lattnerdf986172009-01-02 07:01:27 +0000679 // If they agree, just RAUW the old value with the alias and remove the
680 // forward ref info.
681 Val->replaceAllUsesWith(GA);
682 Val->eraseFromParent();
683 ForwardRefVals.erase(I);
684 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000685
Chris Lattnerdf986172009-01-02 07:01:27 +0000686 // Insert into the module, we know its name won't collide now.
687 M->getAliasList().push_back(GA);
Benjamin Krameraf812352010-10-16 11:28:23 +0000688 assert(GA->getName() == Name && "Should not be a name conflict!");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000689
Chris Lattnerdf986172009-01-02 07:01:27 +0000690 return false;
691}
692
693/// ParseGlobal
694/// ::= GlobalVar '=' OptionalLinkage OptionalVisibility OptionalThreadLocal
Michael Gottesmana2de37c2013-02-05 05:57:38 +0000695/// OptionalAddrSpace OptionalUnNammedAddr
696/// OptionalExternallyInitialized GlobalType Type Const
Chris Lattnerdf986172009-01-02 07:01:27 +0000697/// ::= OptionalLinkage OptionalVisibility OptionalThreadLocal
Michael Gottesmana2de37c2013-02-05 05:57:38 +0000698/// OptionalAddrSpace OptionalUnNammedAddr
699/// OptionalExternallyInitialized GlobalType Type Const
Chris Lattnerdf986172009-01-02 07:01:27 +0000700///
701/// Everything through visibility has been parsed already.
702///
703bool LLParser::ParseGlobal(const std::string &Name, LocTy NameLoc,
704 unsigned Linkage, bool HasLinkage,
705 unsigned Visibility) {
706 unsigned AddrSpace;
Michael Gottesmana2de37c2013-02-05 05:57:38 +0000707 bool IsConstant, UnnamedAddr, IsExternallyInitialized;
Hans Wennborgce718ff2012-06-23 11:37:03 +0000708 GlobalVariable::ThreadLocalMode TLM;
Rafael Espindolad72479c2011-01-13 01:30:30 +0000709 LocTy UnnamedAddrLoc;
Michael Gottesmana2de37c2013-02-05 05:57:38 +0000710 LocTy IsExternallyInitializedLoc;
Chris Lattnerdf986172009-01-02 07:01:27 +0000711 LocTy TyLoc;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000712
Chris Lattner1afcace2011-07-09 17:41:24 +0000713 Type *Ty = 0;
Hans Wennborgce718ff2012-06-23 11:37:03 +0000714 if (ParseOptionalThreadLocal(TLM) ||
Chris Lattnerdf986172009-01-02 07:01:27 +0000715 ParseOptionalAddrSpace(AddrSpace) ||
Rafael Espindolad72479c2011-01-13 01:30:30 +0000716 ParseOptionalToken(lltok::kw_unnamed_addr, UnnamedAddr,
717 &UnnamedAddrLoc) ||
Michael Gottesmana2de37c2013-02-05 05:57:38 +0000718 ParseOptionalToken(lltok::kw_externally_initialized,
719 IsExternallyInitialized,
720 &IsExternallyInitializedLoc) ||
Chris Lattnerdf986172009-01-02 07:01:27 +0000721 ParseGlobalType(IsConstant) ||
722 ParseType(Ty, TyLoc))
723 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000724
Chris Lattnerdf986172009-01-02 07:01:27 +0000725 // If the linkage is specified and is external, then no initializer is
726 // present.
727 Constant *Init = 0;
728 if (!HasLinkage || (Linkage != GlobalValue::DLLImportLinkage &&
Duncan Sands5f4ee1f2009-03-11 08:08:06 +0000729 Linkage != GlobalValue::ExternalWeakLinkage &&
Chris Lattnerdf986172009-01-02 07:01:27 +0000730 Linkage != GlobalValue::ExternalLinkage)) {
731 if (ParseGlobalValue(Ty, Init))
732 return true;
733 }
734
Duncan Sands1df98592010-02-16 11:11:14 +0000735 if (Ty->isFunctionTy() || Ty->isLabelTy())
Chris Lattner4a2f1122009-02-08 20:00:15 +0000736 return Error(TyLoc, "invalid type for global variable");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000737
Chris Lattnerdf986172009-01-02 07:01:27 +0000738 GlobalVariable *GV = 0;
739
740 // See if the global was forward referenced, if so, use the global.
Chris Lattner91dad872009-02-02 07:24:28 +0000741 if (!Name.empty()) {
Chris Lattner1d871c52009-10-25 23:22:50 +0000742 if (GlobalValue *GVal = M->getNamedValue(Name)) {
743 if (!ForwardRefVals.erase(Name) || !isa<GlobalValue>(GVal))
744 return Error(NameLoc, "redefinition of global '@" + Name + "'");
745 GV = cast<GlobalVariable>(GVal);
746 }
Chris Lattnerdf986172009-01-02 07:01:27 +0000747 } else {
748 std::map<unsigned, std::pair<GlobalValue*, LocTy> >::iterator
749 I = ForwardRefValIDs.find(NumberedVals.size());
750 if (I != ForwardRefValIDs.end()) {
751 GV = cast<GlobalVariable>(I->second.first);
752 ForwardRefValIDs.erase(I);
753 }
754 }
755
756 if (GV == 0) {
Daniel Dunbara279bc32009-09-20 02:20:51 +0000757 GV = new GlobalVariable(*M, Ty, false, GlobalValue::ExternalLinkage, 0,
Hans Wennborgce718ff2012-06-23 11:37:03 +0000758 Name, 0, GlobalVariable::NotThreadLocal,
759 AddrSpace);
Chris Lattnerdf986172009-01-02 07:01:27 +0000760 } else {
761 if (GV->getType()->getElementType() != Ty)
762 return Error(TyLoc,
763 "forward reference and definition of global have different types");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000764
Chris Lattnerdf986172009-01-02 07:01:27 +0000765 // Move the forward-reference to the correct spot in the module.
766 M->getGlobalList().splice(M->global_end(), M->getGlobalList(), GV);
767 }
768
769 if (Name.empty())
770 NumberedVals.push_back(GV);
Daniel Dunbara279bc32009-09-20 02:20:51 +0000771
Chris Lattnerdf986172009-01-02 07:01:27 +0000772 // Set the parsed properties on the global.
773 if (Init)
774 GV->setInitializer(Init);
775 GV->setConstant(IsConstant);
776 GV->setLinkage((GlobalValue::LinkageTypes)Linkage);
777 GV->setVisibility((GlobalValue::VisibilityTypes)Visibility);
Michael Gottesmana2de37c2013-02-05 05:57:38 +0000778 GV->setExternallyInitialized(IsExternallyInitialized);
Hans Wennborgce718ff2012-06-23 11:37:03 +0000779 GV->setThreadLocalMode(TLM);
Rafael Espindolabea46262011-01-08 16:42:36 +0000780 GV->setUnnamedAddr(UnnamedAddr);
Daniel Dunbara279bc32009-09-20 02:20:51 +0000781
Chris Lattnerdf986172009-01-02 07:01:27 +0000782 // Parse attributes on the global.
783 while (Lex.getKind() == lltok::comma) {
784 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +0000785
Chris Lattnerdf986172009-01-02 07:01:27 +0000786 if (Lex.getKind() == lltok::kw_section) {
787 Lex.Lex();
788 GV->setSection(Lex.getStrVal());
789 if (ParseToken(lltok::StringConstant, "expected global section string"))
790 return true;
791 } else if (Lex.getKind() == lltok::kw_align) {
792 unsigned Alignment;
793 if (ParseOptionalAlignment(Alignment)) return true;
794 GV->setAlignment(Alignment);
795 } else {
796 TokError("unknown global variable property!");
797 }
798 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000799
Chris Lattnerdf986172009-01-02 07:01:27 +0000800 return false;
801}
802
Bill Wendling95ce4c22013-02-06 06:52:58 +0000803/// ParseUnnamedAttrGrp
Bill Wendling0b778662013-02-09 15:48:49 +0000804/// ::= 'attributes' AttrGrpID '=' '{' AttrValPair+ '}'
Bill Wendling95ce4c22013-02-06 06:52:58 +0000805bool LLParser::ParseUnnamedAttrGrp() {
Bill Wendling0b778662013-02-09 15:48:49 +0000806 assert(Lex.getKind() == lltok::kw_attributes);
Bill Wendling95ce4c22013-02-06 06:52:58 +0000807 LocTy AttrGrpLoc = Lex.getLoc();
Bill Wendling0b778662013-02-09 15:48:49 +0000808 Lex.Lex();
809
810 assert(Lex.getKind() == lltok::AttrGrpID);
Bill Wendling95ce4c22013-02-06 06:52:58 +0000811 unsigned VarID = Lex.getUIntVal();
Bill Wendlingbaad55c2013-02-08 06:32:06 +0000812 std::vector<unsigned> unused;
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;
Diego Novillo77226a02013-05-24 12:26:52 +0000912 case lltok::kw_cold: B.addAttribute(Attribute::Cold); break;
Kostya Serebryany8eec41f2013-02-26 06:58:09 +0000913 case lltok::kw_inlinehint: B.addAttribute(Attribute::InlineHint); break;
914 case lltok::kw_minsize: B.addAttribute(Attribute::MinSize); break;
915 case lltok::kw_naked: B.addAttribute(Attribute::Naked); break;
916 case lltok::kw_nobuiltin: B.addAttribute(Attribute::NoBuiltin); break;
917 case lltok::kw_noduplicate: B.addAttribute(Attribute::NoDuplicate); break;
918 case lltok::kw_noimplicitfloat: B.addAttribute(Attribute::NoImplicitFloat); break;
919 case lltok::kw_noinline: B.addAttribute(Attribute::NoInline); break;
920 case lltok::kw_nonlazybind: B.addAttribute(Attribute::NonLazyBind); break;
921 case lltok::kw_noredzone: B.addAttribute(Attribute::NoRedZone); break;
922 case lltok::kw_noreturn: B.addAttribute(Attribute::NoReturn); break;
923 case lltok::kw_nounwind: B.addAttribute(Attribute::NoUnwind); break;
924 case lltok::kw_optsize: B.addAttribute(Attribute::OptimizeForSize); break;
925 case lltok::kw_readnone: B.addAttribute(Attribute::ReadNone); break;
926 case lltok::kw_readonly: B.addAttribute(Attribute::ReadOnly); break;
927 case lltok::kw_returns_twice: B.addAttribute(Attribute::ReturnsTwice); break;
928 case lltok::kw_ssp: B.addAttribute(Attribute::StackProtect); break;
929 case lltok::kw_sspreq: B.addAttribute(Attribute::StackProtectReq); break;
930 case lltok::kw_sspstrong: B.addAttribute(Attribute::StackProtectStrong); break;
931 case lltok::kw_sanitize_address: B.addAttribute(Attribute::SanitizeAddress); break;
932 case lltok::kw_sanitize_thread: B.addAttribute(Attribute::SanitizeThread); break;
933 case lltok::kw_sanitize_memory: B.addAttribute(Attribute::SanitizeMemory); break;
934 case lltok::kw_uwtable: B.addAttribute(Attribute::UWTable); break;
Bill Wendlingea007fa2013-02-08 00:52:31 +0000935
936 // Error handling.
937 case lltok::kw_inreg:
938 case lltok::kw_signext:
939 case lltok::kw_zeroext:
940 HaveError |=
941 Error(Lex.getLoc(),
942 "invalid use of attribute on a function");
943 break;
944 case lltok::kw_byval:
945 case lltok::kw_nest:
946 case lltok::kw_noalias:
947 case lltok::kw_nocapture:
Stephen Lin456ca042013-04-20 05:14:40 +0000948 case lltok::kw_returned:
Bill Wendlingea007fa2013-02-08 00:52:31 +0000949 case lltok::kw_sret:
950 HaveError |=
951 Error(Lex.getLoc(),
952 "invalid use of parameter-only attribute on a function");
953 break;
Bill Wendling95ce4c22013-02-06 06:52:58 +0000954 }
955
956 Lex.Lex();
957 }
958}
Chris Lattnerdf986172009-01-02 07:01:27 +0000959
960//===----------------------------------------------------------------------===//
961// GlobalValue Reference/Resolution Routines.
962//===----------------------------------------------------------------------===//
963
964/// GetGlobalVal - Get a value with the specified name or ID, creating a
965/// forward reference record if needed. This can return null if the value
966/// exists but does not have the right type.
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000967GlobalValue *LLParser::GetGlobalVal(const std::string &Name, Type *Ty,
Chris Lattnerdf986172009-01-02 07:01:27 +0000968 LocTy Loc) {
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000969 PointerType *PTy = dyn_cast<PointerType>(Ty);
Chris Lattnerdf986172009-01-02 07:01:27 +0000970 if (PTy == 0) {
971 Error(Loc, "global variable reference must have pointer type");
972 return 0;
973 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000974
Chris Lattnerdf986172009-01-02 07:01:27 +0000975 // Look this name up in the normal function symbol table.
976 GlobalValue *Val =
977 cast_or_null<GlobalValue>(M->getValueSymbolTable().lookup(Name));
Daniel Dunbara279bc32009-09-20 02:20:51 +0000978
Chris Lattnerdf986172009-01-02 07:01:27 +0000979 // If this is a forward reference for the value, see if we already created a
980 // forward ref record.
981 if (Val == 0) {
982 std::map<std::string, std::pair<GlobalValue*, LocTy> >::iterator
983 I = ForwardRefVals.find(Name);
984 if (I != ForwardRefVals.end())
985 Val = I->second.first;
986 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000987
Chris Lattnerdf986172009-01-02 07:01:27 +0000988 // If we have the value in the symbol table or fwd-ref table, return it.
989 if (Val) {
990 if (Val->getType() == Ty) return Val;
991 Error(Loc, "'@" + Name + "' defined with type '" +
Chris Lattner0cd0d882011-06-18 21:18:23 +0000992 getTypeString(Val->getType()) + "'");
Chris Lattnerdf986172009-01-02 07:01:27 +0000993 return 0;
994 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000995
Chris Lattnerdf986172009-01-02 07:01:27 +0000996 // Otherwise, create a new forward reference for this value and remember it.
997 GlobalValue *FwdVal;
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000998 if (FunctionType *FT = dyn_cast<FunctionType>(PTy->getElementType()))
Duncan Sands5f4ee1f2009-03-11 08:08:06 +0000999 FwdVal = Function::Create(FT, GlobalValue::ExternalWeakLinkage, Name, M);
Chris Lattner1afcace2011-07-09 17:41:24 +00001000 else
Owen Andersone9b11b42009-07-08 19:03:57 +00001001 FwdVal = new GlobalVariable(*M, PTy->getElementType(), false,
Justin Holewinskieaff2d52012-11-16 21:03:47 +00001002 GlobalValue::ExternalWeakLinkage, 0, Name,
1003 0, GlobalVariable::NotThreadLocal,
1004 PTy->getAddressSpace());
Daniel Dunbara279bc32009-09-20 02:20:51 +00001005
Chris Lattnerdf986172009-01-02 07:01:27 +00001006 ForwardRefVals[Name] = std::make_pair(FwdVal, Loc);
1007 return FwdVal;
1008}
1009
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001010GlobalValue *LLParser::GetGlobalVal(unsigned ID, Type *Ty, LocTy Loc) {
1011 PointerType *PTy = dyn_cast<PointerType>(Ty);
Chris Lattnerdf986172009-01-02 07:01:27 +00001012 if (PTy == 0) {
1013 Error(Loc, "global variable reference must have pointer type");
1014 return 0;
1015 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001016
Chris Lattnerdf986172009-01-02 07:01:27 +00001017 GlobalValue *Val = ID < NumberedVals.size() ? NumberedVals[ID] : 0;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001018
Chris Lattnerdf986172009-01-02 07:01:27 +00001019 // If this is a forward reference for the value, see if we already created a
1020 // forward ref record.
1021 if (Val == 0) {
1022 std::map<unsigned, std::pair<GlobalValue*, LocTy> >::iterator
1023 I = ForwardRefValIDs.find(ID);
1024 if (I != ForwardRefValIDs.end())
1025 Val = I->second.first;
1026 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001027
Chris Lattnerdf986172009-01-02 07:01:27 +00001028 // If we have the value in the symbol table or fwd-ref table, return it.
1029 if (Val) {
1030 if (Val->getType() == Ty) return Val;
Benjamin Kramerd1e17032010-09-27 17:42:11 +00001031 Error(Loc, "'@" + Twine(ID) + "' defined with type '" +
Chris Lattner0cd0d882011-06-18 21:18:23 +00001032 getTypeString(Val->getType()) + "'");
Chris Lattnerdf986172009-01-02 07:01:27 +00001033 return 0;
1034 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001035
Chris Lattnerdf986172009-01-02 07:01:27 +00001036 // Otherwise, create a new forward reference for this value and remember it.
1037 GlobalValue *FwdVal;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001038 if (FunctionType *FT = dyn_cast<FunctionType>(PTy->getElementType()))
Duncan Sands5f4ee1f2009-03-11 08:08:06 +00001039 FwdVal = Function::Create(FT, GlobalValue::ExternalWeakLinkage, "", M);
Chris Lattner1afcace2011-07-09 17:41:24 +00001040 else
Owen Andersone9b11b42009-07-08 19:03:57 +00001041 FwdVal = new GlobalVariable(*M, PTy->getElementType(), false,
1042 GlobalValue::ExternalWeakLinkage, 0, "");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001043
Chris Lattnerdf986172009-01-02 07:01:27 +00001044 ForwardRefValIDs[ID] = std::make_pair(FwdVal, Loc);
1045 return FwdVal;
1046}
1047
1048
1049//===----------------------------------------------------------------------===//
1050// Helper Routines.
1051//===----------------------------------------------------------------------===//
1052
1053/// ParseToken - If the current token has the specified kind, eat it and return
1054/// success. Otherwise, emit the specified error and return failure.
1055bool LLParser::ParseToken(lltok::Kind T, const char *ErrMsg) {
1056 if (Lex.getKind() != T)
1057 return TokError(ErrMsg);
1058 Lex.Lex();
1059 return false;
1060}
1061
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001062/// ParseStringConstant
1063/// ::= StringConstant
1064bool LLParser::ParseStringConstant(std::string &Result) {
1065 if (Lex.getKind() != lltok::StringConstant)
1066 return TokError("expected string constant");
1067 Result = Lex.getStrVal();
1068 Lex.Lex();
1069 return false;
1070}
1071
1072/// ParseUInt32
1073/// ::= uint32
1074bool LLParser::ParseUInt32(unsigned &Val) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001075 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned())
1076 return TokError("expected integer");
1077 uint64_t Val64 = Lex.getAPSIntVal().getLimitedValue(0xFFFFFFFFULL+1);
1078 if (Val64 != unsigned(Val64))
1079 return TokError("expected 32-bit integer (too large)");
1080 Val = Val64;
1081 Lex.Lex();
1082 return false;
1083}
1084
Hans Wennborgce718ff2012-06-23 11:37:03 +00001085/// ParseTLSModel
1086/// := 'localdynamic'
1087/// := 'initialexec'
1088/// := 'localexec'
1089bool LLParser::ParseTLSModel(GlobalVariable::ThreadLocalMode &TLM) {
1090 switch (Lex.getKind()) {
1091 default:
1092 return TokError("expected localdynamic, initialexec or localexec");
1093 case lltok::kw_localdynamic:
1094 TLM = GlobalVariable::LocalDynamicTLSModel;
1095 break;
1096 case lltok::kw_initialexec:
1097 TLM = GlobalVariable::InitialExecTLSModel;
1098 break;
1099 case lltok::kw_localexec:
1100 TLM = GlobalVariable::LocalExecTLSModel;
1101 break;
1102 }
1103
1104 Lex.Lex();
1105 return false;
1106}
1107
1108/// ParseOptionalThreadLocal
1109/// := /*empty*/
1110/// := 'thread_local'
1111/// := 'thread_local' '(' tlsmodel ')'
1112bool LLParser::ParseOptionalThreadLocal(GlobalVariable::ThreadLocalMode &TLM) {
1113 TLM = GlobalVariable::NotThreadLocal;
1114 if (!EatIfPresent(lltok::kw_thread_local))
1115 return false;
1116
1117 TLM = GlobalVariable::GeneralDynamicTLSModel;
1118 if (Lex.getKind() == lltok::lparen) {
1119 Lex.Lex();
1120 return ParseTLSModel(TLM) ||
1121 ParseToken(lltok::rparen, "expected ')' after thread local model");
1122 }
1123 return false;
1124}
Chris Lattnerdf986172009-01-02 07:01:27 +00001125
1126/// ParseOptionalAddrSpace
1127/// := /*empty*/
1128/// := 'addrspace' '(' uint32 ')'
1129bool LLParser::ParseOptionalAddrSpace(unsigned &AddrSpace) {
1130 AddrSpace = 0;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001131 if (!EatIfPresent(lltok::kw_addrspace))
Chris Lattnerdf986172009-01-02 07:01:27 +00001132 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00001133 return ParseToken(lltok::lparen, "expected '(' in address space") ||
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001134 ParseUInt32(AddrSpace) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00001135 ParseToken(lltok::rparen, "expected ')' in address space");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001136}
Chris Lattnerdf986172009-01-02 07:01:27 +00001137
Bill Wendlinge01b81b2012-12-04 23:40:58 +00001138/// ParseOptionalParamAttrs - Parse a potentially empty list of parameter attributes.
1139bool LLParser::ParseOptionalParamAttrs(AttrBuilder &B) {
1140 bool HaveError = false;
1141
1142 B.clear();
1143
1144 while (1) {
1145 lltok::Kind Token = Lex.getKind();
1146 switch (Token) {
1147 default: // End of attributes.
1148 return HaveError;
Chris Lattnerdf986172009-01-02 07:01:27 +00001149 case lltok::kw_align: {
1150 unsigned Alignment;
1151 if (ParseOptionalAlignment(Alignment))
1152 return true;
Bill Wendling03272442012-10-08 22:20:14 +00001153 B.addAlignmentAttr(Alignment);
Chris Lattnerdf986172009-01-02 07:01:27 +00001154 continue;
1155 }
Bill Wendling034b94b2012-12-19 07:18:57 +00001156 case lltok::kw_byval: B.addAttribute(Attribute::ByVal); break;
1157 case lltok::kw_inreg: B.addAttribute(Attribute::InReg); break;
1158 case lltok::kw_nest: B.addAttribute(Attribute::Nest); break;
1159 case lltok::kw_noalias: B.addAttribute(Attribute::NoAlias); break;
1160 case lltok::kw_nocapture: B.addAttribute(Attribute::NoCapture); break;
Stephen Lin456ca042013-04-20 05:14:40 +00001161 case lltok::kw_returned: B.addAttribute(Attribute::Returned); break;
Bill Wendling034b94b2012-12-19 07:18:57 +00001162 case lltok::kw_signext: B.addAttribute(Attribute::SExt); break;
1163 case lltok::kw_sret: B.addAttribute(Attribute::StructRet); break;
1164 case lltok::kw_zeroext: B.addAttribute(Attribute::ZExt); break;
Charles Davis1e063d12010-02-12 00:31:15 +00001165
Stephen Linb0aeb3e2013-04-20 13:16:13 +00001166 case lltok::kw_alignstack:
1167 case lltok::kw_alwaysinline:
1168 case lltok::kw_inlinehint:
1169 case lltok::kw_minsize:
1170 case lltok::kw_naked:
1171 case lltok::kw_nobuiltin:
1172 case lltok::kw_noduplicate:
1173 case lltok::kw_noimplicitfloat:
1174 case lltok::kw_noinline:
1175 case lltok::kw_nonlazybind:
1176 case lltok::kw_noredzone:
1177 case lltok::kw_noreturn:
1178 case lltok::kw_nounwind:
1179 case lltok::kw_optsize:
1180 case lltok::kw_readnone:
1181 case lltok::kw_readonly:
1182 case lltok::kw_returns_twice:
1183 case lltok::kw_sanitize_address:
1184 case lltok::kw_sanitize_memory:
1185 case lltok::kw_sanitize_thread:
1186 case lltok::kw_ssp:
1187 case lltok::kw_sspreq:
1188 case lltok::kw_sspstrong:
1189 case lltok::kw_uwtable:
Bill Wendlinge01b81b2012-12-04 23:40:58 +00001190 HaveError |= Error(Lex.getLoc(), "invalid use of function-only attribute");
1191 break;
Chris Lattnerdf986172009-01-02 07:01:27 +00001192 }
Bill Wendlingdc998cc2012-09-28 22:30:18 +00001193
Bill Wendlinge01b81b2012-12-04 23:40:58 +00001194 Lex.Lex();
1195 }
1196}
1197
1198/// ParseOptionalReturnAttrs - Parse a potentially empty list of return attributes.
1199bool LLParser::ParseOptionalReturnAttrs(AttrBuilder &B) {
1200 bool HaveError = false;
1201
1202 B.clear();
1203
1204 while (1) {
1205 lltok::Kind Token = Lex.getKind();
Bill Wendlingdc998cc2012-09-28 22:30:18 +00001206 switch (Token) {
Bill Wendlinge01b81b2012-12-04 23:40:58 +00001207 default: // End of attributes.
1208 return HaveError;
Bill Wendling034b94b2012-12-19 07:18:57 +00001209 case lltok::kw_inreg: B.addAttribute(Attribute::InReg); break;
1210 case lltok::kw_noalias: B.addAttribute(Attribute::NoAlias); break;
1211 case lltok::kw_signext: B.addAttribute(Attribute::SExt); break;
1212 case lltok::kw_zeroext: B.addAttribute(Attribute::ZExt); break;
Bill Wendlingdc998cc2012-09-28 22:30:18 +00001213
Bill Wendlinge01b81b2012-12-04 23:40:58 +00001214 // Error handling.
Stephen Linb0aeb3e2013-04-20 13:16:13 +00001215 case lltok::kw_align:
Chandler Carruth239e1e42013-04-09 19:46:46 +00001216 case lltok::kw_byval:
1217 case lltok::kw_nest:
1218 case lltok::kw_nocapture:
Stephen Lin456ca042013-04-20 05:14:40 +00001219 case lltok::kw_returned:
Chandler Carruth239e1e42013-04-09 19:46:46 +00001220 case lltok::kw_sret:
Bill Wendlinge01b81b2012-12-04 23:40:58 +00001221 HaveError |= Error(Lex.getLoc(), "invalid use of parameter-only attribute");
Bill Wendlingdc998cc2012-09-28 22:30:18 +00001222 break;
James Molloy67ae1352012-12-20 16:04:27 +00001223
Chandler Carruth239e1e42013-04-09 19:46:46 +00001224 case lltok::kw_alignstack:
1225 case lltok::kw_alwaysinline:
Diego Novillo77226a02013-05-24 12:26:52 +00001226 case lltok::kw_cold:
Chandler Carruth239e1e42013-04-09 19:46:46 +00001227 case lltok::kw_inlinehint:
1228 case lltok::kw_minsize:
1229 case lltok::kw_naked:
1230 case lltok::kw_nobuiltin:
1231 case lltok::kw_noduplicate:
1232 case lltok::kw_noimplicitfloat:
1233 case lltok::kw_noinline:
1234 case lltok::kw_nonlazybind:
1235 case lltok::kw_noredzone:
1236 case lltok::kw_noreturn:
1237 case lltok::kw_nounwind:
1238 case lltok::kw_optsize:
1239 case lltok::kw_readnone:
1240 case lltok::kw_readonly:
1241 case lltok::kw_returns_twice:
1242 case lltok::kw_sanitize_address:
1243 case lltok::kw_sanitize_memory:
1244 case lltok::kw_sanitize_thread:
1245 case lltok::kw_ssp:
1246 case lltok::kw_sspreq:
1247 case lltok::kw_sspstrong:
1248 case lltok::kw_uwtable:
Bill Wendlinge01b81b2012-12-04 23:40:58 +00001249 HaveError |= Error(Lex.getLoc(), "invalid use of function-only attribute");
Bill Wendlingdc998cc2012-09-28 22:30:18 +00001250 break;
1251 }
1252
Chris Lattnerdf986172009-01-02 07:01:27 +00001253 Lex.Lex();
1254 }
1255}
1256
1257/// ParseOptionalLinkage
1258/// ::= /*empty*/
Rafael Espindolabb46f522009-01-15 20:18:42 +00001259/// ::= 'private'
Bill Wendling3d10a5a2009-07-20 01:03:30 +00001260/// ::= 'linker_private'
Bill Wendling5e721d72010-07-01 21:55:59 +00001261/// ::= 'linker_private_weak'
Chris Lattnerdf986172009-01-02 07:01:27 +00001262/// ::= 'internal'
1263/// ::= 'weak'
Duncan Sands667d4b82009-03-07 15:45:40 +00001264/// ::= 'weak_odr'
Chris Lattnerdf986172009-01-02 07:01:27 +00001265/// ::= 'linkonce'
Duncan Sands667d4b82009-03-07 15:45:40 +00001266/// ::= 'linkonce_odr'
Bill Wendling32811be2012-08-17 18:33:14 +00001267/// ::= 'linkonce_odr_auto_hide'
Bill Wendling5e721d72010-07-01 21:55:59 +00001268/// ::= 'available_externally'
Chris Lattnerdf986172009-01-02 07:01:27 +00001269/// ::= 'appending'
1270/// ::= 'dllexport'
1271/// ::= 'common'
1272/// ::= 'dllimport'
1273/// ::= 'extern_weak'
1274/// ::= 'external'
1275bool LLParser::ParseOptionalLinkage(unsigned &Res, bool &HasLinkage) {
1276 HasLinkage = false;
1277 switch (Lex.getKind()) {
Bill Wendling3d10a5a2009-07-20 01:03:30 +00001278 default: Res=GlobalValue::ExternalLinkage; return false;
1279 case lltok::kw_private: Res = GlobalValue::PrivateLinkage; break;
1280 case lltok::kw_linker_private: Res = GlobalValue::LinkerPrivateLinkage; break;
Bill Wendling5e721d72010-07-01 21:55:59 +00001281 case lltok::kw_linker_private_weak:
1282 Res = GlobalValue::LinkerPrivateWeakLinkage;
1283 break;
Bill Wendling3d10a5a2009-07-20 01:03:30 +00001284 case lltok::kw_internal: Res = GlobalValue::InternalLinkage; break;
1285 case lltok::kw_weak: Res = GlobalValue::WeakAnyLinkage; break;
1286 case lltok::kw_weak_odr: Res = GlobalValue::WeakODRLinkage; break;
1287 case lltok::kw_linkonce: Res = GlobalValue::LinkOnceAnyLinkage; break;
1288 case lltok::kw_linkonce_odr: Res = GlobalValue::LinkOnceODRLinkage; break;
Bill Wendling32811be2012-08-17 18:33:14 +00001289 case lltok::kw_linkonce_odr_auto_hide:
1290 case lltok::kw_linker_private_weak_def_auto: // FIXME: For backwards compat.
1291 Res = GlobalValue::LinkOnceODRAutoHideLinkage;
1292 break;
Chris Lattner266c7bb2009-04-13 05:44:34 +00001293 case lltok::kw_available_externally:
1294 Res = GlobalValue::AvailableExternallyLinkage;
1295 break;
Bill Wendling3d10a5a2009-07-20 01:03:30 +00001296 case lltok::kw_appending: Res = GlobalValue::AppendingLinkage; break;
1297 case lltok::kw_dllexport: Res = GlobalValue::DLLExportLinkage; break;
1298 case lltok::kw_common: Res = GlobalValue::CommonLinkage; break;
1299 case lltok::kw_dllimport: Res = GlobalValue::DLLImportLinkage; break;
1300 case lltok::kw_extern_weak: Res = GlobalValue::ExternalWeakLinkage; break;
1301 case lltok::kw_external: Res = GlobalValue::ExternalLinkage; break;
Chris Lattnerdf986172009-01-02 07:01:27 +00001302 }
1303 Lex.Lex();
1304 HasLinkage = true;
1305 return false;
1306}
1307
1308/// ParseOptionalVisibility
1309/// ::= /*empty*/
1310/// ::= 'default'
1311/// ::= 'hidden'
1312/// ::= 'protected'
Daniel Dunbara279bc32009-09-20 02:20:51 +00001313///
Chris Lattnerdf986172009-01-02 07:01:27 +00001314bool LLParser::ParseOptionalVisibility(unsigned &Res) {
1315 switch (Lex.getKind()) {
1316 default: Res = GlobalValue::DefaultVisibility; return false;
1317 case lltok::kw_default: Res = GlobalValue::DefaultVisibility; break;
1318 case lltok::kw_hidden: Res = GlobalValue::HiddenVisibility; break;
1319 case lltok::kw_protected: Res = GlobalValue::ProtectedVisibility; break;
1320 }
1321 Lex.Lex();
1322 return false;
1323}
1324
1325/// ParseOptionalCallingConv
1326/// ::= /*empty*/
1327/// ::= 'ccc'
1328/// ::= 'fastcc'
Elena Demikhovsky35752222012-10-24 14:46:16 +00001329/// ::= 'kw_intel_ocl_bicc'
Chris Lattnerdf986172009-01-02 07:01:27 +00001330/// ::= 'coldcc'
1331/// ::= 'x86_stdcallcc'
1332/// ::= 'x86_fastcallcc'
Anton Korobeynikovded05e32010-05-16 09:08:45 +00001333/// ::= 'x86_thiscallcc'
Anton Korobeynikov385f5a92009-06-16 18:50:49 +00001334/// ::= 'arm_apcscc'
1335/// ::= 'arm_aapcscc'
1336/// ::= 'arm_aapcs_vfpcc'
Anton Korobeynikov211a14e2009-12-07 02:27:35 +00001337/// ::= 'msp430_intrcc'
Che-Liang Chiouf9930da2010-09-25 07:46:17 +00001338/// ::= 'ptx_kernel'
1339/// ::= 'ptx_device'
Micah Villmowe53d6052012-10-01 17:01:31 +00001340/// ::= 'spir_func'
1341/// ::= 'spir_kernel'
Chris Lattnerdf986172009-01-02 07:01:27 +00001342/// ::= 'cc' UINT
Anton Korobeynikov385f5a92009-06-16 18:50:49 +00001343///
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001344bool LLParser::ParseOptionalCallingConv(CallingConv::ID &CC) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001345 switch (Lex.getKind()) {
1346 default: CC = CallingConv::C; return false;
1347 case lltok::kw_ccc: CC = CallingConv::C; break;
1348 case lltok::kw_fastcc: CC = CallingConv::Fast; break;
1349 case lltok::kw_coldcc: CC = CallingConv::Cold; break;
1350 case lltok::kw_x86_stdcallcc: CC = CallingConv::X86_StdCall; break;
1351 case lltok::kw_x86_fastcallcc: CC = CallingConv::X86_FastCall; break;
Anton Korobeynikovded05e32010-05-16 09:08:45 +00001352 case lltok::kw_x86_thiscallcc: CC = CallingConv::X86_ThisCall; break;
Anton Korobeynikov385f5a92009-06-16 18:50:49 +00001353 case lltok::kw_arm_apcscc: CC = CallingConv::ARM_APCS; break;
1354 case lltok::kw_arm_aapcscc: CC = CallingConv::ARM_AAPCS; break;
1355 case lltok::kw_arm_aapcs_vfpcc:CC = CallingConv::ARM_AAPCS_VFP; break;
Anton Korobeynikov211a14e2009-12-07 02:27:35 +00001356 case lltok::kw_msp430_intrcc: CC = CallingConv::MSP430_INTR; break;
Che-Liang Chiouf9930da2010-09-25 07:46:17 +00001357 case lltok::kw_ptx_kernel: CC = CallingConv::PTX_Kernel; break;
1358 case lltok::kw_ptx_device: CC = CallingConv::PTX_Device; break;
Micah Villmowe53d6052012-10-01 17:01:31 +00001359 case lltok::kw_spir_kernel: CC = CallingConv::SPIR_KERNEL; break;
1360 case lltok::kw_spir_func: CC = CallingConv::SPIR_FUNC; break;
Elena Demikhovsky35752222012-10-24 14:46:16 +00001361 case lltok::kw_intel_ocl_bicc: CC = CallingConv::Intel_OCL_BI; break;
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001362 case lltok::kw_cc: {
1363 unsigned ArbitraryCC;
1364 Lex.Lex();
David Blaikie4d6ccb52012-01-20 21:51:11 +00001365 if (ParseUInt32(ArbitraryCC))
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001366 return true;
David Blaikie4d6ccb52012-01-20 21:51:11 +00001367 CC = static_cast<CallingConv::ID>(ArbitraryCC);
1368 return false;
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001369 }
Chris Lattnerdf986172009-01-02 07:01:27 +00001370 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001371
Chris Lattnerdf986172009-01-02 07:01:27 +00001372 Lex.Lex();
1373 return false;
1374}
1375
Chris Lattnerb8c46862009-12-30 05:31:19 +00001376/// ParseInstructionMetadata
Chris Lattner3f3a0f62009-12-29 21:25:40 +00001377/// ::= !dbg !42 (',' !dbg !57)*
Dan Gohman9d072f52010-08-24 02:05:17 +00001378bool LLParser::ParseInstructionMetadata(Instruction *Inst,
1379 PerFunctionState *PFS) {
Chris Lattnerb8c46862009-12-30 05:31:19 +00001380 do {
1381 if (Lex.getKind() != lltok::MetadataVar)
1382 return TokError("expected metadata after comma");
Devang Patel0475c912009-09-29 00:01:14 +00001383
Chris Lattner3f3a0f62009-12-29 21:25:40 +00001384 std::string Name = Lex.getStrVal();
Benjamin Kramer85dadec2011-12-06 11:50:26 +00001385 unsigned MDK = M->getMDKindID(Name);
Chris Lattner3f3a0f62009-12-29 21:25:40 +00001386 Lex.Lex();
Chris Lattner52e20312009-10-19 05:31:10 +00001387
Chris Lattner442ffa12009-12-29 21:53:55 +00001388 MDNode *Node;
Chris Lattner449c3102010-04-01 05:14:45 +00001389 SMLoc Loc = Lex.getLoc();
Dan Gohman309b3af2010-08-24 02:24:03 +00001390
1391 if (ParseToken(lltok::exclaim, "expected '!' here"))
Chris Lattnere434d272009-12-30 04:56:59 +00001392 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001393
Dan Gohman68261142010-08-24 14:35:45 +00001394 // This code is similar to that of ParseMetadataValue, however it needs to
1395 // have special-case code for a forward reference; see the comments on
1396 // ForwardRefInstMetadata for details. Also, MDStrings are not supported
1397 // at the top level here.
Dan Gohman309b3af2010-08-24 02:24:03 +00001398 if (Lex.getKind() == lltok::lbrace) {
1399 ValID ID;
1400 if (ParseMetadataListValue(ID, PFS))
1401 return true;
1402 assert(ID.Kind == ValID::t_MDNode);
1403 Inst->setMetadata(MDK, ID.MDNodeVal);
Chris Lattner449c3102010-04-01 05:14:45 +00001404 } else {
Nick Lewyckyc6877b42010-09-30 21:04:13 +00001405 unsigned NodeID = 0;
Dan Gohman309b3af2010-08-24 02:24:03 +00001406 if (ParseMDNodeID(Node, NodeID))
1407 return true;
1408 if (Node) {
1409 // If we got the node, add it to the instruction.
1410 Inst->setMetadata(MDK, Node);
1411 } else {
1412 MDRef R = { Loc, MDK, NodeID };
1413 // Otherwise, remember that this should be resolved later.
1414 ForwardRefInstMetadata[Inst].push_back(R);
1415 }
Chris Lattner449c3102010-04-01 05:14:45 +00001416 }
Chris Lattner3f3a0f62009-12-29 21:25:40 +00001417
1418 // If this is the end of the list, we're done.
Chris Lattnerb8c46862009-12-30 05:31:19 +00001419 } while (EatIfPresent(lltok::comma));
1420 return false;
Devang Patelf633a062009-09-17 23:04:48 +00001421}
1422
Chris Lattnerdf986172009-01-02 07:01:27 +00001423/// ParseOptionalAlignment
1424/// ::= /* empty */
1425/// ::= 'align' 4
1426bool LLParser::ParseOptionalAlignment(unsigned &Alignment) {
1427 Alignment = 0;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001428 if (!EatIfPresent(lltok::kw_align))
1429 return false;
Chris Lattner3fbb3ab2009-01-05 07:46:05 +00001430 LocTy AlignLoc = Lex.getLoc();
1431 if (ParseUInt32(Alignment)) return true;
1432 if (!isPowerOf2_32(Alignment))
1433 return Error(AlignLoc, "alignment is not a power of two");
Dan Gohmane16829b2010-07-30 21:07:05 +00001434 if (Alignment > Value::MaximumAlignment)
Dan Gohman138aa2a2010-07-28 20:12:04 +00001435 return Error(AlignLoc, "huge alignments are not supported yet");
Chris Lattner3fbb3ab2009-01-05 07:46:05 +00001436 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00001437}
1438
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00001439/// ParseOptionalCommaAlign
Michael Ilseman407a6162012-11-15 22:34:00 +00001440/// ::=
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00001441/// ::= ',' align 4
1442///
1443/// This returns with AteExtraComma set to true if it ate an excess comma at the
1444/// end.
1445bool LLParser::ParseOptionalCommaAlign(unsigned &Alignment,
1446 bool &AteExtraComma) {
1447 AteExtraComma = false;
1448 while (EatIfPresent(lltok::comma)) {
1449 // Metadata at the end is an early exit.
Chris Lattner1d928312009-12-30 05:02:06 +00001450 if (Lex.getKind() == lltok::MetadataVar) {
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00001451 AteExtraComma = true;
1452 return false;
1453 }
Michael Ilseman407a6162012-11-15 22:34:00 +00001454
Chris Lattner093eed12010-04-23 00:50:50 +00001455 if (Lex.getKind() != lltok::kw_align)
1456 return Error(Lex.getLoc(), "expected metadata or 'align'");
Duncan Sandsbf9fc532010-10-21 16:07:10 +00001457
Chris Lattner093eed12010-04-23 00:50:50 +00001458 if (ParseOptionalAlignment(Alignment)) return true;
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00001459 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001460
Devang Patelf633a062009-09-17 23:04:48 +00001461 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00001462}
1463
Eli Friedman47f35132011-07-25 23:16:38 +00001464/// ParseScopeAndOrdering
1465/// if isAtomic: ::= 'singlethread'? AtomicOrdering
1466/// else: ::=
1467///
1468/// This sets Scope and Ordering to the parsed values.
1469bool LLParser::ParseScopeAndOrdering(bool isAtomic, SynchronizationScope &Scope,
1470 AtomicOrdering &Ordering) {
1471 if (!isAtomic)
1472 return false;
1473
1474 Scope = CrossThread;
1475 if (EatIfPresent(lltok::kw_singlethread))
1476 Scope = SingleThread;
1477 switch (Lex.getKind()) {
1478 default: return TokError("Expected ordering on atomic instruction");
1479 case lltok::kw_unordered: Ordering = Unordered; break;
1480 case lltok::kw_monotonic: Ordering = Monotonic; break;
1481 case lltok::kw_acquire: Ordering = Acquire; break;
1482 case lltok::kw_release: Ordering = Release; break;
1483 case lltok::kw_acq_rel: Ordering = AcquireRelease; break;
1484 case lltok::kw_seq_cst: Ordering = SequentiallyConsistent; break;
1485 }
1486 Lex.Lex();
1487 return false;
1488}
1489
Charles Davis1e063d12010-02-12 00:31:15 +00001490/// ParseOptionalStackAlignment
1491/// ::= /* empty */
1492/// ::= 'alignstack' '(' 4 ')'
1493bool LLParser::ParseOptionalStackAlignment(unsigned &Alignment) {
1494 Alignment = 0;
1495 if (!EatIfPresent(lltok::kw_alignstack))
1496 return false;
1497 LocTy ParenLoc = Lex.getLoc();
1498 if (!EatIfPresent(lltok::lparen))
1499 return Error(ParenLoc, "expected '('");
1500 LocTy AlignLoc = Lex.getLoc();
1501 if (ParseUInt32(Alignment)) return true;
1502 ParenLoc = Lex.getLoc();
1503 if (!EatIfPresent(lltok::rparen))
1504 return Error(ParenLoc, "expected ')'");
1505 if (!isPowerOf2_32(Alignment))
1506 return Error(AlignLoc, "stack alignment is not a power of two");
1507 return false;
1508}
Devang Patelf633a062009-09-17 23:04:48 +00001509
Chris Lattner628c13a2009-12-30 05:14:00 +00001510/// ParseIndexList - This parses the index list for an insert/extractvalue
1511/// instruction. This sets AteExtraComma in the case where we eat an extra
1512/// comma at the end of the line and find that it is followed by metadata.
1513/// Clients that don't allow metadata can call the version of this function that
1514/// only takes one argument.
1515///
Chris Lattnerdf986172009-01-02 07:01:27 +00001516/// ParseIndexList
1517/// ::= (',' uint32)+
Chris Lattner628c13a2009-12-30 05:14:00 +00001518///
1519bool LLParser::ParseIndexList(SmallVectorImpl<unsigned> &Indices,
1520 bool &AteExtraComma) {
1521 AteExtraComma = false;
Michael Ilseman407a6162012-11-15 22:34:00 +00001522
Chris Lattnerdf986172009-01-02 07:01:27 +00001523 if (Lex.getKind() != lltok::comma)
1524 return TokError("expected ',' as start of index list");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001525
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001526 while (EatIfPresent(lltok::comma)) {
Chris Lattner628c13a2009-12-30 05:14:00 +00001527 if (Lex.getKind() == lltok::MetadataVar) {
1528 AteExtraComma = true;
1529 return false;
1530 }
Nick Lewycky28815c42010-09-29 23:32:20 +00001531 unsigned Idx = 0;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001532 if (ParseUInt32(Idx)) return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00001533 Indices.push_back(Idx);
1534 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001535
Chris Lattnerdf986172009-01-02 07:01:27 +00001536 return false;
1537}
1538
1539//===----------------------------------------------------------------------===//
1540// Type Parsing.
1541//===----------------------------------------------------------------------===//
1542
Chris Lattner1afcace2011-07-09 17:41:24 +00001543/// ParseType - Parse a type.
1544bool LLParser::ParseType(Type *&Result, bool AllowVoid) {
1545 SMLoc TypeLoc = Lex.getLoc();
Chris Lattnerdf986172009-01-02 07:01:27 +00001546 switch (Lex.getKind()) {
1547 default:
1548 return TokError("expected type");
1549 case lltok::Type:
Chris Lattner1afcace2011-07-09 17:41:24 +00001550 // Type ::= 'float' | 'void' (etc)
Chris Lattnerdf986172009-01-02 07:01:27 +00001551 Result = Lex.getTyVal();
Daniel Dunbara279bc32009-09-20 02:20:51 +00001552 Lex.Lex();
Chris Lattnerdf986172009-01-02 07:01:27 +00001553 break;
Chris Lattnerdf986172009-01-02 07:01:27 +00001554 case lltok::lbrace:
Chris Lattner1afcace2011-07-09 17:41:24 +00001555 // Type ::= StructType
1556 if (ParseAnonStructType(Result, false))
Chris Lattnerdf986172009-01-02 07:01:27 +00001557 return true;
1558 break;
1559 case lltok::lsquare:
Chris Lattner1afcace2011-07-09 17:41:24 +00001560 // Type ::= '[' ... ']'
Chris Lattnerdf986172009-01-02 07:01:27 +00001561 Lex.Lex(); // eat the lsquare.
1562 if (ParseArrayVectorType(Result, false))
1563 return true;
1564 break;
1565 case lltok::less: // Either vector or packed struct.
Chris Lattner1afcace2011-07-09 17:41:24 +00001566 // Type ::= '<' ... '>'
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001567 Lex.Lex();
1568 if (Lex.getKind() == lltok::lbrace) {
Chris Lattner1afcace2011-07-09 17:41:24 +00001569 if (ParseAnonStructType(Result, true) ||
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001570 ParseToken(lltok::greater, "expected '>' at end of packed struct"))
Chris Lattnerdf986172009-01-02 07:01:27 +00001571 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00001572 } else if (ParseArrayVectorType(Result, true))
1573 return true;
1574 break;
Chris Lattner1afcace2011-07-09 17:41:24 +00001575 case lltok::LocalVar: {
1576 // Type ::= %foo
1577 std::pair<Type*, LocTy> &Entry = NamedTypes[Lex.getStrVal()];
Michael Ilseman407a6162012-11-15 22:34:00 +00001578
Chris Lattner1afcace2011-07-09 17:41:24 +00001579 // If the type hasn't been defined yet, create a forward definition and
1580 // remember where that forward def'n was seen (in case it never is defined).
1581 if (Entry.first == 0) {
Chris Lattner3ebb6492011-08-12 18:06:37 +00001582 Entry.first = StructType::create(Context, Lex.getStrVal());
Chris Lattner1afcace2011-07-09 17:41:24 +00001583 Entry.second = Lex.getLoc();
Chris Lattnerdf986172009-01-02 07:01:27 +00001584 }
Chris Lattner1afcace2011-07-09 17:41:24 +00001585 Result = Entry.first;
Chris Lattnerdf986172009-01-02 07:01:27 +00001586 Lex.Lex();
1587 break;
Chris Lattner1afcace2011-07-09 17:41:24 +00001588 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001589
Chris Lattner1afcace2011-07-09 17:41:24 +00001590 case lltok::LocalVarID: {
1591 // Type ::= %4
1592 if (Lex.getUIntVal() >= NumberedTypes.size())
1593 NumberedTypes.resize(Lex.getUIntVal()+1);
1594 std::pair<Type*, LocTy> &Entry = NumberedTypes[Lex.getUIntVal()];
Michael Ilseman407a6162012-11-15 22:34:00 +00001595
Chris Lattner1afcace2011-07-09 17:41:24 +00001596 // If the type hasn't been defined yet, create a forward definition and
1597 // remember where that forward def'n was seen (in case it never is defined).
1598 if (Entry.first == 0) {
Chris Lattner3ebb6492011-08-12 18:06:37 +00001599 Entry.first = StructType::create(Context);
Chris Lattner1afcace2011-07-09 17:41:24 +00001600 Entry.second = Lex.getLoc();
Chris Lattnerdf986172009-01-02 07:01:27 +00001601 }
Chris Lattner1afcace2011-07-09 17:41:24 +00001602 Result = Entry.first;
Chris Lattnerdf986172009-01-02 07:01:27 +00001603 Lex.Lex();
1604 break;
Chris Lattnerdf986172009-01-02 07:01:27 +00001605 }
1606 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001607
1608 // Parse the type suffixes.
Chris Lattnerdf986172009-01-02 07:01:27 +00001609 while (1) {
1610 switch (Lex.getKind()) {
1611 // End of type.
Chris Lattner1afcace2011-07-09 17:41:24 +00001612 default:
1613 if (!AllowVoid && Result->isVoidTy())
1614 return Error(TypeLoc, "void type only allowed for function results");
1615 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00001616
Chris Lattner1afcace2011-07-09 17:41:24 +00001617 // Type ::= Type '*'
Chris Lattnerdf986172009-01-02 07:01:27 +00001618 case lltok::star:
Chris Lattner1afcace2011-07-09 17:41:24 +00001619 if (Result->isLabelTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00001620 return TokError("basic block pointers are invalid");
Chris Lattner1afcace2011-07-09 17:41:24 +00001621 if (Result->isVoidTy())
1622 return TokError("pointers to void are invalid - use i8* instead");
1623 if (!PointerType::isValidElementType(Result))
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001624 return TokError("pointer to this type is invalid");
Chris Lattner1afcace2011-07-09 17:41:24 +00001625 Result = PointerType::getUnqual(Result);
Chris Lattnerdf986172009-01-02 07:01:27 +00001626 Lex.Lex();
1627 break;
1628
Chris Lattner1afcace2011-07-09 17:41:24 +00001629 // Type ::= Type 'addrspace' '(' uint32 ')' '*'
Chris Lattnerdf986172009-01-02 07:01:27 +00001630 case lltok::kw_addrspace: {
Chris Lattner1afcace2011-07-09 17:41:24 +00001631 if (Result->isLabelTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00001632 return TokError("basic block pointers are invalid");
Chris Lattner1afcace2011-07-09 17:41:24 +00001633 if (Result->isVoidTy())
Dan Gohmanb9070d32009-02-09 17:41:21 +00001634 return TokError("pointers to void are invalid; use i8* instead");
Chris Lattner1afcace2011-07-09 17:41:24 +00001635 if (!PointerType::isValidElementType(Result))
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001636 return TokError("pointer to this type is invalid");
Chris Lattnerdf986172009-01-02 07:01:27 +00001637 unsigned AddrSpace;
1638 if (ParseOptionalAddrSpace(AddrSpace) ||
1639 ParseToken(lltok::star, "expected '*' in address space"))
1640 return true;
1641
Chris Lattner1afcace2011-07-09 17:41:24 +00001642 Result = PointerType::get(Result, AddrSpace);
Chris Lattnerdf986172009-01-02 07:01:27 +00001643 break;
1644 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001645
Chris Lattnerdf986172009-01-02 07:01:27 +00001646 /// Types '(' ArgTypeListI ')' OptFuncAttrs
1647 case lltok::lparen:
1648 if (ParseFunctionType(Result))
1649 return true;
1650 break;
1651 }
1652 }
1653}
1654
1655/// ParseParameterList
1656/// ::= '(' ')'
1657/// ::= '(' Arg (',' Arg)* ')'
1658/// Arg
1659/// ::= Type OptionalAttributes Value OptionalAttributes
1660bool LLParser::ParseParameterList(SmallVectorImpl<ParamInfo> &ArgList,
1661 PerFunctionState &PFS) {
1662 if (ParseToken(lltok::lparen, "expected '(' in call"))
1663 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001664
Bill Wendling73dee182013-01-31 00:29:54 +00001665 unsigned AttrIndex = 1;
Chris Lattnerdf986172009-01-02 07:01:27 +00001666 while (Lex.getKind() != lltok::rparen) {
1667 // If this isn't the first argument, we need a comma.
1668 if (!ArgList.empty() &&
1669 ParseToken(lltok::comma, "expected ',' in argument list"))
1670 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001671
Chris Lattnerdf986172009-01-02 07:01:27 +00001672 // Parse the argument.
1673 LocTy ArgLoc;
Chris Lattner1afcace2011-07-09 17:41:24 +00001674 Type *ArgTy = 0;
Bill Wendling702cc912012-10-15 20:35:56 +00001675 AttrBuilder ArgAttrs;
Chris Lattnerdf986172009-01-02 07:01:27 +00001676 Value *V;
Victor Hernandez19715562009-12-03 23:40:58 +00001677 if (ParseType(ArgTy, ArgLoc))
Chris Lattnerdf986172009-01-02 07:01:27 +00001678 return true;
Victor Hernandez19715562009-12-03 23:40:58 +00001679
Chris Lattner287881d2009-12-30 02:11:14 +00001680 // Otherwise, handle normal operands.
Bill Wendlinge01b81b2012-12-04 23:40:58 +00001681 if (ParseOptionalParamAttrs(ArgAttrs) || ParseValue(ArgTy, V, PFS))
Chris Lattner287881d2009-12-30 02:11:14 +00001682 return true;
Bill Wendling73dee182013-01-31 00:29:54 +00001683 ArgList.push_back(ParamInfo(ArgLoc, V, AttributeSet::get(V->getContext(),
1684 AttrIndex++,
1685 ArgAttrs)));
Chris Lattnerdf986172009-01-02 07:01:27 +00001686 }
1687
1688 Lex.Lex(); // Lex the ')'.
1689 return false;
1690}
1691
1692
1693
Chris Lattnerdfd19dd2009-01-05 18:34:07 +00001694/// ParseArgumentList - Parse the argument list for a function type or function
Chris Lattner1afcace2011-07-09 17:41:24 +00001695/// prototype.
Chris Lattnerdf986172009-01-02 07:01:27 +00001696/// ::= '(' ArgTypeListI ')'
1697/// ArgTypeListI
1698/// ::= /*empty*/
1699/// ::= '...'
1700/// ::= ArgTypeList ',' '...'
1701/// ::= ArgType (',' ArgType)*
Chris Lattnerdfd19dd2009-01-05 18:34:07 +00001702///
Chris Lattner1afcace2011-07-09 17:41:24 +00001703bool LLParser::ParseArgumentList(SmallVectorImpl<ArgInfo> &ArgList,
1704 bool &isVarArg){
Chris Lattnerdf986172009-01-02 07:01:27 +00001705 isVarArg = false;
1706 assert(Lex.getKind() == lltok::lparen);
1707 Lex.Lex(); // eat the (.
Daniel Dunbara279bc32009-09-20 02:20:51 +00001708
Chris Lattnerdf986172009-01-02 07:01:27 +00001709 if (Lex.getKind() == lltok::rparen) {
1710 // empty
1711 } else if (Lex.getKind() == lltok::dotdotdot) {
1712 isVarArg = true;
1713 Lex.Lex();
1714 } else {
1715 LocTy TypeLoc = Lex.getLoc();
Chris Lattner1afcace2011-07-09 17:41:24 +00001716 Type *ArgTy = 0;
Bill Wendling702cc912012-10-15 20:35:56 +00001717 AttrBuilder Attrs;
Chris Lattnerdf986172009-01-02 07:01:27 +00001718 std::string Name;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001719
Chris Lattner1afcace2011-07-09 17:41:24 +00001720 if (ParseType(ArgTy) ||
Bill Wendlinge01b81b2012-12-04 23:40:58 +00001721 ParseOptionalParamAttrs(Attrs)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001722
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001723 if (ArgTy->isVoidTy())
Chris Lattnera9a9e072009-03-09 04:49:14 +00001724 return Error(TypeLoc, "argument can not have void type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001725
Chris Lattner7a1b9bd2011-06-17 06:36:20 +00001726 if (Lex.getKind() == lltok::LocalVar) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001727 Name = Lex.getStrVal();
1728 Lex.Lex();
1729 }
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001730
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001731 if (!FunctionType::isValidArgumentType(ArgTy))
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001732 return Error(TypeLoc, "invalid type for function argument");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001733
Bill Wendling73dee182013-01-31 00:29:54 +00001734 unsigned AttrIndex = 1;
Bill Wendlingcb3de0b2012-10-15 04:46:55 +00001735 ArgList.push_back(ArgInfo(TypeLoc, ArgTy,
Bill Wendling73dee182013-01-31 00:29:54 +00001736 AttributeSet::get(ArgTy->getContext(),
1737 AttrIndex++, Attrs), Name));
Daniel Dunbara279bc32009-09-20 02:20:51 +00001738
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001739 while (EatIfPresent(lltok::comma)) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001740 // Handle ... at end of arg list.
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001741 if (EatIfPresent(lltok::dotdotdot)) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001742 isVarArg = true;
Chris Lattnerdf986172009-01-02 07:01:27 +00001743 break;
1744 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001745
Chris Lattnerdf986172009-01-02 07:01:27 +00001746 // Otherwise must be an argument type.
1747 TypeLoc = Lex.getLoc();
Bill Wendlinge01b81b2012-12-04 23:40:58 +00001748 if (ParseType(ArgTy) || ParseOptionalParamAttrs(Attrs)) return true;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001749
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001750 if (ArgTy->isVoidTy())
Chris Lattnera9a9e072009-03-09 04:49:14 +00001751 return Error(TypeLoc, "argument can not have void type");
1752
Chris Lattner7a1b9bd2011-06-17 06:36:20 +00001753 if (Lex.getKind() == lltok::LocalVar) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001754 Name = Lex.getStrVal();
1755 Lex.Lex();
1756 } else {
1757 Name = "";
1758 }
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001759
Chris Lattner1afcace2011-07-09 17:41:24 +00001760 if (!ArgTy->isFirstClassType())
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001761 return Error(TypeLoc, "invalid type for function argument");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001762
Bill Wendlingcb3de0b2012-10-15 04:46:55 +00001763 ArgList.push_back(ArgInfo(TypeLoc, ArgTy,
Bill Wendling73dee182013-01-31 00:29:54 +00001764 AttributeSet::get(ArgTy->getContext(),
1765 AttrIndex++, Attrs),
Bill Wendlingcb3de0b2012-10-15 04:46:55 +00001766 Name));
Chris Lattnerdf986172009-01-02 07:01:27 +00001767 }
1768 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001769
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001770 return ParseToken(lltok::rparen, "expected ')' at end of argument list");
Chris Lattnerdf986172009-01-02 07:01:27 +00001771}
Daniel Dunbara279bc32009-09-20 02:20:51 +00001772
Chris Lattnerdf986172009-01-02 07:01:27 +00001773/// ParseFunctionType
1774/// ::= Type ArgumentList OptionalAttrs
Chris Lattner1afcace2011-07-09 17:41:24 +00001775bool LLParser::ParseFunctionType(Type *&Result) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001776 assert(Lex.getKind() == lltok::lparen);
1777
Chris Lattnerd77d04c2009-01-05 08:04:33 +00001778 if (!FunctionType::isValidReturnType(Result))
1779 return TokError("invalid function return type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001780
Chris Lattner1afcace2011-07-09 17:41:24 +00001781 SmallVector<ArgInfo, 8> ArgList;
Chris Lattnerdf986172009-01-02 07:01:27 +00001782 bool isVarArg;
Chris Lattner1afcace2011-07-09 17:41:24 +00001783 if (ParseArgumentList(ArgList, isVarArg))
Chris Lattnerdf986172009-01-02 07:01:27 +00001784 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001785
Chris Lattnerdf986172009-01-02 07:01:27 +00001786 // Reject names on the arguments lists.
1787 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
1788 if (!ArgList[i].Name.empty())
1789 return Error(ArgList[i].Loc, "argument name invalid in function type");
Bill Wendling73dee182013-01-31 00:29:54 +00001790 if (ArgList[i].Attrs.hasAttributes(i + 1))
Chris Lattnera16546a2011-06-17 17:37:13 +00001791 return Error(ArgList[i].Loc,
1792 "argument attributes invalid in function type");
Chris Lattnerdf986172009-01-02 07:01:27 +00001793 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001794
Jay Foad5fdd6c82011-07-12 14:06:48 +00001795 SmallVector<Type*, 16> ArgListTy;
Chris Lattnerdf986172009-01-02 07:01:27 +00001796 for (unsigned i = 0, e = ArgList.size(); i != e; ++i)
Chris Lattner1afcace2011-07-09 17:41:24 +00001797 ArgListTy.push_back(ArgList[i].Ty);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001798
Chris Lattner1afcace2011-07-09 17:41:24 +00001799 Result = FunctionType::get(Result, ArgListTy, isVarArg);
Chris Lattnerdf986172009-01-02 07:01:27 +00001800 return false;
1801}
1802
Chris Lattner1afcace2011-07-09 17:41:24 +00001803/// ParseAnonStructType - Parse an anonymous struct type, which is inlined into
1804/// other structs.
1805bool LLParser::ParseAnonStructType(Type *&Result, bool Packed) {
1806 SmallVector<Type*, 8> Elts;
1807 if (ParseStructBody(Elts)) return true;
Michael Ilseman407a6162012-11-15 22:34:00 +00001808
Chris Lattner1afcace2011-07-09 17:41:24 +00001809 Result = StructType::get(Context, Elts, Packed);
1810 return false;
1811}
1812
1813/// ParseStructDefinition - Parse a struct in a 'type' definition.
1814bool LLParser::ParseStructDefinition(SMLoc TypeLoc, StringRef Name,
1815 std::pair<Type*, LocTy> &Entry,
1816 Type *&ResultTy) {
1817 // If the type was already defined, diagnose the redefinition.
1818 if (Entry.first && !Entry.second.isValid())
1819 return Error(TypeLoc, "redefinition of type");
Michael Ilseman407a6162012-11-15 22:34:00 +00001820
Chris Lattner1afcace2011-07-09 17:41:24 +00001821 // If we have opaque, just return without filling in the definition for the
1822 // struct. This counts as a definition as far as the .ll file goes.
1823 if (EatIfPresent(lltok::kw_opaque)) {
1824 // This type is being defined, so clear the location to indicate this.
1825 Entry.second = SMLoc();
Michael Ilseman407a6162012-11-15 22:34:00 +00001826
Chris Lattner1afcace2011-07-09 17:41:24 +00001827 // If this type number has never been uttered, create it.
1828 if (Entry.first == 0)
Chris Lattner3ebb6492011-08-12 18:06:37 +00001829 Entry.first = StructType::create(Context, Name);
Chris Lattner1afcace2011-07-09 17:41:24 +00001830 ResultTy = Entry.first;
1831 return false;
1832 }
Michael Ilseman407a6162012-11-15 22:34:00 +00001833
Chris Lattner1afcace2011-07-09 17:41:24 +00001834 // If the type starts with '<', then it is either a packed struct or a vector.
1835 bool isPacked = EatIfPresent(lltok::less);
1836
1837 // If we don't have a struct, then we have a random type alias, which we
1838 // accept for compatibility with old files. These types are not allowed to be
1839 // forward referenced and not allowed to be recursive.
1840 if (Lex.getKind() != lltok::lbrace) {
1841 if (Entry.first)
1842 return Error(TypeLoc, "forward references to non-struct type");
Michael Ilseman407a6162012-11-15 22:34:00 +00001843
Chris Lattner1afcace2011-07-09 17:41:24 +00001844 ResultTy = 0;
1845 if (isPacked)
1846 return ParseArrayVectorType(ResultTy, true);
1847 return ParseType(ResultTy);
1848 }
Michael Ilseman407a6162012-11-15 22:34:00 +00001849
Chris Lattner1afcace2011-07-09 17:41:24 +00001850 // This type is being defined, so clear the location to indicate this.
1851 Entry.second = SMLoc();
Michael Ilseman407a6162012-11-15 22:34:00 +00001852
Chris Lattner1afcace2011-07-09 17:41:24 +00001853 // If this type number has never been uttered, create it.
1854 if (Entry.first == 0)
Chris Lattner3ebb6492011-08-12 18:06:37 +00001855 Entry.first = StructType::create(Context, Name);
Michael Ilseman407a6162012-11-15 22:34:00 +00001856
Chris Lattner1afcace2011-07-09 17:41:24 +00001857 StructType *STy = cast<StructType>(Entry.first);
Michael Ilseman407a6162012-11-15 22:34:00 +00001858
Chris Lattner1afcace2011-07-09 17:41:24 +00001859 SmallVector<Type*, 8> Body;
1860 if (ParseStructBody(Body) ||
1861 (isPacked && ParseToken(lltok::greater, "expected '>' in packed struct")))
1862 return true;
Michael Ilseman407a6162012-11-15 22:34:00 +00001863
Chris Lattner1afcace2011-07-09 17:41:24 +00001864 STy->setBody(Body, isPacked);
1865 ResultTy = STy;
1866 return false;
1867}
1868
1869
Chris Lattnerdf986172009-01-02 07:01:27 +00001870/// ParseStructType: Handles packed and unpacked types. </> parsed elsewhere.
Chris Lattner1afcace2011-07-09 17:41:24 +00001871/// StructType
Chris Lattnerdf986172009-01-02 07:01:27 +00001872/// ::= '{' '}'
Chris Lattner1afcace2011-07-09 17:41:24 +00001873/// ::= '{' Type (',' Type)* '}'
Chris Lattnerdf986172009-01-02 07:01:27 +00001874/// ::= '<' '{' '}' '>'
Chris Lattner1afcace2011-07-09 17:41:24 +00001875/// ::= '<' '{' Type (',' Type)* '}' '>'
1876bool LLParser::ParseStructBody(SmallVectorImpl<Type*> &Body) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001877 assert(Lex.getKind() == lltok::lbrace);
1878 Lex.Lex(); // Consume the '{'
Daniel Dunbara279bc32009-09-20 02:20:51 +00001879
Chris Lattner1afcace2011-07-09 17:41:24 +00001880 // Handle the empty struct.
1881 if (EatIfPresent(lltok::rbrace))
Chris Lattnerdf986172009-01-02 07:01:27 +00001882 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00001883
Chris Lattnera9a9e072009-03-09 04:49:14 +00001884 LocTy EltTyLoc = Lex.getLoc();
Chris Lattner1afcace2011-07-09 17:41:24 +00001885 Type *Ty = 0;
1886 if (ParseType(Ty)) return true;
1887 Body.push_back(Ty);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001888
Chris Lattner1afcace2011-07-09 17:41:24 +00001889 if (!StructType::isValidElementType(Ty))
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001890 return Error(EltTyLoc, "invalid element type for struct");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001891
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001892 while (EatIfPresent(lltok::comma)) {
Chris Lattnera9a9e072009-03-09 04:49:14 +00001893 EltTyLoc = Lex.getLoc();
Chris Lattner1afcace2011-07-09 17:41:24 +00001894 if (ParseType(Ty)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001895
Chris Lattner1afcace2011-07-09 17:41:24 +00001896 if (!StructType::isValidElementType(Ty))
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001897 return Error(EltTyLoc, "invalid element type for struct");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001898
Chris Lattner1afcace2011-07-09 17:41:24 +00001899 Body.push_back(Ty);
Chris Lattnerdf986172009-01-02 07:01:27 +00001900 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001901
Chris Lattner1afcace2011-07-09 17:41:24 +00001902 return ParseToken(lltok::rbrace, "expected '}' at end of struct");
Chris Lattnerdf986172009-01-02 07:01:27 +00001903}
1904
1905/// ParseArrayVectorType - Parse an array or vector type, assuming the first
1906/// token has already been consumed.
Chris Lattner1afcace2011-07-09 17:41:24 +00001907/// Type
Chris Lattnerdf986172009-01-02 07:01:27 +00001908/// ::= '[' APSINTVAL 'x' Types ']'
1909/// ::= '<' APSINTVAL 'x' Types '>'
Chris Lattner1afcace2011-07-09 17:41:24 +00001910bool LLParser::ParseArrayVectorType(Type *&Result, bool isVector) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001911 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned() ||
1912 Lex.getAPSIntVal().getBitWidth() > 64)
1913 return TokError("expected number in address space");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001914
Chris Lattnerdf986172009-01-02 07:01:27 +00001915 LocTy SizeLoc = Lex.getLoc();
1916 uint64_t Size = Lex.getAPSIntVal().getZExtValue();
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001917 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +00001918
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001919 if (ParseToken(lltok::kw_x, "expected 'x' after element count"))
1920 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00001921
1922 LocTy TypeLoc = Lex.getLoc();
Chris Lattner1afcace2011-07-09 17:41:24 +00001923 Type *EltTy = 0;
1924 if (ParseType(EltTy)) return true;
Chris Lattnera9a9e072009-03-09 04:49:14 +00001925
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001926 if (ParseToken(isVector ? lltok::greater : lltok::rsquare,
1927 "expected end of sequential type"))
1928 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001929
Chris Lattnerdf986172009-01-02 07:01:27 +00001930 if (isVector) {
Chris Lattner452e2622009-02-28 18:12:41 +00001931 if (Size == 0)
1932 return Error(SizeLoc, "zero element vector is illegal");
Chris Lattnerdf986172009-01-02 07:01:27 +00001933 if ((unsigned)Size != Size)
1934 return Error(SizeLoc, "size too large for vector");
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001935 if (!VectorType::isValidElementType(EltTy))
Duncan Sands2333e292012-11-13 12:59:33 +00001936 return Error(TypeLoc, "invalid vector element type");
Owen Andersondebcb012009-07-29 22:17:13 +00001937 Result = VectorType::get(EltTy, unsigned(Size));
Chris Lattnerdf986172009-01-02 07:01:27 +00001938 } else {
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001939 if (!ArrayType::isValidElementType(EltTy))
Chris Lattnerdf986172009-01-02 07:01:27 +00001940 return Error(TypeLoc, "invalid array element type");
Chris Lattner1afcace2011-07-09 17:41:24 +00001941 Result = ArrayType::get(EltTy, Size);
Chris Lattnerdf986172009-01-02 07:01:27 +00001942 }
1943 return false;
1944}
1945
1946//===----------------------------------------------------------------------===//
1947// Function Semantic Analysis.
1948//===----------------------------------------------------------------------===//
1949
Chris Lattner09d9ef42009-10-28 03:39:23 +00001950LLParser::PerFunctionState::PerFunctionState(LLParser &p, Function &f,
1951 int functionNumber)
1952 : P(p), F(f), FunctionNumber(functionNumber) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001953
1954 // Insert unnamed arguments into the NumberedVals list.
1955 for (Function::arg_iterator AI = F.arg_begin(), E = F.arg_end();
1956 AI != E; ++AI)
1957 if (!AI->hasName())
1958 NumberedVals.push_back(AI);
1959}
1960
1961LLParser::PerFunctionState::~PerFunctionState() {
1962 // If there were any forward referenced non-basicblock values, delete them.
1963 for (std::map<std::string, std::pair<Value*, LocTy> >::iterator
1964 I = ForwardRefVals.begin(), E = ForwardRefVals.end(); I != E; ++I)
1965 if (!isa<BasicBlock>(I->second.first)) {
Owen Andersonb43eae72009-07-02 17:04:01 +00001966 I->second.first->replaceAllUsesWith(
Owen Anderson9e9a0d52009-07-30 23:03:37 +00001967 UndefValue::get(I->second.first->getType()));
Chris Lattnerdf986172009-01-02 07:01:27 +00001968 delete I->second.first;
1969 I->second.first = 0;
1970 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001971
Chris Lattnerdf986172009-01-02 07:01:27 +00001972 for (std::map<unsigned, std::pair<Value*, LocTy> >::iterator
1973 I = ForwardRefValIDs.begin(), E = ForwardRefValIDs.end(); I != E; ++I)
1974 if (!isa<BasicBlock>(I->second.first)) {
Owen Andersonb43eae72009-07-02 17:04:01 +00001975 I->second.first->replaceAllUsesWith(
Owen Anderson9e9a0d52009-07-30 23:03:37 +00001976 UndefValue::get(I->second.first->getType()));
Chris Lattnerdf986172009-01-02 07:01:27 +00001977 delete I->second.first;
1978 I->second.first = 0;
1979 }
1980}
1981
Chris Lattner09d9ef42009-10-28 03:39:23 +00001982bool LLParser::PerFunctionState::FinishFunction() {
1983 // Check to see if someone took the address of labels in this block.
1984 if (!P.ForwardRefBlockAddresses.empty()) {
1985 ValID FunctionID;
1986 if (!F.getName().empty()) {
1987 FunctionID.Kind = ValID::t_GlobalName;
1988 FunctionID.StrVal = F.getName();
1989 } else {
1990 FunctionID.Kind = ValID::t_GlobalID;
1991 FunctionID.UIntVal = FunctionNumber;
1992 }
Michael Ilseman407a6162012-11-15 22:34:00 +00001993
Chris Lattner09d9ef42009-10-28 03:39:23 +00001994 std::map<ValID, std::vector<std::pair<ValID, GlobalValue*> > >::iterator
1995 FRBAI = P.ForwardRefBlockAddresses.find(FunctionID);
1996 if (FRBAI != P.ForwardRefBlockAddresses.end()) {
1997 // Resolve all these references.
1998 if (P.ResolveForwardRefBlockAddresses(&F, FRBAI->second, this))
1999 return true;
Michael Ilseman407a6162012-11-15 22:34:00 +00002000
Chris Lattner09d9ef42009-10-28 03:39:23 +00002001 P.ForwardRefBlockAddresses.erase(FRBAI);
2002 }
2003 }
Michael Ilseman407a6162012-11-15 22:34:00 +00002004
Chris Lattnerdf986172009-01-02 07:01:27 +00002005 if (!ForwardRefVals.empty())
2006 return P.Error(ForwardRefVals.begin()->second.second,
2007 "use of undefined value '%" + ForwardRefVals.begin()->first +
2008 "'");
2009 if (!ForwardRefValIDs.empty())
2010 return P.Error(ForwardRefValIDs.begin()->second.second,
2011 "use of undefined value '%" +
Benjamin Kramerd1e17032010-09-27 17:42:11 +00002012 Twine(ForwardRefValIDs.begin()->first) + "'");
Chris Lattnerdf986172009-01-02 07:01:27 +00002013 return false;
2014}
2015
2016
2017/// GetVal - Get a value with the specified name or ID, creating a
2018/// forward reference record if needed. This can return null if the value
2019/// exists but does not have the right type.
2020Value *LLParser::PerFunctionState::GetVal(const std::string &Name,
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002021 Type *Ty, LocTy Loc) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002022 // Look this name up in the normal function symbol table.
2023 Value *Val = F.getValueSymbolTable().lookup(Name);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002024
Chris Lattnerdf986172009-01-02 07:01:27 +00002025 // If this is a forward reference for the value, see if we already created a
2026 // forward ref record.
2027 if (Val == 0) {
2028 std::map<std::string, std::pair<Value*, LocTy> >::iterator
2029 I = ForwardRefVals.find(Name);
2030 if (I != ForwardRefVals.end())
2031 Val = I->second.first;
2032 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002033
Chris Lattnerdf986172009-01-02 07:01:27 +00002034 // If we have the value in the symbol table or fwd-ref table, return it.
2035 if (Val) {
2036 if (Val->getType() == Ty) return Val;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00002037 if (Ty->isLabelTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002038 P.Error(Loc, "'%" + Name + "' is not a basic block");
2039 else
2040 P.Error(Loc, "'%" + Name + "' defined with type '" +
Chris Lattner0cd0d882011-06-18 21:18:23 +00002041 getTypeString(Val->getType()) + "'");
Chris Lattnerdf986172009-01-02 07:01:27 +00002042 return 0;
2043 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002044
Chris Lattnerdf986172009-01-02 07:01:27 +00002045 // Don't make placeholders with invalid type.
Chris Lattner1afcace2011-07-09 17:41:24 +00002046 if (!Ty->isFirstClassType() && !Ty->isLabelTy()) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002047 P.Error(Loc, "invalid use of a non-first-class type");
2048 return 0;
2049 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002050
Chris Lattnerdf986172009-01-02 07:01:27 +00002051 // Otherwise, create a new forward reference for this value and remember it.
2052 Value *FwdVal;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00002053 if (Ty->isLabelTy())
Owen Anderson1d0be152009-08-13 21:58:54 +00002054 FwdVal = BasicBlock::Create(F.getContext(), Name, &F);
Chris Lattnerdf986172009-01-02 07:01:27 +00002055 else
2056 FwdVal = new Argument(Ty, Name);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002057
Chris Lattnerdf986172009-01-02 07:01:27 +00002058 ForwardRefVals[Name] = std::make_pair(FwdVal, Loc);
2059 return FwdVal;
2060}
2061
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002062Value *LLParser::PerFunctionState::GetVal(unsigned ID, Type *Ty,
Chris Lattnerdf986172009-01-02 07:01:27 +00002063 LocTy Loc) {
2064 // Look this name up in the normal function symbol table.
2065 Value *Val = ID < NumberedVals.size() ? NumberedVals[ID] : 0;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002066
Chris Lattnerdf986172009-01-02 07:01:27 +00002067 // If this is a forward reference for the value, see if we already created a
2068 // forward ref record.
2069 if (Val == 0) {
2070 std::map<unsigned, std::pair<Value*, LocTy> >::iterator
2071 I = ForwardRefValIDs.find(ID);
2072 if (I != ForwardRefValIDs.end())
2073 Val = I->second.first;
2074 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002075
Chris Lattnerdf986172009-01-02 07:01:27 +00002076 // If we have the value in the symbol table or fwd-ref table, return it.
2077 if (Val) {
2078 if (Val->getType() == Ty) return Val;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00002079 if (Ty->isLabelTy())
Benjamin Kramerd1e17032010-09-27 17:42:11 +00002080 P.Error(Loc, "'%" + Twine(ID) + "' is not a basic block");
Chris Lattnerdf986172009-01-02 07:01:27 +00002081 else
Benjamin Kramerd1e17032010-09-27 17:42:11 +00002082 P.Error(Loc, "'%" + Twine(ID) + "' defined with type '" +
Chris Lattner0cd0d882011-06-18 21:18:23 +00002083 getTypeString(Val->getType()) + "'");
Chris Lattnerdf986172009-01-02 07:01:27 +00002084 return 0;
2085 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002086
Chris Lattner1afcace2011-07-09 17:41:24 +00002087 if (!Ty->isFirstClassType() && !Ty->isLabelTy()) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002088 P.Error(Loc, "invalid use of a non-first-class type");
2089 return 0;
2090 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002091
Chris Lattnerdf986172009-01-02 07:01:27 +00002092 // Otherwise, create a new forward reference for this value and remember it.
2093 Value *FwdVal;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00002094 if (Ty->isLabelTy())
Owen Anderson1d0be152009-08-13 21:58:54 +00002095 FwdVal = BasicBlock::Create(F.getContext(), "", &F);
Chris Lattnerdf986172009-01-02 07:01:27 +00002096 else
2097 FwdVal = new Argument(Ty);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002098
Chris Lattnerdf986172009-01-02 07:01:27 +00002099 ForwardRefValIDs[ID] = std::make_pair(FwdVal, Loc);
2100 return FwdVal;
2101}
2102
2103/// SetInstName - After an instruction is parsed and inserted into its
2104/// basic block, this installs its name.
2105bool LLParser::PerFunctionState::SetInstName(int NameID,
2106 const std::string &NameStr,
2107 LocTy NameLoc, Instruction *Inst) {
2108 // If this instruction has void type, it cannot have a name or ID specified.
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00002109 if (Inst->getType()->isVoidTy()) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002110 if (NameID != -1 || !NameStr.empty())
2111 return P.Error(NameLoc, "instructions returning void cannot have a name");
2112 return false;
2113 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002114
Chris Lattnerdf986172009-01-02 07:01:27 +00002115 // If this was a numbered instruction, verify that the instruction is the
2116 // expected value and resolve any forward references.
2117 if (NameStr.empty()) {
2118 // If neither a name nor an ID was specified, just use the next ID.
2119 if (NameID == -1)
2120 NameID = NumberedVals.size();
Daniel Dunbara279bc32009-09-20 02:20:51 +00002121
Chris Lattnerdf986172009-01-02 07:01:27 +00002122 if (unsigned(NameID) != NumberedVals.size())
2123 return P.Error(NameLoc, "instruction expected to be numbered '%" +
Benjamin Kramerd1e17032010-09-27 17:42:11 +00002124 Twine(NumberedVals.size()) + "'");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002125
Chris Lattnerdf986172009-01-02 07:01:27 +00002126 std::map<unsigned, std::pair<Value*, LocTy> >::iterator FI =
2127 ForwardRefValIDs.find(NameID);
2128 if (FI != ForwardRefValIDs.end()) {
2129 if (FI->second.first->getType() != Inst->getType())
Daniel Dunbara279bc32009-09-20 02:20:51 +00002130 return P.Error(NameLoc, "instruction forward referenced with type '" +
Chris Lattner0cd0d882011-06-18 21:18:23 +00002131 getTypeString(FI->second.first->getType()) + "'");
Chris Lattnerdf986172009-01-02 07:01:27 +00002132 FI->second.first->replaceAllUsesWith(Inst);
Nuno Lopes2b4f28e2009-09-02 15:02:57 +00002133 delete FI->second.first;
Chris Lattnerdf986172009-01-02 07:01:27 +00002134 ForwardRefValIDs.erase(FI);
2135 }
2136
2137 NumberedVals.push_back(Inst);
2138 return false;
2139 }
2140
2141 // Otherwise, the instruction had a name. Resolve forward refs and set it.
2142 std::map<std::string, std::pair<Value*, LocTy> >::iterator
2143 FI = ForwardRefVals.find(NameStr);
2144 if (FI != ForwardRefVals.end()) {
2145 if (FI->second.first->getType() != Inst->getType())
Daniel Dunbara279bc32009-09-20 02:20:51 +00002146 return P.Error(NameLoc, "instruction forward referenced with type '" +
Chris Lattner0cd0d882011-06-18 21:18:23 +00002147 getTypeString(FI->second.first->getType()) + "'");
Chris Lattnerdf986172009-01-02 07:01:27 +00002148 FI->second.first->replaceAllUsesWith(Inst);
Nuno Lopes531552a2009-09-02 14:22:03 +00002149 delete FI->second.first;
Chris Lattnerdf986172009-01-02 07:01:27 +00002150 ForwardRefVals.erase(FI);
2151 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002152
Chris Lattnerdf986172009-01-02 07:01:27 +00002153 // Set the name on the instruction.
2154 Inst->setName(NameStr);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002155
Benjamin Krameraf812352010-10-16 11:28:23 +00002156 if (Inst->getName() != NameStr)
Daniel Dunbara279bc32009-09-20 02:20:51 +00002157 return P.Error(NameLoc, "multiple definition of local value named '" +
Chris Lattnerdf986172009-01-02 07:01:27 +00002158 NameStr + "'");
2159 return false;
2160}
2161
2162/// GetBB - Get a basic block with the specified name or ID, creating a
2163/// forward reference record if needed.
2164BasicBlock *LLParser::PerFunctionState::GetBB(const std::string &Name,
2165 LocTy Loc) {
Owen Anderson1d0be152009-08-13 21:58:54 +00002166 return cast_or_null<BasicBlock>(GetVal(Name,
2167 Type::getLabelTy(F.getContext()), Loc));
Chris Lattnerdf986172009-01-02 07:01:27 +00002168}
2169
2170BasicBlock *LLParser::PerFunctionState::GetBB(unsigned ID, LocTy Loc) {
Owen Anderson1d0be152009-08-13 21:58:54 +00002171 return cast_or_null<BasicBlock>(GetVal(ID,
2172 Type::getLabelTy(F.getContext()), Loc));
Chris Lattnerdf986172009-01-02 07:01:27 +00002173}
2174
2175/// DefineBB - Define the specified basic block, which is either named or
2176/// unnamed. If there is an error, this returns null otherwise it returns
2177/// the block being defined.
2178BasicBlock *LLParser::PerFunctionState::DefineBB(const std::string &Name,
2179 LocTy Loc) {
2180 BasicBlock *BB;
2181 if (Name.empty())
2182 BB = GetBB(NumberedVals.size(), Loc);
2183 else
2184 BB = GetBB(Name, Loc);
2185 if (BB == 0) return 0; // Already diagnosed error.
Daniel Dunbara279bc32009-09-20 02:20:51 +00002186
Chris Lattnerdf986172009-01-02 07:01:27 +00002187 // Move the block to the end of the function. Forward ref'd blocks are
2188 // inserted wherever they happen to be referenced.
2189 F.getBasicBlockList().splice(F.end(), F.getBasicBlockList(), BB);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002190
Chris Lattnerdf986172009-01-02 07:01:27 +00002191 // Remove the block from forward ref sets.
2192 if (Name.empty()) {
2193 ForwardRefValIDs.erase(NumberedVals.size());
2194 NumberedVals.push_back(BB);
2195 } else {
2196 // BB forward references are already in the function symbol table.
2197 ForwardRefVals.erase(Name);
2198 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002199
Chris Lattnerdf986172009-01-02 07:01:27 +00002200 return BB;
2201}
2202
2203//===----------------------------------------------------------------------===//
2204// Constants.
2205//===----------------------------------------------------------------------===//
2206
2207/// ParseValID - Parse an abstract value that doesn't necessarily have a
2208/// type implied. For example, if we parse "4" we don't know what integer type
2209/// it has. The value will later be combined with its type and checked for
Victor Hernandez24e64df2010-01-10 07:14:18 +00002210/// sanity. PFS is used to convert function-local operands of metadata (since
2211/// metadata operands are not just parsed here but also converted to values).
2212/// PFS can be null when we are not parsing metadata values inside a function.
Victor Hernandezbf170d42010-01-05 22:22:14 +00002213bool LLParser::ParseValID(ValID &ID, PerFunctionState *PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002214 ID.Loc = Lex.getLoc();
2215 switch (Lex.getKind()) {
2216 default: return TokError("expected value token");
2217 case lltok::GlobalID: // @42
2218 ID.UIntVal = Lex.getUIntVal();
2219 ID.Kind = ValID::t_GlobalID;
2220 break;
2221 case lltok::GlobalVar: // @foo
2222 ID.StrVal = Lex.getStrVal();
2223 ID.Kind = ValID::t_GlobalName;
2224 break;
2225 case lltok::LocalVarID: // %42
2226 ID.UIntVal = Lex.getUIntVal();
2227 ID.Kind = ValID::t_LocalID;
2228 break;
2229 case lltok::LocalVar: // %foo
Chris Lattnerdf986172009-01-02 07:01:27 +00002230 ID.StrVal = Lex.getStrVal();
2231 ID.Kind = ValID::t_LocalName;
2232 break;
Dan Gohman83448032010-07-14 18:26:50 +00002233 case lltok::exclaim: // !42, !{...}, or !"foo"
2234 return ParseMetadataValue(ID, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00002235 case lltok::APSInt:
Daniel Dunbara279bc32009-09-20 02:20:51 +00002236 ID.APSIntVal = Lex.getAPSIntVal();
Chris Lattnerdf986172009-01-02 07:01:27 +00002237 ID.Kind = ValID::t_APSInt;
2238 break;
2239 case lltok::APFloat:
2240 ID.APFloatVal = Lex.getAPFloatVal();
2241 ID.Kind = ValID::t_APFloat;
2242 break;
2243 case lltok::kw_true:
Owen Anderson5defacc2009-07-31 17:39:07 +00002244 ID.ConstantVal = ConstantInt::getTrue(Context);
Chris Lattnerdf986172009-01-02 07:01:27 +00002245 ID.Kind = ValID::t_Constant;
2246 break;
2247 case lltok::kw_false:
Owen Anderson5defacc2009-07-31 17:39:07 +00002248 ID.ConstantVal = ConstantInt::getFalse(Context);
Chris Lattnerdf986172009-01-02 07:01:27 +00002249 ID.Kind = ValID::t_Constant;
2250 break;
2251 case lltok::kw_null: ID.Kind = ValID::t_Null; break;
2252 case lltok::kw_undef: ID.Kind = ValID::t_Undef; break;
2253 case lltok::kw_zeroinitializer: ID.Kind = ValID::t_Zero; break;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002254
Chris Lattnerdf986172009-01-02 07:01:27 +00002255 case lltok::lbrace: {
2256 // ValID ::= '{' ConstVector '}'
2257 Lex.Lex();
2258 SmallVector<Constant*, 16> Elts;
2259 if (ParseGlobalValueVector(Elts) ||
2260 ParseToken(lltok::rbrace, "expected end of struct constant"))
2261 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002262
Chris Lattner1afcace2011-07-09 17:41:24 +00002263 ID.ConstantStructElts = new Constant*[Elts.size()];
2264 ID.UIntVal = Elts.size();
2265 memcpy(ID.ConstantStructElts, Elts.data(), Elts.size()*sizeof(Elts[0]));
2266 ID.Kind = ValID::t_ConstantStruct;
Chris Lattnerdf986172009-01-02 07:01:27 +00002267 return false;
2268 }
2269 case lltok::less: {
2270 // ValID ::= '<' ConstVector '>' --> Vector.
2271 // ValID ::= '<' '{' ConstVector '}' '>' --> Packed Struct.
2272 Lex.Lex();
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002273 bool isPackedStruct = EatIfPresent(lltok::lbrace);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002274
Chris Lattnerdf986172009-01-02 07:01:27 +00002275 SmallVector<Constant*, 16> Elts;
2276 LocTy FirstEltLoc = Lex.getLoc();
2277 if (ParseGlobalValueVector(Elts) ||
2278 (isPackedStruct &&
2279 ParseToken(lltok::rbrace, "expected end of packed struct")) ||
2280 ParseToken(lltok::greater, "expected end of constant"))
2281 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002282
Chris Lattnerdf986172009-01-02 07:01:27 +00002283 if (isPackedStruct) {
Chris Lattner1afcace2011-07-09 17:41:24 +00002284 ID.ConstantStructElts = new Constant*[Elts.size()];
2285 memcpy(ID.ConstantStructElts, Elts.data(), Elts.size()*sizeof(Elts[0]));
2286 ID.UIntVal = Elts.size();
2287 ID.Kind = ValID::t_PackedConstantStruct;
Chris Lattnerdf986172009-01-02 07:01:27 +00002288 return false;
2289 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002290
Chris Lattnerdf986172009-01-02 07:01:27 +00002291 if (Elts.empty())
2292 return Error(ID.Loc, "constant vector must not be empty");
2293
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00002294 if (!Elts[0]->getType()->isIntegerTy() &&
Nadav Rotem16087692011-12-05 06:29:09 +00002295 !Elts[0]->getType()->isFloatingPointTy() &&
2296 !Elts[0]->getType()->isPointerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002297 return Error(FirstEltLoc,
Nadav Rotem16087692011-12-05 06:29:09 +00002298 "vector elements must have integer, pointer or floating point type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002299
Chris Lattnerdf986172009-01-02 07:01:27 +00002300 // Verify that all the vector elements have the same type.
2301 for (unsigned i = 1, e = Elts.size(); i != e; ++i)
2302 if (Elts[i]->getType() != Elts[0]->getType())
2303 return Error(FirstEltLoc,
Benjamin Kramerd1e17032010-09-27 17:42:11 +00002304 "vector element #" + Twine(i) +
Chris Lattner0cd0d882011-06-18 21:18:23 +00002305 " is not of type '" + getTypeString(Elts[0]->getType()));
Daniel Dunbara279bc32009-09-20 02:20:51 +00002306
Chris Lattner2ca5c862011-02-15 00:14:00 +00002307 ID.ConstantVal = ConstantVector::get(Elts);
Chris Lattnerdf986172009-01-02 07:01:27 +00002308 ID.Kind = ValID::t_Constant;
2309 return false;
2310 }
2311 case lltok::lsquare: { // Array Constant
2312 Lex.Lex();
2313 SmallVector<Constant*, 16> Elts;
2314 LocTy FirstEltLoc = Lex.getLoc();
2315 if (ParseGlobalValueVector(Elts) ||
2316 ParseToken(lltok::rsquare, "expected end of array constant"))
2317 return true;
2318
2319 // Handle empty element.
2320 if (Elts.empty()) {
2321 // Use undef instead of an array because it's inconvenient to determine
2322 // the element type at this point, there being no elements to examine.
Chris Lattner081b5052009-01-05 07:52:51 +00002323 ID.Kind = ValID::t_EmptyArray;
Chris Lattnerdf986172009-01-02 07:01:27 +00002324 return false;
2325 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002326
Chris Lattnerdf986172009-01-02 07:01:27 +00002327 if (!Elts[0]->getType()->isFirstClassType())
Daniel Dunbara279bc32009-09-20 02:20:51 +00002328 return Error(FirstEltLoc, "invalid array element type: " +
Chris Lattner0cd0d882011-06-18 21:18:23 +00002329 getTypeString(Elts[0]->getType()));
Daniel Dunbara279bc32009-09-20 02:20:51 +00002330
Owen Andersondebcb012009-07-29 22:17:13 +00002331 ArrayType *ATy = ArrayType::get(Elts[0]->getType(), Elts.size());
Daniel Dunbara279bc32009-09-20 02:20:51 +00002332
Chris Lattnerdf986172009-01-02 07:01:27 +00002333 // Verify all elements are correct type!
Chris Lattner6d6b3cc2009-01-02 08:49:06 +00002334 for (unsigned i = 0, e = Elts.size(); i != e; ++i) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002335 if (Elts[i]->getType() != Elts[0]->getType())
2336 return Error(FirstEltLoc,
Benjamin Kramerd1e17032010-09-27 17:42:11 +00002337 "array element #" + Twine(i) +
Chris Lattner0cd0d882011-06-18 21:18:23 +00002338 " is not of type '" + getTypeString(Elts[0]->getType()));
Chris Lattnerdf986172009-01-02 07:01:27 +00002339 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002340
Jay Foad26701082011-06-22 09:24:39 +00002341 ID.ConstantVal = ConstantArray::get(ATy, Elts);
Chris Lattnerdf986172009-01-02 07:01:27 +00002342 ID.Kind = ValID::t_Constant;
2343 return false;
2344 }
2345 case lltok::kw_c: // c "foo"
2346 Lex.Lex();
Chris Lattner18c7f802012-02-05 02:29:43 +00002347 ID.ConstantVal = ConstantDataArray::getString(Context, Lex.getStrVal(),
2348 false);
Chris Lattnerdf986172009-01-02 07:01:27 +00002349 if (ParseToken(lltok::StringConstant, "expected string")) return true;
2350 ID.Kind = ValID::t_Constant;
2351 return false;
2352
2353 case lltok::kw_asm: {
Chad Rosier27d844f2013-02-14 20:44:07 +00002354 // ValID ::= 'asm' SideEffect? AlignStack? IntelDialect? STRINGCONSTANT ','
2355 // STRINGCONSTANT
Chad Rosier581600b2012-09-05 19:00:49 +00002356 bool HasSideEffect, AlignStack, AsmDialect;
Chris Lattnerdf986172009-01-02 07:01:27 +00002357 Lex.Lex();
2358 if (ParseOptionalToken(lltok::kw_sideeffect, HasSideEffect) ||
Dale Johannesen8ba2d5b2009-10-21 23:28:00 +00002359 ParseOptionalToken(lltok::kw_alignstack, AlignStack) ||
Chad Rosier581600b2012-09-05 19:00:49 +00002360 ParseOptionalToken(lltok::kw_inteldialect, AsmDialect) ||
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002361 ParseStringConstant(ID.StrVal) ||
2362 ParseToken(lltok::comma, "expected comma in inline asm expression") ||
Chris Lattnerdf986172009-01-02 07:01:27 +00002363 ParseToken(lltok::StringConstant, "expected constraint string"))
2364 return true;
2365 ID.StrVal2 = Lex.getStrVal();
Chad Rosier36547342012-09-05 00:08:17 +00002366 ID.UIntVal = unsigned(HasSideEffect) | (unsigned(AlignStack)<<1) |
Chad Rosier581600b2012-09-05 19:00:49 +00002367 (unsigned(AsmDialect)<<2);
Chris Lattnerdf986172009-01-02 07:01:27 +00002368 ID.Kind = ValID::t_InlineAsm;
2369 return false;
2370 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002371
Chris Lattner09d9ef42009-10-28 03:39:23 +00002372 case lltok::kw_blockaddress: {
2373 // ValID ::= 'blockaddress' '(' @foo ',' %bar ')'
2374 Lex.Lex();
2375
2376 ValID Fn, Label;
2377 LocTy FnLoc, LabelLoc;
Michael Ilseman407a6162012-11-15 22:34:00 +00002378
Chris Lattner09d9ef42009-10-28 03:39:23 +00002379 if (ParseToken(lltok::lparen, "expected '(' in block address expression") ||
2380 ParseValID(Fn) ||
2381 ParseToken(lltok::comma, "expected comma in block address expression")||
2382 ParseValID(Label) ||
2383 ParseToken(lltok::rparen, "expected ')' in block address expression"))
2384 return true;
Michael Ilseman407a6162012-11-15 22:34:00 +00002385
Chris Lattner09d9ef42009-10-28 03:39:23 +00002386 if (Fn.Kind != ValID::t_GlobalID && Fn.Kind != ValID::t_GlobalName)
2387 return Error(Fn.Loc, "expected function name in blockaddress");
Chris Lattnercdfc9402009-11-01 01:27:45 +00002388 if (Label.Kind != ValID::t_LocalID && Label.Kind != ValID::t_LocalName)
Chris Lattner09d9ef42009-10-28 03:39:23 +00002389 return Error(Label.Loc, "expected basic block name in blockaddress");
Michael Ilseman407a6162012-11-15 22:34:00 +00002390
Chris Lattner09d9ef42009-10-28 03:39:23 +00002391 // Make a global variable as a placeholder for this reference.
2392 GlobalVariable *FwdRef = new GlobalVariable(*M, Type::getInt8Ty(Context),
2393 false, GlobalValue::InternalLinkage,
2394 0, "");
2395 ForwardRefBlockAddresses[Fn].push_back(std::make_pair(Label, FwdRef));
2396 ID.ConstantVal = FwdRef;
2397 ID.Kind = ValID::t_Constant;
2398 return false;
2399 }
Michael Ilseman407a6162012-11-15 22:34:00 +00002400
Chris Lattnerdf986172009-01-02 07:01:27 +00002401 case lltok::kw_trunc:
2402 case lltok::kw_zext:
2403 case lltok::kw_sext:
2404 case lltok::kw_fptrunc:
2405 case lltok::kw_fpext:
2406 case lltok::kw_bitcast:
2407 case lltok::kw_uitofp:
2408 case lltok::kw_sitofp:
2409 case lltok::kw_fptoui:
Daniel Dunbara279bc32009-09-20 02:20:51 +00002410 case lltok::kw_fptosi:
Chris Lattnerdf986172009-01-02 07:01:27 +00002411 case lltok::kw_inttoptr:
Daniel Dunbara279bc32009-09-20 02:20:51 +00002412 case lltok::kw_ptrtoint: {
Chris Lattnerdf986172009-01-02 07:01:27 +00002413 unsigned Opc = Lex.getUIntVal();
Chris Lattner1afcace2011-07-09 17:41:24 +00002414 Type *DestTy = 0;
Chris Lattnerdf986172009-01-02 07:01:27 +00002415 Constant *SrcVal;
2416 Lex.Lex();
2417 if (ParseToken(lltok::lparen, "expected '(' after constantexpr cast") ||
2418 ParseGlobalTypeAndValue(SrcVal) ||
Dan Gohman24b108b2009-06-15 21:52:11 +00002419 ParseToken(lltok::kw_to, "expected 'to' in constantexpr cast") ||
Chris Lattnerdf986172009-01-02 07:01:27 +00002420 ParseType(DestTy) ||
2421 ParseToken(lltok::rparen, "expected ')' at end of constantexpr cast"))
2422 return true;
2423 if (!CastInst::castIsValid((Instruction::CastOps)Opc, SrcVal, DestTy))
2424 return Error(ID.Loc, "invalid cast opcode for cast from '" +
Chris Lattner0cd0d882011-06-18 21:18:23 +00002425 getTypeString(SrcVal->getType()) + "' to '" +
2426 getTypeString(DestTy) + "'");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002427 ID.ConstantVal = ConstantExpr::getCast((Instruction::CastOps)Opc,
Owen Andersonfba933c2009-07-01 23:57:11 +00002428 SrcVal, DestTy);
Chris Lattnerdf986172009-01-02 07:01:27 +00002429 ID.Kind = ValID::t_Constant;
2430 return false;
2431 }
2432 case lltok::kw_extractvalue: {
2433 Lex.Lex();
2434 Constant *Val;
2435 SmallVector<unsigned, 4> Indices;
2436 if (ParseToken(lltok::lparen, "expected '(' in extractvalue constantexpr")||
2437 ParseGlobalTypeAndValue(Val) ||
2438 ParseIndexList(Indices) ||
2439 ParseToken(lltok::rparen, "expected ')' in extractvalue constantexpr"))
2440 return true;
Devang Patele8bc45a2009-11-03 19:06:07 +00002441
Chris Lattnerfdfeb692010-02-12 20:49:41 +00002442 if (!Val->getType()->isAggregateType())
2443 return Error(ID.Loc, "extractvalue operand must be aggregate type");
Jay Foadfc6d3a42011-07-13 10:26:04 +00002444 if (!ExtractValueInst::getIndexedType(Val->getType(), Indices))
Chris Lattnerdf986172009-01-02 07:01:27 +00002445 return Error(ID.Loc, "invalid indices for extractvalue");
Jay Foadfc6d3a42011-07-13 10:26:04 +00002446 ID.ConstantVal = ConstantExpr::getExtractValue(Val, Indices);
Chris Lattnerdf986172009-01-02 07:01:27 +00002447 ID.Kind = ValID::t_Constant;
2448 return false;
2449 }
2450 case lltok::kw_insertvalue: {
2451 Lex.Lex();
2452 Constant *Val0, *Val1;
2453 SmallVector<unsigned, 4> Indices;
2454 if (ParseToken(lltok::lparen, "expected '(' in insertvalue constantexpr")||
2455 ParseGlobalTypeAndValue(Val0) ||
2456 ParseToken(lltok::comma, "expected comma in insertvalue constantexpr")||
2457 ParseGlobalTypeAndValue(Val1) ||
2458 ParseIndexList(Indices) ||
2459 ParseToken(lltok::rparen, "expected ')' in insertvalue constantexpr"))
2460 return true;
Chris Lattnerfdfeb692010-02-12 20:49:41 +00002461 if (!Val0->getType()->isAggregateType())
2462 return Error(ID.Loc, "insertvalue operand must be aggregate type");
Jay Foadfc6d3a42011-07-13 10:26:04 +00002463 if (!ExtractValueInst::getIndexedType(Val0->getType(), Indices))
Chris Lattnerdf986172009-01-02 07:01:27 +00002464 return Error(ID.Loc, "invalid indices for insertvalue");
Jay Foadfc6d3a42011-07-13 10:26:04 +00002465 ID.ConstantVal = ConstantExpr::getInsertValue(Val0, Val1, Indices);
Chris Lattnerdf986172009-01-02 07:01:27 +00002466 ID.Kind = ValID::t_Constant;
2467 return false;
2468 }
2469 case lltok::kw_icmp:
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00002470 case lltok::kw_fcmp: {
Chris Lattnerdf986172009-01-02 07:01:27 +00002471 unsigned PredVal, Opc = Lex.getUIntVal();
2472 Constant *Val0, *Val1;
2473 Lex.Lex();
2474 if (ParseCmpPredicate(PredVal, Opc) ||
2475 ParseToken(lltok::lparen, "expected '(' in compare constantexpr") ||
2476 ParseGlobalTypeAndValue(Val0) ||
2477 ParseToken(lltok::comma, "expected comma in compare constantexpr") ||
2478 ParseGlobalTypeAndValue(Val1) ||
2479 ParseToken(lltok::rparen, "expected ')' in compare constantexpr"))
2480 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002481
Chris Lattnerdf986172009-01-02 07:01:27 +00002482 if (Val0->getType() != Val1->getType())
2483 return Error(ID.Loc, "compare operands must have the same type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002484
Chris Lattnerdf986172009-01-02 07:01:27 +00002485 CmpInst::Predicate Pred = (CmpInst::Predicate)PredVal;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002486
Chris Lattnerdf986172009-01-02 07:01:27 +00002487 if (Opc == Instruction::FCmp) {
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00002488 if (!Val0->getType()->isFPOrFPVectorTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002489 return Error(ID.Loc, "fcmp requires floating point operands");
Owen Andersonbaf3c402009-07-29 18:55:55 +00002490 ID.ConstantVal = ConstantExpr::getFCmp(Pred, Val0, Val1);
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00002491 } else {
2492 assert(Opc == Instruction::ICmp && "Unexpected opcode for CmpInst!");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00002493 if (!Val0->getType()->isIntOrIntVectorTy() &&
Nadav Rotem16087692011-12-05 06:29:09 +00002494 !Val0->getType()->getScalarType()->isPointerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002495 return Error(ID.Loc, "icmp requires pointer or integer operands");
Owen Andersonbaf3c402009-07-29 18:55:55 +00002496 ID.ConstantVal = ConstantExpr::getICmp(Pred, Val0, Val1);
Chris Lattnerdf986172009-01-02 07:01:27 +00002497 }
2498 ID.Kind = ValID::t_Constant;
2499 return false;
2500 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002501
Chris Lattnerdf986172009-01-02 07:01:27 +00002502 // Binary Operators.
2503 case lltok::kw_add:
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002504 case lltok::kw_fadd:
Chris Lattnerdf986172009-01-02 07:01:27 +00002505 case lltok::kw_sub:
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002506 case lltok::kw_fsub:
Chris Lattnerdf986172009-01-02 07:01:27 +00002507 case lltok::kw_mul:
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002508 case lltok::kw_fmul:
Chris Lattnerdf986172009-01-02 07:01:27 +00002509 case lltok::kw_udiv:
2510 case lltok::kw_sdiv:
2511 case lltok::kw_fdiv:
2512 case lltok::kw_urem:
2513 case lltok::kw_srem:
Chris Lattnerf067d582011-02-07 16:40:21 +00002514 case lltok::kw_frem:
2515 case lltok::kw_shl:
2516 case lltok::kw_lshr:
2517 case lltok::kw_ashr: {
Dan Gohman59858cf2009-07-27 16:11:46 +00002518 bool NUW = false;
2519 bool NSW = false;
2520 bool Exact = false;
Chris Lattnerdf986172009-01-02 07:01:27 +00002521 unsigned Opc = Lex.getUIntVal();
2522 Constant *Val0, *Val1;
2523 Lex.Lex();
Dan Gohman59858cf2009-07-27 16:11:46 +00002524 LocTy ModifierLoc = Lex.getLoc();
Chris Lattnerf067d582011-02-07 16:40:21 +00002525 if (Opc == Instruction::Add || Opc == Instruction::Sub ||
2526 Opc == Instruction::Mul || Opc == Instruction::Shl) {
Dan Gohman59858cf2009-07-27 16:11:46 +00002527 if (EatIfPresent(lltok::kw_nuw))
2528 NUW = true;
2529 if (EatIfPresent(lltok::kw_nsw)) {
2530 NSW = true;
2531 if (EatIfPresent(lltok::kw_nuw))
2532 NUW = true;
2533 }
Chris Lattnerf067d582011-02-07 16:40:21 +00002534 } else if (Opc == Instruction::SDiv || Opc == Instruction::UDiv ||
2535 Opc == Instruction::LShr || Opc == Instruction::AShr) {
Dan Gohman59858cf2009-07-27 16:11:46 +00002536 if (EatIfPresent(lltok::kw_exact))
2537 Exact = true;
2538 }
Chris Lattnerdf986172009-01-02 07:01:27 +00002539 if (ParseToken(lltok::lparen, "expected '(' in binary constantexpr") ||
2540 ParseGlobalTypeAndValue(Val0) ||
2541 ParseToken(lltok::comma, "expected comma in binary constantexpr") ||
2542 ParseGlobalTypeAndValue(Val1) ||
2543 ParseToken(lltok::rparen, "expected ')' in binary constantexpr"))
2544 return true;
2545 if (Val0->getType() != Val1->getType())
2546 return Error(ID.Loc, "operands of constexpr must have same type");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00002547 if (!Val0->getType()->isIntOrIntVectorTy()) {
Dan Gohman59858cf2009-07-27 16:11:46 +00002548 if (NUW)
2549 return Error(ModifierLoc, "nuw only applies to integer operations");
2550 if (NSW)
2551 return Error(ModifierLoc, "nsw only applies to integer operations");
2552 }
Dan Gohman1eaac532010-05-03 22:44:19 +00002553 // Check that the type is valid for the operator.
2554 switch (Opc) {
2555 case Instruction::Add:
2556 case Instruction::Sub:
2557 case Instruction::Mul:
2558 case Instruction::UDiv:
2559 case Instruction::SDiv:
2560 case Instruction::URem:
2561 case Instruction::SRem:
Chris Lattnerf067d582011-02-07 16:40:21 +00002562 case Instruction::Shl:
2563 case Instruction::AShr:
2564 case Instruction::LShr:
Dan Gohman1eaac532010-05-03 22:44:19 +00002565 if (!Val0->getType()->isIntOrIntVectorTy())
2566 return Error(ID.Loc, "constexpr requires integer operands");
2567 break;
2568 case Instruction::FAdd:
2569 case Instruction::FSub:
2570 case Instruction::FMul:
2571 case Instruction::FDiv:
2572 case Instruction::FRem:
2573 if (!Val0->getType()->isFPOrFPVectorTy())
2574 return Error(ID.Loc, "constexpr requires fp operands");
2575 break;
2576 default: llvm_unreachable("Unknown binary operator!");
2577 }
Dan Gohmanf8dbee72009-09-07 23:54:19 +00002578 unsigned Flags = 0;
2579 if (NUW) Flags |= OverflowingBinaryOperator::NoUnsignedWrap;
2580 if (NSW) Flags |= OverflowingBinaryOperator::NoSignedWrap;
Chris Lattner35bda892011-02-06 21:44:57 +00002581 if (Exact) Flags |= PossiblyExactOperator::IsExact;
Dan Gohmanf8dbee72009-09-07 23:54:19 +00002582 Constant *C = ConstantExpr::get(Opc, Val0, Val1, Flags);
Dan Gohman59858cf2009-07-27 16:11:46 +00002583 ID.ConstantVal = C;
Chris Lattnerdf986172009-01-02 07:01:27 +00002584 ID.Kind = ValID::t_Constant;
2585 return false;
2586 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002587
Chris Lattnerdf986172009-01-02 07:01:27 +00002588 // Logical Operations
Chris Lattnerdf986172009-01-02 07:01:27 +00002589 case lltok::kw_and:
2590 case lltok::kw_or:
2591 case lltok::kw_xor: {
2592 unsigned Opc = Lex.getUIntVal();
2593 Constant *Val0, *Val1;
2594 Lex.Lex();
2595 if (ParseToken(lltok::lparen, "expected '(' in logical constantexpr") ||
2596 ParseGlobalTypeAndValue(Val0) ||
2597 ParseToken(lltok::comma, "expected comma in logical constantexpr") ||
2598 ParseGlobalTypeAndValue(Val1) ||
2599 ParseToken(lltok::rparen, "expected ')' in logical constantexpr"))
2600 return true;
2601 if (Val0->getType() != Val1->getType())
2602 return Error(ID.Loc, "operands of constexpr must have same type");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00002603 if (!Val0->getType()->isIntOrIntVectorTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002604 return Error(ID.Loc,
2605 "constexpr requires integer or integer vector operands");
Owen Andersonbaf3c402009-07-29 18:55:55 +00002606 ID.ConstantVal = ConstantExpr::get(Opc, Val0, Val1);
Chris Lattnerdf986172009-01-02 07:01:27 +00002607 ID.Kind = ValID::t_Constant;
2608 return false;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002609 }
2610
Chris Lattnerdf986172009-01-02 07:01:27 +00002611 case lltok::kw_getelementptr:
2612 case lltok::kw_shufflevector:
2613 case lltok::kw_insertelement:
2614 case lltok::kw_extractelement:
2615 case lltok::kw_select: {
2616 unsigned Opc = Lex.getUIntVal();
2617 SmallVector<Constant*, 16> Elts;
Dan Gohmandd8004d2009-07-27 21:53:46 +00002618 bool InBounds = false;
Chris Lattnerdf986172009-01-02 07:01:27 +00002619 Lex.Lex();
Dan Gohmandd8004d2009-07-27 21:53:46 +00002620 if (Opc == Instruction::GetElementPtr)
Dan Gohmandcb40a32009-07-29 15:58:36 +00002621 InBounds = EatIfPresent(lltok::kw_inbounds);
Chris Lattnerdf986172009-01-02 07:01:27 +00002622 if (ParseToken(lltok::lparen, "expected '(' in constantexpr") ||
2623 ParseGlobalValueVector(Elts) ||
2624 ParseToken(lltok::rparen, "expected ')' in constantexpr"))
2625 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002626
Chris Lattnerdf986172009-01-02 07:01:27 +00002627 if (Opc == Instruction::GetElementPtr) {
Nadav Rotem16087692011-12-05 06:29:09 +00002628 if (Elts.size() == 0 ||
2629 !Elts[0]->getType()->getScalarType()->isPointerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002630 return Error(ID.Loc, "getelementptr requires pointer operand");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002631
Jay Foaddab3d292011-07-21 14:31:17 +00002632 ArrayRef<Constant *> Indices(Elts.begin() + 1, Elts.end());
Jay Foada9203102011-07-25 09:48:08 +00002633 if (!GetElementPtrInst::getIndexedType(Elts[0]->getType(), Indices))
Chris Lattnerdf986172009-01-02 07:01:27 +00002634 return Error(ID.Loc, "invalid indices for getelementptr");
Jay Foad4b5e2072011-07-21 15:15:37 +00002635 ID.ConstantVal = ConstantExpr::getGetElementPtr(Elts[0], Indices,
2636 InBounds);
Chris Lattnerdf986172009-01-02 07:01:27 +00002637 } else if (Opc == Instruction::Select) {
2638 if (Elts.size() != 3)
2639 return Error(ID.Loc, "expected three operands to select");
2640 if (const char *Reason = SelectInst::areInvalidOperands(Elts[0], Elts[1],
2641 Elts[2]))
2642 return Error(ID.Loc, Reason);
Owen Andersonbaf3c402009-07-29 18:55:55 +00002643 ID.ConstantVal = ConstantExpr::getSelect(Elts[0], Elts[1], Elts[2]);
Chris Lattnerdf986172009-01-02 07:01:27 +00002644 } else if (Opc == Instruction::ShuffleVector) {
2645 if (Elts.size() != 3)
2646 return Error(ID.Loc, "expected three operands to shufflevector");
2647 if (!ShuffleVectorInst::isValidOperands(Elts[0], Elts[1], Elts[2]))
2648 return Error(ID.Loc, "invalid operands to shufflevector");
Owen Andersonfba933c2009-07-01 23:57:11 +00002649 ID.ConstantVal =
Owen Andersonbaf3c402009-07-29 18:55:55 +00002650 ConstantExpr::getShuffleVector(Elts[0], Elts[1],Elts[2]);
Chris Lattnerdf986172009-01-02 07:01:27 +00002651 } else if (Opc == Instruction::ExtractElement) {
2652 if (Elts.size() != 2)
2653 return Error(ID.Loc, "expected two operands to extractelement");
2654 if (!ExtractElementInst::isValidOperands(Elts[0], Elts[1]))
2655 return Error(ID.Loc, "invalid extractelement operands");
Owen Andersonbaf3c402009-07-29 18:55:55 +00002656 ID.ConstantVal = ConstantExpr::getExtractElement(Elts[0], Elts[1]);
Chris Lattnerdf986172009-01-02 07:01:27 +00002657 } else {
2658 assert(Opc == Instruction::InsertElement && "Unknown opcode");
2659 if (Elts.size() != 3)
2660 return Error(ID.Loc, "expected three operands to insertelement");
2661 if (!InsertElementInst::isValidOperands(Elts[0], Elts[1], Elts[2]))
2662 return Error(ID.Loc, "invalid insertelement operands");
Owen Andersonfba933c2009-07-01 23:57:11 +00002663 ID.ConstantVal =
Owen Andersonbaf3c402009-07-29 18:55:55 +00002664 ConstantExpr::getInsertElement(Elts[0], Elts[1],Elts[2]);
Chris Lattnerdf986172009-01-02 07:01:27 +00002665 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002666
Chris Lattnerdf986172009-01-02 07:01:27 +00002667 ID.Kind = ValID::t_Constant;
2668 return false;
2669 }
2670 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002671
Chris Lattnerdf986172009-01-02 07:01:27 +00002672 Lex.Lex();
2673 return false;
2674}
2675
2676/// ParseGlobalValue - Parse a global value with the specified type.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002677bool LLParser::ParseGlobalValue(Type *Ty, Constant *&C) {
Victor Hernandez92f238d2010-01-11 22:31:58 +00002678 C = 0;
Chris Lattnerdf986172009-01-02 07:01:27 +00002679 ValID ID;
Victor Hernandez92f238d2010-01-11 22:31:58 +00002680 Value *V = NULL;
2681 bool Parsed = ParseValID(ID) ||
2682 ConvertValIDToValue(Ty, ID, V, NULL);
2683 if (V && !(C = dyn_cast<Constant>(V)))
2684 return Error(ID.Loc, "global values must be constants");
2685 return Parsed;
Chris Lattnerdf986172009-01-02 07:01:27 +00002686}
2687
Victor Hernandez92f238d2010-01-11 22:31:58 +00002688bool LLParser::ParseGlobalTypeAndValue(Constant *&V) {
Chris Lattner1afcace2011-07-09 17:41:24 +00002689 Type *Ty = 0;
2690 return ParseType(Ty) ||
2691 ParseGlobalValue(Ty, V);
Victor Hernandez92f238d2010-01-11 22:31:58 +00002692}
2693
2694/// ParseGlobalValueVector
2695/// ::= /*empty*/
2696/// ::= TypeAndValue (',' TypeAndValue)*
2697bool LLParser::ParseGlobalValueVector(SmallVectorImpl<Constant*> &Elts) {
2698 // Empty list.
2699 if (Lex.getKind() == lltok::rbrace ||
2700 Lex.getKind() == lltok::rsquare ||
2701 Lex.getKind() == lltok::greater ||
2702 Lex.getKind() == lltok::rparen)
2703 return false;
2704
2705 Constant *C;
2706 if (ParseGlobalTypeAndValue(C)) return true;
2707 Elts.push_back(C);
2708
2709 while (EatIfPresent(lltok::comma)) {
2710 if (ParseGlobalTypeAndValue(C)) return true;
2711 Elts.push_back(C);
2712 }
2713
2714 return false;
2715}
2716
Dan Gohman309b3af2010-08-24 02:24:03 +00002717bool LLParser::ParseMetadataListValue(ValID &ID, PerFunctionState *PFS) {
2718 assert(Lex.getKind() == lltok::lbrace);
2719 Lex.Lex();
2720
2721 SmallVector<Value*, 16> Elts;
2722 if (ParseMDNodeVector(Elts, PFS) ||
2723 ParseToken(lltok::rbrace, "expected end of metadata node"))
2724 return true;
2725
Jay Foadec9186b2011-04-21 19:59:31 +00002726 ID.MDNodeVal = MDNode::get(Context, Elts);
Dan Gohman309b3af2010-08-24 02:24:03 +00002727 ID.Kind = ValID::t_MDNode;
2728 return false;
2729}
2730
Dan Gohman83448032010-07-14 18:26:50 +00002731/// ParseMetadataValue
2732/// ::= !42
2733/// ::= !{...}
2734/// ::= !"string"
2735bool LLParser::ParseMetadataValue(ValID &ID, PerFunctionState *PFS) {
2736 assert(Lex.getKind() == lltok::exclaim);
2737 Lex.Lex();
2738
2739 // MDNode:
2740 // !{ ... }
Dan Gohman309b3af2010-08-24 02:24:03 +00002741 if (Lex.getKind() == lltok::lbrace)
2742 return ParseMetadataListValue(ID, PFS);
Dan Gohman83448032010-07-14 18:26:50 +00002743
2744 // Standalone metadata reference
2745 // !42
2746 if (Lex.getKind() == lltok::APSInt) {
2747 if (ParseMDNodeID(ID.MDNodeVal)) return true;
2748 ID.Kind = ValID::t_MDNode;
2749 return false;
2750 }
2751
2752 // MDString:
2753 // ::= '!' STRINGCONSTANT
2754 if (ParseMDString(ID.MDStringVal)) return true;
2755 ID.Kind = ValID::t_MDString;
2756 return false;
2757}
2758
Victor Hernandez92f238d2010-01-11 22:31:58 +00002759
2760//===----------------------------------------------------------------------===//
2761// Function Parsing.
2762//===----------------------------------------------------------------------===//
2763
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002764bool LLParser::ConvertValIDToValue(Type *Ty, ValID &ID, Value *&V,
Victor Hernandez92f238d2010-01-11 22:31:58 +00002765 PerFunctionState *PFS) {
Duncan Sands1df98592010-02-16 11:11:14 +00002766 if (Ty->isFunctionTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002767 return Error(ID.Loc, "functions are not values, refer to them as pointers");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002768
Chris Lattnerdf986172009-01-02 07:01:27 +00002769 switch (ID.Kind) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002770 case ValID::t_LocalID:
Victor Hernandez92f238d2010-01-11 22:31:58 +00002771 if (!PFS) return Error(ID.Loc, "invalid use of function-local name");
2772 V = PFS->GetVal(ID.UIntVal, Ty, ID.Loc);
2773 return (V == 0);
Chris Lattnerdf986172009-01-02 07:01:27 +00002774 case ValID::t_LocalName:
Victor Hernandez92f238d2010-01-11 22:31:58 +00002775 if (!PFS) return Error(ID.Loc, "invalid use of function-local name");
2776 V = PFS->GetVal(ID.StrVal, Ty, ID.Loc);
2777 return (V == 0);
2778 case ValID::t_InlineAsm: {
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002779 PointerType *PTy = dyn_cast<PointerType>(Ty);
Michael Ilseman407a6162012-11-15 22:34:00 +00002780 FunctionType *FTy =
Victor Hernandez92f238d2010-01-11 22:31:58 +00002781 PTy ? dyn_cast<FunctionType>(PTy->getElementType()) : 0;
2782 if (!FTy || !InlineAsm::Verify(FTy, ID.StrVal2))
2783 return Error(ID.Loc, "invalid type for inline asm constraint string");
Chad Rosier36547342012-09-05 00:08:17 +00002784 V = InlineAsm::get(FTy, ID.StrVal, ID.StrVal2, ID.UIntVal&1,
Chad Rosier581600b2012-09-05 19:00:49 +00002785 (ID.UIntVal>>1)&1, (InlineAsm::AsmDialect(ID.UIntVal>>2)));
Victor Hernandez92f238d2010-01-11 22:31:58 +00002786 return false;
2787 }
2788 case ValID::t_MDNode:
2789 if (!Ty->isMetadataTy())
2790 return Error(ID.Loc, "metadata value must have metadata type");
2791 V = ID.MDNodeVal;
2792 return false;
2793 case ValID::t_MDString:
2794 if (!Ty->isMetadataTy())
2795 return Error(ID.Loc, "metadata value must have metadata type");
2796 V = ID.MDStringVal;
2797 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00002798 case ValID::t_GlobalName:
2799 V = GetGlobalVal(ID.StrVal, Ty, ID.Loc);
2800 return V == 0;
2801 case ValID::t_GlobalID:
2802 V = GetGlobalVal(ID.UIntVal, Ty, ID.Loc);
2803 return V == 0;
2804 case ValID::t_APSInt:
Duncan Sands1df98592010-02-16 11:11:14 +00002805 if (!Ty->isIntegerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002806 return Error(ID.Loc, "integer constant must have integer type");
Jay Foad40f8f622010-12-07 08:25:19 +00002807 ID.APSIntVal = ID.APSIntVal.extOrTrunc(Ty->getPrimitiveSizeInBits());
Owen Andersoneed707b2009-07-24 23:12:02 +00002808 V = ConstantInt::get(Context, ID.APSIntVal);
Chris Lattnerdf986172009-01-02 07:01:27 +00002809 return false;
2810 case ValID::t_APFloat:
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00002811 if (!Ty->isFloatingPointTy() ||
Chris Lattnerdf986172009-01-02 07:01:27 +00002812 !ConstantFP::isValueValidForType(Ty, ID.APFloatVal))
2813 return Error(ID.Loc, "floating point constant invalid for type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002814
Dan Gohmance163392011-12-17 00:04:22 +00002815 // The lexer has no type info, so builds all half, float, and double FP
2816 // constants as double. Fix this here. Long double does not need this.
2817 if (&ID.APFloatVal.getSemantics() == &APFloat::IEEEdouble) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002818 bool Ignored;
Dan Gohmance163392011-12-17 00:04:22 +00002819 if (Ty->isHalfTy())
2820 ID.APFloatVal.convert(APFloat::IEEEhalf, APFloat::rmNearestTiesToEven,
2821 &Ignored);
2822 else if (Ty->isFloatTy())
2823 ID.APFloatVal.convert(APFloat::IEEEsingle, APFloat::rmNearestTiesToEven,
2824 &Ignored);
Chris Lattnerdf986172009-01-02 07:01:27 +00002825 }
Owen Anderson6f83c9c2009-07-27 20:59:43 +00002826 V = ConstantFP::get(Context, ID.APFloatVal);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002827
Chris Lattner959873d2009-01-05 18:24:23 +00002828 if (V->getType() != Ty)
2829 return Error(ID.Loc, "floating point constant does not have type '" +
Chris Lattner0cd0d882011-06-18 21:18:23 +00002830 getTypeString(Ty) + "'");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002831
Chris Lattnerdf986172009-01-02 07:01:27 +00002832 return false;
2833 case ValID::t_Null:
Duncan Sands1df98592010-02-16 11:11:14 +00002834 if (!Ty->isPointerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002835 return Error(ID.Loc, "null must be a pointer type");
Owen Anderson9e9a0d52009-07-30 23:03:37 +00002836 V = ConstantPointerNull::get(cast<PointerType>(Ty));
Chris Lattnerdf986172009-01-02 07:01:27 +00002837 return false;
2838 case ValID::t_Undef:
Chris Lattnere67c1aa2009-01-05 08:13:38 +00002839 // FIXME: LabelTy should not be a first-class type.
Chris Lattner1afcace2011-07-09 17:41:24 +00002840 if (!Ty->isFirstClassType() || Ty->isLabelTy())
Chris Lattnere67c1aa2009-01-05 08:13:38 +00002841 return Error(ID.Loc, "invalid type for undef constant");
Owen Anderson9e9a0d52009-07-30 23:03:37 +00002842 V = UndefValue::get(Ty);
Chris Lattnerdf986172009-01-02 07:01:27 +00002843 return false;
Chris Lattner081b5052009-01-05 07:52:51 +00002844 case ValID::t_EmptyArray:
Duncan Sands1df98592010-02-16 11:11:14 +00002845 if (!Ty->isArrayTy() || cast<ArrayType>(Ty)->getNumElements() != 0)
Chris Lattner081b5052009-01-05 07:52:51 +00002846 return Error(ID.Loc, "invalid empty array initializer");
Owen Anderson9e9a0d52009-07-30 23:03:37 +00002847 V = UndefValue::get(Ty);
Chris Lattner081b5052009-01-05 07:52:51 +00002848 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00002849 case ValID::t_Zero:
Chris Lattnere67c1aa2009-01-05 08:13:38 +00002850 // FIXME: LabelTy should not be a first-class type.
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00002851 if (!Ty->isFirstClassType() || Ty->isLabelTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002852 return Error(ID.Loc, "invalid type for null constant");
Owen Andersona7235ea2009-07-31 20:28:14 +00002853 V = Constant::getNullValue(Ty);
Chris Lattnerdf986172009-01-02 07:01:27 +00002854 return false;
2855 case ValID::t_Constant:
Chris Lattner61c70e92010-08-28 04:09:24 +00002856 if (ID.ConstantVal->getType() != Ty)
Chris Lattnerdf986172009-01-02 07:01:27 +00002857 return Error(ID.Loc, "constant expression type mismatch");
Chris Lattnerfdfeb692010-02-12 20:49:41 +00002858
Chris Lattnerdf986172009-01-02 07:01:27 +00002859 V = ID.ConstantVal;
2860 return false;
Chris Lattner1afcace2011-07-09 17:41:24 +00002861 case ValID::t_ConstantStruct:
2862 case ValID::t_PackedConstantStruct:
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002863 if (StructType *ST = dyn_cast<StructType>(Ty)) {
Chris Lattner1afcace2011-07-09 17:41:24 +00002864 if (ST->getNumElements() != ID.UIntVal)
2865 return Error(ID.Loc,
2866 "initializer with struct type has wrong # elements");
2867 if (ST->isPacked() != (ID.Kind == ValID::t_PackedConstantStruct))
2868 return Error(ID.Loc, "packed'ness of initializer and type don't match");
Michael Ilseman407a6162012-11-15 22:34:00 +00002869
Chris Lattner1afcace2011-07-09 17:41:24 +00002870 // Verify that the elements are compatible with the structtype.
2871 for (unsigned i = 0, e = ID.UIntVal; i != e; ++i)
2872 if (ID.ConstantStructElts[i]->getType() != ST->getElementType(i))
2873 return Error(ID.Loc, "element " + Twine(i) +
2874 " of struct initializer doesn't match struct element type");
Michael Ilseman407a6162012-11-15 22:34:00 +00002875
Frits van Bommel39b5abf2011-07-18 12:00:32 +00002876 V = ConstantStruct::get(ST, makeArrayRef(ID.ConstantStructElts,
2877 ID.UIntVal));
Chris Lattner1afcace2011-07-09 17:41:24 +00002878 } else
2879 return Error(ID.Loc, "constant expression type mismatch");
2880 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00002881 }
Chandler Carruth732f05c2012-01-10 18:08:01 +00002882 llvm_unreachable("Invalid ValID");
Chris Lattnerdf986172009-01-02 07:01:27 +00002883}
Daniel Dunbara279bc32009-09-20 02:20:51 +00002884
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002885bool LLParser::ParseValue(Type *Ty, Value *&V, PerFunctionState *PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002886 V = 0;
2887 ValID ID;
Chris Lattner1afcace2011-07-09 17:41:24 +00002888 return ParseValID(ID, PFS) ||
2889 ConvertValIDToValue(Ty, ID, V, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00002890}
2891
Chris Lattner1afcace2011-07-09 17:41:24 +00002892bool LLParser::ParseTypeAndValue(Value *&V, PerFunctionState *PFS) {
2893 Type *Ty = 0;
2894 return ParseType(Ty) ||
2895 ParseValue(Ty, V, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00002896}
2897
Chris Lattnerf9be95f2009-10-27 19:13:16 +00002898bool LLParser::ParseTypeAndBasicBlock(BasicBlock *&BB, LocTy &Loc,
2899 PerFunctionState &PFS) {
2900 Value *V;
2901 Loc = Lex.getLoc();
2902 if (ParseTypeAndValue(V, PFS)) return true;
2903 if (!isa<BasicBlock>(V))
2904 return Error(Loc, "expected a basic block");
2905 BB = cast<BasicBlock>(V);
2906 return false;
2907}
2908
2909
Chris Lattnerdf986172009-01-02 07:01:27 +00002910/// FunctionHeader
2911/// ::= OptionalLinkage OptionalVisibility OptionalCallingConv OptRetAttrs
Rafael Espindolabea46262011-01-08 16:42:36 +00002912/// OptUnnamedAddr Type GlobalName '(' ArgList ')' OptFuncAttrs OptSection
Chris Lattnerdf986172009-01-02 07:01:27 +00002913/// OptionalAlign OptGC
2914bool LLParser::ParseFunctionHeader(Function *&Fn, bool isDefine) {
2915 // Parse the linkage.
2916 LocTy LinkageLoc = Lex.getLoc();
2917 unsigned Linkage;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002918
Kostya Serebryany164b86b2012-01-20 17:56:17 +00002919 unsigned Visibility;
Bill Wendling702cc912012-10-15 20:35:56 +00002920 AttrBuilder RetAttrs;
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00002921 CallingConv::ID CC;
Chris Lattner1afcace2011-07-09 17:41:24 +00002922 Type *RetType = 0;
Chris Lattnerdf986172009-01-02 07:01:27 +00002923 LocTy RetTypeLoc = Lex.getLoc();
2924 if (ParseOptionalLinkage(Linkage) ||
2925 ParseOptionalVisibility(Visibility) ||
2926 ParseOptionalCallingConv(CC) ||
Bill Wendlinge01b81b2012-12-04 23:40:58 +00002927 ParseOptionalReturnAttrs(RetAttrs) ||
Chris Lattnera9a9e072009-03-09 04:49:14 +00002928 ParseType(RetType, RetTypeLoc, true /*void allowed*/))
Chris Lattnerdf986172009-01-02 07:01:27 +00002929 return true;
2930
2931 // Verify that the linkage is ok.
2932 switch ((GlobalValue::LinkageTypes)Linkage) {
2933 case GlobalValue::ExternalLinkage:
2934 break; // always ok.
2935 case GlobalValue::DLLImportLinkage:
Duncan Sands5f4ee1f2009-03-11 08:08:06 +00002936 case GlobalValue::ExternalWeakLinkage:
Chris Lattnerdf986172009-01-02 07:01:27 +00002937 if (isDefine)
2938 return Error(LinkageLoc, "invalid linkage for function definition");
2939 break;
Rafael Espindolabb46f522009-01-15 20:18:42 +00002940 case GlobalValue::PrivateLinkage:
Bill Wendling3d10a5a2009-07-20 01:03:30 +00002941 case GlobalValue::LinkerPrivateLinkage:
Bill Wendling5e721d72010-07-01 21:55:59 +00002942 case GlobalValue::LinkerPrivateWeakLinkage:
Chris Lattnerdf986172009-01-02 07:01:27 +00002943 case GlobalValue::InternalLinkage:
Nick Lewycky55f64db2009-04-13 07:02:02 +00002944 case GlobalValue::AvailableExternallyLinkage:
Duncan Sands667d4b82009-03-07 15:45:40 +00002945 case GlobalValue::LinkOnceAnyLinkage:
2946 case GlobalValue::LinkOnceODRLinkage:
Bill Wendling32811be2012-08-17 18:33:14 +00002947 case GlobalValue::LinkOnceODRAutoHideLinkage:
Duncan Sands667d4b82009-03-07 15:45:40 +00002948 case GlobalValue::WeakAnyLinkage:
2949 case GlobalValue::WeakODRLinkage:
Chris Lattnerdf986172009-01-02 07:01:27 +00002950 case GlobalValue::DLLExportLinkage:
2951 if (!isDefine)
2952 return Error(LinkageLoc, "invalid linkage for function declaration");
2953 break;
2954 case GlobalValue::AppendingLinkage:
Duncan Sands4dc2b392009-03-11 20:14:15 +00002955 case GlobalValue::CommonLinkage:
Chris Lattnerdf986172009-01-02 07:01:27 +00002956 return Error(LinkageLoc, "invalid function linkage type");
2957 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002958
Chris Lattner1afcace2011-07-09 17:41:24 +00002959 if (!FunctionType::isValidReturnType(RetType))
Chris Lattnerdf986172009-01-02 07:01:27 +00002960 return Error(RetTypeLoc, "invalid function return type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002961
Chris Lattnerdf986172009-01-02 07:01:27 +00002962 LocTy NameLoc = Lex.getLoc();
Chris Lattnerf570e622009-02-18 21:48:13 +00002963
2964 std::string FunctionName;
2965 if (Lex.getKind() == lltok::GlobalVar) {
2966 FunctionName = Lex.getStrVal();
2967 } else if (Lex.getKind() == lltok::GlobalID) { // @42 is ok.
2968 unsigned NameID = Lex.getUIntVal();
2969
2970 if (NameID != NumberedVals.size())
2971 return TokError("function expected to be numbered '%" +
Benjamin Kramerd1e17032010-09-27 17:42:11 +00002972 Twine(NumberedVals.size()) + "'");
Chris Lattnerf570e622009-02-18 21:48:13 +00002973 } else {
2974 return TokError("expected function name");
2975 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002976
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002977 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +00002978
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002979 if (Lex.getKind() != lltok::lparen)
Chris Lattnerdf986172009-01-02 07:01:27 +00002980 return TokError("expected '(' in function argument list");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002981
Chris Lattner1afcace2011-07-09 17:41:24 +00002982 SmallVector<ArgInfo, 8> ArgList;
Chris Lattnerdf986172009-01-02 07:01:27 +00002983 bool isVarArg;
Bill Wendling702cc912012-10-15 20:35:56 +00002984 AttrBuilder FuncAttrs;
Bill Wendlingbaad55c2013-02-08 06:32:06 +00002985 std::vector<unsigned> FwdRefAttrGrps;
Bill Wendling143d4642013-02-22 00:12:35 +00002986 LocTy NoBuiltinLoc;
Chris Lattnerdf986172009-01-02 07:01:27 +00002987 std::string Section;
Chris Lattnerdf986172009-01-02 07:01:27 +00002988 unsigned Alignment;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002989 std::string GC;
Rafael Espindola3971df52011-01-25 19:09:56 +00002990 bool UnnamedAddr;
2991 LocTy UnnamedAddrLoc;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002992
Chris Lattner1afcace2011-07-09 17:41:24 +00002993 if (ParseArgumentList(ArgList, isVarArg) ||
Rafael Espindola3971df52011-01-25 19:09:56 +00002994 ParseOptionalToken(lltok::kw_unnamed_addr, UnnamedAddr,
2995 &UnnamedAddrLoc) ||
Bill Wendling143d4642013-02-22 00:12:35 +00002996 ParseFnAttributeValuePairs(FuncAttrs, FwdRefAttrGrps, false,
2997 NoBuiltinLoc) ||
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002998 (EatIfPresent(lltok::kw_section) &&
2999 ParseStringConstant(Section)) ||
3000 ParseOptionalAlignment(Alignment) ||
3001 (EatIfPresent(lltok::kw_gc) &&
3002 ParseStringConstant(GC)))
3003 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00003004
Bill Wendling143d4642013-02-22 00:12:35 +00003005 if (FuncAttrs.contains(Attribute::NoBuiltin))
3006 return Error(NoBuiltinLoc, "'nobuiltin' attribute not valid on function");
3007
Chris Lattnerdf986172009-01-02 07:01:27 +00003008 // If the alignment was parsed as an attribute, move to the alignment field.
Bill Wendlingf385f4c2012-10-08 23:27:46 +00003009 if (FuncAttrs.hasAlignmentAttr()) {
Bill Wendlingef99fe82012-09-21 15:26:31 +00003010 Alignment = FuncAttrs.getAlignment();
Bill Wendling034b94b2012-12-19 07:18:57 +00003011 FuncAttrs.removeAttribute(Attribute::Alignment);
Chris Lattnerdf986172009-01-02 07:01:27 +00003012 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003013
Chris Lattnerdf986172009-01-02 07:01:27 +00003014 // Okay, if we got here, the function is syntactically valid. Convert types
3015 // and do semantic checks.
Jay Foad5fdd6c82011-07-12 14:06:48 +00003016 std::vector<Type*> ParamTypeList;
Bill Wendlinga1683d62013-01-27 02:24:02 +00003017 SmallVector<AttributeSet, 8> Attrs;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003018
Bill Wendlinge603fe42012-09-19 23:54:18 +00003019 if (RetAttrs.hasAttributes())
Bill Wendlinga1683d62013-01-27 02:24:02 +00003020 Attrs.push_back(AttributeSet::get(RetType->getContext(),
3021 AttributeSet::ReturnIndex,
3022 RetAttrs));
Daniel Dunbara279bc32009-09-20 02:20:51 +00003023
Chris Lattnerdf986172009-01-02 07:01:27 +00003024 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
Chris Lattner1afcace2011-07-09 17:41:24 +00003025 ParamTypeList.push_back(ArgList[i].Ty);
Bill Wendling73dee182013-01-31 00:29:54 +00003026 if (ArgList[i].Attrs.hasAttributes(i + 1)) {
3027 AttrBuilder B(ArgList[i].Attrs, i + 1);
Bill Wendlinga1683d62013-01-27 02:24:02 +00003028 Attrs.push_back(AttributeSet::get(RetType->getContext(), i + 1, B));
3029 }
Chris Lattnerdf986172009-01-02 07:01:27 +00003030 }
3031
Bill Wendlinge603fe42012-09-19 23:54:18 +00003032 if (FuncAttrs.hasAttributes())
Bill Wendlinga1683d62013-01-27 02:24:02 +00003033 Attrs.push_back(AttributeSet::get(RetType->getContext(),
3034 AttributeSet::FunctionIndex,
3035 FuncAttrs));
Chris Lattnerdf986172009-01-02 07:01:27 +00003036
Bill Wendling99faa3b2012-12-07 23:16:57 +00003037 AttributeSet PAL = AttributeSet::get(Context, Attrs);
Daniel Dunbara279bc32009-09-20 02:20:51 +00003038
Bill Wendling94e94b32012-12-30 13:50:49 +00003039 if (PAL.hasAttribute(1, Attribute::StructRet) && !RetType->isVoidTy())
Daniel Dunbara279bc32009-09-20 02:20:51 +00003040 return Error(RetTypeLoc, "functions with 'sret' argument must return void");
3041
Chris Lattnerdb125cf2011-07-18 04:54:35 +00003042 FunctionType *FT =
Owen Andersondebcb012009-07-29 22:17:13 +00003043 FunctionType::get(RetType, ParamTypeList, isVarArg);
Chris Lattnerdb125cf2011-07-18 04:54:35 +00003044 PointerType *PFT = PointerType::getUnqual(FT);
Chris Lattnerdf986172009-01-02 07:01:27 +00003045
3046 Fn = 0;
3047 if (!FunctionName.empty()) {
3048 // If this was a definition of a forward reference, remove the definition
3049 // from the forward reference table and fill in the forward ref.
3050 std::map<std::string, std::pair<GlobalValue*, LocTy> >::iterator FRVI =
3051 ForwardRefVals.find(FunctionName);
3052 if (FRVI != ForwardRefVals.end()) {
3053 Fn = M->getFunction(FunctionName);
Nick Lewycky64ea2752012-10-11 00:38:25 +00003054 if (!Fn)
3055 return Error(FRVI->second.second, "invalid forward reference to "
3056 "function as global value!");
Chris Lattnerf1cfb952010-04-20 04:49:11 +00003057 if (Fn->getType() != PFT)
3058 return Error(FRVI->second.second, "invalid forward reference to "
3059 "function '" + FunctionName + "' with wrong type!");
Michael Ilseman407a6162012-11-15 22:34:00 +00003060
Chris Lattnerdf986172009-01-02 07:01:27 +00003061 ForwardRefVals.erase(FRVI);
3062 } else if ((Fn = M->getFunction(FunctionName))) {
Chris Lattnerd5890992011-06-17 07:06:44 +00003063 // Reject redefinitions.
3064 return Error(NameLoc, "invalid redefinition of function '" +
3065 FunctionName + "'");
Chris Lattner1d871c52009-10-25 23:22:50 +00003066 } else if (M->getNamedValue(FunctionName)) {
3067 return Error(NameLoc, "redefinition of function '@" + FunctionName + "'");
Chris Lattnerdf986172009-01-02 07:01:27 +00003068 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003069
Dan Gohman41905542009-08-29 23:37:49 +00003070 } else {
Chris Lattnerdf986172009-01-02 07:01:27 +00003071 // If this is a definition of a forward referenced function, make sure the
3072 // types agree.
3073 std::map<unsigned, std::pair<GlobalValue*, LocTy> >::iterator I
3074 = ForwardRefValIDs.find(NumberedVals.size());
3075 if (I != ForwardRefValIDs.end()) {
3076 Fn = cast<Function>(I->second.first);
3077 if (Fn->getType() != PFT)
3078 return Error(NameLoc, "type of definition and forward reference of '@" +
Benjamin Kramerd1e17032010-09-27 17:42:11 +00003079 Twine(NumberedVals.size()) + "' disagree");
Chris Lattnerdf986172009-01-02 07:01:27 +00003080 ForwardRefValIDs.erase(I);
3081 }
3082 }
3083
3084 if (Fn == 0)
3085 Fn = Function::Create(FT, GlobalValue::ExternalLinkage, FunctionName, M);
3086 else // Move the forward-reference to the correct spot in the module.
3087 M->getFunctionList().splice(M->end(), M->getFunctionList(), Fn);
3088
3089 if (FunctionName.empty())
3090 NumberedVals.push_back(Fn);
Daniel Dunbara279bc32009-09-20 02:20:51 +00003091
Chris Lattnerdf986172009-01-02 07:01:27 +00003092 Fn->setLinkage((GlobalValue::LinkageTypes)Linkage);
3093 Fn->setVisibility((GlobalValue::VisibilityTypes)Visibility);
3094 Fn->setCallingConv(CC);
3095 Fn->setAttributes(PAL);
Rafael Espindolabea46262011-01-08 16:42:36 +00003096 Fn->setUnnamedAddr(UnnamedAddr);
Chris Lattnerdf986172009-01-02 07:01:27 +00003097 Fn->setAlignment(Alignment);
3098 Fn->setSection(Section);
3099 if (!GC.empty()) Fn->setGC(GC.c_str());
Bill Wendlingbaad55c2013-02-08 06:32:06 +00003100 ForwardRefAttrGroups[Fn] = FwdRefAttrGrps;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003101
Chris Lattnerdf986172009-01-02 07:01:27 +00003102 // Add all of the arguments we parsed to the function.
3103 Function::arg_iterator ArgIt = Fn->arg_begin();
3104 for (unsigned i = 0, e = ArgList.size(); i != e; ++i, ++ArgIt) {
3105 // If the argument has a name, insert it into the argument symbol table.
3106 if (ArgList[i].Name.empty()) continue;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003107
Chris Lattnerdf986172009-01-02 07:01:27 +00003108 // Set the name, if it conflicted, it will be auto-renamed.
3109 ArgIt->setName(ArgList[i].Name);
Daniel Dunbara279bc32009-09-20 02:20:51 +00003110
Benjamin Krameraf812352010-10-16 11:28:23 +00003111 if (ArgIt->getName() != ArgList[i].Name)
Chris Lattnerdf986172009-01-02 07:01:27 +00003112 return Error(ArgList[i].Loc, "redefinition of argument '%" +
3113 ArgList[i].Name + "'");
3114 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003115
Chris Lattnerdf986172009-01-02 07:01:27 +00003116 return false;
3117}
3118
3119
3120/// ParseFunctionBody
3121/// ::= '{' BasicBlock+ '}'
Chris Lattnerdf986172009-01-02 07:01:27 +00003122///
3123bool LLParser::ParseFunctionBody(Function &Fn) {
Chris Lattner6b7c89e2011-06-17 06:42:57 +00003124 if (Lex.getKind() != lltok::lbrace)
Chris Lattnerdf986172009-01-02 07:01:27 +00003125 return TokError("expected '{' in function body");
3126 Lex.Lex(); // eat the {.
Daniel Dunbara279bc32009-09-20 02:20:51 +00003127
Chris Lattner09d9ef42009-10-28 03:39:23 +00003128 int FunctionNumber = -1;
3129 if (!Fn.hasName()) FunctionNumber = NumberedVals.size()-1;
Michael Ilseman407a6162012-11-15 22:34:00 +00003130
Chris Lattner09d9ef42009-10-28 03:39:23 +00003131 PerFunctionState PFS(*this, Fn, FunctionNumber);
Daniel Dunbara279bc32009-09-20 02:20:51 +00003132
Chris Lattner2fdf8db2010-01-09 19:20:07 +00003133 // We need at least one basic block.
Chris Lattner6b7c89e2011-06-17 06:42:57 +00003134 if (Lex.getKind() == lltok::rbrace)
Chris Lattner2fdf8db2010-01-09 19:20:07 +00003135 return TokError("function body requires at least one basic block");
Michael Ilseman407a6162012-11-15 22:34:00 +00003136
Chris Lattner6b7c89e2011-06-17 06:42:57 +00003137 while (Lex.getKind() != lltok::rbrace)
Chris Lattnerdf986172009-01-02 07:01:27 +00003138 if (ParseBasicBlock(PFS)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003139
Chris Lattnerdf986172009-01-02 07:01:27 +00003140 // Eat the }.
3141 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +00003142
Chris Lattnerdf986172009-01-02 07:01:27 +00003143 // Verify function is ok.
Chris Lattner09d9ef42009-10-28 03:39:23 +00003144 return PFS.FinishFunction();
Chris Lattnerdf986172009-01-02 07:01:27 +00003145}
3146
3147/// ParseBasicBlock
3148/// ::= LabelStr? Instruction*
3149bool LLParser::ParseBasicBlock(PerFunctionState &PFS) {
3150 // If this basic block starts out with a name, remember it.
3151 std::string Name;
3152 LocTy NameLoc = Lex.getLoc();
3153 if (Lex.getKind() == lltok::LabelStr) {
3154 Name = Lex.getStrVal();
3155 Lex.Lex();
3156 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003157
Chris Lattnerdf986172009-01-02 07:01:27 +00003158 BasicBlock *BB = PFS.DefineBB(Name, NameLoc);
3159 if (BB == 0) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003160
Chris Lattnerdf986172009-01-02 07:01:27 +00003161 std::string NameStr;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003162
Chris Lattnerdf986172009-01-02 07:01:27 +00003163 // Parse the instructions in this block until we get a terminator.
3164 Instruction *Inst;
Chris Lattner1340dd32009-12-30 05:48:36 +00003165 SmallVector<std::pair<unsigned, MDNode *>, 4> MetadataOnInst;
Chris Lattnerdf986172009-01-02 07:01:27 +00003166 do {
3167 // This instruction may have three possibilities for a name: a) none
3168 // specified, b) name specified "%foo =", c) number specified: "%4 =".
3169 LocTy NameLoc = Lex.getLoc();
3170 int NameID = -1;
3171 NameStr = "";
Daniel Dunbara279bc32009-09-20 02:20:51 +00003172
Chris Lattnerdf986172009-01-02 07:01:27 +00003173 if (Lex.getKind() == lltok::LocalVarID) {
3174 NameID = Lex.getUIntVal();
3175 Lex.Lex();
3176 if (ParseToken(lltok::equal, "expected '=' after instruction id"))
3177 return true;
Chris Lattner7a1b9bd2011-06-17 06:36:20 +00003178 } else if (Lex.getKind() == lltok::LocalVar) {
Chris Lattnerdf986172009-01-02 07:01:27 +00003179 NameStr = Lex.getStrVal();
3180 Lex.Lex();
3181 if (ParseToken(lltok::equal, "expected '=' after instruction name"))
3182 return true;
3183 }
Devang Patelf633a062009-09-17 23:04:48 +00003184
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00003185 switch (ParseInstruction(Inst, BB, PFS)) {
Craig Topper85814382012-02-07 05:05:23 +00003186 default: llvm_unreachable("Unknown ParseInstruction result!");
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00003187 case InstError: return true;
3188 case InstNormal:
Chris Lattner4ba9d9b2010-04-07 04:08:57 +00003189 BB->getInstList().push_back(Inst);
3190
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00003191 // With a normal result, we check to see if the instruction is followed by
3192 // a comma and metadata.
3193 if (EatIfPresent(lltok::comma))
Dan Gohman9d072f52010-08-24 02:05:17 +00003194 if (ParseInstructionMetadata(Inst, &PFS))
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00003195 return true;
3196 break;
3197 case InstExtraComma:
Chris Lattner4ba9d9b2010-04-07 04:08:57 +00003198 BB->getInstList().push_back(Inst);
3199
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00003200 // If the instruction parser ate an extra comma at the end of it, it
3201 // *must* be followed by metadata.
Dan Gohman9d072f52010-08-24 02:05:17 +00003202 if (ParseInstructionMetadata(Inst, &PFS))
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00003203 return true;
Michael Ilseman407a6162012-11-15 22:34:00 +00003204 break;
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00003205 }
Devang Patelf633a062009-09-17 23:04:48 +00003206
Chris Lattnerdf986172009-01-02 07:01:27 +00003207 // Set the name on the instruction.
3208 if (PFS.SetInstName(NameID, NameStr, NameLoc, Inst)) return true;
3209 } while (!isa<TerminatorInst>(Inst));
Daniel Dunbara279bc32009-09-20 02:20:51 +00003210
Chris Lattnerdf986172009-01-02 07:01:27 +00003211 return false;
3212}
3213
3214//===----------------------------------------------------------------------===//
3215// Instruction Parsing.
3216//===----------------------------------------------------------------------===//
3217
3218/// ParseInstruction - Parse one of the many different instructions.
3219///
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00003220int LLParser::ParseInstruction(Instruction *&Inst, BasicBlock *BB,
3221 PerFunctionState &PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00003222 lltok::Kind Token = Lex.getKind();
3223 if (Token == lltok::Eof)
3224 return TokError("found end of file when expecting more instructions");
3225 LocTy Loc = Lex.getLoc();
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00003226 unsigned KeywordVal = Lex.getUIntVal();
Chris Lattnerdf986172009-01-02 07:01:27 +00003227 Lex.Lex(); // Eat the keyword.
Daniel Dunbara279bc32009-09-20 02:20:51 +00003228
Chris Lattnerdf986172009-01-02 07:01:27 +00003229 switch (Token) {
3230 default: return Error(Loc, "expected instruction opcode");
3231 // Terminator Instructions.
Owen Anderson1d0be152009-08-13 21:58:54 +00003232 case lltok::kw_unreachable: Inst = new UnreachableInst(Context); return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00003233 case lltok::kw_ret: return ParseRet(Inst, BB, PFS);
3234 case lltok::kw_br: return ParseBr(Inst, PFS);
3235 case lltok::kw_switch: return ParseSwitch(Inst, PFS);
Chris Lattnerab21db72009-10-28 00:19:10 +00003236 case lltok::kw_indirectbr: return ParseIndirectBr(Inst, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00003237 case lltok::kw_invoke: return ParseInvoke(Inst, PFS);
Bill Wendlingdccc03b2011-07-31 06:30:59 +00003238 case lltok::kw_resume: return ParseResume(Inst, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00003239 // Binary Operators.
3240 case lltok::kw_add:
3241 case lltok::kw_sub:
Chris Lattnerf067d582011-02-07 16:40:21 +00003242 case lltok::kw_mul:
3243 case lltok::kw_shl: {
Chris Lattnerf067d582011-02-07 16:40:21 +00003244 bool NUW = EatIfPresent(lltok::kw_nuw);
3245 bool NSW = EatIfPresent(lltok::kw_nsw);
3246 if (!NUW) NUW = EatIfPresent(lltok::kw_nuw);
Michael Ilseman407a6162012-11-15 22:34:00 +00003247
Chris Lattnerf067d582011-02-07 16:40:21 +00003248 if (ParseArithmetic(Inst, PFS, KeywordVal, 1)) return true;
Michael Ilseman407a6162012-11-15 22:34:00 +00003249
Chris Lattnerf067d582011-02-07 16:40:21 +00003250 if (NUW) cast<BinaryOperator>(Inst)->setHasNoUnsignedWrap(true);
3251 if (NSW) cast<BinaryOperator>(Inst)->setHasNoSignedWrap(true);
3252 return false;
Dan Gohman59858cf2009-07-27 16:11:46 +00003253 }
Dan Gohmanae3a0be2009-06-04 22:49:04 +00003254 case lltok::kw_fadd:
3255 case lltok::kw_fsub:
Michael Ilseman15c13d32012-11-27 00:42:44 +00003256 case lltok::kw_fmul:
3257 case lltok::kw_fdiv:
3258 case lltok::kw_frem: {
3259 FastMathFlags FMF = EatFastMathFlagsIfPresent();
3260 int Res = ParseArithmetic(Inst, PFS, KeywordVal, 2);
3261 if (Res != 0)
3262 return Res;
3263 if (FMF.any())
3264 Inst->setFastMathFlags(FMF);
3265 return 0;
3266 }
Dan Gohmanae3a0be2009-06-04 22:49:04 +00003267
Chris Lattner35bda892011-02-06 21:44:57 +00003268 case lltok::kw_sdiv:
Chris Lattnerf067d582011-02-07 16:40:21 +00003269 case lltok::kw_udiv:
3270 case lltok::kw_lshr:
3271 case lltok::kw_ashr: {
3272 bool Exact = EatIfPresent(lltok::kw_exact);
3273
3274 if (ParseArithmetic(Inst, PFS, KeywordVal, 1)) return true;
3275 if (Exact) cast<BinaryOperator>(Inst)->setIsExact(true);
3276 return false;
Dan Gohman59858cf2009-07-27 16:11:46 +00003277 }
3278
Chris Lattnerdf986172009-01-02 07:01:27 +00003279 case lltok::kw_urem:
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00003280 case lltok::kw_srem: return ParseArithmetic(Inst, PFS, KeywordVal, 1);
Chris Lattnerdf986172009-01-02 07:01:27 +00003281 case lltok::kw_and:
3282 case lltok::kw_or:
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00003283 case lltok::kw_xor: return ParseLogical(Inst, PFS, KeywordVal);
Chris Lattnerdf986172009-01-02 07:01:27 +00003284 case lltok::kw_icmp:
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00003285 case lltok::kw_fcmp: return ParseCompare(Inst, PFS, KeywordVal);
Chris Lattnerdf986172009-01-02 07:01:27 +00003286 // Casts.
3287 case lltok::kw_trunc:
3288 case lltok::kw_zext:
3289 case lltok::kw_sext:
3290 case lltok::kw_fptrunc:
3291 case lltok::kw_fpext:
3292 case lltok::kw_bitcast:
3293 case lltok::kw_uitofp:
3294 case lltok::kw_sitofp:
3295 case lltok::kw_fptoui:
Daniel Dunbara279bc32009-09-20 02:20:51 +00003296 case lltok::kw_fptosi:
Chris Lattnerdf986172009-01-02 07:01:27 +00003297 case lltok::kw_inttoptr:
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00003298 case lltok::kw_ptrtoint: return ParseCast(Inst, PFS, KeywordVal);
Chris Lattnerdf986172009-01-02 07:01:27 +00003299 // Other.
3300 case lltok::kw_select: return ParseSelect(Inst, PFS);
Chris Lattner0088a5c2009-01-05 08:18:44 +00003301 case lltok::kw_va_arg: return ParseVA_Arg(Inst, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00003302 case lltok::kw_extractelement: return ParseExtractElement(Inst, PFS);
3303 case lltok::kw_insertelement: return ParseInsertElement(Inst, PFS);
3304 case lltok::kw_shufflevector: return ParseShuffleVector(Inst, PFS);
3305 case lltok::kw_phi: return ParsePHI(Inst, PFS);
Bill Wendlinge6e88262011-08-12 20:24:12 +00003306 case lltok::kw_landingpad: return ParseLandingPad(Inst, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00003307 case lltok::kw_call: return ParseCall(Inst, PFS, false);
3308 case lltok::kw_tail: return ParseCall(Inst, PFS, true);
3309 // Memory.
Victor Hernandez13ad5aa2009-10-17 00:00:19 +00003310 case lltok::kw_alloca: return ParseAlloc(Inst, PFS);
Chris Lattnerfbe910e2011-11-27 06:56:53 +00003311 case lltok::kw_load: return ParseLoad(Inst, PFS);
3312 case lltok::kw_store: return ParseStore(Inst, PFS);
Eli Friedmanf03bb262011-08-12 22:50:01 +00003313 case lltok::kw_cmpxchg: return ParseCmpXchg(Inst, PFS);
3314 case lltok::kw_atomicrmw: return ParseAtomicRMW(Inst, PFS);
Eli Friedman47f35132011-07-25 23:16:38 +00003315 case lltok::kw_fence: return ParseFence(Inst, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00003316 case lltok::kw_getelementptr: return ParseGetElementPtr(Inst, PFS);
3317 case lltok::kw_extractvalue: return ParseExtractValue(Inst, PFS);
3318 case lltok::kw_insertvalue: return ParseInsertValue(Inst, PFS);
3319 }
3320}
3321
3322/// ParseCmpPredicate - Parse an integer or fp predicate, based on Kind.
3323bool LLParser::ParseCmpPredicate(unsigned &P, unsigned Opc) {
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00003324 if (Opc == Instruction::FCmp) {
Chris Lattnerdf986172009-01-02 07:01:27 +00003325 switch (Lex.getKind()) {
David Tweedd80d6082013-01-07 13:32:38 +00003326 default: return TokError("expected fcmp predicate (e.g. 'oeq')");
Chris Lattnerdf986172009-01-02 07:01:27 +00003327 case lltok::kw_oeq: P = CmpInst::FCMP_OEQ; break;
3328 case lltok::kw_one: P = CmpInst::FCMP_ONE; break;
3329 case lltok::kw_olt: P = CmpInst::FCMP_OLT; break;
3330 case lltok::kw_ogt: P = CmpInst::FCMP_OGT; break;
3331 case lltok::kw_ole: P = CmpInst::FCMP_OLE; break;
3332 case lltok::kw_oge: P = CmpInst::FCMP_OGE; break;
3333 case lltok::kw_ord: P = CmpInst::FCMP_ORD; break;
3334 case lltok::kw_uno: P = CmpInst::FCMP_UNO; break;
3335 case lltok::kw_ueq: P = CmpInst::FCMP_UEQ; break;
3336 case lltok::kw_une: P = CmpInst::FCMP_UNE; break;
3337 case lltok::kw_ult: P = CmpInst::FCMP_ULT; break;
3338 case lltok::kw_ugt: P = CmpInst::FCMP_UGT; break;
3339 case lltok::kw_ule: P = CmpInst::FCMP_ULE; break;
3340 case lltok::kw_uge: P = CmpInst::FCMP_UGE; break;
3341 case lltok::kw_true: P = CmpInst::FCMP_TRUE; break;
3342 case lltok::kw_false: P = CmpInst::FCMP_FALSE; break;
3343 }
3344 } else {
3345 switch (Lex.getKind()) {
David Tweedd80d6082013-01-07 13:32:38 +00003346 default: return TokError("expected icmp predicate (e.g. 'eq')");
Chris Lattnerdf986172009-01-02 07:01:27 +00003347 case lltok::kw_eq: P = CmpInst::ICMP_EQ; break;
3348 case lltok::kw_ne: P = CmpInst::ICMP_NE; break;
3349 case lltok::kw_slt: P = CmpInst::ICMP_SLT; break;
3350 case lltok::kw_sgt: P = CmpInst::ICMP_SGT; break;
3351 case lltok::kw_sle: P = CmpInst::ICMP_SLE; break;
3352 case lltok::kw_sge: P = CmpInst::ICMP_SGE; break;
3353 case lltok::kw_ult: P = CmpInst::ICMP_ULT; break;
3354 case lltok::kw_ugt: P = CmpInst::ICMP_UGT; break;
3355 case lltok::kw_ule: P = CmpInst::ICMP_ULE; break;
3356 case lltok::kw_uge: P = CmpInst::ICMP_UGE; break;
3357 }
3358 }
3359 Lex.Lex();
3360 return false;
3361}
3362
3363//===----------------------------------------------------------------------===//
3364// Terminator Instructions.
3365//===----------------------------------------------------------------------===//
3366
3367/// ParseRet - Parse a return instruction.
Chris Lattner3f3a0f62009-12-29 21:25:40 +00003368/// ::= 'ret' void (',' !dbg, !1)*
3369/// ::= 'ret' TypeAndValue (',' !dbg, !1)*
Chris Lattner437544f2011-06-17 06:49:41 +00003370bool LLParser::ParseRet(Instruction *&Inst, BasicBlock *BB,
Chris Lattner1afcace2011-07-09 17:41:24 +00003371 PerFunctionState &PFS) {
3372 SMLoc TypeLoc = Lex.getLoc();
3373 Type *Ty = 0;
Chris Lattnera9a9e072009-03-09 04:49:14 +00003374 if (ParseType(Ty, true /*void allowed*/)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003375
Chris Lattner1afcace2011-07-09 17:41:24 +00003376 Type *ResType = PFS.getFunction().getReturnType();
Michael Ilseman407a6162012-11-15 22:34:00 +00003377
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00003378 if (Ty->isVoidTy()) {
Chris Lattner1afcace2011-07-09 17:41:24 +00003379 if (!ResType->isVoidTy())
3380 return Error(TypeLoc, "value doesn't match function result type '" +
3381 getTypeString(ResType) + "'");
Michael Ilseman407a6162012-11-15 22:34:00 +00003382
Owen Anderson1d0be152009-08-13 21:58:54 +00003383 Inst = ReturnInst::Create(Context);
Chris Lattnerdf986172009-01-02 07:01:27 +00003384 return false;
3385 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003386
Chris Lattnerdf986172009-01-02 07:01:27 +00003387 Value *RV;
3388 if (ParseValue(Ty, RV, PFS)) return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00003389
Chris Lattner1afcace2011-07-09 17:41:24 +00003390 if (ResType != RV->getType())
3391 return Error(TypeLoc, "value doesn't match function result type '" +
3392 getTypeString(ResType) + "'");
Michael Ilseman407a6162012-11-15 22:34:00 +00003393
Owen Anderson1d0be152009-08-13 21:58:54 +00003394 Inst = ReturnInst::Create(Context, RV);
Chris Lattner437544f2011-06-17 06:49:41 +00003395 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00003396}
3397
3398
3399/// ParseBr
3400/// ::= 'br' TypeAndValue
3401/// ::= 'br' TypeAndValue ',' TypeAndValue ',' TypeAndValue
3402bool LLParser::ParseBr(Instruction *&Inst, PerFunctionState &PFS) {
3403 LocTy Loc, Loc2;
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003404 Value *Op0;
3405 BasicBlock *Op1, *Op2;
Chris Lattnerdf986172009-01-02 07:01:27 +00003406 if (ParseTypeAndValue(Op0, Loc, PFS)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003407
Chris Lattnerdf986172009-01-02 07:01:27 +00003408 if (BasicBlock *BB = dyn_cast<BasicBlock>(Op0)) {
3409 Inst = BranchInst::Create(BB);
3410 return false;
3411 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003412
Owen Anderson1d0be152009-08-13 21:58:54 +00003413 if (Op0->getType() != Type::getInt1Ty(Context))
Chris Lattnerdf986172009-01-02 07:01:27 +00003414 return Error(Loc, "branch condition must have 'i1' type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003415
Chris Lattnerdf986172009-01-02 07:01:27 +00003416 if (ParseToken(lltok::comma, "expected ',' after branch condition") ||
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003417 ParseTypeAndBasicBlock(Op1, Loc, PFS) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003418 ParseToken(lltok::comma, "expected ',' after true destination") ||
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003419 ParseTypeAndBasicBlock(Op2, Loc2, PFS))
Chris Lattnerdf986172009-01-02 07:01:27 +00003420 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003421
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003422 Inst = BranchInst::Create(Op1, Op2, Op0);
Chris Lattnerdf986172009-01-02 07:01:27 +00003423 return false;
3424}
3425
3426/// ParseSwitch
3427/// Instruction
3428/// ::= 'switch' TypeAndValue ',' TypeAndValue '[' JumpTable ']'
3429/// JumpTable
3430/// ::= (TypeAndValue ',' TypeAndValue)*
3431bool LLParser::ParseSwitch(Instruction *&Inst, PerFunctionState &PFS) {
3432 LocTy CondLoc, BBLoc;
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003433 Value *Cond;
3434 BasicBlock *DefaultBB;
Chris Lattnerdf986172009-01-02 07:01:27 +00003435 if (ParseTypeAndValue(Cond, CondLoc, PFS) ||
3436 ParseToken(lltok::comma, "expected ',' after switch condition") ||
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003437 ParseTypeAndBasicBlock(DefaultBB, BBLoc, PFS) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003438 ParseToken(lltok::lsquare, "expected '[' with switch table"))
3439 return true;
3440
Duncan Sands1df98592010-02-16 11:11:14 +00003441 if (!Cond->getType()->isIntegerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00003442 return Error(CondLoc, "switch condition must have integer type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003443
Chris Lattnerdf986172009-01-02 07:01:27 +00003444 // Parse the jump table pairs.
3445 SmallPtrSet<Value*, 32> SeenCases;
3446 SmallVector<std::pair<ConstantInt*, BasicBlock*>, 32> Table;
3447 while (Lex.getKind() != lltok::rsquare) {
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003448 Value *Constant;
3449 BasicBlock *DestBB;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003450
Chris Lattnerdf986172009-01-02 07:01:27 +00003451 if (ParseTypeAndValue(Constant, CondLoc, PFS) ||
3452 ParseToken(lltok::comma, "expected ',' after case value") ||
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003453 ParseTypeAndBasicBlock(DestBB, PFS))
Chris Lattnerdf986172009-01-02 07:01:27 +00003454 return true;
Michael Ilseman407a6162012-11-15 22:34:00 +00003455
Chris Lattnerdf986172009-01-02 07:01:27 +00003456 if (!SeenCases.insert(Constant))
3457 return Error(CondLoc, "duplicate case value in switch");
3458 if (!isa<ConstantInt>(Constant))
3459 return Error(CondLoc, "case value is not a constant integer");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003460
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003461 Table.push_back(std::make_pair(cast<ConstantInt>(Constant), DestBB));
Chris Lattnerdf986172009-01-02 07:01:27 +00003462 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003463
Chris Lattnerdf986172009-01-02 07:01:27 +00003464 Lex.Lex(); // Eat the ']'.
Daniel Dunbara279bc32009-09-20 02:20:51 +00003465
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003466 SwitchInst *SI = SwitchInst::Create(Cond, DefaultBB, Table.size());
Chris Lattnerdf986172009-01-02 07:01:27 +00003467 for (unsigned i = 0, e = Table.size(); i != e; ++i)
3468 SI->addCase(Table[i].first, Table[i].second);
3469 Inst = SI;
3470 return false;
3471}
3472
Chris Lattnerab21db72009-10-28 00:19:10 +00003473/// ParseIndirectBr
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003474/// Instruction
Chris Lattnerab21db72009-10-28 00:19:10 +00003475/// ::= 'indirectbr' TypeAndValue ',' '[' LabelList ']'
3476bool LLParser::ParseIndirectBr(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003477 LocTy AddrLoc;
3478 Value *Address;
3479 if (ParseTypeAndValue(Address, AddrLoc, PFS) ||
Chris Lattnerab21db72009-10-28 00:19:10 +00003480 ParseToken(lltok::comma, "expected ',' after indirectbr address") ||
3481 ParseToken(lltok::lsquare, "expected '[' with indirectbr"))
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003482 return true;
Michael Ilseman407a6162012-11-15 22:34:00 +00003483
Duncan Sands1df98592010-02-16 11:11:14 +00003484 if (!Address->getType()->isPointerTy())
Chris Lattnerab21db72009-10-28 00:19:10 +00003485 return Error(AddrLoc, "indirectbr address must have pointer type");
Michael Ilseman407a6162012-11-15 22:34:00 +00003486
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003487 // Parse the destination list.
3488 SmallVector<BasicBlock*, 16> DestList;
Michael Ilseman407a6162012-11-15 22:34:00 +00003489
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003490 if (Lex.getKind() != lltok::rsquare) {
3491 BasicBlock *DestBB;
3492 if (ParseTypeAndBasicBlock(DestBB, PFS))
3493 return true;
3494 DestList.push_back(DestBB);
Michael Ilseman407a6162012-11-15 22:34:00 +00003495
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003496 while (EatIfPresent(lltok::comma)) {
3497 if (ParseTypeAndBasicBlock(DestBB, PFS))
3498 return true;
3499 DestList.push_back(DestBB);
3500 }
3501 }
Michael Ilseman407a6162012-11-15 22:34:00 +00003502
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003503 if (ParseToken(lltok::rsquare, "expected ']' at end of block list"))
3504 return true;
3505
Chris Lattnerab21db72009-10-28 00:19:10 +00003506 IndirectBrInst *IBI = IndirectBrInst::Create(Address, DestList.size());
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003507 for (unsigned i = 0, e = DestList.size(); i != e; ++i)
3508 IBI->addDestination(DestList[i]);
3509 Inst = IBI;
3510 return false;
3511}
3512
3513
Chris Lattnerdf986172009-01-02 07:01:27 +00003514/// ParseInvoke
3515/// ::= 'invoke' OptionalCallingConv OptionalAttrs Type Value ParamList
3516/// OptionalAttrs 'to' TypeAndValue 'unwind' TypeAndValue
3517bool LLParser::ParseInvoke(Instruction *&Inst, PerFunctionState &PFS) {
3518 LocTy CallLoc = Lex.getLoc();
Bill Wendling702cc912012-10-15 20:35:56 +00003519 AttrBuilder RetAttrs, FnAttrs;
Bill Wendlingbaad55c2013-02-08 06:32:06 +00003520 std::vector<unsigned> FwdRefAttrGrps;
Bill Wendling143d4642013-02-22 00:12:35 +00003521 LocTy NoBuiltinLoc;
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00003522 CallingConv::ID CC;
Chris Lattner1afcace2011-07-09 17:41:24 +00003523 Type *RetType = 0;
Chris Lattnerdf986172009-01-02 07:01:27 +00003524 LocTy RetTypeLoc;
3525 ValID CalleeID;
3526 SmallVector<ParamInfo, 16> ArgList;
3527
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003528 BasicBlock *NormalBB, *UnwindBB;
Chris Lattnerdf986172009-01-02 07:01:27 +00003529 if (ParseOptionalCallingConv(CC) ||
Bill Wendlinge01b81b2012-12-04 23:40:58 +00003530 ParseOptionalReturnAttrs(RetAttrs) ||
Chris Lattnera9a9e072009-03-09 04:49:14 +00003531 ParseType(RetType, RetTypeLoc, true /*void allowed*/) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003532 ParseValID(CalleeID) ||
3533 ParseParameterList(ArgList, PFS) ||
Bill Wendling143d4642013-02-22 00:12:35 +00003534 ParseFnAttributeValuePairs(FnAttrs, FwdRefAttrGrps, false,
3535 NoBuiltinLoc) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003536 ParseToken(lltok::kw_to, "expected 'to' in invoke") ||
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003537 ParseTypeAndBasicBlock(NormalBB, PFS) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003538 ParseToken(lltok::kw_unwind, "expected 'unwind' in invoke") ||
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003539 ParseTypeAndBasicBlock(UnwindBB, PFS))
Chris Lattnerdf986172009-01-02 07:01:27 +00003540 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003541
Chris Lattnerdf986172009-01-02 07:01:27 +00003542 // If RetType is a non-function pointer type, then this is the short syntax
3543 // for the call, which means that RetType is just the return type. Infer the
3544 // rest of the function argument types from the arguments that are present.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00003545 PointerType *PFTy = 0;
3546 FunctionType *Ty = 0;
Chris Lattnerdf986172009-01-02 07:01:27 +00003547 if (!(PFTy = dyn_cast<PointerType>(RetType)) ||
3548 !(Ty = dyn_cast<FunctionType>(PFTy->getElementType()))) {
3549 // Pull out the types of all of the arguments...
Jay Foad5fdd6c82011-07-12 14:06:48 +00003550 std::vector<Type*> ParamTypes;
Chris Lattnerdf986172009-01-02 07:01:27 +00003551 for (unsigned i = 0, e = ArgList.size(); i != e; ++i)
3552 ParamTypes.push_back(ArgList[i].V->getType());
Daniel Dunbara279bc32009-09-20 02:20:51 +00003553
Chris Lattnerdf986172009-01-02 07:01:27 +00003554 if (!FunctionType::isValidReturnType(RetType))
3555 return Error(RetTypeLoc, "Invalid result type for LLVM function");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003556
Owen Andersondebcb012009-07-29 22:17:13 +00003557 Ty = FunctionType::get(RetType, ParamTypes, false);
3558 PFTy = PointerType::getUnqual(Ty);
Chris Lattnerdf986172009-01-02 07:01:27 +00003559 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003560
Chris Lattnerdf986172009-01-02 07:01:27 +00003561 // Look up the callee.
3562 Value *Callee;
Victor Hernandez92f238d2010-01-11 22:31:58 +00003563 if (ConvertValIDToValue(PFTy, CalleeID, Callee, &PFS)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003564
Bill Wendling034b94b2012-12-19 07:18:57 +00003565 // Set up the Attribute for the function.
Bill Wendlinga1683d62013-01-27 02:24:02 +00003566 SmallVector<AttributeSet, 8> Attrs;
Bill Wendlinge603fe42012-09-19 23:54:18 +00003567 if (RetAttrs.hasAttributes())
Bill Wendlinga1683d62013-01-27 02:24:02 +00003568 Attrs.push_back(AttributeSet::get(RetType->getContext(),
3569 AttributeSet::ReturnIndex,
3570 RetAttrs));
Daniel Dunbara279bc32009-09-20 02:20:51 +00003571
Chris Lattnerdf986172009-01-02 07:01:27 +00003572 SmallVector<Value*, 8> Args;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003573
Chris Lattnerdf986172009-01-02 07:01:27 +00003574 // Loop through FunctionType's arguments and ensure they are specified
3575 // correctly. Also, gather any parameter attributes.
3576 FunctionType::param_iterator I = Ty->param_begin();
3577 FunctionType::param_iterator E = Ty->param_end();
3578 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
Chris Lattnerdb125cf2011-07-18 04:54:35 +00003579 Type *ExpectedTy = 0;
Chris Lattnerdf986172009-01-02 07:01:27 +00003580 if (I != E) {
3581 ExpectedTy = *I++;
3582 } else if (!Ty->isVarArg()) {
3583 return Error(ArgList[i].Loc, "too many arguments specified");
3584 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003585
Chris Lattnerdf986172009-01-02 07:01:27 +00003586 if (ExpectedTy && ExpectedTy != ArgList[i].V->getType())
3587 return Error(ArgList[i].Loc, "argument is not of expected type '" +
Chris Lattner0cd0d882011-06-18 21:18:23 +00003588 getTypeString(ExpectedTy) + "'");
Chris Lattnerdf986172009-01-02 07:01:27 +00003589 Args.push_back(ArgList[i].V);
Bill Wendling73dee182013-01-31 00:29:54 +00003590 if (ArgList[i].Attrs.hasAttributes(i + 1)) {
3591 AttrBuilder B(ArgList[i].Attrs, i + 1);
Bill Wendlinga1683d62013-01-27 02:24:02 +00003592 Attrs.push_back(AttributeSet::get(RetType->getContext(), i + 1, B));
3593 }
Chris Lattnerdf986172009-01-02 07:01:27 +00003594 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003595
Chris Lattnerdf986172009-01-02 07:01:27 +00003596 if (I != E)
3597 return Error(CallLoc, "not enough parameters specified for call");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003598
Bill Wendlinge603fe42012-09-19 23:54:18 +00003599 if (FnAttrs.hasAttributes())
Bill Wendlinga1683d62013-01-27 02:24:02 +00003600 Attrs.push_back(AttributeSet::get(RetType->getContext(),
3601 AttributeSet::FunctionIndex,
3602 FnAttrs));
Daniel Dunbara279bc32009-09-20 02:20:51 +00003603
Bill Wendling034b94b2012-12-19 07:18:57 +00003604 // Finish off the Attribute and check them
Bill Wendling99faa3b2012-12-07 23:16:57 +00003605 AttributeSet PAL = AttributeSet::get(Context, Attrs);
Daniel Dunbara279bc32009-09-20 02:20:51 +00003606
Jay Foada3efbb12011-07-15 08:37:34 +00003607 InvokeInst *II = InvokeInst::Create(Callee, NormalBB, UnwindBB, Args);
Chris Lattnerdf986172009-01-02 07:01:27 +00003608 II->setCallingConv(CC);
3609 II->setAttributes(PAL);
Bill Wendlingbaad55c2013-02-08 06:32:06 +00003610 ForwardRefAttrGroups[II] = FwdRefAttrGrps;
Chris Lattnerdf986172009-01-02 07:01:27 +00003611 Inst = II;
3612 return false;
3613}
3614
Bill Wendlingdccc03b2011-07-31 06:30:59 +00003615/// ParseResume
3616/// ::= 'resume' TypeAndValue
3617bool LLParser::ParseResume(Instruction *&Inst, PerFunctionState &PFS) {
3618 Value *Exn; LocTy ExnLoc;
Bill Wendlingdccc03b2011-07-31 06:30:59 +00003619 if (ParseTypeAndValue(Exn, ExnLoc, PFS))
3620 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00003621
Bill Wendlingdccc03b2011-07-31 06:30:59 +00003622 ResumeInst *RI = ResumeInst::Create(Exn);
3623 Inst = RI;
3624 return false;
3625}
Chris Lattnerdf986172009-01-02 07:01:27 +00003626
3627//===----------------------------------------------------------------------===//
3628// Binary Operators.
3629//===----------------------------------------------------------------------===//
3630
3631/// ParseArithmetic
Chris Lattnere914b592009-01-05 08:24:46 +00003632/// ::= ArithmeticOps TypeAndValue ',' Value
3633///
3634/// If OperandType is 0, then any FP or integer operand is allowed. If it is 1,
3635/// then any integer operand is allowed, if it is 2, any fp operand is allowed.
Chris Lattnerdf986172009-01-02 07:01:27 +00003636bool LLParser::ParseArithmetic(Instruction *&Inst, PerFunctionState &PFS,
Chris Lattnere914b592009-01-05 08:24:46 +00003637 unsigned Opc, unsigned OperandType) {
Chris Lattnerdf986172009-01-02 07:01:27 +00003638 LocTy Loc; Value *LHS, *RHS;
3639 if (ParseTypeAndValue(LHS, Loc, PFS) ||
3640 ParseToken(lltok::comma, "expected ',' in arithmetic operation") ||
3641 ParseValue(LHS->getType(), RHS, PFS))
3642 return true;
3643
Chris Lattnere914b592009-01-05 08:24:46 +00003644 bool Valid;
3645 switch (OperandType) {
Torok Edwinc23197a2009-07-14 16:55:14 +00003646 default: llvm_unreachable("Unknown operand type!");
Chris Lattnere914b592009-01-05 08:24:46 +00003647 case 0: // int or FP.
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00003648 Valid = LHS->getType()->isIntOrIntVectorTy() ||
3649 LHS->getType()->isFPOrFPVectorTy();
Chris Lattnere914b592009-01-05 08:24:46 +00003650 break;
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00003651 case 1: Valid = LHS->getType()->isIntOrIntVectorTy(); break;
3652 case 2: Valid = LHS->getType()->isFPOrFPVectorTy(); break;
Chris Lattnere914b592009-01-05 08:24:46 +00003653 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003654
Chris Lattnere914b592009-01-05 08:24:46 +00003655 if (!Valid)
3656 return Error(Loc, "invalid operand type for instruction");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003657
Chris Lattnerdf986172009-01-02 07:01:27 +00003658 Inst = BinaryOperator::Create((Instruction::BinaryOps)Opc, LHS, RHS);
3659 return false;
3660}
3661
3662/// ParseLogical
3663/// ::= ArithmeticOps TypeAndValue ',' Value {
3664bool LLParser::ParseLogical(Instruction *&Inst, PerFunctionState &PFS,
3665 unsigned Opc) {
3666 LocTy Loc; Value *LHS, *RHS;
3667 if (ParseTypeAndValue(LHS, Loc, PFS) ||
3668 ParseToken(lltok::comma, "expected ',' in logical operation") ||
3669 ParseValue(LHS->getType(), RHS, PFS))
3670 return true;
3671
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00003672 if (!LHS->getType()->isIntOrIntVectorTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00003673 return Error(Loc,"instruction requires integer or integer vector operands");
3674
3675 Inst = BinaryOperator::Create((Instruction::BinaryOps)Opc, LHS, RHS);
3676 return false;
3677}
3678
3679
3680/// ParseCompare
3681/// ::= 'icmp' IPredicates TypeAndValue ',' Value
3682/// ::= 'fcmp' FPredicates TypeAndValue ',' Value
Chris Lattnerdf986172009-01-02 07:01:27 +00003683bool LLParser::ParseCompare(Instruction *&Inst, PerFunctionState &PFS,
3684 unsigned Opc) {
3685 // Parse the integer/fp comparison predicate.
3686 LocTy Loc;
3687 unsigned Pred;
3688 Value *LHS, *RHS;
3689 if (ParseCmpPredicate(Pred, Opc) ||
3690 ParseTypeAndValue(LHS, Loc, PFS) ||
3691 ParseToken(lltok::comma, "expected ',' after compare value") ||
3692 ParseValue(LHS->getType(), RHS, PFS))
3693 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003694
Chris Lattnerdf986172009-01-02 07:01:27 +00003695 if (Opc == Instruction::FCmp) {
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00003696 if (!LHS->getType()->isFPOrFPVectorTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00003697 return Error(Loc, "fcmp requires floating point operands");
Dan Gohman1c8a23c2009-08-25 23:17:54 +00003698 Inst = new FCmpInst(CmpInst::Predicate(Pred), LHS, RHS);
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00003699 } else {
3700 assert(Opc == Instruction::ICmp && "Unknown opcode for CmpInst!");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00003701 if (!LHS->getType()->isIntOrIntVectorTy() &&
Nadav Rotem16087692011-12-05 06:29:09 +00003702 !LHS->getType()->getScalarType()->isPointerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00003703 return Error(Loc, "icmp requires integer operands");
Dan Gohman1c8a23c2009-08-25 23:17:54 +00003704 Inst = new ICmpInst(CmpInst::Predicate(Pred), LHS, RHS);
Chris Lattnerdf986172009-01-02 07:01:27 +00003705 }
3706 return false;
3707}
3708
3709//===----------------------------------------------------------------------===//
3710// Other Instructions.
3711//===----------------------------------------------------------------------===//
3712
3713
3714/// ParseCast
3715/// ::= CastOpc TypeAndValue 'to' Type
3716bool LLParser::ParseCast(Instruction *&Inst, PerFunctionState &PFS,
3717 unsigned Opc) {
Chris Lattner1afcace2011-07-09 17:41:24 +00003718 LocTy Loc;
3719 Value *Op;
3720 Type *DestTy = 0;
Chris Lattnerdf986172009-01-02 07:01:27 +00003721 if (ParseTypeAndValue(Op, Loc, PFS) ||
3722 ParseToken(lltok::kw_to, "expected 'to' after cast value") ||
3723 ParseType(DestTy))
3724 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003725
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00003726 if (!CastInst::castIsValid((Instruction::CastOps)Opc, Op, DestTy)) {
3727 CastInst::castIsValid((Instruction::CastOps)Opc, Op, DestTy);
Chris Lattnerdf986172009-01-02 07:01:27 +00003728 return Error(Loc, "invalid cast opcode for cast from '" +
Chris Lattner0cd0d882011-06-18 21:18:23 +00003729 getTypeString(Op->getType()) + "' to '" +
3730 getTypeString(DestTy) + "'");
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00003731 }
Chris Lattnerdf986172009-01-02 07:01:27 +00003732 Inst = CastInst::Create((Instruction::CastOps)Opc, Op, DestTy);
3733 return false;
3734}
3735
3736/// ParseSelect
3737/// ::= 'select' TypeAndValue ',' TypeAndValue ',' TypeAndValue
3738bool LLParser::ParseSelect(Instruction *&Inst, PerFunctionState &PFS) {
3739 LocTy Loc;
3740 Value *Op0, *Op1, *Op2;
3741 if (ParseTypeAndValue(Op0, Loc, PFS) ||
3742 ParseToken(lltok::comma, "expected ',' after select condition") ||
3743 ParseTypeAndValue(Op1, PFS) ||
3744 ParseToken(lltok::comma, "expected ',' after select value") ||
3745 ParseTypeAndValue(Op2, PFS))
3746 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003747
Chris Lattnerdf986172009-01-02 07:01:27 +00003748 if (const char *Reason = SelectInst::areInvalidOperands(Op0, Op1, Op2))
3749 return Error(Loc, Reason);
Daniel Dunbara279bc32009-09-20 02:20:51 +00003750
Chris Lattnerdf986172009-01-02 07:01:27 +00003751 Inst = SelectInst::Create(Op0, Op1, Op2);
3752 return false;
3753}
3754
Chris Lattner0088a5c2009-01-05 08:18:44 +00003755/// ParseVA_Arg
3756/// ::= 'va_arg' TypeAndValue ',' Type
3757bool LLParser::ParseVA_Arg(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00003758 Value *Op;
Chris Lattner1afcace2011-07-09 17:41:24 +00003759 Type *EltTy = 0;
Chris Lattner0088a5c2009-01-05 08:18:44 +00003760 LocTy TypeLoc;
Chris Lattnerdf986172009-01-02 07:01:27 +00003761 if (ParseTypeAndValue(Op, PFS) ||
3762 ParseToken(lltok::comma, "expected ',' after vaarg operand") ||
Chris Lattner0088a5c2009-01-05 08:18:44 +00003763 ParseType(EltTy, TypeLoc))
Chris Lattnerdf986172009-01-02 07:01:27 +00003764 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003765
Chris Lattner0088a5c2009-01-05 08:18:44 +00003766 if (!EltTy->isFirstClassType())
3767 return Error(TypeLoc, "va_arg requires operand with first class type");
Chris Lattnerdf986172009-01-02 07:01:27 +00003768
3769 Inst = new VAArgInst(Op, EltTy);
3770 return false;
3771}
3772
3773/// ParseExtractElement
3774/// ::= 'extractelement' TypeAndValue ',' TypeAndValue
3775bool LLParser::ParseExtractElement(Instruction *&Inst, PerFunctionState &PFS) {
3776 LocTy Loc;
3777 Value *Op0, *Op1;
3778 if (ParseTypeAndValue(Op0, Loc, PFS) ||
3779 ParseToken(lltok::comma, "expected ',' after extract value") ||
3780 ParseTypeAndValue(Op1, PFS))
3781 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003782
Chris Lattnerdf986172009-01-02 07:01:27 +00003783 if (!ExtractElementInst::isValidOperands(Op0, Op1))
3784 return Error(Loc, "invalid extractelement operands");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003785
Eric Christophera3500da2009-07-25 02:28:41 +00003786 Inst = ExtractElementInst::Create(Op0, Op1);
Chris Lattnerdf986172009-01-02 07:01:27 +00003787 return false;
3788}
3789
3790/// ParseInsertElement
3791/// ::= 'insertelement' TypeAndValue ',' TypeAndValue ',' TypeAndValue
3792bool LLParser::ParseInsertElement(Instruction *&Inst, PerFunctionState &PFS) {
3793 LocTy Loc;
3794 Value *Op0, *Op1, *Op2;
3795 if (ParseTypeAndValue(Op0, Loc, PFS) ||
3796 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
3797 ParseTypeAndValue(Op1, PFS) ||
3798 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
3799 ParseTypeAndValue(Op2, PFS))
3800 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003801
Chris Lattnerdf986172009-01-02 07:01:27 +00003802 if (!InsertElementInst::isValidOperands(Op0, Op1, Op2))
Eric Christopher0aaf4e92009-07-23 01:01:32 +00003803 return Error(Loc, "invalid insertelement operands");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003804
Chris Lattnerdf986172009-01-02 07:01:27 +00003805 Inst = InsertElementInst::Create(Op0, Op1, Op2);
3806 return false;
3807}
3808
3809/// ParseShuffleVector
3810/// ::= 'shufflevector' TypeAndValue ',' TypeAndValue ',' TypeAndValue
3811bool LLParser::ParseShuffleVector(Instruction *&Inst, PerFunctionState &PFS) {
3812 LocTy Loc;
3813 Value *Op0, *Op1, *Op2;
3814 if (ParseTypeAndValue(Op0, Loc, PFS) ||
3815 ParseToken(lltok::comma, "expected ',' after shuffle mask") ||
3816 ParseTypeAndValue(Op1, PFS) ||
3817 ParseToken(lltok::comma, "expected ',' after shuffle value") ||
3818 ParseTypeAndValue(Op2, PFS))
3819 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003820
Chris Lattnerdf986172009-01-02 07:01:27 +00003821 if (!ShuffleVectorInst::isValidOperands(Op0, Op1, Op2))
Pete Cooperaf393682012-02-01 23:43:12 +00003822 return Error(Loc, "invalid shufflevector operands");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003823
Chris Lattnerdf986172009-01-02 07:01:27 +00003824 Inst = new ShuffleVectorInst(Op0, Op1, Op2);
3825 return false;
3826}
3827
3828/// ParsePHI
Chris Lattnerc6e20092009-10-18 05:27:44 +00003829/// ::= 'phi' Type '[' Value ',' Value ']' (',' '[' Value ',' Value ']')*
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003830int LLParser::ParsePHI(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattner1afcace2011-07-09 17:41:24 +00003831 Type *Ty = 0; LocTy TypeLoc;
Chris Lattnerdf986172009-01-02 07:01:27 +00003832 Value *Op0, *Op1;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003833
Chris Lattner1afcace2011-07-09 17:41:24 +00003834 if (ParseType(Ty, TypeLoc) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003835 ParseToken(lltok::lsquare, "expected '[' in phi value list") ||
3836 ParseValue(Ty, Op0, PFS) ||
3837 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
Owen Anderson1d0be152009-08-13 21:58:54 +00003838 ParseValue(Type::getLabelTy(Context), Op1, PFS) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003839 ParseToken(lltok::rsquare, "expected ']' in phi value list"))
3840 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003841
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003842 bool AteExtraComma = false;
Chris Lattnerdf986172009-01-02 07:01:27 +00003843 SmallVector<std::pair<Value*, BasicBlock*>, 16> PHIVals;
3844 while (1) {
3845 PHIVals.push_back(std::make_pair(Op0, cast<BasicBlock>(Op1)));
Daniel Dunbara279bc32009-09-20 02:20:51 +00003846
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003847 if (!EatIfPresent(lltok::comma))
Chris Lattnerdf986172009-01-02 07:01:27 +00003848 break;
3849
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003850 if (Lex.getKind() == lltok::MetadataVar) {
3851 AteExtraComma = true;
Devang Patela43d46f2009-10-16 18:45:49 +00003852 break;
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003853 }
Devang Patela43d46f2009-10-16 18:45:49 +00003854
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003855 if (ParseToken(lltok::lsquare, "expected '[' in phi value list") ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003856 ParseValue(Ty, Op0, PFS) ||
3857 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
Owen Anderson1d0be152009-08-13 21:58:54 +00003858 ParseValue(Type::getLabelTy(Context), Op1, PFS) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003859 ParseToken(lltok::rsquare, "expected ']' in phi value list"))
3860 return true;
3861 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003862
Chris Lattnerdf986172009-01-02 07:01:27 +00003863 if (!Ty->isFirstClassType())
3864 return Error(TypeLoc, "phi node must have first class type");
3865
Jay Foad3ecfc862011-03-30 11:28:46 +00003866 PHINode *PN = PHINode::Create(Ty, PHIVals.size());
Chris Lattnerdf986172009-01-02 07:01:27 +00003867 for (unsigned i = 0, e = PHIVals.size(); i != e; ++i)
3868 PN->addIncoming(PHIVals[i].first, PHIVals[i].second);
3869 Inst = PN;
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003870 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerdf986172009-01-02 07:01:27 +00003871}
3872
Bill Wendlinge6e88262011-08-12 20:24:12 +00003873/// ParseLandingPad
3874/// ::= 'landingpad' Type 'personality' TypeAndValue 'cleanup'? Clause+
3875/// Clause
3876/// ::= 'catch' TypeAndValue
3877/// ::= 'filter'
3878/// ::= 'filter' TypeAndValue ( ',' TypeAndValue )*
3879bool LLParser::ParseLandingPad(Instruction *&Inst, PerFunctionState &PFS) {
3880 Type *Ty = 0; LocTy TyLoc;
3881 Value *PersFn; LocTy PersFnLoc;
Bill Wendlinge6e88262011-08-12 20:24:12 +00003882
3883 if (ParseType(Ty, TyLoc) ||
3884 ParseToken(lltok::kw_personality, "expected 'personality'") ||
3885 ParseTypeAndValue(PersFn, PersFnLoc, PFS))
3886 return true;
3887
3888 LandingPadInst *LP = LandingPadInst::Create(Ty, PersFn, 0);
3889 LP->setCleanup(EatIfPresent(lltok::kw_cleanup));
3890
3891 while (Lex.getKind() == lltok::kw_catch || Lex.getKind() == lltok::kw_filter){
3892 LandingPadInst::ClauseType CT;
3893 if (EatIfPresent(lltok::kw_catch))
3894 CT = LandingPadInst::Catch;
3895 else if (EatIfPresent(lltok::kw_filter))
3896 CT = LandingPadInst::Filter;
3897 else
3898 return TokError("expected 'catch' or 'filter' clause type");
3899
3900 Value *V; LocTy VLoc;
3901 if (ParseTypeAndValue(V, VLoc, PFS)) {
3902 delete LP;
3903 return true;
3904 }
3905
Bill Wendling746c8822011-08-12 20:52:25 +00003906 // A 'catch' type expects a non-array constant. A filter clause expects an
3907 // array constant.
3908 if (CT == LandingPadInst::Catch) {
3909 if (isa<ArrayType>(V->getType()))
3910 Error(VLoc, "'catch' clause has an invalid type");
3911 } else {
3912 if (!isa<ArrayType>(V->getType()))
3913 Error(VLoc, "'filter' clause has an invalid type");
3914 }
3915
Bill Wendlinge6e88262011-08-12 20:24:12 +00003916 LP->addClause(V);
3917 }
3918
3919 Inst = LP;
3920 return false;
3921}
3922
Chris Lattnerdf986172009-01-02 07:01:27 +00003923/// ParseCall
3924/// ::= 'tail'? 'call' OptionalCallingConv OptionalAttrs Type Value
3925/// ParameterList OptionalAttrs
3926bool LLParser::ParseCall(Instruction *&Inst, PerFunctionState &PFS,
3927 bool isTail) {
Bill Wendling702cc912012-10-15 20:35:56 +00003928 AttrBuilder RetAttrs, FnAttrs;
Bill Wendlingbaad55c2013-02-08 06:32:06 +00003929 std::vector<unsigned> FwdRefAttrGrps;
Bill Wendling143d4642013-02-22 00:12:35 +00003930 LocTy NoBuiltinLoc;
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00003931 CallingConv::ID CC;
Chris Lattner1afcace2011-07-09 17:41:24 +00003932 Type *RetType = 0;
Chris Lattnerdf986172009-01-02 07:01:27 +00003933 LocTy RetTypeLoc;
3934 ValID CalleeID;
3935 SmallVector<ParamInfo, 16> ArgList;
3936 LocTy CallLoc = Lex.getLoc();
Daniel Dunbara279bc32009-09-20 02:20:51 +00003937
Chris Lattnerdf986172009-01-02 07:01:27 +00003938 if ((isTail && ParseToken(lltok::kw_call, "expected 'tail call'")) ||
3939 ParseOptionalCallingConv(CC) ||
Bill Wendlinge01b81b2012-12-04 23:40:58 +00003940 ParseOptionalReturnAttrs(RetAttrs) ||
Chris Lattnera9a9e072009-03-09 04:49:14 +00003941 ParseType(RetType, RetTypeLoc, true /*void allowed*/) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003942 ParseValID(CalleeID) ||
3943 ParseParameterList(ArgList, PFS) ||
Bill Wendling143d4642013-02-22 00:12:35 +00003944 ParseFnAttributeValuePairs(FnAttrs, FwdRefAttrGrps, false,
3945 NoBuiltinLoc))
Chris Lattnerdf986172009-01-02 07:01:27 +00003946 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003947
Chris Lattnerdf986172009-01-02 07:01:27 +00003948 // If RetType is a non-function pointer type, then this is the short syntax
3949 // for the call, which means that RetType is just the return type. Infer the
3950 // rest of the function argument types from the arguments that are present.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00003951 PointerType *PFTy = 0;
3952 FunctionType *Ty = 0;
Chris Lattnerdf986172009-01-02 07:01:27 +00003953 if (!(PFTy = dyn_cast<PointerType>(RetType)) ||
3954 !(Ty = dyn_cast<FunctionType>(PFTy->getElementType()))) {
3955 // Pull out the types of all of the arguments...
Jay Foad5fdd6c82011-07-12 14:06:48 +00003956 std::vector<Type*> ParamTypes;
Eli Friedman83b4a972010-07-24 23:06:59 +00003957 for (unsigned i = 0, e = ArgList.size(); i != e; ++i)
3958 ParamTypes.push_back(ArgList[i].V->getType());
Daniel Dunbara279bc32009-09-20 02:20:51 +00003959
Chris Lattnerdf986172009-01-02 07:01:27 +00003960 if (!FunctionType::isValidReturnType(RetType))
3961 return Error(RetTypeLoc, "Invalid result type for LLVM function");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003962
Owen Andersondebcb012009-07-29 22:17:13 +00003963 Ty = FunctionType::get(RetType, ParamTypes, false);
3964 PFTy = PointerType::getUnqual(Ty);
Chris Lattnerdf986172009-01-02 07:01:27 +00003965 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003966
Chris Lattnerdf986172009-01-02 07:01:27 +00003967 // Look up the callee.
3968 Value *Callee;
Victor Hernandez92f238d2010-01-11 22:31:58 +00003969 if (ConvertValIDToValue(PFTy, CalleeID, Callee, &PFS)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003970
Bill Wendling034b94b2012-12-19 07:18:57 +00003971 // Set up the Attribute for the function.
Bill Wendlinga1683d62013-01-27 02:24:02 +00003972 SmallVector<AttributeSet, 8> Attrs;
Bill Wendlinge603fe42012-09-19 23:54:18 +00003973 if (RetAttrs.hasAttributes())
Bill Wendlinga1683d62013-01-27 02:24:02 +00003974 Attrs.push_back(AttributeSet::get(RetType->getContext(),
3975 AttributeSet::ReturnIndex,
3976 RetAttrs));
Daniel Dunbara279bc32009-09-20 02:20:51 +00003977
Chris Lattnerdf986172009-01-02 07:01:27 +00003978 SmallVector<Value*, 8> Args;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003979
Chris Lattnerdf986172009-01-02 07:01:27 +00003980 // Loop through FunctionType's arguments and ensure they are specified
3981 // correctly. Also, gather any parameter attributes.
3982 FunctionType::param_iterator I = Ty->param_begin();
3983 FunctionType::param_iterator E = Ty->param_end();
3984 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
Chris Lattnerdb125cf2011-07-18 04:54:35 +00003985 Type *ExpectedTy = 0;
Chris Lattnerdf986172009-01-02 07:01:27 +00003986 if (I != E) {
3987 ExpectedTy = *I++;
3988 } else if (!Ty->isVarArg()) {
3989 return Error(ArgList[i].Loc, "too many arguments specified");
3990 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003991
Chris Lattnerdf986172009-01-02 07:01:27 +00003992 if (ExpectedTy && ExpectedTy != ArgList[i].V->getType())
3993 return Error(ArgList[i].Loc, "argument is not of expected type '" +
Chris Lattner0cd0d882011-06-18 21:18:23 +00003994 getTypeString(ExpectedTy) + "'");
Chris Lattnerdf986172009-01-02 07:01:27 +00003995 Args.push_back(ArgList[i].V);
Bill Wendling73dee182013-01-31 00:29:54 +00003996 if (ArgList[i].Attrs.hasAttributes(i + 1)) {
3997 AttrBuilder B(ArgList[i].Attrs, i + 1);
Bill Wendlinga1683d62013-01-27 02:24:02 +00003998 Attrs.push_back(AttributeSet::get(RetType->getContext(), i + 1, B));
3999 }
Chris Lattnerdf986172009-01-02 07:01:27 +00004000 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00004001
Chris Lattnerdf986172009-01-02 07:01:27 +00004002 if (I != E)
4003 return Error(CallLoc, "not enough parameters specified for call");
4004
Bill Wendlinge603fe42012-09-19 23:54:18 +00004005 if (FnAttrs.hasAttributes())
Bill Wendlinga1683d62013-01-27 02:24:02 +00004006 Attrs.push_back(AttributeSet::get(RetType->getContext(),
4007 AttributeSet::FunctionIndex,
4008 FnAttrs));
Chris Lattnerdf986172009-01-02 07:01:27 +00004009
Bill Wendling034b94b2012-12-19 07:18:57 +00004010 // Finish off the Attribute and check them
Bill Wendling99faa3b2012-12-07 23:16:57 +00004011 AttributeSet PAL = AttributeSet::get(Context, Attrs);
Daniel Dunbara279bc32009-09-20 02:20:51 +00004012
Jay Foada3efbb12011-07-15 08:37:34 +00004013 CallInst *CI = CallInst::Create(Callee, Args);
Chris Lattnerdf986172009-01-02 07:01:27 +00004014 CI->setTailCall(isTail);
4015 CI->setCallingConv(CC);
4016 CI->setAttributes(PAL);
Bill Wendlingbaad55c2013-02-08 06:32:06 +00004017 ForwardRefAttrGroups[CI] = FwdRefAttrGrps;
Chris Lattnerdf986172009-01-02 07:01:27 +00004018 Inst = CI;
4019 return false;
4020}
4021
4022//===----------------------------------------------------------------------===//
4023// Memory Instructions.
4024//===----------------------------------------------------------------------===//
4025
4026/// ParseAlloc
Devang Patelf633a062009-09-17 23:04:48 +00004027/// ::= 'alloca' Type (',' TypeAndValue)? (',' OptionalInfo)?
Chris Lattnerf3a789d2011-06-17 03:16:47 +00004028int LLParser::ParseAlloc(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00004029 Value *Size = 0;
Chris Lattnereeb4a842009-07-02 23:08:13 +00004030 LocTy SizeLoc;
Chris Lattnerdf986172009-01-02 07:01:27 +00004031 unsigned Alignment = 0;
Chris Lattner1afcace2011-07-09 17:41:24 +00004032 Type *Ty = 0;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00004033 if (ParseType(Ty)) return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00004034
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00004035 bool AteExtraComma = false;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00004036 if (EatIfPresent(lltok::comma)) {
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00004037 if (Lex.getKind() == lltok::kw_align) {
4038 if (ParseOptionalAlignment(Alignment)) return true;
4039 } else if (Lex.getKind() == lltok::MetadataVar) {
4040 AteExtraComma = true;
Devang Patelf633a062009-09-17 23:04:48 +00004041 } else {
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00004042 if (ParseTypeAndValue(Size, SizeLoc, PFS) ||
4043 ParseOptionalCommaAlign(Alignment, AteExtraComma))
4044 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00004045 }
4046 }
4047
Dan Gohmanf75a7d32010-05-28 01:14:11 +00004048 if (Size && !Size->getType()->isIntegerTy())
4049 return Error(SizeLoc, "element count must have integer type");
Chris Lattnerdf986172009-01-02 07:01:27 +00004050
Chris Lattnerf3a789d2011-06-17 03:16:47 +00004051 Inst = new AllocaInst(Ty, Size, Alignment);
4052 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerdf986172009-01-02 07:01:27 +00004053}
4054
4055/// ParseLoad
Eli Friedmanf03bb262011-08-12 22:50:01 +00004056/// ::= 'load' 'volatile'? TypeAndValue (',' 'align' i32)?
Michael Ilseman407a6162012-11-15 22:34:00 +00004057/// ::= 'load' 'atomic' 'volatile'? TypeAndValue
Eli Friedmanf03bb262011-08-12 22:50:01 +00004058/// 'singlethread'? AtomicOrdering (',' 'align' i32)?
Chris Lattnerfbe910e2011-11-27 06:56:53 +00004059int LLParser::ParseLoad(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00004060 Value *Val; LocTy Loc;
Devang Patelf633a062009-09-17 23:04:48 +00004061 unsigned Alignment = 0;
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00004062 bool AteExtraComma = false;
Eli Friedmanf03bb262011-08-12 22:50:01 +00004063 bool isAtomic = false;
Eli Friedman21006d42011-08-09 23:02:53 +00004064 AtomicOrdering Ordering = NotAtomic;
4065 SynchronizationScope Scope = CrossThread;
Eli Friedmanf03bb262011-08-12 22:50:01 +00004066
4067 if (Lex.getKind() == lltok::kw_atomic) {
Eli Friedmanf03bb262011-08-12 22:50:01 +00004068 isAtomic = true;
4069 Lex.Lex();
4070 }
4071
Chris Lattnerfbe910e2011-11-27 06:56:53 +00004072 bool isVolatile = false;
Eli Friedmanf03bb262011-08-12 22:50:01 +00004073 if (Lex.getKind() == lltok::kw_volatile) {
Eli Friedmanf03bb262011-08-12 22:50:01 +00004074 isVolatile = true;
4075 Lex.Lex();
4076 }
4077
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00004078 if (ParseTypeAndValue(Val, Loc, PFS) ||
Eli Friedman21006d42011-08-09 23:02:53 +00004079 ParseScopeAndOrdering(isAtomic, Scope, Ordering) ||
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00004080 ParseOptionalCommaAlign(Alignment, AteExtraComma))
4081 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00004082
Duncan Sands1df98592010-02-16 11:11:14 +00004083 if (!Val->getType()->isPointerTy() ||
Chris Lattnerdf986172009-01-02 07:01:27 +00004084 !cast<PointerType>(Val->getType())->getElementType()->isFirstClassType())
4085 return Error(Loc, "load operand must be a pointer to a first class type");
Eli Friedman21006d42011-08-09 23:02:53 +00004086 if (isAtomic && !Alignment)
4087 return Error(Loc, "atomic load must have explicit non-zero alignment");
4088 if (Ordering == Release || Ordering == AcquireRelease)
4089 return Error(Loc, "atomic load cannot use Release ordering");
Daniel Dunbara279bc32009-09-20 02:20:51 +00004090
Eli Friedman21006d42011-08-09 23:02:53 +00004091 Inst = new LoadInst(Val, "", isVolatile, Alignment, Ordering, Scope);
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00004092 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerdf986172009-01-02 07:01:27 +00004093}
4094
4095/// ParseStore
Eli Friedmanf03bb262011-08-12 22:50:01 +00004096
4097/// ::= 'store' 'volatile'? TypeAndValue ',' TypeAndValue (',' 'align' i32)?
4098/// ::= 'store' 'atomic' 'volatile'? TypeAndValue ',' TypeAndValue
Eli Friedman21006d42011-08-09 23:02:53 +00004099/// 'singlethread'? AtomicOrdering (',' 'align' i32)?
Chris Lattnerfbe910e2011-11-27 06:56:53 +00004100int LLParser::ParseStore(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00004101 Value *Val, *Ptr; LocTy Loc, PtrLoc;
Devang Patelf633a062009-09-17 23:04:48 +00004102 unsigned Alignment = 0;
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00004103 bool AteExtraComma = false;
Eli Friedmanf03bb262011-08-12 22:50:01 +00004104 bool isAtomic = false;
Eli Friedman21006d42011-08-09 23:02:53 +00004105 AtomicOrdering Ordering = NotAtomic;
4106 SynchronizationScope Scope = CrossThread;
Eli Friedmanf03bb262011-08-12 22:50:01 +00004107
4108 if (Lex.getKind() == lltok::kw_atomic) {
Eli Friedmanf03bb262011-08-12 22:50:01 +00004109 isAtomic = true;
4110 Lex.Lex();
4111 }
4112
Chris Lattnerfbe910e2011-11-27 06:56:53 +00004113 bool isVolatile = false;
Eli Friedmanf03bb262011-08-12 22:50:01 +00004114 if (Lex.getKind() == lltok::kw_volatile) {
Eli Friedmanf03bb262011-08-12 22:50:01 +00004115 isVolatile = true;
4116 Lex.Lex();
4117 }
4118
Chris Lattnerdf986172009-01-02 07:01:27 +00004119 if (ParseTypeAndValue(Val, Loc, PFS) ||
4120 ParseToken(lltok::comma, "expected ',' after store operand") ||
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00004121 ParseTypeAndValue(Ptr, PtrLoc, PFS) ||
Eli Friedman21006d42011-08-09 23:02:53 +00004122 ParseScopeAndOrdering(isAtomic, Scope, Ordering) ||
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00004123 ParseOptionalCommaAlign(Alignment, AteExtraComma))
Chris Lattnerdf986172009-01-02 07:01:27 +00004124 return true;
Devang Patelf633a062009-09-17 23:04:48 +00004125
Duncan Sands1df98592010-02-16 11:11:14 +00004126 if (!Ptr->getType()->isPointerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00004127 return Error(PtrLoc, "store operand must be a pointer");
4128 if (!Val->getType()->isFirstClassType())
4129 return Error(Loc, "store operand must be a first class value");
4130 if (cast<PointerType>(Ptr->getType())->getElementType() != Val->getType())
4131 return Error(Loc, "stored value and pointer type do not match");
Eli Friedman21006d42011-08-09 23:02:53 +00004132 if (isAtomic && !Alignment)
4133 return Error(Loc, "atomic store must have explicit non-zero alignment");
4134 if (Ordering == Acquire || Ordering == AcquireRelease)
4135 return Error(Loc, "atomic store cannot use Acquire ordering");
Daniel Dunbara279bc32009-09-20 02:20:51 +00004136
Eli Friedman21006d42011-08-09 23:02:53 +00004137 Inst = new StoreInst(Val, Ptr, isVolatile, Alignment, Ordering, Scope);
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00004138 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerdf986172009-01-02 07:01:27 +00004139}
4140
Eli Friedmanff030482011-07-28 21:48:00 +00004141/// ParseCmpXchg
Eli Friedmanf03bb262011-08-12 22:50:01 +00004142/// ::= 'cmpxchg' 'volatile'? TypeAndValue ',' TypeAndValue ',' TypeAndValue
4143/// 'singlethread'? AtomicOrdering
4144int LLParser::ParseCmpXchg(Instruction *&Inst, PerFunctionState &PFS) {
Eli Friedmanff030482011-07-28 21:48:00 +00004145 Value *Ptr, *Cmp, *New; LocTy PtrLoc, CmpLoc, NewLoc;
4146 bool AteExtraComma = false;
4147 AtomicOrdering Ordering = NotAtomic;
4148 SynchronizationScope Scope = CrossThread;
Eli Friedmanf03bb262011-08-12 22:50:01 +00004149 bool isVolatile = false;
4150
4151 if (EatIfPresent(lltok::kw_volatile))
4152 isVolatile = true;
4153
Eli Friedmanff030482011-07-28 21:48:00 +00004154 if (ParseTypeAndValue(Ptr, PtrLoc, PFS) ||
4155 ParseToken(lltok::comma, "expected ',' after cmpxchg address") ||
4156 ParseTypeAndValue(Cmp, CmpLoc, PFS) ||
4157 ParseToken(lltok::comma, "expected ',' after cmpxchg cmp operand") ||
4158 ParseTypeAndValue(New, NewLoc, PFS) ||
4159 ParseScopeAndOrdering(true /*Always atomic*/, Scope, Ordering))
4160 return true;
4161
4162 if (Ordering == Unordered)
4163 return TokError("cmpxchg cannot be unordered");
4164 if (!Ptr->getType()->isPointerTy())
4165 return Error(PtrLoc, "cmpxchg operand must be a pointer");
4166 if (cast<PointerType>(Ptr->getType())->getElementType() != Cmp->getType())
4167 return Error(CmpLoc, "compare value and pointer type do not match");
4168 if (cast<PointerType>(Ptr->getType())->getElementType() != New->getType())
4169 return Error(NewLoc, "new value and pointer type do not match");
4170 if (!New->getType()->isIntegerTy())
4171 return Error(NewLoc, "cmpxchg operand must be an integer");
4172 unsigned Size = New->getType()->getPrimitiveSizeInBits();
4173 if (Size < 8 || (Size & (Size - 1)))
4174 return Error(NewLoc, "cmpxchg operand must be power-of-two byte-sized"
4175 " integer");
4176
4177 AtomicCmpXchgInst *CXI =
4178 new AtomicCmpXchgInst(Ptr, Cmp, New, Ordering, Scope);
4179 CXI->setVolatile(isVolatile);
4180 Inst = CXI;
4181 return AteExtraComma ? InstExtraComma : InstNormal;
4182}
4183
4184/// ParseAtomicRMW
Eli Friedmanf03bb262011-08-12 22:50:01 +00004185/// ::= 'atomicrmw' 'volatile'? BinOp TypeAndValue ',' TypeAndValue
4186/// 'singlethread'? AtomicOrdering
4187int LLParser::ParseAtomicRMW(Instruction *&Inst, PerFunctionState &PFS) {
Eli Friedmanff030482011-07-28 21:48:00 +00004188 Value *Ptr, *Val; LocTy PtrLoc, ValLoc;
4189 bool AteExtraComma = false;
4190 AtomicOrdering Ordering = NotAtomic;
4191 SynchronizationScope Scope = CrossThread;
Eli Friedmanf03bb262011-08-12 22:50:01 +00004192 bool isVolatile = false;
Eli Friedmanff030482011-07-28 21:48:00 +00004193 AtomicRMWInst::BinOp Operation;
Eli Friedmanf03bb262011-08-12 22:50:01 +00004194
4195 if (EatIfPresent(lltok::kw_volatile))
4196 isVolatile = true;
4197
Eli Friedmanff030482011-07-28 21:48:00 +00004198 switch (Lex.getKind()) {
4199 default: return TokError("expected binary operation in atomicrmw");
4200 case lltok::kw_xchg: Operation = AtomicRMWInst::Xchg; break;
4201 case lltok::kw_add: Operation = AtomicRMWInst::Add; break;
4202 case lltok::kw_sub: Operation = AtomicRMWInst::Sub; break;
4203 case lltok::kw_and: Operation = AtomicRMWInst::And; break;
4204 case lltok::kw_nand: Operation = AtomicRMWInst::Nand; break;
4205 case lltok::kw_or: Operation = AtomicRMWInst::Or; break;
4206 case lltok::kw_xor: Operation = AtomicRMWInst::Xor; break;
4207 case lltok::kw_max: Operation = AtomicRMWInst::Max; break;
4208 case lltok::kw_min: Operation = AtomicRMWInst::Min; break;
4209 case lltok::kw_umax: Operation = AtomicRMWInst::UMax; break;
4210 case lltok::kw_umin: Operation = AtomicRMWInst::UMin; break;
4211 }
4212 Lex.Lex(); // Eat the operation.
4213
4214 if (ParseTypeAndValue(Ptr, PtrLoc, PFS) ||
4215 ParseToken(lltok::comma, "expected ',' after atomicrmw address") ||
4216 ParseTypeAndValue(Val, ValLoc, PFS) ||
4217 ParseScopeAndOrdering(true /*Always atomic*/, Scope, Ordering))
4218 return true;
4219
4220 if (Ordering == Unordered)
4221 return TokError("atomicrmw cannot be unordered");
4222 if (!Ptr->getType()->isPointerTy())
4223 return Error(PtrLoc, "atomicrmw operand must be a pointer");
4224 if (cast<PointerType>(Ptr->getType())->getElementType() != Val->getType())
4225 return Error(ValLoc, "atomicrmw value and pointer type do not match");
4226 if (!Val->getType()->isIntegerTy())
4227 return Error(ValLoc, "atomicrmw operand must be an integer");
4228 unsigned Size = Val->getType()->getPrimitiveSizeInBits();
4229 if (Size < 8 || (Size & (Size - 1)))
4230 return Error(ValLoc, "atomicrmw operand must be power-of-two byte-sized"
4231 " integer");
4232
4233 AtomicRMWInst *RMWI =
4234 new AtomicRMWInst(Operation, Ptr, Val, Ordering, Scope);
4235 RMWI->setVolatile(isVolatile);
4236 Inst = RMWI;
4237 return AteExtraComma ? InstExtraComma : InstNormal;
4238}
4239
Eli Friedman47f35132011-07-25 23:16:38 +00004240/// ParseFence
4241/// ::= 'fence' 'singlethread'? AtomicOrdering
4242int LLParser::ParseFence(Instruction *&Inst, PerFunctionState &PFS) {
4243 AtomicOrdering Ordering = NotAtomic;
4244 SynchronizationScope Scope = CrossThread;
4245 if (ParseScopeAndOrdering(true /*Always atomic*/, Scope, Ordering))
4246 return true;
4247
4248 if (Ordering == Unordered)
4249 return TokError("fence cannot be unordered");
4250 if (Ordering == Monotonic)
4251 return TokError("fence cannot be monotonic");
4252
4253 Inst = new FenceInst(Context, Ordering, Scope);
4254 return InstNormal;
4255}
4256
Chris Lattnerdf986172009-01-02 07:01:27 +00004257/// ParseGetElementPtr
Dan Gohmandd8004d2009-07-27 21:53:46 +00004258/// ::= 'getelementptr' 'inbounds'? TypeAndValue (',' TypeAndValue)*
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004259int LLParser::ParseGetElementPtr(Instruction *&Inst, PerFunctionState &PFS) {
Nadav Rotem16087692011-12-05 06:29:09 +00004260 Value *Ptr = 0;
4261 Value *Val = 0;
4262 LocTy Loc, EltLoc;
Dan Gohmandd8004d2009-07-27 21:53:46 +00004263
Dan Gohmandcb40a32009-07-29 15:58:36 +00004264 bool InBounds = EatIfPresent(lltok::kw_inbounds);
Dan Gohmandd8004d2009-07-27 21:53:46 +00004265
Chris Lattner3ed88ef2009-01-02 08:05:26 +00004266 if (ParseTypeAndValue(Ptr, Loc, PFS)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00004267
Eli Bendersky59eb5ee2013-04-22 17:03:42 +00004268 Type *BaseType = Ptr->getType();
4269 PointerType *BasePointerType = dyn_cast<PointerType>(BaseType->getScalarType());
4270 if (!BasePointerType)
Chris Lattnerdf986172009-01-02 07:01:27 +00004271 return Error(Loc, "base of getelementptr must be a pointer");
Daniel Dunbara279bc32009-09-20 02:20:51 +00004272
Chris Lattnerdf986172009-01-02 07:01:27 +00004273 SmallVector<Value*, 16> Indices;
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004274 bool AteExtraComma = false;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00004275 while (EatIfPresent(lltok::comma)) {
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004276 if (Lex.getKind() == lltok::MetadataVar) {
4277 AteExtraComma = true;
Devang Patel6225d642009-10-13 18:49:55 +00004278 break;
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004279 }
Chris Lattner3ed88ef2009-01-02 08:05:26 +00004280 if (ParseTypeAndValue(Val, EltLoc, PFS)) return true;
Nadav Rotem16087692011-12-05 06:29:09 +00004281 if (!Val->getType()->getScalarType()->isIntegerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00004282 return Error(EltLoc, "getelementptr index must be an integer");
Nadav Rotem16087692011-12-05 06:29:09 +00004283 if (Val->getType()->isVectorTy() != Ptr->getType()->isVectorTy())
4284 return Error(EltLoc, "getelementptr index type missmatch");
4285 if (Val->getType()->isVectorTy()) {
4286 unsigned ValNumEl = cast<VectorType>(Val->getType())->getNumElements();
4287 unsigned PtrNumEl = cast<VectorType>(Ptr->getType())->getNumElements();
4288 if (ValNumEl != PtrNumEl)
4289 return Error(EltLoc,
4290 "getelementptr vector index has a wrong number of elements");
4291 }
Chris Lattnerdf986172009-01-02 07:01:27 +00004292 Indices.push_back(Val);
4293 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00004294
Eli Bendersky59eb5ee2013-04-22 17:03:42 +00004295 if (!Indices.empty() && !BasePointerType->getElementType()->isSized())
4296 return Error(Loc, "base element of getelementptr must be sized");
4297
4298 if (!GetElementPtrInst::getIndexedType(BaseType, Indices))
Chris Lattnerdf986172009-01-02 07:01:27 +00004299 return Error(Loc, "invalid getelementptr indices");
Jay Foada9203102011-07-25 09:48:08 +00004300 Inst = GetElementPtrInst::Create(Ptr, Indices);
Dan Gohmandd8004d2009-07-27 21:53:46 +00004301 if (InBounds)
Dan Gohmanf8dbee72009-09-07 23:54:19 +00004302 cast<GetElementPtrInst>(Inst)->setIsInBounds(true);
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004303 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerdf986172009-01-02 07:01:27 +00004304}
4305
4306/// ParseExtractValue
4307/// ::= 'extractvalue' TypeAndValue (',' uint32)+
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004308int LLParser::ParseExtractValue(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00004309 Value *Val; LocTy Loc;
4310 SmallVector<unsigned, 4> Indices;
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004311 bool AteExtraComma;
Chris Lattnerdf986172009-01-02 07:01:27 +00004312 if (ParseTypeAndValue(Val, Loc, PFS) ||
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004313 ParseIndexList(Indices, AteExtraComma))
Chris Lattnerdf986172009-01-02 07:01:27 +00004314 return true;
4315
Chris Lattnerfdfeb692010-02-12 20:49:41 +00004316 if (!Val->getType()->isAggregateType())
4317 return Error(Loc, "extractvalue operand must be aggregate type");
Chris Lattnerdf986172009-01-02 07:01:27 +00004318
Jay Foadfc6d3a42011-07-13 10:26:04 +00004319 if (!ExtractValueInst::getIndexedType(Val->getType(), Indices))
Chris Lattnerdf986172009-01-02 07:01:27 +00004320 return Error(Loc, "invalid indices for extractvalue");
Jay Foadfc6d3a42011-07-13 10:26:04 +00004321 Inst = ExtractValueInst::Create(Val, Indices);
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004322 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerdf986172009-01-02 07:01:27 +00004323}
4324
4325/// ParseInsertValue
4326/// ::= 'insertvalue' TypeAndValue ',' TypeAndValue (',' uint32)+
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004327int LLParser::ParseInsertValue(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00004328 Value *Val0, *Val1; LocTy Loc0, Loc1;
4329 SmallVector<unsigned, 4> Indices;
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004330 bool AteExtraComma;
Chris Lattnerdf986172009-01-02 07:01:27 +00004331 if (ParseTypeAndValue(Val0, Loc0, PFS) ||
4332 ParseToken(lltok::comma, "expected comma after insertvalue operand") ||
4333 ParseTypeAndValue(Val1, Loc1, PFS) ||
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004334 ParseIndexList(Indices, AteExtraComma))
Chris Lattnerdf986172009-01-02 07:01:27 +00004335 return true;
Michael Ilseman407a6162012-11-15 22:34:00 +00004336
Chris Lattnerfdfeb692010-02-12 20:49:41 +00004337 if (!Val0->getType()->isAggregateType())
4338 return Error(Loc0, "insertvalue operand must be aggregate type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00004339
Jay Foadfc6d3a42011-07-13 10:26:04 +00004340 if (!ExtractValueInst::getIndexedType(Val0->getType(), Indices))
Chris Lattnerdf986172009-01-02 07:01:27 +00004341 return Error(Loc0, "invalid indices for insertvalue");
Jay Foadfc6d3a42011-07-13 10:26:04 +00004342 Inst = InsertValueInst::Create(Val0, Val1, Indices);
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004343 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerdf986172009-01-02 07:01:27 +00004344}
Nick Lewycky21cc4462009-04-04 07:22:01 +00004345
4346//===----------------------------------------------------------------------===//
4347// Embedded metadata.
4348//===----------------------------------------------------------------------===//
4349
4350/// ParseMDNodeVector
Nick Lewyckycb337992009-05-10 20:57:05 +00004351/// ::= Element (',' Element)*
4352/// Element
4353/// ::= 'null' | TypeAndValue
Victor Hernandezbf170d42010-01-05 22:22:14 +00004354bool LLParser::ParseMDNodeVector(SmallVectorImpl<Value*> &Elts,
Victor Hernandez24e64df2010-01-10 07:14:18 +00004355 PerFunctionState *PFS) {
Dan Gohmanac809752010-07-13 19:33:27 +00004356 // Check for an empty list.
4357 if (Lex.getKind() == lltok::rbrace)
4358 return false;
4359
Nick Lewycky21cc4462009-04-04 07:22:01 +00004360 do {
Chris Lattnera7352392009-12-30 04:42:57 +00004361 // Null is a special case since it is typeless.
4362 if (EatIfPresent(lltok::kw_null)) {
4363 Elts.push_back(0);
4364 continue;
Nick Lewyckycb337992009-05-10 20:57:05 +00004365 }
Michael Ilseman407a6162012-11-15 22:34:00 +00004366
Chris Lattnera7352392009-12-30 04:42:57 +00004367 Value *V = 0;
Chris Lattner1afcace2011-07-09 17:41:24 +00004368 if (ParseTypeAndValue(V, PFS)) return true;
Nick Lewyckycb337992009-05-10 20:57:05 +00004369 Elts.push_back(V);
Nick Lewycky21cc4462009-04-04 07:22:01 +00004370 } while (EatIfPresent(lltok::comma));
4371
4372 return false;
4373}