blob: 2cf2de674e01b47b880762a585856e915c6d373c [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();
630 unsigned Linkage;
631 LocTy LinkageLoc = Lex.getLoc();
632 if (ParseOptionalLinkage(Linkage))
633 return true;
634
635 if (Linkage != GlobalValue::ExternalLinkage &&
Duncan Sands667d4b82009-03-07 15:45:40 +0000636 Linkage != GlobalValue::WeakAnyLinkage &&
637 Linkage != GlobalValue::WeakODRLinkage &&
Rafael Espindolabb46f522009-01-15 20:18:42 +0000638 Linkage != GlobalValue::InternalLinkage &&
Bill Wendling3d10a5a2009-07-20 01:03:30 +0000639 Linkage != GlobalValue::PrivateLinkage &&
Bill Wendling5e721d72010-07-01 21:55:59 +0000640 Linkage != GlobalValue::LinkerPrivateLinkage &&
Bill Wendling32811be2012-08-17 18:33:14 +0000641 Linkage != GlobalValue::LinkerPrivateWeakLinkage)
Chris Lattnerdf986172009-01-02 07:01:27 +0000642 return Error(LinkageLoc, "invalid linkage type for alias");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000643
Chris Lattnerdf986172009-01-02 07:01:27 +0000644 Constant *Aliasee;
645 LocTy AliaseeLoc = Lex.getLoc();
Chris Lattner040f7582009-04-25 21:26:00 +0000646 if (Lex.getKind() != lltok::kw_bitcast &&
647 Lex.getKind() != lltok::kw_getelementptr) {
Chris Lattnerdf986172009-01-02 07:01:27 +0000648 if (ParseGlobalTypeAndValue(Aliasee)) return true;
649 } else {
650 // The bitcast dest type is not present, it is implied by the dest type.
651 ValID ID;
652 if (ParseValID(ID)) return true;
653 if (ID.Kind != ValID::t_Constant)
654 return Error(AliaseeLoc, "invalid aliasee");
655 Aliasee = ID.ConstantVal;
656 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000657
Duncan Sands1df98592010-02-16 11:11:14 +0000658 if (!Aliasee->getType()->isPointerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +0000659 return Error(AliaseeLoc, "alias must have pointer type");
660
661 // Okay, create the alias but do not insert it into the module yet.
662 GlobalAlias* GA = new GlobalAlias(Aliasee->getType(),
663 (GlobalValue::LinkageTypes)Linkage, Name,
664 Aliasee);
665 GA->setVisibility((GlobalValue::VisibilityTypes)Visibility);
Daniel Dunbara279bc32009-09-20 02:20:51 +0000666
Chris Lattnerdf986172009-01-02 07:01:27 +0000667 // See if this value already exists in the symbol table. If so, it is either
668 // a redefinition or a definition of a forward reference.
Chris Lattner1d871c52009-10-25 23:22:50 +0000669 if (GlobalValue *Val = M->getNamedValue(Name)) {
Chris Lattnerdf986172009-01-02 07:01:27 +0000670 // See if this was a redefinition. If so, there is no entry in
671 // ForwardRefVals.
672 std::map<std::string, std::pair<GlobalValue*, LocTy> >::iterator
673 I = ForwardRefVals.find(Name);
674 if (I == ForwardRefVals.end())
675 return Error(NameLoc, "redefinition of global named '@" + Name + "'");
676
677 // Otherwise, this was a definition of forward ref. Verify that types
678 // agree.
679 if (Val->getType() != GA->getType())
680 return Error(NameLoc,
681 "forward reference and definition of alias have different types");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000682
Chris Lattnerdf986172009-01-02 07:01:27 +0000683 // If they agree, just RAUW the old value with the alias and remove the
684 // forward ref info.
685 Val->replaceAllUsesWith(GA);
686 Val->eraseFromParent();
687 ForwardRefVals.erase(I);
688 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000689
Chris Lattnerdf986172009-01-02 07:01:27 +0000690 // Insert into the module, we know its name won't collide now.
691 M->getAliasList().push_back(GA);
Benjamin Krameraf812352010-10-16 11:28:23 +0000692 assert(GA->getName() == Name && "Should not be a name conflict!");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000693
Chris Lattnerdf986172009-01-02 07:01:27 +0000694 return false;
695}
696
697/// ParseGlobal
698/// ::= GlobalVar '=' OptionalLinkage OptionalVisibility OptionalThreadLocal
Michael Gottesmana2de37c2013-02-05 05:57:38 +0000699/// OptionalAddrSpace OptionalUnNammedAddr
700/// OptionalExternallyInitialized GlobalType Type Const
Chris Lattnerdf986172009-01-02 07:01:27 +0000701/// ::= OptionalLinkage OptionalVisibility OptionalThreadLocal
Michael Gottesmana2de37c2013-02-05 05:57:38 +0000702/// OptionalAddrSpace OptionalUnNammedAddr
703/// OptionalExternallyInitialized GlobalType Type Const
Chris Lattnerdf986172009-01-02 07:01:27 +0000704///
705/// Everything through visibility has been parsed already.
706///
707bool LLParser::ParseGlobal(const std::string &Name, LocTy NameLoc,
708 unsigned Linkage, bool HasLinkage,
709 unsigned Visibility) {
710 unsigned AddrSpace;
Michael Gottesmana2de37c2013-02-05 05:57:38 +0000711 bool IsConstant, UnnamedAddr, IsExternallyInitialized;
Hans Wennborgce718ff2012-06-23 11:37:03 +0000712 GlobalVariable::ThreadLocalMode TLM;
Rafael Espindolad72479c2011-01-13 01:30:30 +0000713 LocTy UnnamedAddrLoc;
Michael Gottesmana2de37c2013-02-05 05:57:38 +0000714 LocTy IsExternallyInitializedLoc;
Chris Lattnerdf986172009-01-02 07:01:27 +0000715 LocTy TyLoc;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000716
Chris Lattner1afcace2011-07-09 17:41:24 +0000717 Type *Ty = 0;
Hans Wennborgce718ff2012-06-23 11:37:03 +0000718 if (ParseOptionalThreadLocal(TLM) ||
Chris Lattnerdf986172009-01-02 07:01:27 +0000719 ParseOptionalAddrSpace(AddrSpace) ||
Rafael Espindolad72479c2011-01-13 01:30:30 +0000720 ParseOptionalToken(lltok::kw_unnamed_addr, UnnamedAddr,
721 &UnnamedAddrLoc) ||
Michael Gottesmana2de37c2013-02-05 05:57:38 +0000722 ParseOptionalToken(lltok::kw_externally_initialized,
723 IsExternallyInitialized,
724 &IsExternallyInitializedLoc) ||
Chris Lattnerdf986172009-01-02 07:01:27 +0000725 ParseGlobalType(IsConstant) ||
726 ParseType(Ty, TyLoc))
727 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000728
Chris Lattnerdf986172009-01-02 07:01:27 +0000729 // If the linkage is specified and is external, then no initializer is
730 // present.
731 Constant *Init = 0;
732 if (!HasLinkage || (Linkage != GlobalValue::DLLImportLinkage &&
Duncan Sands5f4ee1f2009-03-11 08:08:06 +0000733 Linkage != GlobalValue::ExternalWeakLinkage &&
Chris Lattnerdf986172009-01-02 07:01:27 +0000734 Linkage != GlobalValue::ExternalLinkage)) {
735 if (ParseGlobalValue(Ty, Init))
736 return true;
737 }
738
Duncan Sands1df98592010-02-16 11:11:14 +0000739 if (Ty->isFunctionTy() || Ty->isLabelTy())
Chris Lattner4a2f1122009-02-08 20:00:15 +0000740 return Error(TyLoc, "invalid type for global variable");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000741
Chris Lattnerdf986172009-01-02 07:01:27 +0000742 GlobalVariable *GV = 0;
743
744 // See if the global was forward referenced, if so, use the global.
Chris Lattner91dad872009-02-02 07:24:28 +0000745 if (!Name.empty()) {
Chris Lattner1d871c52009-10-25 23:22:50 +0000746 if (GlobalValue *GVal = M->getNamedValue(Name)) {
747 if (!ForwardRefVals.erase(Name) || !isa<GlobalValue>(GVal))
748 return Error(NameLoc, "redefinition of global '@" + Name + "'");
749 GV = cast<GlobalVariable>(GVal);
750 }
Chris Lattnerdf986172009-01-02 07:01:27 +0000751 } else {
752 std::map<unsigned, std::pair<GlobalValue*, LocTy> >::iterator
753 I = ForwardRefValIDs.find(NumberedVals.size());
754 if (I != ForwardRefValIDs.end()) {
755 GV = cast<GlobalVariable>(I->second.first);
756 ForwardRefValIDs.erase(I);
757 }
758 }
759
760 if (GV == 0) {
Daniel Dunbara279bc32009-09-20 02:20:51 +0000761 GV = new GlobalVariable(*M, Ty, false, GlobalValue::ExternalLinkage, 0,
Hans Wennborgce718ff2012-06-23 11:37:03 +0000762 Name, 0, GlobalVariable::NotThreadLocal,
763 AddrSpace);
Chris Lattnerdf986172009-01-02 07:01:27 +0000764 } else {
765 if (GV->getType()->getElementType() != Ty)
766 return Error(TyLoc,
767 "forward reference and definition of global have different types");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000768
Chris Lattnerdf986172009-01-02 07:01:27 +0000769 // Move the forward-reference to the correct spot in the module.
770 M->getGlobalList().splice(M->global_end(), M->getGlobalList(), GV);
771 }
772
773 if (Name.empty())
774 NumberedVals.push_back(GV);
Daniel Dunbara279bc32009-09-20 02:20:51 +0000775
Chris Lattnerdf986172009-01-02 07:01:27 +0000776 // Set the parsed properties on the global.
777 if (Init)
778 GV->setInitializer(Init);
779 GV->setConstant(IsConstant);
780 GV->setLinkage((GlobalValue::LinkageTypes)Linkage);
781 GV->setVisibility((GlobalValue::VisibilityTypes)Visibility);
Michael Gottesmana2de37c2013-02-05 05:57:38 +0000782 GV->setExternallyInitialized(IsExternallyInitialized);
Hans Wennborgce718ff2012-06-23 11:37:03 +0000783 GV->setThreadLocalMode(TLM);
Rafael Espindolabea46262011-01-08 16:42:36 +0000784 GV->setUnnamedAddr(UnnamedAddr);
Daniel Dunbara279bc32009-09-20 02:20:51 +0000785
Chris Lattnerdf986172009-01-02 07:01:27 +0000786 // Parse attributes on the global.
787 while (Lex.getKind() == lltok::comma) {
788 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +0000789
Chris Lattnerdf986172009-01-02 07:01:27 +0000790 if (Lex.getKind() == lltok::kw_section) {
791 Lex.Lex();
792 GV->setSection(Lex.getStrVal());
793 if (ParseToken(lltok::StringConstant, "expected global section string"))
794 return true;
795 } else if (Lex.getKind() == lltok::kw_align) {
796 unsigned Alignment;
797 if (ParseOptionalAlignment(Alignment)) return true;
798 GV->setAlignment(Alignment);
799 } else {
800 TokError("unknown global variable property!");
801 }
802 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000803
Chris Lattnerdf986172009-01-02 07:01:27 +0000804 return false;
805}
806
Bill Wendling95ce4c22013-02-06 06:52:58 +0000807/// ParseUnnamedAttrGrp
Bill Wendling0b778662013-02-09 15:48:49 +0000808/// ::= 'attributes' AttrGrpID '=' '{' AttrValPair+ '}'
Bill Wendling95ce4c22013-02-06 06:52:58 +0000809bool LLParser::ParseUnnamedAttrGrp() {
Bill Wendling0b778662013-02-09 15:48:49 +0000810 assert(Lex.getKind() == lltok::kw_attributes);
Bill Wendling95ce4c22013-02-06 06:52:58 +0000811 LocTy AttrGrpLoc = Lex.getLoc();
Bill Wendling0b778662013-02-09 15:48:49 +0000812 Lex.Lex();
813
814 assert(Lex.getKind() == lltok::AttrGrpID);
Bill Wendling95ce4c22013-02-06 06:52:58 +0000815 unsigned VarID = Lex.getUIntVal();
Bill Wendlingbaad55c2013-02-08 06:32:06 +0000816 std::vector<unsigned> unused;
Michael Gottesman2253a2f2013-06-27 00:25:01 +0000817 LocTy BuiltinLoc;
Bill Wendling95ce4c22013-02-06 06:52:58 +0000818 Lex.Lex();
819
820 if (ParseToken(lltok::equal, "expected '=' here") ||
Bill Wendling95ce4c22013-02-06 06:52:58 +0000821 ParseToken(lltok::lbrace, "expected '{' here") ||
Bill Wendling143d4642013-02-22 00:12:35 +0000822 ParseFnAttributeValuePairs(NumberedAttrBuilders[VarID], unused, true,
Michael Gottesman2253a2f2013-06-27 00:25:01 +0000823 BuiltinLoc) ||
Bill Wendling95ce4c22013-02-06 06:52:58 +0000824 ParseToken(lltok::rbrace, "expected end of attribute group"))
825 return true;
826
Bill Wendlingbaad55c2013-02-08 06:32:06 +0000827 if (!NumberedAttrBuilders[VarID].hasAttributes())
Bill Wendling95ce4c22013-02-06 06:52:58 +0000828 return Error(AttrGrpLoc, "attribute group has no attributes");
829
830 return false;
831}
832
Bill Wendlingea007fa2013-02-08 00:52:31 +0000833/// ParseFnAttributeValuePairs
Bill Wendling95ce4c22013-02-06 06:52:58 +0000834/// ::= <attr> | <attr> '=' <value>
Bill Wendlingbaad55c2013-02-08 06:32:06 +0000835bool LLParser::ParseFnAttributeValuePairs(AttrBuilder &B,
836 std::vector<unsigned> &FwdRefAttrGrps,
Michael Gottesman2253a2f2013-06-27 00:25:01 +0000837 bool inAttrGrp, LocTy &BuiltinLoc) {
Bill Wendlingea007fa2013-02-08 00:52:31 +0000838 bool HaveError = false;
839
840 B.clear();
841
Bill Wendling95ce4c22013-02-06 06:52:58 +0000842 while (true) {
843 lltok::Kind Token = Lex.getKind();
Michael Gottesman2253a2f2013-06-27 00:25:01 +0000844 if (Token == lltok::kw_builtin)
845 BuiltinLoc = Lex.getLoc();
Bill Wendling95ce4c22013-02-06 06:52:58 +0000846 switch (Token) {
847 default:
Bill Wendlingea007fa2013-02-08 00:52:31 +0000848 if (!inAttrGrp) return HaveError;
Bill Wendling95ce4c22013-02-06 06:52:58 +0000849 return Error(Lex.getLoc(), "unterminated attribute group");
850 case lltok::rbrace:
851 // Finished.
852 return false;
853
Bill Wendlingbaad55c2013-02-08 06:32:06 +0000854 case lltok::AttrGrpID: {
855 // Allow a function to reference an attribute group:
856 //
857 // define void @foo() #1 { ... }
858 if (inAttrGrp)
859 HaveError |=
860 Error(Lex.getLoc(),
861 "cannot have an attribute group reference in an attribute group");
862
863 unsigned AttrGrpNum = Lex.getUIntVal();
864 if (inAttrGrp) break;
865
866 // Save the reference to the attribute group. We'll fill it in later.
867 FwdRefAttrGrps.push_back(AttrGrpNum);
868 break;
869 }
Bill Wendling95ce4c22013-02-06 06:52:58 +0000870 // Target-dependent attributes:
871 case lltok::StringConstant: {
872 std::string Attr = Lex.getStrVal();
873 Lex.Lex();
874 std::string Val;
875 if (EatIfPresent(lltok::equal) &&
876 ParseStringConstant(Val))
877 return true;
878
879 B.addAttribute(Attr, Val);
Bill Wendling0f742202013-02-10 10:12:50 +0000880 continue;
Bill Wendling95ce4c22013-02-06 06:52:58 +0000881 }
882
883 // Target-independent attributes:
884 case lltok::kw_align: {
Bill Wendlingc0b4b672013-04-18 18:30:16 +0000885 // As a hack, we allow function alignment to be initially parsed as an
886 // attribute on a function declaration/definition or added to an attribute
887 // group and later moved to the alignment field.
Bill Wendling95ce4c22013-02-06 06:52:58 +0000888 unsigned Alignment;
Bill Wendlingea007fa2013-02-08 00:52:31 +0000889 if (inAttrGrp) {
Bill Wendling3f87d232013-02-10 23:15:51 +0000890 Lex.Lex();
Bill Wendlingea007fa2013-02-08 00:52:31 +0000891 if (ParseToken(lltok::equal, "expected '=' here") ||
892 ParseUInt32(Alignment))
893 return true;
894 } else {
895 if (ParseOptionalAlignment(Alignment))
896 return true;
897 }
Bill Wendling95ce4c22013-02-06 06:52:58 +0000898 B.addAlignmentAttr(Alignment);
Bill Wendlingea007fa2013-02-08 00:52:31 +0000899 continue;
Bill Wendling95ce4c22013-02-06 06:52:58 +0000900 }
901 case lltok::kw_alignstack: {
902 unsigned Alignment;
Bill Wendlingea007fa2013-02-08 00:52:31 +0000903 if (inAttrGrp) {
Bill Wendling3f87d232013-02-10 23:15:51 +0000904 Lex.Lex();
Bill Wendlingea007fa2013-02-08 00:52:31 +0000905 if (ParseToken(lltok::equal, "expected '=' here") ||
906 ParseUInt32(Alignment))
907 return true;
908 } else {
909 if (ParseOptionalStackAlignment(Alignment))
910 return true;
911 }
Bill Wendling95ce4c22013-02-06 06:52:58 +0000912 B.addStackAlignmentAttr(Alignment);
Bill Wendlingea007fa2013-02-08 00:52:31 +0000913 continue;
Bill Wendling95ce4c22013-02-06 06:52:58 +0000914 }
Kostya Serebryany8eec41f2013-02-26 06:58:09 +0000915 case lltok::kw_alwaysinline: B.addAttribute(Attribute::AlwaysInline); break;
Michael Gottesman2253a2f2013-06-27 00:25:01 +0000916 case lltok::kw_builtin: B.addAttribute(Attribute::Builtin); break;
Diego Novillo77226a02013-05-24 12:26:52 +0000917 case lltok::kw_cold: B.addAttribute(Attribute::Cold); break;
Kostya Serebryany8eec41f2013-02-26 06:58:09 +0000918 case lltok::kw_inlinehint: B.addAttribute(Attribute::InlineHint); break;
919 case lltok::kw_minsize: B.addAttribute(Attribute::MinSize); break;
920 case lltok::kw_naked: B.addAttribute(Attribute::Naked); break;
921 case lltok::kw_nobuiltin: B.addAttribute(Attribute::NoBuiltin); break;
922 case lltok::kw_noduplicate: B.addAttribute(Attribute::NoDuplicate); break;
923 case lltok::kw_noimplicitfloat: B.addAttribute(Attribute::NoImplicitFloat); break;
924 case lltok::kw_noinline: B.addAttribute(Attribute::NoInline); break;
925 case lltok::kw_nonlazybind: B.addAttribute(Attribute::NonLazyBind); break;
926 case lltok::kw_noredzone: B.addAttribute(Attribute::NoRedZone); break;
927 case lltok::kw_noreturn: B.addAttribute(Attribute::NoReturn); break;
928 case lltok::kw_nounwind: B.addAttribute(Attribute::NoUnwind); break;
Andrea Di Biagio5768bb82013-08-23 11:53:55 +0000929 case lltok::kw_optnone: B.addAttribute(Attribute::OptimizeNone); break;
Kostya Serebryany8eec41f2013-02-26 06:58:09 +0000930 case lltok::kw_optsize: B.addAttribute(Attribute::OptimizeForSize); break;
931 case lltok::kw_readnone: B.addAttribute(Attribute::ReadNone); break;
932 case lltok::kw_readonly: B.addAttribute(Attribute::ReadOnly); break;
933 case lltok::kw_returns_twice: B.addAttribute(Attribute::ReturnsTwice); break;
934 case lltok::kw_ssp: B.addAttribute(Attribute::StackProtect); break;
935 case lltok::kw_sspreq: B.addAttribute(Attribute::StackProtectReq); break;
936 case lltok::kw_sspstrong: B.addAttribute(Attribute::StackProtectStrong); break;
937 case lltok::kw_sanitize_address: B.addAttribute(Attribute::SanitizeAddress); break;
938 case lltok::kw_sanitize_thread: B.addAttribute(Attribute::SanitizeThread); break;
939 case lltok::kw_sanitize_memory: B.addAttribute(Attribute::SanitizeMemory); break;
940 case lltok::kw_uwtable: B.addAttribute(Attribute::UWTable); break;
Bill Wendlingea007fa2013-02-08 00:52:31 +0000941
942 // Error handling.
943 case lltok::kw_inreg:
944 case lltok::kw_signext:
945 case lltok::kw_zeroext:
946 HaveError |=
947 Error(Lex.getLoc(),
948 "invalid use of attribute on a function");
949 break;
950 case lltok::kw_byval:
951 case lltok::kw_nest:
952 case lltok::kw_noalias:
953 case lltok::kw_nocapture:
Stephen Lin456ca042013-04-20 05:14:40 +0000954 case lltok::kw_returned:
Bill Wendlingea007fa2013-02-08 00:52:31 +0000955 case lltok::kw_sret:
956 HaveError |=
957 Error(Lex.getLoc(),
958 "invalid use of parameter-only attribute on a function");
959 break;
Bill Wendling95ce4c22013-02-06 06:52:58 +0000960 }
961
962 Lex.Lex();
963 }
964}
Chris Lattnerdf986172009-01-02 07:01:27 +0000965
966//===----------------------------------------------------------------------===//
967// GlobalValue Reference/Resolution Routines.
968//===----------------------------------------------------------------------===//
969
970/// GetGlobalVal - Get a value with the specified name or ID, creating a
971/// forward reference record if needed. This can return null if the value
972/// exists but does not have the right type.
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000973GlobalValue *LLParser::GetGlobalVal(const std::string &Name, Type *Ty,
Chris Lattnerdf986172009-01-02 07:01:27 +0000974 LocTy Loc) {
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000975 PointerType *PTy = dyn_cast<PointerType>(Ty);
Chris Lattnerdf986172009-01-02 07:01:27 +0000976 if (PTy == 0) {
977 Error(Loc, "global variable reference must have pointer type");
978 return 0;
979 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000980
Chris Lattnerdf986172009-01-02 07:01:27 +0000981 // Look this name up in the normal function symbol table.
982 GlobalValue *Val =
983 cast_or_null<GlobalValue>(M->getValueSymbolTable().lookup(Name));
Daniel Dunbara279bc32009-09-20 02:20:51 +0000984
Chris Lattnerdf986172009-01-02 07:01:27 +0000985 // If this is a forward reference for the value, see if we already created a
986 // forward ref record.
987 if (Val == 0) {
988 std::map<std::string, std::pair<GlobalValue*, LocTy> >::iterator
989 I = ForwardRefVals.find(Name);
990 if (I != ForwardRefVals.end())
991 Val = I->second.first;
992 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000993
Chris Lattnerdf986172009-01-02 07:01:27 +0000994 // If we have the value in the symbol table or fwd-ref table, return it.
995 if (Val) {
996 if (Val->getType() == Ty) return Val;
997 Error(Loc, "'@" + Name + "' defined with type '" +
Chris Lattner0cd0d882011-06-18 21:18:23 +0000998 getTypeString(Val->getType()) + "'");
Chris Lattnerdf986172009-01-02 07:01:27 +0000999 return 0;
1000 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001001
Chris Lattnerdf986172009-01-02 07:01:27 +00001002 // Otherwise, create a new forward reference for this value and remember it.
1003 GlobalValue *FwdVal;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001004 if (FunctionType *FT = dyn_cast<FunctionType>(PTy->getElementType()))
Duncan Sands5f4ee1f2009-03-11 08:08:06 +00001005 FwdVal = Function::Create(FT, GlobalValue::ExternalWeakLinkage, Name, M);
Chris Lattner1afcace2011-07-09 17:41:24 +00001006 else
Owen Andersone9b11b42009-07-08 19:03:57 +00001007 FwdVal = new GlobalVariable(*M, PTy->getElementType(), false,
Justin Holewinskieaff2d52012-11-16 21:03:47 +00001008 GlobalValue::ExternalWeakLinkage, 0, Name,
1009 0, GlobalVariable::NotThreadLocal,
1010 PTy->getAddressSpace());
Daniel Dunbara279bc32009-09-20 02:20:51 +00001011
Chris Lattnerdf986172009-01-02 07:01:27 +00001012 ForwardRefVals[Name] = std::make_pair(FwdVal, Loc);
1013 return FwdVal;
1014}
1015
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001016GlobalValue *LLParser::GetGlobalVal(unsigned ID, Type *Ty, LocTy Loc) {
1017 PointerType *PTy = dyn_cast<PointerType>(Ty);
Chris Lattnerdf986172009-01-02 07:01:27 +00001018 if (PTy == 0) {
1019 Error(Loc, "global variable reference must have pointer type");
1020 return 0;
1021 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001022
Chris Lattnerdf986172009-01-02 07:01:27 +00001023 GlobalValue *Val = ID < NumberedVals.size() ? NumberedVals[ID] : 0;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001024
Chris Lattnerdf986172009-01-02 07:01:27 +00001025 // If this is a forward reference for the value, see if we already created a
1026 // forward ref record.
1027 if (Val == 0) {
1028 std::map<unsigned, std::pair<GlobalValue*, LocTy> >::iterator
1029 I = ForwardRefValIDs.find(ID);
1030 if (I != ForwardRefValIDs.end())
1031 Val = I->second.first;
1032 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001033
Chris Lattnerdf986172009-01-02 07:01:27 +00001034 // If we have the value in the symbol table or fwd-ref table, return it.
1035 if (Val) {
1036 if (Val->getType() == Ty) return Val;
Benjamin Kramerd1e17032010-09-27 17:42:11 +00001037 Error(Loc, "'@" + Twine(ID) + "' defined with type '" +
Chris Lattner0cd0d882011-06-18 21:18:23 +00001038 getTypeString(Val->getType()) + "'");
Chris Lattnerdf986172009-01-02 07:01:27 +00001039 return 0;
1040 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001041
Chris Lattnerdf986172009-01-02 07:01:27 +00001042 // Otherwise, create a new forward reference for this value and remember it.
1043 GlobalValue *FwdVal;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001044 if (FunctionType *FT = dyn_cast<FunctionType>(PTy->getElementType()))
Duncan Sands5f4ee1f2009-03-11 08:08:06 +00001045 FwdVal = Function::Create(FT, GlobalValue::ExternalWeakLinkage, "", M);
Chris Lattner1afcace2011-07-09 17:41:24 +00001046 else
Owen Andersone9b11b42009-07-08 19:03:57 +00001047 FwdVal = new GlobalVariable(*M, PTy->getElementType(), false,
1048 GlobalValue::ExternalWeakLinkage, 0, "");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001049
Chris Lattnerdf986172009-01-02 07:01:27 +00001050 ForwardRefValIDs[ID] = std::make_pair(FwdVal, Loc);
1051 return FwdVal;
1052}
1053
1054
1055//===----------------------------------------------------------------------===//
1056// Helper Routines.
1057//===----------------------------------------------------------------------===//
1058
1059/// ParseToken - If the current token has the specified kind, eat it and return
1060/// success. Otherwise, emit the specified error and return failure.
1061bool LLParser::ParseToken(lltok::Kind T, const char *ErrMsg) {
1062 if (Lex.getKind() != T)
1063 return TokError(ErrMsg);
1064 Lex.Lex();
1065 return false;
1066}
1067
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001068/// ParseStringConstant
1069/// ::= StringConstant
1070bool LLParser::ParseStringConstant(std::string &Result) {
1071 if (Lex.getKind() != lltok::StringConstant)
1072 return TokError("expected string constant");
1073 Result = Lex.getStrVal();
1074 Lex.Lex();
1075 return false;
1076}
1077
1078/// ParseUInt32
1079/// ::= uint32
1080bool LLParser::ParseUInt32(unsigned &Val) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001081 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned())
1082 return TokError("expected integer");
1083 uint64_t Val64 = Lex.getAPSIntVal().getLimitedValue(0xFFFFFFFFULL+1);
1084 if (Val64 != unsigned(Val64))
1085 return TokError("expected 32-bit integer (too large)");
1086 Val = Val64;
1087 Lex.Lex();
1088 return false;
1089}
1090
Hans Wennborgce718ff2012-06-23 11:37:03 +00001091/// ParseTLSModel
1092/// := 'localdynamic'
1093/// := 'initialexec'
1094/// := 'localexec'
1095bool LLParser::ParseTLSModel(GlobalVariable::ThreadLocalMode &TLM) {
1096 switch (Lex.getKind()) {
1097 default:
1098 return TokError("expected localdynamic, initialexec or localexec");
1099 case lltok::kw_localdynamic:
1100 TLM = GlobalVariable::LocalDynamicTLSModel;
1101 break;
1102 case lltok::kw_initialexec:
1103 TLM = GlobalVariable::InitialExecTLSModel;
1104 break;
1105 case lltok::kw_localexec:
1106 TLM = GlobalVariable::LocalExecTLSModel;
1107 break;
1108 }
1109
1110 Lex.Lex();
1111 return false;
1112}
1113
1114/// ParseOptionalThreadLocal
1115/// := /*empty*/
1116/// := 'thread_local'
1117/// := 'thread_local' '(' tlsmodel ')'
1118bool LLParser::ParseOptionalThreadLocal(GlobalVariable::ThreadLocalMode &TLM) {
1119 TLM = GlobalVariable::NotThreadLocal;
1120 if (!EatIfPresent(lltok::kw_thread_local))
1121 return false;
1122
1123 TLM = GlobalVariable::GeneralDynamicTLSModel;
1124 if (Lex.getKind() == lltok::lparen) {
1125 Lex.Lex();
1126 return ParseTLSModel(TLM) ||
1127 ParseToken(lltok::rparen, "expected ')' after thread local model");
1128 }
1129 return false;
1130}
Chris Lattnerdf986172009-01-02 07:01:27 +00001131
1132/// ParseOptionalAddrSpace
1133/// := /*empty*/
1134/// := 'addrspace' '(' uint32 ')'
1135bool LLParser::ParseOptionalAddrSpace(unsigned &AddrSpace) {
1136 AddrSpace = 0;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001137 if (!EatIfPresent(lltok::kw_addrspace))
Chris Lattnerdf986172009-01-02 07:01:27 +00001138 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00001139 return ParseToken(lltok::lparen, "expected '(' in address space") ||
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001140 ParseUInt32(AddrSpace) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00001141 ParseToken(lltok::rparen, "expected ')' in address space");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001142}
Chris Lattnerdf986172009-01-02 07:01:27 +00001143
Bill Wendlinge01b81b2012-12-04 23:40:58 +00001144/// ParseOptionalParamAttrs - Parse a potentially empty list of parameter attributes.
1145bool LLParser::ParseOptionalParamAttrs(AttrBuilder &B) {
1146 bool HaveError = false;
1147
1148 B.clear();
1149
1150 while (1) {
1151 lltok::Kind Token = Lex.getKind();
1152 switch (Token) {
1153 default: // End of attributes.
1154 return HaveError;
Chris Lattnerdf986172009-01-02 07:01:27 +00001155 case lltok::kw_align: {
1156 unsigned Alignment;
1157 if (ParseOptionalAlignment(Alignment))
1158 return true;
Bill Wendling03272442012-10-08 22:20:14 +00001159 B.addAlignmentAttr(Alignment);
Chris Lattnerdf986172009-01-02 07:01:27 +00001160 continue;
1161 }
Bill Wendling034b94b2012-12-19 07:18:57 +00001162 case lltok::kw_byval: B.addAttribute(Attribute::ByVal); break;
1163 case lltok::kw_inreg: B.addAttribute(Attribute::InReg); break;
1164 case lltok::kw_nest: B.addAttribute(Attribute::Nest); break;
1165 case lltok::kw_noalias: B.addAttribute(Attribute::NoAlias); break;
1166 case lltok::kw_nocapture: B.addAttribute(Attribute::NoCapture); break;
Nick Lewyckydc897372013-07-06 00:29:58 +00001167 case lltok::kw_readnone: B.addAttribute(Attribute::ReadNone); break;
1168 case lltok::kw_readonly: B.addAttribute(Attribute::ReadOnly); break;
Stephen Lin456ca042013-04-20 05:14:40 +00001169 case lltok::kw_returned: B.addAttribute(Attribute::Returned); break;
Bill Wendling034b94b2012-12-19 07:18:57 +00001170 case lltok::kw_signext: B.addAttribute(Attribute::SExt); break;
1171 case lltok::kw_sret: B.addAttribute(Attribute::StructRet); break;
1172 case lltok::kw_zeroext: B.addAttribute(Attribute::ZExt); break;
Charles Davis1e063d12010-02-12 00:31:15 +00001173
Stephen Linb0aeb3e2013-04-20 13:16:13 +00001174 case lltok::kw_alignstack:
1175 case lltok::kw_alwaysinline:
Michael Gottesman2253a2f2013-06-27 00:25:01 +00001176 case lltok::kw_builtin:
Stephen Linb0aeb3e2013-04-20 13:16:13 +00001177 case lltok::kw_inlinehint:
1178 case lltok::kw_minsize:
1179 case lltok::kw_naked:
1180 case lltok::kw_nobuiltin:
1181 case lltok::kw_noduplicate:
1182 case lltok::kw_noimplicitfloat:
1183 case lltok::kw_noinline:
1184 case lltok::kw_nonlazybind:
1185 case lltok::kw_noredzone:
1186 case lltok::kw_noreturn:
1187 case lltok::kw_nounwind:
Andrea Di Biagio5768bb82013-08-23 11:53:55 +00001188 case lltok::kw_optnone:
Stephen Linb0aeb3e2013-04-20 13:16:13 +00001189 case lltok::kw_optsize:
Stephen Linb0aeb3e2013-04-20 13:16:13 +00001190 case lltok::kw_returns_twice:
1191 case lltok::kw_sanitize_address:
1192 case lltok::kw_sanitize_memory:
1193 case lltok::kw_sanitize_thread:
1194 case lltok::kw_ssp:
1195 case lltok::kw_sspreq:
1196 case lltok::kw_sspstrong:
1197 case lltok::kw_uwtable:
Bill Wendlinge01b81b2012-12-04 23:40:58 +00001198 HaveError |= Error(Lex.getLoc(), "invalid use of function-only attribute");
1199 break;
Chris Lattnerdf986172009-01-02 07:01:27 +00001200 }
Bill Wendlingdc998cc2012-09-28 22:30:18 +00001201
Bill Wendlinge01b81b2012-12-04 23:40:58 +00001202 Lex.Lex();
1203 }
1204}
1205
1206/// ParseOptionalReturnAttrs - Parse a potentially empty list of return attributes.
1207bool LLParser::ParseOptionalReturnAttrs(AttrBuilder &B) {
1208 bool HaveError = false;
1209
1210 B.clear();
1211
1212 while (1) {
1213 lltok::Kind Token = Lex.getKind();
Bill Wendlingdc998cc2012-09-28 22:30:18 +00001214 switch (Token) {
Bill Wendlinge01b81b2012-12-04 23:40:58 +00001215 default: // End of attributes.
1216 return HaveError;
Bill Wendling034b94b2012-12-19 07:18:57 +00001217 case lltok::kw_inreg: B.addAttribute(Attribute::InReg); break;
1218 case lltok::kw_noalias: B.addAttribute(Attribute::NoAlias); break;
1219 case lltok::kw_signext: B.addAttribute(Attribute::SExt); break;
1220 case lltok::kw_zeroext: B.addAttribute(Attribute::ZExt); break;
Bill Wendlingdc998cc2012-09-28 22:30:18 +00001221
Bill Wendlinge01b81b2012-12-04 23:40:58 +00001222 // Error handling.
Stephen Linb0aeb3e2013-04-20 13:16:13 +00001223 case lltok::kw_align:
Chandler Carruth239e1e42013-04-09 19:46:46 +00001224 case lltok::kw_byval:
1225 case lltok::kw_nest:
1226 case lltok::kw_nocapture:
Stephen Lin456ca042013-04-20 05:14:40 +00001227 case lltok::kw_returned:
Chandler Carruth239e1e42013-04-09 19:46:46 +00001228 case lltok::kw_sret:
Bill Wendlinge01b81b2012-12-04 23:40:58 +00001229 HaveError |= Error(Lex.getLoc(), "invalid use of parameter-only attribute");
Bill Wendlingdc998cc2012-09-28 22:30:18 +00001230 break;
James Molloy67ae1352012-12-20 16:04:27 +00001231
Chandler Carruth239e1e42013-04-09 19:46:46 +00001232 case lltok::kw_alignstack:
1233 case lltok::kw_alwaysinline:
Michael Gottesman2253a2f2013-06-27 00:25:01 +00001234 case lltok::kw_builtin:
Diego Novillo77226a02013-05-24 12:26:52 +00001235 case lltok::kw_cold:
Chandler Carruth239e1e42013-04-09 19:46:46 +00001236 case lltok::kw_inlinehint:
1237 case lltok::kw_minsize:
1238 case lltok::kw_naked:
1239 case lltok::kw_nobuiltin:
1240 case lltok::kw_noduplicate:
1241 case lltok::kw_noimplicitfloat:
1242 case lltok::kw_noinline:
1243 case lltok::kw_nonlazybind:
1244 case lltok::kw_noredzone:
1245 case lltok::kw_noreturn:
1246 case lltok::kw_nounwind:
Andrea Di Biagio5768bb82013-08-23 11:53:55 +00001247 case lltok::kw_optnone:
Chandler Carruth239e1e42013-04-09 19:46:46 +00001248 case lltok::kw_optsize:
Chandler Carruth239e1e42013-04-09 19:46:46 +00001249 case lltok::kw_returns_twice:
1250 case lltok::kw_sanitize_address:
1251 case lltok::kw_sanitize_memory:
1252 case lltok::kw_sanitize_thread:
1253 case lltok::kw_ssp:
1254 case lltok::kw_sspreq:
1255 case lltok::kw_sspstrong:
1256 case lltok::kw_uwtable:
Bill Wendlinge01b81b2012-12-04 23:40:58 +00001257 HaveError |= Error(Lex.getLoc(), "invalid use of function-only attribute");
Bill Wendlingdc998cc2012-09-28 22:30:18 +00001258 break;
Nick Lewyckydc897372013-07-06 00:29:58 +00001259
1260 case lltok::kw_readnone:
1261 case lltok::kw_readonly:
1262 HaveError |= Error(Lex.getLoc(), "invalid use of attribute on return type");
Bill Wendlingdc998cc2012-09-28 22:30:18 +00001263 }
1264
Chris Lattnerdf986172009-01-02 07:01:27 +00001265 Lex.Lex();
1266 }
1267}
1268
1269/// ParseOptionalLinkage
1270/// ::= /*empty*/
Rafael Espindolabb46f522009-01-15 20:18:42 +00001271/// ::= 'private'
Bill Wendling3d10a5a2009-07-20 01:03:30 +00001272/// ::= 'linker_private'
Bill Wendling5e721d72010-07-01 21:55:59 +00001273/// ::= 'linker_private_weak'
Chris Lattnerdf986172009-01-02 07:01:27 +00001274/// ::= 'internal'
1275/// ::= 'weak'
Duncan Sands667d4b82009-03-07 15:45:40 +00001276/// ::= 'weak_odr'
Chris Lattnerdf986172009-01-02 07:01:27 +00001277/// ::= 'linkonce'
Duncan Sands667d4b82009-03-07 15:45:40 +00001278/// ::= 'linkonce_odr'
Bill Wendling32811be2012-08-17 18:33:14 +00001279/// ::= 'linkonce_odr_auto_hide'
Bill Wendling5e721d72010-07-01 21:55:59 +00001280/// ::= 'available_externally'
Chris Lattnerdf986172009-01-02 07:01:27 +00001281/// ::= 'appending'
1282/// ::= 'dllexport'
1283/// ::= 'common'
1284/// ::= 'dllimport'
1285/// ::= 'extern_weak'
1286/// ::= 'external'
1287bool LLParser::ParseOptionalLinkage(unsigned &Res, bool &HasLinkage) {
1288 HasLinkage = false;
1289 switch (Lex.getKind()) {
Bill Wendling3d10a5a2009-07-20 01:03:30 +00001290 default: Res=GlobalValue::ExternalLinkage; return false;
1291 case lltok::kw_private: Res = GlobalValue::PrivateLinkage; break;
1292 case lltok::kw_linker_private: Res = GlobalValue::LinkerPrivateLinkage; break;
Bill Wendling5e721d72010-07-01 21:55:59 +00001293 case lltok::kw_linker_private_weak:
1294 Res = GlobalValue::LinkerPrivateWeakLinkage;
1295 break;
Bill Wendling3d10a5a2009-07-20 01:03:30 +00001296 case lltok::kw_internal: Res = GlobalValue::InternalLinkage; break;
1297 case lltok::kw_weak: Res = GlobalValue::WeakAnyLinkage; break;
1298 case lltok::kw_weak_odr: Res = GlobalValue::WeakODRLinkage; break;
1299 case lltok::kw_linkonce: Res = GlobalValue::LinkOnceAnyLinkage; break;
1300 case lltok::kw_linkonce_odr: Res = GlobalValue::LinkOnceODRLinkage; break;
Bill Wendling32811be2012-08-17 18:33:14 +00001301 case lltok::kw_linkonce_odr_auto_hide:
1302 case lltok::kw_linker_private_weak_def_auto: // FIXME: For backwards compat.
1303 Res = GlobalValue::LinkOnceODRAutoHideLinkage;
1304 break;
Chris Lattner266c7bb2009-04-13 05:44:34 +00001305 case lltok::kw_available_externally:
1306 Res = GlobalValue::AvailableExternallyLinkage;
1307 break;
Bill Wendling3d10a5a2009-07-20 01:03:30 +00001308 case lltok::kw_appending: Res = GlobalValue::AppendingLinkage; break;
1309 case lltok::kw_dllexport: Res = GlobalValue::DLLExportLinkage; break;
1310 case lltok::kw_common: Res = GlobalValue::CommonLinkage; break;
1311 case lltok::kw_dllimport: Res = GlobalValue::DLLImportLinkage; break;
1312 case lltok::kw_extern_weak: Res = GlobalValue::ExternalWeakLinkage; break;
1313 case lltok::kw_external: Res = GlobalValue::ExternalLinkage; break;
Chris Lattnerdf986172009-01-02 07:01:27 +00001314 }
1315 Lex.Lex();
1316 HasLinkage = true;
1317 return false;
1318}
1319
1320/// ParseOptionalVisibility
1321/// ::= /*empty*/
1322/// ::= 'default'
1323/// ::= 'hidden'
1324/// ::= 'protected'
Daniel Dunbara279bc32009-09-20 02:20:51 +00001325///
Chris Lattnerdf986172009-01-02 07:01:27 +00001326bool LLParser::ParseOptionalVisibility(unsigned &Res) {
1327 switch (Lex.getKind()) {
1328 default: Res = GlobalValue::DefaultVisibility; return false;
1329 case lltok::kw_default: Res = GlobalValue::DefaultVisibility; break;
1330 case lltok::kw_hidden: Res = GlobalValue::HiddenVisibility; break;
1331 case lltok::kw_protected: Res = GlobalValue::ProtectedVisibility; break;
1332 }
1333 Lex.Lex();
1334 return false;
1335}
1336
1337/// ParseOptionalCallingConv
1338/// ::= /*empty*/
1339/// ::= 'ccc'
1340/// ::= 'fastcc'
Elena Demikhovsky35752222012-10-24 14:46:16 +00001341/// ::= 'kw_intel_ocl_bicc'
Chris Lattnerdf986172009-01-02 07:01:27 +00001342/// ::= 'coldcc'
1343/// ::= 'x86_stdcallcc'
1344/// ::= 'x86_fastcallcc'
Anton Korobeynikovded05e32010-05-16 09:08:45 +00001345/// ::= 'x86_thiscallcc'
Anton Korobeynikov385f5a92009-06-16 18:50:49 +00001346/// ::= 'arm_apcscc'
1347/// ::= 'arm_aapcscc'
1348/// ::= 'arm_aapcs_vfpcc'
Anton Korobeynikov211a14e2009-12-07 02:27:35 +00001349/// ::= 'msp430_intrcc'
Che-Liang Chiouf9930da2010-09-25 07:46:17 +00001350/// ::= 'ptx_kernel'
1351/// ::= 'ptx_device'
Micah Villmowe53d6052012-10-01 17:01:31 +00001352/// ::= 'spir_func'
1353/// ::= 'spir_kernel'
Charles Davisac226bb2013-07-12 06:02:35 +00001354/// ::= 'x86_64_sysvcc'
1355/// ::= 'x86_64_win64cc'
Chris Lattnerdf986172009-01-02 07:01:27 +00001356/// ::= 'cc' UINT
Anton Korobeynikov385f5a92009-06-16 18:50:49 +00001357///
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001358bool LLParser::ParseOptionalCallingConv(CallingConv::ID &CC) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001359 switch (Lex.getKind()) {
1360 default: CC = CallingConv::C; return false;
1361 case lltok::kw_ccc: CC = CallingConv::C; break;
1362 case lltok::kw_fastcc: CC = CallingConv::Fast; break;
1363 case lltok::kw_coldcc: CC = CallingConv::Cold; break;
1364 case lltok::kw_x86_stdcallcc: CC = CallingConv::X86_StdCall; break;
1365 case lltok::kw_x86_fastcallcc: CC = CallingConv::X86_FastCall; break;
Anton Korobeynikovded05e32010-05-16 09:08:45 +00001366 case lltok::kw_x86_thiscallcc: CC = CallingConv::X86_ThisCall; break;
Anton Korobeynikov385f5a92009-06-16 18:50:49 +00001367 case lltok::kw_arm_apcscc: CC = CallingConv::ARM_APCS; break;
1368 case lltok::kw_arm_aapcscc: CC = CallingConv::ARM_AAPCS; break;
1369 case lltok::kw_arm_aapcs_vfpcc:CC = CallingConv::ARM_AAPCS_VFP; break;
Anton Korobeynikov211a14e2009-12-07 02:27:35 +00001370 case lltok::kw_msp430_intrcc: CC = CallingConv::MSP430_INTR; break;
Che-Liang Chiouf9930da2010-09-25 07:46:17 +00001371 case lltok::kw_ptx_kernel: CC = CallingConv::PTX_Kernel; break;
1372 case lltok::kw_ptx_device: CC = CallingConv::PTX_Device; break;
Micah Villmowe53d6052012-10-01 17:01:31 +00001373 case lltok::kw_spir_kernel: CC = CallingConv::SPIR_KERNEL; break;
1374 case lltok::kw_spir_func: CC = CallingConv::SPIR_FUNC; break;
Elena Demikhovsky35752222012-10-24 14:46:16 +00001375 case lltok::kw_intel_ocl_bicc: CC = CallingConv::Intel_OCL_BI; break;
Charles Davisac226bb2013-07-12 06:02:35 +00001376 case lltok::kw_x86_64_sysvcc: CC = CallingConv::X86_64_SysV; break;
1377 case lltok::kw_x86_64_win64cc: CC = CallingConv::X86_64_Win64; break;
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001378 case lltok::kw_cc: {
1379 unsigned ArbitraryCC;
1380 Lex.Lex();
David Blaikie4d6ccb52012-01-20 21:51:11 +00001381 if (ParseUInt32(ArbitraryCC))
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001382 return true;
David Blaikie4d6ccb52012-01-20 21:51:11 +00001383 CC = static_cast<CallingConv::ID>(ArbitraryCC);
1384 return false;
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001385 }
Chris Lattnerdf986172009-01-02 07:01:27 +00001386 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001387
Chris Lattnerdf986172009-01-02 07:01:27 +00001388 Lex.Lex();
1389 return false;
1390}
1391
Chris Lattnerb8c46862009-12-30 05:31:19 +00001392/// ParseInstructionMetadata
Chris Lattner3f3a0f62009-12-29 21:25:40 +00001393/// ::= !dbg !42 (',' !dbg !57)*
Dan Gohman9d072f52010-08-24 02:05:17 +00001394bool LLParser::ParseInstructionMetadata(Instruction *Inst,
1395 PerFunctionState *PFS) {
Chris Lattnerb8c46862009-12-30 05:31:19 +00001396 do {
1397 if (Lex.getKind() != lltok::MetadataVar)
1398 return TokError("expected metadata after comma");
Devang Patel0475c912009-09-29 00:01:14 +00001399
Chris Lattner3f3a0f62009-12-29 21:25:40 +00001400 std::string Name = Lex.getStrVal();
Benjamin Kramer85dadec2011-12-06 11:50:26 +00001401 unsigned MDK = M->getMDKindID(Name);
Chris Lattner3f3a0f62009-12-29 21:25:40 +00001402 Lex.Lex();
Chris Lattner52e20312009-10-19 05:31:10 +00001403
Chris Lattner442ffa12009-12-29 21:53:55 +00001404 MDNode *Node;
Chris Lattner449c3102010-04-01 05:14:45 +00001405 SMLoc Loc = Lex.getLoc();
Dan Gohman309b3af2010-08-24 02:24:03 +00001406
1407 if (ParseToken(lltok::exclaim, "expected '!' here"))
Chris Lattnere434d272009-12-30 04:56:59 +00001408 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001409
Dan Gohman68261142010-08-24 14:35:45 +00001410 // This code is similar to that of ParseMetadataValue, however it needs to
1411 // have special-case code for a forward reference; see the comments on
1412 // ForwardRefInstMetadata for details. Also, MDStrings are not supported
1413 // at the top level here.
Dan Gohman309b3af2010-08-24 02:24:03 +00001414 if (Lex.getKind() == lltok::lbrace) {
1415 ValID ID;
1416 if (ParseMetadataListValue(ID, PFS))
1417 return true;
1418 assert(ID.Kind == ValID::t_MDNode);
1419 Inst->setMetadata(MDK, ID.MDNodeVal);
Chris Lattner449c3102010-04-01 05:14:45 +00001420 } else {
Nick Lewyckyc6877b42010-09-30 21:04:13 +00001421 unsigned NodeID = 0;
Dan Gohman309b3af2010-08-24 02:24:03 +00001422 if (ParseMDNodeID(Node, NodeID))
1423 return true;
1424 if (Node) {
1425 // If we got the node, add it to the instruction.
1426 Inst->setMetadata(MDK, Node);
1427 } else {
1428 MDRef R = { Loc, MDK, NodeID };
1429 // Otherwise, remember that this should be resolved later.
1430 ForwardRefInstMetadata[Inst].push_back(R);
1431 }
Chris Lattner449c3102010-04-01 05:14:45 +00001432 }
Chris Lattner3f3a0f62009-12-29 21:25:40 +00001433
Manman Ren804f0342013-09-28 00:22:27 +00001434 if (MDK == LLVMContext::MD_tbaa)
1435 InstsWithTBAATag.push_back(Inst);
1436
Chris Lattner3f3a0f62009-12-29 21:25:40 +00001437 // If this is the end of the list, we're done.
Chris Lattnerb8c46862009-12-30 05:31:19 +00001438 } while (EatIfPresent(lltok::comma));
1439 return false;
Devang Patelf633a062009-09-17 23:04:48 +00001440}
1441
Chris Lattnerdf986172009-01-02 07:01:27 +00001442/// ParseOptionalAlignment
1443/// ::= /* empty */
1444/// ::= 'align' 4
1445bool LLParser::ParseOptionalAlignment(unsigned &Alignment) {
1446 Alignment = 0;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001447 if (!EatIfPresent(lltok::kw_align))
1448 return false;
Chris Lattner3fbb3ab2009-01-05 07:46:05 +00001449 LocTy AlignLoc = Lex.getLoc();
1450 if (ParseUInt32(Alignment)) return true;
1451 if (!isPowerOf2_32(Alignment))
1452 return Error(AlignLoc, "alignment is not a power of two");
Dan Gohmane16829b2010-07-30 21:07:05 +00001453 if (Alignment > Value::MaximumAlignment)
Dan Gohman138aa2a2010-07-28 20:12:04 +00001454 return Error(AlignLoc, "huge alignments are not supported yet");
Chris Lattner3fbb3ab2009-01-05 07:46:05 +00001455 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00001456}
1457
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00001458/// ParseOptionalCommaAlign
Michael Ilseman407a6162012-11-15 22:34:00 +00001459/// ::=
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00001460/// ::= ',' align 4
1461///
1462/// This returns with AteExtraComma set to true if it ate an excess comma at the
1463/// end.
1464bool LLParser::ParseOptionalCommaAlign(unsigned &Alignment,
1465 bool &AteExtraComma) {
1466 AteExtraComma = false;
1467 while (EatIfPresent(lltok::comma)) {
1468 // Metadata at the end is an early exit.
Chris Lattner1d928312009-12-30 05:02:06 +00001469 if (Lex.getKind() == lltok::MetadataVar) {
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00001470 AteExtraComma = true;
1471 return false;
1472 }
Michael Ilseman407a6162012-11-15 22:34:00 +00001473
Chris Lattner093eed12010-04-23 00:50:50 +00001474 if (Lex.getKind() != lltok::kw_align)
1475 return Error(Lex.getLoc(), "expected metadata or 'align'");
Duncan Sandsbf9fc532010-10-21 16:07:10 +00001476
Chris Lattner093eed12010-04-23 00:50:50 +00001477 if (ParseOptionalAlignment(Alignment)) return true;
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00001478 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001479
Devang Patelf633a062009-09-17 23:04:48 +00001480 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00001481}
1482
Eli Friedman47f35132011-07-25 23:16:38 +00001483/// ParseScopeAndOrdering
1484/// if isAtomic: ::= 'singlethread'? AtomicOrdering
1485/// else: ::=
1486///
1487/// This sets Scope and Ordering to the parsed values.
1488bool LLParser::ParseScopeAndOrdering(bool isAtomic, SynchronizationScope &Scope,
1489 AtomicOrdering &Ordering) {
1490 if (!isAtomic)
1491 return false;
1492
1493 Scope = CrossThread;
1494 if (EatIfPresent(lltok::kw_singlethread))
1495 Scope = SingleThread;
1496 switch (Lex.getKind()) {
1497 default: return TokError("Expected ordering on atomic instruction");
1498 case lltok::kw_unordered: Ordering = Unordered; break;
1499 case lltok::kw_monotonic: Ordering = Monotonic; break;
1500 case lltok::kw_acquire: Ordering = Acquire; break;
1501 case lltok::kw_release: Ordering = Release; break;
1502 case lltok::kw_acq_rel: Ordering = AcquireRelease; break;
1503 case lltok::kw_seq_cst: Ordering = SequentiallyConsistent; break;
1504 }
1505 Lex.Lex();
1506 return false;
1507}
1508
Charles Davis1e063d12010-02-12 00:31:15 +00001509/// ParseOptionalStackAlignment
1510/// ::= /* empty */
1511/// ::= 'alignstack' '(' 4 ')'
1512bool LLParser::ParseOptionalStackAlignment(unsigned &Alignment) {
1513 Alignment = 0;
1514 if (!EatIfPresent(lltok::kw_alignstack))
1515 return false;
1516 LocTy ParenLoc = Lex.getLoc();
1517 if (!EatIfPresent(lltok::lparen))
1518 return Error(ParenLoc, "expected '('");
1519 LocTy AlignLoc = Lex.getLoc();
1520 if (ParseUInt32(Alignment)) return true;
1521 ParenLoc = Lex.getLoc();
1522 if (!EatIfPresent(lltok::rparen))
1523 return Error(ParenLoc, "expected ')'");
1524 if (!isPowerOf2_32(Alignment))
1525 return Error(AlignLoc, "stack alignment is not a power of two");
1526 return false;
1527}
Devang Patelf633a062009-09-17 23:04:48 +00001528
Chris Lattner628c13a2009-12-30 05:14:00 +00001529/// ParseIndexList - This parses the index list for an insert/extractvalue
1530/// instruction. This sets AteExtraComma in the case where we eat an extra
1531/// comma at the end of the line and find that it is followed by metadata.
1532/// Clients that don't allow metadata can call the version of this function that
1533/// only takes one argument.
1534///
Chris Lattnerdf986172009-01-02 07:01:27 +00001535/// ParseIndexList
1536/// ::= (',' uint32)+
Chris Lattner628c13a2009-12-30 05:14:00 +00001537///
1538bool LLParser::ParseIndexList(SmallVectorImpl<unsigned> &Indices,
1539 bool &AteExtraComma) {
1540 AteExtraComma = false;
Michael Ilseman407a6162012-11-15 22:34:00 +00001541
Chris Lattnerdf986172009-01-02 07:01:27 +00001542 if (Lex.getKind() != lltok::comma)
1543 return TokError("expected ',' as start of index list");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001544
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001545 while (EatIfPresent(lltok::comma)) {
Chris Lattner628c13a2009-12-30 05:14:00 +00001546 if (Lex.getKind() == lltok::MetadataVar) {
1547 AteExtraComma = true;
1548 return false;
1549 }
Nick Lewycky28815c42010-09-29 23:32:20 +00001550 unsigned Idx = 0;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001551 if (ParseUInt32(Idx)) return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00001552 Indices.push_back(Idx);
1553 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001554
Chris Lattnerdf986172009-01-02 07:01:27 +00001555 return false;
1556}
1557
1558//===----------------------------------------------------------------------===//
1559// Type Parsing.
1560//===----------------------------------------------------------------------===//
1561
Chris Lattner1afcace2011-07-09 17:41:24 +00001562/// ParseType - Parse a type.
1563bool LLParser::ParseType(Type *&Result, bool AllowVoid) {
1564 SMLoc TypeLoc = Lex.getLoc();
Chris Lattnerdf986172009-01-02 07:01:27 +00001565 switch (Lex.getKind()) {
1566 default:
1567 return TokError("expected type");
1568 case lltok::Type:
Chris Lattner1afcace2011-07-09 17:41:24 +00001569 // Type ::= 'float' | 'void' (etc)
Chris Lattnerdf986172009-01-02 07:01:27 +00001570 Result = Lex.getTyVal();
Daniel Dunbara279bc32009-09-20 02:20:51 +00001571 Lex.Lex();
Chris Lattnerdf986172009-01-02 07:01:27 +00001572 break;
Chris Lattnerdf986172009-01-02 07:01:27 +00001573 case lltok::lbrace:
Chris Lattner1afcace2011-07-09 17:41:24 +00001574 // Type ::= StructType
1575 if (ParseAnonStructType(Result, false))
Chris Lattnerdf986172009-01-02 07:01:27 +00001576 return true;
1577 break;
1578 case lltok::lsquare:
Chris Lattner1afcace2011-07-09 17:41:24 +00001579 // Type ::= '[' ... ']'
Chris Lattnerdf986172009-01-02 07:01:27 +00001580 Lex.Lex(); // eat the lsquare.
1581 if (ParseArrayVectorType(Result, false))
1582 return true;
1583 break;
1584 case lltok::less: // Either vector or packed struct.
Chris Lattner1afcace2011-07-09 17:41:24 +00001585 // Type ::= '<' ... '>'
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001586 Lex.Lex();
1587 if (Lex.getKind() == lltok::lbrace) {
Chris Lattner1afcace2011-07-09 17:41:24 +00001588 if (ParseAnonStructType(Result, true) ||
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001589 ParseToken(lltok::greater, "expected '>' at end of packed struct"))
Chris Lattnerdf986172009-01-02 07:01:27 +00001590 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00001591 } else if (ParseArrayVectorType(Result, true))
1592 return true;
1593 break;
Chris Lattner1afcace2011-07-09 17:41:24 +00001594 case lltok::LocalVar: {
1595 // Type ::= %foo
1596 std::pair<Type*, LocTy> &Entry = NamedTypes[Lex.getStrVal()];
Michael Ilseman407a6162012-11-15 22:34:00 +00001597
Chris Lattner1afcace2011-07-09 17:41:24 +00001598 // If the type hasn't been defined yet, create a forward definition and
1599 // remember where that forward def'n was seen (in case it never is defined).
1600 if (Entry.first == 0) {
Chris Lattner3ebb6492011-08-12 18:06:37 +00001601 Entry.first = StructType::create(Context, Lex.getStrVal());
Chris Lattner1afcace2011-07-09 17:41:24 +00001602 Entry.second = Lex.getLoc();
Chris Lattnerdf986172009-01-02 07:01:27 +00001603 }
Chris Lattner1afcace2011-07-09 17:41:24 +00001604 Result = Entry.first;
Chris Lattnerdf986172009-01-02 07:01:27 +00001605 Lex.Lex();
1606 break;
Chris Lattner1afcace2011-07-09 17:41:24 +00001607 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001608
Chris Lattner1afcace2011-07-09 17:41:24 +00001609 case lltok::LocalVarID: {
1610 // Type ::= %4
1611 if (Lex.getUIntVal() >= NumberedTypes.size())
1612 NumberedTypes.resize(Lex.getUIntVal()+1);
1613 std::pair<Type*, LocTy> &Entry = NumberedTypes[Lex.getUIntVal()];
Michael Ilseman407a6162012-11-15 22:34:00 +00001614
Chris Lattner1afcace2011-07-09 17:41:24 +00001615 // If the type hasn't been defined yet, create a forward definition and
1616 // remember where that forward def'n was seen (in case it never is defined).
1617 if (Entry.first == 0) {
Chris Lattner3ebb6492011-08-12 18:06:37 +00001618 Entry.first = StructType::create(Context);
Chris Lattner1afcace2011-07-09 17:41:24 +00001619 Entry.second = Lex.getLoc();
Chris Lattnerdf986172009-01-02 07:01:27 +00001620 }
Chris Lattner1afcace2011-07-09 17:41:24 +00001621 Result = Entry.first;
Chris Lattnerdf986172009-01-02 07:01:27 +00001622 Lex.Lex();
1623 break;
Chris Lattnerdf986172009-01-02 07:01:27 +00001624 }
1625 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001626
1627 // Parse the type suffixes.
Chris Lattnerdf986172009-01-02 07:01:27 +00001628 while (1) {
1629 switch (Lex.getKind()) {
1630 // End of type.
Chris Lattner1afcace2011-07-09 17:41:24 +00001631 default:
1632 if (!AllowVoid && Result->isVoidTy())
1633 return Error(TypeLoc, "void type only allowed for function results");
1634 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00001635
Chris Lattner1afcace2011-07-09 17:41:24 +00001636 // Type ::= Type '*'
Chris Lattnerdf986172009-01-02 07:01:27 +00001637 case lltok::star:
Chris Lattner1afcace2011-07-09 17:41:24 +00001638 if (Result->isLabelTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00001639 return TokError("basic block pointers are invalid");
Chris Lattner1afcace2011-07-09 17:41:24 +00001640 if (Result->isVoidTy())
1641 return TokError("pointers to void are invalid - use i8* instead");
1642 if (!PointerType::isValidElementType(Result))
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001643 return TokError("pointer to this type is invalid");
Chris Lattner1afcace2011-07-09 17:41:24 +00001644 Result = PointerType::getUnqual(Result);
Chris Lattnerdf986172009-01-02 07:01:27 +00001645 Lex.Lex();
1646 break;
1647
Chris Lattner1afcace2011-07-09 17:41:24 +00001648 // Type ::= Type 'addrspace' '(' uint32 ')' '*'
Chris Lattnerdf986172009-01-02 07:01:27 +00001649 case lltok::kw_addrspace: {
Chris Lattner1afcace2011-07-09 17:41:24 +00001650 if (Result->isLabelTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00001651 return TokError("basic block pointers are invalid");
Chris Lattner1afcace2011-07-09 17:41:24 +00001652 if (Result->isVoidTy())
Dan Gohmanb9070d32009-02-09 17:41:21 +00001653 return TokError("pointers to void are invalid; use i8* instead");
Chris Lattner1afcace2011-07-09 17:41:24 +00001654 if (!PointerType::isValidElementType(Result))
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001655 return TokError("pointer to this type is invalid");
Chris Lattnerdf986172009-01-02 07:01:27 +00001656 unsigned AddrSpace;
1657 if (ParseOptionalAddrSpace(AddrSpace) ||
1658 ParseToken(lltok::star, "expected '*' in address space"))
1659 return true;
1660
Chris Lattner1afcace2011-07-09 17:41:24 +00001661 Result = PointerType::get(Result, AddrSpace);
Chris Lattnerdf986172009-01-02 07:01:27 +00001662 break;
1663 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001664
Chris Lattnerdf986172009-01-02 07:01:27 +00001665 /// Types '(' ArgTypeListI ')' OptFuncAttrs
1666 case lltok::lparen:
1667 if (ParseFunctionType(Result))
1668 return true;
1669 break;
1670 }
1671 }
1672}
1673
1674/// ParseParameterList
1675/// ::= '(' ')'
1676/// ::= '(' Arg (',' Arg)* ')'
1677/// Arg
1678/// ::= Type OptionalAttributes Value OptionalAttributes
1679bool LLParser::ParseParameterList(SmallVectorImpl<ParamInfo> &ArgList,
1680 PerFunctionState &PFS) {
1681 if (ParseToken(lltok::lparen, "expected '(' in call"))
1682 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001683
Bill Wendling73dee182013-01-31 00:29:54 +00001684 unsigned AttrIndex = 1;
Chris Lattnerdf986172009-01-02 07:01:27 +00001685 while (Lex.getKind() != lltok::rparen) {
1686 // If this isn't the first argument, we need a comma.
1687 if (!ArgList.empty() &&
1688 ParseToken(lltok::comma, "expected ',' in argument list"))
1689 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001690
Chris Lattnerdf986172009-01-02 07:01:27 +00001691 // Parse the argument.
1692 LocTy ArgLoc;
Chris Lattner1afcace2011-07-09 17:41:24 +00001693 Type *ArgTy = 0;
Bill Wendling702cc912012-10-15 20:35:56 +00001694 AttrBuilder ArgAttrs;
Chris Lattnerdf986172009-01-02 07:01:27 +00001695 Value *V;
Victor Hernandez19715562009-12-03 23:40:58 +00001696 if (ParseType(ArgTy, ArgLoc))
Chris Lattnerdf986172009-01-02 07:01:27 +00001697 return true;
Victor Hernandez19715562009-12-03 23:40:58 +00001698
Chris Lattner287881d2009-12-30 02:11:14 +00001699 // Otherwise, handle normal operands.
Bill Wendlinge01b81b2012-12-04 23:40:58 +00001700 if (ParseOptionalParamAttrs(ArgAttrs) || ParseValue(ArgTy, V, PFS))
Chris Lattner287881d2009-12-30 02:11:14 +00001701 return true;
Bill Wendling73dee182013-01-31 00:29:54 +00001702 ArgList.push_back(ParamInfo(ArgLoc, V, AttributeSet::get(V->getContext(),
1703 AttrIndex++,
1704 ArgAttrs)));
Chris Lattnerdf986172009-01-02 07:01:27 +00001705 }
1706
1707 Lex.Lex(); // Lex the ')'.
1708 return false;
1709}
1710
1711
1712
Chris Lattnerdfd19dd2009-01-05 18:34:07 +00001713/// ParseArgumentList - Parse the argument list for a function type or function
Chris Lattner1afcace2011-07-09 17:41:24 +00001714/// prototype.
Chris Lattnerdf986172009-01-02 07:01:27 +00001715/// ::= '(' ArgTypeListI ')'
1716/// ArgTypeListI
1717/// ::= /*empty*/
1718/// ::= '...'
1719/// ::= ArgTypeList ',' '...'
1720/// ::= ArgType (',' ArgType)*
Chris Lattnerdfd19dd2009-01-05 18:34:07 +00001721///
Chris Lattner1afcace2011-07-09 17:41:24 +00001722bool LLParser::ParseArgumentList(SmallVectorImpl<ArgInfo> &ArgList,
1723 bool &isVarArg){
Chris Lattnerdf986172009-01-02 07:01:27 +00001724 isVarArg = false;
1725 assert(Lex.getKind() == lltok::lparen);
1726 Lex.Lex(); // eat the (.
Daniel Dunbara279bc32009-09-20 02:20:51 +00001727
Chris Lattnerdf986172009-01-02 07:01:27 +00001728 if (Lex.getKind() == lltok::rparen) {
1729 // empty
1730 } else if (Lex.getKind() == lltok::dotdotdot) {
1731 isVarArg = true;
1732 Lex.Lex();
1733 } else {
1734 LocTy TypeLoc = Lex.getLoc();
Chris Lattner1afcace2011-07-09 17:41:24 +00001735 Type *ArgTy = 0;
Bill Wendling702cc912012-10-15 20:35:56 +00001736 AttrBuilder Attrs;
Chris Lattnerdf986172009-01-02 07:01:27 +00001737 std::string Name;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001738
Chris Lattner1afcace2011-07-09 17:41:24 +00001739 if (ParseType(ArgTy) ||
Bill Wendlinge01b81b2012-12-04 23:40:58 +00001740 ParseOptionalParamAttrs(Attrs)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001741
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001742 if (ArgTy->isVoidTy())
Chris Lattnera9a9e072009-03-09 04:49:14 +00001743 return Error(TypeLoc, "argument can not have void type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001744
Chris Lattner7a1b9bd2011-06-17 06:36:20 +00001745 if (Lex.getKind() == lltok::LocalVar) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001746 Name = Lex.getStrVal();
1747 Lex.Lex();
1748 }
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001749
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001750 if (!FunctionType::isValidArgumentType(ArgTy))
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001751 return Error(TypeLoc, "invalid type for function argument");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001752
Bill Wendling73dee182013-01-31 00:29:54 +00001753 unsigned AttrIndex = 1;
Bill Wendlingcb3de0b2012-10-15 04:46:55 +00001754 ArgList.push_back(ArgInfo(TypeLoc, ArgTy,
Bill Wendling73dee182013-01-31 00:29:54 +00001755 AttributeSet::get(ArgTy->getContext(),
1756 AttrIndex++, Attrs), Name));
Daniel Dunbara279bc32009-09-20 02:20:51 +00001757
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001758 while (EatIfPresent(lltok::comma)) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001759 // Handle ... at end of arg list.
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001760 if (EatIfPresent(lltok::dotdotdot)) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001761 isVarArg = true;
Chris Lattnerdf986172009-01-02 07:01:27 +00001762 break;
1763 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001764
Chris Lattnerdf986172009-01-02 07:01:27 +00001765 // Otherwise must be an argument type.
1766 TypeLoc = Lex.getLoc();
Bill Wendlinge01b81b2012-12-04 23:40:58 +00001767 if (ParseType(ArgTy) || ParseOptionalParamAttrs(Attrs)) return true;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001768
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001769 if (ArgTy->isVoidTy())
Chris Lattnera9a9e072009-03-09 04:49:14 +00001770 return Error(TypeLoc, "argument can not have void type");
1771
Chris Lattner7a1b9bd2011-06-17 06:36:20 +00001772 if (Lex.getKind() == lltok::LocalVar) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001773 Name = Lex.getStrVal();
1774 Lex.Lex();
1775 } else {
1776 Name = "";
1777 }
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001778
Chris Lattner1afcace2011-07-09 17:41:24 +00001779 if (!ArgTy->isFirstClassType())
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001780 return Error(TypeLoc, "invalid type for function argument");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001781
Bill Wendlingcb3de0b2012-10-15 04:46:55 +00001782 ArgList.push_back(ArgInfo(TypeLoc, ArgTy,
Bill Wendling73dee182013-01-31 00:29:54 +00001783 AttributeSet::get(ArgTy->getContext(),
1784 AttrIndex++, Attrs),
Bill Wendlingcb3de0b2012-10-15 04:46:55 +00001785 Name));
Chris Lattnerdf986172009-01-02 07:01:27 +00001786 }
1787 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001788
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001789 return ParseToken(lltok::rparen, "expected ')' at end of argument list");
Chris Lattnerdf986172009-01-02 07:01:27 +00001790}
Daniel Dunbara279bc32009-09-20 02:20:51 +00001791
Chris Lattnerdf986172009-01-02 07:01:27 +00001792/// ParseFunctionType
1793/// ::= Type ArgumentList OptionalAttrs
Chris Lattner1afcace2011-07-09 17:41:24 +00001794bool LLParser::ParseFunctionType(Type *&Result) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001795 assert(Lex.getKind() == lltok::lparen);
1796
Chris Lattnerd77d04c2009-01-05 08:04:33 +00001797 if (!FunctionType::isValidReturnType(Result))
1798 return TokError("invalid function return type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001799
Chris Lattner1afcace2011-07-09 17:41:24 +00001800 SmallVector<ArgInfo, 8> ArgList;
Chris Lattnerdf986172009-01-02 07:01:27 +00001801 bool isVarArg;
Chris Lattner1afcace2011-07-09 17:41:24 +00001802 if (ParseArgumentList(ArgList, isVarArg))
Chris Lattnerdf986172009-01-02 07:01:27 +00001803 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001804
Chris Lattnerdf986172009-01-02 07:01:27 +00001805 // Reject names on the arguments lists.
1806 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
1807 if (!ArgList[i].Name.empty())
1808 return Error(ArgList[i].Loc, "argument name invalid in function type");
Bill Wendling73dee182013-01-31 00:29:54 +00001809 if (ArgList[i].Attrs.hasAttributes(i + 1))
Chris Lattnera16546a2011-06-17 17:37:13 +00001810 return Error(ArgList[i].Loc,
1811 "argument attributes invalid in function type");
Chris Lattnerdf986172009-01-02 07:01:27 +00001812 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001813
Jay Foad5fdd6c82011-07-12 14:06:48 +00001814 SmallVector<Type*, 16> ArgListTy;
Chris Lattnerdf986172009-01-02 07:01:27 +00001815 for (unsigned i = 0, e = ArgList.size(); i != e; ++i)
Chris Lattner1afcace2011-07-09 17:41:24 +00001816 ArgListTy.push_back(ArgList[i].Ty);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001817
Chris Lattner1afcace2011-07-09 17:41:24 +00001818 Result = FunctionType::get(Result, ArgListTy, isVarArg);
Chris Lattnerdf986172009-01-02 07:01:27 +00001819 return false;
1820}
1821
Chris Lattner1afcace2011-07-09 17:41:24 +00001822/// ParseAnonStructType - Parse an anonymous struct type, which is inlined into
1823/// other structs.
1824bool LLParser::ParseAnonStructType(Type *&Result, bool Packed) {
1825 SmallVector<Type*, 8> Elts;
1826 if (ParseStructBody(Elts)) return true;
Michael Ilseman407a6162012-11-15 22:34:00 +00001827
Chris Lattner1afcace2011-07-09 17:41:24 +00001828 Result = StructType::get(Context, Elts, Packed);
1829 return false;
1830}
1831
1832/// ParseStructDefinition - Parse a struct in a 'type' definition.
1833bool LLParser::ParseStructDefinition(SMLoc TypeLoc, StringRef Name,
1834 std::pair<Type*, LocTy> &Entry,
1835 Type *&ResultTy) {
1836 // If the type was already defined, diagnose the redefinition.
1837 if (Entry.first && !Entry.second.isValid())
1838 return Error(TypeLoc, "redefinition of type");
Michael Ilseman407a6162012-11-15 22:34:00 +00001839
Chris Lattner1afcace2011-07-09 17:41:24 +00001840 // If we have opaque, just return without filling in the definition for the
1841 // struct. This counts as a definition as far as the .ll file goes.
1842 if (EatIfPresent(lltok::kw_opaque)) {
1843 // This type is being defined, so clear the location to indicate this.
1844 Entry.second = SMLoc();
Michael Ilseman407a6162012-11-15 22:34:00 +00001845
Chris Lattner1afcace2011-07-09 17:41:24 +00001846 // If this type number has never been uttered, create it.
1847 if (Entry.first == 0)
Chris Lattner3ebb6492011-08-12 18:06:37 +00001848 Entry.first = StructType::create(Context, Name);
Chris Lattner1afcace2011-07-09 17:41:24 +00001849 ResultTy = Entry.first;
1850 return false;
1851 }
Michael Ilseman407a6162012-11-15 22:34:00 +00001852
Chris Lattner1afcace2011-07-09 17:41:24 +00001853 // If the type starts with '<', then it is either a packed struct or a vector.
1854 bool isPacked = EatIfPresent(lltok::less);
1855
1856 // If we don't have a struct, then we have a random type alias, which we
1857 // accept for compatibility with old files. These types are not allowed to be
1858 // forward referenced and not allowed to be recursive.
1859 if (Lex.getKind() != lltok::lbrace) {
1860 if (Entry.first)
1861 return Error(TypeLoc, "forward references to non-struct type");
Michael Ilseman407a6162012-11-15 22:34:00 +00001862
Chris Lattner1afcace2011-07-09 17:41:24 +00001863 ResultTy = 0;
1864 if (isPacked)
1865 return ParseArrayVectorType(ResultTy, true);
1866 return ParseType(ResultTy);
1867 }
Michael Ilseman407a6162012-11-15 22:34:00 +00001868
Chris Lattner1afcace2011-07-09 17:41:24 +00001869 // This type is being defined, so clear the location to indicate this.
1870 Entry.second = SMLoc();
Michael Ilseman407a6162012-11-15 22:34:00 +00001871
Chris Lattner1afcace2011-07-09 17:41:24 +00001872 // If this type number has never been uttered, create it.
1873 if (Entry.first == 0)
Chris Lattner3ebb6492011-08-12 18:06:37 +00001874 Entry.first = StructType::create(Context, Name);
Michael Ilseman407a6162012-11-15 22:34:00 +00001875
Chris Lattner1afcace2011-07-09 17:41:24 +00001876 StructType *STy = cast<StructType>(Entry.first);
Michael Ilseman407a6162012-11-15 22:34:00 +00001877
Chris Lattner1afcace2011-07-09 17:41:24 +00001878 SmallVector<Type*, 8> Body;
1879 if (ParseStructBody(Body) ||
1880 (isPacked && ParseToken(lltok::greater, "expected '>' in packed struct")))
1881 return true;
Michael Ilseman407a6162012-11-15 22:34:00 +00001882
Chris Lattner1afcace2011-07-09 17:41:24 +00001883 STy->setBody(Body, isPacked);
1884 ResultTy = STy;
1885 return false;
1886}
1887
1888
Chris Lattnerdf986172009-01-02 07:01:27 +00001889/// ParseStructType: Handles packed and unpacked types. </> parsed elsewhere.
Chris Lattner1afcace2011-07-09 17:41:24 +00001890/// StructType
Chris Lattnerdf986172009-01-02 07:01:27 +00001891/// ::= '{' '}'
Chris Lattner1afcace2011-07-09 17:41:24 +00001892/// ::= '{' Type (',' Type)* '}'
Chris Lattnerdf986172009-01-02 07:01:27 +00001893/// ::= '<' '{' '}' '>'
Chris Lattner1afcace2011-07-09 17:41:24 +00001894/// ::= '<' '{' Type (',' Type)* '}' '>'
1895bool LLParser::ParseStructBody(SmallVectorImpl<Type*> &Body) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001896 assert(Lex.getKind() == lltok::lbrace);
1897 Lex.Lex(); // Consume the '{'
Daniel Dunbara279bc32009-09-20 02:20:51 +00001898
Chris Lattner1afcace2011-07-09 17:41:24 +00001899 // Handle the empty struct.
1900 if (EatIfPresent(lltok::rbrace))
Chris Lattnerdf986172009-01-02 07:01:27 +00001901 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00001902
Chris Lattnera9a9e072009-03-09 04:49:14 +00001903 LocTy EltTyLoc = Lex.getLoc();
Chris Lattner1afcace2011-07-09 17:41:24 +00001904 Type *Ty = 0;
1905 if (ParseType(Ty)) return true;
1906 Body.push_back(Ty);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001907
Chris Lattner1afcace2011-07-09 17:41:24 +00001908 if (!StructType::isValidElementType(Ty))
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001909 return Error(EltTyLoc, "invalid element type for struct");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001910
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001911 while (EatIfPresent(lltok::comma)) {
Chris Lattnera9a9e072009-03-09 04:49:14 +00001912 EltTyLoc = Lex.getLoc();
Chris Lattner1afcace2011-07-09 17:41:24 +00001913 if (ParseType(Ty)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001914
Chris Lattner1afcace2011-07-09 17:41:24 +00001915 if (!StructType::isValidElementType(Ty))
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001916 return Error(EltTyLoc, "invalid element type for struct");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001917
Chris Lattner1afcace2011-07-09 17:41:24 +00001918 Body.push_back(Ty);
Chris Lattnerdf986172009-01-02 07:01:27 +00001919 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001920
Chris Lattner1afcace2011-07-09 17:41:24 +00001921 return ParseToken(lltok::rbrace, "expected '}' at end of struct");
Chris Lattnerdf986172009-01-02 07:01:27 +00001922}
1923
1924/// ParseArrayVectorType - Parse an array or vector type, assuming the first
1925/// token has already been consumed.
Chris Lattner1afcace2011-07-09 17:41:24 +00001926/// Type
Chris Lattnerdf986172009-01-02 07:01:27 +00001927/// ::= '[' APSINTVAL 'x' Types ']'
1928/// ::= '<' APSINTVAL 'x' Types '>'
Chris Lattner1afcace2011-07-09 17:41:24 +00001929bool LLParser::ParseArrayVectorType(Type *&Result, bool isVector) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001930 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned() ||
1931 Lex.getAPSIntVal().getBitWidth() > 64)
1932 return TokError("expected number in address space");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001933
Chris Lattnerdf986172009-01-02 07:01:27 +00001934 LocTy SizeLoc = Lex.getLoc();
1935 uint64_t Size = Lex.getAPSIntVal().getZExtValue();
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001936 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +00001937
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001938 if (ParseToken(lltok::kw_x, "expected 'x' after element count"))
1939 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00001940
1941 LocTy TypeLoc = Lex.getLoc();
Chris Lattner1afcace2011-07-09 17:41:24 +00001942 Type *EltTy = 0;
1943 if (ParseType(EltTy)) return true;
Chris Lattnera9a9e072009-03-09 04:49:14 +00001944
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001945 if (ParseToken(isVector ? lltok::greater : lltok::rsquare,
1946 "expected end of sequential type"))
1947 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001948
Chris Lattnerdf986172009-01-02 07:01:27 +00001949 if (isVector) {
Chris Lattner452e2622009-02-28 18:12:41 +00001950 if (Size == 0)
1951 return Error(SizeLoc, "zero element vector is illegal");
Chris Lattnerdf986172009-01-02 07:01:27 +00001952 if ((unsigned)Size != Size)
1953 return Error(SizeLoc, "size too large for vector");
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001954 if (!VectorType::isValidElementType(EltTy))
Duncan Sands2333e292012-11-13 12:59:33 +00001955 return Error(TypeLoc, "invalid vector element type");
Owen Andersondebcb012009-07-29 22:17:13 +00001956 Result = VectorType::get(EltTy, unsigned(Size));
Chris Lattnerdf986172009-01-02 07:01:27 +00001957 } else {
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001958 if (!ArrayType::isValidElementType(EltTy))
Chris Lattnerdf986172009-01-02 07:01:27 +00001959 return Error(TypeLoc, "invalid array element type");
Chris Lattner1afcace2011-07-09 17:41:24 +00001960 Result = ArrayType::get(EltTy, Size);
Chris Lattnerdf986172009-01-02 07:01:27 +00001961 }
1962 return false;
1963}
1964
1965//===----------------------------------------------------------------------===//
1966// Function Semantic Analysis.
1967//===----------------------------------------------------------------------===//
1968
Chris Lattner09d9ef42009-10-28 03:39:23 +00001969LLParser::PerFunctionState::PerFunctionState(LLParser &p, Function &f,
1970 int functionNumber)
1971 : P(p), F(f), FunctionNumber(functionNumber) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001972
1973 // Insert unnamed arguments into the NumberedVals list.
1974 for (Function::arg_iterator AI = F.arg_begin(), E = F.arg_end();
1975 AI != E; ++AI)
1976 if (!AI->hasName())
1977 NumberedVals.push_back(AI);
1978}
1979
1980LLParser::PerFunctionState::~PerFunctionState() {
1981 // If there were any forward referenced non-basicblock values, delete them.
1982 for (std::map<std::string, std::pair<Value*, LocTy> >::iterator
1983 I = ForwardRefVals.begin(), E = ForwardRefVals.end(); I != E; ++I)
1984 if (!isa<BasicBlock>(I->second.first)) {
Owen Andersonb43eae72009-07-02 17:04:01 +00001985 I->second.first->replaceAllUsesWith(
Owen Anderson9e9a0d52009-07-30 23:03:37 +00001986 UndefValue::get(I->second.first->getType()));
Chris Lattnerdf986172009-01-02 07:01:27 +00001987 delete I->second.first;
1988 I->second.first = 0;
1989 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001990
Chris Lattnerdf986172009-01-02 07:01:27 +00001991 for (std::map<unsigned, std::pair<Value*, LocTy> >::iterator
1992 I = ForwardRefValIDs.begin(), E = ForwardRefValIDs.end(); I != E; ++I)
1993 if (!isa<BasicBlock>(I->second.first)) {
Owen Andersonb43eae72009-07-02 17:04:01 +00001994 I->second.first->replaceAllUsesWith(
Owen Anderson9e9a0d52009-07-30 23:03:37 +00001995 UndefValue::get(I->second.first->getType()));
Chris Lattnerdf986172009-01-02 07:01:27 +00001996 delete I->second.first;
1997 I->second.first = 0;
1998 }
1999}
2000
Chris Lattner09d9ef42009-10-28 03:39:23 +00002001bool LLParser::PerFunctionState::FinishFunction() {
2002 // Check to see if someone took the address of labels in this block.
2003 if (!P.ForwardRefBlockAddresses.empty()) {
2004 ValID FunctionID;
2005 if (!F.getName().empty()) {
2006 FunctionID.Kind = ValID::t_GlobalName;
2007 FunctionID.StrVal = F.getName();
2008 } else {
2009 FunctionID.Kind = ValID::t_GlobalID;
2010 FunctionID.UIntVal = FunctionNumber;
2011 }
Michael Ilseman407a6162012-11-15 22:34:00 +00002012
Chris Lattner09d9ef42009-10-28 03:39:23 +00002013 std::map<ValID, std::vector<std::pair<ValID, GlobalValue*> > >::iterator
2014 FRBAI = P.ForwardRefBlockAddresses.find(FunctionID);
2015 if (FRBAI != P.ForwardRefBlockAddresses.end()) {
2016 // Resolve all these references.
2017 if (P.ResolveForwardRefBlockAddresses(&F, FRBAI->second, this))
2018 return true;
Michael Ilseman407a6162012-11-15 22:34:00 +00002019
Chris Lattner09d9ef42009-10-28 03:39:23 +00002020 P.ForwardRefBlockAddresses.erase(FRBAI);
2021 }
2022 }
Michael Ilseman407a6162012-11-15 22:34:00 +00002023
Chris Lattnerdf986172009-01-02 07:01:27 +00002024 if (!ForwardRefVals.empty())
2025 return P.Error(ForwardRefVals.begin()->second.second,
2026 "use of undefined value '%" + ForwardRefVals.begin()->first +
2027 "'");
2028 if (!ForwardRefValIDs.empty())
2029 return P.Error(ForwardRefValIDs.begin()->second.second,
2030 "use of undefined value '%" +
Benjamin Kramerd1e17032010-09-27 17:42:11 +00002031 Twine(ForwardRefValIDs.begin()->first) + "'");
Chris Lattnerdf986172009-01-02 07:01:27 +00002032 return false;
2033}
2034
2035
2036/// GetVal - Get a value with the specified name or ID, creating a
2037/// forward reference record if needed. This can return null if the value
2038/// exists but does not have the right type.
2039Value *LLParser::PerFunctionState::GetVal(const std::string &Name,
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002040 Type *Ty, LocTy Loc) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002041 // Look this name up in the normal function symbol table.
2042 Value *Val = F.getValueSymbolTable().lookup(Name);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002043
Chris Lattnerdf986172009-01-02 07:01:27 +00002044 // If this is a forward reference for the value, see if we already created a
2045 // forward ref record.
2046 if (Val == 0) {
2047 std::map<std::string, std::pair<Value*, LocTy> >::iterator
2048 I = ForwardRefVals.find(Name);
2049 if (I != ForwardRefVals.end())
2050 Val = I->second.first;
2051 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002052
Chris Lattnerdf986172009-01-02 07:01:27 +00002053 // If we have the value in the symbol table or fwd-ref table, return it.
2054 if (Val) {
2055 if (Val->getType() == Ty) return Val;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00002056 if (Ty->isLabelTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002057 P.Error(Loc, "'%" + Name + "' is not a basic block");
2058 else
2059 P.Error(Loc, "'%" + Name + "' defined with type '" +
Chris Lattner0cd0d882011-06-18 21:18:23 +00002060 getTypeString(Val->getType()) + "'");
Chris Lattnerdf986172009-01-02 07:01:27 +00002061 return 0;
2062 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002063
Chris Lattnerdf986172009-01-02 07:01:27 +00002064 // Don't make placeholders with invalid type.
Chris Lattner1afcace2011-07-09 17:41:24 +00002065 if (!Ty->isFirstClassType() && !Ty->isLabelTy()) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002066 P.Error(Loc, "invalid use of a non-first-class type");
2067 return 0;
2068 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002069
Chris Lattnerdf986172009-01-02 07:01:27 +00002070 // Otherwise, create a new forward reference for this value and remember it.
2071 Value *FwdVal;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00002072 if (Ty->isLabelTy())
Owen Anderson1d0be152009-08-13 21:58:54 +00002073 FwdVal = BasicBlock::Create(F.getContext(), Name, &F);
Chris Lattnerdf986172009-01-02 07:01:27 +00002074 else
2075 FwdVal = new Argument(Ty, Name);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002076
Chris Lattnerdf986172009-01-02 07:01:27 +00002077 ForwardRefVals[Name] = std::make_pair(FwdVal, Loc);
2078 return FwdVal;
2079}
2080
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002081Value *LLParser::PerFunctionState::GetVal(unsigned ID, Type *Ty,
Chris Lattnerdf986172009-01-02 07:01:27 +00002082 LocTy Loc) {
2083 // Look this name up in the normal function symbol table.
2084 Value *Val = ID < NumberedVals.size() ? NumberedVals[ID] : 0;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002085
Chris Lattnerdf986172009-01-02 07:01:27 +00002086 // If this is a forward reference for the value, see if we already created a
2087 // forward ref record.
2088 if (Val == 0) {
2089 std::map<unsigned, std::pair<Value*, LocTy> >::iterator
2090 I = ForwardRefValIDs.find(ID);
2091 if (I != ForwardRefValIDs.end())
2092 Val = I->second.first;
2093 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002094
Chris Lattnerdf986172009-01-02 07:01:27 +00002095 // If we have the value in the symbol table or fwd-ref table, return it.
2096 if (Val) {
2097 if (Val->getType() == Ty) return Val;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00002098 if (Ty->isLabelTy())
Benjamin Kramerd1e17032010-09-27 17:42:11 +00002099 P.Error(Loc, "'%" + Twine(ID) + "' is not a basic block");
Chris Lattnerdf986172009-01-02 07:01:27 +00002100 else
Benjamin Kramerd1e17032010-09-27 17:42:11 +00002101 P.Error(Loc, "'%" + Twine(ID) + "' defined with type '" +
Chris Lattner0cd0d882011-06-18 21:18:23 +00002102 getTypeString(Val->getType()) + "'");
Chris Lattnerdf986172009-01-02 07:01:27 +00002103 return 0;
2104 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002105
Chris Lattner1afcace2011-07-09 17:41:24 +00002106 if (!Ty->isFirstClassType() && !Ty->isLabelTy()) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002107 P.Error(Loc, "invalid use of a non-first-class type");
2108 return 0;
2109 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002110
Chris Lattnerdf986172009-01-02 07:01:27 +00002111 // Otherwise, create a new forward reference for this value and remember it.
2112 Value *FwdVal;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00002113 if (Ty->isLabelTy())
Owen Anderson1d0be152009-08-13 21:58:54 +00002114 FwdVal = BasicBlock::Create(F.getContext(), "", &F);
Chris Lattnerdf986172009-01-02 07:01:27 +00002115 else
2116 FwdVal = new Argument(Ty);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002117
Chris Lattnerdf986172009-01-02 07:01:27 +00002118 ForwardRefValIDs[ID] = std::make_pair(FwdVal, Loc);
2119 return FwdVal;
2120}
2121
2122/// SetInstName - After an instruction is parsed and inserted into its
2123/// basic block, this installs its name.
2124bool LLParser::PerFunctionState::SetInstName(int NameID,
2125 const std::string &NameStr,
2126 LocTy NameLoc, Instruction *Inst) {
2127 // If this instruction has void type, it cannot have a name or ID specified.
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00002128 if (Inst->getType()->isVoidTy()) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002129 if (NameID != -1 || !NameStr.empty())
2130 return P.Error(NameLoc, "instructions returning void cannot have a name");
2131 return false;
2132 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002133
Chris Lattnerdf986172009-01-02 07:01:27 +00002134 // If this was a numbered instruction, verify that the instruction is the
2135 // expected value and resolve any forward references.
2136 if (NameStr.empty()) {
2137 // If neither a name nor an ID was specified, just use the next ID.
2138 if (NameID == -1)
2139 NameID = NumberedVals.size();
Daniel Dunbara279bc32009-09-20 02:20:51 +00002140
Chris Lattnerdf986172009-01-02 07:01:27 +00002141 if (unsigned(NameID) != NumberedVals.size())
2142 return P.Error(NameLoc, "instruction expected to be numbered '%" +
Benjamin Kramerd1e17032010-09-27 17:42:11 +00002143 Twine(NumberedVals.size()) + "'");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002144
Chris Lattnerdf986172009-01-02 07:01:27 +00002145 std::map<unsigned, std::pair<Value*, LocTy> >::iterator FI =
2146 ForwardRefValIDs.find(NameID);
2147 if (FI != ForwardRefValIDs.end()) {
2148 if (FI->second.first->getType() != Inst->getType())
Daniel Dunbara279bc32009-09-20 02:20:51 +00002149 return P.Error(NameLoc, "instruction forward referenced with type '" +
Chris Lattner0cd0d882011-06-18 21:18:23 +00002150 getTypeString(FI->second.first->getType()) + "'");
Chris Lattnerdf986172009-01-02 07:01:27 +00002151 FI->second.first->replaceAllUsesWith(Inst);
Nuno Lopes2b4f28e2009-09-02 15:02:57 +00002152 delete FI->second.first;
Chris Lattnerdf986172009-01-02 07:01:27 +00002153 ForwardRefValIDs.erase(FI);
2154 }
2155
2156 NumberedVals.push_back(Inst);
2157 return false;
2158 }
2159
2160 // Otherwise, the instruction had a name. Resolve forward refs and set it.
2161 std::map<std::string, std::pair<Value*, LocTy> >::iterator
2162 FI = ForwardRefVals.find(NameStr);
2163 if (FI != ForwardRefVals.end()) {
2164 if (FI->second.first->getType() != Inst->getType())
Daniel Dunbara279bc32009-09-20 02:20:51 +00002165 return P.Error(NameLoc, "instruction forward referenced with type '" +
Chris Lattner0cd0d882011-06-18 21:18:23 +00002166 getTypeString(FI->second.first->getType()) + "'");
Chris Lattnerdf986172009-01-02 07:01:27 +00002167 FI->second.first->replaceAllUsesWith(Inst);
Nuno Lopes531552a2009-09-02 14:22:03 +00002168 delete FI->second.first;
Chris Lattnerdf986172009-01-02 07:01:27 +00002169 ForwardRefVals.erase(FI);
2170 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002171
Chris Lattnerdf986172009-01-02 07:01:27 +00002172 // Set the name on the instruction.
2173 Inst->setName(NameStr);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002174
Benjamin Krameraf812352010-10-16 11:28:23 +00002175 if (Inst->getName() != NameStr)
Daniel Dunbara279bc32009-09-20 02:20:51 +00002176 return P.Error(NameLoc, "multiple definition of local value named '" +
Chris Lattnerdf986172009-01-02 07:01:27 +00002177 NameStr + "'");
2178 return false;
2179}
2180
2181/// GetBB - Get a basic block with the specified name or ID, creating a
2182/// forward reference record if needed.
2183BasicBlock *LLParser::PerFunctionState::GetBB(const std::string &Name,
2184 LocTy Loc) {
Owen Anderson1d0be152009-08-13 21:58:54 +00002185 return cast_or_null<BasicBlock>(GetVal(Name,
2186 Type::getLabelTy(F.getContext()), Loc));
Chris Lattnerdf986172009-01-02 07:01:27 +00002187}
2188
2189BasicBlock *LLParser::PerFunctionState::GetBB(unsigned ID, LocTy Loc) {
Owen Anderson1d0be152009-08-13 21:58:54 +00002190 return cast_or_null<BasicBlock>(GetVal(ID,
2191 Type::getLabelTy(F.getContext()), Loc));
Chris Lattnerdf986172009-01-02 07:01:27 +00002192}
2193
2194/// DefineBB - Define the specified basic block, which is either named or
2195/// unnamed. If there is an error, this returns null otherwise it returns
2196/// the block being defined.
2197BasicBlock *LLParser::PerFunctionState::DefineBB(const std::string &Name,
2198 LocTy Loc) {
2199 BasicBlock *BB;
2200 if (Name.empty())
2201 BB = GetBB(NumberedVals.size(), Loc);
2202 else
2203 BB = GetBB(Name, Loc);
2204 if (BB == 0) return 0; // Already diagnosed error.
Daniel Dunbara279bc32009-09-20 02:20:51 +00002205
Chris Lattnerdf986172009-01-02 07:01:27 +00002206 // Move the block to the end of the function. Forward ref'd blocks are
2207 // inserted wherever they happen to be referenced.
2208 F.getBasicBlockList().splice(F.end(), F.getBasicBlockList(), BB);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002209
Chris Lattnerdf986172009-01-02 07:01:27 +00002210 // Remove the block from forward ref sets.
2211 if (Name.empty()) {
2212 ForwardRefValIDs.erase(NumberedVals.size());
2213 NumberedVals.push_back(BB);
2214 } else {
2215 // BB forward references are already in the function symbol table.
2216 ForwardRefVals.erase(Name);
2217 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002218
Chris Lattnerdf986172009-01-02 07:01:27 +00002219 return BB;
2220}
2221
2222//===----------------------------------------------------------------------===//
2223// Constants.
2224//===----------------------------------------------------------------------===//
2225
2226/// ParseValID - Parse an abstract value that doesn't necessarily have a
2227/// type implied. For example, if we parse "4" we don't know what integer type
2228/// it has. The value will later be combined with its type and checked for
Victor Hernandez24e64df2010-01-10 07:14:18 +00002229/// sanity. PFS is used to convert function-local operands of metadata (since
2230/// metadata operands are not just parsed here but also converted to values).
2231/// PFS can be null when we are not parsing metadata values inside a function.
Victor Hernandezbf170d42010-01-05 22:22:14 +00002232bool LLParser::ParseValID(ValID &ID, PerFunctionState *PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002233 ID.Loc = Lex.getLoc();
2234 switch (Lex.getKind()) {
2235 default: return TokError("expected value token");
2236 case lltok::GlobalID: // @42
2237 ID.UIntVal = Lex.getUIntVal();
2238 ID.Kind = ValID::t_GlobalID;
2239 break;
2240 case lltok::GlobalVar: // @foo
2241 ID.StrVal = Lex.getStrVal();
2242 ID.Kind = ValID::t_GlobalName;
2243 break;
2244 case lltok::LocalVarID: // %42
2245 ID.UIntVal = Lex.getUIntVal();
2246 ID.Kind = ValID::t_LocalID;
2247 break;
2248 case lltok::LocalVar: // %foo
Chris Lattnerdf986172009-01-02 07:01:27 +00002249 ID.StrVal = Lex.getStrVal();
2250 ID.Kind = ValID::t_LocalName;
2251 break;
Dan Gohman83448032010-07-14 18:26:50 +00002252 case lltok::exclaim: // !42, !{...}, or !"foo"
2253 return ParseMetadataValue(ID, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00002254 case lltok::APSInt:
Daniel Dunbara279bc32009-09-20 02:20:51 +00002255 ID.APSIntVal = Lex.getAPSIntVal();
Chris Lattnerdf986172009-01-02 07:01:27 +00002256 ID.Kind = ValID::t_APSInt;
2257 break;
2258 case lltok::APFloat:
2259 ID.APFloatVal = Lex.getAPFloatVal();
2260 ID.Kind = ValID::t_APFloat;
2261 break;
2262 case lltok::kw_true:
Owen Anderson5defacc2009-07-31 17:39:07 +00002263 ID.ConstantVal = ConstantInt::getTrue(Context);
Chris Lattnerdf986172009-01-02 07:01:27 +00002264 ID.Kind = ValID::t_Constant;
2265 break;
2266 case lltok::kw_false:
Owen Anderson5defacc2009-07-31 17:39:07 +00002267 ID.ConstantVal = ConstantInt::getFalse(Context);
Chris Lattnerdf986172009-01-02 07:01:27 +00002268 ID.Kind = ValID::t_Constant;
2269 break;
2270 case lltok::kw_null: ID.Kind = ValID::t_Null; break;
2271 case lltok::kw_undef: ID.Kind = ValID::t_Undef; break;
2272 case lltok::kw_zeroinitializer: ID.Kind = ValID::t_Zero; break;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002273
Chris Lattnerdf986172009-01-02 07:01:27 +00002274 case lltok::lbrace: {
2275 // ValID ::= '{' ConstVector '}'
2276 Lex.Lex();
2277 SmallVector<Constant*, 16> Elts;
2278 if (ParseGlobalValueVector(Elts) ||
2279 ParseToken(lltok::rbrace, "expected end of struct constant"))
2280 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002281
Chris Lattner1afcace2011-07-09 17:41:24 +00002282 ID.ConstantStructElts = new Constant*[Elts.size()];
2283 ID.UIntVal = Elts.size();
2284 memcpy(ID.ConstantStructElts, Elts.data(), Elts.size()*sizeof(Elts[0]));
2285 ID.Kind = ValID::t_ConstantStruct;
Chris Lattnerdf986172009-01-02 07:01:27 +00002286 return false;
2287 }
2288 case lltok::less: {
2289 // ValID ::= '<' ConstVector '>' --> Vector.
2290 // ValID ::= '<' '{' ConstVector '}' '>' --> Packed Struct.
2291 Lex.Lex();
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002292 bool isPackedStruct = EatIfPresent(lltok::lbrace);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002293
Chris Lattnerdf986172009-01-02 07:01:27 +00002294 SmallVector<Constant*, 16> Elts;
2295 LocTy FirstEltLoc = Lex.getLoc();
2296 if (ParseGlobalValueVector(Elts) ||
2297 (isPackedStruct &&
2298 ParseToken(lltok::rbrace, "expected end of packed struct")) ||
2299 ParseToken(lltok::greater, "expected end of constant"))
2300 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002301
Chris Lattnerdf986172009-01-02 07:01:27 +00002302 if (isPackedStruct) {
Chris Lattner1afcace2011-07-09 17:41:24 +00002303 ID.ConstantStructElts = new Constant*[Elts.size()];
2304 memcpy(ID.ConstantStructElts, Elts.data(), Elts.size()*sizeof(Elts[0]));
2305 ID.UIntVal = Elts.size();
2306 ID.Kind = ValID::t_PackedConstantStruct;
Chris Lattnerdf986172009-01-02 07:01:27 +00002307 return false;
2308 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002309
Chris Lattnerdf986172009-01-02 07:01:27 +00002310 if (Elts.empty())
2311 return Error(ID.Loc, "constant vector must not be empty");
2312
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00002313 if (!Elts[0]->getType()->isIntegerTy() &&
Nadav Rotem16087692011-12-05 06:29:09 +00002314 !Elts[0]->getType()->isFloatingPointTy() &&
2315 !Elts[0]->getType()->isPointerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002316 return Error(FirstEltLoc,
Nadav Rotem16087692011-12-05 06:29:09 +00002317 "vector elements must have integer, pointer or floating point type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002318
Chris Lattnerdf986172009-01-02 07:01:27 +00002319 // Verify that all the vector elements have the same type.
2320 for (unsigned i = 1, e = Elts.size(); i != e; ++i)
2321 if (Elts[i]->getType() != Elts[0]->getType())
2322 return Error(FirstEltLoc,
Benjamin Kramerd1e17032010-09-27 17:42:11 +00002323 "vector element #" + Twine(i) +
Chris Lattner0cd0d882011-06-18 21:18:23 +00002324 " is not of type '" + getTypeString(Elts[0]->getType()));
Daniel Dunbara279bc32009-09-20 02:20:51 +00002325
Chris Lattner2ca5c862011-02-15 00:14:00 +00002326 ID.ConstantVal = ConstantVector::get(Elts);
Chris Lattnerdf986172009-01-02 07:01:27 +00002327 ID.Kind = ValID::t_Constant;
2328 return false;
2329 }
2330 case lltok::lsquare: { // Array Constant
2331 Lex.Lex();
2332 SmallVector<Constant*, 16> Elts;
2333 LocTy FirstEltLoc = Lex.getLoc();
2334 if (ParseGlobalValueVector(Elts) ||
2335 ParseToken(lltok::rsquare, "expected end of array constant"))
2336 return true;
2337
2338 // Handle empty element.
2339 if (Elts.empty()) {
2340 // Use undef instead of an array because it's inconvenient to determine
2341 // the element type at this point, there being no elements to examine.
Chris Lattner081b5052009-01-05 07:52:51 +00002342 ID.Kind = ValID::t_EmptyArray;
Chris Lattnerdf986172009-01-02 07:01:27 +00002343 return false;
2344 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002345
Chris Lattnerdf986172009-01-02 07:01:27 +00002346 if (!Elts[0]->getType()->isFirstClassType())
Daniel Dunbara279bc32009-09-20 02:20:51 +00002347 return Error(FirstEltLoc, "invalid array element type: " +
Chris Lattner0cd0d882011-06-18 21:18:23 +00002348 getTypeString(Elts[0]->getType()));
Daniel Dunbara279bc32009-09-20 02:20:51 +00002349
Owen Andersondebcb012009-07-29 22:17:13 +00002350 ArrayType *ATy = ArrayType::get(Elts[0]->getType(), Elts.size());
Daniel Dunbara279bc32009-09-20 02:20:51 +00002351
Chris Lattnerdf986172009-01-02 07:01:27 +00002352 // Verify all elements are correct type!
Chris Lattner6d6b3cc2009-01-02 08:49:06 +00002353 for (unsigned i = 0, e = Elts.size(); i != e; ++i) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002354 if (Elts[i]->getType() != Elts[0]->getType())
2355 return Error(FirstEltLoc,
Benjamin Kramerd1e17032010-09-27 17:42:11 +00002356 "array element #" + Twine(i) +
Chris Lattner0cd0d882011-06-18 21:18:23 +00002357 " is not of type '" + getTypeString(Elts[0]->getType()));
Chris Lattnerdf986172009-01-02 07:01:27 +00002358 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002359
Jay Foad26701082011-06-22 09:24:39 +00002360 ID.ConstantVal = ConstantArray::get(ATy, Elts);
Chris Lattnerdf986172009-01-02 07:01:27 +00002361 ID.Kind = ValID::t_Constant;
2362 return false;
2363 }
2364 case lltok::kw_c: // c "foo"
2365 Lex.Lex();
Chris Lattner18c7f802012-02-05 02:29:43 +00002366 ID.ConstantVal = ConstantDataArray::getString(Context, Lex.getStrVal(),
2367 false);
Chris Lattnerdf986172009-01-02 07:01:27 +00002368 if (ParseToken(lltok::StringConstant, "expected string")) return true;
2369 ID.Kind = ValID::t_Constant;
2370 return false;
2371
2372 case lltok::kw_asm: {
Chad Rosier27d844f2013-02-14 20:44:07 +00002373 // ValID ::= 'asm' SideEffect? AlignStack? IntelDialect? STRINGCONSTANT ','
2374 // STRINGCONSTANT
Chad Rosier581600b2012-09-05 19:00:49 +00002375 bool HasSideEffect, AlignStack, AsmDialect;
Chris Lattnerdf986172009-01-02 07:01:27 +00002376 Lex.Lex();
2377 if (ParseOptionalToken(lltok::kw_sideeffect, HasSideEffect) ||
Dale Johannesen8ba2d5b2009-10-21 23:28:00 +00002378 ParseOptionalToken(lltok::kw_alignstack, AlignStack) ||
Chad Rosier581600b2012-09-05 19:00:49 +00002379 ParseOptionalToken(lltok::kw_inteldialect, AsmDialect) ||
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002380 ParseStringConstant(ID.StrVal) ||
2381 ParseToken(lltok::comma, "expected comma in inline asm expression") ||
Chris Lattnerdf986172009-01-02 07:01:27 +00002382 ParseToken(lltok::StringConstant, "expected constraint string"))
2383 return true;
2384 ID.StrVal2 = Lex.getStrVal();
Chad Rosier36547342012-09-05 00:08:17 +00002385 ID.UIntVal = unsigned(HasSideEffect) | (unsigned(AlignStack)<<1) |
Chad Rosier581600b2012-09-05 19:00:49 +00002386 (unsigned(AsmDialect)<<2);
Chris Lattnerdf986172009-01-02 07:01:27 +00002387 ID.Kind = ValID::t_InlineAsm;
2388 return false;
2389 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002390
Chris Lattner09d9ef42009-10-28 03:39:23 +00002391 case lltok::kw_blockaddress: {
2392 // ValID ::= 'blockaddress' '(' @foo ',' %bar ')'
2393 Lex.Lex();
2394
2395 ValID Fn, Label;
2396 LocTy FnLoc, LabelLoc;
Michael Ilseman407a6162012-11-15 22:34:00 +00002397
Chris Lattner09d9ef42009-10-28 03:39:23 +00002398 if (ParseToken(lltok::lparen, "expected '(' in block address expression") ||
2399 ParseValID(Fn) ||
2400 ParseToken(lltok::comma, "expected comma in block address expression")||
2401 ParseValID(Label) ||
2402 ParseToken(lltok::rparen, "expected ')' in block address expression"))
2403 return true;
Michael Ilseman407a6162012-11-15 22:34:00 +00002404
Chris Lattner09d9ef42009-10-28 03:39:23 +00002405 if (Fn.Kind != ValID::t_GlobalID && Fn.Kind != ValID::t_GlobalName)
2406 return Error(Fn.Loc, "expected function name in blockaddress");
Chris Lattnercdfc9402009-11-01 01:27:45 +00002407 if (Label.Kind != ValID::t_LocalID && Label.Kind != ValID::t_LocalName)
Chris Lattner09d9ef42009-10-28 03:39:23 +00002408 return Error(Label.Loc, "expected basic block name in blockaddress");
Michael Ilseman407a6162012-11-15 22:34:00 +00002409
Chris Lattner09d9ef42009-10-28 03:39:23 +00002410 // Make a global variable as a placeholder for this reference.
2411 GlobalVariable *FwdRef = new GlobalVariable(*M, Type::getInt8Ty(Context),
2412 false, GlobalValue::InternalLinkage,
2413 0, "");
2414 ForwardRefBlockAddresses[Fn].push_back(std::make_pair(Label, FwdRef));
2415 ID.ConstantVal = FwdRef;
2416 ID.Kind = ValID::t_Constant;
2417 return false;
2418 }
Michael Ilseman407a6162012-11-15 22:34:00 +00002419
Chris Lattnerdf986172009-01-02 07:01:27 +00002420 case lltok::kw_trunc:
2421 case lltok::kw_zext:
2422 case lltok::kw_sext:
2423 case lltok::kw_fptrunc:
2424 case lltok::kw_fpext:
2425 case lltok::kw_bitcast:
2426 case lltok::kw_uitofp:
2427 case lltok::kw_sitofp:
2428 case lltok::kw_fptoui:
Daniel Dunbara279bc32009-09-20 02:20:51 +00002429 case lltok::kw_fptosi:
Chris Lattnerdf986172009-01-02 07:01:27 +00002430 case lltok::kw_inttoptr:
Daniel Dunbara279bc32009-09-20 02:20:51 +00002431 case lltok::kw_ptrtoint: {
Chris Lattnerdf986172009-01-02 07:01:27 +00002432 unsigned Opc = Lex.getUIntVal();
Chris Lattner1afcace2011-07-09 17:41:24 +00002433 Type *DestTy = 0;
Chris Lattnerdf986172009-01-02 07:01:27 +00002434 Constant *SrcVal;
2435 Lex.Lex();
2436 if (ParseToken(lltok::lparen, "expected '(' after constantexpr cast") ||
2437 ParseGlobalTypeAndValue(SrcVal) ||
Dan Gohman24b108b2009-06-15 21:52:11 +00002438 ParseToken(lltok::kw_to, "expected 'to' in constantexpr cast") ||
Chris Lattnerdf986172009-01-02 07:01:27 +00002439 ParseType(DestTy) ||
2440 ParseToken(lltok::rparen, "expected ')' at end of constantexpr cast"))
2441 return true;
2442 if (!CastInst::castIsValid((Instruction::CastOps)Opc, SrcVal, DestTy))
2443 return Error(ID.Loc, "invalid cast opcode for cast from '" +
Chris Lattner0cd0d882011-06-18 21:18:23 +00002444 getTypeString(SrcVal->getType()) + "' to '" +
2445 getTypeString(DestTy) + "'");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002446 ID.ConstantVal = ConstantExpr::getCast((Instruction::CastOps)Opc,
Owen Andersonfba933c2009-07-01 23:57:11 +00002447 SrcVal, DestTy);
Chris Lattnerdf986172009-01-02 07:01:27 +00002448 ID.Kind = ValID::t_Constant;
2449 return false;
2450 }
2451 case lltok::kw_extractvalue: {
2452 Lex.Lex();
2453 Constant *Val;
2454 SmallVector<unsigned, 4> Indices;
2455 if (ParseToken(lltok::lparen, "expected '(' in extractvalue constantexpr")||
2456 ParseGlobalTypeAndValue(Val) ||
2457 ParseIndexList(Indices) ||
2458 ParseToken(lltok::rparen, "expected ')' in extractvalue constantexpr"))
2459 return true;
Devang Patele8bc45a2009-11-03 19:06:07 +00002460
Chris Lattnerfdfeb692010-02-12 20:49:41 +00002461 if (!Val->getType()->isAggregateType())
2462 return Error(ID.Loc, "extractvalue operand must be aggregate type");
Jay Foadfc6d3a42011-07-13 10:26:04 +00002463 if (!ExtractValueInst::getIndexedType(Val->getType(), Indices))
Chris Lattnerdf986172009-01-02 07:01:27 +00002464 return Error(ID.Loc, "invalid indices for extractvalue");
Jay Foadfc6d3a42011-07-13 10:26:04 +00002465 ID.ConstantVal = ConstantExpr::getExtractValue(Val, Indices);
Chris Lattnerdf986172009-01-02 07:01:27 +00002466 ID.Kind = ValID::t_Constant;
2467 return false;
2468 }
2469 case lltok::kw_insertvalue: {
2470 Lex.Lex();
2471 Constant *Val0, *Val1;
2472 SmallVector<unsigned, 4> Indices;
2473 if (ParseToken(lltok::lparen, "expected '(' in insertvalue constantexpr")||
2474 ParseGlobalTypeAndValue(Val0) ||
2475 ParseToken(lltok::comma, "expected comma in insertvalue constantexpr")||
2476 ParseGlobalTypeAndValue(Val1) ||
2477 ParseIndexList(Indices) ||
2478 ParseToken(lltok::rparen, "expected ')' in insertvalue constantexpr"))
2479 return true;
Chris Lattnerfdfeb692010-02-12 20:49:41 +00002480 if (!Val0->getType()->isAggregateType())
2481 return Error(ID.Loc, "insertvalue operand must be aggregate type");
Jay Foadfc6d3a42011-07-13 10:26:04 +00002482 if (!ExtractValueInst::getIndexedType(Val0->getType(), Indices))
Chris Lattnerdf986172009-01-02 07:01:27 +00002483 return Error(ID.Loc, "invalid indices for insertvalue");
Jay Foadfc6d3a42011-07-13 10:26:04 +00002484 ID.ConstantVal = ConstantExpr::getInsertValue(Val0, Val1, Indices);
Chris Lattnerdf986172009-01-02 07:01:27 +00002485 ID.Kind = ValID::t_Constant;
2486 return false;
2487 }
2488 case lltok::kw_icmp:
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00002489 case lltok::kw_fcmp: {
Chris Lattnerdf986172009-01-02 07:01:27 +00002490 unsigned PredVal, Opc = Lex.getUIntVal();
2491 Constant *Val0, *Val1;
2492 Lex.Lex();
2493 if (ParseCmpPredicate(PredVal, Opc) ||
2494 ParseToken(lltok::lparen, "expected '(' in compare constantexpr") ||
2495 ParseGlobalTypeAndValue(Val0) ||
2496 ParseToken(lltok::comma, "expected comma in compare constantexpr") ||
2497 ParseGlobalTypeAndValue(Val1) ||
2498 ParseToken(lltok::rparen, "expected ')' in compare constantexpr"))
2499 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002500
Chris Lattnerdf986172009-01-02 07:01:27 +00002501 if (Val0->getType() != Val1->getType())
2502 return Error(ID.Loc, "compare operands must have the same type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002503
Chris Lattnerdf986172009-01-02 07:01:27 +00002504 CmpInst::Predicate Pred = (CmpInst::Predicate)PredVal;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002505
Chris Lattnerdf986172009-01-02 07:01:27 +00002506 if (Opc == Instruction::FCmp) {
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00002507 if (!Val0->getType()->isFPOrFPVectorTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002508 return Error(ID.Loc, "fcmp requires floating point operands");
Owen Andersonbaf3c402009-07-29 18:55:55 +00002509 ID.ConstantVal = ConstantExpr::getFCmp(Pred, Val0, Val1);
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00002510 } else {
2511 assert(Opc == Instruction::ICmp && "Unexpected opcode for CmpInst!");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00002512 if (!Val0->getType()->isIntOrIntVectorTy() &&
Nadav Rotem16087692011-12-05 06:29:09 +00002513 !Val0->getType()->getScalarType()->isPointerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002514 return Error(ID.Loc, "icmp requires pointer or integer operands");
Owen Andersonbaf3c402009-07-29 18:55:55 +00002515 ID.ConstantVal = ConstantExpr::getICmp(Pred, Val0, Val1);
Chris Lattnerdf986172009-01-02 07:01:27 +00002516 }
2517 ID.Kind = ValID::t_Constant;
2518 return false;
2519 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002520
Chris Lattnerdf986172009-01-02 07:01:27 +00002521 // Binary Operators.
2522 case lltok::kw_add:
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002523 case lltok::kw_fadd:
Chris Lattnerdf986172009-01-02 07:01:27 +00002524 case lltok::kw_sub:
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002525 case lltok::kw_fsub:
Chris Lattnerdf986172009-01-02 07:01:27 +00002526 case lltok::kw_mul:
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002527 case lltok::kw_fmul:
Chris Lattnerdf986172009-01-02 07:01:27 +00002528 case lltok::kw_udiv:
2529 case lltok::kw_sdiv:
2530 case lltok::kw_fdiv:
2531 case lltok::kw_urem:
2532 case lltok::kw_srem:
Chris Lattnerf067d582011-02-07 16:40:21 +00002533 case lltok::kw_frem:
2534 case lltok::kw_shl:
2535 case lltok::kw_lshr:
2536 case lltok::kw_ashr: {
Dan Gohman59858cf2009-07-27 16:11:46 +00002537 bool NUW = false;
2538 bool NSW = false;
2539 bool Exact = false;
Chris Lattnerdf986172009-01-02 07:01:27 +00002540 unsigned Opc = Lex.getUIntVal();
2541 Constant *Val0, *Val1;
2542 Lex.Lex();
Dan Gohman59858cf2009-07-27 16:11:46 +00002543 LocTy ModifierLoc = Lex.getLoc();
Chris Lattnerf067d582011-02-07 16:40:21 +00002544 if (Opc == Instruction::Add || Opc == Instruction::Sub ||
2545 Opc == Instruction::Mul || Opc == Instruction::Shl) {
Dan Gohman59858cf2009-07-27 16:11:46 +00002546 if (EatIfPresent(lltok::kw_nuw))
2547 NUW = true;
2548 if (EatIfPresent(lltok::kw_nsw)) {
2549 NSW = true;
2550 if (EatIfPresent(lltok::kw_nuw))
2551 NUW = true;
2552 }
Chris Lattnerf067d582011-02-07 16:40:21 +00002553 } else if (Opc == Instruction::SDiv || Opc == Instruction::UDiv ||
2554 Opc == Instruction::LShr || Opc == Instruction::AShr) {
Dan Gohman59858cf2009-07-27 16:11:46 +00002555 if (EatIfPresent(lltok::kw_exact))
2556 Exact = true;
2557 }
Chris Lattnerdf986172009-01-02 07:01:27 +00002558 if (ParseToken(lltok::lparen, "expected '(' in binary constantexpr") ||
2559 ParseGlobalTypeAndValue(Val0) ||
2560 ParseToken(lltok::comma, "expected comma in binary constantexpr") ||
2561 ParseGlobalTypeAndValue(Val1) ||
2562 ParseToken(lltok::rparen, "expected ')' in binary constantexpr"))
2563 return true;
2564 if (Val0->getType() != Val1->getType())
2565 return Error(ID.Loc, "operands of constexpr must have same type");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00002566 if (!Val0->getType()->isIntOrIntVectorTy()) {
Dan Gohman59858cf2009-07-27 16:11:46 +00002567 if (NUW)
2568 return Error(ModifierLoc, "nuw only applies to integer operations");
2569 if (NSW)
2570 return Error(ModifierLoc, "nsw only applies to integer operations");
2571 }
Dan Gohman1eaac532010-05-03 22:44:19 +00002572 // Check that the type is valid for the operator.
2573 switch (Opc) {
2574 case Instruction::Add:
2575 case Instruction::Sub:
2576 case Instruction::Mul:
2577 case Instruction::UDiv:
2578 case Instruction::SDiv:
2579 case Instruction::URem:
2580 case Instruction::SRem:
Chris Lattnerf067d582011-02-07 16:40:21 +00002581 case Instruction::Shl:
2582 case Instruction::AShr:
2583 case Instruction::LShr:
Dan Gohman1eaac532010-05-03 22:44:19 +00002584 if (!Val0->getType()->isIntOrIntVectorTy())
2585 return Error(ID.Loc, "constexpr requires integer operands");
2586 break;
2587 case Instruction::FAdd:
2588 case Instruction::FSub:
2589 case Instruction::FMul:
2590 case Instruction::FDiv:
2591 case Instruction::FRem:
2592 if (!Val0->getType()->isFPOrFPVectorTy())
2593 return Error(ID.Loc, "constexpr requires fp operands");
2594 break;
2595 default: llvm_unreachable("Unknown binary operator!");
2596 }
Dan Gohmanf8dbee72009-09-07 23:54:19 +00002597 unsigned Flags = 0;
2598 if (NUW) Flags |= OverflowingBinaryOperator::NoUnsignedWrap;
2599 if (NSW) Flags |= OverflowingBinaryOperator::NoSignedWrap;
Chris Lattner35bda892011-02-06 21:44:57 +00002600 if (Exact) Flags |= PossiblyExactOperator::IsExact;
Dan Gohmanf8dbee72009-09-07 23:54:19 +00002601 Constant *C = ConstantExpr::get(Opc, Val0, Val1, Flags);
Dan Gohman59858cf2009-07-27 16:11:46 +00002602 ID.ConstantVal = C;
Chris Lattnerdf986172009-01-02 07:01:27 +00002603 ID.Kind = ValID::t_Constant;
2604 return false;
2605 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002606
Chris Lattnerdf986172009-01-02 07:01:27 +00002607 // Logical Operations
Chris Lattnerdf986172009-01-02 07:01:27 +00002608 case lltok::kw_and:
2609 case lltok::kw_or:
2610 case lltok::kw_xor: {
2611 unsigned Opc = Lex.getUIntVal();
2612 Constant *Val0, *Val1;
2613 Lex.Lex();
2614 if (ParseToken(lltok::lparen, "expected '(' in logical constantexpr") ||
2615 ParseGlobalTypeAndValue(Val0) ||
2616 ParseToken(lltok::comma, "expected comma in logical constantexpr") ||
2617 ParseGlobalTypeAndValue(Val1) ||
2618 ParseToken(lltok::rparen, "expected ')' in logical constantexpr"))
2619 return true;
2620 if (Val0->getType() != Val1->getType())
2621 return Error(ID.Loc, "operands of constexpr must have same type");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00002622 if (!Val0->getType()->isIntOrIntVectorTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002623 return Error(ID.Loc,
2624 "constexpr requires integer or integer vector operands");
Owen Andersonbaf3c402009-07-29 18:55:55 +00002625 ID.ConstantVal = ConstantExpr::get(Opc, Val0, Val1);
Chris Lattnerdf986172009-01-02 07:01:27 +00002626 ID.Kind = ValID::t_Constant;
2627 return false;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002628 }
2629
Chris Lattnerdf986172009-01-02 07:01:27 +00002630 case lltok::kw_getelementptr:
2631 case lltok::kw_shufflevector:
2632 case lltok::kw_insertelement:
2633 case lltok::kw_extractelement:
2634 case lltok::kw_select: {
2635 unsigned Opc = Lex.getUIntVal();
2636 SmallVector<Constant*, 16> Elts;
Dan Gohmandd8004d2009-07-27 21:53:46 +00002637 bool InBounds = false;
Chris Lattnerdf986172009-01-02 07:01:27 +00002638 Lex.Lex();
Dan Gohmandd8004d2009-07-27 21:53:46 +00002639 if (Opc == Instruction::GetElementPtr)
Dan Gohmandcb40a32009-07-29 15:58:36 +00002640 InBounds = EatIfPresent(lltok::kw_inbounds);
Chris Lattnerdf986172009-01-02 07:01:27 +00002641 if (ParseToken(lltok::lparen, "expected '(' in constantexpr") ||
2642 ParseGlobalValueVector(Elts) ||
2643 ParseToken(lltok::rparen, "expected ')' in constantexpr"))
2644 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002645
Chris Lattnerdf986172009-01-02 07:01:27 +00002646 if (Opc == Instruction::GetElementPtr) {
Nadav Rotem16087692011-12-05 06:29:09 +00002647 if (Elts.size() == 0 ||
2648 !Elts[0]->getType()->getScalarType()->isPointerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002649 return Error(ID.Loc, "getelementptr requires pointer operand");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002650
Jay Foaddab3d292011-07-21 14:31:17 +00002651 ArrayRef<Constant *> Indices(Elts.begin() + 1, Elts.end());
Jay Foada9203102011-07-25 09:48:08 +00002652 if (!GetElementPtrInst::getIndexedType(Elts[0]->getType(), Indices))
Chris Lattnerdf986172009-01-02 07:01:27 +00002653 return Error(ID.Loc, "invalid indices for getelementptr");
Jay Foad4b5e2072011-07-21 15:15:37 +00002654 ID.ConstantVal = ConstantExpr::getGetElementPtr(Elts[0], Indices,
2655 InBounds);
Chris Lattnerdf986172009-01-02 07:01:27 +00002656 } else if (Opc == Instruction::Select) {
2657 if (Elts.size() != 3)
2658 return Error(ID.Loc, "expected three operands to select");
2659 if (const char *Reason = SelectInst::areInvalidOperands(Elts[0], Elts[1],
2660 Elts[2]))
2661 return Error(ID.Loc, Reason);
Owen Andersonbaf3c402009-07-29 18:55:55 +00002662 ID.ConstantVal = ConstantExpr::getSelect(Elts[0], Elts[1], Elts[2]);
Chris Lattnerdf986172009-01-02 07:01:27 +00002663 } else if (Opc == Instruction::ShuffleVector) {
2664 if (Elts.size() != 3)
2665 return Error(ID.Loc, "expected three operands to shufflevector");
2666 if (!ShuffleVectorInst::isValidOperands(Elts[0], Elts[1], Elts[2]))
2667 return Error(ID.Loc, "invalid operands to shufflevector");
Owen Andersonfba933c2009-07-01 23:57:11 +00002668 ID.ConstantVal =
Owen Andersonbaf3c402009-07-29 18:55:55 +00002669 ConstantExpr::getShuffleVector(Elts[0], Elts[1],Elts[2]);
Chris Lattnerdf986172009-01-02 07:01:27 +00002670 } else if (Opc == Instruction::ExtractElement) {
2671 if (Elts.size() != 2)
2672 return Error(ID.Loc, "expected two operands to extractelement");
2673 if (!ExtractElementInst::isValidOperands(Elts[0], Elts[1]))
2674 return Error(ID.Loc, "invalid extractelement operands");
Owen Andersonbaf3c402009-07-29 18:55:55 +00002675 ID.ConstantVal = ConstantExpr::getExtractElement(Elts[0], Elts[1]);
Chris Lattnerdf986172009-01-02 07:01:27 +00002676 } else {
2677 assert(Opc == Instruction::InsertElement && "Unknown opcode");
2678 if (Elts.size() != 3)
2679 return Error(ID.Loc, "expected three operands to insertelement");
2680 if (!InsertElementInst::isValidOperands(Elts[0], Elts[1], Elts[2]))
2681 return Error(ID.Loc, "invalid insertelement operands");
Owen Andersonfba933c2009-07-01 23:57:11 +00002682 ID.ConstantVal =
Owen Andersonbaf3c402009-07-29 18:55:55 +00002683 ConstantExpr::getInsertElement(Elts[0], Elts[1],Elts[2]);
Chris Lattnerdf986172009-01-02 07:01:27 +00002684 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002685
Chris Lattnerdf986172009-01-02 07:01:27 +00002686 ID.Kind = ValID::t_Constant;
2687 return false;
2688 }
2689 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002690
Chris Lattnerdf986172009-01-02 07:01:27 +00002691 Lex.Lex();
2692 return false;
2693}
2694
2695/// ParseGlobalValue - Parse a global value with the specified type.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002696bool LLParser::ParseGlobalValue(Type *Ty, Constant *&C) {
Victor Hernandez92f238d2010-01-11 22:31:58 +00002697 C = 0;
Chris Lattnerdf986172009-01-02 07:01:27 +00002698 ValID ID;
Victor Hernandez92f238d2010-01-11 22:31:58 +00002699 Value *V = NULL;
2700 bool Parsed = ParseValID(ID) ||
2701 ConvertValIDToValue(Ty, ID, V, NULL);
2702 if (V && !(C = dyn_cast<Constant>(V)))
2703 return Error(ID.Loc, "global values must be constants");
2704 return Parsed;
Chris Lattnerdf986172009-01-02 07:01:27 +00002705}
2706
Victor Hernandez92f238d2010-01-11 22:31:58 +00002707bool LLParser::ParseGlobalTypeAndValue(Constant *&V) {
Chris Lattner1afcace2011-07-09 17:41:24 +00002708 Type *Ty = 0;
2709 return ParseType(Ty) ||
2710 ParseGlobalValue(Ty, V);
Victor Hernandez92f238d2010-01-11 22:31:58 +00002711}
2712
2713/// ParseGlobalValueVector
2714/// ::= /*empty*/
2715/// ::= TypeAndValue (',' TypeAndValue)*
2716bool LLParser::ParseGlobalValueVector(SmallVectorImpl<Constant*> &Elts) {
2717 // Empty list.
2718 if (Lex.getKind() == lltok::rbrace ||
2719 Lex.getKind() == lltok::rsquare ||
2720 Lex.getKind() == lltok::greater ||
2721 Lex.getKind() == lltok::rparen)
2722 return false;
2723
2724 Constant *C;
2725 if (ParseGlobalTypeAndValue(C)) return true;
2726 Elts.push_back(C);
2727
2728 while (EatIfPresent(lltok::comma)) {
2729 if (ParseGlobalTypeAndValue(C)) return true;
2730 Elts.push_back(C);
2731 }
2732
2733 return false;
2734}
2735
Dan Gohman309b3af2010-08-24 02:24:03 +00002736bool LLParser::ParseMetadataListValue(ValID &ID, PerFunctionState *PFS) {
2737 assert(Lex.getKind() == lltok::lbrace);
2738 Lex.Lex();
2739
2740 SmallVector<Value*, 16> Elts;
2741 if (ParseMDNodeVector(Elts, PFS) ||
2742 ParseToken(lltok::rbrace, "expected end of metadata node"))
2743 return true;
2744
Jay Foadec9186b2011-04-21 19:59:31 +00002745 ID.MDNodeVal = MDNode::get(Context, Elts);
Dan Gohman309b3af2010-08-24 02:24:03 +00002746 ID.Kind = ValID::t_MDNode;
2747 return false;
2748}
2749
Dan Gohman83448032010-07-14 18:26:50 +00002750/// ParseMetadataValue
2751/// ::= !42
2752/// ::= !{...}
2753/// ::= !"string"
2754bool LLParser::ParseMetadataValue(ValID &ID, PerFunctionState *PFS) {
2755 assert(Lex.getKind() == lltok::exclaim);
2756 Lex.Lex();
2757
2758 // MDNode:
2759 // !{ ... }
Dan Gohman309b3af2010-08-24 02:24:03 +00002760 if (Lex.getKind() == lltok::lbrace)
2761 return ParseMetadataListValue(ID, PFS);
Dan Gohman83448032010-07-14 18:26:50 +00002762
2763 // Standalone metadata reference
2764 // !42
2765 if (Lex.getKind() == lltok::APSInt) {
2766 if (ParseMDNodeID(ID.MDNodeVal)) return true;
2767 ID.Kind = ValID::t_MDNode;
2768 return false;
2769 }
2770
2771 // MDString:
2772 // ::= '!' STRINGCONSTANT
2773 if (ParseMDString(ID.MDStringVal)) return true;
2774 ID.Kind = ValID::t_MDString;
2775 return false;
2776}
2777
Victor Hernandez92f238d2010-01-11 22:31:58 +00002778
2779//===----------------------------------------------------------------------===//
2780// Function Parsing.
2781//===----------------------------------------------------------------------===//
2782
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002783bool LLParser::ConvertValIDToValue(Type *Ty, ValID &ID, Value *&V,
Victor Hernandez92f238d2010-01-11 22:31:58 +00002784 PerFunctionState *PFS) {
Duncan Sands1df98592010-02-16 11:11:14 +00002785 if (Ty->isFunctionTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002786 return Error(ID.Loc, "functions are not values, refer to them as pointers");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002787
Chris Lattnerdf986172009-01-02 07:01:27 +00002788 switch (ID.Kind) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002789 case ValID::t_LocalID:
Victor Hernandez92f238d2010-01-11 22:31:58 +00002790 if (!PFS) return Error(ID.Loc, "invalid use of function-local name");
2791 V = PFS->GetVal(ID.UIntVal, Ty, ID.Loc);
2792 return (V == 0);
Chris Lattnerdf986172009-01-02 07:01:27 +00002793 case ValID::t_LocalName:
Victor Hernandez92f238d2010-01-11 22:31:58 +00002794 if (!PFS) return Error(ID.Loc, "invalid use of function-local name");
2795 V = PFS->GetVal(ID.StrVal, Ty, ID.Loc);
2796 return (V == 0);
2797 case ValID::t_InlineAsm: {
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002798 PointerType *PTy = dyn_cast<PointerType>(Ty);
Michael Ilseman407a6162012-11-15 22:34:00 +00002799 FunctionType *FTy =
Victor Hernandez92f238d2010-01-11 22:31:58 +00002800 PTy ? dyn_cast<FunctionType>(PTy->getElementType()) : 0;
2801 if (!FTy || !InlineAsm::Verify(FTy, ID.StrVal2))
2802 return Error(ID.Loc, "invalid type for inline asm constraint string");
Chad Rosier36547342012-09-05 00:08:17 +00002803 V = InlineAsm::get(FTy, ID.StrVal, ID.StrVal2, ID.UIntVal&1,
Chad Rosier581600b2012-09-05 19:00:49 +00002804 (ID.UIntVal>>1)&1, (InlineAsm::AsmDialect(ID.UIntVal>>2)));
Victor Hernandez92f238d2010-01-11 22:31:58 +00002805 return false;
2806 }
2807 case ValID::t_MDNode:
2808 if (!Ty->isMetadataTy())
2809 return Error(ID.Loc, "metadata value must have metadata type");
2810 V = ID.MDNodeVal;
2811 return false;
2812 case ValID::t_MDString:
2813 if (!Ty->isMetadataTy())
2814 return Error(ID.Loc, "metadata value must have metadata type");
2815 V = ID.MDStringVal;
2816 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00002817 case ValID::t_GlobalName:
2818 V = GetGlobalVal(ID.StrVal, Ty, ID.Loc);
2819 return V == 0;
2820 case ValID::t_GlobalID:
2821 V = GetGlobalVal(ID.UIntVal, Ty, ID.Loc);
2822 return V == 0;
2823 case ValID::t_APSInt:
Duncan Sands1df98592010-02-16 11:11:14 +00002824 if (!Ty->isIntegerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002825 return Error(ID.Loc, "integer constant must have integer type");
Jay Foad40f8f622010-12-07 08:25:19 +00002826 ID.APSIntVal = ID.APSIntVal.extOrTrunc(Ty->getPrimitiveSizeInBits());
Owen Andersoneed707b2009-07-24 23:12:02 +00002827 V = ConstantInt::get(Context, ID.APSIntVal);
Chris Lattnerdf986172009-01-02 07:01:27 +00002828 return false;
2829 case ValID::t_APFloat:
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00002830 if (!Ty->isFloatingPointTy() ||
Chris Lattnerdf986172009-01-02 07:01:27 +00002831 !ConstantFP::isValueValidForType(Ty, ID.APFloatVal))
2832 return Error(ID.Loc, "floating point constant invalid for type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002833
Dan Gohmance163392011-12-17 00:04:22 +00002834 // The lexer has no type info, so builds all half, float, and double FP
2835 // constants as double. Fix this here. Long double does not need this.
2836 if (&ID.APFloatVal.getSemantics() == &APFloat::IEEEdouble) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002837 bool Ignored;
Dan Gohmance163392011-12-17 00:04:22 +00002838 if (Ty->isHalfTy())
2839 ID.APFloatVal.convert(APFloat::IEEEhalf, APFloat::rmNearestTiesToEven,
2840 &Ignored);
2841 else if (Ty->isFloatTy())
2842 ID.APFloatVal.convert(APFloat::IEEEsingle, APFloat::rmNearestTiesToEven,
2843 &Ignored);
Chris Lattnerdf986172009-01-02 07:01:27 +00002844 }
Owen Anderson6f83c9c2009-07-27 20:59:43 +00002845 V = ConstantFP::get(Context, ID.APFloatVal);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002846
Chris Lattner959873d2009-01-05 18:24:23 +00002847 if (V->getType() != Ty)
2848 return Error(ID.Loc, "floating point constant does not have type '" +
Chris Lattner0cd0d882011-06-18 21:18:23 +00002849 getTypeString(Ty) + "'");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002850
Chris Lattnerdf986172009-01-02 07:01:27 +00002851 return false;
2852 case ValID::t_Null:
Duncan Sands1df98592010-02-16 11:11:14 +00002853 if (!Ty->isPointerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002854 return Error(ID.Loc, "null must be a pointer type");
Owen Anderson9e9a0d52009-07-30 23:03:37 +00002855 V = ConstantPointerNull::get(cast<PointerType>(Ty));
Chris Lattnerdf986172009-01-02 07:01:27 +00002856 return false;
2857 case ValID::t_Undef:
Chris Lattnere67c1aa2009-01-05 08:13:38 +00002858 // FIXME: LabelTy should not be a first-class type.
Chris Lattner1afcace2011-07-09 17:41:24 +00002859 if (!Ty->isFirstClassType() || Ty->isLabelTy())
Chris Lattnere67c1aa2009-01-05 08:13:38 +00002860 return Error(ID.Loc, "invalid type for undef constant");
Owen Anderson9e9a0d52009-07-30 23:03:37 +00002861 V = UndefValue::get(Ty);
Chris Lattnerdf986172009-01-02 07:01:27 +00002862 return false;
Chris Lattner081b5052009-01-05 07:52:51 +00002863 case ValID::t_EmptyArray:
Duncan Sands1df98592010-02-16 11:11:14 +00002864 if (!Ty->isArrayTy() || cast<ArrayType>(Ty)->getNumElements() != 0)
Chris Lattner081b5052009-01-05 07:52:51 +00002865 return Error(ID.Loc, "invalid empty array initializer");
Owen Anderson9e9a0d52009-07-30 23:03:37 +00002866 V = UndefValue::get(Ty);
Chris Lattner081b5052009-01-05 07:52:51 +00002867 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00002868 case ValID::t_Zero:
Chris Lattnere67c1aa2009-01-05 08:13:38 +00002869 // FIXME: LabelTy should not be a first-class type.
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00002870 if (!Ty->isFirstClassType() || Ty->isLabelTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002871 return Error(ID.Loc, "invalid type for null constant");
Owen Andersona7235ea2009-07-31 20:28:14 +00002872 V = Constant::getNullValue(Ty);
Chris Lattnerdf986172009-01-02 07:01:27 +00002873 return false;
2874 case ValID::t_Constant:
Chris Lattner61c70e92010-08-28 04:09:24 +00002875 if (ID.ConstantVal->getType() != Ty)
Chris Lattnerdf986172009-01-02 07:01:27 +00002876 return Error(ID.Loc, "constant expression type mismatch");
Chris Lattnerfdfeb692010-02-12 20:49:41 +00002877
Chris Lattnerdf986172009-01-02 07:01:27 +00002878 V = ID.ConstantVal;
2879 return false;
Chris Lattner1afcace2011-07-09 17:41:24 +00002880 case ValID::t_ConstantStruct:
2881 case ValID::t_PackedConstantStruct:
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002882 if (StructType *ST = dyn_cast<StructType>(Ty)) {
Chris Lattner1afcace2011-07-09 17:41:24 +00002883 if (ST->getNumElements() != ID.UIntVal)
2884 return Error(ID.Loc,
2885 "initializer with struct type has wrong # elements");
2886 if (ST->isPacked() != (ID.Kind == ValID::t_PackedConstantStruct))
2887 return Error(ID.Loc, "packed'ness of initializer and type don't match");
Michael Ilseman407a6162012-11-15 22:34:00 +00002888
Chris Lattner1afcace2011-07-09 17:41:24 +00002889 // Verify that the elements are compatible with the structtype.
2890 for (unsigned i = 0, e = ID.UIntVal; i != e; ++i)
2891 if (ID.ConstantStructElts[i]->getType() != ST->getElementType(i))
2892 return Error(ID.Loc, "element " + Twine(i) +
2893 " of struct initializer doesn't match struct element type");
Michael Ilseman407a6162012-11-15 22:34:00 +00002894
Frits van Bommel39b5abf2011-07-18 12:00:32 +00002895 V = ConstantStruct::get(ST, makeArrayRef(ID.ConstantStructElts,
2896 ID.UIntVal));
Chris Lattner1afcace2011-07-09 17:41:24 +00002897 } else
2898 return Error(ID.Loc, "constant expression type mismatch");
2899 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00002900 }
Chandler Carruth732f05c2012-01-10 18:08:01 +00002901 llvm_unreachable("Invalid ValID");
Chris Lattnerdf986172009-01-02 07:01:27 +00002902}
Daniel Dunbara279bc32009-09-20 02:20:51 +00002903
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002904bool LLParser::ParseValue(Type *Ty, Value *&V, PerFunctionState *PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002905 V = 0;
2906 ValID ID;
Chris Lattner1afcace2011-07-09 17:41:24 +00002907 return ParseValID(ID, PFS) ||
2908 ConvertValIDToValue(Ty, ID, V, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00002909}
2910
Chris Lattner1afcace2011-07-09 17:41:24 +00002911bool LLParser::ParseTypeAndValue(Value *&V, PerFunctionState *PFS) {
2912 Type *Ty = 0;
2913 return ParseType(Ty) ||
2914 ParseValue(Ty, V, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00002915}
2916
Chris Lattnerf9be95f2009-10-27 19:13:16 +00002917bool LLParser::ParseTypeAndBasicBlock(BasicBlock *&BB, LocTy &Loc,
2918 PerFunctionState &PFS) {
2919 Value *V;
2920 Loc = Lex.getLoc();
2921 if (ParseTypeAndValue(V, PFS)) return true;
2922 if (!isa<BasicBlock>(V))
2923 return Error(Loc, "expected a basic block");
2924 BB = cast<BasicBlock>(V);
2925 return false;
2926}
2927
2928
Chris Lattnerdf986172009-01-02 07:01:27 +00002929/// FunctionHeader
2930/// ::= OptionalLinkage OptionalVisibility OptionalCallingConv OptRetAttrs
Rafael Espindolabea46262011-01-08 16:42:36 +00002931/// OptUnnamedAddr Type GlobalName '(' ArgList ')' OptFuncAttrs OptSection
Peter Collingbourne1e3037f2013-09-16 01:08:15 +00002932/// OptionalAlign OptGC OptionalPrefix
Chris Lattnerdf986172009-01-02 07:01:27 +00002933bool LLParser::ParseFunctionHeader(Function *&Fn, bool isDefine) {
2934 // Parse the linkage.
2935 LocTy LinkageLoc = Lex.getLoc();
2936 unsigned Linkage;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002937
Kostya Serebryany164b86b2012-01-20 17:56:17 +00002938 unsigned Visibility;
Bill Wendling702cc912012-10-15 20:35:56 +00002939 AttrBuilder RetAttrs;
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00002940 CallingConv::ID CC;
Chris Lattner1afcace2011-07-09 17:41:24 +00002941 Type *RetType = 0;
Chris Lattnerdf986172009-01-02 07:01:27 +00002942 LocTy RetTypeLoc = Lex.getLoc();
2943 if (ParseOptionalLinkage(Linkage) ||
2944 ParseOptionalVisibility(Visibility) ||
2945 ParseOptionalCallingConv(CC) ||
Bill Wendlinge01b81b2012-12-04 23:40:58 +00002946 ParseOptionalReturnAttrs(RetAttrs) ||
Chris Lattnera9a9e072009-03-09 04:49:14 +00002947 ParseType(RetType, RetTypeLoc, true /*void allowed*/))
Chris Lattnerdf986172009-01-02 07:01:27 +00002948 return true;
2949
2950 // Verify that the linkage is ok.
2951 switch ((GlobalValue::LinkageTypes)Linkage) {
2952 case GlobalValue::ExternalLinkage:
2953 break; // always ok.
2954 case GlobalValue::DLLImportLinkage:
Duncan Sands5f4ee1f2009-03-11 08:08:06 +00002955 case GlobalValue::ExternalWeakLinkage:
Chris Lattnerdf986172009-01-02 07:01:27 +00002956 if (isDefine)
2957 return Error(LinkageLoc, "invalid linkage for function definition");
2958 break;
Rafael Espindolabb46f522009-01-15 20:18:42 +00002959 case GlobalValue::PrivateLinkage:
Bill Wendling3d10a5a2009-07-20 01:03:30 +00002960 case GlobalValue::LinkerPrivateLinkage:
Bill Wendling5e721d72010-07-01 21:55:59 +00002961 case GlobalValue::LinkerPrivateWeakLinkage:
Chris Lattnerdf986172009-01-02 07:01:27 +00002962 case GlobalValue::InternalLinkage:
Nick Lewycky55f64db2009-04-13 07:02:02 +00002963 case GlobalValue::AvailableExternallyLinkage:
Duncan Sands667d4b82009-03-07 15:45:40 +00002964 case GlobalValue::LinkOnceAnyLinkage:
2965 case GlobalValue::LinkOnceODRLinkage:
Bill Wendling32811be2012-08-17 18:33:14 +00002966 case GlobalValue::LinkOnceODRAutoHideLinkage:
Duncan Sands667d4b82009-03-07 15:45:40 +00002967 case GlobalValue::WeakAnyLinkage:
2968 case GlobalValue::WeakODRLinkage:
Chris Lattnerdf986172009-01-02 07:01:27 +00002969 case GlobalValue::DLLExportLinkage:
2970 if (!isDefine)
2971 return Error(LinkageLoc, "invalid linkage for function declaration");
2972 break;
2973 case GlobalValue::AppendingLinkage:
Duncan Sands4dc2b392009-03-11 20:14:15 +00002974 case GlobalValue::CommonLinkage:
Chris Lattnerdf986172009-01-02 07:01:27 +00002975 return Error(LinkageLoc, "invalid function linkage type");
2976 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002977
Chris Lattner1afcace2011-07-09 17:41:24 +00002978 if (!FunctionType::isValidReturnType(RetType))
Chris Lattnerdf986172009-01-02 07:01:27 +00002979 return Error(RetTypeLoc, "invalid function return type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002980
Chris Lattnerdf986172009-01-02 07:01:27 +00002981 LocTy NameLoc = Lex.getLoc();
Chris Lattnerf570e622009-02-18 21:48:13 +00002982
2983 std::string FunctionName;
2984 if (Lex.getKind() == lltok::GlobalVar) {
2985 FunctionName = Lex.getStrVal();
2986 } else if (Lex.getKind() == lltok::GlobalID) { // @42 is ok.
2987 unsigned NameID = Lex.getUIntVal();
2988
2989 if (NameID != NumberedVals.size())
2990 return TokError("function expected to be numbered '%" +
Benjamin Kramerd1e17032010-09-27 17:42:11 +00002991 Twine(NumberedVals.size()) + "'");
Chris Lattnerf570e622009-02-18 21:48:13 +00002992 } else {
2993 return TokError("expected function name");
2994 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002995
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002996 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +00002997
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002998 if (Lex.getKind() != lltok::lparen)
Chris Lattnerdf986172009-01-02 07:01:27 +00002999 return TokError("expected '(' in function argument list");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003000
Chris Lattner1afcace2011-07-09 17:41:24 +00003001 SmallVector<ArgInfo, 8> ArgList;
Chris Lattnerdf986172009-01-02 07:01:27 +00003002 bool isVarArg;
Bill Wendling702cc912012-10-15 20:35:56 +00003003 AttrBuilder FuncAttrs;
Bill Wendlingbaad55c2013-02-08 06:32:06 +00003004 std::vector<unsigned> FwdRefAttrGrps;
Michael Gottesman2253a2f2013-06-27 00:25:01 +00003005 LocTy BuiltinLoc;
Chris Lattnerdf986172009-01-02 07:01:27 +00003006 std::string Section;
Chris Lattnerdf986172009-01-02 07:01:27 +00003007 unsigned Alignment;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003008 std::string GC;
Rafael Espindola3971df52011-01-25 19:09:56 +00003009 bool UnnamedAddr;
3010 LocTy UnnamedAddrLoc;
Peter Collingbourne1e3037f2013-09-16 01:08:15 +00003011 Constant *Prefix = 0;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003012
Chris Lattner1afcace2011-07-09 17:41:24 +00003013 if (ParseArgumentList(ArgList, isVarArg) ||
Rafael Espindola3971df52011-01-25 19:09:56 +00003014 ParseOptionalToken(lltok::kw_unnamed_addr, UnnamedAddr,
3015 &UnnamedAddrLoc) ||
Bill Wendling143d4642013-02-22 00:12:35 +00003016 ParseFnAttributeValuePairs(FuncAttrs, FwdRefAttrGrps, false,
Michael Gottesman2253a2f2013-06-27 00:25:01 +00003017 BuiltinLoc) ||
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003018 (EatIfPresent(lltok::kw_section) &&
3019 ParseStringConstant(Section)) ||
3020 ParseOptionalAlignment(Alignment) ||
3021 (EatIfPresent(lltok::kw_gc) &&
Peter Collingbourne1e3037f2013-09-16 01:08:15 +00003022 ParseStringConstant(GC)) ||
3023 (EatIfPresent(lltok::kw_prefix) &&
3024 ParseGlobalTypeAndValue(Prefix)))
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003025 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00003026
Michael Gottesman2253a2f2013-06-27 00:25:01 +00003027 if (FuncAttrs.contains(Attribute::Builtin))
3028 return Error(BuiltinLoc, "'builtin' attribute not valid on function");
Bill Wendling143d4642013-02-22 00:12:35 +00003029
Chris Lattnerdf986172009-01-02 07:01:27 +00003030 // If the alignment was parsed as an attribute, move to the alignment field.
Bill Wendlingf385f4c2012-10-08 23:27:46 +00003031 if (FuncAttrs.hasAlignmentAttr()) {
Bill Wendlingef99fe82012-09-21 15:26:31 +00003032 Alignment = FuncAttrs.getAlignment();
Bill Wendling034b94b2012-12-19 07:18:57 +00003033 FuncAttrs.removeAttribute(Attribute::Alignment);
Chris Lattnerdf986172009-01-02 07:01:27 +00003034 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003035
Chris Lattnerdf986172009-01-02 07:01:27 +00003036 // Okay, if we got here, the function is syntactically valid. Convert types
3037 // and do semantic checks.
Jay Foad5fdd6c82011-07-12 14:06:48 +00003038 std::vector<Type*> ParamTypeList;
Bill Wendlinga1683d62013-01-27 02:24:02 +00003039 SmallVector<AttributeSet, 8> Attrs;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003040
Bill Wendlinge603fe42012-09-19 23:54:18 +00003041 if (RetAttrs.hasAttributes())
Bill Wendlinga1683d62013-01-27 02:24:02 +00003042 Attrs.push_back(AttributeSet::get(RetType->getContext(),
3043 AttributeSet::ReturnIndex,
3044 RetAttrs));
Daniel Dunbara279bc32009-09-20 02:20:51 +00003045
Chris Lattnerdf986172009-01-02 07:01:27 +00003046 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
Chris Lattner1afcace2011-07-09 17:41:24 +00003047 ParamTypeList.push_back(ArgList[i].Ty);
Bill Wendling73dee182013-01-31 00:29:54 +00003048 if (ArgList[i].Attrs.hasAttributes(i + 1)) {
3049 AttrBuilder B(ArgList[i].Attrs, i + 1);
Bill Wendlinga1683d62013-01-27 02:24:02 +00003050 Attrs.push_back(AttributeSet::get(RetType->getContext(), i + 1, B));
3051 }
Chris Lattnerdf986172009-01-02 07:01:27 +00003052 }
3053
Bill Wendlinge603fe42012-09-19 23:54:18 +00003054 if (FuncAttrs.hasAttributes())
Bill Wendlinga1683d62013-01-27 02:24:02 +00003055 Attrs.push_back(AttributeSet::get(RetType->getContext(),
3056 AttributeSet::FunctionIndex,
3057 FuncAttrs));
Chris Lattnerdf986172009-01-02 07:01:27 +00003058
Bill Wendling99faa3b2012-12-07 23:16:57 +00003059 AttributeSet PAL = AttributeSet::get(Context, Attrs);
Daniel Dunbara279bc32009-09-20 02:20:51 +00003060
Bill Wendling94e94b32012-12-30 13:50:49 +00003061 if (PAL.hasAttribute(1, Attribute::StructRet) && !RetType->isVoidTy())
Daniel Dunbara279bc32009-09-20 02:20:51 +00003062 return Error(RetTypeLoc, "functions with 'sret' argument must return void");
3063
Chris Lattnerdb125cf2011-07-18 04:54:35 +00003064 FunctionType *FT =
Owen Andersondebcb012009-07-29 22:17:13 +00003065 FunctionType::get(RetType, ParamTypeList, isVarArg);
Chris Lattnerdb125cf2011-07-18 04:54:35 +00003066 PointerType *PFT = PointerType::getUnqual(FT);
Chris Lattnerdf986172009-01-02 07:01:27 +00003067
3068 Fn = 0;
3069 if (!FunctionName.empty()) {
3070 // If this was a definition of a forward reference, remove the definition
3071 // from the forward reference table and fill in the forward ref.
3072 std::map<std::string, std::pair<GlobalValue*, LocTy> >::iterator FRVI =
3073 ForwardRefVals.find(FunctionName);
3074 if (FRVI != ForwardRefVals.end()) {
3075 Fn = M->getFunction(FunctionName);
Nick Lewycky64ea2752012-10-11 00:38:25 +00003076 if (!Fn)
3077 return Error(FRVI->second.second, "invalid forward reference to "
3078 "function as global value!");
Chris Lattnerf1cfb952010-04-20 04:49:11 +00003079 if (Fn->getType() != PFT)
3080 return Error(FRVI->second.second, "invalid forward reference to "
3081 "function '" + FunctionName + "' with wrong type!");
Michael Ilseman407a6162012-11-15 22:34:00 +00003082
Chris Lattnerdf986172009-01-02 07:01:27 +00003083 ForwardRefVals.erase(FRVI);
3084 } else if ((Fn = M->getFunction(FunctionName))) {
Chris Lattnerd5890992011-06-17 07:06:44 +00003085 // Reject redefinitions.
3086 return Error(NameLoc, "invalid redefinition of function '" +
3087 FunctionName + "'");
Chris Lattner1d871c52009-10-25 23:22:50 +00003088 } else if (M->getNamedValue(FunctionName)) {
3089 return Error(NameLoc, "redefinition of function '@" + FunctionName + "'");
Chris Lattnerdf986172009-01-02 07:01:27 +00003090 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003091
Dan Gohman41905542009-08-29 23:37:49 +00003092 } else {
Chris Lattnerdf986172009-01-02 07:01:27 +00003093 // If this is a definition of a forward referenced function, make sure the
3094 // types agree.
3095 std::map<unsigned, std::pair<GlobalValue*, LocTy> >::iterator I
3096 = ForwardRefValIDs.find(NumberedVals.size());
3097 if (I != ForwardRefValIDs.end()) {
3098 Fn = cast<Function>(I->second.first);
3099 if (Fn->getType() != PFT)
3100 return Error(NameLoc, "type of definition and forward reference of '@" +
Benjamin Kramerd1e17032010-09-27 17:42:11 +00003101 Twine(NumberedVals.size()) + "' disagree");
Chris Lattnerdf986172009-01-02 07:01:27 +00003102 ForwardRefValIDs.erase(I);
3103 }
3104 }
3105
3106 if (Fn == 0)
3107 Fn = Function::Create(FT, GlobalValue::ExternalLinkage, FunctionName, M);
3108 else // Move the forward-reference to the correct spot in the module.
3109 M->getFunctionList().splice(M->end(), M->getFunctionList(), Fn);
3110
3111 if (FunctionName.empty())
3112 NumberedVals.push_back(Fn);
Daniel Dunbara279bc32009-09-20 02:20:51 +00003113
Chris Lattnerdf986172009-01-02 07:01:27 +00003114 Fn->setLinkage((GlobalValue::LinkageTypes)Linkage);
3115 Fn->setVisibility((GlobalValue::VisibilityTypes)Visibility);
3116 Fn->setCallingConv(CC);
3117 Fn->setAttributes(PAL);
Rafael Espindolabea46262011-01-08 16:42:36 +00003118 Fn->setUnnamedAddr(UnnamedAddr);
Chris Lattnerdf986172009-01-02 07:01:27 +00003119 Fn->setAlignment(Alignment);
3120 Fn->setSection(Section);
3121 if (!GC.empty()) Fn->setGC(GC.c_str());
Peter Collingbourne1e3037f2013-09-16 01:08:15 +00003122 Fn->setPrefixData(Prefix);
Bill Wendlingbaad55c2013-02-08 06:32:06 +00003123 ForwardRefAttrGroups[Fn] = FwdRefAttrGrps;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003124
Chris Lattnerdf986172009-01-02 07:01:27 +00003125 // Add all of the arguments we parsed to the function.
3126 Function::arg_iterator ArgIt = Fn->arg_begin();
3127 for (unsigned i = 0, e = ArgList.size(); i != e; ++i, ++ArgIt) {
3128 // If the argument has a name, insert it into the argument symbol table.
3129 if (ArgList[i].Name.empty()) continue;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003130
Chris Lattnerdf986172009-01-02 07:01:27 +00003131 // Set the name, if it conflicted, it will be auto-renamed.
3132 ArgIt->setName(ArgList[i].Name);
Daniel Dunbara279bc32009-09-20 02:20:51 +00003133
Benjamin Krameraf812352010-10-16 11:28:23 +00003134 if (ArgIt->getName() != ArgList[i].Name)
Chris Lattnerdf986172009-01-02 07:01:27 +00003135 return Error(ArgList[i].Loc, "redefinition of argument '%" +
3136 ArgList[i].Name + "'");
3137 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003138
Chris Lattnerdf986172009-01-02 07:01:27 +00003139 return false;
3140}
3141
3142
3143/// ParseFunctionBody
3144/// ::= '{' BasicBlock+ '}'
Chris Lattnerdf986172009-01-02 07:01:27 +00003145///
3146bool LLParser::ParseFunctionBody(Function &Fn) {
Chris Lattner6b7c89e2011-06-17 06:42:57 +00003147 if (Lex.getKind() != lltok::lbrace)
Chris Lattnerdf986172009-01-02 07:01:27 +00003148 return TokError("expected '{' in function body");
3149 Lex.Lex(); // eat the {.
Daniel Dunbara279bc32009-09-20 02:20:51 +00003150
Chris Lattner09d9ef42009-10-28 03:39:23 +00003151 int FunctionNumber = -1;
3152 if (!Fn.hasName()) FunctionNumber = NumberedVals.size()-1;
Michael Ilseman407a6162012-11-15 22:34:00 +00003153
Chris Lattner09d9ef42009-10-28 03:39:23 +00003154 PerFunctionState PFS(*this, Fn, FunctionNumber);
Daniel Dunbara279bc32009-09-20 02:20:51 +00003155
Chris Lattner2fdf8db2010-01-09 19:20:07 +00003156 // We need at least one basic block.
Chris Lattner6b7c89e2011-06-17 06:42:57 +00003157 if (Lex.getKind() == lltok::rbrace)
Chris Lattner2fdf8db2010-01-09 19:20:07 +00003158 return TokError("function body requires at least one basic block");
Michael Ilseman407a6162012-11-15 22:34:00 +00003159
Chris Lattner6b7c89e2011-06-17 06:42:57 +00003160 while (Lex.getKind() != lltok::rbrace)
Chris Lattnerdf986172009-01-02 07:01:27 +00003161 if (ParseBasicBlock(PFS)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003162
Chris Lattnerdf986172009-01-02 07:01:27 +00003163 // Eat the }.
3164 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +00003165
Chris Lattnerdf986172009-01-02 07:01:27 +00003166 // Verify function is ok.
Chris Lattner09d9ef42009-10-28 03:39:23 +00003167 return PFS.FinishFunction();
Chris Lattnerdf986172009-01-02 07:01:27 +00003168}
3169
3170/// ParseBasicBlock
3171/// ::= LabelStr? Instruction*
3172bool LLParser::ParseBasicBlock(PerFunctionState &PFS) {
3173 // If this basic block starts out with a name, remember it.
3174 std::string Name;
3175 LocTy NameLoc = Lex.getLoc();
3176 if (Lex.getKind() == lltok::LabelStr) {
3177 Name = Lex.getStrVal();
3178 Lex.Lex();
3179 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003180
Chris Lattnerdf986172009-01-02 07:01:27 +00003181 BasicBlock *BB = PFS.DefineBB(Name, NameLoc);
3182 if (BB == 0) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003183
Chris Lattnerdf986172009-01-02 07:01:27 +00003184 std::string NameStr;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003185
Chris Lattnerdf986172009-01-02 07:01:27 +00003186 // Parse the instructions in this block until we get a terminator.
3187 Instruction *Inst;
Chris Lattner1340dd32009-12-30 05:48:36 +00003188 SmallVector<std::pair<unsigned, MDNode *>, 4> MetadataOnInst;
Chris Lattnerdf986172009-01-02 07:01:27 +00003189 do {
3190 // This instruction may have three possibilities for a name: a) none
3191 // specified, b) name specified "%foo =", c) number specified: "%4 =".
3192 LocTy NameLoc = Lex.getLoc();
3193 int NameID = -1;
3194 NameStr = "";
Daniel Dunbara279bc32009-09-20 02:20:51 +00003195
Chris Lattnerdf986172009-01-02 07:01:27 +00003196 if (Lex.getKind() == lltok::LocalVarID) {
3197 NameID = Lex.getUIntVal();
3198 Lex.Lex();
3199 if (ParseToken(lltok::equal, "expected '=' after instruction id"))
3200 return true;
Chris Lattner7a1b9bd2011-06-17 06:36:20 +00003201 } else if (Lex.getKind() == lltok::LocalVar) {
Chris Lattnerdf986172009-01-02 07:01:27 +00003202 NameStr = Lex.getStrVal();
3203 Lex.Lex();
3204 if (ParseToken(lltok::equal, "expected '=' after instruction name"))
3205 return true;
3206 }
Devang Patelf633a062009-09-17 23:04:48 +00003207
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00003208 switch (ParseInstruction(Inst, BB, PFS)) {
Craig Topper85814382012-02-07 05:05:23 +00003209 default: llvm_unreachable("Unknown ParseInstruction result!");
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00003210 case InstError: return true;
3211 case InstNormal:
Chris Lattner4ba9d9b2010-04-07 04:08:57 +00003212 BB->getInstList().push_back(Inst);
3213
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00003214 // With a normal result, we check to see if the instruction is followed by
3215 // a comma and metadata.
3216 if (EatIfPresent(lltok::comma))
Dan Gohman9d072f52010-08-24 02:05:17 +00003217 if (ParseInstructionMetadata(Inst, &PFS))
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00003218 return true;
3219 break;
3220 case InstExtraComma:
Chris Lattner4ba9d9b2010-04-07 04:08:57 +00003221 BB->getInstList().push_back(Inst);
3222
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00003223 // If the instruction parser ate an extra comma at the end of it, it
3224 // *must* be followed by metadata.
Dan Gohman9d072f52010-08-24 02:05:17 +00003225 if (ParseInstructionMetadata(Inst, &PFS))
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00003226 return true;
Michael Ilseman407a6162012-11-15 22:34:00 +00003227 break;
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00003228 }
Devang Patelf633a062009-09-17 23:04:48 +00003229
Chris Lattnerdf986172009-01-02 07:01:27 +00003230 // Set the name on the instruction.
3231 if (PFS.SetInstName(NameID, NameStr, NameLoc, Inst)) return true;
3232 } while (!isa<TerminatorInst>(Inst));
Daniel Dunbara279bc32009-09-20 02:20:51 +00003233
Chris Lattnerdf986172009-01-02 07:01:27 +00003234 return false;
3235}
3236
3237//===----------------------------------------------------------------------===//
3238// Instruction Parsing.
3239//===----------------------------------------------------------------------===//
3240
3241/// ParseInstruction - Parse one of the many different instructions.
3242///
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00003243int LLParser::ParseInstruction(Instruction *&Inst, BasicBlock *BB,
3244 PerFunctionState &PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00003245 lltok::Kind Token = Lex.getKind();
3246 if (Token == lltok::Eof)
3247 return TokError("found end of file when expecting more instructions");
3248 LocTy Loc = Lex.getLoc();
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00003249 unsigned KeywordVal = Lex.getUIntVal();
Chris Lattnerdf986172009-01-02 07:01:27 +00003250 Lex.Lex(); // Eat the keyword.
Daniel Dunbara279bc32009-09-20 02:20:51 +00003251
Chris Lattnerdf986172009-01-02 07:01:27 +00003252 switch (Token) {
3253 default: return Error(Loc, "expected instruction opcode");
3254 // Terminator Instructions.
Owen Anderson1d0be152009-08-13 21:58:54 +00003255 case lltok::kw_unreachable: Inst = new UnreachableInst(Context); return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00003256 case lltok::kw_ret: return ParseRet(Inst, BB, PFS);
3257 case lltok::kw_br: return ParseBr(Inst, PFS);
3258 case lltok::kw_switch: return ParseSwitch(Inst, PFS);
Chris Lattnerab21db72009-10-28 00:19:10 +00003259 case lltok::kw_indirectbr: return ParseIndirectBr(Inst, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00003260 case lltok::kw_invoke: return ParseInvoke(Inst, PFS);
Bill Wendlingdccc03b2011-07-31 06:30:59 +00003261 case lltok::kw_resume: return ParseResume(Inst, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00003262 // Binary Operators.
3263 case lltok::kw_add:
3264 case lltok::kw_sub:
Chris Lattnerf067d582011-02-07 16:40:21 +00003265 case lltok::kw_mul:
3266 case lltok::kw_shl: {
Chris Lattnerf067d582011-02-07 16:40:21 +00003267 bool NUW = EatIfPresent(lltok::kw_nuw);
3268 bool NSW = EatIfPresent(lltok::kw_nsw);
3269 if (!NUW) NUW = EatIfPresent(lltok::kw_nuw);
Michael Ilseman407a6162012-11-15 22:34:00 +00003270
Chris Lattnerf067d582011-02-07 16:40:21 +00003271 if (ParseArithmetic(Inst, PFS, KeywordVal, 1)) return true;
Michael Ilseman407a6162012-11-15 22:34:00 +00003272
Chris Lattnerf067d582011-02-07 16:40:21 +00003273 if (NUW) cast<BinaryOperator>(Inst)->setHasNoUnsignedWrap(true);
3274 if (NSW) cast<BinaryOperator>(Inst)->setHasNoSignedWrap(true);
3275 return false;
Dan Gohman59858cf2009-07-27 16:11:46 +00003276 }
Dan Gohmanae3a0be2009-06-04 22:49:04 +00003277 case lltok::kw_fadd:
3278 case lltok::kw_fsub:
Michael Ilseman15c13d32012-11-27 00:42:44 +00003279 case lltok::kw_fmul:
3280 case lltok::kw_fdiv:
3281 case lltok::kw_frem: {
3282 FastMathFlags FMF = EatFastMathFlagsIfPresent();
3283 int Res = ParseArithmetic(Inst, PFS, KeywordVal, 2);
3284 if (Res != 0)
3285 return Res;
3286 if (FMF.any())
3287 Inst->setFastMathFlags(FMF);
3288 return 0;
3289 }
Dan Gohmanae3a0be2009-06-04 22:49:04 +00003290
Chris Lattner35bda892011-02-06 21:44:57 +00003291 case lltok::kw_sdiv:
Chris Lattnerf067d582011-02-07 16:40:21 +00003292 case lltok::kw_udiv:
3293 case lltok::kw_lshr:
3294 case lltok::kw_ashr: {
3295 bool Exact = EatIfPresent(lltok::kw_exact);
3296
3297 if (ParseArithmetic(Inst, PFS, KeywordVal, 1)) return true;
3298 if (Exact) cast<BinaryOperator>(Inst)->setIsExact(true);
3299 return false;
Dan Gohman59858cf2009-07-27 16:11:46 +00003300 }
3301
Chris Lattnerdf986172009-01-02 07:01:27 +00003302 case lltok::kw_urem:
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00003303 case lltok::kw_srem: return ParseArithmetic(Inst, PFS, KeywordVal, 1);
Chris Lattnerdf986172009-01-02 07:01:27 +00003304 case lltok::kw_and:
3305 case lltok::kw_or:
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00003306 case lltok::kw_xor: return ParseLogical(Inst, PFS, KeywordVal);
Chris Lattnerdf986172009-01-02 07:01:27 +00003307 case lltok::kw_icmp:
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00003308 case lltok::kw_fcmp: return ParseCompare(Inst, PFS, KeywordVal);
Chris Lattnerdf986172009-01-02 07:01:27 +00003309 // Casts.
3310 case lltok::kw_trunc:
3311 case lltok::kw_zext:
3312 case lltok::kw_sext:
3313 case lltok::kw_fptrunc:
3314 case lltok::kw_fpext:
3315 case lltok::kw_bitcast:
3316 case lltok::kw_uitofp:
3317 case lltok::kw_sitofp:
3318 case lltok::kw_fptoui:
Daniel Dunbara279bc32009-09-20 02:20:51 +00003319 case lltok::kw_fptosi:
Chris Lattnerdf986172009-01-02 07:01:27 +00003320 case lltok::kw_inttoptr:
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00003321 case lltok::kw_ptrtoint: return ParseCast(Inst, PFS, KeywordVal);
Chris Lattnerdf986172009-01-02 07:01:27 +00003322 // Other.
3323 case lltok::kw_select: return ParseSelect(Inst, PFS);
Chris Lattner0088a5c2009-01-05 08:18:44 +00003324 case lltok::kw_va_arg: return ParseVA_Arg(Inst, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00003325 case lltok::kw_extractelement: return ParseExtractElement(Inst, PFS);
3326 case lltok::kw_insertelement: return ParseInsertElement(Inst, PFS);
3327 case lltok::kw_shufflevector: return ParseShuffleVector(Inst, PFS);
3328 case lltok::kw_phi: return ParsePHI(Inst, PFS);
Bill Wendlinge6e88262011-08-12 20:24:12 +00003329 case lltok::kw_landingpad: return ParseLandingPad(Inst, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00003330 case lltok::kw_call: return ParseCall(Inst, PFS, false);
3331 case lltok::kw_tail: return ParseCall(Inst, PFS, true);
3332 // Memory.
Victor Hernandez13ad5aa2009-10-17 00:00:19 +00003333 case lltok::kw_alloca: return ParseAlloc(Inst, PFS);
Chris Lattnerfbe910e2011-11-27 06:56:53 +00003334 case lltok::kw_load: return ParseLoad(Inst, PFS);
3335 case lltok::kw_store: return ParseStore(Inst, PFS);
Eli Friedmanf03bb262011-08-12 22:50:01 +00003336 case lltok::kw_cmpxchg: return ParseCmpXchg(Inst, PFS);
3337 case lltok::kw_atomicrmw: return ParseAtomicRMW(Inst, PFS);
Eli Friedman47f35132011-07-25 23:16:38 +00003338 case lltok::kw_fence: return ParseFence(Inst, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00003339 case lltok::kw_getelementptr: return ParseGetElementPtr(Inst, PFS);
3340 case lltok::kw_extractvalue: return ParseExtractValue(Inst, PFS);
3341 case lltok::kw_insertvalue: return ParseInsertValue(Inst, PFS);
3342 }
3343}
3344
3345/// ParseCmpPredicate - Parse an integer or fp predicate, based on Kind.
3346bool LLParser::ParseCmpPredicate(unsigned &P, unsigned Opc) {
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00003347 if (Opc == Instruction::FCmp) {
Chris Lattnerdf986172009-01-02 07:01:27 +00003348 switch (Lex.getKind()) {
David Tweedd80d6082013-01-07 13:32:38 +00003349 default: return TokError("expected fcmp predicate (e.g. 'oeq')");
Chris Lattnerdf986172009-01-02 07:01:27 +00003350 case lltok::kw_oeq: P = CmpInst::FCMP_OEQ; break;
3351 case lltok::kw_one: P = CmpInst::FCMP_ONE; break;
3352 case lltok::kw_olt: P = CmpInst::FCMP_OLT; break;
3353 case lltok::kw_ogt: P = CmpInst::FCMP_OGT; break;
3354 case lltok::kw_ole: P = CmpInst::FCMP_OLE; break;
3355 case lltok::kw_oge: P = CmpInst::FCMP_OGE; break;
3356 case lltok::kw_ord: P = CmpInst::FCMP_ORD; break;
3357 case lltok::kw_uno: P = CmpInst::FCMP_UNO; break;
3358 case lltok::kw_ueq: P = CmpInst::FCMP_UEQ; break;
3359 case lltok::kw_une: P = CmpInst::FCMP_UNE; break;
3360 case lltok::kw_ult: P = CmpInst::FCMP_ULT; break;
3361 case lltok::kw_ugt: P = CmpInst::FCMP_UGT; break;
3362 case lltok::kw_ule: P = CmpInst::FCMP_ULE; break;
3363 case lltok::kw_uge: P = CmpInst::FCMP_UGE; break;
3364 case lltok::kw_true: P = CmpInst::FCMP_TRUE; break;
3365 case lltok::kw_false: P = CmpInst::FCMP_FALSE; break;
3366 }
3367 } else {
3368 switch (Lex.getKind()) {
David Tweedd80d6082013-01-07 13:32:38 +00003369 default: return TokError("expected icmp predicate (e.g. 'eq')");
Chris Lattnerdf986172009-01-02 07:01:27 +00003370 case lltok::kw_eq: P = CmpInst::ICMP_EQ; break;
3371 case lltok::kw_ne: P = CmpInst::ICMP_NE; break;
3372 case lltok::kw_slt: P = CmpInst::ICMP_SLT; break;
3373 case lltok::kw_sgt: P = CmpInst::ICMP_SGT; break;
3374 case lltok::kw_sle: P = CmpInst::ICMP_SLE; break;
3375 case lltok::kw_sge: P = CmpInst::ICMP_SGE; break;
3376 case lltok::kw_ult: P = CmpInst::ICMP_ULT; break;
3377 case lltok::kw_ugt: P = CmpInst::ICMP_UGT; break;
3378 case lltok::kw_ule: P = CmpInst::ICMP_ULE; break;
3379 case lltok::kw_uge: P = CmpInst::ICMP_UGE; break;
3380 }
3381 }
3382 Lex.Lex();
3383 return false;
3384}
3385
3386//===----------------------------------------------------------------------===//
3387// Terminator Instructions.
3388//===----------------------------------------------------------------------===//
3389
3390/// ParseRet - Parse a return instruction.
Chris Lattner3f3a0f62009-12-29 21:25:40 +00003391/// ::= 'ret' void (',' !dbg, !1)*
3392/// ::= 'ret' TypeAndValue (',' !dbg, !1)*
Chris Lattner437544f2011-06-17 06:49:41 +00003393bool LLParser::ParseRet(Instruction *&Inst, BasicBlock *BB,
Chris Lattner1afcace2011-07-09 17:41:24 +00003394 PerFunctionState &PFS) {
3395 SMLoc TypeLoc = Lex.getLoc();
3396 Type *Ty = 0;
Chris Lattnera9a9e072009-03-09 04:49:14 +00003397 if (ParseType(Ty, true /*void allowed*/)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003398
Chris Lattner1afcace2011-07-09 17:41:24 +00003399 Type *ResType = PFS.getFunction().getReturnType();
Michael Ilseman407a6162012-11-15 22:34:00 +00003400
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00003401 if (Ty->isVoidTy()) {
Chris Lattner1afcace2011-07-09 17:41:24 +00003402 if (!ResType->isVoidTy())
3403 return Error(TypeLoc, "value doesn't match function result type '" +
3404 getTypeString(ResType) + "'");
Michael Ilseman407a6162012-11-15 22:34:00 +00003405
Owen Anderson1d0be152009-08-13 21:58:54 +00003406 Inst = ReturnInst::Create(Context);
Chris Lattnerdf986172009-01-02 07:01:27 +00003407 return false;
3408 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003409
Chris Lattnerdf986172009-01-02 07:01:27 +00003410 Value *RV;
3411 if (ParseValue(Ty, RV, PFS)) return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00003412
Chris Lattner1afcace2011-07-09 17:41:24 +00003413 if (ResType != RV->getType())
3414 return Error(TypeLoc, "value doesn't match function result type '" +
3415 getTypeString(ResType) + "'");
Michael Ilseman407a6162012-11-15 22:34:00 +00003416
Owen Anderson1d0be152009-08-13 21:58:54 +00003417 Inst = ReturnInst::Create(Context, RV);
Chris Lattner437544f2011-06-17 06:49:41 +00003418 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00003419}
3420
3421
3422/// ParseBr
3423/// ::= 'br' TypeAndValue
3424/// ::= 'br' TypeAndValue ',' TypeAndValue ',' TypeAndValue
3425bool LLParser::ParseBr(Instruction *&Inst, PerFunctionState &PFS) {
3426 LocTy Loc, Loc2;
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003427 Value *Op0;
3428 BasicBlock *Op1, *Op2;
Chris Lattnerdf986172009-01-02 07:01:27 +00003429 if (ParseTypeAndValue(Op0, Loc, PFS)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003430
Chris Lattnerdf986172009-01-02 07:01:27 +00003431 if (BasicBlock *BB = dyn_cast<BasicBlock>(Op0)) {
3432 Inst = BranchInst::Create(BB);
3433 return false;
3434 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003435
Owen Anderson1d0be152009-08-13 21:58:54 +00003436 if (Op0->getType() != Type::getInt1Ty(Context))
Chris Lattnerdf986172009-01-02 07:01:27 +00003437 return Error(Loc, "branch condition must have 'i1' type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003438
Chris Lattnerdf986172009-01-02 07:01:27 +00003439 if (ParseToken(lltok::comma, "expected ',' after branch condition") ||
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003440 ParseTypeAndBasicBlock(Op1, Loc, PFS) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003441 ParseToken(lltok::comma, "expected ',' after true destination") ||
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003442 ParseTypeAndBasicBlock(Op2, Loc2, PFS))
Chris Lattnerdf986172009-01-02 07:01:27 +00003443 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003444
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003445 Inst = BranchInst::Create(Op1, Op2, Op0);
Chris Lattnerdf986172009-01-02 07:01:27 +00003446 return false;
3447}
3448
3449/// ParseSwitch
3450/// Instruction
3451/// ::= 'switch' TypeAndValue ',' TypeAndValue '[' JumpTable ']'
3452/// JumpTable
3453/// ::= (TypeAndValue ',' TypeAndValue)*
3454bool LLParser::ParseSwitch(Instruction *&Inst, PerFunctionState &PFS) {
3455 LocTy CondLoc, BBLoc;
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003456 Value *Cond;
3457 BasicBlock *DefaultBB;
Chris Lattnerdf986172009-01-02 07:01:27 +00003458 if (ParseTypeAndValue(Cond, CondLoc, PFS) ||
3459 ParseToken(lltok::comma, "expected ',' after switch condition") ||
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003460 ParseTypeAndBasicBlock(DefaultBB, BBLoc, PFS) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003461 ParseToken(lltok::lsquare, "expected '[' with switch table"))
3462 return true;
3463
Duncan Sands1df98592010-02-16 11:11:14 +00003464 if (!Cond->getType()->isIntegerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00003465 return Error(CondLoc, "switch condition must have integer type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003466
Chris Lattnerdf986172009-01-02 07:01:27 +00003467 // Parse the jump table pairs.
3468 SmallPtrSet<Value*, 32> SeenCases;
3469 SmallVector<std::pair<ConstantInt*, BasicBlock*>, 32> Table;
3470 while (Lex.getKind() != lltok::rsquare) {
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003471 Value *Constant;
3472 BasicBlock *DestBB;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003473
Chris Lattnerdf986172009-01-02 07:01:27 +00003474 if (ParseTypeAndValue(Constant, CondLoc, PFS) ||
3475 ParseToken(lltok::comma, "expected ',' after case value") ||
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003476 ParseTypeAndBasicBlock(DestBB, PFS))
Chris Lattnerdf986172009-01-02 07:01:27 +00003477 return true;
Michael Ilseman407a6162012-11-15 22:34:00 +00003478
Chris Lattnerdf986172009-01-02 07:01:27 +00003479 if (!SeenCases.insert(Constant))
3480 return Error(CondLoc, "duplicate case value in switch");
3481 if (!isa<ConstantInt>(Constant))
3482 return Error(CondLoc, "case value is not a constant integer");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003483
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003484 Table.push_back(std::make_pair(cast<ConstantInt>(Constant), DestBB));
Chris Lattnerdf986172009-01-02 07:01:27 +00003485 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003486
Chris Lattnerdf986172009-01-02 07:01:27 +00003487 Lex.Lex(); // Eat the ']'.
Daniel Dunbara279bc32009-09-20 02:20:51 +00003488
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003489 SwitchInst *SI = SwitchInst::Create(Cond, DefaultBB, Table.size());
Chris Lattnerdf986172009-01-02 07:01:27 +00003490 for (unsigned i = 0, e = Table.size(); i != e; ++i)
3491 SI->addCase(Table[i].first, Table[i].second);
3492 Inst = SI;
3493 return false;
3494}
3495
Chris Lattnerab21db72009-10-28 00:19:10 +00003496/// ParseIndirectBr
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003497/// Instruction
Chris Lattnerab21db72009-10-28 00:19:10 +00003498/// ::= 'indirectbr' TypeAndValue ',' '[' LabelList ']'
3499bool LLParser::ParseIndirectBr(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003500 LocTy AddrLoc;
3501 Value *Address;
3502 if (ParseTypeAndValue(Address, AddrLoc, PFS) ||
Chris Lattnerab21db72009-10-28 00:19:10 +00003503 ParseToken(lltok::comma, "expected ',' after indirectbr address") ||
3504 ParseToken(lltok::lsquare, "expected '[' with indirectbr"))
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003505 return true;
Michael Ilseman407a6162012-11-15 22:34:00 +00003506
Duncan Sands1df98592010-02-16 11:11:14 +00003507 if (!Address->getType()->isPointerTy())
Chris Lattnerab21db72009-10-28 00:19:10 +00003508 return Error(AddrLoc, "indirectbr address must have pointer type");
Michael Ilseman407a6162012-11-15 22:34:00 +00003509
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003510 // Parse the destination list.
3511 SmallVector<BasicBlock*, 16> DestList;
Michael Ilseman407a6162012-11-15 22:34:00 +00003512
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003513 if (Lex.getKind() != lltok::rsquare) {
3514 BasicBlock *DestBB;
3515 if (ParseTypeAndBasicBlock(DestBB, PFS))
3516 return true;
3517 DestList.push_back(DestBB);
Michael Ilseman407a6162012-11-15 22:34:00 +00003518
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003519 while (EatIfPresent(lltok::comma)) {
3520 if (ParseTypeAndBasicBlock(DestBB, PFS))
3521 return true;
3522 DestList.push_back(DestBB);
3523 }
3524 }
Michael Ilseman407a6162012-11-15 22:34:00 +00003525
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003526 if (ParseToken(lltok::rsquare, "expected ']' at end of block list"))
3527 return true;
3528
Chris Lattnerab21db72009-10-28 00:19:10 +00003529 IndirectBrInst *IBI = IndirectBrInst::Create(Address, DestList.size());
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003530 for (unsigned i = 0, e = DestList.size(); i != e; ++i)
3531 IBI->addDestination(DestList[i]);
3532 Inst = IBI;
3533 return false;
3534}
3535
3536
Chris Lattnerdf986172009-01-02 07:01:27 +00003537/// ParseInvoke
3538/// ::= 'invoke' OptionalCallingConv OptionalAttrs Type Value ParamList
3539/// OptionalAttrs 'to' TypeAndValue 'unwind' TypeAndValue
3540bool LLParser::ParseInvoke(Instruction *&Inst, PerFunctionState &PFS) {
3541 LocTy CallLoc = Lex.getLoc();
Bill Wendling702cc912012-10-15 20:35:56 +00003542 AttrBuilder RetAttrs, FnAttrs;
Bill Wendlingbaad55c2013-02-08 06:32:06 +00003543 std::vector<unsigned> FwdRefAttrGrps;
Bill Wendling143d4642013-02-22 00:12:35 +00003544 LocTy NoBuiltinLoc;
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00003545 CallingConv::ID CC;
Chris Lattner1afcace2011-07-09 17:41:24 +00003546 Type *RetType = 0;
Chris Lattnerdf986172009-01-02 07:01:27 +00003547 LocTy RetTypeLoc;
3548 ValID CalleeID;
3549 SmallVector<ParamInfo, 16> ArgList;
3550
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003551 BasicBlock *NormalBB, *UnwindBB;
Chris Lattnerdf986172009-01-02 07:01:27 +00003552 if (ParseOptionalCallingConv(CC) ||
Bill Wendlinge01b81b2012-12-04 23:40:58 +00003553 ParseOptionalReturnAttrs(RetAttrs) ||
Chris Lattnera9a9e072009-03-09 04:49:14 +00003554 ParseType(RetType, RetTypeLoc, true /*void allowed*/) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003555 ParseValID(CalleeID) ||
3556 ParseParameterList(ArgList, PFS) ||
Bill Wendling143d4642013-02-22 00:12:35 +00003557 ParseFnAttributeValuePairs(FnAttrs, FwdRefAttrGrps, false,
3558 NoBuiltinLoc) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003559 ParseToken(lltok::kw_to, "expected 'to' in invoke") ||
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003560 ParseTypeAndBasicBlock(NormalBB, PFS) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003561 ParseToken(lltok::kw_unwind, "expected 'unwind' in invoke") ||
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003562 ParseTypeAndBasicBlock(UnwindBB, PFS))
Chris Lattnerdf986172009-01-02 07:01:27 +00003563 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003564
Chris Lattnerdf986172009-01-02 07:01:27 +00003565 // If RetType is a non-function pointer type, then this is the short syntax
3566 // for the call, which means that RetType is just the return type. Infer the
3567 // rest of the function argument types from the arguments that are present.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00003568 PointerType *PFTy = 0;
3569 FunctionType *Ty = 0;
Chris Lattnerdf986172009-01-02 07:01:27 +00003570 if (!(PFTy = dyn_cast<PointerType>(RetType)) ||
3571 !(Ty = dyn_cast<FunctionType>(PFTy->getElementType()))) {
3572 // Pull out the types of all of the arguments...
Jay Foad5fdd6c82011-07-12 14:06:48 +00003573 std::vector<Type*> ParamTypes;
Chris Lattnerdf986172009-01-02 07:01:27 +00003574 for (unsigned i = 0, e = ArgList.size(); i != e; ++i)
3575 ParamTypes.push_back(ArgList[i].V->getType());
Daniel Dunbara279bc32009-09-20 02:20:51 +00003576
Chris Lattnerdf986172009-01-02 07:01:27 +00003577 if (!FunctionType::isValidReturnType(RetType))
3578 return Error(RetTypeLoc, "Invalid result type for LLVM function");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003579
Owen Andersondebcb012009-07-29 22:17:13 +00003580 Ty = FunctionType::get(RetType, ParamTypes, false);
3581 PFTy = PointerType::getUnqual(Ty);
Chris Lattnerdf986172009-01-02 07:01:27 +00003582 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003583
Chris Lattnerdf986172009-01-02 07:01:27 +00003584 // Look up the callee.
3585 Value *Callee;
Victor Hernandez92f238d2010-01-11 22:31:58 +00003586 if (ConvertValIDToValue(PFTy, CalleeID, Callee, &PFS)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003587
Bill Wendling034b94b2012-12-19 07:18:57 +00003588 // Set up the Attribute for the function.
Bill Wendlinga1683d62013-01-27 02:24:02 +00003589 SmallVector<AttributeSet, 8> Attrs;
Bill Wendlinge603fe42012-09-19 23:54:18 +00003590 if (RetAttrs.hasAttributes())
Bill Wendlinga1683d62013-01-27 02:24:02 +00003591 Attrs.push_back(AttributeSet::get(RetType->getContext(),
3592 AttributeSet::ReturnIndex,
3593 RetAttrs));
Daniel Dunbara279bc32009-09-20 02:20:51 +00003594
Chris Lattnerdf986172009-01-02 07:01:27 +00003595 SmallVector<Value*, 8> Args;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003596
Chris Lattnerdf986172009-01-02 07:01:27 +00003597 // Loop through FunctionType's arguments and ensure they are specified
3598 // correctly. Also, gather any parameter attributes.
3599 FunctionType::param_iterator I = Ty->param_begin();
3600 FunctionType::param_iterator E = Ty->param_end();
3601 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
Chris Lattnerdb125cf2011-07-18 04:54:35 +00003602 Type *ExpectedTy = 0;
Chris Lattnerdf986172009-01-02 07:01:27 +00003603 if (I != E) {
3604 ExpectedTy = *I++;
3605 } else if (!Ty->isVarArg()) {
3606 return Error(ArgList[i].Loc, "too many arguments specified");
3607 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003608
Chris Lattnerdf986172009-01-02 07:01:27 +00003609 if (ExpectedTy && ExpectedTy != ArgList[i].V->getType())
3610 return Error(ArgList[i].Loc, "argument is not of expected type '" +
Chris Lattner0cd0d882011-06-18 21:18:23 +00003611 getTypeString(ExpectedTy) + "'");
Chris Lattnerdf986172009-01-02 07:01:27 +00003612 Args.push_back(ArgList[i].V);
Bill Wendling73dee182013-01-31 00:29:54 +00003613 if (ArgList[i].Attrs.hasAttributes(i + 1)) {
3614 AttrBuilder B(ArgList[i].Attrs, i + 1);
Bill Wendlinga1683d62013-01-27 02:24:02 +00003615 Attrs.push_back(AttributeSet::get(RetType->getContext(), i + 1, B));
3616 }
Chris Lattnerdf986172009-01-02 07:01:27 +00003617 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003618
Chris Lattnerdf986172009-01-02 07:01:27 +00003619 if (I != E)
3620 return Error(CallLoc, "not enough parameters specified for call");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003621
Bill Wendlinge603fe42012-09-19 23:54:18 +00003622 if (FnAttrs.hasAttributes())
Bill Wendlinga1683d62013-01-27 02:24:02 +00003623 Attrs.push_back(AttributeSet::get(RetType->getContext(),
3624 AttributeSet::FunctionIndex,
3625 FnAttrs));
Daniel Dunbara279bc32009-09-20 02:20:51 +00003626
Bill Wendling034b94b2012-12-19 07:18:57 +00003627 // Finish off the Attribute and check them
Bill Wendling99faa3b2012-12-07 23:16:57 +00003628 AttributeSet PAL = AttributeSet::get(Context, Attrs);
Daniel Dunbara279bc32009-09-20 02:20:51 +00003629
Jay Foada3efbb12011-07-15 08:37:34 +00003630 InvokeInst *II = InvokeInst::Create(Callee, NormalBB, UnwindBB, Args);
Chris Lattnerdf986172009-01-02 07:01:27 +00003631 II->setCallingConv(CC);
3632 II->setAttributes(PAL);
Bill Wendlingbaad55c2013-02-08 06:32:06 +00003633 ForwardRefAttrGroups[II] = FwdRefAttrGrps;
Chris Lattnerdf986172009-01-02 07:01:27 +00003634 Inst = II;
3635 return false;
3636}
3637
Bill Wendlingdccc03b2011-07-31 06:30:59 +00003638/// ParseResume
3639/// ::= 'resume' TypeAndValue
3640bool LLParser::ParseResume(Instruction *&Inst, PerFunctionState &PFS) {
3641 Value *Exn; LocTy ExnLoc;
Bill Wendlingdccc03b2011-07-31 06:30:59 +00003642 if (ParseTypeAndValue(Exn, ExnLoc, PFS))
3643 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00003644
Bill Wendlingdccc03b2011-07-31 06:30:59 +00003645 ResumeInst *RI = ResumeInst::Create(Exn);
3646 Inst = RI;
3647 return false;
3648}
Chris Lattnerdf986172009-01-02 07:01:27 +00003649
3650//===----------------------------------------------------------------------===//
3651// Binary Operators.
3652//===----------------------------------------------------------------------===//
3653
3654/// ParseArithmetic
Chris Lattnere914b592009-01-05 08:24:46 +00003655/// ::= ArithmeticOps TypeAndValue ',' Value
3656///
3657/// If OperandType is 0, then any FP or integer operand is allowed. If it is 1,
3658/// then any integer operand is allowed, if it is 2, any fp operand is allowed.
Chris Lattnerdf986172009-01-02 07:01:27 +00003659bool LLParser::ParseArithmetic(Instruction *&Inst, PerFunctionState &PFS,
Chris Lattnere914b592009-01-05 08:24:46 +00003660 unsigned Opc, unsigned OperandType) {
Chris Lattnerdf986172009-01-02 07:01:27 +00003661 LocTy Loc; Value *LHS, *RHS;
3662 if (ParseTypeAndValue(LHS, Loc, PFS) ||
3663 ParseToken(lltok::comma, "expected ',' in arithmetic operation") ||
3664 ParseValue(LHS->getType(), RHS, PFS))
3665 return true;
3666
Chris Lattnere914b592009-01-05 08:24:46 +00003667 bool Valid;
3668 switch (OperandType) {
Torok Edwinc23197a2009-07-14 16:55:14 +00003669 default: llvm_unreachable("Unknown operand type!");
Chris Lattnere914b592009-01-05 08:24:46 +00003670 case 0: // int or FP.
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00003671 Valid = LHS->getType()->isIntOrIntVectorTy() ||
3672 LHS->getType()->isFPOrFPVectorTy();
Chris Lattnere914b592009-01-05 08:24:46 +00003673 break;
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00003674 case 1: Valid = LHS->getType()->isIntOrIntVectorTy(); break;
3675 case 2: Valid = LHS->getType()->isFPOrFPVectorTy(); break;
Chris Lattnere914b592009-01-05 08:24:46 +00003676 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003677
Chris Lattnere914b592009-01-05 08:24:46 +00003678 if (!Valid)
3679 return Error(Loc, "invalid operand type for instruction");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003680
Chris Lattnerdf986172009-01-02 07:01:27 +00003681 Inst = BinaryOperator::Create((Instruction::BinaryOps)Opc, LHS, RHS);
3682 return false;
3683}
3684
3685/// ParseLogical
3686/// ::= ArithmeticOps TypeAndValue ',' Value {
3687bool LLParser::ParseLogical(Instruction *&Inst, PerFunctionState &PFS,
3688 unsigned Opc) {
3689 LocTy Loc; Value *LHS, *RHS;
3690 if (ParseTypeAndValue(LHS, Loc, PFS) ||
3691 ParseToken(lltok::comma, "expected ',' in logical operation") ||
3692 ParseValue(LHS->getType(), RHS, PFS))
3693 return true;
3694
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00003695 if (!LHS->getType()->isIntOrIntVectorTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00003696 return Error(Loc,"instruction requires integer or integer vector operands");
3697
3698 Inst = BinaryOperator::Create((Instruction::BinaryOps)Opc, LHS, RHS);
3699 return false;
3700}
3701
3702
3703/// ParseCompare
3704/// ::= 'icmp' IPredicates TypeAndValue ',' Value
3705/// ::= 'fcmp' FPredicates TypeAndValue ',' Value
Chris Lattnerdf986172009-01-02 07:01:27 +00003706bool LLParser::ParseCompare(Instruction *&Inst, PerFunctionState &PFS,
3707 unsigned Opc) {
3708 // Parse the integer/fp comparison predicate.
3709 LocTy Loc;
3710 unsigned Pred;
3711 Value *LHS, *RHS;
3712 if (ParseCmpPredicate(Pred, Opc) ||
3713 ParseTypeAndValue(LHS, Loc, PFS) ||
3714 ParseToken(lltok::comma, "expected ',' after compare value") ||
3715 ParseValue(LHS->getType(), RHS, PFS))
3716 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003717
Chris Lattnerdf986172009-01-02 07:01:27 +00003718 if (Opc == Instruction::FCmp) {
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00003719 if (!LHS->getType()->isFPOrFPVectorTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00003720 return Error(Loc, "fcmp requires floating point operands");
Dan Gohman1c8a23c2009-08-25 23:17:54 +00003721 Inst = new FCmpInst(CmpInst::Predicate(Pred), LHS, RHS);
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00003722 } else {
3723 assert(Opc == Instruction::ICmp && "Unknown opcode for CmpInst!");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00003724 if (!LHS->getType()->isIntOrIntVectorTy() &&
Nadav Rotem16087692011-12-05 06:29:09 +00003725 !LHS->getType()->getScalarType()->isPointerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00003726 return Error(Loc, "icmp requires integer operands");
Dan Gohman1c8a23c2009-08-25 23:17:54 +00003727 Inst = new ICmpInst(CmpInst::Predicate(Pred), LHS, RHS);
Chris Lattnerdf986172009-01-02 07:01:27 +00003728 }
3729 return false;
3730}
3731
3732//===----------------------------------------------------------------------===//
3733// Other Instructions.
3734//===----------------------------------------------------------------------===//
3735
3736
3737/// ParseCast
3738/// ::= CastOpc TypeAndValue 'to' Type
3739bool LLParser::ParseCast(Instruction *&Inst, PerFunctionState &PFS,
3740 unsigned Opc) {
Chris Lattner1afcace2011-07-09 17:41:24 +00003741 LocTy Loc;
3742 Value *Op;
3743 Type *DestTy = 0;
Chris Lattnerdf986172009-01-02 07:01:27 +00003744 if (ParseTypeAndValue(Op, Loc, PFS) ||
3745 ParseToken(lltok::kw_to, "expected 'to' after cast value") ||
3746 ParseType(DestTy))
3747 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003748
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00003749 if (!CastInst::castIsValid((Instruction::CastOps)Opc, Op, DestTy)) {
3750 CastInst::castIsValid((Instruction::CastOps)Opc, Op, DestTy);
Chris Lattnerdf986172009-01-02 07:01:27 +00003751 return Error(Loc, "invalid cast opcode for cast from '" +
Chris Lattner0cd0d882011-06-18 21:18:23 +00003752 getTypeString(Op->getType()) + "' to '" +
3753 getTypeString(DestTy) + "'");
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00003754 }
Chris Lattnerdf986172009-01-02 07:01:27 +00003755 Inst = CastInst::Create((Instruction::CastOps)Opc, Op, DestTy);
3756 return false;
3757}
3758
3759/// ParseSelect
3760/// ::= 'select' TypeAndValue ',' TypeAndValue ',' TypeAndValue
3761bool LLParser::ParseSelect(Instruction *&Inst, PerFunctionState &PFS) {
3762 LocTy Loc;
3763 Value *Op0, *Op1, *Op2;
3764 if (ParseTypeAndValue(Op0, Loc, PFS) ||
3765 ParseToken(lltok::comma, "expected ',' after select condition") ||
3766 ParseTypeAndValue(Op1, PFS) ||
3767 ParseToken(lltok::comma, "expected ',' after select value") ||
3768 ParseTypeAndValue(Op2, PFS))
3769 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003770
Chris Lattnerdf986172009-01-02 07:01:27 +00003771 if (const char *Reason = SelectInst::areInvalidOperands(Op0, Op1, Op2))
3772 return Error(Loc, Reason);
Daniel Dunbara279bc32009-09-20 02:20:51 +00003773
Chris Lattnerdf986172009-01-02 07:01:27 +00003774 Inst = SelectInst::Create(Op0, Op1, Op2);
3775 return false;
3776}
3777
Chris Lattner0088a5c2009-01-05 08:18:44 +00003778/// ParseVA_Arg
3779/// ::= 'va_arg' TypeAndValue ',' Type
3780bool LLParser::ParseVA_Arg(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00003781 Value *Op;
Chris Lattner1afcace2011-07-09 17:41:24 +00003782 Type *EltTy = 0;
Chris Lattner0088a5c2009-01-05 08:18:44 +00003783 LocTy TypeLoc;
Chris Lattnerdf986172009-01-02 07:01:27 +00003784 if (ParseTypeAndValue(Op, PFS) ||
3785 ParseToken(lltok::comma, "expected ',' after vaarg operand") ||
Chris Lattner0088a5c2009-01-05 08:18:44 +00003786 ParseType(EltTy, TypeLoc))
Chris Lattnerdf986172009-01-02 07:01:27 +00003787 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003788
Chris Lattner0088a5c2009-01-05 08:18:44 +00003789 if (!EltTy->isFirstClassType())
3790 return Error(TypeLoc, "va_arg requires operand with first class type");
Chris Lattnerdf986172009-01-02 07:01:27 +00003791
3792 Inst = new VAArgInst(Op, EltTy);
3793 return false;
3794}
3795
3796/// ParseExtractElement
3797/// ::= 'extractelement' TypeAndValue ',' TypeAndValue
3798bool LLParser::ParseExtractElement(Instruction *&Inst, PerFunctionState &PFS) {
3799 LocTy Loc;
3800 Value *Op0, *Op1;
3801 if (ParseTypeAndValue(Op0, Loc, PFS) ||
3802 ParseToken(lltok::comma, "expected ',' after extract value") ||
3803 ParseTypeAndValue(Op1, PFS))
3804 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003805
Chris Lattnerdf986172009-01-02 07:01:27 +00003806 if (!ExtractElementInst::isValidOperands(Op0, Op1))
3807 return Error(Loc, "invalid extractelement operands");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003808
Eric Christophera3500da2009-07-25 02:28:41 +00003809 Inst = ExtractElementInst::Create(Op0, Op1);
Chris Lattnerdf986172009-01-02 07:01:27 +00003810 return false;
3811}
3812
3813/// ParseInsertElement
3814/// ::= 'insertelement' TypeAndValue ',' TypeAndValue ',' TypeAndValue
3815bool LLParser::ParseInsertElement(Instruction *&Inst, PerFunctionState &PFS) {
3816 LocTy Loc;
3817 Value *Op0, *Op1, *Op2;
3818 if (ParseTypeAndValue(Op0, Loc, PFS) ||
3819 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
3820 ParseTypeAndValue(Op1, PFS) ||
3821 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
3822 ParseTypeAndValue(Op2, PFS))
3823 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003824
Chris Lattnerdf986172009-01-02 07:01:27 +00003825 if (!InsertElementInst::isValidOperands(Op0, Op1, Op2))
Eric Christopher0aaf4e92009-07-23 01:01:32 +00003826 return Error(Loc, "invalid insertelement operands");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003827
Chris Lattnerdf986172009-01-02 07:01:27 +00003828 Inst = InsertElementInst::Create(Op0, Op1, Op2);
3829 return false;
3830}
3831
3832/// ParseShuffleVector
3833/// ::= 'shufflevector' TypeAndValue ',' TypeAndValue ',' TypeAndValue
3834bool LLParser::ParseShuffleVector(Instruction *&Inst, PerFunctionState &PFS) {
3835 LocTy Loc;
3836 Value *Op0, *Op1, *Op2;
3837 if (ParseTypeAndValue(Op0, Loc, PFS) ||
3838 ParseToken(lltok::comma, "expected ',' after shuffle mask") ||
3839 ParseTypeAndValue(Op1, PFS) ||
3840 ParseToken(lltok::comma, "expected ',' after shuffle value") ||
3841 ParseTypeAndValue(Op2, PFS))
3842 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003843
Chris Lattnerdf986172009-01-02 07:01:27 +00003844 if (!ShuffleVectorInst::isValidOperands(Op0, Op1, Op2))
Pete Cooperaf393682012-02-01 23:43:12 +00003845 return Error(Loc, "invalid shufflevector operands");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003846
Chris Lattnerdf986172009-01-02 07:01:27 +00003847 Inst = new ShuffleVectorInst(Op0, Op1, Op2);
3848 return false;
3849}
3850
3851/// ParsePHI
Chris Lattnerc6e20092009-10-18 05:27:44 +00003852/// ::= 'phi' Type '[' Value ',' Value ']' (',' '[' Value ',' Value ']')*
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003853int LLParser::ParsePHI(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattner1afcace2011-07-09 17:41:24 +00003854 Type *Ty = 0; LocTy TypeLoc;
Chris Lattnerdf986172009-01-02 07:01:27 +00003855 Value *Op0, *Op1;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003856
Chris Lattner1afcace2011-07-09 17:41:24 +00003857 if (ParseType(Ty, TypeLoc) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003858 ParseToken(lltok::lsquare, "expected '[' in phi value list") ||
3859 ParseValue(Ty, Op0, PFS) ||
3860 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
Owen Anderson1d0be152009-08-13 21:58:54 +00003861 ParseValue(Type::getLabelTy(Context), Op1, PFS) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003862 ParseToken(lltok::rsquare, "expected ']' in phi value list"))
3863 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003864
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003865 bool AteExtraComma = false;
Chris Lattnerdf986172009-01-02 07:01:27 +00003866 SmallVector<std::pair<Value*, BasicBlock*>, 16> PHIVals;
3867 while (1) {
3868 PHIVals.push_back(std::make_pair(Op0, cast<BasicBlock>(Op1)));
Daniel Dunbara279bc32009-09-20 02:20:51 +00003869
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003870 if (!EatIfPresent(lltok::comma))
Chris Lattnerdf986172009-01-02 07:01:27 +00003871 break;
3872
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003873 if (Lex.getKind() == lltok::MetadataVar) {
3874 AteExtraComma = true;
Devang Patela43d46f2009-10-16 18:45:49 +00003875 break;
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003876 }
Devang Patela43d46f2009-10-16 18:45:49 +00003877
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003878 if (ParseToken(lltok::lsquare, "expected '[' in phi value list") ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003879 ParseValue(Ty, Op0, PFS) ||
3880 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
Owen Anderson1d0be152009-08-13 21:58:54 +00003881 ParseValue(Type::getLabelTy(Context), Op1, PFS) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003882 ParseToken(lltok::rsquare, "expected ']' in phi value list"))
3883 return true;
3884 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003885
Chris Lattnerdf986172009-01-02 07:01:27 +00003886 if (!Ty->isFirstClassType())
3887 return Error(TypeLoc, "phi node must have first class type");
3888
Jay Foad3ecfc862011-03-30 11:28:46 +00003889 PHINode *PN = PHINode::Create(Ty, PHIVals.size());
Chris Lattnerdf986172009-01-02 07:01:27 +00003890 for (unsigned i = 0, e = PHIVals.size(); i != e; ++i)
3891 PN->addIncoming(PHIVals[i].first, PHIVals[i].second);
3892 Inst = PN;
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003893 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerdf986172009-01-02 07:01:27 +00003894}
3895
Bill Wendlinge6e88262011-08-12 20:24:12 +00003896/// ParseLandingPad
3897/// ::= 'landingpad' Type 'personality' TypeAndValue 'cleanup'? Clause+
3898/// Clause
3899/// ::= 'catch' TypeAndValue
3900/// ::= 'filter'
3901/// ::= 'filter' TypeAndValue ( ',' TypeAndValue )*
3902bool LLParser::ParseLandingPad(Instruction *&Inst, PerFunctionState &PFS) {
3903 Type *Ty = 0; LocTy TyLoc;
3904 Value *PersFn; LocTy PersFnLoc;
Bill Wendlinge6e88262011-08-12 20:24:12 +00003905
3906 if (ParseType(Ty, TyLoc) ||
3907 ParseToken(lltok::kw_personality, "expected 'personality'") ||
3908 ParseTypeAndValue(PersFn, PersFnLoc, PFS))
3909 return true;
3910
3911 LandingPadInst *LP = LandingPadInst::Create(Ty, PersFn, 0);
3912 LP->setCleanup(EatIfPresent(lltok::kw_cleanup));
3913
3914 while (Lex.getKind() == lltok::kw_catch || Lex.getKind() == lltok::kw_filter){
3915 LandingPadInst::ClauseType CT;
3916 if (EatIfPresent(lltok::kw_catch))
3917 CT = LandingPadInst::Catch;
3918 else if (EatIfPresent(lltok::kw_filter))
3919 CT = LandingPadInst::Filter;
3920 else
3921 return TokError("expected 'catch' or 'filter' clause type");
3922
3923 Value *V; LocTy VLoc;
3924 if (ParseTypeAndValue(V, VLoc, PFS)) {
3925 delete LP;
3926 return true;
3927 }
3928
Bill Wendling746c8822011-08-12 20:52:25 +00003929 // A 'catch' type expects a non-array constant. A filter clause expects an
3930 // array constant.
3931 if (CT == LandingPadInst::Catch) {
3932 if (isa<ArrayType>(V->getType()))
3933 Error(VLoc, "'catch' clause has an invalid type");
3934 } else {
3935 if (!isa<ArrayType>(V->getType()))
3936 Error(VLoc, "'filter' clause has an invalid type");
3937 }
3938
Bill Wendlinge6e88262011-08-12 20:24:12 +00003939 LP->addClause(V);
3940 }
3941
3942 Inst = LP;
3943 return false;
3944}
3945
Chris Lattnerdf986172009-01-02 07:01:27 +00003946/// ParseCall
3947/// ::= 'tail'? 'call' OptionalCallingConv OptionalAttrs Type Value
3948/// ParameterList OptionalAttrs
3949bool LLParser::ParseCall(Instruction *&Inst, PerFunctionState &PFS,
3950 bool isTail) {
Bill Wendling702cc912012-10-15 20:35:56 +00003951 AttrBuilder RetAttrs, FnAttrs;
Bill Wendlingbaad55c2013-02-08 06:32:06 +00003952 std::vector<unsigned> FwdRefAttrGrps;
Michael Gottesman2253a2f2013-06-27 00:25:01 +00003953 LocTy BuiltinLoc;
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00003954 CallingConv::ID CC;
Chris Lattner1afcace2011-07-09 17:41:24 +00003955 Type *RetType = 0;
Chris Lattnerdf986172009-01-02 07:01:27 +00003956 LocTy RetTypeLoc;
3957 ValID CalleeID;
3958 SmallVector<ParamInfo, 16> ArgList;
3959 LocTy CallLoc = Lex.getLoc();
Daniel Dunbara279bc32009-09-20 02:20:51 +00003960
Chris Lattnerdf986172009-01-02 07:01:27 +00003961 if ((isTail && ParseToken(lltok::kw_call, "expected 'tail call'")) ||
3962 ParseOptionalCallingConv(CC) ||
Bill Wendlinge01b81b2012-12-04 23:40:58 +00003963 ParseOptionalReturnAttrs(RetAttrs) ||
Chris Lattnera9a9e072009-03-09 04:49:14 +00003964 ParseType(RetType, RetTypeLoc, true /*void allowed*/) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003965 ParseValID(CalleeID) ||
3966 ParseParameterList(ArgList, PFS) ||
Bill Wendling143d4642013-02-22 00:12:35 +00003967 ParseFnAttributeValuePairs(FnAttrs, FwdRefAttrGrps, false,
Michael Gottesman2253a2f2013-06-27 00:25:01 +00003968 BuiltinLoc))
Chris Lattnerdf986172009-01-02 07:01:27 +00003969 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003970
Chris Lattnerdf986172009-01-02 07:01:27 +00003971 // If RetType is a non-function pointer type, then this is the short syntax
3972 // for the call, which means that RetType is just the return type. Infer the
3973 // rest of the function argument types from the arguments that are present.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00003974 PointerType *PFTy = 0;
3975 FunctionType *Ty = 0;
Chris Lattnerdf986172009-01-02 07:01:27 +00003976 if (!(PFTy = dyn_cast<PointerType>(RetType)) ||
3977 !(Ty = dyn_cast<FunctionType>(PFTy->getElementType()))) {
3978 // Pull out the types of all of the arguments...
Jay Foad5fdd6c82011-07-12 14:06:48 +00003979 std::vector<Type*> ParamTypes;
Eli Friedman83b4a972010-07-24 23:06:59 +00003980 for (unsigned i = 0, e = ArgList.size(); i != e; ++i)
3981 ParamTypes.push_back(ArgList[i].V->getType());
Daniel Dunbara279bc32009-09-20 02:20:51 +00003982
Chris Lattnerdf986172009-01-02 07:01:27 +00003983 if (!FunctionType::isValidReturnType(RetType))
3984 return Error(RetTypeLoc, "Invalid result type for LLVM function");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003985
Owen Andersondebcb012009-07-29 22:17:13 +00003986 Ty = FunctionType::get(RetType, ParamTypes, false);
3987 PFTy = PointerType::getUnqual(Ty);
Chris Lattnerdf986172009-01-02 07:01:27 +00003988 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003989
Chris Lattnerdf986172009-01-02 07:01:27 +00003990 // Look up the callee.
3991 Value *Callee;
Victor Hernandez92f238d2010-01-11 22:31:58 +00003992 if (ConvertValIDToValue(PFTy, CalleeID, Callee, &PFS)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003993
Bill Wendling034b94b2012-12-19 07:18:57 +00003994 // Set up the Attribute for the function.
Bill Wendlinga1683d62013-01-27 02:24:02 +00003995 SmallVector<AttributeSet, 8> Attrs;
Bill Wendlinge603fe42012-09-19 23:54:18 +00003996 if (RetAttrs.hasAttributes())
Bill Wendlinga1683d62013-01-27 02:24:02 +00003997 Attrs.push_back(AttributeSet::get(RetType->getContext(),
3998 AttributeSet::ReturnIndex,
3999 RetAttrs));
Daniel Dunbara279bc32009-09-20 02:20:51 +00004000
Chris Lattnerdf986172009-01-02 07:01:27 +00004001 SmallVector<Value*, 8> Args;
Daniel Dunbara279bc32009-09-20 02:20:51 +00004002
Chris Lattnerdf986172009-01-02 07:01:27 +00004003 // Loop through FunctionType's arguments and ensure they are specified
4004 // correctly. Also, gather any parameter attributes.
4005 FunctionType::param_iterator I = Ty->param_begin();
4006 FunctionType::param_iterator E = Ty->param_end();
4007 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
Chris Lattnerdb125cf2011-07-18 04:54:35 +00004008 Type *ExpectedTy = 0;
Chris Lattnerdf986172009-01-02 07:01:27 +00004009 if (I != E) {
4010 ExpectedTy = *I++;
4011 } else if (!Ty->isVarArg()) {
4012 return Error(ArgList[i].Loc, "too many arguments specified");
4013 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00004014
Chris Lattnerdf986172009-01-02 07:01:27 +00004015 if (ExpectedTy && ExpectedTy != ArgList[i].V->getType())
4016 return Error(ArgList[i].Loc, "argument is not of expected type '" +
Chris Lattner0cd0d882011-06-18 21:18:23 +00004017 getTypeString(ExpectedTy) + "'");
Chris Lattnerdf986172009-01-02 07:01:27 +00004018 Args.push_back(ArgList[i].V);
Bill Wendling73dee182013-01-31 00:29:54 +00004019 if (ArgList[i].Attrs.hasAttributes(i + 1)) {
4020 AttrBuilder B(ArgList[i].Attrs, i + 1);
Bill Wendlinga1683d62013-01-27 02:24:02 +00004021 Attrs.push_back(AttributeSet::get(RetType->getContext(), i + 1, B));
4022 }
Chris Lattnerdf986172009-01-02 07:01:27 +00004023 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00004024
Chris Lattnerdf986172009-01-02 07:01:27 +00004025 if (I != E)
4026 return Error(CallLoc, "not enough parameters specified for call");
4027
Bill Wendlinge603fe42012-09-19 23:54:18 +00004028 if (FnAttrs.hasAttributes())
Bill Wendlinga1683d62013-01-27 02:24:02 +00004029 Attrs.push_back(AttributeSet::get(RetType->getContext(),
4030 AttributeSet::FunctionIndex,
4031 FnAttrs));
Chris Lattnerdf986172009-01-02 07:01:27 +00004032
Bill Wendling034b94b2012-12-19 07:18:57 +00004033 // Finish off the Attribute and check them
Bill Wendling99faa3b2012-12-07 23:16:57 +00004034 AttributeSet PAL = AttributeSet::get(Context, Attrs);
Daniel Dunbara279bc32009-09-20 02:20:51 +00004035
Jay Foada3efbb12011-07-15 08:37:34 +00004036 CallInst *CI = CallInst::Create(Callee, Args);
Chris Lattnerdf986172009-01-02 07:01:27 +00004037 CI->setTailCall(isTail);
4038 CI->setCallingConv(CC);
4039 CI->setAttributes(PAL);
Bill Wendlingbaad55c2013-02-08 06:32:06 +00004040 ForwardRefAttrGroups[CI] = FwdRefAttrGrps;
Chris Lattnerdf986172009-01-02 07:01:27 +00004041 Inst = CI;
4042 return false;
4043}
4044
4045//===----------------------------------------------------------------------===//
4046// Memory Instructions.
4047//===----------------------------------------------------------------------===//
4048
4049/// ParseAlloc
Devang Patelf633a062009-09-17 23:04:48 +00004050/// ::= 'alloca' Type (',' TypeAndValue)? (',' OptionalInfo)?
Chris Lattnerf3a789d2011-06-17 03:16:47 +00004051int LLParser::ParseAlloc(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00004052 Value *Size = 0;
Chris Lattnereeb4a842009-07-02 23:08:13 +00004053 LocTy SizeLoc;
Chris Lattnerdf986172009-01-02 07:01:27 +00004054 unsigned Alignment = 0;
Chris Lattner1afcace2011-07-09 17:41:24 +00004055 Type *Ty = 0;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00004056 if (ParseType(Ty)) return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00004057
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00004058 bool AteExtraComma = false;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00004059 if (EatIfPresent(lltok::comma)) {
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00004060 if (Lex.getKind() == lltok::kw_align) {
4061 if (ParseOptionalAlignment(Alignment)) return true;
4062 } else if (Lex.getKind() == lltok::MetadataVar) {
4063 AteExtraComma = true;
Devang Patelf633a062009-09-17 23:04:48 +00004064 } else {
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00004065 if (ParseTypeAndValue(Size, SizeLoc, PFS) ||
4066 ParseOptionalCommaAlign(Alignment, AteExtraComma))
4067 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00004068 }
4069 }
4070
Dan Gohmanf75a7d32010-05-28 01:14:11 +00004071 if (Size && !Size->getType()->isIntegerTy())
4072 return Error(SizeLoc, "element count must have integer type");
Chris Lattnerdf986172009-01-02 07:01:27 +00004073
Chris Lattnerf3a789d2011-06-17 03:16:47 +00004074 Inst = new AllocaInst(Ty, Size, Alignment);
4075 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerdf986172009-01-02 07:01:27 +00004076}
4077
4078/// ParseLoad
Eli Friedmanf03bb262011-08-12 22:50:01 +00004079/// ::= 'load' 'volatile'? TypeAndValue (',' 'align' i32)?
Michael Ilseman407a6162012-11-15 22:34:00 +00004080/// ::= 'load' 'atomic' 'volatile'? TypeAndValue
Eli Friedmanf03bb262011-08-12 22:50:01 +00004081/// 'singlethread'? AtomicOrdering (',' 'align' i32)?
Chris Lattnerfbe910e2011-11-27 06:56:53 +00004082int LLParser::ParseLoad(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00004083 Value *Val; LocTy Loc;
Devang Patelf633a062009-09-17 23:04:48 +00004084 unsigned Alignment = 0;
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00004085 bool AteExtraComma = false;
Eli Friedmanf03bb262011-08-12 22:50:01 +00004086 bool isAtomic = false;
Eli Friedman21006d42011-08-09 23:02:53 +00004087 AtomicOrdering Ordering = NotAtomic;
4088 SynchronizationScope Scope = CrossThread;
Eli Friedmanf03bb262011-08-12 22:50:01 +00004089
4090 if (Lex.getKind() == lltok::kw_atomic) {
Eli Friedmanf03bb262011-08-12 22:50:01 +00004091 isAtomic = true;
4092 Lex.Lex();
4093 }
4094
Chris Lattnerfbe910e2011-11-27 06:56:53 +00004095 bool isVolatile = false;
Eli Friedmanf03bb262011-08-12 22:50:01 +00004096 if (Lex.getKind() == lltok::kw_volatile) {
Eli Friedmanf03bb262011-08-12 22:50:01 +00004097 isVolatile = true;
4098 Lex.Lex();
4099 }
4100
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00004101 if (ParseTypeAndValue(Val, Loc, PFS) ||
Eli Friedman21006d42011-08-09 23:02:53 +00004102 ParseScopeAndOrdering(isAtomic, Scope, Ordering) ||
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00004103 ParseOptionalCommaAlign(Alignment, AteExtraComma))
4104 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00004105
Duncan Sands1df98592010-02-16 11:11:14 +00004106 if (!Val->getType()->isPointerTy() ||
Chris Lattnerdf986172009-01-02 07:01:27 +00004107 !cast<PointerType>(Val->getType())->getElementType()->isFirstClassType())
4108 return Error(Loc, "load operand must be a pointer to a first class type");
Eli Friedman21006d42011-08-09 23:02:53 +00004109 if (isAtomic && !Alignment)
4110 return Error(Loc, "atomic load must have explicit non-zero alignment");
4111 if (Ordering == Release || Ordering == AcquireRelease)
4112 return Error(Loc, "atomic load cannot use Release ordering");
Daniel Dunbara279bc32009-09-20 02:20:51 +00004113
Eli Friedman21006d42011-08-09 23:02:53 +00004114 Inst = new LoadInst(Val, "", isVolatile, Alignment, Ordering, Scope);
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00004115 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerdf986172009-01-02 07:01:27 +00004116}
4117
4118/// ParseStore
Eli Friedmanf03bb262011-08-12 22:50:01 +00004119
4120/// ::= 'store' 'volatile'? TypeAndValue ',' TypeAndValue (',' 'align' i32)?
4121/// ::= 'store' 'atomic' 'volatile'? TypeAndValue ',' TypeAndValue
Eli Friedman21006d42011-08-09 23:02:53 +00004122/// 'singlethread'? AtomicOrdering (',' 'align' i32)?
Chris Lattnerfbe910e2011-11-27 06:56:53 +00004123int LLParser::ParseStore(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00004124 Value *Val, *Ptr; LocTy Loc, PtrLoc;
Devang Patelf633a062009-09-17 23:04:48 +00004125 unsigned Alignment = 0;
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00004126 bool AteExtraComma = false;
Eli Friedmanf03bb262011-08-12 22:50:01 +00004127 bool isAtomic = false;
Eli Friedman21006d42011-08-09 23:02:53 +00004128 AtomicOrdering Ordering = NotAtomic;
4129 SynchronizationScope Scope = CrossThread;
Eli Friedmanf03bb262011-08-12 22:50:01 +00004130
4131 if (Lex.getKind() == lltok::kw_atomic) {
Eli Friedmanf03bb262011-08-12 22:50:01 +00004132 isAtomic = true;
4133 Lex.Lex();
4134 }
4135
Chris Lattnerfbe910e2011-11-27 06:56:53 +00004136 bool isVolatile = false;
Eli Friedmanf03bb262011-08-12 22:50:01 +00004137 if (Lex.getKind() == lltok::kw_volatile) {
Eli Friedmanf03bb262011-08-12 22:50:01 +00004138 isVolatile = true;
4139 Lex.Lex();
4140 }
4141
Chris Lattnerdf986172009-01-02 07:01:27 +00004142 if (ParseTypeAndValue(Val, Loc, PFS) ||
4143 ParseToken(lltok::comma, "expected ',' after store operand") ||
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00004144 ParseTypeAndValue(Ptr, PtrLoc, PFS) ||
Eli Friedman21006d42011-08-09 23:02:53 +00004145 ParseScopeAndOrdering(isAtomic, Scope, Ordering) ||
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00004146 ParseOptionalCommaAlign(Alignment, AteExtraComma))
Chris Lattnerdf986172009-01-02 07:01:27 +00004147 return true;
Devang Patelf633a062009-09-17 23:04:48 +00004148
Duncan Sands1df98592010-02-16 11:11:14 +00004149 if (!Ptr->getType()->isPointerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00004150 return Error(PtrLoc, "store operand must be a pointer");
4151 if (!Val->getType()->isFirstClassType())
4152 return Error(Loc, "store operand must be a first class value");
4153 if (cast<PointerType>(Ptr->getType())->getElementType() != Val->getType())
4154 return Error(Loc, "stored value and pointer type do not match");
Eli Friedman21006d42011-08-09 23:02:53 +00004155 if (isAtomic && !Alignment)
4156 return Error(Loc, "atomic store must have explicit non-zero alignment");
4157 if (Ordering == Acquire || Ordering == AcquireRelease)
4158 return Error(Loc, "atomic store cannot use Acquire ordering");
Daniel Dunbara279bc32009-09-20 02:20:51 +00004159
Eli Friedman21006d42011-08-09 23:02:53 +00004160 Inst = new StoreInst(Val, Ptr, isVolatile, Alignment, Ordering, Scope);
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00004161 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerdf986172009-01-02 07:01:27 +00004162}
4163
Eli Friedmanff030482011-07-28 21:48:00 +00004164/// ParseCmpXchg
Eli Friedmanf03bb262011-08-12 22:50:01 +00004165/// ::= 'cmpxchg' 'volatile'? TypeAndValue ',' TypeAndValue ',' TypeAndValue
4166/// 'singlethread'? AtomicOrdering
4167int LLParser::ParseCmpXchg(Instruction *&Inst, PerFunctionState &PFS) {
Eli Friedmanff030482011-07-28 21:48:00 +00004168 Value *Ptr, *Cmp, *New; LocTy PtrLoc, CmpLoc, NewLoc;
4169 bool AteExtraComma = false;
4170 AtomicOrdering Ordering = NotAtomic;
4171 SynchronizationScope Scope = CrossThread;
Eli Friedmanf03bb262011-08-12 22:50:01 +00004172 bool isVolatile = false;
4173
4174 if (EatIfPresent(lltok::kw_volatile))
4175 isVolatile = true;
4176
Eli Friedmanff030482011-07-28 21:48:00 +00004177 if (ParseTypeAndValue(Ptr, PtrLoc, PFS) ||
4178 ParseToken(lltok::comma, "expected ',' after cmpxchg address") ||
4179 ParseTypeAndValue(Cmp, CmpLoc, PFS) ||
4180 ParseToken(lltok::comma, "expected ',' after cmpxchg cmp operand") ||
4181 ParseTypeAndValue(New, NewLoc, PFS) ||
4182 ParseScopeAndOrdering(true /*Always atomic*/, Scope, Ordering))
4183 return true;
4184
4185 if (Ordering == Unordered)
4186 return TokError("cmpxchg cannot be unordered");
4187 if (!Ptr->getType()->isPointerTy())
4188 return Error(PtrLoc, "cmpxchg operand must be a pointer");
4189 if (cast<PointerType>(Ptr->getType())->getElementType() != Cmp->getType())
4190 return Error(CmpLoc, "compare value and pointer type do not match");
4191 if (cast<PointerType>(Ptr->getType())->getElementType() != New->getType())
4192 return Error(NewLoc, "new value and pointer type do not match");
4193 if (!New->getType()->isIntegerTy())
4194 return Error(NewLoc, "cmpxchg operand must be an integer");
4195 unsigned Size = New->getType()->getPrimitiveSizeInBits();
4196 if (Size < 8 || (Size & (Size - 1)))
4197 return Error(NewLoc, "cmpxchg operand must be power-of-two byte-sized"
4198 " integer");
4199
4200 AtomicCmpXchgInst *CXI =
4201 new AtomicCmpXchgInst(Ptr, Cmp, New, Ordering, Scope);
4202 CXI->setVolatile(isVolatile);
4203 Inst = CXI;
4204 return AteExtraComma ? InstExtraComma : InstNormal;
4205}
4206
4207/// ParseAtomicRMW
Eli Friedmanf03bb262011-08-12 22:50:01 +00004208/// ::= 'atomicrmw' 'volatile'? BinOp TypeAndValue ',' TypeAndValue
4209/// 'singlethread'? AtomicOrdering
4210int LLParser::ParseAtomicRMW(Instruction *&Inst, PerFunctionState &PFS) {
Eli Friedmanff030482011-07-28 21:48:00 +00004211 Value *Ptr, *Val; LocTy PtrLoc, ValLoc;
4212 bool AteExtraComma = false;
4213 AtomicOrdering Ordering = NotAtomic;
4214 SynchronizationScope Scope = CrossThread;
Eli Friedmanf03bb262011-08-12 22:50:01 +00004215 bool isVolatile = false;
Eli Friedmanff030482011-07-28 21:48:00 +00004216 AtomicRMWInst::BinOp Operation;
Eli Friedmanf03bb262011-08-12 22:50:01 +00004217
4218 if (EatIfPresent(lltok::kw_volatile))
4219 isVolatile = true;
4220
Eli Friedmanff030482011-07-28 21:48:00 +00004221 switch (Lex.getKind()) {
4222 default: return TokError("expected binary operation in atomicrmw");
4223 case lltok::kw_xchg: Operation = AtomicRMWInst::Xchg; break;
4224 case lltok::kw_add: Operation = AtomicRMWInst::Add; break;
4225 case lltok::kw_sub: Operation = AtomicRMWInst::Sub; break;
4226 case lltok::kw_and: Operation = AtomicRMWInst::And; break;
4227 case lltok::kw_nand: Operation = AtomicRMWInst::Nand; break;
4228 case lltok::kw_or: Operation = AtomicRMWInst::Or; break;
4229 case lltok::kw_xor: Operation = AtomicRMWInst::Xor; break;
4230 case lltok::kw_max: Operation = AtomicRMWInst::Max; break;
4231 case lltok::kw_min: Operation = AtomicRMWInst::Min; break;
4232 case lltok::kw_umax: Operation = AtomicRMWInst::UMax; break;
4233 case lltok::kw_umin: Operation = AtomicRMWInst::UMin; break;
4234 }
4235 Lex.Lex(); // Eat the operation.
4236
4237 if (ParseTypeAndValue(Ptr, PtrLoc, PFS) ||
4238 ParseToken(lltok::comma, "expected ',' after atomicrmw address") ||
4239 ParseTypeAndValue(Val, ValLoc, PFS) ||
4240 ParseScopeAndOrdering(true /*Always atomic*/, Scope, Ordering))
4241 return true;
4242
4243 if (Ordering == Unordered)
4244 return TokError("atomicrmw cannot be unordered");
4245 if (!Ptr->getType()->isPointerTy())
4246 return Error(PtrLoc, "atomicrmw operand must be a pointer");
4247 if (cast<PointerType>(Ptr->getType())->getElementType() != Val->getType())
4248 return Error(ValLoc, "atomicrmw value and pointer type do not match");
4249 if (!Val->getType()->isIntegerTy())
4250 return Error(ValLoc, "atomicrmw operand must be an integer");
4251 unsigned Size = Val->getType()->getPrimitiveSizeInBits();
4252 if (Size < 8 || (Size & (Size - 1)))
4253 return Error(ValLoc, "atomicrmw operand must be power-of-two byte-sized"
4254 " integer");
4255
4256 AtomicRMWInst *RMWI =
4257 new AtomicRMWInst(Operation, Ptr, Val, Ordering, Scope);
4258 RMWI->setVolatile(isVolatile);
4259 Inst = RMWI;
4260 return AteExtraComma ? InstExtraComma : InstNormal;
4261}
4262
Eli Friedman47f35132011-07-25 23:16:38 +00004263/// ParseFence
4264/// ::= 'fence' 'singlethread'? AtomicOrdering
4265int LLParser::ParseFence(Instruction *&Inst, PerFunctionState &PFS) {
4266 AtomicOrdering Ordering = NotAtomic;
4267 SynchronizationScope Scope = CrossThread;
4268 if (ParseScopeAndOrdering(true /*Always atomic*/, Scope, Ordering))
4269 return true;
4270
4271 if (Ordering == Unordered)
4272 return TokError("fence cannot be unordered");
4273 if (Ordering == Monotonic)
4274 return TokError("fence cannot be monotonic");
4275
4276 Inst = new FenceInst(Context, Ordering, Scope);
4277 return InstNormal;
4278}
4279
Chris Lattnerdf986172009-01-02 07:01:27 +00004280/// ParseGetElementPtr
Dan Gohmandd8004d2009-07-27 21:53:46 +00004281/// ::= 'getelementptr' 'inbounds'? TypeAndValue (',' TypeAndValue)*
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004282int LLParser::ParseGetElementPtr(Instruction *&Inst, PerFunctionState &PFS) {
Nadav Rotem16087692011-12-05 06:29:09 +00004283 Value *Ptr = 0;
4284 Value *Val = 0;
4285 LocTy Loc, EltLoc;
Dan Gohmandd8004d2009-07-27 21:53:46 +00004286
Dan Gohmandcb40a32009-07-29 15:58:36 +00004287 bool InBounds = EatIfPresent(lltok::kw_inbounds);
Dan Gohmandd8004d2009-07-27 21:53:46 +00004288
Chris Lattner3ed88ef2009-01-02 08:05:26 +00004289 if (ParseTypeAndValue(Ptr, Loc, PFS)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00004290
Eli Bendersky59eb5ee2013-04-22 17:03:42 +00004291 Type *BaseType = Ptr->getType();
4292 PointerType *BasePointerType = dyn_cast<PointerType>(BaseType->getScalarType());
4293 if (!BasePointerType)
Chris Lattnerdf986172009-01-02 07:01:27 +00004294 return Error(Loc, "base of getelementptr must be a pointer");
Daniel Dunbara279bc32009-09-20 02:20:51 +00004295
Chris Lattnerdf986172009-01-02 07:01:27 +00004296 SmallVector<Value*, 16> Indices;
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004297 bool AteExtraComma = false;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00004298 while (EatIfPresent(lltok::comma)) {
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004299 if (Lex.getKind() == lltok::MetadataVar) {
4300 AteExtraComma = true;
Devang Patel6225d642009-10-13 18:49:55 +00004301 break;
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004302 }
Chris Lattner3ed88ef2009-01-02 08:05:26 +00004303 if (ParseTypeAndValue(Val, EltLoc, PFS)) return true;
Nadav Rotem16087692011-12-05 06:29:09 +00004304 if (!Val->getType()->getScalarType()->isIntegerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00004305 return Error(EltLoc, "getelementptr index must be an integer");
Nadav Rotem16087692011-12-05 06:29:09 +00004306 if (Val->getType()->isVectorTy() != Ptr->getType()->isVectorTy())
4307 return Error(EltLoc, "getelementptr index type missmatch");
4308 if (Val->getType()->isVectorTy()) {
4309 unsigned ValNumEl = cast<VectorType>(Val->getType())->getNumElements();
4310 unsigned PtrNumEl = cast<VectorType>(Ptr->getType())->getNumElements();
4311 if (ValNumEl != PtrNumEl)
4312 return Error(EltLoc,
4313 "getelementptr vector index has a wrong number of elements");
4314 }
Chris Lattnerdf986172009-01-02 07:01:27 +00004315 Indices.push_back(Val);
4316 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00004317
Eli Bendersky59eb5ee2013-04-22 17:03:42 +00004318 if (!Indices.empty() && !BasePointerType->getElementType()->isSized())
4319 return Error(Loc, "base element of getelementptr must be sized");
4320
4321 if (!GetElementPtrInst::getIndexedType(BaseType, Indices))
Chris Lattnerdf986172009-01-02 07:01:27 +00004322 return Error(Loc, "invalid getelementptr indices");
Jay Foada9203102011-07-25 09:48:08 +00004323 Inst = GetElementPtrInst::Create(Ptr, Indices);
Dan Gohmandd8004d2009-07-27 21:53:46 +00004324 if (InBounds)
Dan Gohmanf8dbee72009-09-07 23:54:19 +00004325 cast<GetElementPtrInst>(Inst)->setIsInBounds(true);
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004326 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerdf986172009-01-02 07:01:27 +00004327}
4328
4329/// ParseExtractValue
4330/// ::= 'extractvalue' TypeAndValue (',' uint32)+
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004331int LLParser::ParseExtractValue(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00004332 Value *Val; LocTy Loc;
4333 SmallVector<unsigned, 4> Indices;
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004334 bool AteExtraComma;
Chris Lattnerdf986172009-01-02 07:01:27 +00004335 if (ParseTypeAndValue(Val, Loc, PFS) ||
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004336 ParseIndexList(Indices, AteExtraComma))
Chris Lattnerdf986172009-01-02 07:01:27 +00004337 return true;
4338
Chris Lattnerfdfeb692010-02-12 20:49:41 +00004339 if (!Val->getType()->isAggregateType())
4340 return Error(Loc, "extractvalue operand must be aggregate type");
Chris Lattnerdf986172009-01-02 07:01:27 +00004341
Jay Foadfc6d3a42011-07-13 10:26:04 +00004342 if (!ExtractValueInst::getIndexedType(Val->getType(), Indices))
Chris Lattnerdf986172009-01-02 07:01:27 +00004343 return Error(Loc, "invalid indices for extractvalue");
Jay Foadfc6d3a42011-07-13 10:26:04 +00004344 Inst = ExtractValueInst::Create(Val, Indices);
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004345 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerdf986172009-01-02 07:01:27 +00004346}
4347
4348/// ParseInsertValue
4349/// ::= 'insertvalue' TypeAndValue ',' TypeAndValue (',' uint32)+
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004350int LLParser::ParseInsertValue(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00004351 Value *Val0, *Val1; LocTy Loc0, Loc1;
4352 SmallVector<unsigned, 4> Indices;
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004353 bool AteExtraComma;
Chris Lattnerdf986172009-01-02 07:01:27 +00004354 if (ParseTypeAndValue(Val0, Loc0, PFS) ||
4355 ParseToken(lltok::comma, "expected comma after insertvalue operand") ||
4356 ParseTypeAndValue(Val1, Loc1, PFS) ||
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004357 ParseIndexList(Indices, AteExtraComma))
Chris Lattnerdf986172009-01-02 07:01:27 +00004358 return true;
Michael Ilseman407a6162012-11-15 22:34:00 +00004359
Chris Lattnerfdfeb692010-02-12 20:49:41 +00004360 if (!Val0->getType()->isAggregateType())
4361 return Error(Loc0, "insertvalue operand must be aggregate type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00004362
Jay Foadfc6d3a42011-07-13 10:26:04 +00004363 if (!ExtractValueInst::getIndexedType(Val0->getType(), Indices))
Chris Lattnerdf986172009-01-02 07:01:27 +00004364 return Error(Loc0, "invalid indices for insertvalue");
Jay Foadfc6d3a42011-07-13 10:26:04 +00004365 Inst = InsertValueInst::Create(Val0, Val1, Indices);
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004366 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerdf986172009-01-02 07:01:27 +00004367}
Nick Lewycky21cc4462009-04-04 07:22:01 +00004368
4369//===----------------------------------------------------------------------===//
4370// Embedded metadata.
4371//===----------------------------------------------------------------------===//
4372
4373/// ParseMDNodeVector
Nick Lewyckycb337992009-05-10 20:57:05 +00004374/// ::= Element (',' Element)*
4375/// Element
4376/// ::= 'null' | TypeAndValue
Victor Hernandezbf170d42010-01-05 22:22:14 +00004377bool LLParser::ParseMDNodeVector(SmallVectorImpl<Value*> &Elts,
Victor Hernandez24e64df2010-01-10 07:14:18 +00004378 PerFunctionState *PFS) {
Dan Gohmanac809752010-07-13 19:33:27 +00004379 // Check for an empty list.
4380 if (Lex.getKind() == lltok::rbrace)
4381 return false;
4382
Nick Lewycky21cc4462009-04-04 07:22:01 +00004383 do {
Chris Lattnera7352392009-12-30 04:42:57 +00004384 // Null is a special case since it is typeless.
4385 if (EatIfPresent(lltok::kw_null)) {
4386 Elts.push_back(0);
4387 continue;
Nick Lewyckycb337992009-05-10 20:57:05 +00004388 }
Michael Ilseman407a6162012-11-15 22:34:00 +00004389
Chris Lattnera7352392009-12-30 04:42:57 +00004390 Value *V = 0;
Chris Lattner1afcace2011-07-09 17:41:24 +00004391 if (ParseTypeAndValue(V, PFS)) return true;
Nick Lewyckycb337992009-05-10 20:57:05 +00004392 Elts.push_back(V);
Nick Lewycky21cc4462009-04-04 07:22:01 +00004393 } while (EatIfPresent(lltok::comma));
4394
4395 return false;
4396}