blob: 9b5fb27a05673c76ac3fd86e5d96ea02f0d0fe4b [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 Yang8e3851a2013-10-23 17:28:19 +0000707 bool IsConstant, UnnamedAddr, IsExternallyInitialized, notAddrTaken;
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) ||
Shuxin Yang8e3851a2013-10-23 17:28:19 +0000722 ParseOptionalToken(lltok::kw_notaddrtaken, notAddrTaken) ||
Chris Lattnerdf986172009-01-02 07:01:27 +0000723 ParseType(Ty, TyLoc))
724 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000725
Chris Lattnerdf986172009-01-02 07:01:27 +0000726 // If the linkage is specified and is external, then no initializer is
727 // present.
728 Constant *Init = 0;
729 if (!HasLinkage || (Linkage != GlobalValue::DLLImportLinkage &&
Duncan Sands5f4ee1f2009-03-11 08:08:06 +0000730 Linkage != GlobalValue::ExternalWeakLinkage &&
Chris Lattnerdf986172009-01-02 07:01:27 +0000731 Linkage != GlobalValue::ExternalLinkage)) {
732 if (ParseGlobalValue(Ty, Init))
733 return true;
734 }
735
Duncan Sands1df98592010-02-16 11:11:14 +0000736 if (Ty->isFunctionTy() || Ty->isLabelTy())
Chris Lattner4a2f1122009-02-08 20:00:15 +0000737 return Error(TyLoc, "invalid type for global variable");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000738
Chris Lattnerdf986172009-01-02 07:01:27 +0000739 GlobalVariable *GV = 0;
740
741 // See if the global was forward referenced, if so, use the global.
Chris Lattner91dad872009-02-02 07:24:28 +0000742 if (!Name.empty()) {
Chris Lattner1d871c52009-10-25 23:22:50 +0000743 if (GlobalValue *GVal = M->getNamedValue(Name)) {
744 if (!ForwardRefVals.erase(Name) || !isa<GlobalValue>(GVal))
745 return Error(NameLoc, "redefinition of global '@" + Name + "'");
746 GV = cast<GlobalVariable>(GVal);
747 }
Chris Lattnerdf986172009-01-02 07:01:27 +0000748 } else {
749 std::map<unsigned, std::pair<GlobalValue*, LocTy> >::iterator
750 I = ForwardRefValIDs.find(NumberedVals.size());
751 if (I != ForwardRefValIDs.end()) {
752 GV = cast<GlobalVariable>(I->second.first);
753 ForwardRefValIDs.erase(I);
754 }
755 }
756
757 if (GV == 0) {
Daniel Dunbara279bc32009-09-20 02:20:51 +0000758 GV = new GlobalVariable(*M, Ty, false, GlobalValue::ExternalLinkage, 0,
Hans Wennborgce718ff2012-06-23 11:37:03 +0000759 Name, 0, GlobalVariable::NotThreadLocal,
760 AddrSpace);
Chris Lattnerdf986172009-01-02 07:01:27 +0000761 } else {
762 if (GV->getType()->getElementType() != Ty)
763 return Error(TyLoc,
764 "forward reference and definition of global have different types");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000765
Chris Lattnerdf986172009-01-02 07:01:27 +0000766 // Move the forward-reference to the correct spot in the module.
767 M->getGlobalList().splice(M->global_end(), M->getGlobalList(), GV);
768 }
769
770 if (Name.empty())
771 NumberedVals.push_back(GV);
Daniel Dunbara279bc32009-09-20 02:20:51 +0000772
Chris Lattnerdf986172009-01-02 07:01:27 +0000773 // Set the parsed properties on the global.
774 if (Init)
775 GV->setInitializer(Init);
776 GV->setConstant(IsConstant);
777 GV->setLinkage((GlobalValue::LinkageTypes)Linkage);
778 GV->setVisibility((GlobalValue::VisibilityTypes)Visibility);
Michael Gottesmana2de37c2013-02-05 05:57:38 +0000779 GV->setExternallyInitialized(IsExternallyInitialized);
Shuxin Yang8e3851a2013-10-23 17:28:19 +0000780 GV->setAddressMaybeTaken(!notAddrTaken);
Hans Wennborgce718ff2012-06-23 11:37:03 +0000781 GV->setThreadLocalMode(TLM);
Rafael Espindolabea46262011-01-08 16:42:36 +0000782 GV->setUnnamedAddr(UnnamedAddr);
Daniel Dunbara279bc32009-09-20 02:20:51 +0000783
Chris Lattnerdf986172009-01-02 07:01:27 +0000784 // Parse attributes on the global.
785 while (Lex.getKind() == lltok::comma) {
786 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +0000787
Chris Lattnerdf986172009-01-02 07:01:27 +0000788 if (Lex.getKind() == lltok::kw_section) {
789 Lex.Lex();
790 GV->setSection(Lex.getStrVal());
791 if (ParseToken(lltok::StringConstant, "expected global section string"))
792 return true;
793 } else if (Lex.getKind() == lltok::kw_align) {
794 unsigned Alignment;
795 if (ParseOptionalAlignment(Alignment)) return true;
796 GV->setAlignment(Alignment);
797 } else {
798 TokError("unknown global variable property!");
799 }
800 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000801
Chris Lattnerdf986172009-01-02 07:01:27 +0000802 return false;
803}
804
Bill Wendling95ce4c22013-02-06 06:52:58 +0000805/// ParseUnnamedAttrGrp
Bill Wendling0b778662013-02-09 15:48:49 +0000806/// ::= 'attributes' AttrGrpID '=' '{' AttrValPair+ '}'
Bill Wendling95ce4c22013-02-06 06:52:58 +0000807bool LLParser::ParseUnnamedAttrGrp() {
Bill Wendling0b778662013-02-09 15:48:49 +0000808 assert(Lex.getKind() == lltok::kw_attributes);
Bill Wendling95ce4c22013-02-06 06:52:58 +0000809 LocTy AttrGrpLoc = Lex.getLoc();
Bill Wendling0b778662013-02-09 15:48:49 +0000810 Lex.Lex();
811
812 assert(Lex.getKind() == lltok::AttrGrpID);
Bill Wendling95ce4c22013-02-06 06:52:58 +0000813 unsigned VarID = Lex.getUIntVal();
Bill Wendlingbaad55c2013-02-08 06:32:06 +0000814 std::vector<unsigned> unused;
Michael Gottesman2253a2f2013-06-27 00:25:01 +0000815 LocTy BuiltinLoc;
Bill Wendling95ce4c22013-02-06 06:52:58 +0000816 Lex.Lex();
817
818 if (ParseToken(lltok::equal, "expected '=' here") ||
Bill Wendling95ce4c22013-02-06 06:52:58 +0000819 ParseToken(lltok::lbrace, "expected '{' here") ||
Bill Wendling143d4642013-02-22 00:12:35 +0000820 ParseFnAttributeValuePairs(NumberedAttrBuilders[VarID], unused, true,
Michael Gottesman2253a2f2013-06-27 00:25:01 +0000821 BuiltinLoc) ||
Bill Wendling95ce4c22013-02-06 06:52:58 +0000822 ParseToken(lltok::rbrace, "expected end of attribute group"))
823 return true;
824
Bill Wendlingbaad55c2013-02-08 06:32:06 +0000825 if (!NumberedAttrBuilders[VarID].hasAttributes())
Bill Wendling95ce4c22013-02-06 06:52:58 +0000826 return Error(AttrGrpLoc, "attribute group has no attributes");
827
828 return false;
829}
830
Bill Wendlingea007fa2013-02-08 00:52:31 +0000831/// ParseFnAttributeValuePairs
Bill Wendling95ce4c22013-02-06 06:52:58 +0000832/// ::= <attr> | <attr> '=' <value>
Bill Wendlingbaad55c2013-02-08 06:32:06 +0000833bool LLParser::ParseFnAttributeValuePairs(AttrBuilder &B,
834 std::vector<unsigned> &FwdRefAttrGrps,
Michael Gottesman2253a2f2013-06-27 00:25:01 +0000835 bool inAttrGrp, LocTy &BuiltinLoc) {
Bill Wendlingea007fa2013-02-08 00:52:31 +0000836 bool HaveError = false;
837
838 B.clear();
839
Bill Wendling95ce4c22013-02-06 06:52:58 +0000840 while (true) {
841 lltok::Kind Token = Lex.getKind();
Michael Gottesman2253a2f2013-06-27 00:25:01 +0000842 if (Token == lltok::kw_builtin)
843 BuiltinLoc = Lex.getLoc();
Bill Wendling95ce4c22013-02-06 06:52:58 +0000844 switch (Token) {
845 default:
Bill Wendlingea007fa2013-02-08 00:52:31 +0000846 if (!inAttrGrp) return HaveError;
Bill Wendling95ce4c22013-02-06 06:52:58 +0000847 return Error(Lex.getLoc(), "unterminated attribute group");
848 case lltok::rbrace:
849 // Finished.
850 return false;
851
Bill Wendlingbaad55c2013-02-08 06:32:06 +0000852 case lltok::AttrGrpID: {
853 // Allow a function to reference an attribute group:
854 //
855 // define void @foo() #1 { ... }
856 if (inAttrGrp)
857 HaveError |=
858 Error(Lex.getLoc(),
859 "cannot have an attribute group reference in an attribute group");
860
861 unsigned AttrGrpNum = Lex.getUIntVal();
862 if (inAttrGrp) break;
863
864 // Save the reference to the attribute group. We'll fill it in later.
865 FwdRefAttrGrps.push_back(AttrGrpNum);
866 break;
867 }
Bill Wendling95ce4c22013-02-06 06:52:58 +0000868 // Target-dependent attributes:
869 case lltok::StringConstant: {
870 std::string Attr = Lex.getStrVal();
871 Lex.Lex();
872 std::string Val;
873 if (EatIfPresent(lltok::equal) &&
874 ParseStringConstant(Val))
875 return true;
876
877 B.addAttribute(Attr, Val);
Bill Wendling0f742202013-02-10 10:12:50 +0000878 continue;
Bill Wendling95ce4c22013-02-06 06:52:58 +0000879 }
880
881 // Target-independent attributes:
882 case lltok::kw_align: {
Bill Wendlingc0b4b672013-04-18 18:30:16 +0000883 // As a hack, we allow function alignment to be initially parsed as an
884 // attribute on a function declaration/definition or added to an attribute
885 // group and later moved to the alignment field.
Bill Wendling95ce4c22013-02-06 06:52:58 +0000886 unsigned Alignment;
Bill Wendlingea007fa2013-02-08 00:52:31 +0000887 if (inAttrGrp) {
Bill Wendling3f87d232013-02-10 23:15:51 +0000888 Lex.Lex();
Bill Wendlingea007fa2013-02-08 00:52:31 +0000889 if (ParseToken(lltok::equal, "expected '=' here") ||
890 ParseUInt32(Alignment))
891 return true;
892 } else {
893 if (ParseOptionalAlignment(Alignment))
894 return true;
895 }
Bill Wendling95ce4c22013-02-06 06:52:58 +0000896 B.addAlignmentAttr(Alignment);
Bill Wendlingea007fa2013-02-08 00:52:31 +0000897 continue;
Bill Wendling95ce4c22013-02-06 06:52:58 +0000898 }
899 case lltok::kw_alignstack: {
900 unsigned Alignment;
Bill Wendlingea007fa2013-02-08 00:52:31 +0000901 if (inAttrGrp) {
Bill Wendling3f87d232013-02-10 23:15:51 +0000902 Lex.Lex();
Bill Wendlingea007fa2013-02-08 00:52:31 +0000903 if (ParseToken(lltok::equal, "expected '=' here") ||
904 ParseUInt32(Alignment))
905 return true;
906 } else {
907 if (ParseOptionalStackAlignment(Alignment))
908 return true;
909 }
Bill Wendling95ce4c22013-02-06 06:52:58 +0000910 B.addStackAlignmentAttr(Alignment);
Bill Wendlingea007fa2013-02-08 00:52:31 +0000911 continue;
Bill Wendling95ce4c22013-02-06 06:52:58 +0000912 }
Kostya Serebryany8eec41f2013-02-26 06:58:09 +0000913 case lltok::kw_alwaysinline: B.addAttribute(Attribute::AlwaysInline); break;
Michael Gottesman2253a2f2013-06-27 00:25:01 +0000914 case lltok::kw_builtin: B.addAttribute(Attribute::Builtin); break;
Diego Novillo77226a02013-05-24 12:26:52 +0000915 case lltok::kw_cold: B.addAttribute(Attribute::Cold); break;
Kostya Serebryany8eec41f2013-02-26 06:58:09 +0000916 case lltok::kw_inlinehint: B.addAttribute(Attribute::InlineHint); break;
917 case lltok::kw_minsize: B.addAttribute(Attribute::MinSize); break;
918 case lltok::kw_naked: B.addAttribute(Attribute::Naked); break;
919 case lltok::kw_nobuiltin: B.addAttribute(Attribute::NoBuiltin); break;
920 case lltok::kw_noduplicate: B.addAttribute(Attribute::NoDuplicate); break;
921 case lltok::kw_noimplicitfloat: B.addAttribute(Attribute::NoImplicitFloat); break;
922 case lltok::kw_noinline: B.addAttribute(Attribute::NoInline); break;
923 case lltok::kw_nonlazybind: B.addAttribute(Attribute::NonLazyBind); break;
924 case lltok::kw_noredzone: B.addAttribute(Attribute::NoRedZone); break;
925 case lltok::kw_noreturn: B.addAttribute(Attribute::NoReturn); break;
926 case lltok::kw_nounwind: B.addAttribute(Attribute::NoUnwind); break;
Andrea Di Biagio5768bb82013-08-23 11:53:55 +0000927 case lltok::kw_optnone: B.addAttribute(Attribute::OptimizeNone); break;
Kostya Serebryany8eec41f2013-02-26 06:58:09 +0000928 case lltok::kw_optsize: B.addAttribute(Attribute::OptimizeForSize); break;
929 case lltok::kw_readnone: B.addAttribute(Attribute::ReadNone); break;
930 case lltok::kw_readonly: B.addAttribute(Attribute::ReadOnly); break;
931 case lltok::kw_returns_twice: B.addAttribute(Attribute::ReturnsTwice); break;
932 case lltok::kw_ssp: B.addAttribute(Attribute::StackProtect); break;
933 case lltok::kw_sspreq: B.addAttribute(Attribute::StackProtectReq); break;
934 case lltok::kw_sspstrong: B.addAttribute(Attribute::StackProtectStrong); break;
935 case lltok::kw_sanitize_address: B.addAttribute(Attribute::SanitizeAddress); break;
936 case lltok::kw_sanitize_thread: B.addAttribute(Attribute::SanitizeThread); break;
937 case lltok::kw_sanitize_memory: B.addAttribute(Attribute::SanitizeMemory); break;
938 case lltok::kw_uwtable: B.addAttribute(Attribute::UWTable); break;
Bill Wendlingea007fa2013-02-08 00:52:31 +0000939
940 // Error handling.
941 case lltok::kw_inreg:
942 case lltok::kw_signext:
943 case lltok::kw_zeroext:
944 HaveError |=
945 Error(Lex.getLoc(),
946 "invalid use of attribute on a function");
947 break;
948 case lltok::kw_byval:
949 case lltok::kw_nest:
950 case lltok::kw_noalias:
951 case lltok::kw_nocapture:
Stephen Lin456ca042013-04-20 05:14:40 +0000952 case lltok::kw_returned:
Bill Wendlingea007fa2013-02-08 00:52:31 +0000953 case lltok::kw_sret:
954 HaveError |=
955 Error(Lex.getLoc(),
956 "invalid use of parameter-only attribute on a function");
957 break;
Bill Wendling95ce4c22013-02-06 06:52:58 +0000958 }
959
960 Lex.Lex();
961 }
962}
Chris Lattnerdf986172009-01-02 07:01:27 +0000963
964//===----------------------------------------------------------------------===//
965// GlobalValue Reference/Resolution Routines.
966//===----------------------------------------------------------------------===//
967
968/// GetGlobalVal - Get a value with the specified name or ID, creating a
969/// forward reference record if needed. This can return null if the value
970/// exists but does not have the right type.
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000971GlobalValue *LLParser::GetGlobalVal(const std::string &Name, Type *Ty,
Chris Lattnerdf986172009-01-02 07:01:27 +0000972 LocTy Loc) {
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000973 PointerType *PTy = dyn_cast<PointerType>(Ty);
Chris Lattnerdf986172009-01-02 07:01:27 +0000974 if (PTy == 0) {
975 Error(Loc, "global variable reference must have pointer type");
976 return 0;
977 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000978
Chris Lattnerdf986172009-01-02 07:01:27 +0000979 // Look this name up in the normal function symbol table.
980 GlobalValue *Val =
981 cast_or_null<GlobalValue>(M->getValueSymbolTable().lookup(Name));
Daniel Dunbara279bc32009-09-20 02:20:51 +0000982
Chris Lattnerdf986172009-01-02 07:01:27 +0000983 // If this is a forward reference for the value, see if we already created a
984 // forward ref record.
985 if (Val == 0) {
986 std::map<std::string, std::pair<GlobalValue*, LocTy> >::iterator
987 I = ForwardRefVals.find(Name);
988 if (I != ForwardRefVals.end())
989 Val = I->second.first;
990 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000991
Chris Lattnerdf986172009-01-02 07:01:27 +0000992 // If we have the value in the symbol table or fwd-ref table, return it.
993 if (Val) {
994 if (Val->getType() == Ty) return Val;
995 Error(Loc, "'@" + Name + "' defined with type '" +
Chris Lattner0cd0d882011-06-18 21:18:23 +0000996 getTypeString(Val->getType()) + "'");
Chris Lattnerdf986172009-01-02 07:01:27 +0000997 return 0;
998 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000999
Chris Lattnerdf986172009-01-02 07:01:27 +00001000 // Otherwise, create a new forward reference for this value and remember it.
1001 GlobalValue *FwdVal;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001002 if (FunctionType *FT = dyn_cast<FunctionType>(PTy->getElementType()))
Duncan Sands5f4ee1f2009-03-11 08:08:06 +00001003 FwdVal = Function::Create(FT, GlobalValue::ExternalWeakLinkage, Name, M);
Chris Lattner1afcace2011-07-09 17:41:24 +00001004 else
Owen Andersone9b11b42009-07-08 19:03:57 +00001005 FwdVal = new GlobalVariable(*M, PTy->getElementType(), false,
Justin Holewinskieaff2d52012-11-16 21:03:47 +00001006 GlobalValue::ExternalWeakLinkage, 0, Name,
1007 0, GlobalVariable::NotThreadLocal,
1008 PTy->getAddressSpace());
Daniel Dunbara279bc32009-09-20 02:20:51 +00001009
Chris Lattnerdf986172009-01-02 07:01:27 +00001010 ForwardRefVals[Name] = std::make_pair(FwdVal, Loc);
1011 return FwdVal;
1012}
1013
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001014GlobalValue *LLParser::GetGlobalVal(unsigned ID, Type *Ty, LocTy Loc) {
1015 PointerType *PTy = dyn_cast<PointerType>(Ty);
Chris Lattnerdf986172009-01-02 07:01:27 +00001016 if (PTy == 0) {
1017 Error(Loc, "global variable reference must have pointer type");
1018 return 0;
1019 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001020
Chris Lattnerdf986172009-01-02 07:01:27 +00001021 GlobalValue *Val = ID < NumberedVals.size() ? NumberedVals[ID] : 0;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001022
Chris Lattnerdf986172009-01-02 07:01:27 +00001023 // If this is a forward reference for the value, see if we already created a
1024 // forward ref record.
1025 if (Val == 0) {
1026 std::map<unsigned, std::pair<GlobalValue*, LocTy> >::iterator
1027 I = ForwardRefValIDs.find(ID);
1028 if (I != ForwardRefValIDs.end())
1029 Val = I->second.first;
1030 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001031
Chris Lattnerdf986172009-01-02 07:01:27 +00001032 // If we have the value in the symbol table or fwd-ref table, return it.
1033 if (Val) {
1034 if (Val->getType() == Ty) return Val;
Benjamin Kramerd1e17032010-09-27 17:42:11 +00001035 Error(Loc, "'@" + Twine(ID) + "' defined with type '" +
Chris Lattner0cd0d882011-06-18 21:18:23 +00001036 getTypeString(Val->getType()) + "'");
Chris Lattnerdf986172009-01-02 07:01:27 +00001037 return 0;
1038 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001039
Chris Lattnerdf986172009-01-02 07:01:27 +00001040 // Otherwise, create a new forward reference for this value and remember it.
1041 GlobalValue *FwdVal;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001042 if (FunctionType *FT = dyn_cast<FunctionType>(PTy->getElementType()))
Duncan Sands5f4ee1f2009-03-11 08:08:06 +00001043 FwdVal = Function::Create(FT, GlobalValue::ExternalWeakLinkage, "", M);
Chris Lattner1afcace2011-07-09 17:41:24 +00001044 else
Owen Andersone9b11b42009-07-08 19:03:57 +00001045 FwdVal = new GlobalVariable(*M, PTy->getElementType(), false,
1046 GlobalValue::ExternalWeakLinkage, 0, "");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001047
Chris Lattnerdf986172009-01-02 07:01:27 +00001048 ForwardRefValIDs[ID] = std::make_pair(FwdVal, Loc);
1049 return FwdVal;
1050}
1051
1052
1053//===----------------------------------------------------------------------===//
1054// Helper Routines.
1055//===----------------------------------------------------------------------===//
1056
1057/// ParseToken - If the current token has the specified kind, eat it and return
1058/// success. Otherwise, emit the specified error and return failure.
1059bool LLParser::ParseToken(lltok::Kind T, const char *ErrMsg) {
1060 if (Lex.getKind() != T)
1061 return TokError(ErrMsg);
1062 Lex.Lex();
1063 return false;
1064}
1065
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001066/// ParseStringConstant
1067/// ::= StringConstant
1068bool LLParser::ParseStringConstant(std::string &Result) {
1069 if (Lex.getKind() != lltok::StringConstant)
1070 return TokError("expected string constant");
1071 Result = Lex.getStrVal();
1072 Lex.Lex();
1073 return false;
1074}
1075
1076/// ParseUInt32
1077/// ::= uint32
1078bool LLParser::ParseUInt32(unsigned &Val) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001079 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned())
1080 return TokError("expected integer");
1081 uint64_t Val64 = Lex.getAPSIntVal().getLimitedValue(0xFFFFFFFFULL+1);
1082 if (Val64 != unsigned(Val64))
1083 return TokError("expected 32-bit integer (too large)");
1084 Val = Val64;
1085 Lex.Lex();
1086 return false;
1087}
1088
Hans Wennborgce718ff2012-06-23 11:37:03 +00001089/// ParseTLSModel
1090/// := 'localdynamic'
1091/// := 'initialexec'
1092/// := 'localexec'
1093bool LLParser::ParseTLSModel(GlobalVariable::ThreadLocalMode &TLM) {
1094 switch (Lex.getKind()) {
1095 default:
1096 return TokError("expected localdynamic, initialexec or localexec");
1097 case lltok::kw_localdynamic:
1098 TLM = GlobalVariable::LocalDynamicTLSModel;
1099 break;
1100 case lltok::kw_initialexec:
1101 TLM = GlobalVariable::InitialExecTLSModel;
1102 break;
1103 case lltok::kw_localexec:
1104 TLM = GlobalVariable::LocalExecTLSModel;
1105 break;
1106 }
1107
1108 Lex.Lex();
1109 return false;
1110}
1111
1112/// ParseOptionalThreadLocal
1113/// := /*empty*/
1114/// := 'thread_local'
1115/// := 'thread_local' '(' tlsmodel ')'
1116bool LLParser::ParseOptionalThreadLocal(GlobalVariable::ThreadLocalMode &TLM) {
1117 TLM = GlobalVariable::NotThreadLocal;
1118 if (!EatIfPresent(lltok::kw_thread_local))
1119 return false;
1120
1121 TLM = GlobalVariable::GeneralDynamicTLSModel;
1122 if (Lex.getKind() == lltok::lparen) {
1123 Lex.Lex();
1124 return ParseTLSModel(TLM) ||
1125 ParseToken(lltok::rparen, "expected ')' after thread local model");
1126 }
1127 return false;
1128}
Chris Lattnerdf986172009-01-02 07:01:27 +00001129
1130/// ParseOptionalAddrSpace
1131/// := /*empty*/
1132/// := 'addrspace' '(' uint32 ')'
1133bool LLParser::ParseOptionalAddrSpace(unsigned &AddrSpace) {
1134 AddrSpace = 0;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001135 if (!EatIfPresent(lltok::kw_addrspace))
Chris Lattnerdf986172009-01-02 07:01:27 +00001136 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00001137 return ParseToken(lltok::lparen, "expected '(' in address space") ||
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001138 ParseUInt32(AddrSpace) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00001139 ParseToken(lltok::rparen, "expected ')' in address space");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001140}
Chris Lattnerdf986172009-01-02 07:01:27 +00001141
Bill Wendlinge01b81b2012-12-04 23:40:58 +00001142/// ParseOptionalParamAttrs - Parse a potentially empty list of parameter attributes.
1143bool LLParser::ParseOptionalParamAttrs(AttrBuilder &B) {
1144 bool HaveError = false;
1145
1146 B.clear();
1147
1148 while (1) {
1149 lltok::Kind Token = Lex.getKind();
1150 switch (Token) {
1151 default: // End of attributes.
1152 return HaveError;
Chris Lattnerdf986172009-01-02 07:01:27 +00001153 case lltok::kw_align: {
1154 unsigned Alignment;
1155 if (ParseOptionalAlignment(Alignment))
1156 return true;
Bill Wendling03272442012-10-08 22:20:14 +00001157 B.addAlignmentAttr(Alignment);
Chris Lattnerdf986172009-01-02 07:01:27 +00001158 continue;
1159 }
Bill Wendling034b94b2012-12-19 07:18:57 +00001160 case lltok::kw_byval: B.addAttribute(Attribute::ByVal); break;
1161 case lltok::kw_inreg: B.addAttribute(Attribute::InReg); break;
1162 case lltok::kw_nest: B.addAttribute(Attribute::Nest); break;
1163 case lltok::kw_noalias: B.addAttribute(Attribute::NoAlias); break;
1164 case lltok::kw_nocapture: B.addAttribute(Attribute::NoCapture); break;
Nick Lewyckydc897372013-07-06 00:29:58 +00001165 case lltok::kw_readnone: B.addAttribute(Attribute::ReadNone); break;
1166 case lltok::kw_readonly: B.addAttribute(Attribute::ReadOnly); break;
Stephen Lin456ca042013-04-20 05:14:40 +00001167 case lltok::kw_returned: B.addAttribute(Attribute::Returned); break;
Bill Wendling034b94b2012-12-19 07:18:57 +00001168 case lltok::kw_signext: B.addAttribute(Attribute::SExt); break;
1169 case lltok::kw_sret: B.addAttribute(Attribute::StructRet); break;
1170 case lltok::kw_zeroext: B.addAttribute(Attribute::ZExt); break;
Charles Davis1e063d12010-02-12 00:31:15 +00001171
Stephen Linb0aeb3e2013-04-20 13:16:13 +00001172 case lltok::kw_alignstack:
1173 case lltok::kw_alwaysinline:
Michael Gottesman2253a2f2013-06-27 00:25:01 +00001174 case lltok::kw_builtin:
Stephen Linb0aeb3e2013-04-20 13:16:13 +00001175 case lltok::kw_inlinehint:
1176 case lltok::kw_minsize:
1177 case lltok::kw_naked:
1178 case lltok::kw_nobuiltin:
1179 case lltok::kw_noduplicate:
1180 case lltok::kw_noimplicitfloat:
1181 case lltok::kw_noinline:
1182 case lltok::kw_nonlazybind:
1183 case lltok::kw_noredzone:
1184 case lltok::kw_noreturn:
1185 case lltok::kw_nounwind:
Andrea Di Biagio5768bb82013-08-23 11:53:55 +00001186 case lltok::kw_optnone:
Stephen Linb0aeb3e2013-04-20 13:16:13 +00001187 case lltok::kw_optsize:
Stephen Linb0aeb3e2013-04-20 13:16:13 +00001188 case lltok::kw_returns_twice:
1189 case lltok::kw_sanitize_address:
1190 case lltok::kw_sanitize_memory:
1191 case lltok::kw_sanitize_thread:
1192 case lltok::kw_ssp:
1193 case lltok::kw_sspreq:
1194 case lltok::kw_sspstrong:
1195 case lltok::kw_uwtable:
Bill Wendlinge01b81b2012-12-04 23:40:58 +00001196 HaveError |= Error(Lex.getLoc(), "invalid use of function-only attribute");
1197 break;
Chris Lattnerdf986172009-01-02 07:01:27 +00001198 }
Bill Wendlingdc998cc2012-09-28 22:30:18 +00001199
Bill Wendlinge01b81b2012-12-04 23:40:58 +00001200 Lex.Lex();
1201 }
1202}
1203
1204/// ParseOptionalReturnAttrs - Parse a potentially empty list of return attributes.
1205bool LLParser::ParseOptionalReturnAttrs(AttrBuilder &B) {
1206 bool HaveError = false;
1207
1208 B.clear();
1209
1210 while (1) {
1211 lltok::Kind Token = Lex.getKind();
Bill Wendlingdc998cc2012-09-28 22:30:18 +00001212 switch (Token) {
Bill Wendlinge01b81b2012-12-04 23:40:58 +00001213 default: // End of attributes.
1214 return HaveError;
Bill Wendling034b94b2012-12-19 07:18:57 +00001215 case lltok::kw_inreg: B.addAttribute(Attribute::InReg); break;
1216 case lltok::kw_noalias: B.addAttribute(Attribute::NoAlias); break;
1217 case lltok::kw_signext: B.addAttribute(Attribute::SExt); break;
1218 case lltok::kw_zeroext: B.addAttribute(Attribute::ZExt); break;
Bill Wendlingdc998cc2012-09-28 22:30:18 +00001219
Bill Wendlinge01b81b2012-12-04 23:40:58 +00001220 // Error handling.
Stephen Linb0aeb3e2013-04-20 13:16:13 +00001221 case lltok::kw_align:
Chandler Carruth239e1e42013-04-09 19:46:46 +00001222 case lltok::kw_byval:
1223 case lltok::kw_nest:
1224 case lltok::kw_nocapture:
Stephen Lin456ca042013-04-20 05:14:40 +00001225 case lltok::kw_returned:
Chandler Carruth239e1e42013-04-09 19:46:46 +00001226 case lltok::kw_sret:
Bill Wendlinge01b81b2012-12-04 23:40:58 +00001227 HaveError |= Error(Lex.getLoc(), "invalid use of parameter-only attribute");
Bill Wendlingdc998cc2012-09-28 22:30:18 +00001228 break;
James Molloy67ae1352012-12-20 16:04:27 +00001229
Chandler Carruth239e1e42013-04-09 19:46:46 +00001230 case lltok::kw_alignstack:
1231 case lltok::kw_alwaysinline:
Michael Gottesman2253a2f2013-06-27 00:25:01 +00001232 case lltok::kw_builtin:
Diego Novillo77226a02013-05-24 12:26:52 +00001233 case lltok::kw_cold:
Chandler Carruth239e1e42013-04-09 19:46:46 +00001234 case lltok::kw_inlinehint:
1235 case lltok::kw_minsize:
1236 case lltok::kw_naked:
1237 case lltok::kw_nobuiltin:
1238 case lltok::kw_noduplicate:
1239 case lltok::kw_noimplicitfloat:
1240 case lltok::kw_noinline:
1241 case lltok::kw_nonlazybind:
1242 case lltok::kw_noredzone:
1243 case lltok::kw_noreturn:
1244 case lltok::kw_nounwind:
Andrea Di Biagio5768bb82013-08-23 11:53:55 +00001245 case lltok::kw_optnone:
Chandler Carruth239e1e42013-04-09 19:46:46 +00001246 case lltok::kw_optsize:
Chandler Carruth239e1e42013-04-09 19:46:46 +00001247 case lltok::kw_returns_twice:
1248 case lltok::kw_sanitize_address:
1249 case lltok::kw_sanitize_memory:
1250 case lltok::kw_sanitize_thread:
1251 case lltok::kw_ssp:
1252 case lltok::kw_sspreq:
1253 case lltok::kw_sspstrong:
1254 case lltok::kw_uwtable:
Bill Wendlinge01b81b2012-12-04 23:40:58 +00001255 HaveError |= Error(Lex.getLoc(), "invalid use of function-only attribute");
Bill Wendlingdc998cc2012-09-28 22:30:18 +00001256 break;
Nick Lewyckydc897372013-07-06 00:29:58 +00001257
1258 case lltok::kw_readnone:
1259 case lltok::kw_readonly:
1260 HaveError |= Error(Lex.getLoc(), "invalid use of attribute on return type");
Bill Wendlingdc998cc2012-09-28 22:30:18 +00001261 }
1262
Chris Lattnerdf986172009-01-02 07:01:27 +00001263 Lex.Lex();
1264 }
1265}
1266
1267/// ParseOptionalLinkage
1268/// ::= /*empty*/
Rafael Espindolabb46f522009-01-15 20:18:42 +00001269/// ::= 'private'
Bill Wendling3d10a5a2009-07-20 01:03:30 +00001270/// ::= 'linker_private'
Bill Wendling5e721d72010-07-01 21:55:59 +00001271/// ::= 'linker_private_weak'
Chris Lattnerdf986172009-01-02 07:01:27 +00001272/// ::= 'internal'
1273/// ::= 'weak'
Duncan Sands667d4b82009-03-07 15:45:40 +00001274/// ::= 'weak_odr'
Chris Lattnerdf986172009-01-02 07:01:27 +00001275/// ::= 'linkonce'
Duncan Sands667d4b82009-03-07 15:45:40 +00001276/// ::= 'linkonce_odr'
Bill Wendling32811be2012-08-17 18:33:14 +00001277/// ::= 'linkonce_odr_auto_hide'
Bill Wendling5e721d72010-07-01 21:55:59 +00001278/// ::= 'available_externally'
Chris Lattnerdf986172009-01-02 07:01:27 +00001279/// ::= 'appending'
1280/// ::= 'dllexport'
1281/// ::= 'common'
1282/// ::= 'dllimport'
1283/// ::= 'extern_weak'
1284/// ::= 'external'
1285bool LLParser::ParseOptionalLinkage(unsigned &Res, bool &HasLinkage) {
1286 HasLinkage = false;
1287 switch (Lex.getKind()) {
Bill Wendling3d10a5a2009-07-20 01:03:30 +00001288 default: Res=GlobalValue::ExternalLinkage; return false;
1289 case lltok::kw_private: Res = GlobalValue::PrivateLinkage; break;
1290 case lltok::kw_linker_private: Res = GlobalValue::LinkerPrivateLinkage; break;
Bill Wendling5e721d72010-07-01 21:55:59 +00001291 case lltok::kw_linker_private_weak:
1292 Res = GlobalValue::LinkerPrivateWeakLinkage;
1293 break;
Bill Wendling3d10a5a2009-07-20 01:03:30 +00001294 case lltok::kw_internal: Res = GlobalValue::InternalLinkage; break;
1295 case lltok::kw_weak: Res = GlobalValue::WeakAnyLinkage; break;
1296 case lltok::kw_weak_odr: Res = GlobalValue::WeakODRLinkage; break;
1297 case lltok::kw_linkonce: Res = GlobalValue::LinkOnceAnyLinkage; break;
1298 case lltok::kw_linkonce_odr: Res = GlobalValue::LinkOnceODRLinkage; break;
Bill Wendling32811be2012-08-17 18:33:14 +00001299 case lltok::kw_linkonce_odr_auto_hide:
1300 case lltok::kw_linker_private_weak_def_auto: // FIXME: For backwards compat.
1301 Res = GlobalValue::LinkOnceODRAutoHideLinkage;
1302 break;
Chris Lattner266c7bb2009-04-13 05:44:34 +00001303 case lltok::kw_available_externally:
1304 Res = GlobalValue::AvailableExternallyLinkage;
1305 break;
Bill Wendling3d10a5a2009-07-20 01:03:30 +00001306 case lltok::kw_appending: Res = GlobalValue::AppendingLinkage; break;
1307 case lltok::kw_dllexport: Res = GlobalValue::DLLExportLinkage; break;
1308 case lltok::kw_common: Res = GlobalValue::CommonLinkage; break;
1309 case lltok::kw_dllimport: Res = GlobalValue::DLLImportLinkage; break;
1310 case lltok::kw_extern_weak: Res = GlobalValue::ExternalWeakLinkage; break;
1311 case lltok::kw_external: Res = GlobalValue::ExternalLinkage; break;
Chris Lattnerdf986172009-01-02 07:01:27 +00001312 }
1313 Lex.Lex();
1314 HasLinkage = true;
1315 return false;
1316}
1317
1318/// ParseOptionalVisibility
1319/// ::= /*empty*/
1320/// ::= 'default'
1321/// ::= 'hidden'
1322/// ::= 'protected'
Daniel Dunbara279bc32009-09-20 02:20:51 +00001323///
Chris Lattnerdf986172009-01-02 07:01:27 +00001324bool LLParser::ParseOptionalVisibility(unsigned &Res) {
1325 switch (Lex.getKind()) {
1326 default: Res = GlobalValue::DefaultVisibility; return false;
1327 case lltok::kw_default: Res = GlobalValue::DefaultVisibility; break;
1328 case lltok::kw_hidden: Res = GlobalValue::HiddenVisibility; break;
1329 case lltok::kw_protected: Res = GlobalValue::ProtectedVisibility; break;
1330 }
1331 Lex.Lex();
1332 return false;
1333}
1334
1335/// ParseOptionalCallingConv
1336/// ::= /*empty*/
1337/// ::= 'ccc'
1338/// ::= 'fastcc'
Elena Demikhovsky35752222012-10-24 14:46:16 +00001339/// ::= 'kw_intel_ocl_bicc'
Chris Lattnerdf986172009-01-02 07:01:27 +00001340/// ::= 'coldcc'
1341/// ::= 'x86_stdcallcc'
1342/// ::= 'x86_fastcallcc'
Anton Korobeynikovded05e32010-05-16 09:08:45 +00001343/// ::= 'x86_thiscallcc'
Anton Korobeynikov385f5a92009-06-16 18:50:49 +00001344/// ::= 'arm_apcscc'
1345/// ::= 'arm_aapcscc'
1346/// ::= 'arm_aapcs_vfpcc'
Anton Korobeynikov211a14e2009-12-07 02:27:35 +00001347/// ::= 'msp430_intrcc'
Che-Liang Chiouf9930da2010-09-25 07:46:17 +00001348/// ::= 'ptx_kernel'
1349/// ::= 'ptx_device'
Micah Villmowe53d6052012-10-01 17:01:31 +00001350/// ::= 'spir_func'
1351/// ::= 'spir_kernel'
Charles Davisac226bb2013-07-12 06:02:35 +00001352/// ::= 'x86_64_sysvcc'
1353/// ::= 'x86_64_win64cc'
Chris Lattnerdf986172009-01-02 07:01:27 +00001354/// ::= 'cc' UINT
Anton Korobeynikov385f5a92009-06-16 18:50:49 +00001355///
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001356bool LLParser::ParseOptionalCallingConv(CallingConv::ID &CC) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001357 switch (Lex.getKind()) {
1358 default: CC = CallingConv::C; return false;
1359 case lltok::kw_ccc: CC = CallingConv::C; break;
1360 case lltok::kw_fastcc: CC = CallingConv::Fast; break;
1361 case lltok::kw_coldcc: CC = CallingConv::Cold; break;
1362 case lltok::kw_x86_stdcallcc: CC = CallingConv::X86_StdCall; break;
1363 case lltok::kw_x86_fastcallcc: CC = CallingConv::X86_FastCall; break;
Anton Korobeynikovded05e32010-05-16 09:08:45 +00001364 case lltok::kw_x86_thiscallcc: CC = CallingConv::X86_ThisCall; break;
Anton Korobeynikov385f5a92009-06-16 18:50:49 +00001365 case lltok::kw_arm_apcscc: CC = CallingConv::ARM_APCS; break;
1366 case lltok::kw_arm_aapcscc: CC = CallingConv::ARM_AAPCS; break;
1367 case lltok::kw_arm_aapcs_vfpcc:CC = CallingConv::ARM_AAPCS_VFP; break;
Anton Korobeynikov211a14e2009-12-07 02:27:35 +00001368 case lltok::kw_msp430_intrcc: CC = CallingConv::MSP430_INTR; break;
Che-Liang Chiouf9930da2010-09-25 07:46:17 +00001369 case lltok::kw_ptx_kernel: CC = CallingConv::PTX_Kernel; break;
1370 case lltok::kw_ptx_device: CC = CallingConv::PTX_Device; break;
Micah Villmowe53d6052012-10-01 17:01:31 +00001371 case lltok::kw_spir_kernel: CC = CallingConv::SPIR_KERNEL; break;
1372 case lltok::kw_spir_func: CC = CallingConv::SPIR_FUNC; break;
Elena Demikhovsky35752222012-10-24 14:46:16 +00001373 case lltok::kw_intel_ocl_bicc: CC = CallingConv::Intel_OCL_BI; break;
Charles Davisac226bb2013-07-12 06:02:35 +00001374 case lltok::kw_x86_64_sysvcc: CC = CallingConv::X86_64_SysV; break;
1375 case lltok::kw_x86_64_win64cc: CC = CallingConv::X86_64_Win64; break;
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001376 case lltok::kw_cc: {
1377 unsigned ArbitraryCC;
1378 Lex.Lex();
David Blaikie4d6ccb52012-01-20 21:51:11 +00001379 if (ParseUInt32(ArbitraryCC))
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001380 return true;
David Blaikie4d6ccb52012-01-20 21:51:11 +00001381 CC = static_cast<CallingConv::ID>(ArbitraryCC);
1382 return false;
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001383 }
Chris Lattnerdf986172009-01-02 07:01:27 +00001384 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001385
Chris Lattnerdf986172009-01-02 07:01:27 +00001386 Lex.Lex();
1387 return false;
1388}
1389
Chris Lattnerb8c46862009-12-30 05:31:19 +00001390/// ParseInstructionMetadata
Chris Lattner3f3a0f62009-12-29 21:25:40 +00001391/// ::= !dbg !42 (',' !dbg !57)*
Dan Gohman9d072f52010-08-24 02:05:17 +00001392bool LLParser::ParseInstructionMetadata(Instruction *Inst,
1393 PerFunctionState *PFS) {
Chris Lattnerb8c46862009-12-30 05:31:19 +00001394 do {
1395 if (Lex.getKind() != lltok::MetadataVar)
1396 return TokError("expected metadata after comma");
Devang Patel0475c912009-09-29 00:01:14 +00001397
Chris Lattner3f3a0f62009-12-29 21:25:40 +00001398 std::string Name = Lex.getStrVal();
Benjamin Kramer85dadec2011-12-06 11:50:26 +00001399 unsigned MDK = M->getMDKindID(Name);
Chris Lattner3f3a0f62009-12-29 21:25:40 +00001400 Lex.Lex();
Chris Lattner52e20312009-10-19 05:31:10 +00001401
Chris Lattner442ffa12009-12-29 21:53:55 +00001402 MDNode *Node;
Chris Lattner449c3102010-04-01 05:14:45 +00001403 SMLoc Loc = Lex.getLoc();
Dan Gohman309b3af2010-08-24 02:24:03 +00001404
1405 if (ParseToken(lltok::exclaim, "expected '!' here"))
Chris Lattnere434d272009-12-30 04:56:59 +00001406 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001407
Dan Gohman68261142010-08-24 14:35:45 +00001408 // This code is similar to that of ParseMetadataValue, however it needs to
1409 // have special-case code for a forward reference; see the comments on
1410 // ForwardRefInstMetadata for details. Also, MDStrings are not supported
1411 // at the top level here.
Dan Gohman309b3af2010-08-24 02:24:03 +00001412 if (Lex.getKind() == lltok::lbrace) {
1413 ValID ID;
1414 if (ParseMetadataListValue(ID, PFS))
1415 return true;
1416 assert(ID.Kind == ValID::t_MDNode);
1417 Inst->setMetadata(MDK, ID.MDNodeVal);
Chris Lattner449c3102010-04-01 05:14:45 +00001418 } else {
Nick Lewyckyc6877b42010-09-30 21:04:13 +00001419 unsigned NodeID = 0;
Dan Gohman309b3af2010-08-24 02:24:03 +00001420 if (ParseMDNodeID(Node, NodeID))
1421 return true;
1422 if (Node) {
1423 // If we got the node, add it to the instruction.
1424 Inst->setMetadata(MDK, Node);
1425 } else {
1426 MDRef R = { Loc, MDK, NodeID };
1427 // Otherwise, remember that this should be resolved later.
1428 ForwardRefInstMetadata[Inst].push_back(R);
1429 }
Chris Lattner449c3102010-04-01 05:14:45 +00001430 }
Chris Lattner3f3a0f62009-12-29 21:25:40 +00001431
Manman Ren804f0342013-09-28 00:22:27 +00001432 if (MDK == LLVMContext::MD_tbaa)
1433 InstsWithTBAATag.push_back(Inst);
1434
Chris Lattner3f3a0f62009-12-29 21:25:40 +00001435 // If this is the end of the list, we're done.
Chris Lattnerb8c46862009-12-30 05:31:19 +00001436 } while (EatIfPresent(lltok::comma));
1437 return false;
Devang Patelf633a062009-09-17 23:04:48 +00001438}
1439
Chris Lattnerdf986172009-01-02 07:01:27 +00001440/// ParseOptionalAlignment
1441/// ::= /* empty */
1442/// ::= 'align' 4
1443bool LLParser::ParseOptionalAlignment(unsigned &Alignment) {
1444 Alignment = 0;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001445 if (!EatIfPresent(lltok::kw_align))
1446 return false;
Chris Lattner3fbb3ab2009-01-05 07:46:05 +00001447 LocTy AlignLoc = Lex.getLoc();
1448 if (ParseUInt32(Alignment)) return true;
1449 if (!isPowerOf2_32(Alignment))
1450 return Error(AlignLoc, "alignment is not a power of two");
Dan Gohmane16829b2010-07-30 21:07:05 +00001451 if (Alignment > Value::MaximumAlignment)
Dan Gohman138aa2a2010-07-28 20:12:04 +00001452 return Error(AlignLoc, "huge alignments are not supported yet");
Chris Lattner3fbb3ab2009-01-05 07:46:05 +00001453 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00001454}
1455
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00001456/// ParseOptionalCommaAlign
Michael Ilseman407a6162012-11-15 22:34:00 +00001457/// ::=
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00001458/// ::= ',' align 4
1459///
1460/// This returns with AteExtraComma set to true if it ate an excess comma at the
1461/// end.
1462bool LLParser::ParseOptionalCommaAlign(unsigned &Alignment,
1463 bool &AteExtraComma) {
1464 AteExtraComma = false;
1465 while (EatIfPresent(lltok::comma)) {
1466 // Metadata at the end is an early exit.
Chris Lattner1d928312009-12-30 05:02:06 +00001467 if (Lex.getKind() == lltok::MetadataVar) {
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00001468 AteExtraComma = true;
1469 return false;
1470 }
Michael Ilseman407a6162012-11-15 22:34:00 +00001471
Chris Lattner093eed12010-04-23 00:50:50 +00001472 if (Lex.getKind() != lltok::kw_align)
1473 return Error(Lex.getLoc(), "expected metadata or 'align'");
Duncan Sandsbf9fc532010-10-21 16:07:10 +00001474
Chris Lattner093eed12010-04-23 00:50:50 +00001475 if (ParseOptionalAlignment(Alignment)) return true;
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00001476 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001477
Devang Patelf633a062009-09-17 23:04:48 +00001478 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00001479}
1480
Eli Friedman47f35132011-07-25 23:16:38 +00001481/// ParseScopeAndOrdering
1482/// if isAtomic: ::= 'singlethread'? AtomicOrdering
1483/// else: ::=
1484///
1485/// This sets Scope and Ordering to the parsed values.
1486bool LLParser::ParseScopeAndOrdering(bool isAtomic, SynchronizationScope &Scope,
1487 AtomicOrdering &Ordering) {
1488 if (!isAtomic)
1489 return false;
1490
1491 Scope = CrossThread;
1492 if (EatIfPresent(lltok::kw_singlethread))
1493 Scope = SingleThread;
1494 switch (Lex.getKind()) {
1495 default: return TokError("Expected ordering on atomic instruction");
1496 case lltok::kw_unordered: Ordering = Unordered; break;
1497 case lltok::kw_monotonic: Ordering = Monotonic; break;
1498 case lltok::kw_acquire: Ordering = Acquire; break;
1499 case lltok::kw_release: Ordering = Release; break;
1500 case lltok::kw_acq_rel: Ordering = AcquireRelease; break;
1501 case lltok::kw_seq_cst: Ordering = SequentiallyConsistent; break;
1502 }
1503 Lex.Lex();
1504 return false;
1505}
1506
Charles Davis1e063d12010-02-12 00:31:15 +00001507/// ParseOptionalStackAlignment
1508/// ::= /* empty */
1509/// ::= 'alignstack' '(' 4 ')'
1510bool LLParser::ParseOptionalStackAlignment(unsigned &Alignment) {
1511 Alignment = 0;
1512 if (!EatIfPresent(lltok::kw_alignstack))
1513 return false;
1514 LocTy ParenLoc = Lex.getLoc();
1515 if (!EatIfPresent(lltok::lparen))
1516 return Error(ParenLoc, "expected '('");
1517 LocTy AlignLoc = Lex.getLoc();
1518 if (ParseUInt32(Alignment)) return true;
1519 ParenLoc = Lex.getLoc();
1520 if (!EatIfPresent(lltok::rparen))
1521 return Error(ParenLoc, "expected ')'");
1522 if (!isPowerOf2_32(Alignment))
1523 return Error(AlignLoc, "stack alignment is not a power of two");
1524 return false;
1525}
Devang Patelf633a062009-09-17 23:04:48 +00001526
Chris Lattner628c13a2009-12-30 05:14:00 +00001527/// ParseIndexList - This parses the index list for an insert/extractvalue
1528/// instruction. This sets AteExtraComma in the case where we eat an extra
1529/// comma at the end of the line and find that it is followed by metadata.
1530/// Clients that don't allow metadata can call the version of this function that
1531/// only takes one argument.
1532///
Chris Lattnerdf986172009-01-02 07:01:27 +00001533/// ParseIndexList
1534/// ::= (',' uint32)+
Chris Lattner628c13a2009-12-30 05:14:00 +00001535///
1536bool LLParser::ParseIndexList(SmallVectorImpl<unsigned> &Indices,
1537 bool &AteExtraComma) {
1538 AteExtraComma = false;
Michael Ilseman407a6162012-11-15 22:34:00 +00001539
Chris Lattnerdf986172009-01-02 07:01:27 +00001540 if (Lex.getKind() != lltok::comma)
1541 return TokError("expected ',' as start of index list");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001542
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001543 while (EatIfPresent(lltok::comma)) {
Chris Lattner628c13a2009-12-30 05:14:00 +00001544 if (Lex.getKind() == lltok::MetadataVar) {
1545 AteExtraComma = true;
1546 return false;
1547 }
Nick Lewycky28815c42010-09-29 23:32:20 +00001548 unsigned Idx = 0;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001549 if (ParseUInt32(Idx)) return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00001550 Indices.push_back(Idx);
1551 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001552
Chris Lattnerdf986172009-01-02 07:01:27 +00001553 return false;
1554}
1555
1556//===----------------------------------------------------------------------===//
1557// Type Parsing.
1558//===----------------------------------------------------------------------===//
1559
Chris Lattner1afcace2011-07-09 17:41:24 +00001560/// ParseType - Parse a type.
1561bool LLParser::ParseType(Type *&Result, bool AllowVoid) {
1562 SMLoc TypeLoc = Lex.getLoc();
Chris Lattnerdf986172009-01-02 07:01:27 +00001563 switch (Lex.getKind()) {
1564 default:
1565 return TokError("expected type");
1566 case lltok::Type:
Chris Lattner1afcace2011-07-09 17:41:24 +00001567 // Type ::= 'float' | 'void' (etc)
Chris Lattnerdf986172009-01-02 07:01:27 +00001568 Result = Lex.getTyVal();
Daniel Dunbara279bc32009-09-20 02:20:51 +00001569 Lex.Lex();
Chris Lattnerdf986172009-01-02 07:01:27 +00001570 break;
Chris Lattnerdf986172009-01-02 07:01:27 +00001571 case lltok::lbrace:
Chris Lattner1afcace2011-07-09 17:41:24 +00001572 // Type ::= StructType
1573 if (ParseAnonStructType(Result, false))
Chris Lattnerdf986172009-01-02 07:01:27 +00001574 return true;
1575 break;
1576 case lltok::lsquare:
Chris Lattner1afcace2011-07-09 17:41:24 +00001577 // Type ::= '[' ... ']'
Chris Lattnerdf986172009-01-02 07:01:27 +00001578 Lex.Lex(); // eat the lsquare.
1579 if (ParseArrayVectorType(Result, false))
1580 return true;
1581 break;
1582 case lltok::less: // Either vector or packed struct.
Chris Lattner1afcace2011-07-09 17:41:24 +00001583 // Type ::= '<' ... '>'
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001584 Lex.Lex();
1585 if (Lex.getKind() == lltok::lbrace) {
Chris Lattner1afcace2011-07-09 17:41:24 +00001586 if (ParseAnonStructType(Result, true) ||
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001587 ParseToken(lltok::greater, "expected '>' at end of packed struct"))
Chris Lattnerdf986172009-01-02 07:01:27 +00001588 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00001589 } else if (ParseArrayVectorType(Result, true))
1590 return true;
1591 break;
Chris Lattner1afcace2011-07-09 17:41:24 +00001592 case lltok::LocalVar: {
1593 // Type ::= %foo
1594 std::pair<Type*, LocTy> &Entry = NamedTypes[Lex.getStrVal()];
Michael Ilseman407a6162012-11-15 22:34:00 +00001595
Chris Lattner1afcace2011-07-09 17:41:24 +00001596 // If the type hasn't been defined yet, create a forward definition and
1597 // remember where that forward def'n was seen (in case it never is defined).
1598 if (Entry.first == 0) {
Chris Lattner3ebb6492011-08-12 18:06:37 +00001599 Entry.first = StructType::create(Context, Lex.getStrVal());
Chris Lattner1afcace2011-07-09 17:41:24 +00001600 Entry.second = Lex.getLoc();
Chris Lattnerdf986172009-01-02 07:01:27 +00001601 }
Chris Lattner1afcace2011-07-09 17:41:24 +00001602 Result = Entry.first;
Chris Lattnerdf986172009-01-02 07:01:27 +00001603 Lex.Lex();
1604 break;
Chris Lattner1afcace2011-07-09 17:41:24 +00001605 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001606
Chris Lattner1afcace2011-07-09 17:41:24 +00001607 case lltok::LocalVarID: {
1608 // Type ::= %4
1609 if (Lex.getUIntVal() >= NumberedTypes.size())
1610 NumberedTypes.resize(Lex.getUIntVal()+1);
1611 std::pair<Type*, LocTy> &Entry = NumberedTypes[Lex.getUIntVal()];
Michael Ilseman407a6162012-11-15 22:34:00 +00001612
Chris Lattner1afcace2011-07-09 17:41:24 +00001613 // If the type hasn't been defined yet, create a forward definition and
1614 // remember where that forward def'n was seen (in case it never is defined).
1615 if (Entry.first == 0) {
Chris Lattner3ebb6492011-08-12 18:06:37 +00001616 Entry.first = StructType::create(Context);
Chris Lattner1afcace2011-07-09 17:41:24 +00001617 Entry.second = Lex.getLoc();
Chris Lattnerdf986172009-01-02 07:01:27 +00001618 }
Chris Lattner1afcace2011-07-09 17:41:24 +00001619 Result = Entry.first;
Chris Lattnerdf986172009-01-02 07:01:27 +00001620 Lex.Lex();
1621 break;
Chris Lattnerdf986172009-01-02 07:01:27 +00001622 }
1623 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001624
1625 // Parse the type suffixes.
Chris Lattnerdf986172009-01-02 07:01:27 +00001626 while (1) {
1627 switch (Lex.getKind()) {
1628 // End of type.
Chris Lattner1afcace2011-07-09 17:41:24 +00001629 default:
1630 if (!AllowVoid && Result->isVoidTy())
1631 return Error(TypeLoc, "void type only allowed for function results");
1632 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00001633
Chris Lattner1afcace2011-07-09 17:41:24 +00001634 // Type ::= Type '*'
Chris Lattnerdf986172009-01-02 07:01:27 +00001635 case lltok::star:
Chris Lattner1afcace2011-07-09 17:41:24 +00001636 if (Result->isLabelTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00001637 return TokError("basic block pointers are invalid");
Chris Lattner1afcace2011-07-09 17:41:24 +00001638 if (Result->isVoidTy())
1639 return TokError("pointers to void are invalid - use i8* instead");
1640 if (!PointerType::isValidElementType(Result))
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001641 return TokError("pointer to this type is invalid");
Chris Lattner1afcace2011-07-09 17:41:24 +00001642 Result = PointerType::getUnqual(Result);
Chris Lattnerdf986172009-01-02 07:01:27 +00001643 Lex.Lex();
1644 break;
1645
Chris Lattner1afcace2011-07-09 17:41:24 +00001646 // Type ::= Type 'addrspace' '(' uint32 ')' '*'
Chris Lattnerdf986172009-01-02 07:01:27 +00001647 case lltok::kw_addrspace: {
Chris Lattner1afcace2011-07-09 17:41:24 +00001648 if (Result->isLabelTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00001649 return TokError("basic block pointers are invalid");
Chris Lattner1afcace2011-07-09 17:41:24 +00001650 if (Result->isVoidTy())
Dan Gohmanb9070d32009-02-09 17:41:21 +00001651 return TokError("pointers to void are invalid; use i8* instead");
Chris Lattner1afcace2011-07-09 17:41:24 +00001652 if (!PointerType::isValidElementType(Result))
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001653 return TokError("pointer to this type is invalid");
Chris Lattnerdf986172009-01-02 07:01:27 +00001654 unsigned AddrSpace;
1655 if (ParseOptionalAddrSpace(AddrSpace) ||
1656 ParseToken(lltok::star, "expected '*' in address space"))
1657 return true;
1658
Chris Lattner1afcace2011-07-09 17:41:24 +00001659 Result = PointerType::get(Result, AddrSpace);
Chris Lattnerdf986172009-01-02 07:01:27 +00001660 break;
1661 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001662
Chris Lattnerdf986172009-01-02 07:01:27 +00001663 /// Types '(' ArgTypeListI ')' OptFuncAttrs
1664 case lltok::lparen:
1665 if (ParseFunctionType(Result))
1666 return true;
1667 break;
1668 }
1669 }
1670}
1671
1672/// ParseParameterList
1673/// ::= '(' ')'
1674/// ::= '(' Arg (',' Arg)* ')'
1675/// Arg
1676/// ::= Type OptionalAttributes Value OptionalAttributes
1677bool LLParser::ParseParameterList(SmallVectorImpl<ParamInfo> &ArgList,
1678 PerFunctionState &PFS) {
1679 if (ParseToken(lltok::lparen, "expected '(' in call"))
1680 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001681
Bill Wendling73dee182013-01-31 00:29:54 +00001682 unsigned AttrIndex = 1;
Chris Lattnerdf986172009-01-02 07:01:27 +00001683 while (Lex.getKind() != lltok::rparen) {
1684 // If this isn't the first argument, we need a comma.
1685 if (!ArgList.empty() &&
1686 ParseToken(lltok::comma, "expected ',' in argument list"))
1687 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001688
Chris Lattnerdf986172009-01-02 07:01:27 +00001689 // Parse the argument.
1690 LocTy ArgLoc;
Chris Lattner1afcace2011-07-09 17:41:24 +00001691 Type *ArgTy = 0;
Bill Wendling702cc912012-10-15 20:35:56 +00001692 AttrBuilder ArgAttrs;
Chris Lattnerdf986172009-01-02 07:01:27 +00001693 Value *V;
Victor Hernandez19715562009-12-03 23:40:58 +00001694 if (ParseType(ArgTy, ArgLoc))
Chris Lattnerdf986172009-01-02 07:01:27 +00001695 return true;
Victor Hernandez19715562009-12-03 23:40:58 +00001696
Chris Lattner287881d2009-12-30 02:11:14 +00001697 // Otherwise, handle normal operands.
Bill Wendlinge01b81b2012-12-04 23:40:58 +00001698 if (ParseOptionalParamAttrs(ArgAttrs) || ParseValue(ArgTy, V, PFS))
Chris Lattner287881d2009-12-30 02:11:14 +00001699 return true;
Bill Wendling73dee182013-01-31 00:29:54 +00001700 ArgList.push_back(ParamInfo(ArgLoc, V, AttributeSet::get(V->getContext(),
1701 AttrIndex++,
1702 ArgAttrs)));
Chris Lattnerdf986172009-01-02 07:01:27 +00001703 }
1704
1705 Lex.Lex(); // Lex the ')'.
1706 return false;
1707}
1708
1709
1710
Chris Lattnerdfd19dd2009-01-05 18:34:07 +00001711/// ParseArgumentList - Parse the argument list for a function type or function
Chris Lattner1afcace2011-07-09 17:41:24 +00001712/// prototype.
Chris Lattnerdf986172009-01-02 07:01:27 +00001713/// ::= '(' ArgTypeListI ')'
1714/// ArgTypeListI
1715/// ::= /*empty*/
1716/// ::= '...'
1717/// ::= ArgTypeList ',' '...'
1718/// ::= ArgType (',' ArgType)*
Chris Lattnerdfd19dd2009-01-05 18:34:07 +00001719///
Chris Lattner1afcace2011-07-09 17:41:24 +00001720bool LLParser::ParseArgumentList(SmallVectorImpl<ArgInfo> &ArgList,
1721 bool &isVarArg){
Chris Lattnerdf986172009-01-02 07:01:27 +00001722 isVarArg = false;
1723 assert(Lex.getKind() == lltok::lparen);
1724 Lex.Lex(); // eat the (.
Daniel Dunbara279bc32009-09-20 02:20:51 +00001725
Chris Lattnerdf986172009-01-02 07:01:27 +00001726 if (Lex.getKind() == lltok::rparen) {
1727 // empty
1728 } else if (Lex.getKind() == lltok::dotdotdot) {
1729 isVarArg = true;
1730 Lex.Lex();
1731 } else {
1732 LocTy TypeLoc = Lex.getLoc();
Chris Lattner1afcace2011-07-09 17:41:24 +00001733 Type *ArgTy = 0;
Bill Wendling702cc912012-10-15 20:35:56 +00001734 AttrBuilder Attrs;
Chris Lattnerdf986172009-01-02 07:01:27 +00001735 std::string Name;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001736
Chris Lattner1afcace2011-07-09 17:41:24 +00001737 if (ParseType(ArgTy) ||
Bill Wendlinge01b81b2012-12-04 23:40:58 +00001738 ParseOptionalParamAttrs(Attrs)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001739
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001740 if (ArgTy->isVoidTy())
Chris Lattnera9a9e072009-03-09 04:49:14 +00001741 return Error(TypeLoc, "argument can not have void type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001742
Chris Lattner7a1b9bd2011-06-17 06:36:20 +00001743 if (Lex.getKind() == lltok::LocalVar) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001744 Name = Lex.getStrVal();
1745 Lex.Lex();
1746 }
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001747
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001748 if (!FunctionType::isValidArgumentType(ArgTy))
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001749 return Error(TypeLoc, "invalid type for function argument");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001750
Bill Wendling73dee182013-01-31 00:29:54 +00001751 unsigned AttrIndex = 1;
Bill Wendlingcb3de0b2012-10-15 04:46:55 +00001752 ArgList.push_back(ArgInfo(TypeLoc, ArgTy,
Bill Wendling73dee182013-01-31 00:29:54 +00001753 AttributeSet::get(ArgTy->getContext(),
1754 AttrIndex++, Attrs), Name));
Daniel Dunbara279bc32009-09-20 02:20:51 +00001755
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001756 while (EatIfPresent(lltok::comma)) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001757 // Handle ... at end of arg list.
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001758 if (EatIfPresent(lltok::dotdotdot)) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001759 isVarArg = true;
Chris Lattnerdf986172009-01-02 07:01:27 +00001760 break;
1761 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001762
Chris Lattnerdf986172009-01-02 07:01:27 +00001763 // Otherwise must be an argument type.
1764 TypeLoc = Lex.getLoc();
Bill Wendlinge01b81b2012-12-04 23:40:58 +00001765 if (ParseType(ArgTy) || ParseOptionalParamAttrs(Attrs)) return true;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001766
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001767 if (ArgTy->isVoidTy())
Chris Lattnera9a9e072009-03-09 04:49:14 +00001768 return Error(TypeLoc, "argument can not have void type");
1769
Chris Lattner7a1b9bd2011-06-17 06:36:20 +00001770 if (Lex.getKind() == lltok::LocalVar) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001771 Name = Lex.getStrVal();
1772 Lex.Lex();
1773 } else {
1774 Name = "";
1775 }
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001776
Chris Lattner1afcace2011-07-09 17:41:24 +00001777 if (!ArgTy->isFirstClassType())
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001778 return Error(TypeLoc, "invalid type for function argument");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001779
Bill Wendlingcb3de0b2012-10-15 04:46:55 +00001780 ArgList.push_back(ArgInfo(TypeLoc, ArgTy,
Bill Wendling73dee182013-01-31 00:29:54 +00001781 AttributeSet::get(ArgTy->getContext(),
1782 AttrIndex++, Attrs),
Bill Wendlingcb3de0b2012-10-15 04:46:55 +00001783 Name));
Chris Lattnerdf986172009-01-02 07:01:27 +00001784 }
1785 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001786
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001787 return ParseToken(lltok::rparen, "expected ')' at end of argument list");
Chris Lattnerdf986172009-01-02 07:01:27 +00001788}
Daniel Dunbara279bc32009-09-20 02:20:51 +00001789
Chris Lattnerdf986172009-01-02 07:01:27 +00001790/// ParseFunctionType
1791/// ::= Type ArgumentList OptionalAttrs
Chris Lattner1afcace2011-07-09 17:41:24 +00001792bool LLParser::ParseFunctionType(Type *&Result) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001793 assert(Lex.getKind() == lltok::lparen);
1794
Chris Lattnerd77d04c2009-01-05 08:04:33 +00001795 if (!FunctionType::isValidReturnType(Result))
1796 return TokError("invalid function return type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001797
Chris Lattner1afcace2011-07-09 17:41:24 +00001798 SmallVector<ArgInfo, 8> ArgList;
Chris Lattnerdf986172009-01-02 07:01:27 +00001799 bool isVarArg;
Chris Lattner1afcace2011-07-09 17:41:24 +00001800 if (ParseArgumentList(ArgList, isVarArg))
Chris Lattnerdf986172009-01-02 07:01:27 +00001801 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001802
Chris Lattnerdf986172009-01-02 07:01:27 +00001803 // Reject names on the arguments lists.
1804 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
1805 if (!ArgList[i].Name.empty())
1806 return Error(ArgList[i].Loc, "argument name invalid in function type");
Bill Wendling73dee182013-01-31 00:29:54 +00001807 if (ArgList[i].Attrs.hasAttributes(i + 1))
Chris Lattnera16546a2011-06-17 17:37:13 +00001808 return Error(ArgList[i].Loc,
1809 "argument attributes invalid in function type");
Chris Lattnerdf986172009-01-02 07:01:27 +00001810 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001811
Jay Foad5fdd6c82011-07-12 14:06:48 +00001812 SmallVector<Type*, 16> ArgListTy;
Chris Lattnerdf986172009-01-02 07:01:27 +00001813 for (unsigned i = 0, e = ArgList.size(); i != e; ++i)
Chris Lattner1afcace2011-07-09 17:41:24 +00001814 ArgListTy.push_back(ArgList[i].Ty);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001815
Chris Lattner1afcace2011-07-09 17:41:24 +00001816 Result = FunctionType::get(Result, ArgListTy, isVarArg);
Chris Lattnerdf986172009-01-02 07:01:27 +00001817 return false;
1818}
1819
Chris Lattner1afcace2011-07-09 17:41:24 +00001820/// ParseAnonStructType - Parse an anonymous struct type, which is inlined into
1821/// other structs.
1822bool LLParser::ParseAnonStructType(Type *&Result, bool Packed) {
1823 SmallVector<Type*, 8> Elts;
1824 if (ParseStructBody(Elts)) return true;
Michael Ilseman407a6162012-11-15 22:34:00 +00001825
Chris Lattner1afcace2011-07-09 17:41:24 +00001826 Result = StructType::get(Context, Elts, Packed);
1827 return false;
1828}
1829
1830/// ParseStructDefinition - Parse a struct in a 'type' definition.
1831bool LLParser::ParseStructDefinition(SMLoc TypeLoc, StringRef Name,
1832 std::pair<Type*, LocTy> &Entry,
1833 Type *&ResultTy) {
1834 // If the type was already defined, diagnose the redefinition.
1835 if (Entry.first && !Entry.second.isValid())
1836 return Error(TypeLoc, "redefinition of type");
Michael Ilseman407a6162012-11-15 22:34:00 +00001837
Chris Lattner1afcace2011-07-09 17:41:24 +00001838 // If we have opaque, just return without filling in the definition for the
1839 // struct. This counts as a definition as far as the .ll file goes.
1840 if (EatIfPresent(lltok::kw_opaque)) {
1841 // This type is being defined, so clear the location to indicate this.
1842 Entry.second = SMLoc();
Michael Ilseman407a6162012-11-15 22:34:00 +00001843
Chris Lattner1afcace2011-07-09 17:41:24 +00001844 // If this type number has never been uttered, create it.
1845 if (Entry.first == 0)
Chris Lattner3ebb6492011-08-12 18:06:37 +00001846 Entry.first = StructType::create(Context, Name);
Chris Lattner1afcace2011-07-09 17:41:24 +00001847 ResultTy = Entry.first;
1848 return false;
1849 }
Michael Ilseman407a6162012-11-15 22:34:00 +00001850
Chris Lattner1afcace2011-07-09 17:41:24 +00001851 // If the type starts with '<', then it is either a packed struct or a vector.
1852 bool isPacked = EatIfPresent(lltok::less);
1853
1854 // If we don't have a struct, then we have a random type alias, which we
1855 // accept for compatibility with old files. These types are not allowed to be
1856 // forward referenced and not allowed to be recursive.
1857 if (Lex.getKind() != lltok::lbrace) {
1858 if (Entry.first)
1859 return Error(TypeLoc, "forward references to non-struct type");
Michael Ilseman407a6162012-11-15 22:34:00 +00001860
Chris Lattner1afcace2011-07-09 17:41:24 +00001861 ResultTy = 0;
1862 if (isPacked)
1863 return ParseArrayVectorType(ResultTy, true);
1864 return ParseType(ResultTy);
1865 }
Michael Ilseman407a6162012-11-15 22:34:00 +00001866
Chris Lattner1afcace2011-07-09 17:41:24 +00001867 // This type is being defined, so clear the location to indicate this.
1868 Entry.second = SMLoc();
Michael Ilseman407a6162012-11-15 22:34:00 +00001869
Chris Lattner1afcace2011-07-09 17:41:24 +00001870 // If this type number has never been uttered, create it.
1871 if (Entry.first == 0)
Chris Lattner3ebb6492011-08-12 18:06:37 +00001872 Entry.first = StructType::create(Context, Name);
Michael Ilseman407a6162012-11-15 22:34:00 +00001873
Chris Lattner1afcace2011-07-09 17:41:24 +00001874 StructType *STy = cast<StructType>(Entry.first);
Michael Ilseman407a6162012-11-15 22:34:00 +00001875
Chris Lattner1afcace2011-07-09 17:41:24 +00001876 SmallVector<Type*, 8> Body;
1877 if (ParseStructBody(Body) ||
1878 (isPacked && ParseToken(lltok::greater, "expected '>' in packed struct")))
1879 return true;
Michael Ilseman407a6162012-11-15 22:34:00 +00001880
Chris Lattner1afcace2011-07-09 17:41:24 +00001881 STy->setBody(Body, isPacked);
1882 ResultTy = STy;
1883 return false;
1884}
1885
1886
Chris Lattnerdf986172009-01-02 07:01:27 +00001887/// ParseStructType: Handles packed and unpacked types. </> parsed elsewhere.
Chris Lattner1afcace2011-07-09 17:41:24 +00001888/// StructType
Chris Lattnerdf986172009-01-02 07:01:27 +00001889/// ::= '{' '}'
Chris Lattner1afcace2011-07-09 17:41:24 +00001890/// ::= '{' Type (',' Type)* '}'
Chris Lattnerdf986172009-01-02 07:01:27 +00001891/// ::= '<' '{' '}' '>'
Chris Lattner1afcace2011-07-09 17:41:24 +00001892/// ::= '<' '{' Type (',' Type)* '}' '>'
1893bool LLParser::ParseStructBody(SmallVectorImpl<Type*> &Body) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001894 assert(Lex.getKind() == lltok::lbrace);
1895 Lex.Lex(); // Consume the '{'
Daniel Dunbara279bc32009-09-20 02:20:51 +00001896
Chris Lattner1afcace2011-07-09 17:41:24 +00001897 // Handle the empty struct.
1898 if (EatIfPresent(lltok::rbrace))
Chris Lattnerdf986172009-01-02 07:01:27 +00001899 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00001900
Chris Lattnera9a9e072009-03-09 04:49:14 +00001901 LocTy EltTyLoc = Lex.getLoc();
Chris Lattner1afcace2011-07-09 17:41:24 +00001902 Type *Ty = 0;
1903 if (ParseType(Ty)) return true;
1904 Body.push_back(Ty);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001905
Chris Lattner1afcace2011-07-09 17:41:24 +00001906 if (!StructType::isValidElementType(Ty))
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001907 return Error(EltTyLoc, "invalid element type for struct");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001908
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001909 while (EatIfPresent(lltok::comma)) {
Chris Lattnera9a9e072009-03-09 04:49:14 +00001910 EltTyLoc = Lex.getLoc();
Chris Lattner1afcace2011-07-09 17:41:24 +00001911 if (ParseType(Ty)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001912
Chris Lattner1afcace2011-07-09 17:41:24 +00001913 if (!StructType::isValidElementType(Ty))
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001914 return Error(EltTyLoc, "invalid element type for struct");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001915
Chris Lattner1afcace2011-07-09 17:41:24 +00001916 Body.push_back(Ty);
Chris Lattnerdf986172009-01-02 07:01:27 +00001917 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001918
Chris Lattner1afcace2011-07-09 17:41:24 +00001919 return ParseToken(lltok::rbrace, "expected '}' at end of struct");
Chris Lattnerdf986172009-01-02 07:01:27 +00001920}
1921
1922/// ParseArrayVectorType - Parse an array or vector type, assuming the first
1923/// token has already been consumed.
Chris Lattner1afcace2011-07-09 17:41:24 +00001924/// Type
Chris Lattnerdf986172009-01-02 07:01:27 +00001925/// ::= '[' APSINTVAL 'x' Types ']'
1926/// ::= '<' APSINTVAL 'x' Types '>'
Chris Lattner1afcace2011-07-09 17:41:24 +00001927bool LLParser::ParseArrayVectorType(Type *&Result, bool isVector) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001928 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned() ||
1929 Lex.getAPSIntVal().getBitWidth() > 64)
1930 return TokError("expected number in address space");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001931
Chris Lattnerdf986172009-01-02 07:01:27 +00001932 LocTy SizeLoc = Lex.getLoc();
1933 uint64_t Size = Lex.getAPSIntVal().getZExtValue();
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001934 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +00001935
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001936 if (ParseToken(lltok::kw_x, "expected 'x' after element count"))
1937 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00001938
1939 LocTy TypeLoc = Lex.getLoc();
Chris Lattner1afcace2011-07-09 17:41:24 +00001940 Type *EltTy = 0;
1941 if (ParseType(EltTy)) return true;
Chris Lattnera9a9e072009-03-09 04:49:14 +00001942
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001943 if (ParseToken(isVector ? lltok::greater : lltok::rsquare,
1944 "expected end of sequential type"))
1945 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001946
Chris Lattnerdf986172009-01-02 07:01:27 +00001947 if (isVector) {
Chris Lattner452e2622009-02-28 18:12:41 +00001948 if (Size == 0)
1949 return Error(SizeLoc, "zero element vector is illegal");
Chris Lattnerdf986172009-01-02 07:01:27 +00001950 if ((unsigned)Size != Size)
1951 return Error(SizeLoc, "size too large for vector");
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001952 if (!VectorType::isValidElementType(EltTy))
Duncan Sands2333e292012-11-13 12:59:33 +00001953 return Error(TypeLoc, "invalid vector element type");
Owen Andersondebcb012009-07-29 22:17:13 +00001954 Result = VectorType::get(EltTy, unsigned(Size));
Chris Lattnerdf986172009-01-02 07:01:27 +00001955 } else {
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001956 if (!ArrayType::isValidElementType(EltTy))
Chris Lattnerdf986172009-01-02 07:01:27 +00001957 return Error(TypeLoc, "invalid array element type");
Chris Lattner1afcace2011-07-09 17:41:24 +00001958 Result = ArrayType::get(EltTy, Size);
Chris Lattnerdf986172009-01-02 07:01:27 +00001959 }
1960 return false;
1961}
1962
1963//===----------------------------------------------------------------------===//
1964// Function Semantic Analysis.
1965//===----------------------------------------------------------------------===//
1966
Chris Lattner09d9ef42009-10-28 03:39:23 +00001967LLParser::PerFunctionState::PerFunctionState(LLParser &p, Function &f,
1968 int functionNumber)
1969 : P(p), F(f), FunctionNumber(functionNumber) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001970
1971 // Insert unnamed arguments into the NumberedVals list.
1972 for (Function::arg_iterator AI = F.arg_begin(), E = F.arg_end();
1973 AI != E; ++AI)
1974 if (!AI->hasName())
1975 NumberedVals.push_back(AI);
1976}
1977
1978LLParser::PerFunctionState::~PerFunctionState() {
1979 // If there were any forward referenced non-basicblock values, delete them.
1980 for (std::map<std::string, std::pair<Value*, LocTy> >::iterator
1981 I = ForwardRefVals.begin(), E = ForwardRefVals.end(); I != E; ++I)
1982 if (!isa<BasicBlock>(I->second.first)) {
Owen Andersonb43eae72009-07-02 17:04:01 +00001983 I->second.first->replaceAllUsesWith(
Owen Anderson9e9a0d52009-07-30 23:03:37 +00001984 UndefValue::get(I->second.first->getType()));
Chris Lattnerdf986172009-01-02 07:01:27 +00001985 delete I->second.first;
1986 I->second.first = 0;
1987 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001988
Chris Lattnerdf986172009-01-02 07:01:27 +00001989 for (std::map<unsigned, std::pair<Value*, LocTy> >::iterator
1990 I = ForwardRefValIDs.begin(), E = ForwardRefValIDs.end(); I != E; ++I)
1991 if (!isa<BasicBlock>(I->second.first)) {
Owen Andersonb43eae72009-07-02 17:04:01 +00001992 I->second.first->replaceAllUsesWith(
Owen Anderson9e9a0d52009-07-30 23:03:37 +00001993 UndefValue::get(I->second.first->getType()));
Chris Lattnerdf986172009-01-02 07:01:27 +00001994 delete I->second.first;
1995 I->second.first = 0;
1996 }
1997}
1998
Chris Lattner09d9ef42009-10-28 03:39:23 +00001999bool LLParser::PerFunctionState::FinishFunction() {
2000 // Check to see if someone took the address of labels in this block.
2001 if (!P.ForwardRefBlockAddresses.empty()) {
2002 ValID FunctionID;
2003 if (!F.getName().empty()) {
2004 FunctionID.Kind = ValID::t_GlobalName;
2005 FunctionID.StrVal = F.getName();
2006 } else {
2007 FunctionID.Kind = ValID::t_GlobalID;
2008 FunctionID.UIntVal = FunctionNumber;
2009 }
Michael Ilseman407a6162012-11-15 22:34:00 +00002010
Chris Lattner09d9ef42009-10-28 03:39:23 +00002011 std::map<ValID, std::vector<std::pair<ValID, GlobalValue*> > >::iterator
2012 FRBAI = P.ForwardRefBlockAddresses.find(FunctionID);
2013 if (FRBAI != P.ForwardRefBlockAddresses.end()) {
2014 // Resolve all these references.
2015 if (P.ResolveForwardRefBlockAddresses(&F, FRBAI->second, this))
2016 return true;
Michael Ilseman407a6162012-11-15 22:34:00 +00002017
Chris Lattner09d9ef42009-10-28 03:39:23 +00002018 P.ForwardRefBlockAddresses.erase(FRBAI);
2019 }
2020 }
Michael Ilseman407a6162012-11-15 22:34:00 +00002021
Chris Lattnerdf986172009-01-02 07:01:27 +00002022 if (!ForwardRefVals.empty())
2023 return P.Error(ForwardRefVals.begin()->second.second,
2024 "use of undefined value '%" + ForwardRefVals.begin()->first +
2025 "'");
2026 if (!ForwardRefValIDs.empty())
2027 return P.Error(ForwardRefValIDs.begin()->second.second,
2028 "use of undefined value '%" +
Benjamin Kramerd1e17032010-09-27 17:42:11 +00002029 Twine(ForwardRefValIDs.begin()->first) + "'");
Chris Lattnerdf986172009-01-02 07:01:27 +00002030 return false;
2031}
2032
2033
2034/// GetVal - Get a value with the specified name or ID, creating a
2035/// forward reference record if needed. This can return null if the value
2036/// exists but does not have the right type.
2037Value *LLParser::PerFunctionState::GetVal(const std::string &Name,
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002038 Type *Ty, LocTy Loc) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002039 // Look this name up in the normal function symbol table.
2040 Value *Val = F.getValueSymbolTable().lookup(Name);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002041
Chris Lattnerdf986172009-01-02 07:01:27 +00002042 // If this is a forward reference for the value, see if we already created a
2043 // forward ref record.
2044 if (Val == 0) {
2045 std::map<std::string, std::pair<Value*, LocTy> >::iterator
2046 I = ForwardRefVals.find(Name);
2047 if (I != ForwardRefVals.end())
2048 Val = I->second.first;
2049 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002050
Chris Lattnerdf986172009-01-02 07:01:27 +00002051 // If we have the value in the symbol table or fwd-ref table, return it.
2052 if (Val) {
2053 if (Val->getType() == Ty) return Val;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00002054 if (Ty->isLabelTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002055 P.Error(Loc, "'%" + Name + "' is not a basic block");
2056 else
2057 P.Error(Loc, "'%" + Name + "' defined with type '" +
Chris Lattner0cd0d882011-06-18 21:18:23 +00002058 getTypeString(Val->getType()) + "'");
Chris Lattnerdf986172009-01-02 07:01:27 +00002059 return 0;
2060 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002061
Chris Lattnerdf986172009-01-02 07:01:27 +00002062 // Don't make placeholders with invalid type.
Chris Lattner1afcace2011-07-09 17:41:24 +00002063 if (!Ty->isFirstClassType() && !Ty->isLabelTy()) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002064 P.Error(Loc, "invalid use of a non-first-class type");
2065 return 0;
2066 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002067
Chris Lattnerdf986172009-01-02 07:01:27 +00002068 // Otherwise, create a new forward reference for this value and remember it.
2069 Value *FwdVal;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00002070 if (Ty->isLabelTy())
Owen Anderson1d0be152009-08-13 21:58:54 +00002071 FwdVal = BasicBlock::Create(F.getContext(), Name, &F);
Chris Lattnerdf986172009-01-02 07:01:27 +00002072 else
2073 FwdVal = new Argument(Ty, Name);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002074
Chris Lattnerdf986172009-01-02 07:01:27 +00002075 ForwardRefVals[Name] = std::make_pair(FwdVal, Loc);
2076 return FwdVal;
2077}
2078
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002079Value *LLParser::PerFunctionState::GetVal(unsigned ID, Type *Ty,
Chris Lattnerdf986172009-01-02 07:01:27 +00002080 LocTy Loc) {
2081 // Look this name up in the normal function symbol table.
2082 Value *Val = ID < NumberedVals.size() ? NumberedVals[ID] : 0;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002083
Chris Lattnerdf986172009-01-02 07:01:27 +00002084 // If this is a forward reference for the value, see if we already created a
2085 // forward ref record.
2086 if (Val == 0) {
2087 std::map<unsigned, std::pair<Value*, LocTy> >::iterator
2088 I = ForwardRefValIDs.find(ID);
2089 if (I != ForwardRefValIDs.end())
2090 Val = I->second.first;
2091 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002092
Chris Lattnerdf986172009-01-02 07:01:27 +00002093 // If we have the value in the symbol table or fwd-ref table, return it.
2094 if (Val) {
2095 if (Val->getType() == Ty) return Val;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00002096 if (Ty->isLabelTy())
Benjamin Kramerd1e17032010-09-27 17:42:11 +00002097 P.Error(Loc, "'%" + Twine(ID) + "' is not a basic block");
Chris Lattnerdf986172009-01-02 07:01:27 +00002098 else
Benjamin Kramerd1e17032010-09-27 17:42:11 +00002099 P.Error(Loc, "'%" + Twine(ID) + "' defined with type '" +
Chris Lattner0cd0d882011-06-18 21:18:23 +00002100 getTypeString(Val->getType()) + "'");
Chris Lattnerdf986172009-01-02 07:01:27 +00002101 return 0;
2102 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002103
Chris Lattner1afcace2011-07-09 17:41:24 +00002104 if (!Ty->isFirstClassType() && !Ty->isLabelTy()) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002105 P.Error(Loc, "invalid use of a non-first-class type");
2106 return 0;
2107 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002108
Chris Lattnerdf986172009-01-02 07:01:27 +00002109 // Otherwise, create a new forward reference for this value and remember it.
2110 Value *FwdVal;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00002111 if (Ty->isLabelTy())
Owen Anderson1d0be152009-08-13 21:58:54 +00002112 FwdVal = BasicBlock::Create(F.getContext(), "", &F);
Chris Lattnerdf986172009-01-02 07:01:27 +00002113 else
2114 FwdVal = new Argument(Ty);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002115
Chris Lattnerdf986172009-01-02 07:01:27 +00002116 ForwardRefValIDs[ID] = std::make_pair(FwdVal, Loc);
2117 return FwdVal;
2118}
2119
2120/// SetInstName - After an instruction is parsed and inserted into its
2121/// basic block, this installs its name.
2122bool LLParser::PerFunctionState::SetInstName(int NameID,
2123 const std::string &NameStr,
2124 LocTy NameLoc, Instruction *Inst) {
2125 // If this instruction has void type, it cannot have a name or ID specified.
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00002126 if (Inst->getType()->isVoidTy()) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002127 if (NameID != -1 || !NameStr.empty())
2128 return P.Error(NameLoc, "instructions returning void cannot have a name");
2129 return false;
2130 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002131
Chris Lattnerdf986172009-01-02 07:01:27 +00002132 // If this was a numbered instruction, verify that the instruction is the
2133 // expected value and resolve any forward references.
2134 if (NameStr.empty()) {
2135 // If neither a name nor an ID was specified, just use the next ID.
2136 if (NameID == -1)
2137 NameID = NumberedVals.size();
Daniel Dunbara279bc32009-09-20 02:20:51 +00002138
Chris Lattnerdf986172009-01-02 07:01:27 +00002139 if (unsigned(NameID) != NumberedVals.size())
2140 return P.Error(NameLoc, "instruction expected to be numbered '%" +
Benjamin Kramerd1e17032010-09-27 17:42:11 +00002141 Twine(NumberedVals.size()) + "'");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002142
Chris Lattnerdf986172009-01-02 07:01:27 +00002143 std::map<unsigned, std::pair<Value*, LocTy> >::iterator FI =
2144 ForwardRefValIDs.find(NameID);
2145 if (FI != ForwardRefValIDs.end()) {
2146 if (FI->second.first->getType() != Inst->getType())
Daniel Dunbara279bc32009-09-20 02:20:51 +00002147 return P.Error(NameLoc, "instruction forward referenced with type '" +
Chris Lattner0cd0d882011-06-18 21:18:23 +00002148 getTypeString(FI->second.first->getType()) + "'");
Chris Lattnerdf986172009-01-02 07:01:27 +00002149 FI->second.first->replaceAllUsesWith(Inst);
Nuno Lopes2b4f28e2009-09-02 15:02:57 +00002150 delete FI->second.first;
Chris Lattnerdf986172009-01-02 07:01:27 +00002151 ForwardRefValIDs.erase(FI);
2152 }
2153
2154 NumberedVals.push_back(Inst);
2155 return false;
2156 }
2157
2158 // Otherwise, the instruction had a name. Resolve forward refs and set it.
2159 std::map<std::string, std::pair<Value*, LocTy> >::iterator
2160 FI = ForwardRefVals.find(NameStr);
2161 if (FI != ForwardRefVals.end()) {
2162 if (FI->second.first->getType() != Inst->getType())
Daniel Dunbara279bc32009-09-20 02:20:51 +00002163 return P.Error(NameLoc, "instruction forward referenced with type '" +
Chris Lattner0cd0d882011-06-18 21:18:23 +00002164 getTypeString(FI->second.first->getType()) + "'");
Chris Lattnerdf986172009-01-02 07:01:27 +00002165 FI->second.first->replaceAllUsesWith(Inst);
Nuno Lopes531552a2009-09-02 14:22:03 +00002166 delete FI->second.first;
Chris Lattnerdf986172009-01-02 07:01:27 +00002167 ForwardRefVals.erase(FI);
2168 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002169
Chris Lattnerdf986172009-01-02 07:01:27 +00002170 // Set the name on the instruction.
2171 Inst->setName(NameStr);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002172
Benjamin Krameraf812352010-10-16 11:28:23 +00002173 if (Inst->getName() != NameStr)
Daniel Dunbara279bc32009-09-20 02:20:51 +00002174 return P.Error(NameLoc, "multiple definition of local value named '" +
Chris Lattnerdf986172009-01-02 07:01:27 +00002175 NameStr + "'");
2176 return false;
2177}
2178
2179/// GetBB - Get a basic block with the specified name or ID, creating a
2180/// forward reference record if needed.
2181BasicBlock *LLParser::PerFunctionState::GetBB(const std::string &Name,
2182 LocTy Loc) {
Owen Anderson1d0be152009-08-13 21:58:54 +00002183 return cast_or_null<BasicBlock>(GetVal(Name,
2184 Type::getLabelTy(F.getContext()), Loc));
Chris Lattnerdf986172009-01-02 07:01:27 +00002185}
2186
2187BasicBlock *LLParser::PerFunctionState::GetBB(unsigned ID, LocTy Loc) {
Owen Anderson1d0be152009-08-13 21:58:54 +00002188 return cast_or_null<BasicBlock>(GetVal(ID,
2189 Type::getLabelTy(F.getContext()), Loc));
Chris Lattnerdf986172009-01-02 07:01:27 +00002190}
2191
2192/// DefineBB - Define the specified basic block, which is either named or
2193/// unnamed. If there is an error, this returns null otherwise it returns
2194/// the block being defined.
2195BasicBlock *LLParser::PerFunctionState::DefineBB(const std::string &Name,
2196 LocTy Loc) {
2197 BasicBlock *BB;
2198 if (Name.empty())
2199 BB = GetBB(NumberedVals.size(), Loc);
2200 else
2201 BB = GetBB(Name, Loc);
2202 if (BB == 0) return 0; // Already diagnosed error.
Daniel Dunbara279bc32009-09-20 02:20:51 +00002203
Chris Lattnerdf986172009-01-02 07:01:27 +00002204 // Move the block to the end of the function. Forward ref'd blocks are
2205 // inserted wherever they happen to be referenced.
2206 F.getBasicBlockList().splice(F.end(), F.getBasicBlockList(), BB);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002207
Chris Lattnerdf986172009-01-02 07:01:27 +00002208 // Remove the block from forward ref sets.
2209 if (Name.empty()) {
2210 ForwardRefValIDs.erase(NumberedVals.size());
2211 NumberedVals.push_back(BB);
2212 } else {
2213 // BB forward references are already in the function symbol table.
2214 ForwardRefVals.erase(Name);
2215 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002216
Chris Lattnerdf986172009-01-02 07:01:27 +00002217 return BB;
2218}
2219
2220//===----------------------------------------------------------------------===//
2221// Constants.
2222//===----------------------------------------------------------------------===//
2223
2224/// ParseValID - Parse an abstract value that doesn't necessarily have a
2225/// type implied. For example, if we parse "4" we don't know what integer type
2226/// it has. The value will later be combined with its type and checked for
Victor Hernandez24e64df2010-01-10 07:14:18 +00002227/// sanity. PFS is used to convert function-local operands of metadata (since
2228/// metadata operands are not just parsed here but also converted to values).
2229/// PFS can be null when we are not parsing metadata values inside a function.
Victor Hernandezbf170d42010-01-05 22:22:14 +00002230bool LLParser::ParseValID(ValID &ID, PerFunctionState *PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002231 ID.Loc = Lex.getLoc();
2232 switch (Lex.getKind()) {
2233 default: return TokError("expected value token");
2234 case lltok::GlobalID: // @42
2235 ID.UIntVal = Lex.getUIntVal();
2236 ID.Kind = ValID::t_GlobalID;
2237 break;
2238 case lltok::GlobalVar: // @foo
2239 ID.StrVal = Lex.getStrVal();
2240 ID.Kind = ValID::t_GlobalName;
2241 break;
2242 case lltok::LocalVarID: // %42
2243 ID.UIntVal = Lex.getUIntVal();
2244 ID.Kind = ValID::t_LocalID;
2245 break;
2246 case lltok::LocalVar: // %foo
Chris Lattnerdf986172009-01-02 07:01:27 +00002247 ID.StrVal = Lex.getStrVal();
2248 ID.Kind = ValID::t_LocalName;
2249 break;
Dan Gohman83448032010-07-14 18:26:50 +00002250 case lltok::exclaim: // !42, !{...}, or !"foo"
2251 return ParseMetadataValue(ID, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00002252 case lltok::APSInt:
Daniel Dunbara279bc32009-09-20 02:20:51 +00002253 ID.APSIntVal = Lex.getAPSIntVal();
Chris Lattnerdf986172009-01-02 07:01:27 +00002254 ID.Kind = ValID::t_APSInt;
2255 break;
2256 case lltok::APFloat:
2257 ID.APFloatVal = Lex.getAPFloatVal();
2258 ID.Kind = ValID::t_APFloat;
2259 break;
2260 case lltok::kw_true:
Owen Anderson5defacc2009-07-31 17:39:07 +00002261 ID.ConstantVal = ConstantInt::getTrue(Context);
Chris Lattnerdf986172009-01-02 07:01:27 +00002262 ID.Kind = ValID::t_Constant;
2263 break;
2264 case lltok::kw_false:
Owen Anderson5defacc2009-07-31 17:39:07 +00002265 ID.ConstantVal = ConstantInt::getFalse(Context);
Chris Lattnerdf986172009-01-02 07:01:27 +00002266 ID.Kind = ValID::t_Constant;
2267 break;
2268 case lltok::kw_null: ID.Kind = ValID::t_Null; break;
2269 case lltok::kw_undef: ID.Kind = ValID::t_Undef; break;
2270 case lltok::kw_zeroinitializer: ID.Kind = ValID::t_Zero; break;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002271
Chris Lattnerdf986172009-01-02 07:01:27 +00002272 case lltok::lbrace: {
2273 // ValID ::= '{' ConstVector '}'
2274 Lex.Lex();
2275 SmallVector<Constant*, 16> Elts;
2276 if (ParseGlobalValueVector(Elts) ||
2277 ParseToken(lltok::rbrace, "expected end of struct constant"))
2278 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002279
Chris Lattner1afcace2011-07-09 17:41:24 +00002280 ID.ConstantStructElts = new Constant*[Elts.size()];
2281 ID.UIntVal = Elts.size();
2282 memcpy(ID.ConstantStructElts, Elts.data(), Elts.size()*sizeof(Elts[0]));
2283 ID.Kind = ValID::t_ConstantStruct;
Chris Lattnerdf986172009-01-02 07:01:27 +00002284 return false;
2285 }
2286 case lltok::less: {
2287 // ValID ::= '<' ConstVector '>' --> Vector.
2288 // ValID ::= '<' '{' ConstVector '}' '>' --> Packed Struct.
2289 Lex.Lex();
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002290 bool isPackedStruct = EatIfPresent(lltok::lbrace);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002291
Chris Lattnerdf986172009-01-02 07:01:27 +00002292 SmallVector<Constant*, 16> Elts;
2293 LocTy FirstEltLoc = Lex.getLoc();
2294 if (ParseGlobalValueVector(Elts) ||
2295 (isPackedStruct &&
2296 ParseToken(lltok::rbrace, "expected end of packed struct")) ||
2297 ParseToken(lltok::greater, "expected end of constant"))
2298 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002299
Chris Lattnerdf986172009-01-02 07:01:27 +00002300 if (isPackedStruct) {
Chris Lattner1afcace2011-07-09 17:41:24 +00002301 ID.ConstantStructElts = new Constant*[Elts.size()];
2302 memcpy(ID.ConstantStructElts, Elts.data(), Elts.size()*sizeof(Elts[0]));
2303 ID.UIntVal = Elts.size();
2304 ID.Kind = ValID::t_PackedConstantStruct;
Chris Lattnerdf986172009-01-02 07:01:27 +00002305 return false;
2306 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002307
Chris Lattnerdf986172009-01-02 07:01:27 +00002308 if (Elts.empty())
2309 return Error(ID.Loc, "constant vector must not be empty");
2310
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00002311 if (!Elts[0]->getType()->isIntegerTy() &&
Nadav Rotem16087692011-12-05 06:29:09 +00002312 !Elts[0]->getType()->isFloatingPointTy() &&
2313 !Elts[0]->getType()->isPointerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002314 return Error(FirstEltLoc,
Nadav Rotem16087692011-12-05 06:29:09 +00002315 "vector elements must have integer, pointer or floating point type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002316
Chris Lattnerdf986172009-01-02 07:01:27 +00002317 // Verify that all the vector elements have the same type.
2318 for (unsigned i = 1, e = Elts.size(); i != e; ++i)
2319 if (Elts[i]->getType() != Elts[0]->getType())
2320 return Error(FirstEltLoc,
Benjamin Kramerd1e17032010-09-27 17:42:11 +00002321 "vector element #" + Twine(i) +
Chris Lattner0cd0d882011-06-18 21:18:23 +00002322 " is not of type '" + getTypeString(Elts[0]->getType()));
Daniel Dunbara279bc32009-09-20 02:20:51 +00002323
Chris Lattner2ca5c862011-02-15 00:14:00 +00002324 ID.ConstantVal = ConstantVector::get(Elts);
Chris Lattnerdf986172009-01-02 07:01:27 +00002325 ID.Kind = ValID::t_Constant;
2326 return false;
2327 }
2328 case lltok::lsquare: { // Array Constant
2329 Lex.Lex();
2330 SmallVector<Constant*, 16> Elts;
2331 LocTy FirstEltLoc = Lex.getLoc();
2332 if (ParseGlobalValueVector(Elts) ||
2333 ParseToken(lltok::rsquare, "expected end of array constant"))
2334 return true;
2335
2336 // Handle empty element.
2337 if (Elts.empty()) {
2338 // Use undef instead of an array because it's inconvenient to determine
2339 // the element type at this point, there being no elements to examine.
Chris Lattner081b5052009-01-05 07:52:51 +00002340 ID.Kind = ValID::t_EmptyArray;
Chris Lattnerdf986172009-01-02 07:01:27 +00002341 return false;
2342 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002343
Chris Lattnerdf986172009-01-02 07:01:27 +00002344 if (!Elts[0]->getType()->isFirstClassType())
Daniel Dunbara279bc32009-09-20 02:20:51 +00002345 return Error(FirstEltLoc, "invalid array element type: " +
Chris Lattner0cd0d882011-06-18 21:18:23 +00002346 getTypeString(Elts[0]->getType()));
Daniel Dunbara279bc32009-09-20 02:20:51 +00002347
Owen Andersondebcb012009-07-29 22:17:13 +00002348 ArrayType *ATy = ArrayType::get(Elts[0]->getType(), Elts.size());
Daniel Dunbara279bc32009-09-20 02:20:51 +00002349
Chris Lattnerdf986172009-01-02 07:01:27 +00002350 // Verify all elements are correct type!
Chris Lattner6d6b3cc2009-01-02 08:49:06 +00002351 for (unsigned i = 0, e = Elts.size(); i != e; ++i) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002352 if (Elts[i]->getType() != Elts[0]->getType())
2353 return Error(FirstEltLoc,
Benjamin Kramerd1e17032010-09-27 17:42:11 +00002354 "array element #" + Twine(i) +
Chris Lattner0cd0d882011-06-18 21:18:23 +00002355 " is not of type '" + getTypeString(Elts[0]->getType()));
Chris Lattnerdf986172009-01-02 07:01:27 +00002356 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002357
Jay Foad26701082011-06-22 09:24:39 +00002358 ID.ConstantVal = ConstantArray::get(ATy, Elts);
Chris Lattnerdf986172009-01-02 07:01:27 +00002359 ID.Kind = ValID::t_Constant;
2360 return false;
2361 }
2362 case lltok::kw_c: // c "foo"
2363 Lex.Lex();
Chris Lattner18c7f802012-02-05 02:29:43 +00002364 ID.ConstantVal = ConstantDataArray::getString(Context, Lex.getStrVal(),
2365 false);
Chris Lattnerdf986172009-01-02 07:01:27 +00002366 if (ParseToken(lltok::StringConstant, "expected string")) return true;
2367 ID.Kind = ValID::t_Constant;
2368 return false;
2369
2370 case lltok::kw_asm: {
Chad Rosier27d844f2013-02-14 20:44:07 +00002371 // ValID ::= 'asm' SideEffect? AlignStack? IntelDialect? STRINGCONSTANT ','
2372 // STRINGCONSTANT
Chad Rosier581600b2012-09-05 19:00:49 +00002373 bool HasSideEffect, AlignStack, AsmDialect;
Chris Lattnerdf986172009-01-02 07:01:27 +00002374 Lex.Lex();
2375 if (ParseOptionalToken(lltok::kw_sideeffect, HasSideEffect) ||
Dale Johannesen8ba2d5b2009-10-21 23:28:00 +00002376 ParseOptionalToken(lltok::kw_alignstack, AlignStack) ||
Chad Rosier581600b2012-09-05 19:00:49 +00002377 ParseOptionalToken(lltok::kw_inteldialect, AsmDialect) ||
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002378 ParseStringConstant(ID.StrVal) ||
2379 ParseToken(lltok::comma, "expected comma in inline asm expression") ||
Chris Lattnerdf986172009-01-02 07:01:27 +00002380 ParseToken(lltok::StringConstant, "expected constraint string"))
2381 return true;
2382 ID.StrVal2 = Lex.getStrVal();
Chad Rosier36547342012-09-05 00:08:17 +00002383 ID.UIntVal = unsigned(HasSideEffect) | (unsigned(AlignStack)<<1) |
Chad Rosier581600b2012-09-05 19:00:49 +00002384 (unsigned(AsmDialect)<<2);
Chris Lattnerdf986172009-01-02 07:01:27 +00002385 ID.Kind = ValID::t_InlineAsm;
2386 return false;
2387 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002388
Chris Lattner09d9ef42009-10-28 03:39:23 +00002389 case lltok::kw_blockaddress: {
2390 // ValID ::= 'blockaddress' '(' @foo ',' %bar ')'
2391 Lex.Lex();
2392
2393 ValID Fn, Label;
Michael Ilseman407a6162012-11-15 22:34:00 +00002394
Chris Lattner09d9ef42009-10-28 03:39:23 +00002395 if (ParseToken(lltok::lparen, "expected '(' in block address expression") ||
2396 ParseValID(Fn) ||
2397 ParseToken(lltok::comma, "expected comma in block address expression")||
2398 ParseValID(Label) ||
2399 ParseToken(lltok::rparen, "expected ')' in block address expression"))
2400 return true;
Michael Ilseman407a6162012-11-15 22:34:00 +00002401
Chris Lattner09d9ef42009-10-28 03:39:23 +00002402 if (Fn.Kind != ValID::t_GlobalID && Fn.Kind != ValID::t_GlobalName)
2403 return Error(Fn.Loc, "expected function name in blockaddress");
Chris Lattnercdfc9402009-11-01 01:27:45 +00002404 if (Label.Kind != ValID::t_LocalID && Label.Kind != ValID::t_LocalName)
Chris Lattner09d9ef42009-10-28 03:39:23 +00002405 return Error(Label.Loc, "expected basic block name in blockaddress");
Michael Ilseman407a6162012-11-15 22:34:00 +00002406
Chris Lattner09d9ef42009-10-28 03:39:23 +00002407 // Make a global variable as a placeholder for this reference.
2408 GlobalVariable *FwdRef = new GlobalVariable(*M, Type::getInt8Ty(Context),
2409 false, GlobalValue::InternalLinkage,
2410 0, "");
2411 ForwardRefBlockAddresses[Fn].push_back(std::make_pair(Label, FwdRef));
2412 ID.ConstantVal = FwdRef;
2413 ID.Kind = ValID::t_Constant;
2414 return false;
2415 }
Michael Ilseman407a6162012-11-15 22:34:00 +00002416
Chris Lattnerdf986172009-01-02 07:01:27 +00002417 case lltok::kw_trunc:
2418 case lltok::kw_zext:
2419 case lltok::kw_sext:
2420 case lltok::kw_fptrunc:
2421 case lltok::kw_fpext:
2422 case lltok::kw_bitcast:
2423 case lltok::kw_uitofp:
2424 case lltok::kw_sitofp:
2425 case lltok::kw_fptoui:
Daniel Dunbara279bc32009-09-20 02:20:51 +00002426 case lltok::kw_fptosi:
Chris Lattnerdf986172009-01-02 07:01:27 +00002427 case lltok::kw_inttoptr:
Daniel Dunbara279bc32009-09-20 02:20:51 +00002428 case lltok::kw_ptrtoint: {
Chris Lattnerdf986172009-01-02 07:01:27 +00002429 unsigned Opc = Lex.getUIntVal();
Chris Lattner1afcace2011-07-09 17:41:24 +00002430 Type *DestTy = 0;
Chris Lattnerdf986172009-01-02 07:01:27 +00002431 Constant *SrcVal;
2432 Lex.Lex();
2433 if (ParseToken(lltok::lparen, "expected '(' after constantexpr cast") ||
2434 ParseGlobalTypeAndValue(SrcVal) ||
Dan Gohman24b108b2009-06-15 21:52:11 +00002435 ParseToken(lltok::kw_to, "expected 'to' in constantexpr cast") ||
Chris Lattnerdf986172009-01-02 07:01:27 +00002436 ParseType(DestTy) ||
2437 ParseToken(lltok::rparen, "expected ')' at end of constantexpr cast"))
2438 return true;
2439 if (!CastInst::castIsValid((Instruction::CastOps)Opc, SrcVal, DestTy))
2440 return Error(ID.Loc, "invalid cast opcode for cast from '" +
Chris Lattner0cd0d882011-06-18 21:18:23 +00002441 getTypeString(SrcVal->getType()) + "' to '" +
2442 getTypeString(DestTy) + "'");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002443 ID.ConstantVal = ConstantExpr::getCast((Instruction::CastOps)Opc,
Owen Andersonfba933c2009-07-01 23:57:11 +00002444 SrcVal, DestTy);
Chris Lattnerdf986172009-01-02 07:01:27 +00002445 ID.Kind = ValID::t_Constant;
2446 return false;
2447 }
2448 case lltok::kw_extractvalue: {
2449 Lex.Lex();
2450 Constant *Val;
2451 SmallVector<unsigned, 4> Indices;
2452 if (ParseToken(lltok::lparen, "expected '(' in extractvalue constantexpr")||
2453 ParseGlobalTypeAndValue(Val) ||
2454 ParseIndexList(Indices) ||
2455 ParseToken(lltok::rparen, "expected ')' in extractvalue constantexpr"))
2456 return true;
Devang Patele8bc45a2009-11-03 19:06:07 +00002457
Chris Lattnerfdfeb692010-02-12 20:49:41 +00002458 if (!Val->getType()->isAggregateType())
2459 return Error(ID.Loc, "extractvalue operand must be aggregate type");
Jay Foadfc6d3a42011-07-13 10:26:04 +00002460 if (!ExtractValueInst::getIndexedType(Val->getType(), Indices))
Chris Lattnerdf986172009-01-02 07:01:27 +00002461 return Error(ID.Loc, "invalid indices for extractvalue");
Jay Foadfc6d3a42011-07-13 10:26:04 +00002462 ID.ConstantVal = ConstantExpr::getExtractValue(Val, Indices);
Chris Lattnerdf986172009-01-02 07:01:27 +00002463 ID.Kind = ValID::t_Constant;
2464 return false;
2465 }
2466 case lltok::kw_insertvalue: {
2467 Lex.Lex();
2468 Constant *Val0, *Val1;
2469 SmallVector<unsigned, 4> Indices;
2470 if (ParseToken(lltok::lparen, "expected '(' in insertvalue constantexpr")||
2471 ParseGlobalTypeAndValue(Val0) ||
2472 ParseToken(lltok::comma, "expected comma in insertvalue constantexpr")||
2473 ParseGlobalTypeAndValue(Val1) ||
2474 ParseIndexList(Indices) ||
2475 ParseToken(lltok::rparen, "expected ')' in insertvalue constantexpr"))
2476 return true;
Chris Lattnerfdfeb692010-02-12 20:49:41 +00002477 if (!Val0->getType()->isAggregateType())
2478 return Error(ID.Loc, "insertvalue operand must be aggregate type");
Jay Foadfc6d3a42011-07-13 10:26:04 +00002479 if (!ExtractValueInst::getIndexedType(Val0->getType(), Indices))
Chris Lattnerdf986172009-01-02 07:01:27 +00002480 return Error(ID.Loc, "invalid indices for insertvalue");
Jay Foadfc6d3a42011-07-13 10:26:04 +00002481 ID.ConstantVal = ConstantExpr::getInsertValue(Val0, Val1, Indices);
Chris Lattnerdf986172009-01-02 07:01:27 +00002482 ID.Kind = ValID::t_Constant;
2483 return false;
2484 }
2485 case lltok::kw_icmp:
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00002486 case lltok::kw_fcmp: {
Chris Lattnerdf986172009-01-02 07:01:27 +00002487 unsigned PredVal, Opc = Lex.getUIntVal();
2488 Constant *Val0, *Val1;
2489 Lex.Lex();
2490 if (ParseCmpPredicate(PredVal, Opc) ||
2491 ParseToken(lltok::lparen, "expected '(' in compare constantexpr") ||
2492 ParseGlobalTypeAndValue(Val0) ||
2493 ParseToken(lltok::comma, "expected comma in compare constantexpr") ||
2494 ParseGlobalTypeAndValue(Val1) ||
2495 ParseToken(lltok::rparen, "expected ')' in compare constantexpr"))
2496 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002497
Chris Lattnerdf986172009-01-02 07:01:27 +00002498 if (Val0->getType() != Val1->getType())
2499 return Error(ID.Loc, "compare operands must have the same type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002500
Chris Lattnerdf986172009-01-02 07:01:27 +00002501 CmpInst::Predicate Pred = (CmpInst::Predicate)PredVal;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002502
Chris Lattnerdf986172009-01-02 07:01:27 +00002503 if (Opc == Instruction::FCmp) {
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00002504 if (!Val0->getType()->isFPOrFPVectorTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002505 return Error(ID.Loc, "fcmp requires floating point operands");
Owen Andersonbaf3c402009-07-29 18:55:55 +00002506 ID.ConstantVal = ConstantExpr::getFCmp(Pred, Val0, Val1);
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00002507 } else {
2508 assert(Opc == Instruction::ICmp && "Unexpected opcode for CmpInst!");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00002509 if (!Val0->getType()->isIntOrIntVectorTy() &&
Nadav Rotem16087692011-12-05 06:29:09 +00002510 !Val0->getType()->getScalarType()->isPointerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002511 return Error(ID.Loc, "icmp requires pointer or integer operands");
Owen Andersonbaf3c402009-07-29 18:55:55 +00002512 ID.ConstantVal = ConstantExpr::getICmp(Pred, Val0, Val1);
Chris Lattnerdf986172009-01-02 07:01:27 +00002513 }
2514 ID.Kind = ValID::t_Constant;
2515 return false;
2516 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002517
Chris Lattnerdf986172009-01-02 07:01:27 +00002518 // Binary Operators.
2519 case lltok::kw_add:
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002520 case lltok::kw_fadd:
Chris Lattnerdf986172009-01-02 07:01:27 +00002521 case lltok::kw_sub:
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002522 case lltok::kw_fsub:
Chris Lattnerdf986172009-01-02 07:01:27 +00002523 case lltok::kw_mul:
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002524 case lltok::kw_fmul:
Chris Lattnerdf986172009-01-02 07:01:27 +00002525 case lltok::kw_udiv:
2526 case lltok::kw_sdiv:
2527 case lltok::kw_fdiv:
2528 case lltok::kw_urem:
2529 case lltok::kw_srem:
Chris Lattnerf067d582011-02-07 16:40:21 +00002530 case lltok::kw_frem:
2531 case lltok::kw_shl:
2532 case lltok::kw_lshr:
2533 case lltok::kw_ashr: {
Dan Gohman59858cf2009-07-27 16:11:46 +00002534 bool NUW = false;
2535 bool NSW = false;
2536 bool Exact = false;
Chris Lattnerdf986172009-01-02 07:01:27 +00002537 unsigned Opc = Lex.getUIntVal();
2538 Constant *Val0, *Val1;
2539 Lex.Lex();
Dan Gohman59858cf2009-07-27 16:11:46 +00002540 LocTy ModifierLoc = Lex.getLoc();
Chris Lattnerf067d582011-02-07 16:40:21 +00002541 if (Opc == Instruction::Add || Opc == Instruction::Sub ||
2542 Opc == Instruction::Mul || Opc == Instruction::Shl) {
Dan Gohman59858cf2009-07-27 16:11:46 +00002543 if (EatIfPresent(lltok::kw_nuw))
2544 NUW = true;
2545 if (EatIfPresent(lltok::kw_nsw)) {
2546 NSW = true;
2547 if (EatIfPresent(lltok::kw_nuw))
2548 NUW = true;
2549 }
Chris Lattnerf067d582011-02-07 16:40:21 +00002550 } else if (Opc == Instruction::SDiv || Opc == Instruction::UDiv ||
2551 Opc == Instruction::LShr || Opc == Instruction::AShr) {
Dan Gohman59858cf2009-07-27 16:11:46 +00002552 if (EatIfPresent(lltok::kw_exact))
2553 Exact = true;
2554 }
Chris Lattnerdf986172009-01-02 07:01:27 +00002555 if (ParseToken(lltok::lparen, "expected '(' in binary constantexpr") ||
2556 ParseGlobalTypeAndValue(Val0) ||
2557 ParseToken(lltok::comma, "expected comma in binary constantexpr") ||
2558 ParseGlobalTypeAndValue(Val1) ||
2559 ParseToken(lltok::rparen, "expected ')' in binary constantexpr"))
2560 return true;
2561 if (Val0->getType() != Val1->getType())
2562 return Error(ID.Loc, "operands of constexpr must have same type");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00002563 if (!Val0->getType()->isIntOrIntVectorTy()) {
Dan Gohman59858cf2009-07-27 16:11:46 +00002564 if (NUW)
2565 return Error(ModifierLoc, "nuw only applies to integer operations");
2566 if (NSW)
2567 return Error(ModifierLoc, "nsw only applies to integer operations");
2568 }
Dan Gohman1eaac532010-05-03 22:44:19 +00002569 // Check that the type is valid for the operator.
2570 switch (Opc) {
2571 case Instruction::Add:
2572 case Instruction::Sub:
2573 case Instruction::Mul:
2574 case Instruction::UDiv:
2575 case Instruction::SDiv:
2576 case Instruction::URem:
2577 case Instruction::SRem:
Chris Lattnerf067d582011-02-07 16:40:21 +00002578 case Instruction::Shl:
2579 case Instruction::AShr:
2580 case Instruction::LShr:
Dan Gohman1eaac532010-05-03 22:44:19 +00002581 if (!Val0->getType()->isIntOrIntVectorTy())
2582 return Error(ID.Loc, "constexpr requires integer operands");
2583 break;
2584 case Instruction::FAdd:
2585 case Instruction::FSub:
2586 case Instruction::FMul:
2587 case Instruction::FDiv:
2588 case Instruction::FRem:
2589 if (!Val0->getType()->isFPOrFPVectorTy())
2590 return Error(ID.Loc, "constexpr requires fp operands");
2591 break;
2592 default: llvm_unreachable("Unknown binary operator!");
2593 }
Dan Gohmanf8dbee72009-09-07 23:54:19 +00002594 unsigned Flags = 0;
2595 if (NUW) Flags |= OverflowingBinaryOperator::NoUnsignedWrap;
2596 if (NSW) Flags |= OverflowingBinaryOperator::NoSignedWrap;
Chris Lattner35bda892011-02-06 21:44:57 +00002597 if (Exact) Flags |= PossiblyExactOperator::IsExact;
Dan Gohmanf8dbee72009-09-07 23:54:19 +00002598 Constant *C = ConstantExpr::get(Opc, Val0, Val1, Flags);
Dan Gohman59858cf2009-07-27 16:11:46 +00002599 ID.ConstantVal = C;
Chris Lattnerdf986172009-01-02 07:01:27 +00002600 ID.Kind = ValID::t_Constant;
2601 return false;
2602 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002603
Chris Lattnerdf986172009-01-02 07:01:27 +00002604 // Logical Operations
Chris Lattnerdf986172009-01-02 07:01:27 +00002605 case lltok::kw_and:
2606 case lltok::kw_or:
2607 case lltok::kw_xor: {
2608 unsigned Opc = Lex.getUIntVal();
2609 Constant *Val0, *Val1;
2610 Lex.Lex();
2611 if (ParseToken(lltok::lparen, "expected '(' in logical constantexpr") ||
2612 ParseGlobalTypeAndValue(Val0) ||
2613 ParseToken(lltok::comma, "expected comma in logical constantexpr") ||
2614 ParseGlobalTypeAndValue(Val1) ||
2615 ParseToken(lltok::rparen, "expected ')' in logical constantexpr"))
2616 return true;
2617 if (Val0->getType() != Val1->getType())
2618 return Error(ID.Loc, "operands of constexpr must have same type");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00002619 if (!Val0->getType()->isIntOrIntVectorTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002620 return Error(ID.Loc,
2621 "constexpr requires integer or integer vector operands");
Owen Andersonbaf3c402009-07-29 18:55:55 +00002622 ID.ConstantVal = ConstantExpr::get(Opc, Val0, Val1);
Chris Lattnerdf986172009-01-02 07:01:27 +00002623 ID.Kind = ValID::t_Constant;
2624 return false;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002625 }
2626
Chris Lattnerdf986172009-01-02 07:01:27 +00002627 case lltok::kw_getelementptr:
2628 case lltok::kw_shufflevector:
2629 case lltok::kw_insertelement:
2630 case lltok::kw_extractelement:
2631 case lltok::kw_select: {
2632 unsigned Opc = Lex.getUIntVal();
2633 SmallVector<Constant*, 16> Elts;
Dan Gohmandd8004d2009-07-27 21:53:46 +00002634 bool InBounds = false;
Chris Lattnerdf986172009-01-02 07:01:27 +00002635 Lex.Lex();
Dan Gohmandd8004d2009-07-27 21:53:46 +00002636 if (Opc == Instruction::GetElementPtr)
Dan Gohmandcb40a32009-07-29 15:58:36 +00002637 InBounds = EatIfPresent(lltok::kw_inbounds);
Chris Lattnerdf986172009-01-02 07:01:27 +00002638 if (ParseToken(lltok::lparen, "expected '(' in constantexpr") ||
2639 ParseGlobalValueVector(Elts) ||
2640 ParseToken(lltok::rparen, "expected ')' in constantexpr"))
2641 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002642
Chris Lattnerdf986172009-01-02 07:01:27 +00002643 if (Opc == Instruction::GetElementPtr) {
Nadav Rotem16087692011-12-05 06:29:09 +00002644 if (Elts.size() == 0 ||
2645 !Elts[0]->getType()->getScalarType()->isPointerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002646 return Error(ID.Loc, "getelementptr requires pointer operand");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002647
Jay Foaddab3d292011-07-21 14:31:17 +00002648 ArrayRef<Constant *> Indices(Elts.begin() + 1, Elts.end());
Jay Foada9203102011-07-25 09:48:08 +00002649 if (!GetElementPtrInst::getIndexedType(Elts[0]->getType(), Indices))
Chris Lattnerdf986172009-01-02 07:01:27 +00002650 return Error(ID.Loc, "invalid indices for getelementptr");
Jay Foad4b5e2072011-07-21 15:15:37 +00002651 ID.ConstantVal = ConstantExpr::getGetElementPtr(Elts[0], Indices,
2652 InBounds);
Chris Lattnerdf986172009-01-02 07:01:27 +00002653 } else if (Opc == Instruction::Select) {
2654 if (Elts.size() != 3)
2655 return Error(ID.Loc, "expected three operands to select");
2656 if (const char *Reason = SelectInst::areInvalidOperands(Elts[0], Elts[1],
2657 Elts[2]))
2658 return Error(ID.Loc, Reason);
Owen Andersonbaf3c402009-07-29 18:55:55 +00002659 ID.ConstantVal = ConstantExpr::getSelect(Elts[0], Elts[1], Elts[2]);
Chris Lattnerdf986172009-01-02 07:01:27 +00002660 } else if (Opc == Instruction::ShuffleVector) {
2661 if (Elts.size() != 3)
2662 return Error(ID.Loc, "expected three operands to shufflevector");
2663 if (!ShuffleVectorInst::isValidOperands(Elts[0], Elts[1], Elts[2]))
2664 return Error(ID.Loc, "invalid operands to shufflevector");
Owen Andersonfba933c2009-07-01 23:57:11 +00002665 ID.ConstantVal =
Owen Andersonbaf3c402009-07-29 18:55:55 +00002666 ConstantExpr::getShuffleVector(Elts[0], Elts[1],Elts[2]);
Chris Lattnerdf986172009-01-02 07:01:27 +00002667 } else if (Opc == Instruction::ExtractElement) {
2668 if (Elts.size() != 2)
2669 return Error(ID.Loc, "expected two operands to extractelement");
2670 if (!ExtractElementInst::isValidOperands(Elts[0], Elts[1]))
2671 return Error(ID.Loc, "invalid extractelement operands");
Owen Andersonbaf3c402009-07-29 18:55:55 +00002672 ID.ConstantVal = ConstantExpr::getExtractElement(Elts[0], Elts[1]);
Chris Lattnerdf986172009-01-02 07:01:27 +00002673 } else {
2674 assert(Opc == Instruction::InsertElement && "Unknown opcode");
2675 if (Elts.size() != 3)
2676 return Error(ID.Loc, "expected three operands to insertelement");
2677 if (!InsertElementInst::isValidOperands(Elts[0], Elts[1], Elts[2]))
2678 return Error(ID.Loc, "invalid insertelement operands");
Owen Andersonfba933c2009-07-01 23:57:11 +00002679 ID.ConstantVal =
Owen Andersonbaf3c402009-07-29 18:55:55 +00002680 ConstantExpr::getInsertElement(Elts[0], Elts[1],Elts[2]);
Chris Lattnerdf986172009-01-02 07:01:27 +00002681 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002682
Chris Lattnerdf986172009-01-02 07:01:27 +00002683 ID.Kind = ValID::t_Constant;
2684 return false;
2685 }
2686 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002687
Chris Lattnerdf986172009-01-02 07:01:27 +00002688 Lex.Lex();
2689 return false;
2690}
2691
2692/// ParseGlobalValue - Parse a global value with the specified type.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002693bool LLParser::ParseGlobalValue(Type *Ty, Constant *&C) {
Victor Hernandez92f238d2010-01-11 22:31:58 +00002694 C = 0;
Chris Lattnerdf986172009-01-02 07:01:27 +00002695 ValID ID;
Victor Hernandez92f238d2010-01-11 22:31:58 +00002696 Value *V = NULL;
2697 bool Parsed = ParseValID(ID) ||
2698 ConvertValIDToValue(Ty, ID, V, NULL);
2699 if (V && !(C = dyn_cast<Constant>(V)))
2700 return Error(ID.Loc, "global values must be constants");
2701 return Parsed;
Chris Lattnerdf986172009-01-02 07:01:27 +00002702}
2703
Victor Hernandez92f238d2010-01-11 22:31:58 +00002704bool LLParser::ParseGlobalTypeAndValue(Constant *&V) {
Chris Lattner1afcace2011-07-09 17:41:24 +00002705 Type *Ty = 0;
2706 return ParseType(Ty) ||
2707 ParseGlobalValue(Ty, V);
Victor Hernandez92f238d2010-01-11 22:31:58 +00002708}
2709
2710/// ParseGlobalValueVector
2711/// ::= /*empty*/
2712/// ::= TypeAndValue (',' TypeAndValue)*
2713bool LLParser::ParseGlobalValueVector(SmallVectorImpl<Constant*> &Elts) {
2714 // Empty list.
2715 if (Lex.getKind() == lltok::rbrace ||
2716 Lex.getKind() == lltok::rsquare ||
2717 Lex.getKind() == lltok::greater ||
2718 Lex.getKind() == lltok::rparen)
2719 return false;
2720
2721 Constant *C;
2722 if (ParseGlobalTypeAndValue(C)) return true;
2723 Elts.push_back(C);
2724
2725 while (EatIfPresent(lltok::comma)) {
2726 if (ParseGlobalTypeAndValue(C)) return true;
2727 Elts.push_back(C);
2728 }
2729
2730 return false;
2731}
2732
Dan Gohman309b3af2010-08-24 02:24:03 +00002733bool LLParser::ParseMetadataListValue(ValID &ID, PerFunctionState *PFS) {
2734 assert(Lex.getKind() == lltok::lbrace);
2735 Lex.Lex();
2736
2737 SmallVector<Value*, 16> Elts;
2738 if (ParseMDNodeVector(Elts, PFS) ||
2739 ParseToken(lltok::rbrace, "expected end of metadata node"))
2740 return true;
2741
Jay Foadec9186b2011-04-21 19:59:31 +00002742 ID.MDNodeVal = MDNode::get(Context, Elts);
Dan Gohman309b3af2010-08-24 02:24:03 +00002743 ID.Kind = ValID::t_MDNode;
2744 return false;
2745}
2746
Dan Gohman83448032010-07-14 18:26:50 +00002747/// ParseMetadataValue
2748/// ::= !42
2749/// ::= !{...}
2750/// ::= !"string"
2751bool LLParser::ParseMetadataValue(ValID &ID, PerFunctionState *PFS) {
2752 assert(Lex.getKind() == lltok::exclaim);
2753 Lex.Lex();
2754
2755 // MDNode:
2756 // !{ ... }
Dan Gohman309b3af2010-08-24 02:24:03 +00002757 if (Lex.getKind() == lltok::lbrace)
2758 return ParseMetadataListValue(ID, PFS);
Dan Gohman83448032010-07-14 18:26:50 +00002759
2760 // Standalone metadata reference
2761 // !42
2762 if (Lex.getKind() == lltok::APSInt) {
2763 if (ParseMDNodeID(ID.MDNodeVal)) return true;
2764 ID.Kind = ValID::t_MDNode;
2765 return false;
2766 }
2767
2768 // MDString:
2769 // ::= '!' STRINGCONSTANT
2770 if (ParseMDString(ID.MDStringVal)) return true;
2771 ID.Kind = ValID::t_MDString;
2772 return false;
2773}
2774
Victor Hernandez92f238d2010-01-11 22:31:58 +00002775
2776//===----------------------------------------------------------------------===//
2777// Function Parsing.
2778//===----------------------------------------------------------------------===//
2779
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002780bool LLParser::ConvertValIDToValue(Type *Ty, ValID &ID, Value *&V,
Victor Hernandez92f238d2010-01-11 22:31:58 +00002781 PerFunctionState *PFS) {
Duncan Sands1df98592010-02-16 11:11:14 +00002782 if (Ty->isFunctionTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002783 return Error(ID.Loc, "functions are not values, refer to them as pointers");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002784
Chris Lattnerdf986172009-01-02 07:01:27 +00002785 switch (ID.Kind) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002786 case ValID::t_LocalID:
Victor Hernandez92f238d2010-01-11 22:31:58 +00002787 if (!PFS) return Error(ID.Loc, "invalid use of function-local name");
2788 V = PFS->GetVal(ID.UIntVal, Ty, ID.Loc);
2789 return (V == 0);
Chris Lattnerdf986172009-01-02 07:01:27 +00002790 case ValID::t_LocalName:
Victor Hernandez92f238d2010-01-11 22:31:58 +00002791 if (!PFS) return Error(ID.Loc, "invalid use of function-local name");
2792 V = PFS->GetVal(ID.StrVal, Ty, ID.Loc);
2793 return (V == 0);
2794 case ValID::t_InlineAsm: {
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002795 PointerType *PTy = dyn_cast<PointerType>(Ty);
Michael Ilseman407a6162012-11-15 22:34:00 +00002796 FunctionType *FTy =
Victor Hernandez92f238d2010-01-11 22:31:58 +00002797 PTy ? dyn_cast<FunctionType>(PTy->getElementType()) : 0;
2798 if (!FTy || !InlineAsm::Verify(FTy, ID.StrVal2))
2799 return Error(ID.Loc, "invalid type for inline asm constraint string");
Chad Rosier36547342012-09-05 00:08:17 +00002800 V = InlineAsm::get(FTy, ID.StrVal, ID.StrVal2, ID.UIntVal&1,
Chad Rosier581600b2012-09-05 19:00:49 +00002801 (ID.UIntVal>>1)&1, (InlineAsm::AsmDialect(ID.UIntVal>>2)));
Victor Hernandez92f238d2010-01-11 22:31:58 +00002802 return false;
2803 }
2804 case ValID::t_MDNode:
2805 if (!Ty->isMetadataTy())
2806 return Error(ID.Loc, "metadata value must have metadata type");
2807 V = ID.MDNodeVal;
2808 return false;
2809 case ValID::t_MDString:
2810 if (!Ty->isMetadataTy())
2811 return Error(ID.Loc, "metadata value must have metadata type");
2812 V = ID.MDStringVal;
2813 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00002814 case ValID::t_GlobalName:
2815 V = GetGlobalVal(ID.StrVal, Ty, ID.Loc);
2816 return V == 0;
2817 case ValID::t_GlobalID:
2818 V = GetGlobalVal(ID.UIntVal, Ty, ID.Loc);
2819 return V == 0;
2820 case ValID::t_APSInt:
Duncan Sands1df98592010-02-16 11:11:14 +00002821 if (!Ty->isIntegerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002822 return Error(ID.Loc, "integer constant must have integer type");
Jay Foad40f8f622010-12-07 08:25:19 +00002823 ID.APSIntVal = ID.APSIntVal.extOrTrunc(Ty->getPrimitiveSizeInBits());
Owen Andersoneed707b2009-07-24 23:12:02 +00002824 V = ConstantInt::get(Context, ID.APSIntVal);
Chris Lattnerdf986172009-01-02 07:01:27 +00002825 return false;
2826 case ValID::t_APFloat:
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00002827 if (!Ty->isFloatingPointTy() ||
Chris Lattnerdf986172009-01-02 07:01:27 +00002828 !ConstantFP::isValueValidForType(Ty, ID.APFloatVal))
2829 return Error(ID.Loc, "floating point constant invalid for type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002830
Dan Gohmance163392011-12-17 00:04:22 +00002831 // The lexer has no type info, so builds all half, float, and double FP
2832 // constants as double. Fix this here. Long double does not need this.
2833 if (&ID.APFloatVal.getSemantics() == &APFloat::IEEEdouble) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002834 bool Ignored;
Dan Gohmance163392011-12-17 00:04:22 +00002835 if (Ty->isHalfTy())
2836 ID.APFloatVal.convert(APFloat::IEEEhalf, APFloat::rmNearestTiesToEven,
2837 &Ignored);
2838 else if (Ty->isFloatTy())
2839 ID.APFloatVal.convert(APFloat::IEEEsingle, APFloat::rmNearestTiesToEven,
2840 &Ignored);
Chris Lattnerdf986172009-01-02 07:01:27 +00002841 }
Owen Anderson6f83c9c2009-07-27 20:59:43 +00002842 V = ConstantFP::get(Context, ID.APFloatVal);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002843
Chris Lattner959873d2009-01-05 18:24:23 +00002844 if (V->getType() != Ty)
2845 return Error(ID.Loc, "floating point constant does not have type '" +
Chris Lattner0cd0d882011-06-18 21:18:23 +00002846 getTypeString(Ty) + "'");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002847
Chris Lattnerdf986172009-01-02 07:01:27 +00002848 return false;
2849 case ValID::t_Null:
Duncan Sands1df98592010-02-16 11:11:14 +00002850 if (!Ty->isPointerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002851 return Error(ID.Loc, "null must be a pointer type");
Owen Anderson9e9a0d52009-07-30 23:03:37 +00002852 V = ConstantPointerNull::get(cast<PointerType>(Ty));
Chris Lattnerdf986172009-01-02 07:01:27 +00002853 return false;
2854 case ValID::t_Undef:
Chris Lattnere67c1aa2009-01-05 08:13:38 +00002855 // FIXME: LabelTy should not be a first-class type.
Chris Lattner1afcace2011-07-09 17:41:24 +00002856 if (!Ty->isFirstClassType() || Ty->isLabelTy())
Chris Lattnere67c1aa2009-01-05 08:13:38 +00002857 return Error(ID.Loc, "invalid type for undef constant");
Owen Anderson9e9a0d52009-07-30 23:03:37 +00002858 V = UndefValue::get(Ty);
Chris Lattnerdf986172009-01-02 07:01:27 +00002859 return false;
Chris Lattner081b5052009-01-05 07:52:51 +00002860 case ValID::t_EmptyArray:
Duncan Sands1df98592010-02-16 11:11:14 +00002861 if (!Ty->isArrayTy() || cast<ArrayType>(Ty)->getNumElements() != 0)
Chris Lattner081b5052009-01-05 07:52:51 +00002862 return Error(ID.Loc, "invalid empty array initializer");
Owen Anderson9e9a0d52009-07-30 23:03:37 +00002863 V = UndefValue::get(Ty);
Chris Lattner081b5052009-01-05 07:52:51 +00002864 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00002865 case ValID::t_Zero:
Chris Lattnere67c1aa2009-01-05 08:13:38 +00002866 // FIXME: LabelTy should not be a first-class type.
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00002867 if (!Ty->isFirstClassType() || Ty->isLabelTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002868 return Error(ID.Loc, "invalid type for null constant");
Owen Andersona7235ea2009-07-31 20:28:14 +00002869 V = Constant::getNullValue(Ty);
Chris Lattnerdf986172009-01-02 07:01:27 +00002870 return false;
2871 case ValID::t_Constant:
Chris Lattner61c70e92010-08-28 04:09:24 +00002872 if (ID.ConstantVal->getType() != Ty)
Chris Lattnerdf986172009-01-02 07:01:27 +00002873 return Error(ID.Loc, "constant expression type mismatch");
Chris Lattnerfdfeb692010-02-12 20:49:41 +00002874
Chris Lattnerdf986172009-01-02 07:01:27 +00002875 V = ID.ConstantVal;
2876 return false;
Chris Lattner1afcace2011-07-09 17:41:24 +00002877 case ValID::t_ConstantStruct:
2878 case ValID::t_PackedConstantStruct:
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002879 if (StructType *ST = dyn_cast<StructType>(Ty)) {
Chris Lattner1afcace2011-07-09 17:41:24 +00002880 if (ST->getNumElements() != ID.UIntVal)
2881 return Error(ID.Loc,
2882 "initializer with struct type has wrong # elements");
2883 if (ST->isPacked() != (ID.Kind == ValID::t_PackedConstantStruct))
2884 return Error(ID.Loc, "packed'ness of initializer and type don't match");
Michael Ilseman407a6162012-11-15 22:34:00 +00002885
Chris Lattner1afcace2011-07-09 17:41:24 +00002886 // Verify that the elements are compatible with the structtype.
2887 for (unsigned i = 0, e = ID.UIntVal; i != e; ++i)
2888 if (ID.ConstantStructElts[i]->getType() != ST->getElementType(i))
2889 return Error(ID.Loc, "element " + Twine(i) +
2890 " of struct initializer doesn't match struct element type");
Michael Ilseman407a6162012-11-15 22:34:00 +00002891
Frits van Bommel39b5abf2011-07-18 12:00:32 +00002892 V = ConstantStruct::get(ST, makeArrayRef(ID.ConstantStructElts,
2893 ID.UIntVal));
Chris Lattner1afcace2011-07-09 17:41:24 +00002894 } else
2895 return Error(ID.Loc, "constant expression type mismatch");
2896 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00002897 }
Chandler Carruth732f05c2012-01-10 18:08:01 +00002898 llvm_unreachable("Invalid ValID");
Chris Lattnerdf986172009-01-02 07:01:27 +00002899}
Daniel Dunbara279bc32009-09-20 02:20:51 +00002900
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002901bool LLParser::ParseValue(Type *Ty, Value *&V, PerFunctionState *PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002902 V = 0;
2903 ValID ID;
Chris Lattner1afcace2011-07-09 17:41:24 +00002904 return ParseValID(ID, PFS) ||
2905 ConvertValIDToValue(Ty, ID, V, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00002906}
2907
Chris Lattner1afcace2011-07-09 17:41:24 +00002908bool LLParser::ParseTypeAndValue(Value *&V, PerFunctionState *PFS) {
2909 Type *Ty = 0;
2910 return ParseType(Ty) ||
2911 ParseValue(Ty, V, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00002912}
2913
Chris Lattnerf9be95f2009-10-27 19:13:16 +00002914bool LLParser::ParseTypeAndBasicBlock(BasicBlock *&BB, LocTy &Loc,
2915 PerFunctionState &PFS) {
2916 Value *V;
2917 Loc = Lex.getLoc();
2918 if (ParseTypeAndValue(V, PFS)) return true;
2919 if (!isa<BasicBlock>(V))
2920 return Error(Loc, "expected a basic block");
2921 BB = cast<BasicBlock>(V);
2922 return false;
2923}
2924
2925
Chris Lattnerdf986172009-01-02 07:01:27 +00002926/// FunctionHeader
2927/// ::= OptionalLinkage OptionalVisibility OptionalCallingConv OptRetAttrs
Rafael Espindolabea46262011-01-08 16:42:36 +00002928/// OptUnnamedAddr Type GlobalName '(' ArgList ')' OptFuncAttrs OptSection
Peter Collingbourne1e3037f2013-09-16 01:08:15 +00002929/// OptionalAlign OptGC OptionalPrefix
Chris Lattnerdf986172009-01-02 07:01:27 +00002930bool LLParser::ParseFunctionHeader(Function *&Fn, bool isDefine) {
2931 // Parse the linkage.
2932 LocTy LinkageLoc = Lex.getLoc();
2933 unsigned Linkage;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002934
Kostya Serebryany164b86b2012-01-20 17:56:17 +00002935 unsigned Visibility;
Bill Wendling702cc912012-10-15 20:35:56 +00002936 AttrBuilder RetAttrs;
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00002937 CallingConv::ID CC;
Chris Lattner1afcace2011-07-09 17:41:24 +00002938 Type *RetType = 0;
Chris Lattnerdf986172009-01-02 07:01:27 +00002939 LocTy RetTypeLoc = Lex.getLoc();
2940 if (ParseOptionalLinkage(Linkage) ||
2941 ParseOptionalVisibility(Visibility) ||
2942 ParseOptionalCallingConv(CC) ||
Bill Wendlinge01b81b2012-12-04 23:40:58 +00002943 ParseOptionalReturnAttrs(RetAttrs) ||
Chris Lattnera9a9e072009-03-09 04:49:14 +00002944 ParseType(RetType, RetTypeLoc, true /*void allowed*/))
Chris Lattnerdf986172009-01-02 07:01:27 +00002945 return true;
2946
2947 // Verify that the linkage is ok.
2948 switch ((GlobalValue::LinkageTypes)Linkage) {
2949 case GlobalValue::ExternalLinkage:
2950 break; // always ok.
2951 case GlobalValue::DLLImportLinkage:
Duncan Sands5f4ee1f2009-03-11 08:08:06 +00002952 case GlobalValue::ExternalWeakLinkage:
Chris Lattnerdf986172009-01-02 07:01:27 +00002953 if (isDefine)
2954 return Error(LinkageLoc, "invalid linkage for function definition");
2955 break;
Rafael Espindolabb46f522009-01-15 20:18:42 +00002956 case GlobalValue::PrivateLinkage:
Bill Wendling3d10a5a2009-07-20 01:03:30 +00002957 case GlobalValue::LinkerPrivateLinkage:
Bill Wendling5e721d72010-07-01 21:55:59 +00002958 case GlobalValue::LinkerPrivateWeakLinkage:
Chris Lattnerdf986172009-01-02 07:01:27 +00002959 case GlobalValue::InternalLinkage:
Nick Lewycky55f64db2009-04-13 07:02:02 +00002960 case GlobalValue::AvailableExternallyLinkage:
Duncan Sands667d4b82009-03-07 15:45:40 +00002961 case GlobalValue::LinkOnceAnyLinkage:
2962 case GlobalValue::LinkOnceODRLinkage:
Bill Wendling32811be2012-08-17 18:33:14 +00002963 case GlobalValue::LinkOnceODRAutoHideLinkage:
Duncan Sands667d4b82009-03-07 15:45:40 +00002964 case GlobalValue::WeakAnyLinkage:
2965 case GlobalValue::WeakODRLinkage:
Chris Lattnerdf986172009-01-02 07:01:27 +00002966 case GlobalValue::DLLExportLinkage:
2967 if (!isDefine)
2968 return Error(LinkageLoc, "invalid linkage for function declaration");
2969 break;
2970 case GlobalValue::AppendingLinkage:
Duncan Sands4dc2b392009-03-11 20:14:15 +00002971 case GlobalValue::CommonLinkage:
Chris Lattnerdf986172009-01-02 07:01:27 +00002972 return Error(LinkageLoc, "invalid function linkage type");
2973 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002974
Chris Lattner1afcace2011-07-09 17:41:24 +00002975 if (!FunctionType::isValidReturnType(RetType))
Chris Lattnerdf986172009-01-02 07:01:27 +00002976 return Error(RetTypeLoc, "invalid function return type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002977
Chris Lattnerdf986172009-01-02 07:01:27 +00002978 LocTy NameLoc = Lex.getLoc();
Chris Lattnerf570e622009-02-18 21:48:13 +00002979
2980 std::string FunctionName;
2981 if (Lex.getKind() == lltok::GlobalVar) {
2982 FunctionName = Lex.getStrVal();
2983 } else if (Lex.getKind() == lltok::GlobalID) { // @42 is ok.
2984 unsigned NameID = Lex.getUIntVal();
2985
2986 if (NameID != NumberedVals.size())
2987 return TokError("function expected to be numbered '%" +
Benjamin Kramerd1e17032010-09-27 17:42:11 +00002988 Twine(NumberedVals.size()) + "'");
Chris Lattnerf570e622009-02-18 21:48:13 +00002989 } else {
2990 return TokError("expected function name");
2991 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002992
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002993 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +00002994
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002995 if (Lex.getKind() != lltok::lparen)
Chris Lattnerdf986172009-01-02 07:01:27 +00002996 return TokError("expected '(' in function argument list");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002997
Chris Lattner1afcace2011-07-09 17:41:24 +00002998 SmallVector<ArgInfo, 8> ArgList;
Chris Lattnerdf986172009-01-02 07:01:27 +00002999 bool isVarArg;
Bill Wendling702cc912012-10-15 20:35:56 +00003000 AttrBuilder FuncAttrs;
Bill Wendlingbaad55c2013-02-08 06:32:06 +00003001 std::vector<unsigned> FwdRefAttrGrps;
Michael Gottesman2253a2f2013-06-27 00:25:01 +00003002 LocTy BuiltinLoc;
Chris Lattnerdf986172009-01-02 07:01:27 +00003003 std::string Section;
Chris Lattnerdf986172009-01-02 07:01:27 +00003004 unsigned Alignment;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003005 std::string GC;
Rafael Espindola3971df52011-01-25 19:09:56 +00003006 bool UnnamedAddr;
3007 LocTy UnnamedAddrLoc;
Peter Collingbourne1e3037f2013-09-16 01:08:15 +00003008 Constant *Prefix = 0;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003009
Chris Lattner1afcace2011-07-09 17:41:24 +00003010 if (ParseArgumentList(ArgList, isVarArg) ||
Rafael Espindola3971df52011-01-25 19:09:56 +00003011 ParseOptionalToken(lltok::kw_unnamed_addr, UnnamedAddr,
3012 &UnnamedAddrLoc) ||
Bill Wendling143d4642013-02-22 00:12:35 +00003013 ParseFnAttributeValuePairs(FuncAttrs, FwdRefAttrGrps, false,
Michael Gottesman2253a2f2013-06-27 00:25:01 +00003014 BuiltinLoc) ||
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003015 (EatIfPresent(lltok::kw_section) &&
3016 ParseStringConstant(Section)) ||
3017 ParseOptionalAlignment(Alignment) ||
3018 (EatIfPresent(lltok::kw_gc) &&
Peter Collingbourne1e3037f2013-09-16 01:08:15 +00003019 ParseStringConstant(GC)) ||
3020 (EatIfPresent(lltok::kw_prefix) &&
3021 ParseGlobalTypeAndValue(Prefix)))
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003022 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00003023
Michael Gottesman2253a2f2013-06-27 00:25:01 +00003024 if (FuncAttrs.contains(Attribute::Builtin))
3025 return Error(BuiltinLoc, "'builtin' attribute not valid on function");
Bill Wendling143d4642013-02-22 00:12:35 +00003026
Chris Lattnerdf986172009-01-02 07:01:27 +00003027 // If the alignment was parsed as an attribute, move to the alignment field.
Bill Wendlingf385f4c2012-10-08 23:27:46 +00003028 if (FuncAttrs.hasAlignmentAttr()) {
Bill Wendlingef99fe82012-09-21 15:26:31 +00003029 Alignment = FuncAttrs.getAlignment();
Bill Wendling034b94b2012-12-19 07:18:57 +00003030 FuncAttrs.removeAttribute(Attribute::Alignment);
Chris Lattnerdf986172009-01-02 07:01:27 +00003031 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003032
Chris Lattnerdf986172009-01-02 07:01:27 +00003033 // Okay, if we got here, the function is syntactically valid. Convert types
3034 // and do semantic checks.
Jay Foad5fdd6c82011-07-12 14:06:48 +00003035 std::vector<Type*> ParamTypeList;
Bill Wendlinga1683d62013-01-27 02:24:02 +00003036 SmallVector<AttributeSet, 8> Attrs;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003037
Bill Wendlinge603fe42012-09-19 23:54:18 +00003038 if (RetAttrs.hasAttributes())
Bill Wendlinga1683d62013-01-27 02:24:02 +00003039 Attrs.push_back(AttributeSet::get(RetType->getContext(),
3040 AttributeSet::ReturnIndex,
3041 RetAttrs));
Daniel Dunbara279bc32009-09-20 02:20:51 +00003042
Chris Lattnerdf986172009-01-02 07:01:27 +00003043 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
Chris Lattner1afcace2011-07-09 17:41:24 +00003044 ParamTypeList.push_back(ArgList[i].Ty);
Bill Wendling73dee182013-01-31 00:29:54 +00003045 if (ArgList[i].Attrs.hasAttributes(i + 1)) {
3046 AttrBuilder B(ArgList[i].Attrs, i + 1);
Bill Wendlinga1683d62013-01-27 02:24:02 +00003047 Attrs.push_back(AttributeSet::get(RetType->getContext(), i + 1, B));
3048 }
Chris Lattnerdf986172009-01-02 07:01:27 +00003049 }
3050
Bill Wendlinge603fe42012-09-19 23:54:18 +00003051 if (FuncAttrs.hasAttributes())
Bill Wendlinga1683d62013-01-27 02:24:02 +00003052 Attrs.push_back(AttributeSet::get(RetType->getContext(),
3053 AttributeSet::FunctionIndex,
3054 FuncAttrs));
Chris Lattnerdf986172009-01-02 07:01:27 +00003055
Bill Wendling99faa3b2012-12-07 23:16:57 +00003056 AttributeSet PAL = AttributeSet::get(Context, Attrs);
Daniel Dunbara279bc32009-09-20 02:20:51 +00003057
Bill Wendling94e94b32012-12-30 13:50:49 +00003058 if (PAL.hasAttribute(1, Attribute::StructRet) && !RetType->isVoidTy())
Daniel Dunbara279bc32009-09-20 02:20:51 +00003059 return Error(RetTypeLoc, "functions with 'sret' argument must return void");
3060
Chris Lattnerdb125cf2011-07-18 04:54:35 +00003061 FunctionType *FT =
Owen Andersondebcb012009-07-29 22:17:13 +00003062 FunctionType::get(RetType, ParamTypeList, isVarArg);
Chris Lattnerdb125cf2011-07-18 04:54:35 +00003063 PointerType *PFT = PointerType::getUnqual(FT);
Chris Lattnerdf986172009-01-02 07:01:27 +00003064
3065 Fn = 0;
3066 if (!FunctionName.empty()) {
3067 // If this was a definition of a forward reference, remove the definition
3068 // from the forward reference table and fill in the forward ref.
3069 std::map<std::string, std::pair<GlobalValue*, LocTy> >::iterator FRVI =
3070 ForwardRefVals.find(FunctionName);
3071 if (FRVI != ForwardRefVals.end()) {
3072 Fn = M->getFunction(FunctionName);
Nick Lewycky64ea2752012-10-11 00:38:25 +00003073 if (!Fn)
3074 return Error(FRVI->second.second, "invalid forward reference to "
3075 "function as global value!");
Chris Lattnerf1cfb952010-04-20 04:49:11 +00003076 if (Fn->getType() != PFT)
3077 return Error(FRVI->second.second, "invalid forward reference to "
3078 "function '" + FunctionName + "' with wrong type!");
Michael Ilseman407a6162012-11-15 22:34:00 +00003079
Chris Lattnerdf986172009-01-02 07:01:27 +00003080 ForwardRefVals.erase(FRVI);
3081 } else if ((Fn = M->getFunction(FunctionName))) {
Chris Lattnerd5890992011-06-17 07:06:44 +00003082 // Reject redefinitions.
3083 return Error(NameLoc, "invalid redefinition of function '" +
3084 FunctionName + "'");
Chris Lattner1d871c52009-10-25 23:22:50 +00003085 } else if (M->getNamedValue(FunctionName)) {
3086 return Error(NameLoc, "redefinition of function '@" + FunctionName + "'");
Chris Lattnerdf986172009-01-02 07:01:27 +00003087 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003088
Dan Gohman41905542009-08-29 23:37:49 +00003089 } else {
Chris Lattnerdf986172009-01-02 07:01:27 +00003090 // If this is a definition of a forward referenced function, make sure the
3091 // types agree.
3092 std::map<unsigned, std::pair<GlobalValue*, LocTy> >::iterator I
3093 = ForwardRefValIDs.find(NumberedVals.size());
3094 if (I != ForwardRefValIDs.end()) {
3095 Fn = cast<Function>(I->second.first);
3096 if (Fn->getType() != PFT)
3097 return Error(NameLoc, "type of definition and forward reference of '@" +
Benjamin Kramerd1e17032010-09-27 17:42:11 +00003098 Twine(NumberedVals.size()) + "' disagree");
Chris Lattnerdf986172009-01-02 07:01:27 +00003099 ForwardRefValIDs.erase(I);
3100 }
3101 }
3102
3103 if (Fn == 0)
3104 Fn = Function::Create(FT, GlobalValue::ExternalLinkage, FunctionName, M);
3105 else // Move the forward-reference to the correct spot in the module.
3106 M->getFunctionList().splice(M->end(), M->getFunctionList(), Fn);
3107
3108 if (FunctionName.empty())
3109 NumberedVals.push_back(Fn);
Daniel Dunbara279bc32009-09-20 02:20:51 +00003110
Chris Lattnerdf986172009-01-02 07:01:27 +00003111 Fn->setLinkage((GlobalValue::LinkageTypes)Linkage);
3112 Fn->setVisibility((GlobalValue::VisibilityTypes)Visibility);
3113 Fn->setCallingConv(CC);
3114 Fn->setAttributes(PAL);
Rafael Espindolabea46262011-01-08 16:42:36 +00003115 Fn->setUnnamedAddr(UnnamedAddr);
Chris Lattnerdf986172009-01-02 07:01:27 +00003116 Fn->setAlignment(Alignment);
3117 Fn->setSection(Section);
3118 if (!GC.empty()) Fn->setGC(GC.c_str());
Peter Collingbourne1e3037f2013-09-16 01:08:15 +00003119 Fn->setPrefixData(Prefix);
Bill Wendlingbaad55c2013-02-08 06:32:06 +00003120 ForwardRefAttrGroups[Fn] = FwdRefAttrGrps;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003121
Chris Lattnerdf986172009-01-02 07:01:27 +00003122 // Add all of the arguments we parsed to the function.
3123 Function::arg_iterator ArgIt = Fn->arg_begin();
3124 for (unsigned i = 0, e = ArgList.size(); i != e; ++i, ++ArgIt) {
3125 // If the argument has a name, insert it into the argument symbol table.
3126 if (ArgList[i].Name.empty()) continue;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003127
Chris Lattnerdf986172009-01-02 07:01:27 +00003128 // Set the name, if it conflicted, it will be auto-renamed.
3129 ArgIt->setName(ArgList[i].Name);
Daniel Dunbara279bc32009-09-20 02:20:51 +00003130
Benjamin Krameraf812352010-10-16 11:28:23 +00003131 if (ArgIt->getName() != ArgList[i].Name)
Chris Lattnerdf986172009-01-02 07:01:27 +00003132 return Error(ArgList[i].Loc, "redefinition of argument '%" +
3133 ArgList[i].Name + "'");
3134 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003135
Chris Lattnerdf986172009-01-02 07:01:27 +00003136 return false;
3137}
3138
3139
3140/// ParseFunctionBody
3141/// ::= '{' BasicBlock+ '}'
Chris Lattnerdf986172009-01-02 07:01:27 +00003142///
3143bool LLParser::ParseFunctionBody(Function &Fn) {
Chris Lattner6b7c89e2011-06-17 06:42:57 +00003144 if (Lex.getKind() != lltok::lbrace)
Chris Lattnerdf986172009-01-02 07:01:27 +00003145 return TokError("expected '{' in function body");
3146 Lex.Lex(); // eat the {.
Daniel Dunbara279bc32009-09-20 02:20:51 +00003147
Chris Lattner09d9ef42009-10-28 03:39:23 +00003148 int FunctionNumber = -1;
3149 if (!Fn.hasName()) FunctionNumber = NumberedVals.size()-1;
Michael Ilseman407a6162012-11-15 22:34:00 +00003150
Chris Lattner09d9ef42009-10-28 03:39:23 +00003151 PerFunctionState PFS(*this, Fn, FunctionNumber);
Daniel Dunbara279bc32009-09-20 02:20:51 +00003152
Chris Lattner2fdf8db2010-01-09 19:20:07 +00003153 // We need at least one basic block.
Chris Lattner6b7c89e2011-06-17 06:42:57 +00003154 if (Lex.getKind() == lltok::rbrace)
Chris Lattner2fdf8db2010-01-09 19:20:07 +00003155 return TokError("function body requires at least one basic block");
Michael Ilseman407a6162012-11-15 22:34:00 +00003156
Chris Lattner6b7c89e2011-06-17 06:42:57 +00003157 while (Lex.getKind() != lltok::rbrace)
Chris Lattnerdf986172009-01-02 07:01:27 +00003158 if (ParseBasicBlock(PFS)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003159
Chris Lattnerdf986172009-01-02 07:01:27 +00003160 // Eat the }.
3161 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +00003162
Chris Lattnerdf986172009-01-02 07:01:27 +00003163 // Verify function is ok.
Chris Lattner09d9ef42009-10-28 03:39:23 +00003164 return PFS.FinishFunction();
Chris Lattnerdf986172009-01-02 07:01:27 +00003165}
3166
3167/// ParseBasicBlock
3168/// ::= LabelStr? Instruction*
3169bool LLParser::ParseBasicBlock(PerFunctionState &PFS) {
3170 // If this basic block starts out with a name, remember it.
3171 std::string Name;
3172 LocTy NameLoc = Lex.getLoc();
3173 if (Lex.getKind() == lltok::LabelStr) {
3174 Name = Lex.getStrVal();
3175 Lex.Lex();
3176 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003177
Chris Lattnerdf986172009-01-02 07:01:27 +00003178 BasicBlock *BB = PFS.DefineBB(Name, NameLoc);
3179 if (BB == 0) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003180
Chris Lattnerdf986172009-01-02 07:01:27 +00003181 std::string NameStr;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003182
Chris Lattnerdf986172009-01-02 07:01:27 +00003183 // Parse the instructions in this block until we get a terminator.
3184 Instruction *Inst;
3185 do {
3186 // This instruction may have three possibilities for a name: a) none
3187 // specified, b) name specified "%foo =", c) number specified: "%4 =".
3188 LocTy NameLoc = Lex.getLoc();
3189 int NameID = -1;
3190 NameStr = "";
Daniel Dunbara279bc32009-09-20 02:20:51 +00003191
Chris Lattnerdf986172009-01-02 07:01:27 +00003192 if (Lex.getKind() == lltok::LocalVarID) {
3193 NameID = Lex.getUIntVal();
3194 Lex.Lex();
3195 if (ParseToken(lltok::equal, "expected '=' after instruction id"))
3196 return true;
Chris Lattner7a1b9bd2011-06-17 06:36:20 +00003197 } else if (Lex.getKind() == lltok::LocalVar) {
Chris Lattnerdf986172009-01-02 07:01:27 +00003198 NameStr = Lex.getStrVal();
3199 Lex.Lex();
3200 if (ParseToken(lltok::equal, "expected '=' after instruction name"))
3201 return true;
3202 }
Devang Patelf633a062009-09-17 23:04:48 +00003203
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00003204 switch (ParseInstruction(Inst, BB, PFS)) {
Craig Topper85814382012-02-07 05:05:23 +00003205 default: llvm_unreachable("Unknown ParseInstruction result!");
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00003206 case InstError: return true;
3207 case InstNormal:
Chris Lattner4ba9d9b2010-04-07 04:08:57 +00003208 BB->getInstList().push_back(Inst);
3209
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00003210 // With a normal result, we check to see if the instruction is followed by
3211 // a comma and metadata.
3212 if (EatIfPresent(lltok::comma))
Dan Gohman9d072f52010-08-24 02:05:17 +00003213 if (ParseInstructionMetadata(Inst, &PFS))
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00003214 return true;
3215 break;
3216 case InstExtraComma:
Chris Lattner4ba9d9b2010-04-07 04:08:57 +00003217 BB->getInstList().push_back(Inst);
3218
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00003219 // If the instruction parser ate an extra comma at the end of it, it
3220 // *must* be followed by metadata.
Dan Gohman9d072f52010-08-24 02:05:17 +00003221 if (ParseInstructionMetadata(Inst, &PFS))
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00003222 return true;
Michael Ilseman407a6162012-11-15 22:34:00 +00003223 break;
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00003224 }
Devang Patelf633a062009-09-17 23:04:48 +00003225
Chris Lattnerdf986172009-01-02 07:01:27 +00003226 // Set the name on the instruction.
3227 if (PFS.SetInstName(NameID, NameStr, NameLoc, Inst)) return true;
3228 } while (!isa<TerminatorInst>(Inst));
Daniel Dunbara279bc32009-09-20 02:20:51 +00003229
Chris Lattnerdf986172009-01-02 07:01:27 +00003230 return false;
3231}
3232
3233//===----------------------------------------------------------------------===//
3234// Instruction Parsing.
3235//===----------------------------------------------------------------------===//
3236
3237/// ParseInstruction - Parse one of the many different instructions.
3238///
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00003239int LLParser::ParseInstruction(Instruction *&Inst, BasicBlock *BB,
3240 PerFunctionState &PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00003241 lltok::Kind Token = Lex.getKind();
3242 if (Token == lltok::Eof)
3243 return TokError("found end of file when expecting more instructions");
3244 LocTy Loc = Lex.getLoc();
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00003245 unsigned KeywordVal = Lex.getUIntVal();
Chris Lattnerdf986172009-01-02 07:01:27 +00003246 Lex.Lex(); // Eat the keyword.
Daniel Dunbara279bc32009-09-20 02:20:51 +00003247
Chris Lattnerdf986172009-01-02 07:01:27 +00003248 switch (Token) {
3249 default: return Error(Loc, "expected instruction opcode");
3250 // Terminator Instructions.
Owen Anderson1d0be152009-08-13 21:58:54 +00003251 case lltok::kw_unreachable: Inst = new UnreachableInst(Context); return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00003252 case lltok::kw_ret: return ParseRet(Inst, BB, PFS);
3253 case lltok::kw_br: return ParseBr(Inst, PFS);
3254 case lltok::kw_switch: return ParseSwitch(Inst, PFS);
Chris Lattnerab21db72009-10-28 00:19:10 +00003255 case lltok::kw_indirectbr: return ParseIndirectBr(Inst, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00003256 case lltok::kw_invoke: return ParseInvoke(Inst, PFS);
Bill Wendlingdccc03b2011-07-31 06:30:59 +00003257 case lltok::kw_resume: return ParseResume(Inst, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00003258 // Binary Operators.
3259 case lltok::kw_add:
3260 case lltok::kw_sub:
Chris Lattnerf067d582011-02-07 16:40:21 +00003261 case lltok::kw_mul:
3262 case lltok::kw_shl: {
Chris Lattnerf067d582011-02-07 16:40:21 +00003263 bool NUW = EatIfPresent(lltok::kw_nuw);
3264 bool NSW = EatIfPresent(lltok::kw_nsw);
3265 if (!NUW) NUW = EatIfPresent(lltok::kw_nuw);
Michael Ilseman407a6162012-11-15 22:34:00 +00003266
Chris Lattnerf067d582011-02-07 16:40:21 +00003267 if (ParseArithmetic(Inst, PFS, KeywordVal, 1)) return true;
Michael Ilseman407a6162012-11-15 22:34:00 +00003268
Chris Lattnerf067d582011-02-07 16:40:21 +00003269 if (NUW) cast<BinaryOperator>(Inst)->setHasNoUnsignedWrap(true);
3270 if (NSW) cast<BinaryOperator>(Inst)->setHasNoSignedWrap(true);
3271 return false;
Dan Gohman59858cf2009-07-27 16:11:46 +00003272 }
Dan Gohmanae3a0be2009-06-04 22:49:04 +00003273 case lltok::kw_fadd:
3274 case lltok::kw_fsub:
Michael Ilseman15c13d32012-11-27 00:42:44 +00003275 case lltok::kw_fmul:
3276 case lltok::kw_fdiv:
3277 case lltok::kw_frem: {
3278 FastMathFlags FMF = EatFastMathFlagsIfPresent();
3279 int Res = ParseArithmetic(Inst, PFS, KeywordVal, 2);
3280 if (Res != 0)
3281 return Res;
3282 if (FMF.any())
3283 Inst->setFastMathFlags(FMF);
3284 return 0;
3285 }
Dan Gohmanae3a0be2009-06-04 22:49:04 +00003286
Chris Lattner35bda892011-02-06 21:44:57 +00003287 case lltok::kw_sdiv:
Chris Lattnerf067d582011-02-07 16:40:21 +00003288 case lltok::kw_udiv:
3289 case lltok::kw_lshr:
3290 case lltok::kw_ashr: {
3291 bool Exact = EatIfPresent(lltok::kw_exact);
3292
3293 if (ParseArithmetic(Inst, PFS, KeywordVal, 1)) return true;
3294 if (Exact) cast<BinaryOperator>(Inst)->setIsExact(true);
3295 return false;
Dan Gohman59858cf2009-07-27 16:11:46 +00003296 }
3297
Chris Lattnerdf986172009-01-02 07:01:27 +00003298 case lltok::kw_urem:
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00003299 case lltok::kw_srem: return ParseArithmetic(Inst, PFS, KeywordVal, 1);
Chris Lattnerdf986172009-01-02 07:01:27 +00003300 case lltok::kw_and:
3301 case lltok::kw_or:
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00003302 case lltok::kw_xor: return ParseLogical(Inst, PFS, KeywordVal);
Chris Lattnerdf986172009-01-02 07:01:27 +00003303 case lltok::kw_icmp:
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00003304 case lltok::kw_fcmp: return ParseCompare(Inst, PFS, KeywordVal);
Chris Lattnerdf986172009-01-02 07:01:27 +00003305 // Casts.
3306 case lltok::kw_trunc:
3307 case lltok::kw_zext:
3308 case lltok::kw_sext:
3309 case lltok::kw_fptrunc:
3310 case lltok::kw_fpext:
3311 case lltok::kw_bitcast:
3312 case lltok::kw_uitofp:
3313 case lltok::kw_sitofp:
3314 case lltok::kw_fptoui:
Daniel Dunbara279bc32009-09-20 02:20:51 +00003315 case lltok::kw_fptosi:
Chris Lattnerdf986172009-01-02 07:01:27 +00003316 case lltok::kw_inttoptr:
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00003317 case lltok::kw_ptrtoint: return ParseCast(Inst, PFS, KeywordVal);
Chris Lattnerdf986172009-01-02 07:01:27 +00003318 // Other.
3319 case lltok::kw_select: return ParseSelect(Inst, PFS);
Chris Lattner0088a5c2009-01-05 08:18:44 +00003320 case lltok::kw_va_arg: return ParseVA_Arg(Inst, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00003321 case lltok::kw_extractelement: return ParseExtractElement(Inst, PFS);
3322 case lltok::kw_insertelement: return ParseInsertElement(Inst, PFS);
3323 case lltok::kw_shufflevector: return ParseShuffleVector(Inst, PFS);
3324 case lltok::kw_phi: return ParsePHI(Inst, PFS);
Bill Wendlinge6e88262011-08-12 20:24:12 +00003325 case lltok::kw_landingpad: return ParseLandingPad(Inst, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00003326 case lltok::kw_call: return ParseCall(Inst, PFS, false);
3327 case lltok::kw_tail: return ParseCall(Inst, PFS, true);
3328 // Memory.
Victor Hernandez13ad5aa2009-10-17 00:00:19 +00003329 case lltok::kw_alloca: return ParseAlloc(Inst, PFS);
Chris Lattnerfbe910e2011-11-27 06:56:53 +00003330 case lltok::kw_load: return ParseLoad(Inst, PFS);
3331 case lltok::kw_store: return ParseStore(Inst, PFS);
Eli Friedmanf03bb262011-08-12 22:50:01 +00003332 case lltok::kw_cmpxchg: return ParseCmpXchg(Inst, PFS);
3333 case lltok::kw_atomicrmw: return ParseAtomicRMW(Inst, PFS);
Eli Friedman47f35132011-07-25 23:16:38 +00003334 case lltok::kw_fence: return ParseFence(Inst, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00003335 case lltok::kw_getelementptr: return ParseGetElementPtr(Inst, PFS);
3336 case lltok::kw_extractvalue: return ParseExtractValue(Inst, PFS);
3337 case lltok::kw_insertvalue: return ParseInsertValue(Inst, PFS);
3338 }
3339}
3340
3341/// ParseCmpPredicate - Parse an integer or fp predicate, based on Kind.
3342bool LLParser::ParseCmpPredicate(unsigned &P, unsigned Opc) {
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00003343 if (Opc == Instruction::FCmp) {
Chris Lattnerdf986172009-01-02 07:01:27 +00003344 switch (Lex.getKind()) {
David Tweedd80d6082013-01-07 13:32:38 +00003345 default: return TokError("expected fcmp predicate (e.g. 'oeq')");
Chris Lattnerdf986172009-01-02 07:01:27 +00003346 case lltok::kw_oeq: P = CmpInst::FCMP_OEQ; break;
3347 case lltok::kw_one: P = CmpInst::FCMP_ONE; break;
3348 case lltok::kw_olt: P = CmpInst::FCMP_OLT; break;
3349 case lltok::kw_ogt: P = CmpInst::FCMP_OGT; break;
3350 case lltok::kw_ole: P = CmpInst::FCMP_OLE; break;
3351 case lltok::kw_oge: P = CmpInst::FCMP_OGE; break;
3352 case lltok::kw_ord: P = CmpInst::FCMP_ORD; break;
3353 case lltok::kw_uno: P = CmpInst::FCMP_UNO; break;
3354 case lltok::kw_ueq: P = CmpInst::FCMP_UEQ; break;
3355 case lltok::kw_une: P = CmpInst::FCMP_UNE; break;
3356 case lltok::kw_ult: P = CmpInst::FCMP_ULT; break;
3357 case lltok::kw_ugt: P = CmpInst::FCMP_UGT; break;
3358 case lltok::kw_ule: P = CmpInst::FCMP_ULE; break;
3359 case lltok::kw_uge: P = CmpInst::FCMP_UGE; break;
3360 case lltok::kw_true: P = CmpInst::FCMP_TRUE; break;
3361 case lltok::kw_false: P = CmpInst::FCMP_FALSE; break;
3362 }
3363 } else {
3364 switch (Lex.getKind()) {
David Tweedd80d6082013-01-07 13:32:38 +00003365 default: return TokError("expected icmp predicate (e.g. 'eq')");
Chris Lattnerdf986172009-01-02 07:01:27 +00003366 case lltok::kw_eq: P = CmpInst::ICMP_EQ; break;
3367 case lltok::kw_ne: P = CmpInst::ICMP_NE; break;
3368 case lltok::kw_slt: P = CmpInst::ICMP_SLT; break;
3369 case lltok::kw_sgt: P = CmpInst::ICMP_SGT; break;
3370 case lltok::kw_sle: P = CmpInst::ICMP_SLE; break;
3371 case lltok::kw_sge: P = CmpInst::ICMP_SGE; break;
3372 case lltok::kw_ult: P = CmpInst::ICMP_ULT; break;
3373 case lltok::kw_ugt: P = CmpInst::ICMP_UGT; break;
3374 case lltok::kw_ule: P = CmpInst::ICMP_ULE; break;
3375 case lltok::kw_uge: P = CmpInst::ICMP_UGE; break;
3376 }
3377 }
3378 Lex.Lex();
3379 return false;
3380}
3381
3382//===----------------------------------------------------------------------===//
3383// Terminator Instructions.
3384//===----------------------------------------------------------------------===//
3385
3386/// ParseRet - Parse a return instruction.
Chris Lattner3f3a0f62009-12-29 21:25:40 +00003387/// ::= 'ret' void (',' !dbg, !1)*
3388/// ::= 'ret' TypeAndValue (',' !dbg, !1)*
Chris Lattner437544f2011-06-17 06:49:41 +00003389bool LLParser::ParseRet(Instruction *&Inst, BasicBlock *BB,
Chris Lattner1afcace2011-07-09 17:41:24 +00003390 PerFunctionState &PFS) {
3391 SMLoc TypeLoc = Lex.getLoc();
3392 Type *Ty = 0;
Chris Lattnera9a9e072009-03-09 04:49:14 +00003393 if (ParseType(Ty, true /*void allowed*/)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003394
Chris Lattner1afcace2011-07-09 17:41:24 +00003395 Type *ResType = PFS.getFunction().getReturnType();
Michael Ilseman407a6162012-11-15 22:34:00 +00003396
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00003397 if (Ty->isVoidTy()) {
Chris Lattner1afcace2011-07-09 17:41:24 +00003398 if (!ResType->isVoidTy())
3399 return Error(TypeLoc, "value doesn't match function result type '" +
3400 getTypeString(ResType) + "'");
Michael Ilseman407a6162012-11-15 22:34:00 +00003401
Owen Anderson1d0be152009-08-13 21:58:54 +00003402 Inst = ReturnInst::Create(Context);
Chris Lattnerdf986172009-01-02 07:01:27 +00003403 return false;
3404 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003405
Chris Lattnerdf986172009-01-02 07:01:27 +00003406 Value *RV;
3407 if (ParseValue(Ty, RV, PFS)) return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00003408
Chris Lattner1afcace2011-07-09 17:41:24 +00003409 if (ResType != RV->getType())
3410 return Error(TypeLoc, "value doesn't match function result type '" +
3411 getTypeString(ResType) + "'");
Michael Ilseman407a6162012-11-15 22:34:00 +00003412
Owen Anderson1d0be152009-08-13 21:58:54 +00003413 Inst = ReturnInst::Create(Context, RV);
Chris Lattner437544f2011-06-17 06:49:41 +00003414 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00003415}
3416
3417
3418/// ParseBr
3419/// ::= 'br' TypeAndValue
3420/// ::= 'br' TypeAndValue ',' TypeAndValue ',' TypeAndValue
3421bool LLParser::ParseBr(Instruction *&Inst, PerFunctionState &PFS) {
3422 LocTy Loc, Loc2;
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003423 Value *Op0;
3424 BasicBlock *Op1, *Op2;
Chris Lattnerdf986172009-01-02 07:01:27 +00003425 if (ParseTypeAndValue(Op0, Loc, PFS)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003426
Chris Lattnerdf986172009-01-02 07:01:27 +00003427 if (BasicBlock *BB = dyn_cast<BasicBlock>(Op0)) {
3428 Inst = BranchInst::Create(BB);
3429 return false;
3430 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003431
Owen Anderson1d0be152009-08-13 21:58:54 +00003432 if (Op0->getType() != Type::getInt1Ty(Context))
Chris Lattnerdf986172009-01-02 07:01:27 +00003433 return Error(Loc, "branch condition must have 'i1' type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003434
Chris Lattnerdf986172009-01-02 07:01:27 +00003435 if (ParseToken(lltok::comma, "expected ',' after branch condition") ||
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003436 ParseTypeAndBasicBlock(Op1, Loc, PFS) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003437 ParseToken(lltok::comma, "expected ',' after true destination") ||
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003438 ParseTypeAndBasicBlock(Op2, Loc2, PFS))
Chris Lattnerdf986172009-01-02 07:01:27 +00003439 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003440
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003441 Inst = BranchInst::Create(Op1, Op2, Op0);
Chris Lattnerdf986172009-01-02 07:01:27 +00003442 return false;
3443}
3444
3445/// ParseSwitch
3446/// Instruction
3447/// ::= 'switch' TypeAndValue ',' TypeAndValue '[' JumpTable ']'
3448/// JumpTable
3449/// ::= (TypeAndValue ',' TypeAndValue)*
3450bool LLParser::ParseSwitch(Instruction *&Inst, PerFunctionState &PFS) {
3451 LocTy CondLoc, BBLoc;
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003452 Value *Cond;
3453 BasicBlock *DefaultBB;
Chris Lattnerdf986172009-01-02 07:01:27 +00003454 if (ParseTypeAndValue(Cond, CondLoc, PFS) ||
3455 ParseToken(lltok::comma, "expected ',' after switch condition") ||
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003456 ParseTypeAndBasicBlock(DefaultBB, BBLoc, PFS) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003457 ParseToken(lltok::lsquare, "expected '[' with switch table"))
3458 return true;
3459
Duncan Sands1df98592010-02-16 11:11:14 +00003460 if (!Cond->getType()->isIntegerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00003461 return Error(CondLoc, "switch condition must have integer type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003462
Chris Lattnerdf986172009-01-02 07:01:27 +00003463 // Parse the jump table pairs.
3464 SmallPtrSet<Value*, 32> SeenCases;
3465 SmallVector<std::pair<ConstantInt*, BasicBlock*>, 32> Table;
3466 while (Lex.getKind() != lltok::rsquare) {
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003467 Value *Constant;
3468 BasicBlock *DestBB;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003469
Chris Lattnerdf986172009-01-02 07:01:27 +00003470 if (ParseTypeAndValue(Constant, CondLoc, PFS) ||
3471 ParseToken(lltok::comma, "expected ',' after case value") ||
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003472 ParseTypeAndBasicBlock(DestBB, PFS))
Chris Lattnerdf986172009-01-02 07:01:27 +00003473 return true;
Michael Ilseman407a6162012-11-15 22:34:00 +00003474
Chris Lattnerdf986172009-01-02 07:01:27 +00003475 if (!SeenCases.insert(Constant))
3476 return Error(CondLoc, "duplicate case value in switch");
3477 if (!isa<ConstantInt>(Constant))
3478 return Error(CondLoc, "case value is not a constant integer");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003479
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003480 Table.push_back(std::make_pair(cast<ConstantInt>(Constant), DestBB));
Chris Lattnerdf986172009-01-02 07:01:27 +00003481 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003482
Chris Lattnerdf986172009-01-02 07:01:27 +00003483 Lex.Lex(); // Eat the ']'.
Daniel Dunbara279bc32009-09-20 02:20:51 +00003484
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003485 SwitchInst *SI = SwitchInst::Create(Cond, DefaultBB, Table.size());
Chris Lattnerdf986172009-01-02 07:01:27 +00003486 for (unsigned i = 0, e = Table.size(); i != e; ++i)
3487 SI->addCase(Table[i].first, Table[i].second);
3488 Inst = SI;
3489 return false;
3490}
3491
Chris Lattnerab21db72009-10-28 00:19:10 +00003492/// ParseIndirectBr
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003493/// Instruction
Chris Lattnerab21db72009-10-28 00:19:10 +00003494/// ::= 'indirectbr' TypeAndValue ',' '[' LabelList ']'
3495bool LLParser::ParseIndirectBr(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003496 LocTy AddrLoc;
3497 Value *Address;
3498 if (ParseTypeAndValue(Address, AddrLoc, PFS) ||
Chris Lattnerab21db72009-10-28 00:19:10 +00003499 ParseToken(lltok::comma, "expected ',' after indirectbr address") ||
3500 ParseToken(lltok::lsquare, "expected '[' with indirectbr"))
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003501 return true;
Michael Ilseman407a6162012-11-15 22:34:00 +00003502
Duncan Sands1df98592010-02-16 11:11:14 +00003503 if (!Address->getType()->isPointerTy())
Chris Lattnerab21db72009-10-28 00:19:10 +00003504 return Error(AddrLoc, "indirectbr address must have pointer type");
Michael Ilseman407a6162012-11-15 22:34:00 +00003505
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003506 // Parse the destination list.
3507 SmallVector<BasicBlock*, 16> DestList;
Michael Ilseman407a6162012-11-15 22:34:00 +00003508
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003509 if (Lex.getKind() != lltok::rsquare) {
3510 BasicBlock *DestBB;
3511 if (ParseTypeAndBasicBlock(DestBB, PFS))
3512 return true;
3513 DestList.push_back(DestBB);
Michael Ilseman407a6162012-11-15 22:34:00 +00003514
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003515 while (EatIfPresent(lltok::comma)) {
3516 if (ParseTypeAndBasicBlock(DestBB, PFS))
3517 return true;
3518 DestList.push_back(DestBB);
3519 }
3520 }
Michael Ilseman407a6162012-11-15 22:34:00 +00003521
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003522 if (ParseToken(lltok::rsquare, "expected ']' at end of block list"))
3523 return true;
3524
Chris Lattnerab21db72009-10-28 00:19:10 +00003525 IndirectBrInst *IBI = IndirectBrInst::Create(Address, DestList.size());
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003526 for (unsigned i = 0, e = DestList.size(); i != e; ++i)
3527 IBI->addDestination(DestList[i]);
3528 Inst = IBI;
3529 return false;
3530}
3531
3532
Chris Lattnerdf986172009-01-02 07:01:27 +00003533/// ParseInvoke
3534/// ::= 'invoke' OptionalCallingConv OptionalAttrs Type Value ParamList
3535/// OptionalAttrs 'to' TypeAndValue 'unwind' TypeAndValue
3536bool LLParser::ParseInvoke(Instruction *&Inst, PerFunctionState &PFS) {
3537 LocTy CallLoc = Lex.getLoc();
Bill Wendling702cc912012-10-15 20:35:56 +00003538 AttrBuilder RetAttrs, FnAttrs;
Bill Wendlingbaad55c2013-02-08 06:32:06 +00003539 std::vector<unsigned> FwdRefAttrGrps;
Bill Wendling143d4642013-02-22 00:12:35 +00003540 LocTy NoBuiltinLoc;
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00003541 CallingConv::ID CC;
Chris Lattner1afcace2011-07-09 17:41:24 +00003542 Type *RetType = 0;
Chris Lattnerdf986172009-01-02 07:01:27 +00003543 LocTy RetTypeLoc;
3544 ValID CalleeID;
3545 SmallVector<ParamInfo, 16> ArgList;
3546
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003547 BasicBlock *NormalBB, *UnwindBB;
Chris Lattnerdf986172009-01-02 07:01:27 +00003548 if (ParseOptionalCallingConv(CC) ||
Bill Wendlinge01b81b2012-12-04 23:40:58 +00003549 ParseOptionalReturnAttrs(RetAttrs) ||
Chris Lattnera9a9e072009-03-09 04:49:14 +00003550 ParseType(RetType, RetTypeLoc, true /*void allowed*/) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003551 ParseValID(CalleeID) ||
3552 ParseParameterList(ArgList, PFS) ||
Bill Wendling143d4642013-02-22 00:12:35 +00003553 ParseFnAttributeValuePairs(FnAttrs, FwdRefAttrGrps, false,
3554 NoBuiltinLoc) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003555 ParseToken(lltok::kw_to, "expected 'to' in invoke") ||
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003556 ParseTypeAndBasicBlock(NormalBB, PFS) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003557 ParseToken(lltok::kw_unwind, "expected 'unwind' in invoke") ||
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003558 ParseTypeAndBasicBlock(UnwindBB, PFS))
Chris Lattnerdf986172009-01-02 07:01:27 +00003559 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003560
Chris Lattnerdf986172009-01-02 07:01:27 +00003561 // If RetType is a non-function pointer type, then this is the short syntax
3562 // for the call, which means that RetType is just the return type. Infer the
3563 // rest of the function argument types from the arguments that are present.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00003564 PointerType *PFTy = 0;
3565 FunctionType *Ty = 0;
Chris Lattnerdf986172009-01-02 07:01:27 +00003566 if (!(PFTy = dyn_cast<PointerType>(RetType)) ||
3567 !(Ty = dyn_cast<FunctionType>(PFTy->getElementType()))) {
3568 // Pull out the types of all of the arguments...
Jay Foad5fdd6c82011-07-12 14:06:48 +00003569 std::vector<Type*> ParamTypes;
Chris Lattnerdf986172009-01-02 07:01:27 +00003570 for (unsigned i = 0, e = ArgList.size(); i != e; ++i)
3571 ParamTypes.push_back(ArgList[i].V->getType());
Daniel Dunbara279bc32009-09-20 02:20:51 +00003572
Chris Lattnerdf986172009-01-02 07:01:27 +00003573 if (!FunctionType::isValidReturnType(RetType))
3574 return Error(RetTypeLoc, "Invalid result type for LLVM function");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003575
Owen Andersondebcb012009-07-29 22:17:13 +00003576 Ty = FunctionType::get(RetType, ParamTypes, false);
3577 PFTy = PointerType::getUnqual(Ty);
Chris Lattnerdf986172009-01-02 07:01:27 +00003578 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003579
Chris Lattnerdf986172009-01-02 07:01:27 +00003580 // Look up the callee.
3581 Value *Callee;
Victor Hernandez92f238d2010-01-11 22:31:58 +00003582 if (ConvertValIDToValue(PFTy, CalleeID, Callee, &PFS)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003583
Bill Wendling034b94b2012-12-19 07:18:57 +00003584 // Set up the Attribute for the function.
Bill Wendlinga1683d62013-01-27 02:24:02 +00003585 SmallVector<AttributeSet, 8> Attrs;
Bill Wendlinge603fe42012-09-19 23:54:18 +00003586 if (RetAttrs.hasAttributes())
Bill Wendlinga1683d62013-01-27 02:24:02 +00003587 Attrs.push_back(AttributeSet::get(RetType->getContext(),
3588 AttributeSet::ReturnIndex,
3589 RetAttrs));
Daniel Dunbara279bc32009-09-20 02:20:51 +00003590
Chris Lattnerdf986172009-01-02 07:01:27 +00003591 SmallVector<Value*, 8> Args;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003592
Chris Lattnerdf986172009-01-02 07:01:27 +00003593 // Loop through FunctionType's arguments and ensure they are specified
3594 // correctly. Also, gather any parameter attributes.
3595 FunctionType::param_iterator I = Ty->param_begin();
3596 FunctionType::param_iterator E = Ty->param_end();
3597 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
Chris Lattnerdb125cf2011-07-18 04:54:35 +00003598 Type *ExpectedTy = 0;
Chris Lattnerdf986172009-01-02 07:01:27 +00003599 if (I != E) {
3600 ExpectedTy = *I++;
3601 } else if (!Ty->isVarArg()) {
3602 return Error(ArgList[i].Loc, "too many arguments specified");
3603 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003604
Chris Lattnerdf986172009-01-02 07:01:27 +00003605 if (ExpectedTy && ExpectedTy != ArgList[i].V->getType())
3606 return Error(ArgList[i].Loc, "argument is not of expected type '" +
Chris Lattner0cd0d882011-06-18 21:18:23 +00003607 getTypeString(ExpectedTy) + "'");
Chris Lattnerdf986172009-01-02 07:01:27 +00003608 Args.push_back(ArgList[i].V);
Bill Wendling73dee182013-01-31 00:29:54 +00003609 if (ArgList[i].Attrs.hasAttributes(i + 1)) {
3610 AttrBuilder B(ArgList[i].Attrs, i + 1);
Bill Wendlinga1683d62013-01-27 02:24:02 +00003611 Attrs.push_back(AttributeSet::get(RetType->getContext(), i + 1, B));
3612 }
Chris Lattnerdf986172009-01-02 07:01:27 +00003613 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003614
Chris Lattnerdf986172009-01-02 07:01:27 +00003615 if (I != E)
3616 return Error(CallLoc, "not enough parameters specified for call");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003617
Bill Wendlinge603fe42012-09-19 23:54:18 +00003618 if (FnAttrs.hasAttributes())
Bill Wendlinga1683d62013-01-27 02:24:02 +00003619 Attrs.push_back(AttributeSet::get(RetType->getContext(),
3620 AttributeSet::FunctionIndex,
3621 FnAttrs));
Daniel Dunbara279bc32009-09-20 02:20:51 +00003622
Bill Wendling034b94b2012-12-19 07:18:57 +00003623 // Finish off the Attribute and check them
Bill Wendling99faa3b2012-12-07 23:16:57 +00003624 AttributeSet PAL = AttributeSet::get(Context, Attrs);
Daniel Dunbara279bc32009-09-20 02:20:51 +00003625
Jay Foada3efbb12011-07-15 08:37:34 +00003626 InvokeInst *II = InvokeInst::Create(Callee, NormalBB, UnwindBB, Args);
Chris Lattnerdf986172009-01-02 07:01:27 +00003627 II->setCallingConv(CC);
3628 II->setAttributes(PAL);
Bill Wendlingbaad55c2013-02-08 06:32:06 +00003629 ForwardRefAttrGroups[II] = FwdRefAttrGrps;
Chris Lattnerdf986172009-01-02 07:01:27 +00003630 Inst = II;
3631 return false;
3632}
3633
Bill Wendlingdccc03b2011-07-31 06:30:59 +00003634/// ParseResume
3635/// ::= 'resume' TypeAndValue
3636bool LLParser::ParseResume(Instruction *&Inst, PerFunctionState &PFS) {
3637 Value *Exn; LocTy ExnLoc;
Bill Wendlingdccc03b2011-07-31 06:30:59 +00003638 if (ParseTypeAndValue(Exn, ExnLoc, PFS))
3639 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00003640
Bill Wendlingdccc03b2011-07-31 06:30:59 +00003641 ResumeInst *RI = ResumeInst::Create(Exn);
3642 Inst = RI;
3643 return false;
3644}
Chris Lattnerdf986172009-01-02 07:01:27 +00003645
3646//===----------------------------------------------------------------------===//
3647// Binary Operators.
3648//===----------------------------------------------------------------------===//
3649
3650/// ParseArithmetic
Chris Lattnere914b592009-01-05 08:24:46 +00003651/// ::= ArithmeticOps TypeAndValue ',' Value
3652///
3653/// If OperandType is 0, then any FP or integer operand is allowed. If it is 1,
3654/// then any integer operand is allowed, if it is 2, any fp operand is allowed.
Chris Lattnerdf986172009-01-02 07:01:27 +00003655bool LLParser::ParseArithmetic(Instruction *&Inst, PerFunctionState &PFS,
Chris Lattnere914b592009-01-05 08:24:46 +00003656 unsigned Opc, unsigned OperandType) {
Chris Lattnerdf986172009-01-02 07:01:27 +00003657 LocTy Loc; Value *LHS, *RHS;
3658 if (ParseTypeAndValue(LHS, Loc, PFS) ||
3659 ParseToken(lltok::comma, "expected ',' in arithmetic operation") ||
3660 ParseValue(LHS->getType(), RHS, PFS))
3661 return true;
3662
Chris Lattnere914b592009-01-05 08:24:46 +00003663 bool Valid;
3664 switch (OperandType) {
Torok Edwinc23197a2009-07-14 16:55:14 +00003665 default: llvm_unreachable("Unknown operand type!");
Chris Lattnere914b592009-01-05 08:24:46 +00003666 case 0: // int or FP.
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00003667 Valid = LHS->getType()->isIntOrIntVectorTy() ||
3668 LHS->getType()->isFPOrFPVectorTy();
Chris Lattnere914b592009-01-05 08:24:46 +00003669 break;
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00003670 case 1: Valid = LHS->getType()->isIntOrIntVectorTy(); break;
3671 case 2: Valid = LHS->getType()->isFPOrFPVectorTy(); break;
Chris Lattnere914b592009-01-05 08:24:46 +00003672 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003673
Chris Lattnere914b592009-01-05 08:24:46 +00003674 if (!Valid)
3675 return Error(Loc, "invalid operand type for instruction");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003676
Chris Lattnerdf986172009-01-02 07:01:27 +00003677 Inst = BinaryOperator::Create((Instruction::BinaryOps)Opc, LHS, RHS);
3678 return false;
3679}
3680
3681/// ParseLogical
3682/// ::= ArithmeticOps TypeAndValue ',' Value {
3683bool LLParser::ParseLogical(Instruction *&Inst, PerFunctionState &PFS,
3684 unsigned Opc) {
3685 LocTy Loc; Value *LHS, *RHS;
3686 if (ParseTypeAndValue(LHS, Loc, PFS) ||
3687 ParseToken(lltok::comma, "expected ',' in logical operation") ||
3688 ParseValue(LHS->getType(), RHS, PFS))
3689 return true;
3690
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00003691 if (!LHS->getType()->isIntOrIntVectorTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00003692 return Error(Loc,"instruction requires integer or integer vector operands");
3693
3694 Inst = BinaryOperator::Create((Instruction::BinaryOps)Opc, LHS, RHS);
3695 return false;
3696}
3697
3698
3699/// ParseCompare
3700/// ::= 'icmp' IPredicates TypeAndValue ',' Value
3701/// ::= 'fcmp' FPredicates TypeAndValue ',' Value
Chris Lattnerdf986172009-01-02 07:01:27 +00003702bool LLParser::ParseCompare(Instruction *&Inst, PerFunctionState &PFS,
3703 unsigned Opc) {
3704 // Parse the integer/fp comparison predicate.
3705 LocTy Loc;
3706 unsigned Pred;
3707 Value *LHS, *RHS;
3708 if (ParseCmpPredicate(Pred, Opc) ||
3709 ParseTypeAndValue(LHS, Loc, PFS) ||
3710 ParseToken(lltok::comma, "expected ',' after compare value") ||
3711 ParseValue(LHS->getType(), RHS, PFS))
3712 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003713
Chris Lattnerdf986172009-01-02 07:01:27 +00003714 if (Opc == Instruction::FCmp) {
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00003715 if (!LHS->getType()->isFPOrFPVectorTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00003716 return Error(Loc, "fcmp requires floating point operands");
Dan Gohman1c8a23c2009-08-25 23:17:54 +00003717 Inst = new FCmpInst(CmpInst::Predicate(Pred), LHS, RHS);
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00003718 } else {
3719 assert(Opc == Instruction::ICmp && "Unknown opcode for CmpInst!");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00003720 if (!LHS->getType()->isIntOrIntVectorTy() &&
Nadav Rotem16087692011-12-05 06:29:09 +00003721 !LHS->getType()->getScalarType()->isPointerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00003722 return Error(Loc, "icmp requires integer operands");
Dan Gohman1c8a23c2009-08-25 23:17:54 +00003723 Inst = new ICmpInst(CmpInst::Predicate(Pred), LHS, RHS);
Chris Lattnerdf986172009-01-02 07:01:27 +00003724 }
3725 return false;
3726}
3727
3728//===----------------------------------------------------------------------===//
3729// Other Instructions.
3730//===----------------------------------------------------------------------===//
3731
3732
3733/// ParseCast
3734/// ::= CastOpc TypeAndValue 'to' Type
3735bool LLParser::ParseCast(Instruction *&Inst, PerFunctionState &PFS,
3736 unsigned Opc) {
Chris Lattner1afcace2011-07-09 17:41:24 +00003737 LocTy Loc;
3738 Value *Op;
3739 Type *DestTy = 0;
Chris Lattnerdf986172009-01-02 07:01:27 +00003740 if (ParseTypeAndValue(Op, Loc, PFS) ||
3741 ParseToken(lltok::kw_to, "expected 'to' after cast value") ||
3742 ParseType(DestTy))
3743 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003744
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00003745 if (!CastInst::castIsValid((Instruction::CastOps)Opc, Op, DestTy)) {
3746 CastInst::castIsValid((Instruction::CastOps)Opc, Op, DestTy);
Chris Lattnerdf986172009-01-02 07:01:27 +00003747 return Error(Loc, "invalid cast opcode for cast from '" +
Chris Lattner0cd0d882011-06-18 21:18:23 +00003748 getTypeString(Op->getType()) + "' to '" +
3749 getTypeString(DestTy) + "'");
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00003750 }
Chris Lattnerdf986172009-01-02 07:01:27 +00003751 Inst = CastInst::Create((Instruction::CastOps)Opc, Op, DestTy);
3752 return false;
3753}
3754
3755/// ParseSelect
3756/// ::= 'select' TypeAndValue ',' TypeAndValue ',' TypeAndValue
3757bool LLParser::ParseSelect(Instruction *&Inst, PerFunctionState &PFS) {
3758 LocTy Loc;
3759 Value *Op0, *Op1, *Op2;
3760 if (ParseTypeAndValue(Op0, Loc, PFS) ||
3761 ParseToken(lltok::comma, "expected ',' after select condition") ||
3762 ParseTypeAndValue(Op1, PFS) ||
3763 ParseToken(lltok::comma, "expected ',' after select value") ||
3764 ParseTypeAndValue(Op2, PFS))
3765 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003766
Chris Lattnerdf986172009-01-02 07:01:27 +00003767 if (const char *Reason = SelectInst::areInvalidOperands(Op0, Op1, Op2))
3768 return Error(Loc, Reason);
Daniel Dunbara279bc32009-09-20 02:20:51 +00003769
Chris Lattnerdf986172009-01-02 07:01:27 +00003770 Inst = SelectInst::Create(Op0, Op1, Op2);
3771 return false;
3772}
3773
Chris Lattner0088a5c2009-01-05 08:18:44 +00003774/// ParseVA_Arg
3775/// ::= 'va_arg' TypeAndValue ',' Type
3776bool LLParser::ParseVA_Arg(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00003777 Value *Op;
Chris Lattner1afcace2011-07-09 17:41:24 +00003778 Type *EltTy = 0;
Chris Lattner0088a5c2009-01-05 08:18:44 +00003779 LocTy TypeLoc;
Chris Lattnerdf986172009-01-02 07:01:27 +00003780 if (ParseTypeAndValue(Op, PFS) ||
3781 ParseToken(lltok::comma, "expected ',' after vaarg operand") ||
Chris Lattner0088a5c2009-01-05 08:18:44 +00003782 ParseType(EltTy, TypeLoc))
Chris Lattnerdf986172009-01-02 07:01:27 +00003783 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003784
Chris Lattner0088a5c2009-01-05 08:18:44 +00003785 if (!EltTy->isFirstClassType())
3786 return Error(TypeLoc, "va_arg requires operand with first class type");
Chris Lattnerdf986172009-01-02 07:01:27 +00003787
3788 Inst = new VAArgInst(Op, EltTy);
3789 return false;
3790}
3791
3792/// ParseExtractElement
3793/// ::= 'extractelement' TypeAndValue ',' TypeAndValue
3794bool LLParser::ParseExtractElement(Instruction *&Inst, PerFunctionState &PFS) {
3795 LocTy Loc;
3796 Value *Op0, *Op1;
3797 if (ParseTypeAndValue(Op0, Loc, PFS) ||
3798 ParseToken(lltok::comma, "expected ',' after extract value") ||
3799 ParseTypeAndValue(Op1, PFS))
3800 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003801
Chris Lattnerdf986172009-01-02 07:01:27 +00003802 if (!ExtractElementInst::isValidOperands(Op0, Op1))
3803 return Error(Loc, "invalid extractelement operands");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003804
Eric Christophera3500da2009-07-25 02:28:41 +00003805 Inst = ExtractElementInst::Create(Op0, Op1);
Chris Lattnerdf986172009-01-02 07:01:27 +00003806 return false;
3807}
3808
3809/// ParseInsertElement
3810/// ::= 'insertelement' TypeAndValue ',' TypeAndValue ',' TypeAndValue
3811bool LLParser::ParseInsertElement(Instruction *&Inst, PerFunctionState &PFS) {
3812 LocTy Loc;
3813 Value *Op0, *Op1, *Op2;
3814 if (ParseTypeAndValue(Op0, Loc, PFS) ||
3815 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
3816 ParseTypeAndValue(Op1, PFS) ||
3817 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
3818 ParseTypeAndValue(Op2, PFS))
3819 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003820
Chris Lattnerdf986172009-01-02 07:01:27 +00003821 if (!InsertElementInst::isValidOperands(Op0, Op1, Op2))
Eric Christopher0aaf4e92009-07-23 01:01:32 +00003822 return Error(Loc, "invalid insertelement operands");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003823
Chris Lattnerdf986172009-01-02 07:01:27 +00003824 Inst = InsertElementInst::Create(Op0, Op1, Op2);
3825 return false;
3826}
3827
3828/// ParseShuffleVector
3829/// ::= 'shufflevector' TypeAndValue ',' TypeAndValue ',' TypeAndValue
3830bool LLParser::ParseShuffleVector(Instruction *&Inst, PerFunctionState &PFS) {
3831 LocTy Loc;
3832 Value *Op0, *Op1, *Op2;
3833 if (ParseTypeAndValue(Op0, Loc, PFS) ||
3834 ParseToken(lltok::comma, "expected ',' after shuffle mask") ||
3835 ParseTypeAndValue(Op1, PFS) ||
3836 ParseToken(lltok::comma, "expected ',' after shuffle value") ||
3837 ParseTypeAndValue(Op2, PFS))
3838 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003839
Chris Lattnerdf986172009-01-02 07:01:27 +00003840 if (!ShuffleVectorInst::isValidOperands(Op0, Op1, Op2))
Pete Cooperaf393682012-02-01 23:43:12 +00003841 return Error(Loc, "invalid shufflevector operands");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003842
Chris Lattnerdf986172009-01-02 07:01:27 +00003843 Inst = new ShuffleVectorInst(Op0, Op1, Op2);
3844 return false;
3845}
3846
3847/// ParsePHI
Chris Lattnerc6e20092009-10-18 05:27:44 +00003848/// ::= 'phi' Type '[' Value ',' Value ']' (',' '[' Value ',' Value ']')*
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003849int LLParser::ParsePHI(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattner1afcace2011-07-09 17:41:24 +00003850 Type *Ty = 0; LocTy TypeLoc;
Chris Lattnerdf986172009-01-02 07:01:27 +00003851 Value *Op0, *Op1;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003852
Chris Lattner1afcace2011-07-09 17:41:24 +00003853 if (ParseType(Ty, TypeLoc) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003854 ParseToken(lltok::lsquare, "expected '[' in phi value list") ||
3855 ParseValue(Ty, Op0, PFS) ||
3856 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
Owen Anderson1d0be152009-08-13 21:58:54 +00003857 ParseValue(Type::getLabelTy(Context), Op1, PFS) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003858 ParseToken(lltok::rsquare, "expected ']' in phi value list"))
3859 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003860
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003861 bool AteExtraComma = false;
Chris Lattnerdf986172009-01-02 07:01:27 +00003862 SmallVector<std::pair<Value*, BasicBlock*>, 16> PHIVals;
3863 while (1) {
3864 PHIVals.push_back(std::make_pair(Op0, cast<BasicBlock>(Op1)));
Daniel Dunbara279bc32009-09-20 02:20:51 +00003865
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003866 if (!EatIfPresent(lltok::comma))
Chris Lattnerdf986172009-01-02 07:01:27 +00003867 break;
3868
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003869 if (Lex.getKind() == lltok::MetadataVar) {
3870 AteExtraComma = true;
Devang Patela43d46f2009-10-16 18:45:49 +00003871 break;
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003872 }
Devang Patela43d46f2009-10-16 18:45:49 +00003873
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003874 if (ParseToken(lltok::lsquare, "expected '[' in phi value list") ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003875 ParseValue(Ty, Op0, PFS) ||
3876 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
Owen Anderson1d0be152009-08-13 21:58:54 +00003877 ParseValue(Type::getLabelTy(Context), Op1, PFS) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003878 ParseToken(lltok::rsquare, "expected ']' in phi value list"))
3879 return true;
3880 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003881
Chris Lattnerdf986172009-01-02 07:01:27 +00003882 if (!Ty->isFirstClassType())
3883 return Error(TypeLoc, "phi node must have first class type");
3884
Jay Foad3ecfc862011-03-30 11:28:46 +00003885 PHINode *PN = PHINode::Create(Ty, PHIVals.size());
Chris Lattnerdf986172009-01-02 07:01:27 +00003886 for (unsigned i = 0, e = PHIVals.size(); i != e; ++i)
3887 PN->addIncoming(PHIVals[i].first, PHIVals[i].second);
3888 Inst = PN;
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003889 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerdf986172009-01-02 07:01:27 +00003890}
3891
Bill Wendlinge6e88262011-08-12 20:24:12 +00003892/// ParseLandingPad
3893/// ::= 'landingpad' Type 'personality' TypeAndValue 'cleanup'? Clause+
3894/// Clause
3895/// ::= 'catch' TypeAndValue
3896/// ::= 'filter'
3897/// ::= 'filter' TypeAndValue ( ',' TypeAndValue )*
3898bool LLParser::ParseLandingPad(Instruction *&Inst, PerFunctionState &PFS) {
3899 Type *Ty = 0; LocTy TyLoc;
3900 Value *PersFn; LocTy PersFnLoc;
Bill Wendlinge6e88262011-08-12 20:24:12 +00003901
3902 if (ParseType(Ty, TyLoc) ||
3903 ParseToken(lltok::kw_personality, "expected 'personality'") ||
3904 ParseTypeAndValue(PersFn, PersFnLoc, PFS))
3905 return true;
3906
3907 LandingPadInst *LP = LandingPadInst::Create(Ty, PersFn, 0);
3908 LP->setCleanup(EatIfPresent(lltok::kw_cleanup));
3909
3910 while (Lex.getKind() == lltok::kw_catch || Lex.getKind() == lltok::kw_filter){
3911 LandingPadInst::ClauseType CT;
3912 if (EatIfPresent(lltok::kw_catch))
3913 CT = LandingPadInst::Catch;
3914 else if (EatIfPresent(lltok::kw_filter))
3915 CT = LandingPadInst::Filter;
3916 else
3917 return TokError("expected 'catch' or 'filter' clause type");
3918
3919 Value *V; LocTy VLoc;
3920 if (ParseTypeAndValue(V, VLoc, PFS)) {
3921 delete LP;
3922 return true;
3923 }
3924
Bill Wendling746c8822011-08-12 20:52:25 +00003925 // A 'catch' type expects a non-array constant. A filter clause expects an
3926 // array constant.
3927 if (CT == LandingPadInst::Catch) {
3928 if (isa<ArrayType>(V->getType()))
3929 Error(VLoc, "'catch' clause has an invalid type");
3930 } else {
3931 if (!isa<ArrayType>(V->getType()))
3932 Error(VLoc, "'filter' clause has an invalid type");
3933 }
3934
Bill Wendlinge6e88262011-08-12 20:24:12 +00003935 LP->addClause(V);
3936 }
3937
3938 Inst = LP;
3939 return false;
3940}
3941
Chris Lattnerdf986172009-01-02 07:01:27 +00003942/// ParseCall
3943/// ::= 'tail'? 'call' OptionalCallingConv OptionalAttrs Type Value
3944/// ParameterList OptionalAttrs
3945bool LLParser::ParseCall(Instruction *&Inst, PerFunctionState &PFS,
3946 bool isTail) {
Bill Wendling702cc912012-10-15 20:35:56 +00003947 AttrBuilder RetAttrs, FnAttrs;
Bill Wendlingbaad55c2013-02-08 06:32:06 +00003948 std::vector<unsigned> FwdRefAttrGrps;
Michael Gottesman2253a2f2013-06-27 00:25:01 +00003949 LocTy BuiltinLoc;
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00003950 CallingConv::ID CC;
Chris Lattner1afcace2011-07-09 17:41:24 +00003951 Type *RetType = 0;
Chris Lattnerdf986172009-01-02 07:01:27 +00003952 LocTy RetTypeLoc;
3953 ValID CalleeID;
3954 SmallVector<ParamInfo, 16> ArgList;
3955 LocTy CallLoc = Lex.getLoc();
Daniel Dunbara279bc32009-09-20 02:20:51 +00003956
Chris Lattnerdf986172009-01-02 07:01:27 +00003957 if ((isTail && ParseToken(lltok::kw_call, "expected 'tail call'")) ||
3958 ParseOptionalCallingConv(CC) ||
Bill Wendlinge01b81b2012-12-04 23:40:58 +00003959 ParseOptionalReturnAttrs(RetAttrs) ||
Chris Lattnera9a9e072009-03-09 04:49:14 +00003960 ParseType(RetType, RetTypeLoc, true /*void allowed*/) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003961 ParseValID(CalleeID) ||
3962 ParseParameterList(ArgList, PFS) ||
Bill Wendling143d4642013-02-22 00:12:35 +00003963 ParseFnAttributeValuePairs(FnAttrs, FwdRefAttrGrps, false,
Michael Gottesman2253a2f2013-06-27 00:25:01 +00003964 BuiltinLoc))
Chris Lattnerdf986172009-01-02 07:01:27 +00003965 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003966
Chris Lattnerdf986172009-01-02 07:01:27 +00003967 // If RetType is a non-function pointer type, then this is the short syntax
3968 // for the call, which means that RetType is just the return type. Infer the
3969 // rest of the function argument types from the arguments that are present.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00003970 PointerType *PFTy = 0;
3971 FunctionType *Ty = 0;
Chris Lattnerdf986172009-01-02 07:01:27 +00003972 if (!(PFTy = dyn_cast<PointerType>(RetType)) ||
3973 !(Ty = dyn_cast<FunctionType>(PFTy->getElementType()))) {
3974 // Pull out the types of all of the arguments...
Jay Foad5fdd6c82011-07-12 14:06:48 +00003975 std::vector<Type*> ParamTypes;
Eli Friedman83b4a972010-07-24 23:06:59 +00003976 for (unsigned i = 0, e = ArgList.size(); i != e; ++i)
3977 ParamTypes.push_back(ArgList[i].V->getType());
Daniel Dunbara279bc32009-09-20 02:20:51 +00003978
Chris Lattnerdf986172009-01-02 07:01:27 +00003979 if (!FunctionType::isValidReturnType(RetType))
3980 return Error(RetTypeLoc, "Invalid result type for LLVM function");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003981
Owen Andersondebcb012009-07-29 22:17:13 +00003982 Ty = FunctionType::get(RetType, ParamTypes, false);
3983 PFTy = PointerType::getUnqual(Ty);
Chris Lattnerdf986172009-01-02 07:01:27 +00003984 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003985
Chris Lattnerdf986172009-01-02 07:01:27 +00003986 // Look up the callee.
3987 Value *Callee;
Victor Hernandez92f238d2010-01-11 22:31:58 +00003988 if (ConvertValIDToValue(PFTy, CalleeID, Callee, &PFS)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003989
Bill Wendling034b94b2012-12-19 07:18:57 +00003990 // Set up the Attribute for the function.
Bill Wendlinga1683d62013-01-27 02:24:02 +00003991 SmallVector<AttributeSet, 8> Attrs;
Bill Wendlinge603fe42012-09-19 23:54:18 +00003992 if (RetAttrs.hasAttributes())
Bill Wendlinga1683d62013-01-27 02:24:02 +00003993 Attrs.push_back(AttributeSet::get(RetType->getContext(),
3994 AttributeSet::ReturnIndex,
3995 RetAttrs));
Daniel Dunbara279bc32009-09-20 02:20:51 +00003996
Chris Lattnerdf986172009-01-02 07:01:27 +00003997 SmallVector<Value*, 8> Args;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003998
Chris Lattnerdf986172009-01-02 07:01:27 +00003999 // Loop through FunctionType's arguments and ensure they are specified
4000 // correctly. Also, gather any parameter attributes.
4001 FunctionType::param_iterator I = Ty->param_begin();
4002 FunctionType::param_iterator E = Ty->param_end();
4003 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
Chris Lattnerdb125cf2011-07-18 04:54:35 +00004004 Type *ExpectedTy = 0;
Chris Lattnerdf986172009-01-02 07:01:27 +00004005 if (I != E) {
4006 ExpectedTy = *I++;
4007 } else if (!Ty->isVarArg()) {
4008 return Error(ArgList[i].Loc, "too many arguments specified");
4009 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00004010
Chris Lattnerdf986172009-01-02 07:01:27 +00004011 if (ExpectedTy && ExpectedTy != ArgList[i].V->getType())
4012 return Error(ArgList[i].Loc, "argument is not of expected type '" +
Chris Lattner0cd0d882011-06-18 21:18:23 +00004013 getTypeString(ExpectedTy) + "'");
Chris Lattnerdf986172009-01-02 07:01:27 +00004014 Args.push_back(ArgList[i].V);
Bill Wendling73dee182013-01-31 00:29:54 +00004015 if (ArgList[i].Attrs.hasAttributes(i + 1)) {
4016 AttrBuilder B(ArgList[i].Attrs, i + 1);
Bill Wendlinga1683d62013-01-27 02:24:02 +00004017 Attrs.push_back(AttributeSet::get(RetType->getContext(), i + 1, B));
4018 }
Chris Lattnerdf986172009-01-02 07:01:27 +00004019 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00004020
Chris Lattnerdf986172009-01-02 07:01:27 +00004021 if (I != E)
4022 return Error(CallLoc, "not enough parameters specified for call");
4023
Bill Wendlinge603fe42012-09-19 23:54:18 +00004024 if (FnAttrs.hasAttributes())
Bill Wendlinga1683d62013-01-27 02:24:02 +00004025 Attrs.push_back(AttributeSet::get(RetType->getContext(),
4026 AttributeSet::FunctionIndex,
4027 FnAttrs));
Chris Lattnerdf986172009-01-02 07:01:27 +00004028
Bill Wendling034b94b2012-12-19 07:18:57 +00004029 // Finish off the Attribute and check them
Bill Wendling99faa3b2012-12-07 23:16:57 +00004030 AttributeSet PAL = AttributeSet::get(Context, Attrs);
Daniel Dunbara279bc32009-09-20 02:20:51 +00004031
Jay Foada3efbb12011-07-15 08:37:34 +00004032 CallInst *CI = CallInst::Create(Callee, Args);
Chris Lattnerdf986172009-01-02 07:01:27 +00004033 CI->setTailCall(isTail);
4034 CI->setCallingConv(CC);
4035 CI->setAttributes(PAL);
Bill Wendlingbaad55c2013-02-08 06:32:06 +00004036 ForwardRefAttrGroups[CI] = FwdRefAttrGrps;
Chris Lattnerdf986172009-01-02 07:01:27 +00004037 Inst = CI;
4038 return false;
4039}
4040
4041//===----------------------------------------------------------------------===//
4042// Memory Instructions.
4043//===----------------------------------------------------------------------===//
4044
4045/// ParseAlloc
Devang Patelf633a062009-09-17 23:04:48 +00004046/// ::= 'alloca' Type (',' TypeAndValue)? (',' OptionalInfo)?
Chris Lattnerf3a789d2011-06-17 03:16:47 +00004047int LLParser::ParseAlloc(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00004048 Value *Size = 0;
Chris Lattnereeb4a842009-07-02 23:08:13 +00004049 LocTy SizeLoc;
Chris Lattnerdf986172009-01-02 07:01:27 +00004050 unsigned Alignment = 0;
Chris Lattner1afcace2011-07-09 17:41:24 +00004051 Type *Ty = 0;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00004052 if (ParseType(Ty)) return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00004053
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00004054 bool AteExtraComma = false;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00004055 if (EatIfPresent(lltok::comma)) {
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00004056 if (Lex.getKind() == lltok::kw_align) {
4057 if (ParseOptionalAlignment(Alignment)) return true;
4058 } else if (Lex.getKind() == lltok::MetadataVar) {
4059 AteExtraComma = true;
Devang Patelf633a062009-09-17 23:04:48 +00004060 } else {
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00004061 if (ParseTypeAndValue(Size, SizeLoc, PFS) ||
4062 ParseOptionalCommaAlign(Alignment, AteExtraComma))
4063 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00004064 }
4065 }
4066
Dan Gohmanf75a7d32010-05-28 01:14:11 +00004067 if (Size && !Size->getType()->isIntegerTy())
4068 return Error(SizeLoc, "element count must have integer type");
Chris Lattnerdf986172009-01-02 07:01:27 +00004069
Chris Lattnerf3a789d2011-06-17 03:16:47 +00004070 Inst = new AllocaInst(Ty, Size, Alignment);
4071 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerdf986172009-01-02 07:01:27 +00004072}
4073
4074/// ParseLoad
Eli Friedmanf03bb262011-08-12 22:50:01 +00004075/// ::= 'load' 'volatile'? TypeAndValue (',' 'align' i32)?
Michael Ilseman407a6162012-11-15 22:34:00 +00004076/// ::= 'load' 'atomic' 'volatile'? TypeAndValue
Eli Friedmanf03bb262011-08-12 22:50:01 +00004077/// 'singlethread'? AtomicOrdering (',' 'align' i32)?
Chris Lattnerfbe910e2011-11-27 06:56:53 +00004078int LLParser::ParseLoad(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00004079 Value *Val; LocTy Loc;
Devang Patelf633a062009-09-17 23:04:48 +00004080 unsigned Alignment = 0;
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00004081 bool AteExtraComma = false;
Eli Friedmanf03bb262011-08-12 22:50:01 +00004082 bool isAtomic = false;
Eli Friedman21006d42011-08-09 23:02:53 +00004083 AtomicOrdering Ordering = NotAtomic;
4084 SynchronizationScope Scope = CrossThread;
Eli Friedmanf03bb262011-08-12 22:50:01 +00004085
4086 if (Lex.getKind() == lltok::kw_atomic) {
Eli Friedmanf03bb262011-08-12 22:50:01 +00004087 isAtomic = true;
4088 Lex.Lex();
4089 }
4090
Chris Lattnerfbe910e2011-11-27 06:56:53 +00004091 bool isVolatile = false;
Eli Friedmanf03bb262011-08-12 22:50:01 +00004092 if (Lex.getKind() == lltok::kw_volatile) {
Eli Friedmanf03bb262011-08-12 22:50:01 +00004093 isVolatile = true;
4094 Lex.Lex();
4095 }
4096
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00004097 if (ParseTypeAndValue(Val, Loc, PFS) ||
Eli Friedman21006d42011-08-09 23:02:53 +00004098 ParseScopeAndOrdering(isAtomic, Scope, Ordering) ||
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00004099 ParseOptionalCommaAlign(Alignment, AteExtraComma))
4100 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00004101
Duncan Sands1df98592010-02-16 11:11:14 +00004102 if (!Val->getType()->isPointerTy() ||
Chris Lattnerdf986172009-01-02 07:01:27 +00004103 !cast<PointerType>(Val->getType())->getElementType()->isFirstClassType())
4104 return Error(Loc, "load operand must be a pointer to a first class type");
Eli Friedman21006d42011-08-09 23:02:53 +00004105 if (isAtomic && !Alignment)
4106 return Error(Loc, "atomic load must have explicit non-zero alignment");
4107 if (Ordering == Release || Ordering == AcquireRelease)
4108 return Error(Loc, "atomic load cannot use Release ordering");
Daniel Dunbara279bc32009-09-20 02:20:51 +00004109
Eli Friedman21006d42011-08-09 23:02:53 +00004110 Inst = new LoadInst(Val, "", isVolatile, Alignment, Ordering, Scope);
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00004111 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerdf986172009-01-02 07:01:27 +00004112}
4113
4114/// ParseStore
Eli Friedmanf03bb262011-08-12 22:50:01 +00004115
4116/// ::= 'store' 'volatile'? TypeAndValue ',' TypeAndValue (',' 'align' i32)?
4117/// ::= 'store' 'atomic' 'volatile'? TypeAndValue ',' TypeAndValue
Eli Friedman21006d42011-08-09 23:02:53 +00004118/// 'singlethread'? AtomicOrdering (',' 'align' i32)?
Chris Lattnerfbe910e2011-11-27 06:56:53 +00004119int LLParser::ParseStore(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00004120 Value *Val, *Ptr; LocTy Loc, PtrLoc;
Devang Patelf633a062009-09-17 23:04:48 +00004121 unsigned Alignment = 0;
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00004122 bool AteExtraComma = false;
Eli Friedmanf03bb262011-08-12 22:50:01 +00004123 bool isAtomic = false;
Eli Friedman21006d42011-08-09 23:02:53 +00004124 AtomicOrdering Ordering = NotAtomic;
4125 SynchronizationScope Scope = CrossThread;
Eli Friedmanf03bb262011-08-12 22:50:01 +00004126
4127 if (Lex.getKind() == lltok::kw_atomic) {
Eli Friedmanf03bb262011-08-12 22:50:01 +00004128 isAtomic = true;
4129 Lex.Lex();
4130 }
4131
Chris Lattnerfbe910e2011-11-27 06:56:53 +00004132 bool isVolatile = false;
Eli Friedmanf03bb262011-08-12 22:50:01 +00004133 if (Lex.getKind() == lltok::kw_volatile) {
Eli Friedmanf03bb262011-08-12 22:50:01 +00004134 isVolatile = true;
4135 Lex.Lex();
4136 }
4137
Chris Lattnerdf986172009-01-02 07:01:27 +00004138 if (ParseTypeAndValue(Val, Loc, PFS) ||
4139 ParseToken(lltok::comma, "expected ',' after store operand") ||
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00004140 ParseTypeAndValue(Ptr, PtrLoc, PFS) ||
Eli Friedman21006d42011-08-09 23:02:53 +00004141 ParseScopeAndOrdering(isAtomic, Scope, Ordering) ||
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00004142 ParseOptionalCommaAlign(Alignment, AteExtraComma))
Chris Lattnerdf986172009-01-02 07:01:27 +00004143 return true;
Devang Patelf633a062009-09-17 23:04:48 +00004144
Duncan Sands1df98592010-02-16 11:11:14 +00004145 if (!Ptr->getType()->isPointerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00004146 return Error(PtrLoc, "store operand must be a pointer");
4147 if (!Val->getType()->isFirstClassType())
4148 return Error(Loc, "store operand must be a first class value");
4149 if (cast<PointerType>(Ptr->getType())->getElementType() != Val->getType())
4150 return Error(Loc, "stored value and pointer type do not match");
Eli Friedman21006d42011-08-09 23:02:53 +00004151 if (isAtomic && !Alignment)
4152 return Error(Loc, "atomic store must have explicit non-zero alignment");
4153 if (Ordering == Acquire || Ordering == AcquireRelease)
4154 return Error(Loc, "atomic store cannot use Acquire ordering");
Daniel Dunbara279bc32009-09-20 02:20:51 +00004155
Eli Friedman21006d42011-08-09 23:02:53 +00004156 Inst = new StoreInst(Val, Ptr, isVolatile, Alignment, Ordering, Scope);
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00004157 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerdf986172009-01-02 07:01:27 +00004158}
4159
Eli Friedmanff030482011-07-28 21:48:00 +00004160/// ParseCmpXchg
Eli Friedmanf03bb262011-08-12 22:50:01 +00004161/// ::= 'cmpxchg' 'volatile'? TypeAndValue ',' TypeAndValue ',' TypeAndValue
4162/// 'singlethread'? AtomicOrdering
4163int LLParser::ParseCmpXchg(Instruction *&Inst, PerFunctionState &PFS) {
Eli Friedmanff030482011-07-28 21:48:00 +00004164 Value *Ptr, *Cmp, *New; LocTy PtrLoc, CmpLoc, NewLoc;
4165 bool AteExtraComma = false;
4166 AtomicOrdering Ordering = NotAtomic;
4167 SynchronizationScope Scope = CrossThread;
Eli Friedmanf03bb262011-08-12 22:50:01 +00004168 bool isVolatile = false;
4169
4170 if (EatIfPresent(lltok::kw_volatile))
4171 isVolatile = true;
4172
Eli Friedmanff030482011-07-28 21:48:00 +00004173 if (ParseTypeAndValue(Ptr, PtrLoc, PFS) ||
4174 ParseToken(lltok::comma, "expected ',' after cmpxchg address") ||
4175 ParseTypeAndValue(Cmp, CmpLoc, PFS) ||
4176 ParseToken(lltok::comma, "expected ',' after cmpxchg cmp operand") ||
4177 ParseTypeAndValue(New, NewLoc, PFS) ||
4178 ParseScopeAndOrdering(true /*Always atomic*/, Scope, Ordering))
4179 return true;
4180
4181 if (Ordering == Unordered)
4182 return TokError("cmpxchg cannot be unordered");
4183 if (!Ptr->getType()->isPointerTy())
4184 return Error(PtrLoc, "cmpxchg operand must be a pointer");
4185 if (cast<PointerType>(Ptr->getType())->getElementType() != Cmp->getType())
4186 return Error(CmpLoc, "compare value and pointer type do not match");
4187 if (cast<PointerType>(Ptr->getType())->getElementType() != New->getType())
4188 return Error(NewLoc, "new value and pointer type do not match");
4189 if (!New->getType()->isIntegerTy())
4190 return Error(NewLoc, "cmpxchg operand must be an integer");
4191 unsigned Size = New->getType()->getPrimitiveSizeInBits();
4192 if (Size < 8 || (Size & (Size - 1)))
4193 return Error(NewLoc, "cmpxchg operand must be power-of-two byte-sized"
4194 " integer");
4195
4196 AtomicCmpXchgInst *CXI =
4197 new AtomicCmpXchgInst(Ptr, Cmp, New, Ordering, Scope);
4198 CXI->setVolatile(isVolatile);
4199 Inst = CXI;
4200 return AteExtraComma ? InstExtraComma : InstNormal;
4201}
4202
4203/// ParseAtomicRMW
Eli Friedmanf03bb262011-08-12 22:50:01 +00004204/// ::= 'atomicrmw' 'volatile'? BinOp TypeAndValue ',' TypeAndValue
4205/// 'singlethread'? AtomicOrdering
4206int LLParser::ParseAtomicRMW(Instruction *&Inst, PerFunctionState &PFS) {
Eli Friedmanff030482011-07-28 21:48:00 +00004207 Value *Ptr, *Val; LocTy PtrLoc, ValLoc;
4208 bool AteExtraComma = false;
4209 AtomicOrdering Ordering = NotAtomic;
4210 SynchronizationScope Scope = CrossThread;
Eli Friedmanf03bb262011-08-12 22:50:01 +00004211 bool isVolatile = false;
Eli Friedmanff030482011-07-28 21:48:00 +00004212 AtomicRMWInst::BinOp Operation;
Eli Friedmanf03bb262011-08-12 22:50:01 +00004213
4214 if (EatIfPresent(lltok::kw_volatile))
4215 isVolatile = true;
4216
Eli Friedmanff030482011-07-28 21:48:00 +00004217 switch (Lex.getKind()) {
4218 default: return TokError("expected binary operation in atomicrmw");
4219 case lltok::kw_xchg: Operation = AtomicRMWInst::Xchg; break;
4220 case lltok::kw_add: Operation = AtomicRMWInst::Add; break;
4221 case lltok::kw_sub: Operation = AtomicRMWInst::Sub; break;
4222 case lltok::kw_and: Operation = AtomicRMWInst::And; break;
4223 case lltok::kw_nand: Operation = AtomicRMWInst::Nand; break;
4224 case lltok::kw_or: Operation = AtomicRMWInst::Or; break;
4225 case lltok::kw_xor: Operation = AtomicRMWInst::Xor; break;
4226 case lltok::kw_max: Operation = AtomicRMWInst::Max; break;
4227 case lltok::kw_min: Operation = AtomicRMWInst::Min; break;
4228 case lltok::kw_umax: Operation = AtomicRMWInst::UMax; break;
4229 case lltok::kw_umin: Operation = AtomicRMWInst::UMin; break;
4230 }
4231 Lex.Lex(); // Eat the operation.
4232
4233 if (ParseTypeAndValue(Ptr, PtrLoc, PFS) ||
4234 ParseToken(lltok::comma, "expected ',' after atomicrmw address") ||
4235 ParseTypeAndValue(Val, ValLoc, PFS) ||
4236 ParseScopeAndOrdering(true /*Always atomic*/, Scope, Ordering))
4237 return true;
4238
4239 if (Ordering == Unordered)
4240 return TokError("atomicrmw cannot be unordered");
4241 if (!Ptr->getType()->isPointerTy())
4242 return Error(PtrLoc, "atomicrmw operand must be a pointer");
4243 if (cast<PointerType>(Ptr->getType())->getElementType() != Val->getType())
4244 return Error(ValLoc, "atomicrmw value and pointer type do not match");
4245 if (!Val->getType()->isIntegerTy())
4246 return Error(ValLoc, "atomicrmw operand must be an integer");
4247 unsigned Size = Val->getType()->getPrimitiveSizeInBits();
4248 if (Size < 8 || (Size & (Size - 1)))
4249 return Error(ValLoc, "atomicrmw operand must be power-of-two byte-sized"
4250 " integer");
4251
4252 AtomicRMWInst *RMWI =
4253 new AtomicRMWInst(Operation, Ptr, Val, Ordering, Scope);
4254 RMWI->setVolatile(isVolatile);
4255 Inst = RMWI;
4256 return AteExtraComma ? InstExtraComma : InstNormal;
4257}
4258
Eli Friedman47f35132011-07-25 23:16:38 +00004259/// ParseFence
4260/// ::= 'fence' 'singlethread'? AtomicOrdering
4261int LLParser::ParseFence(Instruction *&Inst, PerFunctionState &PFS) {
4262 AtomicOrdering Ordering = NotAtomic;
4263 SynchronizationScope Scope = CrossThread;
4264 if (ParseScopeAndOrdering(true /*Always atomic*/, Scope, Ordering))
4265 return true;
4266
4267 if (Ordering == Unordered)
4268 return TokError("fence cannot be unordered");
4269 if (Ordering == Monotonic)
4270 return TokError("fence cannot be monotonic");
4271
4272 Inst = new FenceInst(Context, Ordering, Scope);
4273 return InstNormal;
4274}
4275
Chris Lattnerdf986172009-01-02 07:01:27 +00004276/// ParseGetElementPtr
Dan Gohmandd8004d2009-07-27 21:53:46 +00004277/// ::= 'getelementptr' 'inbounds'? TypeAndValue (',' TypeAndValue)*
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004278int LLParser::ParseGetElementPtr(Instruction *&Inst, PerFunctionState &PFS) {
Nadav Rotem16087692011-12-05 06:29:09 +00004279 Value *Ptr = 0;
4280 Value *Val = 0;
4281 LocTy Loc, EltLoc;
Dan Gohmandd8004d2009-07-27 21:53:46 +00004282
Dan Gohmandcb40a32009-07-29 15:58:36 +00004283 bool InBounds = EatIfPresent(lltok::kw_inbounds);
Dan Gohmandd8004d2009-07-27 21:53:46 +00004284
Chris Lattner3ed88ef2009-01-02 08:05:26 +00004285 if (ParseTypeAndValue(Ptr, Loc, PFS)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00004286
Eli Bendersky59eb5ee2013-04-22 17:03:42 +00004287 Type *BaseType = Ptr->getType();
4288 PointerType *BasePointerType = dyn_cast<PointerType>(BaseType->getScalarType());
4289 if (!BasePointerType)
Chris Lattnerdf986172009-01-02 07:01:27 +00004290 return Error(Loc, "base of getelementptr must be a pointer");
Daniel Dunbara279bc32009-09-20 02:20:51 +00004291
Chris Lattnerdf986172009-01-02 07:01:27 +00004292 SmallVector<Value*, 16> Indices;
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004293 bool AteExtraComma = false;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00004294 while (EatIfPresent(lltok::comma)) {
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004295 if (Lex.getKind() == lltok::MetadataVar) {
4296 AteExtraComma = true;
Devang Patel6225d642009-10-13 18:49:55 +00004297 break;
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004298 }
Chris Lattner3ed88ef2009-01-02 08:05:26 +00004299 if (ParseTypeAndValue(Val, EltLoc, PFS)) return true;
Nadav Rotem16087692011-12-05 06:29:09 +00004300 if (!Val->getType()->getScalarType()->isIntegerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00004301 return Error(EltLoc, "getelementptr index must be an integer");
Nadav Rotem16087692011-12-05 06:29:09 +00004302 if (Val->getType()->isVectorTy() != Ptr->getType()->isVectorTy())
4303 return Error(EltLoc, "getelementptr index type missmatch");
4304 if (Val->getType()->isVectorTy()) {
4305 unsigned ValNumEl = cast<VectorType>(Val->getType())->getNumElements();
4306 unsigned PtrNumEl = cast<VectorType>(Ptr->getType())->getNumElements();
4307 if (ValNumEl != PtrNumEl)
4308 return Error(EltLoc,
4309 "getelementptr vector index has a wrong number of elements");
4310 }
Chris Lattnerdf986172009-01-02 07:01:27 +00004311 Indices.push_back(Val);
4312 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00004313
Eli Bendersky59eb5ee2013-04-22 17:03:42 +00004314 if (!Indices.empty() && !BasePointerType->getElementType()->isSized())
4315 return Error(Loc, "base element of getelementptr must be sized");
4316
4317 if (!GetElementPtrInst::getIndexedType(BaseType, Indices))
Chris Lattnerdf986172009-01-02 07:01:27 +00004318 return Error(Loc, "invalid getelementptr indices");
Jay Foada9203102011-07-25 09:48:08 +00004319 Inst = GetElementPtrInst::Create(Ptr, Indices);
Dan Gohmandd8004d2009-07-27 21:53:46 +00004320 if (InBounds)
Dan Gohmanf8dbee72009-09-07 23:54:19 +00004321 cast<GetElementPtrInst>(Inst)->setIsInBounds(true);
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004322 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerdf986172009-01-02 07:01:27 +00004323}
4324
4325/// ParseExtractValue
4326/// ::= 'extractvalue' TypeAndValue (',' uint32)+
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004327int LLParser::ParseExtractValue(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00004328 Value *Val; LocTy Loc;
4329 SmallVector<unsigned, 4> Indices;
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004330 bool AteExtraComma;
Chris Lattnerdf986172009-01-02 07:01:27 +00004331 if (ParseTypeAndValue(Val, Loc, PFS) ||
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004332 ParseIndexList(Indices, AteExtraComma))
Chris Lattnerdf986172009-01-02 07:01:27 +00004333 return true;
4334
Chris Lattnerfdfeb692010-02-12 20:49:41 +00004335 if (!Val->getType()->isAggregateType())
4336 return Error(Loc, "extractvalue operand must be aggregate type");
Chris Lattnerdf986172009-01-02 07:01:27 +00004337
Jay Foadfc6d3a42011-07-13 10:26:04 +00004338 if (!ExtractValueInst::getIndexedType(Val->getType(), Indices))
Chris Lattnerdf986172009-01-02 07:01:27 +00004339 return Error(Loc, "invalid indices for extractvalue");
Jay Foadfc6d3a42011-07-13 10:26:04 +00004340 Inst = ExtractValueInst::Create(Val, Indices);
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004341 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerdf986172009-01-02 07:01:27 +00004342}
4343
4344/// ParseInsertValue
4345/// ::= 'insertvalue' TypeAndValue ',' TypeAndValue (',' uint32)+
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004346int LLParser::ParseInsertValue(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00004347 Value *Val0, *Val1; LocTy Loc0, Loc1;
4348 SmallVector<unsigned, 4> Indices;
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004349 bool AteExtraComma;
Chris Lattnerdf986172009-01-02 07:01:27 +00004350 if (ParseTypeAndValue(Val0, Loc0, PFS) ||
4351 ParseToken(lltok::comma, "expected comma after insertvalue operand") ||
4352 ParseTypeAndValue(Val1, Loc1, PFS) ||
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004353 ParseIndexList(Indices, AteExtraComma))
Chris Lattnerdf986172009-01-02 07:01:27 +00004354 return true;
Michael Ilseman407a6162012-11-15 22:34:00 +00004355
Chris Lattnerfdfeb692010-02-12 20:49:41 +00004356 if (!Val0->getType()->isAggregateType())
4357 return Error(Loc0, "insertvalue operand must be aggregate type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00004358
Jay Foadfc6d3a42011-07-13 10:26:04 +00004359 if (!ExtractValueInst::getIndexedType(Val0->getType(), Indices))
Chris Lattnerdf986172009-01-02 07:01:27 +00004360 return Error(Loc0, "invalid indices for insertvalue");
Jay Foadfc6d3a42011-07-13 10:26:04 +00004361 Inst = InsertValueInst::Create(Val0, Val1, Indices);
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004362 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerdf986172009-01-02 07:01:27 +00004363}
Nick Lewycky21cc4462009-04-04 07:22:01 +00004364
4365//===----------------------------------------------------------------------===//
4366// Embedded metadata.
4367//===----------------------------------------------------------------------===//
4368
4369/// ParseMDNodeVector
Nick Lewyckycb337992009-05-10 20:57:05 +00004370/// ::= Element (',' Element)*
4371/// Element
4372/// ::= 'null' | TypeAndValue
Victor Hernandezbf170d42010-01-05 22:22:14 +00004373bool LLParser::ParseMDNodeVector(SmallVectorImpl<Value*> &Elts,
Victor Hernandez24e64df2010-01-10 07:14:18 +00004374 PerFunctionState *PFS) {
Dan Gohmanac809752010-07-13 19:33:27 +00004375 // Check for an empty list.
4376 if (Lex.getKind() == lltok::rbrace)
4377 return false;
4378
Nick Lewycky21cc4462009-04-04 07:22:01 +00004379 do {
Chris Lattnera7352392009-12-30 04:42:57 +00004380 // Null is a special case since it is typeless.
4381 if (EatIfPresent(lltok::kw_null)) {
4382 Elts.push_back(0);
4383 continue;
Nick Lewyckycb337992009-05-10 20:57:05 +00004384 }
Michael Ilseman407a6162012-11-15 22:34:00 +00004385
Chris Lattnera7352392009-12-30 04:42:57 +00004386 Value *V = 0;
Chris Lattner1afcace2011-07-09 17:41:24 +00004387 if (ParseTypeAndValue(V, PFS)) return true;
Nick Lewyckycb337992009-05-10 20:57:05 +00004388 Elts.push_back(V);
Nick Lewycky21cc4462009-04-04 07:22:01 +00004389 } while (EatIfPresent(lltok::comma));
4390
4391 return false;
4392}