blob: 74c0ea4af529be744fbfc1c106495591e8821200 [file] [log] [blame]
Chris Lattnerdf986172009-01-02 07:01:27 +00001//===-- LLParser.cpp - Parser Class ---------------------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file defines the parser class for .ll files.
11//
12//===----------------------------------------------------------------------===//
13
14#include "LLParser.h"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000015#include "llvm/ADT/SmallPtrSet.h"
Chris Lattnerdf986172009-01-02 07:01:27 +000016#include "llvm/AutoUpgrade.h"
Chandler Carruth0b8c9a82013-01-02 11:36:10 +000017#include "llvm/IR/CallingConv.h"
18#include "llvm/IR/Constants.h"
19#include "llvm/IR/DerivedTypes.h"
20#include "llvm/IR/InlineAsm.h"
21#include "llvm/IR/Instructions.h"
Manman Ren804f0342013-09-28 00:22:27 +000022#include "llvm/IR/LLVMContext.h"
Chandler Carruth0b8c9a82013-01-02 11:36:10 +000023#include "llvm/IR/Module.h"
24#include "llvm/IR/Operator.h"
25#include "llvm/IR/ValueSymbolTable.h"
Torok Edwinc25e7582009-07-11 20:10:48 +000026#include "llvm/Support/ErrorHandling.h"
Chris Lattnerdf986172009-01-02 07:01:27 +000027#include "llvm/Support/raw_ostream.h"
28using namespace llvm;
29
Chris Lattnerdb125cf2011-07-18 04:54:35 +000030static std::string getTypeString(Type *T) {
Chris Lattner0cd0d882011-06-18 21:18:23 +000031 std::string Result;
32 raw_string_ostream Tmp(Result);
33 Tmp << *T;
34 return Tmp.str();
35}
36
Chris Lattner3ed88ef2009-01-02 08:05:26 +000037/// Run: module ::= toplevelentity*
Chris Lattnerad7d1e22009-01-04 20:44:11 +000038bool LLParser::Run() {
Chris Lattner3ed88ef2009-01-02 08:05:26 +000039 // Prime the lexer.
40 Lex.Lex();
41
Chris Lattnerad7d1e22009-01-04 20:44:11 +000042 return ParseTopLevelEntities() ||
43 ValidateEndOfModule();
Chris Lattnerdf986172009-01-02 07:01:27 +000044}
45
46/// ValidateEndOfModule - Do final validity and sanity checks at the end of the
47/// module.
48bool LLParser::ValidateEndOfModule() {
Chris Lattner449c3102010-04-01 05:14:45 +000049 // Handle any instruction metadata forward references.
50 if (!ForwardRefInstMetadata.empty()) {
51 for (DenseMap<Instruction*, std::vector<MDRef> >::iterator
52 I = ForwardRefInstMetadata.begin(), E = ForwardRefInstMetadata.end();
53 I != E; ++I) {
54 Instruction *Inst = I->first;
55 const std::vector<MDRef> &MDList = I->second;
Michael Ilseman407a6162012-11-15 22:34:00 +000056
Chris Lattner449c3102010-04-01 05:14:45 +000057 for (unsigned i = 0, e = MDList.size(); i != e; ++i) {
58 unsigned SlotNo = MDList[i].MDSlot;
Michael Ilseman407a6162012-11-15 22:34:00 +000059
Chris Lattner449c3102010-04-01 05:14:45 +000060 if (SlotNo >= NumberedMetadata.size() || NumberedMetadata[SlotNo] == 0)
61 return Error(MDList[i].Loc, "use of undefined metadata '!" +
Benjamin Kramerd1e17032010-09-27 17:42:11 +000062 Twine(SlotNo) + "'");
Chris Lattner449c3102010-04-01 05:14:45 +000063 Inst->setMetadata(MDList[i].MDKind, NumberedMetadata[SlotNo]);
64 }
65 }
66 ForwardRefInstMetadata.clear();
67 }
Michael Ilseman407a6162012-11-15 22:34:00 +000068
Manman Ren804f0342013-09-28 00:22:27 +000069 for (unsigned I = 0, E = InstsWithTBAATag.size(); I < E; I++)
70 UpgradeInstWithTBAATag(InstsWithTBAATag[I]);
71
Bill Wendlingbaad55c2013-02-08 06:32:06 +000072 // Handle any function attribute group forward references.
73 for (std::map<Value*, std::vector<unsigned> >::iterator
74 I = ForwardRefAttrGroups.begin(), E = ForwardRefAttrGroups.end();
75 I != E; ++I) {
76 Value *V = I->first;
77 std::vector<unsigned> &Vec = I->second;
78 AttrBuilder B;
79
80 for (std::vector<unsigned>::iterator VI = Vec.begin(), VE = Vec.end();
81 VI != VE; ++VI)
82 B.merge(NumberedAttrBuilders[*VI]);
83
84 if (Function *Fn = dyn_cast<Function>(V)) {
85 AttributeSet AS = Fn->getAttributes();
86 AttrBuilder FnAttrs(AS.getFnAttributes(), AttributeSet::FunctionIndex);
87 AS = AS.removeAttributes(Context, AttributeSet::FunctionIndex,
88 AS.getFnAttributes());
89
90 FnAttrs.merge(B);
91
92 // If the alignment was parsed as an attribute, move to the alignment
93 // field.
94 if (FnAttrs.hasAlignmentAttr()) {
95 Fn->setAlignment(FnAttrs.getAlignment());
96 FnAttrs.removeAttribute(Attribute::Alignment);
97 }
98
99 AS = AS.addAttributes(Context, AttributeSet::FunctionIndex,
100 AttributeSet::get(Context,
101 AttributeSet::FunctionIndex,
102 FnAttrs));
103 Fn->setAttributes(AS);
104 } else if (CallInst *CI = dyn_cast<CallInst>(V)) {
105 AttributeSet AS = CI->getAttributes();
106 AttrBuilder FnAttrs(AS.getFnAttributes(), AttributeSet::FunctionIndex);
107 AS = AS.removeAttributes(Context, AttributeSet::FunctionIndex,
108 AS.getFnAttributes());
Bill Wendlingf5467622013-02-12 10:13:06 +0000109 FnAttrs.merge(B);
Bill Wendlingbaad55c2013-02-08 06:32:06 +0000110 AS = AS.addAttributes(Context, AttributeSet::FunctionIndex,
111 AttributeSet::get(Context,
112 AttributeSet::FunctionIndex,
113 FnAttrs));
114 CI->setAttributes(AS);
115 } else if (InvokeInst *II = dyn_cast<InvokeInst>(V)) {
116 AttributeSet AS = II->getAttributes();
117 AttrBuilder FnAttrs(AS.getFnAttributes(), AttributeSet::FunctionIndex);
118 AS = AS.removeAttributes(Context, AttributeSet::FunctionIndex,
119 AS.getFnAttributes());
Bill Wendlingf5467622013-02-12 10:13:06 +0000120 FnAttrs.merge(B);
Bill Wendlingbaad55c2013-02-08 06:32:06 +0000121 AS = AS.addAttributes(Context, AttributeSet::FunctionIndex,
122 AttributeSet::get(Context,
123 AttributeSet::FunctionIndex,
124 FnAttrs));
125 II->setAttributes(AS);
126 } else {
127 llvm_unreachable("invalid object with forward attribute group reference");
128 }
129 }
Michael Ilseman407a6162012-11-15 22:34:00 +0000130
Chris Lattner09d9ef42009-10-28 03:39:23 +0000131 // If there are entries in ForwardRefBlockAddresses at this point, they are
132 // references after the function was defined. Resolve those now.
133 while (!ForwardRefBlockAddresses.empty()) {
134 // Okay, we are referencing an already-parsed function, resolve them now.
135 Function *TheFn = 0;
136 const ValID &Fn = ForwardRefBlockAddresses.begin()->first;
137 if (Fn.Kind == ValID::t_GlobalName)
138 TheFn = M->getFunction(Fn.StrVal);
139 else if (Fn.UIntVal < NumberedVals.size())
140 TheFn = dyn_cast<Function>(NumberedVals[Fn.UIntVal]);
Michael Ilseman407a6162012-11-15 22:34:00 +0000141
Chris Lattner09d9ef42009-10-28 03:39:23 +0000142 if (TheFn == 0)
143 return Error(Fn.Loc, "unknown function referenced by blockaddress");
Michael Ilseman407a6162012-11-15 22:34:00 +0000144
Chris Lattner09d9ef42009-10-28 03:39:23 +0000145 // Resolve all these references.
Michael Ilseman407a6162012-11-15 22:34:00 +0000146 if (ResolveForwardRefBlockAddresses(TheFn,
Chris Lattner09d9ef42009-10-28 03:39:23 +0000147 ForwardRefBlockAddresses.begin()->second,
148 0))
149 return true;
Michael Ilseman407a6162012-11-15 22:34:00 +0000150
Chris Lattner09d9ef42009-10-28 03:39:23 +0000151 ForwardRefBlockAddresses.erase(ForwardRefBlockAddresses.begin());
152 }
Michael Ilseman407a6162012-11-15 22:34:00 +0000153
Chris Lattner1afcace2011-07-09 17:41:24 +0000154 for (unsigned i = 0, e = NumberedTypes.size(); i != e; ++i)
155 if (NumberedTypes[i].second.isValid())
156 return Error(NumberedTypes[i].second,
157 "use of undefined type '%" + Twine(i) + "'");
158
159 for (StringMap<std::pair<Type*, LocTy> >::iterator I =
160 NamedTypes.begin(), E = NamedTypes.end(); I != E; ++I)
161 if (I->second.second.isValid())
162 return Error(I->second.second,
163 "use of undefined type named '" + I->getKey() + "'");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000164
Chris Lattnerdf986172009-01-02 07:01:27 +0000165 if (!ForwardRefVals.empty())
166 return Error(ForwardRefVals.begin()->second.second,
167 "use of undefined value '@" + ForwardRefVals.begin()->first +
168 "'");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000169
Chris Lattnerdf986172009-01-02 07:01:27 +0000170 if (!ForwardRefValIDs.empty())
171 return Error(ForwardRefValIDs.begin()->second.second,
172 "use of undefined value '@" +
Benjamin Kramerd1e17032010-09-27 17:42:11 +0000173 Twine(ForwardRefValIDs.begin()->first) + "'");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000174
Devang Patel1c7eea62009-07-08 19:23:54 +0000175 if (!ForwardRefMDNodes.empty())
176 return Error(ForwardRefMDNodes.begin()->second.second,
177 "use of undefined metadata '!" +
Benjamin Kramerd1e17032010-09-27 17:42:11 +0000178 Twine(ForwardRefMDNodes.begin()->first) + "'");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000179
Devang Patel1c7eea62009-07-08 19:23:54 +0000180
Chris Lattnerdf986172009-01-02 07:01:27 +0000181 // Look for intrinsic functions and CallInst that need to be upgraded
182 for (Module::iterator FI = M->begin(), FE = M->end(); FI != FE; )
183 UpgradeCallsToIntrinsic(FI++); // must be post-increment, as we remove
Daniel Dunbara279bc32009-09-20 02:20:51 +0000184
Chris Lattnerdf986172009-01-02 07:01:27 +0000185 return false;
186}
187
Michael Ilseman407a6162012-11-15 22:34:00 +0000188bool LLParser::ResolveForwardRefBlockAddresses(Function *TheFn,
Chris Lattner09d9ef42009-10-28 03:39:23 +0000189 std::vector<std::pair<ValID, GlobalValue*> > &Refs,
190 PerFunctionState *PFS) {
191 // Loop over all the references, resolving them.
192 for (unsigned i = 0, e = Refs.size(); i != e; ++i) {
193 BasicBlock *Res;
Chris Lattnercdfc9402009-11-01 01:27:45 +0000194 if (PFS) {
Chris Lattner09d9ef42009-10-28 03:39:23 +0000195 if (Refs[i].first.Kind == ValID::t_LocalName)
196 Res = PFS->GetBB(Refs[i].first.StrVal, Refs[i].first.Loc);
Chris Lattnercdfc9402009-11-01 01:27:45 +0000197 else
Chris Lattner09d9ef42009-10-28 03:39:23 +0000198 Res = PFS->GetBB(Refs[i].first.UIntVal, Refs[i].first.Loc);
199 } else if (Refs[i].first.Kind == ValID::t_LocalID) {
200 return Error(Refs[i].first.Loc,
Chris Lattneree7644d2009-11-02 18:28:45 +0000201 "cannot take address of numeric label after the function is defined");
Chris Lattner09d9ef42009-10-28 03:39:23 +0000202 } else {
203 Res = dyn_cast_or_null<BasicBlock>(
204 TheFn->getValueSymbolTable().lookup(Refs[i].first.StrVal));
205 }
Michael Ilseman407a6162012-11-15 22:34:00 +0000206
Chris Lattnercdfc9402009-11-01 01:27:45 +0000207 if (Res == 0)
Chris Lattner09d9ef42009-10-28 03:39:23 +0000208 return Error(Refs[i].first.Loc,
209 "referenced value is not a basic block");
Michael Ilseman407a6162012-11-15 22:34:00 +0000210
Chris Lattner09d9ef42009-10-28 03:39:23 +0000211 // Get the BlockAddress for this and update references to use it.
212 BlockAddress *BA = BlockAddress::get(TheFn, Res);
213 Refs[i].second->replaceAllUsesWith(BA);
214 Refs[i].second->eraseFromParent();
215 }
216 return false;
217}
218
219
Chris Lattnerdf986172009-01-02 07:01:27 +0000220//===----------------------------------------------------------------------===//
221// Top-Level Entities
222//===----------------------------------------------------------------------===//
223
224bool LLParser::ParseTopLevelEntities() {
Chris Lattnerdf986172009-01-02 07:01:27 +0000225 while (1) {
226 switch (Lex.getKind()) {
227 default: return TokError("expected top-level entity");
228 case lltok::Eof: return false;
Chris Lattnerdf986172009-01-02 07:01:27 +0000229 case lltok::kw_declare: if (ParseDeclare()) return true; break;
230 case lltok::kw_define: if (ParseDefine()) return true; break;
231 case lltok::kw_module: if (ParseModuleAsm()) return true; break;
232 case lltok::kw_target: if (ParseTargetDefinition()) return true; break;
Bill Wendling3defc0b2012-11-28 08:41:48 +0000233 case lltok::kw_deplibs: if (ParseDepLibs()) return true; break;
Dan Gohman3845e502009-08-12 23:32:33 +0000234 case lltok::LocalVarID: if (ParseUnnamedType()) return true; break;
Chris Lattnerdf986172009-01-02 07:01:27 +0000235 case lltok::LocalVar: if (ParseNamedType()) return true; break;
Dan Gohman3845e502009-08-12 23:32:33 +0000236 case lltok::GlobalID: if (ParseUnnamedGlobal()) return true; break;
Chris Lattnerdf986172009-01-02 07:01:27 +0000237 case lltok::GlobalVar: if (ParseNamedGlobal()) return true; break;
Chris Lattnere434d272009-12-30 04:56:59 +0000238 case lltok::exclaim: if (ParseStandaloneMetadata()) return true; break;
Bill Wendling95ce4c22013-02-06 06:52:58 +0000239 case lltok::MetadataVar:if (ParseNamedMetadata()) return true; break;
Chris Lattnerdf986172009-01-02 07:01:27 +0000240
241 // The Global variable production with no name can have many different
242 // optional leading prefixes, the production is:
243 // GlobalVar ::= OptionalLinkage OptionalVisibility OptionalThreadLocal
Rafael Espindolabea46262011-01-08 16:42:36 +0000244 // OptionalAddrSpace OptionalUnNammedAddr
245 // ('constant'|'global') ...
Bill Wendling5e721d72010-07-01 21:55:59 +0000246 case lltok::kw_private: // OptionalLinkage
247 case lltok::kw_linker_private: // OptionalLinkage
248 case lltok::kw_linker_private_weak: // OptionalLinkage
Bill Wendling32811be2012-08-17 18:33:14 +0000249 case lltok::kw_linker_private_weak_def_auto: // FIXME: backwards compat.
Bill Wendling5e721d72010-07-01 21:55:59 +0000250 case lltok::kw_internal: // OptionalLinkage
251 case lltok::kw_weak: // OptionalLinkage
252 case lltok::kw_weak_odr: // OptionalLinkage
253 case lltok::kw_linkonce: // OptionalLinkage
254 case lltok::kw_linkonce_odr: // OptionalLinkage
Bill Wendling32811be2012-08-17 18:33:14 +0000255 case lltok::kw_linkonce_odr_auto_hide: // OptionalLinkage
Bill Wendling5e721d72010-07-01 21:55:59 +0000256 case lltok::kw_appending: // OptionalLinkage
257 case lltok::kw_dllexport: // OptionalLinkage
258 case lltok::kw_common: // OptionalLinkage
259 case lltok::kw_dllimport: // OptionalLinkage
260 case lltok::kw_extern_weak: // OptionalLinkage
261 case lltok::kw_external: { // OptionalLinkage
Chris Lattnerdf986172009-01-02 07:01:27 +0000262 unsigned Linkage, Visibility;
263 if (ParseOptionalLinkage(Linkage) ||
264 ParseOptionalVisibility(Visibility) ||
Chris Lattnereeb4a842009-07-02 23:08:13 +0000265 ParseGlobal("", SMLoc(), Linkage, true, Visibility))
Chris Lattnerdf986172009-01-02 07:01:27 +0000266 return true;
267 break;
268 }
269 case lltok::kw_default: // OptionalVisibility
270 case lltok::kw_hidden: // OptionalVisibility
271 case lltok::kw_protected: { // OptionalVisibility
272 unsigned Visibility;
273 if (ParseOptionalVisibility(Visibility) ||
Chris Lattnereeb4a842009-07-02 23:08:13 +0000274 ParseGlobal("", SMLoc(), 0, false, Visibility))
Chris Lattnerdf986172009-01-02 07:01:27 +0000275 return true;
276 break;
277 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000278
Chris Lattnerdf986172009-01-02 07:01:27 +0000279 case lltok::kw_thread_local: // OptionalThreadLocal
280 case lltok::kw_addrspace: // OptionalAddrSpace
281 case lltok::kw_constant: // GlobalType
282 case lltok::kw_global: // GlobalType
Chris Lattnereeb4a842009-07-02 23:08:13 +0000283 if (ParseGlobal("", SMLoc(), 0, false, 0)) return true;
Chris Lattnerdf986172009-01-02 07:01:27 +0000284 break;
Bill Wendling0b778662013-02-09 15:48:49 +0000285
286 case lltok::kw_attributes: if (ParseUnnamedAttrGrp()) return true; break;
Chris Lattnerdf986172009-01-02 07:01:27 +0000287 }
288 }
289}
290
291
292/// toplevelentity
293/// ::= 'module' 'asm' STRINGCONSTANT
294bool LLParser::ParseModuleAsm() {
295 assert(Lex.getKind() == lltok::kw_module);
296 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +0000297
298 std::string AsmStr;
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000299 if (ParseToken(lltok::kw_asm, "expected 'module asm'") ||
300 ParseStringConstant(AsmStr)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000301
Rafael Espindola38c4e532011-03-02 04:14:42 +0000302 M->appendModuleInlineAsm(AsmStr);
Chris Lattnerdf986172009-01-02 07:01:27 +0000303 return false;
304}
305
306/// toplevelentity
307/// ::= 'target' 'triple' '=' STRINGCONSTANT
308/// ::= 'target' 'datalayout' '=' STRINGCONSTANT
309bool LLParser::ParseTargetDefinition() {
310 assert(Lex.getKind() == lltok::kw_target);
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000311 std::string Str;
Chris Lattnerdf986172009-01-02 07:01:27 +0000312 switch (Lex.Lex()) {
313 default: return TokError("unknown target property");
314 case lltok::kw_triple:
315 Lex.Lex();
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000316 if (ParseToken(lltok::equal, "expected '=' after target triple") ||
317 ParseStringConstant(Str))
Chris Lattnerdf986172009-01-02 07:01:27 +0000318 return true;
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000319 M->setTargetTriple(Str);
Chris Lattnerdf986172009-01-02 07:01:27 +0000320 return false;
321 case lltok::kw_datalayout:
322 Lex.Lex();
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000323 if (ParseToken(lltok::equal, "expected '=' after target datalayout") ||
324 ParseStringConstant(Str))
Chris Lattnerdf986172009-01-02 07:01:27 +0000325 return true;
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000326 M->setDataLayout(Str);
Chris Lattnerdf986172009-01-02 07:01:27 +0000327 return false;
328 }
329}
330
Bill Wendling3defc0b2012-11-28 08:41:48 +0000331/// toplevelentity
332/// ::= 'deplibs' '=' '[' ']'
333/// ::= 'deplibs' '=' '[' STRINGCONSTANT (',' STRINGCONSTANT)* ']'
334/// FIXME: Remove in 4.0. Currently parse, but ignore.
335bool LLParser::ParseDepLibs() {
336 assert(Lex.getKind() == lltok::kw_deplibs);
337 Lex.Lex();
338 if (ParseToken(lltok::equal, "expected '=' after deplibs") ||
339 ParseToken(lltok::lsquare, "expected '=' after deplibs"))
340 return true;
341
342 if (EatIfPresent(lltok::rsquare))
343 return false;
344
345 do {
346 std::string Str;
347 if (ParseStringConstant(Str)) return true;
348 } while (EatIfPresent(lltok::comma));
349
350 return ParseToken(lltok::rsquare, "expected ']' at end of list");
351}
352
Dan Gohman3845e502009-08-12 23:32:33 +0000353/// ParseUnnamedType:
Dan Gohman3845e502009-08-12 23:32:33 +0000354/// ::= LocalVarID '=' 'type' type
Chris Lattnerdf986172009-01-02 07:01:27 +0000355bool LLParser::ParseUnnamedType() {
Chris Lattneredcaca82011-06-18 23:51:31 +0000356 LocTy TypeLoc = Lex.getLoc();
Chris Lattner1afcace2011-07-09 17:41:24 +0000357 unsigned TypeID = Lex.getUIntVal();
Chris Lattnera53616d2011-06-19 00:03:46 +0000358 Lex.Lex(); // eat LocalVarID;
359
360 if (ParseToken(lltok::equal, "expected '=' after name") ||
361 ParseToken(lltok::kw_type, "expected 'type' after '='"))
362 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +0000363
Chris Lattner1afcace2011-07-09 17:41:24 +0000364 if (TypeID >= NumberedTypes.size())
365 NumberedTypes.resize(TypeID+1);
Michael Ilseman407a6162012-11-15 22:34:00 +0000366
Chris Lattner1afcace2011-07-09 17:41:24 +0000367 Type *Result = 0;
368 if (ParseStructDefinition(TypeLoc, "",
369 NumberedTypes[TypeID], Result)) return true;
Michael Ilseman407a6162012-11-15 22:34:00 +0000370
Chris Lattner1afcace2011-07-09 17:41:24 +0000371 if (!isa<StructType>(Result)) {
372 std::pair<Type*, LocTy> &Entry = NumberedTypes[TypeID];
373 if (Entry.first)
374 return Error(TypeLoc, "non-struct types may not be recursive");
375 Entry.first = Result;
376 Entry.second = SMLoc();
Chris Lattnerdf986172009-01-02 07:01:27 +0000377 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000378
Chris Lattnerdf986172009-01-02 07:01:27 +0000379 return false;
380}
381
Chris Lattner1afcace2011-07-09 17:41:24 +0000382
Chris Lattnerdf986172009-01-02 07:01:27 +0000383/// toplevelentity
384/// ::= LocalVar '=' 'type' type
385bool LLParser::ParseNamedType() {
386 std::string Name = Lex.getStrVal();
387 LocTy NameLoc = Lex.getLoc();
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000388 Lex.Lex(); // eat LocalVar.
Daniel Dunbara279bc32009-09-20 02:20:51 +0000389
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000390 if (ParseToken(lltok::equal, "expected '=' after name") ||
Chris Lattner1afcace2011-07-09 17:41:24 +0000391 ParseToken(lltok::kw_type, "expected 'type' after name"))
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000392 return true;
Michael Ilseman407a6162012-11-15 22:34:00 +0000393
Chris Lattner1afcace2011-07-09 17:41:24 +0000394 Type *Result = 0;
395 if (ParseStructDefinition(NameLoc, Name,
396 NamedTypes[Name], Result)) return true;
Michael Ilseman407a6162012-11-15 22:34:00 +0000397
Chris Lattner1afcace2011-07-09 17:41:24 +0000398 if (!isa<StructType>(Result)) {
399 std::pair<Type*, LocTy> &Entry = NamedTypes[Name];
400 if (Entry.first)
401 return Error(NameLoc, "non-struct types may not be recursive");
402 Entry.first = Result;
403 Entry.second = SMLoc();
Chris Lattnerdf986172009-01-02 07:01:27 +0000404 }
Michael Ilseman407a6162012-11-15 22:34:00 +0000405
Chris Lattner1afcace2011-07-09 17:41:24 +0000406 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +0000407}
408
409
410/// toplevelentity
411/// ::= 'declare' FunctionHeader
412bool LLParser::ParseDeclare() {
413 assert(Lex.getKind() == lltok::kw_declare);
414 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +0000415
Chris Lattnerdf986172009-01-02 07:01:27 +0000416 Function *F;
417 return ParseFunctionHeader(F, false);
418}
419
420/// toplevelentity
421/// ::= 'define' FunctionHeader '{' ...
422bool LLParser::ParseDefine() {
423 assert(Lex.getKind() == lltok::kw_define);
424 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +0000425
Chris Lattnerdf986172009-01-02 07:01:27 +0000426 Function *F;
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000427 return ParseFunctionHeader(F, true) ||
428 ParseFunctionBody(*F);
Chris Lattnerdf986172009-01-02 07:01:27 +0000429}
430
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000431/// ParseGlobalType
432/// ::= 'constant'
433/// ::= 'global'
Chris Lattnerdf986172009-01-02 07:01:27 +0000434bool LLParser::ParseGlobalType(bool &IsConstant) {
435 if (Lex.getKind() == lltok::kw_constant)
436 IsConstant = true;
437 else if (Lex.getKind() == lltok::kw_global)
438 IsConstant = false;
Duncan Sands35b51072009-02-10 16:24:55 +0000439 else {
440 IsConstant = false;
Chris Lattnerdf986172009-01-02 07:01:27 +0000441 return TokError("expected 'global' or 'constant'");
Duncan Sands35b51072009-02-10 16:24:55 +0000442 }
Chris Lattnerdf986172009-01-02 07:01:27 +0000443 Lex.Lex();
444 return false;
445}
446
Dan Gohman3845e502009-08-12 23:32:33 +0000447/// ParseUnnamedGlobal:
448/// OptionalVisibility ALIAS ...
449/// OptionalLinkage OptionalVisibility ... -> global variable
450/// GlobalID '=' OptionalVisibility ALIAS ...
451/// GlobalID '=' OptionalLinkage OptionalVisibility ... -> global variable
452bool LLParser::ParseUnnamedGlobal() {
453 unsigned VarID = NumberedVals.size();
454 std::string Name;
455 LocTy NameLoc = Lex.getLoc();
456
457 // Handle the GlobalID form.
458 if (Lex.getKind() == lltok::GlobalID) {
459 if (Lex.getUIntVal() != VarID)
460 return Error(Lex.getLoc(), "variable expected to be numbered '%" +
Benjamin Kramerd1e17032010-09-27 17:42:11 +0000461 Twine(VarID) + "'");
Dan Gohman3845e502009-08-12 23:32:33 +0000462 Lex.Lex(); // eat GlobalID;
463
464 if (ParseToken(lltok::equal, "expected '=' after name"))
465 return true;
466 }
467
468 bool HasLinkage;
469 unsigned Linkage, Visibility;
470 if (ParseOptionalLinkage(Linkage, HasLinkage) ||
471 ParseOptionalVisibility(Visibility))
472 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000473
Dan Gohman3845e502009-08-12 23:32:33 +0000474 if (HasLinkage || Lex.getKind() != lltok::kw_alias)
475 return ParseGlobal(Name, NameLoc, Linkage, HasLinkage, Visibility);
476 return ParseAlias(Name, NameLoc, Visibility);
477}
478
Chris Lattnerdf986172009-01-02 07:01:27 +0000479/// ParseNamedGlobal:
480/// GlobalVar '=' OptionalVisibility ALIAS ...
481/// GlobalVar '=' OptionalLinkage OptionalVisibility ... -> global variable
482bool LLParser::ParseNamedGlobal() {
483 assert(Lex.getKind() == lltok::GlobalVar);
484 LocTy NameLoc = Lex.getLoc();
485 std::string Name = Lex.getStrVal();
486 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +0000487
Chris Lattnerdf986172009-01-02 07:01:27 +0000488 bool HasLinkage;
489 unsigned Linkage, Visibility;
490 if (ParseToken(lltok::equal, "expected '=' in global variable") ||
491 ParseOptionalLinkage(Linkage, HasLinkage) ||
492 ParseOptionalVisibility(Visibility))
493 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000494
Chris Lattnerdf986172009-01-02 07:01:27 +0000495 if (HasLinkage || Lex.getKind() != lltok::kw_alias)
496 return ParseGlobal(Name, NameLoc, Linkage, HasLinkage, Visibility);
497 return ParseAlias(Name, NameLoc, Visibility);
498}
499
Devang Patel256be962009-07-20 19:00:08 +0000500// MDString:
501// ::= '!' STRINGCONSTANT
Chris Lattner442ffa12009-12-29 21:53:55 +0000502bool LLParser::ParseMDString(MDString *&Result) {
Devang Patel256be962009-07-20 19:00:08 +0000503 std::string Str;
504 if (ParseStringConstant(Str)) return true;
Chris Lattner442ffa12009-12-29 21:53:55 +0000505 Result = MDString::get(Context, Str);
Devang Patel256be962009-07-20 19:00:08 +0000506 return false;
507}
508
509// MDNode:
510// ::= '!' MDNodeNumber
Chris Lattner449c3102010-04-01 05:14:45 +0000511//
512/// This version of ParseMDNodeID returns the slot number and null in the case
513/// of a forward reference.
514bool LLParser::ParseMDNodeID(MDNode *&Result, unsigned &SlotNo) {
515 // !{ ..., !42, ... }
516 if (ParseUInt32(SlotNo)) return true;
517
518 // Check existing MDNode.
519 if (SlotNo < NumberedMetadata.size() && NumberedMetadata[SlotNo] != 0)
520 Result = NumberedMetadata[SlotNo];
521 else
522 Result = 0;
523 return false;
524}
525
Chris Lattner4a72efc2009-12-30 04:15:23 +0000526bool LLParser::ParseMDNodeID(MDNode *&Result) {
Devang Patel256be962009-07-20 19:00:08 +0000527 // !{ ..., !42, ... }
528 unsigned MID = 0;
Chris Lattner449c3102010-04-01 05:14:45 +0000529 if (ParseMDNodeID(Result, MID)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000530
Chris Lattner449c3102010-04-01 05:14:45 +0000531 // If not a forward reference, just return it now.
532 if (Result) return false;
Devang Patel256be962009-07-20 19:00:08 +0000533
Chris Lattner449c3102010-04-01 05:14:45 +0000534 // Otherwise, create MDNode forward reference.
Dmitri Gribenko5c332db2013-05-05 00:40:33 +0000535 MDNode *FwdNode = MDNode::getTemporary(Context, None);
Devang Patel256be962009-07-20 19:00:08 +0000536 ForwardRefMDNodes[MID] = std::make_pair(FwdNode, Lex.getLoc());
Michael Ilseman407a6162012-11-15 22:34:00 +0000537
Chris Lattner0834e6a2009-12-30 04:51:58 +0000538 if (NumberedMetadata.size() <= MID)
539 NumberedMetadata.resize(MID+1);
540 NumberedMetadata[MID] = FwdNode;
Chris Lattner442ffa12009-12-29 21:53:55 +0000541 Result = FwdNode;
Devang Patel256be962009-07-20 19:00:08 +0000542 return false;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000543}
Devang Patel256be962009-07-20 19:00:08 +0000544
Chris Lattner84d03b12009-12-29 22:35:39 +0000545/// ParseNamedMetadata:
Devang Pateleff2ab62009-07-29 00:34:02 +0000546/// !foo = !{ !1, !2 }
547bool LLParser::ParseNamedMetadata() {
Chris Lattner1d928312009-12-30 05:02:06 +0000548 assert(Lex.getKind() == lltok::MetadataVar);
Devang Pateleff2ab62009-07-29 00:34:02 +0000549 std::string Name = Lex.getStrVal();
Chris Lattner1d928312009-12-30 05:02:06 +0000550 Lex.Lex();
Devang Pateleff2ab62009-07-29 00:34:02 +0000551
Chris Lattner84d03b12009-12-29 22:35:39 +0000552 if (ParseToken(lltok::equal, "expected '=' here") ||
Chris Lattnere434d272009-12-30 04:56:59 +0000553 ParseToken(lltok::exclaim, "Expected '!' here") ||
Chris Lattner84d03b12009-12-29 22:35:39 +0000554 ParseToken(lltok::lbrace, "Expected '{' here"))
Devang Pateleff2ab62009-07-29 00:34:02 +0000555 return true;
556
Dan Gohman17aa92c2010-07-21 23:38:33 +0000557 NamedMDNode *NMD = M->getOrInsertNamedMetadata(Name);
Dan Gohman9dc8ae12010-07-13 19:42:44 +0000558 if (Lex.getKind() != lltok::rbrace)
559 do {
Dan Gohman9dc8ae12010-07-13 19:42:44 +0000560 if (ParseToken(lltok::exclaim, "Expected '!' here"))
561 return true;
Michael Ilseman407a6162012-11-15 22:34:00 +0000562
Dan Gohman9dc8ae12010-07-13 19:42:44 +0000563 MDNode *N = 0;
564 if (ParseMDNodeID(N)) return true;
Dan Gohman17aa92c2010-07-21 23:38:33 +0000565 NMD->addOperand(N);
Dan Gohman9dc8ae12010-07-13 19:42:44 +0000566 } while (EatIfPresent(lltok::comma));
Devang Pateleff2ab62009-07-29 00:34:02 +0000567
568 if (ParseToken(lltok::rbrace, "expected end of metadata node"))
569 return true;
570
Devang Pateleff2ab62009-07-29 00:34:02 +0000571 return false;
572}
573
Devang Patel923078c2009-07-01 19:21:12 +0000574/// ParseStandaloneMetadata:
Daniel Dunbara279bc32009-09-20 02:20:51 +0000575/// !42 = !{...}
Devang Patel923078c2009-07-01 19:21:12 +0000576bool LLParser::ParseStandaloneMetadata() {
Chris Lattnere434d272009-12-30 04:56:59 +0000577 assert(Lex.getKind() == lltok::exclaim);
Devang Patel923078c2009-07-01 19:21:12 +0000578 Lex.Lex();
579 unsigned MetadataID = 0;
Devang Patel923078c2009-07-01 19:21:12 +0000580
581 LocTy TyLoc;
Chris Lattner1afcace2011-07-09 17:41:24 +0000582 Type *Ty = 0;
Devang Patel104cf9e2009-07-23 01:07:34 +0000583 SmallVector<Value *, 16> Elts;
Chris Lattner3f5132a2009-12-29 22:40:21 +0000584 if (ParseUInt32(MetadataID) ||
585 ParseToken(lltok::equal, "expected '=' here") ||
586 ParseType(Ty, TyLoc) ||
Chris Lattnere434d272009-12-30 04:56:59 +0000587 ParseToken(lltok::exclaim, "Expected '!' here") ||
Chris Lattner3f5132a2009-12-29 22:40:21 +0000588 ParseToken(lltok::lbrace, "Expected '{' here") ||
Victor Hernandez24e64df2010-01-10 07:14:18 +0000589 ParseMDNodeVector(Elts, NULL) ||
Chris Lattner3f5132a2009-12-29 22:40:21 +0000590 ParseToken(lltok::rbrace, "expected end of metadata node"))
Devang Patel104cf9e2009-07-23 01:07:34 +0000591 return true;
592
Jay Foadec9186b2011-04-21 19:59:31 +0000593 MDNode *Init = MDNode::get(Context, Elts);
Michael Ilseman407a6162012-11-15 22:34:00 +0000594
Chris Lattner0834e6a2009-12-30 04:51:58 +0000595 // See if this was forward referenced, if so, handle it.
Chris Lattnere80250e2009-12-29 21:43:58 +0000596 std::map<unsigned, std::pair<TrackingVH<MDNode>, LocTy> >::iterator
Devang Patel1c7eea62009-07-08 19:23:54 +0000597 FI = ForwardRefMDNodes.find(MetadataID);
598 if (FI != ForwardRefMDNodes.end()) {
Dan Gohman489b29b2010-08-20 22:02:26 +0000599 MDNode *Temp = FI->second.first;
600 Temp->replaceAllUsesWith(Init);
601 MDNode::deleteTemporary(Temp);
Devang Patel1c7eea62009-07-08 19:23:54 +0000602 ForwardRefMDNodes.erase(FI);
Michael Ilseman407a6162012-11-15 22:34:00 +0000603
Chris Lattner0834e6a2009-12-30 04:51:58 +0000604 assert(NumberedMetadata[MetadataID] == Init && "Tracking VH didn't work");
605 } else {
606 if (MetadataID >= NumberedMetadata.size())
607 NumberedMetadata.resize(MetadataID+1);
608
609 if (NumberedMetadata[MetadataID] != 0)
610 return TokError("Metadata id is already used");
611 NumberedMetadata[MetadataID] = Init;
Devang Patel1c7eea62009-07-08 19:23:54 +0000612 }
613
Devang Patel923078c2009-07-01 19:21:12 +0000614 return false;
615}
616
Chris Lattnerdf986172009-01-02 07:01:27 +0000617/// ParseAlias:
618/// ::= GlobalVar '=' OptionalVisibility 'alias' OptionalLinkage Aliasee
619/// Aliasee
Chris Lattner040f7582009-04-25 21:26:00 +0000620/// ::= TypeAndValue
621/// ::= 'bitcast' '(' TypeAndValue 'to' Type ')'
Dan Gohmandd8004d2009-07-27 21:53:46 +0000622/// ::= 'getelementptr' 'inbounds'? '(' ... ')'
Chris Lattnerdf986172009-01-02 07:01:27 +0000623///
624/// Everything through visibility has already been parsed.
625///
626bool LLParser::ParseAlias(const std::string &Name, LocTy NameLoc,
627 unsigned Visibility) {
628 assert(Lex.getKind() == lltok::kw_alias);
629 Lex.Lex();
Chris Lattnerdf986172009-01-02 07:01:27 +0000630 LocTy LinkageLoc = Lex.getLoc();
Rafael Espindola2def1792013-10-06 15:10:43 +0000631 unsigned L;
632 if (ParseOptionalLinkage(L))
Chris Lattnerdf986172009-01-02 07:01:27 +0000633 return true;
634
Rafael Espindola2def1792013-10-06 15:10:43 +0000635 GlobalValue::LinkageTypes Linkage = (GlobalValue::LinkageTypes) L;
636
Rafael Espindola1a525e82013-10-09 16:07:32 +0000637 if(!GlobalAlias::isValidLinkage(Linkage))
Chris Lattnerdf986172009-01-02 07:01:27 +0000638 return Error(LinkageLoc, "invalid linkage type for alias");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000639
Chris Lattnerdf986172009-01-02 07:01:27 +0000640 Constant *Aliasee;
641 LocTy AliaseeLoc = Lex.getLoc();
Chris Lattner040f7582009-04-25 21:26:00 +0000642 if (Lex.getKind() != lltok::kw_bitcast &&
643 Lex.getKind() != lltok::kw_getelementptr) {
Chris Lattnerdf986172009-01-02 07:01:27 +0000644 if (ParseGlobalTypeAndValue(Aliasee)) return true;
645 } else {
646 // The bitcast dest type is not present, it is implied by the dest type.
647 ValID ID;
648 if (ParseValID(ID)) return true;
649 if (ID.Kind != ValID::t_Constant)
650 return Error(AliaseeLoc, "invalid aliasee");
651 Aliasee = ID.ConstantVal;
652 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000653
Duncan Sands1df98592010-02-16 11:11:14 +0000654 if (!Aliasee->getType()->isPointerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +0000655 return Error(AliaseeLoc, "alias must have pointer type");
656
657 // Okay, create the alias but do not insert it into the module yet.
658 GlobalAlias* GA = new GlobalAlias(Aliasee->getType(),
659 (GlobalValue::LinkageTypes)Linkage, Name,
660 Aliasee);
661 GA->setVisibility((GlobalValue::VisibilityTypes)Visibility);
Daniel Dunbara279bc32009-09-20 02:20:51 +0000662
Chris Lattnerdf986172009-01-02 07:01:27 +0000663 // See if this value already exists in the symbol table. If so, it is either
664 // a redefinition or a definition of a forward reference.
Chris Lattner1d871c52009-10-25 23:22:50 +0000665 if (GlobalValue *Val = M->getNamedValue(Name)) {
Chris Lattnerdf986172009-01-02 07:01:27 +0000666 // See if this was a redefinition. If so, there is no entry in
667 // ForwardRefVals.
668 std::map<std::string, std::pair<GlobalValue*, LocTy> >::iterator
669 I = ForwardRefVals.find(Name);
670 if (I == ForwardRefVals.end())
671 return Error(NameLoc, "redefinition of global named '@" + Name + "'");
672
673 // Otherwise, this was a definition of forward ref. Verify that types
674 // agree.
675 if (Val->getType() != GA->getType())
676 return Error(NameLoc,
677 "forward reference and definition of alias have different types");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000678
Chris Lattnerdf986172009-01-02 07:01:27 +0000679 // If they agree, just RAUW the old value with the alias and remove the
680 // forward ref info.
681 Val->replaceAllUsesWith(GA);
682 Val->eraseFromParent();
683 ForwardRefVals.erase(I);
684 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000685
Chris Lattnerdf986172009-01-02 07:01:27 +0000686 // Insert into the module, we know its name won't collide now.
687 M->getAliasList().push_back(GA);
Benjamin Krameraf812352010-10-16 11:28:23 +0000688 assert(GA->getName() == Name && "Should not be a name conflict!");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000689
Chris Lattnerdf986172009-01-02 07:01:27 +0000690 return false;
691}
692
693/// ParseGlobal
694/// ::= GlobalVar '=' OptionalLinkage OptionalVisibility OptionalThreadLocal
Michael Gottesmana2de37c2013-02-05 05:57:38 +0000695/// OptionalAddrSpace OptionalUnNammedAddr
696/// OptionalExternallyInitialized GlobalType Type Const
Chris Lattnerdf986172009-01-02 07:01:27 +0000697/// ::= OptionalLinkage OptionalVisibility OptionalThreadLocal
Michael Gottesmana2de37c2013-02-05 05:57:38 +0000698/// OptionalAddrSpace OptionalUnNammedAddr
699/// OptionalExternallyInitialized GlobalType Type Const
Chris Lattnerdf986172009-01-02 07:01:27 +0000700///
701/// Everything through visibility has been parsed already.
702///
703bool LLParser::ParseGlobal(const std::string &Name, LocTy NameLoc,
704 unsigned Linkage, bool HasLinkage,
705 unsigned Visibility) {
706 unsigned AddrSpace;
Shuxin Yang69bd41d2013-10-27 03:08:44 +0000707 bool IsConstant, UnnamedAddr, IsExternallyInitialized;
Hans Wennborgce718ff2012-06-23 11:37:03 +0000708 GlobalVariable::ThreadLocalMode TLM;
Rafael Espindolad72479c2011-01-13 01:30:30 +0000709 LocTy UnnamedAddrLoc;
Michael Gottesmana2de37c2013-02-05 05:57:38 +0000710 LocTy IsExternallyInitializedLoc;
Chris Lattnerdf986172009-01-02 07:01:27 +0000711 LocTy TyLoc;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000712
Chris Lattner1afcace2011-07-09 17:41:24 +0000713 Type *Ty = 0;
Hans Wennborgce718ff2012-06-23 11:37:03 +0000714 if (ParseOptionalThreadLocal(TLM) ||
Chris Lattnerdf986172009-01-02 07:01:27 +0000715 ParseOptionalAddrSpace(AddrSpace) ||
Rafael Espindolad72479c2011-01-13 01:30:30 +0000716 ParseOptionalToken(lltok::kw_unnamed_addr, UnnamedAddr,
717 &UnnamedAddrLoc) ||
Michael Gottesmana2de37c2013-02-05 05:57:38 +0000718 ParseOptionalToken(lltok::kw_externally_initialized,
719 IsExternallyInitialized,
720 &IsExternallyInitializedLoc) ||
Chris Lattnerdf986172009-01-02 07:01:27 +0000721 ParseGlobalType(IsConstant) ||
722 ParseType(Ty, TyLoc))
723 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000724
Chris Lattnerdf986172009-01-02 07:01:27 +0000725 // If the linkage is specified and is external, then no initializer is
726 // present.
727 Constant *Init = 0;
728 if (!HasLinkage || (Linkage != GlobalValue::DLLImportLinkage &&
Duncan Sands5f4ee1f2009-03-11 08:08:06 +0000729 Linkage != GlobalValue::ExternalWeakLinkage &&
Chris Lattnerdf986172009-01-02 07:01:27 +0000730 Linkage != GlobalValue::ExternalLinkage)) {
731 if (ParseGlobalValue(Ty, Init))
732 return true;
733 }
734
Duncan Sands1df98592010-02-16 11:11:14 +0000735 if (Ty->isFunctionTy() || Ty->isLabelTy())
Chris Lattner4a2f1122009-02-08 20:00:15 +0000736 return Error(TyLoc, "invalid type for global variable");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000737
Chris Lattnerdf986172009-01-02 07:01:27 +0000738 GlobalVariable *GV = 0;
739
740 // See if the global was forward referenced, if so, use the global.
Chris Lattner91dad872009-02-02 07:24:28 +0000741 if (!Name.empty()) {
Chris Lattner1d871c52009-10-25 23:22:50 +0000742 if (GlobalValue *GVal = M->getNamedValue(Name)) {
743 if (!ForwardRefVals.erase(Name) || !isa<GlobalValue>(GVal))
744 return Error(NameLoc, "redefinition of global '@" + Name + "'");
745 GV = cast<GlobalVariable>(GVal);
746 }
Chris Lattnerdf986172009-01-02 07:01:27 +0000747 } else {
748 std::map<unsigned, std::pair<GlobalValue*, LocTy> >::iterator
749 I = ForwardRefValIDs.find(NumberedVals.size());
750 if (I != ForwardRefValIDs.end()) {
751 GV = cast<GlobalVariable>(I->second.first);
752 ForwardRefValIDs.erase(I);
753 }
754 }
755
756 if (GV == 0) {
Daniel Dunbara279bc32009-09-20 02:20:51 +0000757 GV = new GlobalVariable(*M, Ty, false, GlobalValue::ExternalLinkage, 0,
Hans Wennborgce718ff2012-06-23 11:37:03 +0000758 Name, 0, GlobalVariable::NotThreadLocal,
759 AddrSpace);
Chris Lattnerdf986172009-01-02 07:01:27 +0000760 } else {
761 if (GV->getType()->getElementType() != Ty)
762 return Error(TyLoc,
763 "forward reference and definition of global have different types");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000764
Chris Lattnerdf986172009-01-02 07:01:27 +0000765 // Move the forward-reference to the correct spot in the module.
766 M->getGlobalList().splice(M->global_end(), M->getGlobalList(), GV);
767 }
768
769 if (Name.empty())
770 NumberedVals.push_back(GV);
Daniel Dunbara279bc32009-09-20 02:20:51 +0000771
Chris Lattnerdf986172009-01-02 07:01:27 +0000772 // Set the parsed properties on the global.
773 if (Init)
774 GV->setInitializer(Init);
775 GV->setConstant(IsConstant);
776 GV->setLinkage((GlobalValue::LinkageTypes)Linkage);
777 GV->setVisibility((GlobalValue::VisibilityTypes)Visibility);
Michael Gottesmana2de37c2013-02-05 05:57:38 +0000778 GV->setExternallyInitialized(IsExternallyInitialized);
Hans Wennborgce718ff2012-06-23 11:37:03 +0000779 GV->setThreadLocalMode(TLM);
Rafael Espindolabea46262011-01-08 16:42:36 +0000780 GV->setUnnamedAddr(UnnamedAddr);
Daniel Dunbara279bc32009-09-20 02:20:51 +0000781
Chris Lattnerdf986172009-01-02 07:01:27 +0000782 // Parse attributes on the global.
783 while (Lex.getKind() == lltok::comma) {
784 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +0000785
Chris Lattnerdf986172009-01-02 07:01:27 +0000786 if (Lex.getKind() == lltok::kw_section) {
787 Lex.Lex();
788 GV->setSection(Lex.getStrVal());
789 if (ParseToken(lltok::StringConstant, "expected global section string"))
790 return true;
791 } else if (Lex.getKind() == lltok::kw_align) {
792 unsigned Alignment;
793 if (ParseOptionalAlignment(Alignment)) return true;
794 GV->setAlignment(Alignment);
795 } else {
796 TokError("unknown global variable property!");
797 }
798 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000799
Chris Lattnerdf986172009-01-02 07:01:27 +0000800 return false;
801}
802
Bill Wendling95ce4c22013-02-06 06:52:58 +0000803/// ParseUnnamedAttrGrp
Bill Wendling0b778662013-02-09 15:48:49 +0000804/// ::= 'attributes' AttrGrpID '=' '{' AttrValPair+ '}'
Bill Wendling95ce4c22013-02-06 06:52:58 +0000805bool LLParser::ParseUnnamedAttrGrp() {
Bill Wendling0b778662013-02-09 15:48:49 +0000806 assert(Lex.getKind() == lltok::kw_attributes);
Bill Wendling95ce4c22013-02-06 06:52:58 +0000807 LocTy AttrGrpLoc = Lex.getLoc();
Bill Wendling0b778662013-02-09 15:48:49 +0000808 Lex.Lex();
809
810 assert(Lex.getKind() == lltok::AttrGrpID);
Bill Wendling95ce4c22013-02-06 06:52:58 +0000811 unsigned VarID = Lex.getUIntVal();
Bill Wendlingbaad55c2013-02-08 06:32:06 +0000812 std::vector<unsigned> unused;
Michael Gottesman2253a2f2013-06-27 00:25:01 +0000813 LocTy BuiltinLoc;
Bill Wendling95ce4c22013-02-06 06:52:58 +0000814 Lex.Lex();
815
816 if (ParseToken(lltok::equal, "expected '=' here") ||
Bill Wendling95ce4c22013-02-06 06:52:58 +0000817 ParseToken(lltok::lbrace, "expected '{' here") ||
Bill Wendling143d4642013-02-22 00:12:35 +0000818 ParseFnAttributeValuePairs(NumberedAttrBuilders[VarID], unused, true,
Michael Gottesman2253a2f2013-06-27 00:25:01 +0000819 BuiltinLoc) ||
Bill Wendling95ce4c22013-02-06 06:52:58 +0000820 ParseToken(lltok::rbrace, "expected end of attribute group"))
821 return true;
822
Bill Wendlingbaad55c2013-02-08 06:32:06 +0000823 if (!NumberedAttrBuilders[VarID].hasAttributes())
Bill Wendling95ce4c22013-02-06 06:52:58 +0000824 return Error(AttrGrpLoc, "attribute group has no attributes");
825
826 return false;
827}
828
Bill Wendlingea007fa2013-02-08 00:52:31 +0000829/// ParseFnAttributeValuePairs
Bill Wendling95ce4c22013-02-06 06:52:58 +0000830/// ::= <attr> | <attr> '=' <value>
Bill Wendlingbaad55c2013-02-08 06:32:06 +0000831bool LLParser::ParseFnAttributeValuePairs(AttrBuilder &B,
832 std::vector<unsigned> &FwdRefAttrGrps,
Michael Gottesman2253a2f2013-06-27 00:25:01 +0000833 bool inAttrGrp, LocTy &BuiltinLoc) {
Bill Wendlingea007fa2013-02-08 00:52:31 +0000834 bool HaveError = false;
835
836 B.clear();
837
Bill Wendling95ce4c22013-02-06 06:52:58 +0000838 while (true) {
839 lltok::Kind Token = Lex.getKind();
Michael Gottesman2253a2f2013-06-27 00:25:01 +0000840 if (Token == lltok::kw_builtin)
841 BuiltinLoc = Lex.getLoc();
Bill Wendling95ce4c22013-02-06 06:52:58 +0000842 switch (Token) {
843 default:
Bill Wendlingea007fa2013-02-08 00:52:31 +0000844 if (!inAttrGrp) return HaveError;
Bill Wendling95ce4c22013-02-06 06:52:58 +0000845 return Error(Lex.getLoc(), "unterminated attribute group");
846 case lltok::rbrace:
847 // Finished.
848 return false;
849
Bill Wendlingbaad55c2013-02-08 06:32:06 +0000850 case lltok::AttrGrpID: {
851 // Allow a function to reference an attribute group:
852 //
853 // define void @foo() #1 { ... }
854 if (inAttrGrp)
855 HaveError |=
856 Error(Lex.getLoc(),
857 "cannot have an attribute group reference in an attribute group");
858
859 unsigned AttrGrpNum = Lex.getUIntVal();
860 if (inAttrGrp) break;
861
862 // Save the reference to the attribute group. We'll fill it in later.
863 FwdRefAttrGrps.push_back(AttrGrpNum);
864 break;
865 }
Bill Wendling95ce4c22013-02-06 06:52:58 +0000866 // Target-dependent attributes:
867 case lltok::StringConstant: {
868 std::string Attr = Lex.getStrVal();
869 Lex.Lex();
870 std::string Val;
871 if (EatIfPresent(lltok::equal) &&
872 ParseStringConstant(Val))
873 return true;
874
875 B.addAttribute(Attr, Val);
Bill Wendling0f742202013-02-10 10:12:50 +0000876 continue;
Bill Wendling95ce4c22013-02-06 06:52:58 +0000877 }
878
879 // Target-independent attributes:
880 case lltok::kw_align: {
Bill Wendlingc0b4b672013-04-18 18:30:16 +0000881 // As a hack, we allow function alignment to be initially parsed as an
882 // attribute on a function declaration/definition or added to an attribute
883 // group and later moved to the alignment field.
Bill Wendling95ce4c22013-02-06 06:52:58 +0000884 unsigned Alignment;
Bill Wendlingea007fa2013-02-08 00:52:31 +0000885 if (inAttrGrp) {
Bill Wendling3f87d232013-02-10 23:15:51 +0000886 Lex.Lex();
Bill Wendlingea007fa2013-02-08 00:52:31 +0000887 if (ParseToken(lltok::equal, "expected '=' here") ||
888 ParseUInt32(Alignment))
889 return true;
890 } else {
891 if (ParseOptionalAlignment(Alignment))
892 return true;
893 }
Bill Wendling95ce4c22013-02-06 06:52:58 +0000894 B.addAlignmentAttr(Alignment);
Bill Wendlingea007fa2013-02-08 00:52:31 +0000895 continue;
Bill Wendling95ce4c22013-02-06 06:52:58 +0000896 }
897 case lltok::kw_alignstack: {
898 unsigned Alignment;
Bill Wendlingea007fa2013-02-08 00:52:31 +0000899 if (inAttrGrp) {
Bill Wendling3f87d232013-02-10 23:15:51 +0000900 Lex.Lex();
Bill Wendlingea007fa2013-02-08 00:52:31 +0000901 if (ParseToken(lltok::equal, "expected '=' here") ||
902 ParseUInt32(Alignment))
903 return true;
904 } else {
905 if (ParseOptionalStackAlignment(Alignment))
906 return true;
907 }
Bill Wendling95ce4c22013-02-06 06:52:58 +0000908 B.addStackAlignmentAttr(Alignment);
Bill Wendlingea007fa2013-02-08 00:52:31 +0000909 continue;
Bill Wendling95ce4c22013-02-06 06:52:58 +0000910 }
Kostya Serebryany8eec41f2013-02-26 06:58:09 +0000911 case lltok::kw_alwaysinline: B.addAttribute(Attribute::AlwaysInline); break;
Michael Gottesman2253a2f2013-06-27 00:25:01 +0000912 case lltok::kw_builtin: B.addAttribute(Attribute::Builtin); break;
Diego Novillo77226a02013-05-24 12:26:52 +0000913 case lltok::kw_cold: B.addAttribute(Attribute::Cold); break;
Kostya Serebryany8eec41f2013-02-26 06:58:09 +0000914 case lltok::kw_inlinehint: B.addAttribute(Attribute::InlineHint); break;
915 case lltok::kw_minsize: B.addAttribute(Attribute::MinSize); break;
916 case lltok::kw_naked: B.addAttribute(Attribute::Naked); break;
917 case lltok::kw_nobuiltin: B.addAttribute(Attribute::NoBuiltin); break;
918 case lltok::kw_noduplicate: B.addAttribute(Attribute::NoDuplicate); break;
919 case lltok::kw_noimplicitfloat: B.addAttribute(Attribute::NoImplicitFloat); break;
920 case lltok::kw_noinline: B.addAttribute(Attribute::NoInline); break;
921 case lltok::kw_nonlazybind: B.addAttribute(Attribute::NonLazyBind); break;
922 case lltok::kw_noredzone: B.addAttribute(Attribute::NoRedZone); break;
923 case lltok::kw_noreturn: B.addAttribute(Attribute::NoReturn); break;
924 case lltok::kw_nounwind: B.addAttribute(Attribute::NoUnwind); break;
Andrea Di Biagio5768bb82013-08-23 11:53:55 +0000925 case lltok::kw_optnone: B.addAttribute(Attribute::OptimizeNone); break;
Kostya Serebryany8eec41f2013-02-26 06:58:09 +0000926 case lltok::kw_optsize: B.addAttribute(Attribute::OptimizeForSize); break;
927 case lltok::kw_readnone: B.addAttribute(Attribute::ReadNone); break;
928 case lltok::kw_readonly: B.addAttribute(Attribute::ReadOnly); break;
929 case lltok::kw_returns_twice: B.addAttribute(Attribute::ReturnsTwice); break;
930 case lltok::kw_ssp: B.addAttribute(Attribute::StackProtect); break;
931 case lltok::kw_sspreq: B.addAttribute(Attribute::StackProtectReq); break;
932 case lltok::kw_sspstrong: B.addAttribute(Attribute::StackProtectStrong); break;
933 case lltok::kw_sanitize_address: B.addAttribute(Attribute::SanitizeAddress); break;
934 case lltok::kw_sanitize_thread: B.addAttribute(Attribute::SanitizeThread); break;
935 case lltok::kw_sanitize_memory: B.addAttribute(Attribute::SanitizeMemory); break;
936 case lltok::kw_uwtable: B.addAttribute(Attribute::UWTable); break;
Bill Wendlingea007fa2013-02-08 00:52:31 +0000937
938 // Error handling.
939 case lltok::kw_inreg:
940 case lltok::kw_signext:
941 case lltok::kw_zeroext:
942 HaveError |=
943 Error(Lex.getLoc(),
944 "invalid use of attribute on a function");
945 break;
946 case lltok::kw_byval:
947 case lltok::kw_nest:
948 case lltok::kw_noalias:
949 case lltok::kw_nocapture:
Stephen Lin456ca042013-04-20 05:14:40 +0000950 case lltok::kw_returned:
Bill Wendlingea007fa2013-02-08 00:52:31 +0000951 case lltok::kw_sret:
952 HaveError |=
953 Error(Lex.getLoc(),
954 "invalid use of parameter-only attribute on a function");
955 break;
Bill Wendling95ce4c22013-02-06 06:52:58 +0000956 }
957
958 Lex.Lex();
959 }
960}
Chris Lattnerdf986172009-01-02 07:01:27 +0000961
962//===----------------------------------------------------------------------===//
963// GlobalValue Reference/Resolution Routines.
964//===----------------------------------------------------------------------===//
965
966/// GetGlobalVal - Get a value with the specified name or ID, creating a
967/// forward reference record if needed. This can return null if the value
968/// exists but does not have the right type.
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000969GlobalValue *LLParser::GetGlobalVal(const std::string &Name, Type *Ty,
Chris Lattnerdf986172009-01-02 07:01:27 +0000970 LocTy Loc) {
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000971 PointerType *PTy = dyn_cast<PointerType>(Ty);
Chris Lattnerdf986172009-01-02 07:01:27 +0000972 if (PTy == 0) {
973 Error(Loc, "global variable reference must have pointer type");
974 return 0;
975 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000976
Chris Lattnerdf986172009-01-02 07:01:27 +0000977 // Look this name up in the normal function symbol table.
978 GlobalValue *Val =
979 cast_or_null<GlobalValue>(M->getValueSymbolTable().lookup(Name));
Daniel Dunbara279bc32009-09-20 02:20:51 +0000980
Chris Lattnerdf986172009-01-02 07:01:27 +0000981 // If this is a forward reference for the value, see if we already created a
982 // forward ref record.
983 if (Val == 0) {
984 std::map<std::string, std::pair<GlobalValue*, LocTy> >::iterator
985 I = ForwardRefVals.find(Name);
986 if (I != ForwardRefVals.end())
987 Val = I->second.first;
988 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000989
Chris Lattnerdf986172009-01-02 07:01:27 +0000990 // If we have the value in the symbol table or fwd-ref table, return it.
991 if (Val) {
992 if (Val->getType() == Ty) return Val;
993 Error(Loc, "'@" + Name + "' defined with type '" +
Chris Lattner0cd0d882011-06-18 21:18:23 +0000994 getTypeString(Val->getType()) + "'");
Chris Lattnerdf986172009-01-02 07:01:27 +0000995 return 0;
996 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000997
Chris Lattnerdf986172009-01-02 07:01:27 +0000998 // Otherwise, create a new forward reference for this value and remember it.
999 GlobalValue *FwdVal;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001000 if (FunctionType *FT = dyn_cast<FunctionType>(PTy->getElementType()))
Duncan Sands5f4ee1f2009-03-11 08:08:06 +00001001 FwdVal = Function::Create(FT, GlobalValue::ExternalWeakLinkage, Name, M);
Chris Lattner1afcace2011-07-09 17:41:24 +00001002 else
Owen Andersone9b11b42009-07-08 19:03:57 +00001003 FwdVal = new GlobalVariable(*M, PTy->getElementType(), false,
Justin Holewinskieaff2d52012-11-16 21:03:47 +00001004 GlobalValue::ExternalWeakLinkage, 0, Name,
1005 0, GlobalVariable::NotThreadLocal,
1006 PTy->getAddressSpace());
Daniel Dunbara279bc32009-09-20 02:20:51 +00001007
Chris Lattnerdf986172009-01-02 07:01:27 +00001008 ForwardRefVals[Name] = std::make_pair(FwdVal, Loc);
1009 return FwdVal;
1010}
1011
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001012GlobalValue *LLParser::GetGlobalVal(unsigned ID, Type *Ty, LocTy Loc) {
1013 PointerType *PTy = dyn_cast<PointerType>(Ty);
Chris Lattnerdf986172009-01-02 07:01:27 +00001014 if (PTy == 0) {
1015 Error(Loc, "global variable reference must have pointer type");
1016 return 0;
1017 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001018
Chris Lattnerdf986172009-01-02 07:01:27 +00001019 GlobalValue *Val = ID < NumberedVals.size() ? NumberedVals[ID] : 0;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001020
Chris Lattnerdf986172009-01-02 07:01:27 +00001021 // If this is a forward reference for the value, see if we already created a
1022 // forward ref record.
1023 if (Val == 0) {
1024 std::map<unsigned, std::pair<GlobalValue*, LocTy> >::iterator
1025 I = ForwardRefValIDs.find(ID);
1026 if (I != ForwardRefValIDs.end())
1027 Val = I->second.first;
1028 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001029
Chris Lattnerdf986172009-01-02 07:01:27 +00001030 // If we have the value in the symbol table or fwd-ref table, return it.
1031 if (Val) {
1032 if (Val->getType() == Ty) return Val;
Benjamin Kramerd1e17032010-09-27 17:42:11 +00001033 Error(Loc, "'@" + Twine(ID) + "' defined with type '" +
Chris Lattner0cd0d882011-06-18 21:18:23 +00001034 getTypeString(Val->getType()) + "'");
Chris Lattnerdf986172009-01-02 07:01:27 +00001035 return 0;
1036 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001037
Chris Lattnerdf986172009-01-02 07:01:27 +00001038 // Otherwise, create a new forward reference for this value and remember it.
1039 GlobalValue *FwdVal;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001040 if (FunctionType *FT = dyn_cast<FunctionType>(PTy->getElementType()))
Duncan Sands5f4ee1f2009-03-11 08:08:06 +00001041 FwdVal = Function::Create(FT, GlobalValue::ExternalWeakLinkage, "", M);
Chris Lattner1afcace2011-07-09 17:41:24 +00001042 else
Owen Andersone9b11b42009-07-08 19:03:57 +00001043 FwdVal = new GlobalVariable(*M, PTy->getElementType(), false,
1044 GlobalValue::ExternalWeakLinkage, 0, "");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001045
Chris Lattnerdf986172009-01-02 07:01:27 +00001046 ForwardRefValIDs[ID] = std::make_pair(FwdVal, Loc);
1047 return FwdVal;
1048}
1049
1050
1051//===----------------------------------------------------------------------===//
1052// Helper Routines.
1053//===----------------------------------------------------------------------===//
1054
1055/// ParseToken - If the current token has the specified kind, eat it and return
1056/// success. Otherwise, emit the specified error and return failure.
1057bool LLParser::ParseToken(lltok::Kind T, const char *ErrMsg) {
1058 if (Lex.getKind() != T)
1059 return TokError(ErrMsg);
1060 Lex.Lex();
1061 return false;
1062}
1063
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001064/// ParseStringConstant
1065/// ::= StringConstant
1066bool LLParser::ParseStringConstant(std::string &Result) {
1067 if (Lex.getKind() != lltok::StringConstant)
1068 return TokError("expected string constant");
1069 Result = Lex.getStrVal();
1070 Lex.Lex();
1071 return false;
1072}
1073
1074/// ParseUInt32
1075/// ::= uint32
1076bool LLParser::ParseUInt32(unsigned &Val) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001077 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned())
1078 return TokError("expected integer");
1079 uint64_t Val64 = Lex.getAPSIntVal().getLimitedValue(0xFFFFFFFFULL+1);
1080 if (Val64 != unsigned(Val64))
1081 return TokError("expected 32-bit integer (too large)");
1082 Val = Val64;
1083 Lex.Lex();
1084 return false;
1085}
1086
Hans Wennborgce718ff2012-06-23 11:37:03 +00001087/// ParseTLSModel
1088/// := 'localdynamic'
1089/// := 'initialexec'
1090/// := 'localexec'
1091bool LLParser::ParseTLSModel(GlobalVariable::ThreadLocalMode &TLM) {
1092 switch (Lex.getKind()) {
1093 default:
1094 return TokError("expected localdynamic, initialexec or localexec");
1095 case lltok::kw_localdynamic:
1096 TLM = GlobalVariable::LocalDynamicTLSModel;
1097 break;
1098 case lltok::kw_initialexec:
1099 TLM = GlobalVariable::InitialExecTLSModel;
1100 break;
1101 case lltok::kw_localexec:
1102 TLM = GlobalVariable::LocalExecTLSModel;
1103 break;
1104 }
1105
1106 Lex.Lex();
1107 return false;
1108}
1109
1110/// ParseOptionalThreadLocal
1111/// := /*empty*/
1112/// := 'thread_local'
1113/// := 'thread_local' '(' tlsmodel ')'
1114bool LLParser::ParseOptionalThreadLocal(GlobalVariable::ThreadLocalMode &TLM) {
1115 TLM = GlobalVariable::NotThreadLocal;
1116 if (!EatIfPresent(lltok::kw_thread_local))
1117 return false;
1118
1119 TLM = GlobalVariable::GeneralDynamicTLSModel;
1120 if (Lex.getKind() == lltok::lparen) {
1121 Lex.Lex();
1122 return ParseTLSModel(TLM) ||
1123 ParseToken(lltok::rparen, "expected ')' after thread local model");
1124 }
1125 return false;
1126}
Chris Lattnerdf986172009-01-02 07:01:27 +00001127
1128/// ParseOptionalAddrSpace
1129/// := /*empty*/
1130/// := 'addrspace' '(' uint32 ')'
1131bool LLParser::ParseOptionalAddrSpace(unsigned &AddrSpace) {
1132 AddrSpace = 0;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001133 if (!EatIfPresent(lltok::kw_addrspace))
Chris Lattnerdf986172009-01-02 07:01:27 +00001134 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00001135 return ParseToken(lltok::lparen, "expected '(' in address space") ||
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001136 ParseUInt32(AddrSpace) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00001137 ParseToken(lltok::rparen, "expected ')' in address space");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001138}
Chris Lattnerdf986172009-01-02 07:01:27 +00001139
Bill Wendlinge01b81b2012-12-04 23:40:58 +00001140/// ParseOptionalParamAttrs - Parse a potentially empty list of parameter attributes.
1141bool LLParser::ParseOptionalParamAttrs(AttrBuilder &B) {
1142 bool HaveError = false;
1143
1144 B.clear();
1145
1146 while (1) {
1147 lltok::Kind Token = Lex.getKind();
1148 switch (Token) {
1149 default: // End of attributes.
1150 return HaveError;
Chris Lattnerdf986172009-01-02 07:01:27 +00001151 case lltok::kw_align: {
1152 unsigned Alignment;
1153 if (ParseOptionalAlignment(Alignment))
1154 return true;
Bill Wendling03272442012-10-08 22:20:14 +00001155 B.addAlignmentAttr(Alignment);
Chris Lattnerdf986172009-01-02 07:01:27 +00001156 continue;
1157 }
Bill Wendling034b94b2012-12-19 07:18:57 +00001158 case lltok::kw_byval: B.addAttribute(Attribute::ByVal); break;
1159 case lltok::kw_inreg: B.addAttribute(Attribute::InReg); break;
1160 case lltok::kw_nest: B.addAttribute(Attribute::Nest); break;
1161 case lltok::kw_noalias: B.addAttribute(Attribute::NoAlias); break;
1162 case lltok::kw_nocapture: B.addAttribute(Attribute::NoCapture); break;
Nick Lewyckydc897372013-07-06 00:29:58 +00001163 case lltok::kw_readnone: B.addAttribute(Attribute::ReadNone); break;
1164 case lltok::kw_readonly: B.addAttribute(Attribute::ReadOnly); break;
Stephen Lin456ca042013-04-20 05:14:40 +00001165 case lltok::kw_returned: B.addAttribute(Attribute::Returned); break;
Bill Wendling034b94b2012-12-19 07:18:57 +00001166 case lltok::kw_signext: B.addAttribute(Attribute::SExt); break;
1167 case lltok::kw_sret: B.addAttribute(Attribute::StructRet); break;
1168 case lltok::kw_zeroext: B.addAttribute(Attribute::ZExt); break;
Charles Davis1e063d12010-02-12 00:31:15 +00001169
Stephen Linb0aeb3e2013-04-20 13:16:13 +00001170 case lltok::kw_alignstack:
1171 case lltok::kw_alwaysinline:
Michael Gottesman2253a2f2013-06-27 00:25:01 +00001172 case lltok::kw_builtin:
Stephen Linb0aeb3e2013-04-20 13:16:13 +00001173 case lltok::kw_inlinehint:
1174 case lltok::kw_minsize:
1175 case lltok::kw_naked:
1176 case lltok::kw_nobuiltin:
1177 case lltok::kw_noduplicate:
1178 case lltok::kw_noimplicitfloat:
1179 case lltok::kw_noinline:
1180 case lltok::kw_nonlazybind:
1181 case lltok::kw_noredzone:
1182 case lltok::kw_noreturn:
1183 case lltok::kw_nounwind:
Andrea Di Biagio5768bb82013-08-23 11:53:55 +00001184 case lltok::kw_optnone:
Stephen Linb0aeb3e2013-04-20 13:16:13 +00001185 case lltok::kw_optsize:
Stephen Linb0aeb3e2013-04-20 13:16:13 +00001186 case lltok::kw_returns_twice:
1187 case lltok::kw_sanitize_address:
1188 case lltok::kw_sanitize_memory:
1189 case lltok::kw_sanitize_thread:
1190 case lltok::kw_ssp:
1191 case lltok::kw_sspreq:
1192 case lltok::kw_sspstrong:
1193 case lltok::kw_uwtable:
Bill Wendlinge01b81b2012-12-04 23:40:58 +00001194 HaveError |= Error(Lex.getLoc(), "invalid use of function-only attribute");
1195 break;
Chris Lattnerdf986172009-01-02 07:01:27 +00001196 }
Bill Wendlingdc998cc2012-09-28 22:30:18 +00001197
Bill Wendlinge01b81b2012-12-04 23:40:58 +00001198 Lex.Lex();
1199 }
1200}
1201
1202/// ParseOptionalReturnAttrs - Parse a potentially empty list of return attributes.
1203bool LLParser::ParseOptionalReturnAttrs(AttrBuilder &B) {
1204 bool HaveError = false;
1205
1206 B.clear();
1207
1208 while (1) {
1209 lltok::Kind Token = Lex.getKind();
Bill Wendlingdc998cc2012-09-28 22:30:18 +00001210 switch (Token) {
Bill Wendlinge01b81b2012-12-04 23:40:58 +00001211 default: // End of attributes.
1212 return HaveError;
Bill Wendling034b94b2012-12-19 07:18:57 +00001213 case lltok::kw_inreg: B.addAttribute(Attribute::InReg); break;
1214 case lltok::kw_noalias: B.addAttribute(Attribute::NoAlias); break;
1215 case lltok::kw_signext: B.addAttribute(Attribute::SExt); break;
1216 case lltok::kw_zeroext: B.addAttribute(Attribute::ZExt); break;
Bill Wendlingdc998cc2012-09-28 22:30:18 +00001217
Bill Wendlinge01b81b2012-12-04 23:40:58 +00001218 // Error handling.
Stephen Linb0aeb3e2013-04-20 13:16:13 +00001219 case lltok::kw_align:
Chandler Carruth239e1e42013-04-09 19:46:46 +00001220 case lltok::kw_byval:
1221 case lltok::kw_nest:
1222 case lltok::kw_nocapture:
Stephen Lin456ca042013-04-20 05:14:40 +00001223 case lltok::kw_returned:
Chandler Carruth239e1e42013-04-09 19:46:46 +00001224 case lltok::kw_sret:
Bill Wendlinge01b81b2012-12-04 23:40:58 +00001225 HaveError |= Error(Lex.getLoc(), "invalid use of parameter-only attribute");
Bill Wendlingdc998cc2012-09-28 22:30:18 +00001226 break;
James Molloy67ae1352012-12-20 16:04:27 +00001227
Chandler Carruth239e1e42013-04-09 19:46:46 +00001228 case lltok::kw_alignstack:
1229 case lltok::kw_alwaysinline:
Michael Gottesman2253a2f2013-06-27 00:25:01 +00001230 case lltok::kw_builtin:
Diego Novillo77226a02013-05-24 12:26:52 +00001231 case lltok::kw_cold:
Chandler Carruth239e1e42013-04-09 19:46:46 +00001232 case lltok::kw_inlinehint:
1233 case lltok::kw_minsize:
1234 case lltok::kw_naked:
1235 case lltok::kw_nobuiltin:
1236 case lltok::kw_noduplicate:
1237 case lltok::kw_noimplicitfloat:
1238 case lltok::kw_noinline:
1239 case lltok::kw_nonlazybind:
1240 case lltok::kw_noredzone:
1241 case lltok::kw_noreturn:
1242 case lltok::kw_nounwind:
Andrea Di Biagio5768bb82013-08-23 11:53:55 +00001243 case lltok::kw_optnone:
Chandler Carruth239e1e42013-04-09 19:46:46 +00001244 case lltok::kw_optsize:
Chandler Carruth239e1e42013-04-09 19:46:46 +00001245 case lltok::kw_returns_twice:
1246 case lltok::kw_sanitize_address:
1247 case lltok::kw_sanitize_memory:
1248 case lltok::kw_sanitize_thread:
1249 case lltok::kw_ssp:
1250 case lltok::kw_sspreq:
1251 case lltok::kw_sspstrong:
1252 case lltok::kw_uwtable:
Bill Wendlinge01b81b2012-12-04 23:40:58 +00001253 HaveError |= Error(Lex.getLoc(), "invalid use of function-only attribute");
Bill Wendlingdc998cc2012-09-28 22:30:18 +00001254 break;
Nick Lewyckydc897372013-07-06 00:29:58 +00001255
1256 case lltok::kw_readnone:
1257 case lltok::kw_readonly:
1258 HaveError |= Error(Lex.getLoc(), "invalid use of attribute on return type");
Bill Wendlingdc998cc2012-09-28 22:30:18 +00001259 }
1260
Chris Lattnerdf986172009-01-02 07:01:27 +00001261 Lex.Lex();
1262 }
1263}
1264
1265/// ParseOptionalLinkage
1266/// ::= /*empty*/
Rafael Espindolabb46f522009-01-15 20:18:42 +00001267/// ::= 'private'
Bill Wendling3d10a5a2009-07-20 01:03:30 +00001268/// ::= 'linker_private'
Bill Wendling5e721d72010-07-01 21:55:59 +00001269/// ::= 'linker_private_weak'
Chris Lattnerdf986172009-01-02 07:01:27 +00001270/// ::= 'internal'
1271/// ::= 'weak'
Duncan Sands667d4b82009-03-07 15:45:40 +00001272/// ::= 'weak_odr'
Chris Lattnerdf986172009-01-02 07:01:27 +00001273/// ::= 'linkonce'
Duncan Sands667d4b82009-03-07 15:45:40 +00001274/// ::= 'linkonce_odr'
Bill Wendling32811be2012-08-17 18:33:14 +00001275/// ::= 'linkonce_odr_auto_hide'
Bill Wendling5e721d72010-07-01 21:55:59 +00001276/// ::= 'available_externally'
Chris Lattnerdf986172009-01-02 07:01:27 +00001277/// ::= 'appending'
1278/// ::= 'dllexport'
1279/// ::= 'common'
1280/// ::= 'dllimport'
1281/// ::= 'extern_weak'
1282/// ::= 'external'
1283bool LLParser::ParseOptionalLinkage(unsigned &Res, bool &HasLinkage) {
1284 HasLinkage = false;
1285 switch (Lex.getKind()) {
Bill Wendling3d10a5a2009-07-20 01:03:30 +00001286 default: Res=GlobalValue::ExternalLinkage; return false;
1287 case lltok::kw_private: Res = GlobalValue::PrivateLinkage; break;
1288 case lltok::kw_linker_private: Res = GlobalValue::LinkerPrivateLinkage; break;
Bill Wendling5e721d72010-07-01 21:55:59 +00001289 case lltok::kw_linker_private_weak:
1290 Res = GlobalValue::LinkerPrivateWeakLinkage;
1291 break;
Bill Wendling3d10a5a2009-07-20 01:03:30 +00001292 case lltok::kw_internal: Res = GlobalValue::InternalLinkage; break;
1293 case lltok::kw_weak: Res = GlobalValue::WeakAnyLinkage; break;
1294 case lltok::kw_weak_odr: Res = GlobalValue::WeakODRLinkage; break;
1295 case lltok::kw_linkonce: Res = GlobalValue::LinkOnceAnyLinkage; break;
1296 case lltok::kw_linkonce_odr: Res = GlobalValue::LinkOnceODRLinkage; break;
Bill Wendling32811be2012-08-17 18:33:14 +00001297 case lltok::kw_linkonce_odr_auto_hide:
1298 case lltok::kw_linker_private_weak_def_auto: // FIXME: For backwards compat.
1299 Res = GlobalValue::LinkOnceODRAutoHideLinkage;
1300 break;
Chris Lattner266c7bb2009-04-13 05:44:34 +00001301 case lltok::kw_available_externally:
1302 Res = GlobalValue::AvailableExternallyLinkage;
1303 break;
Bill Wendling3d10a5a2009-07-20 01:03:30 +00001304 case lltok::kw_appending: Res = GlobalValue::AppendingLinkage; break;
1305 case lltok::kw_dllexport: Res = GlobalValue::DLLExportLinkage; break;
1306 case lltok::kw_common: Res = GlobalValue::CommonLinkage; break;
1307 case lltok::kw_dllimport: Res = GlobalValue::DLLImportLinkage; break;
1308 case lltok::kw_extern_weak: Res = GlobalValue::ExternalWeakLinkage; break;
1309 case lltok::kw_external: Res = GlobalValue::ExternalLinkage; break;
Chris Lattnerdf986172009-01-02 07:01:27 +00001310 }
1311 Lex.Lex();
1312 HasLinkage = true;
1313 return false;
1314}
1315
1316/// ParseOptionalVisibility
1317/// ::= /*empty*/
1318/// ::= 'default'
1319/// ::= 'hidden'
1320/// ::= 'protected'
Daniel Dunbara279bc32009-09-20 02:20:51 +00001321///
Chris Lattnerdf986172009-01-02 07:01:27 +00001322bool LLParser::ParseOptionalVisibility(unsigned &Res) {
1323 switch (Lex.getKind()) {
1324 default: Res = GlobalValue::DefaultVisibility; return false;
1325 case lltok::kw_default: Res = GlobalValue::DefaultVisibility; break;
1326 case lltok::kw_hidden: Res = GlobalValue::HiddenVisibility; break;
1327 case lltok::kw_protected: Res = GlobalValue::ProtectedVisibility; break;
1328 }
1329 Lex.Lex();
1330 return false;
1331}
1332
1333/// ParseOptionalCallingConv
1334/// ::= /*empty*/
1335/// ::= 'ccc'
1336/// ::= 'fastcc'
Elena Demikhovsky35752222012-10-24 14:46:16 +00001337/// ::= 'kw_intel_ocl_bicc'
Chris Lattnerdf986172009-01-02 07:01:27 +00001338/// ::= 'coldcc'
1339/// ::= 'x86_stdcallcc'
1340/// ::= 'x86_fastcallcc'
Anton Korobeynikovded05e32010-05-16 09:08:45 +00001341/// ::= 'x86_thiscallcc'
Anton Korobeynikov385f5a92009-06-16 18:50:49 +00001342/// ::= 'arm_apcscc'
1343/// ::= 'arm_aapcscc'
1344/// ::= 'arm_aapcs_vfpcc'
Anton Korobeynikov211a14e2009-12-07 02:27:35 +00001345/// ::= 'msp430_intrcc'
Che-Liang Chiouf9930da2010-09-25 07:46:17 +00001346/// ::= 'ptx_kernel'
1347/// ::= 'ptx_device'
Micah Villmowe53d6052012-10-01 17:01:31 +00001348/// ::= 'spir_func'
1349/// ::= 'spir_kernel'
Charles Davisac226bb2013-07-12 06:02:35 +00001350/// ::= 'x86_64_sysvcc'
1351/// ::= 'x86_64_win64cc'
Chris Lattnerdf986172009-01-02 07:01:27 +00001352/// ::= 'cc' UINT
Anton Korobeynikov385f5a92009-06-16 18:50:49 +00001353///
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001354bool LLParser::ParseOptionalCallingConv(CallingConv::ID &CC) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001355 switch (Lex.getKind()) {
1356 default: CC = CallingConv::C; return false;
1357 case lltok::kw_ccc: CC = CallingConv::C; break;
1358 case lltok::kw_fastcc: CC = CallingConv::Fast; break;
1359 case lltok::kw_coldcc: CC = CallingConv::Cold; break;
1360 case lltok::kw_x86_stdcallcc: CC = CallingConv::X86_StdCall; break;
1361 case lltok::kw_x86_fastcallcc: CC = CallingConv::X86_FastCall; break;
Anton Korobeynikovded05e32010-05-16 09:08:45 +00001362 case lltok::kw_x86_thiscallcc: CC = CallingConv::X86_ThisCall; break;
Anton Korobeynikov385f5a92009-06-16 18:50:49 +00001363 case lltok::kw_arm_apcscc: CC = CallingConv::ARM_APCS; break;
1364 case lltok::kw_arm_aapcscc: CC = CallingConv::ARM_AAPCS; break;
1365 case lltok::kw_arm_aapcs_vfpcc:CC = CallingConv::ARM_AAPCS_VFP; break;
Anton Korobeynikov211a14e2009-12-07 02:27:35 +00001366 case lltok::kw_msp430_intrcc: CC = CallingConv::MSP430_INTR; break;
Che-Liang Chiouf9930da2010-09-25 07:46:17 +00001367 case lltok::kw_ptx_kernel: CC = CallingConv::PTX_Kernel; break;
1368 case lltok::kw_ptx_device: CC = CallingConv::PTX_Device; break;
Micah Villmowe53d6052012-10-01 17:01:31 +00001369 case lltok::kw_spir_kernel: CC = CallingConv::SPIR_KERNEL; break;
1370 case lltok::kw_spir_func: CC = CallingConv::SPIR_FUNC; break;
Elena Demikhovsky35752222012-10-24 14:46:16 +00001371 case lltok::kw_intel_ocl_bicc: CC = CallingConv::Intel_OCL_BI; break;
Charles Davisac226bb2013-07-12 06:02:35 +00001372 case lltok::kw_x86_64_sysvcc: CC = CallingConv::X86_64_SysV; break;
1373 case lltok::kw_x86_64_win64cc: CC = CallingConv::X86_64_Win64; break;
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001374 case lltok::kw_cc: {
1375 unsigned ArbitraryCC;
1376 Lex.Lex();
David Blaikie4d6ccb52012-01-20 21:51:11 +00001377 if (ParseUInt32(ArbitraryCC))
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001378 return true;
David Blaikie4d6ccb52012-01-20 21:51:11 +00001379 CC = static_cast<CallingConv::ID>(ArbitraryCC);
1380 return false;
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001381 }
Chris Lattnerdf986172009-01-02 07:01:27 +00001382 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001383
Chris Lattnerdf986172009-01-02 07:01:27 +00001384 Lex.Lex();
1385 return false;
1386}
1387
Chris Lattnerb8c46862009-12-30 05:31:19 +00001388/// ParseInstructionMetadata
Chris Lattner3f3a0f62009-12-29 21:25:40 +00001389/// ::= !dbg !42 (',' !dbg !57)*
Dan Gohman9d072f52010-08-24 02:05:17 +00001390bool LLParser::ParseInstructionMetadata(Instruction *Inst,
1391 PerFunctionState *PFS) {
Chris Lattnerb8c46862009-12-30 05:31:19 +00001392 do {
1393 if (Lex.getKind() != lltok::MetadataVar)
1394 return TokError("expected metadata after comma");
Devang Patel0475c912009-09-29 00:01:14 +00001395
Chris Lattner3f3a0f62009-12-29 21:25:40 +00001396 std::string Name = Lex.getStrVal();
Benjamin Kramer85dadec2011-12-06 11:50:26 +00001397 unsigned MDK = M->getMDKindID(Name);
Chris Lattner3f3a0f62009-12-29 21:25:40 +00001398 Lex.Lex();
Chris Lattner52e20312009-10-19 05:31:10 +00001399
Chris Lattner442ffa12009-12-29 21:53:55 +00001400 MDNode *Node;
Chris Lattner449c3102010-04-01 05:14:45 +00001401 SMLoc Loc = Lex.getLoc();
Dan Gohman309b3af2010-08-24 02:24:03 +00001402
1403 if (ParseToken(lltok::exclaim, "expected '!' here"))
Chris Lattnere434d272009-12-30 04:56:59 +00001404 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001405
Dan Gohman68261142010-08-24 14:35:45 +00001406 // This code is similar to that of ParseMetadataValue, however it needs to
1407 // have special-case code for a forward reference; see the comments on
1408 // ForwardRefInstMetadata for details. Also, MDStrings are not supported
1409 // at the top level here.
Dan Gohman309b3af2010-08-24 02:24:03 +00001410 if (Lex.getKind() == lltok::lbrace) {
1411 ValID ID;
1412 if (ParseMetadataListValue(ID, PFS))
1413 return true;
1414 assert(ID.Kind == ValID::t_MDNode);
1415 Inst->setMetadata(MDK, ID.MDNodeVal);
Chris Lattner449c3102010-04-01 05:14:45 +00001416 } else {
Nick Lewyckyc6877b42010-09-30 21:04:13 +00001417 unsigned NodeID = 0;
Dan Gohman309b3af2010-08-24 02:24:03 +00001418 if (ParseMDNodeID(Node, NodeID))
1419 return true;
1420 if (Node) {
1421 // If we got the node, add it to the instruction.
1422 Inst->setMetadata(MDK, Node);
1423 } else {
1424 MDRef R = { Loc, MDK, NodeID };
1425 // Otherwise, remember that this should be resolved later.
1426 ForwardRefInstMetadata[Inst].push_back(R);
1427 }
Chris Lattner449c3102010-04-01 05:14:45 +00001428 }
Chris Lattner3f3a0f62009-12-29 21:25:40 +00001429
Manman Ren804f0342013-09-28 00:22:27 +00001430 if (MDK == LLVMContext::MD_tbaa)
1431 InstsWithTBAATag.push_back(Inst);
1432
Chris Lattner3f3a0f62009-12-29 21:25:40 +00001433 // If this is the end of the list, we're done.
Chris Lattnerb8c46862009-12-30 05:31:19 +00001434 } while (EatIfPresent(lltok::comma));
1435 return false;
Devang Patelf633a062009-09-17 23:04:48 +00001436}
1437
Chris Lattnerdf986172009-01-02 07:01:27 +00001438/// ParseOptionalAlignment
1439/// ::= /* empty */
1440/// ::= 'align' 4
1441bool LLParser::ParseOptionalAlignment(unsigned &Alignment) {
1442 Alignment = 0;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001443 if (!EatIfPresent(lltok::kw_align))
1444 return false;
Chris Lattner3fbb3ab2009-01-05 07:46:05 +00001445 LocTy AlignLoc = Lex.getLoc();
1446 if (ParseUInt32(Alignment)) return true;
1447 if (!isPowerOf2_32(Alignment))
1448 return Error(AlignLoc, "alignment is not a power of two");
Dan Gohmane16829b2010-07-30 21:07:05 +00001449 if (Alignment > Value::MaximumAlignment)
Dan Gohman138aa2a2010-07-28 20:12:04 +00001450 return Error(AlignLoc, "huge alignments are not supported yet");
Chris Lattner3fbb3ab2009-01-05 07:46:05 +00001451 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00001452}
1453
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00001454/// ParseOptionalCommaAlign
Michael Ilseman407a6162012-11-15 22:34:00 +00001455/// ::=
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00001456/// ::= ',' align 4
1457///
1458/// This returns with AteExtraComma set to true if it ate an excess comma at the
1459/// end.
1460bool LLParser::ParseOptionalCommaAlign(unsigned &Alignment,
1461 bool &AteExtraComma) {
1462 AteExtraComma = false;
1463 while (EatIfPresent(lltok::comma)) {
1464 // Metadata at the end is an early exit.
Chris Lattner1d928312009-12-30 05:02:06 +00001465 if (Lex.getKind() == lltok::MetadataVar) {
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00001466 AteExtraComma = true;
1467 return false;
1468 }
Michael Ilseman407a6162012-11-15 22:34:00 +00001469
Chris Lattner093eed12010-04-23 00:50:50 +00001470 if (Lex.getKind() != lltok::kw_align)
1471 return Error(Lex.getLoc(), "expected metadata or 'align'");
Duncan Sandsbf9fc532010-10-21 16:07:10 +00001472
Chris Lattner093eed12010-04-23 00:50:50 +00001473 if (ParseOptionalAlignment(Alignment)) return true;
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00001474 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001475
Devang Patelf633a062009-09-17 23:04:48 +00001476 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00001477}
1478
Eli Friedman47f35132011-07-25 23:16:38 +00001479/// ParseScopeAndOrdering
1480/// if isAtomic: ::= 'singlethread'? AtomicOrdering
1481/// else: ::=
1482///
1483/// This sets Scope and Ordering to the parsed values.
1484bool LLParser::ParseScopeAndOrdering(bool isAtomic, SynchronizationScope &Scope,
1485 AtomicOrdering &Ordering) {
1486 if (!isAtomic)
1487 return false;
1488
1489 Scope = CrossThread;
1490 if (EatIfPresent(lltok::kw_singlethread))
1491 Scope = SingleThread;
1492 switch (Lex.getKind()) {
1493 default: return TokError("Expected ordering on atomic instruction");
1494 case lltok::kw_unordered: Ordering = Unordered; break;
1495 case lltok::kw_monotonic: Ordering = Monotonic; break;
1496 case lltok::kw_acquire: Ordering = Acquire; break;
1497 case lltok::kw_release: Ordering = Release; break;
1498 case lltok::kw_acq_rel: Ordering = AcquireRelease; break;
1499 case lltok::kw_seq_cst: Ordering = SequentiallyConsistent; break;
1500 }
1501 Lex.Lex();
1502 return false;
1503}
1504
Charles Davis1e063d12010-02-12 00:31:15 +00001505/// ParseOptionalStackAlignment
1506/// ::= /* empty */
1507/// ::= 'alignstack' '(' 4 ')'
1508bool LLParser::ParseOptionalStackAlignment(unsigned &Alignment) {
1509 Alignment = 0;
1510 if (!EatIfPresent(lltok::kw_alignstack))
1511 return false;
1512 LocTy ParenLoc = Lex.getLoc();
1513 if (!EatIfPresent(lltok::lparen))
1514 return Error(ParenLoc, "expected '('");
1515 LocTy AlignLoc = Lex.getLoc();
1516 if (ParseUInt32(Alignment)) return true;
1517 ParenLoc = Lex.getLoc();
1518 if (!EatIfPresent(lltok::rparen))
1519 return Error(ParenLoc, "expected ')'");
1520 if (!isPowerOf2_32(Alignment))
1521 return Error(AlignLoc, "stack alignment is not a power of two");
1522 return false;
1523}
Devang Patelf633a062009-09-17 23:04:48 +00001524
Chris Lattner628c13a2009-12-30 05:14:00 +00001525/// ParseIndexList - This parses the index list for an insert/extractvalue
1526/// instruction. This sets AteExtraComma in the case where we eat an extra
1527/// comma at the end of the line and find that it is followed by metadata.
1528/// Clients that don't allow metadata can call the version of this function that
1529/// only takes one argument.
1530///
Chris Lattnerdf986172009-01-02 07:01:27 +00001531/// ParseIndexList
1532/// ::= (',' uint32)+
Chris Lattner628c13a2009-12-30 05:14:00 +00001533///
1534bool LLParser::ParseIndexList(SmallVectorImpl<unsigned> &Indices,
1535 bool &AteExtraComma) {
1536 AteExtraComma = false;
Michael Ilseman407a6162012-11-15 22:34:00 +00001537
Chris Lattnerdf986172009-01-02 07:01:27 +00001538 if (Lex.getKind() != lltok::comma)
1539 return TokError("expected ',' as start of index list");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001540
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001541 while (EatIfPresent(lltok::comma)) {
Chris Lattner628c13a2009-12-30 05:14:00 +00001542 if (Lex.getKind() == lltok::MetadataVar) {
1543 AteExtraComma = true;
1544 return false;
1545 }
Nick Lewycky28815c42010-09-29 23:32:20 +00001546 unsigned Idx = 0;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001547 if (ParseUInt32(Idx)) return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00001548 Indices.push_back(Idx);
1549 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001550
Chris Lattnerdf986172009-01-02 07:01:27 +00001551 return false;
1552}
1553
1554//===----------------------------------------------------------------------===//
1555// Type Parsing.
1556//===----------------------------------------------------------------------===//
1557
Chris Lattner1afcace2011-07-09 17:41:24 +00001558/// ParseType - Parse a type.
1559bool LLParser::ParseType(Type *&Result, bool AllowVoid) {
1560 SMLoc TypeLoc = Lex.getLoc();
Chris Lattnerdf986172009-01-02 07:01:27 +00001561 switch (Lex.getKind()) {
1562 default:
1563 return TokError("expected type");
1564 case lltok::Type:
Chris Lattner1afcace2011-07-09 17:41:24 +00001565 // Type ::= 'float' | 'void' (etc)
Chris Lattnerdf986172009-01-02 07:01:27 +00001566 Result = Lex.getTyVal();
Daniel Dunbara279bc32009-09-20 02:20:51 +00001567 Lex.Lex();
Chris Lattnerdf986172009-01-02 07:01:27 +00001568 break;
Chris Lattnerdf986172009-01-02 07:01:27 +00001569 case lltok::lbrace:
Chris Lattner1afcace2011-07-09 17:41:24 +00001570 // Type ::= StructType
1571 if (ParseAnonStructType(Result, false))
Chris Lattnerdf986172009-01-02 07:01:27 +00001572 return true;
1573 break;
1574 case lltok::lsquare:
Chris Lattner1afcace2011-07-09 17:41:24 +00001575 // Type ::= '[' ... ']'
Chris Lattnerdf986172009-01-02 07:01:27 +00001576 Lex.Lex(); // eat the lsquare.
1577 if (ParseArrayVectorType(Result, false))
1578 return true;
1579 break;
1580 case lltok::less: // Either vector or packed struct.
Chris Lattner1afcace2011-07-09 17:41:24 +00001581 // Type ::= '<' ... '>'
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001582 Lex.Lex();
1583 if (Lex.getKind() == lltok::lbrace) {
Chris Lattner1afcace2011-07-09 17:41:24 +00001584 if (ParseAnonStructType(Result, true) ||
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001585 ParseToken(lltok::greater, "expected '>' at end of packed struct"))
Chris Lattnerdf986172009-01-02 07:01:27 +00001586 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00001587 } else if (ParseArrayVectorType(Result, true))
1588 return true;
1589 break;
Chris Lattner1afcace2011-07-09 17:41:24 +00001590 case lltok::LocalVar: {
1591 // Type ::= %foo
1592 std::pair<Type*, LocTy> &Entry = NamedTypes[Lex.getStrVal()];
Michael Ilseman407a6162012-11-15 22:34:00 +00001593
Chris Lattner1afcace2011-07-09 17:41:24 +00001594 // If the type hasn't been defined yet, create a forward definition and
1595 // remember where that forward def'n was seen (in case it never is defined).
1596 if (Entry.first == 0) {
Chris Lattner3ebb6492011-08-12 18:06:37 +00001597 Entry.first = StructType::create(Context, Lex.getStrVal());
Chris Lattner1afcace2011-07-09 17:41:24 +00001598 Entry.second = Lex.getLoc();
Chris Lattnerdf986172009-01-02 07:01:27 +00001599 }
Chris Lattner1afcace2011-07-09 17:41:24 +00001600 Result = Entry.first;
Chris Lattnerdf986172009-01-02 07:01:27 +00001601 Lex.Lex();
1602 break;
Chris Lattner1afcace2011-07-09 17:41:24 +00001603 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001604
Chris Lattner1afcace2011-07-09 17:41:24 +00001605 case lltok::LocalVarID: {
1606 // Type ::= %4
1607 if (Lex.getUIntVal() >= NumberedTypes.size())
1608 NumberedTypes.resize(Lex.getUIntVal()+1);
1609 std::pair<Type*, LocTy> &Entry = NumberedTypes[Lex.getUIntVal()];
Michael Ilseman407a6162012-11-15 22:34:00 +00001610
Chris Lattner1afcace2011-07-09 17:41:24 +00001611 // If the type hasn't been defined yet, create a forward definition and
1612 // remember where that forward def'n was seen (in case it never is defined).
1613 if (Entry.first == 0) {
Chris Lattner3ebb6492011-08-12 18:06:37 +00001614 Entry.first = StructType::create(Context);
Chris Lattner1afcace2011-07-09 17:41:24 +00001615 Entry.second = Lex.getLoc();
Chris Lattnerdf986172009-01-02 07:01:27 +00001616 }
Chris Lattner1afcace2011-07-09 17:41:24 +00001617 Result = Entry.first;
Chris Lattnerdf986172009-01-02 07:01:27 +00001618 Lex.Lex();
1619 break;
Chris Lattnerdf986172009-01-02 07:01:27 +00001620 }
1621 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001622
1623 // Parse the type suffixes.
Chris Lattnerdf986172009-01-02 07:01:27 +00001624 while (1) {
1625 switch (Lex.getKind()) {
1626 // End of type.
Chris Lattner1afcace2011-07-09 17:41:24 +00001627 default:
1628 if (!AllowVoid && Result->isVoidTy())
1629 return Error(TypeLoc, "void type only allowed for function results");
1630 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00001631
Chris Lattner1afcace2011-07-09 17:41:24 +00001632 // Type ::= Type '*'
Chris Lattnerdf986172009-01-02 07:01:27 +00001633 case lltok::star:
Chris Lattner1afcace2011-07-09 17:41:24 +00001634 if (Result->isLabelTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00001635 return TokError("basic block pointers are invalid");
Chris Lattner1afcace2011-07-09 17:41:24 +00001636 if (Result->isVoidTy())
1637 return TokError("pointers to void are invalid - use i8* instead");
1638 if (!PointerType::isValidElementType(Result))
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001639 return TokError("pointer to this type is invalid");
Chris Lattner1afcace2011-07-09 17:41:24 +00001640 Result = PointerType::getUnqual(Result);
Chris Lattnerdf986172009-01-02 07:01:27 +00001641 Lex.Lex();
1642 break;
1643
Chris Lattner1afcace2011-07-09 17:41:24 +00001644 // Type ::= Type 'addrspace' '(' uint32 ')' '*'
Chris Lattnerdf986172009-01-02 07:01:27 +00001645 case lltok::kw_addrspace: {
Chris Lattner1afcace2011-07-09 17:41:24 +00001646 if (Result->isLabelTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00001647 return TokError("basic block pointers are invalid");
Chris Lattner1afcace2011-07-09 17:41:24 +00001648 if (Result->isVoidTy())
Dan Gohmanb9070d32009-02-09 17:41:21 +00001649 return TokError("pointers to void are invalid; use i8* instead");
Chris Lattner1afcace2011-07-09 17:41:24 +00001650 if (!PointerType::isValidElementType(Result))
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001651 return TokError("pointer to this type is invalid");
Chris Lattnerdf986172009-01-02 07:01:27 +00001652 unsigned AddrSpace;
1653 if (ParseOptionalAddrSpace(AddrSpace) ||
1654 ParseToken(lltok::star, "expected '*' in address space"))
1655 return true;
1656
Chris Lattner1afcace2011-07-09 17:41:24 +00001657 Result = PointerType::get(Result, AddrSpace);
Chris Lattnerdf986172009-01-02 07:01:27 +00001658 break;
1659 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001660
Chris Lattnerdf986172009-01-02 07:01:27 +00001661 /// Types '(' ArgTypeListI ')' OptFuncAttrs
1662 case lltok::lparen:
1663 if (ParseFunctionType(Result))
1664 return true;
1665 break;
1666 }
1667 }
1668}
1669
1670/// ParseParameterList
1671/// ::= '(' ')'
1672/// ::= '(' Arg (',' Arg)* ')'
1673/// Arg
1674/// ::= Type OptionalAttributes Value OptionalAttributes
1675bool LLParser::ParseParameterList(SmallVectorImpl<ParamInfo> &ArgList,
1676 PerFunctionState &PFS) {
1677 if (ParseToken(lltok::lparen, "expected '(' in call"))
1678 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001679
Bill Wendling73dee182013-01-31 00:29:54 +00001680 unsigned AttrIndex = 1;
Chris Lattnerdf986172009-01-02 07:01:27 +00001681 while (Lex.getKind() != lltok::rparen) {
1682 // If this isn't the first argument, we need a comma.
1683 if (!ArgList.empty() &&
1684 ParseToken(lltok::comma, "expected ',' in argument list"))
1685 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001686
Chris Lattnerdf986172009-01-02 07:01:27 +00001687 // Parse the argument.
1688 LocTy ArgLoc;
Chris Lattner1afcace2011-07-09 17:41:24 +00001689 Type *ArgTy = 0;
Bill Wendling702cc912012-10-15 20:35:56 +00001690 AttrBuilder ArgAttrs;
Chris Lattnerdf986172009-01-02 07:01:27 +00001691 Value *V;
Victor Hernandez19715562009-12-03 23:40:58 +00001692 if (ParseType(ArgTy, ArgLoc))
Chris Lattnerdf986172009-01-02 07:01:27 +00001693 return true;
Victor Hernandez19715562009-12-03 23:40:58 +00001694
Chris Lattner287881d2009-12-30 02:11:14 +00001695 // Otherwise, handle normal operands.
Bill Wendlinge01b81b2012-12-04 23:40:58 +00001696 if (ParseOptionalParamAttrs(ArgAttrs) || ParseValue(ArgTy, V, PFS))
Chris Lattner287881d2009-12-30 02:11:14 +00001697 return true;
Bill Wendling73dee182013-01-31 00:29:54 +00001698 ArgList.push_back(ParamInfo(ArgLoc, V, AttributeSet::get(V->getContext(),
1699 AttrIndex++,
1700 ArgAttrs)));
Chris Lattnerdf986172009-01-02 07:01:27 +00001701 }
1702
1703 Lex.Lex(); // Lex the ')'.
1704 return false;
1705}
1706
1707
1708
Chris Lattnerdfd19dd2009-01-05 18:34:07 +00001709/// ParseArgumentList - Parse the argument list for a function type or function
Chris Lattner1afcace2011-07-09 17:41:24 +00001710/// prototype.
Chris Lattnerdf986172009-01-02 07:01:27 +00001711/// ::= '(' ArgTypeListI ')'
1712/// ArgTypeListI
1713/// ::= /*empty*/
1714/// ::= '...'
1715/// ::= ArgTypeList ',' '...'
1716/// ::= ArgType (',' ArgType)*
Chris Lattnerdfd19dd2009-01-05 18:34:07 +00001717///
Chris Lattner1afcace2011-07-09 17:41:24 +00001718bool LLParser::ParseArgumentList(SmallVectorImpl<ArgInfo> &ArgList,
1719 bool &isVarArg){
Chris Lattnerdf986172009-01-02 07:01:27 +00001720 isVarArg = false;
1721 assert(Lex.getKind() == lltok::lparen);
1722 Lex.Lex(); // eat the (.
Daniel Dunbara279bc32009-09-20 02:20:51 +00001723
Chris Lattnerdf986172009-01-02 07:01:27 +00001724 if (Lex.getKind() == lltok::rparen) {
1725 // empty
1726 } else if (Lex.getKind() == lltok::dotdotdot) {
1727 isVarArg = true;
1728 Lex.Lex();
1729 } else {
1730 LocTy TypeLoc = Lex.getLoc();
Chris Lattner1afcace2011-07-09 17:41:24 +00001731 Type *ArgTy = 0;
Bill Wendling702cc912012-10-15 20:35:56 +00001732 AttrBuilder Attrs;
Chris Lattnerdf986172009-01-02 07:01:27 +00001733 std::string Name;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001734
Chris Lattner1afcace2011-07-09 17:41:24 +00001735 if (ParseType(ArgTy) ||
Bill Wendlinge01b81b2012-12-04 23:40:58 +00001736 ParseOptionalParamAttrs(Attrs)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001737
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001738 if (ArgTy->isVoidTy())
Chris Lattnera9a9e072009-03-09 04:49:14 +00001739 return Error(TypeLoc, "argument can not have void type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001740
Chris Lattner7a1b9bd2011-06-17 06:36:20 +00001741 if (Lex.getKind() == lltok::LocalVar) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001742 Name = Lex.getStrVal();
1743 Lex.Lex();
1744 }
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001745
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001746 if (!FunctionType::isValidArgumentType(ArgTy))
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001747 return Error(TypeLoc, "invalid type for function argument");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001748
Bill Wendling73dee182013-01-31 00:29:54 +00001749 unsigned AttrIndex = 1;
Bill Wendlingcb3de0b2012-10-15 04:46:55 +00001750 ArgList.push_back(ArgInfo(TypeLoc, ArgTy,
Bill Wendling73dee182013-01-31 00:29:54 +00001751 AttributeSet::get(ArgTy->getContext(),
1752 AttrIndex++, Attrs), Name));
Daniel Dunbara279bc32009-09-20 02:20:51 +00001753
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001754 while (EatIfPresent(lltok::comma)) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001755 // Handle ... at end of arg list.
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001756 if (EatIfPresent(lltok::dotdotdot)) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001757 isVarArg = true;
Chris Lattnerdf986172009-01-02 07:01:27 +00001758 break;
1759 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001760
Chris Lattnerdf986172009-01-02 07:01:27 +00001761 // Otherwise must be an argument type.
1762 TypeLoc = Lex.getLoc();
Bill Wendlinge01b81b2012-12-04 23:40:58 +00001763 if (ParseType(ArgTy) || ParseOptionalParamAttrs(Attrs)) return true;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001764
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001765 if (ArgTy->isVoidTy())
Chris Lattnera9a9e072009-03-09 04:49:14 +00001766 return Error(TypeLoc, "argument can not have void type");
1767
Chris Lattner7a1b9bd2011-06-17 06:36:20 +00001768 if (Lex.getKind() == lltok::LocalVar) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001769 Name = Lex.getStrVal();
1770 Lex.Lex();
1771 } else {
1772 Name = "";
1773 }
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001774
Chris Lattner1afcace2011-07-09 17:41:24 +00001775 if (!ArgTy->isFirstClassType())
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001776 return Error(TypeLoc, "invalid type for function argument");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001777
Bill Wendlingcb3de0b2012-10-15 04:46:55 +00001778 ArgList.push_back(ArgInfo(TypeLoc, ArgTy,
Bill Wendling73dee182013-01-31 00:29:54 +00001779 AttributeSet::get(ArgTy->getContext(),
1780 AttrIndex++, Attrs),
Bill Wendlingcb3de0b2012-10-15 04:46:55 +00001781 Name));
Chris Lattnerdf986172009-01-02 07:01:27 +00001782 }
1783 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001784
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001785 return ParseToken(lltok::rparen, "expected ')' at end of argument list");
Chris Lattnerdf986172009-01-02 07:01:27 +00001786}
Daniel Dunbara279bc32009-09-20 02:20:51 +00001787
Chris Lattnerdf986172009-01-02 07:01:27 +00001788/// ParseFunctionType
1789/// ::= Type ArgumentList OptionalAttrs
Chris Lattner1afcace2011-07-09 17:41:24 +00001790bool LLParser::ParseFunctionType(Type *&Result) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001791 assert(Lex.getKind() == lltok::lparen);
1792
Chris Lattnerd77d04c2009-01-05 08:04:33 +00001793 if (!FunctionType::isValidReturnType(Result))
1794 return TokError("invalid function return type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001795
Chris Lattner1afcace2011-07-09 17:41:24 +00001796 SmallVector<ArgInfo, 8> ArgList;
Chris Lattnerdf986172009-01-02 07:01:27 +00001797 bool isVarArg;
Chris Lattner1afcace2011-07-09 17:41:24 +00001798 if (ParseArgumentList(ArgList, isVarArg))
Chris Lattnerdf986172009-01-02 07:01:27 +00001799 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001800
Chris Lattnerdf986172009-01-02 07:01:27 +00001801 // Reject names on the arguments lists.
1802 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
1803 if (!ArgList[i].Name.empty())
1804 return Error(ArgList[i].Loc, "argument name invalid in function type");
Bill Wendling73dee182013-01-31 00:29:54 +00001805 if (ArgList[i].Attrs.hasAttributes(i + 1))
Chris Lattnera16546a2011-06-17 17:37:13 +00001806 return Error(ArgList[i].Loc,
1807 "argument attributes invalid in function type");
Chris Lattnerdf986172009-01-02 07:01:27 +00001808 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001809
Jay Foad5fdd6c82011-07-12 14:06:48 +00001810 SmallVector<Type*, 16> ArgListTy;
Chris Lattnerdf986172009-01-02 07:01:27 +00001811 for (unsigned i = 0, e = ArgList.size(); i != e; ++i)
Chris Lattner1afcace2011-07-09 17:41:24 +00001812 ArgListTy.push_back(ArgList[i].Ty);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001813
Chris Lattner1afcace2011-07-09 17:41:24 +00001814 Result = FunctionType::get(Result, ArgListTy, isVarArg);
Chris Lattnerdf986172009-01-02 07:01:27 +00001815 return false;
1816}
1817
Chris Lattner1afcace2011-07-09 17:41:24 +00001818/// ParseAnonStructType - Parse an anonymous struct type, which is inlined into
1819/// other structs.
1820bool LLParser::ParseAnonStructType(Type *&Result, bool Packed) {
1821 SmallVector<Type*, 8> Elts;
1822 if (ParseStructBody(Elts)) return true;
Michael Ilseman407a6162012-11-15 22:34:00 +00001823
Chris Lattner1afcace2011-07-09 17:41:24 +00001824 Result = StructType::get(Context, Elts, Packed);
1825 return false;
1826}
1827
1828/// ParseStructDefinition - Parse a struct in a 'type' definition.
1829bool LLParser::ParseStructDefinition(SMLoc TypeLoc, StringRef Name,
1830 std::pair<Type*, LocTy> &Entry,
1831 Type *&ResultTy) {
1832 // If the type was already defined, diagnose the redefinition.
1833 if (Entry.first && !Entry.second.isValid())
1834 return Error(TypeLoc, "redefinition of type");
Michael Ilseman407a6162012-11-15 22:34:00 +00001835
Chris Lattner1afcace2011-07-09 17:41:24 +00001836 // If we have opaque, just return without filling in the definition for the
1837 // struct. This counts as a definition as far as the .ll file goes.
1838 if (EatIfPresent(lltok::kw_opaque)) {
1839 // This type is being defined, so clear the location to indicate this.
1840 Entry.second = SMLoc();
Michael Ilseman407a6162012-11-15 22:34:00 +00001841
Chris Lattner1afcace2011-07-09 17:41:24 +00001842 // If this type number has never been uttered, create it.
1843 if (Entry.first == 0)
Chris Lattner3ebb6492011-08-12 18:06:37 +00001844 Entry.first = StructType::create(Context, Name);
Chris Lattner1afcace2011-07-09 17:41:24 +00001845 ResultTy = Entry.first;
1846 return false;
1847 }
Michael Ilseman407a6162012-11-15 22:34:00 +00001848
Chris Lattner1afcace2011-07-09 17:41:24 +00001849 // If the type starts with '<', then it is either a packed struct or a vector.
1850 bool isPacked = EatIfPresent(lltok::less);
1851
1852 // If we don't have a struct, then we have a random type alias, which we
1853 // accept for compatibility with old files. These types are not allowed to be
1854 // forward referenced and not allowed to be recursive.
1855 if (Lex.getKind() != lltok::lbrace) {
1856 if (Entry.first)
1857 return Error(TypeLoc, "forward references to non-struct type");
Michael Ilseman407a6162012-11-15 22:34:00 +00001858
Chris Lattner1afcace2011-07-09 17:41:24 +00001859 ResultTy = 0;
1860 if (isPacked)
1861 return ParseArrayVectorType(ResultTy, true);
1862 return ParseType(ResultTy);
1863 }
Michael Ilseman407a6162012-11-15 22:34:00 +00001864
Chris Lattner1afcace2011-07-09 17:41:24 +00001865 // This type is being defined, so clear the location to indicate this.
1866 Entry.second = SMLoc();
Michael Ilseman407a6162012-11-15 22:34:00 +00001867
Chris Lattner1afcace2011-07-09 17:41:24 +00001868 // If this type number has never been uttered, create it.
1869 if (Entry.first == 0)
Chris Lattner3ebb6492011-08-12 18:06:37 +00001870 Entry.first = StructType::create(Context, Name);
Michael Ilseman407a6162012-11-15 22:34:00 +00001871
Chris Lattner1afcace2011-07-09 17:41:24 +00001872 StructType *STy = cast<StructType>(Entry.first);
Michael Ilseman407a6162012-11-15 22:34:00 +00001873
Chris Lattner1afcace2011-07-09 17:41:24 +00001874 SmallVector<Type*, 8> Body;
1875 if (ParseStructBody(Body) ||
1876 (isPacked && ParseToken(lltok::greater, "expected '>' in packed struct")))
1877 return true;
Michael Ilseman407a6162012-11-15 22:34:00 +00001878
Chris Lattner1afcace2011-07-09 17:41:24 +00001879 STy->setBody(Body, isPacked);
1880 ResultTy = STy;
1881 return false;
1882}
1883
1884
Chris Lattnerdf986172009-01-02 07:01:27 +00001885/// ParseStructType: Handles packed and unpacked types. </> parsed elsewhere.
Chris Lattner1afcace2011-07-09 17:41:24 +00001886/// StructType
Chris Lattnerdf986172009-01-02 07:01:27 +00001887/// ::= '{' '}'
Chris Lattner1afcace2011-07-09 17:41:24 +00001888/// ::= '{' Type (',' Type)* '}'
Chris Lattnerdf986172009-01-02 07:01:27 +00001889/// ::= '<' '{' '}' '>'
Chris Lattner1afcace2011-07-09 17:41:24 +00001890/// ::= '<' '{' Type (',' Type)* '}' '>'
1891bool LLParser::ParseStructBody(SmallVectorImpl<Type*> &Body) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001892 assert(Lex.getKind() == lltok::lbrace);
1893 Lex.Lex(); // Consume the '{'
Daniel Dunbara279bc32009-09-20 02:20:51 +00001894
Chris Lattner1afcace2011-07-09 17:41:24 +00001895 // Handle the empty struct.
1896 if (EatIfPresent(lltok::rbrace))
Chris Lattnerdf986172009-01-02 07:01:27 +00001897 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00001898
Chris Lattnera9a9e072009-03-09 04:49:14 +00001899 LocTy EltTyLoc = Lex.getLoc();
Chris Lattner1afcace2011-07-09 17:41:24 +00001900 Type *Ty = 0;
1901 if (ParseType(Ty)) return true;
1902 Body.push_back(Ty);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001903
Chris Lattner1afcace2011-07-09 17:41:24 +00001904 if (!StructType::isValidElementType(Ty))
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001905 return Error(EltTyLoc, "invalid element type for struct");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001906
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001907 while (EatIfPresent(lltok::comma)) {
Chris Lattnera9a9e072009-03-09 04:49:14 +00001908 EltTyLoc = Lex.getLoc();
Chris Lattner1afcace2011-07-09 17:41:24 +00001909 if (ParseType(Ty)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001910
Chris Lattner1afcace2011-07-09 17:41:24 +00001911 if (!StructType::isValidElementType(Ty))
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001912 return Error(EltTyLoc, "invalid element type for struct");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001913
Chris Lattner1afcace2011-07-09 17:41:24 +00001914 Body.push_back(Ty);
Chris Lattnerdf986172009-01-02 07:01:27 +00001915 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001916
Chris Lattner1afcace2011-07-09 17:41:24 +00001917 return ParseToken(lltok::rbrace, "expected '}' at end of struct");
Chris Lattnerdf986172009-01-02 07:01:27 +00001918}
1919
1920/// ParseArrayVectorType - Parse an array or vector type, assuming the first
1921/// token has already been consumed.
Chris Lattner1afcace2011-07-09 17:41:24 +00001922/// Type
Chris Lattnerdf986172009-01-02 07:01:27 +00001923/// ::= '[' APSINTVAL 'x' Types ']'
1924/// ::= '<' APSINTVAL 'x' Types '>'
Chris Lattner1afcace2011-07-09 17:41:24 +00001925bool LLParser::ParseArrayVectorType(Type *&Result, bool isVector) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001926 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned() ||
1927 Lex.getAPSIntVal().getBitWidth() > 64)
1928 return TokError("expected number in address space");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001929
Chris Lattnerdf986172009-01-02 07:01:27 +00001930 LocTy SizeLoc = Lex.getLoc();
1931 uint64_t Size = Lex.getAPSIntVal().getZExtValue();
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001932 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +00001933
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001934 if (ParseToken(lltok::kw_x, "expected 'x' after element count"))
1935 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00001936
1937 LocTy TypeLoc = Lex.getLoc();
Chris Lattner1afcace2011-07-09 17:41:24 +00001938 Type *EltTy = 0;
1939 if (ParseType(EltTy)) return true;
Chris Lattnera9a9e072009-03-09 04:49:14 +00001940
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001941 if (ParseToken(isVector ? lltok::greater : lltok::rsquare,
1942 "expected end of sequential type"))
1943 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001944
Chris Lattnerdf986172009-01-02 07:01:27 +00001945 if (isVector) {
Chris Lattner452e2622009-02-28 18:12:41 +00001946 if (Size == 0)
1947 return Error(SizeLoc, "zero element vector is illegal");
Chris Lattnerdf986172009-01-02 07:01:27 +00001948 if ((unsigned)Size != Size)
1949 return Error(SizeLoc, "size too large for vector");
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001950 if (!VectorType::isValidElementType(EltTy))
Duncan Sands2333e292012-11-13 12:59:33 +00001951 return Error(TypeLoc, "invalid vector element type");
Owen Andersondebcb012009-07-29 22:17:13 +00001952 Result = VectorType::get(EltTy, unsigned(Size));
Chris Lattnerdf986172009-01-02 07:01:27 +00001953 } else {
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001954 if (!ArrayType::isValidElementType(EltTy))
Chris Lattnerdf986172009-01-02 07:01:27 +00001955 return Error(TypeLoc, "invalid array element type");
Chris Lattner1afcace2011-07-09 17:41:24 +00001956 Result = ArrayType::get(EltTy, Size);
Chris Lattnerdf986172009-01-02 07:01:27 +00001957 }
1958 return false;
1959}
1960
1961//===----------------------------------------------------------------------===//
1962// Function Semantic Analysis.
1963//===----------------------------------------------------------------------===//
1964
Chris Lattner09d9ef42009-10-28 03:39:23 +00001965LLParser::PerFunctionState::PerFunctionState(LLParser &p, Function &f,
1966 int functionNumber)
1967 : P(p), F(f), FunctionNumber(functionNumber) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001968
1969 // Insert unnamed arguments into the NumberedVals list.
1970 for (Function::arg_iterator AI = F.arg_begin(), E = F.arg_end();
1971 AI != E; ++AI)
1972 if (!AI->hasName())
1973 NumberedVals.push_back(AI);
1974}
1975
1976LLParser::PerFunctionState::~PerFunctionState() {
1977 // If there were any forward referenced non-basicblock values, delete them.
1978 for (std::map<std::string, std::pair<Value*, LocTy> >::iterator
1979 I = ForwardRefVals.begin(), E = ForwardRefVals.end(); I != E; ++I)
1980 if (!isa<BasicBlock>(I->second.first)) {
Owen Andersonb43eae72009-07-02 17:04:01 +00001981 I->second.first->replaceAllUsesWith(
Owen Anderson9e9a0d52009-07-30 23:03:37 +00001982 UndefValue::get(I->second.first->getType()));
Chris Lattnerdf986172009-01-02 07:01:27 +00001983 delete I->second.first;
1984 I->second.first = 0;
1985 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001986
Chris Lattnerdf986172009-01-02 07:01:27 +00001987 for (std::map<unsigned, std::pair<Value*, LocTy> >::iterator
1988 I = ForwardRefValIDs.begin(), E = ForwardRefValIDs.end(); I != E; ++I)
1989 if (!isa<BasicBlock>(I->second.first)) {
Owen Andersonb43eae72009-07-02 17:04:01 +00001990 I->second.first->replaceAllUsesWith(
Owen Anderson9e9a0d52009-07-30 23:03:37 +00001991 UndefValue::get(I->second.first->getType()));
Chris Lattnerdf986172009-01-02 07:01:27 +00001992 delete I->second.first;
1993 I->second.first = 0;
1994 }
1995}
1996
Chris Lattner09d9ef42009-10-28 03:39:23 +00001997bool LLParser::PerFunctionState::FinishFunction() {
1998 // Check to see if someone took the address of labels in this block.
1999 if (!P.ForwardRefBlockAddresses.empty()) {
2000 ValID FunctionID;
2001 if (!F.getName().empty()) {
2002 FunctionID.Kind = ValID::t_GlobalName;
2003 FunctionID.StrVal = F.getName();
2004 } else {
2005 FunctionID.Kind = ValID::t_GlobalID;
2006 FunctionID.UIntVal = FunctionNumber;
2007 }
Michael Ilseman407a6162012-11-15 22:34:00 +00002008
Chris Lattner09d9ef42009-10-28 03:39:23 +00002009 std::map<ValID, std::vector<std::pair<ValID, GlobalValue*> > >::iterator
2010 FRBAI = P.ForwardRefBlockAddresses.find(FunctionID);
2011 if (FRBAI != P.ForwardRefBlockAddresses.end()) {
2012 // Resolve all these references.
2013 if (P.ResolveForwardRefBlockAddresses(&F, FRBAI->second, this))
2014 return true;
Michael Ilseman407a6162012-11-15 22:34:00 +00002015
Chris Lattner09d9ef42009-10-28 03:39:23 +00002016 P.ForwardRefBlockAddresses.erase(FRBAI);
2017 }
2018 }
Michael Ilseman407a6162012-11-15 22:34:00 +00002019
Chris Lattnerdf986172009-01-02 07:01:27 +00002020 if (!ForwardRefVals.empty())
2021 return P.Error(ForwardRefVals.begin()->second.second,
2022 "use of undefined value '%" + ForwardRefVals.begin()->first +
2023 "'");
2024 if (!ForwardRefValIDs.empty())
2025 return P.Error(ForwardRefValIDs.begin()->second.second,
2026 "use of undefined value '%" +
Benjamin Kramerd1e17032010-09-27 17:42:11 +00002027 Twine(ForwardRefValIDs.begin()->first) + "'");
Chris Lattnerdf986172009-01-02 07:01:27 +00002028 return false;
2029}
2030
2031
2032/// GetVal - Get a value with the specified name or ID, creating a
2033/// forward reference record if needed. This can return null if the value
2034/// exists but does not have the right type.
2035Value *LLParser::PerFunctionState::GetVal(const std::string &Name,
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002036 Type *Ty, LocTy Loc) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002037 // Look this name up in the normal function symbol table.
2038 Value *Val = F.getValueSymbolTable().lookup(Name);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002039
Chris Lattnerdf986172009-01-02 07:01:27 +00002040 // If this is a forward reference for the value, see if we already created a
2041 // forward ref record.
2042 if (Val == 0) {
2043 std::map<std::string, std::pair<Value*, LocTy> >::iterator
2044 I = ForwardRefVals.find(Name);
2045 if (I != ForwardRefVals.end())
2046 Val = I->second.first;
2047 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002048
Chris Lattnerdf986172009-01-02 07:01:27 +00002049 // If we have the value in the symbol table or fwd-ref table, return it.
2050 if (Val) {
2051 if (Val->getType() == Ty) return Val;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00002052 if (Ty->isLabelTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002053 P.Error(Loc, "'%" + Name + "' is not a basic block");
2054 else
2055 P.Error(Loc, "'%" + Name + "' defined with type '" +
Chris Lattner0cd0d882011-06-18 21:18:23 +00002056 getTypeString(Val->getType()) + "'");
Chris Lattnerdf986172009-01-02 07:01:27 +00002057 return 0;
2058 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002059
Chris Lattnerdf986172009-01-02 07:01:27 +00002060 // Don't make placeholders with invalid type.
Chris Lattner1afcace2011-07-09 17:41:24 +00002061 if (!Ty->isFirstClassType() && !Ty->isLabelTy()) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002062 P.Error(Loc, "invalid use of a non-first-class type");
2063 return 0;
2064 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002065
Chris Lattnerdf986172009-01-02 07:01:27 +00002066 // Otherwise, create a new forward reference for this value and remember it.
2067 Value *FwdVal;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00002068 if (Ty->isLabelTy())
Owen Anderson1d0be152009-08-13 21:58:54 +00002069 FwdVal = BasicBlock::Create(F.getContext(), Name, &F);
Chris Lattnerdf986172009-01-02 07:01:27 +00002070 else
2071 FwdVal = new Argument(Ty, Name);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002072
Chris Lattnerdf986172009-01-02 07:01:27 +00002073 ForwardRefVals[Name] = std::make_pair(FwdVal, Loc);
2074 return FwdVal;
2075}
2076
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002077Value *LLParser::PerFunctionState::GetVal(unsigned ID, Type *Ty,
Chris Lattnerdf986172009-01-02 07:01:27 +00002078 LocTy Loc) {
2079 // Look this name up in the normal function symbol table.
2080 Value *Val = ID < NumberedVals.size() ? NumberedVals[ID] : 0;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002081
Chris Lattnerdf986172009-01-02 07:01:27 +00002082 // If this is a forward reference for the value, see if we already created a
2083 // forward ref record.
2084 if (Val == 0) {
2085 std::map<unsigned, std::pair<Value*, LocTy> >::iterator
2086 I = ForwardRefValIDs.find(ID);
2087 if (I != ForwardRefValIDs.end())
2088 Val = I->second.first;
2089 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002090
Chris Lattnerdf986172009-01-02 07:01:27 +00002091 // If we have the value in the symbol table or fwd-ref table, return it.
2092 if (Val) {
2093 if (Val->getType() == Ty) return Val;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00002094 if (Ty->isLabelTy())
Benjamin Kramerd1e17032010-09-27 17:42:11 +00002095 P.Error(Loc, "'%" + Twine(ID) + "' is not a basic block");
Chris Lattnerdf986172009-01-02 07:01:27 +00002096 else
Benjamin Kramerd1e17032010-09-27 17:42:11 +00002097 P.Error(Loc, "'%" + Twine(ID) + "' defined with type '" +
Chris Lattner0cd0d882011-06-18 21:18:23 +00002098 getTypeString(Val->getType()) + "'");
Chris Lattnerdf986172009-01-02 07:01:27 +00002099 return 0;
2100 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002101
Chris Lattner1afcace2011-07-09 17:41:24 +00002102 if (!Ty->isFirstClassType() && !Ty->isLabelTy()) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002103 P.Error(Loc, "invalid use of a non-first-class type");
2104 return 0;
2105 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002106
Chris Lattnerdf986172009-01-02 07:01:27 +00002107 // Otherwise, create a new forward reference for this value and remember it.
2108 Value *FwdVal;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00002109 if (Ty->isLabelTy())
Owen Anderson1d0be152009-08-13 21:58:54 +00002110 FwdVal = BasicBlock::Create(F.getContext(), "", &F);
Chris Lattnerdf986172009-01-02 07:01:27 +00002111 else
2112 FwdVal = new Argument(Ty);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002113
Chris Lattnerdf986172009-01-02 07:01:27 +00002114 ForwardRefValIDs[ID] = std::make_pair(FwdVal, Loc);
2115 return FwdVal;
2116}
2117
2118/// SetInstName - After an instruction is parsed and inserted into its
2119/// basic block, this installs its name.
2120bool LLParser::PerFunctionState::SetInstName(int NameID,
2121 const std::string &NameStr,
2122 LocTy NameLoc, Instruction *Inst) {
2123 // If this instruction has void type, it cannot have a name or ID specified.
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00002124 if (Inst->getType()->isVoidTy()) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002125 if (NameID != -1 || !NameStr.empty())
2126 return P.Error(NameLoc, "instructions returning void cannot have a name");
2127 return false;
2128 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002129
Chris Lattnerdf986172009-01-02 07:01:27 +00002130 // If this was a numbered instruction, verify that the instruction is the
2131 // expected value and resolve any forward references.
2132 if (NameStr.empty()) {
2133 // If neither a name nor an ID was specified, just use the next ID.
2134 if (NameID == -1)
2135 NameID = NumberedVals.size();
Daniel Dunbara279bc32009-09-20 02:20:51 +00002136
Chris Lattnerdf986172009-01-02 07:01:27 +00002137 if (unsigned(NameID) != NumberedVals.size())
2138 return P.Error(NameLoc, "instruction expected to be numbered '%" +
Benjamin Kramerd1e17032010-09-27 17:42:11 +00002139 Twine(NumberedVals.size()) + "'");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002140
Chris Lattnerdf986172009-01-02 07:01:27 +00002141 std::map<unsigned, std::pair<Value*, LocTy> >::iterator FI =
2142 ForwardRefValIDs.find(NameID);
2143 if (FI != ForwardRefValIDs.end()) {
2144 if (FI->second.first->getType() != Inst->getType())
Daniel Dunbara279bc32009-09-20 02:20:51 +00002145 return P.Error(NameLoc, "instruction forward referenced with type '" +
Chris Lattner0cd0d882011-06-18 21:18:23 +00002146 getTypeString(FI->second.first->getType()) + "'");
Chris Lattnerdf986172009-01-02 07:01:27 +00002147 FI->second.first->replaceAllUsesWith(Inst);
Nuno Lopes2b4f28e2009-09-02 15:02:57 +00002148 delete FI->second.first;
Chris Lattnerdf986172009-01-02 07:01:27 +00002149 ForwardRefValIDs.erase(FI);
2150 }
2151
2152 NumberedVals.push_back(Inst);
2153 return false;
2154 }
2155
2156 // Otherwise, the instruction had a name. Resolve forward refs and set it.
2157 std::map<std::string, std::pair<Value*, LocTy> >::iterator
2158 FI = ForwardRefVals.find(NameStr);
2159 if (FI != ForwardRefVals.end()) {
2160 if (FI->second.first->getType() != Inst->getType())
Daniel Dunbara279bc32009-09-20 02:20:51 +00002161 return P.Error(NameLoc, "instruction forward referenced with type '" +
Chris Lattner0cd0d882011-06-18 21:18:23 +00002162 getTypeString(FI->second.first->getType()) + "'");
Chris Lattnerdf986172009-01-02 07:01:27 +00002163 FI->second.first->replaceAllUsesWith(Inst);
Nuno Lopes531552a2009-09-02 14:22:03 +00002164 delete FI->second.first;
Chris Lattnerdf986172009-01-02 07:01:27 +00002165 ForwardRefVals.erase(FI);
2166 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002167
Chris Lattnerdf986172009-01-02 07:01:27 +00002168 // Set the name on the instruction.
2169 Inst->setName(NameStr);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002170
Benjamin Krameraf812352010-10-16 11:28:23 +00002171 if (Inst->getName() != NameStr)
Daniel Dunbara279bc32009-09-20 02:20:51 +00002172 return P.Error(NameLoc, "multiple definition of local value named '" +
Chris Lattnerdf986172009-01-02 07:01:27 +00002173 NameStr + "'");
2174 return false;
2175}
2176
2177/// GetBB - Get a basic block with the specified name or ID, creating a
2178/// forward reference record if needed.
2179BasicBlock *LLParser::PerFunctionState::GetBB(const std::string &Name,
2180 LocTy Loc) {
Owen Anderson1d0be152009-08-13 21:58:54 +00002181 return cast_or_null<BasicBlock>(GetVal(Name,
2182 Type::getLabelTy(F.getContext()), Loc));
Chris Lattnerdf986172009-01-02 07:01:27 +00002183}
2184
2185BasicBlock *LLParser::PerFunctionState::GetBB(unsigned ID, LocTy Loc) {
Owen Anderson1d0be152009-08-13 21:58:54 +00002186 return cast_or_null<BasicBlock>(GetVal(ID,
2187 Type::getLabelTy(F.getContext()), Loc));
Chris Lattnerdf986172009-01-02 07:01:27 +00002188}
2189
2190/// DefineBB - Define the specified basic block, which is either named or
2191/// unnamed. If there is an error, this returns null otherwise it returns
2192/// the block being defined.
2193BasicBlock *LLParser::PerFunctionState::DefineBB(const std::string &Name,
2194 LocTy Loc) {
2195 BasicBlock *BB;
2196 if (Name.empty())
2197 BB = GetBB(NumberedVals.size(), Loc);
2198 else
2199 BB = GetBB(Name, Loc);
2200 if (BB == 0) return 0; // Already diagnosed error.
Daniel Dunbara279bc32009-09-20 02:20:51 +00002201
Chris Lattnerdf986172009-01-02 07:01:27 +00002202 // Move the block to the end of the function. Forward ref'd blocks are
2203 // inserted wherever they happen to be referenced.
2204 F.getBasicBlockList().splice(F.end(), F.getBasicBlockList(), BB);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002205
Chris Lattnerdf986172009-01-02 07:01:27 +00002206 // Remove the block from forward ref sets.
2207 if (Name.empty()) {
2208 ForwardRefValIDs.erase(NumberedVals.size());
2209 NumberedVals.push_back(BB);
2210 } else {
2211 // BB forward references are already in the function symbol table.
2212 ForwardRefVals.erase(Name);
2213 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002214
Chris Lattnerdf986172009-01-02 07:01:27 +00002215 return BB;
2216}
2217
2218//===----------------------------------------------------------------------===//
2219// Constants.
2220//===----------------------------------------------------------------------===//
2221
2222/// ParseValID - Parse an abstract value that doesn't necessarily have a
2223/// type implied. For example, if we parse "4" we don't know what integer type
2224/// it has. The value will later be combined with its type and checked for
Victor Hernandez24e64df2010-01-10 07:14:18 +00002225/// sanity. PFS is used to convert function-local operands of metadata (since
2226/// metadata operands are not just parsed here but also converted to values).
2227/// PFS can be null when we are not parsing metadata values inside a function.
Victor Hernandezbf170d42010-01-05 22:22:14 +00002228bool LLParser::ParseValID(ValID &ID, PerFunctionState *PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002229 ID.Loc = Lex.getLoc();
2230 switch (Lex.getKind()) {
2231 default: return TokError("expected value token");
2232 case lltok::GlobalID: // @42
2233 ID.UIntVal = Lex.getUIntVal();
2234 ID.Kind = ValID::t_GlobalID;
2235 break;
2236 case lltok::GlobalVar: // @foo
2237 ID.StrVal = Lex.getStrVal();
2238 ID.Kind = ValID::t_GlobalName;
2239 break;
2240 case lltok::LocalVarID: // %42
2241 ID.UIntVal = Lex.getUIntVal();
2242 ID.Kind = ValID::t_LocalID;
2243 break;
2244 case lltok::LocalVar: // %foo
Chris Lattnerdf986172009-01-02 07:01:27 +00002245 ID.StrVal = Lex.getStrVal();
2246 ID.Kind = ValID::t_LocalName;
2247 break;
Dan Gohman83448032010-07-14 18:26:50 +00002248 case lltok::exclaim: // !42, !{...}, or !"foo"
2249 return ParseMetadataValue(ID, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00002250 case lltok::APSInt:
Daniel Dunbara279bc32009-09-20 02:20:51 +00002251 ID.APSIntVal = Lex.getAPSIntVal();
Chris Lattnerdf986172009-01-02 07:01:27 +00002252 ID.Kind = ValID::t_APSInt;
2253 break;
2254 case lltok::APFloat:
2255 ID.APFloatVal = Lex.getAPFloatVal();
2256 ID.Kind = ValID::t_APFloat;
2257 break;
2258 case lltok::kw_true:
Owen Anderson5defacc2009-07-31 17:39:07 +00002259 ID.ConstantVal = ConstantInt::getTrue(Context);
Chris Lattnerdf986172009-01-02 07:01:27 +00002260 ID.Kind = ValID::t_Constant;
2261 break;
2262 case lltok::kw_false:
Owen Anderson5defacc2009-07-31 17:39:07 +00002263 ID.ConstantVal = ConstantInt::getFalse(Context);
Chris Lattnerdf986172009-01-02 07:01:27 +00002264 ID.Kind = ValID::t_Constant;
2265 break;
2266 case lltok::kw_null: ID.Kind = ValID::t_Null; break;
2267 case lltok::kw_undef: ID.Kind = ValID::t_Undef; break;
2268 case lltok::kw_zeroinitializer: ID.Kind = ValID::t_Zero; break;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002269
Chris Lattnerdf986172009-01-02 07:01:27 +00002270 case lltok::lbrace: {
2271 // ValID ::= '{' ConstVector '}'
2272 Lex.Lex();
2273 SmallVector<Constant*, 16> Elts;
2274 if (ParseGlobalValueVector(Elts) ||
2275 ParseToken(lltok::rbrace, "expected end of struct constant"))
2276 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002277
Chris Lattner1afcace2011-07-09 17:41:24 +00002278 ID.ConstantStructElts = new Constant*[Elts.size()];
2279 ID.UIntVal = Elts.size();
2280 memcpy(ID.ConstantStructElts, Elts.data(), Elts.size()*sizeof(Elts[0]));
2281 ID.Kind = ValID::t_ConstantStruct;
Chris Lattnerdf986172009-01-02 07:01:27 +00002282 return false;
2283 }
2284 case lltok::less: {
2285 // ValID ::= '<' ConstVector '>' --> Vector.
2286 // ValID ::= '<' '{' ConstVector '}' '>' --> Packed Struct.
2287 Lex.Lex();
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002288 bool isPackedStruct = EatIfPresent(lltok::lbrace);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002289
Chris Lattnerdf986172009-01-02 07:01:27 +00002290 SmallVector<Constant*, 16> Elts;
2291 LocTy FirstEltLoc = Lex.getLoc();
2292 if (ParseGlobalValueVector(Elts) ||
2293 (isPackedStruct &&
2294 ParseToken(lltok::rbrace, "expected end of packed struct")) ||
2295 ParseToken(lltok::greater, "expected end of constant"))
2296 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002297
Chris Lattnerdf986172009-01-02 07:01:27 +00002298 if (isPackedStruct) {
Chris Lattner1afcace2011-07-09 17:41:24 +00002299 ID.ConstantStructElts = new Constant*[Elts.size()];
2300 memcpy(ID.ConstantStructElts, Elts.data(), Elts.size()*sizeof(Elts[0]));
2301 ID.UIntVal = Elts.size();
2302 ID.Kind = ValID::t_PackedConstantStruct;
Chris Lattnerdf986172009-01-02 07:01:27 +00002303 return false;
2304 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002305
Chris Lattnerdf986172009-01-02 07:01:27 +00002306 if (Elts.empty())
2307 return Error(ID.Loc, "constant vector must not be empty");
2308
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00002309 if (!Elts[0]->getType()->isIntegerTy() &&
Nadav Rotem16087692011-12-05 06:29:09 +00002310 !Elts[0]->getType()->isFloatingPointTy() &&
2311 !Elts[0]->getType()->isPointerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002312 return Error(FirstEltLoc,
Nadav Rotem16087692011-12-05 06:29:09 +00002313 "vector elements must have integer, pointer or floating point type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002314
Chris Lattnerdf986172009-01-02 07:01:27 +00002315 // Verify that all the vector elements have the same type.
2316 for (unsigned i = 1, e = Elts.size(); i != e; ++i)
2317 if (Elts[i]->getType() != Elts[0]->getType())
2318 return Error(FirstEltLoc,
Benjamin Kramerd1e17032010-09-27 17:42:11 +00002319 "vector element #" + Twine(i) +
Chris Lattner0cd0d882011-06-18 21:18:23 +00002320 " is not of type '" + getTypeString(Elts[0]->getType()));
Daniel Dunbara279bc32009-09-20 02:20:51 +00002321
Chris Lattner2ca5c862011-02-15 00:14:00 +00002322 ID.ConstantVal = ConstantVector::get(Elts);
Chris Lattnerdf986172009-01-02 07:01:27 +00002323 ID.Kind = ValID::t_Constant;
2324 return false;
2325 }
2326 case lltok::lsquare: { // Array Constant
2327 Lex.Lex();
2328 SmallVector<Constant*, 16> Elts;
2329 LocTy FirstEltLoc = Lex.getLoc();
2330 if (ParseGlobalValueVector(Elts) ||
2331 ParseToken(lltok::rsquare, "expected end of array constant"))
2332 return true;
2333
2334 // Handle empty element.
2335 if (Elts.empty()) {
2336 // Use undef instead of an array because it's inconvenient to determine
2337 // the element type at this point, there being no elements to examine.
Chris Lattner081b5052009-01-05 07:52:51 +00002338 ID.Kind = ValID::t_EmptyArray;
Chris Lattnerdf986172009-01-02 07:01:27 +00002339 return false;
2340 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002341
Chris Lattnerdf986172009-01-02 07:01:27 +00002342 if (!Elts[0]->getType()->isFirstClassType())
Daniel Dunbara279bc32009-09-20 02:20:51 +00002343 return Error(FirstEltLoc, "invalid array element type: " +
Chris Lattner0cd0d882011-06-18 21:18:23 +00002344 getTypeString(Elts[0]->getType()));
Daniel Dunbara279bc32009-09-20 02:20:51 +00002345
Owen Andersondebcb012009-07-29 22:17:13 +00002346 ArrayType *ATy = ArrayType::get(Elts[0]->getType(), Elts.size());
Daniel Dunbara279bc32009-09-20 02:20:51 +00002347
Chris Lattnerdf986172009-01-02 07:01:27 +00002348 // Verify all elements are correct type!
Chris Lattner6d6b3cc2009-01-02 08:49:06 +00002349 for (unsigned i = 0, e = Elts.size(); i != e; ++i) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002350 if (Elts[i]->getType() != Elts[0]->getType())
2351 return Error(FirstEltLoc,
Benjamin Kramerd1e17032010-09-27 17:42:11 +00002352 "array element #" + Twine(i) +
Chris Lattner0cd0d882011-06-18 21:18:23 +00002353 " is not of type '" + getTypeString(Elts[0]->getType()));
Chris Lattnerdf986172009-01-02 07:01:27 +00002354 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002355
Jay Foad26701082011-06-22 09:24:39 +00002356 ID.ConstantVal = ConstantArray::get(ATy, Elts);
Chris Lattnerdf986172009-01-02 07:01:27 +00002357 ID.Kind = ValID::t_Constant;
2358 return false;
2359 }
2360 case lltok::kw_c: // c "foo"
2361 Lex.Lex();
Chris Lattner18c7f802012-02-05 02:29:43 +00002362 ID.ConstantVal = ConstantDataArray::getString(Context, Lex.getStrVal(),
2363 false);
Chris Lattnerdf986172009-01-02 07:01:27 +00002364 if (ParseToken(lltok::StringConstant, "expected string")) return true;
2365 ID.Kind = ValID::t_Constant;
2366 return false;
2367
2368 case lltok::kw_asm: {
Chad Rosier27d844f2013-02-14 20:44:07 +00002369 // ValID ::= 'asm' SideEffect? AlignStack? IntelDialect? STRINGCONSTANT ','
2370 // STRINGCONSTANT
Chad Rosier581600b2012-09-05 19:00:49 +00002371 bool HasSideEffect, AlignStack, AsmDialect;
Chris Lattnerdf986172009-01-02 07:01:27 +00002372 Lex.Lex();
2373 if (ParseOptionalToken(lltok::kw_sideeffect, HasSideEffect) ||
Dale Johannesen8ba2d5b2009-10-21 23:28:00 +00002374 ParseOptionalToken(lltok::kw_alignstack, AlignStack) ||
Chad Rosier581600b2012-09-05 19:00:49 +00002375 ParseOptionalToken(lltok::kw_inteldialect, AsmDialect) ||
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002376 ParseStringConstant(ID.StrVal) ||
2377 ParseToken(lltok::comma, "expected comma in inline asm expression") ||
Chris Lattnerdf986172009-01-02 07:01:27 +00002378 ParseToken(lltok::StringConstant, "expected constraint string"))
2379 return true;
2380 ID.StrVal2 = Lex.getStrVal();
Chad Rosier36547342012-09-05 00:08:17 +00002381 ID.UIntVal = unsigned(HasSideEffect) | (unsigned(AlignStack)<<1) |
Chad Rosier581600b2012-09-05 19:00:49 +00002382 (unsigned(AsmDialect)<<2);
Chris Lattnerdf986172009-01-02 07:01:27 +00002383 ID.Kind = ValID::t_InlineAsm;
2384 return false;
2385 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002386
Chris Lattner09d9ef42009-10-28 03:39:23 +00002387 case lltok::kw_blockaddress: {
2388 // ValID ::= 'blockaddress' '(' @foo ',' %bar ')'
2389 Lex.Lex();
2390
2391 ValID Fn, Label;
Michael Ilseman407a6162012-11-15 22:34:00 +00002392
Chris Lattner09d9ef42009-10-28 03:39:23 +00002393 if (ParseToken(lltok::lparen, "expected '(' in block address expression") ||
2394 ParseValID(Fn) ||
2395 ParseToken(lltok::comma, "expected comma in block address expression")||
2396 ParseValID(Label) ||
2397 ParseToken(lltok::rparen, "expected ')' in block address expression"))
2398 return true;
Michael Ilseman407a6162012-11-15 22:34:00 +00002399
Chris Lattner09d9ef42009-10-28 03:39:23 +00002400 if (Fn.Kind != ValID::t_GlobalID && Fn.Kind != ValID::t_GlobalName)
2401 return Error(Fn.Loc, "expected function name in blockaddress");
Chris Lattnercdfc9402009-11-01 01:27:45 +00002402 if (Label.Kind != ValID::t_LocalID && Label.Kind != ValID::t_LocalName)
Chris Lattner09d9ef42009-10-28 03:39:23 +00002403 return Error(Label.Loc, "expected basic block name in blockaddress");
Michael Ilseman407a6162012-11-15 22:34:00 +00002404
Chris Lattner09d9ef42009-10-28 03:39:23 +00002405 // Make a global variable as a placeholder for this reference.
2406 GlobalVariable *FwdRef = new GlobalVariable(*M, Type::getInt8Ty(Context),
2407 false, GlobalValue::InternalLinkage,
2408 0, "");
2409 ForwardRefBlockAddresses[Fn].push_back(std::make_pair(Label, FwdRef));
2410 ID.ConstantVal = FwdRef;
2411 ID.Kind = ValID::t_Constant;
2412 return false;
2413 }
Michael Ilseman407a6162012-11-15 22:34:00 +00002414
Chris Lattnerdf986172009-01-02 07:01:27 +00002415 case lltok::kw_trunc:
2416 case lltok::kw_zext:
2417 case lltok::kw_sext:
2418 case lltok::kw_fptrunc:
2419 case lltok::kw_fpext:
2420 case lltok::kw_bitcast:
2421 case lltok::kw_uitofp:
2422 case lltok::kw_sitofp:
2423 case lltok::kw_fptoui:
Daniel Dunbara279bc32009-09-20 02:20:51 +00002424 case lltok::kw_fptosi:
Chris Lattnerdf986172009-01-02 07:01:27 +00002425 case lltok::kw_inttoptr:
Daniel Dunbara279bc32009-09-20 02:20:51 +00002426 case lltok::kw_ptrtoint: {
Chris Lattnerdf986172009-01-02 07:01:27 +00002427 unsigned Opc = Lex.getUIntVal();
Chris Lattner1afcace2011-07-09 17:41:24 +00002428 Type *DestTy = 0;
Chris Lattnerdf986172009-01-02 07:01:27 +00002429 Constant *SrcVal;
2430 Lex.Lex();
2431 if (ParseToken(lltok::lparen, "expected '(' after constantexpr cast") ||
2432 ParseGlobalTypeAndValue(SrcVal) ||
Dan Gohman24b108b2009-06-15 21:52:11 +00002433 ParseToken(lltok::kw_to, "expected 'to' in constantexpr cast") ||
Chris Lattnerdf986172009-01-02 07:01:27 +00002434 ParseType(DestTy) ||
2435 ParseToken(lltok::rparen, "expected ')' at end of constantexpr cast"))
2436 return true;
2437 if (!CastInst::castIsValid((Instruction::CastOps)Opc, SrcVal, DestTy))
2438 return Error(ID.Loc, "invalid cast opcode for cast from '" +
Chris Lattner0cd0d882011-06-18 21:18:23 +00002439 getTypeString(SrcVal->getType()) + "' to '" +
2440 getTypeString(DestTy) + "'");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002441 ID.ConstantVal = ConstantExpr::getCast((Instruction::CastOps)Opc,
Owen Andersonfba933c2009-07-01 23:57:11 +00002442 SrcVal, DestTy);
Chris Lattnerdf986172009-01-02 07:01:27 +00002443 ID.Kind = ValID::t_Constant;
2444 return false;
2445 }
2446 case lltok::kw_extractvalue: {
2447 Lex.Lex();
2448 Constant *Val;
2449 SmallVector<unsigned, 4> Indices;
2450 if (ParseToken(lltok::lparen, "expected '(' in extractvalue constantexpr")||
2451 ParseGlobalTypeAndValue(Val) ||
2452 ParseIndexList(Indices) ||
2453 ParseToken(lltok::rparen, "expected ')' in extractvalue constantexpr"))
2454 return true;
Devang Patele8bc45a2009-11-03 19:06:07 +00002455
Chris Lattnerfdfeb692010-02-12 20:49:41 +00002456 if (!Val->getType()->isAggregateType())
2457 return Error(ID.Loc, "extractvalue operand must be aggregate type");
Jay Foadfc6d3a42011-07-13 10:26:04 +00002458 if (!ExtractValueInst::getIndexedType(Val->getType(), Indices))
Chris Lattnerdf986172009-01-02 07:01:27 +00002459 return Error(ID.Loc, "invalid indices for extractvalue");
Jay Foadfc6d3a42011-07-13 10:26:04 +00002460 ID.ConstantVal = ConstantExpr::getExtractValue(Val, Indices);
Chris Lattnerdf986172009-01-02 07:01:27 +00002461 ID.Kind = ValID::t_Constant;
2462 return false;
2463 }
2464 case lltok::kw_insertvalue: {
2465 Lex.Lex();
2466 Constant *Val0, *Val1;
2467 SmallVector<unsigned, 4> Indices;
2468 if (ParseToken(lltok::lparen, "expected '(' in insertvalue constantexpr")||
2469 ParseGlobalTypeAndValue(Val0) ||
2470 ParseToken(lltok::comma, "expected comma in insertvalue constantexpr")||
2471 ParseGlobalTypeAndValue(Val1) ||
2472 ParseIndexList(Indices) ||
2473 ParseToken(lltok::rparen, "expected ')' in insertvalue constantexpr"))
2474 return true;
Chris Lattnerfdfeb692010-02-12 20:49:41 +00002475 if (!Val0->getType()->isAggregateType())
2476 return Error(ID.Loc, "insertvalue operand must be aggregate type");
Jay Foadfc6d3a42011-07-13 10:26:04 +00002477 if (!ExtractValueInst::getIndexedType(Val0->getType(), Indices))
Chris Lattnerdf986172009-01-02 07:01:27 +00002478 return Error(ID.Loc, "invalid indices for insertvalue");
Jay Foadfc6d3a42011-07-13 10:26:04 +00002479 ID.ConstantVal = ConstantExpr::getInsertValue(Val0, Val1, Indices);
Chris Lattnerdf986172009-01-02 07:01:27 +00002480 ID.Kind = ValID::t_Constant;
2481 return false;
2482 }
2483 case lltok::kw_icmp:
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00002484 case lltok::kw_fcmp: {
Chris Lattnerdf986172009-01-02 07:01:27 +00002485 unsigned PredVal, Opc = Lex.getUIntVal();
2486 Constant *Val0, *Val1;
2487 Lex.Lex();
2488 if (ParseCmpPredicate(PredVal, Opc) ||
2489 ParseToken(lltok::lparen, "expected '(' in compare constantexpr") ||
2490 ParseGlobalTypeAndValue(Val0) ||
2491 ParseToken(lltok::comma, "expected comma in compare constantexpr") ||
2492 ParseGlobalTypeAndValue(Val1) ||
2493 ParseToken(lltok::rparen, "expected ')' in compare constantexpr"))
2494 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002495
Chris Lattnerdf986172009-01-02 07:01:27 +00002496 if (Val0->getType() != Val1->getType())
2497 return Error(ID.Loc, "compare operands must have the same type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002498
Chris Lattnerdf986172009-01-02 07:01:27 +00002499 CmpInst::Predicate Pred = (CmpInst::Predicate)PredVal;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002500
Chris Lattnerdf986172009-01-02 07:01:27 +00002501 if (Opc == Instruction::FCmp) {
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00002502 if (!Val0->getType()->isFPOrFPVectorTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002503 return Error(ID.Loc, "fcmp requires floating point operands");
Owen Andersonbaf3c402009-07-29 18:55:55 +00002504 ID.ConstantVal = ConstantExpr::getFCmp(Pred, Val0, Val1);
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00002505 } else {
2506 assert(Opc == Instruction::ICmp && "Unexpected opcode for CmpInst!");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00002507 if (!Val0->getType()->isIntOrIntVectorTy() &&
Nadav Rotem16087692011-12-05 06:29:09 +00002508 !Val0->getType()->getScalarType()->isPointerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002509 return Error(ID.Loc, "icmp requires pointer or integer operands");
Owen Andersonbaf3c402009-07-29 18:55:55 +00002510 ID.ConstantVal = ConstantExpr::getICmp(Pred, Val0, Val1);
Chris Lattnerdf986172009-01-02 07:01:27 +00002511 }
2512 ID.Kind = ValID::t_Constant;
2513 return false;
2514 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002515
Chris Lattnerdf986172009-01-02 07:01:27 +00002516 // Binary Operators.
2517 case lltok::kw_add:
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002518 case lltok::kw_fadd:
Chris Lattnerdf986172009-01-02 07:01:27 +00002519 case lltok::kw_sub:
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002520 case lltok::kw_fsub:
Chris Lattnerdf986172009-01-02 07:01:27 +00002521 case lltok::kw_mul:
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002522 case lltok::kw_fmul:
Chris Lattnerdf986172009-01-02 07:01:27 +00002523 case lltok::kw_udiv:
2524 case lltok::kw_sdiv:
2525 case lltok::kw_fdiv:
2526 case lltok::kw_urem:
2527 case lltok::kw_srem:
Chris Lattnerf067d582011-02-07 16:40:21 +00002528 case lltok::kw_frem:
2529 case lltok::kw_shl:
2530 case lltok::kw_lshr:
2531 case lltok::kw_ashr: {
Dan Gohman59858cf2009-07-27 16:11:46 +00002532 bool NUW = false;
2533 bool NSW = false;
2534 bool Exact = false;
Chris Lattnerdf986172009-01-02 07:01:27 +00002535 unsigned Opc = Lex.getUIntVal();
2536 Constant *Val0, *Val1;
2537 Lex.Lex();
Dan Gohman59858cf2009-07-27 16:11:46 +00002538 LocTy ModifierLoc = Lex.getLoc();
Chris Lattnerf067d582011-02-07 16:40:21 +00002539 if (Opc == Instruction::Add || Opc == Instruction::Sub ||
2540 Opc == Instruction::Mul || Opc == Instruction::Shl) {
Dan Gohman59858cf2009-07-27 16:11:46 +00002541 if (EatIfPresent(lltok::kw_nuw))
2542 NUW = true;
2543 if (EatIfPresent(lltok::kw_nsw)) {
2544 NSW = true;
2545 if (EatIfPresent(lltok::kw_nuw))
2546 NUW = true;
2547 }
Chris Lattnerf067d582011-02-07 16:40:21 +00002548 } else if (Opc == Instruction::SDiv || Opc == Instruction::UDiv ||
2549 Opc == Instruction::LShr || Opc == Instruction::AShr) {
Dan Gohman59858cf2009-07-27 16:11:46 +00002550 if (EatIfPresent(lltok::kw_exact))
2551 Exact = true;
2552 }
Chris Lattnerdf986172009-01-02 07:01:27 +00002553 if (ParseToken(lltok::lparen, "expected '(' in binary constantexpr") ||
2554 ParseGlobalTypeAndValue(Val0) ||
2555 ParseToken(lltok::comma, "expected comma in binary constantexpr") ||
2556 ParseGlobalTypeAndValue(Val1) ||
2557 ParseToken(lltok::rparen, "expected ')' in binary constantexpr"))
2558 return true;
2559 if (Val0->getType() != Val1->getType())
2560 return Error(ID.Loc, "operands of constexpr must have same type");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00002561 if (!Val0->getType()->isIntOrIntVectorTy()) {
Dan Gohman59858cf2009-07-27 16:11:46 +00002562 if (NUW)
2563 return Error(ModifierLoc, "nuw only applies to integer operations");
2564 if (NSW)
2565 return Error(ModifierLoc, "nsw only applies to integer operations");
2566 }
Dan Gohman1eaac532010-05-03 22:44:19 +00002567 // Check that the type is valid for the operator.
2568 switch (Opc) {
2569 case Instruction::Add:
2570 case Instruction::Sub:
2571 case Instruction::Mul:
2572 case Instruction::UDiv:
2573 case Instruction::SDiv:
2574 case Instruction::URem:
2575 case Instruction::SRem:
Chris Lattnerf067d582011-02-07 16:40:21 +00002576 case Instruction::Shl:
2577 case Instruction::AShr:
2578 case Instruction::LShr:
Dan Gohman1eaac532010-05-03 22:44:19 +00002579 if (!Val0->getType()->isIntOrIntVectorTy())
2580 return Error(ID.Loc, "constexpr requires integer operands");
2581 break;
2582 case Instruction::FAdd:
2583 case Instruction::FSub:
2584 case Instruction::FMul:
2585 case Instruction::FDiv:
2586 case Instruction::FRem:
2587 if (!Val0->getType()->isFPOrFPVectorTy())
2588 return Error(ID.Loc, "constexpr requires fp operands");
2589 break;
2590 default: llvm_unreachable("Unknown binary operator!");
2591 }
Dan Gohmanf8dbee72009-09-07 23:54:19 +00002592 unsigned Flags = 0;
2593 if (NUW) Flags |= OverflowingBinaryOperator::NoUnsignedWrap;
2594 if (NSW) Flags |= OverflowingBinaryOperator::NoSignedWrap;
Chris Lattner35bda892011-02-06 21:44:57 +00002595 if (Exact) Flags |= PossiblyExactOperator::IsExact;
Dan Gohmanf8dbee72009-09-07 23:54:19 +00002596 Constant *C = ConstantExpr::get(Opc, Val0, Val1, Flags);
Dan Gohman59858cf2009-07-27 16:11:46 +00002597 ID.ConstantVal = C;
Chris Lattnerdf986172009-01-02 07:01:27 +00002598 ID.Kind = ValID::t_Constant;
2599 return false;
2600 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002601
Chris Lattnerdf986172009-01-02 07:01:27 +00002602 // Logical Operations
Chris Lattnerdf986172009-01-02 07:01:27 +00002603 case lltok::kw_and:
2604 case lltok::kw_or:
2605 case lltok::kw_xor: {
2606 unsigned Opc = Lex.getUIntVal();
2607 Constant *Val0, *Val1;
2608 Lex.Lex();
2609 if (ParseToken(lltok::lparen, "expected '(' in logical constantexpr") ||
2610 ParseGlobalTypeAndValue(Val0) ||
2611 ParseToken(lltok::comma, "expected comma in logical constantexpr") ||
2612 ParseGlobalTypeAndValue(Val1) ||
2613 ParseToken(lltok::rparen, "expected ')' in logical constantexpr"))
2614 return true;
2615 if (Val0->getType() != Val1->getType())
2616 return Error(ID.Loc, "operands of constexpr must have same type");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00002617 if (!Val0->getType()->isIntOrIntVectorTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002618 return Error(ID.Loc,
2619 "constexpr requires integer or integer vector operands");
Owen Andersonbaf3c402009-07-29 18:55:55 +00002620 ID.ConstantVal = ConstantExpr::get(Opc, Val0, Val1);
Chris Lattnerdf986172009-01-02 07:01:27 +00002621 ID.Kind = ValID::t_Constant;
2622 return false;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002623 }
2624
Chris Lattnerdf986172009-01-02 07:01:27 +00002625 case lltok::kw_getelementptr:
2626 case lltok::kw_shufflevector:
2627 case lltok::kw_insertelement:
2628 case lltok::kw_extractelement:
2629 case lltok::kw_select: {
2630 unsigned Opc = Lex.getUIntVal();
2631 SmallVector<Constant*, 16> Elts;
Dan Gohmandd8004d2009-07-27 21:53:46 +00002632 bool InBounds = false;
Chris Lattnerdf986172009-01-02 07:01:27 +00002633 Lex.Lex();
Dan Gohmandd8004d2009-07-27 21:53:46 +00002634 if (Opc == Instruction::GetElementPtr)
Dan Gohmandcb40a32009-07-29 15:58:36 +00002635 InBounds = EatIfPresent(lltok::kw_inbounds);
Chris Lattnerdf986172009-01-02 07:01:27 +00002636 if (ParseToken(lltok::lparen, "expected '(' in constantexpr") ||
2637 ParseGlobalValueVector(Elts) ||
2638 ParseToken(lltok::rparen, "expected ')' in constantexpr"))
2639 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002640
Chris Lattnerdf986172009-01-02 07:01:27 +00002641 if (Opc == Instruction::GetElementPtr) {
Nadav Rotem16087692011-12-05 06:29:09 +00002642 if (Elts.size() == 0 ||
2643 !Elts[0]->getType()->getScalarType()->isPointerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002644 return Error(ID.Loc, "getelementptr requires pointer operand");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002645
Jay Foaddab3d292011-07-21 14:31:17 +00002646 ArrayRef<Constant *> Indices(Elts.begin() + 1, Elts.end());
Jay Foada9203102011-07-25 09:48:08 +00002647 if (!GetElementPtrInst::getIndexedType(Elts[0]->getType(), Indices))
Chris Lattnerdf986172009-01-02 07:01:27 +00002648 return Error(ID.Loc, "invalid indices for getelementptr");
Jay Foad4b5e2072011-07-21 15:15:37 +00002649 ID.ConstantVal = ConstantExpr::getGetElementPtr(Elts[0], Indices,
2650 InBounds);
Chris Lattnerdf986172009-01-02 07:01:27 +00002651 } else if (Opc == Instruction::Select) {
2652 if (Elts.size() != 3)
2653 return Error(ID.Loc, "expected three operands to select");
2654 if (const char *Reason = SelectInst::areInvalidOperands(Elts[0], Elts[1],
2655 Elts[2]))
2656 return Error(ID.Loc, Reason);
Owen Andersonbaf3c402009-07-29 18:55:55 +00002657 ID.ConstantVal = ConstantExpr::getSelect(Elts[0], Elts[1], Elts[2]);
Chris Lattnerdf986172009-01-02 07:01:27 +00002658 } else if (Opc == Instruction::ShuffleVector) {
2659 if (Elts.size() != 3)
2660 return Error(ID.Loc, "expected three operands to shufflevector");
2661 if (!ShuffleVectorInst::isValidOperands(Elts[0], Elts[1], Elts[2]))
2662 return Error(ID.Loc, "invalid operands to shufflevector");
Owen Andersonfba933c2009-07-01 23:57:11 +00002663 ID.ConstantVal =
Owen Andersonbaf3c402009-07-29 18:55:55 +00002664 ConstantExpr::getShuffleVector(Elts[0], Elts[1],Elts[2]);
Chris Lattnerdf986172009-01-02 07:01:27 +00002665 } else if (Opc == Instruction::ExtractElement) {
2666 if (Elts.size() != 2)
2667 return Error(ID.Loc, "expected two operands to extractelement");
2668 if (!ExtractElementInst::isValidOperands(Elts[0], Elts[1]))
2669 return Error(ID.Loc, "invalid extractelement operands");
Owen Andersonbaf3c402009-07-29 18:55:55 +00002670 ID.ConstantVal = ConstantExpr::getExtractElement(Elts[0], Elts[1]);
Chris Lattnerdf986172009-01-02 07:01:27 +00002671 } else {
2672 assert(Opc == Instruction::InsertElement && "Unknown opcode");
2673 if (Elts.size() != 3)
2674 return Error(ID.Loc, "expected three operands to insertelement");
2675 if (!InsertElementInst::isValidOperands(Elts[0], Elts[1], Elts[2]))
2676 return Error(ID.Loc, "invalid insertelement operands");
Owen Andersonfba933c2009-07-01 23:57:11 +00002677 ID.ConstantVal =
Owen Andersonbaf3c402009-07-29 18:55:55 +00002678 ConstantExpr::getInsertElement(Elts[0], Elts[1],Elts[2]);
Chris Lattnerdf986172009-01-02 07:01:27 +00002679 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002680
Chris Lattnerdf986172009-01-02 07:01:27 +00002681 ID.Kind = ValID::t_Constant;
2682 return false;
2683 }
2684 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002685
Chris Lattnerdf986172009-01-02 07:01:27 +00002686 Lex.Lex();
2687 return false;
2688}
2689
2690/// ParseGlobalValue - Parse a global value with the specified type.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002691bool LLParser::ParseGlobalValue(Type *Ty, Constant *&C) {
Victor Hernandez92f238d2010-01-11 22:31:58 +00002692 C = 0;
Chris Lattnerdf986172009-01-02 07:01:27 +00002693 ValID ID;
Victor Hernandez92f238d2010-01-11 22:31:58 +00002694 Value *V = NULL;
2695 bool Parsed = ParseValID(ID) ||
2696 ConvertValIDToValue(Ty, ID, V, NULL);
2697 if (V && !(C = dyn_cast<Constant>(V)))
2698 return Error(ID.Loc, "global values must be constants");
2699 return Parsed;
Chris Lattnerdf986172009-01-02 07:01:27 +00002700}
2701
Victor Hernandez92f238d2010-01-11 22:31:58 +00002702bool LLParser::ParseGlobalTypeAndValue(Constant *&V) {
Chris Lattner1afcace2011-07-09 17:41:24 +00002703 Type *Ty = 0;
2704 return ParseType(Ty) ||
2705 ParseGlobalValue(Ty, V);
Victor Hernandez92f238d2010-01-11 22:31:58 +00002706}
2707
2708/// ParseGlobalValueVector
2709/// ::= /*empty*/
2710/// ::= TypeAndValue (',' TypeAndValue)*
2711bool LLParser::ParseGlobalValueVector(SmallVectorImpl<Constant*> &Elts) {
2712 // Empty list.
2713 if (Lex.getKind() == lltok::rbrace ||
2714 Lex.getKind() == lltok::rsquare ||
2715 Lex.getKind() == lltok::greater ||
2716 Lex.getKind() == lltok::rparen)
2717 return false;
2718
2719 Constant *C;
2720 if (ParseGlobalTypeAndValue(C)) return true;
2721 Elts.push_back(C);
2722
2723 while (EatIfPresent(lltok::comma)) {
2724 if (ParseGlobalTypeAndValue(C)) return true;
2725 Elts.push_back(C);
2726 }
2727
2728 return false;
2729}
2730
Dan Gohman309b3af2010-08-24 02:24:03 +00002731bool LLParser::ParseMetadataListValue(ValID &ID, PerFunctionState *PFS) {
2732 assert(Lex.getKind() == lltok::lbrace);
2733 Lex.Lex();
2734
2735 SmallVector<Value*, 16> Elts;
2736 if (ParseMDNodeVector(Elts, PFS) ||
2737 ParseToken(lltok::rbrace, "expected end of metadata node"))
2738 return true;
2739
Jay Foadec9186b2011-04-21 19:59:31 +00002740 ID.MDNodeVal = MDNode::get(Context, Elts);
Dan Gohman309b3af2010-08-24 02:24:03 +00002741 ID.Kind = ValID::t_MDNode;
2742 return false;
2743}
2744
Dan Gohman83448032010-07-14 18:26:50 +00002745/// ParseMetadataValue
2746/// ::= !42
2747/// ::= !{...}
2748/// ::= !"string"
2749bool LLParser::ParseMetadataValue(ValID &ID, PerFunctionState *PFS) {
2750 assert(Lex.getKind() == lltok::exclaim);
2751 Lex.Lex();
2752
2753 // MDNode:
2754 // !{ ... }
Dan Gohman309b3af2010-08-24 02:24:03 +00002755 if (Lex.getKind() == lltok::lbrace)
2756 return ParseMetadataListValue(ID, PFS);
Dan Gohman83448032010-07-14 18:26:50 +00002757
2758 // Standalone metadata reference
2759 // !42
2760 if (Lex.getKind() == lltok::APSInt) {
2761 if (ParseMDNodeID(ID.MDNodeVal)) return true;
2762 ID.Kind = ValID::t_MDNode;
2763 return false;
2764 }
2765
2766 // MDString:
2767 // ::= '!' STRINGCONSTANT
2768 if (ParseMDString(ID.MDStringVal)) return true;
2769 ID.Kind = ValID::t_MDString;
2770 return false;
2771}
2772
Victor Hernandez92f238d2010-01-11 22:31:58 +00002773
2774//===----------------------------------------------------------------------===//
2775// Function Parsing.
2776//===----------------------------------------------------------------------===//
2777
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002778bool LLParser::ConvertValIDToValue(Type *Ty, ValID &ID, Value *&V,
Victor Hernandez92f238d2010-01-11 22:31:58 +00002779 PerFunctionState *PFS) {
Duncan Sands1df98592010-02-16 11:11:14 +00002780 if (Ty->isFunctionTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002781 return Error(ID.Loc, "functions are not values, refer to them as pointers");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002782
Chris Lattnerdf986172009-01-02 07:01:27 +00002783 switch (ID.Kind) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002784 case ValID::t_LocalID:
Victor Hernandez92f238d2010-01-11 22:31:58 +00002785 if (!PFS) return Error(ID.Loc, "invalid use of function-local name");
2786 V = PFS->GetVal(ID.UIntVal, Ty, ID.Loc);
2787 return (V == 0);
Chris Lattnerdf986172009-01-02 07:01:27 +00002788 case ValID::t_LocalName:
Victor Hernandez92f238d2010-01-11 22:31:58 +00002789 if (!PFS) return Error(ID.Loc, "invalid use of function-local name");
2790 V = PFS->GetVal(ID.StrVal, Ty, ID.Loc);
2791 return (V == 0);
2792 case ValID::t_InlineAsm: {
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002793 PointerType *PTy = dyn_cast<PointerType>(Ty);
Michael Ilseman407a6162012-11-15 22:34:00 +00002794 FunctionType *FTy =
Victor Hernandez92f238d2010-01-11 22:31:58 +00002795 PTy ? dyn_cast<FunctionType>(PTy->getElementType()) : 0;
2796 if (!FTy || !InlineAsm::Verify(FTy, ID.StrVal2))
2797 return Error(ID.Loc, "invalid type for inline asm constraint string");
Chad Rosier36547342012-09-05 00:08:17 +00002798 V = InlineAsm::get(FTy, ID.StrVal, ID.StrVal2, ID.UIntVal&1,
Chad Rosier581600b2012-09-05 19:00:49 +00002799 (ID.UIntVal>>1)&1, (InlineAsm::AsmDialect(ID.UIntVal>>2)));
Victor Hernandez92f238d2010-01-11 22:31:58 +00002800 return false;
2801 }
2802 case ValID::t_MDNode:
2803 if (!Ty->isMetadataTy())
2804 return Error(ID.Loc, "metadata value must have metadata type");
2805 V = ID.MDNodeVal;
2806 return false;
2807 case ValID::t_MDString:
2808 if (!Ty->isMetadataTy())
2809 return Error(ID.Loc, "metadata value must have metadata type");
2810 V = ID.MDStringVal;
2811 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00002812 case ValID::t_GlobalName:
2813 V = GetGlobalVal(ID.StrVal, Ty, ID.Loc);
2814 return V == 0;
2815 case ValID::t_GlobalID:
2816 V = GetGlobalVal(ID.UIntVal, Ty, ID.Loc);
2817 return V == 0;
2818 case ValID::t_APSInt:
Duncan Sands1df98592010-02-16 11:11:14 +00002819 if (!Ty->isIntegerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002820 return Error(ID.Loc, "integer constant must have integer type");
Jay Foad40f8f622010-12-07 08:25:19 +00002821 ID.APSIntVal = ID.APSIntVal.extOrTrunc(Ty->getPrimitiveSizeInBits());
Owen Andersoneed707b2009-07-24 23:12:02 +00002822 V = ConstantInt::get(Context, ID.APSIntVal);
Chris Lattnerdf986172009-01-02 07:01:27 +00002823 return false;
2824 case ValID::t_APFloat:
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00002825 if (!Ty->isFloatingPointTy() ||
Chris Lattnerdf986172009-01-02 07:01:27 +00002826 !ConstantFP::isValueValidForType(Ty, ID.APFloatVal))
2827 return Error(ID.Loc, "floating point constant invalid for type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002828
Dan Gohmance163392011-12-17 00:04:22 +00002829 // The lexer has no type info, so builds all half, float, and double FP
2830 // constants as double. Fix this here. Long double does not need this.
2831 if (&ID.APFloatVal.getSemantics() == &APFloat::IEEEdouble) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002832 bool Ignored;
Dan Gohmance163392011-12-17 00:04:22 +00002833 if (Ty->isHalfTy())
2834 ID.APFloatVal.convert(APFloat::IEEEhalf, APFloat::rmNearestTiesToEven,
2835 &Ignored);
2836 else if (Ty->isFloatTy())
2837 ID.APFloatVal.convert(APFloat::IEEEsingle, APFloat::rmNearestTiesToEven,
2838 &Ignored);
Chris Lattnerdf986172009-01-02 07:01:27 +00002839 }
Owen Anderson6f83c9c2009-07-27 20:59:43 +00002840 V = ConstantFP::get(Context, ID.APFloatVal);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002841
Chris Lattner959873d2009-01-05 18:24:23 +00002842 if (V->getType() != Ty)
2843 return Error(ID.Loc, "floating point constant does not have type '" +
Chris Lattner0cd0d882011-06-18 21:18:23 +00002844 getTypeString(Ty) + "'");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002845
Chris Lattnerdf986172009-01-02 07:01:27 +00002846 return false;
2847 case ValID::t_Null:
Duncan Sands1df98592010-02-16 11:11:14 +00002848 if (!Ty->isPointerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002849 return Error(ID.Loc, "null must be a pointer type");
Owen Anderson9e9a0d52009-07-30 23:03:37 +00002850 V = ConstantPointerNull::get(cast<PointerType>(Ty));
Chris Lattnerdf986172009-01-02 07:01:27 +00002851 return false;
2852 case ValID::t_Undef:
Chris Lattnere67c1aa2009-01-05 08:13:38 +00002853 // FIXME: LabelTy should not be a first-class type.
Chris Lattner1afcace2011-07-09 17:41:24 +00002854 if (!Ty->isFirstClassType() || Ty->isLabelTy())
Chris Lattnere67c1aa2009-01-05 08:13:38 +00002855 return Error(ID.Loc, "invalid type for undef constant");
Owen Anderson9e9a0d52009-07-30 23:03:37 +00002856 V = UndefValue::get(Ty);
Chris Lattnerdf986172009-01-02 07:01:27 +00002857 return false;
Chris Lattner081b5052009-01-05 07:52:51 +00002858 case ValID::t_EmptyArray:
Duncan Sands1df98592010-02-16 11:11:14 +00002859 if (!Ty->isArrayTy() || cast<ArrayType>(Ty)->getNumElements() != 0)
Chris Lattner081b5052009-01-05 07:52:51 +00002860 return Error(ID.Loc, "invalid empty array initializer");
Owen Anderson9e9a0d52009-07-30 23:03:37 +00002861 V = UndefValue::get(Ty);
Chris Lattner081b5052009-01-05 07:52:51 +00002862 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00002863 case ValID::t_Zero:
Chris Lattnere67c1aa2009-01-05 08:13:38 +00002864 // FIXME: LabelTy should not be a first-class type.
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00002865 if (!Ty->isFirstClassType() || Ty->isLabelTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002866 return Error(ID.Loc, "invalid type for null constant");
Owen Andersona7235ea2009-07-31 20:28:14 +00002867 V = Constant::getNullValue(Ty);
Chris Lattnerdf986172009-01-02 07:01:27 +00002868 return false;
2869 case ValID::t_Constant:
Chris Lattner61c70e92010-08-28 04:09:24 +00002870 if (ID.ConstantVal->getType() != Ty)
Chris Lattnerdf986172009-01-02 07:01:27 +00002871 return Error(ID.Loc, "constant expression type mismatch");
Chris Lattnerfdfeb692010-02-12 20:49:41 +00002872
Chris Lattnerdf986172009-01-02 07:01:27 +00002873 V = ID.ConstantVal;
2874 return false;
Chris Lattner1afcace2011-07-09 17:41:24 +00002875 case ValID::t_ConstantStruct:
2876 case ValID::t_PackedConstantStruct:
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002877 if (StructType *ST = dyn_cast<StructType>(Ty)) {
Chris Lattner1afcace2011-07-09 17:41:24 +00002878 if (ST->getNumElements() != ID.UIntVal)
2879 return Error(ID.Loc,
2880 "initializer with struct type has wrong # elements");
2881 if (ST->isPacked() != (ID.Kind == ValID::t_PackedConstantStruct))
2882 return Error(ID.Loc, "packed'ness of initializer and type don't match");
Michael Ilseman407a6162012-11-15 22:34:00 +00002883
Chris Lattner1afcace2011-07-09 17:41:24 +00002884 // Verify that the elements are compatible with the structtype.
2885 for (unsigned i = 0, e = ID.UIntVal; i != e; ++i)
2886 if (ID.ConstantStructElts[i]->getType() != ST->getElementType(i))
2887 return Error(ID.Loc, "element " + Twine(i) +
2888 " of struct initializer doesn't match struct element type");
Michael Ilseman407a6162012-11-15 22:34:00 +00002889
Frits van Bommel39b5abf2011-07-18 12:00:32 +00002890 V = ConstantStruct::get(ST, makeArrayRef(ID.ConstantStructElts,
2891 ID.UIntVal));
Chris Lattner1afcace2011-07-09 17:41:24 +00002892 } else
2893 return Error(ID.Loc, "constant expression type mismatch");
2894 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00002895 }
Chandler Carruth732f05c2012-01-10 18:08:01 +00002896 llvm_unreachable("Invalid ValID");
Chris Lattnerdf986172009-01-02 07:01:27 +00002897}
Daniel Dunbara279bc32009-09-20 02:20:51 +00002898
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002899bool LLParser::ParseValue(Type *Ty, Value *&V, PerFunctionState *PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002900 V = 0;
2901 ValID ID;
Chris Lattner1afcace2011-07-09 17:41:24 +00002902 return ParseValID(ID, PFS) ||
2903 ConvertValIDToValue(Ty, ID, V, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00002904}
2905
Chris Lattner1afcace2011-07-09 17:41:24 +00002906bool LLParser::ParseTypeAndValue(Value *&V, PerFunctionState *PFS) {
2907 Type *Ty = 0;
2908 return ParseType(Ty) ||
2909 ParseValue(Ty, V, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00002910}
2911
Chris Lattnerf9be95f2009-10-27 19:13:16 +00002912bool LLParser::ParseTypeAndBasicBlock(BasicBlock *&BB, LocTy &Loc,
2913 PerFunctionState &PFS) {
2914 Value *V;
2915 Loc = Lex.getLoc();
2916 if (ParseTypeAndValue(V, PFS)) return true;
2917 if (!isa<BasicBlock>(V))
2918 return Error(Loc, "expected a basic block");
2919 BB = cast<BasicBlock>(V);
2920 return false;
2921}
2922
2923
Chris Lattnerdf986172009-01-02 07:01:27 +00002924/// FunctionHeader
2925/// ::= OptionalLinkage OptionalVisibility OptionalCallingConv OptRetAttrs
Rafael Espindolabea46262011-01-08 16:42:36 +00002926/// OptUnnamedAddr Type GlobalName '(' ArgList ')' OptFuncAttrs OptSection
Peter Collingbourne1e3037f2013-09-16 01:08:15 +00002927/// OptionalAlign OptGC OptionalPrefix
Chris Lattnerdf986172009-01-02 07:01:27 +00002928bool LLParser::ParseFunctionHeader(Function *&Fn, bool isDefine) {
2929 // Parse the linkage.
2930 LocTy LinkageLoc = Lex.getLoc();
2931 unsigned Linkage;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002932
Kostya Serebryany164b86b2012-01-20 17:56:17 +00002933 unsigned Visibility;
Bill Wendling702cc912012-10-15 20:35:56 +00002934 AttrBuilder RetAttrs;
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00002935 CallingConv::ID CC;
Chris Lattner1afcace2011-07-09 17:41:24 +00002936 Type *RetType = 0;
Chris Lattnerdf986172009-01-02 07:01:27 +00002937 LocTy RetTypeLoc = Lex.getLoc();
2938 if (ParseOptionalLinkage(Linkage) ||
2939 ParseOptionalVisibility(Visibility) ||
2940 ParseOptionalCallingConv(CC) ||
Bill Wendlinge01b81b2012-12-04 23:40:58 +00002941 ParseOptionalReturnAttrs(RetAttrs) ||
Chris Lattnera9a9e072009-03-09 04:49:14 +00002942 ParseType(RetType, RetTypeLoc, true /*void allowed*/))
Chris Lattnerdf986172009-01-02 07:01:27 +00002943 return true;
2944
2945 // Verify that the linkage is ok.
2946 switch ((GlobalValue::LinkageTypes)Linkage) {
2947 case GlobalValue::ExternalLinkage:
2948 break; // always ok.
2949 case GlobalValue::DLLImportLinkage:
Duncan Sands5f4ee1f2009-03-11 08:08:06 +00002950 case GlobalValue::ExternalWeakLinkage:
Chris Lattnerdf986172009-01-02 07:01:27 +00002951 if (isDefine)
2952 return Error(LinkageLoc, "invalid linkage for function definition");
2953 break;
Rafael Espindolabb46f522009-01-15 20:18:42 +00002954 case GlobalValue::PrivateLinkage:
Bill Wendling3d10a5a2009-07-20 01:03:30 +00002955 case GlobalValue::LinkerPrivateLinkage:
Bill Wendling5e721d72010-07-01 21:55:59 +00002956 case GlobalValue::LinkerPrivateWeakLinkage:
Chris Lattnerdf986172009-01-02 07:01:27 +00002957 case GlobalValue::InternalLinkage:
Nick Lewycky55f64db2009-04-13 07:02:02 +00002958 case GlobalValue::AvailableExternallyLinkage:
Duncan Sands667d4b82009-03-07 15:45:40 +00002959 case GlobalValue::LinkOnceAnyLinkage:
2960 case GlobalValue::LinkOnceODRLinkage:
Bill Wendling32811be2012-08-17 18:33:14 +00002961 case GlobalValue::LinkOnceODRAutoHideLinkage:
Duncan Sands667d4b82009-03-07 15:45:40 +00002962 case GlobalValue::WeakAnyLinkage:
2963 case GlobalValue::WeakODRLinkage:
Chris Lattnerdf986172009-01-02 07:01:27 +00002964 case GlobalValue::DLLExportLinkage:
2965 if (!isDefine)
2966 return Error(LinkageLoc, "invalid linkage for function declaration");
2967 break;
2968 case GlobalValue::AppendingLinkage:
Duncan Sands4dc2b392009-03-11 20:14:15 +00002969 case GlobalValue::CommonLinkage:
Chris Lattnerdf986172009-01-02 07:01:27 +00002970 return Error(LinkageLoc, "invalid function linkage type");
2971 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002972
Chris Lattner1afcace2011-07-09 17:41:24 +00002973 if (!FunctionType::isValidReturnType(RetType))
Chris Lattnerdf986172009-01-02 07:01:27 +00002974 return Error(RetTypeLoc, "invalid function return type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002975
Chris Lattnerdf986172009-01-02 07:01:27 +00002976 LocTy NameLoc = Lex.getLoc();
Chris Lattnerf570e622009-02-18 21:48:13 +00002977
2978 std::string FunctionName;
2979 if (Lex.getKind() == lltok::GlobalVar) {
2980 FunctionName = Lex.getStrVal();
2981 } else if (Lex.getKind() == lltok::GlobalID) { // @42 is ok.
2982 unsigned NameID = Lex.getUIntVal();
2983
2984 if (NameID != NumberedVals.size())
2985 return TokError("function expected to be numbered '%" +
Benjamin Kramerd1e17032010-09-27 17:42:11 +00002986 Twine(NumberedVals.size()) + "'");
Chris Lattnerf570e622009-02-18 21:48:13 +00002987 } else {
2988 return TokError("expected function name");
2989 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002990
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002991 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +00002992
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002993 if (Lex.getKind() != lltok::lparen)
Chris Lattnerdf986172009-01-02 07:01:27 +00002994 return TokError("expected '(' in function argument list");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002995
Chris Lattner1afcace2011-07-09 17:41:24 +00002996 SmallVector<ArgInfo, 8> ArgList;
Chris Lattnerdf986172009-01-02 07:01:27 +00002997 bool isVarArg;
Bill Wendling702cc912012-10-15 20:35:56 +00002998 AttrBuilder FuncAttrs;
Bill Wendlingbaad55c2013-02-08 06:32:06 +00002999 std::vector<unsigned> FwdRefAttrGrps;
Michael Gottesman2253a2f2013-06-27 00:25:01 +00003000 LocTy BuiltinLoc;
Chris Lattnerdf986172009-01-02 07:01:27 +00003001 std::string Section;
Chris Lattnerdf986172009-01-02 07:01:27 +00003002 unsigned Alignment;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003003 std::string GC;
Rafael Espindola3971df52011-01-25 19:09:56 +00003004 bool UnnamedAddr;
3005 LocTy UnnamedAddrLoc;
Peter Collingbourne1e3037f2013-09-16 01:08:15 +00003006 Constant *Prefix = 0;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003007
Chris Lattner1afcace2011-07-09 17:41:24 +00003008 if (ParseArgumentList(ArgList, isVarArg) ||
Rafael Espindola3971df52011-01-25 19:09:56 +00003009 ParseOptionalToken(lltok::kw_unnamed_addr, UnnamedAddr,
3010 &UnnamedAddrLoc) ||
Bill Wendling143d4642013-02-22 00:12:35 +00003011 ParseFnAttributeValuePairs(FuncAttrs, FwdRefAttrGrps, false,
Michael Gottesman2253a2f2013-06-27 00:25:01 +00003012 BuiltinLoc) ||
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003013 (EatIfPresent(lltok::kw_section) &&
3014 ParseStringConstant(Section)) ||
3015 ParseOptionalAlignment(Alignment) ||
3016 (EatIfPresent(lltok::kw_gc) &&
Peter Collingbourne1e3037f2013-09-16 01:08:15 +00003017 ParseStringConstant(GC)) ||
3018 (EatIfPresent(lltok::kw_prefix) &&
3019 ParseGlobalTypeAndValue(Prefix)))
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003020 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00003021
Michael Gottesman2253a2f2013-06-27 00:25:01 +00003022 if (FuncAttrs.contains(Attribute::Builtin))
3023 return Error(BuiltinLoc, "'builtin' attribute not valid on function");
Bill Wendling143d4642013-02-22 00:12:35 +00003024
Chris Lattnerdf986172009-01-02 07:01:27 +00003025 // If the alignment was parsed as an attribute, move to the alignment field.
Bill Wendlingf385f4c2012-10-08 23:27:46 +00003026 if (FuncAttrs.hasAlignmentAttr()) {
Bill Wendlingef99fe82012-09-21 15:26:31 +00003027 Alignment = FuncAttrs.getAlignment();
Bill Wendling034b94b2012-12-19 07:18:57 +00003028 FuncAttrs.removeAttribute(Attribute::Alignment);
Chris Lattnerdf986172009-01-02 07:01:27 +00003029 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003030
Chris Lattnerdf986172009-01-02 07:01:27 +00003031 // Okay, if we got here, the function is syntactically valid. Convert types
3032 // and do semantic checks.
Jay Foad5fdd6c82011-07-12 14:06:48 +00003033 std::vector<Type*> ParamTypeList;
Bill Wendlinga1683d62013-01-27 02:24:02 +00003034 SmallVector<AttributeSet, 8> Attrs;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003035
Bill Wendlinge603fe42012-09-19 23:54:18 +00003036 if (RetAttrs.hasAttributes())
Bill Wendlinga1683d62013-01-27 02:24:02 +00003037 Attrs.push_back(AttributeSet::get(RetType->getContext(),
3038 AttributeSet::ReturnIndex,
3039 RetAttrs));
Daniel Dunbara279bc32009-09-20 02:20:51 +00003040
Chris Lattnerdf986172009-01-02 07:01:27 +00003041 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
Chris Lattner1afcace2011-07-09 17:41:24 +00003042 ParamTypeList.push_back(ArgList[i].Ty);
Bill Wendling73dee182013-01-31 00:29:54 +00003043 if (ArgList[i].Attrs.hasAttributes(i + 1)) {
3044 AttrBuilder B(ArgList[i].Attrs, i + 1);
Bill Wendlinga1683d62013-01-27 02:24:02 +00003045 Attrs.push_back(AttributeSet::get(RetType->getContext(), i + 1, B));
3046 }
Chris Lattnerdf986172009-01-02 07:01:27 +00003047 }
3048
Bill Wendlinge603fe42012-09-19 23:54:18 +00003049 if (FuncAttrs.hasAttributes())
Bill Wendlinga1683d62013-01-27 02:24:02 +00003050 Attrs.push_back(AttributeSet::get(RetType->getContext(),
3051 AttributeSet::FunctionIndex,
3052 FuncAttrs));
Chris Lattnerdf986172009-01-02 07:01:27 +00003053
Bill Wendling99faa3b2012-12-07 23:16:57 +00003054 AttributeSet PAL = AttributeSet::get(Context, Attrs);
Daniel Dunbara279bc32009-09-20 02:20:51 +00003055
Bill Wendling94e94b32012-12-30 13:50:49 +00003056 if (PAL.hasAttribute(1, Attribute::StructRet) && !RetType->isVoidTy())
Daniel Dunbara279bc32009-09-20 02:20:51 +00003057 return Error(RetTypeLoc, "functions with 'sret' argument must return void");
3058
Chris Lattnerdb125cf2011-07-18 04:54:35 +00003059 FunctionType *FT =
Owen Andersondebcb012009-07-29 22:17:13 +00003060 FunctionType::get(RetType, ParamTypeList, isVarArg);
Chris Lattnerdb125cf2011-07-18 04:54:35 +00003061 PointerType *PFT = PointerType::getUnqual(FT);
Chris Lattnerdf986172009-01-02 07:01:27 +00003062
3063 Fn = 0;
3064 if (!FunctionName.empty()) {
3065 // If this was a definition of a forward reference, remove the definition
3066 // from the forward reference table and fill in the forward ref.
3067 std::map<std::string, std::pair<GlobalValue*, LocTy> >::iterator FRVI =
3068 ForwardRefVals.find(FunctionName);
3069 if (FRVI != ForwardRefVals.end()) {
3070 Fn = M->getFunction(FunctionName);
Nick Lewycky64ea2752012-10-11 00:38:25 +00003071 if (!Fn)
3072 return Error(FRVI->second.second, "invalid forward reference to "
3073 "function as global value!");
Chris Lattnerf1cfb952010-04-20 04:49:11 +00003074 if (Fn->getType() != PFT)
3075 return Error(FRVI->second.second, "invalid forward reference to "
3076 "function '" + FunctionName + "' with wrong type!");
Michael Ilseman407a6162012-11-15 22:34:00 +00003077
Chris Lattnerdf986172009-01-02 07:01:27 +00003078 ForwardRefVals.erase(FRVI);
3079 } else if ((Fn = M->getFunction(FunctionName))) {
Chris Lattnerd5890992011-06-17 07:06:44 +00003080 // Reject redefinitions.
3081 return Error(NameLoc, "invalid redefinition of function '" +
3082 FunctionName + "'");
Chris Lattner1d871c52009-10-25 23:22:50 +00003083 } else if (M->getNamedValue(FunctionName)) {
3084 return Error(NameLoc, "redefinition of function '@" + FunctionName + "'");
Chris Lattnerdf986172009-01-02 07:01:27 +00003085 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003086
Dan Gohman41905542009-08-29 23:37:49 +00003087 } else {
Chris Lattnerdf986172009-01-02 07:01:27 +00003088 // If this is a definition of a forward referenced function, make sure the
3089 // types agree.
3090 std::map<unsigned, std::pair<GlobalValue*, LocTy> >::iterator I
3091 = ForwardRefValIDs.find(NumberedVals.size());
3092 if (I != ForwardRefValIDs.end()) {
3093 Fn = cast<Function>(I->second.first);
3094 if (Fn->getType() != PFT)
3095 return Error(NameLoc, "type of definition and forward reference of '@" +
Benjamin Kramerd1e17032010-09-27 17:42:11 +00003096 Twine(NumberedVals.size()) + "' disagree");
Chris Lattnerdf986172009-01-02 07:01:27 +00003097 ForwardRefValIDs.erase(I);
3098 }
3099 }
3100
3101 if (Fn == 0)
3102 Fn = Function::Create(FT, GlobalValue::ExternalLinkage, FunctionName, M);
3103 else // Move the forward-reference to the correct spot in the module.
3104 M->getFunctionList().splice(M->end(), M->getFunctionList(), Fn);
3105
3106 if (FunctionName.empty())
3107 NumberedVals.push_back(Fn);
Daniel Dunbara279bc32009-09-20 02:20:51 +00003108
Chris Lattnerdf986172009-01-02 07:01:27 +00003109 Fn->setLinkage((GlobalValue::LinkageTypes)Linkage);
3110 Fn->setVisibility((GlobalValue::VisibilityTypes)Visibility);
3111 Fn->setCallingConv(CC);
3112 Fn->setAttributes(PAL);
Rafael Espindolabea46262011-01-08 16:42:36 +00003113 Fn->setUnnamedAddr(UnnamedAddr);
Chris Lattnerdf986172009-01-02 07:01:27 +00003114 Fn->setAlignment(Alignment);
3115 Fn->setSection(Section);
3116 if (!GC.empty()) Fn->setGC(GC.c_str());
Peter Collingbourne1e3037f2013-09-16 01:08:15 +00003117 Fn->setPrefixData(Prefix);
Bill Wendlingbaad55c2013-02-08 06:32:06 +00003118 ForwardRefAttrGroups[Fn] = FwdRefAttrGrps;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003119
Chris Lattnerdf986172009-01-02 07:01:27 +00003120 // Add all of the arguments we parsed to the function.
3121 Function::arg_iterator ArgIt = Fn->arg_begin();
3122 for (unsigned i = 0, e = ArgList.size(); i != e; ++i, ++ArgIt) {
3123 // If the argument has a name, insert it into the argument symbol table.
3124 if (ArgList[i].Name.empty()) continue;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003125
Chris Lattnerdf986172009-01-02 07:01:27 +00003126 // Set the name, if it conflicted, it will be auto-renamed.
3127 ArgIt->setName(ArgList[i].Name);
Daniel Dunbara279bc32009-09-20 02:20:51 +00003128
Benjamin Krameraf812352010-10-16 11:28:23 +00003129 if (ArgIt->getName() != ArgList[i].Name)
Chris Lattnerdf986172009-01-02 07:01:27 +00003130 return Error(ArgList[i].Loc, "redefinition of argument '%" +
3131 ArgList[i].Name + "'");
3132 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003133
Chris Lattnerdf986172009-01-02 07:01:27 +00003134 return false;
3135}
3136
3137
3138/// ParseFunctionBody
3139/// ::= '{' BasicBlock+ '}'
Chris Lattnerdf986172009-01-02 07:01:27 +00003140///
3141bool LLParser::ParseFunctionBody(Function &Fn) {
Chris Lattner6b7c89e2011-06-17 06:42:57 +00003142 if (Lex.getKind() != lltok::lbrace)
Chris Lattnerdf986172009-01-02 07:01:27 +00003143 return TokError("expected '{' in function body");
3144 Lex.Lex(); // eat the {.
Daniel Dunbara279bc32009-09-20 02:20:51 +00003145
Chris Lattner09d9ef42009-10-28 03:39:23 +00003146 int FunctionNumber = -1;
3147 if (!Fn.hasName()) FunctionNumber = NumberedVals.size()-1;
Michael Ilseman407a6162012-11-15 22:34:00 +00003148
Chris Lattner09d9ef42009-10-28 03:39:23 +00003149 PerFunctionState PFS(*this, Fn, FunctionNumber);
Daniel Dunbara279bc32009-09-20 02:20:51 +00003150
Chris Lattner2fdf8db2010-01-09 19:20:07 +00003151 // We need at least one basic block.
Chris Lattner6b7c89e2011-06-17 06:42:57 +00003152 if (Lex.getKind() == lltok::rbrace)
Chris Lattner2fdf8db2010-01-09 19:20:07 +00003153 return TokError("function body requires at least one basic block");
Michael Ilseman407a6162012-11-15 22:34:00 +00003154
Chris Lattner6b7c89e2011-06-17 06:42:57 +00003155 while (Lex.getKind() != lltok::rbrace)
Chris Lattnerdf986172009-01-02 07:01:27 +00003156 if (ParseBasicBlock(PFS)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003157
Chris Lattnerdf986172009-01-02 07:01:27 +00003158 // Eat the }.
3159 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +00003160
Chris Lattnerdf986172009-01-02 07:01:27 +00003161 // Verify function is ok.
Chris Lattner09d9ef42009-10-28 03:39:23 +00003162 return PFS.FinishFunction();
Chris Lattnerdf986172009-01-02 07:01:27 +00003163}
3164
3165/// ParseBasicBlock
3166/// ::= LabelStr? Instruction*
3167bool LLParser::ParseBasicBlock(PerFunctionState &PFS) {
3168 // If this basic block starts out with a name, remember it.
3169 std::string Name;
3170 LocTy NameLoc = Lex.getLoc();
3171 if (Lex.getKind() == lltok::LabelStr) {
3172 Name = Lex.getStrVal();
3173 Lex.Lex();
3174 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003175
Chris Lattnerdf986172009-01-02 07:01:27 +00003176 BasicBlock *BB = PFS.DefineBB(Name, NameLoc);
3177 if (BB == 0) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003178
Chris Lattnerdf986172009-01-02 07:01:27 +00003179 std::string NameStr;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003180
Chris Lattnerdf986172009-01-02 07:01:27 +00003181 // Parse the instructions in this block until we get a terminator.
3182 Instruction *Inst;
3183 do {
3184 // This instruction may have three possibilities for a name: a) none
3185 // specified, b) name specified "%foo =", c) number specified: "%4 =".
3186 LocTy NameLoc = Lex.getLoc();
3187 int NameID = -1;
3188 NameStr = "";
Daniel Dunbara279bc32009-09-20 02:20:51 +00003189
Chris Lattnerdf986172009-01-02 07:01:27 +00003190 if (Lex.getKind() == lltok::LocalVarID) {
3191 NameID = Lex.getUIntVal();
3192 Lex.Lex();
3193 if (ParseToken(lltok::equal, "expected '=' after instruction id"))
3194 return true;
Chris Lattner7a1b9bd2011-06-17 06:36:20 +00003195 } else if (Lex.getKind() == lltok::LocalVar) {
Chris Lattnerdf986172009-01-02 07:01:27 +00003196 NameStr = Lex.getStrVal();
3197 Lex.Lex();
3198 if (ParseToken(lltok::equal, "expected '=' after instruction name"))
3199 return true;
3200 }
Devang Patelf633a062009-09-17 23:04:48 +00003201
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00003202 switch (ParseInstruction(Inst, BB, PFS)) {
Craig Topper85814382012-02-07 05:05:23 +00003203 default: llvm_unreachable("Unknown ParseInstruction result!");
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00003204 case InstError: return true;
3205 case InstNormal:
Chris Lattner4ba9d9b2010-04-07 04:08:57 +00003206 BB->getInstList().push_back(Inst);
3207
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00003208 // With a normal result, we check to see if the instruction is followed by
3209 // a comma and metadata.
3210 if (EatIfPresent(lltok::comma))
Dan Gohman9d072f52010-08-24 02:05:17 +00003211 if (ParseInstructionMetadata(Inst, &PFS))
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00003212 return true;
3213 break;
3214 case InstExtraComma:
Chris Lattner4ba9d9b2010-04-07 04:08:57 +00003215 BB->getInstList().push_back(Inst);
3216
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00003217 // If the instruction parser ate an extra comma at the end of it, it
3218 // *must* be followed by metadata.
Dan Gohman9d072f52010-08-24 02:05:17 +00003219 if (ParseInstructionMetadata(Inst, &PFS))
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00003220 return true;
Michael Ilseman407a6162012-11-15 22:34:00 +00003221 break;
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00003222 }
Devang Patelf633a062009-09-17 23:04:48 +00003223
Chris Lattnerdf986172009-01-02 07:01:27 +00003224 // Set the name on the instruction.
3225 if (PFS.SetInstName(NameID, NameStr, NameLoc, Inst)) return true;
3226 } while (!isa<TerminatorInst>(Inst));
Daniel Dunbara279bc32009-09-20 02:20:51 +00003227
Chris Lattnerdf986172009-01-02 07:01:27 +00003228 return false;
3229}
3230
3231//===----------------------------------------------------------------------===//
3232// Instruction Parsing.
3233//===----------------------------------------------------------------------===//
3234
3235/// ParseInstruction - Parse one of the many different instructions.
3236///
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00003237int LLParser::ParseInstruction(Instruction *&Inst, BasicBlock *BB,
3238 PerFunctionState &PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00003239 lltok::Kind Token = Lex.getKind();
3240 if (Token == lltok::Eof)
3241 return TokError("found end of file when expecting more instructions");
3242 LocTy Loc = Lex.getLoc();
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00003243 unsigned KeywordVal = Lex.getUIntVal();
Chris Lattnerdf986172009-01-02 07:01:27 +00003244 Lex.Lex(); // Eat the keyword.
Daniel Dunbara279bc32009-09-20 02:20:51 +00003245
Chris Lattnerdf986172009-01-02 07:01:27 +00003246 switch (Token) {
3247 default: return Error(Loc, "expected instruction opcode");
3248 // Terminator Instructions.
Owen Anderson1d0be152009-08-13 21:58:54 +00003249 case lltok::kw_unreachable: Inst = new UnreachableInst(Context); return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00003250 case lltok::kw_ret: return ParseRet(Inst, BB, PFS);
3251 case lltok::kw_br: return ParseBr(Inst, PFS);
3252 case lltok::kw_switch: return ParseSwitch(Inst, PFS);
Chris Lattnerab21db72009-10-28 00:19:10 +00003253 case lltok::kw_indirectbr: return ParseIndirectBr(Inst, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00003254 case lltok::kw_invoke: return ParseInvoke(Inst, PFS);
Bill Wendlingdccc03b2011-07-31 06:30:59 +00003255 case lltok::kw_resume: return ParseResume(Inst, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00003256 // Binary Operators.
3257 case lltok::kw_add:
3258 case lltok::kw_sub:
Chris Lattnerf067d582011-02-07 16:40:21 +00003259 case lltok::kw_mul:
3260 case lltok::kw_shl: {
Chris Lattnerf067d582011-02-07 16:40:21 +00003261 bool NUW = EatIfPresent(lltok::kw_nuw);
3262 bool NSW = EatIfPresent(lltok::kw_nsw);
3263 if (!NUW) NUW = EatIfPresent(lltok::kw_nuw);
Michael Ilseman407a6162012-11-15 22:34:00 +00003264
Chris Lattnerf067d582011-02-07 16:40:21 +00003265 if (ParseArithmetic(Inst, PFS, KeywordVal, 1)) return true;
Michael Ilseman407a6162012-11-15 22:34:00 +00003266
Chris Lattnerf067d582011-02-07 16:40:21 +00003267 if (NUW) cast<BinaryOperator>(Inst)->setHasNoUnsignedWrap(true);
3268 if (NSW) cast<BinaryOperator>(Inst)->setHasNoSignedWrap(true);
3269 return false;
Dan Gohman59858cf2009-07-27 16:11:46 +00003270 }
Dan Gohmanae3a0be2009-06-04 22:49:04 +00003271 case lltok::kw_fadd:
3272 case lltok::kw_fsub:
Michael Ilseman15c13d32012-11-27 00:42:44 +00003273 case lltok::kw_fmul:
3274 case lltok::kw_fdiv:
3275 case lltok::kw_frem: {
3276 FastMathFlags FMF = EatFastMathFlagsIfPresent();
3277 int Res = ParseArithmetic(Inst, PFS, KeywordVal, 2);
3278 if (Res != 0)
3279 return Res;
3280 if (FMF.any())
3281 Inst->setFastMathFlags(FMF);
3282 return 0;
3283 }
Dan Gohmanae3a0be2009-06-04 22:49:04 +00003284
Chris Lattner35bda892011-02-06 21:44:57 +00003285 case lltok::kw_sdiv:
Chris Lattnerf067d582011-02-07 16:40:21 +00003286 case lltok::kw_udiv:
3287 case lltok::kw_lshr:
3288 case lltok::kw_ashr: {
3289 bool Exact = EatIfPresent(lltok::kw_exact);
3290
3291 if (ParseArithmetic(Inst, PFS, KeywordVal, 1)) return true;
3292 if (Exact) cast<BinaryOperator>(Inst)->setIsExact(true);
3293 return false;
Dan Gohman59858cf2009-07-27 16:11:46 +00003294 }
3295
Chris Lattnerdf986172009-01-02 07:01:27 +00003296 case lltok::kw_urem:
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00003297 case lltok::kw_srem: return ParseArithmetic(Inst, PFS, KeywordVal, 1);
Chris Lattnerdf986172009-01-02 07:01:27 +00003298 case lltok::kw_and:
3299 case lltok::kw_or:
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00003300 case lltok::kw_xor: return ParseLogical(Inst, PFS, KeywordVal);
Chris Lattnerdf986172009-01-02 07:01:27 +00003301 case lltok::kw_icmp:
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00003302 case lltok::kw_fcmp: return ParseCompare(Inst, PFS, KeywordVal);
Chris Lattnerdf986172009-01-02 07:01:27 +00003303 // Casts.
3304 case lltok::kw_trunc:
3305 case lltok::kw_zext:
3306 case lltok::kw_sext:
3307 case lltok::kw_fptrunc:
3308 case lltok::kw_fpext:
3309 case lltok::kw_bitcast:
3310 case lltok::kw_uitofp:
3311 case lltok::kw_sitofp:
3312 case lltok::kw_fptoui:
Daniel Dunbara279bc32009-09-20 02:20:51 +00003313 case lltok::kw_fptosi:
Chris Lattnerdf986172009-01-02 07:01:27 +00003314 case lltok::kw_inttoptr:
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00003315 case lltok::kw_ptrtoint: return ParseCast(Inst, PFS, KeywordVal);
Chris Lattnerdf986172009-01-02 07:01:27 +00003316 // Other.
3317 case lltok::kw_select: return ParseSelect(Inst, PFS);
Chris Lattner0088a5c2009-01-05 08:18:44 +00003318 case lltok::kw_va_arg: return ParseVA_Arg(Inst, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00003319 case lltok::kw_extractelement: return ParseExtractElement(Inst, PFS);
3320 case lltok::kw_insertelement: return ParseInsertElement(Inst, PFS);
3321 case lltok::kw_shufflevector: return ParseShuffleVector(Inst, PFS);
3322 case lltok::kw_phi: return ParsePHI(Inst, PFS);
Bill Wendlinge6e88262011-08-12 20:24:12 +00003323 case lltok::kw_landingpad: return ParseLandingPad(Inst, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00003324 case lltok::kw_call: return ParseCall(Inst, PFS, false);
3325 case lltok::kw_tail: return ParseCall(Inst, PFS, true);
3326 // Memory.
Victor Hernandez13ad5aa2009-10-17 00:00:19 +00003327 case lltok::kw_alloca: return ParseAlloc(Inst, PFS);
Chris Lattnerfbe910e2011-11-27 06:56:53 +00003328 case lltok::kw_load: return ParseLoad(Inst, PFS);
3329 case lltok::kw_store: return ParseStore(Inst, PFS);
Eli Friedmanf03bb262011-08-12 22:50:01 +00003330 case lltok::kw_cmpxchg: return ParseCmpXchg(Inst, PFS);
3331 case lltok::kw_atomicrmw: return ParseAtomicRMW(Inst, PFS);
Eli Friedman47f35132011-07-25 23:16:38 +00003332 case lltok::kw_fence: return ParseFence(Inst, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00003333 case lltok::kw_getelementptr: return ParseGetElementPtr(Inst, PFS);
3334 case lltok::kw_extractvalue: return ParseExtractValue(Inst, PFS);
3335 case lltok::kw_insertvalue: return ParseInsertValue(Inst, PFS);
3336 }
3337}
3338
3339/// ParseCmpPredicate - Parse an integer or fp predicate, based on Kind.
3340bool LLParser::ParseCmpPredicate(unsigned &P, unsigned Opc) {
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00003341 if (Opc == Instruction::FCmp) {
Chris Lattnerdf986172009-01-02 07:01:27 +00003342 switch (Lex.getKind()) {
David Tweedd80d6082013-01-07 13:32:38 +00003343 default: return TokError("expected fcmp predicate (e.g. 'oeq')");
Chris Lattnerdf986172009-01-02 07:01:27 +00003344 case lltok::kw_oeq: P = CmpInst::FCMP_OEQ; break;
3345 case lltok::kw_one: P = CmpInst::FCMP_ONE; break;
3346 case lltok::kw_olt: P = CmpInst::FCMP_OLT; break;
3347 case lltok::kw_ogt: P = CmpInst::FCMP_OGT; break;
3348 case lltok::kw_ole: P = CmpInst::FCMP_OLE; break;
3349 case lltok::kw_oge: P = CmpInst::FCMP_OGE; break;
3350 case lltok::kw_ord: P = CmpInst::FCMP_ORD; break;
3351 case lltok::kw_uno: P = CmpInst::FCMP_UNO; break;
3352 case lltok::kw_ueq: P = CmpInst::FCMP_UEQ; break;
3353 case lltok::kw_une: P = CmpInst::FCMP_UNE; break;
3354 case lltok::kw_ult: P = CmpInst::FCMP_ULT; break;
3355 case lltok::kw_ugt: P = CmpInst::FCMP_UGT; break;
3356 case lltok::kw_ule: P = CmpInst::FCMP_ULE; break;
3357 case lltok::kw_uge: P = CmpInst::FCMP_UGE; break;
3358 case lltok::kw_true: P = CmpInst::FCMP_TRUE; break;
3359 case lltok::kw_false: P = CmpInst::FCMP_FALSE; break;
3360 }
3361 } else {
3362 switch (Lex.getKind()) {
David Tweedd80d6082013-01-07 13:32:38 +00003363 default: return TokError("expected icmp predicate (e.g. 'eq')");
Chris Lattnerdf986172009-01-02 07:01:27 +00003364 case lltok::kw_eq: P = CmpInst::ICMP_EQ; break;
3365 case lltok::kw_ne: P = CmpInst::ICMP_NE; break;
3366 case lltok::kw_slt: P = CmpInst::ICMP_SLT; break;
3367 case lltok::kw_sgt: P = CmpInst::ICMP_SGT; break;
3368 case lltok::kw_sle: P = CmpInst::ICMP_SLE; break;
3369 case lltok::kw_sge: P = CmpInst::ICMP_SGE; break;
3370 case lltok::kw_ult: P = CmpInst::ICMP_ULT; break;
3371 case lltok::kw_ugt: P = CmpInst::ICMP_UGT; break;
3372 case lltok::kw_ule: P = CmpInst::ICMP_ULE; break;
3373 case lltok::kw_uge: P = CmpInst::ICMP_UGE; break;
3374 }
3375 }
3376 Lex.Lex();
3377 return false;
3378}
3379
3380//===----------------------------------------------------------------------===//
3381// Terminator Instructions.
3382//===----------------------------------------------------------------------===//
3383
3384/// ParseRet - Parse a return instruction.
Chris Lattner3f3a0f62009-12-29 21:25:40 +00003385/// ::= 'ret' void (',' !dbg, !1)*
3386/// ::= 'ret' TypeAndValue (',' !dbg, !1)*
Chris Lattner437544f2011-06-17 06:49:41 +00003387bool LLParser::ParseRet(Instruction *&Inst, BasicBlock *BB,
Chris Lattner1afcace2011-07-09 17:41:24 +00003388 PerFunctionState &PFS) {
3389 SMLoc TypeLoc = Lex.getLoc();
3390 Type *Ty = 0;
Chris Lattnera9a9e072009-03-09 04:49:14 +00003391 if (ParseType(Ty, true /*void allowed*/)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003392
Chris Lattner1afcace2011-07-09 17:41:24 +00003393 Type *ResType = PFS.getFunction().getReturnType();
Michael Ilseman407a6162012-11-15 22:34:00 +00003394
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00003395 if (Ty->isVoidTy()) {
Chris Lattner1afcace2011-07-09 17:41:24 +00003396 if (!ResType->isVoidTy())
3397 return Error(TypeLoc, "value doesn't match function result type '" +
3398 getTypeString(ResType) + "'");
Michael Ilseman407a6162012-11-15 22:34:00 +00003399
Owen Anderson1d0be152009-08-13 21:58:54 +00003400 Inst = ReturnInst::Create(Context);
Chris Lattnerdf986172009-01-02 07:01:27 +00003401 return false;
3402 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003403
Chris Lattnerdf986172009-01-02 07:01:27 +00003404 Value *RV;
3405 if (ParseValue(Ty, RV, PFS)) return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00003406
Chris Lattner1afcace2011-07-09 17:41:24 +00003407 if (ResType != RV->getType())
3408 return Error(TypeLoc, "value doesn't match function result type '" +
3409 getTypeString(ResType) + "'");
Michael Ilseman407a6162012-11-15 22:34:00 +00003410
Owen Anderson1d0be152009-08-13 21:58:54 +00003411 Inst = ReturnInst::Create(Context, RV);
Chris Lattner437544f2011-06-17 06:49:41 +00003412 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00003413}
3414
3415
3416/// ParseBr
3417/// ::= 'br' TypeAndValue
3418/// ::= 'br' TypeAndValue ',' TypeAndValue ',' TypeAndValue
3419bool LLParser::ParseBr(Instruction *&Inst, PerFunctionState &PFS) {
3420 LocTy Loc, Loc2;
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003421 Value *Op0;
3422 BasicBlock *Op1, *Op2;
Chris Lattnerdf986172009-01-02 07:01:27 +00003423 if (ParseTypeAndValue(Op0, Loc, PFS)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003424
Chris Lattnerdf986172009-01-02 07:01:27 +00003425 if (BasicBlock *BB = dyn_cast<BasicBlock>(Op0)) {
3426 Inst = BranchInst::Create(BB);
3427 return false;
3428 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003429
Owen Anderson1d0be152009-08-13 21:58:54 +00003430 if (Op0->getType() != Type::getInt1Ty(Context))
Chris Lattnerdf986172009-01-02 07:01:27 +00003431 return Error(Loc, "branch condition must have 'i1' type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003432
Chris Lattnerdf986172009-01-02 07:01:27 +00003433 if (ParseToken(lltok::comma, "expected ',' after branch condition") ||
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003434 ParseTypeAndBasicBlock(Op1, Loc, PFS) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003435 ParseToken(lltok::comma, "expected ',' after true destination") ||
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003436 ParseTypeAndBasicBlock(Op2, Loc2, PFS))
Chris Lattnerdf986172009-01-02 07:01:27 +00003437 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003438
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003439 Inst = BranchInst::Create(Op1, Op2, Op0);
Chris Lattnerdf986172009-01-02 07:01:27 +00003440 return false;
3441}
3442
3443/// ParseSwitch
3444/// Instruction
3445/// ::= 'switch' TypeAndValue ',' TypeAndValue '[' JumpTable ']'
3446/// JumpTable
3447/// ::= (TypeAndValue ',' TypeAndValue)*
3448bool LLParser::ParseSwitch(Instruction *&Inst, PerFunctionState &PFS) {
3449 LocTy CondLoc, BBLoc;
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003450 Value *Cond;
3451 BasicBlock *DefaultBB;
Chris Lattnerdf986172009-01-02 07:01:27 +00003452 if (ParseTypeAndValue(Cond, CondLoc, PFS) ||
3453 ParseToken(lltok::comma, "expected ',' after switch condition") ||
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003454 ParseTypeAndBasicBlock(DefaultBB, BBLoc, PFS) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003455 ParseToken(lltok::lsquare, "expected '[' with switch table"))
3456 return true;
3457
Duncan Sands1df98592010-02-16 11:11:14 +00003458 if (!Cond->getType()->isIntegerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00003459 return Error(CondLoc, "switch condition must have integer type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003460
Chris Lattnerdf986172009-01-02 07:01:27 +00003461 // Parse the jump table pairs.
3462 SmallPtrSet<Value*, 32> SeenCases;
3463 SmallVector<std::pair<ConstantInt*, BasicBlock*>, 32> Table;
3464 while (Lex.getKind() != lltok::rsquare) {
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003465 Value *Constant;
3466 BasicBlock *DestBB;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003467
Chris Lattnerdf986172009-01-02 07:01:27 +00003468 if (ParseTypeAndValue(Constant, CondLoc, PFS) ||
3469 ParseToken(lltok::comma, "expected ',' after case value") ||
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003470 ParseTypeAndBasicBlock(DestBB, PFS))
Chris Lattnerdf986172009-01-02 07:01:27 +00003471 return true;
Michael Ilseman407a6162012-11-15 22:34:00 +00003472
Chris Lattnerdf986172009-01-02 07:01:27 +00003473 if (!SeenCases.insert(Constant))
3474 return Error(CondLoc, "duplicate case value in switch");
3475 if (!isa<ConstantInt>(Constant))
3476 return Error(CondLoc, "case value is not a constant integer");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003477
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003478 Table.push_back(std::make_pair(cast<ConstantInt>(Constant), DestBB));
Chris Lattnerdf986172009-01-02 07:01:27 +00003479 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003480
Chris Lattnerdf986172009-01-02 07:01:27 +00003481 Lex.Lex(); // Eat the ']'.
Daniel Dunbara279bc32009-09-20 02:20:51 +00003482
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003483 SwitchInst *SI = SwitchInst::Create(Cond, DefaultBB, Table.size());
Chris Lattnerdf986172009-01-02 07:01:27 +00003484 for (unsigned i = 0, e = Table.size(); i != e; ++i)
3485 SI->addCase(Table[i].first, Table[i].second);
3486 Inst = SI;
3487 return false;
3488}
3489
Chris Lattnerab21db72009-10-28 00:19:10 +00003490/// ParseIndirectBr
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003491/// Instruction
Chris Lattnerab21db72009-10-28 00:19:10 +00003492/// ::= 'indirectbr' TypeAndValue ',' '[' LabelList ']'
3493bool LLParser::ParseIndirectBr(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003494 LocTy AddrLoc;
3495 Value *Address;
3496 if (ParseTypeAndValue(Address, AddrLoc, PFS) ||
Chris Lattnerab21db72009-10-28 00:19:10 +00003497 ParseToken(lltok::comma, "expected ',' after indirectbr address") ||
3498 ParseToken(lltok::lsquare, "expected '[' with indirectbr"))
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003499 return true;
Michael Ilseman407a6162012-11-15 22:34:00 +00003500
Duncan Sands1df98592010-02-16 11:11:14 +00003501 if (!Address->getType()->isPointerTy())
Chris Lattnerab21db72009-10-28 00:19:10 +00003502 return Error(AddrLoc, "indirectbr address must have pointer type");
Michael Ilseman407a6162012-11-15 22:34:00 +00003503
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003504 // Parse the destination list.
3505 SmallVector<BasicBlock*, 16> DestList;
Michael Ilseman407a6162012-11-15 22:34:00 +00003506
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003507 if (Lex.getKind() != lltok::rsquare) {
3508 BasicBlock *DestBB;
3509 if (ParseTypeAndBasicBlock(DestBB, PFS))
3510 return true;
3511 DestList.push_back(DestBB);
Michael Ilseman407a6162012-11-15 22:34:00 +00003512
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003513 while (EatIfPresent(lltok::comma)) {
3514 if (ParseTypeAndBasicBlock(DestBB, PFS))
3515 return true;
3516 DestList.push_back(DestBB);
3517 }
3518 }
Michael Ilseman407a6162012-11-15 22:34:00 +00003519
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003520 if (ParseToken(lltok::rsquare, "expected ']' at end of block list"))
3521 return true;
3522
Chris Lattnerab21db72009-10-28 00:19:10 +00003523 IndirectBrInst *IBI = IndirectBrInst::Create(Address, DestList.size());
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003524 for (unsigned i = 0, e = DestList.size(); i != e; ++i)
3525 IBI->addDestination(DestList[i]);
3526 Inst = IBI;
3527 return false;
3528}
3529
3530
Chris Lattnerdf986172009-01-02 07:01:27 +00003531/// ParseInvoke
3532/// ::= 'invoke' OptionalCallingConv OptionalAttrs Type Value ParamList
3533/// OptionalAttrs 'to' TypeAndValue 'unwind' TypeAndValue
3534bool LLParser::ParseInvoke(Instruction *&Inst, PerFunctionState &PFS) {
3535 LocTy CallLoc = Lex.getLoc();
Bill Wendling702cc912012-10-15 20:35:56 +00003536 AttrBuilder RetAttrs, FnAttrs;
Bill Wendlingbaad55c2013-02-08 06:32:06 +00003537 std::vector<unsigned> FwdRefAttrGrps;
Bill Wendling143d4642013-02-22 00:12:35 +00003538 LocTy NoBuiltinLoc;
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00003539 CallingConv::ID CC;
Chris Lattner1afcace2011-07-09 17:41:24 +00003540 Type *RetType = 0;
Chris Lattnerdf986172009-01-02 07:01:27 +00003541 LocTy RetTypeLoc;
3542 ValID CalleeID;
3543 SmallVector<ParamInfo, 16> ArgList;
3544
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003545 BasicBlock *NormalBB, *UnwindBB;
Chris Lattnerdf986172009-01-02 07:01:27 +00003546 if (ParseOptionalCallingConv(CC) ||
Bill Wendlinge01b81b2012-12-04 23:40:58 +00003547 ParseOptionalReturnAttrs(RetAttrs) ||
Chris Lattnera9a9e072009-03-09 04:49:14 +00003548 ParseType(RetType, RetTypeLoc, true /*void allowed*/) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003549 ParseValID(CalleeID) ||
3550 ParseParameterList(ArgList, PFS) ||
Bill Wendling143d4642013-02-22 00:12:35 +00003551 ParseFnAttributeValuePairs(FnAttrs, FwdRefAttrGrps, false,
3552 NoBuiltinLoc) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003553 ParseToken(lltok::kw_to, "expected 'to' in invoke") ||
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003554 ParseTypeAndBasicBlock(NormalBB, PFS) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003555 ParseToken(lltok::kw_unwind, "expected 'unwind' in invoke") ||
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003556 ParseTypeAndBasicBlock(UnwindBB, PFS))
Chris Lattnerdf986172009-01-02 07:01:27 +00003557 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003558
Chris Lattnerdf986172009-01-02 07:01:27 +00003559 // If RetType is a non-function pointer type, then this is the short syntax
3560 // for the call, which means that RetType is just the return type. Infer the
3561 // rest of the function argument types from the arguments that are present.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00003562 PointerType *PFTy = 0;
3563 FunctionType *Ty = 0;
Chris Lattnerdf986172009-01-02 07:01:27 +00003564 if (!(PFTy = dyn_cast<PointerType>(RetType)) ||
3565 !(Ty = dyn_cast<FunctionType>(PFTy->getElementType()))) {
3566 // Pull out the types of all of the arguments...
Jay Foad5fdd6c82011-07-12 14:06:48 +00003567 std::vector<Type*> ParamTypes;
Chris Lattnerdf986172009-01-02 07:01:27 +00003568 for (unsigned i = 0, e = ArgList.size(); i != e; ++i)
3569 ParamTypes.push_back(ArgList[i].V->getType());
Daniel Dunbara279bc32009-09-20 02:20:51 +00003570
Chris Lattnerdf986172009-01-02 07:01:27 +00003571 if (!FunctionType::isValidReturnType(RetType))
3572 return Error(RetTypeLoc, "Invalid result type for LLVM function");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003573
Owen Andersondebcb012009-07-29 22:17:13 +00003574 Ty = FunctionType::get(RetType, ParamTypes, false);
3575 PFTy = PointerType::getUnqual(Ty);
Chris Lattnerdf986172009-01-02 07:01:27 +00003576 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003577
Chris Lattnerdf986172009-01-02 07:01:27 +00003578 // Look up the callee.
3579 Value *Callee;
Victor Hernandez92f238d2010-01-11 22:31:58 +00003580 if (ConvertValIDToValue(PFTy, CalleeID, Callee, &PFS)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003581
Bill Wendling034b94b2012-12-19 07:18:57 +00003582 // Set up the Attribute for the function.
Bill Wendlinga1683d62013-01-27 02:24:02 +00003583 SmallVector<AttributeSet, 8> Attrs;
Bill Wendlinge603fe42012-09-19 23:54:18 +00003584 if (RetAttrs.hasAttributes())
Bill Wendlinga1683d62013-01-27 02:24:02 +00003585 Attrs.push_back(AttributeSet::get(RetType->getContext(),
3586 AttributeSet::ReturnIndex,
3587 RetAttrs));
Daniel Dunbara279bc32009-09-20 02:20:51 +00003588
Chris Lattnerdf986172009-01-02 07:01:27 +00003589 SmallVector<Value*, 8> Args;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003590
Chris Lattnerdf986172009-01-02 07:01:27 +00003591 // Loop through FunctionType's arguments and ensure they are specified
3592 // correctly. Also, gather any parameter attributes.
3593 FunctionType::param_iterator I = Ty->param_begin();
3594 FunctionType::param_iterator E = Ty->param_end();
3595 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
Chris Lattnerdb125cf2011-07-18 04:54:35 +00003596 Type *ExpectedTy = 0;
Chris Lattnerdf986172009-01-02 07:01:27 +00003597 if (I != E) {
3598 ExpectedTy = *I++;
3599 } else if (!Ty->isVarArg()) {
3600 return Error(ArgList[i].Loc, "too many arguments specified");
3601 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003602
Chris Lattnerdf986172009-01-02 07:01:27 +00003603 if (ExpectedTy && ExpectedTy != ArgList[i].V->getType())
3604 return Error(ArgList[i].Loc, "argument is not of expected type '" +
Chris Lattner0cd0d882011-06-18 21:18:23 +00003605 getTypeString(ExpectedTy) + "'");
Chris Lattnerdf986172009-01-02 07:01:27 +00003606 Args.push_back(ArgList[i].V);
Bill Wendling73dee182013-01-31 00:29:54 +00003607 if (ArgList[i].Attrs.hasAttributes(i + 1)) {
3608 AttrBuilder B(ArgList[i].Attrs, i + 1);
Bill Wendlinga1683d62013-01-27 02:24:02 +00003609 Attrs.push_back(AttributeSet::get(RetType->getContext(), i + 1, B));
3610 }
Chris Lattnerdf986172009-01-02 07:01:27 +00003611 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003612
Chris Lattnerdf986172009-01-02 07:01:27 +00003613 if (I != E)
3614 return Error(CallLoc, "not enough parameters specified for call");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003615
Bill Wendlinge603fe42012-09-19 23:54:18 +00003616 if (FnAttrs.hasAttributes())
Bill Wendlinga1683d62013-01-27 02:24:02 +00003617 Attrs.push_back(AttributeSet::get(RetType->getContext(),
3618 AttributeSet::FunctionIndex,
3619 FnAttrs));
Daniel Dunbara279bc32009-09-20 02:20:51 +00003620
Bill Wendling034b94b2012-12-19 07:18:57 +00003621 // Finish off the Attribute and check them
Bill Wendling99faa3b2012-12-07 23:16:57 +00003622 AttributeSet PAL = AttributeSet::get(Context, Attrs);
Daniel Dunbara279bc32009-09-20 02:20:51 +00003623
Jay Foada3efbb12011-07-15 08:37:34 +00003624 InvokeInst *II = InvokeInst::Create(Callee, NormalBB, UnwindBB, Args);
Chris Lattnerdf986172009-01-02 07:01:27 +00003625 II->setCallingConv(CC);
3626 II->setAttributes(PAL);
Bill Wendlingbaad55c2013-02-08 06:32:06 +00003627 ForwardRefAttrGroups[II] = FwdRefAttrGrps;
Chris Lattnerdf986172009-01-02 07:01:27 +00003628 Inst = II;
3629 return false;
3630}
3631
Bill Wendlingdccc03b2011-07-31 06:30:59 +00003632/// ParseResume
3633/// ::= 'resume' TypeAndValue
3634bool LLParser::ParseResume(Instruction *&Inst, PerFunctionState &PFS) {
3635 Value *Exn; LocTy ExnLoc;
Bill Wendlingdccc03b2011-07-31 06:30:59 +00003636 if (ParseTypeAndValue(Exn, ExnLoc, PFS))
3637 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00003638
Bill Wendlingdccc03b2011-07-31 06:30:59 +00003639 ResumeInst *RI = ResumeInst::Create(Exn);
3640 Inst = RI;
3641 return false;
3642}
Chris Lattnerdf986172009-01-02 07:01:27 +00003643
3644//===----------------------------------------------------------------------===//
3645// Binary Operators.
3646//===----------------------------------------------------------------------===//
3647
3648/// ParseArithmetic
Chris Lattnere914b592009-01-05 08:24:46 +00003649/// ::= ArithmeticOps TypeAndValue ',' Value
3650///
3651/// If OperandType is 0, then any FP or integer operand is allowed. If it is 1,
3652/// then any integer operand is allowed, if it is 2, any fp operand is allowed.
Chris Lattnerdf986172009-01-02 07:01:27 +00003653bool LLParser::ParseArithmetic(Instruction *&Inst, PerFunctionState &PFS,
Chris Lattnere914b592009-01-05 08:24:46 +00003654 unsigned Opc, unsigned OperandType) {
Chris Lattnerdf986172009-01-02 07:01:27 +00003655 LocTy Loc; Value *LHS, *RHS;
3656 if (ParseTypeAndValue(LHS, Loc, PFS) ||
3657 ParseToken(lltok::comma, "expected ',' in arithmetic operation") ||
3658 ParseValue(LHS->getType(), RHS, PFS))
3659 return true;
3660
Chris Lattnere914b592009-01-05 08:24:46 +00003661 bool Valid;
3662 switch (OperandType) {
Torok Edwinc23197a2009-07-14 16:55:14 +00003663 default: llvm_unreachable("Unknown operand type!");
Chris Lattnere914b592009-01-05 08:24:46 +00003664 case 0: // int or FP.
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00003665 Valid = LHS->getType()->isIntOrIntVectorTy() ||
3666 LHS->getType()->isFPOrFPVectorTy();
Chris Lattnere914b592009-01-05 08:24:46 +00003667 break;
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00003668 case 1: Valid = LHS->getType()->isIntOrIntVectorTy(); break;
3669 case 2: Valid = LHS->getType()->isFPOrFPVectorTy(); break;
Chris Lattnere914b592009-01-05 08:24:46 +00003670 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003671
Chris Lattnere914b592009-01-05 08:24:46 +00003672 if (!Valid)
3673 return Error(Loc, "invalid operand type for instruction");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003674
Chris Lattnerdf986172009-01-02 07:01:27 +00003675 Inst = BinaryOperator::Create((Instruction::BinaryOps)Opc, LHS, RHS);
3676 return false;
3677}
3678
3679/// ParseLogical
3680/// ::= ArithmeticOps TypeAndValue ',' Value {
3681bool LLParser::ParseLogical(Instruction *&Inst, PerFunctionState &PFS,
3682 unsigned Opc) {
3683 LocTy Loc; Value *LHS, *RHS;
3684 if (ParseTypeAndValue(LHS, Loc, PFS) ||
3685 ParseToken(lltok::comma, "expected ',' in logical operation") ||
3686 ParseValue(LHS->getType(), RHS, PFS))
3687 return true;
3688
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00003689 if (!LHS->getType()->isIntOrIntVectorTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00003690 return Error(Loc,"instruction requires integer or integer vector operands");
3691
3692 Inst = BinaryOperator::Create((Instruction::BinaryOps)Opc, LHS, RHS);
3693 return false;
3694}
3695
3696
3697/// ParseCompare
3698/// ::= 'icmp' IPredicates TypeAndValue ',' Value
3699/// ::= 'fcmp' FPredicates TypeAndValue ',' Value
Chris Lattnerdf986172009-01-02 07:01:27 +00003700bool LLParser::ParseCompare(Instruction *&Inst, PerFunctionState &PFS,
3701 unsigned Opc) {
3702 // Parse the integer/fp comparison predicate.
3703 LocTy Loc;
3704 unsigned Pred;
3705 Value *LHS, *RHS;
3706 if (ParseCmpPredicate(Pred, Opc) ||
3707 ParseTypeAndValue(LHS, Loc, PFS) ||
3708 ParseToken(lltok::comma, "expected ',' after compare value") ||
3709 ParseValue(LHS->getType(), RHS, PFS))
3710 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003711
Chris Lattnerdf986172009-01-02 07:01:27 +00003712 if (Opc == Instruction::FCmp) {
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00003713 if (!LHS->getType()->isFPOrFPVectorTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00003714 return Error(Loc, "fcmp requires floating point operands");
Dan Gohman1c8a23c2009-08-25 23:17:54 +00003715 Inst = new FCmpInst(CmpInst::Predicate(Pred), LHS, RHS);
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00003716 } else {
3717 assert(Opc == Instruction::ICmp && "Unknown opcode for CmpInst!");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00003718 if (!LHS->getType()->isIntOrIntVectorTy() &&
Nadav Rotem16087692011-12-05 06:29:09 +00003719 !LHS->getType()->getScalarType()->isPointerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00003720 return Error(Loc, "icmp requires integer operands");
Dan Gohman1c8a23c2009-08-25 23:17:54 +00003721 Inst = new ICmpInst(CmpInst::Predicate(Pred), LHS, RHS);
Chris Lattnerdf986172009-01-02 07:01:27 +00003722 }
3723 return false;
3724}
3725
3726//===----------------------------------------------------------------------===//
3727// Other Instructions.
3728//===----------------------------------------------------------------------===//
3729
3730
3731/// ParseCast
3732/// ::= CastOpc TypeAndValue 'to' Type
3733bool LLParser::ParseCast(Instruction *&Inst, PerFunctionState &PFS,
3734 unsigned Opc) {
Chris Lattner1afcace2011-07-09 17:41:24 +00003735 LocTy Loc;
3736 Value *Op;
3737 Type *DestTy = 0;
Chris Lattnerdf986172009-01-02 07:01:27 +00003738 if (ParseTypeAndValue(Op, Loc, PFS) ||
3739 ParseToken(lltok::kw_to, "expected 'to' after cast value") ||
3740 ParseType(DestTy))
3741 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003742
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00003743 if (!CastInst::castIsValid((Instruction::CastOps)Opc, Op, DestTy)) {
3744 CastInst::castIsValid((Instruction::CastOps)Opc, Op, DestTy);
Chris Lattnerdf986172009-01-02 07:01:27 +00003745 return Error(Loc, "invalid cast opcode for cast from '" +
Chris Lattner0cd0d882011-06-18 21:18:23 +00003746 getTypeString(Op->getType()) + "' to '" +
3747 getTypeString(DestTy) + "'");
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00003748 }
Chris Lattnerdf986172009-01-02 07:01:27 +00003749 Inst = CastInst::Create((Instruction::CastOps)Opc, Op, DestTy);
3750 return false;
3751}
3752
3753/// ParseSelect
3754/// ::= 'select' TypeAndValue ',' TypeAndValue ',' TypeAndValue
3755bool LLParser::ParseSelect(Instruction *&Inst, PerFunctionState &PFS) {
3756 LocTy Loc;
3757 Value *Op0, *Op1, *Op2;
3758 if (ParseTypeAndValue(Op0, Loc, PFS) ||
3759 ParseToken(lltok::comma, "expected ',' after select condition") ||
3760 ParseTypeAndValue(Op1, PFS) ||
3761 ParseToken(lltok::comma, "expected ',' after select value") ||
3762 ParseTypeAndValue(Op2, PFS))
3763 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003764
Chris Lattnerdf986172009-01-02 07:01:27 +00003765 if (const char *Reason = SelectInst::areInvalidOperands(Op0, Op1, Op2))
3766 return Error(Loc, Reason);
Daniel Dunbara279bc32009-09-20 02:20:51 +00003767
Chris Lattnerdf986172009-01-02 07:01:27 +00003768 Inst = SelectInst::Create(Op0, Op1, Op2);
3769 return false;
3770}
3771
Chris Lattner0088a5c2009-01-05 08:18:44 +00003772/// ParseVA_Arg
3773/// ::= 'va_arg' TypeAndValue ',' Type
3774bool LLParser::ParseVA_Arg(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00003775 Value *Op;
Chris Lattner1afcace2011-07-09 17:41:24 +00003776 Type *EltTy = 0;
Chris Lattner0088a5c2009-01-05 08:18:44 +00003777 LocTy TypeLoc;
Chris Lattnerdf986172009-01-02 07:01:27 +00003778 if (ParseTypeAndValue(Op, PFS) ||
3779 ParseToken(lltok::comma, "expected ',' after vaarg operand") ||
Chris Lattner0088a5c2009-01-05 08:18:44 +00003780 ParseType(EltTy, TypeLoc))
Chris Lattnerdf986172009-01-02 07:01:27 +00003781 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003782
Chris Lattner0088a5c2009-01-05 08:18:44 +00003783 if (!EltTy->isFirstClassType())
3784 return Error(TypeLoc, "va_arg requires operand with first class type");
Chris Lattnerdf986172009-01-02 07:01:27 +00003785
3786 Inst = new VAArgInst(Op, EltTy);
3787 return false;
3788}
3789
3790/// ParseExtractElement
3791/// ::= 'extractelement' TypeAndValue ',' TypeAndValue
3792bool LLParser::ParseExtractElement(Instruction *&Inst, PerFunctionState &PFS) {
3793 LocTy Loc;
3794 Value *Op0, *Op1;
3795 if (ParseTypeAndValue(Op0, Loc, PFS) ||
3796 ParseToken(lltok::comma, "expected ',' after extract value") ||
3797 ParseTypeAndValue(Op1, PFS))
3798 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003799
Chris Lattnerdf986172009-01-02 07:01:27 +00003800 if (!ExtractElementInst::isValidOperands(Op0, Op1))
3801 return Error(Loc, "invalid extractelement operands");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003802
Eric Christophera3500da2009-07-25 02:28:41 +00003803 Inst = ExtractElementInst::Create(Op0, Op1);
Chris Lattnerdf986172009-01-02 07:01:27 +00003804 return false;
3805}
3806
3807/// ParseInsertElement
3808/// ::= 'insertelement' TypeAndValue ',' TypeAndValue ',' TypeAndValue
3809bool LLParser::ParseInsertElement(Instruction *&Inst, PerFunctionState &PFS) {
3810 LocTy Loc;
3811 Value *Op0, *Op1, *Op2;
3812 if (ParseTypeAndValue(Op0, Loc, PFS) ||
3813 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
3814 ParseTypeAndValue(Op1, PFS) ||
3815 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
3816 ParseTypeAndValue(Op2, PFS))
3817 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003818
Chris Lattnerdf986172009-01-02 07:01:27 +00003819 if (!InsertElementInst::isValidOperands(Op0, Op1, Op2))
Eric Christopher0aaf4e92009-07-23 01:01:32 +00003820 return Error(Loc, "invalid insertelement operands");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003821
Chris Lattnerdf986172009-01-02 07:01:27 +00003822 Inst = InsertElementInst::Create(Op0, Op1, Op2);
3823 return false;
3824}
3825
3826/// ParseShuffleVector
3827/// ::= 'shufflevector' TypeAndValue ',' TypeAndValue ',' TypeAndValue
3828bool LLParser::ParseShuffleVector(Instruction *&Inst, PerFunctionState &PFS) {
3829 LocTy Loc;
3830 Value *Op0, *Op1, *Op2;
3831 if (ParseTypeAndValue(Op0, Loc, PFS) ||
3832 ParseToken(lltok::comma, "expected ',' after shuffle mask") ||
3833 ParseTypeAndValue(Op1, PFS) ||
3834 ParseToken(lltok::comma, "expected ',' after shuffle value") ||
3835 ParseTypeAndValue(Op2, PFS))
3836 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003837
Chris Lattnerdf986172009-01-02 07:01:27 +00003838 if (!ShuffleVectorInst::isValidOperands(Op0, Op1, Op2))
Pete Cooperaf393682012-02-01 23:43:12 +00003839 return Error(Loc, "invalid shufflevector operands");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003840
Chris Lattnerdf986172009-01-02 07:01:27 +00003841 Inst = new ShuffleVectorInst(Op0, Op1, Op2);
3842 return false;
3843}
3844
3845/// ParsePHI
Chris Lattnerc6e20092009-10-18 05:27:44 +00003846/// ::= 'phi' Type '[' Value ',' Value ']' (',' '[' Value ',' Value ']')*
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003847int LLParser::ParsePHI(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattner1afcace2011-07-09 17:41:24 +00003848 Type *Ty = 0; LocTy TypeLoc;
Chris Lattnerdf986172009-01-02 07:01:27 +00003849 Value *Op0, *Op1;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003850
Chris Lattner1afcace2011-07-09 17:41:24 +00003851 if (ParseType(Ty, TypeLoc) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003852 ParseToken(lltok::lsquare, "expected '[' in phi value list") ||
3853 ParseValue(Ty, Op0, PFS) ||
3854 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
Owen Anderson1d0be152009-08-13 21:58:54 +00003855 ParseValue(Type::getLabelTy(Context), Op1, PFS) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003856 ParseToken(lltok::rsquare, "expected ']' in phi value list"))
3857 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003858
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003859 bool AteExtraComma = false;
Chris Lattnerdf986172009-01-02 07:01:27 +00003860 SmallVector<std::pair<Value*, BasicBlock*>, 16> PHIVals;
3861 while (1) {
3862 PHIVals.push_back(std::make_pair(Op0, cast<BasicBlock>(Op1)));
Daniel Dunbara279bc32009-09-20 02:20:51 +00003863
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003864 if (!EatIfPresent(lltok::comma))
Chris Lattnerdf986172009-01-02 07:01:27 +00003865 break;
3866
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003867 if (Lex.getKind() == lltok::MetadataVar) {
3868 AteExtraComma = true;
Devang Patela43d46f2009-10-16 18:45:49 +00003869 break;
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003870 }
Devang Patela43d46f2009-10-16 18:45:49 +00003871
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003872 if (ParseToken(lltok::lsquare, "expected '[' in phi value list") ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003873 ParseValue(Ty, Op0, PFS) ||
3874 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
Owen Anderson1d0be152009-08-13 21:58:54 +00003875 ParseValue(Type::getLabelTy(Context), Op1, PFS) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003876 ParseToken(lltok::rsquare, "expected ']' in phi value list"))
3877 return true;
3878 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003879
Chris Lattnerdf986172009-01-02 07:01:27 +00003880 if (!Ty->isFirstClassType())
3881 return Error(TypeLoc, "phi node must have first class type");
3882
Jay Foad3ecfc862011-03-30 11:28:46 +00003883 PHINode *PN = PHINode::Create(Ty, PHIVals.size());
Chris Lattnerdf986172009-01-02 07:01:27 +00003884 for (unsigned i = 0, e = PHIVals.size(); i != e; ++i)
3885 PN->addIncoming(PHIVals[i].first, PHIVals[i].second);
3886 Inst = PN;
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003887 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerdf986172009-01-02 07:01:27 +00003888}
3889
Bill Wendlinge6e88262011-08-12 20:24:12 +00003890/// ParseLandingPad
3891/// ::= 'landingpad' Type 'personality' TypeAndValue 'cleanup'? Clause+
3892/// Clause
3893/// ::= 'catch' TypeAndValue
3894/// ::= 'filter'
3895/// ::= 'filter' TypeAndValue ( ',' TypeAndValue )*
3896bool LLParser::ParseLandingPad(Instruction *&Inst, PerFunctionState &PFS) {
3897 Type *Ty = 0; LocTy TyLoc;
3898 Value *PersFn; LocTy PersFnLoc;
Bill Wendlinge6e88262011-08-12 20:24:12 +00003899
3900 if (ParseType(Ty, TyLoc) ||
3901 ParseToken(lltok::kw_personality, "expected 'personality'") ||
3902 ParseTypeAndValue(PersFn, PersFnLoc, PFS))
3903 return true;
3904
3905 LandingPadInst *LP = LandingPadInst::Create(Ty, PersFn, 0);
3906 LP->setCleanup(EatIfPresent(lltok::kw_cleanup));
3907
3908 while (Lex.getKind() == lltok::kw_catch || Lex.getKind() == lltok::kw_filter){
3909 LandingPadInst::ClauseType CT;
3910 if (EatIfPresent(lltok::kw_catch))
3911 CT = LandingPadInst::Catch;
3912 else if (EatIfPresent(lltok::kw_filter))
3913 CT = LandingPadInst::Filter;
3914 else
3915 return TokError("expected 'catch' or 'filter' clause type");
3916
3917 Value *V; LocTy VLoc;
3918 if (ParseTypeAndValue(V, VLoc, PFS)) {
3919 delete LP;
3920 return true;
3921 }
3922
Bill Wendling746c8822011-08-12 20:52:25 +00003923 // A 'catch' type expects a non-array constant. A filter clause expects an
3924 // array constant.
3925 if (CT == LandingPadInst::Catch) {
3926 if (isa<ArrayType>(V->getType()))
3927 Error(VLoc, "'catch' clause has an invalid type");
3928 } else {
3929 if (!isa<ArrayType>(V->getType()))
3930 Error(VLoc, "'filter' clause has an invalid type");
3931 }
3932
Bill Wendlinge6e88262011-08-12 20:24:12 +00003933 LP->addClause(V);
3934 }
3935
3936 Inst = LP;
3937 return false;
3938}
3939
Chris Lattnerdf986172009-01-02 07:01:27 +00003940/// ParseCall
3941/// ::= 'tail'? 'call' OptionalCallingConv OptionalAttrs Type Value
3942/// ParameterList OptionalAttrs
3943bool LLParser::ParseCall(Instruction *&Inst, PerFunctionState &PFS,
3944 bool isTail) {
Bill Wendling702cc912012-10-15 20:35:56 +00003945 AttrBuilder RetAttrs, FnAttrs;
Bill Wendlingbaad55c2013-02-08 06:32:06 +00003946 std::vector<unsigned> FwdRefAttrGrps;
Michael Gottesman2253a2f2013-06-27 00:25:01 +00003947 LocTy BuiltinLoc;
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00003948 CallingConv::ID CC;
Chris Lattner1afcace2011-07-09 17:41:24 +00003949 Type *RetType = 0;
Chris Lattnerdf986172009-01-02 07:01:27 +00003950 LocTy RetTypeLoc;
3951 ValID CalleeID;
3952 SmallVector<ParamInfo, 16> ArgList;
3953 LocTy CallLoc = Lex.getLoc();
Daniel Dunbara279bc32009-09-20 02:20:51 +00003954
Chris Lattnerdf986172009-01-02 07:01:27 +00003955 if ((isTail && ParseToken(lltok::kw_call, "expected 'tail call'")) ||
3956 ParseOptionalCallingConv(CC) ||
Bill Wendlinge01b81b2012-12-04 23:40:58 +00003957 ParseOptionalReturnAttrs(RetAttrs) ||
Chris Lattnera9a9e072009-03-09 04:49:14 +00003958 ParseType(RetType, RetTypeLoc, true /*void allowed*/) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003959 ParseValID(CalleeID) ||
3960 ParseParameterList(ArgList, PFS) ||
Bill Wendling143d4642013-02-22 00:12:35 +00003961 ParseFnAttributeValuePairs(FnAttrs, FwdRefAttrGrps, false,
Michael Gottesman2253a2f2013-06-27 00:25:01 +00003962 BuiltinLoc))
Chris Lattnerdf986172009-01-02 07:01:27 +00003963 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003964
Chris Lattnerdf986172009-01-02 07:01:27 +00003965 // If RetType is a non-function pointer type, then this is the short syntax
3966 // for the call, which means that RetType is just the return type. Infer the
3967 // rest of the function argument types from the arguments that are present.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00003968 PointerType *PFTy = 0;
3969 FunctionType *Ty = 0;
Chris Lattnerdf986172009-01-02 07:01:27 +00003970 if (!(PFTy = dyn_cast<PointerType>(RetType)) ||
3971 !(Ty = dyn_cast<FunctionType>(PFTy->getElementType()))) {
3972 // Pull out the types of all of the arguments...
Jay Foad5fdd6c82011-07-12 14:06:48 +00003973 std::vector<Type*> ParamTypes;
Eli Friedman83b4a972010-07-24 23:06:59 +00003974 for (unsigned i = 0, e = ArgList.size(); i != e; ++i)
3975 ParamTypes.push_back(ArgList[i].V->getType());
Daniel Dunbara279bc32009-09-20 02:20:51 +00003976
Chris Lattnerdf986172009-01-02 07:01:27 +00003977 if (!FunctionType::isValidReturnType(RetType))
3978 return Error(RetTypeLoc, "Invalid result type for LLVM function");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003979
Owen Andersondebcb012009-07-29 22:17:13 +00003980 Ty = FunctionType::get(RetType, ParamTypes, false);
3981 PFTy = PointerType::getUnqual(Ty);
Chris Lattnerdf986172009-01-02 07:01:27 +00003982 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003983
Chris Lattnerdf986172009-01-02 07:01:27 +00003984 // Look up the callee.
3985 Value *Callee;
Victor Hernandez92f238d2010-01-11 22:31:58 +00003986 if (ConvertValIDToValue(PFTy, CalleeID, Callee, &PFS)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003987
Bill Wendling034b94b2012-12-19 07:18:57 +00003988 // Set up the Attribute for the function.
Bill Wendlinga1683d62013-01-27 02:24:02 +00003989 SmallVector<AttributeSet, 8> Attrs;
Bill Wendlinge603fe42012-09-19 23:54:18 +00003990 if (RetAttrs.hasAttributes())
Bill Wendlinga1683d62013-01-27 02:24:02 +00003991 Attrs.push_back(AttributeSet::get(RetType->getContext(),
3992 AttributeSet::ReturnIndex,
3993 RetAttrs));
Daniel Dunbara279bc32009-09-20 02:20:51 +00003994
Chris Lattnerdf986172009-01-02 07:01:27 +00003995 SmallVector<Value*, 8> Args;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003996
Chris Lattnerdf986172009-01-02 07:01:27 +00003997 // Loop through FunctionType's arguments and ensure they are specified
3998 // correctly. Also, gather any parameter attributes.
3999 FunctionType::param_iterator I = Ty->param_begin();
4000 FunctionType::param_iterator E = Ty->param_end();
4001 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
Chris Lattnerdb125cf2011-07-18 04:54:35 +00004002 Type *ExpectedTy = 0;
Chris Lattnerdf986172009-01-02 07:01:27 +00004003 if (I != E) {
4004 ExpectedTy = *I++;
4005 } else if (!Ty->isVarArg()) {
4006 return Error(ArgList[i].Loc, "too many arguments specified");
4007 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00004008
Chris Lattnerdf986172009-01-02 07:01:27 +00004009 if (ExpectedTy && ExpectedTy != ArgList[i].V->getType())
4010 return Error(ArgList[i].Loc, "argument is not of expected type '" +
Chris Lattner0cd0d882011-06-18 21:18:23 +00004011 getTypeString(ExpectedTy) + "'");
Chris Lattnerdf986172009-01-02 07:01:27 +00004012 Args.push_back(ArgList[i].V);
Bill Wendling73dee182013-01-31 00:29:54 +00004013 if (ArgList[i].Attrs.hasAttributes(i + 1)) {
4014 AttrBuilder B(ArgList[i].Attrs, i + 1);
Bill Wendlinga1683d62013-01-27 02:24:02 +00004015 Attrs.push_back(AttributeSet::get(RetType->getContext(), i + 1, B));
4016 }
Chris Lattnerdf986172009-01-02 07:01:27 +00004017 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00004018
Chris Lattnerdf986172009-01-02 07:01:27 +00004019 if (I != E)
4020 return Error(CallLoc, "not enough parameters specified for call");
4021
Bill Wendlinge603fe42012-09-19 23:54:18 +00004022 if (FnAttrs.hasAttributes())
Bill Wendlinga1683d62013-01-27 02:24:02 +00004023 Attrs.push_back(AttributeSet::get(RetType->getContext(),
4024 AttributeSet::FunctionIndex,
4025 FnAttrs));
Chris Lattnerdf986172009-01-02 07:01:27 +00004026
Bill Wendling034b94b2012-12-19 07:18:57 +00004027 // Finish off the Attribute and check them
Bill Wendling99faa3b2012-12-07 23:16:57 +00004028 AttributeSet PAL = AttributeSet::get(Context, Attrs);
Daniel Dunbara279bc32009-09-20 02:20:51 +00004029
Jay Foada3efbb12011-07-15 08:37:34 +00004030 CallInst *CI = CallInst::Create(Callee, Args);
Chris Lattnerdf986172009-01-02 07:01:27 +00004031 CI->setTailCall(isTail);
4032 CI->setCallingConv(CC);
4033 CI->setAttributes(PAL);
Bill Wendlingbaad55c2013-02-08 06:32:06 +00004034 ForwardRefAttrGroups[CI] = FwdRefAttrGrps;
Chris Lattnerdf986172009-01-02 07:01:27 +00004035 Inst = CI;
4036 return false;
4037}
4038
4039//===----------------------------------------------------------------------===//
4040// Memory Instructions.
4041//===----------------------------------------------------------------------===//
4042
4043/// ParseAlloc
Devang Patelf633a062009-09-17 23:04:48 +00004044/// ::= 'alloca' Type (',' TypeAndValue)? (',' OptionalInfo)?
Chris Lattnerf3a789d2011-06-17 03:16:47 +00004045int LLParser::ParseAlloc(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00004046 Value *Size = 0;
Chris Lattnereeb4a842009-07-02 23:08:13 +00004047 LocTy SizeLoc;
Chris Lattnerdf986172009-01-02 07:01:27 +00004048 unsigned Alignment = 0;
Chris Lattner1afcace2011-07-09 17:41:24 +00004049 Type *Ty = 0;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00004050 if (ParseType(Ty)) return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00004051
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00004052 bool AteExtraComma = false;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00004053 if (EatIfPresent(lltok::comma)) {
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00004054 if (Lex.getKind() == lltok::kw_align) {
4055 if (ParseOptionalAlignment(Alignment)) return true;
4056 } else if (Lex.getKind() == lltok::MetadataVar) {
4057 AteExtraComma = true;
Devang Patelf633a062009-09-17 23:04:48 +00004058 } else {
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00004059 if (ParseTypeAndValue(Size, SizeLoc, PFS) ||
4060 ParseOptionalCommaAlign(Alignment, AteExtraComma))
4061 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00004062 }
4063 }
4064
Dan Gohmanf75a7d32010-05-28 01:14:11 +00004065 if (Size && !Size->getType()->isIntegerTy())
4066 return Error(SizeLoc, "element count must have integer type");
Chris Lattnerdf986172009-01-02 07:01:27 +00004067
Chris Lattnerf3a789d2011-06-17 03:16:47 +00004068 Inst = new AllocaInst(Ty, Size, Alignment);
4069 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerdf986172009-01-02 07:01:27 +00004070}
4071
4072/// ParseLoad
Eli Friedmanf03bb262011-08-12 22:50:01 +00004073/// ::= 'load' 'volatile'? TypeAndValue (',' 'align' i32)?
Michael Ilseman407a6162012-11-15 22:34:00 +00004074/// ::= 'load' 'atomic' 'volatile'? TypeAndValue
Eli Friedmanf03bb262011-08-12 22:50:01 +00004075/// 'singlethread'? AtomicOrdering (',' 'align' i32)?
Chris Lattnerfbe910e2011-11-27 06:56:53 +00004076int LLParser::ParseLoad(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00004077 Value *Val; LocTy Loc;
Devang Patelf633a062009-09-17 23:04:48 +00004078 unsigned Alignment = 0;
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00004079 bool AteExtraComma = false;
Eli Friedmanf03bb262011-08-12 22:50:01 +00004080 bool isAtomic = false;
Eli Friedman21006d42011-08-09 23:02:53 +00004081 AtomicOrdering Ordering = NotAtomic;
4082 SynchronizationScope Scope = CrossThread;
Eli Friedmanf03bb262011-08-12 22:50:01 +00004083
4084 if (Lex.getKind() == lltok::kw_atomic) {
Eli Friedmanf03bb262011-08-12 22:50:01 +00004085 isAtomic = true;
4086 Lex.Lex();
4087 }
4088
Chris Lattnerfbe910e2011-11-27 06:56:53 +00004089 bool isVolatile = false;
Eli Friedmanf03bb262011-08-12 22:50:01 +00004090 if (Lex.getKind() == lltok::kw_volatile) {
Eli Friedmanf03bb262011-08-12 22:50:01 +00004091 isVolatile = true;
4092 Lex.Lex();
4093 }
4094
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00004095 if (ParseTypeAndValue(Val, Loc, PFS) ||
Eli Friedman21006d42011-08-09 23:02:53 +00004096 ParseScopeAndOrdering(isAtomic, Scope, Ordering) ||
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00004097 ParseOptionalCommaAlign(Alignment, AteExtraComma))
4098 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00004099
Duncan Sands1df98592010-02-16 11:11:14 +00004100 if (!Val->getType()->isPointerTy() ||
Chris Lattnerdf986172009-01-02 07:01:27 +00004101 !cast<PointerType>(Val->getType())->getElementType()->isFirstClassType())
4102 return Error(Loc, "load operand must be a pointer to a first class type");
Eli Friedman21006d42011-08-09 23:02:53 +00004103 if (isAtomic && !Alignment)
4104 return Error(Loc, "atomic load must have explicit non-zero alignment");
4105 if (Ordering == Release || Ordering == AcquireRelease)
4106 return Error(Loc, "atomic load cannot use Release ordering");
Daniel Dunbara279bc32009-09-20 02:20:51 +00004107
Eli Friedman21006d42011-08-09 23:02:53 +00004108 Inst = new LoadInst(Val, "", isVolatile, Alignment, Ordering, Scope);
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00004109 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerdf986172009-01-02 07:01:27 +00004110}
4111
4112/// ParseStore
Eli Friedmanf03bb262011-08-12 22:50:01 +00004113
4114/// ::= 'store' 'volatile'? TypeAndValue ',' TypeAndValue (',' 'align' i32)?
4115/// ::= 'store' 'atomic' 'volatile'? TypeAndValue ',' TypeAndValue
Eli Friedman21006d42011-08-09 23:02:53 +00004116/// 'singlethread'? AtomicOrdering (',' 'align' i32)?
Chris Lattnerfbe910e2011-11-27 06:56:53 +00004117int LLParser::ParseStore(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00004118 Value *Val, *Ptr; LocTy Loc, PtrLoc;
Devang Patelf633a062009-09-17 23:04:48 +00004119 unsigned Alignment = 0;
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00004120 bool AteExtraComma = false;
Eli Friedmanf03bb262011-08-12 22:50:01 +00004121 bool isAtomic = false;
Eli Friedman21006d42011-08-09 23:02:53 +00004122 AtomicOrdering Ordering = NotAtomic;
4123 SynchronizationScope Scope = CrossThread;
Eli Friedmanf03bb262011-08-12 22:50:01 +00004124
4125 if (Lex.getKind() == lltok::kw_atomic) {
Eli Friedmanf03bb262011-08-12 22:50:01 +00004126 isAtomic = true;
4127 Lex.Lex();
4128 }
4129
Chris Lattnerfbe910e2011-11-27 06:56:53 +00004130 bool isVolatile = false;
Eli Friedmanf03bb262011-08-12 22:50:01 +00004131 if (Lex.getKind() == lltok::kw_volatile) {
Eli Friedmanf03bb262011-08-12 22:50:01 +00004132 isVolatile = true;
4133 Lex.Lex();
4134 }
4135
Chris Lattnerdf986172009-01-02 07:01:27 +00004136 if (ParseTypeAndValue(Val, Loc, PFS) ||
4137 ParseToken(lltok::comma, "expected ',' after store operand") ||
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00004138 ParseTypeAndValue(Ptr, PtrLoc, PFS) ||
Eli Friedman21006d42011-08-09 23:02:53 +00004139 ParseScopeAndOrdering(isAtomic, Scope, Ordering) ||
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00004140 ParseOptionalCommaAlign(Alignment, AteExtraComma))
Chris Lattnerdf986172009-01-02 07:01:27 +00004141 return true;
Devang Patelf633a062009-09-17 23:04:48 +00004142
Duncan Sands1df98592010-02-16 11:11:14 +00004143 if (!Ptr->getType()->isPointerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00004144 return Error(PtrLoc, "store operand must be a pointer");
4145 if (!Val->getType()->isFirstClassType())
4146 return Error(Loc, "store operand must be a first class value");
4147 if (cast<PointerType>(Ptr->getType())->getElementType() != Val->getType())
4148 return Error(Loc, "stored value and pointer type do not match");
Eli Friedman21006d42011-08-09 23:02:53 +00004149 if (isAtomic && !Alignment)
4150 return Error(Loc, "atomic store must have explicit non-zero alignment");
4151 if (Ordering == Acquire || Ordering == AcquireRelease)
4152 return Error(Loc, "atomic store cannot use Acquire ordering");
Daniel Dunbara279bc32009-09-20 02:20:51 +00004153
Eli Friedman21006d42011-08-09 23:02:53 +00004154 Inst = new StoreInst(Val, Ptr, isVolatile, Alignment, Ordering, Scope);
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00004155 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerdf986172009-01-02 07:01:27 +00004156}
4157
Eli Friedmanff030482011-07-28 21:48:00 +00004158/// ParseCmpXchg
Eli Friedmanf03bb262011-08-12 22:50:01 +00004159/// ::= 'cmpxchg' 'volatile'? TypeAndValue ',' TypeAndValue ',' TypeAndValue
4160/// 'singlethread'? AtomicOrdering
4161int LLParser::ParseCmpXchg(Instruction *&Inst, PerFunctionState &PFS) {
Eli Friedmanff030482011-07-28 21:48:00 +00004162 Value *Ptr, *Cmp, *New; LocTy PtrLoc, CmpLoc, NewLoc;
4163 bool AteExtraComma = false;
4164 AtomicOrdering Ordering = NotAtomic;
4165 SynchronizationScope Scope = CrossThread;
Eli Friedmanf03bb262011-08-12 22:50:01 +00004166 bool isVolatile = false;
4167
4168 if (EatIfPresent(lltok::kw_volatile))
4169 isVolatile = true;
4170
Eli Friedmanff030482011-07-28 21:48:00 +00004171 if (ParseTypeAndValue(Ptr, PtrLoc, PFS) ||
4172 ParseToken(lltok::comma, "expected ',' after cmpxchg address") ||
4173 ParseTypeAndValue(Cmp, CmpLoc, PFS) ||
4174 ParseToken(lltok::comma, "expected ',' after cmpxchg cmp operand") ||
4175 ParseTypeAndValue(New, NewLoc, PFS) ||
4176 ParseScopeAndOrdering(true /*Always atomic*/, Scope, Ordering))
4177 return true;
4178
4179 if (Ordering == Unordered)
4180 return TokError("cmpxchg cannot be unordered");
4181 if (!Ptr->getType()->isPointerTy())
4182 return Error(PtrLoc, "cmpxchg operand must be a pointer");
4183 if (cast<PointerType>(Ptr->getType())->getElementType() != Cmp->getType())
4184 return Error(CmpLoc, "compare value and pointer type do not match");
4185 if (cast<PointerType>(Ptr->getType())->getElementType() != New->getType())
4186 return Error(NewLoc, "new value and pointer type do not match");
4187 if (!New->getType()->isIntegerTy())
4188 return Error(NewLoc, "cmpxchg operand must be an integer");
4189 unsigned Size = New->getType()->getPrimitiveSizeInBits();
4190 if (Size < 8 || (Size & (Size - 1)))
4191 return Error(NewLoc, "cmpxchg operand must be power-of-two byte-sized"
4192 " integer");
4193
4194 AtomicCmpXchgInst *CXI =
4195 new AtomicCmpXchgInst(Ptr, Cmp, New, Ordering, Scope);
4196 CXI->setVolatile(isVolatile);
4197 Inst = CXI;
4198 return AteExtraComma ? InstExtraComma : InstNormal;
4199}
4200
4201/// ParseAtomicRMW
Eli Friedmanf03bb262011-08-12 22:50:01 +00004202/// ::= 'atomicrmw' 'volatile'? BinOp TypeAndValue ',' TypeAndValue
4203/// 'singlethread'? AtomicOrdering
4204int LLParser::ParseAtomicRMW(Instruction *&Inst, PerFunctionState &PFS) {
Eli Friedmanff030482011-07-28 21:48:00 +00004205 Value *Ptr, *Val; LocTy PtrLoc, ValLoc;
4206 bool AteExtraComma = false;
4207 AtomicOrdering Ordering = NotAtomic;
4208 SynchronizationScope Scope = CrossThread;
Eli Friedmanf03bb262011-08-12 22:50:01 +00004209 bool isVolatile = false;
Eli Friedmanff030482011-07-28 21:48:00 +00004210 AtomicRMWInst::BinOp Operation;
Eli Friedmanf03bb262011-08-12 22:50:01 +00004211
4212 if (EatIfPresent(lltok::kw_volatile))
4213 isVolatile = true;
4214
Eli Friedmanff030482011-07-28 21:48:00 +00004215 switch (Lex.getKind()) {
4216 default: return TokError("expected binary operation in atomicrmw");
4217 case lltok::kw_xchg: Operation = AtomicRMWInst::Xchg; break;
4218 case lltok::kw_add: Operation = AtomicRMWInst::Add; break;
4219 case lltok::kw_sub: Operation = AtomicRMWInst::Sub; break;
4220 case lltok::kw_and: Operation = AtomicRMWInst::And; break;
4221 case lltok::kw_nand: Operation = AtomicRMWInst::Nand; break;
4222 case lltok::kw_or: Operation = AtomicRMWInst::Or; break;
4223 case lltok::kw_xor: Operation = AtomicRMWInst::Xor; break;
4224 case lltok::kw_max: Operation = AtomicRMWInst::Max; break;
4225 case lltok::kw_min: Operation = AtomicRMWInst::Min; break;
4226 case lltok::kw_umax: Operation = AtomicRMWInst::UMax; break;
4227 case lltok::kw_umin: Operation = AtomicRMWInst::UMin; break;
4228 }
4229 Lex.Lex(); // Eat the operation.
4230
4231 if (ParseTypeAndValue(Ptr, PtrLoc, PFS) ||
4232 ParseToken(lltok::comma, "expected ',' after atomicrmw address") ||
4233 ParseTypeAndValue(Val, ValLoc, PFS) ||
4234 ParseScopeAndOrdering(true /*Always atomic*/, Scope, Ordering))
4235 return true;
4236
4237 if (Ordering == Unordered)
4238 return TokError("atomicrmw cannot be unordered");
4239 if (!Ptr->getType()->isPointerTy())
4240 return Error(PtrLoc, "atomicrmw operand must be a pointer");
4241 if (cast<PointerType>(Ptr->getType())->getElementType() != Val->getType())
4242 return Error(ValLoc, "atomicrmw value and pointer type do not match");
4243 if (!Val->getType()->isIntegerTy())
4244 return Error(ValLoc, "atomicrmw operand must be an integer");
4245 unsigned Size = Val->getType()->getPrimitiveSizeInBits();
4246 if (Size < 8 || (Size & (Size - 1)))
4247 return Error(ValLoc, "atomicrmw operand must be power-of-two byte-sized"
4248 " integer");
4249
4250 AtomicRMWInst *RMWI =
4251 new AtomicRMWInst(Operation, Ptr, Val, Ordering, Scope);
4252 RMWI->setVolatile(isVolatile);
4253 Inst = RMWI;
4254 return AteExtraComma ? InstExtraComma : InstNormal;
4255}
4256
Eli Friedman47f35132011-07-25 23:16:38 +00004257/// ParseFence
4258/// ::= 'fence' 'singlethread'? AtomicOrdering
4259int LLParser::ParseFence(Instruction *&Inst, PerFunctionState &PFS) {
4260 AtomicOrdering Ordering = NotAtomic;
4261 SynchronizationScope Scope = CrossThread;
4262 if (ParseScopeAndOrdering(true /*Always atomic*/, Scope, Ordering))
4263 return true;
4264
4265 if (Ordering == Unordered)
4266 return TokError("fence cannot be unordered");
4267 if (Ordering == Monotonic)
4268 return TokError("fence cannot be monotonic");
4269
4270 Inst = new FenceInst(Context, Ordering, Scope);
4271 return InstNormal;
4272}
4273
Chris Lattnerdf986172009-01-02 07:01:27 +00004274/// ParseGetElementPtr
Dan Gohmandd8004d2009-07-27 21:53:46 +00004275/// ::= 'getelementptr' 'inbounds'? TypeAndValue (',' TypeAndValue)*
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004276int LLParser::ParseGetElementPtr(Instruction *&Inst, PerFunctionState &PFS) {
Nadav Rotem16087692011-12-05 06:29:09 +00004277 Value *Ptr = 0;
4278 Value *Val = 0;
4279 LocTy Loc, EltLoc;
Dan Gohmandd8004d2009-07-27 21:53:46 +00004280
Dan Gohmandcb40a32009-07-29 15:58:36 +00004281 bool InBounds = EatIfPresent(lltok::kw_inbounds);
Dan Gohmandd8004d2009-07-27 21:53:46 +00004282
Chris Lattner3ed88ef2009-01-02 08:05:26 +00004283 if (ParseTypeAndValue(Ptr, Loc, PFS)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00004284
Eli Bendersky59eb5ee2013-04-22 17:03:42 +00004285 Type *BaseType = Ptr->getType();
4286 PointerType *BasePointerType = dyn_cast<PointerType>(BaseType->getScalarType());
4287 if (!BasePointerType)
Chris Lattnerdf986172009-01-02 07:01:27 +00004288 return Error(Loc, "base of getelementptr must be a pointer");
Daniel Dunbara279bc32009-09-20 02:20:51 +00004289
Chris Lattnerdf986172009-01-02 07:01:27 +00004290 SmallVector<Value*, 16> Indices;
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004291 bool AteExtraComma = false;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00004292 while (EatIfPresent(lltok::comma)) {
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004293 if (Lex.getKind() == lltok::MetadataVar) {
4294 AteExtraComma = true;
Devang Patel6225d642009-10-13 18:49:55 +00004295 break;
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004296 }
Chris Lattner3ed88ef2009-01-02 08:05:26 +00004297 if (ParseTypeAndValue(Val, EltLoc, PFS)) return true;
Nadav Rotem16087692011-12-05 06:29:09 +00004298 if (!Val->getType()->getScalarType()->isIntegerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00004299 return Error(EltLoc, "getelementptr index must be an integer");
Nadav Rotem16087692011-12-05 06:29:09 +00004300 if (Val->getType()->isVectorTy() != Ptr->getType()->isVectorTy())
4301 return Error(EltLoc, "getelementptr index type missmatch");
4302 if (Val->getType()->isVectorTy()) {
4303 unsigned ValNumEl = cast<VectorType>(Val->getType())->getNumElements();
4304 unsigned PtrNumEl = cast<VectorType>(Ptr->getType())->getNumElements();
4305 if (ValNumEl != PtrNumEl)
4306 return Error(EltLoc,
4307 "getelementptr vector index has a wrong number of elements");
4308 }
Chris Lattnerdf986172009-01-02 07:01:27 +00004309 Indices.push_back(Val);
4310 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00004311
Eli Bendersky59eb5ee2013-04-22 17:03:42 +00004312 if (!Indices.empty() && !BasePointerType->getElementType()->isSized())
4313 return Error(Loc, "base element of getelementptr must be sized");
4314
4315 if (!GetElementPtrInst::getIndexedType(BaseType, Indices))
Chris Lattnerdf986172009-01-02 07:01:27 +00004316 return Error(Loc, "invalid getelementptr indices");
Jay Foada9203102011-07-25 09:48:08 +00004317 Inst = GetElementPtrInst::Create(Ptr, Indices);
Dan Gohmandd8004d2009-07-27 21:53:46 +00004318 if (InBounds)
Dan Gohmanf8dbee72009-09-07 23:54:19 +00004319 cast<GetElementPtrInst>(Inst)->setIsInBounds(true);
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004320 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerdf986172009-01-02 07:01:27 +00004321}
4322
4323/// ParseExtractValue
4324/// ::= 'extractvalue' TypeAndValue (',' uint32)+
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004325int LLParser::ParseExtractValue(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00004326 Value *Val; LocTy Loc;
4327 SmallVector<unsigned, 4> Indices;
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004328 bool AteExtraComma;
Chris Lattnerdf986172009-01-02 07:01:27 +00004329 if (ParseTypeAndValue(Val, Loc, PFS) ||
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004330 ParseIndexList(Indices, AteExtraComma))
Chris Lattnerdf986172009-01-02 07:01:27 +00004331 return true;
4332
Chris Lattnerfdfeb692010-02-12 20:49:41 +00004333 if (!Val->getType()->isAggregateType())
4334 return Error(Loc, "extractvalue operand must be aggregate type");
Chris Lattnerdf986172009-01-02 07:01:27 +00004335
Jay Foadfc6d3a42011-07-13 10:26:04 +00004336 if (!ExtractValueInst::getIndexedType(Val->getType(), Indices))
Chris Lattnerdf986172009-01-02 07:01:27 +00004337 return Error(Loc, "invalid indices for extractvalue");
Jay Foadfc6d3a42011-07-13 10:26:04 +00004338 Inst = ExtractValueInst::Create(Val, Indices);
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004339 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerdf986172009-01-02 07:01:27 +00004340}
4341
4342/// ParseInsertValue
4343/// ::= 'insertvalue' TypeAndValue ',' TypeAndValue (',' uint32)+
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004344int LLParser::ParseInsertValue(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00004345 Value *Val0, *Val1; LocTy Loc0, Loc1;
4346 SmallVector<unsigned, 4> Indices;
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004347 bool AteExtraComma;
Chris Lattnerdf986172009-01-02 07:01:27 +00004348 if (ParseTypeAndValue(Val0, Loc0, PFS) ||
4349 ParseToken(lltok::comma, "expected comma after insertvalue operand") ||
4350 ParseTypeAndValue(Val1, Loc1, PFS) ||
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004351 ParseIndexList(Indices, AteExtraComma))
Chris Lattnerdf986172009-01-02 07:01:27 +00004352 return true;
Michael Ilseman407a6162012-11-15 22:34:00 +00004353
Chris Lattnerfdfeb692010-02-12 20:49:41 +00004354 if (!Val0->getType()->isAggregateType())
4355 return Error(Loc0, "insertvalue operand must be aggregate type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00004356
Jay Foadfc6d3a42011-07-13 10:26:04 +00004357 if (!ExtractValueInst::getIndexedType(Val0->getType(), Indices))
Chris Lattnerdf986172009-01-02 07:01:27 +00004358 return Error(Loc0, "invalid indices for insertvalue");
Jay Foadfc6d3a42011-07-13 10:26:04 +00004359 Inst = InsertValueInst::Create(Val0, Val1, Indices);
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004360 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerdf986172009-01-02 07:01:27 +00004361}
Nick Lewycky21cc4462009-04-04 07:22:01 +00004362
4363//===----------------------------------------------------------------------===//
4364// Embedded metadata.
4365//===----------------------------------------------------------------------===//
4366
4367/// ParseMDNodeVector
Nick Lewyckycb337992009-05-10 20:57:05 +00004368/// ::= Element (',' Element)*
4369/// Element
4370/// ::= 'null' | TypeAndValue
Victor Hernandezbf170d42010-01-05 22:22:14 +00004371bool LLParser::ParseMDNodeVector(SmallVectorImpl<Value*> &Elts,
Victor Hernandez24e64df2010-01-10 07:14:18 +00004372 PerFunctionState *PFS) {
Dan Gohmanac809752010-07-13 19:33:27 +00004373 // Check for an empty list.
4374 if (Lex.getKind() == lltok::rbrace)
4375 return false;
4376
Nick Lewycky21cc4462009-04-04 07:22:01 +00004377 do {
Chris Lattnera7352392009-12-30 04:42:57 +00004378 // Null is a special case since it is typeless.
4379 if (EatIfPresent(lltok::kw_null)) {
4380 Elts.push_back(0);
4381 continue;
Nick Lewyckycb337992009-05-10 20:57:05 +00004382 }
Michael Ilseman407a6162012-11-15 22:34:00 +00004383
Chris Lattnera7352392009-12-30 04:42:57 +00004384 Value *V = 0;
Chris Lattner1afcace2011-07-09 17:41:24 +00004385 if (ParseTypeAndValue(V, PFS)) return true;
Nick Lewyckycb337992009-05-10 20:57:05 +00004386 Elts.push_back(V);
Nick Lewycky21cc4462009-04-04 07:22:01 +00004387 } while (EatIfPresent(lltok::comma));
4388
4389 return false;
4390}