blob: bde18cd9fcc6a095471d0871f72fd4f6c8f7b06d [file] [log] [blame]
Chris Lattnerdf986172009-01-02 07:01:27 +00001//===-- LLParser.cpp - Parser Class ---------------------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file defines the parser class for .ll files.
11//
12//===----------------------------------------------------------------------===//
13
14#include "LLParser.h"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000015#include "llvm/ADT/SmallPtrSet.h"
Chris Lattnerdf986172009-01-02 07:01:27 +000016#include "llvm/AutoUpgrade.h"
Chandler Carruth0b8c9a82013-01-02 11:36:10 +000017#include "llvm/IR/CallingConv.h"
18#include "llvm/IR/Constants.h"
19#include "llvm/IR/DerivedTypes.h"
20#include "llvm/IR/InlineAsm.h"
21#include "llvm/IR/Instructions.h"
22#include "llvm/IR/Module.h"
23#include "llvm/IR/Operator.h"
24#include "llvm/IR/ValueSymbolTable.h"
Torok Edwinc25e7582009-07-11 20:10:48 +000025#include "llvm/Support/ErrorHandling.h"
Chris Lattnerdf986172009-01-02 07:01:27 +000026#include "llvm/Support/raw_ostream.h"
27using namespace llvm;
28
Chris Lattnerdb125cf2011-07-18 04:54:35 +000029static std::string getTypeString(Type *T) {
Chris Lattner0cd0d882011-06-18 21:18:23 +000030 std::string Result;
31 raw_string_ostream Tmp(Result);
32 Tmp << *T;
33 return Tmp.str();
34}
35
Chris Lattner3ed88ef2009-01-02 08:05:26 +000036/// Run: module ::= toplevelentity*
Chris Lattnerad7d1e22009-01-04 20:44:11 +000037bool LLParser::Run() {
Chris Lattner3ed88ef2009-01-02 08:05:26 +000038 // Prime the lexer.
39 Lex.Lex();
40
Chris Lattnerad7d1e22009-01-04 20:44:11 +000041 return ParseTopLevelEntities() ||
42 ValidateEndOfModule();
Chris Lattnerdf986172009-01-02 07:01:27 +000043}
44
45/// ValidateEndOfModule - Do final validity and sanity checks at the end of the
46/// module.
47bool LLParser::ValidateEndOfModule() {
Chris Lattner449c3102010-04-01 05:14:45 +000048 // Handle any instruction metadata forward references.
49 if (!ForwardRefInstMetadata.empty()) {
50 for (DenseMap<Instruction*, std::vector<MDRef> >::iterator
51 I = ForwardRefInstMetadata.begin(), E = ForwardRefInstMetadata.end();
52 I != E; ++I) {
53 Instruction *Inst = I->first;
54 const std::vector<MDRef> &MDList = I->second;
Michael Ilseman407a6162012-11-15 22:34:00 +000055
Chris Lattner449c3102010-04-01 05:14:45 +000056 for (unsigned i = 0, e = MDList.size(); i != e; ++i) {
57 unsigned SlotNo = MDList[i].MDSlot;
Michael Ilseman407a6162012-11-15 22:34:00 +000058
Chris Lattner449c3102010-04-01 05:14:45 +000059 if (SlotNo >= NumberedMetadata.size() || NumberedMetadata[SlotNo] == 0)
60 return Error(MDList[i].Loc, "use of undefined metadata '!" +
Benjamin Kramerd1e17032010-09-27 17:42:11 +000061 Twine(SlotNo) + "'");
Chris Lattner449c3102010-04-01 05:14:45 +000062 Inst->setMetadata(MDList[i].MDKind, NumberedMetadata[SlotNo]);
63 }
64 }
65 ForwardRefInstMetadata.clear();
66 }
Michael Ilseman407a6162012-11-15 22:34:00 +000067
Bill Wendlingbaad55c2013-02-08 06:32:06 +000068 // Handle any function attribute group forward references.
69 for (std::map<Value*, std::vector<unsigned> >::iterator
70 I = ForwardRefAttrGroups.begin(), E = ForwardRefAttrGroups.end();
71 I != E; ++I) {
72 Value *V = I->first;
73 std::vector<unsigned> &Vec = I->second;
74 AttrBuilder B;
75
76 for (std::vector<unsigned>::iterator VI = Vec.begin(), VE = Vec.end();
77 VI != VE; ++VI)
78 B.merge(NumberedAttrBuilders[*VI]);
79
80 if (Function *Fn = dyn_cast<Function>(V)) {
81 AttributeSet AS = Fn->getAttributes();
82 AttrBuilder FnAttrs(AS.getFnAttributes(), AttributeSet::FunctionIndex);
83 AS = AS.removeAttributes(Context, AttributeSet::FunctionIndex,
84 AS.getFnAttributes());
85
86 FnAttrs.merge(B);
87
88 // If the alignment was parsed as an attribute, move to the alignment
89 // field.
90 if (FnAttrs.hasAlignmentAttr()) {
91 Fn->setAlignment(FnAttrs.getAlignment());
92 FnAttrs.removeAttribute(Attribute::Alignment);
93 }
94
95 AS = AS.addAttributes(Context, AttributeSet::FunctionIndex,
96 AttributeSet::get(Context,
97 AttributeSet::FunctionIndex,
98 FnAttrs));
99 Fn->setAttributes(AS);
100 } else if (CallInst *CI = dyn_cast<CallInst>(V)) {
101 AttributeSet AS = CI->getAttributes();
102 AttrBuilder FnAttrs(AS.getFnAttributes(), AttributeSet::FunctionIndex);
103 AS = AS.removeAttributes(Context, AttributeSet::FunctionIndex,
104 AS.getFnAttributes());
Bill Wendlingf5467622013-02-12 10:13:06 +0000105 FnAttrs.merge(B);
Bill Wendlingbaad55c2013-02-08 06:32:06 +0000106 AS = AS.addAttributes(Context, AttributeSet::FunctionIndex,
107 AttributeSet::get(Context,
108 AttributeSet::FunctionIndex,
109 FnAttrs));
110 CI->setAttributes(AS);
111 } else if (InvokeInst *II = dyn_cast<InvokeInst>(V)) {
112 AttributeSet AS = II->getAttributes();
113 AttrBuilder FnAttrs(AS.getFnAttributes(), AttributeSet::FunctionIndex);
114 AS = AS.removeAttributes(Context, AttributeSet::FunctionIndex,
115 AS.getFnAttributes());
Bill Wendlingf5467622013-02-12 10:13:06 +0000116 FnAttrs.merge(B);
Bill Wendlingbaad55c2013-02-08 06:32:06 +0000117 AS = AS.addAttributes(Context, AttributeSet::FunctionIndex,
118 AttributeSet::get(Context,
119 AttributeSet::FunctionIndex,
120 FnAttrs));
121 II->setAttributes(AS);
122 } else {
123 llvm_unreachable("invalid object with forward attribute group reference");
124 }
125 }
Michael Ilseman407a6162012-11-15 22:34:00 +0000126
Chris Lattner09d9ef42009-10-28 03:39:23 +0000127 // If there are entries in ForwardRefBlockAddresses at this point, they are
128 // references after the function was defined. Resolve those now.
129 while (!ForwardRefBlockAddresses.empty()) {
130 // Okay, we are referencing an already-parsed function, resolve them now.
131 Function *TheFn = 0;
132 const ValID &Fn = ForwardRefBlockAddresses.begin()->first;
133 if (Fn.Kind == ValID::t_GlobalName)
134 TheFn = M->getFunction(Fn.StrVal);
135 else if (Fn.UIntVal < NumberedVals.size())
136 TheFn = dyn_cast<Function>(NumberedVals[Fn.UIntVal]);
Michael Ilseman407a6162012-11-15 22:34:00 +0000137
Chris Lattner09d9ef42009-10-28 03:39:23 +0000138 if (TheFn == 0)
139 return Error(Fn.Loc, "unknown function referenced by blockaddress");
Michael Ilseman407a6162012-11-15 22:34:00 +0000140
Chris Lattner09d9ef42009-10-28 03:39:23 +0000141 // Resolve all these references.
Michael Ilseman407a6162012-11-15 22:34:00 +0000142 if (ResolveForwardRefBlockAddresses(TheFn,
Chris Lattner09d9ef42009-10-28 03:39:23 +0000143 ForwardRefBlockAddresses.begin()->second,
144 0))
145 return true;
Michael Ilseman407a6162012-11-15 22:34:00 +0000146
Chris Lattner09d9ef42009-10-28 03:39:23 +0000147 ForwardRefBlockAddresses.erase(ForwardRefBlockAddresses.begin());
148 }
Michael Ilseman407a6162012-11-15 22:34:00 +0000149
Chris Lattner1afcace2011-07-09 17:41:24 +0000150 for (unsigned i = 0, e = NumberedTypes.size(); i != e; ++i)
151 if (NumberedTypes[i].second.isValid())
152 return Error(NumberedTypes[i].second,
153 "use of undefined type '%" + Twine(i) + "'");
154
155 for (StringMap<std::pair<Type*, LocTy> >::iterator I =
156 NamedTypes.begin(), E = NamedTypes.end(); I != E; ++I)
157 if (I->second.second.isValid())
158 return Error(I->second.second,
159 "use of undefined type named '" + I->getKey() + "'");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000160
Chris Lattnerdf986172009-01-02 07:01:27 +0000161 if (!ForwardRefVals.empty())
162 return Error(ForwardRefVals.begin()->second.second,
163 "use of undefined value '@" + ForwardRefVals.begin()->first +
164 "'");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000165
Chris Lattnerdf986172009-01-02 07:01:27 +0000166 if (!ForwardRefValIDs.empty())
167 return Error(ForwardRefValIDs.begin()->second.second,
168 "use of undefined value '@" +
Benjamin Kramerd1e17032010-09-27 17:42:11 +0000169 Twine(ForwardRefValIDs.begin()->first) + "'");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000170
Devang Patel1c7eea62009-07-08 19:23:54 +0000171 if (!ForwardRefMDNodes.empty())
172 return Error(ForwardRefMDNodes.begin()->second.second,
173 "use of undefined metadata '!" +
Benjamin Kramerd1e17032010-09-27 17:42:11 +0000174 Twine(ForwardRefMDNodes.begin()->first) + "'");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000175
Devang Patel1c7eea62009-07-08 19:23:54 +0000176
Chris Lattnerdf986172009-01-02 07:01:27 +0000177 // Look for intrinsic functions and CallInst that need to be upgraded
178 for (Module::iterator FI = M->begin(), FE = M->end(); FI != FE; )
179 UpgradeCallsToIntrinsic(FI++); // must be post-increment, as we remove
Daniel Dunbara279bc32009-09-20 02:20:51 +0000180
Chris Lattnerdf986172009-01-02 07:01:27 +0000181 return false;
182}
183
Michael Ilseman407a6162012-11-15 22:34:00 +0000184bool LLParser::ResolveForwardRefBlockAddresses(Function *TheFn,
Chris Lattner09d9ef42009-10-28 03:39:23 +0000185 std::vector<std::pair<ValID, GlobalValue*> > &Refs,
186 PerFunctionState *PFS) {
187 // Loop over all the references, resolving them.
188 for (unsigned i = 0, e = Refs.size(); i != e; ++i) {
189 BasicBlock *Res;
Chris Lattnercdfc9402009-11-01 01:27:45 +0000190 if (PFS) {
Chris Lattner09d9ef42009-10-28 03:39:23 +0000191 if (Refs[i].first.Kind == ValID::t_LocalName)
192 Res = PFS->GetBB(Refs[i].first.StrVal, Refs[i].first.Loc);
Chris Lattnercdfc9402009-11-01 01:27:45 +0000193 else
Chris Lattner09d9ef42009-10-28 03:39:23 +0000194 Res = PFS->GetBB(Refs[i].first.UIntVal, Refs[i].first.Loc);
195 } else if (Refs[i].first.Kind == ValID::t_LocalID) {
196 return Error(Refs[i].first.Loc,
Chris Lattneree7644d2009-11-02 18:28:45 +0000197 "cannot take address of numeric label after the function is defined");
Chris Lattner09d9ef42009-10-28 03:39:23 +0000198 } else {
199 Res = dyn_cast_or_null<BasicBlock>(
200 TheFn->getValueSymbolTable().lookup(Refs[i].first.StrVal));
201 }
Michael Ilseman407a6162012-11-15 22:34:00 +0000202
Chris Lattnercdfc9402009-11-01 01:27:45 +0000203 if (Res == 0)
Chris Lattner09d9ef42009-10-28 03:39:23 +0000204 return Error(Refs[i].first.Loc,
205 "referenced value is not a basic block");
Michael Ilseman407a6162012-11-15 22:34:00 +0000206
Chris Lattner09d9ef42009-10-28 03:39:23 +0000207 // Get the BlockAddress for this and update references to use it.
208 BlockAddress *BA = BlockAddress::get(TheFn, Res);
209 Refs[i].second->replaceAllUsesWith(BA);
210 Refs[i].second->eraseFromParent();
211 }
212 return false;
213}
214
215
Chris Lattnerdf986172009-01-02 07:01:27 +0000216//===----------------------------------------------------------------------===//
217// Top-Level Entities
218//===----------------------------------------------------------------------===//
219
220bool LLParser::ParseTopLevelEntities() {
Chris Lattnerdf986172009-01-02 07:01:27 +0000221 while (1) {
222 switch (Lex.getKind()) {
223 default: return TokError("expected top-level entity");
224 case lltok::Eof: return false;
Chris Lattnerdf986172009-01-02 07:01:27 +0000225 case lltok::kw_declare: if (ParseDeclare()) return true; break;
226 case lltok::kw_define: if (ParseDefine()) return true; break;
227 case lltok::kw_module: if (ParseModuleAsm()) return true; break;
228 case lltok::kw_target: if (ParseTargetDefinition()) return true; break;
Bill Wendling3defc0b2012-11-28 08:41:48 +0000229 case lltok::kw_deplibs: if (ParseDepLibs()) return true; break;
Dan Gohman3845e502009-08-12 23:32:33 +0000230 case lltok::LocalVarID: if (ParseUnnamedType()) return true; break;
Chris Lattnerdf986172009-01-02 07:01:27 +0000231 case lltok::LocalVar: if (ParseNamedType()) return true; break;
Dan Gohman3845e502009-08-12 23:32:33 +0000232 case lltok::GlobalID: if (ParseUnnamedGlobal()) return true; break;
Chris Lattnerdf986172009-01-02 07:01:27 +0000233 case lltok::GlobalVar: if (ParseNamedGlobal()) return true; break;
Chris Lattnere434d272009-12-30 04:56:59 +0000234 case lltok::exclaim: if (ParseStandaloneMetadata()) return true; break;
Bill Wendling95ce4c22013-02-06 06:52:58 +0000235 case lltok::MetadataVar:if (ParseNamedMetadata()) return true; break;
Chris Lattnerdf986172009-01-02 07:01:27 +0000236
237 // The Global variable production with no name can have many different
238 // optional leading prefixes, the production is:
239 // GlobalVar ::= OptionalLinkage OptionalVisibility OptionalThreadLocal
Rafael Espindolabea46262011-01-08 16:42:36 +0000240 // OptionalAddrSpace OptionalUnNammedAddr
241 // ('constant'|'global') ...
Bill Wendling5e721d72010-07-01 21:55:59 +0000242 case lltok::kw_private: // OptionalLinkage
243 case lltok::kw_linker_private: // OptionalLinkage
244 case lltok::kw_linker_private_weak: // OptionalLinkage
Bill Wendling32811be2012-08-17 18:33:14 +0000245 case lltok::kw_linker_private_weak_def_auto: // FIXME: backwards compat.
Bill Wendling5e721d72010-07-01 21:55:59 +0000246 case lltok::kw_internal: // OptionalLinkage
247 case lltok::kw_weak: // OptionalLinkage
248 case lltok::kw_weak_odr: // OptionalLinkage
249 case lltok::kw_linkonce: // OptionalLinkage
250 case lltok::kw_linkonce_odr: // OptionalLinkage
Bill Wendling32811be2012-08-17 18:33:14 +0000251 case lltok::kw_linkonce_odr_auto_hide: // OptionalLinkage
Bill Wendling5e721d72010-07-01 21:55:59 +0000252 case lltok::kw_appending: // OptionalLinkage
253 case lltok::kw_dllexport: // OptionalLinkage
254 case lltok::kw_common: // OptionalLinkage
255 case lltok::kw_dllimport: // OptionalLinkage
256 case lltok::kw_extern_weak: // OptionalLinkage
257 case lltok::kw_external: { // OptionalLinkage
Chris Lattnerdf986172009-01-02 07:01:27 +0000258 unsigned Linkage, Visibility;
259 if (ParseOptionalLinkage(Linkage) ||
260 ParseOptionalVisibility(Visibility) ||
Chris Lattnereeb4a842009-07-02 23:08:13 +0000261 ParseGlobal("", SMLoc(), Linkage, true, Visibility))
Chris Lattnerdf986172009-01-02 07:01:27 +0000262 return true;
263 break;
264 }
265 case lltok::kw_default: // OptionalVisibility
266 case lltok::kw_hidden: // OptionalVisibility
267 case lltok::kw_protected: { // OptionalVisibility
268 unsigned Visibility;
269 if (ParseOptionalVisibility(Visibility) ||
Chris Lattnereeb4a842009-07-02 23:08:13 +0000270 ParseGlobal("", SMLoc(), 0, false, Visibility))
Chris Lattnerdf986172009-01-02 07:01:27 +0000271 return true;
272 break;
273 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000274
Chris Lattnerdf986172009-01-02 07:01:27 +0000275 case lltok::kw_thread_local: // OptionalThreadLocal
276 case lltok::kw_addrspace: // OptionalAddrSpace
277 case lltok::kw_constant: // GlobalType
278 case lltok::kw_global: // GlobalType
Chris Lattnereeb4a842009-07-02 23:08:13 +0000279 if (ParseGlobal("", SMLoc(), 0, false, 0)) return true;
Chris Lattnerdf986172009-01-02 07:01:27 +0000280 break;
Bill Wendling0b778662013-02-09 15:48:49 +0000281
282 case lltok::kw_attributes: if (ParseUnnamedAttrGrp()) return true; break;
Chris Lattnerdf986172009-01-02 07:01:27 +0000283 }
284 }
285}
286
287
288/// toplevelentity
289/// ::= 'module' 'asm' STRINGCONSTANT
290bool LLParser::ParseModuleAsm() {
291 assert(Lex.getKind() == lltok::kw_module);
292 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +0000293
294 std::string AsmStr;
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000295 if (ParseToken(lltok::kw_asm, "expected 'module asm'") ||
296 ParseStringConstant(AsmStr)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000297
Rafael Espindola38c4e532011-03-02 04:14:42 +0000298 M->appendModuleInlineAsm(AsmStr);
Chris Lattnerdf986172009-01-02 07:01:27 +0000299 return false;
300}
301
302/// toplevelentity
303/// ::= 'target' 'triple' '=' STRINGCONSTANT
304/// ::= 'target' 'datalayout' '=' STRINGCONSTANT
305bool LLParser::ParseTargetDefinition() {
306 assert(Lex.getKind() == lltok::kw_target);
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000307 std::string Str;
Chris Lattnerdf986172009-01-02 07:01:27 +0000308 switch (Lex.Lex()) {
309 default: return TokError("unknown target property");
310 case lltok::kw_triple:
311 Lex.Lex();
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000312 if (ParseToken(lltok::equal, "expected '=' after target triple") ||
313 ParseStringConstant(Str))
Chris Lattnerdf986172009-01-02 07:01:27 +0000314 return true;
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000315 M->setTargetTriple(Str);
Chris Lattnerdf986172009-01-02 07:01:27 +0000316 return false;
317 case lltok::kw_datalayout:
318 Lex.Lex();
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000319 if (ParseToken(lltok::equal, "expected '=' after target datalayout") ||
320 ParseStringConstant(Str))
Chris Lattnerdf986172009-01-02 07:01:27 +0000321 return true;
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000322 M->setDataLayout(Str);
Chris Lattnerdf986172009-01-02 07:01:27 +0000323 return false;
324 }
325}
326
Bill Wendling3defc0b2012-11-28 08:41:48 +0000327/// toplevelentity
328/// ::= 'deplibs' '=' '[' ']'
329/// ::= 'deplibs' '=' '[' STRINGCONSTANT (',' STRINGCONSTANT)* ']'
330/// FIXME: Remove in 4.0. Currently parse, but ignore.
331bool LLParser::ParseDepLibs() {
332 assert(Lex.getKind() == lltok::kw_deplibs);
333 Lex.Lex();
334 if (ParseToken(lltok::equal, "expected '=' after deplibs") ||
335 ParseToken(lltok::lsquare, "expected '=' after deplibs"))
336 return true;
337
338 if (EatIfPresent(lltok::rsquare))
339 return false;
340
341 do {
342 std::string Str;
343 if (ParseStringConstant(Str)) return true;
344 } while (EatIfPresent(lltok::comma));
345
346 return ParseToken(lltok::rsquare, "expected ']' at end of list");
347}
348
Dan Gohman3845e502009-08-12 23:32:33 +0000349/// ParseUnnamedType:
Dan Gohman3845e502009-08-12 23:32:33 +0000350/// ::= LocalVarID '=' 'type' type
Chris Lattnerdf986172009-01-02 07:01:27 +0000351bool LLParser::ParseUnnamedType() {
Chris Lattneredcaca82011-06-18 23:51:31 +0000352 LocTy TypeLoc = Lex.getLoc();
Chris Lattner1afcace2011-07-09 17:41:24 +0000353 unsigned TypeID = Lex.getUIntVal();
Chris Lattnera53616d2011-06-19 00:03:46 +0000354 Lex.Lex(); // eat LocalVarID;
355
356 if (ParseToken(lltok::equal, "expected '=' after name") ||
357 ParseToken(lltok::kw_type, "expected 'type' after '='"))
358 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +0000359
Chris Lattner1afcace2011-07-09 17:41:24 +0000360 if (TypeID >= NumberedTypes.size())
361 NumberedTypes.resize(TypeID+1);
Michael Ilseman407a6162012-11-15 22:34:00 +0000362
Chris Lattner1afcace2011-07-09 17:41:24 +0000363 Type *Result = 0;
364 if (ParseStructDefinition(TypeLoc, "",
365 NumberedTypes[TypeID], Result)) return true;
Michael Ilseman407a6162012-11-15 22:34:00 +0000366
Chris Lattner1afcace2011-07-09 17:41:24 +0000367 if (!isa<StructType>(Result)) {
368 std::pair<Type*, LocTy> &Entry = NumberedTypes[TypeID];
369 if (Entry.first)
370 return Error(TypeLoc, "non-struct types may not be recursive");
371 Entry.first = Result;
372 Entry.second = SMLoc();
Chris Lattnerdf986172009-01-02 07:01:27 +0000373 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000374
Chris Lattnerdf986172009-01-02 07:01:27 +0000375 return false;
376}
377
Chris Lattner1afcace2011-07-09 17:41:24 +0000378
Chris Lattnerdf986172009-01-02 07:01:27 +0000379/// toplevelentity
380/// ::= LocalVar '=' 'type' type
381bool LLParser::ParseNamedType() {
382 std::string Name = Lex.getStrVal();
383 LocTy NameLoc = Lex.getLoc();
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000384 Lex.Lex(); // eat LocalVar.
Daniel Dunbara279bc32009-09-20 02:20:51 +0000385
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000386 if (ParseToken(lltok::equal, "expected '=' after name") ||
Chris Lattner1afcace2011-07-09 17:41:24 +0000387 ParseToken(lltok::kw_type, "expected 'type' after name"))
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000388 return true;
Michael Ilseman407a6162012-11-15 22:34:00 +0000389
Chris Lattner1afcace2011-07-09 17:41:24 +0000390 Type *Result = 0;
391 if (ParseStructDefinition(NameLoc, Name,
392 NamedTypes[Name], Result)) return true;
Michael Ilseman407a6162012-11-15 22:34:00 +0000393
Chris Lattner1afcace2011-07-09 17:41:24 +0000394 if (!isa<StructType>(Result)) {
395 std::pair<Type*, LocTy> &Entry = NamedTypes[Name];
396 if (Entry.first)
397 return Error(NameLoc, "non-struct types may not be recursive");
398 Entry.first = Result;
399 Entry.second = SMLoc();
Chris Lattnerdf986172009-01-02 07:01:27 +0000400 }
Michael Ilseman407a6162012-11-15 22:34:00 +0000401
Chris Lattner1afcace2011-07-09 17:41:24 +0000402 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +0000403}
404
405
406/// toplevelentity
407/// ::= 'declare' FunctionHeader
408bool LLParser::ParseDeclare() {
409 assert(Lex.getKind() == lltok::kw_declare);
410 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +0000411
Chris Lattnerdf986172009-01-02 07:01:27 +0000412 Function *F;
413 return ParseFunctionHeader(F, false);
414}
415
416/// toplevelentity
417/// ::= 'define' FunctionHeader '{' ...
418bool LLParser::ParseDefine() {
419 assert(Lex.getKind() == lltok::kw_define);
420 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +0000421
Chris Lattnerdf986172009-01-02 07:01:27 +0000422 Function *F;
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000423 return ParseFunctionHeader(F, true) ||
424 ParseFunctionBody(*F);
Chris Lattnerdf986172009-01-02 07:01:27 +0000425}
426
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000427/// ParseGlobalType
428/// ::= 'constant'
429/// ::= 'global'
Chris Lattnerdf986172009-01-02 07:01:27 +0000430bool LLParser::ParseGlobalType(bool &IsConstant) {
431 if (Lex.getKind() == lltok::kw_constant)
432 IsConstant = true;
433 else if (Lex.getKind() == lltok::kw_global)
434 IsConstant = false;
Duncan Sands35b51072009-02-10 16:24:55 +0000435 else {
436 IsConstant = false;
Chris Lattnerdf986172009-01-02 07:01:27 +0000437 return TokError("expected 'global' or 'constant'");
Duncan Sands35b51072009-02-10 16:24:55 +0000438 }
Chris Lattnerdf986172009-01-02 07:01:27 +0000439 Lex.Lex();
440 return false;
441}
442
Dan Gohman3845e502009-08-12 23:32:33 +0000443/// ParseUnnamedGlobal:
444/// OptionalVisibility ALIAS ...
445/// OptionalLinkage OptionalVisibility ... -> global variable
446/// GlobalID '=' OptionalVisibility ALIAS ...
447/// GlobalID '=' OptionalLinkage OptionalVisibility ... -> global variable
448bool LLParser::ParseUnnamedGlobal() {
449 unsigned VarID = NumberedVals.size();
450 std::string Name;
451 LocTy NameLoc = Lex.getLoc();
452
453 // Handle the GlobalID form.
454 if (Lex.getKind() == lltok::GlobalID) {
455 if (Lex.getUIntVal() != VarID)
456 return Error(Lex.getLoc(), "variable expected to be numbered '%" +
Benjamin Kramerd1e17032010-09-27 17:42:11 +0000457 Twine(VarID) + "'");
Dan Gohman3845e502009-08-12 23:32:33 +0000458 Lex.Lex(); // eat GlobalID;
459
460 if (ParseToken(lltok::equal, "expected '=' after name"))
461 return true;
462 }
463
464 bool HasLinkage;
465 unsigned Linkage, Visibility;
466 if (ParseOptionalLinkage(Linkage, HasLinkage) ||
467 ParseOptionalVisibility(Visibility))
468 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000469
Dan Gohman3845e502009-08-12 23:32:33 +0000470 if (HasLinkage || Lex.getKind() != lltok::kw_alias)
471 return ParseGlobal(Name, NameLoc, Linkage, HasLinkage, Visibility);
472 return ParseAlias(Name, NameLoc, Visibility);
473}
474
Chris Lattnerdf986172009-01-02 07:01:27 +0000475/// ParseNamedGlobal:
476/// GlobalVar '=' OptionalVisibility ALIAS ...
477/// GlobalVar '=' OptionalLinkage OptionalVisibility ... -> global variable
478bool LLParser::ParseNamedGlobal() {
479 assert(Lex.getKind() == lltok::GlobalVar);
480 LocTy NameLoc = Lex.getLoc();
481 std::string Name = Lex.getStrVal();
482 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +0000483
Chris Lattnerdf986172009-01-02 07:01:27 +0000484 bool HasLinkage;
485 unsigned Linkage, Visibility;
486 if (ParseToken(lltok::equal, "expected '=' in global variable") ||
487 ParseOptionalLinkage(Linkage, HasLinkage) ||
488 ParseOptionalVisibility(Visibility))
489 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000490
Chris Lattnerdf986172009-01-02 07:01:27 +0000491 if (HasLinkage || Lex.getKind() != lltok::kw_alias)
492 return ParseGlobal(Name, NameLoc, Linkage, HasLinkage, Visibility);
493 return ParseAlias(Name, NameLoc, Visibility);
494}
495
Devang Patel256be962009-07-20 19:00:08 +0000496// MDString:
497// ::= '!' STRINGCONSTANT
Chris Lattner442ffa12009-12-29 21:53:55 +0000498bool LLParser::ParseMDString(MDString *&Result) {
Devang Patel256be962009-07-20 19:00:08 +0000499 std::string Str;
500 if (ParseStringConstant(Str)) return true;
Chris Lattner442ffa12009-12-29 21:53:55 +0000501 Result = MDString::get(Context, Str);
Devang Patel256be962009-07-20 19:00:08 +0000502 return false;
503}
504
505// MDNode:
506// ::= '!' MDNodeNumber
Chris Lattner449c3102010-04-01 05:14:45 +0000507//
508/// This version of ParseMDNodeID returns the slot number and null in the case
509/// of a forward reference.
510bool LLParser::ParseMDNodeID(MDNode *&Result, unsigned &SlotNo) {
511 // !{ ..., !42, ... }
512 if (ParseUInt32(SlotNo)) return true;
513
514 // Check existing MDNode.
515 if (SlotNo < NumberedMetadata.size() && NumberedMetadata[SlotNo] != 0)
516 Result = NumberedMetadata[SlotNo];
517 else
518 Result = 0;
519 return false;
520}
521
Chris Lattner4a72efc2009-12-30 04:15:23 +0000522bool LLParser::ParseMDNodeID(MDNode *&Result) {
Devang Patel256be962009-07-20 19:00:08 +0000523 // !{ ..., !42, ... }
524 unsigned MID = 0;
Chris Lattner449c3102010-04-01 05:14:45 +0000525 if (ParseMDNodeID(Result, MID)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000526
Chris Lattner449c3102010-04-01 05:14:45 +0000527 // If not a forward reference, just return it now.
528 if (Result) return false;
Devang Patel256be962009-07-20 19:00:08 +0000529
Chris Lattner449c3102010-04-01 05:14:45 +0000530 // Otherwise, create MDNode forward reference.
Jay Foadec9186b2011-04-21 19:59:31 +0000531 MDNode *FwdNode = MDNode::getTemporary(Context, ArrayRef<Value*>());
Devang Patel256be962009-07-20 19:00:08 +0000532 ForwardRefMDNodes[MID] = std::make_pair(FwdNode, Lex.getLoc());
Michael Ilseman407a6162012-11-15 22:34:00 +0000533
Chris Lattner0834e6a2009-12-30 04:51:58 +0000534 if (NumberedMetadata.size() <= MID)
535 NumberedMetadata.resize(MID+1);
536 NumberedMetadata[MID] = FwdNode;
Chris Lattner442ffa12009-12-29 21:53:55 +0000537 Result = FwdNode;
Devang Patel256be962009-07-20 19:00:08 +0000538 return false;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000539}
Devang Patel256be962009-07-20 19:00:08 +0000540
Chris Lattner84d03b12009-12-29 22:35:39 +0000541/// ParseNamedMetadata:
Devang Pateleff2ab62009-07-29 00:34:02 +0000542/// !foo = !{ !1, !2 }
543bool LLParser::ParseNamedMetadata() {
Chris Lattner1d928312009-12-30 05:02:06 +0000544 assert(Lex.getKind() == lltok::MetadataVar);
Devang Pateleff2ab62009-07-29 00:34:02 +0000545 std::string Name = Lex.getStrVal();
Chris Lattner1d928312009-12-30 05:02:06 +0000546 Lex.Lex();
Devang Pateleff2ab62009-07-29 00:34:02 +0000547
Chris Lattner84d03b12009-12-29 22:35:39 +0000548 if (ParseToken(lltok::equal, "expected '=' here") ||
Chris Lattnere434d272009-12-30 04:56:59 +0000549 ParseToken(lltok::exclaim, "Expected '!' here") ||
Chris Lattner84d03b12009-12-29 22:35:39 +0000550 ParseToken(lltok::lbrace, "Expected '{' here"))
Devang Pateleff2ab62009-07-29 00:34:02 +0000551 return true;
552
Dan Gohman17aa92c2010-07-21 23:38:33 +0000553 NamedMDNode *NMD = M->getOrInsertNamedMetadata(Name);
Dan Gohman9dc8ae12010-07-13 19:42:44 +0000554 if (Lex.getKind() != lltok::rbrace)
555 do {
Dan Gohman9dc8ae12010-07-13 19:42:44 +0000556 if (ParseToken(lltok::exclaim, "Expected '!' here"))
557 return true;
Michael Ilseman407a6162012-11-15 22:34:00 +0000558
Dan Gohman9dc8ae12010-07-13 19:42:44 +0000559 MDNode *N = 0;
560 if (ParseMDNodeID(N)) return true;
Dan Gohman17aa92c2010-07-21 23:38:33 +0000561 NMD->addOperand(N);
Dan Gohman9dc8ae12010-07-13 19:42:44 +0000562 } while (EatIfPresent(lltok::comma));
Devang Pateleff2ab62009-07-29 00:34:02 +0000563
564 if (ParseToken(lltok::rbrace, "expected end of metadata node"))
565 return true;
566
Devang Pateleff2ab62009-07-29 00:34:02 +0000567 return false;
568}
569
Devang Patel923078c2009-07-01 19:21:12 +0000570/// ParseStandaloneMetadata:
Daniel Dunbara279bc32009-09-20 02:20:51 +0000571/// !42 = !{...}
Devang Patel923078c2009-07-01 19:21:12 +0000572bool LLParser::ParseStandaloneMetadata() {
Chris Lattnere434d272009-12-30 04:56:59 +0000573 assert(Lex.getKind() == lltok::exclaim);
Devang Patel923078c2009-07-01 19:21:12 +0000574 Lex.Lex();
575 unsigned MetadataID = 0;
Devang Patel923078c2009-07-01 19:21:12 +0000576
577 LocTy TyLoc;
Chris Lattner1afcace2011-07-09 17:41:24 +0000578 Type *Ty = 0;
Devang Patel104cf9e2009-07-23 01:07:34 +0000579 SmallVector<Value *, 16> Elts;
Chris Lattner3f5132a2009-12-29 22:40:21 +0000580 if (ParseUInt32(MetadataID) ||
581 ParseToken(lltok::equal, "expected '=' here") ||
582 ParseType(Ty, TyLoc) ||
Chris Lattnere434d272009-12-30 04:56:59 +0000583 ParseToken(lltok::exclaim, "Expected '!' here") ||
Chris Lattner3f5132a2009-12-29 22:40:21 +0000584 ParseToken(lltok::lbrace, "Expected '{' here") ||
Victor Hernandez24e64df2010-01-10 07:14:18 +0000585 ParseMDNodeVector(Elts, NULL) ||
Chris Lattner3f5132a2009-12-29 22:40:21 +0000586 ParseToken(lltok::rbrace, "expected end of metadata node"))
Devang Patel104cf9e2009-07-23 01:07:34 +0000587 return true;
588
Jay Foadec9186b2011-04-21 19:59:31 +0000589 MDNode *Init = MDNode::get(Context, Elts);
Michael Ilseman407a6162012-11-15 22:34:00 +0000590
Chris Lattner0834e6a2009-12-30 04:51:58 +0000591 // See if this was forward referenced, if so, handle it.
Chris Lattnere80250e2009-12-29 21:43:58 +0000592 std::map<unsigned, std::pair<TrackingVH<MDNode>, LocTy> >::iterator
Devang Patel1c7eea62009-07-08 19:23:54 +0000593 FI = ForwardRefMDNodes.find(MetadataID);
594 if (FI != ForwardRefMDNodes.end()) {
Dan Gohman489b29b2010-08-20 22:02:26 +0000595 MDNode *Temp = FI->second.first;
596 Temp->replaceAllUsesWith(Init);
597 MDNode::deleteTemporary(Temp);
Devang Patel1c7eea62009-07-08 19:23:54 +0000598 ForwardRefMDNodes.erase(FI);
Michael Ilseman407a6162012-11-15 22:34:00 +0000599
Chris Lattner0834e6a2009-12-30 04:51:58 +0000600 assert(NumberedMetadata[MetadataID] == Init && "Tracking VH didn't work");
601 } else {
602 if (MetadataID >= NumberedMetadata.size())
603 NumberedMetadata.resize(MetadataID+1);
604
605 if (NumberedMetadata[MetadataID] != 0)
606 return TokError("Metadata id is already used");
607 NumberedMetadata[MetadataID] = Init;
Devang Patel1c7eea62009-07-08 19:23:54 +0000608 }
609
Devang Patel923078c2009-07-01 19:21:12 +0000610 return false;
611}
612
Chris Lattnerdf986172009-01-02 07:01:27 +0000613/// ParseAlias:
614/// ::= GlobalVar '=' OptionalVisibility 'alias' OptionalLinkage Aliasee
615/// Aliasee
Chris Lattner040f7582009-04-25 21:26:00 +0000616/// ::= TypeAndValue
617/// ::= 'bitcast' '(' TypeAndValue 'to' Type ')'
Dan Gohmandd8004d2009-07-27 21:53:46 +0000618/// ::= 'getelementptr' 'inbounds'? '(' ... ')'
Chris Lattnerdf986172009-01-02 07:01:27 +0000619///
620/// Everything through visibility has already been parsed.
621///
622bool LLParser::ParseAlias(const std::string &Name, LocTy NameLoc,
623 unsigned Visibility) {
624 assert(Lex.getKind() == lltok::kw_alias);
625 Lex.Lex();
626 unsigned Linkage;
627 LocTy LinkageLoc = Lex.getLoc();
628 if (ParseOptionalLinkage(Linkage))
629 return true;
630
631 if (Linkage != GlobalValue::ExternalLinkage &&
Duncan Sands667d4b82009-03-07 15:45:40 +0000632 Linkage != GlobalValue::WeakAnyLinkage &&
633 Linkage != GlobalValue::WeakODRLinkage &&
Rafael Espindolabb46f522009-01-15 20:18:42 +0000634 Linkage != GlobalValue::InternalLinkage &&
Bill Wendling3d10a5a2009-07-20 01:03:30 +0000635 Linkage != GlobalValue::PrivateLinkage &&
Bill Wendling5e721d72010-07-01 21:55:59 +0000636 Linkage != GlobalValue::LinkerPrivateLinkage &&
Bill Wendling32811be2012-08-17 18:33:14 +0000637 Linkage != GlobalValue::LinkerPrivateWeakLinkage)
Chris Lattnerdf986172009-01-02 07:01:27 +0000638 return Error(LinkageLoc, "invalid linkage type for alias");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000639
Chris Lattnerdf986172009-01-02 07:01:27 +0000640 Constant *Aliasee;
641 LocTy AliaseeLoc = Lex.getLoc();
Chris Lattner040f7582009-04-25 21:26:00 +0000642 if (Lex.getKind() != lltok::kw_bitcast &&
643 Lex.getKind() != lltok::kw_getelementptr) {
Chris Lattnerdf986172009-01-02 07:01:27 +0000644 if (ParseGlobalTypeAndValue(Aliasee)) return true;
645 } else {
646 // The bitcast dest type is not present, it is implied by the dest type.
647 ValID ID;
648 if (ParseValID(ID)) return true;
649 if (ID.Kind != ValID::t_Constant)
650 return Error(AliaseeLoc, "invalid aliasee");
651 Aliasee = ID.ConstantVal;
652 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000653
Duncan Sands1df98592010-02-16 11:11:14 +0000654 if (!Aliasee->getType()->isPointerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +0000655 return Error(AliaseeLoc, "alias must have pointer type");
656
657 // Okay, create the alias but do not insert it into the module yet.
658 GlobalAlias* GA = new GlobalAlias(Aliasee->getType(),
659 (GlobalValue::LinkageTypes)Linkage, Name,
660 Aliasee);
661 GA->setVisibility((GlobalValue::VisibilityTypes)Visibility);
Daniel Dunbara279bc32009-09-20 02:20:51 +0000662
Chris Lattnerdf986172009-01-02 07:01:27 +0000663 // See if this value already exists in the symbol table. If so, it is either
664 // a redefinition or a definition of a forward reference.
Chris Lattner1d871c52009-10-25 23:22:50 +0000665 if (GlobalValue *Val = M->getNamedValue(Name)) {
Chris Lattnerdf986172009-01-02 07:01:27 +0000666 // See if this was a redefinition. If so, there is no entry in
667 // ForwardRefVals.
668 std::map<std::string, std::pair<GlobalValue*, LocTy> >::iterator
669 I = ForwardRefVals.find(Name);
670 if (I == ForwardRefVals.end())
671 return Error(NameLoc, "redefinition of global named '@" + Name + "'");
672
673 // Otherwise, this was a definition of forward ref. Verify that types
674 // agree.
675 if (Val->getType() != GA->getType())
676 return Error(NameLoc,
677 "forward reference and definition of alias have different types");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000678
Chris Lattnerdf986172009-01-02 07:01:27 +0000679 // If they agree, just RAUW the old value with the alias and remove the
680 // forward ref info.
681 Val->replaceAllUsesWith(GA);
682 Val->eraseFromParent();
683 ForwardRefVals.erase(I);
684 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000685
Chris Lattnerdf986172009-01-02 07:01:27 +0000686 // Insert into the module, we know its name won't collide now.
687 M->getAliasList().push_back(GA);
Benjamin Krameraf812352010-10-16 11:28:23 +0000688 assert(GA->getName() == Name && "Should not be a name conflict!");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000689
Chris Lattnerdf986172009-01-02 07:01:27 +0000690 return false;
691}
692
693/// ParseGlobal
694/// ::= GlobalVar '=' OptionalLinkage OptionalVisibility OptionalThreadLocal
Michael Gottesmana2de37c2013-02-05 05:57:38 +0000695/// OptionalAddrSpace OptionalUnNammedAddr
696/// OptionalExternallyInitialized GlobalType Type Const
Chris Lattnerdf986172009-01-02 07:01:27 +0000697/// ::= OptionalLinkage OptionalVisibility OptionalThreadLocal
Michael Gottesmana2de37c2013-02-05 05:57:38 +0000698/// OptionalAddrSpace OptionalUnNammedAddr
699/// OptionalExternallyInitialized GlobalType Type Const
Chris Lattnerdf986172009-01-02 07:01:27 +0000700///
701/// Everything through visibility has been parsed already.
702///
703bool LLParser::ParseGlobal(const std::string &Name, LocTy NameLoc,
704 unsigned Linkage, bool HasLinkage,
705 unsigned Visibility) {
706 unsigned AddrSpace;
Michael Gottesmana2de37c2013-02-05 05:57:38 +0000707 bool IsConstant, UnnamedAddr, IsExternallyInitialized;
Hans Wennborgce718ff2012-06-23 11:37:03 +0000708 GlobalVariable::ThreadLocalMode TLM;
Rafael Espindolad72479c2011-01-13 01:30:30 +0000709 LocTy UnnamedAddrLoc;
Michael Gottesmana2de37c2013-02-05 05:57:38 +0000710 LocTy IsExternallyInitializedLoc;
Chris Lattnerdf986172009-01-02 07:01:27 +0000711 LocTy TyLoc;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000712
Chris Lattner1afcace2011-07-09 17:41:24 +0000713 Type *Ty = 0;
Hans Wennborgce718ff2012-06-23 11:37:03 +0000714 if (ParseOptionalThreadLocal(TLM) ||
Chris Lattnerdf986172009-01-02 07:01:27 +0000715 ParseOptionalAddrSpace(AddrSpace) ||
Rafael Espindolad72479c2011-01-13 01:30:30 +0000716 ParseOptionalToken(lltok::kw_unnamed_addr, UnnamedAddr,
717 &UnnamedAddrLoc) ||
Michael Gottesmana2de37c2013-02-05 05:57:38 +0000718 ParseOptionalToken(lltok::kw_externally_initialized,
719 IsExternallyInitialized,
720 &IsExternallyInitializedLoc) ||
Chris Lattnerdf986172009-01-02 07:01:27 +0000721 ParseGlobalType(IsConstant) ||
722 ParseType(Ty, TyLoc))
723 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000724
Chris Lattnerdf986172009-01-02 07:01:27 +0000725 // If the linkage is specified and is external, then no initializer is
726 // present.
727 Constant *Init = 0;
728 if (!HasLinkage || (Linkage != GlobalValue::DLLImportLinkage &&
Duncan Sands5f4ee1f2009-03-11 08:08:06 +0000729 Linkage != GlobalValue::ExternalWeakLinkage &&
Chris Lattnerdf986172009-01-02 07:01:27 +0000730 Linkage != GlobalValue::ExternalLinkage)) {
731 if (ParseGlobalValue(Ty, Init))
732 return true;
733 }
734
Duncan Sands1df98592010-02-16 11:11:14 +0000735 if (Ty->isFunctionTy() || Ty->isLabelTy())
Chris Lattner4a2f1122009-02-08 20:00:15 +0000736 return Error(TyLoc, "invalid type for global variable");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000737
Chris Lattnerdf986172009-01-02 07:01:27 +0000738 GlobalVariable *GV = 0;
739
740 // See if the global was forward referenced, if so, use the global.
Chris Lattner91dad872009-02-02 07:24:28 +0000741 if (!Name.empty()) {
Chris Lattner1d871c52009-10-25 23:22:50 +0000742 if (GlobalValue *GVal = M->getNamedValue(Name)) {
743 if (!ForwardRefVals.erase(Name) || !isa<GlobalValue>(GVal))
744 return Error(NameLoc, "redefinition of global '@" + Name + "'");
745 GV = cast<GlobalVariable>(GVal);
746 }
Chris Lattnerdf986172009-01-02 07:01:27 +0000747 } else {
748 std::map<unsigned, std::pair<GlobalValue*, LocTy> >::iterator
749 I = ForwardRefValIDs.find(NumberedVals.size());
750 if (I != ForwardRefValIDs.end()) {
751 GV = cast<GlobalVariable>(I->second.first);
752 ForwardRefValIDs.erase(I);
753 }
754 }
755
756 if (GV == 0) {
Daniel Dunbara279bc32009-09-20 02:20:51 +0000757 GV = new GlobalVariable(*M, Ty, false, GlobalValue::ExternalLinkage, 0,
Hans Wennborgce718ff2012-06-23 11:37:03 +0000758 Name, 0, GlobalVariable::NotThreadLocal,
759 AddrSpace);
Chris Lattnerdf986172009-01-02 07:01:27 +0000760 } else {
761 if (GV->getType()->getElementType() != Ty)
762 return Error(TyLoc,
763 "forward reference and definition of global have different types");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000764
Chris Lattnerdf986172009-01-02 07:01:27 +0000765 // Move the forward-reference to the correct spot in the module.
766 M->getGlobalList().splice(M->global_end(), M->getGlobalList(), GV);
767 }
768
769 if (Name.empty())
770 NumberedVals.push_back(GV);
Daniel Dunbara279bc32009-09-20 02:20:51 +0000771
Chris Lattnerdf986172009-01-02 07:01:27 +0000772 // Set the parsed properties on the global.
773 if (Init)
774 GV->setInitializer(Init);
775 GV->setConstant(IsConstant);
776 GV->setLinkage((GlobalValue::LinkageTypes)Linkage);
777 GV->setVisibility((GlobalValue::VisibilityTypes)Visibility);
Michael Gottesmana2de37c2013-02-05 05:57:38 +0000778 GV->setExternallyInitialized(IsExternallyInitialized);
Hans Wennborgce718ff2012-06-23 11:37:03 +0000779 GV->setThreadLocalMode(TLM);
Rafael Espindolabea46262011-01-08 16:42:36 +0000780 GV->setUnnamedAddr(UnnamedAddr);
Daniel Dunbara279bc32009-09-20 02:20:51 +0000781
Chris Lattnerdf986172009-01-02 07:01:27 +0000782 // Parse attributes on the global.
783 while (Lex.getKind() == lltok::comma) {
784 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +0000785
Chris Lattnerdf986172009-01-02 07:01:27 +0000786 if (Lex.getKind() == lltok::kw_section) {
787 Lex.Lex();
788 GV->setSection(Lex.getStrVal());
789 if (ParseToken(lltok::StringConstant, "expected global section string"))
790 return true;
791 } else if (Lex.getKind() == lltok::kw_align) {
792 unsigned Alignment;
793 if (ParseOptionalAlignment(Alignment)) return true;
794 GV->setAlignment(Alignment);
795 } else {
796 TokError("unknown global variable property!");
797 }
798 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000799
Chris Lattnerdf986172009-01-02 07:01:27 +0000800 return false;
801}
802
Bill Wendling95ce4c22013-02-06 06:52:58 +0000803/// ParseUnnamedAttrGrp
Bill Wendling0b778662013-02-09 15:48:49 +0000804/// ::= 'attributes' AttrGrpID '=' '{' AttrValPair+ '}'
Bill Wendling95ce4c22013-02-06 06:52:58 +0000805bool LLParser::ParseUnnamedAttrGrp() {
Bill Wendling0b778662013-02-09 15:48:49 +0000806 assert(Lex.getKind() == lltok::kw_attributes);
Bill Wendling95ce4c22013-02-06 06:52:58 +0000807 LocTy AttrGrpLoc = Lex.getLoc();
Bill Wendling0b778662013-02-09 15:48:49 +0000808 Lex.Lex();
809
810 assert(Lex.getKind() == lltok::AttrGrpID);
Bill Wendling95ce4c22013-02-06 06:52:58 +0000811 unsigned VarID = Lex.getUIntVal();
Bill Wendlingbaad55c2013-02-08 06:32:06 +0000812 std::vector<unsigned> unused;
Bill Wendling143d4642013-02-22 00:12:35 +0000813 LocTy NoBuiltinLoc;
Bill Wendling95ce4c22013-02-06 06:52:58 +0000814 Lex.Lex();
815
816 if (ParseToken(lltok::equal, "expected '=' here") ||
Bill Wendling95ce4c22013-02-06 06:52:58 +0000817 ParseToken(lltok::lbrace, "expected '{' here") ||
Bill Wendling143d4642013-02-22 00:12:35 +0000818 ParseFnAttributeValuePairs(NumberedAttrBuilders[VarID], unused, true,
819 NoBuiltinLoc) ||
Bill Wendling95ce4c22013-02-06 06:52:58 +0000820 ParseToken(lltok::rbrace, "expected end of attribute group"))
821 return true;
822
Bill Wendlingbaad55c2013-02-08 06:32:06 +0000823 if (!NumberedAttrBuilders[VarID].hasAttributes())
Bill Wendling95ce4c22013-02-06 06:52:58 +0000824 return Error(AttrGrpLoc, "attribute group has no attributes");
825
826 return false;
827}
828
Bill Wendlingea007fa2013-02-08 00:52:31 +0000829/// ParseFnAttributeValuePairs
Bill Wendling95ce4c22013-02-06 06:52:58 +0000830/// ::= <attr> | <attr> '=' <value>
Bill Wendlingbaad55c2013-02-08 06:32:06 +0000831bool LLParser::ParseFnAttributeValuePairs(AttrBuilder &B,
832 std::vector<unsigned> &FwdRefAttrGrps,
Bill Wendling143d4642013-02-22 00:12:35 +0000833 bool inAttrGrp, LocTy &NoBuiltinLoc) {
Bill Wendlingea007fa2013-02-08 00:52:31 +0000834 bool HaveError = false;
835
836 B.clear();
837
Bill Wendling95ce4c22013-02-06 06:52:58 +0000838 while (true) {
839 lltok::Kind Token = Lex.getKind();
Bill Wendling143d4642013-02-22 00:12:35 +0000840 if (Token == lltok::kw_nobuiltin)
841 NoBuiltinLoc = Lex.getLoc();
Bill Wendling95ce4c22013-02-06 06:52:58 +0000842 switch (Token) {
843 default:
Bill Wendlingea007fa2013-02-08 00:52:31 +0000844 if (!inAttrGrp) return HaveError;
Bill Wendling95ce4c22013-02-06 06:52:58 +0000845 return Error(Lex.getLoc(), "unterminated attribute group");
846 case lltok::rbrace:
847 // Finished.
848 return false;
849
Bill Wendlingbaad55c2013-02-08 06:32:06 +0000850 case lltok::AttrGrpID: {
851 // Allow a function to reference an attribute group:
852 //
853 // define void @foo() #1 { ... }
854 if (inAttrGrp)
855 HaveError |=
856 Error(Lex.getLoc(),
857 "cannot have an attribute group reference in an attribute group");
858
859 unsigned AttrGrpNum = Lex.getUIntVal();
860 if (inAttrGrp) break;
861
862 // Save the reference to the attribute group. We'll fill it in later.
863 FwdRefAttrGrps.push_back(AttrGrpNum);
864 break;
865 }
Bill Wendling95ce4c22013-02-06 06:52:58 +0000866 // Target-dependent attributes:
867 case lltok::StringConstant: {
868 std::string Attr = Lex.getStrVal();
869 Lex.Lex();
870 std::string Val;
871 if (EatIfPresent(lltok::equal) &&
872 ParseStringConstant(Val))
873 return true;
874
875 B.addAttribute(Attr, Val);
Bill Wendling0f742202013-02-10 10:12:50 +0000876 continue;
Bill Wendling95ce4c22013-02-06 06:52:58 +0000877 }
878
879 // Target-independent attributes:
880 case lltok::kw_align: {
Bill Wendlingea007fa2013-02-08 00:52:31 +0000881 // As a hack, we allow "align 2" on functions as a synonym for "alignstack
882 // 2".
Bill Wendling95ce4c22013-02-06 06:52:58 +0000883 unsigned Alignment;
Bill Wendlingea007fa2013-02-08 00:52:31 +0000884 if (inAttrGrp) {
Bill Wendling3f87d232013-02-10 23:15:51 +0000885 Lex.Lex();
Bill Wendlingea007fa2013-02-08 00:52:31 +0000886 if (ParseToken(lltok::equal, "expected '=' here") ||
887 ParseUInt32(Alignment))
888 return true;
889 } else {
890 if (ParseOptionalAlignment(Alignment))
891 return true;
892 }
Bill Wendling95ce4c22013-02-06 06:52:58 +0000893 B.addAlignmentAttr(Alignment);
Bill Wendlingea007fa2013-02-08 00:52:31 +0000894 continue;
Bill Wendling95ce4c22013-02-06 06:52:58 +0000895 }
896 case lltok::kw_alignstack: {
897 unsigned Alignment;
Bill Wendlingea007fa2013-02-08 00:52:31 +0000898 if (inAttrGrp) {
Bill Wendling3f87d232013-02-10 23:15:51 +0000899 Lex.Lex();
Bill Wendlingea007fa2013-02-08 00:52:31 +0000900 if (ParseToken(lltok::equal, "expected '=' here") ||
901 ParseUInt32(Alignment))
902 return true;
903 } else {
904 if (ParseOptionalStackAlignment(Alignment))
905 return true;
906 }
Bill Wendling95ce4c22013-02-06 06:52:58 +0000907 B.addStackAlignmentAttr(Alignment);
Bill Wendlingea007fa2013-02-08 00:52:31 +0000908 continue;
Bill Wendling95ce4c22013-02-06 06:52:58 +0000909 }
910 case lltok::kw_address_safety: B.addAttribute(Attribute::AddressSafety); break;
911 case lltok::kw_alwaysinline: B.addAttribute(Attribute::AlwaysInline); break;
Bill Wendling95ce4c22013-02-06 06:52:58 +0000912 case lltok::kw_inlinehint: B.addAttribute(Attribute::InlineHint); break;
Bill Wendling95ce4c22013-02-06 06:52:58 +0000913 case lltok::kw_minsize: B.addAttribute(Attribute::MinSize); break;
914 case lltok::kw_naked: B.addAttribute(Attribute::Naked); break;
Bill Wendling143d4642013-02-22 00:12:35 +0000915 case lltok::kw_nobuiltin: B.addAttribute(Attribute::NoBuiltin); break;
Bill Wendling95ce4c22013-02-06 06:52:58 +0000916 case lltok::kw_noduplicate: B.addAttribute(Attribute::NoDuplicate); break;
917 case lltok::kw_noimplicitfloat: B.addAttribute(Attribute::NoImplicitFloat); break;
918 case lltok::kw_noinline: B.addAttribute(Attribute::NoInline); break;
919 case lltok::kw_nonlazybind: B.addAttribute(Attribute::NonLazyBind); break;
920 case lltok::kw_noredzone: B.addAttribute(Attribute::NoRedZone); break;
921 case lltok::kw_noreturn: B.addAttribute(Attribute::NoReturn); break;
922 case lltok::kw_nounwind: B.addAttribute(Attribute::NoUnwind); break;
923 case lltok::kw_optsize: B.addAttribute(Attribute::OptimizeForSize); break;
924 case lltok::kw_readnone: B.addAttribute(Attribute::ReadNone); break;
925 case lltok::kw_readonly: B.addAttribute(Attribute::ReadOnly); break;
926 case lltok::kw_returns_twice: B.addAttribute(Attribute::ReturnsTwice); break;
Bill Wendling95ce4c22013-02-06 06:52:58 +0000927 case lltok::kw_ssp: B.addAttribute(Attribute::StackProtect); break;
928 case lltok::kw_sspreq: B.addAttribute(Attribute::StackProtectReq); break;
929 case lltok::kw_sspstrong: B.addAttribute(Attribute::StackProtectStrong); break;
Kostya Serebryanyab39afa2013-02-11 08:13:54 +0000930 case lltok::kw_thread_safety: B.addAttribute(Attribute::ThreadSafety); break;
931 case lltok::kw_uninitialized_checks: B.addAttribute(Attribute::UninitializedChecks); break;
Bill Wendling95ce4c22013-02-06 06:52:58 +0000932 case lltok::kw_uwtable: B.addAttribute(Attribute::UWTable); break;
Bill Wendlingea007fa2013-02-08 00:52:31 +0000933
934 // Error handling.
935 case lltok::kw_inreg:
936 case lltok::kw_signext:
937 case lltok::kw_zeroext:
938 HaveError |=
939 Error(Lex.getLoc(),
940 "invalid use of attribute on a function");
941 break;
942 case lltok::kw_byval:
943 case lltok::kw_nest:
944 case lltok::kw_noalias:
945 case lltok::kw_nocapture:
946 case lltok::kw_sret:
947 HaveError |=
948 Error(Lex.getLoc(),
949 "invalid use of parameter-only attribute on a function");
950 break;
Bill Wendling95ce4c22013-02-06 06:52:58 +0000951 }
952
953 Lex.Lex();
954 }
955}
Chris Lattnerdf986172009-01-02 07:01:27 +0000956
957//===----------------------------------------------------------------------===//
958// GlobalValue Reference/Resolution Routines.
959//===----------------------------------------------------------------------===//
960
961/// GetGlobalVal - Get a value with the specified name or ID, creating a
962/// forward reference record if needed. This can return null if the value
963/// exists but does not have the right type.
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000964GlobalValue *LLParser::GetGlobalVal(const std::string &Name, Type *Ty,
Chris Lattnerdf986172009-01-02 07:01:27 +0000965 LocTy Loc) {
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000966 PointerType *PTy = dyn_cast<PointerType>(Ty);
Chris Lattnerdf986172009-01-02 07:01:27 +0000967 if (PTy == 0) {
968 Error(Loc, "global variable reference must have pointer type");
969 return 0;
970 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000971
Chris Lattnerdf986172009-01-02 07:01:27 +0000972 // Look this name up in the normal function symbol table.
973 GlobalValue *Val =
974 cast_or_null<GlobalValue>(M->getValueSymbolTable().lookup(Name));
Daniel Dunbara279bc32009-09-20 02:20:51 +0000975
Chris Lattnerdf986172009-01-02 07:01:27 +0000976 // If this is a forward reference for the value, see if we already created a
977 // forward ref record.
978 if (Val == 0) {
979 std::map<std::string, std::pair<GlobalValue*, LocTy> >::iterator
980 I = ForwardRefVals.find(Name);
981 if (I != ForwardRefVals.end())
982 Val = I->second.first;
983 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000984
Chris Lattnerdf986172009-01-02 07:01:27 +0000985 // If we have the value in the symbol table or fwd-ref table, return it.
986 if (Val) {
987 if (Val->getType() == Ty) return Val;
988 Error(Loc, "'@" + Name + "' defined with type '" +
Chris Lattner0cd0d882011-06-18 21:18:23 +0000989 getTypeString(Val->getType()) + "'");
Chris Lattnerdf986172009-01-02 07:01:27 +0000990 return 0;
991 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000992
Chris Lattnerdf986172009-01-02 07:01:27 +0000993 // Otherwise, create a new forward reference for this value and remember it.
994 GlobalValue *FwdVal;
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000995 if (FunctionType *FT = dyn_cast<FunctionType>(PTy->getElementType()))
Duncan Sands5f4ee1f2009-03-11 08:08:06 +0000996 FwdVal = Function::Create(FT, GlobalValue::ExternalWeakLinkage, Name, M);
Chris Lattner1afcace2011-07-09 17:41:24 +0000997 else
Owen Andersone9b11b42009-07-08 19:03:57 +0000998 FwdVal = new GlobalVariable(*M, PTy->getElementType(), false,
Justin Holewinskieaff2d52012-11-16 21:03:47 +0000999 GlobalValue::ExternalWeakLinkage, 0, Name,
1000 0, GlobalVariable::NotThreadLocal,
1001 PTy->getAddressSpace());
Daniel Dunbara279bc32009-09-20 02:20:51 +00001002
Chris Lattnerdf986172009-01-02 07:01:27 +00001003 ForwardRefVals[Name] = std::make_pair(FwdVal, Loc);
1004 return FwdVal;
1005}
1006
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001007GlobalValue *LLParser::GetGlobalVal(unsigned ID, Type *Ty, LocTy Loc) {
1008 PointerType *PTy = dyn_cast<PointerType>(Ty);
Chris Lattnerdf986172009-01-02 07:01:27 +00001009 if (PTy == 0) {
1010 Error(Loc, "global variable reference must have pointer type");
1011 return 0;
1012 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001013
Chris Lattnerdf986172009-01-02 07:01:27 +00001014 GlobalValue *Val = ID < NumberedVals.size() ? NumberedVals[ID] : 0;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001015
Chris Lattnerdf986172009-01-02 07:01:27 +00001016 // If this is a forward reference for the value, see if we already created a
1017 // forward ref record.
1018 if (Val == 0) {
1019 std::map<unsigned, std::pair<GlobalValue*, LocTy> >::iterator
1020 I = ForwardRefValIDs.find(ID);
1021 if (I != ForwardRefValIDs.end())
1022 Val = I->second.first;
1023 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001024
Chris Lattnerdf986172009-01-02 07:01:27 +00001025 // If we have the value in the symbol table or fwd-ref table, return it.
1026 if (Val) {
1027 if (Val->getType() == Ty) return Val;
Benjamin Kramerd1e17032010-09-27 17:42:11 +00001028 Error(Loc, "'@" + Twine(ID) + "' defined with type '" +
Chris Lattner0cd0d882011-06-18 21:18:23 +00001029 getTypeString(Val->getType()) + "'");
Chris Lattnerdf986172009-01-02 07:01:27 +00001030 return 0;
1031 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001032
Chris Lattnerdf986172009-01-02 07:01:27 +00001033 // Otherwise, create a new forward reference for this value and remember it.
1034 GlobalValue *FwdVal;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001035 if (FunctionType *FT = dyn_cast<FunctionType>(PTy->getElementType()))
Duncan Sands5f4ee1f2009-03-11 08:08:06 +00001036 FwdVal = Function::Create(FT, GlobalValue::ExternalWeakLinkage, "", M);
Chris Lattner1afcace2011-07-09 17:41:24 +00001037 else
Owen Andersone9b11b42009-07-08 19:03:57 +00001038 FwdVal = new GlobalVariable(*M, PTy->getElementType(), false,
1039 GlobalValue::ExternalWeakLinkage, 0, "");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001040
Chris Lattnerdf986172009-01-02 07:01:27 +00001041 ForwardRefValIDs[ID] = std::make_pair(FwdVal, Loc);
1042 return FwdVal;
1043}
1044
1045
1046//===----------------------------------------------------------------------===//
1047// Helper Routines.
1048//===----------------------------------------------------------------------===//
1049
1050/// ParseToken - If the current token has the specified kind, eat it and return
1051/// success. Otherwise, emit the specified error and return failure.
1052bool LLParser::ParseToken(lltok::Kind T, const char *ErrMsg) {
1053 if (Lex.getKind() != T)
1054 return TokError(ErrMsg);
1055 Lex.Lex();
1056 return false;
1057}
1058
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001059/// ParseStringConstant
1060/// ::= StringConstant
1061bool LLParser::ParseStringConstant(std::string &Result) {
1062 if (Lex.getKind() != lltok::StringConstant)
1063 return TokError("expected string constant");
1064 Result = Lex.getStrVal();
1065 Lex.Lex();
1066 return false;
1067}
1068
1069/// ParseUInt32
1070/// ::= uint32
1071bool LLParser::ParseUInt32(unsigned &Val) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001072 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned())
1073 return TokError("expected integer");
1074 uint64_t Val64 = Lex.getAPSIntVal().getLimitedValue(0xFFFFFFFFULL+1);
1075 if (Val64 != unsigned(Val64))
1076 return TokError("expected 32-bit integer (too large)");
1077 Val = Val64;
1078 Lex.Lex();
1079 return false;
1080}
1081
Hans Wennborgce718ff2012-06-23 11:37:03 +00001082/// ParseTLSModel
1083/// := 'localdynamic'
1084/// := 'initialexec'
1085/// := 'localexec'
1086bool LLParser::ParseTLSModel(GlobalVariable::ThreadLocalMode &TLM) {
1087 switch (Lex.getKind()) {
1088 default:
1089 return TokError("expected localdynamic, initialexec or localexec");
1090 case lltok::kw_localdynamic:
1091 TLM = GlobalVariable::LocalDynamicTLSModel;
1092 break;
1093 case lltok::kw_initialexec:
1094 TLM = GlobalVariable::InitialExecTLSModel;
1095 break;
1096 case lltok::kw_localexec:
1097 TLM = GlobalVariable::LocalExecTLSModel;
1098 break;
1099 }
1100
1101 Lex.Lex();
1102 return false;
1103}
1104
1105/// ParseOptionalThreadLocal
1106/// := /*empty*/
1107/// := 'thread_local'
1108/// := 'thread_local' '(' tlsmodel ')'
1109bool LLParser::ParseOptionalThreadLocal(GlobalVariable::ThreadLocalMode &TLM) {
1110 TLM = GlobalVariable::NotThreadLocal;
1111 if (!EatIfPresent(lltok::kw_thread_local))
1112 return false;
1113
1114 TLM = GlobalVariable::GeneralDynamicTLSModel;
1115 if (Lex.getKind() == lltok::lparen) {
1116 Lex.Lex();
1117 return ParseTLSModel(TLM) ||
1118 ParseToken(lltok::rparen, "expected ')' after thread local model");
1119 }
1120 return false;
1121}
Chris Lattnerdf986172009-01-02 07:01:27 +00001122
1123/// ParseOptionalAddrSpace
1124/// := /*empty*/
1125/// := 'addrspace' '(' uint32 ')'
1126bool LLParser::ParseOptionalAddrSpace(unsigned &AddrSpace) {
1127 AddrSpace = 0;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001128 if (!EatIfPresent(lltok::kw_addrspace))
Chris Lattnerdf986172009-01-02 07:01:27 +00001129 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00001130 return ParseToken(lltok::lparen, "expected '(' in address space") ||
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001131 ParseUInt32(AddrSpace) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00001132 ParseToken(lltok::rparen, "expected ')' in address space");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001133}
Chris Lattnerdf986172009-01-02 07:01:27 +00001134
Bill Wendlinge01b81b2012-12-04 23:40:58 +00001135/// ParseOptionalParamAttrs - Parse a potentially empty list of parameter attributes.
1136bool LLParser::ParseOptionalParamAttrs(AttrBuilder &B) {
1137 bool HaveError = false;
1138
1139 B.clear();
1140
1141 while (1) {
1142 lltok::Kind Token = Lex.getKind();
1143 switch (Token) {
1144 default: // End of attributes.
1145 return HaveError;
Chris Lattnerdf986172009-01-02 07:01:27 +00001146 case lltok::kw_align: {
1147 unsigned Alignment;
1148 if (ParseOptionalAlignment(Alignment))
1149 return true;
Bill Wendling03272442012-10-08 22:20:14 +00001150 B.addAlignmentAttr(Alignment);
Chris Lattnerdf986172009-01-02 07:01:27 +00001151 continue;
1152 }
Bill Wendling034b94b2012-12-19 07:18:57 +00001153 case lltok::kw_byval: B.addAttribute(Attribute::ByVal); break;
1154 case lltok::kw_inreg: B.addAttribute(Attribute::InReg); break;
1155 case lltok::kw_nest: B.addAttribute(Attribute::Nest); break;
1156 case lltok::kw_noalias: B.addAttribute(Attribute::NoAlias); break;
1157 case lltok::kw_nocapture: B.addAttribute(Attribute::NoCapture); break;
1158 case lltok::kw_signext: B.addAttribute(Attribute::SExt); break;
1159 case lltok::kw_sret: B.addAttribute(Attribute::StructRet); break;
1160 case lltok::kw_zeroext: B.addAttribute(Attribute::ZExt); break;
Charles Davis1e063d12010-02-12 00:31:15 +00001161
Bill Wendlinge01b81b2012-12-04 23:40:58 +00001162 case lltok::kw_noreturn: case lltok::kw_nounwind:
1163 case lltok::kw_uwtable: case lltok::kw_returns_twice:
1164 case lltok::kw_noinline: case lltok::kw_readnone:
1165 case lltok::kw_readonly: case lltok::kw_inlinehint:
1166 case lltok::kw_alwaysinline: case lltok::kw_optsize:
1167 case lltok::kw_ssp: case lltok::kw_sspreq:
1168 case lltok::kw_noredzone: case lltok::kw_noimplicitfloat:
1169 case lltok::kw_naked: case lltok::kw_nonlazybind:
1170 case lltok::kw_address_safety: case lltok::kw_minsize:
Kostya Serebryanyab39afa2013-02-11 08:13:54 +00001171 case lltok::kw_alignstack: case lltok::kw_thread_safety:
Bill Wendling143d4642013-02-22 00:12:35 +00001172 case lltok::kw_nobuiltin: case lltok::kw_uninitialized_checks:
Bill Wendlinge01b81b2012-12-04 23:40:58 +00001173 HaveError |= Error(Lex.getLoc(), "invalid use of function-only attribute");
1174 break;
Chris Lattnerdf986172009-01-02 07:01:27 +00001175 }
Bill Wendlingdc998cc2012-09-28 22:30:18 +00001176
Bill Wendlinge01b81b2012-12-04 23:40:58 +00001177 Lex.Lex();
1178 }
1179}
1180
1181/// ParseOptionalReturnAttrs - Parse a potentially empty list of return attributes.
1182bool LLParser::ParseOptionalReturnAttrs(AttrBuilder &B) {
1183 bool HaveError = false;
1184
1185 B.clear();
1186
1187 while (1) {
1188 lltok::Kind Token = Lex.getKind();
Bill Wendlingdc998cc2012-09-28 22:30:18 +00001189 switch (Token) {
Bill Wendlinge01b81b2012-12-04 23:40:58 +00001190 default: // End of attributes.
1191 return HaveError;
Bill Wendling034b94b2012-12-19 07:18:57 +00001192 case lltok::kw_inreg: B.addAttribute(Attribute::InReg); break;
1193 case lltok::kw_noalias: B.addAttribute(Attribute::NoAlias); break;
1194 case lltok::kw_signext: B.addAttribute(Attribute::SExt); break;
1195 case lltok::kw_zeroext: B.addAttribute(Attribute::ZExt); break;
Bill Wendlingdc998cc2012-09-28 22:30:18 +00001196
Bill Wendlinge01b81b2012-12-04 23:40:58 +00001197 // Error handling.
1198 case lltok::kw_sret: case lltok::kw_nocapture:
1199 case lltok::kw_byval: case lltok::kw_nest:
1200 HaveError |= Error(Lex.getLoc(), "invalid use of parameter-only attribute");
Bill Wendlingdc998cc2012-09-28 22:30:18 +00001201 break;
James Molloy67ae1352012-12-20 16:04:27 +00001202
Bill Wendlinge01b81b2012-12-04 23:40:58 +00001203 case lltok::kw_noreturn: case lltok::kw_nounwind:
1204 case lltok::kw_uwtable: case lltok::kw_returns_twice:
1205 case lltok::kw_noinline: case lltok::kw_readnone:
1206 case lltok::kw_readonly: case lltok::kw_inlinehint:
1207 case lltok::kw_alwaysinline: case lltok::kw_optsize:
1208 case lltok::kw_ssp: case lltok::kw_sspreq:
Bill Wendling114baee2013-01-23 06:41:41 +00001209 case lltok::kw_sspstrong: case lltok::kw_noimplicitfloat:
1210 case lltok::kw_noredzone: case lltok::kw_naked:
1211 case lltok::kw_nonlazybind: case lltok::kw_address_safety:
1212 case lltok::kw_minsize: case lltok::kw_alignstack:
1213 case lltok::kw_align: case lltok::kw_noduplicate:
Kostya Serebryanyab39afa2013-02-11 08:13:54 +00001214 case lltok::kw_thread_safety: case lltok::kw_uninitialized_checks:
Bill Wendling143d4642013-02-22 00:12:35 +00001215 case lltok::kw_nobuiltin:
Bill Wendlinge01b81b2012-12-04 23:40:58 +00001216 HaveError |= Error(Lex.getLoc(), "invalid use of function-only attribute");
Bill Wendlingdc998cc2012-09-28 22:30:18 +00001217 break;
1218 }
1219
Chris Lattnerdf986172009-01-02 07:01:27 +00001220 Lex.Lex();
1221 }
1222}
1223
1224/// ParseOptionalLinkage
1225/// ::= /*empty*/
Rafael Espindolabb46f522009-01-15 20:18:42 +00001226/// ::= 'private'
Bill Wendling3d10a5a2009-07-20 01:03:30 +00001227/// ::= 'linker_private'
Bill Wendling5e721d72010-07-01 21:55:59 +00001228/// ::= 'linker_private_weak'
Chris Lattnerdf986172009-01-02 07:01:27 +00001229/// ::= 'internal'
1230/// ::= 'weak'
Duncan Sands667d4b82009-03-07 15:45:40 +00001231/// ::= 'weak_odr'
Chris Lattnerdf986172009-01-02 07:01:27 +00001232/// ::= 'linkonce'
Duncan Sands667d4b82009-03-07 15:45:40 +00001233/// ::= 'linkonce_odr'
Bill Wendling32811be2012-08-17 18:33:14 +00001234/// ::= 'linkonce_odr_auto_hide'
Bill Wendling5e721d72010-07-01 21:55:59 +00001235/// ::= 'available_externally'
Chris Lattnerdf986172009-01-02 07:01:27 +00001236/// ::= 'appending'
1237/// ::= 'dllexport'
1238/// ::= 'common'
1239/// ::= 'dllimport'
1240/// ::= 'extern_weak'
1241/// ::= 'external'
1242bool LLParser::ParseOptionalLinkage(unsigned &Res, bool &HasLinkage) {
1243 HasLinkage = false;
1244 switch (Lex.getKind()) {
Bill Wendling3d10a5a2009-07-20 01:03:30 +00001245 default: Res=GlobalValue::ExternalLinkage; return false;
1246 case lltok::kw_private: Res = GlobalValue::PrivateLinkage; break;
1247 case lltok::kw_linker_private: Res = GlobalValue::LinkerPrivateLinkage; break;
Bill Wendling5e721d72010-07-01 21:55:59 +00001248 case lltok::kw_linker_private_weak:
1249 Res = GlobalValue::LinkerPrivateWeakLinkage;
1250 break;
Bill Wendling3d10a5a2009-07-20 01:03:30 +00001251 case lltok::kw_internal: Res = GlobalValue::InternalLinkage; break;
1252 case lltok::kw_weak: Res = GlobalValue::WeakAnyLinkage; break;
1253 case lltok::kw_weak_odr: Res = GlobalValue::WeakODRLinkage; break;
1254 case lltok::kw_linkonce: Res = GlobalValue::LinkOnceAnyLinkage; break;
1255 case lltok::kw_linkonce_odr: Res = GlobalValue::LinkOnceODRLinkage; break;
Bill Wendling32811be2012-08-17 18:33:14 +00001256 case lltok::kw_linkonce_odr_auto_hide:
1257 case lltok::kw_linker_private_weak_def_auto: // FIXME: For backwards compat.
1258 Res = GlobalValue::LinkOnceODRAutoHideLinkage;
1259 break;
Chris Lattner266c7bb2009-04-13 05:44:34 +00001260 case lltok::kw_available_externally:
1261 Res = GlobalValue::AvailableExternallyLinkage;
1262 break;
Bill Wendling3d10a5a2009-07-20 01:03:30 +00001263 case lltok::kw_appending: Res = GlobalValue::AppendingLinkage; break;
1264 case lltok::kw_dllexport: Res = GlobalValue::DLLExportLinkage; break;
1265 case lltok::kw_common: Res = GlobalValue::CommonLinkage; break;
1266 case lltok::kw_dllimport: Res = GlobalValue::DLLImportLinkage; break;
1267 case lltok::kw_extern_weak: Res = GlobalValue::ExternalWeakLinkage; break;
1268 case lltok::kw_external: Res = GlobalValue::ExternalLinkage; break;
Chris Lattnerdf986172009-01-02 07:01:27 +00001269 }
1270 Lex.Lex();
1271 HasLinkage = true;
1272 return false;
1273}
1274
1275/// ParseOptionalVisibility
1276/// ::= /*empty*/
1277/// ::= 'default'
1278/// ::= 'hidden'
1279/// ::= 'protected'
Daniel Dunbara279bc32009-09-20 02:20:51 +00001280///
Chris Lattnerdf986172009-01-02 07:01:27 +00001281bool LLParser::ParseOptionalVisibility(unsigned &Res) {
1282 switch (Lex.getKind()) {
1283 default: Res = GlobalValue::DefaultVisibility; return false;
1284 case lltok::kw_default: Res = GlobalValue::DefaultVisibility; break;
1285 case lltok::kw_hidden: Res = GlobalValue::HiddenVisibility; break;
1286 case lltok::kw_protected: Res = GlobalValue::ProtectedVisibility; break;
1287 }
1288 Lex.Lex();
1289 return false;
1290}
1291
1292/// ParseOptionalCallingConv
1293/// ::= /*empty*/
1294/// ::= 'ccc'
1295/// ::= 'fastcc'
Elena Demikhovsky35752222012-10-24 14:46:16 +00001296/// ::= 'kw_intel_ocl_bicc'
Chris Lattnerdf986172009-01-02 07:01:27 +00001297/// ::= 'coldcc'
1298/// ::= 'x86_stdcallcc'
1299/// ::= 'x86_fastcallcc'
Anton Korobeynikovded05e32010-05-16 09:08:45 +00001300/// ::= 'x86_thiscallcc'
Anton Korobeynikov385f5a92009-06-16 18:50:49 +00001301/// ::= 'arm_apcscc'
1302/// ::= 'arm_aapcscc'
1303/// ::= 'arm_aapcs_vfpcc'
Anton Korobeynikov211a14e2009-12-07 02:27:35 +00001304/// ::= 'msp430_intrcc'
Che-Liang Chiouf9930da2010-09-25 07:46:17 +00001305/// ::= 'ptx_kernel'
1306/// ::= 'ptx_device'
Micah Villmowe53d6052012-10-01 17:01:31 +00001307/// ::= 'spir_func'
1308/// ::= 'spir_kernel'
Chris Lattnerdf986172009-01-02 07:01:27 +00001309/// ::= 'cc' UINT
Anton Korobeynikov385f5a92009-06-16 18:50:49 +00001310///
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001311bool LLParser::ParseOptionalCallingConv(CallingConv::ID &CC) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001312 switch (Lex.getKind()) {
1313 default: CC = CallingConv::C; return false;
1314 case lltok::kw_ccc: CC = CallingConv::C; break;
1315 case lltok::kw_fastcc: CC = CallingConv::Fast; break;
1316 case lltok::kw_coldcc: CC = CallingConv::Cold; break;
1317 case lltok::kw_x86_stdcallcc: CC = CallingConv::X86_StdCall; break;
1318 case lltok::kw_x86_fastcallcc: CC = CallingConv::X86_FastCall; break;
Anton Korobeynikovded05e32010-05-16 09:08:45 +00001319 case lltok::kw_x86_thiscallcc: CC = CallingConv::X86_ThisCall; break;
Anton Korobeynikov385f5a92009-06-16 18:50:49 +00001320 case lltok::kw_arm_apcscc: CC = CallingConv::ARM_APCS; break;
1321 case lltok::kw_arm_aapcscc: CC = CallingConv::ARM_AAPCS; break;
1322 case lltok::kw_arm_aapcs_vfpcc:CC = CallingConv::ARM_AAPCS_VFP; break;
Anton Korobeynikov211a14e2009-12-07 02:27:35 +00001323 case lltok::kw_msp430_intrcc: CC = CallingConv::MSP430_INTR; break;
Che-Liang Chiouf9930da2010-09-25 07:46:17 +00001324 case lltok::kw_ptx_kernel: CC = CallingConv::PTX_Kernel; break;
1325 case lltok::kw_ptx_device: CC = CallingConv::PTX_Device; break;
Micah Villmowe53d6052012-10-01 17:01:31 +00001326 case lltok::kw_spir_kernel: CC = CallingConv::SPIR_KERNEL; break;
1327 case lltok::kw_spir_func: CC = CallingConv::SPIR_FUNC; break;
Elena Demikhovsky35752222012-10-24 14:46:16 +00001328 case lltok::kw_intel_ocl_bicc: CC = CallingConv::Intel_OCL_BI; break;
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001329 case lltok::kw_cc: {
1330 unsigned ArbitraryCC;
1331 Lex.Lex();
David Blaikie4d6ccb52012-01-20 21:51:11 +00001332 if (ParseUInt32(ArbitraryCC))
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001333 return true;
David Blaikie4d6ccb52012-01-20 21:51:11 +00001334 CC = static_cast<CallingConv::ID>(ArbitraryCC);
1335 return false;
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001336 }
Chris Lattnerdf986172009-01-02 07:01:27 +00001337 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001338
Chris Lattnerdf986172009-01-02 07:01:27 +00001339 Lex.Lex();
1340 return false;
1341}
1342
Chris Lattnerb8c46862009-12-30 05:31:19 +00001343/// ParseInstructionMetadata
Chris Lattner3f3a0f62009-12-29 21:25:40 +00001344/// ::= !dbg !42 (',' !dbg !57)*
Dan Gohman9d072f52010-08-24 02:05:17 +00001345bool LLParser::ParseInstructionMetadata(Instruction *Inst,
1346 PerFunctionState *PFS) {
Chris Lattnerb8c46862009-12-30 05:31:19 +00001347 do {
1348 if (Lex.getKind() != lltok::MetadataVar)
1349 return TokError("expected metadata after comma");
Devang Patel0475c912009-09-29 00:01:14 +00001350
Chris Lattner3f3a0f62009-12-29 21:25:40 +00001351 std::string Name = Lex.getStrVal();
Benjamin Kramer85dadec2011-12-06 11:50:26 +00001352 unsigned MDK = M->getMDKindID(Name);
Chris Lattner3f3a0f62009-12-29 21:25:40 +00001353 Lex.Lex();
Chris Lattner52e20312009-10-19 05:31:10 +00001354
Chris Lattner442ffa12009-12-29 21:53:55 +00001355 MDNode *Node;
Chris Lattner449c3102010-04-01 05:14:45 +00001356 SMLoc Loc = Lex.getLoc();
Dan Gohman309b3af2010-08-24 02:24:03 +00001357
1358 if (ParseToken(lltok::exclaim, "expected '!' here"))
Chris Lattnere434d272009-12-30 04:56:59 +00001359 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001360
Dan Gohman68261142010-08-24 14:35:45 +00001361 // This code is similar to that of ParseMetadataValue, however it needs to
1362 // have special-case code for a forward reference; see the comments on
1363 // ForwardRefInstMetadata for details. Also, MDStrings are not supported
1364 // at the top level here.
Dan Gohman309b3af2010-08-24 02:24:03 +00001365 if (Lex.getKind() == lltok::lbrace) {
1366 ValID ID;
1367 if (ParseMetadataListValue(ID, PFS))
1368 return true;
1369 assert(ID.Kind == ValID::t_MDNode);
1370 Inst->setMetadata(MDK, ID.MDNodeVal);
Chris Lattner449c3102010-04-01 05:14:45 +00001371 } else {
Nick Lewyckyc6877b42010-09-30 21:04:13 +00001372 unsigned NodeID = 0;
Dan Gohman309b3af2010-08-24 02:24:03 +00001373 if (ParseMDNodeID(Node, NodeID))
1374 return true;
1375 if (Node) {
1376 // If we got the node, add it to the instruction.
1377 Inst->setMetadata(MDK, Node);
1378 } else {
1379 MDRef R = { Loc, MDK, NodeID };
1380 // Otherwise, remember that this should be resolved later.
1381 ForwardRefInstMetadata[Inst].push_back(R);
1382 }
Chris Lattner449c3102010-04-01 05:14:45 +00001383 }
Chris Lattner3f3a0f62009-12-29 21:25:40 +00001384
1385 // If this is the end of the list, we're done.
Chris Lattnerb8c46862009-12-30 05:31:19 +00001386 } while (EatIfPresent(lltok::comma));
1387 return false;
Devang Patelf633a062009-09-17 23:04:48 +00001388}
1389
Chris Lattnerdf986172009-01-02 07:01:27 +00001390/// ParseOptionalAlignment
1391/// ::= /* empty */
1392/// ::= 'align' 4
1393bool LLParser::ParseOptionalAlignment(unsigned &Alignment) {
1394 Alignment = 0;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001395 if (!EatIfPresent(lltok::kw_align))
1396 return false;
Chris Lattner3fbb3ab2009-01-05 07:46:05 +00001397 LocTy AlignLoc = Lex.getLoc();
1398 if (ParseUInt32(Alignment)) return true;
1399 if (!isPowerOf2_32(Alignment))
1400 return Error(AlignLoc, "alignment is not a power of two");
Dan Gohmane16829b2010-07-30 21:07:05 +00001401 if (Alignment > Value::MaximumAlignment)
Dan Gohman138aa2a2010-07-28 20:12:04 +00001402 return Error(AlignLoc, "huge alignments are not supported yet");
Chris Lattner3fbb3ab2009-01-05 07:46:05 +00001403 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00001404}
1405
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00001406/// ParseOptionalCommaAlign
Michael Ilseman407a6162012-11-15 22:34:00 +00001407/// ::=
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00001408/// ::= ',' align 4
1409///
1410/// This returns with AteExtraComma set to true if it ate an excess comma at the
1411/// end.
1412bool LLParser::ParseOptionalCommaAlign(unsigned &Alignment,
1413 bool &AteExtraComma) {
1414 AteExtraComma = false;
1415 while (EatIfPresent(lltok::comma)) {
1416 // Metadata at the end is an early exit.
Chris Lattner1d928312009-12-30 05:02:06 +00001417 if (Lex.getKind() == lltok::MetadataVar) {
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00001418 AteExtraComma = true;
1419 return false;
1420 }
Michael Ilseman407a6162012-11-15 22:34:00 +00001421
Chris Lattner093eed12010-04-23 00:50:50 +00001422 if (Lex.getKind() != lltok::kw_align)
1423 return Error(Lex.getLoc(), "expected metadata or 'align'");
Duncan Sandsbf9fc532010-10-21 16:07:10 +00001424
Chris Lattner093eed12010-04-23 00:50:50 +00001425 if (ParseOptionalAlignment(Alignment)) return true;
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00001426 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001427
Devang Patelf633a062009-09-17 23:04:48 +00001428 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00001429}
1430
Eli Friedman47f35132011-07-25 23:16:38 +00001431/// ParseScopeAndOrdering
1432/// if isAtomic: ::= 'singlethread'? AtomicOrdering
1433/// else: ::=
1434///
1435/// This sets Scope and Ordering to the parsed values.
1436bool LLParser::ParseScopeAndOrdering(bool isAtomic, SynchronizationScope &Scope,
1437 AtomicOrdering &Ordering) {
1438 if (!isAtomic)
1439 return false;
1440
1441 Scope = CrossThread;
1442 if (EatIfPresent(lltok::kw_singlethread))
1443 Scope = SingleThread;
1444 switch (Lex.getKind()) {
1445 default: return TokError("Expected ordering on atomic instruction");
1446 case lltok::kw_unordered: Ordering = Unordered; break;
1447 case lltok::kw_monotonic: Ordering = Monotonic; break;
1448 case lltok::kw_acquire: Ordering = Acquire; break;
1449 case lltok::kw_release: Ordering = Release; break;
1450 case lltok::kw_acq_rel: Ordering = AcquireRelease; break;
1451 case lltok::kw_seq_cst: Ordering = SequentiallyConsistent; break;
1452 }
1453 Lex.Lex();
1454 return false;
1455}
1456
Charles Davis1e063d12010-02-12 00:31:15 +00001457/// ParseOptionalStackAlignment
1458/// ::= /* empty */
1459/// ::= 'alignstack' '(' 4 ')'
1460bool LLParser::ParseOptionalStackAlignment(unsigned &Alignment) {
1461 Alignment = 0;
1462 if (!EatIfPresent(lltok::kw_alignstack))
1463 return false;
1464 LocTy ParenLoc = Lex.getLoc();
1465 if (!EatIfPresent(lltok::lparen))
1466 return Error(ParenLoc, "expected '('");
1467 LocTy AlignLoc = Lex.getLoc();
1468 if (ParseUInt32(Alignment)) return true;
1469 ParenLoc = Lex.getLoc();
1470 if (!EatIfPresent(lltok::rparen))
1471 return Error(ParenLoc, "expected ')'");
1472 if (!isPowerOf2_32(Alignment))
1473 return Error(AlignLoc, "stack alignment is not a power of two");
1474 return false;
1475}
Devang Patelf633a062009-09-17 23:04:48 +00001476
Chris Lattner628c13a2009-12-30 05:14:00 +00001477/// ParseIndexList - This parses the index list for an insert/extractvalue
1478/// instruction. This sets AteExtraComma in the case where we eat an extra
1479/// comma at the end of the line and find that it is followed by metadata.
1480/// Clients that don't allow metadata can call the version of this function that
1481/// only takes one argument.
1482///
Chris Lattnerdf986172009-01-02 07:01:27 +00001483/// ParseIndexList
1484/// ::= (',' uint32)+
Chris Lattner628c13a2009-12-30 05:14:00 +00001485///
1486bool LLParser::ParseIndexList(SmallVectorImpl<unsigned> &Indices,
1487 bool &AteExtraComma) {
1488 AteExtraComma = false;
Michael Ilseman407a6162012-11-15 22:34:00 +00001489
Chris Lattnerdf986172009-01-02 07:01:27 +00001490 if (Lex.getKind() != lltok::comma)
1491 return TokError("expected ',' as start of index list");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001492
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001493 while (EatIfPresent(lltok::comma)) {
Chris Lattner628c13a2009-12-30 05:14:00 +00001494 if (Lex.getKind() == lltok::MetadataVar) {
1495 AteExtraComma = true;
1496 return false;
1497 }
Nick Lewycky28815c42010-09-29 23:32:20 +00001498 unsigned Idx = 0;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001499 if (ParseUInt32(Idx)) return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00001500 Indices.push_back(Idx);
1501 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001502
Chris Lattnerdf986172009-01-02 07:01:27 +00001503 return false;
1504}
1505
1506//===----------------------------------------------------------------------===//
1507// Type Parsing.
1508//===----------------------------------------------------------------------===//
1509
Chris Lattner1afcace2011-07-09 17:41:24 +00001510/// ParseType - Parse a type.
1511bool LLParser::ParseType(Type *&Result, bool AllowVoid) {
1512 SMLoc TypeLoc = Lex.getLoc();
Chris Lattnerdf986172009-01-02 07:01:27 +00001513 switch (Lex.getKind()) {
1514 default:
1515 return TokError("expected type");
1516 case lltok::Type:
Chris Lattner1afcace2011-07-09 17:41:24 +00001517 // Type ::= 'float' | 'void' (etc)
Chris Lattnerdf986172009-01-02 07:01:27 +00001518 Result = Lex.getTyVal();
Daniel Dunbara279bc32009-09-20 02:20:51 +00001519 Lex.Lex();
Chris Lattnerdf986172009-01-02 07:01:27 +00001520 break;
Chris Lattnerdf986172009-01-02 07:01:27 +00001521 case lltok::lbrace:
Chris Lattner1afcace2011-07-09 17:41:24 +00001522 // Type ::= StructType
1523 if (ParseAnonStructType(Result, false))
Chris Lattnerdf986172009-01-02 07:01:27 +00001524 return true;
1525 break;
1526 case lltok::lsquare:
Chris Lattner1afcace2011-07-09 17:41:24 +00001527 // Type ::= '[' ... ']'
Chris Lattnerdf986172009-01-02 07:01:27 +00001528 Lex.Lex(); // eat the lsquare.
1529 if (ParseArrayVectorType(Result, false))
1530 return true;
1531 break;
1532 case lltok::less: // Either vector or packed struct.
Chris Lattner1afcace2011-07-09 17:41:24 +00001533 // Type ::= '<' ... '>'
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001534 Lex.Lex();
1535 if (Lex.getKind() == lltok::lbrace) {
Chris Lattner1afcace2011-07-09 17:41:24 +00001536 if (ParseAnonStructType(Result, true) ||
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001537 ParseToken(lltok::greater, "expected '>' at end of packed struct"))
Chris Lattnerdf986172009-01-02 07:01:27 +00001538 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00001539 } else if (ParseArrayVectorType(Result, true))
1540 return true;
1541 break;
Chris Lattner1afcace2011-07-09 17:41:24 +00001542 case lltok::LocalVar: {
1543 // Type ::= %foo
1544 std::pair<Type*, LocTy> &Entry = NamedTypes[Lex.getStrVal()];
Michael Ilseman407a6162012-11-15 22:34:00 +00001545
Chris Lattner1afcace2011-07-09 17:41:24 +00001546 // If the type hasn't been defined yet, create a forward definition and
1547 // remember where that forward def'n was seen (in case it never is defined).
1548 if (Entry.first == 0) {
Chris Lattner3ebb6492011-08-12 18:06:37 +00001549 Entry.first = StructType::create(Context, Lex.getStrVal());
Chris Lattner1afcace2011-07-09 17:41:24 +00001550 Entry.second = Lex.getLoc();
Chris Lattnerdf986172009-01-02 07:01:27 +00001551 }
Chris Lattner1afcace2011-07-09 17:41:24 +00001552 Result = Entry.first;
Chris Lattnerdf986172009-01-02 07:01:27 +00001553 Lex.Lex();
1554 break;
Chris Lattner1afcace2011-07-09 17:41:24 +00001555 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001556
Chris Lattner1afcace2011-07-09 17:41:24 +00001557 case lltok::LocalVarID: {
1558 // Type ::= %4
1559 if (Lex.getUIntVal() >= NumberedTypes.size())
1560 NumberedTypes.resize(Lex.getUIntVal()+1);
1561 std::pair<Type*, LocTy> &Entry = NumberedTypes[Lex.getUIntVal()];
Michael Ilseman407a6162012-11-15 22:34:00 +00001562
Chris Lattner1afcace2011-07-09 17:41:24 +00001563 // If the type hasn't been defined yet, create a forward definition and
1564 // remember where that forward def'n was seen (in case it never is defined).
1565 if (Entry.first == 0) {
Chris Lattner3ebb6492011-08-12 18:06:37 +00001566 Entry.first = StructType::create(Context);
Chris Lattner1afcace2011-07-09 17:41:24 +00001567 Entry.second = Lex.getLoc();
Chris Lattnerdf986172009-01-02 07:01:27 +00001568 }
Chris Lattner1afcace2011-07-09 17:41:24 +00001569 Result = Entry.first;
Chris Lattnerdf986172009-01-02 07:01:27 +00001570 Lex.Lex();
1571 break;
Chris Lattnerdf986172009-01-02 07:01:27 +00001572 }
1573 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001574
1575 // Parse the type suffixes.
Chris Lattnerdf986172009-01-02 07:01:27 +00001576 while (1) {
1577 switch (Lex.getKind()) {
1578 // End of type.
Chris Lattner1afcace2011-07-09 17:41:24 +00001579 default:
1580 if (!AllowVoid && Result->isVoidTy())
1581 return Error(TypeLoc, "void type only allowed for function results");
1582 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00001583
Chris Lattner1afcace2011-07-09 17:41:24 +00001584 // Type ::= Type '*'
Chris Lattnerdf986172009-01-02 07:01:27 +00001585 case lltok::star:
Chris Lattner1afcace2011-07-09 17:41:24 +00001586 if (Result->isLabelTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00001587 return TokError("basic block pointers are invalid");
Chris Lattner1afcace2011-07-09 17:41:24 +00001588 if (Result->isVoidTy())
1589 return TokError("pointers to void are invalid - use i8* instead");
1590 if (!PointerType::isValidElementType(Result))
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001591 return TokError("pointer to this type is invalid");
Chris Lattner1afcace2011-07-09 17:41:24 +00001592 Result = PointerType::getUnqual(Result);
Chris Lattnerdf986172009-01-02 07:01:27 +00001593 Lex.Lex();
1594 break;
1595
Chris Lattner1afcace2011-07-09 17:41:24 +00001596 // Type ::= Type 'addrspace' '(' uint32 ')' '*'
Chris Lattnerdf986172009-01-02 07:01:27 +00001597 case lltok::kw_addrspace: {
Chris Lattner1afcace2011-07-09 17:41:24 +00001598 if (Result->isLabelTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00001599 return TokError("basic block pointers are invalid");
Chris Lattner1afcace2011-07-09 17:41:24 +00001600 if (Result->isVoidTy())
Dan Gohmanb9070d32009-02-09 17:41:21 +00001601 return TokError("pointers to void are invalid; use i8* instead");
Chris Lattner1afcace2011-07-09 17:41:24 +00001602 if (!PointerType::isValidElementType(Result))
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001603 return TokError("pointer to this type is invalid");
Chris Lattnerdf986172009-01-02 07:01:27 +00001604 unsigned AddrSpace;
1605 if (ParseOptionalAddrSpace(AddrSpace) ||
1606 ParseToken(lltok::star, "expected '*' in address space"))
1607 return true;
1608
Chris Lattner1afcace2011-07-09 17:41:24 +00001609 Result = PointerType::get(Result, AddrSpace);
Chris Lattnerdf986172009-01-02 07:01:27 +00001610 break;
1611 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001612
Chris Lattnerdf986172009-01-02 07:01:27 +00001613 /// Types '(' ArgTypeListI ')' OptFuncAttrs
1614 case lltok::lparen:
1615 if (ParseFunctionType(Result))
1616 return true;
1617 break;
1618 }
1619 }
1620}
1621
1622/// ParseParameterList
1623/// ::= '(' ')'
1624/// ::= '(' Arg (',' Arg)* ')'
1625/// Arg
1626/// ::= Type OptionalAttributes Value OptionalAttributes
1627bool LLParser::ParseParameterList(SmallVectorImpl<ParamInfo> &ArgList,
1628 PerFunctionState &PFS) {
1629 if (ParseToken(lltok::lparen, "expected '(' in call"))
1630 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001631
Bill Wendling73dee182013-01-31 00:29:54 +00001632 unsigned AttrIndex = 1;
Chris Lattnerdf986172009-01-02 07:01:27 +00001633 while (Lex.getKind() != lltok::rparen) {
1634 // If this isn't the first argument, we need a comma.
1635 if (!ArgList.empty() &&
1636 ParseToken(lltok::comma, "expected ',' in argument list"))
1637 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001638
Chris Lattnerdf986172009-01-02 07:01:27 +00001639 // Parse the argument.
1640 LocTy ArgLoc;
Chris Lattner1afcace2011-07-09 17:41:24 +00001641 Type *ArgTy = 0;
Bill Wendling702cc912012-10-15 20:35:56 +00001642 AttrBuilder ArgAttrs;
Chris Lattnerdf986172009-01-02 07:01:27 +00001643 Value *V;
Victor Hernandez19715562009-12-03 23:40:58 +00001644 if (ParseType(ArgTy, ArgLoc))
Chris Lattnerdf986172009-01-02 07:01:27 +00001645 return true;
Victor Hernandez19715562009-12-03 23:40:58 +00001646
Chris Lattner287881d2009-12-30 02:11:14 +00001647 // Otherwise, handle normal operands.
Bill Wendlinge01b81b2012-12-04 23:40:58 +00001648 if (ParseOptionalParamAttrs(ArgAttrs) || ParseValue(ArgTy, V, PFS))
Chris Lattner287881d2009-12-30 02:11:14 +00001649 return true;
Bill Wendling73dee182013-01-31 00:29:54 +00001650 ArgList.push_back(ParamInfo(ArgLoc, V, AttributeSet::get(V->getContext(),
1651 AttrIndex++,
1652 ArgAttrs)));
Chris Lattnerdf986172009-01-02 07:01:27 +00001653 }
1654
1655 Lex.Lex(); // Lex the ')'.
1656 return false;
1657}
1658
1659
1660
Chris Lattnerdfd19dd2009-01-05 18:34:07 +00001661/// ParseArgumentList - Parse the argument list for a function type or function
Chris Lattner1afcace2011-07-09 17:41:24 +00001662/// prototype.
Chris Lattnerdf986172009-01-02 07:01:27 +00001663/// ::= '(' ArgTypeListI ')'
1664/// ArgTypeListI
1665/// ::= /*empty*/
1666/// ::= '...'
1667/// ::= ArgTypeList ',' '...'
1668/// ::= ArgType (',' ArgType)*
Chris Lattnerdfd19dd2009-01-05 18:34:07 +00001669///
Chris Lattner1afcace2011-07-09 17:41:24 +00001670bool LLParser::ParseArgumentList(SmallVectorImpl<ArgInfo> &ArgList,
1671 bool &isVarArg){
Chris Lattnerdf986172009-01-02 07:01:27 +00001672 isVarArg = false;
1673 assert(Lex.getKind() == lltok::lparen);
1674 Lex.Lex(); // eat the (.
Daniel Dunbara279bc32009-09-20 02:20:51 +00001675
Chris Lattnerdf986172009-01-02 07:01:27 +00001676 if (Lex.getKind() == lltok::rparen) {
1677 // empty
1678 } else if (Lex.getKind() == lltok::dotdotdot) {
1679 isVarArg = true;
1680 Lex.Lex();
1681 } else {
1682 LocTy TypeLoc = Lex.getLoc();
Chris Lattner1afcace2011-07-09 17:41:24 +00001683 Type *ArgTy = 0;
Bill Wendling702cc912012-10-15 20:35:56 +00001684 AttrBuilder Attrs;
Chris Lattnerdf986172009-01-02 07:01:27 +00001685 std::string Name;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001686
Chris Lattner1afcace2011-07-09 17:41:24 +00001687 if (ParseType(ArgTy) ||
Bill Wendlinge01b81b2012-12-04 23:40:58 +00001688 ParseOptionalParamAttrs(Attrs)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001689
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001690 if (ArgTy->isVoidTy())
Chris Lattnera9a9e072009-03-09 04:49:14 +00001691 return Error(TypeLoc, "argument can not have void type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001692
Chris Lattner7a1b9bd2011-06-17 06:36:20 +00001693 if (Lex.getKind() == lltok::LocalVar) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001694 Name = Lex.getStrVal();
1695 Lex.Lex();
1696 }
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001697
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001698 if (!FunctionType::isValidArgumentType(ArgTy))
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001699 return Error(TypeLoc, "invalid type for function argument");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001700
Bill Wendling73dee182013-01-31 00:29:54 +00001701 unsigned AttrIndex = 1;
Bill Wendlingcb3de0b2012-10-15 04:46:55 +00001702 ArgList.push_back(ArgInfo(TypeLoc, ArgTy,
Bill Wendling73dee182013-01-31 00:29:54 +00001703 AttributeSet::get(ArgTy->getContext(),
1704 AttrIndex++, Attrs), Name));
Daniel Dunbara279bc32009-09-20 02:20:51 +00001705
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001706 while (EatIfPresent(lltok::comma)) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001707 // Handle ... at end of arg list.
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001708 if (EatIfPresent(lltok::dotdotdot)) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001709 isVarArg = true;
Chris Lattnerdf986172009-01-02 07:01:27 +00001710 break;
1711 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001712
Chris Lattnerdf986172009-01-02 07:01:27 +00001713 // Otherwise must be an argument type.
1714 TypeLoc = Lex.getLoc();
Bill Wendlinge01b81b2012-12-04 23:40:58 +00001715 if (ParseType(ArgTy) || ParseOptionalParamAttrs(Attrs)) return true;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001716
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001717 if (ArgTy->isVoidTy())
Chris Lattnera9a9e072009-03-09 04:49:14 +00001718 return Error(TypeLoc, "argument can not have void type");
1719
Chris Lattner7a1b9bd2011-06-17 06:36:20 +00001720 if (Lex.getKind() == lltok::LocalVar) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001721 Name = Lex.getStrVal();
1722 Lex.Lex();
1723 } else {
1724 Name = "";
1725 }
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001726
Chris Lattner1afcace2011-07-09 17:41:24 +00001727 if (!ArgTy->isFirstClassType())
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001728 return Error(TypeLoc, "invalid type for function argument");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001729
Bill Wendlingcb3de0b2012-10-15 04:46:55 +00001730 ArgList.push_back(ArgInfo(TypeLoc, ArgTy,
Bill Wendling73dee182013-01-31 00:29:54 +00001731 AttributeSet::get(ArgTy->getContext(),
1732 AttrIndex++, Attrs),
Bill Wendlingcb3de0b2012-10-15 04:46:55 +00001733 Name));
Chris Lattnerdf986172009-01-02 07:01:27 +00001734 }
1735 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001736
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001737 return ParseToken(lltok::rparen, "expected ')' at end of argument list");
Chris Lattnerdf986172009-01-02 07:01:27 +00001738}
Daniel Dunbara279bc32009-09-20 02:20:51 +00001739
Chris Lattnerdf986172009-01-02 07:01:27 +00001740/// ParseFunctionType
1741/// ::= Type ArgumentList OptionalAttrs
Chris Lattner1afcace2011-07-09 17:41:24 +00001742bool LLParser::ParseFunctionType(Type *&Result) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001743 assert(Lex.getKind() == lltok::lparen);
1744
Chris Lattnerd77d04c2009-01-05 08:04:33 +00001745 if (!FunctionType::isValidReturnType(Result))
1746 return TokError("invalid function return type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001747
Chris Lattner1afcace2011-07-09 17:41:24 +00001748 SmallVector<ArgInfo, 8> ArgList;
Chris Lattnerdf986172009-01-02 07:01:27 +00001749 bool isVarArg;
Chris Lattner1afcace2011-07-09 17:41:24 +00001750 if (ParseArgumentList(ArgList, isVarArg))
Chris Lattnerdf986172009-01-02 07:01:27 +00001751 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001752
Chris Lattnerdf986172009-01-02 07:01:27 +00001753 // Reject names on the arguments lists.
1754 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
1755 if (!ArgList[i].Name.empty())
1756 return Error(ArgList[i].Loc, "argument name invalid in function type");
Bill Wendling73dee182013-01-31 00:29:54 +00001757 if (ArgList[i].Attrs.hasAttributes(i + 1))
Chris Lattnera16546a2011-06-17 17:37:13 +00001758 return Error(ArgList[i].Loc,
1759 "argument attributes invalid in function type");
Chris Lattnerdf986172009-01-02 07:01:27 +00001760 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001761
Jay Foad5fdd6c82011-07-12 14:06:48 +00001762 SmallVector<Type*, 16> ArgListTy;
Chris Lattnerdf986172009-01-02 07:01:27 +00001763 for (unsigned i = 0, e = ArgList.size(); i != e; ++i)
Chris Lattner1afcace2011-07-09 17:41:24 +00001764 ArgListTy.push_back(ArgList[i].Ty);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001765
Chris Lattner1afcace2011-07-09 17:41:24 +00001766 Result = FunctionType::get(Result, ArgListTy, isVarArg);
Chris Lattnerdf986172009-01-02 07:01:27 +00001767 return false;
1768}
1769
Chris Lattner1afcace2011-07-09 17:41:24 +00001770/// ParseAnonStructType - Parse an anonymous struct type, which is inlined into
1771/// other structs.
1772bool LLParser::ParseAnonStructType(Type *&Result, bool Packed) {
1773 SmallVector<Type*, 8> Elts;
1774 if (ParseStructBody(Elts)) return true;
Michael Ilseman407a6162012-11-15 22:34:00 +00001775
Chris Lattner1afcace2011-07-09 17:41:24 +00001776 Result = StructType::get(Context, Elts, Packed);
1777 return false;
1778}
1779
1780/// ParseStructDefinition - Parse a struct in a 'type' definition.
1781bool LLParser::ParseStructDefinition(SMLoc TypeLoc, StringRef Name,
1782 std::pair<Type*, LocTy> &Entry,
1783 Type *&ResultTy) {
1784 // If the type was already defined, diagnose the redefinition.
1785 if (Entry.first && !Entry.second.isValid())
1786 return Error(TypeLoc, "redefinition of type");
Michael Ilseman407a6162012-11-15 22:34:00 +00001787
Chris Lattner1afcace2011-07-09 17:41:24 +00001788 // If we have opaque, just return without filling in the definition for the
1789 // struct. This counts as a definition as far as the .ll file goes.
1790 if (EatIfPresent(lltok::kw_opaque)) {
1791 // This type is being defined, so clear the location to indicate this.
1792 Entry.second = SMLoc();
Michael Ilseman407a6162012-11-15 22:34:00 +00001793
Chris Lattner1afcace2011-07-09 17:41:24 +00001794 // If this type number has never been uttered, create it.
1795 if (Entry.first == 0)
Chris Lattner3ebb6492011-08-12 18:06:37 +00001796 Entry.first = StructType::create(Context, Name);
Chris Lattner1afcace2011-07-09 17:41:24 +00001797 ResultTy = Entry.first;
1798 return false;
1799 }
Michael Ilseman407a6162012-11-15 22:34:00 +00001800
Chris Lattner1afcace2011-07-09 17:41:24 +00001801 // If the type starts with '<', then it is either a packed struct or a vector.
1802 bool isPacked = EatIfPresent(lltok::less);
1803
1804 // If we don't have a struct, then we have a random type alias, which we
1805 // accept for compatibility with old files. These types are not allowed to be
1806 // forward referenced and not allowed to be recursive.
1807 if (Lex.getKind() != lltok::lbrace) {
1808 if (Entry.first)
1809 return Error(TypeLoc, "forward references to non-struct type");
Michael Ilseman407a6162012-11-15 22:34:00 +00001810
Chris Lattner1afcace2011-07-09 17:41:24 +00001811 ResultTy = 0;
1812 if (isPacked)
1813 return ParseArrayVectorType(ResultTy, true);
1814 return ParseType(ResultTy);
1815 }
Michael Ilseman407a6162012-11-15 22:34:00 +00001816
Chris Lattner1afcace2011-07-09 17:41:24 +00001817 // This type is being defined, so clear the location to indicate this.
1818 Entry.second = SMLoc();
Michael Ilseman407a6162012-11-15 22:34:00 +00001819
Chris Lattner1afcace2011-07-09 17:41:24 +00001820 // If this type number has never been uttered, create it.
1821 if (Entry.first == 0)
Chris Lattner3ebb6492011-08-12 18:06:37 +00001822 Entry.first = StructType::create(Context, Name);
Michael Ilseman407a6162012-11-15 22:34:00 +00001823
Chris Lattner1afcace2011-07-09 17:41:24 +00001824 StructType *STy = cast<StructType>(Entry.first);
Michael Ilseman407a6162012-11-15 22:34:00 +00001825
Chris Lattner1afcace2011-07-09 17:41:24 +00001826 SmallVector<Type*, 8> Body;
1827 if (ParseStructBody(Body) ||
1828 (isPacked && ParseToken(lltok::greater, "expected '>' in packed struct")))
1829 return true;
Michael Ilseman407a6162012-11-15 22:34:00 +00001830
Chris Lattner1afcace2011-07-09 17:41:24 +00001831 STy->setBody(Body, isPacked);
1832 ResultTy = STy;
1833 return false;
1834}
1835
1836
Chris Lattnerdf986172009-01-02 07:01:27 +00001837/// ParseStructType: Handles packed and unpacked types. </> parsed elsewhere.
Chris Lattner1afcace2011-07-09 17:41:24 +00001838/// StructType
Chris Lattnerdf986172009-01-02 07:01:27 +00001839/// ::= '{' '}'
Chris Lattner1afcace2011-07-09 17:41:24 +00001840/// ::= '{' Type (',' Type)* '}'
Chris Lattnerdf986172009-01-02 07:01:27 +00001841/// ::= '<' '{' '}' '>'
Chris Lattner1afcace2011-07-09 17:41:24 +00001842/// ::= '<' '{' Type (',' Type)* '}' '>'
1843bool LLParser::ParseStructBody(SmallVectorImpl<Type*> &Body) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001844 assert(Lex.getKind() == lltok::lbrace);
1845 Lex.Lex(); // Consume the '{'
Daniel Dunbara279bc32009-09-20 02:20:51 +00001846
Chris Lattner1afcace2011-07-09 17:41:24 +00001847 // Handle the empty struct.
1848 if (EatIfPresent(lltok::rbrace))
Chris Lattnerdf986172009-01-02 07:01:27 +00001849 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00001850
Chris Lattnera9a9e072009-03-09 04:49:14 +00001851 LocTy EltTyLoc = Lex.getLoc();
Chris Lattner1afcace2011-07-09 17:41:24 +00001852 Type *Ty = 0;
1853 if (ParseType(Ty)) return true;
1854 Body.push_back(Ty);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001855
Chris Lattner1afcace2011-07-09 17:41:24 +00001856 if (!StructType::isValidElementType(Ty))
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001857 return Error(EltTyLoc, "invalid element type for struct");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001858
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001859 while (EatIfPresent(lltok::comma)) {
Chris Lattnera9a9e072009-03-09 04:49:14 +00001860 EltTyLoc = Lex.getLoc();
Chris Lattner1afcace2011-07-09 17:41:24 +00001861 if (ParseType(Ty)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001862
Chris Lattner1afcace2011-07-09 17:41:24 +00001863 if (!StructType::isValidElementType(Ty))
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001864 return Error(EltTyLoc, "invalid element type for struct");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001865
Chris Lattner1afcace2011-07-09 17:41:24 +00001866 Body.push_back(Ty);
Chris Lattnerdf986172009-01-02 07:01:27 +00001867 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001868
Chris Lattner1afcace2011-07-09 17:41:24 +00001869 return ParseToken(lltok::rbrace, "expected '}' at end of struct");
Chris Lattnerdf986172009-01-02 07:01:27 +00001870}
1871
1872/// ParseArrayVectorType - Parse an array or vector type, assuming the first
1873/// token has already been consumed.
Chris Lattner1afcace2011-07-09 17:41:24 +00001874/// Type
Chris Lattnerdf986172009-01-02 07:01:27 +00001875/// ::= '[' APSINTVAL 'x' Types ']'
1876/// ::= '<' APSINTVAL 'x' Types '>'
Chris Lattner1afcace2011-07-09 17:41:24 +00001877bool LLParser::ParseArrayVectorType(Type *&Result, bool isVector) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001878 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned() ||
1879 Lex.getAPSIntVal().getBitWidth() > 64)
1880 return TokError("expected number in address space");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001881
Chris Lattnerdf986172009-01-02 07:01:27 +00001882 LocTy SizeLoc = Lex.getLoc();
1883 uint64_t Size = Lex.getAPSIntVal().getZExtValue();
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001884 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +00001885
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001886 if (ParseToken(lltok::kw_x, "expected 'x' after element count"))
1887 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00001888
1889 LocTy TypeLoc = Lex.getLoc();
Chris Lattner1afcace2011-07-09 17:41:24 +00001890 Type *EltTy = 0;
1891 if (ParseType(EltTy)) return true;
Chris Lattnera9a9e072009-03-09 04:49:14 +00001892
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001893 if (ParseToken(isVector ? lltok::greater : lltok::rsquare,
1894 "expected end of sequential type"))
1895 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001896
Chris Lattnerdf986172009-01-02 07:01:27 +00001897 if (isVector) {
Chris Lattner452e2622009-02-28 18:12:41 +00001898 if (Size == 0)
1899 return Error(SizeLoc, "zero element vector is illegal");
Chris Lattnerdf986172009-01-02 07:01:27 +00001900 if ((unsigned)Size != Size)
1901 return Error(SizeLoc, "size too large for vector");
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001902 if (!VectorType::isValidElementType(EltTy))
Duncan Sands2333e292012-11-13 12:59:33 +00001903 return Error(TypeLoc, "invalid vector element type");
Owen Andersondebcb012009-07-29 22:17:13 +00001904 Result = VectorType::get(EltTy, unsigned(Size));
Chris Lattnerdf986172009-01-02 07:01:27 +00001905 } else {
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001906 if (!ArrayType::isValidElementType(EltTy))
Chris Lattnerdf986172009-01-02 07:01:27 +00001907 return Error(TypeLoc, "invalid array element type");
Chris Lattner1afcace2011-07-09 17:41:24 +00001908 Result = ArrayType::get(EltTy, Size);
Chris Lattnerdf986172009-01-02 07:01:27 +00001909 }
1910 return false;
1911}
1912
1913//===----------------------------------------------------------------------===//
1914// Function Semantic Analysis.
1915//===----------------------------------------------------------------------===//
1916
Chris Lattner09d9ef42009-10-28 03:39:23 +00001917LLParser::PerFunctionState::PerFunctionState(LLParser &p, Function &f,
1918 int functionNumber)
1919 : P(p), F(f), FunctionNumber(functionNumber) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001920
1921 // Insert unnamed arguments into the NumberedVals list.
1922 for (Function::arg_iterator AI = F.arg_begin(), E = F.arg_end();
1923 AI != E; ++AI)
1924 if (!AI->hasName())
1925 NumberedVals.push_back(AI);
1926}
1927
1928LLParser::PerFunctionState::~PerFunctionState() {
1929 // If there were any forward referenced non-basicblock values, delete them.
1930 for (std::map<std::string, std::pair<Value*, LocTy> >::iterator
1931 I = ForwardRefVals.begin(), E = ForwardRefVals.end(); I != E; ++I)
1932 if (!isa<BasicBlock>(I->second.first)) {
Owen Andersonb43eae72009-07-02 17:04:01 +00001933 I->second.first->replaceAllUsesWith(
Owen Anderson9e9a0d52009-07-30 23:03:37 +00001934 UndefValue::get(I->second.first->getType()));
Chris Lattnerdf986172009-01-02 07:01:27 +00001935 delete I->second.first;
1936 I->second.first = 0;
1937 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001938
Chris Lattnerdf986172009-01-02 07:01:27 +00001939 for (std::map<unsigned, std::pair<Value*, LocTy> >::iterator
1940 I = ForwardRefValIDs.begin(), E = ForwardRefValIDs.end(); I != E; ++I)
1941 if (!isa<BasicBlock>(I->second.first)) {
Owen Andersonb43eae72009-07-02 17:04:01 +00001942 I->second.first->replaceAllUsesWith(
Owen Anderson9e9a0d52009-07-30 23:03:37 +00001943 UndefValue::get(I->second.first->getType()));
Chris Lattnerdf986172009-01-02 07:01:27 +00001944 delete I->second.first;
1945 I->second.first = 0;
1946 }
1947}
1948
Chris Lattner09d9ef42009-10-28 03:39:23 +00001949bool LLParser::PerFunctionState::FinishFunction() {
1950 // Check to see if someone took the address of labels in this block.
1951 if (!P.ForwardRefBlockAddresses.empty()) {
1952 ValID FunctionID;
1953 if (!F.getName().empty()) {
1954 FunctionID.Kind = ValID::t_GlobalName;
1955 FunctionID.StrVal = F.getName();
1956 } else {
1957 FunctionID.Kind = ValID::t_GlobalID;
1958 FunctionID.UIntVal = FunctionNumber;
1959 }
Michael Ilseman407a6162012-11-15 22:34:00 +00001960
Chris Lattner09d9ef42009-10-28 03:39:23 +00001961 std::map<ValID, std::vector<std::pair<ValID, GlobalValue*> > >::iterator
1962 FRBAI = P.ForwardRefBlockAddresses.find(FunctionID);
1963 if (FRBAI != P.ForwardRefBlockAddresses.end()) {
1964 // Resolve all these references.
1965 if (P.ResolveForwardRefBlockAddresses(&F, FRBAI->second, this))
1966 return true;
Michael Ilseman407a6162012-11-15 22:34:00 +00001967
Chris Lattner09d9ef42009-10-28 03:39:23 +00001968 P.ForwardRefBlockAddresses.erase(FRBAI);
1969 }
1970 }
Michael Ilseman407a6162012-11-15 22:34:00 +00001971
Chris Lattnerdf986172009-01-02 07:01:27 +00001972 if (!ForwardRefVals.empty())
1973 return P.Error(ForwardRefVals.begin()->second.second,
1974 "use of undefined value '%" + ForwardRefVals.begin()->first +
1975 "'");
1976 if (!ForwardRefValIDs.empty())
1977 return P.Error(ForwardRefValIDs.begin()->second.second,
1978 "use of undefined value '%" +
Benjamin Kramerd1e17032010-09-27 17:42:11 +00001979 Twine(ForwardRefValIDs.begin()->first) + "'");
Chris Lattnerdf986172009-01-02 07:01:27 +00001980 return false;
1981}
1982
1983
1984/// GetVal - Get a value with the specified name or ID, creating a
1985/// forward reference record if needed. This can return null if the value
1986/// exists but does not have the right type.
1987Value *LLParser::PerFunctionState::GetVal(const std::string &Name,
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001988 Type *Ty, LocTy Loc) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001989 // Look this name up in the normal function symbol table.
1990 Value *Val = F.getValueSymbolTable().lookup(Name);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001991
Chris Lattnerdf986172009-01-02 07:01:27 +00001992 // If this is a forward reference for the value, see if we already created a
1993 // forward ref record.
1994 if (Val == 0) {
1995 std::map<std::string, std::pair<Value*, LocTy> >::iterator
1996 I = ForwardRefVals.find(Name);
1997 if (I != ForwardRefVals.end())
1998 Val = I->second.first;
1999 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002000
Chris Lattnerdf986172009-01-02 07:01:27 +00002001 // If we have the value in the symbol table or fwd-ref table, return it.
2002 if (Val) {
2003 if (Val->getType() == Ty) return Val;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00002004 if (Ty->isLabelTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002005 P.Error(Loc, "'%" + Name + "' is not a basic block");
2006 else
2007 P.Error(Loc, "'%" + Name + "' defined with type '" +
Chris Lattner0cd0d882011-06-18 21:18:23 +00002008 getTypeString(Val->getType()) + "'");
Chris Lattnerdf986172009-01-02 07:01:27 +00002009 return 0;
2010 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002011
Chris Lattnerdf986172009-01-02 07:01:27 +00002012 // Don't make placeholders with invalid type.
Chris Lattner1afcace2011-07-09 17:41:24 +00002013 if (!Ty->isFirstClassType() && !Ty->isLabelTy()) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002014 P.Error(Loc, "invalid use of a non-first-class type");
2015 return 0;
2016 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002017
Chris Lattnerdf986172009-01-02 07:01:27 +00002018 // Otherwise, create a new forward reference for this value and remember it.
2019 Value *FwdVal;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00002020 if (Ty->isLabelTy())
Owen Anderson1d0be152009-08-13 21:58:54 +00002021 FwdVal = BasicBlock::Create(F.getContext(), Name, &F);
Chris Lattnerdf986172009-01-02 07:01:27 +00002022 else
2023 FwdVal = new Argument(Ty, Name);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002024
Chris Lattnerdf986172009-01-02 07:01:27 +00002025 ForwardRefVals[Name] = std::make_pair(FwdVal, Loc);
2026 return FwdVal;
2027}
2028
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002029Value *LLParser::PerFunctionState::GetVal(unsigned ID, Type *Ty,
Chris Lattnerdf986172009-01-02 07:01:27 +00002030 LocTy Loc) {
2031 // Look this name up in the normal function symbol table.
2032 Value *Val = ID < NumberedVals.size() ? NumberedVals[ID] : 0;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002033
Chris Lattnerdf986172009-01-02 07:01:27 +00002034 // If this is a forward reference for the value, see if we already created a
2035 // forward ref record.
2036 if (Val == 0) {
2037 std::map<unsigned, std::pair<Value*, LocTy> >::iterator
2038 I = ForwardRefValIDs.find(ID);
2039 if (I != ForwardRefValIDs.end())
2040 Val = I->second.first;
2041 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002042
Chris Lattnerdf986172009-01-02 07:01:27 +00002043 // If we have the value in the symbol table or fwd-ref table, return it.
2044 if (Val) {
2045 if (Val->getType() == Ty) return Val;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00002046 if (Ty->isLabelTy())
Benjamin Kramerd1e17032010-09-27 17:42:11 +00002047 P.Error(Loc, "'%" + Twine(ID) + "' is not a basic block");
Chris Lattnerdf986172009-01-02 07:01:27 +00002048 else
Benjamin Kramerd1e17032010-09-27 17:42:11 +00002049 P.Error(Loc, "'%" + Twine(ID) + "' defined with type '" +
Chris Lattner0cd0d882011-06-18 21:18:23 +00002050 getTypeString(Val->getType()) + "'");
Chris Lattnerdf986172009-01-02 07:01:27 +00002051 return 0;
2052 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002053
Chris Lattner1afcace2011-07-09 17:41:24 +00002054 if (!Ty->isFirstClassType() && !Ty->isLabelTy()) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002055 P.Error(Loc, "invalid use of a non-first-class type");
2056 return 0;
2057 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002058
Chris Lattnerdf986172009-01-02 07:01:27 +00002059 // Otherwise, create a new forward reference for this value and remember it.
2060 Value *FwdVal;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00002061 if (Ty->isLabelTy())
Owen Anderson1d0be152009-08-13 21:58:54 +00002062 FwdVal = BasicBlock::Create(F.getContext(), "", &F);
Chris Lattnerdf986172009-01-02 07:01:27 +00002063 else
2064 FwdVal = new Argument(Ty);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002065
Chris Lattnerdf986172009-01-02 07:01:27 +00002066 ForwardRefValIDs[ID] = std::make_pair(FwdVal, Loc);
2067 return FwdVal;
2068}
2069
2070/// SetInstName - After an instruction is parsed and inserted into its
2071/// basic block, this installs its name.
2072bool LLParser::PerFunctionState::SetInstName(int NameID,
2073 const std::string &NameStr,
2074 LocTy NameLoc, Instruction *Inst) {
2075 // If this instruction has void type, it cannot have a name or ID specified.
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00002076 if (Inst->getType()->isVoidTy()) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002077 if (NameID != -1 || !NameStr.empty())
2078 return P.Error(NameLoc, "instructions returning void cannot have a name");
2079 return false;
2080 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002081
Chris Lattnerdf986172009-01-02 07:01:27 +00002082 // If this was a numbered instruction, verify that the instruction is the
2083 // expected value and resolve any forward references.
2084 if (NameStr.empty()) {
2085 // If neither a name nor an ID was specified, just use the next ID.
2086 if (NameID == -1)
2087 NameID = NumberedVals.size();
Daniel Dunbara279bc32009-09-20 02:20:51 +00002088
Chris Lattnerdf986172009-01-02 07:01:27 +00002089 if (unsigned(NameID) != NumberedVals.size())
2090 return P.Error(NameLoc, "instruction expected to be numbered '%" +
Benjamin Kramerd1e17032010-09-27 17:42:11 +00002091 Twine(NumberedVals.size()) + "'");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002092
Chris Lattnerdf986172009-01-02 07:01:27 +00002093 std::map<unsigned, std::pair<Value*, LocTy> >::iterator FI =
2094 ForwardRefValIDs.find(NameID);
2095 if (FI != ForwardRefValIDs.end()) {
2096 if (FI->second.first->getType() != Inst->getType())
Daniel Dunbara279bc32009-09-20 02:20:51 +00002097 return P.Error(NameLoc, "instruction forward referenced with type '" +
Chris Lattner0cd0d882011-06-18 21:18:23 +00002098 getTypeString(FI->second.first->getType()) + "'");
Chris Lattnerdf986172009-01-02 07:01:27 +00002099 FI->second.first->replaceAllUsesWith(Inst);
Nuno Lopes2b4f28e2009-09-02 15:02:57 +00002100 delete FI->second.first;
Chris Lattnerdf986172009-01-02 07:01:27 +00002101 ForwardRefValIDs.erase(FI);
2102 }
2103
2104 NumberedVals.push_back(Inst);
2105 return false;
2106 }
2107
2108 // Otherwise, the instruction had a name. Resolve forward refs and set it.
2109 std::map<std::string, std::pair<Value*, LocTy> >::iterator
2110 FI = ForwardRefVals.find(NameStr);
2111 if (FI != ForwardRefVals.end()) {
2112 if (FI->second.first->getType() != Inst->getType())
Daniel Dunbara279bc32009-09-20 02:20:51 +00002113 return P.Error(NameLoc, "instruction forward referenced with type '" +
Chris Lattner0cd0d882011-06-18 21:18:23 +00002114 getTypeString(FI->second.first->getType()) + "'");
Chris Lattnerdf986172009-01-02 07:01:27 +00002115 FI->second.first->replaceAllUsesWith(Inst);
Nuno Lopes531552a2009-09-02 14:22:03 +00002116 delete FI->second.first;
Chris Lattnerdf986172009-01-02 07:01:27 +00002117 ForwardRefVals.erase(FI);
2118 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002119
Chris Lattnerdf986172009-01-02 07:01:27 +00002120 // Set the name on the instruction.
2121 Inst->setName(NameStr);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002122
Benjamin Krameraf812352010-10-16 11:28:23 +00002123 if (Inst->getName() != NameStr)
Daniel Dunbara279bc32009-09-20 02:20:51 +00002124 return P.Error(NameLoc, "multiple definition of local value named '" +
Chris Lattnerdf986172009-01-02 07:01:27 +00002125 NameStr + "'");
2126 return false;
2127}
2128
2129/// GetBB - Get a basic block with the specified name or ID, creating a
2130/// forward reference record if needed.
2131BasicBlock *LLParser::PerFunctionState::GetBB(const std::string &Name,
2132 LocTy Loc) {
Owen Anderson1d0be152009-08-13 21:58:54 +00002133 return cast_or_null<BasicBlock>(GetVal(Name,
2134 Type::getLabelTy(F.getContext()), Loc));
Chris Lattnerdf986172009-01-02 07:01:27 +00002135}
2136
2137BasicBlock *LLParser::PerFunctionState::GetBB(unsigned ID, LocTy Loc) {
Owen Anderson1d0be152009-08-13 21:58:54 +00002138 return cast_or_null<BasicBlock>(GetVal(ID,
2139 Type::getLabelTy(F.getContext()), Loc));
Chris Lattnerdf986172009-01-02 07:01:27 +00002140}
2141
2142/// DefineBB - Define the specified basic block, which is either named or
2143/// unnamed. If there is an error, this returns null otherwise it returns
2144/// the block being defined.
2145BasicBlock *LLParser::PerFunctionState::DefineBB(const std::string &Name,
2146 LocTy Loc) {
2147 BasicBlock *BB;
2148 if (Name.empty())
2149 BB = GetBB(NumberedVals.size(), Loc);
2150 else
2151 BB = GetBB(Name, Loc);
2152 if (BB == 0) return 0; // Already diagnosed error.
Daniel Dunbara279bc32009-09-20 02:20:51 +00002153
Chris Lattnerdf986172009-01-02 07:01:27 +00002154 // Move the block to the end of the function. Forward ref'd blocks are
2155 // inserted wherever they happen to be referenced.
2156 F.getBasicBlockList().splice(F.end(), F.getBasicBlockList(), BB);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002157
Chris Lattnerdf986172009-01-02 07:01:27 +00002158 // Remove the block from forward ref sets.
2159 if (Name.empty()) {
2160 ForwardRefValIDs.erase(NumberedVals.size());
2161 NumberedVals.push_back(BB);
2162 } else {
2163 // BB forward references are already in the function symbol table.
2164 ForwardRefVals.erase(Name);
2165 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002166
Chris Lattnerdf986172009-01-02 07:01:27 +00002167 return BB;
2168}
2169
2170//===----------------------------------------------------------------------===//
2171// Constants.
2172//===----------------------------------------------------------------------===//
2173
2174/// ParseValID - Parse an abstract value that doesn't necessarily have a
2175/// type implied. For example, if we parse "4" we don't know what integer type
2176/// it has. The value will later be combined with its type and checked for
Victor Hernandez24e64df2010-01-10 07:14:18 +00002177/// sanity. PFS is used to convert function-local operands of metadata (since
2178/// metadata operands are not just parsed here but also converted to values).
2179/// PFS can be null when we are not parsing metadata values inside a function.
Victor Hernandezbf170d42010-01-05 22:22:14 +00002180bool LLParser::ParseValID(ValID &ID, PerFunctionState *PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002181 ID.Loc = Lex.getLoc();
2182 switch (Lex.getKind()) {
2183 default: return TokError("expected value token");
2184 case lltok::GlobalID: // @42
2185 ID.UIntVal = Lex.getUIntVal();
2186 ID.Kind = ValID::t_GlobalID;
2187 break;
2188 case lltok::GlobalVar: // @foo
2189 ID.StrVal = Lex.getStrVal();
2190 ID.Kind = ValID::t_GlobalName;
2191 break;
2192 case lltok::LocalVarID: // %42
2193 ID.UIntVal = Lex.getUIntVal();
2194 ID.Kind = ValID::t_LocalID;
2195 break;
2196 case lltok::LocalVar: // %foo
Chris Lattnerdf986172009-01-02 07:01:27 +00002197 ID.StrVal = Lex.getStrVal();
2198 ID.Kind = ValID::t_LocalName;
2199 break;
Dan Gohman83448032010-07-14 18:26:50 +00002200 case lltok::exclaim: // !42, !{...}, or !"foo"
2201 return ParseMetadataValue(ID, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00002202 case lltok::APSInt:
Daniel Dunbara279bc32009-09-20 02:20:51 +00002203 ID.APSIntVal = Lex.getAPSIntVal();
Chris Lattnerdf986172009-01-02 07:01:27 +00002204 ID.Kind = ValID::t_APSInt;
2205 break;
2206 case lltok::APFloat:
2207 ID.APFloatVal = Lex.getAPFloatVal();
2208 ID.Kind = ValID::t_APFloat;
2209 break;
2210 case lltok::kw_true:
Owen Anderson5defacc2009-07-31 17:39:07 +00002211 ID.ConstantVal = ConstantInt::getTrue(Context);
Chris Lattnerdf986172009-01-02 07:01:27 +00002212 ID.Kind = ValID::t_Constant;
2213 break;
2214 case lltok::kw_false:
Owen Anderson5defacc2009-07-31 17:39:07 +00002215 ID.ConstantVal = ConstantInt::getFalse(Context);
Chris Lattnerdf986172009-01-02 07:01:27 +00002216 ID.Kind = ValID::t_Constant;
2217 break;
2218 case lltok::kw_null: ID.Kind = ValID::t_Null; break;
2219 case lltok::kw_undef: ID.Kind = ValID::t_Undef; break;
2220 case lltok::kw_zeroinitializer: ID.Kind = ValID::t_Zero; break;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002221
Chris Lattnerdf986172009-01-02 07:01:27 +00002222 case lltok::lbrace: {
2223 // ValID ::= '{' ConstVector '}'
2224 Lex.Lex();
2225 SmallVector<Constant*, 16> Elts;
2226 if (ParseGlobalValueVector(Elts) ||
2227 ParseToken(lltok::rbrace, "expected end of struct constant"))
2228 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002229
Chris Lattner1afcace2011-07-09 17:41:24 +00002230 ID.ConstantStructElts = new Constant*[Elts.size()];
2231 ID.UIntVal = Elts.size();
2232 memcpy(ID.ConstantStructElts, Elts.data(), Elts.size()*sizeof(Elts[0]));
2233 ID.Kind = ValID::t_ConstantStruct;
Chris Lattnerdf986172009-01-02 07:01:27 +00002234 return false;
2235 }
2236 case lltok::less: {
2237 // ValID ::= '<' ConstVector '>' --> Vector.
2238 // ValID ::= '<' '{' ConstVector '}' '>' --> Packed Struct.
2239 Lex.Lex();
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002240 bool isPackedStruct = EatIfPresent(lltok::lbrace);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002241
Chris Lattnerdf986172009-01-02 07:01:27 +00002242 SmallVector<Constant*, 16> Elts;
2243 LocTy FirstEltLoc = Lex.getLoc();
2244 if (ParseGlobalValueVector(Elts) ||
2245 (isPackedStruct &&
2246 ParseToken(lltok::rbrace, "expected end of packed struct")) ||
2247 ParseToken(lltok::greater, "expected end of constant"))
2248 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002249
Chris Lattnerdf986172009-01-02 07:01:27 +00002250 if (isPackedStruct) {
Chris Lattner1afcace2011-07-09 17:41:24 +00002251 ID.ConstantStructElts = new Constant*[Elts.size()];
2252 memcpy(ID.ConstantStructElts, Elts.data(), Elts.size()*sizeof(Elts[0]));
2253 ID.UIntVal = Elts.size();
2254 ID.Kind = ValID::t_PackedConstantStruct;
Chris Lattnerdf986172009-01-02 07:01:27 +00002255 return false;
2256 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002257
Chris Lattnerdf986172009-01-02 07:01:27 +00002258 if (Elts.empty())
2259 return Error(ID.Loc, "constant vector must not be empty");
2260
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00002261 if (!Elts[0]->getType()->isIntegerTy() &&
Nadav Rotem16087692011-12-05 06:29:09 +00002262 !Elts[0]->getType()->isFloatingPointTy() &&
2263 !Elts[0]->getType()->isPointerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002264 return Error(FirstEltLoc,
Nadav Rotem16087692011-12-05 06:29:09 +00002265 "vector elements must have integer, pointer or floating point type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002266
Chris Lattnerdf986172009-01-02 07:01:27 +00002267 // Verify that all the vector elements have the same type.
2268 for (unsigned i = 1, e = Elts.size(); i != e; ++i)
2269 if (Elts[i]->getType() != Elts[0]->getType())
2270 return Error(FirstEltLoc,
Benjamin Kramerd1e17032010-09-27 17:42:11 +00002271 "vector element #" + Twine(i) +
Chris Lattner0cd0d882011-06-18 21:18:23 +00002272 " is not of type '" + getTypeString(Elts[0]->getType()));
Daniel Dunbara279bc32009-09-20 02:20:51 +00002273
Chris Lattner2ca5c862011-02-15 00:14:00 +00002274 ID.ConstantVal = ConstantVector::get(Elts);
Chris Lattnerdf986172009-01-02 07:01:27 +00002275 ID.Kind = ValID::t_Constant;
2276 return false;
2277 }
2278 case lltok::lsquare: { // Array Constant
2279 Lex.Lex();
2280 SmallVector<Constant*, 16> Elts;
2281 LocTy FirstEltLoc = Lex.getLoc();
2282 if (ParseGlobalValueVector(Elts) ||
2283 ParseToken(lltok::rsquare, "expected end of array constant"))
2284 return true;
2285
2286 // Handle empty element.
2287 if (Elts.empty()) {
2288 // Use undef instead of an array because it's inconvenient to determine
2289 // the element type at this point, there being no elements to examine.
Chris Lattner081b5052009-01-05 07:52:51 +00002290 ID.Kind = ValID::t_EmptyArray;
Chris Lattnerdf986172009-01-02 07:01:27 +00002291 return false;
2292 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002293
Chris Lattnerdf986172009-01-02 07:01:27 +00002294 if (!Elts[0]->getType()->isFirstClassType())
Daniel Dunbara279bc32009-09-20 02:20:51 +00002295 return Error(FirstEltLoc, "invalid array element type: " +
Chris Lattner0cd0d882011-06-18 21:18:23 +00002296 getTypeString(Elts[0]->getType()));
Daniel Dunbara279bc32009-09-20 02:20:51 +00002297
Owen Andersondebcb012009-07-29 22:17:13 +00002298 ArrayType *ATy = ArrayType::get(Elts[0]->getType(), Elts.size());
Daniel Dunbara279bc32009-09-20 02:20:51 +00002299
Chris Lattnerdf986172009-01-02 07:01:27 +00002300 // Verify all elements are correct type!
Chris Lattner6d6b3cc2009-01-02 08:49:06 +00002301 for (unsigned i = 0, e = Elts.size(); i != e; ++i) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002302 if (Elts[i]->getType() != Elts[0]->getType())
2303 return Error(FirstEltLoc,
Benjamin Kramerd1e17032010-09-27 17:42:11 +00002304 "array element #" + Twine(i) +
Chris Lattner0cd0d882011-06-18 21:18:23 +00002305 " is not of type '" + getTypeString(Elts[0]->getType()));
Chris Lattnerdf986172009-01-02 07:01:27 +00002306 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002307
Jay Foad26701082011-06-22 09:24:39 +00002308 ID.ConstantVal = ConstantArray::get(ATy, Elts);
Chris Lattnerdf986172009-01-02 07:01:27 +00002309 ID.Kind = ValID::t_Constant;
2310 return false;
2311 }
2312 case lltok::kw_c: // c "foo"
2313 Lex.Lex();
Chris Lattner18c7f802012-02-05 02:29:43 +00002314 ID.ConstantVal = ConstantDataArray::getString(Context, Lex.getStrVal(),
2315 false);
Chris Lattnerdf986172009-01-02 07:01:27 +00002316 if (ParseToken(lltok::StringConstant, "expected string")) return true;
2317 ID.Kind = ValID::t_Constant;
2318 return false;
2319
2320 case lltok::kw_asm: {
Chad Rosier27d844f2013-02-14 20:44:07 +00002321 // ValID ::= 'asm' SideEffect? AlignStack? IntelDialect? STRINGCONSTANT ','
2322 // STRINGCONSTANT
Chad Rosier581600b2012-09-05 19:00:49 +00002323 bool HasSideEffect, AlignStack, AsmDialect;
Chris Lattnerdf986172009-01-02 07:01:27 +00002324 Lex.Lex();
2325 if (ParseOptionalToken(lltok::kw_sideeffect, HasSideEffect) ||
Dale Johannesen8ba2d5b2009-10-21 23:28:00 +00002326 ParseOptionalToken(lltok::kw_alignstack, AlignStack) ||
Chad Rosier581600b2012-09-05 19:00:49 +00002327 ParseOptionalToken(lltok::kw_inteldialect, AsmDialect) ||
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002328 ParseStringConstant(ID.StrVal) ||
2329 ParseToken(lltok::comma, "expected comma in inline asm expression") ||
Chris Lattnerdf986172009-01-02 07:01:27 +00002330 ParseToken(lltok::StringConstant, "expected constraint string"))
2331 return true;
2332 ID.StrVal2 = Lex.getStrVal();
Chad Rosier36547342012-09-05 00:08:17 +00002333 ID.UIntVal = unsigned(HasSideEffect) | (unsigned(AlignStack)<<1) |
Chad Rosier581600b2012-09-05 19:00:49 +00002334 (unsigned(AsmDialect)<<2);
Chris Lattnerdf986172009-01-02 07:01:27 +00002335 ID.Kind = ValID::t_InlineAsm;
2336 return false;
2337 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002338
Chris Lattner09d9ef42009-10-28 03:39:23 +00002339 case lltok::kw_blockaddress: {
2340 // ValID ::= 'blockaddress' '(' @foo ',' %bar ')'
2341 Lex.Lex();
2342
2343 ValID Fn, Label;
2344 LocTy FnLoc, LabelLoc;
Michael Ilseman407a6162012-11-15 22:34:00 +00002345
Chris Lattner09d9ef42009-10-28 03:39:23 +00002346 if (ParseToken(lltok::lparen, "expected '(' in block address expression") ||
2347 ParseValID(Fn) ||
2348 ParseToken(lltok::comma, "expected comma in block address expression")||
2349 ParseValID(Label) ||
2350 ParseToken(lltok::rparen, "expected ')' in block address expression"))
2351 return true;
Michael Ilseman407a6162012-11-15 22:34:00 +00002352
Chris Lattner09d9ef42009-10-28 03:39:23 +00002353 if (Fn.Kind != ValID::t_GlobalID && Fn.Kind != ValID::t_GlobalName)
2354 return Error(Fn.Loc, "expected function name in blockaddress");
Chris Lattnercdfc9402009-11-01 01:27:45 +00002355 if (Label.Kind != ValID::t_LocalID && Label.Kind != ValID::t_LocalName)
Chris Lattner09d9ef42009-10-28 03:39:23 +00002356 return Error(Label.Loc, "expected basic block name in blockaddress");
Michael Ilseman407a6162012-11-15 22:34:00 +00002357
Chris Lattner09d9ef42009-10-28 03:39:23 +00002358 // Make a global variable as a placeholder for this reference.
2359 GlobalVariable *FwdRef = new GlobalVariable(*M, Type::getInt8Ty(Context),
2360 false, GlobalValue::InternalLinkage,
2361 0, "");
2362 ForwardRefBlockAddresses[Fn].push_back(std::make_pair(Label, FwdRef));
2363 ID.ConstantVal = FwdRef;
2364 ID.Kind = ValID::t_Constant;
2365 return false;
2366 }
Michael Ilseman407a6162012-11-15 22:34:00 +00002367
Chris Lattnerdf986172009-01-02 07:01:27 +00002368 case lltok::kw_trunc:
2369 case lltok::kw_zext:
2370 case lltok::kw_sext:
2371 case lltok::kw_fptrunc:
2372 case lltok::kw_fpext:
2373 case lltok::kw_bitcast:
2374 case lltok::kw_uitofp:
2375 case lltok::kw_sitofp:
2376 case lltok::kw_fptoui:
Daniel Dunbara279bc32009-09-20 02:20:51 +00002377 case lltok::kw_fptosi:
Chris Lattnerdf986172009-01-02 07:01:27 +00002378 case lltok::kw_inttoptr:
Daniel Dunbara279bc32009-09-20 02:20:51 +00002379 case lltok::kw_ptrtoint: {
Chris Lattnerdf986172009-01-02 07:01:27 +00002380 unsigned Opc = Lex.getUIntVal();
Chris Lattner1afcace2011-07-09 17:41:24 +00002381 Type *DestTy = 0;
Chris Lattnerdf986172009-01-02 07:01:27 +00002382 Constant *SrcVal;
2383 Lex.Lex();
2384 if (ParseToken(lltok::lparen, "expected '(' after constantexpr cast") ||
2385 ParseGlobalTypeAndValue(SrcVal) ||
Dan Gohman24b108b2009-06-15 21:52:11 +00002386 ParseToken(lltok::kw_to, "expected 'to' in constantexpr cast") ||
Chris Lattnerdf986172009-01-02 07:01:27 +00002387 ParseType(DestTy) ||
2388 ParseToken(lltok::rparen, "expected ')' at end of constantexpr cast"))
2389 return true;
2390 if (!CastInst::castIsValid((Instruction::CastOps)Opc, SrcVal, DestTy))
2391 return Error(ID.Loc, "invalid cast opcode for cast from '" +
Chris Lattner0cd0d882011-06-18 21:18:23 +00002392 getTypeString(SrcVal->getType()) + "' to '" +
2393 getTypeString(DestTy) + "'");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002394 ID.ConstantVal = ConstantExpr::getCast((Instruction::CastOps)Opc,
Owen Andersonfba933c2009-07-01 23:57:11 +00002395 SrcVal, DestTy);
Chris Lattnerdf986172009-01-02 07:01:27 +00002396 ID.Kind = ValID::t_Constant;
2397 return false;
2398 }
2399 case lltok::kw_extractvalue: {
2400 Lex.Lex();
2401 Constant *Val;
2402 SmallVector<unsigned, 4> Indices;
2403 if (ParseToken(lltok::lparen, "expected '(' in extractvalue constantexpr")||
2404 ParseGlobalTypeAndValue(Val) ||
2405 ParseIndexList(Indices) ||
2406 ParseToken(lltok::rparen, "expected ')' in extractvalue constantexpr"))
2407 return true;
Devang Patele8bc45a2009-11-03 19:06:07 +00002408
Chris Lattnerfdfeb692010-02-12 20:49:41 +00002409 if (!Val->getType()->isAggregateType())
2410 return Error(ID.Loc, "extractvalue operand must be aggregate type");
Jay Foadfc6d3a42011-07-13 10:26:04 +00002411 if (!ExtractValueInst::getIndexedType(Val->getType(), Indices))
Chris Lattnerdf986172009-01-02 07:01:27 +00002412 return Error(ID.Loc, "invalid indices for extractvalue");
Jay Foadfc6d3a42011-07-13 10:26:04 +00002413 ID.ConstantVal = ConstantExpr::getExtractValue(Val, Indices);
Chris Lattnerdf986172009-01-02 07:01:27 +00002414 ID.Kind = ValID::t_Constant;
2415 return false;
2416 }
2417 case lltok::kw_insertvalue: {
2418 Lex.Lex();
2419 Constant *Val0, *Val1;
2420 SmallVector<unsigned, 4> Indices;
2421 if (ParseToken(lltok::lparen, "expected '(' in insertvalue constantexpr")||
2422 ParseGlobalTypeAndValue(Val0) ||
2423 ParseToken(lltok::comma, "expected comma in insertvalue constantexpr")||
2424 ParseGlobalTypeAndValue(Val1) ||
2425 ParseIndexList(Indices) ||
2426 ParseToken(lltok::rparen, "expected ')' in insertvalue constantexpr"))
2427 return true;
Chris Lattnerfdfeb692010-02-12 20:49:41 +00002428 if (!Val0->getType()->isAggregateType())
2429 return Error(ID.Loc, "insertvalue operand must be aggregate type");
Jay Foadfc6d3a42011-07-13 10:26:04 +00002430 if (!ExtractValueInst::getIndexedType(Val0->getType(), Indices))
Chris Lattnerdf986172009-01-02 07:01:27 +00002431 return Error(ID.Loc, "invalid indices for insertvalue");
Jay Foadfc6d3a42011-07-13 10:26:04 +00002432 ID.ConstantVal = ConstantExpr::getInsertValue(Val0, Val1, Indices);
Chris Lattnerdf986172009-01-02 07:01:27 +00002433 ID.Kind = ValID::t_Constant;
2434 return false;
2435 }
2436 case lltok::kw_icmp:
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00002437 case lltok::kw_fcmp: {
Chris Lattnerdf986172009-01-02 07:01:27 +00002438 unsigned PredVal, Opc = Lex.getUIntVal();
2439 Constant *Val0, *Val1;
2440 Lex.Lex();
2441 if (ParseCmpPredicate(PredVal, Opc) ||
2442 ParseToken(lltok::lparen, "expected '(' in compare constantexpr") ||
2443 ParseGlobalTypeAndValue(Val0) ||
2444 ParseToken(lltok::comma, "expected comma in compare constantexpr") ||
2445 ParseGlobalTypeAndValue(Val1) ||
2446 ParseToken(lltok::rparen, "expected ')' in compare constantexpr"))
2447 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002448
Chris Lattnerdf986172009-01-02 07:01:27 +00002449 if (Val0->getType() != Val1->getType())
2450 return Error(ID.Loc, "compare operands must have the same type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002451
Chris Lattnerdf986172009-01-02 07:01:27 +00002452 CmpInst::Predicate Pred = (CmpInst::Predicate)PredVal;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002453
Chris Lattnerdf986172009-01-02 07:01:27 +00002454 if (Opc == Instruction::FCmp) {
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00002455 if (!Val0->getType()->isFPOrFPVectorTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002456 return Error(ID.Loc, "fcmp requires floating point operands");
Owen Andersonbaf3c402009-07-29 18:55:55 +00002457 ID.ConstantVal = ConstantExpr::getFCmp(Pred, Val0, Val1);
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00002458 } else {
2459 assert(Opc == Instruction::ICmp && "Unexpected opcode for CmpInst!");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00002460 if (!Val0->getType()->isIntOrIntVectorTy() &&
Nadav Rotem16087692011-12-05 06:29:09 +00002461 !Val0->getType()->getScalarType()->isPointerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002462 return Error(ID.Loc, "icmp requires pointer or integer operands");
Owen Andersonbaf3c402009-07-29 18:55:55 +00002463 ID.ConstantVal = ConstantExpr::getICmp(Pred, Val0, Val1);
Chris Lattnerdf986172009-01-02 07:01:27 +00002464 }
2465 ID.Kind = ValID::t_Constant;
2466 return false;
2467 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002468
Chris Lattnerdf986172009-01-02 07:01:27 +00002469 // Binary Operators.
2470 case lltok::kw_add:
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002471 case lltok::kw_fadd:
Chris Lattnerdf986172009-01-02 07:01:27 +00002472 case lltok::kw_sub:
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002473 case lltok::kw_fsub:
Chris Lattnerdf986172009-01-02 07:01:27 +00002474 case lltok::kw_mul:
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002475 case lltok::kw_fmul:
Chris Lattnerdf986172009-01-02 07:01:27 +00002476 case lltok::kw_udiv:
2477 case lltok::kw_sdiv:
2478 case lltok::kw_fdiv:
2479 case lltok::kw_urem:
2480 case lltok::kw_srem:
Chris Lattnerf067d582011-02-07 16:40:21 +00002481 case lltok::kw_frem:
2482 case lltok::kw_shl:
2483 case lltok::kw_lshr:
2484 case lltok::kw_ashr: {
Dan Gohman59858cf2009-07-27 16:11:46 +00002485 bool NUW = false;
2486 bool NSW = false;
2487 bool Exact = false;
Chris Lattnerdf986172009-01-02 07:01:27 +00002488 unsigned Opc = Lex.getUIntVal();
2489 Constant *Val0, *Val1;
2490 Lex.Lex();
Dan Gohman59858cf2009-07-27 16:11:46 +00002491 LocTy ModifierLoc = Lex.getLoc();
Chris Lattnerf067d582011-02-07 16:40:21 +00002492 if (Opc == Instruction::Add || Opc == Instruction::Sub ||
2493 Opc == Instruction::Mul || Opc == Instruction::Shl) {
Dan Gohman59858cf2009-07-27 16:11:46 +00002494 if (EatIfPresent(lltok::kw_nuw))
2495 NUW = true;
2496 if (EatIfPresent(lltok::kw_nsw)) {
2497 NSW = true;
2498 if (EatIfPresent(lltok::kw_nuw))
2499 NUW = true;
2500 }
Chris Lattnerf067d582011-02-07 16:40:21 +00002501 } else if (Opc == Instruction::SDiv || Opc == Instruction::UDiv ||
2502 Opc == Instruction::LShr || Opc == Instruction::AShr) {
Dan Gohman59858cf2009-07-27 16:11:46 +00002503 if (EatIfPresent(lltok::kw_exact))
2504 Exact = true;
2505 }
Chris Lattnerdf986172009-01-02 07:01:27 +00002506 if (ParseToken(lltok::lparen, "expected '(' in binary constantexpr") ||
2507 ParseGlobalTypeAndValue(Val0) ||
2508 ParseToken(lltok::comma, "expected comma in binary constantexpr") ||
2509 ParseGlobalTypeAndValue(Val1) ||
2510 ParseToken(lltok::rparen, "expected ')' in binary constantexpr"))
2511 return true;
2512 if (Val0->getType() != Val1->getType())
2513 return Error(ID.Loc, "operands of constexpr must have same type");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00002514 if (!Val0->getType()->isIntOrIntVectorTy()) {
Dan Gohman59858cf2009-07-27 16:11:46 +00002515 if (NUW)
2516 return Error(ModifierLoc, "nuw only applies to integer operations");
2517 if (NSW)
2518 return Error(ModifierLoc, "nsw only applies to integer operations");
2519 }
Dan Gohman1eaac532010-05-03 22:44:19 +00002520 // Check that the type is valid for the operator.
2521 switch (Opc) {
2522 case Instruction::Add:
2523 case Instruction::Sub:
2524 case Instruction::Mul:
2525 case Instruction::UDiv:
2526 case Instruction::SDiv:
2527 case Instruction::URem:
2528 case Instruction::SRem:
Chris Lattnerf067d582011-02-07 16:40:21 +00002529 case Instruction::Shl:
2530 case Instruction::AShr:
2531 case Instruction::LShr:
Dan Gohman1eaac532010-05-03 22:44:19 +00002532 if (!Val0->getType()->isIntOrIntVectorTy())
2533 return Error(ID.Loc, "constexpr requires integer operands");
2534 break;
2535 case Instruction::FAdd:
2536 case Instruction::FSub:
2537 case Instruction::FMul:
2538 case Instruction::FDiv:
2539 case Instruction::FRem:
2540 if (!Val0->getType()->isFPOrFPVectorTy())
2541 return Error(ID.Loc, "constexpr requires fp operands");
2542 break;
2543 default: llvm_unreachable("Unknown binary operator!");
2544 }
Dan Gohmanf8dbee72009-09-07 23:54:19 +00002545 unsigned Flags = 0;
2546 if (NUW) Flags |= OverflowingBinaryOperator::NoUnsignedWrap;
2547 if (NSW) Flags |= OverflowingBinaryOperator::NoSignedWrap;
Chris Lattner35bda892011-02-06 21:44:57 +00002548 if (Exact) Flags |= PossiblyExactOperator::IsExact;
Dan Gohmanf8dbee72009-09-07 23:54:19 +00002549 Constant *C = ConstantExpr::get(Opc, Val0, Val1, Flags);
Dan Gohman59858cf2009-07-27 16:11:46 +00002550 ID.ConstantVal = C;
Chris Lattnerdf986172009-01-02 07:01:27 +00002551 ID.Kind = ValID::t_Constant;
2552 return false;
2553 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002554
Chris Lattnerdf986172009-01-02 07:01:27 +00002555 // Logical Operations
Chris Lattnerdf986172009-01-02 07:01:27 +00002556 case lltok::kw_and:
2557 case lltok::kw_or:
2558 case lltok::kw_xor: {
2559 unsigned Opc = Lex.getUIntVal();
2560 Constant *Val0, *Val1;
2561 Lex.Lex();
2562 if (ParseToken(lltok::lparen, "expected '(' in logical constantexpr") ||
2563 ParseGlobalTypeAndValue(Val0) ||
2564 ParseToken(lltok::comma, "expected comma in logical constantexpr") ||
2565 ParseGlobalTypeAndValue(Val1) ||
2566 ParseToken(lltok::rparen, "expected ')' in logical constantexpr"))
2567 return true;
2568 if (Val0->getType() != Val1->getType())
2569 return Error(ID.Loc, "operands of constexpr must have same type");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00002570 if (!Val0->getType()->isIntOrIntVectorTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002571 return Error(ID.Loc,
2572 "constexpr requires integer or integer vector operands");
Owen Andersonbaf3c402009-07-29 18:55:55 +00002573 ID.ConstantVal = ConstantExpr::get(Opc, Val0, Val1);
Chris Lattnerdf986172009-01-02 07:01:27 +00002574 ID.Kind = ValID::t_Constant;
2575 return false;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002576 }
2577
Chris Lattnerdf986172009-01-02 07:01:27 +00002578 case lltok::kw_getelementptr:
2579 case lltok::kw_shufflevector:
2580 case lltok::kw_insertelement:
2581 case lltok::kw_extractelement:
2582 case lltok::kw_select: {
2583 unsigned Opc = Lex.getUIntVal();
2584 SmallVector<Constant*, 16> Elts;
Dan Gohmandd8004d2009-07-27 21:53:46 +00002585 bool InBounds = false;
Chris Lattnerdf986172009-01-02 07:01:27 +00002586 Lex.Lex();
Dan Gohmandd8004d2009-07-27 21:53:46 +00002587 if (Opc == Instruction::GetElementPtr)
Dan Gohmandcb40a32009-07-29 15:58:36 +00002588 InBounds = EatIfPresent(lltok::kw_inbounds);
Chris Lattnerdf986172009-01-02 07:01:27 +00002589 if (ParseToken(lltok::lparen, "expected '(' in constantexpr") ||
2590 ParseGlobalValueVector(Elts) ||
2591 ParseToken(lltok::rparen, "expected ')' in constantexpr"))
2592 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002593
Chris Lattnerdf986172009-01-02 07:01:27 +00002594 if (Opc == Instruction::GetElementPtr) {
Nadav Rotem16087692011-12-05 06:29:09 +00002595 if (Elts.size() == 0 ||
2596 !Elts[0]->getType()->getScalarType()->isPointerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002597 return Error(ID.Loc, "getelementptr requires pointer operand");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002598
Jay Foaddab3d292011-07-21 14:31:17 +00002599 ArrayRef<Constant *> Indices(Elts.begin() + 1, Elts.end());
Jay Foada9203102011-07-25 09:48:08 +00002600 if (!GetElementPtrInst::getIndexedType(Elts[0]->getType(), Indices))
Chris Lattnerdf986172009-01-02 07:01:27 +00002601 return Error(ID.Loc, "invalid indices for getelementptr");
Jay Foad4b5e2072011-07-21 15:15:37 +00002602 ID.ConstantVal = ConstantExpr::getGetElementPtr(Elts[0], Indices,
2603 InBounds);
Chris Lattnerdf986172009-01-02 07:01:27 +00002604 } else if (Opc == Instruction::Select) {
2605 if (Elts.size() != 3)
2606 return Error(ID.Loc, "expected three operands to select");
2607 if (const char *Reason = SelectInst::areInvalidOperands(Elts[0], Elts[1],
2608 Elts[2]))
2609 return Error(ID.Loc, Reason);
Owen Andersonbaf3c402009-07-29 18:55:55 +00002610 ID.ConstantVal = ConstantExpr::getSelect(Elts[0], Elts[1], Elts[2]);
Chris Lattnerdf986172009-01-02 07:01:27 +00002611 } else if (Opc == Instruction::ShuffleVector) {
2612 if (Elts.size() != 3)
2613 return Error(ID.Loc, "expected three operands to shufflevector");
2614 if (!ShuffleVectorInst::isValidOperands(Elts[0], Elts[1], Elts[2]))
2615 return Error(ID.Loc, "invalid operands to shufflevector");
Owen Andersonfba933c2009-07-01 23:57:11 +00002616 ID.ConstantVal =
Owen Andersonbaf3c402009-07-29 18:55:55 +00002617 ConstantExpr::getShuffleVector(Elts[0], Elts[1],Elts[2]);
Chris Lattnerdf986172009-01-02 07:01:27 +00002618 } else if (Opc == Instruction::ExtractElement) {
2619 if (Elts.size() != 2)
2620 return Error(ID.Loc, "expected two operands to extractelement");
2621 if (!ExtractElementInst::isValidOperands(Elts[0], Elts[1]))
2622 return Error(ID.Loc, "invalid extractelement operands");
Owen Andersonbaf3c402009-07-29 18:55:55 +00002623 ID.ConstantVal = ConstantExpr::getExtractElement(Elts[0], Elts[1]);
Chris Lattnerdf986172009-01-02 07:01:27 +00002624 } else {
2625 assert(Opc == Instruction::InsertElement && "Unknown opcode");
2626 if (Elts.size() != 3)
2627 return Error(ID.Loc, "expected three operands to insertelement");
2628 if (!InsertElementInst::isValidOperands(Elts[0], Elts[1], Elts[2]))
2629 return Error(ID.Loc, "invalid insertelement operands");
Owen Andersonfba933c2009-07-01 23:57:11 +00002630 ID.ConstantVal =
Owen Andersonbaf3c402009-07-29 18:55:55 +00002631 ConstantExpr::getInsertElement(Elts[0], Elts[1],Elts[2]);
Chris Lattnerdf986172009-01-02 07:01:27 +00002632 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002633
Chris Lattnerdf986172009-01-02 07:01:27 +00002634 ID.Kind = ValID::t_Constant;
2635 return false;
2636 }
2637 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002638
Chris Lattnerdf986172009-01-02 07:01:27 +00002639 Lex.Lex();
2640 return false;
2641}
2642
2643/// ParseGlobalValue - Parse a global value with the specified type.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002644bool LLParser::ParseGlobalValue(Type *Ty, Constant *&C) {
Victor Hernandez92f238d2010-01-11 22:31:58 +00002645 C = 0;
Chris Lattnerdf986172009-01-02 07:01:27 +00002646 ValID ID;
Victor Hernandez92f238d2010-01-11 22:31:58 +00002647 Value *V = NULL;
2648 bool Parsed = ParseValID(ID) ||
2649 ConvertValIDToValue(Ty, ID, V, NULL);
2650 if (V && !(C = dyn_cast<Constant>(V)))
2651 return Error(ID.Loc, "global values must be constants");
2652 return Parsed;
Chris Lattnerdf986172009-01-02 07:01:27 +00002653}
2654
Victor Hernandez92f238d2010-01-11 22:31:58 +00002655bool LLParser::ParseGlobalTypeAndValue(Constant *&V) {
Chris Lattner1afcace2011-07-09 17:41:24 +00002656 Type *Ty = 0;
2657 return ParseType(Ty) ||
2658 ParseGlobalValue(Ty, V);
Victor Hernandez92f238d2010-01-11 22:31:58 +00002659}
2660
2661/// ParseGlobalValueVector
2662/// ::= /*empty*/
2663/// ::= TypeAndValue (',' TypeAndValue)*
2664bool LLParser::ParseGlobalValueVector(SmallVectorImpl<Constant*> &Elts) {
2665 // Empty list.
2666 if (Lex.getKind() == lltok::rbrace ||
2667 Lex.getKind() == lltok::rsquare ||
2668 Lex.getKind() == lltok::greater ||
2669 Lex.getKind() == lltok::rparen)
2670 return false;
2671
2672 Constant *C;
2673 if (ParseGlobalTypeAndValue(C)) return true;
2674 Elts.push_back(C);
2675
2676 while (EatIfPresent(lltok::comma)) {
2677 if (ParseGlobalTypeAndValue(C)) return true;
2678 Elts.push_back(C);
2679 }
2680
2681 return false;
2682}
2683
Dan Gohman309b3af2010-08-24 02:24:03 +00002684bool LLParser::ParseMetadataListValue(ValID &ID, PerFunctionState *PFS) {
2685 assert(Lex.getKind() == lltok::lbrace);
2686 Lex.Lex();
2687
2688 SmallVector<Value*, 16> Elts;
2689 if (ParseMDNodeVector(Elts, PFS) ||
2690 ParseToken(lltok::rbrace, "expected end of metadata node"))
2691 return true;
2692
Jay Foadec9186b2011-04-21 19:59:31 +00002693 ID.MDNodeVal = MDNode::get(Context, Elts);
Dan Gohman309b3af2010-08-24 02:24:03 +00002694 ID.Kind = ValID::t_MDNode;
2695 return false;
2696}
2697
Dan Gohman83448032010-07-14 18:26:50 +00002698/// ParseMetadataValue
2699/// ::= !42
2700/// ::= !{...}
2701/// ::= !"string"
2702bool LLParser::ParseMetadataValue(ValID &ID, PerFunctionState *PFS) {
2703 assert(Lex.getKind() == lltok::exclaim);
2704 Lex.Lex();
2705
2706 // MDNode:
2707 // !{ ... }
Dan Gohman309b3af2010-08-24 02:24:03 +00002708 if (Lex.getKind() == lltok::lbrace)
2709 return ParseMetadataListValue(ID, PFS);
Dan Gohman83448032010-07-14 18:26:50 +00002710
2711 // Standalone metadata reference
2712 // !42
2713 if (Lex.getKind() == lltok::APSInt) {
2714 if (ParseMDNodeID(ID.MDNodeVal)) return true;
2715 ID.Kind = ValID::t_MDNode;
2716 return false;
2717 }
2718
2719 // MDString:
2720 // ::= '!' STRINGCONSTANT
2721 if (ParseMDString(ID.MDStringVal)) return true;
2722 ID.Kind = ValID::t_MDString;
2723 return false;
2724}
2725
Victor Hernandez92f238d2010-01-11 22:31:58 +00002726
2727//===----------------------------------------------------------------------===//
2728// Function Parsing.
2729//===----------------------------------------------------------------------===//
2730
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002731bool LLParser::ConvertValIDToValue(Type *Ty, ValID &ID, Value *&V,
Victor Hernandez92f238d2010-01-11 22:31:58 +00002732 PerFunctionState *PFS) {
Duncan Sands1df98592010-02-16 11:11:14 +00002733 if (Ty->isFunctionTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002734 return Error(ID.Loc, "functions are not values, refer to them as pointers");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002735
Chris Lattnerdf986172009-01-02 07:01:27 +00002736 switch (ID.Kind) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002737 case ValID::t_LocalID:
Victor Hernandez92f238d2010-01-11 22:31:58 +00002738 if (!PFS) return Error(ID.Loc, "invalid use of function-local name");
2739 V = PFS->GetVal(ID.UIntVal, Ty, ID.Loc);
2740 return (V == 0);
Chris Lattnerdf986172009-01-02 07:01:27 +00002741 case ValID::t_LocalName:
Victor Hernandez92f238d2010-01-11 22:31:58 +00002742 if (!PFS) return Error(ID.Loc, "invalid use of function-local name");
2743 V = PFS->GetVal(ID.StrVal, Ty, ID.Loc);
2744 return (V == 0);
2745 case ValID::t_InlineAsm: {
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002746 PointerType *PTy = dyn_cast<PointerType>(Ty);
Michael Ilseman407a6162012-11-15 22:34:00 +00002747 FunctionType *FTy =
Victor Hernandez92f238d2010-01-11 22:31:58 +00002748 PTy ? dyn_cast<FunctionType>(PTy->getElementType()) : 0;
2749 if (!FTy || !InlineAsm::Verify(FTy, ID.StrVal2))
2750 return Error(ID.Loc, "invalid type for inline asm constraint string");
Chad Rosier36547342012-09-05 00:08:17 +00002751 V = InlineAsm::get(FTy, ID.StrVal, ID.StrVal2, ID.UIntVal&1,
Chad Rosier581600b2012-09-05 19:00:49 +00002752 (ID.UIntVal>>1)&1, (InlineAsm::AsmDialect(ID.UIntVal>>2)));
Victor Hernandez92f238d2010-01-11 22:31:58 +00002753 return false;
2754 }
2755 case ValID::t_MDNode:
2756 if (!Ty->isMetadataTy())
2757 return Error(ID.Loc, "metadata value must have metadata type");
2758 V = ID.MDNodeVal;
2759 return false;
2760 case ValID::t_MDString:
2761 if (!Ty->isMetadataTy())
2762 return Error(ID.Loc, "metadata value must have metadata type");
2763 V = ID.MDStringVal;
2764 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00002765 case ValID::t_GlobalName:
2766 V = GetGlobalVal(ID.StrVal, Ty, ID.Loc);
2767 return V == 0;
2768 case ValID::t_GlobalID:
2769 V = GetGlobalVal(ID.UIntVal, Ty, ID.Loc);
2770 return V == 0;
2771 case ValID::t_APSInt:
Duncan Sands1df98592010-02-16 11:11:14 +00002772 if (!Ty->isIntegerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002773 return Error(ID.Loc, "integer constant must have integer type");
Jay Foad40f8f622010-12-07 08:25:19 +00002774 ID.APSIntVal = ID.APSIntVal.extOrTrunc(Ty->getPrimitiveSizeInBits());
Owen Andersoneed707b2009-07-24 23:12:02 +00002775 V = ConstantInt::get(Context, ID.APSIntVal);
Chris Lattnerdf986172009-01-02 07:01:27 +00002776 return false;
2777 case ValID::t_APFloat:
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00002778 if (!Ty->isFloatingPointTy() ||
Chris Lattnerdf986172009-01-02 07:01:27 +00002779 !ConstantFP::isValueValidForType(Ty, ID.APFloatVal))
2780 return Error(ID.Loc, "floating point constant invalid for type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002781
Dan Gohmance163392011-12-17 00:04:22 +00002782 // The lexer has no type info, so builds all half, float, and double FP
2783 // constants as double. Fix this here. Long double does not need this.
2784 if (&ID.APFloatVal.getSemantics() == &APFloat::IEEEdouble) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002785 bool Ignored;
Dan Gohmance163392011-12-17 00:04:22 +00002786 if (Ty->isHalfTy())
2787 ID.APFloatVal.convert(APFloat::IEEEhalf, APFloat::rmNearestTiesToEven,
2788 &Ignored);
2789 else if (Ty->isFloatTy())
2790 ID.APFloatVal.convert(APFloat::IEEEsingle, APFloat::rmNearestTiesToEven,
2791 &Ignored);
Chris Lattnerdf986172009-01-02 07:01:27 +00002792 }
Owen Anderson6f83c9c2009-07-27 20:59:43 +00002793 V = ConstantFP::get(Context, ID.APFloatVal);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002794
Chris Lattner959873d2009-01-05 18:24:23 +00002795 if (V->getType() != Ty)
2796 return Error(ID.Loc, "floating point constant does not have type '" +
Chris Lattner0cd0d882011-06-18 21:18:23 +00002797 getTypeString(Ty) + "'");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002798
Chris Lattnerdf986172009-01-02 07:01:27 +00002799 return false;
2800 case ValID::t_Null:
Duncan Sands1df98592010-02-16 11:11:14 +00002801 if (!Ty->isPointerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002802 return Error(ID.Loc, "null must be a pointer type");
Owen Anderson9e9a0d52009-07-30 23:03:37 +00002803 V = ConstantPointerNull::get(cast<PointerType>(Ty));
Chris Lattnerdf986172009-01-02 07:01:27 +00002804 return false;
2805 case ValID::t_Undef:
Chris Lattnere67c1aa2009-01-05 08:13:38 +00002806 // FIXME: LabelTy should not be a first-class type.
Chris Lattner1afcace2011-07-09 17:41:24 +00002807 if (!Ty->isFirstClassType() || Ty->isLabelTy())
Chris Lattnere67c1aa2009-01-05 08:13:38 +00002808 return Error(ID.Loc, "invalid type for undef constant");
Owen Anderson9e9a0d52009-07-30 23:03:37 +00002809 V = UndefValue::get(Ty);
Chris Lattnerdf986172009-01-02 07:01:27 +00002810 return false;
Chris Lattner081b5052009-01-05 07:52:51 +00002811 case ValID::t_EmptyArray:
Duncan Sands1df98592010-02-16 11:11:14 +00002812 if (!Ty->isArrayTy() || cast<ArrayType>(Ty)->getNumElements() != 0)
Chris Lattner081b5052009-01-05 07:52:51 +00002813 return Error(ID.Loc, "invalid empty array initializer");
Owen Anderson9e9a0d52009-07-30 23:03:37 +00002814 V = UndefValue::get(Ty);
Chris Lattner081b5052009-01-05 07:52:51 +00002815 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00002816 case ValID::t_Zero:
Chris Lattnere67c1aa2009-01-05 08:13:38 +00002817 // FIXME: LabelTy should not be a first-class type.
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00002818 if (!Ty->isFirstClassType() || Ty->isLabelTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002819 return Error(ID.Loc, "invalid type for null constant");
Owen Andersona7235ea2009-07-31 20:28:14 +00002820 V = Constant::getNullValue(Ty);
Chris Lattnerdf986172009-01-02 07:01:27 +00002821 return false;
2822 case ValID::t_Constant:
Chris Lattner61c70e92010-08-28 04:09:24 +00002823 if (ID.ConstantVal->getType() != Ty)
Chris Lattnerdf986172009-01-02 07:01:27 +00002824 return Error(ID.Loc, "constant expression type mismatch");
Chris Lattnerfdfeb692010-02-12 20:49:41 +00002825
Chris Lattnerdf986172009-01-02 07:01:27 +00002826 V = ID.ConstantVal;
2827 return false;
Chris Lattner1afcace2011-07-09 17:41:24 +00002828 case ValID::t_ConstantStruct:
2829 case ValID::t_PackedConstantStruct:
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002830 if (StructType *ST = dyn_cast<StructType>(Ty)) {
Chris Lattner1afcace2011-07-09 17:41:24 +00002831 if (ST->getNumElements() != ID.UIntVal)
2832 return Error(ID.Loc,
2833 "initializer with struct type has wrong # elements");
2834 if (ST->isPacked() != (ID.Kind == ValID::t_PackedConstantStruct))
2835 return Error(ID.Loc, "packed'ness of initializer and type don't match");
Michael Ilseman407a6162012-11-15 22:34:00 +00002836
Chris Lattner1afcace2011-07-09 17:41:24 +00002837 // Verify that the elements are compatible with the structtype.
2838 for (unsigned i = 0, e = ID.UIntVal; i != e; ++i)
2839 if (ID.ConstantStructElts[i]->getType() != ST->getElementType(i))
2840 return Error(ID.Loc, "element " + Twine(i) +
2841 " of struct initializer doesn't match struct element type");
Michael Ilseman407a6162012-11-15 22:34:00 +00002842
Frits van Bommel39b5abf2011-07-18 12:00:32 +00002843 V = ConstantStruct::get(ST, makeArrayRef(ID.ConstantStructElts,
2844 ID.UIntVal));
Chris Lattner1afcace2011-07-09 17:41:24 +00002845 } else
2846 return Error(ID.Loc, "constant expression type mismatch");
2847 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00002848 }
Chandler Carruth732f05c2012-01-10 18:08:01 +00002849 llvm_unreachable("Invalid ValID");
Chris Lattnerdf986172009-01-02 07:01:27 +00002850}
Daniel Dunbara279bc32009-09-20 02:20:51 +00002851
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002852bool LLParser::ParseValue(Type *Ty, Value *&V, PerFunctionState *PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002853 V = 0;
2854 ValID ID;
Chris Lattner1afcace2011-07-09 17:41:24 +00002855 return ParseValID(ID, PFS) ||
2856 ConvertValIDToValue(Ty, ID, V, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00002857}
2858
Chris Lattner1afcace2011-07-09 17:41:24 +00002859bool LLParser::ParseTypeAndValue(Value *&V, PerFunctionState *PFS) {
2860 Type *Ty = 0;
2861 return ParseType(Ty) ||
2862 ParseValue(Ty, V, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00002863}
2864
Chris Lattnerf9be95f2009-10-27 19:13:16 +00002865bool LLParser::ParseTypeAndBasicBlock(BasicBlock *&BB, LocTy &Loc,
2866 PerFunctionState &PFS) {
2867 Value *V;
2868 Loc = Lex.getLoc();
2869 if (ParseTypeAndValue(V, PFS)) return true;
2870 if (!isa<BasicBlock>(V))
2871 return Error(Loc, "expected a basic block");
2872 BB = cast<BasicBlock>(V);
2873 return false;
2874}
2875
2876
Chris Lattnerdf986172009-01-02 07:01:27 +00002877/// FunctionHeader
2878/// ::= OptionalLinkage OptionalVisibility OptionalCallingConv OptRetAttrs
Rafael Espindolabea46262011-01-08 16:42:36 +00002879/// OptUnnamedAddr Type GlobalName '(' ArgList ')' OptFuncAttrs OptSection
Chris Lattnerdf986172009-01-02 07:01:27 +00002880/// OptionalAlign OptGC
2881bool LLParser::ParseFunctionHeader(Function *&Fn, bool isDefine) {
2882 // Parse the linkage.
2883 LocTy LinkageLoc = Lex.getLoc();
2884 unsigned Linkage;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002885
Kostya Serebryany164b86b2012-01-20 17:56:17 +00002886 unsigned Visibility;
Bill Wendling702cc912012-10-15 20:35:56 +00002887 AttrBuilder RetAttrs;
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00002888 CallingConv::ID CC;
Chris Lattner1afcace2011-07-09 17:41:24 +00002889 Type *RetType = 0;
Chris Lattnerdf986172009-01-02 07:01:27 +00002890 LocTy RetTypeLoc = Lex.getLoc();
2891 if (ParseOptionalLinkage(Linkage) ||
2892 ParseOptionalVisibility(Visibility) ||
2893 ParseOptionalCallingConv(CC) ||
Bill Wendlinge01b81b2012-12-04 23:40:58 +00002894 ParseOptionalReturnAttrs(RetAttrs) ||
Chris Lattnera9a9e072009-03-09 04:49:14 +00002895 ParseType(RetType, RetTypeLoc, true /*void allowed*/))
Chris Lattnerdf986172009-01-02 07:01:27 +00002896 return true;
2897
2898 // Verify that the linkage is ok.
2899 switch ((GlobalValue::LinkageTypes)Linkage) {
2900 case GlobalValue::ExternalLinkage:
2901 break; // always ok.
2902 case GlobalValue::DLLImportLinkage:
Duncan Sands5f4ee1f2009-03-11 08:08:06 +00002903 case GlobalValue::ExternalWeakLinkage:
Chris Lattnerdf986172009-01-02 07:01:27 +00002904 if (isDefine)
2905 return Error(LinkageLoc, "invalid linkage for function definition");
2906 break;
Rafael Espindolabb46f522009-01-15 20:18:42 +00002907 case GlobalValue::PrivateLinkage:
Bill Wendling3d10a5a2009-07-20 01:03:30 +00002908 case GlobalValue::LinkerPrivateLinkage:
Bill Wendling5e721d72010-07-01 21:55:59 +00002909 case GlobalValue::LinkerPrivateWeakLinkage:
Chris Lattnerdf986172009-01-02 07:01:27 +00002910 case GlobalValue::InternalLinkage:
Nick Lewycky55f64db2009-04-13 07:02:02 +00002911 case GlobalValue::AvailableExternallyLinkage:
Duncan Sands667d4b82009-03-07 15:45:40 +00002912 case GlobalValue::LinkOnceAnyLinkage:
2913 case GlobalValue::LinkOnceODRLinkage:
Bill Wendling32811be2012-08-17 18:33:14 +00002914 case GlobalValue::LinkOnceODRAutoHideLinkage:
Duncan Sands667d4b82009-03-07 15:45:40 +00002915 case GlobalValue::WeakAnyLinkage:
2916 case GlobalValue::WeakODRLinkage:
Chris Lattnerdf986172009-01-02 07:01:27 +00002917 case GlobalValue::DLLExportLinkage:
2918 if (!isDefine)
2919 return Error(LinkageLoc, "invalid linkage for function declaration");
2920 break;
2921 case GlobalValue::AppendingLinkage:
Duncan Sands4dc2b392009-03-11 20:14:15 +00002922 case GlobalValue::CommonLinkage:
Chris Lattnerdf986172009-01-02 07:01:27 +00002923 return Error(LinkageLoc, "invalid function linkage type");
2924 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002925
Chris Lattner1afcace2011-07-09 17:41:24 +00002926 if (!FunctionType::isValidReturnType(RetType))
Chris Lattnerdf986172009-01-02 07:01:27 +00002927 return Error(RetTypeLoc, "invalid function return type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002928
Chris Lattnerdf986172009-01-02 07:01:27 +00002929 LocTy NameLoc = Lex.getLoc();
Chris Lattnerf570e622009-02-18 21:48:13 +00002930
2931 std::string FunctionName;
2932 if (Lex.getKind() == lltok::GlobalVar) {
2933 FunctionName = Lex.getStrVal();
2934 } else if (Lex.getKind() == lltok::GlobalID) { // @42 is ok.
2935 unsigned NameID = Lex.getUIntVal();
2936
2937 if (NameID != NumberedVals.size())
2938 return TokError("function expected to be numbered '%" +
Benjamin Kramerd1e17032010-09-27 17:42:11 +00002939 Twine(NumberedVals.size()) + "'");
Chris Lattnerf570e622009-02-18 21:48:13 +00002940 } else {
2941 return TokError("expected function name");
2942 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002943
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002944 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +00002945
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002946 if (Lex.getKind() != lltok::lparen)
Chris Lattnerdf986172009-01-02 07:01:27 +00002947 return TokError("expected '(' in function argument list");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002948
Chris Lattner1afcace2011-07-09 17:41:24 +00002949 SmallVector<ArgInfo, 8> ArgList;
Chris Lattnerdf986172009-01-02 07:01:27 +00002950 bool isVarArg;
Bill Wendling702cc912012-10-15 20:35:56 +00002951 AttrBuilder FuncAttrs;
Bill Wendlingbaad55c2013-02-08 06:32:06 +00002952 std::vector<unsigned> FwdRefAttrGrps;
Bill Wendling143d4642013-02-22 00:12:35 +00002953 LocTy NoBuiltinLoc;
Chris Lattnerdf986172009-01-02 07:01:27 +00002954 std::string Section;
Chris Lattnerdf986172009-01-02 07:01:27 +00002955 unsigned Alignment;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002956 std::string GC;
Rafael Espindola3971df52011-01-25 19:09:56 +00002957 bool UnnamedAddr;
2958 LocTy UnnamedAddrLoc;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002959
Chris Lattner1afcace2011-07-09 17:41:24 +00002960 if (ParseArgumentList(ArgList, isVarArg) ||
Rafael Espindola3971df52011-01-25 19:09:56 +00002961 ParseOptionalToken(lltok::kw_unnamed_addr, UnnamedAddr,
2962 &UnnamedAddrLoc) ||
Bill Wendling143d4642013-02-22 00:12:35 +00002963 ParseFnAttributeValuePairs(FuncAttrs, FwdRefAttrGrps, false,
2964 NoBuiltinLoc) ||
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002965 (EatIfPresent(lltok::kw_section) &&
2966 ParseStringConstant(Section)) ||
2967 ParseOptionalAlignment(Alignment) ||
2968 (EatIfPresent(lltok::kw_gc) &&
2969 ParseStringConstant(GC)))
2970 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00002971
Bill Wendling143d4642013-02-22 00:12:35 +00002972 if (FuncAttrs.contains(Attribute::NoBuiltin))
2973 return Error(NoBuiltinLoc, "'nobuiltin' attribute not valid on function");
2974
Chris Lattnerdf986172009-01-02 07:01:27 +00002975 // If the alignment was parsed as an attribute, move to the alignment field.
Bill Wendlingf385f4c2012-10-08 23:27:46 +00002976 if (FuncAttrs.hasAlignmentAttr()) {
Bill Wendlingef99fe82012-09-21 15:26:31 +00002977 Alignment = FuncAttrs.getAlignment();
Bill Wendling034b94b2012-12-19 07:18:57 +00002978 FuncAttrs.removeAttribute(Attribute::Alignment);
Chris Lattnerdf986172009-01-02 07:01:27 +00002979 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002980
Chris Lattnerdf986172009-01-02 07:01:27 +00002981 // Okay, if we got here, the function is syntactically valid. Convert types
2982 // and do semantic checks.
Jay Foad5fdd6c82011-07-12 14:06:48 +00002983 std::vector<Type*> ParamTypeList;
Bill Wendlinga1683d62013-01-27 02:24:02 +00002984 SmallVector<AttributeSet, 8> Attrs;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002985
Bill Wendlinge603fe42012-09-19 23:54:18 +00002986 if (RetAttrs.hasAttributes())
Bill Wendlinga1683d62013-01-27 02:24:02 +00002987 Attrs.push_back(AttributeSet::get(RetType->getContext(),
2988 AttributeSet::ReturnIndex,
2989 RetAttrs));
Daniel Dunbara279bc32009-09-20 02:20:51 +00002990
Chris Lattnerdf986172009-01-02 07:01:27 +00002991 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
Chris Lattner1afcace2011-07-09 17:41:24 +00002992 ParamTypeList.push_back(ArgList[i].Ty);
Bill Wendling73dee182013-01-31 00:29:54 +00002993 if (ArgList[i].Attrs.hasAttributes(i + 1)) {
2994 AttrBuilder B(ArgList[i].Attrs, i + 1);
Bill Wendlinga1683d62013-01-27 02:24:02 +00002995 Attrs.push_back(AttributeSet::get(RetType->getContext(), i + 1, B));
2996 }
Chris Lattnerdf986172009-01-02 07:01:27 +00002997 }
2998
Bill Wendlinge603fe42012-09-19 23:54:18 +00002999 if (FuncAttrs.hasAttributes())
Bill Wendlinga1683d62013-01-27 02:24:02 +00003000 Attrs.push_back(AttributeSet::get(RetType->getContext(),
3001 AttributeSet::FunctionIndex,
3002 FuncAttrs));
Chris Lattnerdf986172009-01-02 07:01:27 +00003003
Bill Wendling99faa3b2012-12-07 23:16:57 +00003004 AttributeSet PAL = AttributeSet::get(Context, Attrs);
Daniel Dunbara279bc32009-09-20 02:20:51 +00003005
Bill Wendling94e94b32012-12-30 13:50:49 +00003006 if (PAL.hasAttribute(1, Attribute::StructRet) && !RetType->isVoidTy())
Daniel Dunbara279bc32009-09-20 02:20:51 +00003007 return Error(RetTypeLoc, "functions with 'sret' argument must return void");
3008
Chris Lattnerdb125cf2011-07-18 04:54:35 +00003009 FunctionType *FT =
Owen Andersondebcb012009-07-29 22:17:13 +00003010 FunctionType::get(RetType, ParamTypeList, isVarArg);
Chris Lattnerdb125cf2011-07-18 04:54:35 +00003011 PointerType *PFT = PointerType::getUnqual(FT);
Chris Lattnerdf986172009-01-02 07:01:27 +00003012
3013 Fn = 0;
3014 if (!FunctionName.empty()) {
3015 // If this was a definition of a forward reference, remove the definition
3016 // from the forward reference table and fill in the forward ref.
3017 std::map<std::string, std::pair<GlobalValue*, LocTy> >::iterator FRVI =
3018 ForwardRefVals.find(FunctionName);
3019 if (FRVI != ForwardRefVals.end()) {
3020 Fn = M->getFunction(FunctionName);
Nick Lewycky64ea2752012-10-11 00:38:25 +00003021 if (!Fn)
3022 return Error(FRVI->second.second, "invalid forward reference to "
3023 "function as global value!");
Chris Lattnerf1cfb952010-04-20 04:49:11 +00003024 if (Fn->getType() != PFT)
3025 return Error(FRVI->second.second, "invalid forward reference to "
3026 "function '" + FunctionName + "' with wrong type!");
Michael Ilseman407a6162012-11-15 22:34:00 +00003027
Chris Lattnerdf986172009-01-02 07:01:27 +00003028 ForwardRefVals.erase(FRVI);
3029 } else if ((Fn = M->getFunction(FunctionName))) {
Chris Lattnerd5890992011-06-17 07:06:44 +00003030 // Reject redefinitions.
3031 return Error(NameLoc, "invalid redefinition of function '" +
3032 FunctionName + "'");
Chris Lattner1d871c52009-10-25 23:22:50 +00003033 } else if (M->getNamedValue(FunctionName)) {
3034 return Error(NameLoc, "redefinition of function '@" + FunctionName + "'");
Chris Lattnerdf986172009-01-02 07:01:27 +00003035 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003036
Dan Gohman41905542009-08-29 23:37:49 +00003037 } else {
Chris Lattnerdf986172009-01-02 07:01:27 +00003038 // If this is a definition of a forward referenced function, make sure the
3039 // types agree.
3040 std::map<unsigned, std::pair<GlobalValue*, LocTy> >::iterator I
3041 = ForwardRefValIDs.find(NumberedVals.size());
3042 if (I != ForwardRefValIDs.end()) {
3043 Fn = cast<Function>(I->second.first);
3044 if (Fn->getType() != PFT)
3045 return Error(NameLoc, "type of definition and forward reference of '@" +
Benjamin Kramerd1e17032010-09-27 17:42:11 +00003046 Twine(NumberedVals.size()) + "' disagree");
Chris Lattnerdf986172009-01-02 07:01:27 +00003047 ForwardRefValIDs.erase(I);
3048 }
3049 }
3050
3051 if (Fn == 0)
3052 Fn = Function::Create(FT, GlobalValue::ExternalLinkage, FunctionName, M);
3053 else // Move the forward-reference to the correct spot in the module.
3054 M->getFunctionList().splice(M->end(), M->getFunctionList(), Fn);
3055
3056 if (FunctionName.empty())
3057 NumberedVals.push_back(Fn);
Daniel Dunbara279bc32009-09-20 02:20:51 +00003058
Chris Lattnerdf986172009-01-02 07:01:27 +00003059 Fn->setLinkage((GlobalValue::LinkageTypes)Linkage);
3060 Fn->setVisibility((GlobalValue::VisibilityTypes)Visibility);
3061 Fn->setCallingConv(CC);
3062 Fn->setAttributes(PAL);
Rafael Espindolabea46262011-01-08 16:42:36 +00003063 Fn->setUnnamedAddr(UnnamedAddr);
Chris Lattnerdf986172009-01-02 07:01:27 +00003064 Fn->setAlignment(Alignment);
3065 Fn->setSection(Section);
3066 if (!GC.empty()) Fn->setGC(GC.c_str());
Bill Wendlingbaad55c2013-02-08 06:32:06 +00003067 ForwardRefAttrGroups[Fn] = FwdRefAttrGrps;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003068
Chris Lattnerdf986172009-01-02 07:01:27 +00003069 // Add all of the arguments we parsed to the function.
3070 Function::arg_iterator ArgIt = Fn->arg_begin();
3071 for (unsigned i = 0, e = ArgList.size(); i != e; ++i, ++ArgIt) {
3072 // If the argument has a name, insert it into the argument symbol table.
3073 if (ArgList[i].Name.empty()) continue;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003074
Chris Lattnerdf986172009-01-02 07:01:27 +00003075 // Set the name, if it conflicted, it will be auto-renamed.
3076 ArgIt->setName(ArgList[i].Name);
Daniel Dunbara279bc32009-09-20 02:20:51 +00003077
Benjamin Krameraf812352010-10-16 11:28:23 +00003078 if (ArgIt->getName() != ArgList[i].Name)
Chris Lattnerdf986172009-01-02 07:01:27 +00003079 return Error(ArgList[i].Loc, "redefinition of argument '%" +
3080 ArgList[i].Name + "'");
3081 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003082
Chris Lattnerdf986172009-01-02 07:01:27 +00003083 return false;
3084}
3085
3086
3087/// ParseFunctionBody
3088/// ::= '{' BasicBlock+ '}'
Chris Lattnerdf986172009-01-02 07:01:27 +00003089///
3090bool LLParser::ParseFunctionBody(Function &Fn) {
Chris Lattner6b7c89e2011-06-17 06:42:57 +00003091 if (Lex.getKind() != lltok::lbrace)
Chris Lattnerdf986172009-01-02 07:01:27 +00003092 return TokError("expected '{' in function body");
3093 Lex.Lex(); // eat the {.
Daniel Dunbara279bc32009-09-20 02:20:51 +00003094
Chris Lattner09d9ef42009-10-28 03:39:23 +00003095 int FunctionNumber = -1;
3096 if (!Fn.hasName()) FunctionNumber = NumberedVals.size()-1;
Michael Ilseman407a6162012-11-15 22:34:00 +00003097
Chris Lattner09d9ef42009-10-28 03:39:23 +00003098 PerFunctionState PFS(*this, Fn, FunctionNumber);
Daniel Dunbara279bc32009-09-20 02:20:51 +00003099
Chris Lattner2fdf8db2010-01-09 19:20:07 +00003100 // We need at least one basic block.
Chris Lattner6b7c89e2011-06-17 06:42:57 +00003101 if (Lex.getKind() == lltok::rbrace)
Chris Lattner2fdf8db2010-01-09 19:20:07 +00003102 return TokError("function body requires at least one basic block");
Michael Ilseman407a6162012-11-15 22:34:00 +00003103
Chris Lattner6b7c89e2011-06-17 06:42:57 +00003104 while (Lex.getKind() != lltok::rbrace)
Chris Lattnerdf986172009-01-02 07:01:27 +00003105 if (ParseBasicBlock(PFS)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003106
Chris Lattnerdf986172009-01-02 07:01:27 +00003107 // Eat the }.
3108 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +00003109
Chris Lattnerdf986172009-01-02 07:01:27 +00003110 // Verify function is ok.
Chris Lattner09d9ef42009-10-28 03:39:23 +00003111 return PFS.FinishFunction();
Chris Lattnerdf986172009-01-02 07:01:27 +00003112}
3113
3114/// ParseBasicBlock
3115/// ::= LabelStr? Instruction*
3116bool LLParser::ParseBasicBlock(PerFunctionState &PFS) {
3117 // If this basic block starts out with a name, remember it.
3118 std::string Name;
3119 LocTy NameLoc = Lex.getLoc();
3120 if (Lex.getKind() == lltok::LabelStr) {
3121 Name = Lex.getStrVal();
3122 Lex.Lex();
3123 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003124
Chris Lattnerdf986172009-01-02 07:01:27 +00003125 BasicBlock *BB = PFS.DefineBB(Name, NameLoc);
3126 if (BB == 0) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003127
Chris Lattnerdf986172009-01-02 07:01:27 +00003128 std::string NameStr;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003129
Chris Lattnerdf986172009-01-02 07:01:27 +00003130 // Parse the instructions in this block until we get a terminator.
3131 Instruction *Inst;
Chris Lattner1340dd32009-12-30 05:48:36 +00003132 SmallVector<std::pair<unsigned, MDNode *>, 4> MetadataOnInst;
Chris Lattnerdf986172009-01-02 07:01:27 +00003133 do {
3134 // This instruction may have three possibilities for a name: a) none
3135 // specified, b) name specified "%foo =", c) number specified: "%4 =".
3136 LocTy NameLoc = Lex.getLoc();
3137 int NameID = -1;
3138 NameStr = "";
Daniel Dunbara279bc32009-09-20 02:20:51 +00003139
Chris Lattnerdf986172009-01-02 07:01:27 +00003140 if (Lex.getKind() == lltok::LocalVarID) {
3141 NameID = Lex.getUIntVal();
3142 Lex.Lex();
3143 if (ParseToken(lltok::equal, "expected '=' after instruction id"))
3144 return true;
Chris Lattner7a1b9bd2011-06-17 06:36:20 +00003145 } else if (Lex.getKind() == lltok::LocalVar) {
Chris Lattnerdf986172009-01-02 07:01:27 +00003146 NameStr = Lex.getStrVal();
3147 Lex.Lex();
3148 if (ParseToken(lltok::equal, "expected '=' after instruction name"))
3149 return true;
3150 }
Devang Patelf633a062009-09-17 23:04:48 +00003151
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00003152 switch (ParseInstruction(Inst, BB, PFS)) {
Craig Topper85814382012-02-07 05:05:23 +00003153 default: llvm_unreachable("Unknown ParseInstruction result!");
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00003154 case InstError: return true;
3155 case InstNormal:
Chris Lattner4ba9d9b2010-04-07 04:08:57 +00003156 BB->getInstList().push_back(Inst);
3157
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00003158 // With a normal result, we check to see if the instruction is followed by
3159 // a comma and metadata.
3160 if (EatIfPresent(lltok::comma))
Dan Gohman9d072f52010-08-24 02:05:17 +00003161 if (ParseInstructionMetadata(Inst, &PFS))
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00003162 return true;
3163 break;
3164 case InstExtraComma:
Chris Lattner4ba9d9b2010-04-07 04:08:57 +00003165 BB->getInstList().push_back(Inst);
3166
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00003167 // If the instruction parser ate an extra comma at the end of it, it
3168 // *must* be followed by metadata.
Dan Gohman9d072f52010-08-24 02:05:17 +00003169 if (ParseInstructionMetadata(Inst, &PFS))
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00003170 return true;
Michael Ilseman407a6162012-11-15 22:34:00 +00003171 break;
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00003172 }
Devang Patelf633a062009-09-17 23:04:48 +00003173
Chris Lattnerdf986172009-01-02 07:01:27 +00003174 // Set the name on the instruction.
3175 if (PFS.SetInstName(NameID, NameStr, NameLoc, Inst)) return true;
3176 } while (!isa<TerminatorInst>(Inst));
Daniel Dunbara279bc32009-09-20 02:20:51 +00003177
Chris Lattnerdf986172009-01-02 07:01:27 +00003178 return false;
3179}
3180
3181//===----------------------------------------------------------------------===//
3182// Instruction Parsing.
3183//===----------------------------------------------------------------------===//
3184
3185/// ParseInstruction - Parse one of the many different instructions.
3186///
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00003187int LLParser::ParseInstruction(Instruction *&Inst, BasicBlock *BB,
3188 PerFunctionState &PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00003189 lltok::Kind Token = Lex.getKind();
3190 if (Token == lltok::Eof)
3191 return TokError("found end of file when expecting more instructions");
3192 LocTy Loc = Lex.getLoc();
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00003193 unsigned KeywordVal = Lex.getUIntVal();
Chris Lattnerdf986172009-01-02 07:01:27 +00003194 Lex.Lex(); // Eat the keyword.
Daniel Dunbara279bc32009-09-20 02:20:51 +00003195
Chris Lattnerdf986172009-01-02 07:01:27 +00003196 switch (Token) {
3197 default: return Error(Loc, "expected instruction opcode");
3198 // Terminator Instructions.
Owen Anderson1d0be152009-08-13 21:58:54 +00003199 case lltok::kw_unreachable: Inst = new UnreachableInst(Context); return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00003200 case lltok::kw_ret: return ParseRet(Inst, BB, PFS);
3201 case lltok::kw_br: return ParseBr(Inst, PFS);
3202 case lltok::kw_switch: return ParseSwitch(Inst, PFS);
Chris Lattnerab21db72009-10-28 00:19:10 +00003203 case lltok::kw_indirectbr: return ParseIndirectBr(Inst, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00003204 case lltok::kw_invoke: return ParseInvoke(Inst, PFS);
Bill Wendlingdccc03b2011-07-31 06:30:59 +00003205 case lltok::kw_resume: return ParseResume(Inst, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00003206 // Binary Operators.
3207 case lltok::kw_add:
3208 case lltok::kw_sub:
Chris Lattnerf067d582011-02-07 16:40:21 +00003209 case lltok::kw_mul:
3210 case lltok::kw_shl: {
Chris Lattnerf067d582011-02-07 16:40:21 +00003211 bool NUW = EatIfPresent(lltok::kw_nuw);
3212 bool NSW = EatIfPresent(lltok::kw_nsw);
3213 if (!NUW) NUW = EatIfPresent(lltok::kw_nuw);
Michael Ilseman407a6162012-11-15 22:34:00 +00003214
Chris Lattnerf067d582011-02-07 16:40:21 +00003215 if (ParseArithmetic(Inst, PFS, KeywordVal, 1)) return true;
Michael Ilseman407a6162012-11-15 22:34:00 +00003216
Chris Lattnerf067d582011-02-07 16:40:21 +00003217 if (NUW) cast<BinaryOperator>(Inst)->setHasNoUnsignedWrap(true);
3218 if (NSW) cast<BinaryOperator>(Inst)->setHasNoSignedWrap(true);
3219 return false;
Dan Gohman59858cf2009-07-27 16:11:46 +00003220 }
Dan Gohmanae3a0be2009-06-04 22:49:04 +00003221 case lltok::kw_fadd:
3222 case lltok::kw_fsub:
Michael Ilseman15c13d32012-11-27 00:42:44 +00003223 case lltok::kw_fmul:
3224 case lltok::kw_fdiv:
3225 case lltok::kw_frem: {
3226 FastMathFlags FMF = EatFastMathFlagsIfPresent();
3227 int Res = ParseArithmetic(Inst, PFS, KeywordVal, 2);
3228 if (Res != 0)
3229 return Res;
3230 if (FMF.any())
3231 Inst->setFastMathFlags(FMF);
3232 return 0;
3233 }
Dan Gohmanae3a0be2009-06-04 22:49:04 +00003234
Chris Lattner35bda892011-02-06 21:44:57 +00003235 case lltok::kw_sdiv:
Chris Lattnerf067d582011-02-07 16:40:21 +00003236 case lltok::kw_udiv:
3237 case lltok::kw_lshr:
3238 case lltok::kw_ashr: {
3239 bool Exact = EatIfPresent(lltok::kw_exact);
3240
3241 if (ParseArithmetic(Inst, PFS, KeywordVal, 1)) return true;
3242 if (Exact) cast<BinaryOperator>(Inst)->setIsExact(true);
3243 return false;
Dan Gohman59858cf2009-07-27 16:11:46 +00003244 }
3245
Chris Lattnerdf986172009-01-02 07:01:27 +00003246 case lltok::kw_urem:
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00003247 case lltok::kw_srem: return ParseArithmetic(Inst, PFS, KeywordVal, 1);
Chris Lattnerdf986172009-01-02 07:01:27 +00003248 case lltok::kw_and:
3249 case lltok::kw_or:
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00003250 case lltok::kw_xor: return ParseLogical(Inst, PFS, KeywordVal);
Chris Lattnerdf986172009-01-02 07:01:27 +00003251 case lltok::kw_icmp:
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00003252 case lltok::kw_fcmp: return ParseCompare(Inst, PFS, KeywordVal);
Chris Lattnerdf986172009-01-02 07:01:27 +00003253 // Casts.
3254 case lltok::kw_trunc:
3255 case lltok::kw_zext:
3256 case lltok::kw_sext:
3257 case lltok::kw_fptrunc:
3258 case lltok::kw_fpext:
3259 case lltok::kw_bitcast:
3260 case lltok::kw_uitofp:
3261 case lltok::kw_sitofp:
3262 case lltok::kw_fptoui:
Daniel Dunbara279bc32009-09-20 02:20:51 +00003263 case lltok::kw_fptosi:
Chris Lattnerdf986172009-01-02 07:01:27 +00003264 case lltok::kw_inttoptr:
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00003265 case lltok::kw_ptrtoint: return ParseCast(Inst, PFS, KeywordVal);
Chris Lattnerdf986172009-01-02 07:01:27 +00003266 // Other.
3267 case lltok::kw_select: return ParseSelect(Inst, PFS);
Chris Lattner0088a5c2009-01-05 08:18:44 +00003268 case lltok::kw_va_arg: return ParseVA_Arg(Inst, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00003269 case lltok::kw_extractelement: return ParseExtractElement(Inst, PFS);
3270 case lltok::kw_insertelement: return ParseInsertElement(Inst, PFS);
3271 case lltok::kw_shufflevector: return ParseShuffleVector(Inst, PFS);
3272 case lltok::kw_phi: return ParsePHI(Inst, PFS);
Bill Wendlinge6e88262011-08-12 20:24:12 +00003273 case lltok::kw_landingpad: return ParseLandingPad(Inst, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00003274 case lltok::kw_call: return ParseCall(Inst, PFS, false);
3275 case lltok::kw_tail: return ParseCall(Inst, PFS, true);
3276 // Memory.
Victor Hernandez13ad5aa2009-10-17 00:00:19 +00003277 case lltok::kw_alloca: return ParseAlloc(Inst, PFS);
Chris Lattnerfbe910e2011-11-27 06:56:53 +00003278 case lltok::kw_load: return ParseLoad(Inst, PFS);
3279 case lltok::kw_store: return ParseStore(Inst, PFS);
Eli Friedmanf03bb262011-08-12 22:50:01 +00003280 case lltok::kw_cmpxchg: return ParseCmpXchg(Inst, PFS);
3281 case lltok::kw_atomicrmw: return ParseAtomicRMW(Inst, PFS);
Eli Friedman47f35132011-07-25 23:16:38 +00003282 case lltok::kw_fence: return ParseFence(Inst, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00003283 case lltok::kw_getelementptr: return ParseGetElementPtr(Inst, PFS);
3284 case lltok::kw_extractvalue: return ParseExtractValue(Inst, PFS);
3285 case lltok::kw_insertvalue: return ParseInsertValue(Inst, PFS);
3286 }
3287}
3288
3289/// ParseCmpPredicate - Parse an integer or fp predicate, based on Kind.
3290bool LLParser::ParseCmpPredicate(unsigned &P, unsigned Opc) {
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00003291 if (Opc == Instruction::FCmp) {
Chris Lattnerdf986172009-01-02 07:01:27 +00003292 switch (Lex.getKind()) {
David Tweedd80d6082013-01-07 13:32:38 +00003293 default: return TokError("expected fcmp predicate (e.g. 'oeq')");
Chris Lattnerdf986172009-01-02 07:01:27 +00003294 case lltok::kw_oeq: P = CmpInst::FCMP_OEQ; break;
3295 case lltok::kw_one: P = CmpInst::FCMP_ONE; break;
3296 case lltok::kw_olt: P = CmpInst::FCMP_OLT; break;
3297 case lltok::kw_ogt: P = CmpInst::FCMP_OGT; break;
3298 case lltok::kw_ole: P = CmpInst::FCMP_OLE; break;
3299 case lltok::kw_oge: P = CmpInst::FCMP_OGE; break;
3300 case lltok::kw_ord: P = CmpInst::FCMP_ORD; break;
3301 case lltok::kw_uno: P = CmpInst::FCMP_UNO; break;
3302 case lltok::kw_ueq: P = CmpInst::FCMP_UEQ; break;
3303 case lltok::kw_une: P = CmpInst::FCMP_UNE; break;
3304 case lltok::kw_ult: P = CmpInst::FCMP_ULT; break;
3305 case lltok::kw_ugt: P = CmpInst::FCMP_UGT; break;
3306 case lltok::kw_ule: P = CmpInst::FCMP_ULE; break;
3307 case lltok::kw_uge: P = CmpInst::FCMP_UGE; break;
3308 case lltok::kw_true: P = CmpInst::FCMP_TRUE; break;
3309 case lltok::kw_false: P = CmpInst::FCMP_FALSE; break;
3310 }
3311 } else {
3312 switch (Lex.getKind()) {
David Tweedd80d6082013-01-07 13:32:38 +00003313 default: return TokError("expected icmp predicate (e.g. 'eq')");
Chris Lattnerdf986172009-01-02 07:01:27 +00003314 case lltok::kw_eq: P = CmpInst::ICMP_EQ; break;
3315 case lltok::kw_ne: P = CmpInst::ICMP_NE; break;
3316 case lltok::kw_slt: P = CmpInst::ICMP_SLT; break;
3317 case lltok::kw_sgt: P = CmpInst::ICMP_SGT; break;
3318 case lltok::kw_sle: P = CmpInst::ICMP_SLE; break;
3319 case lltok::kw_sge: P = CmpInst::ICMP_SGE; break;
3320 case lltok::kw_ult: P = CmpInst::ICMP_ULT; break;
3321 case lltok::kw_ugt: P = CmpInst::ICMP_UGT; break;
3322 case lltok::kw_ule: P = CmpInst::ICMP_ULE; break;
3323 case lltok::kw_uge: P = CmpInst::ICMP_UGE; break;
3324 }
3325 }
3326 Lex.Lex();
3327 return false;
3328}
3329
3330//===----------------------------------------------------------------------===//
3331// Terminator Instructions.
3332//===----------------------------------------------------------------------===//
3333
3334/// ParseRet - Parse a return instruction.
Chris Lattner3f3a0f62009-12-29 21:25:40 +00003335/// ::= 'ret' void (',' !dbg, !1)*
3336/// ::= 'ret' TypeAndValue (',' !dbg, !1)*
Chris Lattner437544f2011-06-17 06:49:41 +00003337bool LLParser::ParseRet(Instruction *&Inst, BasicBlock *BB,
Chris Lattner1afcace2011-07-09 17:41:24 +00003338 PerFunctionState &PFS) {
3339 SMLoc TypeLoc = Lex.getLoc();
3340 Type *Ty = 0;
Chris Lattnera9a9e072009-03-09 04:49:14 +00003341 if (ParseType(Ty, true /*void allowed*/)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003342
Chris Lattner1afcace2011-07-09 17:41:24 +00003343 Type *ResType = PFS.getFunction().getReturnType();
Michael Ilseman407a6162012-11-15 22:34:00 +00003344
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00003345 if (Ty->isVoidTy()) {
Chris Lattner1afcace2011-07-09 17:41:24 +00003346 if (!ResType->isVoidTy())
3347 return Error(TypeLoc, "value doesn't match function result type '" +
3348 getTypeString(ResType) + "'");
Michael Ilseman407a6162012-11-15 22:34:00 +00003349
Owen Anderson1d0be152009-08-13 21:58:54 +00003350 Inst = ReturnInst::Create(Context);
Chris Lattnerdf986172009-01-02 07:01:27 +00003351 return false;
3352 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003353
Chris Lattnerdf986172009-01-02 07:01:27 +00003354 Value *RV;
3355 if (ParseValue(Ty, RV, PFS)) return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00003356
Chris Lattner1afcace2011-07-09 17:41:24 +00003357 if (ResType != RV->getType())
3358 return Error(TypeLoc, "value doesn't match function result type '" +
3359 getTypeString(ResType) + "'");
Michael Ilseman407a6162012-11-15 22:34:00 +00003360
Owen Anderson1d0be152009-08-13 21:58:54 +00003361 Inst = ReturnInst::Create(Context, RV);
Chris Lattner437544f2011-06-17 06:49:41 +00003362 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00003363}
3364
3365
3366/// ParseBr
3367/// ::= 'br' TypeAndValue
3368/// ::= 'br' TypeAndValue ',' TypeAndValue ',' TypeAndValue
3369bool LLParser::ParseBr(Instruction *&Inst, PerFunctionState &PFS) {
3370 LocTy Loc, Loc2;
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003371 Value *Op0;
3372 BasicBlock *Op1, *Op2;
Chris Lattnerdf986172009-01-02 07:01:27 +00003373 if (ParseTypeAndValue(Op0, Loc, PFS)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003374
Chris Lattnerdf986172009-01-02 07:01:27 +00003375 if (BasicBlock *BB = dyn_cast<BasicBlock>(Op0)) {
3376 Inst = BranchInst::Create(BB);
3377 return false;
3378 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003379
Owen Anderson1d0be152009-08-13 21:58:54 +00003380 if (Op0->getType() != Type::getInt1Ty(Context))
Chris Lattnerdf986172009-01-02 07:01:27 +00003381 return Error(Loc, "branch condition must have 'i1' type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003382
Chris Lattnerdf986172009-01-02 07:01:27 +00003383 if (ParseToken(lltok::comma, "expected ',' after branch condition") ||
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003384 ParseTypeAndBasicBlock(Op1, Loc, PFS) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003385 ParseToken(lltok::comma, "expected ',' after true destination") ||
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003386 ParseTypeAndBasicBlock(Op2, Loc2, PFS))
Chris Lattnerdf986172009-01-02 07:01:27 +00003387 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003388
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003389 Inst = BranchInst::Create(Op1, Op2, Op0);
Chris Lattnerdf986172009-01-02 07:01:27 +00003390 return false;
3391}
3392
3393/// ParseSwitch
3394/// Instruction
3395/// ::= 'switch' TypeAndValue ',' TypeAndValue '[' JumpTable ']'
3396/// JumpTable
3397/// ::= (TypeAndValue ',' TypeAndValue)*
3398bool LLParser::ParseSwitch(Instruction *&Inst, PerFunctionState &PFS) {
3399 LocTy CondLoc, BBLoc;
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003400 Value *Cond;
3401 BasicBlock *DefaultBB;
Chris Lattnerdf986172009-01-02 07:01:27 +00003402 if (ParseTypeAndValue(Cond, CondLoc, PFS) ||
3403 ParseToken(lltok::comma, "expected ',' after switch condition") ||
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003404 ParseTypeAndBasicBlock(DefaultBB, BBLoc, PFS) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003405 ParseToken(lltok::lsquare, "expected '[' with switch table"))
3406 return true;
3407
Duncan Sands1df98592010-02-16 11:11:14 +00003408 if (!Cond->getType()->isIntegerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00003409 return Error(CondLoc, "switch condition must have integer type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003410
Chris Lattnerdf986172009-01-02 07:01:27 +00003411 // Parse the jump table pairs.
3412 SmallPtrSet<Value*, 32> SeenCases;
3413 SmallVector<std::pair<ConstantInt*, BasicBlock*>, 32> Table;
3414 while (Lex.getKind() != lltok::rsquare) {
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003415 Value *Constant;
3416 BasicBlock *DestBB;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003417
Chris Lattnerdf986172009-01-02 07:01:27 +00003418 if (ParseTypeAndValue(Constant, CondLoc, PFS) ||
3419 ParseToken(lltok::comma, "expected ',' after case value") ||
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003420 ParseTypeAndBasicBlock(DestBB, PFS))
Chris Lattnerdf986172009-01-02 07:01:27 +00003421 return true;
Michael Ilseman407a6162012-11-15 22:34:00 +00003422
Chris Lattnerdf986172009-01-02 07:01:27 +00003423 if (!SeenCases.insert(Constant))
3424 return Error(CondLoc, "duplicate case value in switch");
3425 if (!isa<ConstantInt>(Constant))
3426 return Error(CondLoc, "case value is not a constant integer");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003427
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003428 Table.push_back(std::make_pair(cast<ConstantInt>(Constant), DestBB));
Chris Lattnerdf986172009-01-02 07:01:27 +00003429 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003430
Chris Lattnerdf986172009-01-02 07:01:27 +00003431 Lex.Lex(); // Eat the ']'.
Daniel Dunbara279bc32009-09-20 02:20:51 +00003432
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003433 SwitchInst *SI = SwitchInst::Create(Cond, DefaultBB, Table.size());
Chris Lattnerdf986172009-01-02 07:01:27 +00003434 for (unsigned i = 0, e = Table.size(); i != e; ++i)
3435 SI->addCase(Table[i].first, Table[i].second);
3436 Inst = SI;
3437 return false;
3438}
3439
Chris Lattnerab21db72009-10-28 00:19:10 +00003440/// ParseIndirectBr
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003441/// Instruction
Chris Lattnerab21db72009-10-28 00:19:10 +00003442/// ::= 'indirectbr' TypeAndValue ',' '[' LabelList ']'
3443bool LLParser::ParseIndirectBr(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003444 LocTy AddrLoc;
3445 Value *Address;
3446 if (ParseTypeAndValue(Address, AddrLoc, PFS) ||
Chris Lattnerab21db72009-10-28 00:19:10 +00003447 ParseToken(lltok::comma, "expected ',' after indirectbr address") ||
3448 ParseToken(lltok::lsquare, "expected '[' with indirectbr"))
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003449 return true;
Michael Ilseman407a6162012-11-15 22:34:00 +00003450
Duncan Sands1df98592010-02-16 11:11:14 +00003451 if (!Address->getType()->isPointerTy())
Chris Lattnerab21db72009-10-28 00:19:10 +00003452 return Error(AddrLoc, "indirectbr address must have pointer type");
Michael Ilseman407a6162012-11-15 22:34:00 +00003453
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003454 // Parse the destination list.
3455 SmallVector<BasicBlock*, 16> DestList;
Michael Ilseman407a6162012-11-15 22:34:00 +00003456
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003457 if (Lex.getKind() != lltok::rsquare) {
3458 BasicBlock *DestBB;
3459 if (ParseTypeAndBasicBlock(DestBB, PFS))
3460 return true;
3461 DestList.push_back(DestBB);
Michael Ilseman407a6162012-11-15 22:34:00 +00003462
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003463 while (EatIfPresent(lltok::comma)) {
3464 if (ParseTypeAndBasicBlock(DestBB, PFS))
3465 return true;
3466 DestList.push_back(DestBB);
3467 }
3468 }
Michael Ilseman407a6162012-11-15 22:34:00 +00003469
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003470 if (ParseToken(lltok::rsquare, "expected ']' at end of block list"))
3471 return true;
3472
Chris Lattnerab21db72009-10-28 00:19:10 +00003473 IndirectBrInst *IBI = IndirectBrInst::Create(Address, DestList.size());
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003474 for (unsigned i = 0, e = DestList.size(); i != e; ++i)
3475 IBI->addDestination(DestList[i]);
3476 Inst = IBI;
3477 return false;
3478}
3479
3480
Chris Lattnerdf986172009-01-02 07:01:27 +00003481/// ParseInvoke
3482/// ::= 'invoke' OptionalCallingConv OptionalAttrs Type Value ParamList
3483/// OptionalAttrs 'to' TypeAndValue 'unwind' TypeAndValue
3484bool LLParser::ParseInvoke(Instruction *&Inst, PerFunctionState &PFS) {
3485 LocTy CallLoc = Lex.getLoc();
Bill Wendling702cc912012-10-15 20:35:56 +00003486 AttrBuilder RetAttrs, FnAttrs;
Bill Wendlingbaad55c2013-02-08 06:32:06 +00003487 std::vector<unsigned> FwdRefAttrGrps;
Bill Wendling143d4642013-02-22 00:12:35 +00003488 LocTy NoBuiltinLoc;
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00003489 CallingConv::ID CC;
Chris Lattner1afcace2011-07-09 17:41:24 +00003490 Type *RetType = 0;
Chris Lattnerdf986172009-01-02 07:01:27 +00003491 LocTy RetTypeLoc;
3492 ValID CalleeID;
3493 SmallVector<ParamInfo, 16> ArgList;
3494
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003495 BasicBlock *NormalBB, *UnwindBB;
Chris Lattnerdf986172009-01-02 07:01:27 +00003496 if (ParseOptionalCallingConv(CC) ||
Bill Wendlinge01b81b2012-12-04 23:40:58 +00003497 ParseOptionalReturnAttrs(RetAttrs) ||
Chris Lattnera9a9e072009-03-09 04:49:14 +00003498 ParseType(RetType, RetTypeLoc, true /*void allowed*/) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003499 ParseValID(CalleeID) ||
3500 ParseParameterList(ArgList, PFS) ||
Bill Wendling143d4642013-02-22 00:12:35 +00003501 ParseFnAttributeValuePairs(FnAttrs, FwdRefAttrGrps, false,
3502 NoBuiltinLoc) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003503 ParseToken(lltok::kw_to, "expected 'to' in invoke") ||
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003504 ParseTypeAndBasicBlock(NormalBB, PFS) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003505 ParseToken(lltok::kw_unwind, "expected 'unwind' in invoke") ||
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003506 ParseTypeAndBasicBlock(UnwindBB, PFS))
Chris Lattnerdf986172009-01-02 07:01:27 +00003507 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003508
Chris Lattnerdf986172009-01-02 07:01:27 +00003509 // If RetType is a non-function pointer type, then this is the short syntax
3510 // for the call, which means that RetType is just the return type. Infer the
3511 // rest of the function argument types from the arguments that are present.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00003512 PointerType *PFTy = 0;
3513 FunctionType *Ty = 0;
Chris Lattnerdf986172009-01-02 07:01:27 +00003514 if (!(PFTy = dyn_cast<PointerType>(RetType)) ||
3515 !(Ty = dyn_cast<FunctionType>(PFTy->getElementType()))) {
3516 // Pull out the types of all of the arguments...
Jay Foad5fdd6c82011-07-12 14:06:48 +00003517 std::vector<Type*> ParamTypes;
Chris Lattnerdf986172009-01-02 07:01:27 +00003518 for (unsigned i = 0, e = ArgList.size(); i != e; ++i)
3519 ParamTypes.push_back(ArgList[i].V->getType());
Daniel Dunbara279bc32009-09-20 02:20:51 +00003520
Chris Lattnerdf986172009-01-02 07:01:27 +00003521 if (!FunctionType::isValidReturnType(RetType))
3522 return Error(RetTypeLoc, "Invalid result type for LLVM function");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003523
Owen Andersondebcb012009-07-29 22:17:13 +00003524 Ty = FunctionType::get(RetType, ParamTypes, false);
3525 PFTy = PointerType::getUnqual(Ty);
Chris Lattnerdf986172009-01-02 07:01:27 +00003526 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003527
Chris Lattnerdf986172009-01-02 07:01:27 +00003528 // Look up the callee.
3529 Value *Callee;
Victor Hernandez92f238d2010-01-11 22:31:58 +00003530 if (ConvertValIDToValue(PFTy, CalleeID, Callee, &PFS)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003531
Bill Wendling034b94b2012-12-19 07:18:57 +00003532 // Set up the Attribute for the function.
Bill Wendlinga1683d62013-01-27 02:24:02 +00003533 SmallVector<AttributeSet, 8> Attrs;
Bill Wendlinge603fe42012-09-19 23:54:18 +00003534 if (RetAttrs.hasAttributes())
Bill Wendlinga1683d62013-01-27 02:24:02 +00003535 Attrs.push_back(AttributeSet::get(RetType->getContext(),
3536 AttributeSet::ReturnIndex,
3537 RetAttrs));
Daniel Dunbara279bc32009-09-20 02:20:51 +00003538
Chris Lattnerdf986172009-01-02 07:01:27 +00003539 SmallVector<Value*, 8> Args;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003540
Chris Lattnerdf986172009-01-02 07:01:27 +00003541 // Loop through FunctionType's arguments and ensure they are specified
3542 // correctly. Also, gather any parameter attributes.
3543 FunctionType::param_iterator I = Ty->param_begin();
3544 FunctionType::param_iterator E = Ty->param_end();
3545 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
Chris Lattnerdb125cf2011-07-18 04:54:35 +00003546 Type *ExpectedTy = 0;
Chris Lattnerdf986172009-01-02 07:01:27 +00003547 if (I != E) {
3548 ExpectedTy = *I++;
3549 } else if (!Ty->isVarArg()) {
3550 return Error(ArgList[i].Loc, "too many arguments specified");
3551 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003552
Chris Lattnerdf986172009-01-02 07:01:27 +00003553 if (ExpectedTy && ExpectedTy != ArgList[i].V->getType())
3554 return Error(ArgList[i].Loc, "argument is not of expected type '" +
Chris Lattner0cd0d882011-06-18 21:18:23 +00003555 getTypeString(ExpectedTy) + "'");
Chris Lattnerdf986172009-01-02 07:01:27 +00003556 Args.push_back(ArgList[i].V);
Bill Wendling73dee182013-01-31 00:29:54 +00003557 if (ArgList[i].Attrs.hasAttributes(i + 1)) {
3558 AttrBuilder B(ArgList[i].Attrs, i + 1);
Bill Wendlinga1683d62013-01-27 02:24:02 +00003559 Attrs.push_back(AttributeSet::get(RetType->getContext(), i + 1, B));
3560 }
Chris Lattnerdf986172009-01-02 07:01:27 +00003561 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003562
Chris Lattnerdf986172009-01-02 07:01:27 +00003563 if (I != E)
3564 return Error(CallLoc, "not enough parameters specified for call");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003565
Bill Wendlinge603fe42012-09-19 23:54:18 +00003566 if (FnAttrs.hasAttributes())
Bill Wendlinga1683d62013-01-27 02:24:02 +00003567 Attrs.push_back(AttributeSet::get(RetType->getContext(),
3568 AttributeSet::FunctionIndex,
3569 FnAttrs));
Daniel Dunbara279bc32009-09-20 02:20:51 +00003570
Bill Wendling034b94b2012-12-19 07:18:57 +00003571 // Finish off the Attribute and check them
Bill Wendling99faa3b2012-12-07 23:16:57 +00003572 AttributeSet PAL = AttributeSet::get(Context, Attrs);
Daniel Dunbara279bc32009-09-20 02:20:51 +00003573
Jay Foada3efbb12011-07-15 08:37:34 +00003574 InvokeInst *II = InvokeInst::Create(Callee, NormalBB, UnwindBB, Args);
Chris Lattnerdf986172009-01-02 07:01:27 +00003575 II->setCallingConv(CC);
3576 II->setAttributes(PAL);
Bill Wendlingbaad55c2013-02-08 06:32:06 +00003577 ForwardRefAttrGroups[II] = FwdRefAttrGrps;
Chris Lattnerdf986172009-01-02 07:01:27 +00003578 Inst = II;
3579 return false;
3580}
3581
Bill Wendlingdccc03b2011-07-31 06:30:59 +00003582/// ParseResume
3583/// ::= 'resume' TypeAndValue
3584bool LLParser::ParseResume(Instruction *&Inst, PerFunctionState &PFS) {
3585 Value *Exn; LocTy ExnLoc;
Bill Wendlingdccc03b2011-07-31 06:30:59 +00003586 if (ParseTypeAndValue(Exn, ExnLoc, PFS))
3587 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00003588
Bill Wendlingdccc03b2011-07-31 06:30:59 +00003589 ResumeInst *RI = ResumeInst::Create(Exn);
3590 Inst = RI;
3591 return false;
3592}
Chris Lattnerdf986172009-01-02 07:01:27 +00003593
3594//===----------------------------------------------------------------------===//
3595// Binary Operators.
3596//===----------------------------------------------------------------------===//
3597
3598/// ParseArithmetic
Chris Lattnere914b592009-01-05 08:24:46 +00003599/// ::= ArithmeticOps TypeAndValue ',' Value
3600///
3601/// If OperandType is 0, then any FP or integer operand is allowed. If it is 1,
3602/// then any integer operand is allowed, if it is 2, any fp operand is allowed.
Chris Lattnerdf986172009-01-02 07:01:27 +00003603bool LLParser::ParseArithmetic(Instruction *&Inst, PerFunctionState &PFS,
Chris Lattnere914b592009-01-05 08:24:46 +00003604 unsigned Opc, unsigned OperandType) {
Chris Lattnerdf986172009-01-02 07:01:27 +00003605 LocTy Loc; Value *LHS, *RHS;
3606 if (ParseTypeAndValue(LHS, Loc, PFS) ||
3607 ParseToken(lltok::comma, "expected ',' in arithmetic operation") ||
3608 ParseValue(LHS->getType(), RHS, PFS))
3609 return true;
3610
Chris Lattnere914b592009-01-05 08:24:46 +00003611 bool Valid;
3612 switch (OperandType) {
Torok Edwinc23197a2009-07-14 16:55:14 +00003613 default: llvm_unreachable("Unknown operand type!");
Chris Lattnere914b592009-01-05 08:24:46 +00003614 case 0: // int or FP.
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00003615 Valid = LHS->getType()->isIntOrIntVectorTy() ||
3616 LHS->getType()->isFPOrFPVectorTy();
Chris Lattnere914b592009-01-05 08:24:46 +00003617 break;
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00003618 case 1: Valid = LHS->getType()->isIntOrIntVectorTy(); break;
3619 case 2: Valid = LHS->getType()->isFPOrFPVectorTy(); break;
Chris Lattnere914b592009-01-05 08:24:46 +00003620 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003621
Chris Lattnere914b592009-01-05 08:24:46 +00003622 if (!Valid)
3623 return Error(Loc, "invalid operand type for instruction");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003624
Chris Lattnerdf986172009-01-02 07:01:27 +00003625 Inst = BinaryOperator::Create((Instruction::BinaryOps)Opc, LHS, RHS);
3626 return false;
3627}
3628
3629/// ParseLogical
3630/// ::= ArithmeticOps TypeAndValue ',' Value {
3631bool LLParser::ParseLogical(Instruction *&Inst, PerFunctionState &PFS,
3632 unsigned Opc) {
3633 LocTy Loc; Value *LHS, *RHS;
3634 if (ParseTypeAndValue(LHS, Loc, PFS) ||
3635 ParseToken(lltok::comma, "expected ',' in logical operation") ||
3636 ParseValue(LHS->getType(), RHS, PFS))
3637 return true;
3638
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00003639 if (!LHS->getType()->isIntOrIntVectorTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00003640 return Error(Loc,"instruction requires integer or integer vector operands");
3641
3642 Inst = BinaryOperator::Create((Instruction::BinaryOps)Opc, LHS, RHS);
3643 return false;
3644}
3645
3646
3647/// ParseCompare
3648/// ::= 'icmp' IPredicates TypeAndValue ',' Value
3649/// ::= 'fcmp' FPredicates TypeAndValue ',' Value
Chris Lattnerdf986172009-01-02 07:01:27 +00003650bool LLParser::ParseCompare(Instruction *&Inst, PerFunctionState &PFS,
3651 unsigned Opc) {
3652 // Parse the integer/fp comparison predicate.
3653 LocTy Loc;
3654 unsigned Pred;
3655 Value *LHS, *RHS;
3656 if (ParseCmpPredicate(Pred, Opc) ||
3657 ParseTypeAndValue(LHS, Loc, PFS) ||
3658 ParseToken(lltok::comma, "expected ',' after compare value") ||
3659 ParseValue(LHS->getType(), RHS, PFS))
3660 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003661
Chris Lattnerdf986172009-01-02 07:01:27 +00003662 if (Opc == Instruction::FCmp) {
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00003663 if (!LHS->getType()->isFPOrFPVectorTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00003664 return Error(Loc, "fcmp requires floating point operands");
Dan Gohman1c8a23c2009-08-25 23:17:54 +00003665 Inst = new FCmpInst(CmpInst::Predicate(Pred), LHS, RHS);
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00003666 } else {
3667 assert(Opc == Instruction::ICmp && "Unknown opcode for CmpInst!");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00003668 if (!LHS->getType()->isIntOrIntVectorTy() &&
Nadav Rotem16087692011-12-05 06:29:09 +00003669 !LHS->getType()->getScalarType()->isPointerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00003670 return Error(Loc, "icmp requires integer operands");
Dan Gohman1c8a23c2009-08-25 23:17:54 +00003671 Inst = new ICmpInst(CmpInst::Predicate(Pred), LHS, RHS);
Chris Lattnerdf986172009-01-02 07:01:27 +00003672 }
3673 return false;
3674}
3675
3676//===----------------------------------------------------------------------===//
3677// Other Instructions.
3678//===----------------------------------------------------------------------===//
3679
3680
3681/// ParseCast
3682/// ::= CastOpc TypeAndValue 'to' Type
3683bool LLParser::ParseCast(Instruction *&Inst, PerFunctionState &PFS,
3684 unsigned Opc) {
Chris Lattner1afcace2011-07-09 17:41:24 +00003685 LocTy Loc;
3686 Value *Op;
3687 Type *DestTy = 0;
Chris Lattnerdf986172009-01-02 07:01:27 +00003688 if (ParseTypeAndValue(Op, Loc, PFS) ||
3689 ParseToken(lltok::kw_to, "expected 'to' after cast value") ||
3690 ParseType(DestTy))
3691 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003692
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00003693 if (!CastInst::castIsValid((Instruction::CastOps)Opc, Op, DestTy)) {
3694 CastInst::castIsValid((Instruction::CastOps)Opc, Op, DestTy);
Chris Lattnerdf986172009-01-02 07:01:27 +00003695 return Error(Loc, "invalid cast opcode for cast from '" +
Chris Lattner0cd0d882011-06-18 21:18:23 +00003696 getTypeString(Op->getType()) + "' to '" +
3697 getTypeString(DestTy) + "'");
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00003698 }
Chris Lattnerdf986172009-01-02 07:01:27 +00003699 Inst = CastInst::Create((Instruction::CastOps)Opc, Op, DestTy);
3700 return false;
3701}
3702
3703/// ParseSelect
3704/// ::= 'select' TypeAndValue ',' TypeAndValue ',' TypeAndValue
3705bool LLParser::ParseSelect(Instruction *&Inst, PerFunctionState &PFS) {
3706 LocTy Loc;
3707 Value *Op0, *Op1, *Op2;
3708 if (ParseTypeAndValue(Op0, Loc, PFS) ||
3709 ParseToken(lltok::comma, "expected ',' after select condition") ||
3710 ParseTypeAndValue(Op1, PFS) ||
3711 ParseToken(lltok::comma, "expected ',' after select value") ||
3712 ParseTypeAndValue(Op2, PFS))
3713 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003714
Chris Lattnerdf986172009-01-02 07:01:27 +00003715 if (const char *Reason = SelectInst::areInvalidOperands(Op0, Op1, Op2))
3716 return Error(Loc, Reason);
Daniel Dunbara279bc32009-09-20 02:20:51 +00003717
Chris Lattnerdf986172009-01-02 07:01:27 +00003718 Inst = SelectInst::Create(Op0, Op1, Op2);
3719 return false;
3720}
3721
Chris Lattner0088a5c2009-01-05 08:18:44 +00003722/// ParseVA_Arg
3723/// ::= 'va_arg' TypeAndValue ',' Type
3724bool LLParser::ParseVA_Arg(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00003725 Value *Op;
Chris Lattner1afcace2011-07-09 17:41:24 +00003726 Type *EltTy = 0;
Chris Lattner0088a5c2009-01-05 08:18:44 +00003727 LocTy TypeLoc;
Chris Lattnerdf986172009-01-02 07:01:27 +00003728 if (ParseTypeAndValue(Op, PFS) ||
3729 ParseToken(lltok::comma, "expected ',' after vaarg operand") ||
Chris Lattner0088a5c2009-01-05 08:18:44 +00003730 ParseType(EltTy, TypeLoc))
Chris Lattnerdf986172009-01-02 07:01:27 +00003731 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003732
Chris Lattner0088a5c2009-01-05 08:18:44 +00003733 if (!EltTy->isFirstClassType())
3734 return Error(TypeLoc, "va_arg requires operand with first class type");
Chris Lattnerdf986172009-01-02 07:01:27 +00003735
3736 Inst = new VAArgInst(Op, EltTy);
3737 return false;
3738}
3739
3740/// ParseExtractElement
3741/// ::= 'extractelement' TypeAndValue ',' TypeAndValue
3742bool LLParser::ParseExtractElement(Instruction *&Inst, PerFunctionState &PFS) {
3743 LocTy Loc;
3744 Value *Op0, *Op1;
3745 if (ParseTypeAndValue(Op0, Loc, PFS) ||
3746 ParseToken(lltok::comma, "expected ',' after extract value") ||
3747 ParseTypeAndValue(Op1, PFS))
3748 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003749
Chris Lattnerdf986172009-01-02 07:01:27 +00003750 if (!ExtractElementInst::isValidOperands(Op0, Op1))
3751 return Error(Loc, "invalid extractelement operands");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003752
Eric Christophera3500da2009-07-25 02:28:41 +00003753 Inst = ExtractElementInst::Create(Op0, Op1);
Chris Lattnerdf986172009-01-02 07:01:27 +00003754 return false;
3755}
3756
3757/// ParseInsertElement
3758/// ::= 'insertelement' TypeAndValue ',' TypeAndValue ',' TypeAndValue
3759bool LLParser::ParseInsertElement(Instruction *&Inst, PerFunctionState &PFS) {
3760 LocTy Loc;
3761 Value *Op0, *Op1, *Op2;
3762 if (ParseTypeAndValue(Op0, Loc, PFS) ||
3763 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
3764 ParseTypeAndValue(Op1, PFS) ||
3765 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
3766 ParseTypeAndValue(Op2, PFS))
3767 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003768
Chris Lattnerdf986172009-01-02 07:01:27 +00003769 if (!InsertElementInst::isValidOperands(Op0, Op1, Op2))
Eric Christopher0aaf4e92009-07-23 01:01:32 +00003770 return Error(Loc, "invalid insertelement operands");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003771
Chris Lattnerdf986172009-01-02 07:01:27 +00003772 Inst = InsertElementInst::Create(Op0, Op1, Op2);
3773 return false;
3774}
3775
3776/// ParseShuffleVector
3777/// ::= 'shufflevector' TypeAndValue ',' TypeAndValue ',' TypeAndValue
3778bool LLParser::ParseShuffleVector(Instruction *&Inst, PerFunctionState &PFS) {
3779 LocTy Loc;
3780 Value *Op0, *Op1, *Op2;
3781 if (ParseTypeAndValue(Op0, Loc, PFS) ||
3782 ParseToken(lltok::comma, "expected ',' after shuffle mask") ||
3783 ParseTypeAndValue(Op1, PFS) ||
3784 ParseToken(lltok::comma, "expected ',' after shuffle value") ||
3785 ParseTypeAndValue(Op2, PFS))
3786 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003787
Chris Lattnerdf986172009-01-02 07:01:27 +00003788 if (!ShuffleVectorInst::isValidOperands(Op0, Op1, Op2))
Pete Cooperaf393682012-02-01 23:43:12 +00003789 return Error(Loc, "invalid shufflevector operands");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003790
Chris Lattnerdf986172009-01-02 07:01:27 +00003791 Inst = new ShuffleVectorInst(Op0, Op1, Op2);
3792 return false;
3793}
3794
3795/// ParsePHI
Chris Lattnerc6e20092009-10-18 05:27:44 +00003796/// ::= 'phi' Type '[' Value ',' Value ']' (',' '[' Value ',' Value ']')*
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003797int LLParser::ParsePHI(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattner1afcace2011-07-09 17:41:24 +00003798 Type *Ty = 0; LocTy TypeLoc;
Chris Lattnerdf986172009-01-02 07:01:27 +00003799 Value *Op0, *Op1;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003800
Chris Lattner1afcace2011-07-09 17:41:24 +00003801 if (ParseType(Ty, TypeLoc) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003802 ParseToken(lltok::lsquare, "expected '[' in phi value list") ||
3803 ParseValue(Ty, Op0, PFS) ||
3804 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
Owen Anderson1d0be152009-08-13 21:58:54 +00003805 ParseValue(Type::getLabelTy(Context), Op1, PFS) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003806 ParseToken(lltok::rsquare, "expected ']' in phi value list"))
3807 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003808
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003809 bool AteExtraComma = false;
Chris Lattnerdf986172009-01-02 07:01:27 +00003810 SmallVector<std::pair<Value*, BasicBlock*>, 16> PHIVals;
3811 while (1) {
3812 PHIVals.push_back(std::make_pair(Op0, cast<BasicBlock>(Op1)));
Daniel Dunbara279bc32009-09-20 02:20:51 +00003813
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003814 if (!EatIfPresent(lltok::comma))
Chris Lattnerdf986172009-01-02 07:01:27 +00003815 break;
3816
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003817 if (Lex.getKind() == lltok::MetadataVar) {
3818 AteExtraComma = true;
Devang Patela43d46f2009-10-16 18:45:49 +00003819 break;
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003820 }
Devang Patela43d46f2009-10-16 18:45:49 +00003821
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003822 if (ParseToken(lltok::lsquare, "expected '[' in phi value list") ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003823 ParseValue(Ty, Op0, PFS) ||
3824 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
Owen Anderson1d0be152009-08-13 21:58:54 +00003825 ParseValue(Type::getLabelTy(Context), Op1, PFS) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003826 ParseToken(lltok::rsquare, "expected ']' in phi value list"))
3827 return true;
3828 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003829
Chris Lattnerdf986172009-01-02 07:01:27 +00003830 if (!Ty->isFirstClassType())
3831 return Error(TypeLoc, "phi node must have first class type");
3832
Jay Foad3ecfc862011-03-30 11:28:46 +00003833 PHINode *PN = PHINode::Create(Ty, PHIVals.size());
Chris Lattnerdf986172009-01-02 07:01:27 +00003834 for (unsigned i = 0, e = PHIVals.size(); i != e; ++i)
3835 PN->addIncoming(PHIVals[i].first, PHIVals[i].second);
3836 Inst = PN;
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003837 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerdf986172009-01-02 07:01:27 +00003838}
3839
Bill Wendlinge6e88262011-08-12 20:24:12 +00003840/// ParseLandingPad
3841/// ::= 'landingpad' Type 'personality' TypeAndValue 'cleanup'? Clause+
3842/// Clause
3843/// ::= 'catch' TypeAndValue
3844/// ::= 'filter'
3845/// ::= 'filter' TypeAndValue ( ',' TypeAndValue )*
3846bool LLParser::ParseLandingPad(Instruction *&Inst, PerFunctionState &PFS) {
3847 Type *Ty = 0; LocTy TyLoc;
3848 Value *PersFn; LocTy PersFnLoc;
Bill Wendlinge6e88262011-08-12 20:24:12 +00003849
3850 if (ParseType(Ty, TyLoc) ||
3851 ParseToken(lltok::kw_personality, "expected 'personality'") ||
3852 ParseTypeAndValue(PersFn, PersFnLoc, PFS))
3853 return true;
3854
3855 LandingPadInst *LP = LandingPadInst::Create(Ty, PersFn, 0);
3856 LP->setCleanup(EatIfPresent(lltok::kw_cleanup));
3857
3858 while (Lex.getKind() == lltok::kw_catch || Lex.getKind() == lltok::kw_filter){
3859 LandingPadInst::ClauseType CT;
3860 if (EatIfPresent(lltok::kw_catch))
3861 CT = LandingPadInst::Catch;
3862 else if (EatIfPresent(lltok::kw_filter))
3863 CT = LandingPadInst::Filter;
3864 else
3865 return TokError("expected 'catch' or 'filter' clause type");
3866
3867 Value *V; LocTy VLoc;
3868 if (ParseTypeAndValue(V, VLoc, PFS)) {
3869 delete LP;
3870 return true;
3871 }
3872
Bill Wendling746c8822011-08-12 20:52:25 +00003873 // A 'catch' type expects a non-array constant. A filter clause expects an
3874 // array constant.
3875 if (CT == LandingPadInst::Catch) {
3876 if (isa<ArrayType>(V->getType()))
3877 Error(VLoc, "'catch' clause has an invalid type");
3878 } else {
3879 if (!isa<ArrayType>(V->getType()))
3880 Error(VLoc, "'filter' clause has an invalid type");
3881 }
3882
Bill Wendlinge6e88262011-08-12 20:24:12 +00003883 LP->addClause(V);
3884 }
3885
3886 Inst = LP;
3887 return false;
3888}
3889
Chris Lattnerdf986172009-01-02 07:01:27 +00003890/// ParseCall
3891/// ::= 'tail'? 'call' OptionalCallingConv OptionalAttrs Type Value
3892/// ParameterList OptionalAttrs
3893bool LLParser::ParseCall(Instruction *&Inst, PerFunctionState &PFS,
3894 bool isTail) {
Bill Wendling702cc912012-10-15 20:35:56 +00003895 AttrBuilder RetAttrs, FnAttrs;
Bill Wendlingbaad55c2013-02-08 06:32:06 +00003896 std::vector<unsigned> FwdRefAttrGrps;
Bill Wendling143d4642013-02-22 00:12:35 +00003897 LocTy NoBuiltinLoc;
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00003898 CallingConv::ID CC;
Chris Lattner1afcace2011-07-09 17:41:24 +00003899 Type *RetType = 0;
Chris Lattnerdf986172009-01-02 07:01:27 +00003900 LocTy RetTypeLoc;
3901 ValID CalleeID;
3902 SmallVector<ParamInfo, 16> ArgList;
3903 LocTy CallLoc = Lex.getLoc();
Daniel Dunbara279bc32009-09-20 02:20:51 +00003904
Chris Lattnerdf986172009-01-02 07:01:27 +00003905 if ((isTail && ParseToken(lltok::kw_call, "expected 'tail call'")) ||
3906 ParseOptionalCallingConv(CC) ||
Bill Wendlinge01b81b2012-12-04 23:40:58 +00003907 ParseOptionalReturnAttrs(RetAttrs) ||
Chris Lattnera9a9e072009-03-09 04:49:14 +00003908 ParseType(RetType, RetTypeLoc, true /*void allowed*/) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003909 ParseValID(CalleeID) ||
3910 ParseParameterList(ArgList, PFS) ||
Bill Wendling143d4642013-02-22 00:12:35 +00003911 ParseFnAttributeValuePairs(FnAttrs, FwdRefAttrGrps, false,
3912 NoBuiltinLoc))
Chris Lattnerdf986172009-01-02 07:01:27 +00003913 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003914
Chris Lattnerdf986172009-01-02 07:01:27 +00003915 // If RetType is a non-function pointer type, then this is the short syntax
3916 // for the call, which means that RetType is just the return type. Infer the
3917 // rest of the function argument types from the arguments that are present.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00003918 PointerType *PFTy = 0;
3919 FunctionType *Ty = 0;
Chris Lattnerdf986172009-01-02 07:01:27 +00003920 if (!(PFTy = dyn_cast<PointerType>(RetType)) ||
3921 !(Ty = dyn_cast<FunctionType>(PFTy->getElementType()))) {
3922 // Pull out the types of all of the arguments...
Jay Foad5fdd6c82011-07-12 14:06:48 +00003923 std::vector<Type*> ParamTypes;
Eli Friedman83b4a972010-07-24 23:06:59 +00003924 for (unsigned i = 0, e = ArgList.size(); i != e; ++i)
3925 ParamTypes.push_back(ArgList[i].V->getType());
Daniel Dunbara279bc32009-09-20 02:20:51 +00003926
Chris Lattnerdf986172009-01-02 07:01:27 +00003927 if (!FunctionType::isValidReturnType(RetType))
3928 return Error(RetTypeLoc, "Invalid result type for LLVM function");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003929
Owen Andersondebcb012009-07-29 22:17:13 +00003930 Ty = FunctionType::get(RetType, ParamTypes, false);
3931 PFTy = PointerType::getUnqual(Ty);
Chris Lattnerdf986172009-01-02 07:01:27 +00003932 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003933
Chris Lattnerdf986172009-01-02 07:01:27 +00003934 // Look up the callee.
3935 Value *Callee;
Victor Hernandez92f238d2010-01-11 22:31:58 +00003936 if (ConvertValIDToValue(PFTy, CalleeID, Callee, &PFS)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003937
Bill Wendling034b94b2012-12-19 07:18:57 +00003938 // Set up the Attribute for the function.
Bill Wendlinga1683d62013-01-27 02:24:02 +00003939 SmallVector<AttributeSet, 8> Attrs;
Bill Wendlinge603fe42012-09-19 23:54:18 +00003940 if (RetAttrs.hasAttributes())
Bill Wendlinga1683d62013-01-27 02:24:02 +00003941 Attrs.push_back(AttributeSet::get(RetType->getContext(),
3942 AttributeSet::ReturnIndex,
3943 RetAttrs));
Daniel Dunbara279bc32009-09-20 02:20:51 +00003944
Chris Lattnerdf986172009-01-02 07:01:27 +00003945 SmallVector<Value*, 8> Args;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003946
Chris Lattnerdf986172009-01-02 07:01:27 +00003947 // Loop through FunctionType's arguments and ensure they are specified
3948 // correctly. Also, gather any parameter attributes.
3949 FunctionType::param_iterator I = Ty->param_begin();
3950 FunctionType::param_iterator E = Ty->param_end();
3951 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
Chris Lattnerdb125cf2011-07-18 04:54:35 +00003952 Type *ExpectedTy = 0;
Chris Lattnerdf986172009-01-02 07:01:27 +00003953 if (I != E) {
3954 ExpectedTy = *I++;
3955 } else if (!Ty->isVarArg()) {
3956 return Error(ArgList[i].Loc, "too many arguments specified");
3957 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003958
Chris Lattnerdf986172009-01-02 07:01:27 +00003959 if (ExpectedTy && ExpectedTy != ArgList[i].V->getType())
3960 return Error(ArgList[i].Loc, "argument is not of expected type '" +
Chris Lattner0cd0d882011-06-18 21:18:23 +00003961 getTypeString(ExpectedTy) + "'");
Chris Lattnerdf986172009-01-02 07:01:27 +00003962 Args.push_back(ArgList[i].V);
Bill Wendling73dee182013-01-31 00:29:54 +00003963 if (ArgList[i].Attrs.hasAttributes(i + 1)) {
3964 AttrBuilder B(ArgList[i].Attrs, i + 1);
Bill Wendlinga1683d62013-01-27 02:24:02 +00003965 Attrs.push_back(AttributeSet::get(RetType->getContext(), i + 1, B));
3966 }
Chris Lattnerdf986172009-01-02 07:01:27 +00003967 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003968
Chris Lattnerdf986172009-01-02 07:01:27 +00003969 if (I != E)
3970 return Error(CallLoc, "not enough parameters specified for call");
3971
Bill Wendlinge603fe42012-09-19 23:54:18 +00003972 if (FnAttrs.hasAttributes())
Bill Wendlinga1683d62013-01-27 02:24:02 +00003973 Attrs.push_back(AttributeSet::get(RetType->getContext(),
3974 AttributeSet::FunctionIndex,
3975 FnAttrs));
Chris Lattnerdf986172009-01-02 07:01:27 +00003976
Bill Wendling034b94b2012-12-19 07:18:57 +00003977 // Finish off the Attribute and check them
Bill Wendling99faa3b2012-12-07 23:16:57 +00003978 AttributeSet PAL = AttributeSet::get(Context, Attrs);
Daniel Dunbara279bc32009-09-20 02:20:51 +00003979
Jay Foada3efbb12011-07-15 08:37:34 +00003980 CallInst *CI = CallInst::Create(Callee, Args);
Chris Lattnerdf986172009-01-02 07:01:27 +00003981 CI->setTailCall(isTail);
3982 CI->setCallingConv(CC);
3983 CI->setAttributes(PAL);
Bill Wendlingbaad55c2013-02-08 06:32:06 +00003984 ForwardRefAttrGroups[CI] = FwdRefAttrGrps;
Chris Lattnerdf986172009-01-02 07:01:27 +00003985 Inst = CI;
3986 return false;
3987}
3988
3989//===----------------------------------------------------------------------===//
3990// Memory Instructions.
3991//===----------------------------------------------------------------------===//
3992
3993/// ParseAlloc
Devang Patelf633a062009-09-17 23:04:48 +00003994/// ::= 'alloca' Type (',' TypeAndValue)? (',' OptionalInfo)?
Chris Lattnerf3a789d2011-06-17 03:16:47 +00003995int LLParser::ParseAlloc(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00003996 Value *Size = 0;
Chris Lattnereeb4a842009-07-02 23:08:13 +00003997 LocTy SizeLoc;
Chris Lattnerdf986172009-01-02 07:01:27 +00003998 unsigned Alignment = 0;
Chris Lattner1afcace2011-07-09 17:41:24 +00003999 Type *Ty = 0;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00004000 if (ParseType(Ty)) return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00004001
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00004002 bool AteExtraComma = false;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00004003 if (EatIfPresent(lltok::comma)) {
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00004004 if (Lex.getKind() == lltok::kw_align) {
4005 if (ParseOptionalAlignment(Alignment)) return true;
4006 } else if (Lex.getKind() == lltok::MetadataVar) {
4007 AteExtraComma = true;
Devang Patelf633a062009-09-17 23:04:48 +00004008 } else {
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00004009 if (ParseTypeAndValue(Size, SizeLoc, PFS) ||
4010 ParseOptionalCommaAlign(Alignment, AteExtraComma))
4011 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00004012 }
4013 }
4014
Dan Gohmanf75a7d32010-05-28 01:14:11 +00004015 if (Size && !Size->getType()->isIntegerTy())
4016 return Error(SizeLoc, "element count must have integer type");
Chris Lattnerdf986172009-01-02 07:01:27 +00004017
Chris Lattnerf3a789d2011-06-17 03:16:47 +00004018 Inst = new AllocaInst(Ty, Size, Alignment);
4019 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerdf986172009-01-02 07:01:27 +00004020}
4021
4022/// ParseLoad
Eli Friedmanf03bb262011-08-12 22:50:01 +00004023/// ::= 'load' 'volatile'? TypeAndValue (',' 'align' i32)?
Michael Ilseman407a6162012-11-15 22:34:00 +00004024/// ::= 'load' 'atomic' 'volatile'? TypeAndValue
Eli Friedmanf03bb262011-08-12 22:50:01 +00004025/// 'singlethread'? AtomicOrdering (',' 'align' i32)?
Chris Lattnerfbe910e2011-11-27 06:56:53 +00004026int LLParser::ParseLoad(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00004027 Value *Val; LocTy Loc;
Devang Patelf633a062009-09-17 23:04:48 +00004028 unsigned Alignment = 0;
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00004029 bool AteExtraComma = false;
Eli Friedmanf03bb262011-08-12 22:50:01 +00004030 bool isAtomic = false;
Eli Friedman21006d42011-08-09 23:02:53 +00004031 AtomicOrdering Ordering = NotAtomic;
4032 SynchronizationScope Scope = CrossThread;
Eli Friedmanf03bb262011-08-12 22:50:01 +00004033
4034 if (Lex.getKind() == lltok::kw_atomic) {
Eli Friedmanf03bb262011-08-12 22:50:01 +00004035 isAtomic = true;
4036 Lex.Lex();
4037 }
4038
Chris Lattnerfbe910e2011-11-27 06:56:53 +00004039 bool isVolatile = false;
Eli Friedmanf03bb262011-08-12 22:50:01 +00004040 if (Lex.getKind() == lltok::kw_volatile) {
Eli Friedmanf03bb262011-08-12 22:50:01 +00004041 isVolatile = true;
4042 Lex.Lex();
4043 }
4044
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00004045 if (ParseTypeAndValue(Val, Loc, PFS) ||
Eli Friedman21006d42011-08-09 23:02:53 +00004046 ParseScopeAndOrdering(isAtomic, Scope, Ordering) ||
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00004047 ParseOptionalCommaAlign(Alignment, AteExtraComma))
4048 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00004049
Duncan Sands1df98592010-02-16 11:11:14 +00004050 if (!Val->getType()->isPointerTy() ||
Chris Lattnerdf986172009-01-02 07:01:27 +00004051 !cast<PointerType>(Val->getType())->getElementType()->isFirstClassType())
4052 return Error(Loc, "load operand must be a pointer to a first class type");
Eli Friedman21006d42011-08-09 23:02:53 +00004053 if (isAtomic && !Alignment)
4054 return Error(Loc, "atomic load must have explicit non-zero alignment");
4055 if (Ordering == Release || Ordering == AcquireRelease)
4056 return Error(Loc, "atomic load cannot use Release ordering");
Daniel Dunbara279bc32009-09-20 02:20:51 +00004057
Eli Friedman21006d42011-08-09 23:02:53 +00004058 Inst = new LoadInst(Val, "", isVolatile, Alignment, Ordering, Scope);
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00004059 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerdf986172009-01-02 07:01:27 +00004060}
4061
4062/// ParseStore
Eli Friedmanf03bb262011-08-12 22:50:01 +00004063
4064/// ::= 'store' 'volatile'? TypeAndValue ',' TypeAndValue (',' 'align' i32)?
4065/// ::= 'store' 'atomic' 'volatile'? TypeAndValue ',' TypeAndValue
Eli Friedman21006d42011-08-09 23:02:53 +00004066/// 'singlethread'? AtomicOrdering (',' 'align' i32)?
Chris Lattnerfbe910e2011-11-27 06:56:53 +00004067int LLParser::ParseStore(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00004068 Value *Val, *Ptr; LocTy Loc, PtrLoc;
Devang Patelf633a062009-09-17 23:04:48 +00004069 unsigned Alignment = 0;
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00004070 bool AteExtraComma = false;
Eli Friedmanf03bb262011-08-12 22:50:01 +00004071 bool isAtomic = false;
Eli Friedman21006d42011-08-09 23:02:53 +00004072 AtomicOrdering Ordering = NotAtomic;
4073 SynchronizationScope Scope = CrossThread;
Eli Friedmanf03bb262011-08-12 22:50:01 +00004074
4075 if (Lex.getKind() == lltok::kw_atomic) {
Eli Friedmanf03bb262011-08-12 22:50:01 +00004076 isAtomic = true;
4077 Lex.Lex();
4078 }
4079
Chris Lattnerfbe910e2011-11-27 06:56:53 +00004080 bool isVolatile = false;
Eli Friedmanf03bb262011-08-12 22:50:01 +00004081 if (Lex.getKind() == lltok::kw_volatile) {
Eli Friedmanf03bb262011-08-12 22:50:01 +00004082 isVolatile = true;
4083 Lex.Lex();
4084 }
4085
Chris Lattnerdf986172009-01-02 07:01:27 +00004086 if (ParseTypeAndValue(Val, Loc, PFS) ||
4087 ParseToken(lltok::comma, "expected ',' after store operand") ||
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00004088 ParseTypeAndValue(Ptr, PtrLoc, PFS) ||
Eli Friedman21006d42011-08-09 23:02:53 +00004089 ParseScopeAndOrdering(isAtomic, Scope, Ordering) ||
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00004090 ParseOptionalCommaAlign(Alignment, AteExtraComma))
Chris Lattnerdf986172009-01-02 07:01:27 +00004091 return true;
Devang Patelf633a062009-09-17 23:04:48 +00004092
Duncan Sands1df98592010-02-16 11:11:14 +00004093 if (!Ptr->getType()->isPointerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00004094 return Error(PtrLoc, "store operand must be a pointer");
4095 if (!Val->getType()->isFirstClassType())
4096 return Error(Loc, "store operand must be a first class value");
4097 if (cast<PointerType>(Ptr->getType())->getElementType() != Val->getType())
4098 return Error(Loc, "stored value and pointer type do not match");
Eli Friedman21006d42011-08-09 23:02:53 +00004099 if (isAtomic && !Alignment)
4100 return Error(Loc, "atomic store must have explicit non-zero alignment");
4101 if (Ordering == Acquire || Ordering == AcquireRelease)
4102 return Error(Loc, "atomic store cannot use Acquire ordering");
Daniel Dunbara279bc32009-09-20 02:20:51 +00004103
Eli Friedman21006d42011-08-09 23:02:53 +00004104 Inst = new StoreInst(Val, Ptr, isVolatile, Alignment, Ordering, Scope);
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00004105 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerdf986172009-01-02 07:01:27 +00004106}
4107
Eli Friedmanff030482011-07-28 21:48:00 +00004108/// ParseCmpXchg
Eli Friedmanf03bb262011-08-12 22:50:01 +00004109/// ::= 'cmpxchg' 'volatile'? TypeAndValue ',' TypeAndValue ',' TypeAndValue
4110/// 'singlethread'? AtomicOrdering
4111int LLParser::ParseCmpXchg(Instruction *&Inst, PerFunctionState &PFS) {
Eli Friedmanff030482011-07-28 21:48:00 +00004112 Value *Ptr, *Cmp, *New; LocTy PtrLoc, CmpLoc, NewLoc;
4113 bool AteExtraComma = false;
4114 AtomicOrdering Ordering = NotAtomic;
4115 SynchronizationScope Scope = CrossThread;
Eli Friedmanf03bb262011-08-12 22:50:01 +00004116 bool isVolatile = false;
4117
4118 if (EatIfPresent(lltok::kw_volatile))
4119 isVolatile = true;
4120
Eli Friedmanff030482011-07-28 21:48:00 +00004121 if (ParseTypeAndValue(Ptr, PtrLoc, PFS) ||
4122 ParseToken(lltok::comma, "expected ',' after cmpxchg address") ||
4123 ParseTypeAndValue(Cmp, CmpLoc, PFS) ||
4124 ParseToken(lltok::comma, "expected ',' after cmpxchg cmp operand") ||
4125 ParseTypeAndValue(New, NewLoc, PFS) ||
4126 ParseScopeAndOrdering(true /*Always atomic*/, Scope, Ordering))
4127 return true;
4128
4129 if (Ordering == Unordered)
4130 return TokError("cmpxchg cannot be unordered");
4131 if (!Ptr->getType()->isPointerTy())
4132 return Error(PtrLoc, "cmpxchg operand must be a pointer");
4133 if (cast<PointerType>(Ptr->getType())->getElementType() != Cmp->getType())
4134 return Error(CmpLoc, "compare value and pointer type do not match");
4135 if (cast<PointerType>(Ptr->getType())->getElementType() != New->getType())
4136 return Error(NewLoc, "new value and pointer type do not match");
4137 if (!New->getType()->isIntegerTy())
4138 return Error(NewLoc, "cmpxchg operand must be an integer");
4139 unsigned Size = New->getType()->getPrimitiveSizeInBits();
4140 if (Size < 8 || (Size & (Size - 1)))
4141 return Error(NewLoc, "cmpxchg operand must be power-of-two byte-sized"
4142 " integer");
4143
4144 AtomicCmpXchgInst *CXI =
4145 new AtomicCmpXchgInst(Ptr, Cmp, New, Ordering, Scope);
4146 CXI->setVolatile(isVolatile);
4147 Inst = CXI;
4148 return AteExtraComma ? InstExtraComma : InstNormal;
4149}
4150
4151/// ParseAtomicRMW
Eli Friedmanf03bb262011-08-12 22:50:01 +00004152/// ::= 'atomicrmw' 'volatile'? BinOp TypeAndValue ',' TypeAndValue
4153/// 'singlethread'? AtomicOrdering
4154int LLParser::ParseAtomicRMW(Instruction *&Inst, PerFunctionState &PFS) {
Eli Friedmanff030482011-07-28 21:48:00 +00004155 Value *Ptr, *Val; LocTy PtrLoc, ValLoc;
4156 bool AteExtraComma = false;
4157 AtomicOrdering Ordering = NotAtomic;
4158 SynchronizationScope Scope = CrossThread;
Eli Friedmanf03bb262011-08-12 22:50:01 +00004159 bool isVolatile = false;
Eli Friedmanff030482011-07-28 21:48:00 +00004160 AtomicRMWInst::BinOp Operation;
Eli Friedmanf03bb262011-08-12 22:50:01 +00004161
4162 if (EatIfPresent(lltok::kw_volatile))
4163 isVolatile = true;
4164
Eli Friedmanff030482011-07-28 21:48:00 +00004165 switch (Lex.getKind()) {
4166 default: return TokError("expected binary operation in atomicrmw");
4167 case lltok::kw_xchg: Operation = AtomicRMWInst::Xchg; break;
4168 case lltok::kw_add: Operation = AtomicRMWInst::Add; break;
4169 case lltok::kw_sub: Operation = AtomicRMWInst::Sub; break;
4170 case lltok::kw_and: Operation = AtomicRMWInst::And; break;
4171 case lltok::kw_nand: Operation = AtomicRMWInst::Nand; break;
4172 case lltok::kw_or: Operation = AtomicRMWInst::Or; break;
4173 case lltok::kw_xor: Operation = AtomicRMWInst::Xor; break;
4174 case lltok::kw_max: Operation = AtomicRMWInst::Max; break;
4175 case lltok::kw_min: Operation = AtomicRMWInst::Min; break;
4176 case lltok::kw_umax: Operation = AtomicRMWInst::UMax; break;
4177 case lltok::kw_umin: Operation = AtomicRMWInst::UMin; break;
4178 }
4179 Lex.Lex(); // Eat the operation.
4180
4181 if (ParseTypeAndValue(Ptr, PtrLoc, PFS) ||
4182 ParseToken(lltok::comma, "expected ',' after atomicrmw address") ||
4183 ParseTypeAndValue(Val, ValLoc, PFS) ||
4184 ParseScopeAndOrdering(true /*Always atomic*/, Scope, Ordering))
4185 return true;
4186
4187 if (Ordering == Unordered)
4188 return TokError("atomicrmw cannot be unordered");
4189 if (!Ptr->getType()->isPointerTy())
4190 return Error(PtrLoc, "atomicrmw operand must be a pointer");
4191 if (cast<PointerType>(Ptr->getType())->getElementType() != Val->getType())
4192 return Error(ValLoc, "atomicrmw value and pointer type do not match");
4193 if (!Val->getType()->isIntegerTy())
4194 return Error(ValLoc, "atomicrmw operand must be an integer");
4195 unsigned Size = Val->getType()->getPrimitiveSizeInBits();
4196 if (Size < 8 || (Size & (Size - 1)))
4197 return Error(ValLoc, "atomicrmw operand must be power-of-two byte-sized"
4198 " integer");
4199
4200 AtomicRMWInst *RMWI =
4201 new AtomicRMWInst(Operation, Ptr, Val, Ordering, Scope);
4202 RMWI->setVolatile(isVolatile);
4203 Inst = RMWI;
4204 return AteExtraComma ? InstExtraComma : InstNormal;
4205}
4206
Eli Friedman47f35132011-07-25 23:16:38 +00004207/// ParseFence
4208/// ::= 'fence' 'singlethread'? AtomicOrdering
4209int LLParser::ParseFence(Instruction *&Inst, PerFunctionState &PFS) {
4210 AtomicOrdering Ordering = NotAtomic;
4211 SynchronizationScope Scope = CrossThread;
4212 if (ParseScopeAndOrdering(true /*Always atomic*/, Scope, Ordering))
4213 return true;
4214
4215 if (Ordering == Unordered)
4216 return TokError("fence cannot be unordered");
4217 if (Ordering == Monotonic)
4218 return TokError("fence cannot be monotonic");
4219
4220 Inst = new FenceInst(Context, Ordering, Scope);
4221 return InstNormal;
4222}
4223
Chris Lattnerdf986172009-01-02 07:01:27 +00004224/// ParseGetElementPtr
Dan Gohmandd8004d2009-07-27 21:53:46 +00004225/// ::= 'getelementptr' 'inbounds'? TypeAndValue (',' TypeAndValue)*
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004226int LLParser::ParseGetElementPtr(Instruction *&Inst, PerFunctionState &PFS) {
Nadav Rotem16087692011-12-05 06:29:09 +00004227 Value *Ptr = 0;
4228 Value *Val = 0;
4229 LocTy Loc, EltLoc;
Dan Gohmandd8004d2009-07-27 21:53:46 +00004230
Dan Gohmandcb40a32009-07-29 15:58:36 +00004231 bool InBounds = EatIfPresent(lltok::kw_inbounds);
Dan Gohmandd8004d2009-07-27 21:53:46 +00004232
Chris Lattner3ed88ef2009-01-02 08:05:26 +00004233 if (ParseTypeAndValue(Ptr, Loc, PFS)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00004234
Nadav Rotem16087692011-12-05 06:29:09 +00004235 if (!Ptr->getType()->getScalarType()->isPointerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00004236 return Error(Loc, "base of getelementptr must be a pointer");
Daniel Dunbara279bc32009-09-20 02:20:51 +00004237
Chris Lattnerdf986172009-01-02 07:01:27 +00004238 SmallVector<Value*, 16> Indices;
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004239 bool AteExtraComma = false;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00004240 while (EatIfPresent(lltok::comma)) {
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004241 if (Lex.getKind() == lltok::MetadataVar) {
4242 AteExtraComma = true;
Devang Patel6225d642009-10-13 18:49:55 +00004243 break;
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004244 }
Chris Lattner3ed88ef2009-01-02 08:05:26 +00004245 if (ParseTypeAndValue(Val, EltLoc, PFS)) return true;
Nadav Rotem16087692011-12-05 06:29:09 +00004246 if (!Val->getType()->getScalarType()->isIntegerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00004247 return Error(EltLoc, "getelementptr index must be an integer");
Nadav Rotem16087692011-12-05 06:29:09 +00004248 if (Val->getType()->isVectorTy() != Ptr->getType()->isVectorTy())
4249 return Error(EltLoc, "getelementptr index type missmatch");
4250 if (Val->getType()->isVectorTy()) {
4251 unsigned ValNumEl = cast<VectorType>(Val->getType())->getNumElements();
4252 unsigned PtrNumEl = cast<VectorType>(Ptr->getType())->getNumElements();
4253 if (ValNumEl != PtrNumEl)
4254 return Error(EltLoc,
4255 "getelementptr vector index has a wrong number of elements");
4256 }
Chris Lattnerdf986172009-01-02 07:01:27 +00004257 Indices.push_back(Val);
4258 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00004259
Jay Foada9203102011-07-25 09:48:08 +00004260 if (!GetElementPtrInst::getIndexedType(Ptr->getType(), Indices))
Chris Lattnerdf986172009-01-02 07:01:27 +00004261 return Error(Loc, "invalid getelementptr indices");
Jay Foada9203102011-07-25 09:48:08 +00004262 Inst = GetElementPtrInst::Create(Ptr, Indices);
Dan Gohmandd8004d2009-07-27 21:53:46 +00004263 if (InBounds)
Dan Gohmanf8dbee72009-09-07 23:54:19 +00004264 cast<GetElementPtrInst>(Inst)->setIsInBounds(true);
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004265 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerdf986172009-01-02 07:01:27 +00004266}
4267
4268/// ParseExtractValue
4269/// ::= 'extractvalue' TypeAndValue (',' uint32)+
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004270int LLParser::ParseExtractValue(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00004271 Value *Val; LocTy Loc;
4272 SmallVector<unsigned, 4> Indices;
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004273 bool AteExtraComma;
Chris Lattnerdf986172009-01-02 07:01:27 +00004274 if (ParseTypeAndValue(Val, Loc, PFS) ||
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004275 ParseIndexList(Indices, AteExtraComma))
Chris Lattnerdf986172009-01-02 07:01:27 +00004276 return true;
4277
Chris Lattnerfdfeb692010-02-12 20:49:41 +00004278 if (!Val->getType()->isAggregateType())
4279 return Error(Loc, "extractvalue operand must be aggregate type");
Chris Lattnerdf986172009-01-02 07:01:27 +00004280
Jay Foadfc6d3a42011-07-13 10:26:04 +00004281 if (!ExtractValueInst::getIndexedType(Val->getType(), Indices))
Chris Lattnerdf986172009-01-02 07:01:27 +00004282 return Error(Loc, "invalid indices for extractvalue");
Jay Foadfc6d3a42011-07-13 10:26:04 +00004283 Inst = ExtractValueInst::Create(Val, Indices);
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004284 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerdf986172009-01-02 07:01:27 +00004285}
4286
4287/// ParseInsertValue
4288/// ::= 'insertvalue' TypeAndValue ',' TypeAndValue (',' uint32)+
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004289int LLParser::ParseInsertValue(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00004290 Value *Val0, *Val1; LocTy Loc0, Loc1;
4291 SmallVector<unsigned, 4> Indices;
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004292 bool AteExtraComma;
Chris Lattnerdf986172009-01-02 07:01:27 +00004293 if (ParseTypeAndValue(Val0, Loc0, PFS) ||
4294 ParseToken(lltok::comma, "expected comma after insertvalue operand") ||
4295 ParseTypeAndValue(Val1, Loc1, PFS) ||
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004296 ParseIndexList(Indices, AteExtraComma))
Chris Lattnerdf986172009-01-02 07:01:27 +00004297 return true;
Michael Ilseman407a6162012-11-15 22:34:00 +00004298
Chris Lattnerfdfeb692010-02-12 20:49:41 +00004299 if (!Val0->getType()->isAggregateType())
4300 return Error(Loc0, "insertvalue operand must be aggregate type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00004301
Jay Foadfc6d3a42011-07-13 10:26:04 +00004302 if (!ExtractValueInst::getIndexedType(Val0->getType(), Indices))
Chris Lattnerdf986172009-01-02 07:01:27 +00004303 return Error(Loc0, "invalid indices for insertvalue");
Jay Foadfc6d3a42011-07-13 10:26:04 +00004304 Inst = InsertValueInst::Create(Val0, Val1, Indices);
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004305 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerdf986172009-01-02 07:01:27 +00004306}
Nick Lewycky21cc4462009-04-04 07:22:01 +00004307
4308//===----------------------------------------------------------------------===//
4309// Embedded metadata.
4310//===----------------------------------------------------------------------===//
4311
4312/// ParseMDNodeVector
Nick Lewyckycb337992009-05-10 20:57:05 +00004313/// ::= Element (',' Element)*
4314/// Element
4315/// ::= 'null' | TypeAndValue
Victor Hernandezbf170d42010-01-05 22:22:14 +00004316bool LLParser::ParseMDNodeVector(SmallVectorImpl<Value*> &Elts,
Victor Hernandez24e64df2010-01-10 07:14:18 +00004317 PerFunctionState *PFS) {
Dan Gohmanac809752010-07-13 19:33:27 +00004318 // Check for an empty list.
4319 if (Lex.getKind() == lltok::rbrace)
4320 return false;
4321
Nick Lewycky21cc4462009-04-04 07:22:01 +00004322 do {
Chris Lattnera7352392009-12-30 04:42:57 +00004323 // Null is a special case since it is typeless.
4324 if (EatIfPresent(lltok::kw_null)) {
4325 Elts.push_back(0);
4326 continue;
Nick Lewyckycb337992009-05-10 20:57:05 +00004327 }
Michael Ilseman407a6162012-11-15 22:34:00 +00004328
Chris Lattnera7352392009-12-30 04:42:57 +00004329 Value *V = 0;
Chris Lattner1afcace2011-07-09 17:41:24 +00004330 if (ParseTypeAndValue(V, PFS)) return true;
Nick Lewyckycb337992009-05-10 20:57:05 +00004331 Elts.push_back(V);
Nick Lewycky21cc4462009-04-04 07:22:01 +00004332 } while (EatIfPresent(lltok::comma));
4333
4334 return false;
4335}