blob: 079a532da63b0cc9db85607b215586b3a3bdf8d7 [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"
Manman Ren804f0342013-09-28 00:22:27 +000022#include "llvm/IR/LLVMContext.h"
Chandler Carruth0b8c9a82013-01-02 11:36:10 +000023#include "llvm/IR/Module.h"
24#include "llvm/IR/Operator.h"
25#include "llvm/IR/ValueSymbolTable.h"
Torok Edwinc25e7582009-07-11 20:10:48 +000026#include "llvm/Support/ErrorHandling.h"
Chris Lattnerdf986172009-01-02 07:01:27 +000027#include "llvm/Support/raw_ostream.h"
28using namespace llvm;
29
Chris Lattnerdb125cf2011-07-18 04:54:35 +000030static std::string getTypeString(Type *T) {
Chris Lattner0cd0d882011-06-18 21:18:23 +000031 std::string Result;
32 raw_string_ostream Tmp(Result);
33 Tmp << *T;
34 return Tmp.str();
35}
36
Chris Lattner3ed88ef2009-01-02 08:05:26 +000037/// Run: module ::= toplevelentity*
Chris Lattnerad7d1e22009-01-04 20:44:11 +000038bool LLParser::Run() {
Chris Lattner3ed88ef2009-01-02 08:05:26 +000039 // Prime the lexer.
40 Lex.Lex();
41
Chris Lattnerad7d1e22009-01-04 20:44:11 +000042 return ParseTopLevelEntities() ||
43 ValidateEndOfModule();
Chris Lattnerdf986172009-01-02 07:01:27 +000044}
45
46/// ValidateEndOfModule - Do final validity and sanity checks at the end of the
47/// module.
48bool LLParser::ValidateEndOfModule() {
Chris Lattner449c3102010-04-01 05:14:45 +000049 // Handle any instruction metadata forward references.
50 if (!ForwardRefInstMetadata.empty()) {
51 for (DenseMap<Instruction*, std::vector<MDRef> >::iterator
52 I = ForwardRefInstMetadata.begin(), E = ForwardRefInstMetadata.end();
53 I != E; ++I) {
54 Instruction *Inst = I->first;
55 const std::vector<MDRef> &MDList = I->second;
Michael Ilseman407a6162012-11-15 22:34:00 +000056
Chris Lattner449c3102010-04-01 05:14:45 +000057 for (unsigned i = 0, e = MDList.size(); i != e; ++i) {
58 unsigned SlotNo = MDList[i].MDSlot;
Michael Ilseman407a6162012-11-15 22:34:00 +000059
Chris Lattner449c3102010-04-01 05:14:45 +000060 if (SlotNo >= NumberedMetadata.size() || NumberedMetadata[SlotNo] == 0)
61 return Error(MDList[i].Loc, "use of undefined metadata '!" +
Benjamin Kramerd1e17032010-09-27 17:42:11 +000062 Twine(SlotNo) + "'");
Chris Lattner449c3102010-04-01 05:14:45 +000063 Inst->setMetadata(MDList[i].MDKind, NumberedMetadata[SlotNo]);
64 }
65 }
66 ForwardRefInstMetadata.clear();
67 }
Michael Ilseman407a6162012-11-15 22:34:00 +000068
Manman Ren804f0342013-09-28 00:22:27 +000069 for (unsigned I = 0, E = InstsWithTBAATag.size(); I < E; I++)
70 UpgradeInstWithTBAATag(InstsWithTBAATag[I]);
71
Bill Wendlingbaad55c2013-02-08 06:32:06 +000072 // Handle any function attribute group forward references.
73 for (std::map<Value*, std::vector<unsigned> >::iterator
74 I = ForwardRefAttrGroups.begin(), E = ForwardRefAttrGroups.end();
75 I != E; ++I) {
76 Value *V = I->first;
77 std::vector<unsigned> &Vec = I->second;
78 AttrBuilder B;
79
80 for (std::vector<unsigned>::iterator VI = Vec.begin(), VE = Vec.end();
81 VI != VE; ++VI)
82 B.merge(NumberedAttrBuilders[*VI]);
83
84 if (Function *Fn = dyn_cast<Function>(V)) {
85 AttributeSet AS = Fn->getAttributes();
86 AttrBuilder FnAttrs(AS.getFnAttributes(), AttributeSet::FunctionIndex);
87 AS = AS.removeAttributes(Context, AttributeSet::FunctionIndex,
88 AS.getFnAttributes());
89
90 FnAttrs.merge(B);
91
92 // If the alignment was parsed as an attribute, move to the alignment
93 // field.
94 if (FnAttrs.hasAlignmentAttr()) {
95 Fn->setAlignment(FnAttrs.getAlignment());
96 FnAttrs.removeAttribute(Attribute::Alignment);
97 }
98
99 AS = AS.addAttributes(Context, AttributeSet::FunctionIndex,
100 AttributeSet::get(Context,
101 AttributeSet::FunctionIndex,
102 FnAttrs));
103 Fn->setAttributes(AS);
104 } else if (CallInst *CI = dyn_cast<CallInst>(V)) {
105 AttributeSet AS = CI->getAttributes();
106 AttrBuilder FnAttrs(AS.getFnAttributes(), AttributeSet::FunctionIndex);
107 AS = AS.removeAttributes(Context, AttributeSet::FunctionIndex,
108 AS.getFnAttributes());
Bill Wendlingf5467622013-02-12 10:13:06 +0000109 FnAttrs.merge(B);
Bill Wendlingbaad55c2013-02-08 06:32:06 +0000110 AS = AS.addAttributes(Context, AttributeSet::FunctionIndex,
111 AttributeSet::get(Context,
112 AttributeSet::FunctionIndex,
113 FnAttrs));
114 CI->setAttributes(AS);
115 } else if (InvokeInst *II = dyn_cast<InvokeInst>(V)) {
116 AttributeSet AS = II->getAttributes();
117 AttrBuilder FnAttrs(AS.getFnAttributes(), AttributeSet::FunctionIndex);
118 AS = AS.removeAttributes(Context, AttributeSet::FunctionIndex,
119 AS.getFnAttributes());
Bill Wendlingf5467622013-02-12 10:13:06 +0000120 FnAttrs.merge(B);
Bill Wendlingbaad55c2013-02-08 06:32:06 +0000121 AS = AS.addAttributes(Context, AttributeSet::FunctionIndex,
122 AttributeSet::get(Context,
123 AttributeSet::FunctionIndex,
124 FnAttrs));
125 II->setAttributes(AS);
126 } else {
127 llvm_unreachable("invalid object with forward attribute group reference");
128 }
129 }
Michael Ilseman407a6162012-11-15 22:34:00 +0000130
Chris Lattner09d9ef42009-10-28 03:39:23 +0000131 // If there are entries in ForwardRefBlockAddresses at this point, they are
132 // references after the function was defined. Resolve those now.
133 while (!ForwardRefBlockAddresses.empty()) {
134 // Okay, we are referencing an already-parsed function, resolve them now.
135 Function *TheFn = 0;
136 const ValID &Fn = ForwardRefBlockAddresses.begin()->first;
137 if (Fn.Kind == ValID::t_GlobalName)
138 TheFn = M->getFunction(Fn.StrVal);
139 else if (Fn.UIntVal < NumberedVals.size())
140 TheFn = dyn_cast<Function>(NumberedVals[Fn.UIntVal]);
Michael Ilseman407a6162012-11-15 22:34:00 +0000141
Chris Lattner09d9ef42009-10-28 03:39:23 +0000142 if (TheFn == 0)
143 return Error(Fn.Loc, "unknown function referenced by blockaddress");
Michael Ilseman407a6162012-11-15 22:34:00 +0000144
Chris Lattner09d9ef42009-10-28 03:39:23 +0000145 // Resolve all these references.
Michael Ilseman407a6162012-11-15 22:34:00 +0000146 if (ResolveForwardRefBlockAddresses(TheFn,
Chris Lattner09d9ef42009-10-28 03:39:23 +0000147 ForwardRefBlockAddresses.begin()->second,
148 0))
149 return true;
Michael Ilseman407a6162012-11-15 22:34:00 +0000150
Chris Lattner09d9ef42009-10-28 03:39:23 +0000151 ForwardRefBlockAddresses.erase(ForwardRefBlockAddresses.begin());
152 }
Michael Ilseman407a6162012-11-15 22:34:00 +0000153
Chris Lattner1afcace2011-07-09 17:41:24 +0000154 for (unsigned i = 0, e = NumberedTypes.size(); i != e; ++i)
155 if (NumberedTypes[i].second.isValid())
156 return Error(NumberedTypes[i].second,
157 "use of undefined type '%" + Twine(i) + "'");
158
159 for (StringMap<std::pair<Type*, LocTy> >::iterator I =
160 NamedTypes.begin(), E = NamedTypes.end(); I != E; ++I)
161 if (I->second.second.isValid())
162 return Error(I->second.second,
163 "use of undefined type named '" + I->getKey() + "'");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000164
Chris Lattnerdf986172009-01-02 07:01:27 +0000165 if (!ForwardRefVals.empty())
166 return Error(ForwardRefVals.begin()->second.second,
167 "use of undefined value '@" + ForwardRefVals.begin()->first +
168 "'");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000169
Chris Lattnerdf986172009-01-02 07:01:27 +0000170 if (!ForwardRefValIDs.empty())
171 return Error(ForwardRefValIDs.begin()->second.second,
172 "use of undefined value '@" +
Benjamin Kramerd1e17032010-09-27 17:42:11 +0000173 Twine(ForwardRefValIDs.begin()->first) + "'");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000174
Devang Patel1c7eea62009-07-08 19:23:54 +0000175 if (!ForwardRefMDNodes.empty())
176 return Error(ForwardRefMDNodes.begin()->second.second,
177 "use of undefined metadata '!" +
Benjamin Kramerd1e17032010-09-27 17:42:11 +0000178 Twine(ForwardRefMDNodes.begin()->first) + "'");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000179
Devang Patel1c7eea62009-07-08 19:23:54 +0000180
Chris Lattnerdf986172009-01-02 07:01:27 +0000181 // Look for intrinsic functions and CallInst that need to be upgraded
182 for (Module::iterator FI = M->begin(), FE = M->end(); FI != FE; )
183 UpgradeCallsToIntrinsic(FI++); // must be post-increment, as we remove
Daniel Dunbara279bc32009-09-20 02:20:51 +0000184
Chris Lattnerdf986172009-01-02 07:01:27 +0000185 return false;
186}
187
Michael Ilseman407a6162012-11-15 22:34:00 +0000188bool LLParser::ResolveForwardRefBlockAddresses(Function *TheFn,
Chris Lattner09d9ef42009-10-28 03:39:23 +0000189 std::vector<std::pair<ValID, GlobalValue*> > &Refs,
190 PerFunctionState *PFS) {
191 // Loop over all the references, resolving them.
192 for (unsigned i = 0, e = Refs.size(); i != e; ++i) {
193 BasicBlock *Res;
Chris Lattnercdfc9402009-11-01 01:27:45 +0000194 if (PFS) {
Chris Lattner09d9ef42009-10-28 03:39:23 +0000195 if (Refs[i].first.Kind == ValID::t_LocalName)
196 Res = PFS->GetBB(Refs[i].first.StrVal, Refs[i].first.Loc);
Chris Lattnercdfc9402009-11-01 01:27:45 +0000197 else
Chris Lattner09d9ef42009-10-28 03:39:23 +0000198 Res = PFS->GetBB(Refs[i].first.UIntVal, Refs[i].first.Loc);
199 } else if (Refs[i].first.Kind == ValID::t_LocalID) {
200 return Error(Refs[i].first.Loc,
Chris Lattneree7644d2009-11-02 18:28:45 +0000201 "cannot take address of numeric label after the function is defined");
Chris Lattner09d9ef42009-10-28 03:39:23 +0000202 } else {
203 Res = dyn_cast_or_null<BasicBlock>(
204 TheFn->getValueSymbolTable().lookup(Refs[i].first.StrVal));
205 }
Michael Ilseman407a6162012-11-15 22:34:00 +0000206
Chris Lattnercdfc9402009-11-01 01:27:45 +0000207 if (Res == 0)
Chris Lattner09d9ef42009-10-28 03:39:23 +0000208 return Error(Refs[i].first.Loc,
209 "referenced value is not a basic block");
Michael Ilseman407a6162012-11-15 22:34:00 +0000210
Chris Lattner09d9ef42009-10-28 03:39:23 +0000211 // Get the BlockAddress for this and update references to use it.
212 BlockAddress *BA = BlockAddress::get(TheFn, Res);
213 Refs[i].second->replaceAllUsesWith(BA);
214 Refs[i].second->eraseFromParent();
215 }
216 return false;
217}
218
219
Chris Lattnerdf986172009-01-02 07:01:27 +0000220//===----------------------------------------------------------------------===//
221// Top-Level Entities
222//===----------------------------------------------------------------------===//
223
224bool LLParser::ParseTopLevelEntities() {
Chris Lattnerdf986172009-01-02 07:01:27 +0000225 while (1) {
226 switch (Lex.getKind()) {
227 default: return TokError("expected top-level entity");
228 case lltok::Eof: return false;
Chris Lattnerdf986172009-01-02 07:01:27 +0000229 case lltok::kw_declare: if (ParseDeclare()) return true; break;
230 case lltok::kw_define: if (ParseDefine()) return true; break;
231 case lltok::kw_module: if (ParseModuleAsm()) return true; break;
232 case lltok::kw_target: if (ParseTargetDefinition()) return true; break;
Bill Wendling3defc0b2012-11-28 08:41:48 +0000233 case lltok::kw_deplibs: if (ParseDepLibs()) return true; break;
Dan Gohman3845e502009-08-12 23:32:33 +0000234 case lltok::LocalVarID: if (ParseUnnamedType()) return true; break;
Chris Lattnerdf986172009-01-02 07:01:27 +0000235 case lltok::LocalVar: if (ParseNamedType()) return true; break;
Dan Gohman3845e502009-08-12 23:32:33 +0000236 case lltok::GlobalID: if (ParseUnnamedGlobal()) return true; break;
Chris Lattnerdf986172009-01-02 07:01:27 +0000237 case lltok::GlobalVar: if (ParseNamedGlobal()) return true; break;
Chris Lattnere434d272009-12-30 04:56:59 +0000238 case lltok::exclaim: if (ParseStandaloneMetadata()) return true; break;
Bill Wendling95ce4c22013-02-06 06:52:58 +0000239 case lltok::MetadataVar:if (ParseNamedMetadata()) return true; break;
Chris Lattnerdf986172009-01-02 07:01:27 +0000240
241 // The Global variable production with no name can have many different
242 // optional leading prefixes, the production is:
243 // GlobalVar ::= OptionalLinkage OptionalVisibility OptionalThreadLocal
Rafael Espindolabea46262011-01-08 16:42:36 +0000244 // OptionalAddrSpace OptionalUnNammedAddr
245 // ('constant'|'global') ...
Bill Wendling5e721d72010-07-01 21:55:59 +0000246 case lltok::kw_private: // OptionalLinkage
247 case lltok::kw_linker_private: // OptionalLinkage
248 case lltok::kw_linker_private_weak: // OptionalLinkage
249 case lltok::kw_internal: // OptionalLinkage
250 case lltok::kw_weak: // OptionalLinkage
251 case lltok::kw_weak_odr: // OptionalLinkage
252 case lltok::kw_linkonce: // OptionalLinkage
253 case lltok::kw_linkonce_odr: // OptionalLinkage
254 case lltok::kw_appending: // OptionalLinkage
255 case lltok::kw_dllexport: // OptionalLinkage
256 case lltok::kw_common: // OptionalLinkage
257 case lltok::kw_dllimport: // OptionalLinkage
258 case lltok::kw_extern_weak: // OptionalLinkage
259 case lltok::kw_external: { // OptionalLinkage
Chris Lattnerdf986172009-01-02 07:01:27 +0000260 unsigned Linkage, Visibility;
261 if (ParseOptionalLinkage(Linkage) ||
262 ParseOptionalVisibility(Visibility) ||
Chris Lattnereeb4a842009-07-02 23:08:13 +0000263 ParseGlobal("", SMLoc(), Linkage, true, Visibility))
Chris Lattnerdf986172009-01-02 07:01:27 +0000264 return true;
265 break;
266 }
267 case lltok::kw_default: // OptionalVisibility
268 case lltok::kw_hidden: // OptionalVisibility
269 case lltok::kw_protected: { // OptionalVisibility
270 unsigned Visibility;
271 if (ParseOptionalVisibility(Visibility) ||
Chris Lattnereeb4a842009-07-02 23:08:13 +0000272 ParseGlobal("", SMLoc(), 0, false, Visibility))
Chris Lattnerdf986172009-01-02 07:01:27 +0000273 return true;
274 break;
275 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000276
Chris Lattnerdf986172009-01-02 07:01:27 +0000277 case lltok::kw_thread_local: // OptionalThreadLocal
278 case lltok::kw_addrspace: // OptionalAddrSpace
279 case lltok::kw_constant: // GlobalType
280 case lltok::kw_global: // GlobalType
Chris Lattnereeb4a842009-07-02 23:08:13 +0000281 if (ParseGlobal("", SMLoc(), 0, false, 0)) return true;
Chris Lattnerdf986172009-01-02 07:01:27 +0000282 break;
Bill Wendling0b778662013-02-09 15:48:49 +0000283
284 case lltok::kw_attributes: if (ParseUnnamedAttrGrp()) return true; break;
Chris Lattnerdf986172009-01-02 07:01:27 +0000285 }
286 }
287}
288
289
290/// toplevelentity
291/// ::= 'module' 'asm' STRINGCONSTANT
292bool LLParser::ParseModuleAsm() {
293 assert(Lex.getKind() == lltok::kw_module);
294 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +0000295
296 std::string AsmStr;
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000297 if (ParseToken(lltok::kw_asm, "expected 'module asm'") ||
298 ParseStringConstant(AsmStr)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000299
Rafael Espindola38c4e532011-03-02 04:14:42 +0000300 M->appendModuleInlineAsm(AsmStr);
Chris Lattnerdf986172009-01-02 07:01:27 +0000301 return false;
302}
303
304/// toplevelentity
305/// ::= 'target' 'triple' '=' STRINGCONSTANT
306/// ::= 'target' 'datalayout' '=' STRINGCONSTANT
307bool LLParser::ParseTargetDefinition() {
308 assert(Lex.getKind() == lltok::kw_target);
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000309 std::string Str;
Chris Lattnerdf986172009-01-02 07:01:27 +0000310 switch (Lex.Lex()) {
311 default: return TokError("unknown target property");
312 case lltok::kw_triple:
313 Lex.Lex();
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000314 if (ParseToken(lltok::equal, "expected '=' after target triple") ||
315 ParseStringConstant(Str))
Chris Lattnerdf986172009-01-02 07:01:27 +0000316 return true;
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000317 M->setTargetTriple(Str);
Chris Lattnerdf986172009-01-02 07:01:27 +0000318 return false;
319 case lltok::kw_datalayout:
320 Lex.Lex();
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000321 if (ParseToken(lltok::equal, "expected '=' after target datalayout") ||
322 ParseStringConstant(Str))
Chris Lattnerdf986172009-01-02 07:01:27 +0000323 return true;
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000324 M->setDataLayout(Str);
Chris Lattnerdf986172009-01-02 07:01:27 +0000325 return false;
326 }
327}
328
Bill Wendling3defc0b2012-11-28 08:41:48 +0000329/// toplevelentity
330/// ::= 'deplibs' '=' '[' ']'
331/// ::= 'deplibs' '=' '[' STRINGCONSTANT (',' STRINGCONSTANT)* ']'
332/// FIXME: Remove in 4.0. Currently parse, but ignore.
333bool LLParser::ParseDepLibs() {
334 assert(Lex.getKind() == lltok::kw_deplibs);
335 Lex.Lex();
336 if (ParseToken(lltok::equal, "expected '=' after deplibs") ||
337 ParseToken(lltok::lsquare, "expected '=' after deplibs"))
338 return true;
339
340 if (EatIfPresent(lltok::rsquare))
341 return false;
342
343 do {
344 std::string Str;
345 if (ParseStringConstant(Str)) return true;
346 } while (EatIfPresent(lltok::comma));
347
348 return ParseToken(lltok::rsquare, "expected ']' at end of list");
349}
350
Dan Gohman3845e502009-08-12 23:32:33 +0000351/// ParseUnnamedType:
Dan Gohman3845e502009-08-12 23:32:33 +0000352/// ::= LocalVarID '=' 'type' type
Chris Lattnerdf986172009-01-02 07:01:27 +0000353bool LLParser::ParseUnnamedType() {
Chris Lattneredcaca82011-06-18 23:51:31 +0000354 LocTy TypeLoc = Lex.getLoc();
Chris Lattner1afcace2011-07-09 17:41:24 +0000355 unsigned TypeID = Lex.getUIntVal();
Chris Lattnera53616d2011-06-19 00:03:46 +0000356 Lex.Lex(); // eat LocalVarID;
357
358 if (ParseToken(lltok::equal, "expected '=' after name") ||
359 ParseToken(lltok::kw_type, "expected 'type' after '='"))
360 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +0000361
Chris Lattner1afcace2011-07-09 17:41:24 +0000362 if (TypeID >= NumberedTypes.size())
363 NumberedTypes.resize(TypeID+1);
Michael Ilseman407a6162012-11-15 22:34:00 +0000364
Chris Lattner1afcace2011-07-09 17:41:24 +0000365 Type *Result = 0;
366 if (ParseStructDefinition(TypeLoc, "",
367 NumberedTypes[TypeID], Result)) return true;
Michael Ilseman407a6162012-11-15 22:34:00 +0000368
Chris Lattner1afcace2011-07-09 17:41:24 +0000369 if (!isa<StructType>(Result)) {
370 std::pair<Type*, LocTy> &Entry = NumberedTypes[TypeID];
371 if (Entry.first)
372 return Error(TypeLoc, "non-struct types may not be recursive");
373 Entry.first = Result;
374 Entry.second = SMLoc();
Chris Lattnerdf986172009-01-02 07:01:27 +0000375 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000376
Chris Lattnerdf986172009-01-02 07:01:27 +0000377 return false;
378}
379
Chris Lattner1afcace2011-07-09 17:41:24 +0000380
Chris Lattnerdf986172009-01-02 07:01:27 +0000381/// toplevelentity
382/// ::= LocalVar '=' 'type' type
383bool LLParser::ParseNamedType() {
384 std::string Name = Lex.getStrVal();
385 LocTy NameLoc = Lex.getLoc();
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000386 Lex.Lex(); // eat LocalVar.
Daniel Dunbara279bc32009-09-20 02:20:51 +0000387
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000388 if (ParseToken(lltok::equal, "expected '=' after name") ||
Chris Lattner1afcace2011-07-09 17:41:24 +0000389 ParseToken(lltok::kw_type, "expected 'type' after name"))
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000390 return true;
Michael Ilseman407a6162012-11-15 22:34:00 +0000391
Chris Lattner1afcace2011-07-09 17:41:24 +0000392 Type *Result = 0;
393 if (ParseStructDefinition(NameLoc, Name,
394 NamedTypes[Name], Result)) return true;
Michael Ilseman407a6162012-11-15 22:34:00 +0000395
Chris Lattner1afcace2011-07-09 17:41:24 +0000396 if (!isa<StructType>(Result)) {
397 std::pair<Type*, LocTy> &Entry = NamedTypes[Name];
398 if (Entry.first)
399 return Error(NameLoc, "non-struct types may not be recursive");
400 Entry.first = Result;
401 Entry.second = SMLoc();
Chris Lattnerdf986172009-01-02 07:01:27 +0000402 }
Michael Ilseman407a6162012-11-15 22:34:00 +0000403
Chris Lattner1afcace2011-07-09 17:41:24 +0000404 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +0000405}
406
407
408/// toplevelentity
409/// ::= 'declare' FunctionHeader
410bool LLParser::ParseDeclare() {
411 assert(Lex.getKind() == lltok::kw_declare);
412 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +0000413
Chris Lattnerdf986172009-01-02 07:01:27 +0000414 Function *F;
415 return ParseFunctionHeader(F, false);
416}
417
418/// toplevelentity
419/// ::= 'define' FunctionHeader '{' ...
420bool LLParser::ParseDefine() {
421 assert(Lex.getKind() == lltok::kw_define);
422 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +0000423
Chris Lattnerdf986172009-01-02 07:01:27 +0000424 Function *F;
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000425 return ParseFunctionHeader(F, true) ||
426 ParseFunctionBody(*F);
Chris Lattnerdf986172009-01-02 07:01:27 +0000427}
428
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000429/// ParseGlobalType
430/// ::= 'constant'
431/// ::= 'global'
Chris Lattnerdf986172009-01-02 07:01:27 +0000432bool LLParser::ParseGlobalType(bool &IsConstant) {
433 if (Lex.getKind() == lltok::kw_constant)
434 IsConstant = true;
435 else if (Lex.getKind() == lltok::kw_global)
436 IsConstant = false;
Duncan Sands35b51072009-02-10 16:24:55 +0000437 else {
438 IsConstant = false;
Chris Lattnerdf986172009-01-02 07:01:27 +0000439 return TokError("expected 'global' or 'constant'");
Duncan Sands35b51072009-02-10 16:24:55 +0000440 }
Chris Lattnerdf986172009-01-02 07:01:27 +0000441 Lex.Lex();
442 return false;
443}
444
Dan Gohman3845e502009-08-12 23:32:33 +0000445/// ParseUnnamedGlobal:
446/// OptionalVisibility ALIAS ...
447/// OptionalLinkage OptionalVisibility ... -> global variable
448/// GlobalID '=' OptionalVisibility ALIAS ...
449/// GlobalID '=' OptionalLinkage OptionalVisibility ... -> global variable
450bool LLParser::ParseUnnamedGlobal() {
451 unsigned VarID = NumberedVals.size();
452 std::string Name;
453 LocTy NameLoc = Lex.getLoc();
454
455 // Handle the GlobalID form.
456 if (Lex.getKind() == lltok::GlobalID) {
457 if (Lex.getUIntVal() != VarID)
458 return Error(Lex.getLoc(), "variable expected to be numbered '%" +
Benjamin Kramerd1e17032010-09-27 17:42:11 +0000459 Twine(VarID) + "'");
Dan Gohman3845e502009-08-12 23:32:33 +0000460 Lex.Lex(); // eat GlobalID;
461
462 if (ParseToken(lltok::equal, "expected '=' after name"))
463 return true;
464 }
465
466 bool HasLinkage;
467 unsigned Linkage, Visibility;
468 if (ParseOptionalLinkage(Linkage, HasLinkage) ||
469 ParseOptionalVisibility(Visibility))
470 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000471
Dan Gohman3845e502009-08-12 23:32:33 +0000472 if (HasLinkage || Lex.getKind() != lltok::kw_alias)
473 return ParseGlobal(Name, NameLoc, Linkage, HasLinkage, Visibility);
474 return ParseAlias(Name, NameLoc, Visibility);
475}
476
Chris Lattnerdf986172009-01-02 07:01:27 +0000477/// ParseNamedGlobal:
478/// GlobalVar '=' OptionalVisibility ALIAS ...
479/// GlobalVar '=' OptionalLinkage OptionalVisibility ... -> global variable
480bool LLParser::ParseNamedGlobal() {
481 assert(Lex.getKind() == lltok::GlobalVar);
482 LocTy NameLoc = Lex.getLoc();
483 std::string Name = Lex.getStrVal();
484 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +0000485
Chris Lattnerdf986172009-01-02 07:01:27 +0000486 bool HasLinkage;
487 unsigned Linkage, Visibility;
488 if (ParseToken(lltok::equal, "expected '=' in global variable") ||
489 ParseOptionalLinkage(Linkage, HasLinkage) ||
490 ParseOptionalVisibility(Visibility))
491 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000492
Chris Lattnerdf986172009-01-02 07:01:27 +0000493 if (HasLinkage || Lex.getKind() != lltok::kw_alias)
494 return ParseGlobal(Name, NameLoc, Linkage, HasLinkage, Visibility);
495 return ParseAlias(Name, NameLoc, Visibility);
496}
497
Devang Patel256be962009-07-20 19:00:08 +0000498// MDString:
499// ::= '!' STRINGCONSTANT
Chris Lattner442ffa12009-12-29 21:53:55 +0000500bool LLParser::ParseMDString(MDString *&Result) {
Devang Patel256be962009-07-20 19:00:08 +0000501 std::string Str;
502 if (ParseStringConstant(Str)) return true;
Chris Lattner442ffa12009-12-29 21:53:55 +0000503 Result = MDString::get(Context, Str);
Devang Patel256be962009-07-20 19:00:08 +0000504 return false;
505}
506
507// MDNode:
508// ::= '!' MDNodeNumber
Chris Lattner449c3102010-04-01 05:14:45 +0000509//
510/// This version of ParseMDNodeID returns the slot number and null in the case
511/// of a forward reference.
512bool LLParser::ParseMDNodeID(MDNode *&Result, unsigned &SlotNo) {
513 // !{ ..., !42, ... }
514 if (ParseUInt32(SlotNo)) return true;
515
516 // Check existing MDNode.
517 if (SlotNo < NumberedMetadata.size() && NumberedMetadata[SlotNo] != 0)
518 Result = NumberedMetadata[SlotNo];
519 else
520 Result = 0;
521 return false;
522}
523
Chris Lattner4a72efc2009-12-30 04:15:23 +0000524bool LLParser::ParseMDNodeID(MDNode *&Result) {
Devang Patel256be962009-07-20 19:00:08 +0000525 // !{ ..., !42, ... }
526 unsigned MID = 0;
Chris Lattner449c3102010-04-01 05:14:45 +0000527 if (ParseMDNodeID(Result, MID)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000528
Chris Lattner449c3102010-04-01 05:14:45 +0000529 // If not a forward reference, just return it now.
530 if (Result) return false;
Devang Patel256be962009-07-20 19:00:08 +0000531
Chris Lattner449c3102010-04-01 05:14:45 +0000532 // Otherwise, create MDNode forward reference.
Dmitri Gribenko5c332db2013-05-05 00:40:33 +0000533 MDNode *FwdNode = MDNode::getTemporary(Context, None);
Devang Patel256be962009-07-20 19:00:08 +0000534 ForwardRefMDNodes[MID] = std::make_pair(FwdNode, Lex.getLoc());
Michael Ilseman407a6162012-11-15 22:34:00 +0000535
Chris Lattner0834e6a2009-12-30 04:51:58 +0000536 if (NumberedMetadata.size() <= MID)
537 NumberedMetadata.resize(MID+1);
538 NumberedMetadata[MID] = FwdNode;
Chris Lattner442ffa12009-12-29 21:53:55 +0000539 Result = FwdNode;
Devang Patel256be962009-07-20 19:00:08 +0000540 return false;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000541}
Devang Patel256be962009-07-20 19:00:08 +0000542
Chris Lattner84d03b12009-12-29 22:35:39 +0000543/// ParseNamedMetadata:
Devang Pateleff2ab62009-07-29 00:34:02 +0000544/// !foo = !{ !1, !2 }
545bool LLParser::ParseNamedMetadata() {
Chris Lattner1d928312009-12-30 05:02:06 +0000546 assert(Lex.getKind() == lltok::MetadataVar);
Devang Pateleff2ab62009-07-29 00:34:02 +0000547 std::string Name = Lex.getStrVal();
Chris Lattner1d928312009-12-30 05:02:06 +0000548 Lex.Lex();
Devang Pateleff2ab62009-07-29 00:34:02 +0000549
Chris Lattner84d03b12009-12-29 22:35:39 +0000550 if (ParseToken(lltok::equal, "expected '=' here") ||
Chris Lattnere434d272009-12-30 04:56:59 +0000551 ParseToken(lltok::exclaim, "Expected '!' here") ||
Chris Lattner84d03b12009-12-29 22:35:39 +0000552 ParseToken(lltok::lbrace, "Expected '{' here"))
Devang Pateleff2ab62009-07-29 00:34:02 +0000553 return true;
554
Dan Gohman17aa92c2010-07-21 23:38:33 +0000555 NamedMDNode *NMD = M->getOrInsertNamedMetadata(Name);
Dan Gohman9dc8ae12010-07-13 19:42:44 +0000556 if (Lex.getKind() != lltok::rbrace)
557 do {
Dan Gohman9dc8ae12010-07-13 19:42:44 +0000558 if (ParseToken(lltok::exclaim, "Expected '!' here"))
559 return true;
Michael Ilseman407a6162012-11-15 22:34:00 +0000560
Dan Gohman9dc8ae12010-07-13 19:42:44 +0000561 MDNode *N = 0;
562 if (ParseMDNodeID(N)) return true;
Dan Gohman17aa92c2010-07-21 23:38:33 +0000563 NMD->addOperand(N);
Dan Gohman9dc8ae12010-07-13 19:42:44 +0000564 } while (EatIfPresent(lltok::comma));
Devang Pateleff2ab62009-07-29 00:34:02 +0000565
566 if (ParseToken(lltok::rbrace, "expected end of metadata node"))
567 return true;
568
Devang Pateleff2ab62009-07-29 00:34:02 +0000569 return false;
570}
571
Devang Patel923078c2009-07-01 19:21:12 +0000572/// ParseStandaloneMetadata:
Daniel Dunbara279bc32009-09-20 02:20:51 +0000573/// !42 = !{...}
Devang Patel923078c2009-07-01 19:21:12 +0000574bool LLParser::ParseStandaloneMetadata() {
Chris Lattnere434d272009-12-30 04:56:59 +0000575 assert(Lex.getKind() == lltok::exclaim);
Devang Patel923078c2009-07-01 19:21:12 +0000576 Lex.Lex();
577 unsigned MetadataID = 0;
Devang Patel923078c2009-07-01 19:21:12 +0000578
579 LocTy TyLoc;
Chris Lattner1afcace2011-07-09 17:41:24 +0000580 Type *Ty = 0;
Devang Patel104cf9e2009-07-23 01:07:34 +0000581 SmallVector<Value *, 16> Elts;
Chris Lattner3f5132a2009-12-29 22:40:21 +0000582 if (ParseUInt32(MetadataID) ||
583 ParseToken(lltok::equal, "expected '=' here") ||
584 ParseType(Ty, TyLoc) ||
Chris Lattnere434d272009-12-30 04:56:59 +0000585 ParseToken(lltok::exclaim, "Expected '!' here") ||
Chris Lattner3f5132a2009-12-29 22:40:21 +0000586 ParseToken(lltok::lbrace, "Expected '{' here") ||
Victor Hernandez24e64df2010-01-10 07:14:18 +0000587 ParseMDNodeVector(Elts, NULL) ||
Chris Lattner3f5132a2009-12-29 22:40:21 +0000588 ParseToken(lltok::rbrace, "expected end of metadata node"))
Devang Patel104cf9e2009-07-23 01:07:34 +0000589 return true;
590
Jay Foadec9186b2011-04-21 19:59:31 +0000591 MDNode *Init = MDNode::get(Context, Elts);
Michael Ilseman407a6162012-11-15 22:34:00 +0000592
Chris Lattner0834e6a2009-12-30 04:51:58 +0000593 // See if this was forward referenced, if so, handle it.
Chris Lattnere80250e2009-12-29 21:43:58 +0000594 std::map<unsigned, std::pair<TrackingVH<MDNode>, LocTy> >::iterator
Devang Patel1c7eea62009-07-08 19:23:54 +0000595 FI = ForwardRefMDNodes.find(MetadataID);
596 if (FI != ForwardRefMDNodes.end()) {
Dan Gohman489b29b2010-08-20 22:02:26 +0000597 MDNode *Temp = FI->second.first;
598 Temp->replaceAllUsesWith(Init);
599 MDNode::deleteTemporary(Temp);
Devang Patel1c7eea62009-07-08 19:23:54 +0000600 ForwardRefMDNodes.erase(FI);
Michael Ilseman407a6162012-11-15 22:34:00 +0000601
Chris Lattner0834e6a2009-12-30 04:51:58 +0000602 assert(NumberedMetadata[MetadataID] == Init && "Tracking VH didn't work");
603 } else {
604 if (MetadataID >= NumberedMetadata.size())
605 NumberedMetadata.resize(MetadataID+1);
606
607 if (NumberedMetadata[MetadataID] != 0)
608 return TokError("Metadata id is already used");
609 NumberedMetadata[MetadataID] = Init;
Devang Patel1c7eea62009-07-08 19:23:54 +0000610 }
611
Devang Patel923078c2009-07-01 19:21:12 +0000612 return false;
613}
614
Chris Lattnerdf986172009-01-02 07:01:27 +0000615/// ParseAlias:
616/// ::= GlobalVar '=' OptionalVisibility 'alias' OptionalLinkage Aliasee
617/// Aliasee
Chris Lattner040f7582009-04-25 21:26:00 +0000618/// ::= TypeAndValue
619/// ::= 'bitcast' '(' TypeAndValue 'to' Type ')'
Dan Gohmandd8004d2009-07-27 21:53:46 +0000620/// ::= 'getelementptr' 'inbounds'? '(' ... ')'
Chris Lattnerdf986172009-01-02 07:01:27 +0000621///
622/// Everything through visibility has already been parsed.
623///
624bool LLParser::ParseAlias(const std::string &Name, LocTy NameLoc,
625 unsigned Visibility) {
626 assert(Lex.getKind() == lltok::kw_alias);
627 Lex.Lex();
Chris Lattnerdf986172009-01-02 07:01:27 +0000628 LocTy LinkageLoc = Lex.getLoc();
Rafael Espindola2def1792013-10-06 15:10:43 +0000629 unsigned L;
630 if (ParseOptionalLinkage(L))
Chris Lattnerdf986172009-01-02 07:01:27 +0000631 return true;
632
Rafael Espindola2def1792013-10-06 15:10:43 +0000633 GlobalValue::LinkageTypes Linkage = (GlobalValue::LinkageTypes) L;
634
Rafael Espindola1a525e82013-10-09 16:07:32 +0000635 if(!GlobalAlias::isValidLinkage(Linkage))
Chris Lattnerdf986172009-01-02 07:01:27 +0000636 return Error(LinkageLoc, "invalid linkage type for alias");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000637
Chris Lattnerdf986172009-01-02 07:01:27 +0000638 Constant *Aliasee;
639 LocTy AliaseeLoc = Lex.getLoc();
Chris Lattner040f7582009-04-25 21:26:00 +0000640 if (Lex.getKind() != lltok::kw_bitcast &&
641 Lex.getKind() != lltok::kw_getelementptr) {
Chris Lattnerdf986172009-01-02 07:01:27 +0000642 if (ParseGlobalTypeAndValue(Aliasee)) return true;
643 } else {
644 // The bitcast dest type is not present, it is implied by the dest type.
645 ValID ID;
646 if (ParseValID(ID)) return true;
647 if (ID.Kind != ValID::t_Constant)
648 return Error(AliaseeLoc, "invalid aliasee");
649 Aliasee = ID.ConstantVal;
650 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000651
Duncan Sands1df98592010-02-16 11:11:14 +0000652 if (!Aliasee->getType()->isPointerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +0000653 return Error(AliaseeLoc, "alias must have pointer type");
654
655 // Okay, create the alias but do not insert it into the module yet.
656 GlobalAlias* GA = new GlobalAlias(Aliasee->getType(),
657 (GlobalValue::LinkageTypes)Linkage, Name,
658 Aliasee);
659 GA->setVisibility((GlobalValue::VisibilityTypes)Visibility);
Daniel Dunbara279bc32009-09-20 02:20:51 +0000660
Chris Lattnerdf986172009-01-02 07:01:27 +0000661 // See if this value already exists in the symbol table. If so, it is either
662 // a redefinition or a definition of a forward reference.
Chris Lattner1d871c52009-10-25 23:22:50 +0000663 if (GlobalValue *Val = M->getNamedValue(Name)) {
Chris Lattnerdf986172009-01-02 07:01:27 +0000664 // See if this was a redefinition. If so, there is no entry in
665 // ForwardRefVals.
666 std::map<std::string, std::pair<GlobalValue*, LocTy> >::iterator
667 I = ForwardRefVals.find(Name);
668 if (I == ForwardRefVals.end())
669 return Error(NameLoc, "redefinition of global named '@" + Name + "'");
670
671 // Otherwise, this was a definition of forward ref. Verify that types
672 // agree.
673 if (Val->getType() != GA->getType())
674 return Error(NameLoc,
675 "forward reference and definition of alias have different types");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000676
Chris Lattnerdf986172009-01-02 07:01:27 +0000677 // If they agree, just RAUW the old value with the alias and remove the
678 // forward ref info.
679 Val->replaceAllUsesWith(GA);
680 Val->eraseFromParent();
681 ForwardRefVals.erase(I);
682 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000683
Chris Lattnerdf986172009-01-02 07:01:27 +0000684 // Insert into the module, we know its name won't collide now.
685 M->getAliasList().push_back(GA);
Benjamin Krameraf812352010-10-16 11:28:23 +0000686 assert(GA->getName() == Name && "Should not be a name conflict!");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000687
Chris Lattnerdf986172009-01-02 07:01:27 +0000688 return false;
689}
690
691/// ParseGlobal
692/// ::= GlobalVar '=' OptionalLinkage OptionalVisibility OptionalThreadLocal
Michael Gottesmana2de37c2013-02-05 05:57:38 +0000693/// OptionalAddrSpace OptionalUnNammedAddr
694/// OptionalExternallyInitialized GlobalType Type Const
Chris Lattnerdf986172009-01-02 07:01:27 +0000695/// ::= OptionalLinkage OptionalVisibility OptionalThreadLocal
Michael Gottesmana2de37c2013-02-05 05:57:38 +0000696/// OptionalAddrSpace OptionalUnNammedAddr
697/// OptionalExternallyInitialized GlobalType Type Const
Chris Lattnerdf986172009-01-02 07:01:27 +0000698///
699/// Everything through visibility has been parsed already.
700///
701bool LLParser::ParseGlobal(const std::string &Name, LocTy NameLoc,
702 unsigned Linkage, bool HasLinkage,
703 unsigned Visibility) {
704 unsigned AddrSpace;
Shuxin Yang69bd41d2013-10-27 03:08:44 +0000705 bool IsConstant, UnnamedAddr, IsExternallyInitialized;
Hans Wennborgce718ff2012-06-23 11:37:03 +0000706 GlobalVariable::ThreadLocalMode TLM;
Rafael Espindolad72479c2011-01-13 01:30:30 +0000707 LocTy UnnamedAddrLoc;
Michael Gottesmana2de37c2013-02-05 05:57:38 +0000708 LocTy IsExternallyInitializedLoc;
Chris Lattnerdf986172009-01-02 07:01:27 +0000709 LocTy TyLoc;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000710
Chris Lattner1afcace2011-07-09 17:41:24 +0000711 Type *Ty = 0;
Hans Wennborgce718ff2012-06-23 11:37:03 +0000712 if (ParseOptionalThreadLocal(TLM) ||
Chris Lattnerdf986172009-01-02 07:01:27 +0000713 ParseOptionalAddrSpace(AddrSpace) ||
Rafael Espindolad72479c2011-01-13 01:30:30 +0000714 ParseOptionalToken(lltok::kw_unnamed_addr, UnnamedAddr,
715 &UnnamedAddrLoc) ||
Michael Gottesmana2de37c2013-02-05 05:57:38 +0000716 ParseOptionalToken(lltok::kw_externally_initialized,
717 IsExternallyInitialized,
718 &IsExternallyInitializedLoc) ||
Chris Lattnerdf986172009-01-02 07:01:27 +0000719 ParseGlobalType(IsConstant) ||
720 ParseType(Ty, TyLoc))
721 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000722
Chris Lattnerdf986172009-01-02 07:01:27 +0000723 // If the linkage is specified and is external, then no initializer is
724 // present.
725 Constant *Init = 0;
726 if (!HasLinkage || (Linkage != GlobalValue::DLLImportLinkage &&
Duncan Sands5f4ee1f2009-03-11 08:08:06 +0000727 Linkage != GlobalValue::ExternalWeakLinkage &&
Chris Lattnerdf986172009-01-02 07:01:27 +0000728 Linkage != GlobalValue::ExternalLinkage)) {
729 if (ParseGlobalValue(Ty, Init))
730 return true;
731 }
732
Duncan Sands1df98592010-02-16 11:11:14 +0000733 if (Ty->isFunctionTy() || Ty->isLabelTy())
Chris Lattner4a2f1122009-02-08 20:00:15 +0000734 return Error(TyLoc, "invalid type for global variable");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000735
Chris Lattnerdf986172009-01-02 07:01:27 +0000736 GlobalVariable *GV = 0;
737
738 // See if the global was forward referenced, if so, use the global.
Chris Lattner91dad872009-02-02 07:24:28 +0000739 if (!Name.empty()) {
Chris Lattner1d871c52009-10-25 23:22:50 +0000740 if (GlobalValue *GVal = M->getNamedValue(Name)) {
741 if (!ForwardRefVals.erase(Name) || !isa<GlobalValue>(GVal))
742 return Error(NameLoc, "redefinition of global '@" + Name + "'");
743 GV = cast<GlobalVariable>(GVal);
744 }
Chris Lattnerdf986172009-01-02 07:01:27 +0000745 } else {
746 std::map<unsigned, std::pair<GlobalValue*, LocTy> >::iterator
747 I = ForwardRefValIDs.find(NumberedVals.size());
748 if (I != ForwardRefValIDs.end()) {
749 GV = cast<GlobalVariable>(I->second.first);
750 ForwardRefValIDs.erase(I);
751 }
752 }
753
754 if (GV == 0) {
Daniel Dunbara279bc32009-09-20 02:20:51 +0000755 GV = new GlobalVariable(*M, Ty, false, GlobalValue::ExternalLinkage, 0,
Hans Wennborgce718ff2012-06-23 11:37:03 +0000756 Name, 0, GlobalVariable::NotThreadLocal,
757 AddrSpace);
Chris Lattnerdf986172009-01-02 07:01:27 +0000758 } else {
759 if (GV->getType()->getElementType() != Ty)
760 return Error(TyLoc,
761 "forward reference and definition of global have different types");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000762
Chris Lattnerdf986172009-01-02 07:01:27 +0000763 // Move the forward-reference to the correct spot in the module.
764 M->getGlobalList().splice(M->global_end(), M->getGlobalList(), GV);
765 }
766
767 if (Name.empty())
768 NumberedVals.push_back(GV);
Daniel Dunbara279bc32009-09-20 02:20:51 +0000769
Chris Lattnerdf986172009-01-02 07:01:27 +0000770 // Set the parsed properties on the global.
771 if (Init)
772 GV->setInitializer(Init);
773 GV->setConstant(IsConstant);
774 GV->setLinkage((GlobalValue::LinkageTypes)Linkage);
775 GV->setVisibility((GlobalValue::VisibilityTypes)Visibility);
Michael Gottesmana2de37c2013-02-05 05:57:38 +0000776 GV->setExternallyInitialized(IsExternallyInitialized);
Hans Wennborgce718ff2012-06-23 11:37:03 +0000777 GV->setThreadLocalMode(TLM);
Rafael Espindolabea46262011-01-08 16:42:36 +0000778 GV->setUnnamedAddr(UnnamedAddr);
Daniel Dunbara279bc32009-09-20 02:20:51 +0000779
Chris Lattnerdf986172009-01-02 07:01:27 +0000780 // Parse attributes on the global.
781 while (Lex.getKind() == lltok::comma) {
782 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +0000783
Chris Lattnerdf986172009-01-02 07:01:27 +0000784 if (Lex.getKind() == lltok::kw_section) {
785 Lex.Lex();
786 GV->setSection(Lex.getStrVal());
787 if (ParseToken(lltok::StringConstant, "expected global section string"))
788 return true;
789 } else if (Lex.getKind() == lltok::kw_align) {
790 unsigned Alignment;
791 if (ParseOptionalAlignment(Alignment)) return true;
792 GV->setAlignment(Alignment);
793 } else {
794 TokError("unknown global variable property!");
795 }
796 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000797
Chris Lattnerdf986172009-01-02 07:01:27 +0000798 return false;
799}
800
Bill Wendling95ce4c22013-02-06 06:52:58 +0000801/// ParseUnnamedAttrGrp
Bill Wendling0b778662013-02-09 15:48:49 +0000802/// ::= 'attributes' AttrGrpID '=' '{' AttrValPair+ '}'
Bill Wendling95ce4c22013-02-06 06:52:58 +0000803bool LLParser::ParseUnnamedAttrGrp() {
Bill Wendling0b778662013-02-09 15:48:49 +0000804 assert(Lex.getKind() == lltok::kw_attributes);
Bill Wendling95ce4c22013-02-06 06:52:58 +0000805 LocTy AttrGrpLoc = Lex.getLoc();
Bill Wendling0b778662013-02-09 15:48:49 +0000806 Lex.Lex();
807
808 assert(Lex.getKind() == lltok::AttrGrpID);
Bill Wendling95ce4c22013-02-06 06:52:58 +0000809 unsigned VarID = Lex.getUIntVal();
Bill Wendlingbaad55c2013-02-08 06:32:06 +0000810 std::vector<unsigned> unused;
Michael Gottesman2253a2f2013-06-27 00:25:01 +0000811 LocTy BuiltinLoc;
Bill Wendling95ce4c22013-02-06 06:52:58 +0000812 Lex.Lex();
813
814 if (ParseToken(lltok::equal, "expected '=' here") ||
Bill Wendling95ce4c22013-02-06 06:52:58 +0000815 ParseToken(lltok::lbrace, "expected '{' here") ||
Bill Wendling143d4642013-02-22 00:12:35 +0000816 ParseFnAttributeValuePairs(NumberedAttrBuilders[VarID], unused, true,
Michael Gottesman2253a2f2013-06-27 00:25:01 +0000817 BuiltinLoc) ||
Bill Wendling95ce4c22013-02-06 06:52:58 +0000818 ParseToken(lltok::rbrace, "expected end of attribute group"))
819 return true;
820
Bill Wendlingbaad55c2013-02-08 06:32:06 +0000821 if (!NumberedAttrBuilders[VarID].hasAttributes())
Bill Wendling95ce4c22013-02-06 06:52:58 +0000822 return Error(AttrGrpLoc, "attribute group has no attributes");
823
824 return false;
825}
826
Bill Wendlingea007fa2013-02-08 00:52:31 +0000827/// ParseFnAttributeValuePairs
Bill Wendling95ce4c22013-02-06 06:52:58 +0000828/// ::= <attr> | <attr> '=' <value>
Bill Wendlingbaad55c2013-02-08 06:32:06 +0000829bool LLParser::ParseFnAttributeValuePairs(AttrBuilder &B,
830 std::vector<unsigned> &FwdRefAttrGrps,
Michael Gottesman2253a2f2013-06-27 00:25:01 +0000831 bool inAttrGrp, LocTy &BuiltinLoc) {
Bill Wendlingea007fa2013-02-08 00:52:31 +0000832 bool HaveError = false;
833
834 B.clear();
835
Bill Wendling95ce4c22013-02-06 06:52:58 +0000836 while (true) {
837 lltok::Kind Token = Lex.getKind();
Michael Gottesman2253a2f2013-06-27 00:25:01 +0000838 if (Token == lltok::kw_builtin)
839 BuiltinLoc = Lex.getLoc();
Bill Wendling95ce4c22013-02-06 06:52:58 +0000840 switch (Token) {
841 default:
Bill Wendlingea007fa2013-02-08 00:52:31 +0000842 if (!inAttrGrp) return HaveError;
Bill Wendling95ce4c22013-02-06 06:52:58 +0000843 return Error(Lex.getLoc(), "unterminated attribute group");
844 case lltok::rbrace:
845 // Finished.
846 return false;
847
Bill Wendlingbaad55c2013-02-08 06:32:06 +0000848 case lltok::AttrGrpID: {
849 // Allow a function to reference an attribute group:
850 //
851 // define void @foo() #1 { ... }
852 if (inAttrGrp)
853 HaveError |=
854 Error(Lex.getLoc(),
855 "cannot have an attribute group reference in an attribute group");
856
857 unsigned AttrGrpNum = Lex.getUIntVal();
858 if (inAttrGrp) break;
859
860 // Save the reference to the attribute group. We'll fill it in later.
861 FwdRefAttrGrps.push_back(AttrGrpNum);
862 break;
863 }
Bill Wendling95ce4c22013-02-06 06:52:58 +0000864 // Target-dependent attributes:
865 case lltok::StringConstant: {
866 std::string Attr = Lex.getStrVal();
867 Lex.Lex();
868 std::string Val;
869 if (EatIfPresent(lltok::equal) &&
870 ParseStringConstant(Val))
871 return true;
872
873 B.addAttribute(Attr, Val);
Bill Wendling0f742202013-02-10 10:12:50 +0000874 continue;
Bill Wendling95ce4c22013-02-06 06:52:58 +0000875 }
876
877 // Target-independent attributes:
878 case lltok::kw_align: {
Bill Wendlingc0b4b672013-04-18 18:30:16 +0000879 // As a hack, we allow function alignment to be initially parsed as an
880 // attribute on a function declaration/definition or added to an attribute
881 // group and later moved to the alignment field.
Bill Wendling95ce4c22013-02-06 06:52:58 +0000882 unsigned Alignment;
Bill Wendlingea007fa2013-02-08 00:52:31 +0000883 if (inAttrGrp) {
Bill Wendling3f87d232013-02-10 23:15:51 +0000884 Lex.Lex();
Bill Wendlingea007fa2013-02-08 00:52:31 +0000885 if (ParseToken(lltok::equal, "expected '=' here") ||
886 ParseUInt32(Alignment))
887 return true;
888 } else {
889 if (ParseOptionalAlignment(Alignment))
890 return true;
891 }
Bill Wendling95ce4c22013-02-06 06:52:58 +0000892 B.addAlignmentAttr(Alignment);
Bill Wendlingea007fa2013-02-08 00:52:31 +0000893 continue;
Bill Wendling95ce4c22013-02-06 06:52:58 +0000894 }
895 case lltok::kw_alignstack: {
896 unsigned Alignment;
Bill Wendlingea007fa2013-02-08 00:52:31 +0000897 if (inAttrGrp) {
Bill Wendling3f87d232013-02-10 23:15:51 +0000898 Lex.Lex();
Bill Wendlingea007fa2013-02-08 00:52:31 +0000899 if (ParseToken(lltok::equal, "expected '=' here") ||
900 ParseUInt32(Alignment))
901 return true;
902 } else {
903 if (ParseOptionalStackAlignment(Alignment))
904 return true;
905 }
Bill Wendling95ce4c22013-02-06 06:52:58 +0000906 B.addStackAlignmentAttr(Alignment);
Bill Wendlingea007fa2013-02-08 00:52:31 +0000907 continue;
Bill Wendling95ce4c22013-02-06 06:52:58 +0000908 }
Kostya Serebryany8eec41f2013-02-26 06:58:09 +0000909 case lltok::kw_alwaysinline: B.addAttribute(Attribute::AlwaysInline); break;
Michael Gottesman2253a2f2013-06-27 00:25:01 +0000910 case lltok::kw_builtin: B.addAttribute(Attribute::Builtin); break;
Diego Novillo77226a02013-05-24 12:26:52 +0000911 case lltok::kw_cold: B.addAttribute(Attribute::Cold); break;
Kostya Serebryany8eec41f2013-02-26 06:58:09 +0000912 case lltok::kw_inlinehint: B.addAttribute(Attribute::InlineHint); break;
913 case lltok::kw_minsize: B.addAttribute(Attribute::MinSize); break;
914 case lltok::kw_naked: B.addAttribute(Attribute::Naked); break;
915 case lltok::kw_nobuiltin: B.addAttribute(Attribute::NoBuiltin); break;
916 case lltok::kw_noduplicate: B.addAttribute(Attribute::NoDuplicate); break;
917 case lltok::kw_noimplicitfloat: B.addAttribute(Attribute::NoImplicitFloat); break;
918 case lltok::kw_noinline: B.addAttribute(Attribute::NoInline); break;
919 case lltok::kw_nonlazybind: B.addAttribute(Attribute::NonLazyBind); break;
920 case lltok::kw_noredzone: B.addAttribute(Attribute::NoRedZone); break;
921 case lltok::kw_noreturn: B.addAttribute(Attribute::NoReturn); break;
922 case lltok::kw_nounwind: B.addAttribute(Attribute::NoUnwind); break;
Andrea Di Biagio5768bb82013-08-23 11:53:55 +0000923 case lltok::kw_optnone: B.addAttribute(Attribute::OptimizeNone); break;
Kostya Serebryany8eec41f2013-02-26 06:58:09 +0000924 case lltok::kw_optsize: B.addAttribute(Attribute::OptimizeForSize); break;
925 case lltok::kw_readnone: B.addAttribute(Attribute::ReadNone); break;
926 case lltok::kw_readonly: B.addAttribute(Attribute::ReadOnly); break;
927 case lltok::kw_returns_twice: B.addAttribute(Attribute::ReturnsTwice); break;
928 case lltok::kw_ssp: B.addAttribute(Attribute::StackProtect); break;
929 case lltok::kw_sspreq: B.addAttribute(Attribute::StackProtectReq); break;
930 case lltok::kw_sspstrong: B.addAttribute(Attribute::StackProtectStrong); break;
931 case lltok::kw_sanitize_address: B.addAttribute(Attribute::SanitizeAddress); break;
932 case lltok::kw_sanitize_thread: B.addAttribute(Attribute::SanitizeThread); break;
933 case lltok::kw_sanitize_memory: B.addAttribute(Attribute::SanitizeMemory); break;
934 case lltok::kw_uwtable: B.addAttribute(Attribute::UWTable); break;
Bill Wendlingea007fa2013-02-08 00:52:31 +0000935
936 // Error handling.
937 case lltok::kw_inreg:
938 case lltok::kw_signext:
939 case lltok::kw_zeroext:
940 HaveError |=
941 Error(Lex.getLoc(),
942 "invalid use of attribute on a function");
943 break;
944 case lltok::kw_byval:
945 case lltok::kw_nest:
946 case lltok::kw_noalias:
947 case lltok::kw_nocapture:
Stephen Lin456ca042013-04-20 05:14:40 +0000948 case lltok::kw_returned:
Bill Wendlingea007fa2013-02-08 00:52:31 +0000949 case lltok::kw_sret:
950 HaveError |=
951 Error(Lex.getLoc(),
952 "invalid use of parameter-only attribute on a function");
953 break;
Bill Wendling95ce4c22013-02-06 06:52:58 +0000954 }
955
956 Lex.Lex();
957 }
958}
Chris Lattnerdf986172009-01-02 07:01:27 +0000959
960//===----------------------------------------------------------------------===//
961// GlobalValue Reference/Resolution Routines.
962//===----------------------------------------------------------------------===//
963
964/// GetGlobalVal - Get a value with the specified name or ID, creating a
965/// forward reference record if needed. This can return null if the value
966/// exists but does not have the right type.
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000967GlobalValue *LLParser::GetGlobalVal(const std::string &Name, Type *Ty,
Chris Lattnerdf986172009-01-02 07:01:27 +0000968 LocTy Loc) {
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000969 PointerType *PTy = dyn_cast<PointerType>(Ty);
Chris Lattnerdf986172009-01-02 07:01:27 +0000970 if (PTy == 0) {
971 Error(Loc, "global variable reference must have pointer type");
972 return 0;
973 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000974
Chris Lattnerdf986172009-01-02 07:01:27 +0000975 // Look this name up in the normal function symbol table.
976 GlobalValue *Val =
977 cast_or_null<GlobalValue>(M->getValueSymbolTable().lookup(Name));
Daniel Dunbara279bc32009-09-20 02:20:51 +0000978
Chris Lattnerdf986172009-01-02 07:01:27 +0000979 // If this is a forward reference for the value, see if we already created a
980 // forward ref record.
981 if (Val == 0) {
982 std::map<std::string, std::pair<GlobalValue*, LocTy> >::iterator
983 I = ForwardRefVals.find(Name);
984 if (I != ForwardRefVals.end())
985 Val = I->second.first;
986 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000987
Chris Lattnerdf986172009-01-02 07:01:27 +0000988 // If we have the value in the symbol table or fwd-ref table, return it.
989 if (Val) {
990 if (Val->getType() == Ty) return Val;
991 Error(Loc, "'@" + Name + "' defined with type '" +
Chris Lattner0cd0d882011-06-18 21:18:23 +0000992 getTypeString(Val->getType()) + "'");
Chris Lattnerdf986172009-01-02 07:01:27 +0000993 return 0;
994 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000995
Chris Lattnerdf986172009-01-02 07:01:27 +0000996 // Otherwise, create a new forward reference for this value and remember it.
997 GlobalValue *FwdVal;
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000998 if (FunctionType *FT = dyn_cast<FunctionType>(PTy->getElementType()))
Duncan Sands5f4ee1f2009-03-11 08:08:06 +0000999 FwdVal = Function::Create(FT, GlobalValue::ExternalWeakLinkage, Name, M);
Chris Lattner1afcace2011-07-09 17:41:24 +00001000 else
Owen Andersone9b11b42009-07-08 19:03:57 +00001001 FwdVal = new GlobalVariable(*M, PTy->getElementType(), false,
Justin Holewinskieaff2d52012-11-16 21:03:47 +00001002 GlobalValue::ExternalWeakLinkage, 0, Name,
1003 0, GlobalVariable::NotThreadLocal,
1004 PTy->getAddressSpace());
Daniel Dunbara279bc32009-09-20 02:20:51 +00001005
Chris Lattnerdf986172009-01-02 07:01:27 +00001006 ForwardRefVals[Name] = std::make_pair(FwdVal, Loc);
1007 return FwdVal;
1008}
1009
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001010GlobalValue *LLParser::GetGlobalVal(unsigned ID, Type *Ty, LocTy Loc) {
1011 PointerType *PTy = dyn_cast<PointerType>(Ty);
Chris Lattnerdf986172009-01-02 07:01:27 +00001012 if (PTy == 0) {
1013 Error(Loc, "global variable reference must have pointer type");
1014 return 0;
1015 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001016
Chris Lattnerdf986172009-01-02 07:01:27 +00001017 GlobalValue *Val = ID < NumberedVals.size() ? NumberedVals[ID] : 0;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001018
Chris Lattnerdf986172009-01-02 07:01:27 +00001019 // If this is a forward reference for the value, see if we already created a
1020 // forward ref record.
1021 if (Val == 0) {
1022 std::map<unsigned, std::pair<GlobalValue*, LocTy> >::iterator
1023 I = ForwardRefValIDs.find(ID);
1024 if (I != ForwardRefValIDs.end())
1025 Val = I->second.first;
1026 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001027
Chris Lattnerdf986172009-01-02 07:01:27 +00001028 // If we have the value in the symbol table or fwd-ref table, return it.
1029 if (Val) {
1030 if (Val->getType() == Ty) return Val;
Benjamin Kramerd1e17032010-09-27 17:42:11 +00001031 Error(Loc, "'@" + Twine(ID) + "' defined with type '" +
Chris Lattner0cd0d882011-06-18 21:18:23 +00001032 getTypeString(Val->getType()) + "'");
Chris Lattnerdf986172009-01-02 07:01:27 +00001033 return 0;
1034 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001035
Chris Lattnerdf986172009-01-02 07:01:27 +00001036 // Otherwise, create a new forward reference for this value and remember it.
1037 GlobalValue *FwdVal;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001038 if (FunctionType *FT = dyn_cast<FunctionType>(PTy->getElementType()))
Duncan Sands5f4ee1f2009-03-11 08:08:06 +00001039 FwdVal = Function::Create(FT, GlobalValue::ExternalWeakLinkage, "", M);
Chris Lattner1afcace2011-07-09 17:41:24 +00001040 else
Owen Andersone9b11b42009-07-08 19:03:57 +00001041 FwdVal = new GlobalVariable(*M, PTy->getElementType(), false,
1042 GlobalValue::ExternalWeakLinkage, 0, "");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001043
Chris Lattnerdf986172009-01-02 07:01:27 +00001044 ForwardRefValIDs[ID] = std::make_pair(FwdVal, Loc);
1045 return FwdVal;
1046}
1047
1048
1049//===----------------------------------------------------------------------===//
1050// Helper Routines.
1051//===----------------------------------------------------------------------===//
1052
1053/// ParseToken - If the current token has the specified kind, eat it and return
1054/// success. Otherwise, emit the specified error and return failure.
1055bool LLParser::ParseToken(lltok::Kind T, const char *ErrMsg) {
1056 if (Lex.getKind() != T)
1057 return TokError(ErrMsg);
1058 Lex.Lex();
1059 return false;
1060}
1061
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001062/// ParseStringConstant
1063/// ::= StringConstant
1064bool LLParser::ParseStringConstant(std::string &Result) {
1065 if (Lex.getKind() != lltok::StringConstant)
1066 return TokError("expected string constant");
1067 Result = Lex.getStrVal();
1068 Lex.Lex();
1069 return false;
1070}
1071
1072/// ParseUInt32
1073/// ::= uint32
1074bool LLParser::ParseUInt32(unsigned &Val) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001075 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned())
1076 return TokError("expected integer");
1077 uint64_t Val64 = Lex.getAPSIntVal().getLimitedValue(0xFFFFFFFFULL+1);
1078 if (Val64 != unsigned(Val64))
1079 return TokError("expected 32-bit integer (too large)");
1080 Val = Val64;
1081 Lex.Lex();
1082 return false;
1083}
1084
Hans Wennborgce718ff2012-06-23 11:37:03 +00001085/// ParseTLSModel
1086/// := 'localdynamic'
1087/// := 'initialexec'
1088/// := 'localexec'
1089bool LLParser::ParseTLSModel(GlobalVariable::ThreadLocalMode &TLM) {
1090 switch (Lex.getKind()) {
1091 default:
1092 return TokError("expected localdynamic, initialexec or localexec");
1093 case lltok::kw_localdynamic:
1094 TLM = GlobalVariable::LocalDynamicTLSModel;
1095 break;
1096 case lltok::kw_initialexec:
1097 TLM = GlobalVariable::InitialExecTLSModel;
1098 break;
1099 case lltok::kw_localexec:
1100 TLM = GlobalVariable::LocalExecTLSModel;
1101 break;
1102 }
1103
1104 Lex.Lex();
1105 return false;
1106}
1107
1108/// ParseOptionalThreadLocal
1109/// := /*empty*/
1110/// := 'thread_local'
1111/// := 'thread_local' '(' tlsmodel ')'
1112bool LLParser::ParseOptionalThreadLocal(GlobalVariable::ThreadLocalMode &TLM) {
1113 TLM = GlobalVariable::NotThreadLocal;
1114 if (!EatIfPresent(lltok::kw_thread_local))
1115 return false;
1116
1117 TLM = GlobalVariable::GeneralDynamicTLSModel;
1118 if (Lex.getKind() == lltok::lparen) {
1119 Lex.Lex();
1120 return ParseTLSModel(TLM) ||
1121 ParseToken(lltok::rparen, "expected ')' after thread local model");
1122 }
1123 return false;
1124}
Chris Lattnerdf986172009-01-02 07:01:27 +00001125
1126/// ParseOptionalAddrSpace
1127/// := /*empty*/
1128/// := 'addrspace' '(' uint32 ')'
1129bool LLParser::ParseOptionalAddrSpace(unsigned &AddrSpace) {
1130 AddrSpace = 0;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001131 if (!EatIfPresent(lltok::kw_addrspace))
Chris Lattnerdf986172009-01-02 07:01:27 +00001132 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00001133 return ParseToken(lltok::lparen, "expected '(' in address space") ||
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001134 ParseUInt32(AddrSpace) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00001135 ParseToken(lltok::rparen, "expected ')' in address space");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001136}
Chris Lattnerdf986172009-01-02 07:01:27 +00001137
Bill Wendlinge01b81b2012-12-04 23:40:58 +00001138/// ParseOptionalParamAttrs - Parse a potentially empty list of parameter attributes.
1139bool LLParser::ParseOptionalParamAttrs(AttrBuilder &B) {
1140 bool HaveError = false;
1141
1142 B.clear();
1143
1144 while (1) {
1145 lltok::Kind Token = Lex.getKind();
1146 switch (Token) {
1147 default: // End of attributes.
1148 return HaveError;
Chris Lattnerdf986172009-01-02 07:01:27 +00001149 case lltok::kw_align: {
1150 unsigned Alignment;
1151 if (ParseOptionalAlignment(Alignment))
1152 return true;
Bill Wendling03272442012-10-08 22:20:14 +00001153 B.addAlignmentAttr(Alignment);
Chris Lattnerdf986172009-01-02 07:01:27 +00001154 continue;
1155 }
Bill Wendling034b94b2012-12-19 07:18:57 +00001156 case lltok::kw_byval: B.addAttribute(Attribute::ByVal); break;
1157 case lltok::kw_inreg: B.addAttribute(Attribute::InReg); break;
1158 case lltok::kw_nest: B.addAttribute(Attribute::Nest); break;
1159 case lltok::kw_noalias: B.addAttribute(Attribute::NoAlias); break;
1160 case lltok::kw_nocapture: B.addAttribute(Attribute::NoCapture); break;
Nick Lewyckydc897372013-07-06 00:29:58 +00001161 case lltok::kw_readnone: B.addAttribute(Attribute::ReadNone); break;
1162 case lltok::kw_readonly: B.addAttribute(Attribute::ReadOnly); break;
Stephen Lin456ca042013-04-20 05:14:40 +00001163 case lltok::kw_returned: B.addAttribute(Attribute::Returned); break;
Bill Wendling034b94b2012-12-19 07:18:57 +00001164 case lltok::kw_signext: B.addAttribute(Attribute::SExt); break;
1165 case lltok::kw_sret: B.addAttribute(Attribute::StructRet); break;
1166 case lltok::kw_zeroext: B.addAttribute(Attribute::ZExt); break;
Charles Davis1e063d12010-02-12 00:31:15 +00001167
Stephen Linb0aeb3e2013-04-20 13:16:13 +00001168 case lltok::kw_alignstack:
1169 case lltok::kw_alwaysinline:
Michael Gottesman2253a2f2013-06-27 00:25:01 +00001170 case lltok::kw_builtin:
Stephen Linb0aeb3e2013-04-20 13:16:13 +00001171 case lltok::kw_inlinehint:
1172 case lltok::kw_minsize:
1173 case lltok::kw_naked:
1174 case lltok::kw_nobuiltin:
1175 case lltok::kw_noduplicate:
1176 case lltok::kw_noimplicitfloat:
1177 case lltok::kw_noinline:
1178 case lltok::kw_nonlazybind:
1179 case lltok::kw_noredzone:
1180 case lltok::kw_noreturn:
1181 case lltok::kw_nounwind:
Andrea Di Biagio5768bb82013-08-23 11:53:55 +00001182 case lltok::kw_optnone:
Stephen Linb0aeb3e2013-04-20 13:16:13 +00001183 case lltok::kw_optsize:
Stephen Linb0aeb3e2013-04-20 13:16:13 +00001184 case lltok::kw_returns_twice:
1185 case lltok::kw_sanitize_address:
1186 case lltok::kw_sanitize_memory:
1187 case lltok::kw_sanitize_thread:
1188 case lltok::kw_ssp:
1189 case lltok::kw_sspreq:
1190 case lltok::kw_sspstrong:
1191 case lltok::kw_uwtable:
Bill Wendlinge01b81b2012-12-04 23:40:58 +00001192 HaveError |= Error(Lex.getLoc(), "invalid use of function-only attribute");
1193 break;
Chris Lattnerdf986172009-01-02 07:01:27 +00001194 }
Bill Wendlingdc998cc2012-09-28 22:30:18 +00001195
Bill Wendlinge01b81b2012-12-04 23:40:58 +00001196 Lex.Lex();
1197 }
1198}
1199
1200/// ParseOptionalReturnAttrs - Parse a potentially empty list of return attributes.
1201bool LLParser::ParseOptionalReturnAttrs(AttrBuilder &B) {
1202 bool HaveError = false;
1203
1204 B.clear();
1205
1206 while (1) {
1207 lltok::Kind Token = Lex.getKind();
Bill Wendlingdc998cc2012-09-28 22:30:18 +00001208 switch (Token) {
Bill Wendlinge01b81b2012-12-04 23:40:58 +00001209 default: // End of attributes.
1210 return HaveError;
Bill Wendling034b94b2012-12-19 07:18:57 +00001211 case lltok::kw_inreg: B.addAttribute(Attribute::InReg); break;
1212 case lltok::kw_noalias: B.addAttribute(Attribute::NoAlias); break;
1213 case lltok::kw_signext: B.addAttribute(Attribute::SExt); break;
1214 case lltok::kw_zeroext: B.addAttribute(Attribute::ZExt); break;
Bill Wendlingdc998cc2012-09-28 22:30:18 +00001215
Bill Wendlinge01b81b2012-12-04 23:40:58 +00001216 // Error handling.
Stephen Linb0aeb3e2013-04-20 13:16:13 +00001217 case lltok::kw_align:
Chandler Carruth239e1e42013-04-09 19:46:46 +00001218 case lltok::kw_byval:
1219 case lltok::kw_nest:
1220 case lltok::kw_nocapture:
Stephen Lin456ca042013-04-20 05:14:40 +00001221 case lltok::kw_returned:
Chandler Carruth239e1e42013-04-09 19:46:46 +00001222 case lltok::kw_sret:
Bill Wendlinge01b81b2012-12-04 23:40:58 +00001223 HaveError |= Error(Lex.getLoc(), "invalid use of parameter-only attribute");
Bill Wendlingdc998cc2012-09-28 22:30:18 +00001224 break;
James Molloy67ae1352012-12-20 16:04:27 +00001225
Chandler Carruth239e1e42013-04-09 19:46:46 +00001226 case lltok::kw_alignstack:
1227 case lltok::kw_alwaysinline:
Michael Gottesman2253a2f2013-06-27 00:25:01 +00001228 case lltok::kw_builtin:
Diego Novillo77226a02013-05-24 12:26:52 +00001229 case lltok::kw_cold:
Chandler Carruth239e1e42013-04-09 19:46:46 +00001230 case lltok::kw_inlinehint:
1231 case lltok::kw_minsize:
1232 case lltok::kw_naked:
1233 case lltok::kw_nobuiltin:
1234 case lltok::kw_noduplicate:
1235 case lltok::kw_noimplicitfloat:
1236 case lltok::kw_noinline:
1237 case lltok::kw_nonlazybind:
1238 case lltok::kw_noredzone:
1239 case lltok::kw_noreturn:
1240 case lltok::kw_nounwind:
Andrea Di Biagio5768bb82013-08-23 11:53:55 +00001241 case lltok::kw_optnone:
Chandler Carruth239e1e42013-04-09 19:46:46 +00001242 case lltok::kw_optsize:
Chandler Carruth239e1e42013-04-09 19:46:46 +00001243 case lltok::kw_returns_twice:
1244 case lltok::kw_sanitize_address:
1245 case lltok::kw_sanitize_memory:
1246 case lltok::kw_sanitize_thread:
1247 case lltok::kw_ssp:
1248 case lltok::kw_sspreq:
1249 case lltok::kw_sspstrong:
1250 case lltok::kw_uwtable:
Bill Wendlinge01b81b2012-12-04 23:40:58 +00001251 HaveError |= Error(Lex.getLoc(), "invalid use of function-only attribute");
Bill Wendlingdc998cc2012-09-28 22:30:18 +00001252 break;
Nick Lewyckydc897372013-07-06 00:29:58 +00001253
1254 case lltok::kw_readnone:
1255 case lltok::kw_readonly:
1256 HaveError |= Error(Lex.getLoc(), "invalid use of attribute on return type");
Bill Wendlingdc998cc2012-09-28 22:30:18 +00001257 }
1258
Chris Lattnerdf986172009-01-02 07:01:27 +00001259 Lex.Lex();
1260 }
1261}
1262
1263/// ParseOptionalLinkage
1264/// ::= /*empty*/
Rafael Espindolabb46f522009-01-15 20:18:42 +00001265/// ::= 'private'
Bill Wendling3d10a5a2009-07-20 01:03:30 +00001266/// ::= 'linker_private'
Bill Wendling5e721d72010-07-01 21:55:59 +00001267/// ::= 'linker_private_weak'
Chris Lattnerdf986172009-01-02 07:01:27 +00001268/// ::= 'internal'
1269/// ::= 'weak'
Duncan Sands667d4b82009-03-07 15:45:40 +00001270/// ::= 'weak_odr'
Chris Lattnerdf986172009-01-02 07:01:27 +00001271/// ::= 'linkonce'
Duncan Sands667d4b82009-03-07 15:45:40 +00001272/// ::= 'linkonce_odr'
Bill Wendling5e721d72010-07-01 21:55:59 +00001273/// ::= 'available_externally'
Chris Lattnerdf986172009-01-02 07:01:27 +00001274/// ::= 'appending'
1275/// ::= 'dllexport'
1276/// ::= 'common'
1277/// ::= 'dllimport'
1278/// ::= 'extern_weak'
1279/// ::= 'external'
1280bool LLParser::ParseOptionalLinkage(unsigned &Res, bool &HasLinkage) {
1281 HasLinkage = false;
1282 switch (Lex.getKind()) {
Bill Wendling3d10a5a2009-07-20 01:03:30 +00001283 default: Res=GlobalValue::ExternalLinkage; return false;
1284 case lltok::kw_private: Res = GlobalValue::PrivateLinkage; break;
1285 case lltok::kw_linker_private: Res = GlobalValue::LinkerPrivateLinkage; break;
Bill Wendling5e721d72010-07-01 21:55:59 +00001286 case lltok::kw_linker_private_weak:
1287 Res = GlobalValue::LinkerPrivateWeakLinkage;
1288 break;
Bill Wendling3d10a5a2009-07-20 01:03:30 +00001289 case lltok::kw_internal: Res = GlobalValue::InternalLinkage; break;
1290 case lltok::kw_weak: Res = GlobalValue::WeakAnyLinkage; break;
1291 case lltok::kw_weak_odr: Res = GlobalValue::WeakODRLinkage; break;
1292 case lltok::kw_linkonce: Res = GlobalValue::LinkOnceAnyLinkage; break;
1293 case lltok::kw_linkonce_odr: Res = GlobalValue::LinkOnceODRLinkage; break;
Chris Lattner266c7bb2009-04-13 05:44:34 +00001294 case lltok::kw_available_externally:
1295 Res = GlobalValue::AvailableExternallyLinkage;
1296 break;
Bill Wendling3d10a5a2009-07-20 01:03:30 +00001297 case lltok::kw_appending: Res = GlobalValue::AppendingLinkage; break;
1298 case lltok::kw_dllexport: Res = GlobalValue::DLLExportLinkage; break;
1299 case lltok::kw_common: Res = GlobalValue::CommonLinkage; break;
1300 case lltok::kw_dllimport: Res = GlobalValue::DLLImportLinkage; break;
1301 case lltok::kw_extern_weak: Res = GlobalValue::ExternalWeakLinkage; break;
1302 case lltok::kw_external: Res = GlobalValue::ExternalLinkage; break;
Chris Lattnerdf986172009-01-02 07:01:27 +00001303 }
1304 Lex.Lex();
1305 HasLinkage = true;
1306 return false;
1307}
1308
1309/// ParseOptionalVisibility
1310/// ::= /*empty*/
1311/// ::= 'default'
1312/// ::= 'hidden'
1313/// ::= 'protected'
Daniel Dunbara279bc32009-09-20 02:20:51 +00001314///
Chris Lattnerdf986172009-01-02 07:01:27 +00001315bool LLParser::ParseOptionalVisibility(unsigned &Res) {
1316 switch (Lex.getKind()) {
1317 default: Res = GlobalValue::DefaultVisibility; return false;
1318 case lltok::kw_default: Res = GlobalValue::DefaultVisibility; break;
1319 case lltok::kw_hidden: Res = GlobalValue::HiddenVisibility; break;
1320 case lltok::kw_protected: Res = GlobalValue::ProtectedVisibility; break;
1321 }
1322 Lex.Lex();
1323 return false;
1324}
1325
1326/// ParseOptionalCallingConv
1327/// ::= /*empty*/
1328/// ::= 'ccc'
1329/// ::= 'fastcc'
Elena Demikhovsky35752222012-10-24 14:46:16 +00001330/// ::= 'kw_intel_ocl_bicc'
Chris Lattnerdf986172009-01-02 07:01:27 +00001331/// ::= 'coldcc'
1332/// ::= 'x86_stdcallcc'
1333/// ::= 'x86_fastcallcc'
Anton Korobeynikovded05e32010-05-16 09:08:45 +00001334/// ::= 'x86_thiscallcc'
Anton Korobeynikov385f5a92009-06-16 18:50:49 +00001335/// ::= 'arm_apcscc'
1336/// ::= 'arm_aapcscc'
1337/// ::= 'arm_aapcs_vfpcc'
Anton Korobeynikov211a14e2009-12-07 02:27:35 +00001338/// ::= 'msp430_intrcc'
Che-Liang Chiouf9930da2010-09-25 07:46:17 +00001339/// ::= 'ptx_kernel'
1340/// ::= 'ptx_device'
Micah Villmowe53d6052012-10-01 17:01:31 +00001341/// ::= 'spir_func'
1342/// ::= 'spir_kernel'
Charles Davisac226bb2013-07-12 06:02:35 +00001343/// ::= 'x86_64_sysvcc'
1344/// ::= 'x86_64_win64cc'
Andrew Trick2ddc56d2013-10-31 22:12:01 +00001345/// ::= 'webkit_jscc'
Chris Lattnerdf986172009-01-02 07:01:27 +00001346/// ::= 'cc' UINT
Anton Korobeynikov385f5a92009-06-16 18:50:49 +00001347///
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001348bool LLParser::ParseOptionalCallingConv(CallingConv::ID &CC) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001349 switch (Lex.getKind()) {
1350 default: CC = CallingConv::C; return false;
1351 case lltok::kw_ccc: CC = CallingConv::C; break;
1352 case lltok::kw_fastcc: CC = CallingConv::Fast; break;
1353 case lltok::kw_coldcc: CC = CallingConv::Cold; break;
1354 case lltok::kw_x86_stdcallcc: CC = CallingConv::X86_StdCall; break;
1355 case lltok::kw_x86_fastcallcc: CC = CallingConv::X86_FastCall; break;
Anton Korobeynikovded05e32010-05-16 09:08:45 +00001356 case lltok::kw_x86_thiscallcc: CC = CallingConv::X86_ThisCall; break;
Anton Korobeynikov385f5a92009-06-16 18:50:49 +00001357 case lltok::kw_arm_apcscc: CC = CallingConv::ARM_APCS; break;
1358 case lltok::kw_arm_aapcscc: CC = CallingConv::ARM_AAPCS; break;
1359 case lltok::kw_arm_aapcs_vfpcc:CC = CallingConv::ARM_AAPCS_VFP; break;
Anton Korobeynikov211a14e2009-12-07 02:27:35 +00001360 case lltok::kw_msp430_intrcc: CC = CallingConv::MSP430_INTR; break;
Che-Liang Chiouf9930da2010-09-25 07:46:17 +00001361 case lltok::kw_ptx_kernel: CC = CallingConv::PTX_Kernel; break;
1362 case lltok::kw_ptx_device: CC = CallingConv::PTX_Device; break;
Micah Villmowe53d6052012-10-01 17:01:31 +00001363 case lltok::kw_spir_kernel: CC = CallingConv::SPIR_KERNEL; break;
1364 case lltok::kw_spir_func: CC = CallingConv::SPIR_FUNC; break;
Elena Demikhovsky35752222012-10-24 14:46:16 +00001365 case lltok::kw_intel_ocl_bicc: CC = CallingConv::Intel_OCL_BI; break;
Charles Davisac226bb2013-07-12 06:02:35 +00001366 case lltok::kw_x86_64_sysvcc: CC = CallingConv::X86_64_SysV; break;
1367 case lltok::kw_x86_64_win64cc: CC = CallingConv::X86_64_Win64; break;
Andrew Trick2ddc56d2013-10-31 22:12:01 +00001368 case lltok::kw_webkit_jscc: CC = CallingConv::WebKit_JS; break;
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001369 case lltok::kw_cc: {
1370 unsigned ArbitraryCC;
1371 Lex.Lex();
David Blaikie4d6ccb52012-01-20 21:51:11 +00001372 if (ParseUInt32(ArbitraryCC))
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001373 return true;
David Blaikie4d6ccb52012-01-20 21:51:11 +00001374 CC = static_cast<CallingConv::ID>(ArbitraryCC);
1375 return false;
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001376 }
Chris Lattnerdf986172009-01-02 07:01:27 +00001377 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001378
Chris Lattnerdf986172009-01-02 07:01:27 +00001379 Lex.Lex();
1380 return false;
1381}
1382
Chris Lattnerb8c46862009-12-30 05:31:19 +00001383/// ParseInstructionMetadata
Chris Lattner3f3a0f62009-12-29 21:25:40 +00001384/// ::= !dbg !42 (',' !dbg !57)*
Dan Gohman9d072f52010-08-24 02:05:17 +00001385bool LLParser::ParseInstructionMetadata(Instruction *Inst,
1386 PerFunctionState *PFS) {
Chris Lattnerb8c46862009-12-30 05:31:19 +00001387 do {
1388 if (Lex.getKind() != lltok::MetadataVar)
1389 return TokError("expected metadata after comma");
Devang Patel0475c912009-09-29 00:01:14 +00001390
Chris Lattner3f3a0f62009-12-29 21:25:40 +00001391 std::string Name = Lex.getStrVal();
Benjamin Kramer85dadec2011-12-06 11:50:26 +00001392 unsigned MDK = M->getMDKindID(Name);
Chris Lattner3f3a0f62009-12-29 21:25:40 +00001393 Lex.Lex();
Chris Lattner52e20312009-10-19 05:31:10 +00001394
Chris Lattner442ffa12009-12-29 21:53:55 +00001395 MDNode *Node;
Chris Lattner449c3102010-04-01 05:14:45 +00001396 SMLoc Loc = Lex.getLoc();
Dan Gohman309b3af2010-08-24 02:24:03 +00001397
1398 if (ParseToken(lltok::exclaim, "expected '!' here"))
Chris Lattnere434d272009-12-30 04:56:59 +00001399 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001400
Dan Gohman68261142010-08-24 14:35:45 +00001401 // This code is similar to that of ParseMetadataValue, however it needs to
1402 // have special-case code for a forward reference; see the comments on
1403 // ForwardRefInstMetadata for details. Also, MDStrings are not supported
1404 // at the top level here.
Dan Gohman309b3af2010-08-24 02:24:03 +00001405 if (Lex.getKind() == lltok::lbrace) {
1406 ValID ID;
1407 if (ParseMetadataListValue(ID, PFS))
1408 return true;
1409 assert(ID.Kind == ValID::t_MDNode);
1410 Inst->setMetadata(MDK, ID.MDNodeVal);
Chris Lattner449c3102010-04-01 05:14:45 +00001411 } else {
Nick Lewyckyc6877b42010-09-30 21:04:13 +00001412 unsigned NodeID = 0;
Dan Gohman309b3af2010-08-24 02:24:03 +00001413 if (ParseMDNodeID(Node, NodeID))
1414 return true;
1415 if (Node) {
1416 // If we got the node, add it to the instruction.
1417 Inst->setMetadata(MDK, Node);
1418 } else {
1419 MDRef R = { Loc, MDK, NodeID };
1420 // Otherwise, remember that this should be resolved later.
1421 ForwardRefInstMetadata[Inst].push_back(R);
1422 }
Chris Lattner449c3102010-04-01 05:14:45 +00001423 }
Chris Lattner3f3a0f62009-12-29 21:25:40 +00001424
Manman Ren804f0342013-09-28 00:22:27 +00001425 if (MDK == LLVMContext::MD_tbaa)
1426 InstsWithTBAATag.push_back(Inst);
1427
Chris Lattner3f3a0f62009-12-29 21:25:40 +00001428 // If this is the end of the list, we're done.
Chris Lattnerb8c46862009-12-30 05:31:19 +00001429 } while (EatIfPresent(lltok::comma));
1430 return false;
Devang Patelf633a062009-09-17 23:04:48 +00001431}
1432
Chris Lattnerdf986172009-01-02 07:01:27 +00001433/// ParseOptionalAlignment
1434/// ::= /* empty */
1435/// ::= 'align' 4
1436bool LLParser::ParseOptionalAlignment(unsigned &Alignment) {
1437 Alignment = 0;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001438 if (!EatIfPresent(lltok::kw_align))
1439 return false;
Chris Lattner3fbb3ab2009-01-05 07:46:05 +00001440 LocTy AlignLoc = Lex.getLoc();
1441 if (ParseUInt32(Alignment)) return true;
1442 if (!isPowerOf2_32(Alignment))
1443 return Error(AlignLoc, "alignment is not a power of two");
Dan Gohmane16829b2010-07-30 21:07:05 +00001444 if (Alignment > Value::MaximumAlignment)
Dan Gohman138aa2a2010-07-28 20:12:04 +00001445 return Error(AlignLoc, "huge alignments are not supported yet");
Chris Lattner3fbb3ab2009-01-05 07:46:05 +00001446 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00001447}
1448
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00001449/// ParseOptionalCommaAlign
Michael Ilseman407a6162012-11-15 22:34:00 +00001450/// ::=
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00001451/// ::= ',' align 4
1452///
1453/// This returns with AteExtraComma set to true if it ate an excess comma at the
1454/// end.
1455bool LLParser::ParseOptionalCommaAlign(unsigned &Alignment,
1456 bool &AteExtraComma) {
1457 AteExtraComma = false;
1458 while (EatIfPresent(lltok::comma)) {
1459 // Metadata at the end is an early exit.
Chris Lattner1d928312009-12-30 05:02:06 +00001460 if (Lex.getKind() == lltok::MetadataVar) {
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00001461 AteExtraComma = true;
1462 return false;
1463 }
Michael Ilseman407a6162012-11-15 22:34:00 +00001464
Chris Lattner093eed12010-04-23 00:50:50 +00001465 if (Lex.getKind() != lltok::kw_align)
1466 return Error(Lex.getLoc(), "expected metadata or 'align'");
Duncan Sandsbf9fc532010-10-21 16:07:10 +00001467
Chris Lattner093eed12010-04-23 00:50:50 +00001468 if (ParseOptionalAlignment(Alignment)) return true;
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00001469 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001470
Devang Patelf633a062009-09-17 23:04:48 +00001471 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00001472}
1473
Eli Friedman47f35132011-07-25 23:16:38 +00001474/// ParseScopeAndOrdering
1475/// if isAtomic: ::= 'singlethread'? AtomicOrdering
1476/// else: ::=
1477///
1478/// This sets Scope and Ordering to the parsed values.
1479bool LLParser::ParseScopeAndOrdering(bool isAtomic, SynchronizationScope &Scope,
1480 AtomicOrdering &Ordering) {
1481 if (!isAtomic)
1482 return false;
1483
1484 Scope = CrossThread;
1485 if (EatIfPresent(lltok::kw_singlethread))
1486 Scope = SingleThread;
1487 switch (Lex.getKind()) {
1488 default: return TokError("Expected ordering on atomic instruction");
1489 case lltok::kw_unordered: Ordering = Unordered; break;
1490 case lltok::kw_monotonic: Ordering = Monotonic; break;
1491 case lltok::kw_acquire: Ordering = Acquire; break;
1492 case lltok::kw_release: Ordering = Release; break;
1493 case lltok::kw_acq_rel: Ordering = AcquireRelease; break;
1494 case lltok::kw_seq_cst: Ordering = SequentiallyConsistent; break;
1495 }
1496 Lex.Lex();
1497 return false;
1498}
1499
Charles Davis1e063d12010-02-12 00:31:15 +00001500/// ParseOptionalStackAlignment
1501/// ::= /* empty */
1502/// ::= 'alignstack' '(' 4 ')'
1503bool LLParser::ParseOptionalStackAlignment(unsigned &Alignment) {
1504 Alignment = 0;
1505 if (!EatIfPresent(lltok::kw_alignstack))
1506 return false;
1507 LocTy ParenLoc = Lex.getLoc();
1508 if (!EatIfPresent(lltok::lparen))
1509 return Error(ParenLoc, "expected '('");
1510 LocTy AlignLoc = Lex.getLoc();
1511 if (ParseUInt32(Alignment)) return true;
1512 ParenLoc = Lex.getLoc();
1513 if (!EatIfPresent(lltok::rparen))
1514 return Error(ParenLoc, "expected ')'");
1515 if (!isPowerOf2_32(Alignment))
1516 return Error(AlignLoc, "stack alignment is not a power of two");
1517 return false;
1518}
Devang Patelf633a062009-09-17 23:04:48 +00001519
Chris Lattner628c13a2009-12-30 05:14:00 +00001520/// ParseIndexList - This parses the index list for an insert/extractvalue
1521/// instruction. This sets AteExtraComma in the case where we eat an extra
1522/// comma at the end of the line and find that it is followed by metadata.
1523/// Clients that don't allow metadata can call the version of this function that
1524/// only takes one argument.
1525///
Chris Lattnerdf986172009-01-02 07:01:27 +00001526/// ParseIndexList
1527/// ::= (',' uint32)+
Chris Lattner628c13a2009-12-30 05:14:00 +00001528///
1529bool LLParser::ParseIndexList(SmallVectorImpl<unsigned> &Indices,
1530 bool &AteExtraComma) {
1531 AteExtraComma = false;
Michael Ilseman407a6162012-11-15 22:34:00 +00001532
Chris Lattnerdf986172009-01-02 07:01:27 +00001533 if (Lex.getKind() != lltok::comma)
1534 return TokError("expected ',' as start of index list");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001535
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001536 while (EatIfPresent(lltok::comma)) {
Chris Lattner628c13a2009-12-30 05:14:00 +00001537 if (Lex.getKind() == lltok::MetadataVar) {
1538 AteExtraComma = true;
1539 return false;
1540 }
Nick Lewycky28815c42010-09-29 23:32:20 +00001541 unsigned Idx = 0;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001542 if (ParseUInt32(Idx)) return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00001543 Indices.push_back(Idx);
1544 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001545
Chris Lattnerdf986172009-01-02 07:01:27 +00001546 return false;
1547}
1548
1549//===----------------------------------------------------------------------===//
1550// Type Parsing.
1551//===----------------------------------------------------------------------===//
1552
Chris Lattner1afcace2011-07-09 17:41:24 +00001553/// ParseType - Parse a type.
1554bool LLParser::ParseType(Type *&Result, bool AllowVoid) {
1555 SMLoc TypeLoc = Lex.getLoc();
Chris Lattnerdf986172009-01-02 07:01:27 +00001556 switch (Lex.getKind()) {
1557 default:
1558 return TokError("expected type");
1559 case lltok::Type:
Chris Lattner1afcace2011-07-09 17:41:24 +00001560 // Type ::= 'float' | 'void' (etc)
Chris Lattnerdf986172009-01-02 07:01:27 +00001561 Result = Lex.getTyVal();
Daniel Dunbara279bc32009-09-20 02:20:51 +00001562 Lex.Lex();
Chris Lattnerdf986172009-01-02 07:01:27 +00001563 break;
Chris Lattnerdf986172009-01-02 07:01:27 +00001564 case lltok::lbrace:
Chris Lattner1afcace2011-07-09 17:41:24 +00001565 // Type ::= StructType
1566 if (ParseAnonStructType(Result, false))
Chris Lattnerdf986172009-01-02 07:01:27 +00001567 return true;
1568 break;
1569 case lltok::lsquare:
Chris Lattner1afcace2011-07-09 17:41:24 +00001570 // Type ::= '[' ... ']'
Chris Lattnerdf986172009-01-02 07:01:27 +00001571 Lex.Lex(); // eat the lsquare.
1572 if (ParseArrayVectorType(Result, false))
1573 return true;
1574 break;
1575 case lltok::less: // Either vector or packed struct.
Chris Lattner1afcace2011-07-09 17:41:24 +00001576 // Type ::= '<' ... '>'
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001577 Lex.Lex();
1578 if (Lex.getKind() == lltok::lbrace) {
Chris Lattner1afcace2011-07-09 17:41:24 +00001579 if (ParseAnonStructType(Result, true) ||
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001580 ParseToken(lltok::greater, "expected '>' at end of packed struct"))
Chris Lattnerdf986172009-01-02 07:01:27 +00001581 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00001582 } else if (ParseArrayVectorType(Result, true))
1583 return true;
1584 break;
Chris Lattner1afcace2011-07-09 17:41:24 +00001585 case lltok::LocalVar: {
1586 // Type ::= %foo
1587 std::pair<Type*, LocTy> &Entry = NamedTypes[Lex.getStrVal()];
Michael Ilseman407a6162012-11-15 22:34:00 +00001588
Chris Lattner1afcace2011-07-09 17:41:24 +00001589 // If the type hasn't been defined yet, create a forward definition and
1590 // remember where that forward def'n was seen (in case it never is defined).
1591 if (Entry.first == 0) {
Chris Lattner3ebb6492011-08-12 18:06:37 +00001592 Entry.first = StructType::create(Context, Lex.getStrVal());
Chris Lattner1afcace2011-07-09 17:41:24 +00001593 Entry.second = Lex.getLoc();
Chris Lattnerdf986172009-01-02 07:01:27 +00001594 }
Chris Lattner1afcace2011-07-09 17:41:24 +00001595 Result = Entry.first;
Chris Lattnerdf986172009-01-02 07:01:27 +00001596 Lex.Lex();
1597 break;
Chris Lattner1afcace2011-07-09 17:41:24 +00001598 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001599
Chris Lattner1afcace2011-07-09 17:41:24 +00001600 case lltok::LocalVarID: {
1601 // Type ::= %4
1602 if (Lex.getUIntVal() >= NumberedTypes.size())
1603 NumberedTypes.resize(Lex.getUIntVal()+1);
1604 std::pair<Type*, LocTy> &Entry = NumberedTypes[Lex.getUIntVal()];
Michael Ilseman407a6162012-11-15 22:34:00 +00001605
Chris Lattner1afcace2011-07-09 17:41:24 +00001606 // If the type hasn't been defined yet, create a forward definition and
1607 // remember where that forward def'n was seen (in case it never is defined).
1608 if (Entry.first == 0) {
Chris Lattner3ebb6492011-08-12 18:06:37 +00001609 Entry.first = StructType::create(Context);
Chris Lattner1afcace2011-07-09 17:41:24 +00001610 Entry.second = Lex.getLoc();
Chris Lattnerdf986172009-01-02 07:01:27 +00001611 }
Chris Lattner1afcace2011-07-09 17:41:24 +00001612 Result = Entry.first;
Chris Lattnerdf986172009-01-02 07:01:27 +00001613 Lex.Lex();
1614 break;
Chris Lattnerdf986172009-01-02 07:01:27 +00001615 }
1616 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001617
1618 // Parse the type suffixes.
Chris Lattnerdf986172009-01-02 07:01:27 +00001619 while (1) {
1620 switch (Lex.getKind()) {
1621 // End of type.
Chris Lattner1afcace2011-07-09 17:41:24 +00001622 default:
1623 if (!AllowVoid && Result->isVoidTy())
1624 return Error(TypeLoc, "void type only allowed for function results");
1625 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00001626
Chris Lattner1afcace2011-07-09 17:41:24 +00001627 // Type ::= Type '*'
Chris Lattnerdf986172009-01-02 07:01:27 +00001628 case lltok::star:
Chris Lattner1afcace2011-07-09 17:41:24 +00001629 if (Result->isLabelTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00001630 return TokError("basic block pointers are invalid");
Chris Lattner1afcace2011-07-09 17:41:24 +00001631 if (Result->isVoidTy())
1632 return TokError("pointers to void are invalid - use i8* instead");
1633 if (!PointerType::isValidElementType(Result))
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001634 return TokError("pointer to this type is invalid");
Chris Lattner1afcace2011-07-09 17:41:24 +00001635 Result = PointerType::getUnqual(Result);
Chris Lattnerdf986172009-01-02 07:01:27 +00001636 Lex.Lex();
1637 break;
1638
Chris Lattner1afcace2011-07-09 17:41:24 +00001639 // Type ::= Type 'addrspace' '(' uint32 ')' '*'
Chris Lattnerdf986172009-01-02 07:01:27 +00001640 case lltok::kw_addrspace: {
Chris Lattner1afcace2011-07-09 17:41:24 +00001641 if (Result->isLabelTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00001642 return TokError("basic block pointers are invalid");
Chris Lattner1afcace2011-07-09 17:41:24 +00001643 if (Result->isVoidTy())
Dan Gohmanb9070d32009-02-09 17:41:21 +00001644 return TokError("pointers to void are invalid; use i8* instead");
Chris Lattner1afcace2011-07-09 17:41:24 +00001645 if (!PointerType::isValidElementType(Result))
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001646 return TokError("pointer to this type is invalid");
Chris Lattnerdf986172009-01-02 07:01:27 +00001647 unsigned AddrSpace;
1648 if (ParseOptionalAddrSpace(AddrSpace) ||
1649 ParseToken(lltok::star, "expected '*' in address space"))
1650 return true;
1651
Chris Lattner1afcace2011-07-09 17:41:24 +00001652 Result = PointerType::get(Result, AddrSpace);
Chris Lattnerdf986172009-01-02 07:01:27 +00001653 break;
1654 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001655
Chris Lattnerdf986172009-01-02 07:01:27 +00001656 /// Types '(' ArgTypeListI ')' OptFuncAttrs
1657 case lltok::lparen:
1658 if (ParseFunctionType(Result))
1659 return true;
1660 break;
1661 }
1662 }
1663}
1664
1665/// ParseParameterList
1666/// ::= '(' ')'
1667/// ::= '(' Arg (',' Arg)* ')'
1668/// Arg
1669/// ::= Type OptionalAttributes Value OptionalAttributes
1670bool LLParser::ParseParameterList(SmallVectorImpl<ParamInfo> &ArgList,
1671 PerFunctionState &PFS) {
1672 if (ParseToken(lltok::lparen, "expected '(' in call"))
1673 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001674
Bill Wendling73dee182013-01-31 00:29:54 +00001675 unsigned AttrIndex = 1;
Chris Lattnerdf986172009-01-02 07:01:27 +00001676 while (Lex.getKind() != lltok::rparen) {
1677 // If this isn't the first argument, we need a comma.
1678 if (!ArgList.empty() &&
1679 ParseToken(lltok::comma, "expected ',' in argument list"))
1680 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001681
Chris Lattnerdf986172009-01-02 07:01:27 +00001682 // Parse the argument.
1683 LocTy ArgLoc;
Chris Lattner1afcace2011-07-09 17:41:24 +00001684 Type *ArgTy = 0;
Bill Wendling702cc912012-10-15 20:35:56 +00001685 AttrBuilder ArgAttrs;
Chris Lattnerdf986172009-01-02 07:01:27 +00001686 Value *V;
Victor Hernandez19715562009-12-03 23:40:58 +00001687 if (ParseType(ArgTy, ArgLoc))
Chris Lattnerdf986172009-01-02 07:01:27 +00001688 return true;
Victor Hernandez19715562009-12-03 23:40:58 +00001689
Chris Lattner287881d2009-12-30 02:11:14 +00001690 // Otherwise, handle normal operands.
Bill Wendlinge01b81b2012-12-04 23:40:58 +00001691 if (ParseOptionalParamAttrs(ArgAttrs) || ParseValue(ArgTy, V, PFS))
Chris Lattner287881d2009-12-30 02:11:14 +00001692 return true;
Bill Wendling73dee182013-01-31 00:29:54 +00001693 ArgList.push_back(ParamInfo(ArgLoc, V, AttributeSet::get(V->getContext(),
1694 AttrIndex++,
1695 ArgAttrs)));
Chris Lattnerdf986172009-01-02 07:01:27 +00001696 }
1697
1698 Lex.Lex(); // Lex the ')'.
1699 return false;
1700}
1701
1702
1703
Chris Lattnerdfd19dd2009-01-05 18:34:07 +00001704/// ParseArgumentList - Parse the argument list for a function type or function
Chris Lattner1afcace2011-07-09 17:41:24 +00001705/// prototype.
Chris Lattnerdf986172009-01-02 07:01:27 +00001706/// ::= '(' ArgTypeListI ')'
1707/// ArgTypeListI
1708/// ::= /*empty*/
1709/// ::= '...'
1710/// ::= ArgTypeList ',' '...'
1711/// ::= ArgType (',' ArgType)*
Chris Lattnerdfd19dd2009-01-05 18:34:07 +00001712///
Chris Lattner1afcace2011-07-09 17:41:24 +00001713bool LLParser::ParseArgumentList(SmallVectorImpl<ArgInfo> &ArgList,
1714 bool &isVarArg){
Chris Lattnerdf986172009-01-02 07:01:27 +00001715 isVarArg = false;
1716 assert(Lex.getKind() == lltok::lparen);
1717 Lex.Lex(); // eat the (.
Daniel Dunbara279bc32009-09-20 02:20:51 +00001718
Chris Lattnerdf986172009-01-02 07:01:27 +00001719 if (Lex.getKind() == lltok::rparen) {
1720 // empty
1721 } else if (Lex.getKind() == lltok::dotdotdot) {
1722 isVarArg = true;
1723 Lex.Lex();
1724 } else {
1725 LocTy TypeLoc = Lex.getLoc();
Chris Lattner1afcace2011-07-09 17:41:24 +00001726 Type *ArgTy = 0;
Bill Wendling702cc912012-10-15 20:35:56 +00001727 AttrBuilder Attrs;
Chris Lattnerdf986172009-01-02 07:01:27 +00001728 std::string Name;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001729
Chris Lattner1afcace2011-07-09 17:41:24 +00001730 if (ParseType(ArgTy) ||
Bill Wendlinge01b81b2012-12-04 23:40:58 +00001731 ParseOptionalParamAttrs(Attrs)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001732
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001733 if (ArgTy->isVoidTy())
Chris Lattnera9a9e072009-03-09 04:49:14 +00001734 return Error(TypeLoc, "argument can not have void type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001735
Chris Lattner7a1b9bd2011-06-17 06:36:20 +00001736 if (Lex.getKind() == lltok::LocalVar) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001737 Name = Lex.getStrVal();
1738 Lex.Lex();
1739 }
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001740
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001741 if (!FunctionType::isValidArgumentType(ArgTy))
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001742 return Error(TypeLoc, "invalid type for function argument");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001743
Bill Wendling73dee182013-01-31 00:29:54 +00001744 unsigned AttrIndex = 1;
Bill Wendlingcb3de0b2012-10-15 04:46:55 +00001745 ArgList.push_back(ArgInfo(TypeLoc, ArgTy,
Bill Wendling73dee182013-01-31 00:29:54 +00001746 AttributeSet::get(ArgTy->getContext(),
1747 AttrIndex++, Attrs), Name));
Daniel Dunbara279bc32009-09-20 02:20:51 +00001748
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001749 while (EatIfPresent(lltok::comma)) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001750 // Handle ... at end of arg list.
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001751 if (EatIfPresent(lltok::dotdotdot)) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001752 isVarArg = true;
Chris Lattnerdf986172009-01-02 07:01:27 +00001753 break;
1754 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001755
Chris Lattnerdf986172009-01-02 07:01:27 +00001756 // Otherwise must be an argument type.
1757 TypeLoc = Lex.getLoc();
Bill Wendlinge01b81b2012-12-04 23:40:58 +00001758 if (ParseType(ArgTy) || ParseOptionalParamAttrs(Attrs)) return true;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001759
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001760 if (ArgTy->isVoidTy())
Chris Lattnera9a9e072009-03-09 04:49:14 +00001761 return Error(TypeLoc, "argument can not have void type");
1762
Chris Lattner7a1b9bd2011-06-17 06:36:20 +00001763 if (Lex.getKind() == lltok::LocalVar) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001764 Name = Lex.getStrVal();
1765 Lex.Lex();
1766 } else {
1767 Name = "";
1768 }
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001769
Chris Lattner1afcace2011-07-09 17:41:24 +00001770 if (!ArgTy->isFirstClassType())
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001771 return Error(TypeLoc, "invalid type for function argument");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001772
Bill Wendlingcb3de0b2012-10-15 04:46:55 +00001773 ArgList.push_back(ArgInfo(TypeLoc, ArgTy,
Bill Wendling73dee182013-01-31 00:29:54 +00001774 AttributeSet::get(ArgTy->getContext(),
1775 AttrIndex++, Attrs),
Bill Wendlingcb3de0b2012-10-15 04:46:55 +00001776 Name));
Chris Lattnerdf986172009-01-02 07:01:27 +00001777 }
1778 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001779
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001780 return ParseToken(lltok::rparen, "expected ')' at end of argument list");
Chris Lattnerdf986172009-01-02 07:01:27 +00001781}
Daniel Dunbara279bc32009-09-20 02:20:51 +00001782
Chris Lattnerdf986172009-01-02 07:01:27 +00001783/// ParseFunctionType
1784/// ::= Type ArgumentList OptionalAttrs
Chris Lattner1afcace2011-07-09 17:41:24 +00001785bool LLParser::ParseFunctionType(Type *&Result) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001786 assert(Lex.getKind() == lltok::lparen);
1787
Chris Lattnerd77d04c2009-01-05 08:04:33 +00001788 if (!FunctionType::isValidReturnType(Result))
1789 return TokError("invalid function return type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001790
Chris Lattner1afcace2011-07-09 17:41:24 +00001791 SmallVector<ArgInfo, 8> ArgList;
Chris Lattnerdf986172009-01-02 07:01:27 +00001792 bool isVarArg;
Chris Lattner1afcace2011-07-09 17:41:24 +00001793 if (ParseArgumentList(ArgList, isVarArg))
Chris Lattnerdf986172009-01-02 07:01:27 +00001794 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001795
Chris Lattnerdf986172009-01-02 07:01:27 +00001796 // Reject names on the arguments lists.
1797 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
1798 if (!ArgList[i].Name.empty())
1799 return Error(ArgList[i].Loc, "argument name invalid in function type");
Bill Wendling73dee182013-01-31 00:29:54 +00001800 if (ArgList[i].Attrs.hasAttributes(i + 1))
Chris Lattnera16546a2011-06-17 17:37:13 +00001801 return Error(ArgList[i].Loc,
1802 "argument attributes invalid in function type");
Chris Lattnerdf986172009-01-02 07:01:27 +00001803 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001804
Jay Foad5fdd6c82011-07-12 14:06:48 +00001805 SmallVector<Type*, 16> ArgListTy;
Chris Lattnerdf986172009-01-02 07:01:27 +00001806 for (unsigned i = 0, e = ArgList.size(); i != e; ++i)
Chris Lattner1afcace2011-07-09 17:41:24 +00001807 ArgListTy.push_back(ArgList[i].Ty);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001808
Chris Lattner1afcace2011-07-09 17:41:24 +00001809 Result = FunctionType::get(Result, ArgListTy, isVarArg);
Chris Lattnerdf986172009-01-02 07:01:27 +00001810 return false;
1811}
1812
Chris Lattner1afcace2011-07-09 17:41:24 +00001813/// ParseAnonStructType - Parse an anonymous struct type, which is inlined into
1814/// other structs.
1815bool LLParser::ParseAnonStructType(Type *&Result, bool Packed) {
1816 SmallVector<Type*, 8> Elts;
1817 if (ParseStructBody(Elts)) return true;
Michael Ilseman407a6162012-11-15 22:34:00 +00001818
Chris Lattner1afcace2011-07-09 17:41:24 +00001819 Result = StructType::get(Context, Elts, Packed);
1820 return false;
1821}
1822
1823/// ParseStructDefinition - Parse a struct in a 'type' definition.
1824bool LLParser::ParseStructDefinition(SMLoc TypeLoc, StringRef Name,
1825 std::pair<Type*, LocTy> &Entry,
1826 Type *&ResultTy) {
1827 // If the type was already defined, diagnose the redefinition.
1828 if (Entry.first && !Entry.second.isValid())
1829 return Error(TypeLoc, "redefinition of type");
Michael Ilseman407a6162012-11-15 22:34:00 +00001830
Chris Lattner1afcace2011-07-09 17:41:24 +00001831 // If we have opaque, just return without filling in the definition for the
1832 // struct. This counts as a definition as far as the .ll file goes.
1833 if (EatIfPresent(lltok::kw_opaque)) {
1834 // This type is being defined, so clear the location to indicate this.
1835 Entry.second = SMLoc();
Michael Ilseman407a6162012-11-15 22:34:00 +00001836
Chris Lattner1afcace2011-07-09 17:41:24 +00001837 // If this type number has never been uttered, create it.
1838 if (Entry.first == 0)
Chris Lattner3ebb6492011-08-12 18:06:37 +00001839 Entry.first = StructType::create(Context, Name);
Chris Lattner1afcace2011-07-09 17:41:24 +00001840 ResultTy = Entry.first;
1841 return false;
1842 }
Michael Ilseman407a6162012-11-15 22:34:00 +00001843
Chris Lattner1afcace2011-07-09 17:41:24 +00001844 // If the type starts with '<', then it is either a packed struct or a vector.
1845 bool isPacked = EatIfPresent(lltok::less);
1846
1847 // If we don't have a struct, then we have a random type alias, which we
1848 // accept for compatibility with old files. These types are not allowed to be
1849 // forward referenced and not allowed to be recursive.
1850 if (Lex.getKind() != lltok::lbrace) {
1851 if (Entry.first)
1852 return Error(TypeLoc, "forward references to non-struct type");
Michael Ilseman407a6162012-11-15 22:34:00 +00001853
Chris Lattner1afcace2011-07-09 17:41:24 +00001854 ResultTy = 0;
1855 if (isPacked)
1856 return ParseArrayVectorType(ResultTy, true);
1857 return ParseType(ResultTy);
1858 }
Michael Ilseman407a6162012-11-15 22:34:00 +00001859
Chris Lattner1afcace2011-07-09 17:41:24 +00001860 // This type is being defined, so clear the location to indicate this.
1861 Entry.second = SMLoc();
Michael Ilseman407a6162012-11-15 22:34:00 +00001862
Chris Lattner1afcace2011-07-09 17:41:24 +00001863 // If this type number has never been uttered, create it.
1864 if (Entry.first == 0)
Chris Lattner3ebb6492011-08-12 18:06:37 +00001865 Entry.first = StructType::create(Context, Name);
Michael Ilseman407a6162012-11-15 22:34:00 +00001866
Chris Lattner1afcace2011-07-09 17:41:24 +00001867 StructType *STy = cast<StructType>(Entry.first);
Michael Ilseman407a6162012-11-15 22:34:00 +00001868
Chris Lattner1afcace2011-07-09 17:41:24 +00001869 SmallVector<Type*, 8> Body;
1870 if (ParseStructBody(Body) ||
1871 (isPacked && ParseToken(lltok::greater, "expected '>' in packed struct")))
1872 return true;
Michael Ilseman407a6162012-11-15 22:34:00 +00001873
Chris Lattner1afcace2011-07-09 17:41:24 +00001874 STy->setBody(Body, isPacked);
1875 ResultTy = STy;
1876 return false;
1877}
1878
1879
Chris Lattnerdf986172009-01-02 07:01:27 +00001880/// ParseStructType: Handles packed and unpacked types. </> parsed elsewhere.
Chris Lattner1afcace2011-07-09 17:41:24 +00001881/// StructType
Chris Lattnerdf986172009-01-02 07:01:27 +00001882/// ::= '{' '}'
Chris Lattner1afcace2011-07-09 17:41:24 +00001883/// ::= '{' Type (',' Type)* '}'
Chris Lattnerdf986172009-01-02 07:01:27 +00001884/// ::= '<' '{' '}' '>'
Chris Lattner1afcace2011-07-09 17:41:24 +00001885/// ::= '<' '{' Type (',' Type)* '}' '>'
1886bool LLParser::ParseStructBody(SmallVectorImpl<Type*> &Body) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001887 assert(Lex.getKind() == lltok::lbrace);
1888 Lex.Lex(); // Consume the '{'
Daniel Dunbara279bc32009-09-20 02:20:51 +00001889
Chris Lattner1afcace2011-07-09 17:41:24 +00001890 // Handle the empty struct.
1891 if (EatIfPresent(lltok::rbrace))
Chris Lattnerdf986172009-01-02 07:01:27 +00001892 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00001893
Chris Lattnera9a9e072009-03-09 04:49:14 +00001894 LocTy EltTyLoc = Lex.getLoc();
Chris Lattner1afcace2011-07-09 17:41:24 +00001895 Type *Ty = 0;
1896 if (ParseType(Ty)) return true;
1897 Body.push_back(Ty);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001898
Chris Lattner1afcace2011-07-09 17:41:24 +00001899 if (!StructType::isValidElementType(Ty))
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001900 return Error(EltTyLoc, "invalid element type for struct");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001901
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001902 while (EatIfPresent(lltok::comma)) {
Chris Lattnera9a9e072009-03-09 04:49:14 +00001903 EltTyLoc = Lex.getLoc();
Chris Lattner1afcace2011-07-09 17:41:24 +00001904 if (ParseType(Ty)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001905
Chris Lattner1afcace2011-07-09 17:41:24 +00001906 if (!StructType::isValidElementType(Ty))
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001907 return Error(EltTyLoc, "invalid element type for struct");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001908
Chris Lattner1afcace2011-07-09 17:41:24 +00001909 Body.push_back(Ty);
Chris Lattnerdf986172009-01-02 07:01:27 +00001910 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001911
Chris Lattner1afcace2011-07-09 17:41:24 +00001912 return ParseToken(lltok::rbrace, "expected '}' at end of struct");
Chris Lattnerdf986172009-01-02 07:01:27 +00001913}
1914
1915/// ParseArrayVectorType - Parse an array or vector type, assuming the first
1916/// token has already been consumed.
Chris Lattner1afcace2011-07-09 17:41:24 +00001917/// Type
Chris Lattnerdf986172009-01-02 07:01:27 +00001918/// ::= '[' APSINTVAL 'x' Types ']'
1919/// ::= '<' APSINTVAL 'x' Types '>'
Chris Lattner1afcace2011-07-09 17:41:24 +00001920bool LLParser::ParseArrayVectorType(Type *&Result, bool isVector) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001921 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned() ||
1922 Lex.getAPSIntVal().getBitWidth() > 64)
1923 return TokError("expected number in address space");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001924
Chris Lattnerdf986172009-01-02 07:01:27 +00001925 LocTy SizeLoc = Lex.getLoc();
1926 uint64_t Size = Lex.getAPSIntVal().getZExtValue();
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001927 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +00001928
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001929 if (ParseToken(lltok::kw_x, "expected 'x' after element count"))
1930 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00001931
1932 LocTy TypeLoc = Lex.getLoc();
Chris Lattner1afcace2011-07-09 17:41:24 +00001933 Type *EltTy = 0;
1934 if (ParseType(EltTy)) return true;
Chris Lattnera9a9e072009-03-09 04:49:14 +00001935
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001936 if (ParseToken(isVector ? lltok::greater : lltok::rsquare,
1937 "expected end of sequential type"))
1938 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001939
Chris Lattnerdf986172009-01-02 07:01:27 +00001940 if (isVector) {
Chris Lattner452e2622009-02-28 18:12:41 +00001941 if (Size == 0)
1942 return Error(SizeLoc, "zero element vector is illegal");
Chris Lattnerdf986172009-01-02 07:01:27 +00001943 if ((unsigned)Size != Size)
1944 return Error(SizeLoc, "size too large for vector");
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001945 if (!VectorType::isValidElementType(EltTy))
Duncan Sands2333e292012-11-13 12:59:33 +00001946 return Error(TypeLoc, "invalid vector element type");
Owen Andersondebcb012009-07-29 22:17:13 +00001947 Result = VectorType::get(EltTy, unsigned(Size));
Chris Lattnerdf986172009-01-02 07:01:27 +00001948 } else {
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001949 if (!ArrayType::isValidElementType(EltTy))
Chris Lattnerdf986172009-01-02 07:01:27 +00001950 return Error(TypeLoc, "invalid array element type");
Chris Lattner1afcace2011-07-09 17:41:24 +00001951 Result = ArrayType::get(EltTy, Size);
Chris Lattnerdf986172009-01-02 07:01:27 +00001952 }
1953 return false;
1954}
1955
1956//===----------------------------------------------------------------------===//
1957// Function Semantic Analysis.
1958//===----------------------------------------------------------------------===//
1959
Chris Lattner09d9ef42009-10-28 03:39:23 +00001960LLParser::PerFunctionState::PerFunctionState(LLParser &p, Function &f,
1961 int functionNumber)
1962 : P(p), F(f), FunctionNumber(functionNumber) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001963
1964 // Insert unnamed arguments into the NumberedVals list.
1965 for (Function::arg_iterator AI = F.arg_begin(), E = F.arg_end();
1966 AI != E; ++AI)
1967 if (!AI->hasName())
1968 NumberedVals.push_back(AI);
1969}
1970
1971LLParser::PerFunctionState::~PerFunctionState() {
1972 // If there were any forward referenced non-basicblock values, delete them.
1973 for (std::map<std::string, std::pair<Value*, LocTy> >::iterator
1974 I = ForwardRefVals.begin(), E = ForwardRefVals.end(); I != E; ++I)
1975 if (!isa<BasicBlock>(I->second.first)) {
Owen Andersonb43eae72009-07-02 17:04:01 +00001976 I->second.first->replaceAllUsesWith(
Owen Anderson9e9a0d52009-07-30 23:03:37 +00001977 UndefValue::get(I->second.first->getType()));
Chris Lattnerdf986172009-01-02 07:01:27 +00001978 delete I->second.first;
1979 I->second.first = 0;
1980 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001981
Chris Lattnerdf986172009-01-02 07:01:27 +00001982 for (std::map<unsigned, std::pair<Value*, LocTy> >::iterator
1983 I = ForwardRefValIDs.begin(), E = ForwardRefValIDs.end(); I != E; ++I)
1984 if (!isa<BasicBlock>(I->second.first)) {
Owen Andersonb43eae72009-07-02 17:04:01 +00001985 I->second.first->replaceAllUsesWith(
Owen Anderson9e9a0d52009-07-30 23:03:37 +00001986 UndefValue::get(I->second.first->getType()));
Chris Lattnerdf986172009-01-02 07:01:27 +00001987 delete I->second.first;
1988 I->second.first = 0;
1989 }
1990}
1991
Chris Lattner09d9ef42009-10-28 03:39:23 +00001992bool LLParser::PerFunctionState::FinishFunction() {
1993 // Check to see if someone took the address of labels in this block.
1994 if (!P.ForwardRefBlockAddresses.empty()) {
1995 ValID FunctionID;
1996 if (!F.getName().empty()) {
1997 FunctionID.Kind = ValID::t_GlobalName;
1998 FunctionID.StrVal = F.getName();
1999 } else {
2000 FunctionID.Kind = ValID::t_GlobalID;
2001 FunctionID.UIntVal = FunctionNumber;
2002 }
Michael Ilseman407a6162012-11-15 22:34:00 +00002003
Chris Lattner09d9ef42009-10-28 03:39:23 +00002004 std::map<ValID, std::vector<std::pair<ValID, GlobalValue*> > >::iterator
2005 FRBAI = P.ForwardRefBlockAddresses.find(FunctionID);
2006 if (FRBAI != P.ForwardRefBlockAddresses.end()) {
2007 // Resolve all these references.
2008 if (P.ResolveForwardRefBlockAddresses(&F, FRBAI->second, this))
2009 return true;
Michael Ilseman407a6162012-11-15 22:34:00 +00002010
Chris Lattner09d9ef42009-10-28 03:39:23 +00002011 P.ForwardRefBlockAddresses.erase(FRBAI);
2012 }
2013 }
Michael Ilseman407a6162012-11-15 22:34:00 +00002014
Chris Lattnerdf986172009-01-02 07:01:27 +00002015 if (!ForwardRefVals.empty())
2016 return P.Error(ForwardRefVals.begin()->second.second,
2017 "use of undefined value '%" + ForwardRefVals.begin()->first +
2018 "'");
2019 if (!ForwardRefValIDs.empty())
2020 return P.Error(ForwardRefValIDs.begin()->second.second,
2021 "use of undefined value '%" +
Benjamin Kramerd1e17032010-09-27 17:42:11 +00002022 Twine(ForwardRefValIDs.begin()->first) + "'");
Chris Lattnerdf986172009-01-02 07:01:27 +00002023 return false;
2024}
2025
2026
2027/// GetVal - Get a value with the specified name or ID, creating a
2028/// forward reference record if needed. This can return null if the value
2029/// exists but does not have the right type.
2030Value *LLParser::PerFunctionState::GetVal(const std::string &Name,
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002031 Type *Ty, LocTy Loc) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002032 // Look this name up in the normal function symbol table.
2033 Value *Val = F.getValueSymbolTable().lookup(Name);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002034
Chris Lattnerdf986172009-01-02 07:01:27 +00002035 // If this is a forward reference for the value, see if we already created a
2036 // forward ref record.
2037 if (Val == 0) {
2038 std::map<std::string, std::pair<Value*, LocTy> >::iterator
2039 I = ForwardRefVals.find(Name);
2040 if (I != ForwardRefVals.end())
2041 Val = I->second.first;
2042 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002043
Chris Lattnerdf986172009-01-02 07:01:27 +00002044 // If we have the value in the symbol table or fwd-ref table, return it.
2045 if (Val) {
2046 if (Val->getType() == Ty) return Val;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00002047 if (Ty->isLabelTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002048 P.Error(Loc, "'%" + Name + "' is not a basic block");
2049 else
2050 P.Error(Loc, "'%" + Name + "' defined with type '" +
Chris Lattner0cd0d882011-06-18 21:18:23 +00002051 getTypeString(Val->getType()) + "'");
Chris Lattnerdf986172009-01-02 07:01:27 +00002052 return 0;
2053 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002054
Chris Lattnerdf986172009-01-02 07:01:27 +00002055 // Don't make placeholders with invalid type.
Chris Lattner1afcace2011-07-09 17:41:24 +00002056 if (!Ty->isFirstClassType() && !Ty->isLabelTy()) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002057 P.Error(Loc, "invalid use of a non-first-class type");
2058 return 0;
2059 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002060
Chris Lattnerdf986172009-01-02 07:01:27 +00002061 // Otherwise, create a new forward reference for this value and remember it.
2062 Value *FwdVal;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00002063 if (Ty->isLabelTy())
Owen Anderson1d0be152009-08-13 21:58:54 +00002064 FwdVal = BasicBlock::Create(F.getContext(), Name, &F);
Chris Lattnerdf986172009-01-02 07:01:27 +00002065 else
2066 FwdVal = new Argument(Ty, Name);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002067
Chris Lattnerdf986172009-01-02 07:01:27 +00002068 ForwardRefVals[Name] = std::make_pair(FwdVal, Loc);
2069 return FwdVal;
2070}
2071
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002072Value *LLParser::PerFunctionState::GetVal(unsigned ID, Type *Ty,
Chris Lattnerdf986172009-01-02 07:01:27 +00002073 LocTy Loc) {
2074 // Look this name up in the normal function symbol table.
2075 Value *Val = ID < NumberedVals.size() ? NumberedVals[ID] : 0;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002076
Chris Lattnerdf986172009-01-02 07:01:27 +00002077 // If this is a forward reference for the value, see if we already created a
2078 // forward ref record.
2079 if (Val == 0) {
2080 std::map<unsigned, std::pair<Value*, LocTy> >::iterator
2081 I = ForwardRefValIDs.find(ID);
2082 if (I != ForwardRefValIDs.end())
2083 Val = I->second.first;
2084 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002085
Chris Lattnerdf986172009-01-02 07:01:27 +00002086 // If we have the value in the symbol table or fwd-ref table, return it.
2087 if (Val) {
2088 if (Val->getType() == Ty) return Val;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00002089 if (Ty->isLabelTy())
Benjamin Kramerd1e17032010-09-27 17:42:11 +00002090 P.Error(Loc, "'%" + Twine(ID) + "' is not a basic block");
Chris Lattnerdf986172009-01-02 07:01:27 +00002091 else
Benjamin Kramerd1e17032010-09-27 17:42:11 +00002092 P.Error(Loc, "'%" + Twine(ID) + "' defined with type '" +
Chris Lattner0cd0d882011-06-18 21:18:23 +00002093 getTypeString(Val->getType()) + "'");
Chris Lattnerdf986172009-01-02 07:01:27 +00002094 return 0;
2095 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002096
Chris Lattner1afcace2011-07-09 17:41:24 +00002097 if (!Ty->isFirstClassType() && !Ty->isLabelTy()) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002098 P.Error(Loc, "invalid use of a non-first-class type");
2099 return 0;
2100 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002101
Chris Lattnerdf986172009-01-02 07:01:27 +00002102 // Otherwise, create a new forward reference for this value and remember it.
2103 Value *FwdVal;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00002104 if (Ty->isLabelTy())
Owen Anderson1d0be152009-08-13 21:58:54 +00002105 FwdVal = BasicBlock::Create(F.getContext(), "", &F);
Chris Lattnerdf986172009-01-02 07:01:27 +00002106 else
2107 FwdVal = new Argument(Ty);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002108
Chris Lattnerdf986172009-01-02 07:01:27 +00002109 ForwardRefValIDs[ID] = std::make_pair(FwdVal, Loc);
2110 return FwdVal;
2111}
2112
2113/// SetInstName - After an instruction is parsed and inserted into its
2114/// basic block, this installs its name.
2115bool LLParser::PerFunctionState::SetInstName(int NameID,
2116 const std::string &NameStr,
2117 LocTy NameLoc, Instruction *Inst) {
2118 // If this instruction has void type, it cannot have a name or ID specified.
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00002119 if (Inst->getType()->isVoidTy()) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002120 if (NameID != -1 || !NameStr.empty())
2121 return P.Error(NameLoc, "instructions returning void cannot have a name");
2122 return false;
2123 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002124
Chris Lattnerdf986172009-01-02 07:01:27 +00002125 // If this was a numbered instruction, verify that the instruction is the
2126 // expected value and resolve any forward references.
2127 if (NameStr.empty()) {
2128 // If neither a name nor an ID was specified, just use the next ID.
2129 if (NameID == -1)
2130 NameID = NumberedVals.size();
Daniel Dunbara279bc32009-09-20 02:20:51 +00002131
Chris Lattnerdf986172009-01-02 07:01:27 +00002132 if (unsigned(NameID) != NumberedVals.size())
2133 return P.Error(NameLoc, "instruction expected to be numbered '%" +
Benjamin Kramerd1e17032010-09-27 17:42:11 +00002134 Twine(NumberedVals.size()) + "'");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002135
Chris Lattnerdf986172009-01-02 07:01:27 +00002136 std::map<unsigned, std::pair<Value*, LocTy> >::iterator FI =
2137 ForwardRefValIDs.find(NameID);
2138 if (FI != ForwardRefValIDs.end()) {
2139 if (FI->second.first->getType() != Inst->getType())
Daniel Dunbara279bc32009-09-20 02:20:51 +00002140 return P.Error(NameLoc, "instruction forward referenced with type '" +
Chris Lattner0cd0d882011-06-18 21:18:23 +00002141 getTypeString(FI->second.first->getType()) + "'");
Chris Lattnerdf986172009-01-02 07:01:27 +00002142 FI->second.first->replaceAllUsesWith(Inst);
Nuno Lopes2b4f28e2009-09-02 15:02:57 +00002143 delete FI->second.first;
Chris Lattnerdf986172009-01-02 07:01:27 +00002144 ForwardRefValIDs.erase(FI);
2145 }
2146
2147 NumberedVals.push_back(Inst);
2148 return false;
2149 }
2150
2151 // Otherwise, the instruction had a name. Resolve forward refs and set it.
2152 std::map<std::string, std::pair<Value*, LocTy> >::iterator
2153 FI = ForwardRefVals.find(NameStr);
2154 if (FI != ForwardRefVals.end()) {
2155 if (FI->second.first->getType() != Inst->getType())
Daniel Dunbara279bc32009-09-20 02:20:51 +00002156 return P.Error(NameLoc, "instruction forward referenced with type '" +
Chris Lattner0cd0d882011-06-18 21:18:23 +00002157 getTypeString(FI->second.first->getType()) + "'");
Chris Lattnerdf986172009-01-02 07:01:27 +00002158 FI->second.first->replaceAllUsesWith(Inst);
Nuno Lopes531552a2009-09-02 14:22:03 +00002159 delete FI->second.first;
Chris Lattnerdf986172009-01-02 07:01:27 +00002160 ForwardRefVals.erase(FI);
2161 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002162
Chris Lattnerdf986172009-01-02 07:01:27 +00002163 // Set the name on the instruction.
2164 Inst->setName(NameStr);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002165
Benjamin Krameraf812352010-10-16 11:28:23 +00002166 if (Inst->getName() != NameStr)
Daniel Dunbara279bc32009-09-20 02:20:51 +00002167 return P.Error(NameLoc, "multiple definition of local value named '" +
Chris Lattnerdf986172009-01-02 07:01:27 +00002168 NameStr + "'");
2169 return false;
2170}
2171
2172/// GetBB - Get a basic block with the specified name or ID, creating a
2173/// forward reference record if needed.
2174BasicBlock *LLParser::PerFunctionState::GetBB(const std::string &Name,
2175 LocTy Loc) {
Owen Anderson1d0be152009-08-13 21:58:54 +00002176 return cast_or_null<BasicBlock>(GetVal(Name,
2177 Type::getLabelTy(F.getContext()), Loc));
Chris Lattnerdf986172009-01-02 07:01:27 +00002178}
2179
2180BasicBlock *LLParser::PerFunctionState::GetBB(unsigned ID, LocTy Loc) {
Owen Anderson1d0be152009-08-13 21:58:54 +00002181 return cast_or_null<BasicBlock>(GetVal(ID,
2182 Type::getLabelTy(F.getContext()), Loc));
Chris Lattnerdf986172009-01-02 07:01:27 +00002183}
2184
2185/// DefineBB - Define the specified basic block, which is either named or
2186/// unnamed. If there is an error, this returns null otherwise it returns
2187/// the block being defined.
2188BasicBlock *LLParser::PerFunctionState::DefineBB(const std::string &Name,
2189 LocTy Loc) {
2190 BasicBlock *BB;
2191 if (Name.empty())
2192 BB = GetBB(NumberedVals.size(), Loc);
2193 else
2194 BB = GetBB(Name, Loc);
2195 if (BB == 0) return 0; // Already diagnosed error.
Daniel Dunbara279bc32009-09-20 02:20:51 +00002196
Chris Lattnerdf986172009-01-02 07:01:27 +00002197 // Move the block to the end of the function. Forward ref'd blocks are
2198 // inserted wherever they happen to be referenced.
2199 F.getBasicBlockList().splice(F.end(), F.getBasicBlockList(), BB);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002200
Chris Lattnerdf986172009-01-02 07:01:27 +00002201 // Remove the block from forward ref sets.
2202 if (Name.empty()) {
2203 ForwardRefValIDs.erase(NumberedVals.size());
2204 NumberedVals.push_back(BB);
2205 } else {
2206 // BB forward references are already in the function symbol table.
2207 ForwardRefVals.erase(Name);
2208 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002209
Chris Lattnerdf986172009-01-02 07:01:27 +00002210 return BB;
2211}
2212
2213//===----------------------------------------------------------------------===//
2214// Constants.
2215//===----------------------------------------------------------------------===//
2216
2217/// ParseValID - Parse an abstract value that doesn't necessarily have a
2218/// type implied. For example, if we parse "4" we don't know what integer type
2219/// it has. The value will later be combined with its type and checked for
Victor Hernandez24e64df2010-01-10 07:14:18 +00002220/// sanity. PFS is used to convert function-local operands of metadata (since
2221/// metadata operands are not just parsed here but also converted to values).
2222/// PFS can be null when we are not parsing metadata values inside a function.
Victor Hernandezbf170d42010-01-05 22:22:14 +00002223bool LLParser::ParseValID(ValID &ID, PerFunctionState *PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002224 ID.Loc = Lex.getLoc();
2225 switch (Lex.getKind()) {
2226 default: return TokError("expected value token");
2227 case lltok::GlobalID: // @42
2228 ID.UIntVal = Lex.getUIntVal();
2229 ID.Kind = ValID::t_GlobalID;
2230 break;
2231 case lltok::GlobalVar: // @foo
2232 ID.StrVal = Lex.getStrVal();
2233 ID.Kind = ValID::t_GlobalName;
2234 break;
2235 case lltok::LocalVarID: // %42
2236 ID.UIntVal = Lex.getUIntVal();
2237 ID.Kind = ValID::t_LocalID;
2238 break;
2239 case lltok::LocalVar: // %foo
Chris Lattnerdf986172009-01-02 07:01:27 +00002240 ID.StrVal = Lex.getStrVal();
2241 ID.Kind = ValID::t_LocalName;
2242 break;
Dan Gohman83448032010-07-14 18:26:50 +00002243 case lltok::exclaim: // !42, !{...}, or !"foo"
2244 return ParseMetadataValue(ID, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00002245 case lltok::APSInt:
Daniel Dunbara279bc32009-09-20 02:20:51 +00002246 ID.APSIntVal = Lex.getAPSIntVal();
Chris Lattnerdf986172009-01-02 07:01:27 +00002247 ID.Kind = ValID::t_APSInt;
2248 break;
2249 case lltok::APFloat:
2250 ID.APFloatVal = Lex.getAPFloatVal();
2251 ID.Kind = ValID::t_APFloat;
2252 break;
2253 case lltok::kw_true:
Owen Anderson5defacc2009-07-31 17:39:07 +00002254 ID.ConstantVal = ConstantInt::getTrue(Context);
Chris Lattnerdf986172009-01-02 07:01:27 +00002255 ID.Kind = ValID::t_Constant;
2256 break;
2257 case lltok::kw_false:
Owen Anderson5defacc2009-07-31 17:39:07 +00002258 ID.ConstantVal = ConstantInt::getFalse(Context);
Chris Lattnerdf986172009-01-02 07:01:27 +00002259 ID.Kind = ValID::t_Constant;
2260 break;
2261 case lltok::kw_null: ID.Kind = ValID::t_Null; break;
2262 case lltok::kw_undef: ID.Kind = ValID::t_Undef; break;
2263 case lltok::kw_zeroinitializer: ID.Kind = ValID::t_Zero; break;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002264
Chris Lattnerdf986172009-01-02 07:01:27 +00002265 case lltok::lbrace: {
2266 // ValID ::= '{' ConstVector '}'
2267 Lex.Lex();
2268 SmallVector<Constant*, 16> Elts;
2269 if (ParseGlobalValueVector(Elts) ||
2270 ParseToken(lltok::rbrace, "expected end of struct constant"))
2271 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002272
Chris Lattner1afcace2011-07-09 17:41:24 +00002273 ID.ConstantStructElts = new Constant*[Elts.size()];
2274 ID.UIntVal = Elts.size();
2275 memcpy(ID.ConstantStructElts, Elts.data(), Elts.size()*sizeof(Elts[0]));
2276 ID.Kind = ValID::t_ConstantStruct;
Chris Lattnerdf986172009-01-02 07:01:27 +00002277 return false;
2278 }
2279 case lltok::less: {
2280 // ValID ::= '<' ConstVector '>' --> Vector.
2281 // ValID ::= '<' '{' ConstVector '}' '>' --> Packed Struct.
2282 Lex.Lex();
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002283 bool isPackedStruct = EatIfPresent(lltok::lbrace);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002284
Chris Lattnerdf986172009-01-02 07:01:27 +00002285 SmallVector<Constant*, 16> Elts;
2286 LocTy FirstEltLoc = Lex.getLoc();
2287 if (ParseGlobalValueVector(Elts) ||
2288 (isPackedStruct &&
2289 ParseToken(lltok::rbrace, "expected end of packed struct")) ||
2290 ParseToken(lltok::greater, "expected end of constant"))
2291 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002292
Chris Lattnerdf986172009-01-02 07:01:27 +00002293 if (isPackedStruct) {
Chris Lattner1afcace2011-07-09 17:41:24 +00002294 ID.ConstantStructElts = new Constant*[Elts.size()];
2295 memcpy(ID.ConstantStructElts, Elts.data(), Elts.size()*sizeof(Elts[0]));
2296 ID.UIntVal = Elts.size();
2297 ID.Kind = ValID::t_PackedConstantStruct;
Chris Lattnerdf986172009-01-02 07:01:27 +00002298 return false;
2299 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002300
Chris Lattnerdf986172009-01-02 07:01:27 +00002301 if (Elts.empty())
2302 return Error(ID.Loc, "constant vector must not be empty");
2303
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00002304 if (!Elts[0]->getType()->isIntegerTy() &&
Nadav Rotem16087692011-12-05 06:29:09 +00002305 !Elts[0]->getType()->isFloatingPointTy() &&
2306 !Elts[0]->getType()->isPointerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002307 return Error(FirstEltLoc,
Nadav Rotem16087692011-12-05 06:29:09 +00002308 "vector elements must have integer, pointer or floating point type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002309
Chris Lattnerdf986172009-01-02 07:01:27 +00002310 // Verify that all the vector elements have the same type.
2311 for (unsigned i = 1, e = Elts.size(); i != e; ++i)
2312 if (Elts[i]->getType() != Elts[0]->getType())
2313 return Error(FirstEltLoc,
Benjamin Kramerd1e17032010-09-27 17:42:11 +00002314 "vector element #" + Twine(i) +
Chris Lattner0cd0d882011-06-18 21:18:23 +00002315 " is not of type '" + getTypeString(Elts[0]->getType()));
Daniel Dunbara279bc32009-09-20 02:20:51 +00002316
Chris Lattner2ca5c862011-02-15 00:14:00 +00002317 ID.ConstantVal = ConstantVector::get(Elts);
Chris Lattnerdf986172009-01-02 07:01:27 +00002318 ID.Kind = ValID::t_Constant;
2319 return false;
2320 }
2321 case lltok::lsquare: { // Array Constant
2322 Lex.Lex();
2323 SmallVector<Constant*, 16> Elts;
2324 LocTy FirstEltLoc = Lex.getLoc();
2325 if (ParseGlobalValueVector(Elts) ||
2326 ParseToken(lltok::rsquare, "expected end of array constant"))
2327 return true;
2328
2329 // Handle empty element.
2330 if (Elts.empty()) {
2331 // Use undef instead of an array because it's inconvenient to determine
2332 // the element type at this point, there being no elements to examine.
Chris Lattner081b5052009-01-05 07:52:51 +00002333 ID.Kind = ValID::t_EmptyArray;
Chris Lattnerdf986172009-01-02 07:01:27 +00002334 return false;
2335 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002336
Chris Lattnerdf986172009-01-02 07:01:27 +00002337 if (!Elts[0]->getType()->isFirstClassType())
Daniel Dunbara279bc32009-09-20 02:20:51 +00002338 return Error(FirstEltLoc, "invalid array element type: " +
Chris Lattner0cd0d882011-06-18 21:18:23 +00002339 getTypeString(Elts[0]->getType()));
Daniel Dunbara279bc32009-09-20 02:20:51 +00002340
Owen Andersondebcb012009-07-29 22:17:13 +00002341 ArrayType *ATy = ArrayType::get(Elts[0]->getType(), Elts.size());
Daniel Dunbara279bc32009-09-20 02:20:51 +00002342
Chris Lattnerdf986172009-01-02 07:01:27 +00002343 // Verify all elements are correct type!
Chris Lattner6d6b3cc2009-01-02 08:49:06 +00002344 for (unsigned i = 0, e = Elts.size(); i != e; ++i) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002345 if (Elts[i]->getType() != Elts[0]->getType())
2346 return Error(FirstEltLoc,
Benjamin Kramerd1e17032010-09-27 17:42:11 +00002347 "array element #" + Twine(i) +
Chris Lattner0cd0d882011-06-18 21:18:23 +00002348 " is not of type '" + getTypeString(Elts[0]->getType()));
Chris Lattnerdf986172009-01-02 07:01:27 +00002349 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002350
Jay Foad26701082011-06-22 09:24:39 +00002351 ID.ConstantVal = ConstantArray::get(ATy, Elts);
Chris Lattnerdf986172009-01-02 07:01:27 +00002352 ID.Kind = ValID::t_Constant;
2353 return false;
2354 }
2355 case lltok::kw_c: // c "foo"
2356 Lex.Lex();
Chris Lattner18c7f802012-02-05 02:29:43 +00002357 ID.ConstantVal = ConstantDataArray::getString(Context, Lex.getStrVal(),
2358 false);
Chris Lattnerdf986172009-01-02 07:01:27 +00002359 if (ParseToken(lltok::StringConstant, "expected string")) return true;
2360 ID.Kind = ValID::t_Constant;
2361 return false;
2362
2363 case lltok::kw_asm: {
Chad Rosier27d844f2013-02-14 20:44:07 +00002364 // ValID ::= 'asm' SideEffect? AlignStack? IntelDialect? STRINGCONSTANT ','
2365 // STRINGCONSTANT
Chad Rosier581600b2012-09-05 19:00:49 +00002366 bool HasSideEffect, AlignStack, AsmDialect;
Chris Lattnerdf986172009-01-02 07:01:27 +00002367 Lex.Lex();
2368 if (ParseOptionalToken(lltok::kw_sideeffect, HasSideEffect) ||
Dale Johannesen8ba2d5b2009-10-21 23:28:00 +00002369 ParseOptionalToken(lltok::kw_alignstack, AlignStack) ||
Chad Rosier581600b2012-09-05 19:00:49 +00002370 ParseOptionalToken(lltok::kw_inteldialect, AsmDialect) ||
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002371 ParseStringConstant(ID.StrVal) ||
2372 ParseToken(lltok::comma, "expected comma in inline asm expression") ||
Chris Lattnerdf986172009-01-02 07:01:27 +00002373 ParseToken(lltok::StringConstant, "expected constraint string"))
2374 return true;
2375 ID.StrVal2 = Lex.getStrVal();
Chad Rosier36547342012-09-05 00:08:17 +00002376 ID.UIntVal = unsigned(HasSideEffect) | (unsigned(AlignStack)<<1) |
Chad Rosier581600b2012-09-05 19:00:49 +00002377 (unsigned(AsmDialect)<<2);
Chris Lattnerdf986172009-01-02 07:01:27 +00002378 ID.Kind = ValID::t_InlineAsm;
2379 return false;
2380 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002381
Chris Lattner09d9ef42009-10-28 03:39:23 +00002382 case lltok::kw_blockaddress: {
2383 // ValID ::= 'blockaddress' '(' @foo ',' %bar ')'
2384 Lex.Lex();
2385
2386 ValID Fn, Label;
Michael Ilseman407a6162012-11-15 22:34:00 +00002387
Chris Lattner09d9ef42009-10-28 03:39:23 +00002388 if (ParseToken(lltok::lparen, "expected '(' in block address expression") ||
2389 ParseValID(Fn) ||
2390 ParseToken(lltok::comma, "expected comma in block address expression")||
2391 ParseValID(Label) ||
2392 ParseToken(lltok::rparen, "expected ')' in block address expression"))
2393 return true;
Michael Ilseman407a6162012-11-15 22:34:00 +00002394
Chris Lattner09d9ef42009-10-28 03:39:23 +00002395 if (Fn.Kind != ValID::t_GlobalID && Fn.Kind != ValID::t_GlobalName)
2396 return Error(Fn.Loc, "expected function name in blockaddress");
Chris Lattnercdfc9402009-11-01 01:27:45 +00002397 if (Label.Kind != ValID::t_LocalID && Label.Kind != ValID::t_LocalName)
Chris Lattner09d9ef42009-10-28 03:39:23 +00002398 return Error(Label.Loc, "expected basic block name in blockaddress");
Michael Ilseman407a6162012-11-15 22:34:00 +00002399
Chris Lattner09d9ef42009-10-28 03:39:23 +00002400 // Make a global variable as a placeholder for this reference.
2401 GlobalVariable *FwdRef = new GlobalVariable(*M, Type::getInt8Ty(Context),
2402 false, GlobalValue::InternalLinkage,
2403 0, "");
2404 ForwardRefBlockAddresses[Fn].push_back(std::make_pair(Label, FwdRef));
2405 ID.ConstantVal = FwdRef;
2406 ID.Kind = ValID::t_Constant;
2407 return false;
2408 }
Michael Ilseman407a6162012-11-15 22:34:00 +00002409
Chris Lattnerdf986172009-01-02 07:01:27 +00002410 case lltok::kw_trunc:
2411 case lltok::kw_zext:
2412 case lltok::kw_sext:
2413 case lltok::kw_fptrunc:
2414 case lltok::kw_fpext:
2415 case lltok::kw_bitcast:
2416 case lltok::kw_uitofp:
2417 case lltok::kw_sitofp:
2418 case lltok::kw_fptoui:
Daniel Dunbara279bc32009-09-20 02:20:51 +00002419 case lltok::kw_fptosi:
Chris Lattnerdf986172009-01-02 07:01:27 +00002420 case lltok::kw_inttoptr:
Daniel Dunbara279bc32009-09-20 02:20:51 +00002421 case lltok::kw_ptrtoint: {
Chris Lattnerdf986172009-01-02 07:01:27 +00002422 unsigned Opc = Lex.getUIntVal();
Chris Lattner1afcace2011-07-09 17:41:24 +00002423 Type *DestTy = 0;
Chris Lattnerdf986172009-01-02 07:01:27 +00002424 Constant *SrcVal;
2425 Lex.Lex();
2426 if (ParseToken(lltok::lparen, "expected '(' after constantexpr cast") ||
2427 ParseGlobalTypeAndValue(SrcVal) ||
Dan Gohman24b108b2009-06-15 21:52:11 +00002428 ParseToken(lltok::kw_to, "expected 'to' in constantexpr cast") ||
Chris Lattnerdf986172009-01-02 07:01:27 +00002429 ParseType(DestTy) ||
2430 ParseToken(lltok::rparen, "expected ')' at end of constantexpr cast"))
2431 return true;
2432 if (!CastInst::castIsValid((Instruction::CastOps)Opc, SrcVal, DestTy))
2433 return Error(ID.Loc, "invalid cast opcode for cast from '" +
Chris Lattner0cd0d882011-06-18 21:18:23 +00002434 getTypeString(SrcVal->getType()) + "' to '" +
2435 getTypeString(DestTy) + "'");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002436 ID.ConstantVal = ConstantExpr::getCast((Instruction::CastOps)Opc,
Owen Andersonfba933c2009-07-01 23:57:11 +00002437 SrcVal, DestTy);
Chris Lattnerdf986172009-01-02 07:01:27 +00002438 ID.Kind = ValID::t_Constant;
2439 return false;
2440 }
2441 case lltok::kw_extractvalue: {
2442 Lex.Lex();
2443 Constant *Val;
2444 SmallVector<unsigned, 4> Indices;
2445 if (ParseToken(lltok::lparen, "expected '(' in extractvalue constantexpr")||
2446 ParseGlobalTypeAndValue(Val) ||
2447 ParseIndexList(Indices) ||
2448 ParseToken(lltok::rparen, "expected ')' in extractvalue constantexpr"))
2449 return true;
Devang Patele8bc45a2009-11-03 19:06:07 +00002450
Chris Lattnerfdfeb692010-02-12 20:49:41 +00002451 if (!Val->getType()->isAggregateType())
2452 return Error(ID.Loc, "extractvalue operand must be aggregate type");
Jay Foadfc6d3a42011-07-13 10:26:04 +00002453 if (!ExtractValueInst::getIndexedType(Val->getType(), Indices))
Chris Lattnerdf986172009-01-02 07:01:27 +00002454 return Error(ID.Loc, "invalid indices for extractvalue");
Jay Foadfc6d3a42011-07-13 10:26:04 +00002455 ID.ConstantVal = ConstantExpr::getExtractValue(Val, Indices);
Chris Lattnerdf986172009-01-02 07:01:27 +00002456 ID.Kind = ValID::t_Constant;
2457 return false;
2458 }
2459 case lltok::kw_insertvalue: {
2460 Lex.Lex();
2461 Constant *Val0, *Val1;
2462 SmallVector<unsigned, 4> Indices;
2463 if (ParseToken(lltok::lparen, "expected '(' in insertvalue constantexpr")||
2464 ParseGlobalTypeAndValue(Val0) ||
2465 ParseToken(lltok::comma, "expected comma in insertvalue constantexpr")||
2466 ParseGlobalTypeAndValue(Val1) ||
2467 ParseIndexList(Indices) ||
2468 ParseToken(lltok::rparen, "expected ')' in insertvalue constantexpr"))
2469 return true;
Chris Lattnerfdfeb692010-02-12 20:49:41 +00002470 if (!Val0->getType()->isAggregateType())
2471 return Error(ID.Loc, "insertvalue operand must be aggregate type");
Jay Foadfc6d3a42011-07-13 10:26:04 +00002472 if (!ExtractValueInst::getIndexedType(Val0->getType(), Indices))
Chris Lattnerdf986172009-01-02 07:01:27 +00002473 return Error(ID.Loc, "invalid indices for insertvalue");
Jay Foadfc6d3a42011-07-13 10:26:04 +00002474 ID.ConstantVal = ConstantExpr::getInsertValue(Val0, Val1, Indices);
Chris Lattnerdf986172009-01-02 07:01:27 +00002475 ID.Kind = ValID::t_Constant;
2476 return false;
2477 }
2478 case lltok::kw_icmp:
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00002479 case lltok::kw_fcmp: {
Chris Lattnerdf986172009-01-02 07:01:27 +00002480 unsigned PredVal, Opc = Lex.getUIntVal();
2481 Constant *Val0, *Val1;
2482 Lex.Lex();
2483 if (ParseCmpPredicate(PredVal, Opc) ||
2484 ParseToken(lltok::lparen, "expected '(' in compare constantexpr") ||
2485 ParseGlobalTypeAndValue(Val0) ||
2486 ParseToken(lltok::comma, "expected comma in compare constantexpr") ||
2487 ParseGlobalTypeAndValue(Val1) ||
2488 ParseToken(lltok::rparen, "expected ')' in compare constantexpr"))
2489 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002490
Chris Lattnerdf986172009-01-02 07:01:27 +00002491 if (Val0->getType() != Val1->getType())
2492 return Error(ID.Loc, "compare operands must have the same type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002493
Chris Lattnerdf986172009-01-02 07:01:27 +00002494 CmpInst::Predicate Pred = (CmpInst::Predicate)PredVal;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002495
Chris Lattnerdf986172009-01-02 07:01:27 +00002496 if (Opc == Instruction::FCmp) {
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00002497 if (!Val0->getType()->isFPOrFPVectorTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002498 return Error(ID.Loc, "fcmp requires floating point operands");
Owen Andersonbaf3c402009-07-29 18:55:55 +00002499 ID.ConstantVal = ConstantExpr::getFCmp(Pred, Val0, Val1);
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00002500 } else {
2501 assert(Opc == Instruction::ICmp && "Unexpected opcode for CmpInst!");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00002502 if (!Val0->getType()->isIntOrIntVectorTy() &&
Nadav Rotem16087692011-12-05 06:29:09 +00002503 !Val0->getType()->getScalarType()->isPointerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002504 return Error(ID.Loc, "icmp requires pointer or integer operands");
Owen Andersonbaf3c402009-07-29 18:55:55 +00002505 ID.ConstantVal = ConstantExpr::getICmp(Pred, Val0, Val1);
Chris Lattnerdf986172009-01-02 07:01:27 +00002506 }
2507 ID.Kind = ValID::t_Constant;
2508 return false;
2509 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002510
Chris Lattnerdf986172009-01-02 07:01:27 +00002511 // Binary Operators.
2512 case lltok::kw_add:
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002513 case lltok::kw_fadd:
Chris Lattnerdf986172009-01-02 07:01:27 +00002514 case lltok::kw_sub:
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002515 case lltok::kw_fsub:
Chris Lattnerdf986172009-01-02 07:01:27 +00002516 case lltok::kw_mul:
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002517 case lltok::kw_fmul:
Chris Lattnerdf986172009-01-02 07:01:27 +00002518 case lltok::kw_udiv:
2519 case lltok::kw_sdiv:
2520 case lltok::kw_fdiv:
2521 case lltok::kw_urem:
2522 case lltok::kw_srem:
Chris Lattnerf067d582011-02-07 16:40:21 +00002523 case lltok::kw_frem:
2524 case lltok::kw_shl:
2525 case lltok::kw_lshr:
2526 case lltok::kw_ashr: {
Dan Gohman59858cf2009-07-27 16:11:46 +00002527 bool NUW = false;
2528 bool NSW = false;
2529 bool Exact = false;
Chris Lattnerdf986172009-01-02 07:01:27 +00002530 unsigned Opc = Lex.getUIntVal();
2531 Constant *Val0, *Val1;
2532 Lex.Lex();
Dan Gohman59858cf2009-07-27 16:11:46 +00002533 LocTy ModifierLoc = Lex.getLoc();
Chris Lattnerf067d582011-02-07 16:40:21 +00002534 if (Opc == Instruction::Add || Opc == Instruction::Sub ||
2535 Opc == Instruction::Mul || Opc == Instruction::Shl) {
Dan Gohman59858cf2009-07-27 16:11:46 +00002536 if (EatIfPresent(lltok::kw_nuw))
2537 NUW = true;
2538 if (EatIfPresent(lltok::kw_nsw)) {
2539 NSW = true;
2540 if (EatIfPresent(lltok::kw_nuw))
2541 NUW = true;
2542 }
Chris Lattnerf067d582011-02-07 16:40:21 +00002543 } else if (Opc == Instruction::SDiv || Opc == Instruction::UDiv ||
2544 Opc == Instruction::LShr || Opc == Instruction::AShr) {
Dan Gohman59858cf2009-07-27 16:11:46 +00002545 if (EatIfPresent(lltok::kw_exact))
2546 Exact = true;
2547 }
Chris Lattnerdf986172009-01-02 07:01:27 +00002548 if (ParseToken(lltok::lparen, "expected '(' in binary constantexpr") ||
2549 ParseGlobalTypeAndValue(Val0) ||
2550 ParseToken(lltok::comma, "expected comma in binary constantexpr") ||
2551 ParseGlobalTypeAndValue(Val1) ||
2552 ParseToken(lltok::rparen, "expected ')' in binary constantexpr"))
2553 return true;
2554 if (Val0->getType() != Val1->getType())
2555 return Error(ID.Loc, "operands of constexpr must have same type");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00002556 if (!Val0->getType()->isIntOrIntVectorTy()) {
Dan Gohman59858cf2009-07-27 16:11:46 +00002557 if (NUW)
2558 return Error(ModifierLoc, "nuw only applies to integer operations");
2559 if (NSW)
2560 return Error(ModifierLoc, "nsw only applies to integer operations");
2561 }
Dan Gohman1eaac532010-05-03 22:44:19 +00002562 // Check that the type is valid for the operator.
2563 switch (Opc) {
2564 case Instruction::Add:
2565 case Instruction::Sub:
2566 case Instruction::Mul:
2567 case Instruction::UDiv:
2568 case Instruction::SDiv:
2569 case Instruction::URem:
2570 case Instruction::SRem:
Chris Lattnerf067d582011-02-07 16:40:21 +00002571 case Instruction::Shl:
2572 case Instruction::AShr:
2573 case Instruction::LShr:
Dan Gohman1eaac532010-05-03 22:44:19 +00002574 if (!Val0->getType()->isIntOrIntVectorTy())
2575 return Error(ID.Loc, "constexpr requires integer operands");
2576 break;
2577 case Instruction::FAdd:
2578 case Instruction::FSub:
2579 case Instruction::FMul:
2580 case Instruction::FDiv:
2581 case Instruction::FRem:
2582 if (!Val0->getType()->isFPOrFPVectorTy())
2583 return Error(ID.Loc, "constexpr requires fp operands");
2584 break;
2585 default: llvm_unreachable("Unknown binary operator!");
2586 }
Dan Gohmanf8dbee72009-09-07 23:54:19 +00002587 unsigned Flags = 0;
2588 if (NUW) Flags |= OverflowingBinaryOperator::NoUnsignedWrap;
2589 if (NSW) Flags |= OverflowingBinaryOperator::NoSignedWrap;
Chris Lattner35bda892011-02-06 21:44:57 +00002590 if (Exact) Flags |= PossiblyExactOperator::IsExact;
Dan Gohmanf8dbee72009-09-07 23:54:19 +00002591 Constant *C = ConstantExpr::get(Opc, Val0, Val1, Flags);
Dan Gohman59858cf2009-07-27 16:11:46 +00002592 ID.ConstantVal = C;
Chris Lattnerdf986172009-01-02 07:01:27 +00002593 ID.Kind = ValID::t_Constant;
2594 return false;
2595 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002596
Chris Lattnerdf986172009-01-02 07:01:27 +00002597 // Logical Operations
Chris Lattnerdf986172009-01-02 07:01:27 +00002598 case lltok::kw_and:
2599 case lltok::kw_or:
2600 case lltok::kw_xor: {
2601 unsigned Opc = Lex.getUIntVal();
2602 Constant *Val0, *Val1;
2603 Lex.Lex();
2604 if (ParseToken(lltok::lparen, "expected '(' in logical constantexpr") ||
2605 ParseGlobalTypeAndValue(Val0) ||
2606 ParseToken(lltok::comma, "expected comma in logical constantexpr") ||
2607 ParseGlobalTypeAndValue(Val1) ||
2608 ParseToken(lltok::rparen, "expected ')' in logical constantexpr"))
2609 return true;
2610 if (Val0->getType() != Val1->getType())
2611 return Error(ID.Loc, "operands of constexpr must have same type");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00002612 if (!Val0->getType()->isIntOrIntVectorTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002613 return Error(ID.Loc,
2614 "constexpr requires integer or integer vector operands");
Owen Andersonbaf3c402009-07-29 18:55:55 +00002615 ID.ConstantVal = ConstantExpr::get(Opc, Val0, Val1);
Chris Lattnerdf986172009-01-02 07:01:27 +00002616 ID.Kind = ValID::t_Constant;
2617 return false;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002618 }
2619
Chris Lattnerdf986172009-01-02 07:01:27 +00002620 case lltok::kw_getelementptr:
2621 case lltok::kw_shufflevector:
2622 case lltok::kw_insertelement:
2623 case lltok::kw_extractelement:
2624 case lltok::kw_select: {
2625 unsigned Opc = Lex.getUIntVal();
2626 SmallVector<Constant*, 16> Elts;
Dan Gohmandd8004d2009-07-27 21:53:46 +00002627 bool InBounds = false;
Chris Lattnerdf986172009-01-02 07:01:27 +00002628 Lex.Lex();
Dan Gohmandd8004d2009-07-27 21:53:46 +00002629 if (Opc == Instruction::GetElementPtr)
Dan Gohmandcb40a32009-07-29 15:58:36 +00002630 InBounds = EatIfPresent(lltok::kw_inbounds);
Chris Lattnerdf986172009-01-02 07:01:27 +00002631 if (ParseToken(lltok::lparen, "expected '(' in constantexpr") ||
2632 ParseGlobalValueVector(Elts) ||
2633 ParseToken(lltok::rparen, "expected ')' in constantexpr"))
2634 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002635
Chris Lattnerdf986172009-01-02 07:01:27 +00002636 if (Opc == Instruction::GetElementPtr) {
Nadav Rotem16087692011-12-05 06:29:09 +00002637 if (Elts.size() == 0 ||
2638 !Elts[0]->getType()->getScalarType()->isPointerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002639 return Error(ID.Loc, "getelementptr requires pointer operand");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002640
Jay Foaddab3d292011-07-21 14:31:17 +00002641 ArrayRef<Constant *> Indices(Elts.begin() + 1, Elts.end());
Jay Foada9203102011-07-25 09:48:08 +00002642 if (!GetElementPtrInst::getIndexedType(Elts[0]->getType(), Indices))
Chris Lattnerdf986172009-01-02 07:01:27 +00002643 return Error(ID.Loc, "invalid indices for getelementptr");
Jay Foad4b5e2072011-07-21 15:15:37 +00002644 ID.ConstantVal = ConstantExpr::getGetElementPtr(Elts[0], Indices,
2645 InBounds);
Chris Lattnerdf986172009-01-02 07:01:27 +00002646 } else if (Opc == Instruction::Select) {
2647 if (Elts.size() != 3)
2648 return Error(ID.Loc, "expected three operands to select");
2649 if (const char *Reason = SelectInst::areInvalidOperands(Elts[0], Elts[1],
2650 Elts[2]))
2651 return Error(ID.Loc, Reason);
Owen Andersonbaf3c402009-07-29 18:55:55 +00002652 ID.ConstantVal = ConstantExpr::getSelect(Elts[0], Elts[1], Elts[2]);
Chris Lattnerdf986172009-01-02 07:01:27 +00002653 } else if (Opc == Instruction::ShuffleVector) {
2654 if (Elts.size() != 3)
2655 return Error(ID.Loc, "expected three operands to shufflevector");
2656 if (!ShuffleVectorInst::isValidOperands(Elts[0], Elts[1], Elts[2]))
2657 return Error(ID.Loc, "invalid operands to shufflevector");
Owen Andersonfba933c2009-07-01 23:57:11 +00002658 ID.ConstantVal =
Owen Andersonbaf3c402009-07-29 18:55:55 +00002659 ConstantExpr::getShuffleVector(Elts[0], Elts[1],Elts[2]);
Chris Lattnerdf986172009-01-02 07:01:27 +00002660 } else if (Opc == Instruction::ExtractElement) {
2661 if (Elts.size() != 2)
2662 return Error(ID.Loc, "expected two operands to extractelement");
2663 if (!ExtractElementInst::isValidOperands(Elts[0], Elts[1]))
2664 return Error(ID.Loc, "invalid extractelement operands");
Owen Andersonbaf3c402009-07-29 18:55:55 +00002665 ID.ConstantVal = ConstantExpr::getExtractElement(Elts[0], Elts[1]);
Chris Lattnerdf986172009-01-02 07:01:27 +00002666 } else {
2667 assert(Opc == Instruction::InsertElement && "Unknown opcode");
2668 if (Elts.size() != 3)
2669 return Error(ID.Loc, "expected three operands to insertelement");
2670 if (!InsertElementInst::isValidOperands(Elts[0], Elts[1], Elts[2]))
2671 return Error(ID.Loc, "invalid insertelement operands");
Owen Andersonfba933c2009-07-01 23:57:11 +00002672 ID.ConstantVal =
Owen Andersonbaf3c402009-07-29 18:55:55 +00002673 ConstantExpr::getInsertElement(Elts[0], Elts[1],Elts[2]);
Chris Lattnerdf986172009-01-02 07:01:27 +00002674 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002675
Chris Lattnerdf986172009-01-02 07:01:27 +00002676 ID.Kind = ValID::t_Constant;
2677 return false;
2678 }
2679 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002680
Chris Lattnerdf986172009-01-02 07:01:27 +00002681 Lex.Lex();
2682 return false;
2683}
2684
2685/// ParseGlobalValue - Parse a global value with the specified type.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002686bool LLParser::ParseGlobalValue(Type *Ty, Constant *&C) {
Victor Hernandez92f238d2010-01-11 22:31:58 +00002687 C = 0;
Chris Lattnerdf986172009-01-02 07:01:27 +00002688 ValID ID;
Victor Hernandez92f238d2010-01-11 22:31:58 +00002689 Value *V = NULL;
2690 bool Parsed = ParseValID(ID) ||
2691 ConvertValIDToValue(Ty, ID, V, NULL);
2692 if (V && !(C = dyn_cast<Constant>(V)))
2693 return Error(ID.Loc, "global values must be constants");
2694 return Parsed;
Chris Lattnerdf986172009-01-02 07:01:27 +00002695}
2696
Victor Hernandez92f238d2010-01-11 22:31:58 +00002697bool LLParser::ParseGlobalTypeAndValue(Constant *&V) {
Chris Lattner1afcace2011-07-09 17:41:24 +00002698 Type *Ty = 0;
2699 return ParseType(Ty) ||
2700 ParseGlobalValue(Ty, V);
Victor Hernandez92f238d2010-01-11 22:31:58 +00002701}
2702
2703/// ParseGlobalValueVector
2704/// ::= /*empty*/
2705/// ::= TypeAndValue (',' TypeAndValue)*
2706bool LLParser::ParseGlobalValueVector(SmallVectorImpl<Constant*> &Elts) {
2707 // Empty list.
2708 if (Lex.getKind() == lltok::rbrace ||
2709 Lex.getKind() == lltok::rsquare ||
2710 Lex.getKind() == lltok::greater ||
2711 Lex.getKind() == lltok::rparen)
2712 return false;
2713
2714 Constant *C;
2715 if (ParseGlobalTypeAndValue(C)) return true;
2716 Elts.push_back(C);
2717
2718 while (EatIfPresent(lltok::comma)) {
2719 if (ParseGlobalTypeAndValue(C)) return true;
2720 Elts.push_back(C);
2721 }
2722
2723 return false;
2724}
2725
Dan Gohman309b3af2010-08-24 02:24:03 +00002726bool LLParser::ParseMetadataListValue(ValID &ID, PerFunctionState *PFS) {
2727 assert(Lex.getKind() == lltok::lbrace);
2728 Lex.Lex();
2729
2730 SmallVector<Value*, 16> Elts;
2731 if (ParseMDNodeVector(Elts, PFS) ||
2732 ParseToken(lltok::rbrace, "expected end of metadata node"))
2733 return true;
2734
Jay Foadec9186b2011-04-21 19:59:31 +00002735 ID.MDNodeVal = MDNode::get(Context, Elts);
Dan Gohman309b3af2010-08-24 02:24:03 +00002736 ID.Kind = ValID::t_MDNode;
2737 return false;
2738}
2739
Dan Gohman83448032010-07-14 18:26:50 +00002740/// ParseMetadataValue
2741/// ::= !42
2742/// ::= !{...}
2743/// ::= !"string"
2744bool LLParser::ParseMetadataValue(ValID &ID, PerFunctionState *PFS) {
2745 assert(Lex.getKind() == lltok::exclaim);
2746 Lex.Lex();
2747
2748 // MDNode:
2749 // !{ ... }
Dan Gohman309b3af2010-08-24 02:24:03 +00002750 if (Lex.getKind() == lltok::lbrace)
2751 return ParseMetadataListValue(ID, PFS);
Dan Gohman83448032010-07-14 18:26:50 +00002752
2753 // Standalone metadata reference
2754 // !42
2755 if (Lex.getKind() == lltok::APSInt) {
2756 if (ParseMDNodeID(ID.MDNodeVal)) return true;
2757 ID.Kind = ValID::t_MDNode;
2758 return false;
2759 }
2760
2761 // MDString:
2762 // ::= '!' STRINGCONSTANT
2763 if (ParseMDString(ID.MDStringVal)) return true;
2764 ID.Kind = ValID::t_MDString;
2765 return false;
2766}
2767
Victor Hernandez92f238d2010-01-11 22:31:58 +00002768
2769//===----------------------------------------------------------------------===//
2770// Function Parsing.
2771//===----------------------------------------------------------------------===//
2772
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002773bool LLParser::ConvertValIDToValue(Type *Ty, ValID &ID, Value *&V,
Victor Hernandez92f238d2010-01-11 22:31:58 +00002774 PerFunctionState *PFS) {
Duncan Sands1df98592010-02-16 11:11:14 +00002775 if (Ty->isFunctionTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002776 return Error(ID.Loc, "functions are not values, refer to them as pointers");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002777
Chris Lattnerdf986172009-01-02 07:01:27 +00002778 switch (ID.Kind) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002779 case ValID::t_LocalID:
Victor Hernandez92f238d2010-01-11 22:31:58 +00002780 if (!PFS) return Error(ID.Loc, "invalid use of function-local name");
2781 V = PFS->GetVal(ID.UIntVal, Ty, ID.Loc);
2782 return (V == 0);
Chris Lattnerdf986172009-01-02 07:01:27 +00002783 case ValID::t_LocalName:
Victor Hernandez92f238d2010-01-11 22:31:58 +00002784 if (!PFS) return Error(ID.Loc, "invalid use of function-local name");
2785 V = PFS->GetVal(ID.StrVal, Ty, ID.Loc);
2786 return (V == 0);
2787 case ValID::t_InlineAsm: {
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002788 PointerType *PTy = dyn_cast<PointerType>(Ty);
Michael Ilseman407a6162012-11-15 22:34:00 +00002789 FunctionType *FTy =
Victor Hernandez92f238d2010-01-11 22:31:58 +00002790 PTy ? dyn_cast<FunctionType>(PTy->getElementType()) : 0;
2791 if (!FTy || !InlineAsm::Verify(FTy, ID.StrVal2))
2792 return Error(ID.Loc, "invalid type for inline asm constraint string");
Chad Rosier36547342012-09-05 00:08:17 +00002793 V = InlineAsm::get(FTy, ID.StrVal, ID.StrVal2, ID.UIntVal&1,
Chad Rosier581600b2012-09-05 19:00:49 +00002794 (ID.UIntVal>>1)&1, (InlineAsm::AsmDialect(ID.UIntVal>>2)));
Victor Hernandez92f238d2010-01-11 22:31:58 +00002795 return false;
2796 }
2797 case ValID::t_MDNode:
2798 if (!Ty->isMetadataTy())
2799 return Error(ID.Loc, "metadata value must have metadata type");
2800 V = ID.MDNodeVal;
2801 return false;
2802 case ValID::t_MDString:
2803 if (!Ty->isMetadataTy())
2804 return Error(ID.Loc, "metadata value must have metadata type");
2805 V = ID.MDStringVal;
2806 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00002807 case ValID::t_GlobalName:
2808 V = GetGlobalVal(ID.StrVal, Ty, ID.Loc);
2809 return V == 0;
2810 case ValID::t_GlobalID:
2811 V = GetGlobalVal(ID.UIntVal, Ty, ID.Loc);
2812 return V == 0;
2813 case ValID::t_APSInt:
Duncan Sands1df98592010-02-16 11:11:14 +00002814 if (!Ty->isIntegerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002815 return Error(ID.Loc, "integer constant must have integer type");
Jay Foad40f8f622010-12-07 08:25:19 +00002816 ID.APSIntVal = ID.APSIntVal.extOrTrunc(Ty->getPrimitiveSizeInBits());
Owen Andersoneed707b2009-07-24 23:12:02 +00002817 V = ConstantInt::get(Context, ID.APSIntVal);
Chris Lattnerdf986172009-01-02 07:01:27 +00002818 return false;
2819 case ValID::t_APFloat:
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00002820 if (!Ty->isFloatingPointTy() ||
Chris Lattnerdf986172009-01-02 07:01:27 +00002821 !ConstantFP::isValueValidForType(Ty, ID.APFloatVal))
2822 return Error(ID.Loc, "floating point constant invalid for type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002823
Dan Gohmance163392011-12-17 00:04:22 +00002824 // The lexer has no type info, so builds all half, float, and double FP
2825 // constants as double. Fix this here. Long double does not need this.
2826 if (&ID.APFloatVal.getSemantics() == &APFloat::IEEEdouble) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002827 bool Ignored;
Dan Gohmance163392011-12-17 00:04:22 +00002828 if (Ty->isHalfTy())
2829 ID.APFloatVal.convert(APFloat::IEEEhalf, APFloat::rmNearestTiesToEven,
2830 &Ignored);
2831 else if (Ty->isFloatTy())
2832 ID.APFloatVal.convert(APFloat::IEEEsingle, APFloat::rmNearestTiesToEven,
2833 &Ignored);
Chris Lattnerdf986172009-01-02 07:01:27 +00002834 }
Owen Anderson6f83c9c2009-07-27 20:59:43 +00002835 V = ConstantFP::get(Context, ID.APFloatVal);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002836
Chris Lattner959873d2009-01-05 18:24:23 +00002837 if (V->getType() != Ty)
2838 return Error(ID.Loc, "floating point constant does not have type '" +
Chris Lattner0cd0d882011-06-18 21:18:23 +00002839 getTypeString(Ty) + "'");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002840
Chris Lattnerdf986172009-01-02 07:01:27 +00002841 return false;
2842 case ValID::t_Null:
Duncan Sands1df98592010-02-16 11:11:14 +00002843 if (!Ty->isPointerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002844 return Error(ID.Loc, "null must be a pointer type");
Owen Anderson9e9a0d52009-07-30 23:03:37 +00002845 V = ConstantPointerNull::get(cast<PointerType>(Ty));
Chris Lattnerdf986172009-01-02 07:01:27 +00002846 return false;
2847 case ValID::t_Undef:
Chris Lattnere67c1aa2009-01-05 08:13:38 +00002848 // FIXME: LabelTy should not be a first-class type.
Chris Lattner1afcace2011-07-09 17:41:24 +00002849 if (!Ty->isFirstClassType() || Ty->isLabelTy())
Chris Lattnere67c1aa2009-01-05 08:13:38 +00002850 return Error(ID.Loc, "invalid type for undef constant");
Owen Anderson9e9a0d52009-07-30 23:03:37 +00002851 V = UndefValue::get(Ty);
Chris Lattnerdf986172009-01-02 07:01:27 +00002852 return false;
Chris Lattner081b5052009-01-05 07:52:51 +00002853 case ValID::t_EmptyArray:
Duncan Sands1df98592010-02-16 11:11:14 +00002854 if (!Ty->isArrayTy() || cast<ArrayType>(Ty)->getNumElements() != 0)
Chris Lattner081b5052009-01-05 07:52:51 +00002855 return Error(ID.Loc, "invalid empty array initializer");
Owen Anderson9e9a0d52009-07-30 23:03:37 +00002856 V = UndefValue::get(Ty);
Chris Lattner081b5052009-01-05 07:52:51 +00002857 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00002858 case ValID::t_Zero:
Chris Lattnere67c1aa2009-01-05 08:13:38 +00002859 // FIXME: LabelTy should not be a first-class type.
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00002860 if (!Ty->isFirstClassType() || Ty->isLabelTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002861 return Error(ID.Loc, "invalid type for null constant");
Owen Andersona7235ea2009-07-31 20:28:14 +00002862 V = Constant::getNullValue(Ty);
Chris Lattnerdf986172009-01-02 07:01:27 +00002863 return false;
2864 case ValID::t_Constant:
Chris Lattner61c70e92010-08-28 04:09:24 +00002865 if (ID.ConstantVal->getType() != Ty)
Chris Lattnerdf986172009-01-02 07:01:27 +00002866 return Error(ID.Loc, "constant expression type mismatch");
Chris Lattnerfdfeb692010-02-12 20:49:41 +00002867
Chris Lattnerdf986172009-01-02 07:01:27 +00002868 V = ID.ConstantVal;
2869 return false;
Chris Lattner1afcace2011-07-09 17:41:24 +00002870 case ValID::t_ConstantStruct:
2871 case ValID::t_PackedConstantStruct:
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002872 if (StructType *ST = dyn_cast<StructType>(Ty)) {
Chris Lattner1afcace2011-07-09 17:41:24 +00002873 if (ST->getNumElements() != ID.UIntVal)
2874 return Error(ID.Loc,
2875 "initializer with struct type has wrong # elements");
2876 if (ST->isPacked() != (ID.Kind == ValID::t_PackedConstantStruct))
2877 return Error(ID.Loc, "packed'ness of initializer and type don't match");
Michael Ilseman407a6162012-11-15 22:34:00 +00002878
Chris Lattner1afcace2011-07-09 17:41:24 +00002879 // Verify that the elements are compatible with the structtype.
2880 for (unsigned i = 0, e = ID.UIntVal; i != e; ++i)
2881 if (ID.ConstantStructElts[i]->getType() != ST->getElementType(i))
2882 return Error(ID.Loc, "element " + Twine(i) +
2883 " of struct initializer doesn't match struct element type");
Michael Ilseman407a6162012-11-15 22:34:00 +00002884
Frits van Bommel39b5abf2011-07-18 12:00:32 +00002885 V = ConstantStruct::get(ST, makeArrayRef(ID.ConstantStructElts,
2886 ID.UIntVal));
Chris Lattner1afcace2011-07-09 17:41:24 +00002887 } else
2888 return Error(ID.Loc, "constant expression type mismatch");
2889 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00002890 }
Chandler Carruth732f05c2012-01-10 18:08:01 +00002891 llvm_unreachable("Invalid ValID");
Chris Lattnerdf986172009-01-02 07:01:27 +00002892}
Daniel Dunbara279bc32009-09-20 02:20:51 +00002893
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002894bool LLParser::ParseValue(Type *Ty, Value *&V, PerFunctionState *PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002895 V = 0;
2896 ValID ID;
Chris Lattner1afcace2011-07-09 17:41:24 +00002897 return ParseValID(ID, PFS) ||
2898 ConvertValIDToValue(Ty, ID, V, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00002899}
2900
Chris Lattner1afcace2011-07-09 17:41:24 +00002901bool LLParser::ParseTypeAndValue(Value *&V, PerFunctionState *PFS) {
2902 Type *Ty = 0;
2903 return ParseType(Ty) ||
2904 ParseValue(Ty, V, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00002905}
2906
Chris Lattnerf9be95f2009-10-27 19:13:16 +00002907bool LLParser::ParseTypeAndBasicBlock(BasicBlock *&BB, LocTy &Loc,
2908 PerFunctionState &PFS) {
2909 Value *V;
2910 Loc = Lex.getLoc();
2911 if (ParseTypeAndValue(V, PFS)) return true;
2912 if (!isa<BasicBlock>(V))
2913 return Error(Loc, "expected a basic block");
2914 BB = cast<BasicBlock>(V);
2915 return false;
2916}
2917
2918
Chris Lattnerdf986172009-01-02 07:01:27 +00002919/// FunctionHeader
2920/// ::= OptionalLinkage OptionalVisibility OptionalCallingConv OptRetAttrs
Rafael Espindolabea46262011-01-08 16:42:36 +00002921/// OptUnnamedAddr Type GlobalName '(' ArgList ')' OptFuncAttrs OptSection
Peter Collingbourne1e3037f2013-09-16 01:08:15 +00002922/// OptionalAlign OptGC OptionalPrefix
Chris Lattnerdf986172009-01-02 07:01:27 +00002923bool LLParser::ParseFunctionHeader(Function *&Fn, bool isDefine) {
2924 // Parse the linkage.
2925 LocTy LinkageLoc = Lex.getLoc();
2926 unsigned Linkage;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002927
Kostya Serebryany164b86b2012-01-20 17:56:17 +00002928 unsigned Visibility;
Bill Wendling702cc912012-10-15 20:35:56 +00002929 AttrBuilder RetAttrs;
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00002930 CallingConv::ID CC;
Chris Lattner1afcace2011-07-09 17:41:24 +00002931 Type *RetType = 0;
Chris Lattnerdf986172009-01-02 07:01:27 +00002932 LocTy RetTypeLoc = Lex.getLoc();
2933 if (ParseOptionalLinkage(Linkage) ||
2934 ParseOptionalVisibility(Visibility) ||
2935 ParseOptionalCallingConv(CC) ||
Bill Wendlinge01b81b2012-12-04 23:40:58 +00002936 ParseOptionalReturnAttrs(RetAttrs) ||
Chris Lattnera9a9e072009-03-09 04:49:14 +00002937 ParseType(RetType, RetTypeLoc, true /*void allowed*/))
Chris Lattnerdf986172009-01-02 07:01:27 +00002938 return true;
2939
2940 // Verify that the linkage is ok.
2941 switch ((GlobalValue::LinkageTypes)Linkage) {
2942 case GlobalValue::ExternalLinkage:
2943 break; // always ok.
2944 case GlobalValue::DLLImportLinkage:
Duncan Sands5f4ee1f2009-03-11 08:08:06 +00002945 case GlobalValue::ExternalWeakLinkage:
Chris Lattnerdf986172009-01-02 07:01:27 +00002946 if (isDefine)
2947 return Error(LinkageLoc, "invalid linkage for function definition");
2948 break;
Rafael Espindolabb46f522009-01-15 20:18:42 +00002949 case GlobalValue::PrivateLinkage:
Bill Wendling3d10a5a2009-07-20 01:03:30 +00002950 case GlobalValue::LinkerPrivateLinkage:
Bill Wendling5e721d72010-07-01 21:55:59 +00002951 case GlobalValue::LinkerPrivateWeakLinkage:
Chris Lattnerdf986172009-01-02 07:01:27 +00002952 case GlobalValue::InternalLinkage:
Nick Lewycky55f64db2009-04-13 07:02:02 +00002953 case GlobalValue::AvailableExternallyLinkage:
Duncan Sands667d4b82009-03-07 15:45:40 +00002954 case GlobalValue::LinkOnceAnyLinkage:
2955 case GlobalValue::LinkOnceODRLinkage:
2956 case GlobalValue::WeakAnyLinkage:
2957 case GlobalValue::WeakODRLinkage:
Chris Lattnerdf986172009-01-02 07:01:27 +00002958 case GlobalValue::DLLExportLinkage:
2959 if (!isDefine)
2960 return Error(LinkageLoc, "invalid linkage for function declaration");
2961 break;
2962 case GlobalValue::AppendingLinkage:
Duncan Sands4dc2b392009-03-11 20:14:15 +00002963 case GlobalValue::CommonLinkage:
Chris Lattnerdf986172009-01-02 07:01:27 +00002964 return Error(LinkageLoc, "invalid function linkage type");
2965 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002966
Chris Lattner1afcace2011-07-09 17:41:24 +00002967 if (!FunctionType::isValidReturnType(RetType))
Chris Lattnerdf986172009-01-02 07:01:27 +00002968 return Error(RetTypeLoc, "invalid function return type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002969
Chris Lattnerdf986172009-01-02 07:01:27 +00002970 LocTy NameLoc = Lex.getLoc();
Chris Lattnerf570e622009-02-18 21:48:13 +00002971
2972 std::string FunctionName;
2973 if (Lex.getKind() == lltok::GlobalVar) {
2974 FunctionName = Lex.getStrVal();
2975 } else if (Lex.getKind() == lltok::GlobalID) { // @42 is ok.
2976 unsigned NameID = Lex.getUIntVal();
2977
2978 if (NameID != NumberedVals.size())
2979 return TokError("function expected to be numbered '%" +
Benjamin Kramerd1e17032010-09-27 17:42:11 +00002980 Twine(NumberedVals.size()) + "'");
Chris Lattnerf570e622009-02-18 21:48:13 +00002981 } else {
2982 return TokError("expected function name");
2983 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002984
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002985 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +00002986
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002987 if (Lex.getKind() != lltok::lparen)
Chris Lattnerdf986172009-01-02 07:01:27 +00002988 return TokError("expected '(' in function argument list");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002989
Chris Lattner1afcace2011-07-09 17:41:24 +00002990 SmallVector<ArgInfo, 8> ArgList;
Chris Lattnerdf986172009-01-02 07:01:27 +00002991 bool isVarArg;
Bill Wendling702cc912012-10-15 20:35:56 +00002992 AttrBuilder FuncAttrs;
Bill Wendlingbaad55c2013-02-08 06:32:06 +00002993 std::vector<unsigned> FwdRefAttrGrps;
Michael Gottesman2253a2f2013-06-27 00:25:01 +00002994 LocTy BuiltinLoc;
Chris Lattnerdf986172009-01-02 07:01:27 +00002995 std::string Section;
Chris Lattnerdf986172009-01-02 07:01:27 +00002996 unsigned Alignment;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002997 std::string GC;
Rafael Espindola3971df52011-01-25 19:09:56 +00002998 bool UnnamedAddr;
2999 LocTy UnnamedAddrLoc;
Peter Collingbourne1e3037f2013-09-16 01:08:15 +00003000 Constant *Prefix = 0;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003001
Chris Lattner1afcace2011-07-09 17:41:24 +00003002 if (ParseArgumentList(ArgList, isVarArg) ||
Rafael Espindola3971df52011-01-25 19:09:56 +00003003 ParseOptionalToken(lltok::kw_unnamed_addr, UnnamedAddr,
3004 &UnnamedAddrLoc) ||
Bill Wendling143d4642013-02-22 00:12:35 +00003005 ParseFnAttributeValuePairs(FuncAttrs, FwdRefAttrGrps, false,
Michael Gottesman2253a2f2013-06-27 00:25:01 +00003006 BuiltinLoc) ||
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003007 (EatIfPresent(lltok::kw_section) &&
3008 ParseStringConstant(Section)) ||
3009 ParseOptionalAlignment(Alignment) ||
3010 (EatIfPresent(lltok::kw_gc) &&
Peter Collingbourne1e3037f2013-09-16 01:08:15 +00003011 ParseStringConstant(GC)) ||
3012 (EatIfPresent(lltok::kw_prefix) &&
3013 ParseGlobalTypeAndValue(Prefix)))
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003014 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00003015
Michael Gottesman2253a2f2013-06-27 00:25:01 +00003016 if (FuncAttrs.contains(Attribute::Builtin))
3017 return Error(BuiltinLoc, "'builtin' attribute not valid on function");
Bill Wendling143d4642013-02-22 00:12:35 +00003018
Chris Lattnerdf986172009-01-02 07:01:27 +00003019 // If the alignment was parsed as an attribute, move to the alignment field.
Bill Wendlingf385f4c2012-10-08 23:27:46 +00003020 if (FuncAttrs.hasAlignmentAttr()) {
Bill Wendlingef99fe82012-09-21 15:26:31 +00003021 Alignment = FuncAttrs.getAlignment();
Bill Wendling034b94b2012-12-19 07:18:57 +00003022 FuncAttrs.removeAttribute(Attribute::Alignment);
Chris Lattnerdf986172009-01-02 07:01:27 +00003023 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003024
Chris Lattnerdf986172009-01-02 07:01:27 +00003025 // Okay, if we got here, the function is syntactically valid. Convert types
3026 // and do semantic checks.
Jay Foad5fdd6c82011-07-12 14:06:48 +00003027 std::vector<Type*> ParamTypeList;
Bill Wendlinga1683d62013-01-27 02:24:02 +00003028 SmallVector<AttributeSet, 8> Attrs;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003029
Bill Wendlinge603fe42012-09-19 23:54:18 +00003030 if (RetAttrs.hasAttributes())
Bill Wendlinga1683d62013-01-27 02:24:02 +00003031 Attrs.push_back(AttributeSet::get(RetType->getContext(),
3032 AttributeSet::ReturnIndex,
3033 RetAttrs));
Daniel Dunbara279bc32009-09-20 02:20:51 +00003034
Chris Lattnerdf986172009-01-02 07:01:27 +00003035 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
Chris Lattner1afcace2011-07-09 17:41:24 +00003036 ParamTypeList.push_back(ArgList[i].Ty);
Bill Wendling73dee182013-01-31 00:29:54 +00003037 if (ArgList[i].Attrs.hasAttributes(i + 1)) {
3038 AttrBuilder B(ArgList[i].Attrs, i + 1);
Bill Wendlinga1683d62013-01-27 02:24:02 +00003039 Attrs.push_back(AttributeSet::get(RetType->getContext(), i + 1, B));
3040 }
Chris Lattnerdf986172009-01-02 07:01:27 +00003041 }
3042
Bill Wendlinge603fe42012-09-19 23:54:18 +00003043 if (FuncAttrs.hasAttributes())
Bill Wendlinga1683d62013-01-27 02:24:02 +00003044 Attrs.push_back(AttributeSet::get(RetType->getContext(),
3045 AttributeSet::FunctionIndex,
3046 FuncAttrs));
Chris Lattnerdf986172009-01-02 07:01:27 +00003047
Bill Wendling99faa3b2012-12-07 23:16:57 +00003048 AttributeSet PAL = AttributeSet::get(Context, Attrs);
Daniel Dunbara279bc32009-09-20 02:20:51 +00003049
Bill Wendling94e94b32012-12-30 13:50:49 +00003050 if (PAL.hasAttribute(1, Attribute::StructRet) && !RetType->isVoidTy())
Daniel Dunbara279bc32009-09-20 02:20:51 +00003051 return Error(RetTypeLoc, "functions with 'sret' argument must return void");
3052
Chris Lattnerdb125cf2011-07-18 04:54:35 +00003053 FunctionType *FT =
Owen Andersondebcb012009-07-29 22:17:13 +00003054 FunctionType::get(RetType, ParamTypeList, isVarArg);
Chris Lattnerdb125cf2011-07-18 04:54:35 +00003055 PointerType *PFT = PointerType::getUnqual(FT);
Chris Lattnerdf986172009-01-02 07:01:27 +00003056
3057 Fn = 0;
3058 if (!FunctionName.empty()) {
3059 // If this was a definition of a forward reference, remove the definition
3060 // from the forward reference table and fill in the forward ref.
3061 std::map<std::string, std::pair<GlobalValue*, LocTy> >::iterator FRVI =
3062 ForwardRefVals.find(FunctionName);
3063 if (FRVI != ForwardRefVals.end()) {
3064 Fn = M->getFunction(FunctionName);
Nick Lewycky64ea2752012-10-11 00:38:25 +00003065 if (!Fn)
3066 return Error(FRVI->second.second, "invalid forward reference to "
3067 "function as global value!");
Chris Lattnerf1cfb952010-04-20 04:49:11 +00003068 if (Fn->getType() != PFT)
3069 return Error(FRVI->second.second, "invalid forward reference to "
3070 "function '" + FunctionName + "' with wrong type!");
Michael Ilseman407a6162012-11-15 22:34:00 +00003071
Chris Lattnerdf986172009-01-02 07:01:27 +00003072 ForwardRefVals.erase(FRVI);
3073 } else if ((Fn = M->getFunction(FunctionName))) {
Chris Lattnerd5890992011-06-17 07:06:44 +00003074 // Reject redefinitions.
3075 return Error(NameLoc, "invalid redefinition of function '" +
3076 FunctionName + "'");
Chris Lattner1d871c52009-10-25 23:22:50 +00003077 } else if (M->getNamedValue(FunctionName)) {
3078 return Error(NameLoc, "redefinition of function '@" + FunctionName + "'");
Chris Lattnerdf986172009-01-02 07:01:27 +00003079 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003080
Dan Gohman41905542009-08-29 23:37:49 +00003081 } else {
Chris Lattnerdf986172009-01-02 07:01:27 +00003082 // If this is a definition of a forward referenced function, make sure the
3083 // types agree.
3084 std::map<unsigned, std::pair<GlobalValue*, LocTy> >::iterator I
3085 = ForwardRefValIDs.find(NumberedVals.size());
3086 if (I != ForwardRefValIDs.end()) {
3087 Fn = cast<Function>(I->second.first);
3088 if (Fn->getType() != PFT)
3089 return Error(NameLoc, "type of definition and forward reference of '@" +
Benjamin Kramerd1e17032010-09-27 17:42:11 +00003090 Twine(NumberedVals.size()) + "' disagree");
Chris Lattnerdf986172009-01-02 07:01:27 +00003091 ForwardRefValIDs.erase(I);
3092 }
3093 }
3094
3095 if (Fn == 0)
3096 Fn = Function::Create(FT, GlobalValue::ExternalLinkage, FunctionName, M);
3097 else // Move the forward-reference to the correct spot in the module.
3098 M->getFunctionList().splice(M->end(), M->getFunctionList(), Fn);
3099
3100 if (FunctionName.empty())
3101 NumberedVals.push_back(Fn);
Daniel Dunbara279bc32009-09-20 02:20:51 +00003102
Chris Lattnerdf986172009-01-02 07:01:27 +00003103 Fn->setLinkage((GlobalValue::LinkageTypes)Linkage);
3104 Fn->setVisibility((GlobalValue::VisibilityTypes)Visibility);
3105 Fn->setCallingConv(CC);
3106 Fn->setAttributes(PAL);
Rafael Espindolabea46262011-01-08 16:42:36 +00003107 Fn->setUnnamedAddr(UnnamedAddr);
Chris Lattnerdf986172009-01-02 07:01:27 +00003108 Fn->setAlignment(Alignment);
3109 Fn->setSection(Section);
3110 if (!GC.empty()) Fn->setGC(GC.c_str());
Peter Collingbourne1e3037f2013-09-16 01:08:15 +00003111 Fn->setPrefixData(Prefix);
Bill Wendlingbaad55c2013-02-08 06:32:06 +00003112 ForwardRefAttrGroups[Fn] = FwdRefAttrGrps;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003113
Chris Lattnerdf986172009-01-02 07:01:27 +00003114 // Add all of the arguments we parsed to the function.
3115 Function::arg_iterator ArgIt = Fn->arg_begin();
3116 for (unsigned i = 0, e = ArgList.size(); i != e; ++i, ++ArgIt) {
3117 // If the argument has a name, insert it into the argument symbol table.
3118 if (ArgList[i].Name.empty()) continue;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003119
Chris Lattnerdf986172009-01-02 07:01:27 +00003120 // Set the name, if it conflicted, it will be auto-renamed.
3121 ArgIt->setName(ArgList[i].Name);
Daniel Dunbara279bc32009-09-20 02:20:51 +00003122
Benjamin Krameraf812352010-10-16 11:28:23 +00003123 if (ArgIt->getName() != ArgList[i].Name)
Chris Lattnerdf986172009-01-02 07:01:27 +00003124 return Error(ArgList[i].Loc, "redefinition of argument '%" +
3125 ArgList[i].Name + "'");
3126 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003127
Chris Lattnerdf986172009-01-02 07:01:27 +00003128 return false;
3129}
3130
3131
3132/// ParseFunctionBody
3133/// ::= '{' BasicBlock+ '}'
Chris Lattnerdf986172009-01-02 07:01:27 +00003134///
3135bool LLParser::ParseFunctionBody(Function &Fn) {
Chris Lattner6b7c89e2011-06-17 06:42:57 +00003136 if (Lex.getKind() != lltok::lbrace)
Chris Lattnerdf986172009-01-02 07:01:27 +00003137 return TokError("expected '{' in function body");
3138 Lex.Lex(); // eat the {.
Daniel Dunbara279bc32009-09-20 02:20:51 +00003139
Chris Lattner09d9ef42009-10-28 03:39:23 +00003140 int FunctionNumber = -1;
3141 if (!Fn.hasName()) FunctionNumber = NumberedVals.size()-1;
Michael Ilseman407a6162012-11-15 22:34:00 +00003142
Chris Lattner09d9ef42009-10-28 03:39:23 +00003143 PerFunctionState PFS(*this, Fn, FunctionNumber);
Daniel Dunbara279bc32009-09-20 02:20:51 +00003144
Chris Lattner2fdf8db2010-01-09 19:20:07 +00003145 // We need at least one basic block.
Chris Lattner6b7c89e2011-06-17 06:42:57 +00003146 if (Lex.getKind() == lltok::rbrace)
Chris Lattner2fdf8db2010-01-09 19:20:07 +00003147 return TokError("function body requires at least one basic block");
Michael Ilseman407a6162012-11-15 22:34:00 +00003148
Chris Lattner6b7c89e2011-06-17 06:42:57 +00003149 while (Lex.getKind() != lltok::rbrace)
Chris Lattnerdf986172009-01-02 07:01:27 +00003150 if (ParseBasicBlock(PFS)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003151
Chris Lattnerdf986172009-01-02 07:01:27 +00003152 // Eat the }.
3153 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +00003154
Chris Lattnerdf986172009-01-02 07:01:27 +00003155 // Verify function is ok.
Chris Lattner09d9ef42009-10-28 03:39:23 +00003156 return PFS.FinishFunction();
Chris Lattnerdf986172009-01-02 07:01:27 +00003157}
3158
3159/// ParseBasicBlock
3160/// ::= LabelStr? Instruction*
3161bool LLParser::ParseBasicBlock(PerFunctionState &PFS) {
3162 // If this basic block starts out with a name, remember it.
3163 std::string Name;
3164 LocTy NameLoc = Lex.getLoc();
3165 if (Lex.getKind() == lltok::LabelStr) {
3166 Name = Lex.getStrVal();
3167 Lex.Lex();
3168 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003169
Chris Lattnerdf986172009-01-02 07:01:27 +00003170 BasicBlock *BB = PFS.DefineBB(Name, NameLoc);
3171 if (BB == 0) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003172
Chris Lattnerdf986172009-01-02 07:01:27 +00003173 std::string NameStr;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003174
Chris Lattnerdf986172009-01-02 07:01:27 +00003175 // Parse the instructions in this block until we get a terminator.
3176 Instruction *Inst;
3177 do {
3178 // This instruction may have three possibilities for a name: a) none
3179 // specified, b) name specified "%foo =", c) number specified: "%4 =".
3180 LocTy NameLoc = Lex.getLoc();
3181 int NameID = -1;
3182 NameStr = "";
Daniel Dunbara279bc32009-09-20 02:20:51 +00003183
Chris Lattnerdf986172009-01-02 07:01:27 +00003184 if (Lex.getKind() == lltok::LocalVarID) {
3185 NameID = Lex.getUIntVal();
3186 Lex.Lex();
3187 if (ParseToken(lltok::equal, "expected '=' after instruction id"))
3188 return true;
Chris Lattner7a1b9bd2011-06-17 06:36:20 +00003189 } else if (Lex.getKind() == lltok::LocalVar) {
Chris Lattnerdf986172009-01-02 07:01:27 +00003190 NameStr = Lex.getStrVal();
3191 Lex.Lex();
3192 if (ParseToken(lltok::equal, "expected '=' after instruction name"))
3193 return true;
3194 }
Devang Patelf633a062009-09-17 23:04:48 +00003195
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00003196 switch (ParseInstruction(Inst, BB, PFS)) {
Craig Topper85814382012-02-07 05:05:23 +00003197 default: llvm_unreachable("Unknown ParseInstruction result!");
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00003198 case InstError: return true;
3199 case InstNormal:
Chris Lattner4ba9d9b2010-04-07 04:08:57 +00003200 BB->getInstList().push_back(Inst);
3201
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00003202 // With a normal result, we check to see if the instruction is followed by
3203 // a comma and metadata.
3204 if (EatIfPresent(lltok::comma))
Dan Gohman9d072f52010-08-24 02:05:17 +00003205 if (ParseInstructionMetadata(Inst, &PFS))
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00003206 return true;
3207 break;
3208 case InstExtraComma:
Chris Lattner4ba9d9b2010-04-07 04:08:57 +00003209 BB->getInstList().push_back(Inst);
3210
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00003211 // If the instruction parser ate an extra comma at the end of it, it
3212 // *must* be followed by metadata.
Dan Gohman9d072f52010-08-24 02:05:17 +00003213 if (ParseInstructionMetadata(Inst, &PFS))
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00003214 return true;
Michael Ilseman407a6162012-11-15 22:34:00 +00003215 break;
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00003216 }
Devang Patelf633a062009-09-17 23:04:48 +00003217
Chris Lattnerdf986172009-01-02 07:01:27 +00003218 // Set the name on the instruction.
3219 if (PFS.SetInstName(NameID, NameStr, NameLoc, Inst)) return true;
3220 } while (!isa<TerminatorInst>(Inst));
Daniel Dunbara279bc32009-09-20 02:20:51 +00003221
Chris Lattnerdf986172009-01-02 07:01:27 +00003222 return false;
3223}
3224
3225//===----------------------------------------------------------------------===//
3226// Instruction Parsing.
3227//===----------------------------------------------------------------------===//
3228
3229/// ParseInstruction - Parse one of the many different instructions.
3230///
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00003231int LLParser::ParseInstruction(Instruction *&Inst, BasicBlock *BB,
3232 PerFunctionState &PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00003233 lltok::Kind Token = Lex.getKind();
3234 if (Token == lltok::Eof)
3235 return TokError("found end of file when expecting more instructions");
3236 LocTy Loc = Lex.getLoc();
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00003237 unsigned KeywordVal = Lex.getUIntVal();
Chris Lattnerdf986172009-01-02 07:01:27 +00003238 Lex.Lex(); // Eat the keyword.
Daniel Dunbara279bc32009-09-20 02:20:51 +00003239
Chris Lattnerdf986172009-01-02 07:01:27 +00003240 switch (Token) {
3241 default: return Error(Loc, "expected instruction opcode");
3242 // Terminator Instructions.
Owen Anderson1d0be152009-08-13 21:58:54 +00003243 case lltok::kw_unreachable: Inst = new UnreachableInst(Context); return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00003244 case lltok::kw_ret: return ParseRet(Inst, BB, PFS);
3245 case lltok::kw_br: return ParseBr(Inst, PFS);
3246 case lltok::kw_switch: return ParseSwitch(Inst, PFS);
Chris Lattnerab21db72009-10-28 00:19:10 +00003247 case lltok::kw_indirectbr: return ParseIndirectBr(Inst, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00003248 case lltok::kw_invoke: return ParseInvoke(Inst, PFS);
Bill Wendlingdccc03b2011-07-31 06:30:59 +00003249 case lltok::kw_resume: return ParseResume(Inst, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00003250 // Binary Operators.
3251 case lltok::kw_add:
3252 case lltok::kw_sub:
Chris Lattnerf067d582011-02-07 16:40:21 +00003253 case lltok::kw_mul:
3254 case lltok::kw_shl: {
Chris Lattnerf067d582011-02-07 16:40:21 +00003255 bool NUW = EatIfPresent(lltok::kw_nuw);
3256 bool NSW = EatIfPresent(lltok::kw_nsw);
3257 if (!NUW) NUW = EatIfPresent(lltok::kw_nuw);
Michael Ilseman407a6162012-11-15 22:34:00 +00003258
Chris Lattnerf067d582011-02-07 16:40:21 +00003259 if (ParseArithmetic(Inst, PFS, KeywordVal, 1)) return true;
Michael Ilseman407a6162012-11-15 22:34:00 +00003260
Chris Lattnerf067d582011-02-07 16:40:21 +00003261 if (NUW) cast<BinaryOperator>(Inst)->setHasNoUnsignedWrap(true);
3262 if (NSW) cast<BinaryOperator>(Inst)->setHasNoSignedWrap(true);
3263 return false;
Dan Gohman59858cf2009-07-27 16:11:46 +00003264 }
Dan Gohmanae3a0be2009-06-04 22:49:04 +00003265 case lltok::kw_fadd:
3266 case lltok::kw_fsub:
Michael Ilseman15c13d32012-11-27 00:42:44 +00003267 case lltok::kw_fmul:
3268 case lltok::kw_fdiv:
3269 case lltok::kw_frem: {
3270 FastMathFlags FMF = EatFastMathFlagsIfPresent();
3271 int Res = ParseArithmetic(Inst, PFS, KeywordVal, 2);
3272 if (Res != 0)
3273 return Res;
3274 if (FMF.any())
3275 Inst->setFastMathFlags(FMF);
3276 return 0;
3277 }
Dan Gohmanae3a0be2009-06-04 22:49:04 +00003278
Chris Lattner35bda892011-02-06 21:44:57 +00003279 case lltok::kw_sdiv:
Chris Lattnerf067d582011-02-07 16:40:21 +00003280 case lltok::kw_udiv:
3281 case lltok::kw_lshr:
3282 case lltok::kw_ashr: {
3283 bool Exact = EatIfPresent(lltok::kw_exact);
3284
3285 if (ParseArithmetic(Inst, PFS, KeywordVal, 1)) return true;
3286 if (Exact) cast<BinaryOperator>(Inst)->setIsExact(true);
3287 return false;
Dan Gohman59858cf2009-07-27 16:11:46 +00003288 }
3289
Chris Lattnerdf986172009-01-02 07:01:27 +00003290 case lltok::kw_urem:
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00003291 case lltok::kw_srem: return ParseArithmetic(Inst, PFS, KeywordVal, 1);
Chris Lattnerdf986172009-01-02 07:01:27 +00003292 case lltok::kw_and:
3293 case lltok::kw_or:
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00003294 case lltok::kw_xor: return ParseLogical(Inst, PFS, KeywordVal);
Chris Lattnerdf986172009-01-02 07:01:27 +00003295 case lltok::kw_icmp:
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00003296 case lltok::kw_fcmp: return ParseCompare(Inst, PFS, KeywordVal);
Chris Lattnerdf986172009-01-02 07:01:27 +00003297 // Casts.
3298 case lltok::kw_trunc:
3299 case lltok::kw_zext:
3300 case lltok::kw_sext:
3301 case lltok::kw_fptrunc:
3302 case lltok::kw_fpext:
3303 case lltok::kw_bitcast:
3304 case lltok::kw_uitofp:
3305 case lltok::kw_sitofp:
3306 case lltok::kw_fptoui:
Daniel Dunbara279bc32009-09-20 02:20:51 +00003307 case lltok::kw_fptosi:
Chris Lattnerdf986172009-01-02 07:01:27 +00003308 case lltok::kw_inttoptr:
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00003309 case lltok::kw_ptrtoint: return ParseCast(Inst, PFS, KeywordVal);
Chris Lattnerdf986172009-01-02 07:01:27 +00003310 // Other.
3311 case lltok::kw_select: return ParseSelect(Inst, PFS);
Chris Lattner0088a5c2009-01-05 08:18:44 +00003312 case lltok::kw_va_arg: return ParseVA_Arg(Inst, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00003313 case lltok::kw_extractelement: return ParseExtractElement(Inst, PFS);
3314 case lltok::kw_insertelement: return ParseInsertElement(Inst, PFS);
3315 case lltok::kw_shufflevector: return ParseShuffleVector(Inst, PFS);
3316 case lltok::kw_phi: return ParsePHI(Inst, PFS);
Bill Wendlinge6e88262011-08-12 20:24:12 +00003317 case lltok::kw_landingpad: return ParseLandingPad(Inst, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00003318 case lltok::kw_call: return ParseCall(Inst, PFS, false);
3319 case lltok::kw_tail: return ParseCall(Inst, PFS, true);
3320 // Memory.
Victor Hernandez13ad5aa2009-10-17 00:00:19 +00003321 case lltok::kw_alloca: return ParseAlloc(Inst, PFS);
Chris Lattnerfbe910e2011-11-27 06:56:53 +00003322 case lltok::kw_load: return ParseLoad(Inst, PFS);
3323 case lltok::kw_store: return ParseStore(Inst, PFS);
Eli Friedmanf03bb262011-08-12 22:50:01 +00003324 case lltok::kw_cmpxchg: return ParseCmpXchg(Inst, PFS);
3325 case lltok::kw_atomicrmw: return ParseAtomicRMW(Inst, PFS);
Eli Friedman47f35132011-07-25 23:16:38 +00003326 case lltok::kw_fence: return ParseFence(Inst, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00003327 case lltok::kw_getelementptr: return ParseGetElementPtr(Inst, PFS);
3328 case lltok::kw_extractvalue: return ParseExtractValue(Inst, PFS);
3329 case lltok::kw_insertvalue: return ParseInsertValue(Inst, PFS);
3330 }
3331}
3332
3333/// ParseCmpPredicate - Parse an integer or fp predicate, based on Kind.
3334bool LLParser::ParseCmpPredicate(unsigned &P, unsigned Opc) {
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00003335 if (Opc == Instruction::FCmp) {
Chris Lattnerdf986172009-01-02 07:01:27 +00003336 switch (Lex.getKind()) {
David Tweedd80d6082013-01-07 13:32:38 +00003337 default: return TokError("expected fcmp predicate (e.g. 'oeq')");
Chris Lattnerdf986172009-01-02 07:01:27 +00003338 case lltok::kw_oeq: P = CmpInst::FCMP_OEQ; break;
3339 case lltok::kw_one: P = CmpInst::FCMP_ONE; break;
3340 case lltok::kw_olt: P = CmpInst::FCMP_OLT; break;
3341 case lltok::kw_ogt: P = CmpInst::FCMP_OGT; break;
3342 case lltok::kw_ole: P = CmpInst::FCMP_OLE; break;
3343 case lltok::kw_oge: P = CmpInst::FCMP_OGE; break;
3344 case lltok::kw_ord: P = CmpInst::FCMP_ORD; break;
3345 case lltok::kw_uno: P = CmpInst::FCMP_UNO; break;
3346 case lltok::kw_ueq: P = CmpInst::FCMP_UEQ; break;
3347 case lltok::kw_une: P = CmpInst::FCMP_UNE; break;
3348 case lltok::kw_ult: P = CmpInst::FCMP_ULT; break;
3349 case lltok::kw_ugt: P = CmpInst::FCMP_UGT; break;
3350 case lltok::kw_ule: P = CmpInst::FCMP_ULE; break;
3351 case lltok::kw_uge: P = CmpInst::FCMP_UGE; break;
3352 case lltok::kw_true: P = CmpInst::FCMP_TRUE; break;
3353 case lltok::kw_false: P = CmpInst::FCMP_FALSE; break;
3354 }
3355 } else {
3356 switch (Lex.getKind()) {
David Tweedd80d6082013-01-07 13:32:38 +00003357 default: return TokError("expected icmp predicate (e.g. 'eq')");
Chris Lattnerdf986172009-01-02 07:01:27 +00003358 case lltok::kw_eq: P = CmpInst::ICMP_EQ; break;
3359 case lltok::kw_ne: P = CmpInst::ICMP_NE; break;
3360 case lltok::kw_slt: P = CmpInst::ICMP_SLT; break;
3361 case lltok::kw_sgt: P = CmpInst::ICMP_SGT; break;
3362 case lltok::kw_sle: P = CmpInst::ICMP_SLE; break;
3363 case lltok::kw_sge: P = CmpInst::ICMP_SGE; break;
3364 case lltok::kw_ult: P = CmpInst::ICMP_ULT; break;
3365 case lltok::kw_ugt: P = CmpInst::ICMP_UGT; break;
3366 case lltok::kw_ule: P = CmpInst::ICMP_ULE; break;
3367 case lltok::kw_uge: P = CmpInst::ICMP_UGE; break;
3368 }
3369 }
3370 Lex.Lex();
3371 return false;
3372}
3373
3374//===----------------------------------------------------------------------===//
3375// Terminator Instructions.
3376//===----------------------------------------------------------------------===//
3377
3378/// ParseRet - Parse a return instruction.
Chris Lattner3f3a0f62009-12-29 21:25:40 +00003379/// ::= 'ret' void (',' !dbg, !1)*
3380/// ::= 'ret' TypeAndValue (',' !dbg, !1)*
Chris Lattner437544f2011-06-17 06:49:41 +00003381bool LLParser::ParseRet(Instruction *&Inst, BasicBlock *BB,
Chris Lattner1afcace2011-07-09 17:41:24 +00003382 PerFunctionState &PFS) {
3383 SMLoc TypeLoc = Lex.getLoc();
3384 Type *Ty = 0;
Chris Lattnera9a9e072009-03-09 04:49:14 +00003385 if (ParseType(Ty, true /*void allowed*/)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003386
Chris Lattner1afcace2011-07-09 17:41:24 +00003387 Type *ResType = PFS.getFunction().getReturnType();
Michael Ilseman407a6162012-11-15 22:34:00 +00003388
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00003389 if (Ty->isVoidTy()) {
Chris Lattner1afcace2011-07-09 17:41:24 +00003390 if (!ResType->isVoidTy())
3391 return Error(TypeLoc, "value doesn't match function result type '" +
3392 getTypeString(ResType) + "'");
Michael Ilseman407a6162012-11-15 22:34:00 +00003393
Owen Anderson1d0be152009-08-13 21:58:54 +00003394 Inst = ReturnInst::Create(Context);
Chris Lattnerdf986172009-01-02 07:01:27 +00003395 return false;
3396 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003397
Chris Lattnerdf986172009-01-02 07:01:27 +00003398 Value *RV;
3399 if (ParseValue(Ty, RV, PFS)) return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00003400
Chris Lattner1afcace2011-07-09 17:41:24 +00003401 if (ResType != RV->getType())
3402 return Error(TypeLoc, "value doesn't match function result type '" +
3403 getTypeString(ResType) + "'");
Michael Ilseman407a6162012-11-15 22:34:00 +00003404
Owen Anderson1d0be152009-08-13 21:58:54 +00003405 Inst = ReturnInst::Create(Context, RV);
Chris Lattner437544f2011-06-17 06:49:41 +00003406 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00003407}
3408
3409
3410/// ParseBr
3411/// ::= 'br' TypeAndValue
3412/// ::= 'br' TypeAndValue ',' TypeAndValue ',' TypeAndValue
3413bool LLParser::ParseBr(Instruction *&Inst, PerFunctionState &PFS) {
3414 LocTy Loc, Loc2;
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003415 Value *Op0;
3416 BasicBlock *Op1, *Op2;
Chris Lattnerdf986172009-01-02 07:01:27 +00003417 if (ParseTypeAndValue(Op0, Loc, PFS)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003418
Chris Lattnerdf986172009-01-02 07:01:27 +00003419 if (BasicBlock *BB = dyn_cast<BasicBlock>(Op0)) {
3420 Inst = BranchInst::Create(BB);
3421 return false;
3422 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003423
Owen Anderson1d0be152009-08-13 21:58:54 +00003424 if (Op0->getType() != Type::getInt1Ty(Context))
Chris Lattnerdf986172009-01-02 07:01:27 +00003425 return Error(Loc, "branch condition must have 'i1' type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003426
Chris Lattnerdf986172009-01-02 07:01:27 +00003427 if (ParseToken(lltok::comma, "expected ',' after branch condition") ||
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003428 ParseTypeAndBasicBlock(Op1, Loc, PFS) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003429 ParseToken(lltok::comma, "expected ',' after true destination") ||
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003430 ParseTypeAndBasicBlock(Op2, Loc2, PFS))
Chris Lattnerdf986172009-01-02 07:01:27 +00003431 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003432
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003433 Inst = BranchInst::Create(Op1, Op2, Op0);
Chris Lattnerdf986172009-01-02 07:01:27 +00003434 return false;
3435}
3436
3437/// ParseSwitch
3438/// Instruction
3439/// ::= 'switch' TypeAndValue ',' TypeAndValue '[' JumpTable ']'
3440/// JumpTable
3441/// ::= (TypeAndValue ',' TypeAndValue)*
3442bool LLParser::ParseSwitch(Instruction *&Inst, PerFunctionState &PFS) {
3443 LocTy CondLoc, BBLoc;
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003444 Value *Cond;
3445 BasicBlock *DefaultBB;
Chris Lattnerdf986172009-01-02 07:01:27 +00003446 if (ParseTypeAndValue(Cond, CondLoc, PFS) ||
3447 ParseToken(lltok::comma, "expected ',' after switch condition") ||
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003448 ParseTypeAndBasicBlock(DefaultBB, BBLoc, PFS) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003449 ParseToken(lltok::lsquare, "expected '[' with switch table"))
3450 return true;
3451
Duncan Sands1df98592010-02-16 11:11:14 +00003452 if (!Cond->getType()->isIntegerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00003453 return Error(CondLoc, "switch condition must have integer type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003454
Chris Lattnerdf986172009-01-02 07:01:27 +00003455 // Parse the jump table pairs.
3456 SmallPtrSet<Value*, 32> SeenCases;
3457 SmallVector<std::pair<ConstantInt*, BasicBlock*>, 32> Table;
3458 while (Lex.getKind() != lltok::rsquare) {
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003459 Value *Constant;
3460 BasicBlock *DestBB;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003461
Chris Lattnerdf986172009-01-02 07:01:27 +00003462 if (ParseTypeAndValue(Constant, CondLoc, PFS) ||
3463 ParseToken(lltok::comma, "expected ',' after case value") ||
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003464 ParseTypeAndBasicBlock(DestBB, PFS))
Chris Lattnerdf986172009-01-02 07:01:27 +00003465 return true;
Michael Ilseman407a6162012-11-15 22:34:00 +00003466
Chris Lattnerdf986172009-01-02 07:01:27 +00003467 if (!SeenCases.insert(Constant))
3468 return Error(CondLoc, "duplicate case value in switch");
3469 if (!isa<ConstantInt>(Constant))
3470 return Error(CondLoc, "case value is not a constant integer");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003471
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003472 Table.push_back(std::make_pair(cast<ConstantInt>(Constant), DestBB));
Chris Lattnerdf986172009-01-02 07:01:27 +00003473 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003474
Chris Lattnerdf986172009-01-02 07:01:27 +00003475 Lex.Lex(); // Eat the ']'.
Daniel Dunbara279bc32009-09-20 02:20:51 +00003476
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003477 SwitchInst *SI = SwitchInst::Create(Cond, DefaultBB, Table.size());
Chris Lattnerdf986172009-01-02 07:01:27 +00003478 for (unsigned i = 0, e = Table.size(); i != e; ++i)
3479 SI->addCase(Table[i].first, Table[i].second);
3480 Inst = SI;
3481 return false;
3482}
3483
Chris Lattnerab21db72009-10-28 00:19:10 +00003484/// ParseIndirectBr
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003485/// Instruction
Chris Lattnerab21db72009-10-28 00:19:10 +00003486/// ::= 'indirectbr' TypeAndValue ',' '[' LabelList ']'
3487bool LLParser::ParseIndirectBr(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003488 LocTy AddrLoc;
3489 Value *Address;
3490 if (ParseTypeAndValue(Address, AddrLoc, PFS) ||
Chris Lattnerab21db72009-10-28 00:19:10 +00003491 ParseToken(lltok::comma, "expected ',' after indirectbr address") ||
3492 ParseToken(lltok::lsquare, "expected '[' with indirectbr"))
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003493 return true;
Michael Ilseman407a6162012-11-15 22:34:00 +00003494
Duncan Sands1df98592010-02-16 11:11:14 +00003495 if (!Address->getType()->isPointerTy())
Chris Lattnerab21db72009-10-28 00:19:10 +00003496 return Error(AddrLoc, "indirectbr address must have pointer type");
Michael Ilseman407a6162012-11-15 22:34:00 +00003497
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003498 // Parse the destination list.
3499 SmallVector<BasicBlock*, 16> DestList;
Michael Ilseman407a6162012-11-15 22:34:00 +00003500
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003501 if (Lex.getKind() != lltok::rsquare) {
3502 BasicBlock *DestBB;
3503 if (ParseTypeAndBasicBlock(DestBB, PFS))
3504 return true;
3505 DestList.push_back(DestBB);
Michael Ilseman407a6162012-11-15 22:34:00 +00003506
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003507 while (EatIfPresent(lltok::comma)) {
3508 if (ParseTypeAndBasicBlock(DestBB, PFS))
3509 return true;
3510 DestList.push_back(DestBB);
3511 }
3512 }
Michael Ilseman407a6162012-11-15 22:34:00 +00003513
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003514 if (ParseToken(lltok::rsquare, "expected ']' at end of block list"))
3515 return true;
3516
Chris Lattnerab21db72009-10-28 00:19:10 +00003517 IndirectBrInst *IBI = IndirectBrInst::Create(Address, DestList.size());
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003518 for (unsigned i = 0, e = DestList.size(); i != e; ++i)
3519 IBI->addDestination(DestList[i]);
3520 Inst = IBI;
3521 return false;
3522}
3523
3524
Chris Lattnerdf986172009-01-02 07:01:27 +00003525/// ParseInvoke
3526/// ::= 'invoke' OptionalCallingConv OptionalAttrs Type Value ParamList
3527/// OptionalAttrs 'to' TypeAndValue 'unwind' TypeAndValue
3528bool LLParser::ParseInvoke(Instruction *&Inst, PerFunctionState &PFS) {
3529 LocTy CallLoc = Lex.getLoc();
Bill Wendling702cc912012-10-15 20:35:56 +00003530 AttrBuilder RetAttrs, FnAttrs;
Bill Wendlingbaad55c2013-02-08 06:32:06 +00003531 std::vector<unsigned> FwdRefAttrGrps;
Bill Wendling143d4642013-02-22 00:12:35 +00003532 LocTy NoBuiltinLoc;
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00003533 CallingConv::ID CC;
Chris Lattner1afcace2011-07-09 17:41:24 +00003534 Type *RetType = 0;
Chris Lattnerdf986172009-01-02 07:01:27 +00003535 LocTy RetTypeLoc;
3536 ValID CalleeID;
3537 SmallVector<ParamInfo, 16> ArgList;
3538
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003539 BasicBlock *NormalBB, *UnwindBB;
Chris Lattnerdf986172009-01-02 07:01:27 +00003540 if (ParseOptionalCallingConv(CC) ||
Bill Wendlinge01b81b2012-12-04 23:40:58 +00003541 ParseOptionalReturnAttrs(RetAttrs) ||
Chris Lattnera9a9e072009-03-09 04:49:14 +00003542 ParseType(RetType, RetTypeLoc, true /*void allowed*/) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003543 ParseValID(CalleeID) ||
3544 ParseParameterList(ArgList, PFS) ||
Bill Wendling143d4642013-02-22 00:12:35 +00003545 ParseFnAttributeValuePairs(FnAttrs, FwdRefAttrGrps, false,
3546 NoBuiltinLoc) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003547 ParseToken(lltok::kw_to, "expected 'to' in invoke") ||
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003548 ParseTypeAndBasicBlock(NormalBB, PFS) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003549 ParseToken(lltok::kw_unwind, "expected 'unwind' in invoke") ||
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003550 ParseTypeAndBasicBlock(UnwindBB, PFS))
Chris Lattnerdf986172009-01-02 07:01:27 +00003551 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003552
Chris Lattnerdf986172009-01-02 07:01:27 +00003553 // If RetType is a non-function pointer type, then this is the short syntax
3554 // for the call, which means that RetType is just the return type. Infer the
3555 // rest of the function argument types from the arguments that are present.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00003556 PointerType *PFTy = 0;
3557 FunctionType *Ty = 0;
Chris Lattnerdf986172009-01-02 07:01:27 +00003558 if (!(PFTy = dyn_cast<PointerType>(RetType)) ||
3559 !(Ty = dyn_cast<FunctionType>(PFTy->getElementType()))) {
3560 // Pull out the types of all of the arguments...
Jay Foad5fdd6c82011-07-12 14:06:48 +00003561 std::vector<Type*> ParamTypes;
Chris Lattnerdf986172009-01-02 07:01:27 +00003562 for (unsigned i = 0, e = ArgList.size(); i != e; ++i)
3563 ParamTypes.push_back(ArgList[i].V->getType());
Daniel Dunbara279bc32009-09-20 02:20:51 +00003564
Chris Lattnerdf986172009-01-02 07:01:27 +00003565 if (!FunctionType::isValidReturnType(RetType))
3566 return Error(RetTypeLoc, "Invalid result type for LLVM function");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003567
Owen Andersondebcb012009-07-29 22:17:13 +00003568 Ty = FunctionType::get(RetType, ParamTypes, false);
3569 PFTy = PointerType::getUnqual(Ty);
Chris Lattnerdf986172009-01-02 07:01:27 +00003570 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003571
Chris Lattnerdf986172009-01-02 07:01:27 +00003572 // Look up the callee.
3573 Value *Callee;
Victor Hernandez92f238d2010-01-11 22:31:58 +00003574 if (ConvertValIDToValue(PFTy, CalleeID, Callee, &PFS)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003575
Bill Wendling034b94b2012-12-19 07:18:57 +00003576 // Set up the Attribute for the function.
Bill Wendlinga1683d62013-01-27 02:24:02 +00003577 SmallVector<AttributeSet, 8> Attrs;
Bill Wendlinge603fe42012-09-19 23:54:18 +00003578 if (RetAttrs.hasAttributes())
Bill Wendlinga1683d62013-01-27 02:24:02 +00003579 Attrs.push_back(AttributeSet::get(RetType->getContext(),
3580 AttributeSet::ReturnIndex,
3581 RetAttrs));
Daniel Dunbara279bc32009-09-20 02:20:51 +00003582
Chris Lattnerdf986172009-01-02 07:01:27 +00003583 SmallVector<Value*, 8> Args;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003584
Chris Lattnerdf986172009-01-02 07:01:27 +00003585 // Loop through FunctionType's arguments and ensure they are specified
3586 // correctly. Also, gather any parameter attributes.
3587 FunctionType::param_iterator I = Ty->param_begin();
3588 FunctionType::param_iterator E = Ty->param_end();
3589 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
Chris Lattnerdb125cf2011-07-18 04:54:35 +00003590 Type *ExpectedTy = 0;
Chris Lattnerdf986172009-01-02 07:01:27 +00003591 if (I != E) {
3592 ExpectedTy = *I++;
3593 } else if (!Ty->isVarArg()) {
3594 return Error(ArgList[i].Loc, "too many arguments specified");
3595 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003596
Chris Lattnerdf986172009-01-02 07:01:27 +00003597 if (ExpectedTy && ExpectedTy != ArgList[i].V->getType())
3598 return Error(ArgList[i].Loc, "argument is not of expected type '" +
Chris Lattner0cd0d882011-06-18 21:18:23 +00003599 getTypeString(ExpectedTy) + "'");
Chris Lattnerdf986172009-01-02 07:01:27 +00003600 Args.push_back(ArgList[i].V);
Bill Wendling73dee182013-01-31 00:29:54 +00003601 if (ArgList[i].Attrs.hasAttributes(i + 1)) {
3602 AttrBuilder B(ArgList[i].Attrs, i + 1);
Bill Wendlinga1683d62013-01-27 02:24:02 +00003603 Attrs.push_back(AttributeSet::get(RetType->getContext(), i + 1, B));
3604 }
Chris Lattnerdf986172009-01-02 07:01:27 +00003605 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003606
Chris Lattnerdf986172009-01-02 07:01:27 +00003607 if (I != E)
3608 return Error(CallLoc, "not enough parameters specified for call");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003609
Bill Wendlinge603fe42012-09-19 23:54:18 +00003610 if (FnAttrs.hasAttributes())
Bill Wendlinga1683d62013-01-27 02:24:02 +00003611 Attrs.push_back(AttributeSet::get(RetType->getContext(),
3612 AttributeSet::FunctionIndex,
3613 FnAttrs));
Daniel Dunbara279bc32009-09-20 02:20:51 +00003614
Bill Wendling034b94b2012-12-19 07:18:57 +00003615 // Finish off the Attribute and check them
Bill Wendling99faa3b2012-12-07 23:16:57 +00003616 AttributeSet PAL = AttributeSet::get(Context, Attrs);
Daniel Dunbara279bc32009-09-20 02:20:51 +00003617
Jay Foada3efbb12011-07-15 08:37:34 +00003618 InvokeInst *II = InvokeInst::Create(Callee, NormalBB, UnwindBB, Args);
Chris Lattnerdf986172009-01-02 07:01:27 +00003619 II->setCallingConv(CC);
3620 II->setAttributes(PAL);
Bill Wendlingbaad55c2013-02-08 06:32:06 +00003621 ForwardRefAttrGroups[II] = FwdRefAttrGrps;
Chris Lattnerdf986172009-01-02 07:01:27 +00003622 Inst = II;
3623 return false;
3624}
3625
Bill Wendlingdccc03b2011-07-31 06:30:59 +00003626/// ParseResume
3627/// ::= 'resume' TypeAndValue
3628bool LLParser::ParseResume(Instruction *&Inst, PerFunctionState &PFS) {
3629 Value *Exn; LocTy ExnLoc;
Bill Wendlingdccc03b2011-07-31 06:30:59 +00003630 if (ParseTypeAndValue(Exn, ExnLoc, PFS))
3631 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00003632
Bill Wendlingdccc03b2011-07-31 06:30:59 +00003633 ResumeInst *RI = ResumeInst::Create(Exn);
3634 Inst = RI;
3635 return false;
3636}
Chris Lattnerdf986172009-01-02 07:01:27 +00003637
3638//===----------------------------------------------------------------------===//
3639// Binary Operators.
3640//===----------------------------------------------------------------------===//
3641
3642/// ParseArithmetic
Chris Lattnere914b592009-01-05 08:24:46 +00003643/// ::= ArithmeticOps TypeAndValue ',' Value
3644///
3645/// If OperandType is 0, then any FP or integer operand is allowed. If it is 1,
3646/// then any integer operand is allowed, if it is 2, any fp operand is allowed.
Chris Lattnerdf986172009-01-02 07:01:27 +00003647bool LLParser::ParseArithmetic(Instruction *&Inst, PerFunctionState &PFS,
Chris Lattnere914b592009-01-05 08:24:46 +00003648 unsigned Opc, unsigned OperandType) {
Chris Lattnerdf986172009-01-02 07:01:27 +00003649 LocTy Loc; Value *LHS, *RHS;
3650 if (ParseTypeAndValue(LHS, Loc, PFS) ||
3651 ParseToken(lltok::comma, "expected ',' in arithmetic operation") ||
3652 ParseValue(LHS->getType(), RHS, PFS))
3653 return true;
3654
Chris Lattnere914b592009-01-05 08:24:46 +00003655 bool Valid;
3656 switch (OperandType) {
Torok Edwinc23197a2009-07-14 16:55:14 +00003657 default: llvm_unreachable("Unknown operand type!");
Chris Lattnere914b592009-01-05 08:24:46 +00003658 case 0: // int or FP.
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00003659 Valid = LHS->getType()->isIntOrIntVectorTy() ||
3660 LHS->getType()->isFPOrFPVectorTy();
Chris Lattnere914b592009-01-05 08:24:46 +00003661 break;
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00003662 case 1: Valid = LHS->getType()->isIntOrIntVectorTy(); break;
3663 case 2: Valid = LHS->getType()->isFPOrFPVectorTy(); break;
Chris Lattnere914b592009-01-05 08:24:46 +00003664 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003665
Chris Lattnere914b592009-01-05 08:24:46 +00003666 if (!Valid)
3667 return Error(Loc, "invalid operand type for instruction");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003668
Chris Lattnerdf986172009-01-02 07:01:27 +00003669 Inst = BinaryOperator::Create((Instruction::BinaryOps)Opc, LHS, RHS);
3670 return false;
3671}
3672
3673/// ParseLogical
3674/// ::= ArithmeticOps TypeAndValue ',' Value {
3675bool LLParser::ParseLogical(Instruction *&Inst, PerFunctionState &PFS,
3676 unsigned Opc) {
3677 LocTy Loc; Value *LHS, *RHS;
3678 if (ParseTypeAndValue(LHS, Loc, PFS) ||
3679 ParseToken(lltok::comma, "expected ',' in logical operation") ||
3680 ParseValue(LHS->getType(), RHS, PFS))
3681 return true;
3682
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00003683 if (!LHS->getType()->isIntOrIntVectorTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00003684 return Error(Loc,"instruction requires integer or integer vector operands");
3685
3686 Inst = BinaryOperator::Create((Instruction::BinaryOps)Opc, LHS, RHS);
3687 return false;
3688}
3689
3690
3691/// ParseCompare
3692/// ::= 'icmp' IPredicates TypeAndValue ',' Value
3693/// ::= 'fcmp' FPredicates TypeAndValue ',' Value
Chris Lattnerdf986172009-01-02 07:01:27 +00003694bool LLParser::ParseCompare(Instruction *&Inst, PerFunctionState &PFS,
3695 unsigned Opc) {
3696 // Parse the integer/fp comparison predicate.
3697 LocTy Loc;
3698 unsigned Pred;
3699 Value *LHS, *RHS;
3700 if (ParseCmpPredicate(Pred, Opc) ||
3701 ParseTypeAndValue(LHS, Loc, PFS) ||
3702 ParseToken(lltok::comma, "expected ',' after compare value") ||
3703 ParseValue(LHS->getType(), RHS, PFS))
3704 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003705
Chris Lattnerdf986172009-01-02 07:01:27 +00003706 if (Opc == Instruction::FCmp) {
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00003707 if (!LHS->getType()->isFPOrFPVectorTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00003708 return Error(Loc, "fcmp requires floating point operands");
Dan Gohman1c8a23c2009-08-25 23:17:54 +00003709 Inst = new FCmpInst(CmpInst::Predicate(Pred), LHS, RHS);
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00003710 } else {
3711 assert(Opc == Instruction::ICmp && "Unknown opcode for CmpInst!");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00003712 if (!LHS->getType()->isIntOrIntVectorTy() &&
Nadav Rotem16087692011-12-05 06:29:09 +00003713 !LHS->getType()->getScalarType()->isPointerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00003714 return Error(Loc, "icmp requires integer operands");
Dan Gohman1c8a23c2009-08-25 23:17:54 +00003715 Inst = new ICmpInst(CmpInst::Predicate(Pred), LHS, RHS);
Chris Lattnerdf986172009-01-02 07:01:27 +00003716 }
3717 return false;
3718}
3719
3720//===----------------------------------------------------------------------===//
3721// Other Instructions.
3722//===----------------------------------------------------------------------===//
3723
3724
3725/// ParseCast
3726/// ::= CastOpc TypeAndValue 'to' Type
3727bool LLParser::ParseCast(Instruction *&Inst, PerFunctionState &PFS,
3728 unsigned Opc) {
Chris Lattner1afcace2011-07-09 17:41:24 +00003729 LocTy Loc;
3730 Value *Op;
3731 Type *DestTy = 0;
Chris Lattnerdf986172009-01-02 07:01:27 +00003732 if (ParseTypeAndValue(Op, Loc, PFS) ||
3733 ParseToken(lltok::kw_to, "expected 'to' after cast value") ||
3734 ParseType(DestTy))
3735 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003736
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00003737 if (!CastInst::castIsValid((Instruction::CastOps)Opc, Op, DestTy)) {
3738 CastInst::castIsValid((Instruction::CastOps)Opc, Op, DestTy);
Chris Lattnerdf986172009-01-02 07:01:27 +00003739 return Error(Loc, "invalid cast opcode for cast from '" +
Chris Lattner0cd0d882011-06-18 21:18:23 +00003740 getTypeString(Op->getType()) + "' to '" +
3741 getTypeString(DestTy) + "'");
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00003742 }
Chris Lattnerdf986172009-01-02 07:01:27 +00003743 Inst = CastInst::Create((Instruction::CastOps)Opc, Op, DestTy);
3744 return false;
3745}
3746
3747/// ParseSelect
3748/// ::= 'select' TypeAndValue ',' TypeAndValue ',' TypeAndValue
3749bool LLParser::ParseSelect(Instruction *&Inst, PerFunctionState &PFS) {
3750 LocTy Loc;
3751 Value *Op0, *Op1, *Op2;
3752 if (ParseTypeAndValue(Op0, Loc, PFS) ||
3753 ParseToken(lltok::comma, "expected ',' after select condition") ||
3754 ParseTypeAndValue(Op1, PFS) ||
3755 ParseToken(lltok::comma, "expected ',' after select value") ||
3756 ParseTypeAndValue(Op2, PFS))
3757 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003758
Chris Lattnerdf986172009-01-02 07:01:27 +00003759 if (const char *Reason = SelectInst::areInvalidOperands(Op0, Op1, Op2))
3760 return Error(Loc, Reason);
Daniel Dunbara279bc32009-09-20 02:20:51 +00003761
Chris Lattnerdf986172009-01-02 07:01:27 +00003762 Inst = SelectInst::Create(Op0, Op1, Op2);
3763 return false;
3764}
3765
Chris Lattner0088a5c2009-01-05 08:18:44 +00003766/// ParseVA_Arg
3767/// ::= 'va_arg' TypeAndValue ',' Type
3768bool LLParser::ParseVA_Arg(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00003769 Value *Op;
Chris Lattner1afcace2011-07-09 17:41:24 +00003770 Type *EltTy = 0;
Chris Lattner0088a5c2009-01-05 08:18:44 +00003771 LocTy TypeLoc;
Chris Lattnerdf986172009-01-02 07:01:27 +00003772 if (ParseTypeAndValue(Op, PFS) ||
3773 ParseToken(lltok::comma, "expected ',' after vaarg operand") ||
Chris Lattner0088a5c2009-01-05 08:18:44 +00003774 ParseType(EltTy, TypeLoc))
Chris Lattnerdf986172009-01-02 07:01:27 +00003775 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003776
Chris Lattner0088a5c2009-01-05 08:18:44 +00003777 if (!EltTy->isFirstClassType())
3778 return Error(TypeLoc, "va_arg requires operand with first class type");
Chris Lattnerdf986172009-01-02 07:01:27 +00003779
3780 Inst = new VAArgInst(Op, EltTy);
3781 return false;
3782}
3783
3784/// ParseExtractElement
3785/// ::= 'extractelement' TypeAndValue ',' TypeAndValue
3786bool LLParser::ParseExtractElement(Instruction *&Inst, PerFunctionState &PFS) {
3787 LocTy Loc;
3788 Value *Op0, *Op1;
3789 if (ParseTypeAndValue(Op0, Loc, PFS) ||
3790 ParseToken(lltok::comma, "expected ',' after extract value") ||
3791 ParseTypeAndValue(Op1, PFS))
3792 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003793
Chris Lattnerdf986172009-01-02 07:01:27 +00003794 if (!ExtractElementInst::isValidOperands(Op0, Op1))
3795 return Error(Loc, "invalid extractelement operands");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003796
Eric Christophera3500da2009-07-25 02:28:41 +00003797 Inst = ExtractElementInst::Create(Op0, Op1);
Chris Lattnerdf986172009-01-02 07:01:27 +00003798 return false;
3799}
3800
3801/// ParseInsertElement
3802/// ::= 'insertelement' TypeAndValue ',' TypeAndValue ',' TypeAndValue
3803bool LLParser::ParseInsertElement(Instruction *&Inst, PerFunctionState &PFS) {
3804 LocTy Loc;
3805 Value *Op0, *Op1, *Op2;
3806 if (ParseTypeAndValue(Op0, Loc, PFS) ||
3807 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
3808 ParseTypeAndValue(Op1, PFS) ||
3809 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
3810 ParseTypeAndValue(Op2, PFS))
3811 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003812
Chris Lattnerdf986172009-01-02 07:01:27 +00003813 if (!InsertElementInst::isValidOperands(Op0, Op1, Op2))
Eric Christopher0aaf4e92009-07-23 01:01:32 +00003814 return Error(Loc, "invalid insertelement operands");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003815
Chris Lattnerdf986172009-01-02 07:01:27 +00003816 Inst = InsertElementInst::Create(Op0, Op1, Op2);
3817 return false;
3818}
3819
3820/// ParseShuffleVector
3821/// ::= 'shufflevector' TypeAndValue ',' TypeAndValue ',' TypeAndValue
3822bool LLParser::ParseShuffleVector(Instruction *&Inst, PerFunctionState &PFS) {
3823 LocTy Loc;
3824 Value *Op0, *Op1, *Op2;
3825 if (ParseTypeAndValue(Op0, Loc, PFS) ||
3826 ParseToken(lltok::comma, "expected ',' after shuffle mask") ||
3827 ParseTypeAndValue(Op1, PFS) ||
3828 ParseToken(lltok::comma, "expected ',' after shuffle value") ||
3829 ParseTypeAndValue(Op2, PFS))
3830 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003831
Chris Lattnerdf986172009-01-02 07:01:27 +00003832 if (!ShuffleVectorInst::isValidOperands(Op0, Op1, Op2))
Pete Cooperaf393682012-02-01 23:43:12 +00003833 return Error(Loc, "invalid shufflevector operands");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003834
Chris Lattnerdf986172009-01-02 07:01:27 +00003835 Inst = new ShuffleVectorInst(Op0, Op1, Op2);
3836 return false;
3837}
3838
3839/// ParsePHI
Chris Lattnerc6e20092009-10-18 05:27:44 +00003840/// ::= 'phi' Type '[' Value ',' Value ']' (',' '[' Value ',' Value ']')*
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003841int LLParser::ParsePHI(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattner1afcace2011-07-09 17:41:24 +00003842 Type *Ty = 0; LocTy TypeLoc;
Chris Lattnerdf986172009-01-02 07:01:27 +00003843 Value *Op0, *Op1;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003844
Chris Lattner1afcace2011-07-09 17:41:24 +00003845 if (ParseType(Ty, TypeLoc) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003846 ParseToken(lltok::lsquare, "expected '[' in phi value list") ||
3847 ParseValue(Ty, Op0, PFS) ||
3848 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
Owen Anderson1d0be152009-08-13 21:58:54 +00003849 ParseValue(Type::getLabelTy(Context), Op1, PFS) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003850 ParseToken(lltok::rsquare, "expected ']' in phi value list"))
3851 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003852
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003853 bool AteExtraComma = false;
Chris Lattnerdf986172009-01-02 07:01:27 +00003854 SmallVector<std::pair<Value*, BasicBlock*>, 16> PHIVals;
3855 while (1) {
3856 PHIVals.push_back(std::make_pair(Op0, cast<BasicBlock>(Op1)));
Daniel Dunbara279bc32009-09-20 02:20:51 +00003857
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003858 if (!EatIfPresent(lltok::comma))
Chris Lattnerdf986172009-01-02 07:01:27 +00003859 break;
3860
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003861 if (Lex.getKind() == lltok::MetadataVar) {
3862 AteExtraComma = true;
Devang Patela43d46f2009-10-16 18:45:49 +00003863 break;
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003864 }
Devang Patela43d46f2009-10-16 18:45:49 +00003865
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003866 if (ParseToken(lltok::lsquare, "expected '[' in phi value list") ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003867 ParseValue(Ty, Op0, PFS) ||
3868 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
Owen Anderson1d0be152009-08-13 21:58:54 +00003869 ParseValue(Type::getLabelTy(Context), Op1, PFS) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003870 ParseToken(lltok::rsquare, "expected ']' in phi value list"))
3871 return true;
3872 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003873
Chris Lattnerdf986172009-01-02 07:01:27 +00003874 if (!Ty->isFirstClassType())
3875 return Error(TypeLoc, "phi node must have first class type");
3876
Jay Foad3ecfc862011-03-30 11:28:46 +00003877 PHINode *PN = PHINode::Create(Ty, PHIVals.size());
Chris Lattnerdf986172009-01-02 07:01:27 +00003878 for (unsigned i = 0, e = PHIVals.size(); i != e; ++i)
3879 PN->addIncoming(PHIVals[i].first, PHIVals[i].second);
3880 Inst = PN;
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003881 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerdf986172009-01-02 07:01:27 +00003882}
3883
Bill Wendlinge6e88262011-08-12 20:24:12 +00003884/// ParseLandingPad
3885/// ::= 'landingpad' Type 'personality' TypeAndValue 'cleanup'? Clause+
3886/// Clause
3887/// ::= 'catch' TypeAndValue
3888/// ::= 'filter'
3889/// ::= 'filter' TypeAndValue ( ',' TypeAndValue )*
3890bool LLParser::ParseLandingPad(Instruction *&Inst, PerFunctionState &PFS) {
3891 Type *Ty = 0; LocTy TyLoc;
3892 Value *PersFn; LocTy PersFnLoc;
Bill Wendlinge6e88262011-08-12 20:24:12 +00003893
3894 if (ParseType(Ty, TyLoc) ||
3895 ParseToken(lltok::kw_personality, "expected 'personality'") ||
3896 ParseTypeAndValue(PersFn, PersFnLoc, PFS))
3897 return true;
3898
3899 LandingPadInst *LP = LandingPadInst::Create(Ty, PersFn, 0);
3900 LP->setCleanup(EatIfPresent(lltok::kw_cleanup));
3901
3902 while (Lex.getKind() == lltok::kw_catch || Lex.getKind() == lltok::kw_filter){
3903 LandingPadInst::ClauseType CT;
3904 if (EatIfPresent(lltok::kw_catch))
3905 CT = LandingPadInst::Catch;
3906 else if (EatIfPresent(lltok::kw_filter))
3907 CT = LandingPadInst::Filter;
3908 else
3909 return TokError("expected 'catch' or 'filter' clause type");
3910
3911 Value *V; LocTy VLoc;
3912 if (ParseTypeAndValue(V, VLoc, PFS)) {
3913 delete LP;
3914 return true;
3915 }
3916
Bill Wendling746c8822011-08-12 20:52:25 +00003917 // A 'catch' type expects a non-array constant. A filter clause expects an
3918 // array constant.
3919 if (CT == LandingPadInst::Catch) {
3920 if (isa<ArrayType>(V->getType()))
3921 Error(VLoc, "'catch' clause has an invalid type");
3922 } else {
3923 if (!isa<ArrayType>(V->getType()))
3924 Error(VLoc, "'filter' clause has an invalid type");
3925 }
3926
Bill Wendlinge6e88262011-08-12 20:24:12 +00003927 LP->addClause(V);
3928 }
3929
3930 Inst = LP;
3931 return false;
3932}
3933
Chris Lattnerdf986172009-01-02 07:01:27 +00003934/// ParseCall
3935/// ::= 'tail'? 'call' OptionalCallingConv OptionalAttrs Type Value
3936/// ParameterList OptionalAttrs
3937bool LLParser::ParseCall(Instruction *&Inst, PerFunctionState &PFS,
3938 bool isTail) {
Bill Wendling702cc912012-10-15 20:35:56 +00003939 AttrBuilder RetAttrs, FnAttrs;
Bill Wendlingbaad55c2013-02-08 06:32:06 +00003940 std::vector<unsigned> FwdRefAttrGrps;
Michael Gottesman2253a2f2013-06-27 00:25:01 +00003941 LocTy BuiltinLoc;
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00003942 CallingConv::ID CC;
Chris Lattner1afcace2011-07-09 17:41:24 +00003943 Type *RetType = 0;
Chris Lattnerdf986172009-01-02 07:01:27 +00003944 LocTy RetTypeLoc;
3945 ValID CalleeID;
3946 SmallVector<ParamInfo, 16> ArgList;
3947 LocTy CallLoc = Lex.getLoc();
Daniel Dunbara279bc32009-09-20 02:20:51 +00003948
Chris Lattnerdf986172009-01-02 07:01:27 +00003949 if ((isTail && ParseToken(lltok::kw_call, "expected 'tail call'")) ||
3950 ParseOptionalCallingConv(CC) ||
Bill Wendlinge01b81b2012-12-04 23:40:58 +00003951 ParseOptionalReturnAttrs(RetAttrs) ||
Chris Lattnera9a9e072009-03-09 04:49:14 +00003952 ParseType(RetType, RetTypeLoc, true /*void allowed*/) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003953 ParseValID(CalleeID) ||
3954 ParseParameterList(ArgList, PFS) ||
Bill Wendling143d4642013-02-22 00:12:35 +00003955 ParseFnAttributeValuePairs(FnAttrs, FwdRefAttrGrps, false,
Michael Gottesman2253a2f2013-06-27 00:25:01 +00003956 BuiltinLoc))
Chris Lattnerdf986172009-01-02 07:01:27 +00003957 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003958
Chris Lattnerdf986172009-01-02 07:01:27 +00003959 // If RetType is a non-function pointer type, then this is the short syntax
3960 // for the call, which means that RetType is just the return type. Infer the
3961 // rest of the function argument types from the arguments that are present.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00003962 PointerType *PFTy = 0;
3963 FunctionType *Ty = 0;
Chris Lattnerdf986172009-01-02 07:01:27 +00003964 if (!(PFTy = dyn_cast<PointerType>(RetType)) ||
3965 !(Ty = dyn_cast<FunctionType>(PFTy->getElementType()))) {
3966 // Pull out the types of all of the arguments...
Jay Foad5fdd6c82011-07-12 14:06:48 +00003967 std::vector<Type*> ParamTypes;
Eli Friedman83b4a972010-07-24 23:06:59 +00003968 for (unsigned i = 0, e = ArgList.size(); i != e; ++i)
3969 ParamTypes.push_back(ArgList[i].V->getType());
Daniel Dunbara279bc32009-09-20 02:20:51 +00003970
Chris Lattnerdf986172009-01-02 07:01:27 +00003971 if (!FunctionType::isValidReturnType(RetType))
3972 return Error(RetTypeLoc, "Invalid result type for LLVM function");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003973
Owen Andersondebcb012009-07-29 22:17:13 +00003974 Ty = FunctionType::get(RetType, ParamTypes, false);
3975 PFTy = PointerType::getUnqual(Ty);
Chris Lattnerdf986172009-01-02 07:01:27 +00003976 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003977
Chris Lattnerdf986172009-01-02 07:01:27 +00003978 // Look up the callee.
3979 Value *Callee;
Victor Hernandez92f238d2010-01-11 22:31:58 +00003980 if (ConvertValIDToValue(PFTy, CalleeID, Callee, &PFS)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003981
Bill Wendling034b94b2012-12-19 07:18:57 +00003982 // Set up the Attribute for the function.
Bill Wendlinga1683d62013-01-27 02:24:02 +00003983 SmallVector<AttributeSet, 8> Attrs;
Bill Wendlinge603fe42012-09-19 23:54:18 +00003984 if (RetAttrs.hasAttributes())
Bill Wendlinga1683d62013-01-27 02:24:02 +00003985 Attrs.push_back(AttributeSet::get(RetType->getContext(),
3986 AttributeSet::ReturnIndex,
3987 RetAttrs));
Daniel Dunbara279bc32009-09-20 02:20:51 +00003988
Chris Lattnerdf986172009-01-02 07:01:27 +00003989 SmallVector<Value*, 8> Args;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003990
Chris Lattnerdf986172009-01-02 07:01:27 +00003991 // Loop through FunctionType's arguments and ensure they are specified
3992 // correctly. Also, gather any parameter attributes.
3993 FunctionType::param_iterator I = Ty->param_begin();
3994 FunctionType::param_iterator E = Ty->param_end();
3995 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
Chris Lattnerdb125cf2011-07-18 04:54:35 +00003996 Type *ExpectedTy = 0;
Chris Lattnerdf986172009-01-02 07:01:27 +00003997 if (I != E) {
3998 ExpectedTy = *I++;
3999 } else if (!Ty->isVarArg()) {
4000 return Error(ArgList[i].Loc, "too many arguments specified");
4001 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00004002
Chris Lattnerdf986172009-01-02 07:01:27 +00004003 if (ExpectedTy && ExpectedTy != ArgList[i].V->getType())
4004 return Error(ArgList[i].Loc, "argument is not of expected type '" +
Chris Lattner0cd0d882011-06-18 21:18:23 +00004005 getTypeString(ExpectedTy) + "'");
Chris Lattnerdf986172009-01-02 07:01:27 +00004006 Args.push_back(ArgList[i].V);
Bill Wendling73dee182013-01-31 00:29:54 +00004007 if (ArgList[i].Attrs.hasAttributes(i + 1)) {
4008 AttrBuilder B(ArgList[i].Attrs, i + 1);
Bill Wendlinga1683d62013-01-27 02:24:02 +00004009 Attrs.push_back(AttributeSet::get(RetType->getContext(), i + 1, B));
4010 }
Chris Lattnerdf986172009-01-02 07:01:27 +00004011 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00004012
Chris Lattnerdf986172009-01-02 07:01:27 +00004013 if (I != E)
4014 return Error(CallLoc, "not enough parameters specified for call");
4015
Bill Wendlinge603fe42012-09-19 23:54:18 +00004016 if (FnAttrs.hasAttributes())
Bill Wendlinga1683d62013-01-27 02:24:02 +00004017 Attrs.push_back(AttributeSet::get(RetType->getContext(),
4018 AttributeSet::FunctionIndex,
4019 FnAttrs));
Chris Lattnerdf986172009-01-02 07:01:27 +00004020
Bill Wendling034b94b2012-12-19 07:18:57 +00004021 // Finish off the Attribute and check them
Bill Wendling99faa3b2012-12-07 23:16:57 +00004022 AttributeSet PAL = AttributeSet::get(Context, Attrs);
Daniel Dunbara279bc32009-09-20 02:20:51 +00004023
Jay Foada3efbb12011-07-15 08:37:34 +00004024 CallInst *CI = CallInst::Create(Callee, Args);
Chris Lattnerdf986172009-01-02 07:01:27 +00004025 CI->setTailCall(isTail);
4026 CI->setCallingConv(CC);
4027 CI->setAttributes(PAL);
Bill Wendlingbaad55c2013-02-08 06:32:06 +00004028 ForwardRefAttrGroups[CI] = FwdRefAttrGrps;
Chris Lattnerdf986172009-01-02 07:01:27 +00004029 Inst = CI;
4030 return false;
4031}
4032
4033//===----------------------------------------------------------------------===//
4034// Memory Instructions.
4035//===----------------------------------------------------------------------===//
4036
4037/// ParseAlloc
Devang Patelf633a062009-09-17 23:04:48 +00004038/// ::= 'alloca' Type (',' TypeAndValue)? (',' OptionalInfo)?
Chris Lattnerf3a789d2011-06-17 03:16:47 +00004039int LLParser::ParseAlloc(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00004040 Value *Size = 0;
Chris Lattnereeb4a842009-07-02 23:08:13 +00004041 LocTy SizeLoc;
Chris Lattnerdf986172009-01-02 07:01:27 +00004042 unsigned Alignment = 0;
Chris Lattner1afcace2011-07-09 17:41:24 +00004043 Type *Ty = 0;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00004044 if (ParseType(Ty)) return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00004045
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00004046 bool AteExtraComma = false;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00004047 if (EatIfPresent(lltok::comma)) {
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00004048 if (Lex.getKind() == lltok::kw_align) {
4049 if (ParseOptionalAlignment(Alignment)) return true;
4050 } else if (Lex.getKind() == lltok::MetadataVar) {
4051 AteExtraComma = true;
Devang Patelf633a062009-09-17 23:04:48 +00004052 } else {
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00004053 if (ParseTypeAndValue(Size, SizeLoc, PFS) ||
4054 ParseOptionalCommaAlign(Alignment, AteExtraComma))
4055 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00004056 }
4057 }
4058
Dan Gohmanf75a7d32010-05-28 01:14:11 +00004059 if (Size && !Size->getType()->isIntegerTy())
4060 return Error(SizeLoc, "element count must have integer type");
Chris Lattnerdf986172009-01-02 07:01:27 +00004061
Chris Lattnerf3a789d2011-06-17 03:16:47 +00004062 Inst = new AllocaInst(Ty, Size, Alignment);
4063 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerdf986172009-01-02 07:01:27 +00004064}
4065
4066/// ParseLoad
Eli Friedmanf03bb262011-08-12 22:50:01 +00004067/// ::= 'load' 'volatile'? TypeAndValue (',' 'align' i32)?
Michael Ilseman407a6162012-11-15 22:34:00 +00004068/// ::= 'load' 'atomic' 'volatile'? TypeAndValue
Eli Friedmanf03bb262011-08-12 22:50:01 +00004069/// 'singlethread'? AtomicOrdering (',' 'align' i32)?
Chris Lattnerfbe910e2011-11-27 06:56:53 +00004070int LLParser::ParseLoad(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00004071 Value *Val; LocTy Loc;
Devang Patelf633a062009-09-17 23:04:48 +00004072 unsigned Alignment = 0;
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00004073 bool AteExtraComma = false;
Eli Friedmanf03bb262011-08-12 22:50:01 +00004074 bool isAtomic = false;
Eli Friedman21006d42011-08-09 23:02:53 +00004075 AtomicOrdering Ordering = NotAtomic;
4076 SynchronizationScope Scope = CrossThread;
Eli Friedmanf03bb262011-08-12 22:50:01 +00004077
4078 if (Lex.getKind() == lltok::kw_atomic) {
Eli Friedmanf03bb262011-08-12 22:50:01 +00004079 isAtomic = true;
4080 Lex.Lex();
4081 }
4082
Chris Lattnerfbe910e2011-11-27 06:56:53 +00004083 bool isVolatile = false;
Eli Friedmanf03bb262011-08-12 22:50:01 +00004084 if (Lex.getKind() == lltok::kw_volatile) {
Eli Friedmanf03bb262011-08-12 22:50:01 +00004085 isVolatile = true;
4086 Lex.Lex();
4087 }
4088
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00004089 if (ParseTypeAndValue(Val, Loc, PFS) ||
Eli Friedman21006d42011-08-09 23:02:53 +00004090 ParseScopeAndOrdering(isAtomic, Scope, Ordering) ||
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00004091 ParseOptionalCommaAlign(Alignment, AteExtraComma))
4092 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00004093
Duncan Sands1df98592010-02-16 11:11:14 +00004094 if (!Val->getType()->isPointerTy() ||
Chris Lattnerdf986172009-01-02 07:01:27 +00004095 !cast<PointerType>(Val->getType())->getElementType()->isFirstClassType())
4096 return Error(Loc, "load operand must be a pointer to a first class type");
Eli Friedman21006d42011-08-09 23:02:53 +00004097 if (isAtomic && !Alignment)
4098 return Error(Loc, "atomic load must have explicit non-zero alignment");
4099 if (Ordering == Release || Ordering == AcquireRelease)
4100 return Error(Loc, "atomic load cannot use Release ordering");
Daniel Dunbara279bc32009-09-20 02:20:51 +00004101
Eli Friedman21006d42011-08-09 23:02:53 +00004102 Inst = new LoadInst(Val, "", isVolatile, Alignment, Ordering, Scope);
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00004103 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerdf986172009-01-02 07:01:27 +00004104}
4105
4106/// ParseStore
Eli Friedmanf03bb262011-08-12 22:50:01 +00004107
4108/// ::= 'store' 'volatile'? TypeAndValue ',' TypeAndValue (',' 'align' i32)?
4109/// ::= 'store' 'atomic' 'volatile'? TypeAndValue ',' TypeAndValue
Eli Friedman21006d42011-08-09 23:02:53 +00004110/// 'singlethread'? AtomicOrdering (',' 'align' i32)?
Chris Lattnerfbe910e2011-11-27 06:56:53 +00004111int LLParser::ParseStore(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00004112 Value *Val, *Ptr; LocTy Loc, PtrLoc;
Devang Patelf633a062009-09-17 23:04:48 +00004113 unsigned Alignment = 0;
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00004114 bool AteExtraComma = false;
Eli Friedmanf03bb262011-08-12 22:50:01 +00004115 bool isAtomic = false;
Eli Friedman21006d42011-08-09 23:02:53 +00004116 AtomicOrdering Ordering = NotAtomic;
4117 SynchronizationScope Scope = CrossThread;
Eli Friedmanf03bb262011-08-12 22:50:01 +00004118
4119 if (Lex.getKind() == lltok::kw_atomic) {
Eli Friedmanf03bb262011-08-12 22:50:01 +00004120 isAtomic = true;
4121 Lex.Lex();
4122 }
4123
Chris Lattnerfbe910e2011-11-27 06:56:53 +00004124 bool isVolatile = false;
Eli Friedmanf03bb262011-08-12 22:50:01 +00004125 if (Lex.getKind() == lltok::kw_volatile) {
Eli Friedmanf03bb262011-08-12 22:50:01 +00004126 isVolatile = true;
4127 Lex.Lex();
4128 }
4129
Chris Lattnerdf986172009-01-02 07:01:27 +00004130 if (ParseTypeAndValue(Val, Loc, PFS) ||
4131 ParseToken(lltok::comma, "expected ',' after store operand") ||
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00004132 ParseTypeAndValue(Ptr, PtrLoc, PFS) ||
Eli Friedman21006d42011-08-09 23:02:53 +00004133 ParseScopeAndOrdering(isAtomic, Scope, Ordering) ||
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00004134 ParseOptionalCommaAlign(Alignment, AteExtraComma))
Chris Lattnerdf986172009-01-02 07:01:27 +00004135 return true;
Devang Patelf633a062009-09-17 23:04:48 +00004136
Duncan Sands1df98592010-02-16 11:11:14 +00004137 if (!Ptr->getType()->isPointerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00004138 return Error(PtrLoc, "store operand must be a pointer");
4139 if (!Val->getType()->isFirstClassType())
4140 return Error(Loc, "store operand must be a first class value");
4141 if (cast<PointerType>(Ptr->getType())->getElementType() != Val->getType())
4142 return Error(Loc, "stored value and pointer type do not match");
Eli Friedman21006d42011-08-09 23:02:53 +00004143 if (isAtomic && !Alignment)
4144 return Error(Loc, "atomic store must have explicit non-zero alignment");
4145 if (Ordering == Acquire || Ordering == AcquireRelease)
4146 return Error(Loc, "atomic store cannot use Acquire ordering");
Daniel Dunbara279bc32009-09-20 02:20:51 +00004147
Eli Friedman21006d42011-08-09 23:02:53 +00004148 Inst = new StoreInst(Val, Ptr, isVolatile, Alignment, Ordering, Scope);
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00004149 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerdf986172009-01-02 07:01:27 +00004150}
4151
Eli Friedmanff030482011-07-28 21:48:00 +00004152/// ParseCmpXchg
Eli Friedmanf03bb262011-08-12 22:50:01 +00004153/// ::= 'cmpxchg' 'volatile'? TypeAndValue ',' TypeAndValue ',' TypeAndValue
4154/// 'singlethread'? AtomicOrdering
4155int LLParser::ParseCmpXchg(Instruction *&Inst, PerFunctionState &PFS) {
Eli Friedmanff030482011-07-28 21:48:00 +00004156 Value *Ptr, *Cmp, *New; LocTy PtrLoc, CmpLoc, NewLoc;
4157 bool AteExtraComma = false;
4158 AtomicOrdering Ordering = NotAtomic;
4159 SynchronizationScope Scope = CrossThread;
Eli Friedmanf03bb262011-08-12 22:50:01 +00004160 bool isVolatile = false;
4161
4162 if (EatIfPresent(lltok::kw_volatile))
4163 isVolatile = true;
4164
Eli Friedmanff030482011-07-28 21:48:00 +00004165 if (ParseTypeAndValue(Ptr, PtrLoc, PFS) ||
4166 ParseToken(lltok::comma, "expected ',' after cmpxchg address") ||
4167 ParseTypeAndValue(Cmp, CmpLoc, PFS) ||
4168 ParseToken(lltok::comma, "expected ',' after cmpxchg cmp operand") ||
4169 ParseTypeAndValue(New, NewLoc, PFS) ||
4170 ParseScopeAndOrdering(true /*Always atomic*/, Scope, Ordering))
4171 return true;
4172
4173 if (Ordering == Unordered)
4174 return TokError("cmpxchg cannot be unordered");
4175 if (!Ptr->getType()->isPointerTy())
4176 return Error(PtrLoc, "cmpxchg operand must be a pointer");
4177 if (cast<PointerType>(Ptr->getType())->getElementType() != Cmp->getType())
4178 return Error(CmpLoc, "compare value and pointer type do not match");
4179 if (cast<PointerType>(Ptr->getType())->getElementType() != New->getType())
4180 return Error(NewLoc, "new value and pointer type do not match");
4181 if (!New->getType()->isIntegerTy())
4182 return Error(NewLoc, "cmpxchg operand must be an integer");
4183 unsigned Size = New->getType()->getPrimitiveSizeInBits();
4184 if (Size < 8 || (Size & (Size - 1)))
4185 return Error(NewLoc, "cmpxchg operand must be power-of-two byte-sized"
4186 " integer");
4187
4188 AtomicCmpXchgInst *CXI =
4189 new AtomicCmpXchgInst(Ptr, Cmp, New, Ordering, Scope);
4190 CXI->setVolatile(isVolatile);
4191 Inst = CXI;
4192 return AteExtraComma ? InstExtraComma : InstNormal;
4193}
4194
4195/// ParseAtomicRMW
Eli Friedmanf03bb262011-08-12 22:50:01 +00004196/// ::= 'atomicrmw' 'volatile'? BinOp TypeAndValue ',' TypeAndValue
4197/// 'singlethread'? AtomicOrdering
4198int LLParser::ParseAtomicRMW(Instruction *&Inst, PerFunctionState &PFS) {
Eli Friedmanff030482011-07-28 21:48:00 +00004199 Value *Ptr, *Val; LocTy PtrLoc, ValLoc;
4200 bool AteExtraComma = false;
4201 AtomicOrdering Ordering = NotAtomic;
4202 SynchronizationScope Scope = CrossThread;
Eli Friedmanf03bb262011-08-12 22:50:01 +00004203 bool isVolatile = false;
Eli Friedmanff030482011-07-28 21:48:00 +00004204 AtomicRMWInst::BinOp Operation;
Eli Friedmanf03bb262011-08-12 22:50:01 +00004205
4206 if (EatIfPresent(lltok::kw_volatile))
4207 isVolatile = true;
4208
Eli Friedmanff030482011-07-28 21:48:00 +00004209 switch (Lex.getKind()) {
4210 default: return TokError("expected binary operation in atomicrmw");
4211 case lltok::kw_xchg: Operation = AtomicRMWInst::Xchg; break;
4212 case lltok::kw_add: Operation = AtomicRMWInst::Add; break;
4213 case lltok::kw_sub: Operation = AtomicRMWInst::Sub; break;
4214 case lltok::kw_and: Operation = AtomicRMWInst::And; break;
4215 case lltok::kw_nand: Operation = AtomicRMWInst::Nand; break;
4216 case lltok::kw_or: Operation = AtomicRMWInst::Or; break;
4217 case lltok::kw_xor: Operation = AtomicRMWInst::Xor; break;
4218 case lltok::kw_max: Operation = AtomicRMWInst::Max; break;
4219 case lltok::kw_min: Operation = AtomicRMWInst::Min; break;
4220 case lltok::kw_umax: Operation = AtomicRMWInst::UMax; break;
4221 case lltok::kw_umin: Operation = AtomicRMWInst::UMin; break;
4222 }
4223 Lex.Lex(); // Eat the operation.
4224
4225 if (ParseTypeAndValue(Ptr, PtrLoc, PFS) ||
4226 ParseToken(lltok::comma, "expected ',' after atomicrmw address") ||
4227 ParseTypeAndValue(Val, ValLoc, PFS) ||
4228 ParseScopeAndOrdering(true /*Always atomic*/, Scope, Ordering))
4229 return true;
4230
4231 if (Ordering == Unordered)
4232 return TokError("atomicrmw cannot be unordered");
4233 if (!Ptr->getType()->isPointerTy())
4234 return Error(PtrLoc, "atomicrmw operand must be a pointer");
4235 if (cast<PointerType>(Ptr->getType())->getElementType() != Val->getType())
4236 return Error(ValLoc, "atomicrmw value and pointer type do not match");
4237 if (!Val->getType()->isIntegerTy())
4238 return Error(ValLoc, "atomicrmw operand must be an integer");
4239 unsigned Size = Val->getType()->getPrimitiveSizeInBits();
4240 if (Size < 8 || (Size & (Size - 1)))
4241 return Error(ValLoc, "atomicrmw operand must be power-of-two byte-sized"
4242 " integer");
4243
4244 AtomicRMWInst *RMWI =
4245 new AtomicRMWInst(Operation, Ptr, Val, Ordering, Scope);
4246 RMWI->setVolatile(isVolatile);
4247 Inst = RMWI;
4248 return AteExtraComma ? InstExtraComma : InstNormal;
4249}
4250
Eli Friedman47f35132011-07-25 23:16:38 +00004251/// ParseFence
4252/// ::= 'fence' 'singlethread'? AtomicOrdering
4253int LLParser::ParseFence(Instruction *&Inst, PerFunctionState &PFS) {
4254 AtomicOrdering Ordering = NotAtomic;
4255 SynchronizationScope Scope = CrossThread;
4256 if (ParseScopeAndOrdering(true /*Always atomic*/, Scope, Ordering))
4257 return true;
4258
4259 if (Ordering == Unordered)
4260 return TokError("fence cannot be unordered");
4261 if (Ordering == Monotonic)
4262 return TokError("fence cannot be monotonic");
4263
4264 Inst = new FenceInst(Context, Ordering, Scope);
4265 return InstNormal;
4266}
4267
Chris Lattnerdf986172009-01-02 07:01:27 +00004268/// ParseGetElementPtr
Dan Gohmandd8004d2009-07-27 21:53:46 +00004269/// ::= 'getelementptr' 'inbounds'? TypeAndValue (',' TypeAndValue)*
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004270int LLParser::ParseGetElementPtr(Instruction *&Inst, PerFunctionState &PFS) {
Nadav Rotem16087692011-12-05 06:29:09 +00004271 Value *Ptr = 0;
4272 Value *Val = 0;
4273 LocTy Loc, EltLoc;
Dan Gohmandd8004d2009-07-27 21:53:46 +00004274
Dan Gohmandcb40a32009-07-29 15:58:36 +00004275 bool InBounds = EatIfPresent(lltok::kw_inbounds);
Dan Gohmandd8004d2009-07-27 21:53:46 +00004276
Chris Lattner3ed88ef2009-01-02 08:05:26 +00004277 if (ParseTypeAndValue(Ptr, Loc, PFS)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00004278
Eli Bendersky59eb5ee2013-04-22 17:03:42 +00004279 Type *BaseType = Ptr->getType();
4280 PointerType *BasePointerType = dyn_cast<PointerType>(BaseType->getScalarType());
4281 if (!BasePointerType)
Chris Lattnerdf986172009-01-02 07:01:27 +00004282 return Error(Loc, "base of getelementptr must be a pointer");
Daniel Dunbara279bc32009-09-20 02:20:51 +00004283
Chris Lattnerdf986172009-01-02 07:01:27 +00004284 SmallVector<Value*, 16> Indices;
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004285 bool AteExtraComma = false;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00004286 while (EatIfPresent(lltok::comma)) {
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004287 if (Lex.getKind() == lltok::MetadataVar) {
4288 AteExtraComma = true;
Devang Patel6225d642009-10-13 18:49:55 +00004289 break;
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004290 }
Chris Lattner3ed88ef2009-01-02 08:05:26 +00004291 if (ParseTypeAndValue(Val, EltLoc, PFS)) return true;
Nadav Rotem16087692011-12-05 06:29:09 +00004292 if (!Val->getType()->getScalarType()->isIntegerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00004293 return Error(EltLoc, "getelementptr index must be an integer");
Nadav Rotem16087692011-12-05 06:29:09 +00004294 if (Val->getType()->isVectorTy() != Ptr->getType()->isVectorTy())
4295 return Error(EltLoc, "getelementptr index type missmatch");
4296 if (Val->getType()->isVectorTy()) {
4297 unsigned ValNumEl = cast<VectorType>(Val->getType())->getNumElements();
4298 unsigned PtrNumEl = cast<VectorType>(Ptr->getType())->getNumElements();
4299 if (ValNumEl != PtrNumEl)
4300 return Error(EltLoc,
4301 "getelementptr vector index has a wrong number of elements");
4302 }
Chris Lattnerdf986172009-01-02 07:01:27 +00004303 Indices.push_back(Val);
4304 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00004305
Eli Bendersky59eb5ee2013-04-22 17:03:42 +00004306 if (!Indices.empty() && !BasePointerType->getElementType()->isSized())
4307 return Error(Loc, "base element of getelementptr must be sized");
4308
4309 if (!GetElementPtrInst::getIndexedType(BaseType, Indices))
Chris Lattnerdf986172009-01-02 07:01:27 +00004310 return Error(Loc, "invalid getelementptr indices");
Jay Foada9203102011-07-25 09:48:08 +00004311 Inst = GetElementPtrInst::Create(Ptr, Indices);
Dan Gohmandd8004d2009-07-27 21:53:46 +00004312 if (InBounds)
Dan Gohmanf8dbee72009-09-07 23:54:19 +00004313 cast<GetElementPtrInst>(Inst)->setIsInBounds(true);
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004314 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerdf986172009-01-02 07:01:27 +00004315}
4316
4317/// ParseExtractValue
4318/// ::= 'extractvalue' TypeAndValue (',' uint32)+
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004319int LLParser::ParseExtractValue(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00004320 Value *Val; LocTy Loc;
4321 SmallVector<unsigned, 4> Indices;
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004322 bool AteExtraComma;
Chris Lattnerdf986172009-01-02 07:01:27 +00004323 if (ParseTypeAndValue(Val, Loc, PFS) ||
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004324 ParseIndexList(Indices, AteExtraComma))
Chris Lattnerdf986172009-01-02 07:01:27 +00004325 return true;
4326
Chris Lattnerfdfeb692010-02-12 20:49:41 +00004327 if (!Val->getType()->isAggregateType())
4328 return Error(Loc, "extractvalue operand must be aggregate type");
Chris Lattnerdf986172009-01-02 07:01:27 +00004329
Jay Foadfc6d3a42011-07-13 10:26:04 +00004330 if (!ExtractValueInst::getIndexedType(Val->getType(), Indices))
Chris Lattnerdf986172009-01-02 07:01:27 +00004331 return Error(Loc, "invalid indices for extractvalue");
Jay Foadfc6d3a42011-07-13 10:26:04 +00004332 Inst = ExtractValueInst::Create(Val, Indices);
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004333 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerdf986172009-01-02 07:01:27 +00004334}
4335
4336/// ParseInsertValue
4337/// ::= 'insertvalue' TypeAndValue ',' TypeAndValue (',' uint32)+
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004338int LLParser::ParseInsertValue(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00004339 Value *Val0, *Val1; LocTy Loc0, Loc1;
4340 SmallVector<unsigned, 4> Indices;
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004341 bool AteExtraComma;
Chris Lattnerdf986172009-01-02 07:01:27 +00004342 if (ParseTypeAndValue(Val0, Loc0, PFS) ||
4343 ParseToken(lltok::comma, "expected comma after insertvalue operand") ||
4344 ParseTypeAndValue(Val1, Loc1, PFS) ||
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004345 ParseIndexList(Indices, AteExtraComma))
Chris Lattnerdf986172009-01-02 07:01:27 +00004346 return true;
Michael Ilseman407a6162012-11-15 22:34:00 +00004347
Chris Lattnerfdfeb692010-02-12 20:49:41 +00004348 if (!Val0->getType()->isAggregateType())
4349 return Error(Loc0, "insertvalue operand must be aggregate type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00004350
Jay Foadfc6d3a42011-07-13 10:26:04 +00004351 if (!ExtractValueInst::getIndexedType(Val0->getType(), Indices))
Chris Lattnerdf986172009-01-02 07:01:27 +00004352 return Error(Loc0, "invalid indices for insertvalue");
Jay Foadfc6d3a42011-07-13 10:26:04 +00004353 Inst = InsertValueInst::Create(Val0, Val1, Indices);
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004354 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerdf986172009-01-02 07:01:27 +00004355}
Nick Lewycky21cc4462009-04-04 07:22:01 +00004356
4357//===----------------------------------------------------------------------===//
4358// Embedded metadata.
4359//===----------------------------------------------------------------------===//
4360
4361/// ParseMDNodeVector
Nick Lewyckycb337992009-05-10 20:57:05 +00004362/// ::= Element (',' Element)*
4363/// Element
4364/// ::= 'null' | TypeAndValue
Victor Hernandezbf170d42010-01-05 22:22:14 +00004365bool LLParser::ParseMDNodeVector(SmallVectorImpl<Value*> &Elts,
Victor Hernandez24e64df2010-01-10 07:14:18 +00004366 PerFunctionState *PFS) {
Dan Gohmanac809752010-07-13 19:33:27 +00004367 // Check for an empty list.
4368 if (Lex.getKind() == lltok::rbrace)
4369 return false;
4370
Nick Lewycky21cc4462009-04-04 07:22:01 +00004371 do {
Chris Lattnera7352392009-12-30 04:42:57 +00004372 // Null is a special case since it is typeless.
4373 if (EatIfPresent(lltok::kw_null)) {
4374 Elts.push_back(0);
4375 continue;
Nick Lewyckycb337992009-05-10 20:57:05 +00004376 }
Michael Ilseman407a6162012-11-15 22:34:00 +00004377
Chris Lattnera7352392009-12-30 04:42:57 +00004378 Value *V = 0;
Chris Lattner1afcace2011-07-09 17:41:24 +00004379 if (ParseTypeAndValue(V, PFS)) return true;
Nick Lewyckycb337992009-05-10 20:57:05 +00004380 Elts.push_back(V);
Nick Lewycky21cc4462009-04-04 07:22:01 +00004381 } while (EatIfPresent(lltok::comma));
4382
4383 return false;
4384}