blob: d5c5db11de8cae009ac2ad9f59ccc198b318aa69 [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
Bill Wendling32811be2012-08-17 18:33:14 +0000249 case lltok::kw_linker_private_weak_def_auto: // FIXME: backwards compat.
Bill Wendling5e721d72010-07-01 21:55:59 +0000250 case lltok::kw_internal: // OptionalLinkage
251 case lltok::kw_weak: // OptionalLinkage
252 case lltok::kw_weak_odr: // OptionalLinkage
253 case lltok::kw_linkonce: // OptionalLinkage
254 case lltok::kw_linkonce_odr: // OptionalLinkage
Bill Wendling32811be2012-08-17 18:33:14 +0000255 case lltok::kw_linkonce_odr_auto_hide: // OptionalLinkage
Bill Wendling5e721d72010-07-01 21:55:59 +0000256 case lltok::kw_appending: // OptionalLinkage
257 case lltok::kw_dllexport: // OptionalLinkage
258 case lltok::kw_common: // OptionalLinkage
259 case lltok::kw_dllimport: // OptionalLinkage
260 case lltok::kw_extern_weak: // OptionalLinkage
261 case lltok::kw_external: { // OptionalLinkage
Chris Lattnerdf986172009-01-02 07:01:27 +0000262 unsigned Linkage, Visibility;
263 if (ParseOptionalLinkage(Linkage) ||
264 ParseOptionalVisibility(Visibility) ||
Chris Lattnereeb4a842009-07-02 23:08:13 +0000265 ParseGlobal("", SMLoc(), Linkage, true, Visibility))
Chris Lattnerdf986172009-01-02 07:01:27 +0000266 return true;
267 break;
268 }
269 case lltok::kw_default: // OptionalVisibility
270 case lltok::kw_hidden: // OptionalVisibility
271 case lltok::kw_protected: { // OptionalVisibility
272 unsigned Visibility;
273 if (ParseOptionalVisibility(Visibility) ||
Chris Lattnereeb4a842009-07-02 23:08:13 +0000274 ParseGlobal("", SMLoc(), 0, false, Visibility))
Chris Lattnerdf986172009-01-02 07:01:27 +0000275 return true;
276 break;
277 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000278
Chris Lattnerdf986172009-01-02 07:01:27 +0000279 case lltok::kw_thread_local: // OptionalThreadLocal
280 case lltok::kw_addrspace: // OptionalAddrSpace
281 case lltok::kw_constant: // GlobalType
282 case lltok::kw_global: // GlobalType
Chris Lattnereeb4a842009-07-02 23:08:13 +0000283 if (ParseGlobal("", SMLoc(), 0, false, 0)) return true;
Chris Lattnerdf986172009-01-02 07:01:27 +0000284 break;
Bill Wendling0b778662013-02-09 15:48:49 +0000285
286 case lltok::kw_attributes: if (ParseUnnamedAttrGrp()) return true; break;
Chris Lattnerdf986172009-01-02 07:01:27 +0000287 }
288 }
289}
290
291
292/// toplevelentity
293/// ::= 'module' 'asm' STRINGCONSTANT
294bool LLParser::ParseModuleAsm() {
295 assert(Lex.getKind() == lltok::kw_module);
296 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +0000297
298 std::string AsmStr;
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000299 if (ParseToken(lltok::kw_asm, "expected 'module asm'") ||
300 ParseStringConstant(AsmStr)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000301
Rafael Espindola38c4e532011-03-02 04:14:42 +0000302 M->appendModuleInlineAsm(AsmStr);
Chris Lattnerdf986172009-01-02 07:01:27 +0000303 return false;
304}
305
306/// toplevelentity
307/// ::= 'target' 'triple' '=' STRINGCONSTANT
308/// ::= 'target' 'datalayout' '=' STRINGCONSTANT
309bool LLParser::ParseTargetDefinition() {
310 assert(Lex.getKind() == lltok::kw_target);
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000311 std::string Str;
Chris Lattnerdf986172009-01-02 07:01:27 +0000312 switch (Lex.Lex()) {
313 default: return TokError("unknown target property");
314 case lltok::kw_triple:
315 Lex.Lex();
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000316 if (ParseToken(lltok::equal, "expected '=' after target triple") ||
317 ParseStringConstant(Str))
Chris Lattnerdf986172009-01-02 07:01:27 +0000318 return true;
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000319 M->setTargetTriple(Str);
Chris Lattnerdf986172009-01-02 07:01:27 +0000320 return false;
321 case lltok::kw_datalayout:
322 Lex.Lex();
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000323 if (ParseToken(lltok::equal, "expected '=' after target datalayout") ||
324 ParseStringConstant(Str))
Chris Lattnerdf986172009-01-02 07:01:27 +0000325 return true;
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000326 M->setDataLayout(Str);
Chris Lattnerdf986172009-01-02 07:01:27 +0000327 return false;
328 }
329}
330
Bill Wendling3defc0b2012-11-28 08:41:48 +0000331/// toplevelentity
332/// ::= 'deplibs' '=' '[' ']'
333/// ::= 'deplibs' '=' '[' STRINGCONSTANT (',' STRINGCONSTANT)* ']'
334/// FIXME: Remove in 4.0. Currently parse, but ignore.
335bool LLParser::ParseDepLibs() {
336 assert(Lex.getKind() == lltok::kw_deplibs);
337 Lex.Lex();
338 if (ParseToken(lltok::equal, "expected '=' after deplibs") ||
339 ParseToken(lltok::lsquare, "expected '=' after deplibs"))
340 return true;
341
342 if (EatIfPresent(lltok::rsquare))
343 return false;
344
345 do {
346 std::string Str;
347 if (ParseStringConstant(Str)) return true;
348 } while (EatIfPresent(lltok::comma));
349
350 return ParseToken(lltok::rsquare, "expected ']' at end of list");
351}
352
Dan Gohman3845e502009-08-12 23:32:33 +0000353/// ParseUnnamedType:
Dan Gohman3845e502009-08-12 23:32:33 +0000354/// ::= LocalVarID '=' 'type' type
Chris Lattnerdf986172009-01-02 07:01:27 +0000355bool LLParser::ParseUnnamedType() {
Chris Lattneredcaca82011-06-18 23:51:31 +0000356 LocTy TypeLoc = Lex.getLoc();
Chris Lattner1afcace2011-07-09 17:41:24 +0000357 unsigned TypeID = Lex.getUIntVal();
Chris Lattnera53616d2011-06-19 00:03:46 +0000358 Lex.Lex(); // eat LocalVarID;
359
360 if (ParseToken(lltok::equal, "expected '=' after name") ||
361 ParseToken(lltok::kw_type, "expected 'type' after '='"))
362 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +0000363
Chris Lattner1afcace2011-07-09 17:41:24 +0000364 if (TypeID >= NumberedTypes.size())
365 NumberedTypes.resize(TypeID+1);
Michael Ilseman407a6162012-11-15 22:34:00 +0000366
Chris Lattner1afcace2011-07-09 17:41:24 +0000367 Type *Result = 0;
368 if (ParseStructDefinition(TypeLoc, "",
369 NumberedTypes[TypeID], Result)) return true;
Michael Ilseman407a6162012-11-15 22:34:00 +0000370
Chris Lattner1afcace2011-07-09 17:41:24 +0000371 if (!isa<StructType>(Result)) {
372 std::pair<Type*, LocTy> &Entry = NumberedTypes[TypeID];
373 if (Entry.first)
374 return Error(TypeLoc, "non-struct types may not be recursive");
375 Entry.first = Result;
376 Entry.second = SMLoc();
Chris Lattnerdf986172009-01-02 07:01:27 +0000377 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000378
Chris Lattnerdf986172009-01-02 07:01:27 +0000379 return false;
380}
381
Chris Lattner1afcace2011-07-09 17:41:24 +0000382
Chris Lattnerdf986172009-01-02 07:01:27 +0000383/// toplevelentity
384/// ::= LocalVar '=' 'type' type
385bool LLParser::ParseNamedType() {
386 std::string Name = Lex.getStrVal();
387 LocTy NameLoc = Lex.getLoc();
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000388 Lex.Lex(); // eat LocalVar.
Daniel Dunbara279bc32009-09-20 02:20:51 +0000389
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000390 if (ParseToken(lltok::equal, "expected '=' after name") ||
Chris Lattner1afcace2011-07-09 17:41:24 +0000391 ParseToken(lltok::kw_type, "expected 'type' after name"))
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000392 return true;
Michael Ilseman407a6162012-11-15 22:34:00 +0000393
Chris Lattner1afcace2011-07-09 17:41:24 +0000394 Type *Result = 0;
395 if (ParseStructDefinition(NameLoc, Name,
396 NamedTypes[Name], Result)) return true;
Michael Ilseman407a6162012-11-15 22:34:00 +0000397
Chris Lattner1afcace2011-07-09 17:41:24 +0000398 if (!isa<StructType>(Result)) {
399 std::pair<Type*, LocTy> &Entry = NamedTypes[Name];
400 if (Entry.first)
401 return Error(NameLoc, "non-struct types may not be recursive");
402 Entry.first = Result;
403 Entry.second = SMLoc();
Chris Lattnerdf986172009-01-02 07:01:27 +0000404 }
Michael Ilseman407a6162012-11-15 22:34:00 +0000405
Chris Lattner1afcace2011-07-09 17:41:24 +0000406 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +0000407}
408
409
410/// toplevelentity
411/// ::= 'declare' FunctionHeader
412bool LLParser::ParseDeclare() {
413 assert(Lex.getKind() == lltok::kw_declare);
414 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +0000415
Chris Lattnerdf986172009-01-02 07:01:27 +0000416 Function *F;
417 return ParseFunctionHeader(F, false);
418}
419
420/// toplevelentity
421/// ::= 'define' FunctionHeader '{' ...
422bool LLParser::ParseDefine() {
423 assert(Lex.getKind() == lltok::kw_define);
424 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +0000425
Chris Lattnerdf986172009-01-02 07:01:27 +0000426 Function *F;
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000427 return ParseFunctionHeader(F, true) ||
428 ParseFunctionBody(*F);
Chris Lattnerdf986172009-01-02 07:01:27 +0000429}
430
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000431/// ParseGlobalType
432/// ::= 'constant'
433/// ::= 'global'
Chris Lattnerdf986172009-01-02 07:01:27 +0000434bool LLParser::ParseGlobalType(bool &IsConstant) {
435 if (Lex.getKind() == lltok::kw_constant)
436 IsConstant = true;
437 else if (Lex.getKind() == lltok::kw_global)
438 IsConstant = false;
Duncan Sands35b51072009-02-10 16:24:55 +0000439 else {
440 IsConstant = false;
Chris Lattnerdf986172009-01-02 07:01:27 +0000441 return TokError("expected 'global' or 'constant'");
Duncan Sands35b51072009-02-10 16:24:55 +0000442 }
Chris Lattnerdf986172009-01-02 07:01:27 +0000443 Lex.Lex();
444 return false;
445}
446
Dan Gohman3845e502009-08-12 23:32:33 +0000447/// ParseUnnamedGlobal:
448/// OptionalVisibility ALIAS ...
449/// OptionalLinkage OptionalVisibility ... -> global variable
450/// GlobalID '=' OptionalVisibility ALIAS ...
451/// GlobalID '=' OptionalLinkage OptionalVisibility ... -> global variable
452bool LLParser::ParseUnnamedGlobal() {
453 unsigned VarID = NumberedVals.size();
454 std::string Name;
455 LocTy NameLoc = Lex.getLoc();
456
457 // Handle the GlobalID form.
458 if (Lex.getKind() == lltok::GlobalID) {
459 if (Lex.getUIntVal() != VarID)
460 return Error(Lex.getLoc(), "variable expected to be numbered '%" +
Benjamin Kramerd1e17032010-09-27 17:42:11 +0000461 Twine(VarID) + "'");
Dan Gohman3845e502009-08-12 23:32:33 +0000462 Lex.Lex(); // eat GlobalID;
463
464 if (ParseToken(lltok::equal, "expected '=' after name"))
465 return true;
466 }
467
468 bool HasLinkage;
469 unsigned Linkage, Visibility;
470 if (ParseOptionalLinkage(Linkage, HasLinkage) ||
471 ParseOptionalVisibility(Visibility))
472 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000473
Dan Gohman3845e502009-08-12 23:32:33 +0000474 if (HasLinkage || Lex.getKind() != lltok::kw_alias)
475 return ParseGlobal(Name, NameLoc, Linkage, HasLinkage, Visibility);
476 return ParseAlias(Name, NameLoc, Visibility);
477}
478
Chris Lattnerdf986172009-01-02 07:01:27 +0000479/// ParseNamedGlobal:
480/// GlobalVar '=' OptionalVisibility ALIAS ...
481/// GlobalVar '=' OptionalLinkage OptionalVisibility ... -> global variable
482bool LLParser::ParseNamedGlobal() {
483 assert(Lex.getKind() == lltok::GlobalVar);
484 LocTy NameLoc = Lex.getLoc();
485 std::string Name = Lex.getStrVal();
486 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +0000487
Chris Lattnerdf986172009-01-02 07:01:27 +0000488 bool HasLinkage;
489 unsigned Linkage, Visibility;
490 if (ParseToken(lltok::equal, "expected '=' in global variable") ||
491 ParseOptionalLinkage(Linkage, HasLinkage) ||
492 ParseOptionalVisibility(Visibility))
493 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000494
Chris Lattnerdf986172009-01-02 07:01:27 +0000495 if (HasLinkage || Lex.getKind() != lltok::kw_alias)
496 return ParseGlobal(Name, NameLoc, Linkage, HasLinkage, Visibility);
497 return ParseAlias(Name, NameLoc, Visibility);
498}
499
Devang Patel256be962009-07-20 19:00:08 +0000500// MDString:
501// ::= '!' STRINGCONSTANT
Chris Lattner442ffa12009-12-29 21:53:55 +0000502bool LLParser::ParseMDString(MDString *&Result) {
Devang Patel256be962009-07-20 19:00:08 +0000503 std::string Str;
504 if (ParseStringConstant(Str)) return true;
Chris Lattner442ffa12009-12-29 21:53:55 +0000505 Result = MDString::get(Context, Str);
Devang Patel256be962009-07-20 19:00:08 +0000506 return false;
507}
508
509// MDNode:
510// ::= '!' MDNodeNumber
Chris Lattner449c3102010-04-01 05:14:45 +0000511//
512/// This version of ParseMDNodeID returns the slot number and null in the case
513/// of a forward reference.
514bool LLParser::ParseMDNodeID(MDNode *&Result, unsigned &SlotNo) {
515 // !{ ..., !42, ... }
516 if (ParseUInt32(SlotNo)) return true;
517
518 // Check existing MDNode.
519 if (SlotNo < NumberedMetadata.size() && NumberedMetadata[SlotNo] != 0)
520 Result = NumberedMetadata[SlotNo];
521 else
522 Result = 0;
523 return false;
524}
525
Chris Lattner4a72efc2009-12-30 04:15:23 +0000526bool LLParser::ParseMDNodeID(MDNode *&Result) {
Devang Patel256be962009-07-20 19:00:08 +0000527 // !{ ..., !42, ... }
528 unsigned MID = 0;
Chris Lattner449c3102010-04-01 05:14:45 +0000529 if (ParseMDNodeID(Result, MID)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000530
Chris Lattner449c3102010-04-01 05:14:45 +0000531 // If not a forward reference, just return it now.
532 if (Result) return false;
Devang Patel256be962009-07-20 19:00:08 +0000533
Chris Lattner449c3102010-04-01 05:14:45 +0000534 // Otherwise, create MDNode forward reference.
Dmitri Gribenko5c332db2013-05-05 00:40:33 +0000535 MDNode *FwdNode = MDNode::getTemporary(Context, None);
Devang Patel256be962009-07-20 19:00:08 +0000536 ForwardRefMDNodes[MID] = std::make_pair(FwdNode, Lex.getLoc());
Michael Ilseman407a6162012-11-15 22:34:00 +0000537
Chris Lattner0834e6a2009-12-30 04:51:58 +0000538 if (NumberedMetadata.size() <= MID)
539 NumberedMetadata.resize(MID+1);
540 NumberedMetadata[MID] = FwdNode;
Chris Lattner442ffa12009-12-29 21:53:55 +0000541 Result = FwdNode;
Devang Patel256be962009-07-20 19:00:08 +0000542 return false;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000543}
Devang Patel256be962009-07-20 19:00:08 +0000544
Chris Lattner84d03b12009-12-29 22:35:39 +0000545/// ParseNamedMetadata:
Devang Pateleff2ab62009-07-29 00:34:02 +0000546/// !foo = !{ !1, !2 }
547bool LLParser::ParseNamedMetadata() {
Chris Lattner1d928312009-12-30 05:02:06 +0000548 assert(Lex.getKind() == lltok::MetadataVar);
Devang Pateleff2ab62009-07-29 00:34:02 +0000549 std::string Name = Lex.getStrVal();
Chris Lattner1d928312009-12-30 05:02:06 +0000550 Lex.Lex();
Devang Pateleff2ab62009-07-29 00:34:02 +0000551
Chris Lattner84d03b12009-12-29 22:35:39 +0000552 if (ParseToken(lltok::equal, "expected '=' here") ||
Chris Lattnere434d272009-12-30 04:56:59 +0000553 ParseToken(lltok::exclaim, "Expected '!' here") ||
Chris Lattner84d03b12009-12-29 22:35:39 +0000554 ParseToken(lltok::lbrace, "Expected '{' here"))
Devang Pateleff2ab62009-07-29 00:34:02 +0000555 return true;
556
Dan Gohman17aa92c2010-07-21 23:38:33 +0000557 NamedMDNode *NMD = M->getOrInsertNamedMetadata(Name);
Dan Gohman9dc8ae12010-07-13 19:42:44 +0000558 if (Lex.getKind() != lltok::rbrace)
559 do {
Dan Gohman9dc8ae12010-07-13 19:42:44 +0000560 if (ParseToken(lltok::exclaim, "Expected '!' here"))
561 return true;
Michael Ilseman407a6162012-11-15 22:34:00 +0000562
Dan Gohman9dc8ae12010-07-13 19:42:44 +0000563 MDNode *N = 0;
564 if (ParseMDNodeID(N)) return true;
Dan Gohman17aa92c2010-07-21 23:38:33 +0000565 NMD->addOperand(N);
Dan Gohman9dc8ae12010-07-13 19:42:44 +0000566 } while (EatIfPresent(lltok::comma));
Devang Pateleff2ab62009-07-29 00:34:02 +0000567
568 if (ParseToken(lltok::rbrace, "expected end of metadata node"))
569 return true;
570
Devang Pateleff2ab62009-07-29 00:34:02 +0000571 return false;
572}
573
Devang Patel923078c2009-07-01 19:21:12 +0000574/// ParseStandaloneMetadata:
Daniel Dunbara279bc32009-09-20 02:20:51 +0000575/// !42 = !{...}
Devang Patel923078c2009-07-01 19:21:12 +0000576bool LLParser::ParseStandaloneMetadata() {
Chris Lattnere434d272009-12-30 04:56:59 +0000577 assert(Lex.getKind() == lltok::exclaim);
Devang Patel923078c2009-07-01 19:21:12 +0000578 Lex.Lex();
579 unsigned MetadataID = 0;
Devang Patel923078c2009-07-01 19:21:12 +0000580
581 LocTy TyLoc;
Chris Lattner1afcace2011-07-09 17:41:24 +0000582 Type *Ty = 0;
Devang Patel104cf9e2009-07-23 01:07:34 +0000583 SmallVector<Value *, 16> Elts;
Chris Lattner3f5132a2009-12-29 22:40:21 +0000584 if (ParseUInt32(MetadataID) ||
585 ParseToken(lltok::equal, "expected '=' here") ||
586 ParseType(Ty, TyLoc) ||
Chris Lattnere434d272009-12-30 04:56:59 +0000587 ParseToken(lltok::exclaim, "Expected '!' here") ||
Chris Lattner3f5132a2009-12-29 22:40:21 +0000588 ParseToken(lltok::lbrace, "Expected '{' here") ||
Victor Hernandez24e64df2010-01-10 07:14:18 +0000589 ParseMDNodeVector(Elts, NULL) ||
Chris Lattner3f5132a2009-12-29 22:40:21 +0000590 ParseToken(lltok::rbrace, "expected end of metadata node"))
Devang Patel104cf9e2009-07-23 01:07:34 +0000591 return true;
592
Jay Foadec9186b2011-04-21 19:59:31 +0000593 MDNode *Init = MDNode::get(Context, Elts);
Michael Ilseman407a6162012-11-15 22:34:00 +0000594
Chris Lattner0834e6a2009-12-30 04:51:58 +0000595 // See if this was forward referenced, if so, handle it.
Chris Lattnere80250e2009-12-29 21:43:58 +0000596 std::map<unsigned, std::pair<TrackingVH<MDNode>, LocTy> >::iterator
Devang Patel1c7eea62009-07-08 19:23:54 +0000597 FI = ForwardRefMDNodes.find(MetadataID);
598 if (FI != ForwardRefMDNodes.end()) {
Dan Gohman489b29b2010-08-20 22:02:26 +0000599 MDNode *Temp = FI->second.first;
600 Temp->replaceAllUsesWith(Init);
601 MDNode::deleteTemporary(Temp);
Devang Patel1c7eea62009-07-08 19:23:54 +0000602 ForwardRefMDNodes.erase(FI);
Michael Ilseman407a6162012-11-15 22:34:00 +0000603
Chris Lattner0834e6a2009-12-30 04:51:58 +0000604 assert(NumberedMetadata[MetadataID] == Init && "Tracking VH didn't work");
605 } else {
606 if (MetadataID >= NumberedMetadata.size())
607 NumberedMetadata.resize(MetadataID+1);
608
609 if (NumberedMetadata[MetadataID] != 0)
610 return TokError("Metadata id is already used");
611 NumberedMetadata[MetadataID] = Init;
Devang Patel1c7eea62009-07-08 19:23:54 +0000612 }
613
Devang Patel923078c2009-07-01 19:21:12 +0000614 return false;
615}
616
Chris Lattnerdf986172009-01-02 07:01:27 +0000617/// ParseAlias:
618/// ::= GlobalVar '=' OptionalVisibility 'alias' OptionalLinkage Aliasee
619/// Aliasee
Chris Lattner040f7582009-04-25 21:26:00 +0000620/// ::= TypeAndValue
621/// ::= 'bitcast' '(' TypeAndValue 'to' Type ')'
Dan Gohmandd8004d2009-07-27 21:53:46 +0000622/// ::= 'getelementptr' 'inbounds'? '(' ... ')'
Chris Lattnerdf986172009-01-02 07:01:27 +0000623///
624/// Everything through visibility has already been parsed.
625///
626bool LLParser::ParseAlias(const std::string &Name, LocTy NameLoc,
627 unsigned Visibility) {
628 assert(Lex.getKind() == lltok::kw_alias);
629 Lex.Lex();
Chris Lattnerdf986172009-01-02 07:01:27 +0000630 LocTy LinkageLoc = Lex.getLoc();
Rafael Espindola2def1792013-10-06 15:10:43 +0000631 unsigned L;
632 if (ParseOptionalLinkage(L))
Chris Lattnerdf986172009-01-02 07:01:27 +0000633 return true;
634
Rafael Espindola2def1792013-10-06 15:10:43 +0000635 GlobalValue::LinkageTypes Linkage = (GlobalValue::LinkageTypes) L;
636
637 if(!GlobalValue::isExternalLinkage(Linkage) &&
638 !GlobalValue::isLocalLinkage(Linkage) &&
639 !GlobalValue::isWeakLinkage(Linkage) &&
640 !GlobalValue::isLinkOnceLinkage(Linkage))
Chris Lattnerdf986172009-01-02 07:01:27 +0000641 return Error(LinkageLoc, "invalid linkage type for alias");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000642
Chris Lattnerdf986172009-01-02 07:01:27 +0000643 Constant *Aliasee;
644 LocTy AliaseeLoc = Lex.getLoc();
Chris Lattner040f7582009-04-25 21:26:00 +0000645 if (Lex.getKind() != lltok::kw_bitcast &&
646 Lex.getKind() != lltok::kw_getelementptr) {
Chris Lattnerdf986172009-01-02 07:01:27 +0000647 if (ParseGlobalTypeAndValue(Aliasee)) return true;
648 } else {
649 // The bitcast dest type is not present, it is implied by the dest type.
650 ValID ID;
651 if (ParseValID(ID)) return true;
652 if (ID.Kind != ValID::t_Constant)
653 return Error(AliaseeLoc, "invalid aliasee");
654 Aliasee = ID.ConstantVal;
655 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000656
Duncan Sands1df98592010-02-16 11:11:14 +0000657 if (!Aliasee->getType()->isPointerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +0000658 return Error(AliaseeLoc, "alias must have pointer type");
659
660 // Okay, create the alias but do not insert it into the module yet.
661 GlobalAlias* GA = new GlobalAlias(Aliasee->getType(),
662 (GlobalValue::LinkageTypes)Linkage, Name,
663 Aliasee);
664 GA->setVisibility((GlobalValue::VisibilityTypes)Visibility);
Daniel Dunbara279bc32009-09-20 02:20:51 +0000665
Chris Lattnerdf986172009-01-02 07:01:27 +0000666 // See if this value already exists in the symbol table. If so, it is either
667 // a redefinition or a definition of a forward reference.
Chris Lattner1d871c52009-10-25 23:22:50 +0000668 if (GlobalValue *Val = M->getNamedValue(Name)) {
Chris Lattnerdf986172009-01-02 07:01:27 +0000669 // See if this was a redefinition. If so, there is no entry in
670 // ForwardRefVals.
671 std::map<std::string, std::pair<GlobalValue*, LocTy> >::iterator
672 I = ForwardRefVals.find(Name);
673 if (I == ForwardRefVals.end())
674 return Error(NameLoc, "redefinition of global named '@" + Name + "'");
675
676 // Otherwise, this was a definition of forward ref. Verify that types
677 // agree.
678 if (Val->getType() != GA->getType())
679 return Error(NameLoc,
680 "forward reference and definition of alias have different types");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000681
Chris Lattnerdf986172009-01-02 07:01:27 +0000682 // If they agree, just RAUW the old value with the alias and remove the
683 // forward ref info.
684 Val->replaceAllUsesWith(GA);
685 Val->eraseFromParent();
686 ForwardRefVals.erase(I);
687 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000688
Chris Lattnerdf986172009-01-02 07:01:27 +0000689 // Insert into the module, we know its name won't collide now.
690 M->getAliasList().push_back(GA);
Benjamin Krameraf812352010-10-16 11:28:23 +0000691 assert(GA->getName() == Name && "Should not be a name conflict!");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000692
Chris Lattnerdf986172009-01-02 07:01:27 +0000693 return false;
694}
695
696/// ParseGlobal
697/// ::= GlobalVar '=' OptionalLinkage OptionalVisibility OptionalThreadLocal
Michael Gottesmana2de37c2013-02-05 05:57:38 +0000698/// OptionalAddrSpace OptionalUnNammedAddr
699/// OptionalExternallyInitialized GlobalType Type Const
Chris Lattnerdf986172009-01-02 07:01:27 +0000700/// ::= OptionalLinkage OptionalVisibility OptionalThreadLocal
Michael Gottesmana2de37c2013-02-05 05:57:38 +0000701/// OptionalAddrSpace OptionalUnNammedAddr
702/// OptionalExternallyInitialized GlobalType Type Const
Chris Lattnerdf986172009-01-02 07:01:27 +0000703///
704/// Everything through visibility has been parsed already.
705///
706bool LLParser::ParseGlobal(const std::string &Name, LocTy NameLoc,
707 unsigned Linkage, bool HasLinkage,
708 unsigned Visibility) {
709 unsigned AddrSpace;
Michael Gottesmana2de37c2013-02-05 05:57:38 +0000710 bool IsConstant, UnnamedAddr, IsExternallyInitialized;
Hans Wennborgce718ff2012-06-23 11:37:03 +0000711 GlobalVariable::ThreadLocalMode TLM;
Rafael Espindolad72479c2011-01-13 01:30:30 +0000712 LocTy UnnamedAddrLoc;
Michael Gottesmana2de37c2013-02-05 05:57:38 +0000713 LocTy IsExternallyInitializedLoc;
Chris Lattnerdf986172009-01-02 07:01:27 +0000714 LocTy TyLoc;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000715
Chris Lattner1afcace2011-07-09 17:41:24 +0000716 Type *Ty = 0;
Hans Wennborgce718ff2012-06-23 11:37:03 +0000717 if (ParseOptionalThreadLocal(TLM) ||
Chris Lattnerdf986172009-01-02 07:01:27 +0000718 ParseOptionalAddrSpace(AddrSpace) ||
Rafael Espindolad72479c2011-01-13 01:30:30 +0000719 ParseOptionalToken(lltok::kw_unnamed_addr, UnnamedAddr,
720 &UnnamedAddrLoc) ||
Michael Gottesmana2de37c2013-02-05 05:57:38 +0000721 ParseOptionalToken(lltok::kw_externally_initialized,
722 IsExternallyInitialized,
723 &IsExternallyInitializedLoc) ||
Chris Lattnerdf986172009-01-02 07:01:27 +0000724 ParseGlobalType(IsConstant) ||
725 ParseType(Ty, TyLoc))
726 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000727
Chris Lattnerdf986172009-01-02 07:01:27 +0000728 // If the linkage is specified and is external, then no initializer is
729 // present.
730 Constant *Init = 0;
731 if (!HasLinkage || (Linkage != GlobalValue::DLLImportLinkage &&
Duncan Sands5f4ee1f2009-03-11 08:08:06 +0000732 Linkage != GlobalValue::ExternalWeakLinkage &&
Chris Lattnerdf986172009-01-02 07:01:27 +0000733 Linkage != GlobalValue::ExternalLinkage)) {
734 if (ParseGlobalValue(Ty, Init))
735 return true;
736 }
737
Duncan Sands1df98592010-02-16 11:11:14 +0000738 if (Ty->isFunctionTy() || Ty->isLabelTy())
Chris Lattner4a2f1122009-02-08 20:00:15 +0000739 return Error(TyLoc, "invalid type for global variable");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000740
Chris Lattnerdf986172009-01-02 07:01:27 +0000741 GlobalVariable *GV = 0;
742
743 // See if the global was forward referenced, if so, use the global.
Chris Lattner91dad872009-02-02 07:24:28 +0000744 if (!Name.empty()) {
Chris Lattner1d871c52009-10-25 23:22:50 +0000745 if (GlobalValue *GVal = M->getNamedValue(Name)) {
746 if (!ForwardRefVals.erase(Name) || !isa<GlobalValue>(GVal))
747 return Error(NameLoc, "redefinition of global '@" + Name + "'");
748 GV = cast<GlobalVariable>(GVal);
749 }
Chris Lattnerdf986172009-01-02 07:01:27 +0000750 } else {
751 std::map<unsigned, std::pair<GlobalValue*, LocTy> >::iterator
752 I = ForwardRefValIDs.find(NumberedVals.size());
753 if (I != ForwardRefValIDs.end()) {
754 GV = cast<GlobalVariable>(I->second.first);
755 ForwardRefValIDs.erase(I);
756 }
757 }
758
759 if (GV == 0) {
Daniel Dunbara279bc32009-09-20 02:20:51 +0000760 GV = new GlobalVariable(*M, Ty, false, GlobalValue::ExternalLinkage, 0,
Hans Wennborgce718ff2012-06-23 11:37:03 +0000761 Name, 0, GlobalVariable::NotThreadLocal,
762 AddrSpace);
Chris Lattnerdf986172009-01-02 07:01:27 +0000763 } else {
764 if (GV->getType()->getElementType() != Ty)
765 return Error(TyLoc,
766 "forward reference and definition of global have different types");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000767
Chris Lattnerdf986172009-01-02 07:01:27 +0000768 // Move the forward-reference to the correct spot in the module.
769 M->getGlobalList().splice(M->global_end(), M->getGlobalList(), GV);
770 }
771
772 if (Name.empty())
773 NumberedVals.push_back(GV);
Daniel Dunbara279bc32009-09-20 02:20:51 +0000774
Chris Lattnerdf986172009-01-02 07:01:27 +0000775 // Set the parsed properties on the global.
776 if (Init)
777 GV->setInitializer(Init);
778 GV->setConstant(IsConstant);
779 GV->setLinkage((GlobalValue::LinkageTypes)Linkage);
780 GV->setVisibility((GlobalValue::VisibilityTypes)Visibility);
Michael Gottesmana2de37c2013-02-05 05:57:38 +0000781 GV->setExternallyInitialized(IsExternallyInitialized);
Hans Wennborgce718ff2012-06-23 11:37:03 +0000782 GV->setThreadLocalMode(TLM);
Rafael Espindolabea46262011-01-08 16:42:36 +0000783 GV->setUnnamedAddr(UnnamedAddr);
Daniel Dunbara279bc32009-09-20 02:20:51 +0000784
Chris Lattnerdf986172009-01-02 07:01:27 +0000785 // Parse attributes on the global.
786 while (Lex.getKind() == lltok::comma) {
787 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +0000788
Chris Lattnerdf986172009-01-02 07:01:27 +0000789 if (Lex.getKind() == lltok::kw_section) {
790 Lex.Lex();
791 GV->setSection(Lex.getStrVal());
792 if (ParseToken(lltok::StringConstant, "expected global section string"))
793 return true;
794 } else if (Lex.getKind() == lltok::kw_align) {
795 unsigned Alignment;
796 if (ParseOptionalAlignment(Alignment)) return true;
797 GV->setAlignment(Alignment);
798 } else {
799 TokError("unknown global variable property!");
800 }
801 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000802
Chris Lattnerdf986172009-01-02 07:01:27 +0000803 return false;
804}
805
Bill Wendling95ce4c22013-02-06 06:52:58 +0000806/// ParseUnnamedAttrGrp
Bill Wendling0b778662013-02-09 15:48:49 +0000807/// ::= 'attributes' AttrGrpID '=' '{' AttrValPair+ '}'
Bill Wendling95ce4c22013-02-06 06:52:58 +0000808bool LLParser::ParseUnnamedAttrGrp() {
Bill Wendling0b778662013-02-09 15:48:49 +0000809 assert(Lex.getKind() == lltok::kw_attributes);
Bill Wendling95ce4c22013-02-06 06:52:58 +0000810 LocTy AttrGrpLoc = Lex.getLoc();
Bill Wendling0b778662013-02-09 15:48:49 +0000811 Lex.Lex();
812
813 assert(Lex.getKind() == lltok::AttrGrpID);
Bill Wendling95ce4c22013-02-06 06:52:58 +0000814 unsigned VarID = Lex.getUIntVal();
Bill Wendlingbaad55c2013-02-08 06:32:06 +0000815 std::vector<unsigned> unused;
Michael Gottesman2253a2f2013-06-27 00:25:01 +0000816 LocTy BuiltinLoc;
Bill Wendling95ce4c22013-02-06 06:52:58 +0000817 Lex.Lex();
818
819 if (ParseToken(lltok::equal, "expected '=' here") ||
Bill Wendling95ce4c22013-02-06 06:52:58 +0000820 ParseToken(lltok::lbrace, "expected '{' here") ||
Bill Wendling143d4642013-02-22 00:12:35 +0000821 ParseFnAttributeValuePairs(NumberedAttrBuilders[VarID], unused, true,
Michael Gottesman2253a2f2013-06-27 00:25:01 +0000822 BuiltinLoc) ||
Bill Wendling95ce4c22013-02-06 06:52:58 +0000823 ParseToken(lltok::rbrace, "expected end of attribute group"))
824 return true;
825
Bill Wendlingbaad55c2013-02-08 06:32:06 +0000826 if (!NumberedAttrBuilders[VarID].hasAttributes())
Bill Wendling95ce4c22013-02-06 06:52:58 +0000827 return Error(AttrGrpLoc, "attribute group has no attributes");
828
829 return false;
830}
831
Bill Wendlingea007fa2013-02-08 00:52:31 +0000832/// ParseFnAttributeValuePairs
Bill Wendling95ce4c22013-02-06 06:52:58 +0000833/// ::= <attr> | <attr> '=' <value>
Bill Wendlingbaad55c2013-02-08 06:32:06 +0000834bool LLParser::ParseFnAttributeValuePairs(AttrBuilder &B,
835 std::vector<unsigned> &FwdRefAttrGrps,
Michael Gottesman2253a2f2013-06-27 00:25:01 +0000836 bool inAttrGrp, LocTy &BuiltinLoc) {
Bill Wendlingea007fa2013-02-08 00:52:31 +0000837 bool HaveError = false;
838
839 B.clear();
840
Bill Wendling95ce4c22013-02-06 06:52:58 +0000841 while (true) {
842 lltok::Kind Token = Lex.getKind();
Michael Gottesman2253a2f2013-06-27 00:25:01 +0000843 if (Token == lltok::kw_builtin)
844 BuiltinLoc = Lex.getLoc();
Bill Wendling95ce4c22013-02-06 06:52:58 +0000845 switch (Token) {
846 default:
Bill Wendlingea007fa2013-02-08 00:52:31 +0000847 if (!inAttrGrp) return HaveError;
Bill Wendling95ce4c22013-02-06 06:52:58 +0000848 return Error(Lex.getLoc(), "unterminated attribute group");
849 case lltok::rbrace:
850 // Finished.
851 return false;
852
Bill Wendlingbaad55c2013-02-08 06:32:06 +0000853 case lltok::AttrGrpID: {
854 // Allow a function to reference an attribute group:
855 //
856 // define void @foo() #1 { ... }
857 if (inAttrGrp)
858 HaveError |=
859 Error(Lex.getLoc(),
860 "cannot have an attribute group reference in an attribute group");
861
862 unsigned AttrGrpNum = Lex.getUIntVal();
863 if (inAttrGrp) break;
864
865 // Save the reference to the attribute group. We'll fill it in later.
866 FwdRefAttrGrps.push_back(AttrGrpNum);
867 break;
868 }
Bill Wendling95ce4c22013-02-06 06:52:58 +0000869 // Target-dependent attributes:
870 case lltok::StringConstant: {
871 std::string Attr = Lex.getStrVal();
872 Lex.Lex();
873 std::string Val;
874 if (EatIfPresent(lltok::equal) &&
875 ParseStringConstant(Val))
876 return true;
877
878 B.addAttribute(Attr, Val);
Bill Wendling0f742202013-02-10 10:12:50 +0000879 continue;
Bill Wendling95ce4c22013-02-06 06:52:58 +0000880 }
881
882 // Target-independent attributes:
883 case lltok::kw_align: {
Bill Wendlingc0b4b672013-04-18 18:30:16 +0000884 // As a hack, we allow function alignment to be initially parsed as an
885 // attribute on a function declaration/definition or added to an attribute
886 // group and later moved to the alignment field.
Bill Wendling95ce4c22013-02-06 06:52:58 +0000887 unsigned Alignment;
Bill Wendlingea007fa2013-02-08 00:52:31 +0000888 if (inAttrGrp) {
Bill Wendling3f87d232013-02-10 23:15:51 +0000889 Lex.Lex();
Bill Wendlingea007fa2013-02-08 00:52:31 +0000890 if (ParseToken(lltok::equal, "expected '=' here") ||
891 ParseUInt32(Alignment))
892 return true;
893 } else {
894 if (ParseOptionalAlignment(Alignment))
895 return true;
896 }
Bill Wendling95ce4c22013-02-06 06:52:58 +0000897 B.addAlignmentAttr(Alignment);
Bill Wendlingea007fa2013-02-08 00:52:31 +0000898 continue;
Bill Wendling95ce4c22013-02-06 06:52:58 +0000899 }
900 case lltok::kw_alignstack: {
901 unsigned Alignment;
Bill Wendlingea007fa2013-02-08 00:52:31 +0000902 if (inAttrGrp) {
Bill Wendling3f87d232013-02-10 23:15:51 +0000903 Lex.Lex();
Bill Wendlingea007fa2013-02-08 00:52:31 +0000904 if (ParseToken(lltok::equal, "expected '=' here") ||
905 ParseUInt32(Alignment))
906 return true;
907 } else {
908 if (ParseOptionalStackAlignment(Alignment))
909 return true;
910 }
Bill Wendling95ce4c22013-02-06 06:52:58 +0000911 B.addStackAlignmentAttr(Alignment);
Bill Wendlingea007fa2013-02-08 00:52:31 +0000912 continue;
Bill Wendling95ce4c22013-02-06 06:52:58 +0000913 }
Kostya Serebryany8eec41f2013-02-26 06:58:09 +0000914 case lltok::kw_alwaysinline: B.addAttribute(Attribute::AlwaysInline); break;
Michael Gottesman2253a2f2013-06-27 00:25:01 +0000915 case lltok::kw_builtin: B.addAttribute(Attribute::Builtin); break;
Diego Novillo77226a02013-05-24 12:26:52 +0000916 case lltok::kw_cold: B.addAttribute(Attribute::Cold); break;
Kostya Serebryany8eec41f2013-02-26 06:58:09 +0000917 case lltok::kw_inlinehint: B.addAttribute(Attribute::InlineHint); break;
918 case lltok::kw_minsize: B.addAttribute(Attribute::MinSize); break;
919 case lltok::kw_naked: B.addAttribute(Attribute::Naked); break;
920 case lltok::kw_nobuiltin: B.addAttribute(Attribute::NoBuiltin); break;
921 case lltok::kw_noduplicate: B.addAttribute(Attribute::NoDuplicate); break;
922 case lltok::kw_noimplicitfloat: B.addAttribute(Attribute::NoImplicitFloat); break;
923 case lltok::kw_noinline: B.addAttribute(Attribute::NoInline); break;
924 case lltok::kw_nonlazybind: B.addAttribute(Attribute::NonLazyBind); break;
925 case lltok::kw_noredzone: B.addAttribute(Attribute::NoRedZone); break;
926 case lltok::kw_noreturn: B.addAttribute(Attribute::NoReturn); break;
927 case lltok::kw_nounwind: B.addAttribute(Attribute::NoUnwind); break;
Andrea Di Biagio5768bb82013-08-23 11:53:55 +0000928 case lltok::kw_optnone: B.addAttribute(Attribute::OptimizeNone); break;
Kostya Serebryany8eec41f2013-02-26 06:58:09 +0000929 case lltok::kw_optsize: B.addAttribute(Attribute::OptimizeForSize); break;
930 case lltok::kw_readnone: B.addAttribute(Attribute::ReadNone); break;
931 case lltok::kw_readonly: B.addAttribute(Attribute::ReadOnly); break;
932 case lltok::kw_returns_twice: B.addAttribute(Attribute::ReturnsTwice); break;
933 case lltok::kw_ssp: B.addAttribute(Attribute::StackProtect); break;
934 case lltok::kw_sspreq: B.addAttribute(Attribute::StackProtectReq); break;
935 case lltok::kw_sspstrong: B.addAttribute(Attribute::StackProtectStrong); break;
936 case lltok::kw_sanitize_address: B.addAttribute(Attribute::SanitizeAddress); break;
937 case lltok::kw_sanitize_thread: B.addAttribute(Attribute::SanitizeThread); break;
938 case lltok::kw_sanitize_memory: B.addAttribute(Attribute::SanitizeMemory); break;
939 case lltok::kw_uwtable: B.addAttribute(Attribute::UWTable); break;
Bill Wendlingea007fa2013-02-08 00:52:31 +0000940
941 // Error handling.
942 case lltok::kw_inreg:
943 case lltok::kw_signext:
944 case lltok::kw_zeroext:
945 HaveError |=
946 Error(Lex.getLoc(),
947 "invalid use of attribute on a function");
948 break;
949 case lltok::kw_byval:
950 case lltok::kw_nest:
951 case lltok::kw_noalias:
952 case lltok::kw_nocapture:
Stephen Lin456ca042013-04-20 05:14:40 +0000953 case lltok::kw_returned:
Bill Wendlingea007fa2013-02-08 00:52:31 +0000954 case lltok::kw_sret:
955 HaveError |=
956 Error(Lex.getLoc(),
957 "invalid use of parameter-only attribute on a function");
958 break;
Bill Wendling95ce4c22013-02-06 06:52:58 +0000959 }
960
961 Lex.Lex();
962 }
963}
Chris Lattnerdf986172009-01-02 07:01:27 +0000964
965//===----------------------------------------------------------------------===//
966// GlobalValue Reference/Resolution Routines.
967//===----------------------------------------------------------------------===//
968
969/// GetGlobalVal - Get a value with the specified name or ID, creating a
970/// forward reference record if needed. This can return null if the value
971/// exists but does not have the right type.
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000972GlobalValue *LLParser::GetGlobalVal(const std::string &Name, Type *Ty,
Chris Lattnerdf986172009-01-02 07:01:27 +0000973 LocTy Loc) {
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000974 PointerType *PTy = dyn_cast<PointerType>(Ty);
Chris Lattnerdf986172009-01-02 07:01:27 +0000975 if (PTy == 0) {
976 Error(Loc, "global variable reference must have pointer type");
977 return 0;
978 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000979
Chris Lattnerdf986172009-01-02 07:01:27 +0000980 // Look this name up in the normal function symbol table.
981 GlobalValue *Val =
982 cast_or_null<GlobalValue>(M->getValueSymbolTable().lookup(Name));
Daniel Dunbara279bc32009-09-20 02:20:51 +0000983
Chris Lattnerdf986172009-01-02 07:01:27 +0000984 // If this is a forward reference for the value, see if we already created a
985 // forward ref record.
986 if (Val == 0) {
987 std::map<std::string, std::pair<GlobalValue*, LocTy> >::iterator
988 I = ForwardRefVals.find(Name);
989 if (I != ForwardRefVals.end())
990 Val = I->second.first;
991 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000992
Chris Lattnerdf986172009-01-02 07:01:27 +0000993 // If we have the value in the symbol table or fwd-ref table, return it.
994 if (Val) {
995 if (Val->getType() == Ty) return Val;
996 Error(Loc, "'@" + Name + "' defined with type '" +
Chris Lattner0cd0d882011-06-18 21:18:23 +0000997 getTypeString(Val->getType()) + "'");
Chris Lattnerdf986172009-01-02 07:01:27 +0000998 return 0;
999 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001000
Chris Lattnerdf986172009-01-02 07:01:27 +00001001 // Otherwise, create a new forward reference for this value and remember it.
1002 GlobalValue *FwdVal;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001003 if (FunctionType *FT = dyn_cast<FunctionType>(PTy->getElementType()))
Duncan Sands5f4ee1f2009-03-11 08:08:06 +00001004 FwdVal = Function::Create(FT, GlobalValue::ExternalWeakLinkage, Name, M);
Chris Lattner1afcace2011-07-09 17:41:24 +00001005 else
Owen Andersone9b11b42009-07-08 19:03:57 +00001006 FwdVal = new GlobalVariable(*M, PTy->getElementType(), false,
Justin Holewinskieaff2d52012-11-16 21:03:47 +00001007 GlobalValue::ExternalWeakLinkage, 0, Name,
1008 0, GlobalVariable::NotThreadLocal,
1009 PTy->getAddressSpace());
Daniel Dunbara279bc32009-09-20 02:20:51 +00001010
Chris Lattnerdf986172009-01-02 07:01:27 +00001011 ForwardRefVals[Name] = std::make_pair(FwdVal, Loc);
1012 return FwdVal;
1013}
1014
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001015GlobalValue *LLParser::GetGlobalVal(unsigned ID, Type *Ty, LocTy Loc) {
1016 PointerType *PTy = dyn_cast<PointerType>(Ty);
Chris Lattnerdf986172009-01-02 07:01:27 +00001017 if (PTy == 0) {
1018 Error(Loc, "global variable reference must have pointer type");
1019 return 0;
1020 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001021
Chris Lattnerdf986172009-01-02 07:01:27 +00001022 GlobalValue *Val = ID < NumberedVals.size() ? NumberedVals[ID] : 0;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001023
Chris Lattnerdf986172009-01-02 07:01:27 +00001024 // If this is a forward reference for the value, see if we already created a
1025 // forward ref record.
1026 if (Val == 0) {
1027 std::map<unsigned, std::pair<GlobalValue*, LocTy> >::iterator
1028 I = ForwardRefValIDs.find(ID);
1029 if (I != ForwardRefValIDs.end())
1030 Val = I->second.first;
1031 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001032
Chris Lattnerdf986172009-01-02 07:01:27 +00001033 // If we have the value in the symbol table or fwd-ref table, return it.
1034 if (Val) {
1035 if (Val->getType() == Ty) return Val;
Benjamin Kramerd1e17032010-09-27 17:42:11 +00001036 Error(Loc, "'@" + Twine(ID) + "' defined with type '" +
Chris Lattner0cd0d882011-06-18 21:18:23 +00001037 getTypeString(Val->getType()) + "'");
Chris Lattnerdf986172009-01-02 07:01:27 +00001038 return 0;
1039 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001040
Chris Lattnerdf986172009-01-02 07:01:27 +00001041 // Otherwise, create a new forward reference for this value and remember it.
1042 GlobalValue *FwdVal;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001043 if (FunctionType *FT = dyn_cast<FunctionType>(PTy->getElementType()))
Duncan Sands5f4ee1f2009-03-11 08:08:06 +00001044 FwdVal = Function::Create(FT, GlobalValue::ExternalWeakLinkage, "", M);
Chris Lattner1afcace2011-07-09 17:41:24 +00001045 else
Owen Andersone9b11b42009-07-08 19:03:57 +00001046 FwdVal = new GlobalVariable(*M, PTy->getElementType(), false,
1047 GlobalValue::ExternalWeakLinkage, 0, "");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001048
Chris Lattnerdf986172009-01-02 07:01:27 +00001049 ForwardRefValIDs[ID] = std::make_pair(FwdVal, Loc);
1050 return FwdVal;
1051}
1052
1053
1054//===----------------------------------------------------------------------===//
1055// Helper Routines.
1056//===----------------------------------------------------------------------===//
1057
1058/// ParseToken - If the current token has the specified kind, eat it and return
1059/// success. Otherwise, emit the specified error and return failure.
1060bool LLParser::ParseToken(lltok::Kind T, const char *ErrMsg) {
1061 if (Lex.getKind() != T)
1062 return TokError(ErrMsg);
1063 Lex.Lex();
1064 return false;
1065}
1066
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001067/// ParseStringConstant
1068/// ::= StringConstant
1069bool LLParser::ParseStringConstant(std::string &Result) {
1070 if (Lex.getKind() != lltok::StringConstant)
1071 return TokError("expected string constant");
1072 Result = Lex.getStrVal();
1073 Lex.Lex();
1074 return false;
1075}
1076
1077/// ParseUInt32
1078/// ::= uint32
1079bool LLParser::ParseUInt32(unsigned &Val) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001080 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned())
1081 return TokError("expected integer");
1082 uint64_t Val64 = Lex.getAPSIntVal().getLimitedValue(0xFFFFFFFFULL+1);
1083 if (Val64 != unsigned(Val64))
1084 return TokError("expected 32-bit integer (too large)");
1085 Val = Val64;
1086 Lex.Lex();
1087 return false;
1088}
1089
Hans Wennborgce718ff2012-06-23 11:37:03 +00001090/// ParseTLSModel
1091/// := 'localdynamic'
1092/// := 'initialexec'
1093/// := 'localexec'
1094bool LLParser::ParseTLSModel(GlobalVariable::ThreadLocalMode &TLM) {
1095 switch (Lex.getKind()) {
1096 default:
1097 return TokError("expected localdynamic, initialexec or localexec");
1098 case lltok::kw_localdynamic:
1099 TLM = GlobalVariable::LocalDynamicTLSModel;
1100 break;
1101 case lltok::kw_initialexec:
1102 TLM = GlobalVariable::InitialExecTLSModel;
1103 break;
1104 case lltok::kw_localexec:
1105 TLM = GlobalVariable::LocalExecTLSModel;
1106 break;
1107 }
1108
1109 Lex.Lex();
1110 return false;
1111}
1112
1113/// ParseOptionalThreadLocal
1114/// := /*empty*/
1115/// := 'thread_local'
1116/// := 'thread_local' '(' tlsmodel ')'
1117bool LLParser::ParseOptionalThreadLocal(GlobalVariable::ThreadLocalMode &TLM) {
1118 TLM = GlobalVariable::NotThreadLocal;
1119 if (!EatIfPresent(lltok::kw_thread_local))
1120 return false;
1121
1122 TLM = GlobalVariable::GeneralDynamicTLSModel;
1123 if (Lex.getKind() == lltok::lparen) {
1124 Lex.Lex();
1125 return ParseTLSModel(TLM) ||
1126 ParseToken(lltok::rparen, "expected ')' after thread local model");
1127 }
1128 return false;
1129}
Chris Lattnerdf986172009-01-02 07:01:27 +00001130
1131/// ParseOptionalAddrSpace
1132/// := /*empty*/
1133/// := 'addrspace' '(' uint32 ')'
1134bool LLParser::ParseOptionalAddrSpace(unsigned &AddrSpace) {
1135 AddrSpace = 0;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001136 if (!EatIfPresent(lltok::kw_addrspace))
Chris Lattnerdf986172009-01-02 07:01:27 +00001137 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00001138 return ParseToken(lltok::lparen, "expected '(' in address space") ||
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001139 ParseUInt32(AddrSpace) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00001140 ParseToken(lltok::rparen, "expected ')' in address space");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001141}
Chris Lattnerdf986172009-01-02 07:01:27 +00001142
Bill Wendlinge01b81b2012-12-04 23:40:58 +00001143/// ParseOptionalParamAttrs - Parse a potentially empty list of parameter attributes.
1144bool LLParser::ParseOptionalParamAttrs(AttrBuilder &B) {
1145 bool HaveError = false;
1146
1147 B.clear();
1148
1149 while (1) {
1150 lltok::Kind Token = Lex.getKind();
1151 switch (Token) {
1152 default: // End of attributes.
1153 return HaveError;
Chris Lattnerdf986172009-01-02 07:01:27 +00001154 case lltok::kw_align: {
1155 unsigned Alignment;
1156 if (ParseOptionalAlignment(Alignment))
1157 return true;
Bill Wendling03272442012-10-08 22:20:14 +00001158 B.addAlignmentAttr(Alignment);
Chris Lattnerdf986172009-01-02 07:01:27 +00001159 continue;
1160 }
Bill Wendling034b94b2012-12-19 07:18:57 +00001161 case lltok::kw_byval: B.addAttribute(Attribute::ByVal); break;
1162 case lltok::kw_inreg: B.addAttribute(Attribute::InReg); break;
1163 case lltok::kw_nest: B.addAttribute(Attribute::Nest); break;
1164 case lltok::kw_noalias: B.addAttribute(Attribute::NoAlias); break;
1165 case lltok::kw_nocapture: B.addAttribute(Attribute::NoCapture); break;
Nick Lewyckydc897372013-07-06 00:29:58 +00001166 case lltok::kw_readnone: B.addAttribute(Attribute::ReadNone); break;
1167 case lltok::kw_readonly: B.addAttribute(Attribute::ReadOnly); break;
Stephen Lin456ca042013-04-20 05:14:40 +00001168 case lltok::kw_returned: B.addAttribute(Attribute::Returned); break;
Bill Wendling034b94b2012-12-19 07:18:57 +00001169 case lltok::kw_signext: B.addAttribute(Attribute::SExt); break;
1170 case lltok::kw_sret: B.addAttribute(Attribute::StructRet); break;
1171 case lltok::kw_zeroext: B.addAttribute(Attribute::ZExt); break;
Charles Davis1e063d12010-02-12 00:31:15 +00001172
Stephen Linb0aeb3e2013-04-20 13:16:13 +00001173 case lltok::kw_alignstack:
1174 case lltok::kw_alwaysinline:
Michael Gottesman2253a2f2013-06-27 00:25:01 +00001175 case lltok::kw_builtin:
Stephen Linb0aeb3e2013-04-20 13:16:13 +00001176 case lltok::kw_inlinehint:
1177 case lltok::kw_minsize:
1178 case lltok::kw_naked:
1179 case lltok::kw_nobuiltin:
1180 case lltok::kw_noduplicate:
1181 case lltok::kw_noimplicitfloat:
1182 case lltok::kw_noinline:
1183 case lltok::kw_nonlazybind:
1184 case lltok::kw_noredzone:
1185 case lltok::kw_noreturn:
1186 case lltok::kw_nounwind:
Andrea Di Biagio5768bb82013-08-23 11:53:55 +00001187 case lltok::kw_optnone:
Stephen Linb0aeb3e2013-04-20 13:16:13 +00001188 case lltok::kw_optsize:
Stephen Linb0aeb3e2013-04-20 13:16:13 +00001189 case lltok::kw_returns_twice:
1190 case lltok::kw_sanitize_address:
1191 case lltok::kw_sanitize_memory:
1192 case lltok::kw_sanitize_thread:
1193 case lltok::kw_ssp:
1194 case lltok::kw_sspreq:
1195 case lltok::kw_sspstrong:
1196 case lltok::kw_uwtable:
Bill Wendlinge01b81b2012-12-04 23:40:58 +00001197 HaveError |= Error(Lex.getLoc(), "invalid use of function-only attribute");
1198 break;
Chris Lattnerdf986172009-01-02 07:01:27 +00001199 }
Bill Wendlingdc998cc2012-09-28 22:30:18 +00001200
Bill Wendlinge01b81b2012-12-04 23:40:58 +00001201 Lex.Lex();
1202 }
1203}
1204
1205/// ParseOptionalReturnAttrs - Parse a potentially empty list of return attributes.
1206bool LLParser::ParseOptionalReturnAttrs(AttrBuilder &B) {
1207 bool HaveError = false;
1208
1209 B.clear();
1210
1211 while (1) {
1212 lltok::Kind Token = Lex.getKind();
Bill Wendlingdc998cc2012-09-28 22:30:18 +00001213 switch (Token) {
Bill Wendlinge01b81b2012-12-04 23:40:58 +00001214 default: // End of attributes.
1215 return HaveError;
Bill Wendling034b94b2012-12-19 07:18:57 +00001216 case lltok::kw_inreg: B.addAttribute(Attribute::InReg); break;
1217 case lltok::kw_noalias: B.addAttribute(Attribute::NoAlias); break;
1218 case lltok::kw_signext: B.addAttribute(Attribute::SExt); break;
1219 case lltok::kw_zeroext: B.addAttribute(Attribute::ZExt); break;
Bill Wendlingdc998cc2012-09-28 22:30:18 +00001220
Bill Wendlinge01b81b2012-12-04 23:40:58 +00001221 // Error handling.
Stephen Linb0aeb3e2013-04-20 13:16:13 +00001222 case lltok::kw_align:
Chandler Carruth239e1e42013-04-09 19:46:46 +00001223 case lltok::kw_byval:
1224 case lltok::kw_nest:
1225 case lltok::kw_nocapture:
Stephen Lin456ca042013-04-20 05:14:40 +00001226 case lltok::kw_returned:
Chandler Carruth239e1e42013-04-09 19:46:46 +00001227 case lltok::kw_sret:
Bill Wendlinge01b81b2012-12-04 23:40:58 +00001228 HaveError |= Error(Lex.getLoc(), "invalid use of parameter-only attribute");
Bill Wendlingdc998cc2012-09-28 22:30:18 +00001229 break;
James Molloy67ae1352012-12-20 16:04:27 +00001230
Chandler Carruth239e1e42013-04-09 19:46:46 +00001231 case lltok::kw_alignstack:
1232 case lltok::kw_alwaysinline:
Michael Gottesman2253a2f2013-06-27 00:25:01 +00001233 case lltok::kw_builtin:
Diego Novillo77226a02013-05-24 12:26:52 +00001234 case lltok::kw_cold:
Chandler Carruth239e1e42013-04-09 19:46:46 +00001235 case lltok::kw_inlinehint:
1236 case lltok::kw_minsize:
1237 case lltok::kw_naked:
1238 case lltok::kw_nobuiltin:
1239 case lltok::kw_noduplicate:
1240 case lltok::kw_noimplicitfloat:
1241 case lltok::kw_noinline:
1242 case lltok::kw_nonlazybind:
1243 case lltok::kw_noredzone:
1244 case lltok::kw_noreturn:
1245 case lltok::kw_nounwind:
Andrea Di Biagio5768bb82013-08-23 11:53:55 +00001246 case lltok::kw_optnone:
Chandler Carruth239e1e42013-04-09 19:46:46 +00001247 case lltok::kw_optsize:
Chandler Carruth239e1e42013-04-09 19:46:46 +00001248 case lltok::kw_returns_twice:
1249 case lltok::kw_sanitize_address:
1250 case lltok::kw_sanitize_memory:
1251 case lltok::kw_sanitize_thread:
1252 case lltok::kw_ssp:
1253 case lltok::kw_sspreq:
1254 case lltok::kw_sspstrong:
1255 case lltok::kw_uwtable:
Bill Wendlinge01b81b2012-12-04 23:40:58 +00001256 HaveError |= Error(Lex.getLoc(), "invalid use of function-only attribute");
Bill Wendlingdc998cc2012-09-28 22:30:18 +00001257 break;
Nick Lewyckydc897372013-07-06 00:29:58 +00001258
1259 case lltok::kw_readnone:
1260 case lltok::kw_readonly:
1261 HaveError |= Error(Lex.getLoc(), "invalid use of attribute on return type");
Bill Wendlingdc998cc2012-09-28 22:30:18 +00001262 }
1263
Chris Lattnerdf986172009-01-02 07:01:27 +00001264 Lex.Lex();
1265 }
1266}
1267
1268/// ParseOptionalLinkage
1269/// ::= /*empty*/
Rafael Espindolabb46f522009-01-15 20:18:42 +00001270/// ::= 'private'
Bill Wendling3d10a5a2009-07-20 01:03:30 +00001271/// ::= 'linker_private'
Bill Wendling5e721d72010-07-01 21:55:59 +00001272/// ::= 'linker_private_weak'
Chris Lattnerdf986172009-01-02 07:01:27 +00001273/// ::= 'internal'
1274/// ::= 'weak'
Duncan Sands667d4b82009-03-07 15:45:40 +00001275/// ::= 'weak_odr'
Chris Lattnerdf986172009-01-02 07:01:27 +00001276/// ::= 'linkonce'
Duncan Sands667d4b82009-03-07 15:45:40 +00001277/// ::= 'linkonce_odr'
Bill Wendling32811be2012-08-17 18:33:14 +00001278/// ::= 'linkonce_odr_auto_hide'
Bill Wendling5e721d72010-07-01 21:55:59 +00001279/// ::= 'available_externally'
Chris Lattnerdf986172009-01-02 07:01:27 +00001280/// ::= 'appending'
1281/// ::= 'dllexport'
1282/// ::= 'common'
1283/// ::= 'dllimport'
1284/// ::= 'extern_weak'
1285/// ::= 'external'
1286bool LLParser::ParseOptionalLinkage(unsigned &Res, bool &HasLinkage) {
1287 HasLinkage = false;
1288 switch (Lex.getKind()) {
Bill Wendling3d10a5a2009-07-20 01:03:30 +00001289 default: Res=GlobalValue::ExternalLinkage; return false;
1290 case lltok::kw_private: Res = GlobalValue::PrivateLinkage; break;
1291 case lltok::kw_linker_private: Res = GlobalValue::LinkerPrivateLinkage; break;
Bill Wendling5e721d72010-07-01 21:55:59 +00001292 case lltok::kw_linker_private_weak:
1293 Res = GlobalValue::LinkerPrivateWeakLinkage;
1294 break;
Bill Wendling3d10a5a2009-07-20 01:03:30 +00001295 case lltok::kw_internal: Res = GlobalValue::InternalLinkage; break;
1296 case lltok::kw_weak: Res = GlobalValue::WeakAnyLinkage; break;
1297 case lltok::kw_weak_odr: Res = GlobalValue::WeakODRLinkage; break;
1298 case lltok::kw_linkonce: Res = GlobalValue::LinkOnceAnyLinkage; break;
1299 case lltok::kw_linkonce_odr: Res = GlobalValue::LinkOnceODRLinkage; break;
Bill Wendling32811be2012-08-17 18:33:14 +00001300 case lltok::kw_linkonce_odr_auto_hide:
1301 case lltok::kw_linker_private_weak_def_auto: // FIXME: For backwards compat.
1302 Res = GlobalValue::LinkOnceODRAutoHideLinkage;
1303 break;
Chris Lattner266c7bb2009-04-13 05:44:34 +00001304 case lltok::kw_available_externally:
1305 Res = GlobalValue::AvailableExternallyLinkage;
1306 break;
Bill Wendling3d10a5a2009-07-20 01:03:30 +00001307 case lltok::kw_appending: Res = GlobalValue::AppendingLinkage; break;
1308 case lltok::kw_dllexport: Res = GlobalValue::DLLExportLinkage; break;
1309 case lltok::kw_common: Res = GlobalValue::CommonLinkage; break;
1310 case lltok::kw_dllimport: Res = GlobalValue::DLLImportLinkage; break;
1311 case lltok::kw_extern_weak: Res = GlobalValue::ExternalWeakLinkage; break;
1312 case lltok::kw_external: Res = GlobalValue::ExternalLinkage; break;
Chris Lattnerdf986172009-01-02 07:01:27 +00001313 }
1314 Lex.Lex();
1315 HasLinkage = true;
1316 return false;
1317}
1318
1319/// ParseOptionalVisibility
1320/// ::= /*empty*/
1321/// ::= 'default'
1322/// ::= 'hidden'
1323/// ::= 'protected'
Daniel Dunbara279bc32009-09-20 02:20:51 +00001324///
Chris Lattnerdf986172009-01-02 07:01:27 +00001325bool LLParser::ParseOptionalVisibility(unsigned &Res) {
1326 switch (Lex.getKind()) {
1327 default: Res = GlobalValue::DefaultVisibility; return false;
1328 case lltok::kw_default: Res = GlobalValue::DefaultVisibility; break;
1329 case lltok::kw_hidden: Res = GlobalValue::HiddenVisibility; break;
1330 case lltok::kw_protected: Res = GlobalValue::ProtectedVisibility; break;
1331 }
1332 Lex.Lex();
1333 return false;
1334}
1335
1336/// ParseOptionalCallingConv
1337/// ::= /*empty*/
1338/// ::= 'ccc'
1339/// ::= 'fastcc'
Elena Demikhovsky35752222012-10-24 14:46:16 +00001340/// ::= 'kw_intel_ocl_bicc'
Chris Lattnerdf986172009-01-02 07:01:27 +00001341/// ::= 'coldcc'
1342/// ::= 'x86_stdcallcc'
1343/// ::= 'x86_fastcallcc'
Anton Korobeynikovded05e32010-05-16 09:08:45 +00001344/// ::= 'x86_thiscallcc'
Anton Korobeynikov385f5a92009-06-16 18:50:49 +00001345/// ::= 'arm_apcscc'
1346/// ::= 'arm_aapcscc'
1347/// ::= 'arm_aapcs_vfpcc'
Anton Korobeynikov211a14e2009-12-07 02:27:35 +00001348/// ::= 'msp430_intrcc'
Che-Liang Chiouf9930da2010-09-25 07:46:17 +00001349/// ::= 'ptx_kernel'
1350/// ::= 'ptx_device'
Micah Villmowe53d6052012-10-01 17:01:31 +00001351/// ::= 'spir_func'
1352/// ::= 'spir_kernel'
Charles Davisac226bb2013-07-12 06:02:35 +00001353/// ::= 'x86_64_sysvcc'
1354/// ::= 'x86_64_win64cc'
Chris Lattnerdf986172009-01-02 07:01:27 +00001355/// ::= 'cc' UINT
Anton Korobeynikov385f5a92009-06-16 18:50:49 +00001356///
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001357bool LLParser::ParseOptionalCallingConv(CallingConv::ID &CC) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001358 switch (Lex.getKind()) {
1359 default: CC = CallingConv::C; return false;
1360 case lltok::kw_ccc: CC = CallingConv::C; break;
1361 case lltok::kw_fastcc: CC = CallingConv::Fast; break;
1362 case lltok::kw_coldcc: CC = CallingConv::Cold; break;
1363 case lltok::kw_x86_stdcallcc: CC = CallingConv::X86_StdCall; break;
1364 case lltok::kw_x86_fastcallcc: CC = CallingConv::X86_FastCall; break;
Anton Korobeynikovded05e32010-05-16 09:08:45 +00001365 case lltok::kw_x86_thiscallcc: CC = CallingConv::X86_ThisCall; break;
Anton Korobeynikov385f5a92009-06-16 18:50:49 +00001366 case lltok::kw_arm_apcscc: CC = CallingConv::ARM_APCS; break;
1367 case lltok::kw_arm_aapcscc: CC = CallingConv::ARM_AAPCS; break;
1368 case lltok::kw_arm_aapcs_vfpcc:CC = CallingConv::ARM_AAPCS_VFP; break;
Anton Korobeynikov211a14e2009-12-07 02:27:35 +00001369 case lltok::kw_msp430_intrcc: CC = CallingConv::MSP430_INTR; break;
Che-Liang Chiouf9930da2010-09-25 07:46:17 +00001370 case lltok::kw_ptx_kernel: CC = CallingConv::PTX_Kernel; break;
1371 case lltok::kw_ptx_device: CC = CallingConv::PTX_Device; break;
Micah Villmowe53d6052012-10-01 17:01:31 +00001372 case lltok::kw_spir_kernel: CC = CallingConv::SPIR_KERNEL; break;
1373 case lltok::kw_spir_func: CC = CallingConv::SPIR_FUNC; break;
Elena Demikhovsky35752222012-10-24 14:46:16 +00001374 case lltok::kw_intel_ocl_bicc: CC = CallingConv::Intel_OCL_BI; break;
Charles Davisac226bb2013-07-12 06:02:35 +00001375 case lltok::kw_x86_64_sysvcc: CC = CallingConv::X86_64_SysV; break;
1376 case lltok::kw_x86_64_win64cc: CC = CallingConv::X86_64_Win64; break;
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001377 case lltok::kw_cc: {
1378 unsigned ArbitraryCC;
1379 Lex.Lex();
David Blaikie4d6ccb52012-01-20 21:51:11 +00001380 if (ParseUInt32(ArbitraryCC))
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001381 return true;
David Blaikie4d6ccb52012-01-20 21:51:11 +00001382 CC = static_cast<CallingConv::ID>(ArbitraryCC);
1383 return false;
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001384 }
Chris Lattnerdf986172009-01-02 07:01:27 +00001385 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001386
Chris Lattnerdf986172009-01-02 07:01:27 +00001387 Lex.Lex();
1388 return false;
1389}
1390
Chris Lattnerb8c46862009-12-30 05:31:19 +00001391/// ParseInstructionMetadata
Chris Lattner3f3a0f62009-12-29 21:25:40 +00001392/// ::= !dbg !42 (',' !dbg !57)*
Dan Gohman9d072f52010-08-24 02:05:17 +00001393bool LLParser::ParseInstructionMetadata(Instruction *Inst,
1394 PerFunctionState *PFS) {
Chris Lattnerb8c46862009-12-30 05:31:19 +00001395 do {
1396 if (Lex.getKind() != lltok::MetadataVar)
1397 return TokError("expected metadata after comma");
Devang Patel0475c912009-09-29 00:01:14 +00001398
Chris Lattner3f3a0f62009-12-29 21:25:40 +00001399 std::string Name = Lex.getStrVal();
Benjamin Kramer85dadec2011-12-06 11:50:26 +00001400 unsigned MDK = M->getMDKindID(Name);
Chris Lattner3f3a0f62009-12-29 21:25:40 +00001401 Lex.Lex();
Chris Lattner52e20312009-10-19 05:31:10 +00001402
Chris Lattner442ffa12009-12-29 21:53:55 +00001403 MDNode *Node;
Chris Lattner449c3102010-04-01 05:14:45 +00001404 SMLoc Loc = Lex.getLoc();
Dan Gohman309b3af2010-08-24 02:24:03 +00001405
1406 if (ParseToken(lltok::exclaim, "expected '!' here"))
Chris Lattnere434d272009-12-30 04:56:59 +00001407 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001408
Dan Gohman68261142010-08-24 14:35:45 +00001409 // This code is similar to that of ParseMetadataValue, however it needs to
1410 // have special-case code for a forward reference; see the comments on
1411 // ForwardRefInstMetadata for details. Also, MDStrings are not supported
1412 // at the top level here.
Dan Gohman309b3af2010-08-24 02:24:03 +00001413 if (Lex.getKind() == lltok::lbrace) {
1414 ValID ID;
1415 if (ParseMetadataListValue(ID, PFS))
1416 return true;
1417 assert(ID.Kind == ValID::t_MDNode);
1418 Inst->setMetadata(MDK, ID.MDNodeVal);
Chris Lattner449c3102010-04-01 05:14:45 +00001419 } else {
Nick Lewyckyc6877b42010-09-30 21:04:13 +00001420 unsigned NodeID = 0;
Dan Gohman309b3af2010-08-24 02:24:03 +00001421 if (ParseMDNodeID(Node, NodeID))
1422 return true;
1423 if (Node) {
1424 // If we got the node, add it to the instruction.
1425 Inst->setMetadata(MDK, Node);
1426 } else {
1427 MDRef R = { Loc, MDK, NodeID };
1428 // Otherwise, remember that this should be resolved later.
1429 ForwardRefInstMetadata[Inst].push_back(R);
1430 }
Chris Lattner449c3102010-04-01 05:14:45 +00001431 }
Chris Lattner3f3a0f62009-12-29 21:25:40 +00001432
Manman Ren804f0342013-09-28 00:22:27 +00001433 if (MDK == LLVMContext::MD_tbaa)
1434 InstsWithTBAATag.push_back(Inst);
1435
Chris Lattner3f3a0f62009-12-29 21:25:40 +00001436 // If this is the end of the list, we're done.
Chris Lattnerb8c46862009-12-30 05:31:19 +00001437 } while (EatIfPresent(lltok::comma));
1438 return false;
Devang Patelf633a062009-09-17 23:04:48 +00001439}
1440
Chris Lattnerdf986172009-01-02 07:01:27 +00001441/// ParseOptionalAlignment
1442/// ::= /* empty */
1443/// ::= 'align' 4
1444bool LLParser::ParseOptionalAlignment(unsigned &Alignment) {
1445 Alignment = 0;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001446 if (!EatIfPresent(lltok::kw_align))
1447 return false;
Chris Lattner3fbb3ab2009-01-05 07:46:05 +00001448 LocTy AlignLoc = Lex.getLoc();
1449 if (ParseUInt32(Alignment)) return true;
1450 if (!isPowerOf2_32(Alignment))
1451 return Error(AlignLoc, "alignment is not a power of two");
Dan Gohmane16829b2010-07-30 21:07:05 +00001452 if (Alignment > Value::MaximumAlignment)
Dan Gohman138aa2a2010-07-28 20:12:04 +00001453 return Error(AlignLoc, "huge alignments are not supported yet");
Chris Lattner3fbb3ab2009-01-05 07:46:05 +00001454 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00001455}
1456
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00001457/// ParseOptionalCommaAlign
Michael Ilseman407a6162012-11-15 22:34:00 +00001458/// ::=
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00001459/// ::= ',' align 4
1460///
1461/// This returns with AteExtraComma set to true if it ate an excess comma at the
1462/// end.
1463bool LLParser::ParseOptionalCommaAlign(unsigned &Alignment,
1464 bool &AteExtraComma) {
1465 AteExtraComma = false;
1466 while (EatIfPresent(lltok::comma)) {
1467 // Metadata at the end is an early exit.
Chris Lattner1d928312009-12-30 05:02:06 +00001468 if (Lex.getKind() == lltok::MetadataVar) {
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00001469 AteExtraComma = true;
1470 return false;
1471 }
Michael Ilseman407a6162012-11-15 22:34:00 +00001472
Chris Lattner093eed12010-04-23 00:50:50 +00001473 if (Lex.getKind() != lltok::kw_align)
1474 return Error(Lex.getLoc(), "expected metadata or 'align'");
Duncan Sandsbf9fc532010-10-21 16:07:10 +00001475
Chris Lattner093eed12010-04-23 00:50:50 +00001476 if (ParseOptionalAlignment(Alignment)) return true;
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00001477 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001478
Devang Patelf633a062009-09-17 23:04:48 +00001479 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00001480}
1481
Eli Friedman47f35132011-07-25 23:16:38 +00001482/// ParseScopeAndOrdering
1483/// if isAtomic: ::= 'singlethread'? AtomicOrdering
1484/// else: ::=
1485///
1486/// This sets Scope and Ordering to the parsed values.
1487bool LLParser::ParseScopeAndOrdering(bool isAtomic, SynchronizationScope &Scope,
1488 AtomicOrdering &Ordering) {
1489 if (!isAtomic)
1490 return false;
1491
1492 Scope = CrossThread;
1493 if (EatIfPresent(lltok::kw_singlethread))
1494 Scope = SingleThread;
1495 switch (Lex.getKind()) {
1496 default: return TokError("Expected ordering on atomic instruction");
1497 case lltok::kw_unordered: Ordering = Unordered; break;
1498 case lltok::kw_monotonic: Ordering = Monotonic; break;
1499 case lltok::kw_acquire: Ordering = Acquire; break;
1500 case lltok::kw_release: Ordering = Release; break;
1501 case lltok::kw_acq_rel: Ordering = AcquireRelease; break;
1502 case lltok::kw_seq_cst: Ordering = SequentiallyConsistent; break;
1503 }
1504 Lex.Lex();
1505 return false;
1506}
1507
Charles Davis1e063d12010-02-12 00:31:15 +00001508/// ParseOptionalStackAlignment
1509/// ::= /* empty */
1510/// ::= 'alignstack' '(' 4 ')'
1511bool LLParser::ParseOptionalStackAlignment(unsigned &Alignment) {
1512 Alignment = 0;
1513 if (!EatIfPresent(lltok::kw_alignstack))
1514 return false;
1515 LocTy ParenLoc = Lex.getLoc();
1516 if (!EatIfPresent(lltok::lparen))
1517 return Error(ParenLoc, "expected '('");
1518 LocTy AlignLoc = Lex.getLoc();
1519 if (ParseUInt32(Alignment)) return true;
1520 ParenLoc = Lex.getLoc();
1521 if (!EatIfPresent(lltok::rparen))
1522 return Error(ParenLoc, "expected ')'");
1523 if (!isPowerOf2_32(Alignment))
1524 return Error(AlignLoc, "stack alignment is not a power of two");
1525 return false;
1526}
Devang Patelf633a062009-09-17 23:04:48 +00001527
Chris Lattner628c13a2009-12-30 05:14:00 +00001528/// ParseIndexList - This parses the index list for an insert/extractvalue
1529/// instruction. This sets AteExtraComma in the case where we eat an extra
1530/// comma at the end of the line and find that it is followed by metadata.
1531/// Clients that don't allow metadata can call the version of this function that
1532/// only takes one argument.
1533///
Chris Lattnerdf986172009-01-02 07:01:27 +00001534/// ParseIndexList
1535/// ::= (',' uint32)+
Chris Lattner628c13a2009-12-30 05:14:00 +00001536///
1537bool LLParser::ParseIndexList(SmallVectorImpl<unsigned> &Indices,
1538 bool &AteExtraComma) {
1539 AteExtraComma = false;
Michael Ilseman407a6162012-11-15 22:34:00 +00001540
Chris Lattnerdf986172009-01-02 07:01:27 +00001541 if (Lex.getKind() != lltok::comma)
1542 return TokError("expected ',' as start of index list");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001543
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001544 while (EatIfPresent(lltok::comma)) {
Chris Lattner628c13a2009-12-30 05:14:00 +00001545 if (Lex.getKind() == lltok::MetadataVar) {
1546 AteExtraComma = true;
1547 return false;
1548 }
Nick Lewycky28815c42010-09-29 23:32:20 +00001549 unsigned Idx = 0;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001550 if (ParseUInt32(Idx)) return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00001551 Indices.push_back(Idx);
1552 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001553
Chris Lattnerdf986172009-01-02 07:01:27 +00001554 return false;
1555}
1556
1557//===----------------------------------------------------------------------===//
1558// Type Parsing.
1559//===----------------------------------------------------------------------===//
1560
Chris Lattner1afcace2011-07-09 17:41:24 +00001561/// ParseType - Parse a type.
1562bool LLParser::ParseType(Type *&Result, bool AllowVoid) {
1563 SMLoc TypeLoc = Lex.getLoc();
Chris Lattnerdf986172009-01-02 07:01:27 +00001564 switch (Lex.getKind()) {
1565 default:
1566 return TokError("expected type");
1567 case lltok::Type:
Chris Lattner1afcace2011-07-09 17:41:24 +00001568 // Type ::= 'float' | 'void' (etc)
Chris Lattnerdf986172009-01-02 07:01:27 +00001569 Result = Lex.getTyVal();
Daniel Dunbara279bc32009-09-20 02:20:51 +00001570 Lex.Lex();
Chris Lattnerdf986172009-01-02 07:01:27 +00001571 break;
Chris Lattnerdf986172009-01-02 07:01:27 +00001572 case lltok::lbrace:
Chris Lattner1afcace2011-07-09 17:41:24 +00001573 // Type ::= StructType
1574 if (ParseAnonStructType(Result, false))
Chris Lattnerdf986172009-01-02 07:01:27 +00001575 return true;
1576 break;
1577 case lltok::lsquare:
Chris Lattner1afcace2011-07-09 17:41:24 +00001578 // Type ::= '[' ... ']'
Chris Lattnerdf986172009-01-02 07:01:27 +00001579 Lex.Lex(); // eat the lsquare.
1580 if (ParseArrayVectorType(Result, false))
1581 return true;
1582 break;
1583 case lltok::less: // Either vector or packed struct.
Chris Lattner1afcace2011-07-09 17:41:24 +00001584 // Type ::= '<' ... '>'
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001585 Lex.Lex();
1586 if (Lex.getKind() == lltok::lbrace) {
Chris Lattner1afcace2011-07-09 17:41:24 +00001587 if (ParseAnonStructType(Result, true) ||
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001588 ParseToken(lltok::greater, "expected '>' at end of packed struct"))
Chris Lattnerdf986172009-01-02 07:01:27 +00001589 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00001590 } else if (ParseArrayVectorType(Result, true))
1591 return true;
1592 break;
Chris Lattner1afcace2011-07-09 17:41:24 +00001593 case lltok::LocalVar: {
1594 // Type ::= %foo
1595 std::pair<Type*, LocTy> &Entry = NamedTypes[Lex.getStrVal()];
Michael Ilseman407a6162012-11-15 22:34:00 +00001596
Chris Lattner1afcace2011-07-09 17:41:24 +00001597 // If the type hasn't been defined yet, create a forward definition and
1598 // remember where that forward def'n was seen (in case it never is defined).
1599 if (Entry.first == 0) {
Chris Lattner3ebb6492011-08-12 18:06:37 +00001600 Entry.first = StructType::create(Context, Lex.getStrVal());
Chris Lattner1afcace2011-07-09 17:41:24 +00001601 Entry.second = Lex.getLoc();
Chris Lattnerdf986172009-01-02 07:01:27 +00001602 }
Chris Lattner1afcace2011-07-09 17:41:24 +00001603 Result = Entry.first;
Chris Lattnerdf986172009-01-02 07:01:27 +00001604 Lex.Lex();
1605 break;
Chris Lattner1afcace2011-07-09 17:41:24 +00001606 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001607
Chris Lattner1afcace2011-07-09 17:41:24 +00001608 case lltok::LocalVarID: {
1609 // Type ::= %4
1610 if (Lex.getUIntVal() >= NumberedTypes.size())
1611 NumberedTypes.resize(Lex.getUIntVal()+1);
1612 std::pair<Type*, LocTy> &Entry = NumberedTypes[Lex.getUIntVal()];
Michael Ilseman407a6162012-11-15 22:34:00 +00001613
Chris Lattner1afcace2011-07-09 17:41:24 +00001614 // If the type hasn't been defined yet, create a forward definition and
1615 // remember where that forward def'n was seen (in case it never is defined).
1616 if (Entry.first == 0) {
Chris Lattner3ebb6492011-08-12 18:06:37 +00001617 Entry.first = StructType::create(Context);
Chris Lattner1afcace2011-07-09 17:41:24 +00001618 Entry.second = Lex.getLoc();
Chris Lattnerdf986172009-01-02 07:01:27 +00001619 }
Chris Lattner1afcace2011-07-09 17:41:24 +00001620 Result = Entry.first;
Chris Lattnerdf986172009-01-02 07:01:27 +00001621 Lex.Lex();
1622 break;
Chris Lattnerdf986172009-01-02 07:01:27 +00001623 }
1624 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001625
1626 // Parse the type suffixes.
Chris Lattnerdf986172009-01-02 07:01:27 +00001627 while (1) {
1628 switch (Lex.getKind()) {
1629 // End of type.
Chris Lattner1afcace2011-07-09 17:41:24 +00001630 default:
1631 if (!AllowVoid && Result->isVoidTy())
1632 return Error(TypeLoc, "void type only allowed for function results");
1633 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00001634
Chris Lattner1afcace2011-07-09 17:41:24 +00001635 // Type ::= Type '*'
Chris Lattnerdf986172009-01-02 07:01:27 +00001636 case lltok::star:
Chris Lattner1afcace2011-07-09 17:41:24 +00001637 if (Result->isLabelTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00001638 return TokError("basic block pointers are invalid");
Chris Lattner1afcace2011-07-09 17:41:24 +00001639 if (Result->isVoidTy())
1640 return TokError("pointers to void are invalid - use i8* instead");
1641 if (!PointerType::isValidElementType(Result))
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001642 return TokError("pointer to this type is invalid");
Chris Lattner1afcace2011-07-09 17:41:24 +00001643 Result = PointerType::getUnqual(Result);
Chris Lattnerdf986172009-01-02 07:01:27 +00001644 Lex.Lex();
1645 break;
1646
Chris Lattner1afcace2011-07-09 17:41:24 +00001647 // Type ::= Type 'addrspace' '(' uint32 ')' '*'
Chris Lattnerdf986172009-01-02 07:01:27 +00001648 case lltok::kw_addrspace: {
Chris Lattner1afcace2011-07-09 17:41:24 +00001649 if (Result->isLabelTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00001650 return TokError("basic block pointers are invalid");
Chris Lattner1afcace2011-07-09 17:41:24 +00001651 if (Result->isVoidTy())
Dan Gohmanb9070d32009-02-09 17:41:21 +00001652 return TokError("pointers to void are invalid; use i8* instead");
Chris Lattner1afcace2011-07-09 17:41:24 +00001653 if (!PointerType::isValidElementType(Result))
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001654 return TokError("pointer to this type is invalid");
Chris Lattnerdf986172009-01-02 07:01:27 +00001655 unsigned AddrSpace;
1656 if (ParseOptionalAddrSpace(AddrSpace) ||
1657 ParseToken(lltok::star, "expected '*' in address space"))
1658 return true;
1659
Chris Lattner1afcace2011-07-09 17:41:24 +00001660 Result = PointerType::get(Result, AddrSpace);
Chris Lattnerdf986172009-01-02 07:01:27 +00001661 break;
1662 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001663
Chris Lattnerdf986172009-01-02 07:01:27 +00001664 /// Types '(' ArgTypeListI ')' OptFuncAttrs
1665 case lltok::lparen:
1666 if (ParseFunctionType(Result))
1667 return true;
1668 break;
1669 }
1670 }
1671}
1672
1673/// ParseParameterList
1674/// ::= '(' ')'
1675/// ::= '(' Arg (',' Arg)* ')'
1676/// Arg
1677/// ::= Type OptionalAttributes Value OptionalAttributes
1678bool LLParser::ParseParameterList(SmallVectorImpl<ParamInfo> &ArgList,
1679 PerFunctionState &PFS) {
1680 if (ParseToken(lltok::lparen, "expected '(' in call"))
1681 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001682
Bill Wendling73dee182013-01-31 00:29:54 +00001683 unsigned AttrIndex = 1;
Chris Lattnerdf986172009-01-02 07:01:27 +00001684 while (Lex.getKind() != lltok::rparen) {
1685 // If this isn't the first argument, we need a comma.
1686 if (!ArgList.empty() &&
1687 ParseToken(lltok::comma, "expected ',' in argument list"))
1688 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001689
Chris Lattnerdf986172009-01-02 07:01:27 +00001690 // Parse the argument.
1691 LocTy ArgLoc;
Chris Lattner1afcace2011-07-09 17:41:24 +00001692 Type *ArgTy = 0;
Bill Wendling702cc912012-10-15 20:35:56 +00001693 AttrBuilder ArgAttrs;
Chris Lattnerdf986172009-01-02 07:01:27 +00001694 Value *V;
Victor Hernandez19715562009-12-03 23:40:58 +00001695 if (ParseType(ArgTy, ArgLoc))
Chris Lattnerdf986172009-01-02 07:01:27 +00001696 return true;
Victor Hernandez19715562009-12-03 23:40:58 +00001697
Chris Lattner287881d2009-12-30 02:11:14 +00001698 // Otherwise, handle normal operands.
Bill Wendlinge01b81b2012-12-04 23:40:58 +00001699 if (ParseOptionalParamAttrs(ArgAttrs) || ParseValue(ArgTy, V, PFS))
Chris Lattner287881d2009-12-30 02:11:14 +00001700 return true;
Bill Wendling73dee182013-01-31 00:29:54 +00001701 ArgList.push_back(ParamInfo(ArgLoc, V, AttributeSet::get(V->getContext(),
1702 AttrIndex++,
1703 ArgAttrs)));
Chris Lattnerdf986172009-01-02 07:01:27 +00001704 }
1705
1706 Lex.Lex(); // Lex the ')'.
1707 return false;
1708}
1709
1710
1711
Chris Lattnerdfd19dd2009-01-05 18:34:07 +00001712/// ParseArgumentList - Parse the argument list for a function type or function
Chris Lattner1afcace2011-07-09 17:41:24 +00001713/// prototype.
Chris Lattnerdf986172009-01-02 07:01:27 +00001714/// ::= '(' ArgTypeListI ')'
1715/// ArgTypeListI
1716/// ::= /*empty*/
1717/// ::= '...'
1718/// ::= ArgTypeList ',' '...'
1719/// ::= ArgType (',' ArgType)*
Chris Lattnerdfd19dd2009-01-05 18:34:07 +00001720///
Chris Lattner1afcace2011-07-09 17:41:24 +00001721bool LLParser::ParseArgumentList(SmallVectorImpl<ArgInfo> &ArgList,
1722 bool &isVarArg){
Chris Lattnerdf986172009-01-02 07:01:27 +00001723 isVarArg = false;
1724 assert(Lex.getKind() == lltok::lparen);
1725 Lex.Lex(); // eat the (.
Daniel Dunbara279bc32009-09-20 02:20:51 +00001726
Chris Lattnerdf986172009-01-02 07:01:27 +00001727 if (Lex.getKind() == lltok::rparen) {
1728 // empty
1729 } else if (Lex.getKind() == lltok::dotdotdot) {
1730 isVarArg = true;
1731 Lex.Lex();
1732 } else {
1733 LocTy TypeLoc = Lex.getLoc();
Chris Lattner1afcace2011-07-09 17:41:24 +00001734 Type *ArgTy = 0;
Bill Wendling702cc912012-10-15 20:35:56 +00001735 AttrBuilder Attrs;
Chris Lattnerdf986172009-01-02 07:01:27 +00001736 std::string Name;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001737
Chris Lattner1afcace2011-07-09 17:41:24 +00001738 if (ParseType(ArgTy) ||
Bill Wendlinge01b81b2012-12-04 23:40:58 +00001739 ParseOptionalParamAttrs(Attrs)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001740
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001741 if (ArgTy->isVoidTy())
Chris Lattnera9a9e072009-03-09 04:49:14 +00001742 return Error(TypeLoc, "argument can not have void type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001743
Chris Lattner7a1b9bd2011-06-17 06:36:20 +00001744 if (Lex.getKind() == lltok::LocalVar) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001745 Name = Lex.getStrVal();
1746 Lex.Lex();
1747 }
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001748
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001749 if (!FunctionType::isValidArgumentType(ArgTy))
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001750 return Error(TypeLoc, "invalid type for function argument");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001751
Bill Wendling73dee182013-01-31 00:29:54 +00001752 unsigned AttrIndex = 1;
Bill Wendlingcb3de0b2012-10-15 04:46:55 +00001753 ArgList.push_back(ArgInfo(TypeLoc, ArgTy,
Bill Wendling73dee182013-01-31 00:29:54 +00001754 AttributeSet::get(ArgTy->getContext(),
1755 AttrIndex++, Attrs), Name));
Daniel Dunbara279bc32009-09-20 02:20:51 +00001756
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001757 while (EatIfPresent(lltok::comma)) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001758 // Handle ... at end of arg list.
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001759 if (EatIfPresent(lltok::dotdotdot)) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001760 isVarArg = true;
Chris Lattnerdf986172009-01-02 07:01:27 +00001761 break;
1762 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001763
Chris Lattnerdf986172009-01-02 07:01:27 +00001764 // Otherwise must be an argument type.
1765 TypeLoc = Lex.getLoc();
Bill Wendlinge01b81b2012-12-04 23:40:58 +00001766 if (ParseType(ArgTy) || ParseOptionalParamAttrs(Attrs)) return true;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001767
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001768 if (ArgTy->isVoidTy())
Chris Lattnera9a9e072009-03-09 04:49:14 +00001769 return Error(TypeLoc, "argument can not have void type");
1770
Chris Lattner7a1b9bd2011-06-17 06:36:20 +00001771 if (Lex.getKind() == lltok::LocalVar) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001772 Name = Lex.getStrVal();
1773 Lex.Lex();
1774 } else {
1775 Name = "";
1776 }
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001777
Chris Lattner1afcace2011-07-09 17:41:24 +00001778 if (!ArgTy->isFirstClassType())
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001779 return Error(TypeLoc, "invalid type for function argument");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001780
Bill Wendlingcb3de0b2012-10-15 04:46:55 +00001781 ArgList.push_back(ArgInfo(TypeLoc, ArgTy,
Bill Wendling73dee182013-01-31 00:29:54 +00001782 AttributeSet::get(ArgTy->getContext(),
1783 AttrIndex++, Attrs),
Bill Wendlingcb3de0b2012-10-15 04:46:55 +00001784 Name));
Chris Lattnerdf986172009-01-02 07:01:27 +00001785 }
1786 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001787
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001788 return ParseToken(lltok::rparen, "expected ')' at end of argument list");
Chris Lattnerdf986172009-01-02 07:01:27 +00001789}
Daniel Dunbara279bc32009-09-20 02:20:51 +00001790
Chris Lattnerdf986172009-01-02 07:01:27 +00001791/// ParseFunctionType
1792/// ::= Type ArgumentList OptionalAttrs
Chris Lattner1afcace2011-07-09 17:41:24 +00001793bool LLParser::ParseFunctionType(Type *&Result) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001794 assert(Lex.getKind() == lltok::lparen);
1795
Chris Lattnerd77d04c2009-01-05 08:04:33 +00001796 if (!FunctionType::isValidReturnType(Result))
1797 return TokError("invalid function return type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001798
Chris Lattner1afcace2011-07-09 17:41:24 +00001799 SmallVector<ArgInfo, 8> ArgList;
Chris Lattnerdf986172009-01-02 07:01:27 +00001800 bool isVarArg;
Chris Lattner1afcace2011-07-09 17:41:24 +00001801 if (ParseArgumentList(ArgList, isVarArg))
Chris Lattnerdf986172009-01-02 07:01:27 +00001802 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001803
Chris Lattnerdf986172009-01-02 07:01:27 +00001804 // Reject names on the arguments lists.
1805 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
1806 if (!ArgList[i].Name.empty())
1807 return Error(ArgList[i].Loc, "argument name invalid in function type");
Bill Wendling73dee182013-01-31 00:29:54 +00001808 if (ArgList[i].Attrs.hasAttributes(i + 1))
Chris Lattnera16546a2011-06-17 17:37:13 +00001809 return Error(ArgList[i].Loc,
1810 "argument attributes invalid in function type");
Chris Lattnerdf986172009-01-02 07:01:27 +00001811 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001812
Jay Foad5fdd6c82011-07-12 14:06:48 +00001813 SmallVector<Type*, 16> ArgListTy;
Chris Lattnerdf986172009-01-02 07:01:27 +00001814 for (unsigned i = 0, e = ArgList.size(); i != e; ++i)
Chris Lattner1afcace2011-07-09 17:41:24 +00001815 ArgListTy.push_back(ArgList[i].Ty);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001816
Chris Lattner1afcace2011-07-09 17:41:24 +00001817 Result = FunctionType::get(Result, ArgListTy, isVarArg);
Chris Lattnerdf986172009-01-02 07:01:27 +00001818 return false;
1819}
1820
Chris Lattner1afcace2011-07-09 17:41:24 +00001821/// ParseAnonStructType - Parse an anonymous struct type, which is inlined into
1822/// other structs.
1823bool LLParser::ParseAnonStructType(Type *&Result, bool Packed) {
1824 SmallVector<Type*, 8> Elts;
1825 if (ParseStructBody(Elts)) return true;
Michael Ilseman407a6162012-11-15 22:34:00 +00001826
Chris Lattner1afcace2011-07-09 17:41:24 +00001827 Result = StructType::get(Context, Elts, Packed);
1828 return false;
1829}
1830
1831/// ParseStructDefinition - Parse a struct in a 'type' definition.
1832bool LLParser::ParseStructDefinition(SMLoc TypeLoc, StringRef Name,
1833 std::pair<Type*, LocTy> &Entry,
1834 Type *&ResultTy) {
1835 // If the type was already defined, diagnose the redefinition.
1836 if (Entry.first && !Entry.second.isValid())
1837 return Error(TypeLoc, "redefinition of type");
Michael Ilseman407a6162012-11-15 22:34:00 +00001838
Chris Lattner1afcace2011-07-09 17:41:24 +00001839 // If we have opaque, just return without filling in the definition for the
1840 // struct. This counts as a definition as far as the .ll file goes.
1841 if (EatIfPresent(lltok::kw_opaque)) {
1842 // This type is being defined, so clear the location to indicate this.
1843 Entry.second = SMLoc();
Michael Ilseman407a6162012-11-15 22:34:00 +00001844
Chris Lattner1afcace2011-07-09 17:41:24 +00001845 // If this type number has never been uttered, create it.
1846 if (Entry.first == 0)
Chris Lattner3ebb6492011-08-12 18:06:37 +00001847 Entry.first = StructType::create(Context, Name);
Chris Lattner1afcace2011-07-09 17:41:24 +00001848 ResultTy = Entry.first;
1849 return false;
1850 }
Michael Ilseman407a6162012-11-15 22:34:00 +00001851
Chris Lattner1afcace2011-07-09 17:41:24 +00001852 // If the type starts with '<', then it is either a packed struct or a vector.
1853 bool isPacked = EatIfPresent(lltok::less);
1854
1855 // If we don't have a struct, then we have a random type alias, which we
1856 // accept for compatibility with old files. These types are not allowed to be
1857 // forward referenced and not allowed to be recursive.
1858 if (Lex.getKind() != lltok::lbrace) {
1859 if (Entry.first)
1860 return Error(TypeLoc, "forward references to non-struct type");
Michael Ilseman407a6162012-11-15 22:34:00 +00001861
Chris Lattner1afcace2011-07-09 17:41:24 +00001862 ResultTy = 0;
1863 if (isPacked)
1864 return ParseArrayVectorType(ResultTy, true);
1865 return ParseType(ResultTy);
1866 }
Michael Ilseman407a6162012-11-15 22:34:00 +00001867
Chris Lattner1afcace2011-07-09 17:41:24 +00001868 // This type is being defined, so clear the location to indicate this.
1869 Entry.second = SMLoc();
Michael Ilseman407a6162012-11-15 22:34:00 +00001870
Chris Lattner1afcace2011-07-09 17:41:24 +00001871 // If this type number has never been uttered, create it.
1872 if (Entry.first == 0)
Chris Lattner3ebb6492011-08-12 18:06:37 +00001873 Entry.first = StructType::create(Context, Name);
Michael Ilseman407a6162012-11-15 22:34:00 +00001874
Chris Lattner1afcace2011-07-09 17:41:24 +00001875 StructType *STy = cast<StructType>(Entry.first);
Michael Ilseman407a6162012-11-15 22:34:00 +00001876
Chris Lattner1afcace2011-07-09 17:41:24 +00001877 SmallVector<Type*, 8> Body;
1878 if (ParseStructBody(Body) ||
1879 (isPacked && ParseToken(lltok::greater, "expected '>' in packed struct")))
1880 return true;
Michael Ilseman407a6162012-11-15 22:34:00 +00001881
Chris Lattner1afcace2011-07-09 17:41:24 +00001882 STy->setBody(Body, isPacked);
1883 ResultTy = STy;
1884 return false;
1885}
1886
1887
Chris Lattnerdf986172009-01-02 07:01:27 +00001888/// ParseStructType: Handles packed and unpacked types. </> parsed elsewhere.
Chris Lattner1afcace2011-07-09 17:41:24 +00001889/// StructType
Chris Lattnerdf986172009-01-02 07:01:27 +00001890/// ::= '{' '}'
Chris Lattner1afcace2011-07-09 17:41:24 +00001891/// ::= '{' Type (',' Type)* '}'
Chris Lattnerdf986172009-01-02 07:01:27 +00001892/// ::= '<' '{' '}' '>'
Chris Lattner1afcace2011-07-09 17:41:24 +00001893/// ::= '<' '{' Type (',' Type)* '}' '>'
1894bool LLParser::ParseStructBody(SmallVectorImpl<Type*> &Body) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001895 assert(Lex.getKind() == lltok::lbrace);
1896 Lex.Lex(); // Consume the '{'
Daniel Dunbara279bc32009-09-20 02:20:51 +00001897
Chris Lattner1afcace2011-07-09 17:41:24 +00001898 // Handle the empty struct.
1899 if (EatIfPresent(lltok::rbrace))
Chris Lattnerdf986172009-01-02 07:01:27 +00001900 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00001901
Chris Lattnera9a9e072009-03-09 04:49:14 +00001902 LocTy EltTyLoc = Lex.getLoc();
Chris Lattner1afcace2011-07-09 17:41:24 +00001903 Type *Ty = 0;
1904 if (ParseType(Ty)) return true;
1905 Body.push_back(Ty);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001906
Chris Lattner1afcace2011-07-09 17:41:24 +00001907 if (!StructType::isValidElementType(Ty))
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001908 return Error(EltTyLoc, "invalid element type for struct");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001909
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001910 while (EatIfPresent(lltok::comma)) {
Chris Lattnera9a9e072009-03-09 04:49:14 +00001911 EltTyLoc = Lex.getLoc();
Chris Lattner1afcace2011-07-09 17:41:24 +00001912 if (ParseType(Ty)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001913
Chris Lattner1afcace2011-07-09 17:41:24 +00001914 if (!StructType::isValidElementType(Ty))
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001915 return Error(EltTyLoc, "invalid element type for struct");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001916
Chris Lattner1afcace2011-07-09 17:41:24 +00001917 Body.push_back(Ty);
Chris Lattnerdf986172009-01-02 07:01:27 +00001918 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001919
Chris Lattner1afcace2011-07-09 17:41:24 +00001920 return ParseToken(lltok::rbrace, "expected '}' at end of struct");
Chris Lattnerdf986172009-01-02 07:01:27 +00001921}
1922
1923/// ParseArrayVectorType - Parse an array or vector type, assuming the first
1924/// token has already been consumed.
Chris Lattner1afcace2011-07-09 17:41:24 +00001925/// Type
Chris Lattnerdf986172009-01-02 07:01:27 +00001926/// ::= '[' APSINTVAL 'x' Types ']'
1927/// ::= '<' APSINTVAL 'x' Types '>'
Chris Lattner1afcace2011-07-09 17:41:24 +00001928bool LLParser::ParseArrayVectorType(Type *&Result, bool isVector) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001929 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned() ||
1930 Lex.getAPSIntVal().getBitWidth() > 64)
1931 return TokError("expected number in address space");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001932
Chris Lattnerdf986172009-01-02 07:01:27 +00001933 LocTy SizeLoc = Lex.getLoc();
1934 uint64_t Size = Lex.getAPSIntVal().getZExtValue();
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001935 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +00001936
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001937 if (ParseToken(lltok::kw_x, "expected 'x' after element count"))
1938 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00001939
1940 LocTy TypeLoc = Lex.getLoc();
Chris Lattner1afcace2011-07-09 17:41:24 +00001941 Type *EltTy = 0;
1942 if (ParseType(EltTy)) return true;
Chris Lattnera9a9e072009-03-09 04:49:14 +00001943
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001944 if (ParseToken(isVector ? lltok::greater : lltok::rsquare,
1945 "expected end of sequential type"))
1946 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001947
Chris Lattnerdf986172009-01-02 07:01:27 +00001948 if (isVector) {
Chris Lattner452e2622009-02-28 18:12:41 +00001949 if (Size == 0)
1950 return Error(SizeLoc, "zero element vector is illegal");
Chris Lattnerdf986172009-01-02 07:01:27 +00001951 if ((unsigned)Size != Size)
1952 return Error(SizeLoc, "size too large for vector");
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001953 if (!VectorType::isValidElementType(EltTy))
Duncan Sands2333e292012-11-13 12:59:33 +00001954 return Error(TypeLoc, "invalid vector element type");
Owen Andersondebcb012009-07-29 22:17:13 +00001955 Result = VectorType::get(EltTy, unsigned(Size));
Chris Lattnerdf986172009-01-02 07:01:27 +00001956 } else {
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001957 if (!ArrayType::isValidElementType(EltTy))
Chris Lattnerdf986172009-01-02 07:01:27 +00001958 return Error(TypeLoc, "invalid array element type");
Chris Lattner1afcace2011-07-09 17:41:24 +00001959 Result = ArrayType::get(EltTy, Size);
Chris Lattnerdf986172009-01-02 07:01:27 +00001960 }
1961 return false;
1962}
1963
1964//===----------------------------------------------------------------------===//
1965// Function Semantic Analysis.
1966//===----------------------------------------------------------------------===//
1967
Chris Lattner09d9ef42009-10-28 03:39:23 +00001968LLParser::PerFunctionState::PerFunctionState(LLParser &p, Function &f,
1969 int functionNumber)
1970 : P(p), F(f), FunctionNumber(functionNumber) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001971
1972 // Insert unnamed arguments into the NumberedVals list.
1973 for (Function::arg_iterator AI = F.arg_begin(), E = F.arg_end();
1974 AI != E; ++AI)
1975 if (!AI->hasName())
1976 NumberedVals.push_back(AI);
1977}
1978
1979LLParser::PerFunctionState::~PerFunctionState() {
1980 // If there were any forward referenced non-basicblock values, delete them.
1981 for (std::map<std::string, std::pair<Value*, LocTy> >::iterator
1982 I = ForwardRefVals.begin(), E = ForwardRefVals.end(); I != E; ++I)
1983 if (!isa<BasicBlock>(I->second.first)) {
Owen Andersonb43eae72009-07-02 17:04:01 +00001984 I->second.first->replaceAllUsesWith(
Owen Anderson9e9a0d52009-07-30 23:03:37 +00001985 UndefValue::get(I->second.first->getType()));
Chris Lattnerdf986172009-01-02 07:01:27 +00001986 delete I->second.first;
1987 I->second.first = 0;
1988 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001989
Chris Lattnerdf986172009-01-02 07:01:27 +00001990 for (std::map<unsigned, std::pair<Value*, LocTy> >::iterator
1991 I = ForwardRefValIDs.begin(), E = ForwardRefValIDs.end(); I != E; ++I)
1992 if (!isa<BasicBlock>(I->second.first)) {
Owen Andersonb43eae72009-07-02 17:04:01 +00001993 I->second.first->replaceAllUsesWith(
Owen Anderson9e9a0d52009-07-30 23:03:37 +00001994 UndefValue::get(I->second.first->getType()));
Chris Lattnerdf986172009-01-02 07:01:27 +00001995 delete I->second.first;
1996 I->second.first = 0;
1997 }
1998}
1999
Chris Lattner09d9ef42009-10-28 03:39:23 +00002000bool LLParser::PerFunctionState::FinishFunction() {
2001 // Check to see if someone took the address of labels in this block.
2002 if (!P.ForwardRefBlockAddresses.empty()) {
2003 ValID FunctionID;
2004 if (!F.getName().empty()) {
2005 FunctionID.Kind = ValID::t_GlobalName;
2006 FunctionID.StrVal = F.getName();
2007 } else {
2008 FunctionID.Kind = ValID::t_GlobalID;
2009 FunctionID.UIntVal = FunctionNumber;
2010 }
Michael Ilseman407a6162012-11-15 22:34:00 +00002011
Chris Lattner09d9ef42009-10-28 03:39:23 +00002012 std::map<ValID, std::vector<std::pair<ValID, GlobalValue*> > >::iterator
2013 FRBAI = P.ForwardRefBlockAddresses.find(FunctionID);
2014 if (FRBAI != P.ForwardRefBlockAddresses.end()) {
2015 // Resolve all these references.
2016 if (P.ResolveForwardRefBlockAddresses(&F, FRBAI->second, this))
2017 return true;
Michael Ilseman407a6162012-11-15 22:34:00 +00002018
Chris Lattner09d9ef42009-10-28 03:39:23 +00002019 P.ForwardRefBlockAddresses.erase(FRBAI);
2020 }
2021 }
Michael Ilseman407a6162012-11-15 22:34:00 +00002022
Chris Lattnerdf986172009-01-02 07:01:27 +00002023 if (!ForwardRefVals.empty())
2024 return P.Error(ForwardRefVals.begin()->second.second,
2025 "use of undefined value '%" + ForwardRefVals.begin()->first +
2026 "'");
2027 if (!ForwardRefValIDs.empty())
2028 return P.Error(ForwardRefValIDs.begin()->second.second,
2029 "use of undefined value '%" +
Benjamin Kramerd1e17032010-09-27 17:42:11 +00002030 Twine(ForwardRefValIDs.begin()->first) + "'");
Chris Lattnerdf986172009-01-02 07:01:27 +00002031 return false;
2032}
2033
2034
2035/// GetVal - Get a value with the specified name or ID, creating a
2036/// forward reference record if needed. This can return null if the value
2037/// exists but does not have the right type.
2038Value *LLParser::PerFunctionState::GetVal(const std::string &Name,
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002039 Type *Ty, LocTy Loc) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002040 // Look this name up in the normal function symbol table.
2041 Value *Val = F.getValueSymbolTable().lookup(Name);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002042
Chris Lattnerdf986172009-01-02 07:01:27 +00002043 // If this is a forward reference for the value, see if we already created a
2044 // forward ref record.
2045 if (Val == 0) {
2046 std::map<std::string, std::pair<Value*, LocTy> >::iterator
2047 I = ForwardRefVals.find(Name);
2048 if (I != ForwardRefVals.end())
2049 Val = I->second.first;
2050 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002051
Chris Lattnerdf986172009-01-02 07:01:27 +00002052 // If we have the value in the symbol table or fwd-ref table, return it.
2053 if (Val) {
2054 if (Val->getType() == Ty) return Val;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00002055 if (Ty->isLabelTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002056 P.Error(Loc, "'%" + Name + "' is not a basic block");
2057 else
2058 P.Error(Loc, "'%" + Name + "' defined with type '" +
Chris Lattner0cd0d882011-06-18 21:18:23 +00002059 getTypeString(Val->getType()) + "'");
Chris Lattnerdf986172009-01-02 07:01:27 +00002060 return 0;
2061 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002062
Chris Lattnerdf986172009-01-02 07:01:27 +00002063 // Don't make placeholders with invalid type.
Chris Lattner1afcace2011-07-09 17:41:24 +00002064 if (!Ty->isFirstClassType() && !Ty->isLabelTy()) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002065 P.Error(Loc, "invalid use of a non-first-class type");
2066 return 0;
2067 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002068
Chris Lattnerdf986172009-01-02 07:01:27 +00002069 // Otherwise, create a new forward reference for this value and remember it.
2070 Value *FwdVal;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00002071 if (Ty->isLabelTy())
Owen Anderson1d0be152009-08-13 21:58:54 +00002072 FwdVal = BasicBlock::Create(F.getContext(), Name, &F);
Chris Lattnerdf986172009-01-02 07:01:27 +00002073 else
2074 FwdVal = new Argument(Ty, Name);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002075
Chris Lattnerdf986172009-01-02 07:01:27 +00002076 ForwardRefVals[Name] = std::make_pair(FwdVal, Loc);
2077 return FwdVal;
2078}
2079
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002080Value *LLParser::PerFunctionState::GetVal(unsigned ID, Type *Ty,
Chris Lattnerdf986172009-01-02 07:01:27 +00002081 LocTy Loc) {
2082 // Look this name up in the normal function symbol table.
2083 Value *Val = ID < NumberedVals.size() ? NumberedVals[ID] : 0;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002084
Chris Lattnerdf986172009-01-02 07:01:27 +00002085 // If this is a forward reference for the value, see if we already created a
2086 // forward ref record.
2087 if (Val == 0) {
2088 std::map<unsigned, std::pair<Value*, LocTy> >::iterator
2089 I = ForwardRefValIDs.find(ID);
2090 if (I != ForwardRefValIDs.end())
2091 Val = I->second.first;
2092 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002093
Chris Lattnerdf986172009-01-02 07:01:27 +00002094 // If we have the value in the symbol table or fwd-ref table, return it.
2095 if (Val) {
2096 if (Val->getType() == Ty) return Val;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00002097 if (Ty->isLabelTy())
Benjamin Kramerd1e17032010-09-27 17:42:11 +00002098 P.Error(Loc, "'%" + Twine(ID) + "' is not a basic block");
Chris Lattnerdf986172009-01-02 07:01:27 +00002099 else
Benjamin Kramerd1e17032010-09-27 17:42:11 +00002100 P.Error(Loc, "'%" + Twine(ID) + "' defined with type '" +
Chris Lattner0cd0d882011-06-18 21:18:23 +00002101 getTypeString(Val->getType()) + "'");
Chris Lattnerdf986172009-01-02 07:01:27 +00002102 return 0;
2103 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002104
Chris Lattner1afcace2011-07-09 17:41:24 +00002105 if (!Ty->isFirstClassType() && !Ty->isLabelTy()) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002106 P.Error(Loc, "invalid use of a non-first-class type");
2107 return 0;
2108 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002109
Chris Lattnerdf986172009-01-02 07:01:27 +00002110 // Otherwise, create a new forward reference for this value and remember it.
2111 Value *FwdVal;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00002112 if (Ty->isLabelTy())
Owen Anderson1d0be152009-08-13 21:58:54 +00002113 FwdVal = BasicBlock::Create(F.getContext(), "", &F);
Chris Lattnerdf986172009-01-02 07:01:27 +00002114 else
2115 FwdVal = new Argument(Ty);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002116
Chris Lattnerdf986172009-01-02 07:01:27 +00002117 ForwardRefValIDs[ID] = std::make_pair(FwdVal, Loc);
2118 return FwdVal;
2119}
2120
2121/// SetInstName - After an instruction is parsed and inserted into its
2122/// basic block, this installs its name.
2123bool LLParser::PerFunctionState::SetInstName(int NameID,
2124 const std::string &NameStr,
2125 LocTy NameLoc, Instruction *Inst) {
2126 // If this instruction has void type, it cannot have a name or ID specified.
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00002127 if (Inst->getType()->isVoidTy()) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002128 if (NameID != -1 || !NameStr.empty())
2129 return P.Error(NameLoc, "instructions returning void cannot have a name");
2130 return false;
2131 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002132
Chris Lattnerdf986172009-01-02 07:01:27 +00002133 // If this was a numbered instruction, verify that the instruction is the
2134 // expected value and resolve any forward references.
2135 if (NameStr.empty()) {
2136 // If neither a name nor an ID was specified, just use the next ID.
2137 if (NameID == -1)
2138 NameID = NumberedVals.size();
Daniel Dunbara279bc32009-09-20 02:20:51 +00002139
Chris Lattnerdf986172009-01-02 07:01:27 +00002140 if (unsigned(NameID) != NumberedVals.size())
2141 return P.Error(NameLoc, "instruction expected to be numbered '%" +
Benjamin Kramerd1e17032010-09-27 17:42:11 +00002142 Twine(NumberedVals.size()) + "'");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002143
Chris Lattnerdf986172009-01-02 07:01:27 +00002144 std::map<unsigned, std::pair<Value*, LocTy> >::iterator FI =
2145 ForwardRefValIDs.find(NameID);
2146 if (FI != ForwardRefValIDs.end()) {
2147 if (FI->second.first->getType() != Inst->getType())
Daniel Dunbara279bc32009-09-20 02:20:51 +00002148 return P.Error(NameLoc, "instruction forward referenced with type '" +
Chris Lattner0cd0d882011-06-18 21:18:23 +00002149 getTypeString(FI->second.first->getType()) + "'");
Chris Lattnerdf986172009-01-02 07:01:27 +00002150 FI->second.first->replaceAllUsesWith(Inst);
Nuno Lopes2b4f28e2009-09-02 15:02:57 +00002151 delete FI->second.first;
Chris Lattnerdf986172009-01-02 07:01:27 +00002152 ForwardRefValIDs.erase(FI);
2153 }
2154
2155 NumberedVals.push_back(Inst);
2156 return false;
2157 }
2158
2159 // Otherwise, the instruction had a name. Resolve forward refs and set it.
2160 std::map<std::string, std::pair<Value*, LocTy> >::iterator
2161 FI = ForwardRefVals.find(NameStr);
2162 if (FI != ForwardRefVals.end()) {
2163 if (FI->second.first->getType() != Inst->getType())
Daniel Dunbara279bc32009-09-20 02:20:51 +00002164 return P.Error(NameLoc, "instruction forward referenced with type '" +
Chris Lattner0cd0d882011-06-18 21:18:23 +00002165 getTypeString(FI->second.first->getType()) + "'");
Chris Lattnerdf986172009-01-02 07:01:27 +00002166 FI->second.first->replaceAllUsesWith(Inst);
Nuno Lopes531552a2009-09-02 14:22:03 +00002167 delete FI->second.first;
Chris Lattnerdf986172009-01-02 07:01:27 +00002168 ForwardRefVals.erase(FI);
2169 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002170
Chris Lattnerdf986172009-01-02 07:01:27 +00002171 // Set the name on the instruction.
2172 Inst->setName(NameStr);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002173
Benjamin Krameraf812352010-10-16 11:28:23 +00002174 if (Inst->getName() != NameStr)
Daniel Dunbara279bc32009-09-20 02:20:51 +00002175 return P.Error(NameLoc, "multiple definition of local value named '" +
Chris Lattnerdf986172009-01-02 07:01:27 +00002176 NameStr + "'");
2177 return false;
2178}
2179
2180/// GetBB - Get a basic block with the specified name or ID, creating a
2181/// forward reference record if needed.
2182BasicBlock *LLParser::PerFunctionState::GetBB(const std::string &Name,
2183 LocTy Loc) {
Owen Anderson1d0be152009-08-13 21:58:54 +00002184 return cast_or_null<BasicBlock>(GetVal(Name,
2185 Type::getLabelTy(F.getContext()), Loc));
Chris Lattnerdf986172009-01-02 07:01:27 +00002186}
2187
2188BasicBlock *LLParser::PerFunctionState::GetBB(unsigned ID, LocTy Loc) {
Owen Anderson1d0be152009-08-13 21:58:54 +00002189 return cast_or_null<BasicBlock>(GetVal(ID,
2190 Type::getLabelTy(F.getContext()), Loc));
Chris Lattnerdf986172009-01-02 07:01:27 +00002191}
2192
2193/// DefineBB - Define the specified basic block, which is either named or
2194/// unnamed. If there is an error, this returns null otherwise it returns
2195/// the block being defined.
2196BasicBlock *LLParser::PerFunctionState::DefineBB(const std::string &Name,
2197 LocTy Loc) {
2198 BasicBlock *BB;
2199 if (Name.empty())
2200 BB = GetBB(NumberedVals.size(), Loc);
2201 else
2202 BB = GetBB(Name, Loc);
2203 if (BB == 0) return 0; // Already diagnosed error.
Daniel Dunbara279bc32009-09-20 02:20:51 +00002204
Chris Lattnerdf986172009-01-02 07:01:27 +00002205 // Move the block to the end of the function. Forward ref'd blocks are
2206 // inserted wherever they happen to be referenced.
2207 F.getBasicBlockList().splice(F.end(), F.getBasicBlockList(), BB);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002208
Chris Lattnerdf986172009-01-02 07:01:27 +00002209 // Remove the block from forward ref sets.
2210 if (Name.empty()) {
2211 ForwardRefValIDs.erase(NumberedVals.size());
2212 NumberedVals.push_back(BB);
2213 } else {
2214 // BB forward references are already in the function symbol table.
2215 ForwardRefVals.erase(Name);
2216 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002217
Chris Lattnerdf986172009-01-02 07:01:27 +00002218 return BB;
2219}
2220
2221//===----------------------------------------------------------------------===//
2222// Constants.
2223//===----------------------------------------------------------------------===//
2224
2225/// ParseValID - Parse an abstract value that doesn't necessarily have a
2226/// type implied. For example, if we parse "4" we don't know what integer type
2227/// it has. The value will later be combined with its type and checked for
Victor Hernandez24e64df2010-01-10 07:14:18 +00002228/// sanity. PFS is used to convert function-local operands of metadata (since
2229/// metadata operands are not just parsed here but also converted to values).
2230/// PFS can be null when we are not parsing metadata values inside a function.
Victor Hernandezbf170d42010-01-05 22:22:14 +00002231bool LLParser::ParseValID(ValID &ID, PerFunctionState *PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002232 ID.Loc = Lex.getLoc();
2233 switch (Lex.getKind()) {
2234 default: return TokError("expected value token");
2235 case lltok::GlobalID: // @42
2236 ID.UIntVal = Lex.getUIntVal();
2237 ID.Kind = ValID::t_GlobalID;
2238 break;
2239 case lltok::GlobalVar: // @foo
2240 ID.StrVal = Lex.getStrVal();
2241 ID.Kind = ValID::t_GlobalName;
2242 break;
2243 case lltok::LocalVarID: // %42
2244 ID.UIntVal = Lex.getUIntVal();
2245 ID.Kind = ValID::t_LocalID;
2246 break;
2247 case lltok::LocalVar: // %foo
Chris Lattnerdf986172009-01-02 07:01:27 +00002248 ID.StrVal = Lex.getStrVal();
2249 ID.Kind = ValID::t_LocalName;
2250 break;
Dan Gohman83448032010-07-14 18:26:50 +00002251 case lltok::exclaim: // !42, !{...}, or !"foo"
2252 return ParseMetadataValue(ID, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00002253 case lltok::APSInt:
Daniel Dunbara279bc32009-09-20 02:20:51 +00002254 ID.APSIntVal = Lex.getAPSIntVal();
Chris Lattnerdf986172009-01-02 07:01:27 +00002255 ID.Kind = ValID::t_APSInt;
2256 break;
2257 case lltok::APFloat:
2258 ID.APFloatVal = Lex.getAPFloatVal();
2259 ID.Kind = ValID::t_APFloat;
2260 break;
2261 case lltok::kw_true:
Owen Anderson5defacc2009-07-31 17:39:07 +00002262 ID.ConstantVal = ConstantInt::getTrue(Context);
Chris Lattnerdf986172009-01-02 07:01:27 +00002263 ID.Kind = ValID::t_Constant;
2264 break;
2265 case lltok::kw_false:
Owen Anderson5defacc2009-07-31 17:39:07 +00002266 ID.ConstantVal = ConstantInt::getFalse(Context);
Chris Lattnerdf986172009-01-02 07:01:27 +00002267 ID.Kind = ValID::t_Constant;
2268 break;
2269 case lltok::kw_null: ID.Kind = ValID::t_Null; break;
2270 case lltok::kw_undef: ID.Kind = ValID::t_Undef; break;
2271 case lltok::kw_zeroinitializer: ID.Kind = ValID::t_Zero; break;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002272
Chris Lattnerdf986172009-01-02 07:01:27 +00002273 case lltok::lbrace: {
2274 // ValID ::= '{' ConstVector '}'
2275 Lex.Lex();
2276 SmallVector<Constant*, 16> Elts;
2277 if (ParseGlobalValueVector(Elts) ||
2278 ParseToken(lltok::rbrace, "expected end of struct constant"))
2279 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002280
Chris Lattner1afcace2011-07-09 17:41:24 +00002281 ID.ConstantStructElts = new Constant*[Elts.size()];
2282 ID.UIntVal = Elts.size();
2283 memcpy(ID.ConstantStructElts, Elts.data(), Elts.size()*sizeof(Elts[0]));
2284 ID.Kind = ValID::t_ConstantStruct;
Chris Lattnerdf986172009-01-02 07:01:27 +00002285 return false;
2286 }
2287 case lltok::less: {
2288 // ValID ::= '<' ConstVector '>' --> Vector.
2289 // ValID ::= '<' '{' ConstVector '}' '>' --> Packed Struct.
2290 Lex.Lex();
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002291 bool isPackedStruct = EatIfPresent(lltok::lbrace);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002292
Chris Lattnerdf986172009-01-02 07:01:27 +00002293 SmallVector<Constant*, 16> Elts;
2294 LocTy FirstEltLoc = Lex.getLoc();
2295 if (ParseGlobalValueVector(Elts) ||
2296 (isPackedStruct &&
2297 ParseToken(lltok::rbrace, "expected end of packed struct")) ||
2298 ParseToken(lltok::greater, "expected end of constant"))
2299 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002300
Chris Lattnerdf986172009-01-02 07:01:27 +00002301 if (isPackedStruct) {
Chris Lattner1afcace2011-07-09 17:41:24 +00002302 ID.ConstantStructElts = new Constant*[Elts.size()];
2303 memcpy(ID.ConstantStructElts, Elts.data(), Elts.size()*sizeof(Elts[0]));
2304 ID.UIntVal = Elts.size();
2305 ID.Kind = ValID::t_PackedConstantStruct;
Chris Lattnerdf986172009-01-02 07:01:27 +00002306 return false;
2307 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002308
Chris Lattnerdf986172009-01-02 07:01:27 +00002309 if (Elts.empty())
2310 return Error(ID.Loc, "constant vector must not be empty");
2311
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00002312 if (!Elts[0]->getType()->isIntegerTy() &&
Nadav Rotem16087692011-12-05 06:29:09 +00002313 !Elts[0]->getType()->isFloatingPointTy() &&
2314 !Elts[0]->getType()->isPointerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002315 return Error(FirstEltLoc,
Nadav Rotem16087692011-12-05 06:29:09 +00002316 "vector elements must have integer, pointer or floating point type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002317
Chris Lattnerdf986172009-01-02 07:01:27 +00002318 // Verify that all the vector elements have the same type.
2319 for (unsigned i = 1, e = Elts.size(); i != e; ++i)
2320 if (Elts[i]->getType() != Elts[0]->getType())
2321 return Error(FirstEltLoc,
Benjamin Kramerd1e17032010-09-27 17:42:11 +00002322 "vector element #" + Twine(i) +
Chris Lattner0cd0d882011-06-18 21:18:23 +00002323 " is not of type '" + getTypeString(Elts[0]->getType()));
Daniel Dunbara279bc32009-09-20 02:20:51 +00002324
Chris Lattner2ca5c862011-02-15 00:14:00 +00002325 ID.ConstantVal = ConstantVector::get(Elts);
Chris Lattnerdf986172009-01-02 07:01:27 +00002326 ID.Kind = ValID::t_Constant;
2327 return false;
2328 }
2329 case lltok::lsquare: { // Array Constant
2330 Lex.Lex();
2331 SmallVector<Constant*, 16> Elts;
2332 LocTy FirstEltLoc = Lex.getLoc();
2333 if (ParseGlobalValueVector(Elts) ||
2334 ParseToken(lltok::rsquare, "expected end of array constant"))
2335 return true;
2336
2337 // Handle empty element.
2338 if (Elts.empty()) {
2339 // Use undef instead of an array because it's inconvenient to determine
2340 // the element type at this point, there being no elements to examine.
Chris Lattner081b5052009-01-05 07:52:51 +00002341 ID.Kind = ValID::t_EmptyArray;
Chris Lattnerdf986172009-01-02 07:01:27 +00002342 return false;
2343 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002344
Chris Lattnerdf986172009-01-02 07:01:27 +00002345 if (!Elts[0]->getType()->isFirstClassType())
Daniel Dunbara279bc32009-09-20 02:20:51 +00002346 return Error(FirstEltLoc, "invalid array element type: " +
Chris Lattner0cd0d882011-06-18 21:18:23 +00002347 getTypeString(Elts[0]->getType()));
Daniel Dunbara279bc32009-09-20 02:20:51 +00002348
Owen Andersondebcb012009-07-29 22:17:13 +00002349 ArrayType *ATy = ArrayType::get(Elts[0]->getType(), Elts.size());
Daniel Dunbara279bc32009-09-20 02:20:51 +00002350
Chris Lattnerdf986172009-01-02 07:01:27 +00002351 // Verify all elements are correct type!
Chris Lattner6d6b3cc2009-01-02 08:49:06 +00002352 for (unsigned i = 0, e = Elts.size(); i != e; ++i) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002353 if (Elts[i]->getType() != Elts[0]->getType())
2354 return Error(FirstEltLoc,
Benjamin Kramerd1e17032010-09-27 17:42:11 +00002355 "array element #" + Twine(i) +
Chris Lattner0cd0d882011-06-18 21:18:23 +00002356 " is not of type '" + getTypeString(Elts[0]->getType()));
Chris Lattnerdf986172009-01-02 07:01:27 +00002357 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002358
Jay Foad26701082011-06-22 09:24:39 +00002359 ID.ConstantVal = ConstantArray::get(ATy, Elts);
Chris Lattnerdf986172009-01-02 07:01:27 +00002360 ID.Kind = ValID::t_Constant;
2361 return false;
2362 }
2363 case lltok::kw_c: // c "foo"
2364 Lex.Lex();
Chris Lattner18c7f802012-02-05 02:29:43 +00002365 ID.ConstantVal = ConstantDataArray::getString(Context, Lex.getStrVal(),
2366 false);
Chris Lattnerdf986172009-01-02 07:01:27 +00002367 if (ParseToken(lltok::StringConstant, "expected string")) return true;
2368 ID.Kind = ValID::t_Constant;
2369 return false;
2370
2371 case lltok::kw_asm: {
Chad Rosier27d844f2013-02-14 20:44:07 +00002372 // ValID ::= 'asm' SideEffect? AlignStack? IntelDialect? STRINGCONSTANT ','
2373 // STRINGCONSTANT
Chad Rosier581600b2012-09-05 19:00:49 +00002374 bool HasSideEffect, AlignStack, AsmDialect;
Chris Lattnerdf986172009-01-02 07:01:27 +00002375 Lex.Lex();
2376 if (ParseOptionalToken(lltok::kw_sideeffect, HasSideEffect) ||
Dale Johannesen8ba2d5b2009-10-21 23:28:00 +00002377 ParseOptionalToken(lltok::kw_alignstack, AlignStack) ||
Chad Rosier581600b2012-09-05 19:00:49 +00002378 ParseOptionalToken(lltok::kw_inteldialect, AsmDialect) ||
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002379 ParseStringConstant(ID.StrVal) ||
2380 ParseToken(lltok::comma, "expected comma in inline asm expression") ||
Chris Lattnerdf986172009-01-02 07:01:27 +00002381 ParseToken(lltok::StringConstant, "expected constraint string"))
2382 return true;
2383 ID.StrVal2 = Lex.getStrVal();
Chad Rosier36547342012-09-05 00:08:17 +00002384 ID.UIntVal = unsigned(HasSideEffect) | (unsigned(AlignStack)<<1) |
Chad Rosier581600b2012-09-05 19:00:49 +00002385 (unsigned(AsmDialect)<<2);
Chris Lattnerdf986172009-01-02 07:01:27 +00002386 ID.Kind = ValID::t_InlineAsm;
2387 return false;
2388 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002389
Chris Lattner09d9ef42009-10-28 03:39:23 +00002390 case lltok::kw_blockaddress: {
2391 // ValID ::= 'blockaddress' '(' @foo ',' %bar ')'
2392 Lex.Lex();
2393
2394 ValID Fn, Label;
Michael Ilseman407a6162012-11-15 22:34:00 +00002395
Chris Lattner09d9ef42009-10-28 03:39:23 +00002396 if (ParseToken(lltok::lparen, "expected '(' in block address expression") ||
2397 ParseValID(Fn) ||
2398 ParseToken(lltok::comma, "expected comma in block address expression")||
2399 ParseValID(Label) ||
2400 ParseToken(lltok::rparen, "expected ')' in block address expression"))
2401 return true;
Michael Ilseman407a6162012-11-15 22:34:00 +00002402
Chris Lattner09d9ef42009-10-28 03:39:23 +00002403 if (Fn.Kind != ValID::t_GlobalID && Fn.Kind != ValID::t_GlobalName)
2404 return Error(Fn.Loc, "expected function name in blockaddress");
Chris Lattnercdfc9402009-11-01 01:27:45 +00002405 if (Label.Kind != ValID::t_LocalID && Label.Kind != ValID::t_LocalName)
Chris Lattner09d9ef42009-10-28 03:39:23 +00002406 return Error(Label.Loc, "expected basic block name in blockaddress");
Michael Ilseman407a6162012-11-15 22:34:00 +00002407
Chris Lattner09d9ef42009-10-28 03:39:23 +00002408 // Make a global variable as a placeholder for this reference.
2409 GlobalVariable *FwdRef = new GlobalVariable(*M, Type::getInt8Ty(Context),
2410 false, GlobalValue::InternalLinkage,
2411 0, "");
2412 ForwardRefBlockAddresses[Fn].push_back(std::make_pair(Label, FwdRef));
2413 ID.ConstantVal = FwdRef;
2414 ID.Kind = ValID::t_Constant;
2415 return false;
2416 }
Michael Ilseman407a6162012-11-15 22:34:00 +00002417
Chris Lattnerdf986172009-01-02 07:01:27 +00002418 case lltok::kw_trunc:
2419 case lltok::kw_zext:
2420 case lltok::kw_sext:
2421 case lltok::kw_fptrunc:
2422 case lltok::kw_fpext:
2423 case lltok::kw_bitcast:
2424 case lltok::kw_uitofp:
2425 case lltok::kw_sitofp:
2426 case lltok::kw_fptoui:
Daniel Dunbara279bc32009-09-20 02:20:51 +00002427 case lltok::kw_fptosi:
Chris Lattnerdf986172009-01-02 07:01:27 +00002428 case lltok::kw_inttoptr:
Daniel Dunbara279bc32009-09-20 02:20:51 +00002429 case lltok::kw_ptrtoint: {
Chris Lattnerdf986172009-01-02 07:01:27 +00002430 unsigned Opc = Lex.getUIntVal();
Chris Lattner1afcace2011-07-09 17:41:24 +00002431 Type *DestTy = 0;
Chris Lattnerdf986172009-01-02 07:01:27 +00002432 Constant *SrcVal;
2433 Lex.Lex();
2434 if (ParseToken(lltok::lparen, "expected '(' after constantexpr cast") ||
2435 ParseGlobalTypeAndValue(SrcVal) ||
Dan Gohman24b108b2009-06-15 21:52:11 +00002436 ParseToken(lltok::kw_to, "expected 'to' in constantexpr cast") ||
Chris Lattnerdf986172009-01-02 07:01:27 +00002437 ParseType(DestTy) ||
2438 ParseToken(lltok::rparen, "expected ')' at end of constantexpr cast"))
2439 return true;
2440 if (!CastInst::castIsValid((Instruction::CastOps)Opc, SrcVal, DestTy))
2441 return Error(ID.Loc, "invalid cast opcode for cast from '" +
Chris Lattner0cd0d882011-06-18 21:18:23 +00002442 getTypeString(SrcVal->getType()) + "' to '" +
2443 getTypeString(DestTy) + "'");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002444 ID.ConstantVal = ConstantExpr::getCast((Instruction::CastOps)Opc,
Owen Andersonfba933c2009-07-01 23:57:11 +00002445 SrcVal, DestTy);
Chris Lattnerdf986172009-01-02 07:01:27 +00002446 ID.Kind = ValID::t_Constant;
2447 return false;
2448 }
2449 case lltok::kw_extractvalue: {
2450 Lex.Lex();
2451 Constant *Val;
2452 SmallVector<unsigned, 4> Indices;
2453 if (ParseToken(lltok::lparen, "expected '(' in extractvalue constantexpr")||
2454 ParseGlobalTypeAndValue(Val) ||
2455 ParseIndexList(Indices) ||
2456 ParseToken(lltok::rparen, "expected ')' in extractvalue constantexpr"))
2457 return true;
Devang Patele8bc45a2009-11-03 19:06:07 +00002458
Chris Lattnerfdfeb692010-02-12 20:49:41 +00002459 if (!Val->getType()->isAggregateType())
2460 return Error(ID.Loc, "extractvalue operand must be aggregate type");
Jay Foadfc6d3a42011-07-13 10:26:04 +00002461 if (!ExtractValueInst::getIndexedType(Val->getType(), Indices))
Chris Lattnerdf986172009-01-02 07:01:27 +00002462 return Error(ID.Loc, "invalid indices for extractvalue");
Jay Foadfc6d3a42011-07-13 10:26:04 +00002463 ID.ConstantVal = ConstantExpr::getExtractValue(Val, Indices);
Chris Lattnerdf986172009-01-02 07:01:27 +00002464 ID.Kind = ValID::t_Constant;
2465 return false;
2466 }
2467 case lltok::kw_insertvalue: {
2468 Lex.Lex();
2469 Constant *Val0, *Val1;
2470 SmallVector<unsigned, 4> Indices;
2471 if (ParseToken(lltok::lparen, "expected '(' in insertvalue constantexpr")||
2472 ParseGlobalTypeAndValue(Val0) ||
2473 ParseToken(lltok::comma, "expected comma in insertvalue constantexpr")||
2474 ParseGlobalTypeAndValue(Val1) ||
2475 ParseIndexList(Indices) ||
2476 ParseToken(lltok::rparen, "expected ')' in insertvalue constantexpr"))
2477 return true;
Chris Lattnerfdfeb692010-02-12 20:49:41 +00002478 if (!Val0->getType()->isAggregateType())
2479 return Error(ID.Loc, "insertvalue operand must be aggregate type");
Jay Foadfc6d3a42011-07-13 10:26:04 +00002480 if (!ExtractValueInst::getIndexedType(Val0->getType(), Indices))
Chris Lattnerdf986172009-01-02 07:01:27 +00002481 return Error(ID.Loc, "invalid indices for insertvalue");
Jay Foadfc6d3a42011-07-13 10:26:04 +00002482 ID.ConstantVal = ConstantExpr::getInsertValue(Val0, Val1, Indices);
Chris Lattnerdf986172009-01-02 07:01:27 +00002483 ID.Kind = ValID::t_Constant;
2484 return false;
2485 }
2486 case lltok::kw_icmp:
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00002487 case lltok::kw_fcmp: {
Chris Lattnerdf986172009-01-02 07:01:27 +00002488 unsigned PredVal, Opc = Lex.getUIntVal();
2489 Constant *Val0, *Val1;
2490 Lex.Lex();
2491 if (ParseCmpPredicate(PredVal, Opc) ||
2492 ParseToken(lltok::lparen, "expected '(' in compare constantexpr") ||
2493 ParseGlobalTypeAndValue(Val0) ||
2494 ParseToken(lltok::comma, "expected comma in compare constantexpr") ||
2495 ParseGlobalTypeAndValue(Val1) ||
2496 ParseToken(lltok::rparen, "expected ')' in compare constantexpr"))
2497 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002498
Chris Lattnerdf986172009-01-02 07:01:27 +00002499 if (Val0->getType() != Val1->getType())
2500 return Error(ID.Loc, "compare operands must have the same type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002501
Chris Lattnerdf986172009-01-02 07:01:27 +00002502 CmpInst::Predicate Pred = (CmpInst::Predicate)PredVal;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002503
Chris Lattnerdf986172009-01-02 07:01:27 +00002504 if (Opc == Instruction::FCmp) {
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00002505 if (!Val0->getType()->isFPOrFPVectorTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002506 return Error(ID.Loc, "fcmp requires floating point operands");
Owen Andersonbaf3c402009-07-29 18:55:55 +00002507 ID.ConstantVal = ConstantExpr::getFCmp(Pred, Val0, Val1);
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00002508 } else {
2509 assert(Opc == Instruction::ICmp && "Unexpected opcode for CmpInst!");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00002510 if (!Val0->getType()->isIntOrIntVectorTy() &&
Nadav Rotem16087692011-12-05 06:29:09 +00002511 !Val0->getType()->getScalarType()->isPointerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002512 return Error(ID.Loc, "icmp requires pointer or integer operands");
Owen Andersonbaf3c402009-07-29 18:55:55 +00002513 ID.ConstantVal = ConstantExpr::getICmp(Pred, Val0, Val1);
Chris Lattnerdf986172009-01-02 07:01:27 +00002514 }
2515 ID.Kind = ValID::t_Constant;
2516 return false;
2517 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002518
Chris Lattnerdf986172009-01-02 07:01:27 +00002519 // Binary Operators.
2520 case lltok::kw_add:
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002521 case lltok::kw_fadd:
Chris Lattnerdf986172009-01-02 07:01:27 +00002522 case lltok::kw_sub:
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002523 case lltok::kw_fsub:
Chris Lattnerdf986172009-01-02 07:01:27 +00002524 case lltok::kw_mul:
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002525 case lltok::kw_fmul:
Chris Lattnerdf986172009-01-02 07:01:27 +00002526 case lltok::kw_udiv:
2527 case lltok::kw_sdiv:
2528 case lltok::kw_fdiv:
2529 case lltok::kw_urem:
2530 case lltok::kw_srem:
Chris Lattnerf067d582011-02-07 16:40:21 +00002531 case lltok::kw_frem:
2532 case lltok::kw_shl:
2533 case lltok::kw_lshr:
2534 case lltok::kw_ashr: {
Dan Gohman59858cf2009-07-27 16:11:46 +00002535 bool NUW = false;
2536 bool NSW = false;
2537 bool Exact = false;
Chris Lattnerdf986172009-01-02 07:01:27 +00002538 unsigned Opc = Lex.getUIntVal();
2539 Constant *Val0, *Val1;
2540 Lex.Lex();
Dan Gohman59858cf2009-07-27 16:11:46 +00002541 LocTy ModifierLoc = Lex.getLoc();
Chris Lattnerf067d582011-02-07 16:40:21 +00002542 if (Opc == Instruction::Add || Opc == Instruction::Sub ||
2543 Opc == Instruction::Mul || Opc == Instruction::Shl) {
Dan Gohman59858cf2009-07-27 16:11:46 +00002544 if (EatIfPresent(lltok::kw_nuw))
2545 NUW = true;
2546 if (EatIfPresent(lltok::kw_nsw)) {
2547 NSW = true;
2548 if (EatIfPresent(lltok::kw_nuw))
2549 NUW = true;
2550 }
Chris Lattnerf067d582011-02-07 16:40:21 +00002551 } else if (Opc == Instruction::SDiv || Opc == Instruction::UDiv ||
2552 Opc == Instruction::LShr || Opc == Instruction::AShr) {
Dan Gohman59858cf2009-07-27 16:11:46 +00002553 if (EatIfPresent(lltok::kw_exact))
2554 Exact = true;
2555 }
Chris Lattnerdf986172009-01-02 07:01:27 +00002556 if (ParseToken(lltok::lparen, "expected '(' in binary constantexpr") ||
2557 ParseGlobalTypeAndValue(Val0) ||
2558 ParseToken(lltok::comma, "expected comma in binary constantexpr") ||
2559 ParseGlobalTypeAndValue(Val1) ||
2560 ParseToken(lltok::rparen, "expected ')' in binary constantexpr"))
2561 return true;
2562 if (Val0->getType() != Val1->getType())
2563 return Error(ID.Loc, "operands of constexpr must have same type");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00002564 if (!Val0->getType()->isIntOrIntVectorTy()) {
Dan Gohman59858cf2009-07-27 16:11:46 +00002565 if (NUW)
2566 return Error(ModifierLoc, "nuw only applies to integer operations");
2567 if (NSW)
2568 return Error(ModifierLoc, "nsw only applies to integer operations");
2569 }
Dan Gohman1eaac532010-05-03 22:44:19 +00002570 // Check that the type is valid for the operator.
2571 switch (Opc) {
2572 case Instruction::Add:
2573 case Instruction::Sub:
2574 case Instruction::Mul:
2575 case Instruction::UDiv:
2576 case Instruction::SDiv:
2577 case Instruction::URem:
2578 case Instruction::SRem:
Chris Lattnerf067d582011-02-07 16:40:21 +00002579 case Instruction::Shl:
2580 case Instruction::AShr:
2581 case Instruction::LShr:
Dan Gohman1eaac532010-05-03 22:44:19 +00002582 if (!Val0->getType()->isIntOrIntVectorTy())
2583 return Error(ID.Loc, "constexpr requires integer operands");
2584 break;
2585 case Instruction::FAdd:
2586 case Instruction::FSub:
2587 case Instruction::FMul:
2588 case Instruction::FDiv:
2589 case Instruction::FRem:
2590 if (!Val0->getType()->isFPOrFPVectorTy())
2591 return Error(ID.Loc, "constexpr requires fp operands");
2592 break;
2593 default: llvm_unreachable("Unknown binary operator!");
2594 }
Dan Gohmanf8dbee72009-09-07 23:54:19 +00002595 unsigned Flags = 0;
2596 if (NUW) Flags |= OverflowingBinaryOperator::NoUnsignedWrap;
2597 if (NSW) Flags |= OverflowingBinaryOperator::NoSignedWrap;
Chris Lattner35bda892011-02-06 21:44:57 +00002598 if (Exact) Flags |= PossiblyExactOperator::IsExact;
Dan Gohmanf8dbee72009-09-07 23:54:19 +00002599 Constant *C = ConstantExpr::get(Opc, Val0, Val1, Flags);
Dan Gohman59858cf2009-07-27 16:11:46 +00002600 ID.ConstantVal = C;
Chris Lattnerdf986172009-01-02 07:01:27 +00002601 ID.Kind = ValID::t_Constant;
2602 return false;
2603 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002604
Chris Lattnerdf986172009-01-02 07:01:27 +00002605 // Logical Operations
Chris Lattnerdf986172009-01-02 07:01:27 +00002606 case lltok::kw_and:
2607 case lltok::kw_or:
2608 case lltok::kw_xor: {
2609 unsigned Opc = Lex.getUIntVal();
2610 Constant *Val0, *Val1;
2611 Lex.Lex();
2612 if (ParseToken(lltok::lparen, "expected '(' in logical constantexpr") ||
2613 ParseGlobalTypeAndValue(Val0) ||
2614 ParseToken(lltok::comma, "expected comma in logical constantexpr") ||
2615 ParseGlobalTypeAndValue(Val1) ||
2616 ParseToken(lltok::rparen, "expected ')' in logical constantexpr"))
2617 return true;
2618 if (Val0->getType() != Val1->getType())
2619 return Error(ID.Loc, "operands of constexpr must have same type");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00002620 if (!Val0->getType()->isIntOrIntVectorTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002621 return Error(ID.Loc,
2622 "constexpr requires integer or integer vector operands");
Owen Andersonbaf3c402009-07-29 18:55:55 +00002623 ID.ConstantVal = ConstantExpr::get(Opc, Val0, Val1);
Chris Lattnerdf986172009-01-02 07:01:27 +00002624 ID.Kind = ValID::t_Constant;
2625 return false;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002626 }
2627
Chris Lattnerdf986172009-01-02 07:01:27 +00002628 case lltok::kw_getelementptr:
2629 case lltok::kw_shufflevector:
2630 case lltok::kw_insertelement:
2631 case lltok::kw_extractelement:
2632 case lltok::kw_select: {
2633 unsigned Opc = Lex.getUIntVal();
2634 SmallVector<Constant*, 16> Elts;
Dan Gohmandd8004d2009-07-27 21:53:46 +00002635 bool InBounds = false;
Chris Lattnerdf986172009-01-02 07:01:27 +00002636 Lex.Lex();
Dan Gohmandd8004d2009-07-27 21:53:46 +00002637 if (Opc == Instruction::GetElementPtr)
Dan Gohmandcb40a32009-07-29 15:58:36 +00002638 InBounds = EatIfPresent(lltok::kw_inbounds);
Chris Lattnerdf986172009-01-02 07:01:27 +00002639 if (ParseToken(lltok::lparen, "expected '(' in constantexpr") ||
2640 ParseGlobalValueVector(Elts) ||
2641 ParseToken(lltok::rparen, "expected ')' in constantexpr"))
2642 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002643
Chris Lattnerdf986172009-01-02 07:01:27 +00002644 if (Opc == Instruction::GetElementPtr) {
Nadav Rotem16087692011-12-05 06:29:09 +00002645 if (Elts.size() == 0 ||
2646 !Elts[0]->getType()->getScalarType()->isPointerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002647 return Error(ID.Loc, "getelementptr requires pointer operand");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002648
Jay Foaddab3d292011-07-21 14:31:17 +00002649 ArrayRef<Constant *> Indices(Elts.begin() + 1, Elts.end());
Jay Foada9203102011-07-25 09:48:08 +00002650 if (!GetElementPtrInst::getIndexedType(Elts[0]->getType(), Indices))
Chris Lattnerdf986172009-01-02 07:01:27 +00002651 return Error(ID.Loc, "invalid indices for getelementptr");
Jay Foad4b5e2072011-07-21 15:15:37 +00002652 ID.ConstantVal = ConstantExpr::getGetElementPtr(Elts[0], Indices,
2653 InBounds);
Chris Lattnerdf986172009-01-02 07:01:27 +00002654 } else if (Opc == Instruction::Select) {
2655 if (Elts.size() != 3)
2656 return Error(ID.Loc, "expected three operands to select");
2657 if (const char *Reason = SelectInst::areInvalidOperands(Elts[0], Elts[1],
2658 Elts[2]))
2659 return Error(ID.Loc, Reason);
Owen Andersonbaf3c402009-07-29 18:55:55 +00002660 ID.ConstantVal = ConstantExpr::getSelect(Elts[0], Elts[1], Elts[2]);
Chris Lattnerdf986172009-01-02 07:01:27 +00002661 } else if (Opc == Instruction::ShuffleVector) {
2662 if (Elts.size() != 3)
2663 return Error(ID.Loc, "expected three operands to shufflevector");
2664 if (!ShuffleVectorInst::isValidOperands(Elts[0], Elts[1], Elts[2]))
2665 return Error(ID.Loc, "invalid operands to shufflevector");
Owen Andersonfba933c2009-07-01 23:57:11 +00002666 ID.ConstantVal =
Owen Andersonbaf3c402009-07-29 18:55:55 +00002667 ConstantExpr::getShuffleVector(Elts[0], Elts[1],Elts[2]);
Chris Lattnerdf986172009-01-02 07:01:27 +00002668 } else if (Opc == Instruction::ExtractElement) {
2669 if (Elts.size() != 2)
2670 return Error(ID.Loc, "expected two operands to extractelement");
2671 if (!ExtractElementInst::isValidOperands(Elts[0], Elts[1]))
2672 return Error(ID.Loc, "invalid extractelement operands");
Owen Andersonbaf3c402009-07-29 18:55:55 +00002673 ID.ConstantVal = ConstantExpr::getExtractElement(Elts[0], Elts[1]);
Chris Lattnerdf986172009-01-02 07:01:27 +00002674 } else {
2675 assert(Opc == Instruction::InsertElement && "Unknown opcode");
2676 if (Elts.size() != 3)
2677 return Error(ID.Loc, "expected three operands to insertelement");
2678 if (!InsertElementInst::isValidOperands(Elts[0], Elts[1], Elts[2]))
2679 return Error(ID.Loc, "invalid insertelement operands");
Owen Andersonfba933c2009-07-01 23:57:11 +00002680 ID.ConstantVal =
Owen Andersonbaf3c402009-07-29 18:55:55 +00002681 ConstantExpr::getInsertElement(Elts[0], Elts[1],Elts[2]);
Chris Lattnerdf986172009-01-02 07:01:27 +00002682 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002683
Chris Lattnerdf986172009-01-02 07:01:27 +00002684 ID.Kind = ValID::t_Constant;
2685 return false;
2686 }
2687 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002688
Chris Lattnerdf986172009-01-02 07:01:27 +00002689 Lex.Lex();
2690 return false;
2691}
2692
2693/// ParseGlobalValue - Parse a global value with the specified type.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002694bool LLParser::ParseGlobalValue(Type *Ty, Constant *&C) {
Victor Hernandez92f238d2010-01-11 22:31:58 +00002695 C = 0;
Chris Lattnerdf986172009-01-02 07:01:27 +00002696 ValID ID;
Victor Hernandez92f238d2010-01-11 22:31:58 +00002697 Value *V = NULL;
2698 bool Parsed = ParseValID(ID) ||
2699 ConvertValIDToValue(Ty, ID, V, NULL);
2700 if (V && !(C = dyn_cast<Constant>(V)))
2701 return Error(ID.Loc, "global values must be constants");
2702 return Parsed;
Chris Lattnerdf986172009-01-02 07:01:27 +00002703}
2704
Victor Hernandez92f238d2010-01-11 22:31:58 +00002705bool LLParser::ParseGlobalTypeAndValue(Constant *&V) {
Chris Lattner1afcace2011-07-09 17:41:24 +00002706 Type *Ty = 0;
2707 return ParseType(Ty) ||
2708 ParseGlobalValue(Ty, V);
Victor Hernandez92f238d2010-01-11 22:31:58 +00002709}
2710
2711/// ParseGlobalValueVector
2712/// ::= /*empty*/
2713/// ::= TypeAndValue (',' TypeAndValue)*
2714bool LLParser::ParseGlobalValueVector(SmallVectorImpl<Constant*> &Elts) {
2715 // Empty list.
2716 if (Lex.getKind() == lltok::rbrace ||
2717 Lex.getKind() == lltok::rsquare ||
2718 Lex.getKind() == lltok::greater ||
2719 Lex.getKind() == lltok::rparen)
2720 return false;
2721
2722 Constant *C;
2723 if (ParseGlobalTypeAndValue(C)) return true;
2724 Elts.push_back(C);
2725
2726 while (EatIfPresent(lltok::comma)) {
2727 if (ParseGlobalTypeAndValue(C)) return true;
2728 Elts.push_back(C);
2729 }
2730
2731 return false;
2732}
2733
Dan Gohman309b3af2010-08-24 02:24:03 +00002734bool LLParser::ParseMetadataListValue(ValID &ID, PerFunctionState *PFS) {
2735 assert(Lex.getKind() == lltok::lbrace);
2736 Lex.Lex();
2737
2738 SmallVector<Value*, 16> Elts;
2739 if (ParseMDNodeVector(Elts, PFS) ||
2740 ParseToken(lltok::rbrace, "expected end of metadata node"))
2741 return true;
2742
Jay Foadec9186b2011-04-21 19:59:31 +00002743 ID.MDNodeVal = MDNode::get(Context, Elts);
Dan Gohman309b3af2010-08-24 02:24:03 +00002744 ID.Kind = ValID::t_MDNode;
2745 return false;
2746}
2747
Dan Gohman83448032010-07-14 18:26:50 +00002748/// ParseMetadataValue
2749/// ::= !42
2750/// ::= !{...}
2751/// ::= !"string"
2752bool LLParser::ParseMetadataValue(ValID &ID, PerFunctionState *PFS) {
2753 assert(Lex.getKind() == lltok::exclaim);
2754 Lex.Lex();
2755
2756 // MDNode:
2757 // !{ ... }
Dan Gohman309b3af2010-08-24 02:24:03 +00002758 if (Lex.getKind() == lltok::lbrace)
2759 return ParseMetadataListValue(ID, PFS);
Dan Gohman83448032010-07-14 18:26:50 +00002760
2761 // Standalone metadata reference
2762 // !42
2763 if (Lex.getKind() == lltok::APSInt) {
2764 if (ParseMDNodeID(ID.MDNodeVal)) return true;
2765 ID.Kind = ValID::t_MDNode;
2766 return false;
2767 }
2768
2769 // MDString:
2770 // ::= '!' STRINGCONSTANT
2771 if (ParseMDString(ID.MDStringVal)) return true;
2772 ID.Kind = ValID::t_MDString;
2773 return false;
2774}
2775
Victor Hernandez92f238d2010-01-11 22:31:58 +00002776
2777//===----------------------------------------------------------------------===//
2778// Function Parsing.
2779//===----------------------------------------------------------------------===//
2780
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002781bool LLParser::ConvertValIDToValue(Type *Ty, ValID &ID, Value *&V,
Victor Hernandez92f238d2010-01-11 22:31:58 +00002782 PerFunctionState *PFS) {
Duncan Sands1df98592010-02-16 11:11:14 +00002783 if (Ty->isFunctionTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002784 return Error(ID.Loc, "functions are not values, refer to them as pointers");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002785
Chris Lattnerdf986172009-01-02 07:01:27 +00002786 switch (ID.Kind) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002787 case ValID::t_LocalID:
Victor Hernandez92f238d2010-01-11 22:31:58 +00002788 if (!PFS) return Error(ID.Loc, "invalid use of function-local name");
2789 V = PFS->GetVal(ID.UIntVal, Ty, ID.Loc);
2790 return (V == 0);
Chris Lattnerdf986172009-01-02 07:01:27 +00002791 case ValID::t_LocalName:
Victor Hernandez92f238d2010-01-11 22:31:58 +00002792 if (!PFS) return Error(ID.Loc, "invalid use of function-local name");
2793 V = PFS->GetVal(ID.StrVal, Ty, ID.Loc);
2794 return (V == 0);
2795 case ValID::t_InlineAsm: {
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002796 PointerType *PTy = dyn_cast<PointerType>(Ty);
Michael Ilseman407a6162012-11-15 22:34:00 +00002797 FunctionType *FTy =
Victor Hernandez92f238d2010-01-11 22:31:58 +00002798 PTy ? dyn_cast<FunctionType>(PTy->getElementType()) : 0;
2799 if (!FTy || !InlineAsm::Verify(FTy, ID.StrVal2))
2800 return Error(ID.Loc, "invalid type for inline asm constraint string");
Chad Rosier36547342012-09-05 00:08:17 +00002801 V = InlineAsm::get(FTy, ID.StrVal, ID.StrVal2, ID.UIntVal&1,
Chad Rosier581600b2012-09-05 19:00:49 +00002802 (ID.UIntVal>>1)&1, (InlineAsm::AsmDialect(ID.UIntVal>>2)));
Victor Hernandez92f238d2010-01-11 22:31:58 +00002803 return false;
2804 }
2805 case ValID::t_MDNode:
2806 if (!Ty->isMetadataTy())
2807 return Error(ID.Loc, "metadata value must have metadata type");
2808 V = ID.MDNodeVal;
2809 return false;
2810 case ValID::t_MDString:
2811 if (!Ty->isMetadataTy())
2812 return Error(ID.Loc, "metadata value must have metadata type");
2813 V = ID.MDStringVal;
2814 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00002815 case ValID::t_GlobalName:
2816 V = GetGlobalVal(ID.StrVal, Ty, ID.Loc);
2817 return V == 0;
2818 case ValID::t_GlobalID:
2819 V = GetGlobalVal(ID.UIntVal, Ty, ID.Loc);
2820 return V == 0;
2821 case ValID::t_APSInt:
Duncan Sands1df98592010-02-16 11:11:14 +00002822 if (!Ty->isIntegerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002823 return Error(ID.Loc, "integer constant must have integer type");
Jay Foad40f8f622010-12-07 08:25:19 +00002824 ID.APSIntVal = ID.APSIntVal.extOrTrunc(Ty->getPrimitiveSizeInBits());
Owen Andersoneed707b2009-07-24 23:12:02 +00002825 V = ConstantInt::get(Context, ID.APSIntVal);
Chris Lattnerdf986172009-01-02 07:01:27 +00002826 return false;
2827 case ValID::t_APFloat:
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00002828 if (!Ty->isFloatingPointTy() ||
Chris Lattnerdf986172009-01-02 07:01:27 +00002829 !ConstantFP::isValueValidForType(Ty, ID.APFloatVal))
2830 return Error(ID.Loc, "floating point constant invalid for type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002831
Dan Gohmance163392011-12-17 00:04:22 +00002832 // The lexer has no type info, so builds all half, float, and double FP
2833 // constants as double. Fix this here. Long double does not need this.
2834 if (&ID.APFloatVal.getSemantics() == &APFloat::IEEEdouble) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002835 bool Ignored;
Dan Gohmance163392011-12-17 00:04:22 +00002836 if (Ty->isHalfTy())
2837 ID.APFloatVal.convert(APFloat::IEEEhalf, APFloat::rmNearestTiesToEven,
2838 &Ignored);
2839 else if (Ty->isFloatTy())
2840 ID.APFloatVal.convert(APFloat::IEEEsingle, APFloat::rmNearestTiesToEven,
2841 &Ignored);
Chris Lattnerdf986172009-01-02 07:01:27 +00002842 }
Owen Anderson6f83c9c2009-07-27 20:59:43 +00002843 V = ConstantFP::get(Context, ID.APFloatVal);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002844
Chris Lattner959873d2009-01-05 18:24:23 +00002845 if (V->getType() != Ty)
2846 return Error(ID.Loc, "floating point constant does not have type '" +
Chris Lattner0cd0d882011-06-18 21:18:23 +00002847 getTypeString(Ty) + "'");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002848
Chris Lattnerdf986172009-01-02 07:01:27 +00002849 return false;
2850 case ValID::t_Null:
Duncan Sands1df98592010-02-16 11:11:14 +00002851 if (!Ty->isPointerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002852 return Error(ID.Loc, "null must be a pointer type");
Owen Anderson9e9a0d52009-07-30 23:03:37 +00002853 V = ConstantPointerNull::get(cast<PointerType>(Ty));
Chris Lattnerdf986172009-01-02 07:01:27 +00002854 return false;
2855 case ValID::t_Undef:
Chris Lattnere67c1aa2009-01-05 08:13:38 +00002856 // FIXME: LabelTy should not be a first-class type.
Chris Lattner1afcace2011-07-09 17:41:24 +00002857 if (!Ty->isFirstClassType() || Ty->isLabelTy())
Chris Lattnere67c1aa2009-01-05 08:13:38 +00002858 return Error(ID.Loc, "invalid type for undef constant");
Owen Anderson9e9a0d52009-07-30 23:03:37 +00002859 V = UndefValue::get(Ty);
Chris Lattnerdf986172009-01-02 07:01:27 +00002860 return false;
Chris Lattner081b5052009-01-05 07:52:51 +00002861 case ValID::t_EmptyArray:
Duncan Sands1df98592010-02-16 11:11:14 +00002862 if (!Ty->isArrayTy() || cast<ArrayType>(Ty)->getNumElements() != 0)
Chris Lattner081b5052009-01-05 07:52:51 +00002863 return Error(ID.Loc, "invalid empty array initializer");
Owen Anderson9e9a0d52009-07-30 23:03:37 +00002864 V = UndefValue::get(Ty);
Chris Lattner081b5052009-01-05 07:52:51 +00002865 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00002866 case ValID::t_Zero:
Chris Lattnere67c1aa2009-01-05 08:13:38 +00002867 // FIXME: LabelTy should not be a first-class type.
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00002868 if (!Ty->isFirstClassType() || Ty->isLabelTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002869 return Error(ID.Loc, "invalid type for null constant");
Owen Andersona7235ea2009-07-31 20:28:14 +00002870 V = Constant::getNullValue(Ty);
Chris Lattnerdf986172009-01-02 07:01:27 +00002871 return false;
2872 case ValID::t_Constant:
Chris Lattner61c70e92010-08-28 04:09:24 +00002873 if (ID.ConstantVal->getType() != Ty)
Chris Lattnerdf986172009-01-02 07:01:27 +00002874 return Error(ID.Loc, "constant expression type mismatch");
Chris Lattnerfdfeb692010-02-12 20:49:41 +00002875
Chris Lattnerdf986172009-01-02 07:01:27 +00002876 V = ID.ConstantVal;
2877 return false;
Chris Lattner1afcace2011-07-09 17:41:24 +00002878 case ValID::t_ConstantStruct:
2879 case ValID::t_PackedConstantStruct:
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002880 if (StructType *ST = dyn_cast<StructType>(Ty)) {
Chris Lattner1afcace2011-07-09 17:41:24 +00002881 if (ST->getNumElements() != ID.UIntVal)
2882 return Error(ID.Loc,
2883 "initializer with struct type has wrong # elements");
2884 if (ST->isPacked() != (ID.Kind == ValID::t_PackedConstantStruct))
2885 return Error(ID.Loc, "packed'ness of initializer and type don't match");
Michael Ilseman407a6162012-11-15 22:34:00 +00002886
Chris Lattner1afcace2011-07-09 17:41:24 +00002887 // Verify that the elements are compatible with the structtype.
2888 for (unsigned i = 0, e = ID.UIntVal; i != e; ++i)
2889 if (ID.ConstantStructElts[i]->getType() != ST->getElementType(i))
2890 return Error(ID.Loc, "element " + Twine(i) +
2891 " of struct initializer doesn't match struct element type");
Michael Ilseman407a6162012-11-15 22:34:00 +00002892
Frits van Bommel39b5abf2011-07-18 12:00:32 +00002893 V = ConstantStruct::get(ST, makeArrayRef(ID.ConstantStructElts,
2894 ID.UIntVal));
Chris Lattner1afcace2011-07-09 17:41:24 +00002895 } else
2896 return Error(ID.Loc, "constant expression type mismatch");
2897 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00002898 }
Chandler Carruth732f05c2012-01-10 18:08:01 +00002899 llvm_unreachable("Invalid ValID");
Chris Lattnerdf986172009-01-02 07:01:27 +00002900}
Daniel Dunbara279bc32009-09-20 02:20:51 +00002901
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002902bool LLParser::ParseValue(Type *Ty, Value *&V, PerFunctionState *PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002903 V = 0;
2904 ValID ID;
Chris Lattner1afcace2011-07-09 17:41:24 +00002905 return ParseValID(ID, PFS) ||
2906 ConvertValIDToValue(Ty, ID, V, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00002907}
2908
Chris Lattner1afcace2011-07-09 17:41:24 +00002909bool LLParser::ParseTypeAndValue(Value *&V, PerFunctionState *PFS) {
2910 Type *Ty = 0;
2911 return ParseType(Ty) ||
2912 ParseValue(Ty, V, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00002913}
2914
Chris Lattnerf9be95f2009-10-27 19:13:16 +00002915bool LLParser::ParseTypeAndBasicBlock(BasicBlock *&BB, LocTy &Loc,
2916 PerFunctionState &PFS) {
2917 Value *V;
2918 Loc = Lex.getLoc();
2919 if (ParseTypeAndValue(V, PFS)) return true;
2920 if (!isa<BasicBlock>(V))
2921 return Error(Loc, "expected a basic block");
2922 BB = cast<BasicBlock>(V);
2923 return false;
2924}
2925
2926
Chris Lattnerdf986172009-01-02 07:01:27 +00002927/// FunctionHeader
2928/// ::= OptionalLinkage OptionalVisibility OptionalCallingConv OptRetAttrs
Rafael Espindolabea46262011-01-08 16:42:36 +00002929/// OptUnnamedAddr Type GlobalName '(' ArgList ')' OptFuncAttrs OptSection
Peter Collingbourne1e3037f2013-09-16 01:08:15 +00002930/// OptionalAlign OptGC OptionalPrefix
Chris Lattnerdf986172009-01-02 07:01:27 +00002931bool LLParser::ParseFunctionHeader(Function *&Fn, bool isDefine) {
2932 // Parse the linkage.
2933 LocTy LinkageLoc = Lex.getLoc();
2934 unsigned Linkage;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002935
Kostya Serebryany164b86b2012-01-20 17:56:17 +00002936 unsigned Visibility;
Bill Wendling702cc912012-10-15 20:35:56 +00002937 AttrBuilder RetAttrs;
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00002938 CallingConv::ID CC;
Chris Lattner1afcace2011-07-09 17:41:24 +00002939 Type *RetType = 0;
Chris Lattnerdf986172009-01-02 07:01:27 +00002940 LocTy RetTypeLoc = Lex.getLoc();
2941 if (ParseOptionalLinkage(Linkage) ||
2942 ParseOptionalVisibility(Visibility) ||
2943 ParseOptionalCallingConv(CC) ||
Bill Wendlinge01b81b2012-12-04 23:40:58 +00002944 ParseOptionalReturnAttrs(RetAttrs) ||
Chris Lattnera9a9e072009-03-09 04:49:14 +00002945 ParseType(RetType, RetTypeLoc, true /*void allowed*/))
Chris Lattnerdf986172009-01-02 07:01:27 +00002946 return true;
2947
2948 // Verify that the linkage is ok.
2949 switch ((GlobalValue::LinkageTypes)Linkage) {
2950 case GlobalValue::ExternalLinkage:
2951 break; // always ok.
2952 case GlobalValue::DLLImportLinkage:
Duncan Sands5f4ee1f2009-03-11 08:08:06 +00002953 case GlobalValue::ExternalWeakLinkage:
Chris Lattnerdf986172009-01-02 07:01:27 +00002954 if (isDefine)
2955 return Error(LinkageLoc, "invalid linkage for function definition");
2956 break;
Rafael Espindolabb46f522009-01-15 20:18:42 +00002957 case GlobalValue::PrivateLinkage:
Bill Wendling3d10a5a2009-07-20 01:03:30 +00002958 case GlobalValue::LinkerPrivateLinkage:
Bill Wendling5e721d72010-07-01 21:55:59 +00002959 case GlobalValue::LinkerPrivateWeakLinkage:
Chris Lattnerdf986172009-01-02 07:01:27 +00002960 case GlobalValue::InternalLinkage:
Nick Lewycky55f64db2009-04-13 07:02:02 +00002961 case GlobalValue::AvailableExternallyLinkage:
Duncan Sands667d4b82009-03-07 15:45:40 +00002962 case GlobalValue::LinkOnceAnyLinkage:
2963 case GlobalValue::LinkOnceODRLinkage:
Bill Wendling32811be2012-08-17 18:33:14 +00002964 case GlobalValue::LinkOnceODRAutoHideLinkage:
Duncan Sands667d4b82009-03-07 15:45:40 +00002965 case GlobalValue::WeakAnyLinkage:
2966 case GlobalValue::WeakODRLinkage:
Chris Lattnerdf986172009-01-02 07:01:27 +00002967 case GlobalValue::DLLExportLinkage:
2968 if (!isDefine)
2969 return Error(LinkageLoc, "invalid linkage for function declaration");
2970 break;
2971 case GlobalValue::AppendingLinkage:
Duncan Sands4dc2b392009-03-11 20:14:15 +00002972 case GlobalValue::CommonLinkage:
Chris Lattnerdf986172009-01-02 07:01:27 +00002973 return Error(LinkageLoc, "invalid function linkage type");
2974 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002975
Chris Lattner1afcace2011-07-09 17:41:24 +00002976 if (!FunctionType::isValidReturnType(RetType))
Chris Lattnerdf986172009-01-02 07:01:27 +00002977 return Error(RetTypeLoc, "invalid function return type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002978
Chris Lattnerdf986172009-01-02 07:01:27 +00002979 LocTy NameLoc = Lex.getLoc();
Chris Lattnerf570e622009-02-18 21:48:13 +00002980
2981 std::string FunctionName;
2982 if (Lex.getKind() == lltok::GlobalVar) {
2983 FunctionName = Lex.getStrVal();
2984 } else if (Lex.getKind() == lltok::GlobalID) { // @42 is ok.
2985 unsigned NameID = Lex.getUIntVal();
2986
2987 if (NameID != NumberedVals.size())
2988 return TokError("function expected to be numbered '%" +
Benjamin Kramerd1e17032010-09-27 17:42:11 +00002989 Twine(NumberedVals.size()) + "'");
Chris Lattnerf570e622009-02-18 21:48:13 +00002990 } else {
2991 return TokError("expected function name");
2992 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002993
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002994 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +00002995
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002996 if (Lex.getKind() != lltok::lparen)
Chris Lattnerdf986172009-01-02 07:01:27 +00002997 return TokError("expected '(' in function argument list");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002998
Chris Lattner1afcace2011-07-09 17:41:24 +00002999 SmallVector<ArgInfo, 8> ArgList;
Chris Lattnerdf986172009-01-02 07:01:27 +00003000 bool isVarArg;
Bill Wendling702cc912012-10-15 20:35:56 +00003001 AttrBuilder FuncAttrs;
Bill Wendlingbaad55c2013-02-08 06:32:06 +00003002 std::vector<unsigned> FwdRefAttrGrps;
Michael Gottesman2253a2f2013-06-27 00:25:01 +00003003 LocTy BuiltinLoc;
Chris Lattnerdf986172009-01-02 07:01:27 +00003004 std::string Section;
Chris Lattnerdf986172009-01-02 07:01:27 +00003005 unsigned Alignment;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003006 std::string GC;
Rafael Espindola3971df52011-01-25 19:09:56 +00003007 bool UnnamedAddr;
3008 LocTy UnnamedAddrLoc;
Peter Collingbourne1e3037f2013-09-16 01:08:15 +00003009 Constant *Prefix = 0;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003010
Chris Lattner1afcace2011-07-09 17:41:24 +00003011 if (ParseArgumentList(ArgList, isVarArg) ||
Rafael Espindola3971df52011-01-25 19:09:56 +00003012 ParseOptionalToken(lltok::kw_unnamed_addr, UnnamedAddr,
3013 &UnnamedAddrLoc) ||
Bill Wendling143d4642013-02-22 00:12:35 +00003014 ParseFnAttributeValuePairs(FuncAttrs, FwdRefAttrGrps, false,
Michael Gottesman2253a2f2013-06-27 00:25:01 +00003015 BuiltinLoc) ||
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003016 (EatIfPresent(lltok::kw_section) &&
3017 ParseStringConstant(Section)) ||
3018 ParseOptionalAlignment(Alignment) ||
3019 (EatIfPresent(lltok::kw_gc) &&
Peter Collingbourne1e3037f2013-09-16 01:08:15 +00003020 ParseStringConstant(GC)) ||
3021 (EatIfPresent(lltok::kw_prefix) &&
3022 ParseGlobalTypeAndValue(Prefix)))
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003023 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00003024
Michael Gottesman2253a2f2013-06-27 00:25:01 +00003025 if (FuncAttrs.contains(Attribute::Builtin))
3026 return Error(BuiltinLoc, "'builtin' attribute not valid on function");
Bill Wendling143d4642013-02-22 00:12:35 +00003027
Chris Lattnerdf986172009-01-02 07:01:27 +00003028 // If the alignment was parsed as an attribute, move to the alignment field.
Bill Wendlingf385f4c2012-10-08 23:27:46 +00003029 if (FuncAttrs.hasAlignmentAttr()) {
Bill Wendlingef99fe82012-09-21 15:26:31 +00003030 Alignment = FuncAttrs.getAlignment();
Bill Wendling034b94b2012-12-19 07:18:57 +00003031 FuncAttrs.removeAttribute(Attribute::Alignment);
Chris Lattnerdf986172009-01-02 07:01:27 +00003032 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003033
Chris Lattnerdf986172009-01-02 07:01:27 +00003034 // Okay, if we got here, the function is syntactically valid. Convert types
3035 // and do semantic checks.
Jay Foad5fdd6c82011-07-12 14:06:48 +00003036 std::vector<Type*> ParamTypeList;
Bill Wendlinga1683d62013-01-27 02:24:02 +00003037 SmallVector<AttributeSet, 8> Attrs;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003038
Bill Wendlinge603fe42012-09-19 23:54:18 +00003039 if (RetAttrs.hasAttributes())
Bill Wendlinga1683d62013-01-27 02:24:02 +00003040 Attrs.push_back(AttributeSet::get(RetType->getContext(),
3041 AttributeSet::ReturnIndex,
3042 RetAttrs));
Daniel Dunbara279bc32009-09-20 02:20:51 +00003043
Chris Lattnerdf986172009-01-02 07:01:27 +00003044 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
Chris Lattner1afcace2011-07-09 17:41:24 +00003045 ParamTypeList.push_back(ArgList[i].Ty);
Bill Wendling73dee182013-01-31 00:29:54 +00003046 if (ArgList[i].Attrs.hasAttributes(i + 1)) {
3047 AttrBuilder B(ArgList[i].Attrs, i + 1);
Bill Wendlinga1683d62013-01-27 02:24:02 +00003048 Attrs.push_back(AttributeSet::get(RetType->getContext(), i + 1, B));
3049 }
Chris Lattnerdf986172009-01-02 07:01:27 +00003050 }
3051
Bill Wendlinge603fe42012-09-19 23:54:18 +00003052 if (FuncAttrs.hasAttributes())
Bill Wendlinga1683d62013-01-27 02:24:02 +00003053 Attrs.push_back(AttributeSet::get(RetType->getContext(),
3054 AttributeSet::FunctionIndex,
3055 FuncAttrs));
Chris Lattnerdf986172009-01-02 07:01:27 +00003056
Bill Wendling99faa3b2012-12-07 23:16:57 +00003057 AttributeSet PAL = AttributeSet::get(Context, Attrs);
Daniel Dunbara279bc32009-09-20 02:20:51 +00003058
Bill Wendling94e94b32012-12-30 13:50:49 +00003059 if (PAL.hasAttribute(1, Attribute::StructRet) && !RetType->isVoidTy())
Daniel Dunbara279bc32009-09-20 02:20:51 +00003060 return Error(RetTypeLoc, "functions with 'sret' argument must return void");
3061
Chris Lattnerdb125cf2011-07-18 04:54:35 +00003062 FunctionType *FT =
Owen Andersondebcb012009-07-29 22:17:13 +00003063 FunctionType::get(RetType, ParamTypeList, isVarArg);
Chris Lattnerdb125cf2011-07-18 04:54:35 +00003064 PointerType *PFT = PointerType::getUnqual(FT);
Chris Lattnerdf986172009-01-02 07:01:27 +00003065
3066 Fn = 0;
3067 if (!FunctionName.empty()) {
3068 // If this was a definition of a forward reference, remove the definition
3069 // from the forward reference table and fill in the forward ref.
3070 std::map<std::string, std::pair<GlobalValue*, LocTy> >::iterator FRVI =
3071 ForwardRefVals.find(FunctionName);
3072 if (FRVI != ForwardRefVals.end()) {
3073 Fn = M->getFunction(FunctionName);
Nick Lewycky64ea2752012-10-11 00:38:25 +00003074 if (!Fn)
3075 return Error(FRVI->second.second, "invalid forward reference to "
3076 "function as global value!");
Chris Lattnerf1cfb952010-04-20 04:49:11 +00003077 if (Fn->getType() != PFT)
3078 return Error(FRVI->second.second, "invalid forward reference to "
3079 "function '" + FunctionName + "' with wrong type!");
Michael Ilseman407a6162012-11-15 22:34:00 +00003080
Chris Lattnerdf986172009-01-02 07:01:27 +00003081 ForwardRefVals.erase(FRVI);
3082 } else if ((Fn = M->getFunction(FunctionName))) {
Chris Lattnerd5890992011-06-17 07:06:44 +00003083 // Reject redefinitions.
3084 return Error(NameLoc, "invalid redefinition of function '" +
3085 FunctionName + "'");
Chris Lattner1d871c52009-10-25 23:22:50 +00003086 } else if (M->getNamedValue(FunctionName)) {
3087 return Error(NameLoc, "redefinition of function '@" + FunctionName + "'");
Chris Lattnerdf986172009-01-02 07:01:27 +00003088 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003089
Dan Gohman41905542009-08-29 23:37:49 +00003090 } else {
Chris Lattnerdf986172009-01-02 07:01:27 +00003091 // If this is a definition of a forward referenced function, make sure the
3092 // types agree.
3093 std::map<unsigned, std::pair<GlobalValue*, LocTy> >::iterator I
3094 = ForwardRefValIDs.find(NumberedVals.size());
3095 if (I != ForwardRefValIDs.end()) {
3096 Fn = cast<Function>(I->second.first);
3097 if (Fn->getType() != PFT)
3098 return Error(NameLoc, "type of definition and forward reference of '@" +
Benjamin Kramerd1e17032010-09-27 17:42:11 +00003099 Twine(NumberedVals.size()) + "' disagree");
Chris Lattnerdf986172009-01-02 07:01:27 +00003100 ForwardRefValIDs.erase(I);
3101 }
3102 }
3103
3104 if (Fn == 0)
3105 Fn = Function::Create(FT, GlobalValue::ExternalLinkage, FunctionName, M);
3106 else // Move the forward-reference to the correct spot in the module.
3107 M->getFunctionList().splice(M->end(), M->getFunctionList(), Fn);
3108
3109 if (FunctionName.empty())
3110 NumberedVals.push_back(Fn);
Daniel Dunbara279bc32009-09-20 02:20:51 +00003111
Chris Lattnerdf986172009-01-02 07:01:27 +00003112 Fn->setLinkage((GlobalValue::LinkageTypes)Linkage);
3113 Fn->setVisibility((GlobalValue::VisibilityTypes)Visibility);
3114 Fn->setCallingConv(CC);
3115 Fn->setAttributes(PAL);
Rafael Espindolabea46262011-01-08 16:42:36 +00003116 Fn->setUnnamedAddr(UnnamedAddr);
Chris Lattnerdf986172009-01-02 07:01:27 +00003117 Fn->setAlignment(Alignment);
3118 Fn->setSection(Section);
3119 if (!GC.empty()) Fn->setGC(GC.c_str());
Peter Collingbourne1e3037f2013-09-16 01:08:15 +00003120 Fn->setPrefixData(Prefix);
Bill Wendlingbaad55c2013-02-08 06:32:06 +00003121 ForwardRefAttrGroups[Fn] = FwdRefAttrGrps;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003122
Chris Lattnerdf986172009-01-02 07:01:27 +00003123 // Add all of the arguments we parsed to the function.
3124 Function::arg_iterator ArgIt = Fn->arg_begin();
3125 for (unsigned i = 0, e = ArgList.size(); i != e; ++i, ++ArgIt) {
3126 // If the argument has a name, insert it into the argument symbol table.
3127 if (ArgList[i].Name.empty()) continue;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003128
Chris Lattnerdf986172009-01-02 07:01:27 +00003129 // Set the name, if it conflicted, it will be auto-renamed.
3130 ArgIt->setName(ArgList[i].Name);
Daniel Dunbara279bc32009-09-20 02:20:51 +00003131
Benjamin Krameraf812352010-10-16 11:28:23 +00003132 if (ArgIt->getName() != ArgList[i].Name)
Chris Lattnerdf986172009-01-02 07:01:27 +00003133 return Error(ArgList[i].Loc, "redefinition of argument '%" +
3134 ArgList[i].Name + "'");
3135 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003136
Chris Lattnerdf986172009-01-02 07:01:27 +00003137 return false;
3138}
3139
3140
3141/// ParseFunctionBody
3142/// ::= '{' BasicBlock+ '}'
Chris Lattnerdf986172009-01-02 07:01:27 +00003143///
3144bool LLParser::ParseFunctionBody(Function &Fn) {
Chris Lattner6b7c89e2011-06-17 06:42:57 +00003145 if (Lex.getKind() != lltok::lbrace)
Chris Lattnerdf986172009-01-02 07:01:27 +00003146 return TokError("expected '{' in function body");
3147 Lex.Lex(); // eat the {.
Daniel Dunbara279bc32009-09-20 02:20:51 +00003148
Chris Lattner09d9ef42009-10-28 03:39:23 +00003149 int FunctionNumber = -1;
3150 if (!Fn.hasName()) FunctionNumber = NumberedVals.size()-1;
Michael Ilseman407a6162012-11-15 22:34:00 +00003151
Chris Lattner09d9ef42009-10-28 03:39:23 +00003152 PerFunctionState PFS(*this, Fn, FunctionNumber);
Daniel Dunbara279bc32009-09-20 02:20:51 +00003153
Chris Lattner2fdf8db2010-01-09 19:20:07 +00003154 // We need at least one basic block.
Chris Lattner6b7c89e2011-06-17 06:42:57 +00003155 if (Lex.getKind() == lltok::rbrace)
Chris Lattner2fdf8db2010-01-09 19:20:07 +00003156 return TokError("function body requires at least one basic block");
Michael Ilseman407a6162012-11-15 22:34:00 +00003157
Chris Lattner6b7c89e2011-06-17 06:42:57 +00003158 while (Lex.getKind() != lltok::rbrace)
Chris Lattnerdf986172009-01-02 07:01:27 +00003159 if (ParseBasicBlock(PFS)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003160
Chris Lattnerdf986172009-01-02 07:01:27 +00003161 // Eat the }.
3162 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +00003163
Chris Lattnerdf986172009-01-02 07:01:27 +00003164 // Verify function is ok.
Chris Lattner09d9ef42009-10-28 03:39:23 +00003165 return PFS.FinishFunction();
Chris Lattnerdf986172009-01-02 07:01:27 +00003166}
3167
3168/// ParseBasicBlock
3169/// ::= LabelStr? Instruction*
3170bool LLParser::ParseBasicBlock(PerFunctionState &PFS) {
3171 // If this basic block starts out with a name, remember it.
3172 std::string Name;
3173 LocTy NameLoc = Lex.getLoc();
3174 if (Lex.getKind() == lltok::LabelStr) {
3175 Name = Lex.getStrVal();
3176 Lex.Lex();
3177 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003178
Chris Lattnerdf986172009-01-02 07:01:27 +00003179 BasicBlock *BB = PFS.DefineBB(Name, NameLoc);
3180 if (BB == 0) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003181
Chris Lattnerdf986172009-01-02 07:01:27 +00003182 std::string NameStr;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003183
Chris Lattnerdf986172009-01-02 07:01:27 +00003184 // Parse the instructions in this block until we get a terminator.
3185 Instruction *Inst;
3186 do {
3187 // This instruction may have three possibilities for a name: a) none
3188 // specified, b) name specified "%foo =", c) number specified: "%4 =".
3189 LocTy NameLoc = Lex.getLoc();
3190 int NameID = -1;
3191 NameStr = "";
Daniel Dunbara279bc32009-09-20 02:20:51 +00003192
Chris Lattnerdf986172009-01-02 07:01:27 +00003193 if (Lex.getKind() == lltok::LocalVarID) {
3194 NameID = Lex.getUIntVal();
3195 Lex.Lex();
3196 if (ParseToken(lltok::equal, "expected '=' after instruction id"))
3197 return true;
Chris Lattner7a1b9bd2011-06-17 06:36:20 +00003198 } else if (Lex.getKind() == lltok::LocalVar) {
Chris Lattnerdf986172009-01-02 07:01:27 +00003199 NameStr = Lex.getStrVal();
3200 Lex.Lex();
3201 if (ParseToken(lltok::equal, "expected '=' after instruction name"))
3202 return true;
3203 }
Devang Patelf633a062009-09-17 23:04:48 +00003204
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00003205 switch (ParseInstruction(Inst, BB, PFS)) {
Craig Topper85814382012-02-07 05:05:23 +00003206 default: llvm_unreachable("Unknown ParseInstruction result!");
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00003207 case InstError: return true;
3208 case InstNormal:
Chris Lattner4ba9d9b2010-04-07 04:08:57 +00003209 BB->getInstList().push_back(Inst);
3210
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00003211 // With a normal result, we check to see if the instruction is followed by
3212 // a comma and metadata.
3213 if (EatIfPresent(lltok::comma))
Dan Gohman9d072f52010-08-24 02:05:17 +00003214 if (ParseInstructionMetadata(Inst, &PFS))
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00003215 return true;
3216 break;
3217 case InstExtraComma:
Chris Lattner4ba9d9b2010-04-07 04:08:57 +00003218 BB->getInstList().push_back(Inst);
3219
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00003220 // If the instruction parser ate an extra comma at the end of it, it
3221 // *must* be followed by metadata.
Dan Gohman9d072f52010-08-24 02:05:17 +00003222 if (ParseInstructionMetadata(Inst, &PFS))
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00003223 return true;
Michael Ilseman407a6162012-11-15 22:34:00 +00003224 break;
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00003225 }
Devang Patelf633a062009-09-17 23:04:48 +00003226
Chris Lattnerdf986172009-01-02 07:01:27 +00003227 // Set the name on the instruction.
3228 if (PFS.SetInstName(NameID, NameStr, NameLoc, Inst)) return true;
3229 } while (!isa<TerminatorInst>(Inst));
Daniel Dunbara279bc32009-09-20 02:20:51 +00003230
Chris Lattnerdf986172009-01-02 07:01:27 +00003231 return false;
3232}
3233
3234//===----------------------------------------------------------------------===//
3235// Instruction Parsing.
3236//===----------------------------------------------------------------------===//
3237
3238/// ParseInstruction - Parse one of the many different instructions.
3239///
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00003240int LLParser::ParseInstruction(Instruction *&Inst, BasicBlock *BB,
3241 PerFunctionState &PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00003242 lltok::Kind Token = Lex.getKind();
3243 if (Token == lltok::Eof)
3244 return TokError("found end of file when expecting more instructions");
3245 LocTy Loc = Lex.getLoc();
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00003246 unsigned KeywordVal = Lex.getUIntVal();
Chris Lattnerdf986172009-01-02 07:01:27 +00003247 Lex.Lex(); // Eat the keyword.
Daniel Dunbara279bc32009-09-20 02:20:51 +00003248
Chris Lattnerdf986172009-01-02 07:01:27 +00003249 switch (Token) {
3250 default: return Error(Loc, "expected instruction opcode");
3251 // Terminator Instructions.
Owen Anderson1d0be152009-08-13 21:58:54 +00003252 case lltok::kw_unreachable: Inst = new UnreachableInst(Context); return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00003253 case lltok::kw_ret: return ParseRet(Inst, BB, PFS);
3254 case lltok::kw_br: return ParseBr(Inst, PFS);
3255 case lltok::kw_switch: return ParseSwitch(Inst, PFS);
Chris Lattnerab21db72009-10-28 00:19:10 +00003256 case lltok::kw_indirectbr: return ParseIndirectBr(Inst, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00003257 case lltok::kw_invoke: return ParseInvoke(Inst, PFS);
Bill Wendlingdccc03b2011-07-31 06:30:59 +00003258 case lltok::kw_resume: return ParseResume(Inst, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00003259 // Binary Operators.
3260 case lltok::kw_add:
3261 case lltok::kw_sub:
Chris Lattnerf067d582011-02-07 16:40:21 +00003262 case lltok::kw_mul:
3263 case lltok::kw_shl: {
Chris Lattnerf067d582011-02-07 16:40:21 +00003264 bool NUW = EatIfPresent(lltok::kw_nuw);
3265 bool NSW = EatIfPresent(lltok::kw_nsw);
3266 if (!NUW) NUW = EatIfPresent(lltok::kw_nuw);
Michael Ilseman407a6162012-11-15 22:34:00 +00003267
Chris Lattnerf067d582011-02-07 16:40:21 +00003268 if (ParseArithmetic(Inst, PFS, KeywordVal, 1)) return true;
Michael Ilseman407a6162012-11-15 22:34:00 +00003269
Chris Lattnerf067d582011-02-07 16:40:21 +00003270 if (NUW) cast<BinaryOperator>(Inst)->setHasNoUnsignedWrap(true);
3271 if (NSW) cast<BinaryOperator>(Inst)->setHasNoSignedWrap(true);
3272 return false;
Dan Gohman59858cf2009-07-27 16:11:46 +00003273 }
Dan Gohmanae3a0be2009-06-04 22:49:04 +00003274 case lltok::kw_fadd:
3275 case lltok::kw_fsub:
Michael Ilseman15c13d32012-11-27 00:42:44 +00003276 case lltok::kw_fmul:
3277 case lltok::kw_fdiv:
3278 case lltok::kw_frem: {
3279 FastMathFlags FMF = EatFastMathFlagsIfPresent();
3280 int Res = ParseArithmetic(Inst, PFS, KeywordVal, 2);
3281 if (Res != 0)
3282 return Res;
3283 if (FMF.any())
3284 Inst->setFastMathFlags(FMF);
3285 return 0;
3286 }
Dan Gohmanae3a0be2009-06-04 22:49:04 +00003287
Chris Lattner35bda892011-02-06 21:44:57 +00003288 case lltok::kw_sdiv:
Chris Lattnerf067d582011-02-07 16:40:21 +00003289 case lltok::kw_udiv:
3290 case lltok::kw_lshr:
3291 case lltok::kw_ashr: {
3292 bool Exact = EatIfPresent(lltok::kw_exact);
3293
3294 if (ParseArithmetic(Inst, PFS, KeywordVal, 1)) return true;
3295 if (Exact) cast<BinaryOperator>(Inst)->setIsExact(true);
3296 return false;
Dan Gohman59858cf2009-07-27 16:11:46 +00003297 }
3298
Chris Lattnerdf986172009-01-02 07:01:27 +00003299 case lltok::kw_urem:
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00003300 case lltok::kw_srem: return ParseArithmetic(Inst, PFS, KeywordVal, 1);
Chris Lattnerdf986172009-01-02 07:01:27 +00003301 case lltok::kw_and:
3302 case lltok::kw_or:
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00003303 case lltok::kw_xor: return ParseLogical(Inst, PFS, KeywordVal);
Chris Lattnerdf986172009-01-02 07:01:27 +00003304 case lltok::kw_icmp:
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00003305 case lltok::kw_fcmp: return ParseCompare(Inst, PFS, KeywordVal);
Chris Lattnerdf986172009-01-02 07:01:27 +00003306 // Casts.
3307 case lltok::kw_trunc:
3308 case lltok::kw_zext:
3309 case lltok::kw_sext:
3310 case lltok::kw_fptrunc:
3311 case lltok::kw_fpext:
3312 case lltok::kw_bitcast:
3313 case lltok::kw_uitofp:
3314 case lltok::kw_sitofp:
3315 case lltok::kw_fptoui:
Daniel Dunbara279bc32009-09-20 02:20:51 +00003316 case lltok::kw_fptosi:
Chris Lattnerdf986172009-01-02 07:01:27 +00003317 case lltok::kw_inttoptr:
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00003318 case lltok::kw_ptrtoint: return ParseCast(Inst, PFS, KeywordVal);
Chris Lattnerdf986172009-01-02 07:01:27 +00003319 // Other.
3320 case lltok::kw_select: return ParseSelect(Inst, PFS);
Chris Lattner0088a5c2009-01-05 08:18:44 +00003321 case lltok::kw_va_arg: return ParseVA_Arg(Inst, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00003322 case lltok::kw_extractelement: return ParseExtractElement(Inst, PFS);
3323 case lltok::kw_insertelement: return ParseInsertElement(Inst, PFS);
3324 case lltok::kw_shufflevector: return ParseShuffleVector(Inst, PFS);
3325 case lltok::kw_phi: return ParsePHI(Inst, PFS);
Bill Wendlinge6e88262011-08-12 20:24:12 +00003326 case lltok::kw_landingpad: return ParseLandingPad(Inst, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00003327 case lltok::kw_call: return ParseCall(Inst, PFS, false);
3328 case lltok::kw_tail: return ParseCall(Inst, PFS, true);
3329 // Memory.
Victor Hernandez13ad5aa2009-10-17 00:00:19 +00003330 case lltok::kw_alloca: return ParseAlloc(Inst, PFS);
Chris Lattnerfbe910e2011-11-27 06:56:53 +00003331 case lltok::kw_load: return ParseLoad(Inst, PFS);
3332 case lltok::kw_store: return ParseStore(Inst, PFS);
Eli Friedmanf03bb262011-08-12 22:50:01 +00003333 case lltok::kw_cmpxchg: return ParseCmpXchg(Inst, PFS);
3334 case lltok::kw_atomicrmw: return ParseAtomicRMW(Inst, PFS);
Eli Friedman47f35132011-07-25 23:16:38 +00003335 case lltok::kw_fence: return ParseFence(Inst, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00003336 case lltok::kw_getelementptr: return ParseGetElementPtr(Inst, PFS);
3337 case lltok::kw_extractvalue: return ParseExtractValue(Inst, PFS);
3338 case lltok::kw_insertvalue: return ParseInsertValue(Inst, PFS);
3339 }
3340}
3341
3342/// ParseCmpPredicate - Parse an integer or fp predicate, based on Kind.
3343bool LLParser::ParseCmpPredicate(unsigned &P, unsigned Opc) {
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00003344 if (Opc == Instruction::FCmp) {
Chris Lattnerdf986172009-01-02 07:01:27 +00003345 switch (Lex.getKind()) {
David Tweedd80d6082013-01-07 13:32:38 +00003346 default: return TokError("expected fcmp predicate (e.g. 'oeq')");
Chris Lattnerdf986172009-01-02 07:01:27 +00003347 case lltok::kw_oeq: P = CmpInst::FCMP_OEQ; break;
3348 case lltok::kw_one: P = CmpInst::FCMP_ONE; break;
3349 case lltok::kw_olt: P = CmpInst::FCMP_OLT; break;
3350 case lltok::kw_ogt: P = CmpInst::FCMP_OGT; break;
3351 case lltok::kw_ole: P = CmpInst::FCMP_OLE; break;
3352 case lltok::kw_oge: P = CmpInst::FCMP_OGE; break;
3353 case lltok::kw_ord: P = CmpInst::FCMP_ORD; break;
3354 case lltok::kw_uno: P = CmpInst::FCMP_UNO; break;
3355 case lltok::kw_ueq: P = CmpInst::FCMP_UEQ; break;
3356 case lltok::kw_une: P = CmpInst::FCMP_UNE; break;
3357 case lltok::kw_ult: P = CmpInst::FCMP_ULT; break;
3358 case lltok::kw_ugt: P = CmpInst::FCMP_UGT; break;
3359 case lltok::kw_ule: P = CmpInst::FCMP_ULE; break;
3360 case lltok::kw_uge: P = CmpInst::FCMP_UGE; break;
3361 case lltok::kw_true: P = CmpInst::FCMP_TRUE; break;
3362 case lltok::kw_false: P = CmpInst::FCMP_FALSE; break;
3363 }
3364 } else {
3365 switch (Lex.getKind()) {
David Tweedd80d6082013-01-07 13:32:38 +00003366 default: return TokError("expected icmp predicate (e.g. 'eq')");
Chris Lattnerdf986172009-01-02 07:01:27 +00003367 case lltok::kw_eq: P = CmpInst::ICMP_EQ; break;
3368 case lltok::kw_ne: P = CmpInst::ICMP_NE; break;
3369 case lltok::kw_slt: P = CmpInst::ICMP_SLT; break;
3370 case lltok::kw_sgt: P = CmpInst::ICMP_SGT; break;
3371 case lltok::kw_sle: P = CmpInst::ICMP_SLE; break;
3372 case lltok::kw_sge: P = CmpInst::ICMP_SGE; break;
3373 case lltok::kw_ult: P = CmpInst::ICMP_ULT; break;
3374 case lltok::kw_ugt: P = CmpInst::ICMP_UGT; break;
3375 case lltok::kw_ule: P = CmpInst::ICMP_ULE; break;
3376 case lltok::kw_uge: P = CmpInst::ICMP_UGE; break;
3377 }
3378 }
3379 Lex.Lex();
3380 return false;
3381}
3382
3383//===----------------------------------------------------------------------===//
3384// Terminator Instructions.
3385//===----------------------------------------------------------------------===//
3386
3387/// ParseRet - Parse a return instruction.
Chris Lattner3f3a0f62009-12-29 21:25:40 +00003388/// ::= 'ret' void (',' !dbg, !1)*
3389/// ::= 'ret' TypeAndValue (',' !dbg, !1)*
Chris Lattner437544f2011-06-17 06:49:41 +00003390bool LLParser::ParseRet(Instruction *&Inst, BasicBlock *BB,
Chris Lattner1afcace2011-07-09 17:41:24 +00003391 PerFunctionState &PFS) {
3392 SMLoc TypeLoc = Lex.getLoc();
3393 Type *Ty = 0;
Chris Lattnera9a9e072009-03-09 04:49:14 +00003394 if (ParseType(Ty, true /*void allowed*/)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003395
Chris Lattner1afcace2011-07-09 17:41:24 +00003396 Type *ResType = PFS.getFunction().getReturnType();
Michael Ilseman407a6162012-11-15 22:34:00 +00003397
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00003398 if (Ty->isVoidTy()) {
Chris Lattner1afcace2011-07-09 17:41:24 +00003399 if (!ResType->isVoidTy())
3400 return Error(TypeLoc, "value doesn't match function result type '" +
3401 getTypeString(ResType) + "'");
Michael Ilseman407a6162012-11-15 22:34:00 +00003402
Owen Anderson1d0be152009-08-13 21:58:54 +00003403 Inst = ReturnInst::Create(Context);
Chris Lattnerdf986172009-01-02 07:01:27 +00003404 return false;
3405 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003406
Chris Lattnerdf986172009-01-02 07:01:27 +00003407 Value *RV;
3408 if (ParseValue(Ty, RV, PFS)) return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00003409
Chris Lattner1afcace2011-07-09 17:41:24 +00003410 if (ResType != RV->getType())
3411 return Error(TypeLoc, "value doesn't match function result type '" +
3412 getTypeString(ResType) + "'");
Michael Ilseman407a6162012-11-15 22:34:00 +00003413
Owen Anderson1d0be152009-08-13 21:58:54 +00003414 Inst = ReturnInst::Create(Context, RV);
Chris Lattner437544f2011-06-17 06:49:41 +00003415 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00003416}
3417
3418
3419/// ParseBr
3420/// ::= 'br' TypeAndValue
3421/// ::= 'br' TypeAndValue ',' TypeAndValue ',' TypeAndValue
3422bool LLParser::ParseBr(Instruction *&Inst, PerFunctionState &PFS) {
3423 LocTy Loc, Loc2;
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003424 Value *Op0;
3425 BasicBlock *Op1, *Op2;
Chris Lattnerdf986172009-01-02 07:01:27 +00003426 if (ParseTypeAndValue(Op0, Loc, PFS)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003427
Chris Lattnerdf986172009-01-02 07:01:27 +00003428 if (BasicBlock *BB = dyn_cast<BasicBlock>(Op0)) {
3429 Inst = BranchInst::Create(BB);
3430 return false;
3431 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003432
Owen Anderson1d0be152009-08-13 21:58:54 +00003433 if (Op0->getType() != Type::getInt1Ty(Context))
Chris Lattnerdf986172009-01-02 07:01:27 +00003434 return Error(Loc, "branch condition must have 'i1' type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003435
Chris Lattnerdf986172009-01-02 07:01:27 +00003436 if (ParseToken(lltok::comma, "expected ',' after branch condition") ||
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003437 ParseTypeAndBasicBlock(Op1, Loc, PFS) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003438 ParseToken(lltok::comma, "expected ',' after true destination") ||
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003439 ParseTypeAndBasicBlock(Op2, Loc2, PFS))
Chris Lattnerdf986172009-01-02 07:01:27 +00003440 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003441
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003442 Inst = BranchInst::Create(Op1, Op2, Op0);
Chris Lattnerdf986172009-01-02 07:01:27 +00003443 return false;
3444}
3445
3446/// ParseSwitch
3447/// Instruction
3448/// ::= 'switch' TypeAndValue ',' TypeAndValue '[' JumpTable ']'
3449/// JumpTable
3450/// ::= (TypeAndValue ',' TypeAndValue)*
3451bool LLParser::ParseSwitch(Instruction *&Inst, PerFunctionState &PFS) {
3452 LocTy CondLoc, BBLoc;
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003453 Value *Cond;
3454 BasicBlock *DefaultBB;
Chris Lattnerdf986172009-01-02 07:01:27 +00003455 if (ParseTypeAndValue(Cond, CondLoc, PFS) ||
3456 ParseToken(lltok::comma, "expected ',' after switch condition") ||
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003457 ParseTypeAndBasicBlock(DefaultBB, BBLoc, PFS) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003458 ParseToken(lltok::lsquare, "expected '[' with switch table"))
3459 return true;
3460
Duncan Sands1df98592010-02-16 11:11:14 +00003461 if (!Cond->getType()->isIntegerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00003462 return Error(CondLoc, "switch condition must have integer type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003463
Chris Lattnerdf986172009-01-02 07:01:27 +00003464 // Parse the jump table pairs.
3465 SmallPtrSet<Value*, 32> SeenCases;
3466 SmallVector<std::pair<ConstantInt*, BasicBlock*>, 32> Table;
3467 while (Lex.getKind() != lltok::rsquare) {
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003468 Value *Constant;
3469 BasicBlock *DestBB;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003470
Chris Lattnerdf986172009-01-02 07:01:27 +00003471 if (ParseTypeAndValue(Constant, CondLoc, PFS) ||
3472 ParseToken(lltok::comma, "expected ',' after case value") ||
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003473 ParseTypeAndBasicBlock(DestBB, PFS))
Chris Lattnerdf986172009-01-02 07:01:27 +00003474 return true;
Michael Ilseman407a6162012-11-15 22:34:00 +00003475
Chris Lattnerdf986172009-01-02 07:01:27 +00003476 if (!SeenCases.insert(Constant))
3477 return Error(CondLoc, "duplicate case value in switch");
3478 if (!isa<ConstantInt>(Constant))
3479 return Error(CondLoc, "case value is not a constant integer");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003480
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003481 Table.push_back(std::make_pair(cast<ConstantInt>(Constant), DestBB));
Chris Lattnerdf986172009-01-02 07:01:27 +00003482 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003483
Chris Lattnerdf986172009-01-02 07:01:27 +00003484 Lex.Lex(); // Eat the ']'.
Daniel Dunbara279bc32009-09-20 02:20:51 +00003485
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003486 SwitchInst *SI = SwitchInst::Create(Cond, DefaultBB, Table.size());
Chris Lattnerdf986172009-01-02 07:01:27 +00003487 for (unsigned i = 0, e = Table.size(); i != e; ++i)
3488 SI->addCase(Table[i].first, Table[i].second);
3489 Inst = SI;
3490 return false;
3491}
3492
Chris Lattnerab21db72009-10-28 00:19:10 +00003493/// ParseIndirectBr
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003494/// Instruction
Chris Lattnerab21db72009-10-28 00:19:10 +00003495/// ::= 'indirectbr' TypeAndValue ',' '[' LabelList ']'
3496bool LLParser::ParseIndirectBr(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003497 LocTy AddrLoc;
3498 Value *Address;
3499 if (ParseTypeAndValue(Address, AddrLoc, PFS) ||
Chris Lattnerab21db72009-10-28 00:19:10 +00003500 ParseToken(lltok::comma, "expected ',' after indirectbr address") ||
3501 ParseToken(lltok::lsquare, "expected '[' with indirectbr"))
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003502 return true;
Michael Ilseman407a6162012-11-15 22:34:00 +00003503
Duncan Sands1df98592010-02-16 11:11:14 +00003504 if (!Address->getType()->isPointerTy())
Chris Lattnerab21db72009-10-28 00:19:10 +00003505 return Error(AddrLoc, "indirectbr address must have pointer type");
Michael Ilseman407a6162012-11-15 22:34:00 +00003506
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003507 // Parse the destination list.
3508 SmallVector<BasicBlock*, 16> DestList;
Michael Ilseman407a6162012-11-15 22:34:00 +00003509
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003510 if (Lex.getKind() != lltok::rsquare) {
3511 BasicBlock *DestBB;
3512 if (ParseTypeAndBasicBlock(DestBB, PFS))
3513 return true;
3514 DestList.push_back(DestBB);
Michael Ilseman407a6162012-11-15 22:34:00 +00003515
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003516 while (EatIfPresent(lltok::comma)) {
3517 if (ParseTypeAndBasicBlock(DestBB, PFS))
3518 return true;
3519 DestList.push_back(DestBB);
3520 }
3521 }
Michael Ilseman407a6162012-11-15 22:34:00 +00003522
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003523 if (ParseToken(lltok::rsquare, "expected ']' at end of block list"))
3524 return true;
3525
Chris Lattnerab21db72009-10-28 00:19:10 +00003526 IndirectBrInst *IBI = IndirectBrInst::Create(Address, DestList.size());
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003527 for (unsigned i = 0, e = DestList.size(); i != e; ++i)
3528 IBI->addDestination(DestList[i]);
3529 Inst = IBI;
3530 return false;
3531}
3532
3533
Chris Lattnerdf986172009-01-02 07:01:27 +00003534/// ParseInvoke
3535/// ::= 'invoke' OptionalCallingConv OptionalAttrs Type Value ParamList
3536/// OptionalAttrs 'to' TypeAndValue 'unwind' TypeAndValue
3537bool LLParser::ParseInvoke(Instruction *&Inst, PerFunctionState &PFS) {
3538 LocTy CallLoc = Lex.getLoc();
Bill Wendling702cc912012-10-15 20:35:56 +00003539 AttrBuilder RetAttrs, FnAttrs;
Bill Wendlingbaad55c2013-02-08 06:32:06 +00003540 std::vector<unsigned> FwdRefAttrGrps;
Bill Wendling143d4642013-02-22 00:12:35 +00003541 LocTy NoBuiltinLoc;
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00003542 CallingConv::ID CC;
Chris Lattner1afcace2011-07-09 17:41:24 +00003543 Type *RetType = 0;
Chris Lattnerdf986172009-01-02 07:01:27 +00003544 LocTy RetTypeLoc;
3545 ValID CalleeID;
3546 SmallVector<ParamInfo, 16> ArgList;
3547
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003548 BasicBlock *NormalBB, *UnwindBB;
Chris Lattnerdf986172009-01-02 07:01:27 +00003549 if (ParseOptionalCallingConv(CC) ||
Bill Wendlinge01b81b2012-12-04 23:40:58 +00003550 ParseOptionalReturnAttrs(RetAttrs) ||
Chris Lattnera9a9e072009-03-09 04:49:14 +00003551 ParseType(RetType, RetTypeLoc, true /*void allowed*/) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003552 ParseValID(CalleeID) ||
3553 ParseParameterList(ArgList, PFS) ||
Bill Wendling143d4642013-02-22 00:12:35 +00003554 ParseFnAttributeValuePairs(FnAttrs, FwdRefAttrGrps, false,
3555 NoBuiltinLoc) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003556 ParseToken(lltok::kw_to, "expected 'to' in invoke") ||
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003557 ParseTypeAndBasicBlock(NormalBB, PFS) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003558 ParseToken(lltok::kw_unwind, "expected 'unwind' in invoke") ||
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003559 ParseTypeAndBasicBlock(UnwindBB, PFS))
Chris Lattnerdf986172009-01-02 07:01:27 +00003560 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003561
Chris Lattnerdf986172009-01-02 07:01:27 +00003562 // If RetType is a non-function pointer type, then this is the short syntax
3563 // for the call, which means that RetType is just the return type. Infer the
3564 // rest of the function argument types from the arguments that are present.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00003565 PointerType *PFTy = 0;
3566 FunctionType *Ty = 0;
Chris Lattnerdf986172009-01-02 07:01:27 +00003567 if (!(PFTy = dyn_cast<PointerType>(RetType)) ||
3568 !(Ty = dyn_cast<FunctionType>(PFTy->getElementType()))) {
3569 // Pull out the types of all of the arguments...
Jay Foad5fdd6c82011-07-12 14:06:48 +00003570 std::vector<Type*> ParamTypes;
Chris Lattnerdf986172009-01-02 07:01:27 +00003571 for (unsigned i = 0, e = ArgList.size(); i != e; ++i)
3572 ParamTypes.push_back(ArgList[i].V->getType());
Daniel Dunbara279bc32009-09-20 02:20:51 +00003573
Chris Lattnerdf986172009-01-02 07:01:27 +00003574 if (!FunctionType::isValidReturnType(RetType))
3575 return Error(RetTypeLoc, "Invalid result type for LLVM function");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003576
Owen Andersondebcb012009-07-29 22:17:13 +00003577 Ty = FunctionType::get(RetType, ParamTypes, false);
3578 PFTy = PointerType::getUnqual(Ty);
Chris Lattnerdf986172009-01-02 07:01:27 +00003579 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003580
Chris Lattnerdf986172009-01-02 07:01:27 +00003581 // Look up the callee.
3582 Value *Callee;
Victor Hernandez92f238d2010-01-11 22:31:58 +00003583 if (ConvertValIDToValue(PFTy, CalleeID, Callee, &PFS)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003584
Bill Wendling034b94b2012-12-19 07:18:57 +00003585 // Set up the Attribute for the function.
Bill Wendlinga1683d62013-01-27 02:24:02 +00003586 SmallVector<AttributeSet, 8> Attrs;
Bill Wendlinge603fe42012-09-19 23:54:18 +00003587 if (RetAttrs.hasAttributes())
Bill Wendlinga1683d62013-01-27 02:24:02 +00003588 Attrs.push_back(AttributeSet::get(RetType->getContext(),
3589 AttributeSet::ReturnIndex,
3590 RetAttrs));
Daniel Dunbara279bc32009-09-20 02:20:51 +00003591
Chris Lattnerdf986172009-01-02 07:01:27 +00003592 SmallVector<Value*, 8> Args;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003593
Chris Lattnerdf986172009-01-02 07:01:27 +00003594 // Loop through FunctionType's arguments and ensure they are specified
3595 // correctly. Also, gather any parameter attributes.
3596 FunctionType::param_iterator I = Ty->param_begin();
3597 FunctionType::param_iterator E = Ty->param_end();
3598 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
Chris Lattnerdb125cf2011-07-18 04:54:35 +00003599 Type *ExpectedTy = 0;
Chris Lattnerdf986172009-01-02 07:01:27 +00003600 if (I != E) {
3601 ExpectedTy = *I++;
3602 } else if (!Ty->isVarArg()) {
3603 return Error(ArgList[i].Loc, "too many arguments specified");
3604 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003605
Chris Lattnerdf986172009-01-02 07:01:27 +00003606 if (ExpectedTy && ExpectedTy != ArgList[i].V->getType())
3607 return Error(ArgList[i].Loc, "argument is not of expected type '" +
Chris Lattner0cd0d882011-06-18 21:18:23 +00003608 getTypeString(ExpectedTy) + "'");
Chris Lattnerdf986172009-01-02 07:01:27 +00003609 Args.push_back(ArgList[i].V);
Bill Wendling73dee182013-01-31 00:29:54 +00003610 if (ArgList[i].Attrs.hasAttributes(i + 1)) {
3611 AttrBuilder B(ArgList[i].Attrs, i + 1);
Bill Wendlinga1683d62013-01-27 02:24:02 +00003612 Attrs.push_back(AttributeSet::get(RetType->getContext(), i + 1, B));
3613 }
Chris Lattnerdf986172009-01-02 07:01:27 +00003614 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003615
Chris Lattnerdf986172009-01-02 07:01:27 +00003616 if (I != E)
3617 return Error(CallLoc, "not enough parameters specified for call");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003618
Bill Wendlinge603fe42012-09-19 23:54:18 +00003619 if (FnAttrs.hasAttributes())
Bill Wendlinga1683d62013-01-27 02:24:02 +00003620 Attrs.push_back(AttributeSet::get(RetType->getContext(),
3621 AttributeSet::FunctionIndex,
3622 FnAttrs));
Daniel Dunbara279bc32009-09-20 02:20:51 +00003623
Bill Wendling034b94b2012-12-19 07:18:57 +00003624 // Finish off the Attribute and check them
Bill Wendling99faa3b2012-12-07 23:16:57 +00003625 AttributeSet PAL = AttributeSet::get(Context, Attrs);
Daniel Dunbara279bc32009-09-20 02:20:51 +00003626
Jay Foada3efbb12011-07-15 08:37:34 +00003627 InvokeInst *II = InvokeInst::Create(Callee, NormalBB, UnwindBB, Args);
Chris Lattnerdf986172009-01-02 07:01:27 +00003628 II->setCallingConv(CC);
3629 II->setAttributes(PAL);
Bill Wendlingbaad55c2013-02-08 06:32:06 +00003630 ForwardRefAttrGroups[II] = FwdRefAttrGrps;
Chris Lattnerdf986172009-01-02 07:01:27 +00003631 Inst = II;
3632 return false;
3633}
3634
Bill Wendlingdccc03b2011-07-31 06:30:59 +00003635/// ParseResume
3636/// ::= 'resume' TypeAndValue
3637bool LLParser::ParseResume(Instruction *&Inst, PerFunctionState &PFS) {
3638 Value *Exn; LocTy ExnLoc;
Bill Wendlingdccc03b2011-07-31 06:30:59 +00003639 if (ParseTypeAndValue(Exn, ExnLoc, PFS))
3640 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00003641
Bill Wendlingdccc03b2011-07-31 06:30:59 +00003642 ResumeInst *RI = ResumeInst::Create(Exn);
3643 Inst = RI;
3644 return false;
3645}
Chris Lattnerdf986172009-01-02 07:01:27 +00003646
3647//===----------------------------------------------------------------------===//
3648// Binary Operators.
3649//===----------------------------------------------------------------------===//
3650
3651/// ParseArithmetic
Chris Lattnere914b592009-01-05 08:24:46 +00003652/// ::= ArithmeticOps TypeAndValue ',' Value
3653///
3654/// If OperandType is 0, then any FP or integer operand is allowed. If it is 1,
3655/// then any integer operand is allowed, if it is 2, any fp operand is allowed.
Chris Lattnerdf986172009-01-02 07:01:27 +00003656bool LLParser::ParseArithmetic(Instruction *&Inst, PerFunctionState &PFS,
Chris Lattnere914b592009-01-05 08:24:46 +00003657 unsigned Opc, unsigned OperandType) {
Chris Lattnerdf986172009-01-02 07:01:27 +00003658 LocTy Loc; Value *LHS, *RHS;
3659 if (ParseTypeAndValue(LHS, Loc, PFS) ||
3660 ParseToken(lltok::comma, "expected ',' in arithmetic operation") ||
3661 ParseValue(LHS->getType(), RHS, PFS))
3662 return true;
3663
Chris Lattnere914b592009-01-05 08:24:46 +00003664 bool Valid;
3665 switch (OperandType) {
Torok Edwinc23197a2009-07-14 16:55:14 +00003666 default: llvm_unreachable("Unknown operand type!");
Chris Lattnere914b592009-01-05 08:24:46 +00003667 case 0: // int or FP.
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00003668 Valid = LHS->getType()->isIntOrIntVectorTy() ||
3669 LHS->getType()->isFPOrFPVectorTy();
Chris Lattnere914b592009-01-05 08:24:46 +00003670 break;
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00003671 case 1: Valid = LHS->getType()->isIntOrIntVectorTy(); break;
3672 case 2: Valid = LHS->getType()->isFPOrFPVectorTy(); break;
Chris Lattnere914b592009-01-05 08:24:46 +00003673 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003674
Chris Lattnere914b592009-01-05 08:24:46 +00003675 if (!Valid)
3676 return Error(Loc, "invalid operand type for instruction");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003677
Chris Lattnerdf986172009-01-02 07:01:27 +00003678 Inst = BinaryOperator::Create((Instruction::BinaryOps)Opc, LHS, RHS);
3679 return false;
3680}
3681
3682/// ParseLogical
3683/// ::= ArithmeticOps TypeAndValue ',' Value {
3684bool LLParser::ParseLogical(Instruction *&Inst, PerFunctionState &PFS,
3685 unsigned Opc) {
3686 LocTy Loc; Value *LHS, *RHS;
3687 if (ParseTypeAndValue(LHS, Loc, PFS) ||
3688 ParseToken(lltok::comma, "expected ',' in logical operation") ||
3689 ParseValue(LHS->getType(), RHS, PFS))
3690 return true;
3691
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00003692 if (!LHS->getType()->isIntOrIntVectorTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00003693 return Error(Loc,"instruction requires integer or integer vector operands");
3694
3695 Inst = BinaryOperator::Create((Instruction::BinaryOps)Opc, LHS, RHS);
3696 return false;
3697}
3698
3699
3700/// ParseCompare
3701/// ::= 'icmp' IPredicates TypeAndValue ',' Value
3702/// ::= 'fcmp' FPredicates TypeAndValue ',' Value
Chris Lattnerdf986172009-01-02 07:01:27 +00003703bool LLParser::ParseCompare(Instruction *&Inst, PerFunctionState &PFS,
3704 unsigned Opc) {
3705 // Parse the integer/fp comparison predicate.
3706 LocTy Loc;
3707 unsigned Pred;
3708 Value *LHS, *RHS;
3709 if (ParseCmpPredicate(Pred, Opc) ||
3710 ParseTypeAndValue(LHS, Loc, PFS) ||
3711 ParseToken(lltok::comma, "expected ',' after compare value") ||
3712 ParseValue(LHS->getType(), RHS, PFS))
3713 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003714
Chris Lattnerdf986172009-01-02 07:01:27 +00003715 if (Opc == Instruction::FCmp) {
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00003716 if (!LHS->getType()->isFPOrFPVectorTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00003717 return Error(Loc, "fcmp requires floating point operands");
Dan Gohman1c8a23c2009-08-25 23:17:54 +00003718 Inst = new FCmpInst(CmpInst::Predicate(Pred), LHS, RHS);
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00003719 } else {
3720 assert(Opc == Instruction::ICmp && "Unknown opcode for CmpInst!");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00003721 if (!LHS->getType()->isIntOrIntVectorTy() &&
Nadav Rotem16087692011-12-05 06:29:09 +00003722 !LHS->getType()->getScalarType()->isPointerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00003723 return Error(Loc, "icmp requires integer operands");
Dan Gohman1c8a23c2009-08-25 23:17:54 +00003724 Inst = new ICmpInst(CmpInst::Predicate(Pred), LHS, RHS);
Chris Lattnerdf986172009-01-02 07:01:27 +00003725 }
3726 return false;
3727}
3728
3729//===----------------------------------------------------------------------===//
3730// Other Instructions.
3731//===----------------------------------------------------------------------===//
3732
3733
3734/// ParseCast
3735/// ::= CastOpc TypeAndValue 'to' Type
3736bool LLParser::ParseCast(Instruction *&Inst, PerFunctionState &PFS,
3737 unsigned Opc) {
Chris Lattner1afcace2011-07-09 17:41:24 +00003738 LocTy Loc;
3739 Value *Op;
3740 Type *DestTy = 0;
Chris Lattnerdf986172009-01-02 07:01:27 +00003741 if (ParseTypeAndValue(Op, Loc, PFS) ||
3742 ParseToken(lltok::kw_to, "expected 'to' after cast value") ||
3743 ParseType(DestTy))
3744 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003745
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00003746 if (!CastInst::castIsValid((Instruction::CastOps)Opc, Op, DestTy)) {
3747 CastInst::castIsValid((Instruction::CastOps)Opc, Op, DestTy);
Chris Lattnerdf986172009-01-02 07:01:27 +00003748 return Error(Loc, "invalid cast opcode for cast from '" +
Chris Lattner0cd0d882011-06-18 21:18:23 +00003749 getTypeString(Op->getType()) + "' to '" +
3750 getTypeString(DestTy) + "'");
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00003751 }
Chris Lattnerdf986172009-01-02 07:01:27 +00003752 Inst = CastInst::Create((Instruction::CastOps)Opc, Op, DestTy);
3753 return false;
3754}
3755
3756/// ParseSelect
3757/// ::= 'select' TypeAndValue ',' TypeAndValue ',' TypeAndValue
3758bool LLParser::ParseSelect(Instruction *&Inst, PerFunctionState &PFS) {
3759 LocTy Loc;
3760 Value *Op0, *Op1, *Op2;
3761 if (ParseTypeAndValue(Op0, Loc, PFS) ||
3762 ParseToken(lltok::comma, "expected ',' after select condition") ||
3763 ParseTypeAndValue(Op1, PFS) ||
3764 ParseToken(lltok::comma, "expected ',' after select value") ||
3765 ParseTypeAndValue(Op2, PFS))
3766 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003767
Chris Lattnerdf986172009-01-02 07:01:27 +00003768 if (const char *Reason = SelectInst::areInvalidOperands(Op0, Op1, Op2))
3769 return Error(Loc, Reason);
Daniel Dunbara279bc32009-09-20 02:20:51 +00003770
Chris Lattnerdf986172009-01-02 07:01:27 +00003771 Inst = SelectInst::Create(Op0, Op1, Op2);
3772 return false;
3773}
3774
Chris Lattner0088a5c2009-01-05 08:18:44 +00003775/// ParseVA_Arg
3776/// ::= 'va_arg' TypeAndValue ',' Type
3777bool LLParser::ParseVA_Arg(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00003778 Value *Op;
Chris Lattner1afcace2011-07-09 17:41:24 +00003779 Type *EltTy = 0;
Chris Lattner0088a5c2009-01-05 08:18:44 +00003780 LocTy TypeLoc;
Chris Lattnerdf986172009-01-02 07:01:27 +00003781 if (ParseTypeAndValue(Op, PFS) ||
3782 ParseToken(lltok::comma, "expected ',' after vaarg operand") ||
Chris Lattner0088a5c2009-01-05 08:18:44 +00003783 ParseType(EltTy, TypeLoc))
Chris Lattnerdf986172009-01-02 07:01:27 +00003784 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003785
Chris Lattner0088a5c2009-01-05 08:18:44 +00003786 if (!EltTy->isFirstClassType())
3787 return Error(TypeLoc, "va_arg requires operand with first class type");
Chris Lattnerdf986172009-01-02 07:01:27 +00003788
3789 Inst = new VAArgInst(Op, EltTy);
3790 return false;
3791}
3792
3793/// ParseExtractElement
3794/// ::= 'extractelement' TypeAndValue ',' TypeAndValue
3795bool LLParser::ParseExtractElement(Instruction *&Inst, PerFunctionState &PFS) {
3796 LocTy Loc;
3797 Value *Op0, *Op1;
3798 if (ParseTypeAndValue(Op0, Loc, PFS) ||
3799 ParseToken(lltok::comma, "expected ',' after extract value") ||
3800 ParseTypeAndValue(Op1, PFS))
3801 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003802
Chris Lattnerdf986172009-01-02 07:01:27 +00003803 if (!ExtractElementInst::isValidOperands(Op0, Op1))
3804 return Error(Loc, "invalid extractelement operands");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003805
Eric Christophera3500da2009-07-25 02:28:41 +00003806 Inst = ExtractElementInst::Create(Op0, Op1);
Chris Lattnerdf986172009-01-02 07:01:27 +00003807 return false;
3808}
3809
3810/// ParseInsertElement
3811/// ::= 'insertelement' TypeAndValue ',' TypeAndValue ',' TypeAndValue
3812bool LLParser::ParseInsertElement(Instruction *&Inst, PerFunctionState &PFS) {
3813 LocTy Loc;
3814 Value *Op0, *Op1, *Op2;
3815 if (ParseTypeAndValue(Op0, Loc, PFS) ||
3816 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
3817 ParseTypeAndValue(Op1, PFS) ||
3818 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
3819 ParseTypeAndValue(Op2, PFS))
3820 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003821
Chris Lattnerdf986172009-01-02 07:01:27 +00003822 if (!InsertElementInst::isValidOperands(Op0, Op1, Op2))
Eric Christopher0aaf4e92009-07-23 01:01:32 +00003823 return Error(Loc, "invalid insertelement operands");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003824
Chris Lattnerdf986172009-01-02 07:01:27 +00003825 Inst = InsertElementInst::Create(Op0, Op1, Op2);
3826 return false;
3827}
3828
3829/// ParseShuffleVector
3830/// ::= 'shufflevector' TypeAndValue ',' TypeAndValue ',' TypeAndValue
3831bool LLParser::ParseShuffleVector(Instruction *&Inst, PerFunctionState &PFS) {
3832 LocTy Loc;
3833 Value *Op0, *Op1, *Op2;
3834 if (ParseTypeAndValue(Op0, Loc, PFS) ||
3835 ParseToken(lltok::comma, "expected ',' after shuffle mask") ||
3836 ParseTypeAndValue(Op1, PFS) ||
3837 ParseToken(lltok::comma, "expected ',' after shuffle value") ||
3838 ParseTypeAndValue(Op2, PFS))
3839 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003840
Chris Lattnerdf986172009-01-02 07:01:27 +00003841 if (!ShuffleVectorInst::isValidOperands(Op0, Op1, Op2))
Pete Cooperaf393682012-02-01 23:43:12 +00003842 return Error(Loc, "invalid shufflevector operands");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003843
Chris Lattnerdf986172009-01-02 07:01:27 +00003844 Inst = new ShuffleVectorInst(Op0, Op1, Op2);
3845 return false;
3846}
3847
3848/// ParsePHI
Chris Lattnerc6e20092009-10-18 05:27:44 +00003849/// ::= 'phi' Type '[' Value ',' Value ']' (',' '[' Value ',' Value ']')*
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003850int LLParser::ParsePHI(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattner1afcace2011-07-09 17:41:24 +00003851 Type *Ty = 0; LocTy TypeLoc;
Chris Lattnerdf986172009-01-02 07:01:27 +00003852 Value *Op0, *Op1;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003853
Chris Lattner1afcace2011-07-09 17:41:24 +00003854 if (ParseType(Ty, TypeLoc) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003855 ParseToken(lltok::lsquare, "expected '[' in phi value list") ||
3856 ParseValue(Ty, Op0, PFS) ||
3857 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
Owen Anderson1d0be152009-08-13 21:58:54 +00003858 ParseValue(Type::getLabelTy(Context), Op1, PFS) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003859 ParseToken(lltok::rsquare, "expected ']' in phi value list"))
3860 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003861
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003862 bool AteExtraComma = false;
Chris Lattnerdf986172009-01-02 07:01:27 +00003863 SmallVector<std::pair<Value*, BasicBlock*>, 16> PHIVals;
3864 while (1) {
3865 PHIVals.push_back(std::make_pair(Op0, cast<BasicBlock>(Op1)));
Daniel Dunbara279bc32009-09-20 02:20:51 +00003866
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003867 if (!EatIfPresent(lltok::comma))
Chris Lattnerdf986172009-01-02 07:01:27 +00003868 break;
3869
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003870 if (Lex.getKind() == lltok::MetadataVar) {
3871 AteExtraComma = true;
Devang Patela43d46f2009-10-16 18:45:49 +00003872 break;
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003873 }
Devang Patela43d46f2009-10-16 18:45:49 +00003874
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003875 if (ParseToken(lltok::lsquare, "expected '[' in phi value list") ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003876 ParseValue(Ty, Op0, PFS) ||
3877 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
Owen Anderson1d0be152009-08-13 21:58:54 +00003878 ParseValue(Type::getLabelTy(Context), Op1, PFS) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003879 ParseToken(lltok::rsquare, "expected ']' in phi value list"))
3880 return true;
3881 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003882
Chris Lattnerdf986172009-01-02 07:01:27 +00003883 if (!Ty->isFirstClassType())
3884 return Error(TypeLoc, "phi node must have first class type");
3885
Jay Foad3ecfc862011-03-30 11:28:46 +00003886 PHINode *PN = PHINode::Create(Ty, PHIVals.size());
Chris Lattnerdf986172009-01-02 07:01:27 +00003887 for (unsigned i = 0, e = PHIVals.size(); i != e; ++i)
3888 PN->addIncoming(PHIVals[i].first, PHIVals[i].second);
3889 Inst = PN;
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003890 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerdf986172009-01-02 07:01:27 +00003891}
3892
Bill Wendlinge6e88262011-08-12 20:24:12 +00003893/// ParseLandingPad
3894/// ::= 'landingpad' Type 'personality' TypeAndValue 'cleanup'? Clause+
3895/// Clause
3896/// ::= 'catch' TypeAndValue
3897/// ::= 'filter'
3898/// ::= 'filter' TypeAndValue ( ',' TypeAndValue )*
3899bool LLParser::ParseLandingPad(Instruction *&Inst, PerFunctionState &PFS) {
3900 Type *Ty = 0; LocTy TyLoc;
3901 Value *PersFn; LocTy PersFnLoc;
Bill Wendlinge6e88262011-08-12 20:24:12 +00003902
3903 if (ParseType(Ty, TyLoc) ||
3904 ParseToken(lltok::kw_personality, "expected 'personality'") ||
3905 ParseTypeAndValue(PersFn, PersFnLoc, PFS))
3906 return true;
3907
3908 LandingPadInst *LP = LandingPadInst::Create(Ty, PersFn, 0);
3909 LP->setCleanup(EatIfPresent(lltok::kw_cleanup));
3910
3911 while (Lex.getKind() == lltok::kw_catch || Lex.getKind() == lltok::kw_filter){
3912 LandingPadInst::ClauseType CT;
3913 if (EatIfPresent(lltok::kw_catch))
3914 CT = LandingPadInst::Catch;
3915 else if (EatIfPresent(lltok::kw_filter))
3916 CT = LandingPadInst::Filter;
3917 else
3918 return TokError("expected 'catch' or 'filter' clause type");
3919
3920 Value *V; LocTy VLoc;
3921 if (ParseTypeAndValue(V, VLoc, PFS)) {
3922 delete LP;
3923 return true;
3924 }
3925
Bill Wendling746c8822011-08-12 20:52:25 +00003926 // A 'catch' type expects a non-array constant. A filter clause expects an
3927 // array constant.
3928 if (CT == LandingPadInst::Catch) {
3929 if (isa<ArrayType>(V->getType()))
3930 Error(VLoc, "'catch' clause has an invalid type");
3931 } else {
3932 if (!isa<ArrayType>(V->getType()))
3933 Error(VLoc, "'filter' clause has an invalid type");
3934 }
3935
Bill Wendlinge6e88262011-08-12 20:24:12 +00003936 LP->addClause(V);
3937 }
3938
3939 Inst = LP;
3940 return false;
3941}
3942
Chris Lattnerdf986172009-01-02 07:01:27 +00003943/// ParseCall
3944/// ::= 'tail'? 'call' OptionalCallingConv OptionalAttrs Type Value
3945/// ParameterList OptionalAttrs
3946bool LLParser::ParseCall(Instruction *&Inst, PerFunctionState &PFS,
3947 bool isTail) {
Bill Wendling702cc912012-10-15 20:35:56 +00003948 AttrBuilder RetAttrs, FnAttrs;
Bill Wendlingbaad55c2013-02-08 06:32:06 +00003949 std::vector<unsigned> FwdRefAttrGrps;
Michael Gottesman2253a2f2013-06-27 00:25:01 +00003950 LocTy BuiltinLoc;
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00003951 CallingConv::ID CC;
Chris Lattner1afcace2011-07-09 17:41:24 +00003952 Type *RetType = 0;
Chris Lattnerdf986172009-01-02 07:01:27 +00003953 LocTy RetTypeLoc;
3954 ValID CalleeID;
3955 SmallVector<ParamInfo, 16> ArgList;
3956 LocTy CallLoc = Lex.getLoc();
Daniel Dunbara279bc32009-09-20 02:20:51 +00003957
Chris Lattnerdf986172009-01-02 07:01:27 +00003958 if ((isTail && ParseToken(lltok::kw_call, "expected 'tail call'")) ||
3959 ParseOptionalCallingConv(CC) ||
Bill Wendlinge01b81b2012-12-04 23:40:58 +00003960 ParseOptionalReturnAttrs(RetAttrs) ||
Chris Lattnera9a9e072009-03-09 04:49:14 +00003961 ParseType(RetType, RetTypeLoc, true /*void allowed*/) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003962 ParseValID(CalleeID) ||
3963 ParseParameterList(ArgList, PFS) ||
Bill Wendling143d4642013-02-22 00:12:35 +00003964 ParseFnAttributeValuePairs(FnAttrs, FwdRefAttrGrps, false,
Michael Gottesman2253a2f2013-06-27 00:25:01 +00003965 BuiltinLoc))
Chris Lattnerdf986172009-01-02 07:01:27 +00003966 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003967
Chris Lattnerdf986172009-01-02 07:01:27 +00003968 // If RetType is a non-function pointer type, then this is the short syntax
3969 // for the call, which means that RetType is just the return type. Infer the
3970 // rest of the function argument types from the arguments that are present.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00003971 PointerType *PFTy = 0;
3972 FunctionType *Ty = 0;
Chris Lattnerdf986172009-01-02 07:01:27 +00003973 if (!(PFTy = dyn_cast<PointerType>(RetType)) ||
3974 !(Ty = dyn_cast<FunctionType>(PFTy->getElementType()))) {
3975 // Pull out the types of all of the arguments...
Jay Foad5fdd6c82011-07-12 14:06:48 +00003976 std::vector<Type*> ParamTypes;
Eli Friedman83b4a972010-07-24 23:06:59 +00003977 for (unsigned i = 0, e = ArgList.size(); i != e; ++i)
3978 ParamTypes.push_back(ArgList[i].V->getType());
Daniel Dunbara279bc32009-09-20 02:20:51 +00003979
Chris Lattnerdf986172009-01-02 07:01:27 +00003980 if (!FunctionType::isValidReturnType(RetType))
3981 return Error(RetTypeLoc, "Invalid result type for LLVM function");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003982
Owen Andersondebcb012009-07-29 22:17:13 +00003983 Ty = FunctionType::get(RetType, ParamTypes, false);
3984 PFTy = PointerType::getUnqual(Ty);
Chris Lattnerdf986172009-01-02 07:01:27 +00003985 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003986
Chris Lattnerdf986172009-01-02 07:01:27 +00003987 // Look up the callee.
3988 Value *Callee;
Victor Hernandez92f238d2010-01-11 22:31:58 +00003989 if (ConvertValIDToValue(PFTy, CalleeID, Callee, &PFS)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003990
Bill Wendling034b94b2012-12-19 07:18:57 +00003991 // Set up the Attribute for the function.
Bill Wendlinga1683d62013-01-27 02:24:02 +00003992 SmallVector<AttributeSet, 8> Attrs;
Bill Wendlinge603fe42012-09-19 23:54:18 +00003993 if (RetAttrs.hasAttributes())
Bill Wendlinga1683d62013-01-27 02:24:02 +00003994 Attrs.push_back(AttributeSet::get(RetType->getContext(),
3995 AttributeSet::ReturnIndex,
3996 RetAttrs));
Daniel Dunbara279bc32009-09-20 02:20:51 +00003997
Chris Lattnerdf986172009-01-02 07:01:27 +00003998 SmallVector<Value*, 8> Args;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003999
Chris Lattnerdf986172009-01-02 07:01:27 +00004000 // Loop through FunctionType's arguments and ensure they are specified
4001 // correctly. Also, gather any parameter attributes.
4002 FunctionType::param_iterator I = Ty->param_begin();
4003 FunctionType::param_iterator E = Ty->param_end();
4004 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
Chris Lattnerdb125cf2011-07-18 04:54:35 +00004005 Type *ExpectedTy = 0;
Chris Lattnerdf986172009-01-02 07:01:27 +00004006 if (I != E) {
4007 ExpectedTy = *I++;
4008 } else if (!Ty->isVarArg()) {
4009 return Error(ArgList[i].Loc, "too many arguments specified");
4010 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00004011
Chris Lattnerdf986172009-01-02 07:01:27 +00004012 if (ExpectedTy && ExpectedTy != ArgList[i].V->getType())
4013 return Error(ArgList[i].Loc, "argument is not of expected type '" +
Chris Lattner0cd0d882011-06-18 21:18:23 +00004014 getTypeString(ExpectedTy) + "'");
Chris Lattnerdf986172009-01-02 07:01:27 +00004015 Args.push_back(ArgList[i].V);
Bill Wendling73dee182013-01-31 00:29:54 +00004016 if (ArgList[i].Attrs.hasAttributes(i + 1)) {
4017 AttrBuilder B(ArgList[i].Attrs, i + 1);
Bill Wendlinga1683d62013-01-27 02:24:02 +00004018 Attrs.push_back(AttributeSet::get(RetType->getContext(), i + 1, B));
4019 }
Chris Lattnerdf986172009-01-02 07:01:27 +00004020 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00004021
Chris Lattnerdf986172009-01-02 07:01:27 +00004022 if (I != E)
4023 return Error(CallLoc, "not enough parameters specified for call");
4024
Bill Wendlinge603fe42012-09-19 23:54:18 +00004025 if (FnAttrs.hasAttributes())
Bill Wendlinga1683d62013-01-27 02:24:02 +00004026 Attrs.push_back(AttributeSet::get(RetType->getContext(),
4027 AttributeSet::FunctionIndex,
4028 FnAttrs));
Chris Lattnerdf986172009-01-02 07:01:27 +00004029
Bill Wendling034b94b2012-12-19 07:18:57 +00004030 // Finish off the Attribute and check them
Bill Wendling99faa3b2012-12-07 23:16:57 +00004031 AttributeSet PAL = AttributeSet::get(Context, Attrs);
Daniel Dunbara279bc32009-09-20 02:20:51 +00004032
Jay Foada3efbb12011-07-15 08:37:34 +00004033 CallInst *CI = CallInst::Create(Callee, Args);
Chris Lattnerdf986172009-01-02 07:01:27 +00004034 CI->setTailCall(isTail);
4035 CI->setCallingConv(CC);
4036 CI->setAttributes(PAL);
Bill Wendlingbaad55c2013-02-08 06:32:06 +00004037 ForwardRefAttrGroups[CI] = FwdRefAttrGrps;
Chris Lattnerdf986172009-01-02 07:01:27 +00004038 Inst = CI;
4039 return false;
4040}
4041
4042//===----------------------------------------------------------------------===//
4043// Memory Instructions.
4044//===----------------------------------------------------------------------===//
4045
4046/// ParseAlloc
Devang Patelf633a062009-09-17 23:04:48 +00004047/// ::= 'alloca' Type (',' TypeAndValue)? (',' OptionalInfo)?
Chris Lattnerf3a789d2011-06-17 03:16:47 +00004048int LLParser::ParseAlloc(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00004049 Value *Size = 0;
Chris Lattnereeb4a842009-07-02 23:08:13 +00004050 LocTy SizeLoc;
Chris Lattnerdf986172009-01-02 07:01:27 +00004051 unsigned Alignment = 0;
Chris Lattner1afcace2011-07-09 17:41:24 +00004052 Type *Ty = 0;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00004053 if (ParseType(Ty)) return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00004054
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00004055 bool AteExtraComma = false;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00004056 if (EatIfPresent(lltok::comma)) {
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00004057 if (Lex.getKind() == lltok::kw_align) {
4058 if (ParseOptionalAlignment(Alignment)) return true;
4059 } else if (Lex.getKind() == lltok::MetadataVar) {
4060 AteExtraComma = true;
Devang Patelf633a062009-09-17 23:04:48 +00004061 } else {
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00004062 if (ParseTypeAndValue(Size, SizeLoc, PFS) ||
4063 ParseOptionalCommaAlign(Alignment, AteExtraComma))
4064 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00004065 }
4066 }
4067
Dan Gohmanf75a7d32010-05-28 01:14:11 +00004068 if (Size && !Size->getType()->isIntegerTy())
4069 return Error(SizeLoc, "element count must have integer type");
Chris Lattnerdf986172009-01-02 07:01:27 +00004070
Chris Lattnerf3a789d2011-06-17 03:16:47 +00004071 Inst = new AllocaInst(Ty, Size, Alignment);
4072 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerdf986172009-01-02 07:01:27 +00004073}
4074
4075/// ParseLoad
Eli Friedmanf03bb262011-08-12 22:50:01 +00004076/// ::= 'load' 'volatile'? TypeAndValue (',' 'align' i32)?
Michael Ilseman407a6162012-11-15 22:34:00 +00004077/// ::= 'load' 'atomic' 'volatile'? TypeAndValue
Eli Friedmanf03bb262011-08-12 22:50:01 +00004078/// 'singlethread'? AtomicOrdering (',' 'align' i32)?
Chris Lattnerfbe910e2011-11-27 06:56:53 +00004079int LLParser::ParseLoad(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00004080 Value *Val; LocTy Loc;
Devang Patelf633a062009-09-17 23:04:48 +00004081 unsigned Alignment = 0;
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00004082 bool AteExtraComma = false;
Eli Friedmanf03bb262011-08-12 22:50:01 +00004083 bool isAtomic = false;
Eli Friedman21006d42011-08-09 23:02:53 +00004084 AtomicOrdering Ordering = NotAtomic;
4085 SynchronizationScope Scope = CrossThread;
Eli Friedmanf03bb262011-08-12 22:50:01 +00004086
4087 if (Lex.getKind() == lltok::kw_atomic) {
Eli Friedmanf03bb262011-08-12 22:50:01 +00004088 isAtomic = true;
4089 Lex.Lex();
4090 }
4091
Chris Lattnerfbe910e2011-11-27 06:56:53 +00004092 bool isVolatile = false;
Eli Friedmanf03bb262011-08-12 22:50:01 +00004093 if (Lex.getKind() == lltok::kw_volatile) {
Eli Friedmanf03bb262011-08-12 22:50:01 +00004094 isVolatile = true;
4095 Lex.Lex();
4096 }
4097
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00004098 if (ParseTypeAndValue(Val, Loc, PFS) ||
Eli Friedman21006d42011-08-09 23:02:53 +00004099 ParseScopeAndOrdering(isAtomic, Scope, Ordering) ||
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00004100 ParseOptionalCommaAlign(Alignment, AteExtraComma))
4101 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00004102
Duncan Sands1df98592010-02-16 11:11:14 +00004103 if (!Val->getType()->isPointerTy() ||
Chris Lattnerdf986172009-01-02 07:01:27 +00004104 !cast<PointerType>(Val->getType())->getElementType()->isFirstClassType())
4105 return Error(Loc, "load operand must be a pointer to a first class type");
Eli Friedman21006d42011-08-09 23:02:53 +00004106 if (isAtomic && !Alignment)
4107 return Error(Loc, "atomic load must have explicit non-zero alignment");
4108 if (Ordering == Release || Ordering == AcquireRelease)
4109 return Error(Loc, "atomic load cannot use Release ordering");
Daniel Dunbara279bc32009-09-20 02:20:51 +00004110
Eli Friedman21006d42011-08-09 23:02:53 +00004111 Inst = new LoadInst(Val, "", isVolatile, Alignment, Ordering, Scope);
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00004112 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerdf986172009-01-02 07:01:27 +00004113}
4114
4115/// ParseStore
Eli Friedmanf03bb262011-08-12 22:50:01 +00004116
4117/// ::= 'store' 'volatile'? TypeAndValue ',' TypeAndValue (',' 'align' i32)?
4118/// ::= 'store' 'atomic' 'volatile'? TypeAndValue ',' TypeAndValue
Eli Friedman21006d42011-08-09 23:02:53 +00004119/// 'singlethread'? AtomicOrdering (',' 'align' i32)?
Chris Lattnerfbe910e2011-11-27 06:56:53 +00004120int LLParser::ParseStore(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00004121 Value *Val, *Ptr; LocTy Loc, PtrLoc;
Devang Patelf633a062009-09-17 23:04:48 +00004122 unsigned Alignment = 0;
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00004123 bool AteExtraComma = false;
Eli Friedmanf03bb262011-08-12 22:50:01 +00004124 bool isAtomic = false;
Eli Friedman21006d42011-08-09 23:02:53 +00004125 AtomicOrdering Ordering = NotAtomic;
4126 SynchronizationScope Scope = CrossThread;
Eli Friedmanf03bb262011-08-12 22:50:01 +00004127
4128 if (Lex.getKind() == lltok::kw_atomic) {
Eli Friedmanf03bb262011-08-12 22:50:01 +00004129 isAtomic = true;
4130 Lex.Lex();
4131 }
4132
Chris Lattnerfbe910e2011-11-27 06:56:53 +00004133 bool isVolatile = false;
Eli Friedmanf03bb262011-08-12 22:50:01 +00004134 if (Lex.getKind() == lltok::kw_volatile) {
Eli Friedmanf03bb262011-08-12 22:50:01 +00004135 isVolatile = true;
4136 Lex.Lex();
4137 }
4138
Chris Lattnerdf986172009-01-02 07:01:27 +00004139 if (ParseTypeAndValue(Val, Loc, PFS) ||
4140 ParseToken(lltok::comma, "expected ',' after store operand") ||
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00004141 ParseTypeAndValue(Ptr, PtrLoc, PFS) ||
Eli Friedman21006d42011-08-09 23:02:53 +00004142 ParseScopeAndOrdering(isAtomic, Scope, Ordering) ||
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00004143 ParseOptionalCommaAlign(Alignment, AteExtraComma))
Chris Lattnerdf986172009-01-02 07:01:27 +00004144 return true;
Devang Patelf633a062009-09-17 23:04:48 +00004145
Duncan Sands1df98592010-02-16 11:11:14 +00004146 if (!Ptr->getType()->isPointerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00004147 return Error(PtrLoc, "store operand must be a pointer");
4148 if (!Val->getType()->isFirstClassType())
4149 return Error(Loc, "store operand must be a first class value");
4150 if (cast<PointerType>(Ptr->getType())->getElementType() != Val->getType())
4151 return Error(Loc, "stored value and pointer type do not match");
Eli Friedman21006d42011-08-09 23:02:53 +00004152 if (isAtomic && !Alignment)
4153 return Error(Loc, "atomic store must have explicit non-zero alignment");
4154 if (Ordering == Acquire || Ordering == AcquireRelease)
4155 return Error(Loc, "atomic store cannot use Acquire ordering");
Daniel Dunbara279bc32009-09-20 02:20:51 +00004156
Eli Friedman21006d42011-08-09 23:02:53 +00004157 Inst = new StoreInst(Val, Ptr, isVolatile, Alignment, Ordering, Scope);
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00004158 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerdf986172009-01-02 07:01:27 +00004159}
4160
Eli Friedmanff030482011-07-28 21:48:00 +00004161/// ParseCmpXchg
Eli Friedmanf03bb262011-08-12 22:50:01 +00004162/// ::= 'cmpxchg' 'volatile'? TypeAndValue ',' TypeAndValue ',' TypeAndValue
4163/// 'singlethread'? AtomicOrdering
4164int LLParser::ParseCmpXchg(Instruction *&Inst, PerFunctionState &PFS) {
Eli Friedmanff030482011-07-28 21:48:00 +00004165 Value *Ptr, *Cmp, *New; LocTy PtrLoc, CmpLoc, NewLoc;
4166 bool AteExtraComma = false;
4167 AtomicOrdering Ordering = NotAtomic;
4168 SynchronizationScope Scope = CrossThread;
Eli Friedmanf03bb262011-08-12 22:50:01 +00004169 bool isVolatile = false;
4170
4171 if (EatIfPresent(lltok::kw_volatile))
4172 isVolatile = true;
4173
Eli Friedmanff030482011-07-28 21:48:00 +00004174 if (ParseTypeAndValue(Ptr, PtrLoc, PFS) ||
4175 ParseToken(lltok::comma, "expected ',' after cmpxchg address") ||
4176 ParseTypeAndValue(Cmp, CmpLoc, PFS) ||
4177 ParseToken(lltok::comma, "expected ',' after cmpxchg cmp operand") ||
4178 ParseTypeAndValue(New, NewLoc, PFS) ||
4179 ParseScopeAndOrdering(true /*Always atomic*/, Scope, Ordering))
4180 return true;
4181
4182 if (Ordering == Unordered)
4183 return TokError("cmpxchg cannot be unordered");
4184 if (!Ptr->getType()->isPointerTy())
4185 return Error(PtrLoc, "cmpxchg operand must be a pointer");
4186 if (cast<PointerType>(Ptr->getType())->getElementType() != Cmp->getType())
4187 return Error(CmpLoc, "compare value and pointer type do not match");
4188 if (cast<PointerType>(Ptr->getType())->getElementType() != New->getType())
4189 return Error(NewLoc, "new value and pointer type do not match");
4190 if (!New->getType()->isIntegerTy())
4191 return Error(NewLoc, "cmpxchg operand must be an integer");
4192 unsigned Size = New->getType()->getPrimitiveSizeInBits();
4193 if (Size < 8 || (Size & (Size - 1)))
4194 return Error(NewLoc, "cmpxchg operand must be power-of-two byte-sized"
4195 " integer");
4196
4197 AtomicCmpXchgInst *CXI =
4198 new AtomicCmpXchgInst(Ptr, Cmp, New, Ordering, Scope);
4199 CXI->setVolatile(isVolatile);
4200 Inst = CXI;
4201 return AteExtraComma ? InstExtraComma : InstNormal;
4202}
4203
4204/// ParseAtomicRMW
Eli Friedmanf03bb262011-08-12 22:50:01 +00004205/// ::= 'atomicrmw' 'volatile'? BinOp TypeAndValue ',' TypeAndValue
4206/// 'singlethread'? AtomicOrdering
4207int LLParser::ParseAtomicRMW(Instruction *&Inst, PerFunctionState &PFS) {
Eli Friedmanff030482011-07-28 21:48:00 +00004208 Value *Ptr, *Val; LocTy PtrLoc, ValLoc;
4209 bool AteExtraComma = false;
4210 AtomicOrdering Ordering = NotAtomic;
4211 SynchronizationScope Scope = CrossThread;
Eli Friedmanf03bb262011-08-12 22:50:01 +00004212 bool isVolatile = false;
Eli Friedmanff030482011-07-28 21:48:00 +00004213 AtomicRMWInst::BinOp Operation;
Eli Friedmanf03bb262011-08-12 22:50:01 +00004214
4215 if (EatIfPresent(lltok::kw_volatile))
4216 isVolatile = true;
4217
Eli Friedmanff030482011-07-28 21:48:00 +00004218 switch (Lex.getKind()) {
4219 default: return TokError("expected binary operation in atomicrmw");
4220 case lltok::kw_xchg: Operation = AtomicRMWInst::Xchg; break;
4221 case lltok::kw_add: Operation = AtomicRMWInst::Add; break;
4222 case lltok::kw_sub: Operation = AtomicRMWInst::Sub; break;
4223 case lltok::kw_and: Operation = AtomicRMWInst::And; break;
4224 case lltok::kw_nand: Operation = AtomicRMWInst::Nand; break;
4225 case lltok::kw_or: Operation = AtomicRMWInst::Or; break;
4226 case lltok::kw_xor: Operation = AtomicRMWInst::Xor; break;
4227 case lltok::kw_max: Operation = AtomicRMWInst::Max; break;
4228 case lltok::kw_min: Operation = AtomicRMWInst::Min; break;
4229 case lltok::kw_umax: Operation = AtomicRMWInst::UMax; break;
4230 case lltok::kw_umin: Operation = AtomicRMWInst::UMin; break;
4231 }
4232 Lex.Lex(); // Eat the operation.
4233
4234 if (ParseTypeAndValue(Ptr, PtrLoc, PFS) ||
4235 ParseToken(lltok::comma, "expected ',' after atomicrmw address") ||
4236 ParseTypeAndValue(Val, ValLoc, PFS) ||
4237 ParseScopeAndOrdering(true /*Always atomic*/, Scope, Ordering))
4238 return true;
4239
4240 if (Ordering == Unordered)
4241 return TokError("atomicrmw cannot be unordered");
4242 if (!Ptr->getType()->isPointerTy())
4243 return Error(PtrLoc, "atomicrmw operand must be a pointer");
4244 if (cast<PointerType>(Ptr->getType())->getElementType() != Val->getType())
4245 return Error(ValLoc, "atomicrmw value and pointer type do not match");
4246 if (!Val->getType()->isIntegerTy())
4247 return Error(ValLoc, "atomicrmw operand must be an integer");
4248 unsigned Size = Val->getType()->getPrimitiveSizeInBits();
4249 if (Size < 8 || (Size & (Size - 1)))
4250 return Error(ValLoc, "atomicrmw operand must be power-of-two byte-sized"
4251 " integer");
4252
4253 AtomicRMWInst *RMWI =
4254 new AtomicRMWInst(Operation, Ptr, Val, Ordering, Scope);
4255 RMWI->setVolatile(isVolatile);
4256 Inst = RMWI;
4257 return AteExtraComma ? InstExtraComma : InstNormal;
4258}
4259
Eli Friedman47f35132011-07-25 23:16:38 +00004260/// ParseFence
4261/// ::= 'fence' 'singlethread'? AtomicOrdering
4262int LLParser::ParseFence(Instruction *&Inst, PerFunctionState &PFS) {
4263 AtomicOrdering Ordering = NotAtomic;
4264 SynchronizationScope Scope = CrossThread;
4265 if (ParseScopeAndOrdering(true /*Always atomic*/, Scope, Ordering))
4266 return true;
4267
4268 if (Ordering == Unordered)
4269 return TokError("fence cannot be unordered");
4270 if (Ordering == Monotonic)
4271 return TokError("fence cannot be monotonic");
4272
4273 Inst = new FenceInst(Context, Ordering, Scope);
4274 return InstNormal;
4275}
4276
Chris Lattnerdf986172009-01-02 07:01:27 +00004277/// ParseGetElementPtr
Dan Gohmandd8004d2009-07-27 21:53:46 +00004278/// ::= 'getelementptr' 'inbounds'? TypeAndValue (',' TypeAndValue)*
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004279int LLParser::ParseGetElementPtr(Instruction *&Inst, PerFunctionState &PFS) {
Nadav Rotem16087692011-12-05 06:29:09 +00004280 Value *Ptr = 0;
4281 Value *Val = 0;
4282 LocTy Loc, EltLoc;
Dan Gohmandd8004d2009-07-27 21:53:46 +00004283
Dan Gohmandcb40a32009-07-29 15:58:36 +00004284 bool InBounds = EatIfPresent(lltok::kw_inbounds);
Dan Gohmandd8004d2009-07-27 21:53:46 +00004285
Chris Lattner3ed88ef2009-01-02 08:05:26 +00004286 if (ParseTypeAndValue(Ptr, Loc, PFS)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00004287
Eli Bendersky59eb5ee2013-04-22 17:03:42 +00004288 Type *BaseType = Ptr->getType();
4289 PointerType *BasePointerType = dyn_cast<PointerType>(BaseType->getScalarType());
4290 if (!BasePointerType)
Chris Lattnerdf986172009-01-02 07:01:27 +00004291 return Error(Loc, "base of getelementptr must be a pointer");
Daniel Dunbara279bc32009-09-20 02:20:51 +00004292
Chris Lattnerdf986172009-01-02 07:01:27 +00004293 SmallVector<Value*, 16> Indices;
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004294 bool AteExtraComma = false;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00004295 while (EatIfPresent(lltok::comma)) {
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004296 if (Lex.getKind() == lltok::MetadataVar) {
4297 AteExtraComma = true;
Devang Patel6225d642009-10-13 18:49:55 +00004298 break;
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004299 }
Chris Lattner3ed88ef2009-01-02 08:05:26 +00004300 if (ParseTypeAndValue(Val, EltLoc, PFS)) return true;
Nadav Rotem16087692011-12-05 06:29:09 +00004301 if (!Val->getType()->getScalarType()->isIntegerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00004302 return Error(EltLoc, "getelementptr index must be an integer");
Nadav Rotem16087692011-12-05 06:29:09 +00004303 if (Val->getType()->isVectorTy() != Ptr->getType()->isVectorTy())
4304 return Error(EltLoc, "getelementptr index type missmatch");
4305 if (Val->getType()->isVectorTy()) {
4306 unsigned ValNumEl = cast<VectorType>(Val->getType())->getNumElements();
4307 unsigned PtrNumEl = cast<VectorType>(Ptr->getType())->getNumElements();
4308 if (ValNumEl != PtrNumEl)
4309 return Error(EltLoc,
4310 "getelementptr vector index has a wrong number of elements");
4311 }
Chris Lattnerdf986172009-01-02 07:01:27 +00004312 Indices.push_back(Val);
4313 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00004314
Eli Bendersky59eb5ee2013-04-22 17:03:42 +00004315 if (!Indices.empty() && !BasePointerType->getElementType()->isSized())
4316 return Error(Loc, "base element of getelementptr must be sized");
4317
4318 if (!GetElementPtrInst::getIndexedType(BaseType, Indices))
Chris Lattnerdf986172009-01-02 07:01:27 +00004319 return Error(Loc, "invalid getelementptr indices");
Jay Foada9203102011-07-25 09:48:08 +00004320 Inst = GetElementPtrInst::Create(Ptr, Indices);
Dan Gohmandd8004d2009-07-27 21:53:46 +00004321 if (InBounds)
Dan Gohmanf8dbee72009-09-07 23:54:19 +00004322 cast<GetElementPtrInst>(Inst)->setIsInBounds(true);
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004323 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerdf986172009-01-02 07:01:27 +00004324}
4325
4326/// ParseExtractValue
4327/// ::= 'extractvalue' TypeAndValue (',' uint32)+
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004328int LLParser::ParseExtractValue(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00004329 Value *Val; LocTy Loc;
4330 SmallVector<unsigned, 4> Indices;
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004331 bool AteExtraComma;
Chris Lattnerdf986172009-01-02 07:01:27 +00004332 if (ParseTypeAndValue(Val, Loc, PFS) ||
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004333 ParseIndexList(Indices, AteExtraComma))
Chris Lattnerdf986172009-01-02 07:01:27 +00004334 return true;
4335
Chris Lattnerfdfeb692010-02-12 20:49:41 +00004336 if (!Val->getType()->isAggregateType())
4337 return Error(Loc, "extractvalue operand must be aggregate type");
Chris Lattnerdf986172009-01-02 07:01:27 +00004338
Jay Foadfc6d3a42011-07-13 10:26:04 +00004339 if (!ExtractValueInst::getIndexedType(Val->getType(), Indices))
Chris Lattnerdf986172009-01-02 07:01:27 +00004340 return Error(Loc, "invalid indices for extractvalue");
Jay Foadfc6d3a42011-07-13 10:26:04 +00004341 Inst = ExtractValueInst::Create(Val, Indices);
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004342 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerdf986172009-01-02 07:01:27 +00004343}
4344
4345/// ParseInsertValue
4346/// ::= 'insertvalue' TypeAndValue ',' TypeAndValue (',' uint32)+
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004347int LLParser::ParseInsertValue(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00004348 Value *Val0, *Val1; LocTy Loc0, Loc1;
4349 SmallVector<unsigned, 4> Indices;
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004350 bool AteExtraComma;
Chris Lattnerdf986172009-01-02 07:01:27 +00004351 if (ParseTypeAndValue(Val0, Loc0, PFS) ||
4352 ParseToken(lltok::comma, "expected comma after insertvalue operand") ||
4353 ParseTypeAndValue(Val1, Loc1, PFS) ||
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004354 ParseIndexList(Indices, AteExtraComma))
Chris Lattnerdf986172009-01-02 07:01:27 +00004355 return true;
Michael Ilseman407a6162012-11-15 22:34:00 +00004356
Chris Lattnerfdfeb692010-02-12 20:49:41 +00004357 if (!Val0->getType()->isAggregateType())
4358 return Error(Loc0, "insertvalue operand must be aggregate type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00004359
Jay Foadfc6d3a42011-07-13 10:26:04 +00004360 if (!ExtractValueInst::getIndexedType(Val0->getType(), Indices))
Chris Lattnerdf986172009-01-02 07:01:27 +00004361 return Error(Loc0, "invalid indices for insertvalue");
Jay Foadfc6d3a42011-07-13 10:26:04 +00004362 Inst = InsertValueInst::Create(Val0, Val1, Indices);
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004363 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerdf986172009-01-02 07:01:27 +00004364}
Nick Lewycky21cc4462009-04-04 07:22:01 +00004365
4366//===----------------------------------------------------------------------===//
4367// Embedded metadata.
4368//===----------------------------------------------------------------------===//
4369
4370/// ParseMDNodeVector
Nick Lewyckycb337992009-05-10 20:57:05 +00004371/// ::= Element (',' Element)*
4372/// Element
4373/// ::= 'null' | TypeAndValue
Victor Hernandezbf170d42010-01-05 22:22:14 +00004374bool LLParser::ParseMDNodeVector(SmallVectorImpl<Value*> &Elts,
Victor Hernandez24e64df2010-01-10 07:14:18 +00004375 PerFunctionState *PFS) {
Dan Gohmanac809752010-07-13 19:33:27 +00004376 // Check for an empty list.
4377 if (Lex.getKind() == lltok::rbrace)
4378 return false;
4379
Nick Lewycky21cc4462009-04-04 07:22:01 +00004380 do {
Chris Lattnera7352392009-12-30 04:42:57 +00004381 // Null is a special case since it is typeless.
4382 if (EatIfPresent(lltok::kw_null)) {
4383 Elts.push_back(0);
4384 continue;
Nick Lewyckycb337992009-05-10 20:57:05 +00004385 }
Michael Ilseman407a6162012-11-15 22:34:00 +00004386
Chris Lattnera7352392009-12-30 04:42:57 +00004387 Value *V = 0;
Chris Lattner1afcace2011-07-09 17:41:24 +00004388 if (ParseTypeAndValue(V, PFS)) return true;
Nick Lewyckycb337992009-05-10 20:57:05 +00004389 Elts.push_back(V);
Nick Lewycky21cc4462009-04-04 07:22:01 +00004390 } while (EatIfPresent(lltok::comma));
4391
4392 return false;
4393}