blob: cbb72ef0125cc7999021dbb458e052692ff72ecb [file] [log] [blame]
Chris Lattnerac161bf2009-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 Carruthed0881b2012-12-03 16:50:05 +000015#include "llvm/ADT/SmallPtrSet.h"
Chandler Carruth91065212014-03-05 10:34:14 +000016#include "llvm/IR/AutoUpgrade.h"
Chandler Carruth9fb823b2013-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 Ren209b17c2013-09-28 00:22:27 +000022#include "llvm/IR/LLVMContext.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000023#include "llvm/IR/Module.h"
24#include "llvm/IR/Operator.h"
25#include "llvm/IR/ValueSymbolTable.h"
Torok Edwin56d06592009-07-11 20:10:48 +000026#include "llvm/Support/ErrorHandling.h"
Chris Lattnerac161bf2009-01-02 07:01:27 +000027#include "llvm/Support/raw_ostream.h"
28using namespace llvm;
29
Chris Lattner229907c2011-07-18 04:54:35 +000030static std::string getTypeString(Type *T) {
Chris Lattner0f214eb2011-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 Lattner3822f632009-01-02 08:05:26 +000037/// Run: module ::= toplevelentity*
Chris Lattnerad6f3352009-01-04 20:44:11 +000038bool LLParser::Run() {
Chris Lattner3822f632009-01-02 08:05:26 +000039 // Prime the lexer.
40 Lex.Lex();
41
Chris Lattnerad6f3352009-01-04 20:44:11 +000042 return ParseTopLevelEntities() ||
43 ValidateEndOfModule();
Chris Lattnerac161bf2009-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 Lattner8eff0152010-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 Ilseman26ee2b82012-11-15 22:34:00 +000056
Chris Lattner8eff0152010-04-01 05:14:45 +000057 for (unsigned i = 0, e = MDList.size(); i != e; ++i) {
58 unsigned SlotNo = MDList[i].MDSlot;
Michael Ilseman26ee2b82012-11-15 22:34:00 +000059
Craig Topper2617dcc2014-04-15 06:32:26 +000060 if (SlotNo >= NumberedMetadata.size() ||
61 NumberedMetadata[SlotNo] == nullptr)
Chris Lattner8eff0152010-04-01 05:14:45 +000062 return Error(MDList[i].Loc, "use of undefined metadata '!" +
Benjamin Kramerc7583112010-09-27 17:42:11 +000063 Twine(SlotNo) + "'");
Chris Lattner8eff0152010-04-01 05:14:45 +000064 Inst->setMetadata(MDList[i].MDKind, NumberedMetadata[SlotNo]);
65 }
66 }
67 ForwardRefInstMetadata.clear();
68 }
Michael Ilseman26ee2b82012-11-15 22:34:00 +000069
Manman Ren209b17c2013-09-28 00:22:27 +000070 for (unsigned I = 0, E = InstsWithTBAATag.size(); I < E; I++)
71 UpgradeInstWithTBAATag(InstsWithTBAATag[I]);
72
Bill Wendlingb32b0412013-02-08 06:32:06 +000073 // Handle any function attribute group forward references.
74 for (std::map<Value*, std::vector<unsigned> >::iterator
75 I = ForwardRefAttrGroups.begin(), E = ForwardRefAttrGroups.end();
76 I != E; ++I) {
77 Value *V = I->first;
78 std::vector<unsigned> &Vec = I->second;
79 AttrBuilder B;
80
81 for (std::vector<unsigned>::iterator VI = Vec.begin(), VE = Vec.end();
82 VI != VE; ++VI)
83 B.merge(NumberedAttrBuilders[*VI]);
84
85 if (Function *Fn = dyn_cast<Function>(V)) {
86 AttributeSet AS = Fn->getAttributes();
87 AttrBuilder FnAttrs(AS.getFnAttributes(), AttributeSet::FunctionIndex);
88 AS = AS.removeAttributes(Context, AttributeSet::FunctionIndex,
89 AS.getFnAttributes());
90
91 FnAttrs.merge(B);
92
93 // If the alignment was parsed as an attribute, move to the alignment
94 // field.
95 if (FnAttrs.hasAlignmentAttr()) {
96 Fn->setAlignment(FnAttrs.getAlignment());
97 FnAttrs.removeAttribute(Attribute::Alignment);
98 }
99
100 AS = AS.addAttributes(Context, AttributeSet::FunctionIndex,
101 AttributeSet::get(Context,
102 AttributeSet::FunctionIndex,
103 FnAttrs));
104 Fn->setAttributes(AS);
105 } else if (CallInst *CI = dyn_cast<CallInst>(V)) {
106 AttributeSet AS = CI->getAttributes();
107 AttrBuilder FnAttrs(AS.getFnAttributes(), AttributeSet::FunctionIndex);
108 AS = AS.removeAttributes(Context, AttributeSet::FunctionIndex,
109 AS.getFnAttributes());
Bill Wendling59dce372013-02-12 10:13:06 +0000110 FnAttrs.merge(B);
Bill Wendlingb32b0412013-02-08 06:32:06 +0000111 AS = AS.addAttributes(Context, AttributeSet::FunctionIndex,
112 AttributeSet::get(Context,
113 AttributeSet::FunctionIndex,
114 FnAttrs));
115 CI->setAttributes(AS);
116 } else if (InvokeInst *II = dyn_cast<InvokeInst>(V)) {
117 AttributeSet AS = II->getAttributes();
118 AttrBuilder FnAttrs(AS.getFnAttributes(), AttributeSet::FunctionIndex);
119 AS = AS.removeAttributes(Context, AttributeSet::FunctionIndex,
120 AS.getFnAttributes());
Bill Wendling59dce372013-02-12 10:13:06 +0000121 FnAttrs.merge(B);
Bill Wendlingb32b0412013-02-08 06:32:06 +0000122 AS = AS.addAttributes(Context, AttributeSet::FunctionIndex,
123 AttributeSet::get(Context,
124 AttributeSet::FunctionIndex,
125 FnAttrs));
126 II->setAttributes(AS);
127 } else {
128 llvm_unreachable("invalid object with forward attribute group reference");
129 }
130 }
Michael Ilseman26ee2b82012-11-15 22:34:00 +0000131
Chris Lattner3432c622009-10-28 03:39:23 +0000132 // If there are entries in ForwardRefBlockAddresses at this point, they are
133 // references after the function was defined. Resolve those now.
134 while (!ForwardRefBlockAddresses.empty()) {
135 // Okay, we are referencing an already-parsed function, resolve them now.
Craig Topper2617dcc2014-04-15 06:32:26 +0000136 Function *TheFn = nullptr;
Chris Lattner3432c622009-10-28 03:39:23 +0000137 const ValID &Fn = ForwardRefBlockAddresses.begin()->first;
138 if (Fn.Kind == ValID::t_GlobalName)
139 TheFn = M->getFunction(Fn.StrVal);
140 else if (Fn.UIntVal < NumberedVals.size())
141 TheFn = dyn_cast<Function>(NumberedVals[Fn.UIntVal]);
Michael Ilseman26ee2b82012-11-15 22:34:00 +0000142
Craig Topper2617dcc2014-04-15 06:32:26 +0000143 if (!TheFn)
Chris Lattner3432c622009-10-28 03:39:23 +0000144 return Error(Fn.Loc, "unknown function referenced by blockaddress");
Michael Ilseman26ee2b82012-11-15 22:34:00 +0000145
Chris Lattner3432c622009-10-28 03:39:23 +0000146 // Resolve all these references.
Michael Ilseman26ee2b82012-11-15 22:34:00 +0000147 if (ResolveForwardRefBlockAddresses(TheFn,
Chris Lattner3432c622009-10-28 03:39:23 +0000148 ForwardRefBlockAddresses.begin()->second,
Craig Topper2617dcc2014-04-15 06:32:26 +0000149 nullptr))
Chris Lattner3432c622009-10-28 03:39:23 +0000150 return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +0000151
Chris Lattner3432c622009-10-28 03:39:23 +0000152 ForwardRefBlockAddresses.erase(ForwardRefBlockAddresses.begin());
153 }
Michael Ilseman26ee2b82012-11-15 22:34:00 +0000154
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000155 for (unsigned i = 0, e = NumberedTypes.size(); i != e; ++i)
156 if (NumberedTypes[i].second.isValid())
157 return Error(NumberedTypes[i].second,
158 "use of undefined type '%" + Twine(i) + "'");
159
160 for (StringMap<std::pair<Type*, LocTy> >::iterator I =
161 NamedTypes.begin(), E = NamedTypes.end(); I != E; ++I)
162 if (I->second.second.isValid())
163 return Error(I->second.second,
164 "use of undefined type named '" + I->getKey() + "'");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000165
Chris Lattnerac161bf2009-01-02 07:01:27 +0000166 if (!ForwardRefVals.empty())
167 return Error(ForwardRefVals.begin()->second.second,
168 "use of undefined value '@" + ForwardRefVals.begin()->first +
169 "'");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000170
Chris Lattnerac161bf2009-01-02 07:01:27 +0000171 if (!ForwardRefValIDs.empty())
172 return Error(ForwardRefValIDs.begin()->second.second,
173 "use of undefined value '@" +
Benjamin Kramerc7583112010-09-27 17:42:11 +0000174 Twine(ForwardRefValIDs.begin()->first) + "'");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000175
Devang Pateld2541152009-07-08 19:23:54 +0000176 if (!ForwardRefMDNodes.empty())
177 return Error(ForwardRefMDNodes.begin()->second.second,
178 "use of undefined metadata '!" +
Benjamin Kramerc7583112010-09-27 17:42:11 +0000179 Twine(ForwardRefMDNodes.begin()->first) + "'");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000180
Devang Pateld2541152009-07-08 19:23:54 +0000181
Chris Lattnerac161bf2009-01-02 07:01:27 +0000182 // Look for intrinsic functions and CallInst that need to be upgraded
183 for (Module::iterator FI = M->begin(), FE = M->end(); FI != FE; )
184 UpgradeCallsToIntrinsic(FI++); // must be post-increment, as we remove
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000185
Manman Ren8b4306c2013-12-02 21:29:56 +0000186 UpgradeDebugInfo(*M);
187
Chris Lattnerac161bf2009-01-02 07:01:27 +0000188 return false;
189}
190
Michael Ilseman26ee2b82012-11-15 22:34:00 +0000191bool LLParser::ResolveForwardRefBlockAddresses(Function *TheFn,
Chris Lattner3432c622009-10-28 03:39:23 +0000192 std::vector<std::pair<ValID, GlobalValue*> > &Refs,
193 PerFunctionState *PFS) {
194 // Loop over all the references, resolving them.
195 for (unsigned i = 0, e = Refs.size(); i != e; ++i) {
196 BasicBlock *Res;
Chris Lattneraa99c942009-11-01 01:27:45 +0000197 if (PFS) {
Chris Lattner3432c622009-10-28 03:39:23 +0000198 if (Refs[i].first.Kind == ValID::t_LocalName)
199 Res = PFS->GetBB(Refs[i].first.StrVal, Refs[i].first.Loc);
Chris Lattneraa99c942009-11-01 01:27:45 +0000200 else
Chris Lattner3432c622009-10-28 03:39:23 +0000201 Res = PFS->GetBB(Refs[i].first.UIntVal, Refs[i].first.Loc);
202 } else if (Refs[i].first.Kind == ValID::t_LocalID) {
203 return Error(Refs[i].first.Loc,
Chris Lattnera38a4df2009-11-02 18:28:45 +0000204 "cannot take address of numeric label after the function is defined");
Chris Lattner3432c622009-10-28 03:39:23 +0000205 } else {
206 Res = dyn_cast_or_null<BasicBlock>(
207 TheFn->getValueSymbolTable().lookup(Refs[i].first.StrVal));
208 }
Michael Ilseman26ee2b82012-11-15 22:34:00 +0000209
Craig Topper2617dcc2014-04-15 06:32:26 +0000210 if (!Res)
Chris Lattner3432c622009-10-28 03:39:23 +0000211 return Error(Refs[i].first.Loc,
212 "referenced value is not a basic block");
Michael Ilseman26ee2b82012-11-15 22:34:00 +0000213
Chris Lattner3432c622009-10-28 03:39:23 +0000214 // Get the BlockAddress for this and update references to use it.
215 BlockAddress *BA = BlockAddress::get(TheFn, Res);
216 Refs[i].second->replaceAllUsesWith(BA);
217 Refs[i].second->eraseFromParent();
218 }
219 return false;
220}
221
222
Chris Lattnerac161bf2009-01-02 07:01:27 +0000223//===----------------------------------------------------------------------===//
224// Top-Level Entities
225//===----------------------------------------------------------------------===//
226
227bool LLParser::ParseTopLevelEntities() {
Chris Lattnerac161bf2009-01-02 07:01:27 +0000228 while (1) {
229 switch (Lex.getKind()) {
230 default: return TokError("expected top-level entity");
231 case lltok::Eof: return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000232 case lltok::kw_declare: if (ParseDeclare()) return true; break;
233 case lltok::kw_define: if (ParseDefine()) return true; break;
234 case lltok::kw_module: if (ParseModuleAsm()) return true; break;
235 case lltok::kw_target: if (ParseTargetDefinition()) return true; break;
Bill Wendling706d3d62012-11-28 08:41:48 +0000236 case lltok::kw_deplibs: if (ParseDepLibs()) return true; break;
Dan Gohman466876b2009-08-12 23:32:33 +0000237 case lltok::LocalVarID: if (ParseUnnamedType()) return true; break;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000238 case lltok::LocalVar: if (ParseNamedType()) return true; break;
Dan Gohman466876b2009-08-12 23:32:33 +0000239 case lltok::GlobalID: if (ParseUnnamedGlobal()) return true; break;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000240 case lltok::GlobalVar: if (ParseNamedGlobal()) return true; break;
Chris Lattner1eed2d62009-12-30 04:56:59 +0000241 case lltok::exclaim: if (ParseStandaloneMetadata()) return true; break;
Bill Wendling63b88192013-02-06 06:52:58 +0000242 case lltok::MetadataVar:if (ParseNamedMetadata()) return true; break;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000243
244 // The Global variable production with no name can have many different
245 // optional leading prefixes, the production is:
Nico Rieck7157bb72014-01-14 15:22:47 +0000246 // GlobalVar ::= OptionalLinkage OptionalVisibility OptionalDLLStorageClass
247 // OptionalThreadLocal OptionalAddrSpace OptionalUnNammedAddr
Rafael Espindola45e6c192011-01-08 16:42:36 +0000248 // ('constant'|'global') ...
Bill Wendling03bcd6e2010-07-01 21:55:59 +0000249 case lltok::kw_private: // OptionalLinkage
Bill Wendling03bcd6e2010-07-01 21:55:59 +0000250 case lltok::kw_internal: // OptionalLinkage
Saleem Abdulrasoolc1281352014-04-05 20:51:58 +0000251 case lltok::kw_linker_private: // Obsolete OptionalLinkage
252 case lltok::kw_linker_private_weak: // Obsolete OptionalLinkage
Bill Wendling03bcd6e2010-07-01 21:55:59 +0000253 case lltok::kw_weak: // OptionalLinkage
254 case lltok::kw_weak_odr: // OptionalLinkage
255 case lltok::kw_linkonce: // OptionalLinkage
256 case lltok::kw_linkonce_odr: // OptionalLinkage
257 case lltok::kw_appending: // OptionalLinkage
Bill Wendling03bcd6e2010-07-01 21:55:59 +0000258 case lltok::kw_common: // OptionalLinkage
Bill Wendling03bcd6e2010-07-01 21:55:59 +0000259 case lltok::kw_extern_weak: // OptionalLinkage
Rafael Espindola52b74422014-06-03 20:00:20 +0000260 case lltok::kw_external: // OptionalLinkage
261 case lltok::kw_default: // OptionalVisibility
262 case lltok::kw_hidden: // OptionalVisibility
263 case lltok::kw_protected: // OptionalVisibility
Rafael Espindola63e92fb2014-06-03 20:07:32 +0000264 case lltok::kw_dllimport: // OptionalDLLStorageClass
265 case lltok::kw_dllexport: // OptionalDLLStorageClass
Rafael Espindola52b74422014-06-03 20:00:20 +0000266 case lltok::kw_thread_local: // OptionalThreadLocal
267 case lltok::kw_addrspace: // OptionalAddrSpace
268 case lltok::kw_constant: // GlobalType
269 case lltok::kw_global: { // GlobalType
Nico Rieck7157bb72014-01-14 15:22:47 +0000270 unsigned Linkage, Visibility, DLLStorageClass;
Rafael Espindola59f7eba2014-05-28 18:15:43 +0000271 GlobalVariable::ThreadLocalMode TLM;
Rafael Espindola52b74422014-06-03 20:00:20 +0000272 bool HasLinkage;
273 if (ParseOptionalLinkage(Linkage, HasLinkage) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +0000274 ParseOptionalVisibility(Visibility) ||
Nico Rieck7157bb72014-01-14 15:22:47 +0000275 ParseOptionalDLLStorageClass(DLLStorageClass) ||
Rafael Espindola59f7eba2014-05-28 18:15:43 +0000276 ParseOptionalThreadLocal(TLM) ||
Rafael Espindola52b74422014-06-03 20:00:20 +0000277 ParseGlobal("", SMLoc(), Linkage, HasLinkage, Visibility,
278 DLLStorageClass, TLM))
Chris Lattnerac161bf2009-01-02 07:01:27 +0000279 return true;
280 break;
281 }
Bill Wendlinga7c38772013-02-09 15:48:49 +0000282
283 case lltok::kw_attributes: if (ParseUnnamedAttrGrp()) return true; break;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000284 }
285 }
286}
287
288
289/// toplevelentity
290/// ::= 'module' 'asm' STRINGCONSTANT
291bool LLParser::ParseModuleAsm() {
292 assert(Lex.getKind() == lltok::kw_module);
293 Lex.Lex();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000294
295 std::string AsmStr;
Chris Lattner3822f632009-01-02 08:05:26 +0000296 if (ParseToken(lltok::kw_asm, "expected 'module asm'") ||
297 ParseStringConstant(AsmStr)) return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000298
Rafael Espindola1e49a6d2011-03-02 04:14:42 +0000299 M->appendModuleInlineAsm(AsmStr);
Chris Lattnerac161bf2009-01-02 07:01:27 +0000300 return false;
301}
302
303/// toplevelentity
304/// ::= 'target' 'triple' '=' STRINGCONSTANT
305/// ::= 'target' 'datalayout' '=' STRINGCONSTANT
306bool LLParser::ParseTargetDefinition() {
307 assert(Lex.getKind() == lltok::kw_target);
Chris Lattner3822f632009-01-02 08:05:26 +0000308 std::string Str;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000309 switch (Lex.Lex()) {
310 default: return TokError("unknown target property");
311 case lltok::kw_triple:
312 Lex.Lex();
Chris Lattner3822f632009-01-02 08:05:26 +0000313 if (ParseToken(lltok::equal, "expected '=' after target triple") ||
314 ParseStringConstant(Str))
Chris Lattnerac161bf2009-01-02 07:01:27 +0000315 return true;
Chris Lattner3822f632009-01-02 08:05:26 +0000316 M->setTargetTriple(Str);
Chris Lattnerac161bf2009-01-02 07:01:27 +0000317 return false;
318 case lltok::kw_datalayout:
319 Lex.Lex();
Chris Lattner3822f632009-01-02 08:05:26 +0000320 if (ParseToken(lltok::equal, "expected '=' after target datalayout") ||
321 ParseStringConstant(Str))
Chris Lattnerac161bf2009-01-02 07:01:27 +0000322 return true;
Chris Lattner3822f632009-01-02 08:05:26 +0000323 M->setDataLayout(Str);
Chris Lattnerac161bf2009-01-02 07:01:27 +0000324 return false;
325 }
326}
327
Bill Wendling706d3d62012-11-28 08:41:48 +0000328/// toplevelentity
329/// ::= 'deplibs' '=' '[' ']'
330/// ::= 'deplibs' '=' '[' STRINGCONSTANT (',' STRINGCONSTANT)* ']'
331/// FIXME: Remove in 4.0. Currently parse, but ignore.
332bool LLParser::ParseDepLibs() {
333 assert(Lex.getKind() == lltok::kw_deplibs);
334 Lex.Lex();
335 if (ParseToken(lltok::equal, "expected '=' after deplibs") ||
336 ParseToken(lltok::lsquare, "expected '=' after deplibs"))
337 return true;
338
339 if (EatIfPresent(lltok::rsquare))
340 return false;
341
342 do {
343 std::string Str;
344 if (ParseStringConstant(Str)) return true;
345 } while (EatIfPresent(lltok::comma));
346
347 return ParseToken(lltok::rsquare, "expected ']' at end of list");
348}
349
Dan Gohman466876b2009-08-12 23:32:33 +0000350/// ParseUnnamedType:
Dan Gohman466876b2009-08-12 23:32:33 +0000351/// ::= LocalVarID '=' 'type' type
Chris Lattnerac161bf2009-01-02 07:01:27 +0000352bool LLParser::ParseUnnamedType() {
Chris Lattner07037362011-06-18 23:51:31 +0000353 LocTy TypeLoc = Lex.getLoc();
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000354 unsigned TypeID = Lex.getUIntVal();
Chris Lattner8936d2b2011-06-19 00:03:46 +0000355 Lex.Lex(); // eat LocalVarID;
356
357 if (ParseToken(lltok::equal, "expected '=' after name") ||
358 ParseToken(lltok::kw_type, "expected 'type' after '='"))
359 return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000360
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000361 if (TypeID >= NumberedTypes.size())
362 NumberedTypes.resize(TypeID+1);
Michael Ilseman26ee2b82012-11-15 22:34:00 +0000363
Craig Topper2617dcc2014-04-15 06:32:26 +0000364 Type *Result = nullptr;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000365 if (ParseStructDefinition(TypeLoc, "",
366 NumberedTypes[TypeID], Result)) return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +0000367
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000368 if (!isa<StructType>(Result)) {
369 std::pair<Type*, LocTy> &Entry = NumberedTypes[TypeID];
370 if (Entry.first)
371 return Error(TypeLoc, "non-struct types may not be recursive");
372 Entry.first = Result;
373 Entry.second = SMLoc();
Chris Lattnerac161bf2009-01-02 07:01:27 +0000374 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000375
Chris Lattnerac161bf2009-01-02 07:01:27 +0000376 return false;
377}
378
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000379
Chris Lattnerac161bf2009-01-02 07:01:27 +0000380/// toplevelentity
381/// ::= LocalVar '=' 'type' type
382bool LLParser::ParseNamedType() {
383 std::string Name = Lex.getStrVal();
384 LocTy NameLoc = Lex.getLoc();
Chris Lattner3822f632009-01-02 08:05:26 +0000385 Lex.Lex(); // eat LocalVar.
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000386
Chris Lattner3822f632009-01-02 08:05:26 +0000387 if (ParseToken(lltok::equal, "expected '=' after name") ||
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000388 ParseToken(lltok::kw_type, "expected 'type' after name"))
Chris Lattner3822f632009-01-02 08:05:26 +0000389 return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +0000390
Craig Topper2617dcc2014-04-15 06:32:26 +0000391 Type *Result = nullptr;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000392 if (ParseStructDefinition(NameLoc, Name,
393 NamedTypes[Name], Result)) return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +0000394
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000395 if (!isa<StructType>(Result)) {
396 std::pair<Type*, LocTy> &Entry = NamedTypes[Name];
397 if (Entry.first)
398 return Error(NameLoc, "non-struct types may not be recursive");
399 Entry.first = Result;
400 Entry.second = SMLoc();
Chris Lattnerac161bf2009-01-02 07:01:27 +0000401 }
Michael Ilseman26ee2b82012-11-15 22:34:00 +0000402
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000403 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000404}
405
406
407/// toplevelentity
408/// ::= 'declare' FunctionHeader
409bool LLParser::ParseDeclare() {
410 assert(Lex.getKind() == lltok::kw_declare);
411 Lex.Lex();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000412
Chris Lattnerac161bf2009-01-02 07:01:27 +0000413 Function *F;
414 return ParseFunctionHeader(F, false);
415}
416
417/// toplevelentity
418/// ::= 'define' FunctionHeader '{' ...
419bool LLParser::ParseDefine() {
420 assert(Lex.getKind() == lltok::kw_define);
421 Lex.Lex();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000422
Chris Lattnerac161bf2009-01-02 07:01:27 +0000423 Function *F;
Chris Lattner3822f632009-01-02 08:05:26 +0000424 return ParseFunctionHeader(F, true) ||
425 ParseFunctionBody(*F);
Chris Lattnerac161bf2009-01-02 07:01:27 +0000426}
427
Chris Lattner3822f632009-01-02 08:05:26 +0000428/// ParseGlobalType
429/// ::= 'constant'
430/// ::= 'global'
Chris Lattnerac161bf2009-01-02 07:01:27 +0000431bool LLParser::ParseGlobalType(bool &IsConstant) {
432 if (Lex.getKind() == lltok::kw_constant)
433 IsConstant = true;
434 else if (Lex.getKind() == lltok::kw_global)
435 IsConstant = false;
Duncan Sandsd1de45a2009-02-10 16:24:55 +0000436 else {
437 IsConstant = false;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000438 return TokError("expected 'global' or 'constant'");
Duncan Sandsd1de45a2009-02-10 16:24:55 +0000439 }
Chris Lattnerac161bf2009-01-02 07:01:27 +0000440 Lex.Lex();
441 return false;
442}
443
Dan Gohman466876b2009-08-12 23:32:33 +0000444/// ParseUnnamedGlobal:
445/// OptionalVisibility ALIAS ...
Nico Rieck7157bb72014-01-14 15:22:47 +0000446/// OptionalLinkage OptionalVisibility OptionalDLLStorageClass
447/// ... -> global variable
Dan Gohman466876b2009-08-12 23:32:33 +0000448/// GlobalID '=' OptionalVisibility ALIAS ...
Nico Rieck7157bb72014-01-14 15:22:47 +0000449/// GlobalID '=' OptionalLinkage OptionalVisibility OptionalDLLStorageClass
450/// ... -> global variable
Dan Gohman466876b2009-08-12 23:32:33 +0000451bool LLParser::ParseUnnamedGlobal() {
452 unsigned VarID = NumberedVals.size();
453 std::string Name;
454 LocTy NameLoc = Lex.getLoc();
455
456 // Handle the GlobalID form.
457 if (Lex.getKind() == lltok::GlobalID) {
458 if (Lex.getUIntVal() != VarID)
459 return Error(Lex.getLoc(), "variable expected to be numbered '%" +
Benjamin Kramerc7583112010-09-27 17:42:11 +0000460 Twine(VarID) + "'");
Dan Gohman466876b2009-08-12 23:32:33 +0000461 Lex.Lex(); // eat GlobalID;
462
463 if (ParseToken(lltok::equal, "expected '=' after name"))
464 return true;
465 }
466
467 bool HasLinkage;
Nico Rieck7157bb72014-01-14 15:22:47 +0000468 unsigned Linkage, Visibility, DLLStorageClass;
Rafael Espindola59f7eba2014-05-28 18:15:43 +0000469 GlobalVariable::ThreadLocalMode TLM;
Dan Gohman466876b2009-08-12 23:32:33 +0000470 if (ParseOptionalLinkage(Linkage, HasLinkage) ||
Nico Rieck7157bb72014-01-14 15:22:47 +0000471 ParseOptionalVisibility(Visibility) ||
Rafael Espindola59f7eba2014-05-28 18:15:43 +0000472 ParseOptionalDLLStorageClass(DLLStorageClass) ||
473 ParseOptionalThreadLocal(TLM))
Dan Gohman466876b2009-08-12 23:32:33 +0000474 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000475
Dan Gohman466876b2009-08-12 23:32:33 +0000476 if (HasLinkage || Lex.getKind() != lltok::kw_alias)
Nico Rieck7157bb72014-01-14 15:22:47 +0000477 return ParseGlobal(Name, NameLoc, Linkage, HasLinkage, Visibility,
Rafael Espindola59f7eba2014-05-28 18:15:43 +0000478 DLLStorageClass, TLM);
479 return ParseAlias(Name, NameLoc, Visibility, DLLStorageClass, TLM);
Dan Gohman466876b2009-08-12 23:32:33 +0000480}
481
Chris Lattnerac161bf2009-01-02 07:01:27 +0000482/// ParseNamedGlobal:
483/// GlobalVar '=' OptionalVisibility ALIAS ...
Nico Rieck7157bb72014-01-14 15:22:47 +0000484/// GlobalVar '=' OptionalLinkage OptionalVisibility OptionalDLLStorageClass
485/// ... -> global variable
Chris Lattnerac161bf2009-01-02 07:01:27 +0000486bool LLParser::ParseNamedGlobal() {
487 assert(Lex.getKind() == lltok::GlobalVar);
488 LocTy NameLoc = Lex.getLoc();
489 std::string Name = Lex.getStrVal();
490 Lex.Lex();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000491
Chris Lattnerac161bf2009-01-02 07:01:27 +0000492 bool HasLinkage;
Nico Rieck7157bb72014-01-14 15:22:47 +0000493 unsigned Linkage, Visibility, DLLStorageClass;
Rafael Espindola59f7eba2014-05-28 18:15:43 +0000494 GlobalVariable::ThreadLocalMode TLM;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000495 if (ParseToken(lltok::equal, "expected '=' in global variable") ||
496 ParseOptionalLinkage(Linkage, HasLinkage) ||
Nico Rieck7157bb72014-01-14 15:22:47 +0000497 ParseOptionalVisibility(Visibility) ||
Rafael Espindola59f7eba2014-05-28 18:15:43 +0000498 ParseOptionalDLLStorageClass(DLLStorageClass) ||
499 ParseOptionalThreadLocal(TLM))
Chris Lattnerac161bf2009-01-02 07:01:27 +0000500 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000501
Chris Lattnerac161bf2009-01-02 07:01:27 +0000502 if (HasLinkage || Lex.getKind() != lltok::kw_alias)
Nico Rieck7157bb72014-01-14 15:22:47 +0000503 return ParseGlobal(Name, NameLoc, Linkage, HasLinkage, Visibility,
Rafael Espindola59f7eba2014-05-28 18:15:43 +0000504 DLLStorageClass, TLM);
505 return ParseAlias(Name, NameLoc, Visibility, DLLStorageClass, TLM);
Chris Lattnerac161bf2009-01-02 07:01:27 +0000506}
507
Devang Patel8ff0f8d2009-07-20 19:00:08 +0000508// MDString:
509// ::= '!' STRINGCONSTANT
Chris Lattner1797fc72009-12-29 21:53:55 +0000510bool LLParser::ParseMDString(MDString *&Result) {
Devang Patel8ff0f8d2009-07-20 19:00:08 +0000511 std::string Str;
512 if (ParseStringConstant(Str)) return true;
Chris Lattner1797fc72009-12-29 21:53:55 +0000513 Result = MDString::get(Context, Str);
Devang Patel8ff0f8d2009-07-20 19:00:08 +0000514 return false;
515}
516
517// MDNode:
518// ::= '!' MDNodeNumber
Chris Lattner8eff0152010-04-01 05:14:45 +0000519//
520/// This version of ParseMDNodeID returns the slot number and null in the case
521/// of a forward reference.
522bool LLParser::ParseMDNodeID(MDNode *&Result, unsigned &SlotNo) {
523 // !{ ..., !42, ... }
524 if (ParseUInt32(SlotNo)) return true;
525
526 // Check existing MDNode.
Craig Topper2617dcc2014-04-15 06:32:26 +0000527 if (SlotNo < NumberedMetadata.size() && NumberedMetadata[SlotNo] != nullptr)
Chris Lattner8eff0152010-04-01 05:14:45 +0000528 Result = NumberedMetadata[SlotNo];
529 else
Craig Topper2617dcc2014-04-15 06:32:26 +0000530 Result = nullptr;
Chris Lattner8eff0152010-04-01 05:14:45 +0000531 return false;
532}
533
Chris Lattner6dac02a2009-12-30 04:15:23 +0000534bool LLParser::ParseMDNodeID(MDNode *&Result) {
Devang Patel8ff0f8d2009-07-20 19:00:08 +0000535 // !{ ..., !42, ... }
536 unsigned MID = 0;
Chris Lattner8eff0152010-04-01 05:14:45 +0000537 if (ParseMDNodeID(Result, MID)) return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000538
Chris Lattner8eff0152010-04-01 05:14:45 +0000539 // If not a forward reference, just return it now.
540 if (Result) return false;
Devang Patel8ff0f8d2009-07-20 19:00:08 +0000541
Chris Lattner8eff0152010-04-01 05:14:45 +0000542 // Otherwise, create MDNode forward reference.
Dmitri Gribenko3238fb72013-05-05 00:40:33 +0000543 MDNode *FwdNode = MDNode::getTemporary(Context, None);
Devang Patel8ff0f8d2009-07-20 19:00:08 +0000544 ForwardRefMDNodes[MID] = std::make_pair(FwdNode, Lex.getLoc());
Michael Ilseman26ee2b82012-11-15 22:34:00 +0000545
Chris Lattnerfc58af22009-12-30 04:51:58 +0000546 if (NumberedMetadata.size() <= MID)
547 NumberedMetadata.resize(MID+1);
548 NumberedMetadata[MID] = FwdNode;
Chris Lattner1797fc72009-12-29 21:53:55 +0000549 Result = FwdNode;
Devang Patel8ff0f8d2009-07-20 19:00:08 +0000550 return false;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000551}
Devang Patel8ff0f8d2009-07-20 19:00:08 +0000552
Chris Lattnerf2fe7ff2009-12-29 22:35:39 +0000553/// ParseNamedMetadata:
Devang Patelbe626972009-07-29 00:34:02 +0000554/// !foo = !{ !1, !2 }
555bool LLParser::ParseNamedMetadata() {
Chris Lattnereafe4de2009-12-30 05:02:06 +0000556 assert(Lex.getKind() == lltok::MetadataVar);
Devang Patelbe626972009-07-29 00:34:02 +0000557 std::string Name = Lex.getStrVal();
Chris Lattnereafe4de2009-12-30 05:02:06 +0000558 Lex.Lex();
Devang Patelbe626972009-07-29 00:34:02 +0000559
Chris Lattnerf2fe7ff2009-12-29 22:35:39 +0000560 if (ParseToken(lltok::equal, "expected '=' here") ||
Chris Lattner1eed2d62009-12-30 04:56:59 +0000561 ParseToken(lltok::exclaim, "Expected '!' here") ||
Chris Lattnerf2fe7ff2009-12-29 22:35:39 +0000562 ParseToken(lltok::lbrace, "Expected '{' here"))
Devang Patelbe626972009-07-29 00:34:02 +0000563 return true;
564
Dan Gohman2637cc12010-07-21 23:38:33 +0000565 NamedMDNode *NMD = M->getOrInsertNamedMetadata(Name);
Dan Gohmanafd69cf2010-07-13 19:42:44 +0000566 if (Lex.getKind() != lltok::rbrace)
567 do {
Dan Gohmanafd69cf2010-07-13 19:42:44 +0000568 if (ParseToken(lltok::exclaim, "Expected '!' here"))
569 return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +0000570
Craig Topper2617dcc2014-04-15 06:32:26 +0000571 MDNode *N = nullptr;
Dan Gohmanafd69cf2010-07-13 19:42:44 +0000572 if (ParseMDNodeID(N)) return true;
Dan Gohman2637cc12010-07-21 23:38:33 +0000573 NMD->addOperand(N);
Dan Gohmanafd69cf2010-07-13 19:42:44 +0000574 } while (EatIfPresent(lltok::comma));
Devang Patelbe626972009-07-29 00:34:02 +0000575
576 if (ParseToken(lltok::rbrace, "expected end of metadata node"))
577 return true;
578
Devang Patelbe626972009-07-29 00:34:02 +0000579 return false;
580}
581
Devang Patel39e64d42009-07-01 19:21:12 +0000582/// ParseStandaloneMetadata:
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000583/// !42 = !{...}
Devang Patel39e64d42009-07-01 19:21:12 +0000584bool LLParser::ParseStandaloneMetadata() {
Chris Lattner1eed2d62009-12-30 04:56:59 +0000585 assert(Lex.getKind() == lltok::exclaim);
Devang Patel39e64d42009-07-01 19:21:12 +0000586 Lex.Lex();
587 unsigned MetadataID = 0;
Devang Patel39e64d42009-07-01 19:21:12 +0000588
589 LocTy TyLoc;
Craig Topper2617dcc2014-04-15 06:32:26 +0000590 Type *Ty = nullptr;
Devang Patele059ba6e2009-07-23 01:07:34 +0000591 SmallVector<Value *, 16> Elts;
Chris Lattner278bc952009-12-29 22:40:21 +0000592 if (ParseUInt32(MetadataID) ||
593 ParseToken(lltok::equal, "expected '=' here") ||
594 ParseType(Ty, TyLoc) ||
Chris Lattner1eed2d62009-12-30 04:56:59 +0000595 ParseToken(lltok::exclaim, "Expected '!' here") ||
Chris Lattner278bc952009-12-29 22:40:21 +0000596 ParseToken(lltok::lbrace, "Expected '{' here") ||
Craig Topper2617dcc2014-04-15 06:32:26 +0000597 ParseMDNodeVector(Elts, nullptr) ||
Chris Lattner278bc952009-12-29 22:40:21 +0000598 ParseToken(lltok::rbrace, "expected end of metadata node"))
Devang Patele059ba6e2009-07-23 01:07:34 +0000599 return true;
600
Jay Foad5514afe2011-04-21 19:59:31 +0000601 MDNode *Init = MDNode::get(Context, Elts);
Michael Ilseman26ee2b82012-11-15 22:34:00 +0000602
Chris Lattnerfc58af22009-12-30 04:51:58 +0000603 // See if this was forward referenced, if so, handle it.
Chris Lattner218b22f2009-12-29 21:43:58 +0000604 std::map<unsigned, std::pair<TrackingVH<MDNode>, LocTy> >::iterator
Devang Pateld2541152009-07-08 19:23:54 +0000605 FI = ForwardRefMDNodes.find(MetadataID);
606 if (FI != ForwardRefMDNodes.end()) {
Dan Gohman16a5d982010-08-20 22:02:26 +0000607 MDNode *Temp = FI->second.first;
608 Temp->replaceAllUsesWith(Init);
609 MDNode::deleteTemporary(Temp);
Devang Pateld2541152009-07-08 19:23:54 +0000610 ForwardRefMDNodes.erase(FI);
Michael Ilseman26ee2b82012-11-15 22:34:00 +0000611
Chris Lattnerfc58af22009-12-30 04:51:58 +0000612 assert(NumberedMetadata[MetadataID] == Init && "Tracking VH didn't work");
613 } else {
614 if (MetadataID >= NumberedMetadata.size())
615 NumberedMetadata.resize(MetadataID+1);
616
Craig Topper2617dcc2014-04-15 06:32:26 +0000617 if (NumberedMetadata[MetadataID] != nullptr)
Chris Lattnerfc58af22009-12-30 04:51:58 +0000618 return TokError("Metadata id is already used");
619 NumberedMetadata[MetadataID] = Init;
Devang Pateld2541152009-07-08 19:23:54 +0000620 }
621
Devang Patel39e64d42009-07-01 19:21:12 +0000622 return false;
623}
624
Duncan P. N. Exon Smithb80de102014-05-07 22:57:20 +0000625static bool isValidVisibilityForLinkage(unsigned V, unsigned L) {
626 return !GlobalValue::isLocalLinkage((GlobalValue::LinkageTypes)L) ||
627 (GlobalValue::VisibilityTypes)V == GlobalValue::DefaultVisibility;
628}
629
Chris Lattnerac161bf2009-01-02 07:01:27 +0000630/// ParseAlias:
Rafael Espindola5d92ffb2014-06-03 20:25:26 +0000631/// ::= GlobalVar '=' OptionalVisibility OptionalDLLStorageClass
632/// OptionalThreadLocal 'alias' OptionalLinkage Aliasee
Rafael Espindola6b238632014-05-16 19:35:39 +0000633///
Chris Lattnerac161bf2009-01-02 07:01:27 +0000634/// Aliasee
Chris Lattner4c73d7a2009-04-25 21:26:00 +0000635/// ::= TypeAndValue
Chris Lattnerac161bf2009-01-02 07:01:27 +0000636///
Rafael Espindola5d92ffb2014-06-03 20:25:26 +0000637/// Everything through OptionalThreadLocal has already been parsed.
Chris Lattnerac161bf2009-01-02 07:01:27 +0000638///
639bool LLParser::ParseAlias(const std::string &Name, LocTy NameLoc,
Rafael Espindola59f7eba2014-05-28 18:15:43 +0000640 unsigned Visibility, unsigned DLLStorageClass,
641 GlobalVariable::ThreadLocalMode TLM) {
Chris Lattnerac161bf2009-01-02 07:01:27 +0000642 assert(Lex.getKind() == lltok::kw_alias);
643 Lex.Lex();
Chris Lattnerac161bf2009-01-02 07:01:27 +0000644 LocTy LinkageLoc = Lex.getLoc();
Rafael Espindola78527052013-10-06 15:10:43 +0000645 unsigned L;
646 if (ParseOptionalLinkage(L))
Chris Lattnerac161bf2009-01-02 07:01:27 +0000647 return true;
648
Rafael Espindola78527052013-10-06 15:10:43 +0000649 GlobalValue::LinkageTypes Linkage = (GlobalValue::LinkageTypes) L;
650
Rafael Espindolacaa43562013-10-09 16:07:32 +0000651 if(!GlobalAlias::isValidLinkage(Linkage))
Chris Lattnerac161bf2009-01-02 07:01:27 +0000652 return Error(LinkageLoc, "invalid linkage type for alias");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000653
Duncan P. N. Exon Smithb80de102014-05-07 22:57:20 +0000654 if (!isValidVisibilityForLinkage(Visibility, L))
655 return Error(LinkageLoc,
656 "symbol with local linkage must have default visibility");
657
Rafael Espindola64c1e182014-06-03 02:41:57 +0000658 Constant *Aliasee;
659 LocTy AliaseeLoc = Lex.getLoc();
660 if (Lex.getKind() != lltok::kw_bitcast &&
661 Lex.getKind() != lltok::kw_getelementptr &&
662 Lex.getKind() != lltok::kw_addrspacecast &&
663 Lex.getKind() != lltok::kw_inttoptr) {
664 if (ParseGlobalTypeAndValue(Aliasee))
Rafael Espindola6b238632014-05-16 19:35:39 +0000665 return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000666 } else {
Rafael Espindola64c1e182014-06-03 02:41:57 +0000667 // The bitcast dest type is not present, it is implied by the dest type.
668 ValID ID;
669 if (ParseValID(ID))
670 return true;
671 if (ID.Kind != ValID::t_Constant)
672 return Error(AliaseeLoc, "invalid aliasee");
673 Aliasee = ID.ConstantVal;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000674 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000675
Rafael Espindola64c1e182014-06-03 02:41:57 +0000676 Type *AliaseeType = Aliasee->getType();
677 auto *PTy = dyn_cast<PointerType>(AliaseeType);
678 if (!PTy)
679 return Error(AliaseeLoc, "An alias must have pointer type");
680 Type *Ty = PTy->getElementType();
681 unsigned AddrSpace = PTy->getAddressSpace();
Chris Lattnerac161bf2009-01-02 07:01:27 +0000682
683 // Okay, create the alias but do not insert it into the module yet.
Rafael Espindola4fe00942014-05-16 13:34:04 +0000684 std::unique_ptr<GlobalAlias> GA(
Rafael Espindolaf1bedd3742014-05-17 21:29:57 +0000685 GlobalAlias::create(Ty, AddrSpace, (GlobalValue::LinkageTypes)Linkage,
686 Name, Aliasee, /*Parent*/ nullptr));
Rafael Espindola59f7eba2014-05-28 18:15:43 +0000687 GA->setThreadLocalMode(TLM);
Chris Lattnerac161bf2009-01-02 07:01:27 +0000688 GA->setVisibility((GlobalValue::VisibilityTypes)Visibility);
Nico Rieck7157bb72014-01-14 15:22:47 +0000689 GA->setDLLStorageClass((GlobalValue::DLLStorageClassTypes)DLLStorageClass);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000690
Chris Lattnerac161bf2009-01-02 07:01:27 +0000691 // See if this value already exists in the symbol table. If so, it is either
692 // a redefinition or a definition of a forward reference.
Chris Lattnere38317f2009-10-25 23:22:50 +0000693 if (GlobalValue *Val = M->getNamedValue(Name)) {
Chris Lattnerac161bf2009-01-02 07:01:27 +0000694 // See if this was a redefinition. If so, there is no entry in
695 // ForwardRefVals.
696 std::map<std::string, std::pair<GlobalValue*, LocTy> >::iterator
697 I = ForwardRefVals.find(Name);
698 if (I == ForwardRefVals.end())
699 return Error(NameLoc, "redefinition of global named '@" + Name + "'");
700
701 // Otherwise, this was a definition of forward ref. Verify that types
702 // agree.
703 if (Val->getType() != GA->getType())
704 return Error(NameLoc,
705 "forward reference and definition of alias have different types");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000706
Chris Lattnerac161bf2009-01-02 07:01:27 +0000707 // If they agree, just RAUW the old value with the alias and remove the
708 // forward ref info.
Rafael Espindolaaa273822014-05-09 21:49:17 +0000709 Val->replaceAllUsesWith(GA.get());
Chris Lattnerac161bf2009-01-02 07:01:27 +0000710 Val->eraseFromParent();
711 ForwardRefVals.erase(I);
712 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000713
Chris Lattnerac161bf2009-01-02 07:01:27 +0000714 // Insert into the module, we know its name won't collide now.
Rafael Espindolaaa273822014-05-09 21:49:17 +0000715 M->getAliasList().push_back(GA.get());
Benjamin Kramer1dc34b42010-10-16 11:28:23 +0000716 assert(GA->getName() == Name && "Should not be a name conflict!");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000717
Rafael Espindolaaa273822014-05-09 21:49:17 +0000718 // The module owns this now
719 GA.release();
720
Chris Lattnerac161bf2009-01-02 07:01:27 +0000721 return false;
722}
723
724/// ParseGlobal
Nico Rieck7157bb72014-01-14 15:22:47 +0000725/// ::= GlobalVar '=' OptionalLinkage OptionalVisibility OptionalDLLStorageClass
726/// OptionalThreadLocal OptionalAddrSpace OptionalUnNammedAddr
Michael Gottesman27e7ef32013-02-05 05:57:38 +0000727/// OptionalExternallyInitialized GlobalType Type Const
Nico Rieck7157bb72014-01-14 15:22:47 +0000728/// ::= OptionalLinkage OptionalVisibility OptionalDLLStorageClass
729/// OptionalThreadLocal OptionalAddrSpace OptionalUnNammedAddr
Michael Gottesman27e7ef32013-02-05 05:57:38 +0000730/// OptionalExternallyInitialized GlobalType Type Const
Chris Lattnerac161bf2009-01-02 07:01:27 +0000731///
Rafael Espindola5d92ffb2014-06-03 20:25:26 +0000732/// Everything up to and including OptionalThreadLocal has been parsed
David Majnemerc4ab61c2014-03-09 06:41:58 +0000733/// already.
Chris Lattnerac161bf2009-01-02 07:01:27 +0000734///
735bool LLParser::ParseGlobal(const std::string &Name, LocTy NameLoc,
736 unsigned Linkage, bool HasLinkage,
Rafael Espindola59f7eba2014-05-28 18:15:43 +0000737 unsigned Visibility, unsigned DLLStorageClass,
738 GlobalVariable::ThreadLocalMode TLM) {
Duncan P. N. Exon Smithb80de102014-05-07 22:57:20 +0000739 if (!isValidVisibilityForLinkage(Visibility, Linkage))
740 return Error(NameLoc,
741 "symbol with local linkage must have default visibility");
742
Chris Lattnerac161bf2009-01-02 07:01:27 +0000743 unsigned AddrSpace;
Shuxin Yang2e1890e2013-10-27 03:08:44 +0000744 bool IsConstant, UnnamedAddr, IsExternallyInitialized;
Rafael Espindola026d1522011-01-13 01:30:30 +0000745 LocTy UnnamedAddrLoc;
Michael Gottesman27e7ef32013-02-05 05:57:38 +0000746 LocTy IsExternallyInitializedLoc;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000747 LocTy TyLoc;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000748
Craig Topper2617dcc2014-04-15 06:32:26 +0000749 Type *Ty = nullptr;
Rafael Espindola59f7eba2014-05-28 18:15:43 +0000750 if (ParseOptionalAddrSpace(AddrSpace) ||
Rafael Espindola026d1522011-01-13 01:30:30 +0000751 ParseOptionalToken(lltok::kw_unnamed_addr, UnnamedAddr,
752 &UnnamedAddrLoc) ||
Michael Gottesman27e7ef32013-02-05 05:57:38 +0000753 ParseOptionalToken(lltok::kw_externally_initialized,
754 IsExternallyInitialized,
755 &IsExternallyInitializedLoc) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +0000756 ParseGlobalType(IsConstant) ||
757 ParseType(Ty, TyLoc))
758 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000759
Chris Lattnerac161bf2009-01-02 07:01:27 +0000760 // If the linkage is specified and is external, then no initializer is
761 // present.
Craig Topper2617dcc2014-04-15 06:32:26 +0000762 Constant *Init = nullptr;
Nico Rieck7157bb72014-01-14 15:22:47 +0000763 if (!HasLinkage || (Linkage != GlobalValue::ExternalWeakLinkage &&
Chris Lattnerac161bf2009-01-02 07:01:27 +0000764 Linkage != GlobalValue::ExternalLinkage)) {
765 if (ParseGlobalValue(Ty, Init))
766 return true;
767 }
768
Duncan Sands19d0b472010-02-16 11:11:14 +0000769 if (Ty->isFunctionTy() || Ty->isLabelTy())
Chris Lattnerc9e1b482009-02-08 20:00:15 +0000770 return Error(TyLoc, "invalid type for global variable");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000771
Craig Topper2617dcc2014-04-15 06:32:26 +0000772 GlobalVariable *GV = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000773
774 // See if the global was forward referenced, if so, use the global.
Chris Lattner1f386b82009-02-02 07:24:28 +0000775 if (!Name.empty()) {
Chris Lattnere38317f2009-10-25 23:22:50 +0000776 if (GlobalValue *GVal = M->getNamedValue(Name)) {
777 if (!ForwardRefVals.erase(Name) || !isa<GlobalValue>(GVal))
778 return Error(NameLoc, "redefinition of global '@" + Name + "'");
779 GV = cast<GlobalVariable>(GVal);
780 }
Chris Lattnerac161bf2009-01-02 07:01:27 +0000781 } else {
782 std::map<unsigned, std::pair<GlobalValue*, LocTy> >::iterator
783 I = ForwardRefValIDs.find(NumberedVals.size());
784 if (I != ForwardRefValIDs.end()) {
785 GV = cast<GlobalVariable>(I->second.first);
786 ForwardRefValIDs.erase(I);
787 }
788 }
789
Craig Topper2617dcc2014-04-15 06:32:26 +0000790 if (!GV) {
791 GV = new GlobalVariable(*M, Ty, false, GlobalValue::ExternalLinkage, nullptr,
792 Name, nullptr, GlobalVariable::NotThreadLocal,
Hans Wennborgcbe34b42012-06-23 11:37:03 +0000793 AddrSpace);
Chris Lattnerac161bf2009-01-02 07:01:27 +0000794 } else {
795 if (GV->getType()->getElementType() != Ty)
796 return Error(TyLoc,
797 "forward reference and definition of global have different types");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000798
Chris Lattnerac161bf2009-01-02 07:01:27 +0000799 // Move the forward-reference to the correct spot in the module.
800 M->getGlobalList().splice(M->global_end(), M->getGlobalList(), GV);
801 }
802
803 if (Name.empty())
804 NumberedVals.push_back(GV);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000805
Chris Lattnerac161bf2009-01-02 07:01:27 +0000806 // Set the parsed properties on the global.
807 if (Init)
808 GV->setInitializer(Init);
809 GV->setConstant(IsConstant);
810 GV->setLinkage((GlobalValue::LinkageTypes)Linkage);
811 GV->setVisibility((GlobalValue::VisibilityTypes)Visibility);
Nico Rieck7157bb72014-01-14 15:22:47 +0000812 GV->setDLLStorageClass((GlobalValue::DLLStorageClassTypes)DLLStorageClass);
Michael Gottesman27e7ef32013-02-05 05:57:38 +0000813 GV->setExternallyInitialized(IsExternallyInitialized);
Hans Wennborgcbe34b42012-06-23 11:37:03 +0000814 GV->setThreadLocalMode(TLM);
Rafael Espindola45e6c192011-01-08 16:42:36 +0000815 GV->setUnnamedAddr(UnnamedAddr);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000816
Chris Lattnerac161bf2009-01-02 07:01:27 +0000817 // Parse attributes on the global.
818 while (Lex.getKind() == lltok::comma) {
819 Lex.Lex();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000820
Chris Lattnerac161bf2009-01-02 07:01:27 +0000821 if (Lex.getKind() == lltok::kw_section) {
822 Lex.Lex();
823 GV->setSection(Lex.getStrVal());
824 if (ParseToken(lltok::StringConstant, "expected global section string"))
825 return true;
826 } else if (Lex.getKind() == lltok::kw_align) {
827 unsigned Alignment;
828 if (ParseOptionalAlignment(Alignment)) return true;
829 GV->setAlignment(Alignment);
830 } else {
831 TokError("unknown global variable property!");
832 }
833 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000834
Chris Lattnerac161bf2009-01-02 07:01:27 +0000835 return false;
836}
837
Bill Wendling63b88192013-02-06 06:52:58 +0000838/// ParseUnnamedAttrGrp
Bill Wendlinga7c38772013-02-09 15:48:49 +0000839/// ::= 'attributes' AttrGrpID '=' '{' AttrValPair+ '}'
Bill Wendling63b88192013-02-06 06:52:58 +0000840bool LLParser::ParseUnnamedAttrGrp() {
Bill Wendlinga7c38772013-02-09 15:48:49 +0000841 assert(Lex.getKind() == lltok::kw_attributes);
Bill Wendling63b88192013-02-06 06:52:58 +0000842 LocTy AttrGrpLoc = Lex.getLoc();
Bill Wendlinga7c38772013-02-09 15:48:49 +0000843 Lex.Lex();
844
845 assert(Lex.getKind() == lltok::AttrGrpID);
Bill Wendling63b88192013-02-06 06:52:58 +0000846 unsigned VarID = Lex.getUIntVal();
Bill Wendlingb32b0412013-02-08 06:32:06 +0000847 std::vector<unsigned> unused;
Michael Gottesman41748d72013-06-27 00:25:01 +0000848 LocTy BuiltinLoc;
Bill Wendling63b88192013-02-06 06:52:58 +0000849 Lex.Lex();
850
851 if (ParseToken(lltok::equal, "expected '=' here") ||
Bill Wendling63b88192013-02-06 06:52:58 +0000852 ParseToken(lltok::lbrace, "expected '{' here") ||
Bill Wendling09bd1f72013-02-22 00:12:35 +0000853 ParseFnAttributeValuePairs(NumberedAttrBuilders[VarID], unused, true,
Michael Gottesman41748d72013-06-27 00:25:01 +0000854 BuiltinLoc) ||
Bill Wendling63b88192013-02-06 06:52:58 +0000855 ParseToken(lltok::rbrace, "expected end of attribute group"))
856 return true;
857
Bill Wendlingb32b0412013-02-08 06:32:06 +0000858 if (!NumberedAttrBuilders[VarID].hasAttributes())
Bill Wendling63b88192013-02-06 06:52:58 +0000859 return Error(AttrGrpLoc, "attribute group has no attributes");
860
861 return false;
862}
863
Bill Wendling8b0321d2013-02-08 00:52:31 +0000864/// ParseFnAttributeValuePairs
Bill Wendling63b88192013-02-06 06:52:58 +0000865/// ::= <attr> | <attr> '=' <value>
Bill Wendlingb32b0412013-02-08 06:32:06 +0000866bool LLParser::ParseFnAttributeValuePairs(AttrBuilder &B,
867 std::vector<unsigned> &FwdRefAttrGrps,
Michael Gottesman41748d72013-06-27 00:25:01 +0000868 bool inAttrGrp, LocTy &BuiltinLoc) {
Bill Wendling8b0321d2013-02-08 00:52:31 +0000869 bool HaveError = false;
870
871 B.clear();
872
Bill Wendling63b88192013-02-06 06:52:58 +0000873 while (true) {
874 lltok::Kind Token = Lex.getKind();
Michael Gottesman41748d72013-06-27 00:25:01 +0000875 if (Token == lltok::kw_builtin)
876 BuiltinLoc = Lex.getLoc();
Bill Wendling63b88192013-02-06 06:52:58 +0000877 switch (Token) {
878 default:
Bill Wendling8b0321d2013-02-08 00:52:31 +0000879 if (!inAttrGrp) return HaveError;
Bill Wendling63b88192013-02-06 06:52:58 +0000880 return Error(Lex.getLoc(), "unterminated attribute group");
881 case lltok::rbrace:
882 // Finished.
883 return false;
884
Bill Wendlingb32b0412013-02-08 06:32:06 +0000885 case lltok::AttrGrpID: {
886 // Allow a function to reference an attribute group:
887 //
888 // define void @foo() #1 { ... }
889 if (inAttrGrp)
890 HaveError |=
891 Error(Lex.getLoc(),
892 "cannot have an attribute group reference in an attribute group");
893
894 unsigned AttrGrpNum = Lex.getUIntVal();
895 if (inAttrGrp) break;
896
897 // Save the reference to the attribute group. We'll fill it in later.
898 FwdRefAttrGrps.push_back(AttrGrpNum);
899 break;
900 }
Bill Wendling63b88192013-02-06 06:52:58 +0000901 // Target-dependent attributes:
902 case lltok::StringConstant: {
903 std::string Attr = Lex.getStrVal();
904 Lex.Lex();
905 std::string Val;
906 if (EatIfPresent(lltok::equal) &&
907 ParseStringConstant(Val))
908 return true;
909
910 B.addAttribute(Attr, Val);
Bill Wendlingb1ea9802013-02-10 10:12:50 +0000911 continue;
Bill Wendling63b88192013-02-06 06:52:58 +0000912 }
913
914 // Target-independent attributes:
915 case lltok::kw_align: {
Bill Wendlingc62789f2013-04-18 18:30:16 +0000916 // As a hack, we allow function alignment to be initially parsed as an
917 // attribute on a function declaration/definition or added to an attribute
918 // group and later moved to the alignment field.
Bill Wendling63b88192013-02-06 06:52:58 +0000919 unsigned Alignment;
Bill Wendling8b0321d2013-02-08 00:52:31 +0000920 if (inAttrGrp) {
Bill Wendling44b08bf2013-02-10 23:15:51 +0000921 Lex.Lex();
Bill Wendling8b0321d2013-02-08 00:52:31 +0000922 if (ParseToken(lltok::equal, "expected '=' here") ||
923 ParseUInt32(Alignment))
924 return true;
925 } else {
926 if (ParseOptionalAlignment(Alignment))
927 return true;
928 }
Bill Wendling63b88192013-02-06 06:52:58 +0000929 B.addAlignmentAttr(Alignment);
Bill Wendling8b0321d2013-02-08 00:52:31 +0000930 continue;
Bill Wendling63b88192013-02-06 06:52:58 +0000931 }
932 case lltok::kw_alignstack: {
933 unsigned Alignment;
Bill Wendling8b0321d2013-02-08 00:52:31 +0000934 if (inAttrGrp) {
Bill Wendling44b08bf2013-02-10 23:15:51 +0000935 Lex.Lex();
Bill Wendling8b0321d2013-02-08 00:52:31 +0000936 if (ParseToken(lltok::equal, "expected '=' here") ||
937 ParseUInt32(Alignment))
938 return true;
939 } else {
940 if (ParseOptionalStackAlignment(Alignment))
941 return true;
942 }
Bill Wendling63b88192013-02-06 06:52:58 +0000943 B.addStackAlignmentAttr(Alignment);
Bill Wendling8b0321d2013-02-08 00:52:31 +0000944 continue;
Bill Wendling63b88192013-02-06 06:52:58 +0000945 }
Kostya Serebryanycf880b92013-02-26 06:58:09 +0000946 case lltok::kw_alwaysinline: B.addAttribute(Attribute::AlwaysInline); break;
Michael Gottesman41748d72013-06-27 00:25:01 +0000947 case lltok::kw_builtin: B.addAttribute(Attribute::Builtin); break;
Diego Novilloc6399532013-05-24 12:26:52 +0000948 case lltok::kw_cold: B.addAttribute(Attribute::Cold); break;
Kostya Serebryanycf880b92013-02-26 06:58:09 +0000949 case lltok::kw_inlinehint: B.addAttribute(Attribute::InlineHint); break;
950 case lltok::kw_minsize: B.addAttribute(Attribute::MinSize); break;
951 case lltok::kw_naked: B.addAttribute(Attribute::Naked); break;
952 case lltok::kw_nobuiltin: B.addAttribute(Attribute::NoBuiltin); break;
953 case lltok::kw_noduplicate: B.addAttribute(Attribute::NoDuplicate); break;
954 case lltok::kw_noimplicitfloat: B.addAttribute(Attribute::NoImplicitFloat); break;
955 case lltok::kw_noinline: B.addAttribute(Attribute::NoInline); break;
956 case lltok::kw_nonlazybind: B.addAttribute(Attribute::NonLazyBind); break;
957 case lltok::kw_noredzone: B.addAttribute(Attribute::NoRedZone); break;
958 case lltok::kw_noreturn: B.addAttribute(Attribute::NoReturn); break;
959 case lltok::kw_nounwind: B.addAttribute(Attribute::NoUnwind); break;
Andrea Di Biagio377496b2013-08-23 11:53:55 +0000960 case lltok::kw_optnone: B.addAttribute(Attribute::OptimizeNone); break;
Kostya Serebryanycf880b92013-02-26 06:58:09 +0000961 case lltok::kw_optsize: B.addAttribute(Attribute::OptimizeForSize); break;
962 case lltok::kw_readnone: B.addAttribute(Attribute::ReadNone); break;
963 case lltok::kw_readonly: B.addAttribute(Attribute::ReadOnly); break;
964 case lltok::kw_returns_twice: B.addAttribute(Attribute::ReturnsTwice); break;
965 case lltok::kw_ssp: B.addAttribute(Attribute::StackProtect); break;
966 case lltok::kw_sspreq: B.addAttribute(Attribute::StackProtectReq); break;
967 case lltok::kw_sspstrong: B.addAttribute(Attribute::StackProtectStrong); break;
968 case lltok::kw_sanitize_address: B.addAttribute(Attribute::SanitizeAddress); break;
969 case lltok::kw_sanitize_thread: B.addAttribute(Attribute::SanitizeThread); break;
970 case lltok::kw_sanitize_memory: B.addAttribute(Attribute::SanitizeMemory); break;
971 case lltok::kw_uwtable: B.addAttribute(Attribute::UWTable); break;
Bill Wendling8b0321d2013-02-08 00:52:31 +0000972
973 // Error handling.
974 case lltok::kw_inreg:
975 case lltok::kw_signext:
976 case lltok::kw_zeroext:
977 HaveError |=
978 Error(Lex.getLoc(),
979 "invalid use of attribute on a function");
980 break;
981 case lltok::kw_byval:
Reid Klecknera534a382013-12-19 02:14:12 +0000982 case lltok::kw_inalloca:
Bill Wendling8b0321d2013-02-08 00:52:31 +0000983 case lltok::kw_nest:
984 case lltok::kw_noalias:
985 case lltok::kw_nocapture:
Nick Lewyckyd52b1522014-05-20 01:23:40 +0000986 case lltok::kw_nonnull:
Stephen Linb8bd2322013-04-20 05:14:40 +0000987 case lltok::kw_returned:
Bill Wendling8b0321d2013-02-08 00:52:31 +0000988 case lltok::kw_sret:
989 HaveError |=
990 Error(Lex.getLoc(),
991 "invalid use of parameter-only attribute on a function");
992 break;
Bill Wendling63b88192013-02-06 06:52:58 +0000993 }
994
995 Lex.Lex();
996 }
997}
Chris Lattnerac161bf2009-01-02 07:01:27 +0000998
999//===----------------------------------------------------------------------===//
1000// GlobalValue Reference/Resolution Routines.
1001//===----------------------------------------------------------------------===//
1002
1003/// GetGlobalVal - Get a value with the specified name or ID, creating a
1004/// forward reference record if needed. This can return null if the value
1005/// exists but does not have the right type.
Chris Lattner229907c2011-07-18 04:54:35 +00001006GlobalValue *LLParser::GetGlobalVal(const std::string &Name, Type *Ty,
Chris Lattnerac161bf2009-01-02 07:01:27 +00001007 LocTy Loc) {
Chris Lattner229907c2011-07-18 04:54:35 +00001008 PointerType *PTy = dyn_cast<PointerType>(Ty);
Craig Topper2617dcc2014-04-15 06:32:26 +00001009 if (!PTy) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00001010 Error(Loc, "global variable reference must have pointer type");
Craig Topper2617dcc2014-04-15 06:32:26 +00001011 return nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001012 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001013
Chris Lattnerac161bf2009-01-02 07:01:27 +00001014 // Look this name up in the normal function symbol table.
1015 GlobalValue *Val =
1016 cast_or_null<GlobalValue>(M->getValueSymbolTable().lookup(Name));
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001017
Chris Lattnerac161bf2009-01-02 07:01:27 +00001018 // If this is a forward reference for the value, see if we already created a
1019 // forward ref record.
Craig Topper2617dcc2014-04-15 06:32:26 +00001020 if (!Val) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00001021 std::map<std::string, std::pair<GlobalValue*, LocTy> >::iterator
1022 I = ForwardRefVals.find(Name);
1023 if (I != ForwardRefVals.end())
1024 Val = I->second.first;
1025 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001026
Chris Lattnerac161bf2009-01-02 07:01:27 +00001027 // If we have the value in the symbol table or fwd-ref table, return it.
1028 if (Val) {
1029 if (Val->getType() == Ty) return Val;
1030 Error(Loc, "'@" + Name + "' defined with type '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00001031 getTypeString(Val->getType()) + "'");
Craig Topper2617dcc2014-04-15 06:32:26 +00001032 return nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001033 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001034
Chris Lattnerac161bf2009-01-02 07:01:27 +00001035 // Otherwise, create a new forward reference for this value and remember it.
1036 GlobalValue *FwdVal;
Chris Lattner229907c2011-07-18 04:54:35 +00001037 if (FunctionType *FT = dyn_cast<FunctionType>(PTy->getElementType()))
Duncan Sandse2881052009-03-11 08:08:06 +00001038 FwdVal = Function::Create(FT, GlobalValue::ExternalWeakLinkage, Name, M);
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001039 else
Owen Andersonb17f3292009-07-08 19:03:57 +00001040 FwdVal = new GlobalVariable(*M, PTy->getElementType(), false,
Craig Topper2617dcc2014-04-15 06:32:26 +00001041 GlobalValue::ExternalWeakLinkage, nullptr, Name,
1042 nullptr, GlobalVariable::NotThreadLocal,
Justin Holewinski898a0a02012-11-16 21:03:47 +00001043 PTy->getAddressSpace());
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001044
Chris Lattnerac161bf2009-01-02 07:01:27 +00001045 ForwardRefVals[Name] = std::make_pair(FwdVal, Loc);
1046 return FwdVal;
1047}
1048
Chris Lattner229907c2011-07-18 04:54:35 +00001049GlobalValue *LLParser::GetGlobalVal(unsigned ID, Type *Ty, LocTy Loc) {
1050 PointerType *PTy = dyn_cast<PointerType>(Ty);
Craig Topper2617dcc2014-04-15 06:32:26 +00001051 if (!PTy) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00001052 Error(Loc, "global variable reference must have pointer type");
Craig Topper2617dcc2014-04-15 06:32:26 +00001053 return nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001054 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001055
Craig Topper2617dcc2014-04-15 06:32:26 +00001056 GlobalValue *Val = ID < NumberedVals.size() ? NumberedVals[ID] : nullptr;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001057
Chris Lattnerac161bf2009-01-02 07:01:27 +00001058 // If this is a forward reference for the value, see if we already created a
1059 // forward ref record.
Craig Topper2617dcc2014-04-15 06:32:26 +00001060 if (!Val) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00001061 std::map<unsigned, std::pair<GlobalValue*, LocTy> >::iterator
1062 I = ForwardRefValIDs.find(ID);
1063 if (I != ForwardRefValIDs.end())
1064 Val = I->second.first;
1065 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001066
Chris Lattnerac161bf2009-01-02 07:01:27 +00001067 // If we have the value in the symbol table or fwd-ref table, return it.
1068 if (Val) {
1069 if (Val->getType() == Ty) return Val;
Benjamin Kramerc7583112010-09-27 17:42:11 +00001070 Error(Loc, "'@" + Twine(ID) + "' defined with type '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00001071 getTypeString(Val->getType()) + "'");
Craig Topper2617dcc2014-04-15 06:32:26 +00001072 return nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001073 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001074
Chris Lattnerac161bf2009-01-02 07:01:27 +00001075 // Otherwise, create a new forward reference for this value and remember it.
1076 GlobalValue *FwdVal;
Chris Lattner229907c2011-07-18 04:54:35 +00001077 if (FunctionType *FT = dyn_cast<FunctionType>(PTy->getElementType()))
Duncan Sandse2881052009-03-11 08:08:06 +00001078 FwdVal = Function::Create(FT, GlobalValue::ExternalWeakLinkage, "", M);
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001079 else
Owen Andersonb17f3292009-07-08 19:03:57 +00001080 FwdVal = new GlobalVariable(*M, PTy->getElementType(), false,
Craig Topper2617dcc2014-04-15 06:32:26 +00001081 GlobalValue::ExternalWeakLinkage, nullptr, "");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001082
Chris Lattnerac161bf2009-01-02 07:01:27 +00001083 ForwardRefValIDs[ID] = std::make_pair(FwdVal, Loc);
1084 return FwdVal;
1085}
1086
1087
1088//===----------------------------------------------------------------------===//
1089// Helper Routines.
1090//===----------------------------------------------------------------------===//
1091
1092/// ParseToken - If the current token has the specified kind, eat it and return
1093/// success. Otherwise, emit the specified error and return failure.
1094bool LLParser::ParseToken(lltok::Kind T, const char *ErrMsg) {
1095 if (Lex.getKind() != T)
1096 return TokError(ErrMsg);
1097 Lex.Lex();
1098 return false;
1099}
1100
Chris Lattner3822f632009-01-02 08:05:26 +00001101/// ParseStringConstant
1102/// ::= StringConstant
1103bool LLParser::ParseStringConstant(std::string &Result) {
1104 if (Lex.getKind() != lltok::StringConstant)
1105 return TokError("expected string constant");
1106 Result = Lex.getStrVal();
1107 Lex.Lex();
1108 return false;
1109}
1110
1111/// ParseUInt32
1112/// ::= uint32
1113bool LLParser::ParseUInt32(unsigned &Val) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00001114 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned())
1115 return TokError("expected integer");
1116 uint64_t Val64 = Lex.getAPSIntVal().getLimitedValue(0xFFFFFFFFULL+1);
1117 if (Val64 != unsigned(Val64))
1118 return TokError("expected 32-bit integer (too large)");
1119 Val = Val64;
1120 Lex.Lex();
1121 return false;
1122}
1123
Hans Wennborgcbe34b42012-06-23 11:37:03 +00001124/// ParseTLSModel
1125/// := 'localdynamic'
1126/// := 'initialexec'
1127/// := 'localexec'
1128bool LLParser::ParseTLSModel(GlobalVariable::ThreadLocalMode &TLM) {
1129 switch (Lex.getKind()) {
1130 default:
1131 return TokError("expected localdynamic, initialexec or localexec");
1132 case lltok::kw_localdynamic:
1133 TLM = GlobalVariable::LocalDynamicTLSModel;
1134 break;
1135 case lltok::kw_initialexec:
1136 TLM = GlobalVariable::InitialExecTLSModel;
1137 break;
1138 case lltok::kw_localexec:
1139 TLM = GlobalVariable::LocalExecTLSModel;
1140 break;
1141 }
1142
1143 Lex.Lex();
1144 return false;
1145}
1146
1147/// ParseOptionalThreadLocal
1148/// := /*empty*/
1149/// := 'thread_local'
1150/// := 'thread_local' '(' tlsmodel ')'
1151bool LLParser::ParseOptionalThreadLocal(GlobalVariable::ThreadLocalMode &TLM) {
1152 TLM = GlobalVariable::NotThreadLocal;
1153 if (!EatIfPresent(lltok::kw_thread_local))
1154 return false;
1155
1156 TLM = GlobalVariable::GeneralDynamicTLSModel;
1157 if (Lex.getKind() == lltok::lparen) {
1158 Lex.Lex();
1159 return ParseTLSModel(TLM) ||
1160 ParseToken(lltok::rparen, "expected ')' after thread local model");
1161 }
1162 return false;
1163}
Chris Lattnerac161bf2009-01-02 07:01:27 +00001164
1165/// ParseOptionalAddrSpace
1166/// := /*empty*/
1167/// := 'addrspace' '(' uint32 ')'
1168bool LLParser::ParseOptionalAddrSpace(unsigned &AddrSpace) {
1169 AddrSpace = 0;
Chris Lattner3822f632009-01-02 08:05:26 +00001170 if (!EatIfPresent(lltok::kw_addrspace))
Chris Lattnerac161bf2009-01-02 07:01:27 +00001171 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001172 return ParseToken(lltok::lparen, "expected '(' in address space") ||
Chris Lattner3822f632009-01-02 08:05:26 +00001173 ParseUInt32(AddrSpace) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00001174 ParseToken(lltok::rparen, "expected ')' in address space");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001175}
Chris Lattnerac161bf2009-01-02 07:01:27 +00001176
Bill Wendling34c2eb22012-12-04 23:40:58 +00001177/// ParseOptionalParamAttrs - Parse a potentially empty list of parameter attributes.
1178bool LLParser::ParseOptionalParamAttrs(AttrBuilder &B) {
1179 bool HaveError = false;
1180
1181 B.clear();
1182
1183 while (1) {
1184 lltok::Kind Token = Lex.getKind();
1185 switch (Token) {
1186 default: // End of attributes.
1187 return HaveError;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001188 case lltok::kw_align: {
1189 unsigned Alignment;
1190 if (ParseOptionalAlignment(Alignment))
1191 return true;
Bill Wendling68d24012012-10-08 22:20:14 +00001192 B.addAlignmentAttr(Alignment);
Chris Lattnerac161bf2009-01-02 07:01:27 +00001193 continue;
1194 }
Bill Wendling3d7b0b82012-12-19 07:18:57 +00001195 case lltok::kw_byval: B.addAttribute(Attribute::ByVal); break;
Reid Klecknera534a382013-12-19 02:14:12 +00001196 case lltok::kw_inalloca: B.addAttribute(Attribute::InAlloca); break;
Bill Wendling3d7b0b82012-12-19 07:18:57 +00001197 case lltok::kw_inreg: B.addAttribute(Attribute::InReg); break;
1198 case lltok::kw_nest: B.addAttribute(Attribute::Nest); break;
1199 case lltok::kw_noalias: B.addAttribute(Attribute::NoAlias); break;
1200 case lltok::kw_nocapture: B.addAttribute(Attribute::NoCapture); break;
Nick Lewyckyd52b1522014-05-20 01:23:40 +00001201 case lltok::kw_nonnull: B.addAttribute(Attribute::NonNull); break;
Nick Lewyckyc2ec0722013-07-06 00:29:58 +00001202 case lltok::kw_readnone: B.addAttribute(Attribute::ReadNone); break;
1203 case lltok::kw_readonly: B.addAttribute(Attribute::ReadOnly); break;
Stephen Linb8bd2322013-04-20 05:14:40 +00001204 case lltok::kw_returned: B.addAttribute(Attribute::Returned); break;
Bill Wendling3d7b0b82012-12-19 07:18:57 +00001205 case lltok::kw_signext: B.addAttribute(Attribute::SExt); break;
1206 case lltok::kw_sret: B.addAttribute(Attribute::StructRet); break;
1207 case lltok::kw_zeroext: B.addAttribute(Attribute::ZExt); break;
Charles Davisbe5557e2010-02-12 00:31:15 +00001208
Stephen Lin7577ed52013-04-20 13:16:13 +00001209 case lltok::kw_alignstack:
1210 case lltok::kw_alwaysinline:
Michael Gottesman41748d72013-06-27 00:25:01 +00001211 case lltok::kw_builtin:
Stephen Lin7577ed52013-04-20 13:16:13 +00001212 case lltok::kw_inlinehint:
1213 case lltok::kw_minsize:
1214 case lltok::kw_naked:
1215 case lltok::kw_nobuiltin:
1216 case lltok::kw_noduplicate:
1217 case lltok::kw_noimplicitfloat:
1218 case lltok::kw_noinline:
1219 case lltok::kw_nonlazybind:
1220 case lltok::kw_noredzone:
1221 case lltok::kw_noreturn:
1222 case lltok::kw_nounwind:
Andrea Di Biagio377496b2013-08-23 11:53:55 +00001223 case lltok::kw_optnone:
Stephen Lin7577ed52013-04-20 13:16:13 +00001224 case lltok::kw_optsize:
Stephen Lin7577ed52013-04-20 13:16:13 +00001225 case lltok::kw_returns_twice:
1226 case lltok::kw_sanitize_address:
1227 case lltok::kw_sanitize_memory:
1228 case lltok::kw_sanitize_thread:
1229 case lltok::kw_ssp:
1230 case lltok::kw_sspreq:
1231 case lltok::kw_sspstrong:
1232 case lltok::kw_uwtable:
Bill Wendling34c2eb22012-12-04 23:40:58 +00001233 HaveError |= Error(Lex.getLoc(), "invalid use of function-only attribute");
1234 break;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001235 }
Bill Wendling0be9c402012-09-28 22:30:18 +00001236
Bill Wendling34c2eb22012-12-04 23:40:58 +00001237 Lex.Lex();
1238 }
1239}
1240
1241/// ParseOptionalReturnAttrs - Parse a potentially empty list of return attributes.
1242bool LLParser::ParseOptionalReturnAttrs(AttrBuilder &B) {
1243 bool HaveError = false;
1244
1245 B.clear();
1246
1247 while (1) {
1248 lltok::Kind Token = Lex.getKind();
Bill Wendling0be9c402012-09-28 22:30:18 +00001249 switch (Token) {
Bill Wendling34c2eb22012-12-04 23:40:58 +00001250 default: // End of attributes.
1251 return HaveError;
Bill Wendling3d7b0b82012-12-19 07:18:57 +00001252 case lltok::kw_inreg: B.addAttribute(Attribute::InReg); break;
1253 case lltok::kw_noalias: B.addAttribute(Attribute::NoAlias); break;
Nick Lewyckyd52b1522014-05-20 01:23:40 +00001254 case lltok::kw_nonnull: B.addAttribute(Attribute::NonNull); break;
Bill Wendling3d7b0b82012-12-19 07:18:57 +00001255 case lltok::kw_signext: B.addAttribute(Attribute::SExt); break;
1256 case lltok::kw_zeroext: B.addAttribute(Attribute::ZExt); break;
Bill Wendling0be9c402012-09-28 22:30:18 +00001257
Bill Wendling34c2eb22012-12-04 23:40:58 +00001258 // Error handling.
Stephen Lin7577ed52013-04-20 13:16:13 +00001259 case lltok::kw_align:
Chandler Carruth9f6b59a2013-04-09 19:46:46 +00001260 case lltok::kw_byval:
Reid Klecknera534a382013-12-19 02:14:12 +00001261 case lltok::kw_inalloca:
Chandler Carruth9f6b59a2013-04-09 19:46:46 +00001262 case lltok::kw_nest:
1263 case lltok::kw_nocapture:
Stephen Linb8bd2322013-04-20 05:14:40 +00001264 case lltok::kw_returned:
Chandler Carruth9f6b59a2013-04-09 19:46:46 +00001265 case lltok::kw_sret:
Bill Wendling34c2eb22012-12-04 23:40:58 +00001266 HaveError |= Error(Lex.getLoc(), "invalid use of parameter-only attribute");
Bill Wendling0be9c402012-09-28 22:30:18 +00001267 break;
James Molloy4f6fb952012-12-20 16:04:27 +00001268
Chandler Carruth9f6b59a2013-04-09 19:46:46 +00001269 case lltok::kw_alignstack:
1270 case lltok::kw_alwaysinline:
Michael Gottesman41748d72013-06-27 00:25:01 +00001271 case lltok::kw_builtin:
Diego Novilloc6399532013-05-24 12:26:52 +00001272 case lltok::kw_cold:
Chandler Carruth9f6b59a2013-04-09 19:46:46 +00001273 case lltok::kw_inlinehint:
1274 case lltok::kw_minsize:
1275 case lltok::kw_naked:
1276 case lltok::kw_nobuiltin:
1277 case lltok::kw_noduplicate:
1278 case lltok::kw_noimplicitfloat:
1279 case lltok::kw_noinline:
1280 case lltok::kw_nonlazybind:
1281 case lltok::kw_noredzone:
1282 case lltok::kw_noreturn:
1283 case lltok::kw_nounwind:
Andrea Di Biagio377496b2013-08-23 11:53:55 +00001284 case lltok::kw_optnone:
Chandler Carruth9f6b59a2013-04-09 19:46:46 +00001285 case lltok::kw_optsize:
Chandler Carruth9f6b59a2013-04-09 19:46:46 +00001286 case lltok::kw_returns_twice:
1287 case lltok::kw_sanitize_address:
1288 case lltok::kw_sanitize_memory:
1289 case lltok::kw_sanitize_thread:
1290 case lltok::kw_ssp:
1291 case lltok::kw_sspreq:
1292 case lltok::kw_sspstrong:
1293 case lltok::kw_uwtable:
Bill Wendling34c2eb22012-12-04 23:40:58 +00001294 HaveError |= Error(Lex.getLoc(), "invalid use of function-only attribute");
Bill Wendling0be9c402012-09-28 22:30:18 +00001295 break;
Nick Lewyckyc2ec0722013-07-06 00:29:58 +00001296
1297 case lltok::kw_readnone:
1298 case lltok::kw_readonly:
1299 HaveError |= Error(Lex.getLoc(), "invalid use of attribute on return type");
Bill Wendling0be9c402012-09-28 22:30:18 +00001300 }
1301
Chris Lattnerac161bf2009-01-02 07:01:27 +00001302 Lex.Lex();
1303 }
1304}
1305
1306/// ParseOptionalLinkage
1307/// ::= /*empty*/
Rafael Espindola6de96a12009-01-15 20:18:42 +00001308/// ::= 'private'
Chris Lattnerac161bf2009-01-02 07:01:27 +00001309/// ::= 'internal'
1310/// ::= 'weak'
Duncan Sands12da8ce2009-03-07 15:45:40 +00001311/// ::= 'weak_odr'
Chris Lattnerac161bf2009-01-02 07:01:27 +00001312/// ::= 'linkonce'
Duncan Sands12da8ce2009-03-07 15:45:40 +00001313/// ::= 'linkonce_odr'
Bill Wendling03bcd6e2010-07-01 21:55:59 +00001314/// ::= 'available_externally'
Chris Lattnerac161bf2009-01-02 07:01:27 +00001315/// ::= 'appending'
Chris Lattnerac161bf2009-01-02 07:01:27 +00001316/// ::= 'common'
Chris Lattnerac161bf2009-01-02 07:01:27 +00001317/// ::= 'extern_weak'
1318/// ::= 'external'
Saleem Abdulrasoolc1281352014-04-05 20:51:58 +00001319///
1320/// Deprecated Values:
1321/// ::= 'linker_private'
1322/// ::= 'linker_private_weak'
Chris Lattnerac161bf2009-01-02 07:01:27 +00001323bool LLParser::ParseOptionalLinkage(unsigned &Res, bool &HasLinkage) {
1324 HasLinkage = false;
1325 switch (Lex.getKind()) {
Bill Wendlinga3c6f6b2009-07-20 01:03:30 +00001326 default: Res=GlobalValue::ExternalLinkage; return false;
1327 case lltok::kw_private: Res = GlobalValue::PrivateLinkage; break;
Bill Wendlinga3c6f6b2009-07-20 01:03:30 +00001328 case lltok::kw_internal: Res = GlobalValue::InternalLinkage; break;
1329 case lltok::kw_weak: Res = GlobalValue::WeakAnyLinkage; break;
1330 case lltok::kw_weak_odr: Res = GlobalValue::WeakODRLinkage; break;
1331 case lltok::kw_linkonce: Res = GlobalValue::LinkOnceAnyLinkage; break;
1332 case lltok::kw_linkonce_odr: Res = GlobalValue::LinkOnceODRLinkage; break;
Chris Lattner184f1be2009-04-13 05:44:34 +00001333 case lltok::kw_available_externally:
1334 Res = GlobalValue::AvailableExternallyLinkage;
1335 break;
Bill Wendlinga3c6f6b2009-07-20 01:03:30 +00001336 case lltok::kw_appending: Res = GlobalValue::AppendingLinkage; break;
Bill Wendlinga3c6f6b2009-07-20 01:03:30 +00001337 case lltok::kw_common: Res = GlobalValue::CommonLinkage; break;
Bill Wendlinga3c6f6b2009-07-20 01:03:30 +00001338 case lltok::kw_extern_weak: Res = GlobalValue::ExternalWeakLinkage; break;
1339 case lltok::kw_external: Res = GlobalValue::ExternalLinkage; break;
Saleem Abdulrasoolc1281352014-04-05 20:51:58 +00001340
1341 case lltok::kw_linker_private:
1342 case lltok::kw_linker_private_weak:
Saleem Abdulrasoolefa31a92014-04-05 22:42:53 +00001343 Lex.Warning("'" + Lex.getStrVal() + "' is deprecated, treating as"
1344 " PrivateLinkage");
Saleem Abdulrasoolc1281352014-04-05 20:51:58 +00001345 Lex.Lex();
1346 // treat linker_private and linker_private_weak as PrivateLinkage
1347 Res = GlobalValue::PrivateLinkage;
1348 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001349 }
1350 Lex.Lex();
1351 HasLinkage = true;
1352 return false;
1353}
1354
1355/// ParseOptionalVisibility
1356/// ::= /*empty*/
1357/// ::= 'default'
1358/// ::= 'hidden'
1359/// ::= 'protected'
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001360///
Chris Lattnerac161bf2009-01-02 07:01:27 +00001361bool LLParser::ParseOptionalVisibility(unsigned &Res) {
1362 switch (Lex.getKind()) {
1363 default: Res = GlobalValue::DefaultVisibility; return false;
1364 case lltok::kw_default: Res = GlobalValue::DefaultVisibility; break;
1365 case lltok::kw_hidden: Res = GlobalValue::HiddenVisibility; break;
1366 case lltok::kw_protected: Res = GlobalValue::ProtectedVisibility; break;
1367 }
1368 Lex.Lex();
1369 return false;
1370}
1371
Nico Rieck7157bb72014-01-14 15:22:47 +00001372/// ParseOptionalDLLStorageClass
1373/// ::= /*empty*/
1374/// ::= 'dllimport'
1375/// ::= 'dllexport'
1376///
1377bool LLParser::ParseOptionalDLLStorageClass(unsigned &Res) {
1378 switch (Lex.getKind()) {
1379 default: Res = GlobalValue::DefaultStorageClass; return false;
1380 case lltok::kw_dllimport: Res = GlobalValue::DLLImportStorageClass; break;
1381 case lltok::kw_dllexport: Res = GlobalValue::DLLExportStorageClass; break;
1382 }
1383 Lex.Lex();
1384 return false;
1385}
1386
Chris Lattnerac161bf2009-01-02 07:01:27 +00001387/// ParseOptionalCallingConv
1388/// ::= /*empty*/
1389/// ::= 'ccc'
1390/// ::= 'fastcc'
Elena Demikhovskyd6afb032012-10-24 14:46:16 +00001391/// ::= 'kw_intel_ocl_bicc'
Chris Lattnerac161bf2009-01-02 07:01:27 +00001392/// ::= 'coldcc'
1393/// ::= 'x86_stdcallcc'
1394/// ::= 'x86_fastcallcc'
Anton Korobeynikov8f35fab2010-05-16 09:08:45 +00001395/// ::= 'x86_thiscallcc'
Anton Korobeynikova8fd40b2009-06-16 18:50:49 +00001396/// ::= 'arm_apcscc'
1397/// ::= 'arm_aapcscc'
1398/// ::= 'arm_aapcs_vfpcc'
Anton Korobeynikov27a0ecf2009-12-07 02:27:35 +00001399/// ::= 'msp430_intrcc'
Che-Liang Chiou29947902010-09-25 07:46:17 +00001400/// ::= 'ptx_kernel'
1401/// ::= 'ptx_device'
Micah Villmow48c8ddc2012-10-01 17:01:31 +00001402/// ::= 'spir_func'
1403/// ::= 'spir_kernel'
Charles Davise8f297c2013-07-12 06:02:35 +00001404/// ::= 'x86_64_sysvcc'
1405/// ::= 'x86_64_win64cc'
Andrew Tricka3a11de2013-10-31 22:12:01 +00001406/// ::= 'webkit_jscc'
Juergen Ributzka9969d3e2013-11-08 23:28:16 +00001407/// ::= 'anyregcc'
Juergen Ributzkae6250132014-01-17 19:47:03 +00001408/// ::= 'preserve_mostcc'
1409/// ::= 'preserve_allcc'
Chris Lattnerac161bf2009-01-02 07:01:27 +00001410/// ::= 'cc' UINT
Anton Korobeynikova8fd40b2009-06-16 18:50:49 +00001411///
Sandeep Patel68c5f472009-09-02 08:44:58 +00001412bool LLParser::ParseOptionalCallingConv(CallingConv::ID &CC) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00001413 switch (Lex.getKind()) {
1414 default: CC = CallingConv::C; return false;
1415 case lltok::kw_ccc: CC = CallingConv::C; break;
1416 case lltok::kw_fastcc: CC = CallingConv::Fast; break;
1417 case lltok::kw_coldcc: CC = CallingConv::Cold; break;
1418 case lltok::kw_x86_stdcallcc: CC = CallingConv::X86_StdCall; break;
1419 case lltok::kw_x86_fastcallcc: CC = CallingConv::X86_FastCall; break;
Anton Korobeynikov8f35fab2010-05-16 09:08:45 +00001420 case lltok::kw_x86_thiscallcc: CC = CallingConv::X86_ThisCall; break;
Anton Korobeynikova8fd40b2009-06-16 18:50:49 +00001421 case lltok::kw_arm_apcscc: CC = CallingConv::ARM_APCS; break;
1422 case lltok::kw_arm_aapcscc: CC = CallingConv::ARM_AAPCS; break;
1423 case lltok::kw_arm_aapcs_vfpcc:CC = CallingConv::ARM_AAPCS_VFP; break;
Anton Korobeynikov27a0ecf2009-12-07 02:27:35 +00001424 case lltok::kw_msp430_intrcc: CC = CallingConv::MSP430_INTR; break;
Che-Liang Chiou29947902010-09-25 07:46:17 +00001425 case lltok::kw_ptx_kernel: CC = CallingConv::PTX_Kernel; break;
1426 case lltok::kw_ptx_device: CC = CallingConv::PTX_Device; break;
Micah Villmow48c8ddc2012-10-01 17:01:31 +00001427 case lltok::kw_spir_kernel: CC = CallingConv::SPIR_KERNEL; break;
1428 case lltok::kw_spir_func: CC = CallingConv::SPIR_FUNC; break;
Elena Demikhovskyd6afb032012-10-24 14:46:16 +00001429 case lltok::kw_intel_ocl_bicc: CC = CallingConv::Intel_OCL_BI; break;
Charles Davise8f297c2013-07-12 06:02:35 +00001430 case lltok::kw_x86_64_sysvcc: CC = CallingConv::X86_64_SysV; break;
1431 case lltok::kw_x86_64_win64cc: CC = CallingConv::X86_64_Win64; break;
Andrew Tricka3a11de2013-10-31 22:12:01 +00001432 case lltok::kw_webkit_jscc: CC = CallingConv::WebKit_JS; break;
Juergen Ributzka9969d3e2013-11-08 23:28:16 +00001433 case lltok::kw_anyregcc: CC = CallingConv::AnyReg; break;
Juergen Ributzkae6250132014-01-17 19:47:03 +00001434 case lltok::kw_preserve_mostcc:CC = CallingConv::PreserveMost; break;
1435 case lltok::kw_preserve_allcc: CC = CallingConv::PreserveAll; break;
Sandeep Patel68c5f472009-09-02 08:44:58 +00001436 case lltok::kw_cc: {
1437 unsigned ArbitraryCC;
1438 Lex.Lex();
David Blaikie46a9f012012-01-20 21:51:11 +00001439 if (ParseUInt32(ArbitraryCC))
Sandeep Patel68c5f472009-09-02 08:44:58 +00001440 return true;
David Blaikie46a9f012012-01-20 21:51:11 +00001441 CC = static_cast<CallingConv::ID>(ArbitraryCC);
1442 return false;
Sandeep Patel68c5f472009-09-02 08:44:58 +00001443 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00001444 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001445
Chris Lattnerac161bf2009-01-02 07:01:27 +00001446 Lex.Lex();
1447 return false;
1448}
1449
Chris Lattner5c427632009-12-30 05:31:19 +00001450/// ParseInstructionMetadata
Chris Lattner596760d2009-12-29 21:25:40 +00001451/// ::= !dbg !42 (',' !dbg !57)*
Dan Gohman338d9a42010-08-24 02:05:17 +00001452bool LLParser::ParseInstructionMetadata(Instruction *Inst,
1453 PerFunctionState *PFS) {
Chris Lattner5c427632009-12-30 05:31:19 +00001454 do {
1455 if (Lex.getKind() != lltok::MetadataVar)
1456 return TokError("expected metadata after comma");
Devang Patelba4a6fd2009-09-29 00:01:14 +00001457
Chris Lattner596760d2009-12-29 21:25:40 +00001458 std::string Name = Lex.getStrVal();
Benjamin Kramerb3bd0192011-12-06 11:50:26 +00001459 unsigned MDK = M->getMDKindID(Name);
Chris Lattner596760d2009-12-29 21:25:40 +00001460 Lex.Lex();
Chris Lattner8d58f2f2009-10-19 05:31:10 +00001461
Chris Lattner1797fc72009-12-29 21:53:55 +00001462 MDNode *Node;
Chris Lattner8eff0152010-04-01 05:14:45 +00001463 SMLoc Loc = Lex.getLoc();
Dan Gohmanc828c542010-08-24 02:24:03 +00001464
1465 if (ParseToken(lltok::exclaim, "expected '!' here"))
Chris Lattner1eed2d62009-12-30 04:56:59 +00001466 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001467
Dan Gohmanf0715b12010-08-24 14:35:45 +00001468 // This code is similar to that of ParseMetadataValue, however it needs to
1469 // have special-case code for a forward reference; see the comments on
1470 // ForwardRefInstMetadata for details. Also, MDStrings are not supported
1471 // at the top level here.
Dan Gohmanc828c542010-08-24 02:24:03 +00001472 if (Lex.getKind() == lltok::lbrace) {
1473 ValID ID;
1474 if (ParseMetadataListValue(ID, PFS))
1475 return true;
1476 assert(ID.Kind == ValID::t_MDNode);
1477 Inst->setMetadata(MDK, ID.MDNodeVal);
Chris Lattner8eff0152010-04-01 05:14:45 +00001478 } else {
Nick Lewycky912888f2010-09-30 21:04:13 +00001479 unsigned NodeID = 0;
Dan Gohmanc828c542010-08-24 02:24:03 +00001480 if (ParseMDNodeID(Node, NodeID))
1481 return true;
1482 if (Node) {
1483 // If we got the node, add it to the instruction.
1484 Inst->setMetadata(MDK, Node);
1485 } else {
1486 MDRef R = { Loc, MDK, NodeID };
1487 // Otherwise, remember that this should be resolved later.
1488 ForwardRefInstMetadata[Inst].push_back(R);
1489 }
Chris Lattner8eff0152010-04-01 05:14:45 +00001490 }
Chris Lattner596760d2009-12-29 21:25:40 +00001491
Manman Ren209b17c2013-09-28 00:22:27 +00001492 if (MDK == LLVMContext::MD_tbaa)
1493 InstsWithTBAATag.push_back(Inst);
1494
Chris Lattner596760d2009-12-29 21:25:40 +00001495 // If this is the end of the list, we're done.
Chris Lattner5c427632009-12-30 05:31:19 +00001496 } while (EatIfPresent(lltok::comma));
1497 return false;
Devang Patelea8a4b92009-09-17 23:04:48 +00001498}
1499
Chris Lattnerac161bf2009-01-02 07:01:27 +00001500/// ParseOptionalAlignment
1501/// ::= /* empty */
1502/// ::= 'align' 4
1503bool LLParser::ParseOptionalAlignment(unsigned &Alignment) {
1504 Alignment = 0;
Chris Lattner3822f632009-01-02 08:05:26 +00001505 if (!EatIfPresent(lltok::kw_align))
1506 return false;
Chris Lattnerd11f5142009-01-05 07:46:05 +00001507 LocTy AlignLoc = Lex.getLoc();
1508 if (ParseUInt32(Alignment)) return true;
1509 if (!isPowerOf2_32(Alignment))
1510 return Error(AlignLoc, "alignment is not a power of two");
Dan Gohmand566d2c2010-07-30 21:07:05 +00001511 if (Alignment > Value::MaximumAlignment)
Dan Gohmana7e5a242010-07-28 20:12:04 +00001512 return Error(AlignLoc, "huge alignments are not supported yet");
Chris Lattnerd11f5142009-01-05 07:46:05 +00001513 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001514}
1515
Chris Lattnerb2f39502009-12-30 05:44:30 +00001516/// ParseOptionalCommaAlign
Michael Ilseman26ee2b82012-11-15 22:34:00 +00001517/// ::=
Chris Lattnerb2f39502009-12-30 05:44:30 +00001518/// ::= ',' align 4
1519///
1520/// This returns with AteExtraComma set to true if it ate an excess comma at the
1521/// end.
1522bool LLParser::ParseOptionalCommaAlign(unsigned &Alignment,
1523 bool &AteExtraComma) {
1524 AteExtraComma = false;
1525 while (EatIfPresent(lltok::comma)) {
1526 // Metadata at the end is an early exit.
Chris Lattnereafe4de2009-12-30 05:02:06 +00001527 if (Lex.getKind() == lltok::MetadataVar) {
Chris Lattnerb2f39502009-12-30 05:44:30 +00001528 AteExtraComma = true;
1529 return false;
1530 }
Michael Ilseman26ee2b82012-11-15 22:34:00 +00001531
Chris Lattner95b0ff42010-04-23 00:50:50 +00001532 if (Lex.getKind() != lltok::kw_align)
1533 return Error(Lex.getLoc(), "expected metadata or 'align'");
Duncan Sands4c5c8582010-10-21 16:07:10 +00001534
Chris Lattner95b0ff42010-04-23 00:50:50 +00001535 if (ParseOptionalAlignment(Alignment)) return true;
Chris Lattnerb2f39502009-12-30 05:44:30 +00001536 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001537
Devang Patelea8a4b92009-09-17 23:04:48 +00001538 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001539}
1540
Eli Friedmanfee02c62011-07-25 23:16:38 +00001541/// ParseScopeAndOrdering
1542/// if isAtomic: ::= 'singlethread'? AtomicOrdering
1543/// else: ::=
1544///
1545/// This sets Scope and Ordering to the parsed values.
1546bool LLParser::ParseScopeAndOrdering(bool isAtomic, SynchronizationScope &Scope,
1547 AtomicOrdering &Ordering) {
1548 if (!isAtomic)
1549 return false;
1550
1551 Scope = CrossThread;
1552 if (EatIfPresent(lltok::kw_singlethread))
1553 Scope = SingleThread;
Tim Northovere94a5182014-03-11 10:48:52 +00001554
1555 return ParseOrdering(Ordering);
1556}
1557
1558/// ParseOrdering
1559/// ::= AtomicOrdering
1560///
1561/// This sets Ordering to the parsed value.
1562bool LLParser::ParseOrdering(AtomicOrdering &Ordering) {
Eli Friedmanfee02c62011-07-25 23:16:38 +00001563 switch (Lex.getKind()) {
1564 default: return TokError("Expected ordering on atomic instruction");
1565 case lltok::kw_unordered: Ordering = Unordered; break;
1566 case lltok::kw_monotonic: Ordering = Monotonic; break;
1567 case lltok::kw_acquire: Ordering = Acquire; break;
1568 case lltok::kw_release: Ordering = Release; break;
1569 case lltok::kw_acq_rel: Ordering = AcquireRelease; break;
1570 case lltok::kw_seq_cst: Ordering = SequentiallyConsistent; break;
1571 }
1572 Lex.Lex();
1573 return false;
1574}
1575
Charles Davisbe5557e2010-02-12 00:31:15 +00001576/// ParseOptionalStackAlignment
1577/// ::= /* empty */
1578/// ::= 'alignstack' '(' 4 ')'
1579bool LLParser::ParseOptionalStackAlignment(unsigned &Alignment) {
1580 Alignment = 0;
1581 if (!EatIfPresent(lltok::kw_alignstack))
1582 return false;
1583 LocTy ParenLoc = Lex.getLoc();
1584 if (!EatIfPresent(lltok::lparen))
1585 return Error(ParenLoc, "expected '('");
1586 LocTy AlignLoc = Lex.getLoc();
1587 if (ParseUInt32(Alignment)) return true;
1588 ParenLoc = Lex.getLoc();
1589 if (!EatIfPresent(lltok::rparen))
1590 return Error(ParenLoc, "expected ')'");
1591 if (!isPowerOf2_32(Alignment))
1592 return Error(AlignLoc, "stack alignment is not a power of two");
1593 return false;
1594}
Devang Patelea8a4b92009-09-17 23:04:48 +00001595
Chris Lattner28f1eeb2009-12-30 05:14:00 +00001596/// ParseIndexList - This parses the index list for an insert/extractvalue
1597/// instruction. This sets AteExtraComma in the case where we eat an extra
1598/// comma at the end of the line and find that it is followed by metadata.
1599/// Clients that don't allow metadata can call the version of this function that
1600/// only takes one argument.
1601///
Chris Lattnerac161bf2009-01-02 07:01:27 +00001602/// ParseIndexList
1603/// ::= (',' uint32)+
Chris Lattner28f1eeb2009-12-30 05:14:00 +00001604///
1605bool LLParser::ParseIndexList(SmallVectorImpl<unsigned> &Indices,
1606 bool &AteExtraComma) {
1607 AteExtraComma = false;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00001608
Chris Lattnerac161bf2009-01-02 07:01:27 +00001609 if (Lex.getKind() != lltok::comma)
1610 return TokError("expected ',' as start of index list");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001611
Chris Lattner3822f632009-01-02 08:05:26 +00001612 while (EatIfPresent(lltok::comma)) {
Chris Lattner28f1eeb2009-12-30 05:14:00 +00001613 if (Lex.getKind() == lltok::MetadataVar) {
1614 AteExtraComma = true;
1615 return false;
1616 }
Nick Lewycky83e47112010-09-29 23:32:20 +00001617 unsigned Idx = 0;
Chris Lattner3822f632009-01-02 08:05:26 +00001618 if (ParseUInt32(Idx)) return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001619 Indices.push_back(Idx);
1620 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001621
Chris Lattnerac161bf2009-01-02 07:01:27 +00001622 return false;
1623}
1624
1625//===----------------------------------------------------------------------===//
1626// Type Parsing.
1627//===----------------------------------------------------------------------===//
1628
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001629/// ParseType - Parse a type.
1630bool LLParser::ParseType(Type *&Result, bool AllowVoid) {
1631 SMLoc TypeLoc = Lex.getLoc();
Chris Lattnerac161bf2009-01-02 07:01:27 +00001632 switch (Lex.getKind()) {
1633 default:
1634 return TokError("expected type");
1635 case lltok::Type:
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001636 // Type ::= 'float' | 'void' (etc)
Chris Lattnerac161bf2009-01-02 07:01:27 +00001637 Result = Lex.getTyVal();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001638 Lex.Lex();
Chris Lattnerac161bf2009-01-02 07:01:27 +00001639 break;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001640 case lltok::lbrace:
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001641 // Type ::= StructType
1642 if (ParseAnonStructType(Result, false))
Chris Lattnerac161bf2009-01-02 07:01:27 +00001643 return true;
1644 break;
1645 case lltok::lsquare:
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001646 // Type ::= '[' ... ']'
Chris Lattnerac161bf2009-01-02 07:01:27 +00001647 Lex.Lex(); // eat the lsquare.
1648 if (ParseArrayVectorType(Result, false))
1649 return true;
1650 break;
1651 case lltok::less: // Either vector or packed struct.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001652 // Type ::= '<' ... '>'
Chris Lattner3822f632009-01-02 08:05:26 +00001653 Lex.Lex();
1654 if (Lex.getKind() == lltok::lbrace) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001655 if (ParseAnonStructType(Result, true) ||
Chris Lattner3822f632009-01-02 08:05:26 +00001656 ParseToken(lltok::greater, "expected '>' at end of packed struct"))
Chris Lattnerac161bf2009-01-02 07:01:27 +00001657 return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001658 } else if (ParseArrayVectorType(Result, true))
1659 return true;
1660 break;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001661 case lltok::LocalVar: {
1662 // Type ::= %foo
1663 std::pair<Type*, LocTy> &Entry = NamedTypes[Lex.getStrVal()];
Michael Ilseman26ee2b82012-11-15 22:34:00 +00001664
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001665 // If the type hasn't been defined yet, create a forward definition and
1666 // remember where that forward def'n was seen (in case it never is defined).
Craig Topper2617dcc2014-04-15 06:32:26 +00001667 if (!Entry.first) {
Chris Lattner335d3992011-08-12 18:06:37 +00001668 Entry.first = StructType::create(Context, Lex.getStrVal());
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001669 Entry.second = Lex.getLoc();
Chris Lattnerac161bf2009-01-02 07:01:27 +00001670 }
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001671 Result = Entry.first;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001672 Lex.Lex();
1673 break;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001674 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001675
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001676 case lltok::LocalVarID: {
1677 // Type ::= %4
1678 if (Lex.getUIntVal() >= NumberedTypes.size())
1679 NumberedTypes.resize(Lex.getUIntVal()+1);
1680 std::pair<Type*, LocTy> &Entry = NumberedTypes[Lex.getUIntVal()];
Michael Ilseman26ee2b82012-11-15 22:34:00 +00001681
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001682 // If the type hasn't been defined yet, create a forward definition and
1683 // remember where that forward def'n was seen (in case it never is defined).
Craig Topper2617dcc2014-04-15 06:32:26 +00001684 if (!Entry.first) {
Chris Lattner335d3992011-08-12 18:06:37 +00001685 Entry.first = StructType::create(Context);
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001686 Entry.second = Lex.getLoc();
Chris Lattnerac161bf2009-01-02 07:01:27 +00001687 }
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001688 Result = Entry.first;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001689 Lex.Lex();
1690 break;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001691 }
1692 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001693
1694 // Parse the type suffixes.
Chris Lattnerac161bf2009-01-02 07:01:27 +00001695 while (1) {
1696 switch (Lex.getKind()) {
1697 // End of type.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001698 default:
1699 if (!AllowVoid && Result->isVoidTy())
1700 return Error(TypeLoc, "void type only allowed for function results");
1701 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001702
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001703 // Type ::= Type '*'
Chris Lattnerac161bf2009-01-02 07:01:27 +00001704 case lltok::star:
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001705 if (Result->isLabelTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00001706 return TokError("basic block pointers are invalid");
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001707 if (Result->isVoidTy())
1708 return TokError("pointers to void are invalid - use i8* instead");
1709 if (!PointerType::isValidElementType(Result))
Nick Lewycky0aa6a742009-06-07 07:26:46 +00001710 return TokError("pointer to this type is invalid");
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001711 Result = PointerType::getUnqual(Result);
Chris Lattnerac161bf2009-01-02 07:01:27 +00001712 Lex.Lex();
1713 break;
1714
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001715 // Type ::= Type 'addrspace' '(' uint32 ')' '*'
Chris Lattnerac161bf2009-01-02 07:01:27 +00001716 case lltok::kw_addrspace: {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001717 if (Result->isLabelTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00001718 return TokError("basic block pointers are invalid");
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001719 if (Result->isVoidTy())
Dan Gohman9280a682009-02-09 17:41:21 +00001720 return TokError("pointers to void are invalid; use i8* instead");
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001721 if (!PointerType::isValidElementType(Result))
Nick Lewycky0aa6a742009-06-07 07:26:46 +00001722 return TokError("pointer to this type is invalid");
Chris Lattnerac161bf2009-01-02 07:01:27 +00001723 unsigned AddrSpace;
1724 if (ParseOptionalAddrSpace(AddrSpace) ||
1725 ParseToken(lltok::star, "expected '*' in address space"))
1726 return true;
1727
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001728 Result = PointerType::get(Result, AddrSpace);
Chris Lattnerac161bf2009-01-02 07:01:27 +00001729 break;
1730 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001731
Chris Lattnerac161bf2009-01-02 07:01:27 +00001732 /// Types '(' ArgTypeListI ')' OptFuncAttrs
1733 case lltok::lparen:
1734 if (ParseFunctionType(Result))
1735 return true;
1736 break;
1737 }
1738 }
1739}
1740
1741/// ParseParameterList
1742/// ::= '(' ')'
1743/// ::= '(' Arg (',' Arg)* ')'
1744/// Arg
1745/// ::= Type OptionalAttributes Value OptionalAttributes
1746bool LLParser::ParseParameterList(SmallVectorImpl<ParamInfo> &ArgList,
1747 PerFunctionState &PFS) {
1748 if (ParseToken(lltok::lparen, "expected '(' in call"))
1749 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001750
Bill Wendlingfe0021a2013-01-31 00:29:54 +00001751 unsigned AttrIndex = 1;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001752 while (Lex.getKind() != lltok::rparen) {
1753 // If this isn't the first argument, we need a comma.
1754 if (!ArgList.empty() &&
1755 ParseToken(lltok::comma, "expected ',' in argument list"))
1756 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001757
Chris Lattnerac161bf2009-01-02 07:01:27 +00001758 // Parse the argument.
1759 LocTy ArgLoc;
Craig Topper2617dcc2014-04-15 06:32:26 +00001760 Type *ArgTy = nullptr;
Bill Wendling50d27842012-10-15 20:35:56 +00001761 AttrBuilder ArgAttrs;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001762 Value *V;
Victor Hernandezfa232232009-12-03 23:40:58 +00001763 if (ParseType(ArgTy, ArgLoc))
Chris Lattnerac161bf2009-01-02 07:01:27 +00001764 return true;
Victor Hernandezfa232232009-12-03 23:40:58 +00001765
Chris Lattner5b4a9622009-12-30 02:11:14 +00001766 // Otherwise, handle normal operands.
Bill Wendling34c2eb22012-12-04 23:40:58 +00001767 if (ParseOptionalParamAttrs(ArgAttrs) || ParseValue(ArgTy, V, PFS))
Chris Lattner5b4a9622009-12-30 02:11:14 +00001768 return true;
Bill Wendlingfe0021a2013-01-31 00:29:54 +00001769 ArgList.push_back(ParamInfo(ArgLoc, V, AttributeSet::get(V->getContext(),
1770 AttrIndex++,
1771 ArgAttrs)));
Chris Lattnerac161bf2009-01-02 07:01:27 +00001772 }
1773
1774 Lex.Lex(); // Lex the ')'.
1775 return false;
1776}
1777
1778
1779
Chris Lattner2ed06b42009-01-05 18:34:07 +00001780/// ParseArgumentList - Parse the argument list for a function type or function
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001781/// prototype.
Chris Lattnerac161bf2009-01-02 07:01:27 +00001782/// ::= '(' ArgTypeListI ')'
1783/// ArgTypeListI
1784/// ::= /*empty*/
1785/// ::= '...'
1786/// ::= ArgTypeList ',' '...'
1787/// ::= ArgType (',' ArgType)*
Chris Lattner2ed06b42009-01-05 18:34:07 +00001788///
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001789bool LLParser::ParseArgumentList(SmallVectorImpl<ArgInfo> &ArgList,
1790 bool &isVarArg){
Chris Lattnerac161bf2009-01-02 07:01:27 +00001791 isVarArg = false;
1792 assert(Lex.getKind() == lltok::lparen);
1793 Lex.Lex(); // eat the (.
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001794
Chris Lattnerac161bf2009-01-02 07:01:27 +00001795 if (Lex.getKind() == lltok::rparen) {
1796 // empty
1797 } else if (Lex.getKind() == lltok::dotdotdot) {
1798 isVarArg = true;
1799 Lex.Lex();
1800 } else {
1801 LocTy TypeLoc = Lex.getLoc();
Craig Topper2617dcc2014-04-15 06:32:26 +00001802 Type *ArgTy = nullptr;
Bill Wendling50d27842012-10-15 20:35:56 +00001803 AttrBuilder Attrs;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001804 std::string Name;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001805
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001806 if (ParseType(ArgTy) ||
Bill Wendling34c2eb22012-12-04 23:40:58 +00001807 ParseOptionalParamAttrs(Attrs)) return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001808
Chris Lattnerfdd87902009-10-05 05:54:46 +00001809 if (ArgTy->isVoidTy())
Chris Lattnerf880ca22009-03-09 04:49:14 +00001810 return Error(TypeLoc, "argument can not have void type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001811
Chris Lattnerdef19492011-06-17 06:36:20 +00001812 if (Lex.getKind() == lltok::LocalVar) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00001813 Name = Lex.getStrVal();
1814 Lex.Lex();
1815 }
Chris Lattner3822f632009-01-02 08:05:26 +00001816
Nick Lewycky0aa6a742009-06-07 07:26:46 +00001817 if (!FunctionType::isValidArgumentType(ArgTy))
Chris Lattner3822f632009-01-02 08:05:26 +00001818 return Error(TypeLoc, "invalid type for function argument");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001819
Bill Wendlingfe0021a2013-01-31 00:29:54 +00001820 unsigned AttrIndex = 1;
Bill Wendlingd079a442012-10-15 04:46:55 +00001821 ArgList.push_back(ArgInfo(TypeLoc, ArgTy,
Bill Wendlingfe0021a2013-01-31 00:29:54 +00001822 AttributeSet::get(ArgTy->getContext(),
1823 AttrIndex++, Attrs), Name));
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001824
Chris Lattner3822f632009-01-02 08:05:26 +00001825 while (EatIfPresent(lltok::comma)) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00001826 // Handle ... at end of arg list.
Chris Lattner3822f632009-01-02 08:05:26 +00001827 if (EatIfPresent(lltok::dotdotdot)) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00001828 isVarArg = true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001829 break;
1830 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001831
Chris Lattnerac161bf2009-01-02 07:01:27 +00001832 // Otherwise must be an argument type.
1833 TypeLoc = Lex.getLoc();
Bill Wendling34c2eb22012-12-04 23:40:58 +00001834 if (ParseType(ArgTy) || ParseOptionalParamAttrs(Attrs)) return true;
Chris Lattner3822f632009-01-02 08:05:26 +00001835
Chris Lattnerfdd87902009-10-05 05:54:46 +00001836 if (ArgTy->isVoidTy())
Chris Lattnerf880ca22009-03-09 04:49:14 +00001837 return Error(TypeLoc, "argument can not have void type");
1838
Chris Lattnerdef19492011-06-17 06:36:20 +00001839 if (Lex.getKind() == lltok::LocalVar) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00001840 Name = Lex.getStrVal();
1841 Lex.Lex();
1842 } else {
1843 Name = "";
1844 }
Chris Lattner3822f632009-01-02 08:05:26 +00001845
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001846 if (!ArgTy->isFirstClassType())
Chris Lattner3822f632009-01-02 08:05:26 +00001847 return Error(TypeLoc, "invalid type for function argument");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001848
Bill Wendlingd079a442012-10-15 04:46:55 +00001849 ArgList.push_back(ArgInfo(TypeLoc, ArgTy,
Bill Wendlingfe0021a2013-01-31 00:29:54 +00001850 AttributeSet::get(ArgTy->getContext(),
1851 AttrIndex++, Attrs),
Bill Wendlingd079a442012-10-15 04:46:55 +00001852 Name));
Chris Lattnerac161bf2009-01-02 07:01:27 +00001853 }
1854 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001855
Chris Lattner3822f632009-01-02 08:05:26 +00001856 return ParseToken(lltok::rparen, "expected ')' at end of argument list");
Chris Lattnerac161bf2009-01-02 07:01:27 +00001857}
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001858
Chris Lattnerac161bf2009-01-02 07:01:27 +00001859/// ParseFunctionType
1860/// ::= Type ArgumentList OptionalAttrs
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001861bool LLParser::ParseFunctionType(Type *&Result) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00001862 assert(Lex.getKind() == lltok::lparen);
1863
Chris Lattnerce473c72009-01-05 08:04:33 +00001864 if (!FunctionType::isValidReturnType(Result))
1865 return TokError("invalid function return type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001866
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001867 SmallVector<ArgInfo, 8> ArgList;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001868 bool isVarArg;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001869 if (ParseArgumentList(ArgList, isVarArg))
Chris Lattnerac161bf2009-01-02 07:01:27 +00001870 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001871
Chris Lattnerac161bf2009-01-02 07:01:27 +00001872 // Reject names on the arguments lists.
1873 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
1874 if (!ArgList[i].Name.empty())
1875 return Error(ArgList[i].Loc, "argument name invalid in function type");
Bill Wendlingfe0021a2013-01-31 00:29:54 +00001876 if (ArgList[i].Attrs.hasAttributes(i + 1))
Chris Lattner6bc5c892011-06-17 17:37:13 +00001877 return Error(ArgList[i].Loc,
1878 "argument attributes invalid in function type");
Chris Lattnerac161bf2009-01-02 07:01:27 +00001879 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001880
Jay Foadb804a2b2011-07-12 14:06:48 +00001881 SmallVector<Type*, 16> ArgListTy;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001882 for (unsigned i = 0, e = ArgList.size(); i != e; ++i)
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001883 ArgListTy.push_back(ArgList[i].Ty);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001884
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001885 Result = FunctionType::get(Result, ArgListTy, isVarArg);
Chris Lattnerac161bf2009-01-02 07:01:27 +00001886 return false;
1887}
1888
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001889/// ParseAnonStructType - Parse an anonymous struct type, which is inlined into
1890/// other structs.
1891bool LLParser::ParseAnonStructType(Type *&Result, bool Packed) {
1892 SmallVector<Type*, 8> Elts;
1893 if (ParseStructBody(Elts)) return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00001894
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001895 Result = StructType::get(Context, Elts, Packed);
1896 return false;
1897}
1898
1899/// ParseStructDefinition - Parse a struct in a 'type' definition.
1900bool LLParser::ParseStructDefinition(SMLoc TypeLoc, StringRef Name,
1901 std::pair<Type*, LocTy> &Entry,
1902 Type *&ResultTy) {
1903 // If the type was already defined, diagnose the redefinition.
1904 if (Entry.first && !Entry.second.isValid())
1905 return Error(TypeLoc, "redefinition of type");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00001906
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001907 // If we have opaque, just return without filling in the definition for the
1908 // struct. This counts as a definition as far as the .ll file goes.
1909 if (EatIfPresent(lltok::kw_opaque)) {
1910 // This type is being defined, so clear the location to indicate this.
1911 Entry.second = SMLoc();
Michael Ilseman26ee2b82012-11-15 22:34:00 +00001912
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001913 // If this type number has never been uttered, create it.
Craig Topper2617dcc2014-04-15 06:32:26 +00001914 if (!Entry.first)
Chris Lattner335d3992011-08-12 18:06:37 +00001915 Entry.first = StructType::create(Context, Name);
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001916 ResultTy = Entry.first;
1917 return false;
1918 }
Michael Ilseman26ee2b82012-11-15 22:34:00 +00001919
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001920 // If the type starts with '<', then it is either a packed struct or a vector.
1921 bool isPacked = EatIfPresent(lltok::less);
1922
1923 // If we don't have a struct, then we have a random type alias, which we
1924 // accept for compatibility with old files. These types are not allowed to be
1925 // forward referenced and not allowed to be recursive.
1926 if (Lex.getKind() != lltok::lbrace) {
1927 if (Entry.first)
1928 return Error(TypeLoc, "forward references to non-struct type");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00001929
Craig Topper2617dcc2014-04-15 06:32:26 +00001930 ResultTy = nullptr;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001931 if (isPacked)
1932 return ParseArrayVectorType(ResultTy, true);
1933 return ParseType(ResultTy);
1934 }
Michael Ilseman26ee2b82012-11-15 22:34:00 +00001935
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001936 // This type is being defined, so clear the location to indicate this.
1937 Entry.second = SMLoc();
Michael Ilseman26ee2b82012-11-15 22:34:00 +00001938
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001939 // If this type number has never been uttered, create it.
Craig Topper2617dcc2014-04-15 06:32:26 +00001940 if (!Entry.first)
Chris Lattner335d3992011-08-12 18:06:37 +00001941 Entry.first = StructType::create(Context, Name);
Michael Ilseman26ee2b82012-11-15 22:34:00 +00001942
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001943 StructType *STy = cast<StructType>(Entry.first);
Michael Ilseman26ee2b82012-11-15 22:34:00 +00001944
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001945 SmallVector<Type*, 8> Body;
1946 if (ParseStructBody(Body) ||
1947 (isPacked && ParseToken(lltok::greater, "expected '>' in packed struct")))
1948 return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00001949
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001950 STy->setBody(Body, isPacked);
1951 ResultTy = STy;
1952 return false;
1953}
1954
1955
Chris Lattnerac161bf2009-01-02 07:01:27 +00001956/// ParseStructType: Handles packed and unpacked types. </> parsed elsewhere.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001957/// StructType
Chris Lattnerac161bf2009-01-02 07:01:27 +00001958/// ::= '{' '}'
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001959/// ::= '{' Type (',' Type)* '}'
Chris Lattnerac161bf2009-01-02 07:01:27 +00001960/// ::= '<' '{' '}' '>'
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001961/// ::= '<' '{' Type (',' Type)* '}' '>'
1962bool LLParser::ParseStructBody(SmallVectorImpl<Type*> &Body) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00001963 assert(Lex.getKind() == lltok::lbrace);
1964 Lex.Lex(); // Consume the '{'
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001965
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001966 // Handle the empty struct.
1967 if (EatIfPresent(lltok::rbrace))
Chris Lattnerac161bf2009-01-02 07:01:27 +00001968 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001969
Chris Lattnerf880ca22009-03-09 04:49:14 +00001970 LocTy EltTyLoc = Lex.getLoc();
Craig Topper2617dcc2014-04-15 06:32:26 +00001971 Type *Ty = nullptr;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001972 if (ParseType(Ty)) return true;
1973 Body.push_back(Ty);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001974
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001975 if (!StructType::isValidElementType(Ty))
Nick Lewycky0aa6a742009-06-07 07:26:46 +00001976 return Error(EltTyLoc, "invalid element type for struct");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001977
Chris Lattner3822f632009-01-02 08:05:26 +00001978 while (EatIfPresent(lltok::comma)) {
Chris Lattnerf880ca22009-03-09 04:49:14 +00001979 EltTyLoc = Lex.getLoc();
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001980 if (ParseType(Ty)) return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001981
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001982 if (!StructType::isValidElementType(Ty))
Nick Lewycky0aa6a742009-06-07 07:26:46 +00001983 return Error(EltTyLoc, "invalid element type for struct");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001984
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001985 Body.push_back(Ty);
Chris Lattnerac161bf2009-01-02 07:01:27 +00001986 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001987
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001988 return ParseToken(lltok::rbrace, "expected '}' at end of struct");
Chris Lattnerac161bf2009-01-02 07:01:27 +00001989}
1990
1991/// ParseArrayVectorType - Parse an array or vector type, assuming the first
1992/// token has already been consumed.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001993/// Type
Chris Lattnerac161bf2009-01-02 07:01:27 +00001994/// ::= '[' APSINTVAL 'x' Types ']'
1995/// ::= '<' APSINTVAL 'x' Types '>'
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001996bool LLParser::ParseArrayVectorType(Type *&Result, bool isVector) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00001997 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned() ||
1998 Lex.getAPSIntVal().getBitWidth() > 64)
1999 return TokError("expected number in address space");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002000
Chris Lattnerac161bf2009-01-02 07:01:27 +00002001 LocTy SizeLoc = Lex.getLoc();
2002 uint64_t Size = Lex.getAPSIntVal().getZExtValue();
Chris Lattner3822f632009-01-02 08:05:26 +00002003 Lex.Lex();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002004
Chris Lattner3822f632009-01-02 08:05:26 +00002005 if (ParseToken(lltok::kw_x, "expected 'x' after element count"))
2006 return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002007
2008 LocTy TypeLoc = Lex.getLoc();
Craig Topper2617dcc2014-04-15 06:32:26 +00002009 Type *EltTy = nullptr;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002010 if (ParseType(EltTy)) return true;
Chris Lattnerf880ca22009-03-09 04:49:14 +00002011
Chris Lattner3822f632009-01-02 08:05:26 +00002012 if (ParseToken(isVector ? lltok::greater : lltok::rsquare,
2013 "expected end of sequential type"))
2014 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002015
Chris Lattnerac161bf2009-01-02 07:01:27 +00002016 if (isVector) {
Chris Lattnerbb1fe8a2009-02-28 18:12:41 +00002017 if (Size == 0)
2018 return Error(SizeLoc, "zero element vector is illegal");
Chris Lattnerac161bf2009-01-02 07:01:27 +00002019 if ((unsigned)Size != Size)
2020 return Error(SizeLoc, "size too large for vector");
Nick Lewycky0aa6a742009-06-07 07:26:46 +00002021 if (!VectorType::isValidElementType(EltTy))
Duncan Sandse6beec62012-11-13 12:59:33 +00002022 return Error(TypeLoc, "invalid vector element type");
Owen Anderson4056ca92009-07-29 22:17:13 +00002023 Result = VectorType::get(EltTy, unsigned(Size));
Chris Lattnerac161bf2009-01-02 07:01:27 +00002024 } else {
Nick Lewycky0aa6a742009-06-07 07:26:46 +00002025 if (!ArrayType::isValidElementType(EltTy))
Chris Lattnerac161bf2009-01-02 07:01:27 +00002026 return Error(TypeLoc, "invalid array element type");
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002027 Result = ArrayType::get(EltTy, Size);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002028 }
2029 return false;
2030}
2031
2032//===----------------------------------------------------------------------===//
2033// Function Semantic Analysis.
2034//===----------------------------------------------------------------------===//
2035
Chris Lattner3432c622009-10-28 03:39:23 +00002036LLParser::PerFunctionState::PerFunctionState(LLParser &p, Function &f,
2037 int functionNumber)
2038 : P(p), F(f), FunctionNumber(functionNumber) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002039
2040 // Insert unnamed arguments into the NumberedVals list.
2041 for (Function::arg_iterator AI = F.arg_begin(), E = F.arg_end();
2042 AI != E; ++AI)
2043 if (!AI->hasName())
2044 NumberedVals.push_back(AI);
2045}
2046
2047LLParser::PerFunctionState::~PerFunctionState() {
2048 // If there were any forward referenced non-basicblock values, delete them.
2049 for (std::map<std::string, std::pair<Value*, LocTy> >::iterator
2050 I = ForwardRefVals.begin(), E = ForwardRefVals.end(); I != E; ++I)
2051 if (!isa<BasicBlock>(I->second.first)) {
Owen Anderson09063ce2009-07-02 17:04:01 +00002052 I->second.first->replaceAllUsesWith(
Owen Andersonb292b8c2009-07-30 23:03:37 +00002053 UndefValue::get(I->second.first->getType()));
Chris Lattnerac161bf2009-01-02 07:01:27 +00002054 delete I->second.first;
Craig Topper2617dcc2014-04-15 06:32:26 +00002055 I->second.first = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002056 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002057
Chris Lattnerac161bf2009-01-02 07:01:27 +00002058 for (std::map<unsigned, std::pair<Value*, LocTy> >::iterator
2059 I = ForwardRefValIDs.begin(), E = ForwardRefValIDs.end(); I != E; ++I)
2060 if (!isa<BasicBlock>(I->second.first)) {
Owen Anderson09063ce2009-07-02 17:04:01 +00002061 I->second.first->replaceAllUsesWith(
Owen Andersonb292b8c2009-07-30 23:03:37 +00002062 UndefValue::get(I->second.first->getType()));
Chris Lattnerac161bf2009-01-02 07:01:27 +00002063 delete I->second.first;
Craig Topper2617dcc2014-04-15 06:32:26 +00002064 I->second.first = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002065 }
2066}
2067
Chris Lattner3432c622009-10-28 03:39:23 +00002068bool LLParser::PerFunctionState::FinishFunction() {
2069 // Check to see if someone took the address of labels in this block.
2070 if (!P.ForwardRefBlockAddresses.empty()) {
2071 ValID FunctionID;
2072 if (!F.getName().empty()) {
2073 FunctionID.Kind = ValID::t_GlobalName;
2074 FunctionID.StrVal = F.getName();
2075 } else {
2076 FunctionID.Kind = ValID::t_GlobalID;
2077 FunctionID.UIntVal = FunctionNumber;
2078 }
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002079
Chris Lattner3432c622009-10-28 03:39:23 +00002080 std::map<ValID, std::vector<std::pair<ValID, GlobalValue*> > >::iterator
2081 FRBAI = P.ForwardRefBlockAddresses.find(FunctionID);
2082 if (FRBAI != P.ForwardRefBlockAddresses.end()) {
2083 // Resolve all these references.
2084 if (P.ResolveForwardRefBlockAddresses(&F, FRBAI->second, this))
2085 return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002086
Chris Lattner3432c622009-10-28 03:39:23 +00002087 P.ForwardRefBlockAddresses.erase(FRBAI);
2088 }
2089 }
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002090
Chris Lattnerac161bf2009-01-02 07:01:27 +00002091 if (!ForwardRefVals.empty())
2092 return P.Error(ForwardRefVals.begin()->second.second,
2093 "use of undefined value '%" + ForwardRefVals.begin()->first +
2094 "'");
2095 if (!ForwardRefValIDs.empty())
2096 return P.Error(ForwardRefValIDs.begin()->second.second,
2097 "use of undefined value '%" +
Benjamin Kramerc7583112010-09-27 17:42:11 +00002098 Twine(ForwardRefValIDs.begin()->first) + "'");
Chris Lattnerac161bf2009-01-02 07:01:27 +00002099 return false;
2100}
2101
2102
2103/// GetVal - Get a value with the specified name or ID, creating a
2104/// forward reference record if needed. This can return null if the value
2105/// exists but does not have the right type.
2106Value *LLParser::PerFunctionState::GetVal(const std::string &Name,
Chris Lattner229907c2011-07-18 04:54:35 +00002107 Type *Ty, LocTy Loc) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002108 // Look this name up in the normal function symbol table.
2109 Value *Val = F.getValueSymbolTable().lookup(Name);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002110
Chris Lattnerac161bf2009-01-02 07:01:27 +00002111 // If this is a forward reference for the value, see if we already created a
2112 // forward ref record.
Craig Topper2617dcc2014-04-15 06:32:26 +00002113 if (!Val) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002114 std::map<std::string, std::pair<Value*, LocTy> >::iterator
2115 I = ForwardRefVals.find(Name);
2116 if (I != ForwardRefVals.end())
2117 Val = I->second.first;
2118 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002119
Chris Lattnerac161bf2009-01-02 07:01:27 +00002120 // If we have the value in the symbol table or fwd-ref table, return it.
2121 if (Val) {
2122 if (Val->getType() == Ty) return Val;
Chris Lattnerfdd87902009-10-05 05:54:46 +00002123 if (Ty->isLabelTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00002124 P.Error(Loc, "'%" + Name + "' is not a basic block");
2125 else
2126 P.Error(Loc, "'%" + Name + "' defined with type '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00002127 getTypeString(Val->getType()) + "'");
Craig Topper2617dcc2014-04-15 06:32:26 +00002128 return nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002129 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002130
Chris Lattnerac161bf2009-01-02 07:01:27 +00002131 // Don't make placeholders with invalid type.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002132 if (!Ty->isFirstClassType() && !Ty->isLabelTy()) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002133 P.Error(Loc, "invalid use of a non-first-class type");
Craig Topper2617dcc2014-04-15 06:32:26 +00002134 return nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002135 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002136
Chris Lattnerac161bf2009-01-02 07:01:27 +00002137 // Otherwise, create a new forward reference for this value and remember it.
2138 Value *FwdVal;
Chris Lattnerfdd87902009-10-05 05:54:46 +00002139 if (Ty->isLabelTy())
Owen Anderson55f1c092009-08-13 21:58:54 +00002140 FwdVal = BasicBlock::Create(F.getContext(), Name, &F);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002141 else
2142 FwdVal = new Argument(Ty, Name);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002143
Chris Lattnerac161bf2009-01-02 07:01:27 +00002144 ForwardRefVals[Name] = std::make_pair(FwdVal, Loc);
2145 return FwdVal;
2146}
2147
Chris Lattner229907c2011-07-18 04:54:35 +00002148Value *LLParser::PerFunctionState::GetVal(unsigned ID, Type *Ty,
Chris Lattnerac161bf2009-01-02 07:01:27 +00002149 LocTy Loc) {
2150 // Look this name up in the normal function symbol table.
Craig Topper2617dcc2014-04-15 06:32:26 +00002151 Value *Val = ID < NumberedVals.size() ? NumberedVals[ID] : nullptr;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002152
Chris Lattnerac161bf2009-01-02 07:01:27 +00002153 // If this is a forward reference for the value, see if we already created a
2154 // forward ref record.
Craig Topper2617dcc2014-04-15 06:32:26 +00002155 if (!Val) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002156 std::map<unsigned, std::pair<Value*, LocTy> >::iterator
2157 I = ForwardRefValIDs.find(ID);
2158 if (I != ForwardRefValIDs.end())
2159 Val = I->second.first;
2160 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002161
Chris Lattnerac161bf2009-01-02 07:01:27 +00002162 // If we have the value in the symbol table or fwd-ref table, return it.
2163 if (Val) {
2164 if (Val->getType() == Ty) return Val;
Chris Lattnerfdd87902009-10-05 05:54:46 +00002165 if (Ty->isLabelTy())
Benjamin Kramerc7583112010-09-27 17:42:11 +00002166 P.Error(Loc, "'%" + Twine(ID) + "' is not a basic block");
Chris Lattnerac161bf2009-01-02 07:01:27 +00002167 else
Benjamin Kramerc7583112010-09-27 17:42:11 +00002168 P.Error(Loc, "'%" + Twine(ID) + "' defined with type '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00002169 getTypeString(Val->getType()) + "'");
Craig Topper2617dcc2014-04-15 06:32:26 +00002170 return nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002171 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002172
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002173 if (!Ty->isFirstClassType() && !Ty->isLabelTy()) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002174 P.Error(Loc, "invalid use of a non-first-class type");
Craig Topper2617dcc2014-04-15 06:32:26 +00002175 return nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002176 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002177
Chris Lattnerac161bf2009-01-02 07:01:27 +00002178 // Otherwise, create a new forward reference for this value and remember it.
2179 Value *FwdVal;
Chris Lattnerfdd87902009-10-05 05:54:46 +00002180 if (Ty->isLabelTy())
Owen Anderson55f1c092009-08-13 21:58:54 +00002181 FwdVal = BasicBlock::Create(F.getContext(), "", &F);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002182 else
2183 FwdVal = new Argument(Ty);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002184
Chris Lattnerac161bf2009-01-02 07:01:27 +00002185 ForwardRefValIDs[ID] = std::make_pair(FwdVal, Loc);
2186 return FwdVal;
2187}
2188
2189/// SetInstName - After an instruction is parsed and inserted into its
2190/// basic block, this installs its name.
2191bool LLParser::PerFunctionState::SetInstName(int NameID,
2192 const std::string &NameStr,
2193 LocTy NameLoc, Instruction *Inst) {
2194 // If this instruction has void type, it cannot have a name or ID specified.
Chris Lattnerfdd87902009-10-05 05:54:46 +00002195 if (Inst->getType()->isVoidTy()) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002196 if (NameID != -1 || !NameStr.empty())
2197 return P.Error(NameLoc, "instructions returning void cannot have a name");
2198 return false;
2199 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002200
Chris Lattnerac161bf2009-01-02 07:01:27 +00002201 // If this was a numbered instruction, verify that the instruction is the
2202 // expected value and resolve any forward references.
2203 if (NameStr.empty()) {
2204 // If neither a name nor an ID was specified, just use the next ID.
2205 if (NameID == -1)
2206 NameID = NumberedVals.size();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002207
Chris Lattnerac161bf2009-01-02 07:01:27 +00002208 if (unsigned(NameID) != NumberedVals.size())
2209 return P.Error(NameLoc, "instruction expected to be numbered '%" +
Benjamin Kramerc7583112010-09-27 17:42:11 +00002210 Twine(NumberedVals.size()) + "'");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002211
Chris Lattnerac161bf2009-01-02 07:01:27 +00002212 std::map<unsigned, std::pair<Value*, LocTy> >::iterator FI =
2213 ForwardRefValIDs.find(NameID);
2214 if (FI != ForwardRefValIDs.end()) {
2215 if (FI->second.first->getType() != Inst->getType())
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002216 return P.Error(NameLoc, "instruction forward referenced with type '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00002217 getTypeString(FI->second.first->getType()) + "'");
Chris Lattnerac161bf2009-01-02 07:01:27 +00002218 FI->second.first->replaceAllUsesWith(Inst);
Nuno Lopes2baa6a32009-09-02 15:02:57 +00002219 delete FI->second.first;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002220 ForwardRefValIDs.erase(FI);
2221 }
2222
2223 NumberedVals.push_back(Inst);
2224 return false;
2225 }
2226
2227 // Otherwise, the instruction had a name. Resolve forward refs and set it.
2228 std::map<std::string, std::pair<Value*, LocTy> >::iterator
2229 FI = ForwardRefVals.find(NameStr);
2230 if (FI != ForwardRefVals.end()) {
2231 if (FI->second.first->getType() != Inst->getType())
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002232 return P.Error(NameLoc, "instruction forward referenced with type '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00002233 getTypeString(FI->second.first->getType()) + "'");
Chris Lattnerac161bf2009-01-02 07:01:27 +00002234 FI->second.first->replaceAllUsesWith(Inst);
Nuno Lopes2fcee702009-09-02 14:22:03 +00002235 delete FI->second.first;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002236 ForwardRefVals.erase(FI);
2237 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002238
Chris Lattnerac161bf2009-01-02 07:01:27 +00002239 // Set the name on the instruction.
2240 Inst->setName(NameStr);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002241
Benjamin Kramer1dc34b42010-10-16 11:28:23 +00002242 if (Inst->getName() != NameStr)
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002243 return P.Error(NameLoc, "multiple definition of local value named '" +
Chris Lattnerac161bf2009-01-02 07:01:27 +00002244 NameStr + "'");
2245 return false;
2246}
2247
2248/// GetBB - Get a basic block with the specified name or ID, creating a
2249/// forward reference record if needed.
2250BasicBlock *LLParser::PerFunctionState::GetBB(const std::string &Name,
2251 LocTy Loc) {
Owen Anderson55f1c092009-08-13 21:58:54 +00002252 return cast_or_null<BasicBlock>(GetVal(Name,
2253 Type::getLabelTy(F.getContext()), Loc));
Chris Lattnerac161bf2009-01-02 07:01:27 +00002254}
2255
2256BasicBlock *LLParser::PerFunctionState::GetBB(unsigned ID, LocTy Loc) {
Owen Anderson55f1c092009-08-13 21:58:54 +00002257 return cast_or_null<BasicBlock>(GetVal(ID,
2258 Type::getLabelTy(F.getContext()), Loc));
Chris Lattnerac161bf2009-01-02 07:01:27 +00002259}
2260
2261/// DefineBB - Define the specified basic block, which is either named or
2262/// unnamed. If there is an error, this returns null otherwise it returns
2263/// the block being defined.
2264BasicBlock *LLParser::PerFunctionState::DefineBB(const std::string &Name,
2265 LocTy Loc) {
2266 BasicBlock *BB;
2267 if (Name.empty())
2268 BB = GetBB(NumberedVals.size(), Loc);
2269 else
2270 BB = GetBB(Name, Loc);
Craig Topper2617dcc2014-04-15 06:32:26 +00002271 if (!BB) return nullptr; // Already diagnosed error.
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002272
Chris Lattnerac161bf2009-01-02 07:01:27 +00002273 // Move the block to the end of the function. Forward ref'd blocks are
2274 // inserted wherever they happen to be referenced.
2275 F.getBasicBlockList().splice(F.end(), F.getBasicBlockList(), BB);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002276
Chris Lattnerac161bf2009-01-02 07:01:27 +00002277 // Remove the block from forward ref sets.
2278 if (Name.empty()) {
2279 ForwardRefValIDs.erase(NumberedVals.size());
2280 NumberedVals.push_back(BB);
2281 } else {
2282 // BB forward references are already in the function symbol table.
2283 ForwardRefVals.erase(Name);
2284 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002285
Chris Lattnerac161bf2009-01-02 07:01:27 +00002286 return BB;
2287}
2288
2289//===----------------------------------------------------------------------===//
2290// Constants.
2291//===----------------------------------------------------------------------===//
2292
2293/// ParseValID - Parse an abstract value that doesn't necessarily have a
2294/// type implied. For example, if we parse "4" we don't know what integer type
2295/// it has. The value will later be combined with its type and checked for
Victor Hernandezb8fd1522010-01-10 07:14:18 +00002296/// sanity. PFS is used to convert function-local operands of metadata (since
2297/// metadata operands are not just parsed here but also converted to values).
2298/// PFS can be null when we are not parsing metadata values inside a function.
Victor Hernandezdc6e65a2010-01-05 22:22:14 +00002299bool LLParser::ParseValID(ValID &ID, PerFunctionState *PFS) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002300 ID.Loc = Lex.getLoc();
2301 switch (Lex.getKind()) {
2302 default: return TokError("expected value token");
2303 case lltok::GlobalID: // @42
2304 ID.UIntVal = Lex.getUIntVal();
2305 ID.Kind = ValID::t_GlobalID;
2306 break;
2307 case lltok::GlobalVar: // @foo
2308 ID.StrVal = Lex.getStrVal();
2309 ID.Kind = ValID::t_GlobalName;
2310 break;
2311 case lltok::LocalVarID: // %42
2312 ID.UIntVal = Lex.getUIntVal();
2313 ID.Kind = ValID::t_LocalID;
2314 break;
2315 case lltok::LocalVar: // %foo
Chris Lattnerac161bf2009-01-02 07:01:27 +00002316 ID.StrVal = Lex.getStrVal();
2317 ID.Kind = ValID::t_LocalName;
2318 break;
Dan Gohman8939ba332010-07-14 18:26:50 +00002319 case lltok::exclaim: // !42, !{...}, or !"foo"
2320 return ParseMetadataValue(ID, PFS);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002321 case lltok::APSInt:
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002322 ID.APSIntVal = Lex.getAPSIntVal();
Chris Lattnerac161bf2009-01-02 07:01:27 +00002323 ID.Kind = ValID::t_APSInt;
2324 break;
2325 case lltok::APFloat:
2326 ID.APFloatVal = Lex.getAPFloatVal();
2327 ID.Kind = ValID::t_APFloat;
2328 break;
2329 case lltok::kw_true:
Owen Anderson23a204d2009-07-31 17:39:07 +00002330 ID.ConstantVal = ConstantInt::getTrue(Context);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002331 ID.Kind = ValID::t_Constant;
2332 break;
2333 case lltok::kw_false:
Owen Anderson23a204d2009-07-31 17:39:07 +00002334 ID.ConstantVal = ConstantInt::getFalse(Context);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002335 ID.Kind = ValID::t_Constant;
2336 break;
2337 case lltok::kw_null: ID.Kind = ValID::t_Null; break;
2338 case lltok::kw_undef: ID.Kind = ValID::t_Undef; break;
2339 case lltok::kw_zeroinitializer: ID.Kind = ValID::t_Zero; break;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002340
Chris Lattnerac161bf2009-01-02 07:01:27 +00002341 case lltok::lbrace: {
2342 // ValID ::= '{' ConstVector '}'
2343 Lex.Lex();
2344 SmallVector<Constant*, 16> Elts;
2345 if (ParseGlobalValueVector(Elts) ||
2346 ParseToken(lltok::rbrace, "expected end of struct constant"))
2347 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002348
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002349 ID.ConstantStructElts = new Constant*[Elts.size()];
2350 ID.UIntVal = Elts.size();
2351 memcpy(ID.ConstantStructElts, Elts.data(), Elts.size()*sizeof(Elts[0]));
2352 ID.Kind = ValID::t_ConstantStruct;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002353 return false;
2354 }
2355 case lltok::less: {
2356 // ValID ::= '<' ConstVector '>' --> Vector.
2357 // ValID ::= '<' '{' ConstVector '}' '>' --> Packed Struct.
2358 Lex.Lex();
Chris Lattner3822f632009-01-02 08:05:26 +00002359 bool isPackedStruct = EatIfPresent(lltok::lbrace);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002360
Chris Lattnerac161bf2009-01-02 07:01:27 +00002361 SmallVector<Constant*, 16> Elts;
2362 LocTy FirstEltLoc = Lex.getLoc();
2363 if (ParseGlobalValueVector(Elts) ||
2364 (isPackedStruct &&
2365 ParseToken(lltok::rbrace, "expected end of packed struct")) ||
2366 ParseToken(lltok::greater, "expected end of constant"))
2367 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002368
Chris Lattnerac161bf2009-01-02 07:01:27 +00002369 if (isPackedStruct) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002370 ID.ConstantStructElts = new Constant*[Elts.size()];
2371 memcpy(ID.ConstantStructElts, Elts.data(), Elts.size()*sizeof(Elts[0]));
2372 ID.UIntVal = Elts.size();
2373 ID.Kind = ValID::t_PackedConstantStruct;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002374 return false;
2375 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002376
Chris Lattnerac161bf2009-01-02 07:01:27 +00002377 if (Elts.empty())
2378 return Error(ID.Loc, "constant vector must not be empty");
2379
Duncan Sands9dff9be2010-02-15 16:12:20 +00002380 if (!Elts[0]->getType()->isIntegerTy() &&
Nadav Rotem3924cb02011-12-05 06:29:09 +00002381 !Elts[0]->getType()->isFloatingPointTy() &&
2382 !Elts[0]->getType()->isPointerTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00002383 return Error(FirstEltLoc,
Nadav Rotem3924cb02011-12-05 06:29:09 +00002384 "vector elements must have integer, pointer or floating point type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002385
Chris Lattnerac161bf2009-01-02 07:01:27 +00002386 // Verify that all the vector elements have the same type.
2387 for (unsigned i = 1, e = Elts.size(); i != e; ++i)
2388 if (Elts[i]->getType() != Elts[0]->getType())
2389 return Error(FirstEltLoc,
Benjamin Kramerc7583112010-09-27 17:42:11 +00002390 "vector element #" + Twine(i) +
Chris Lattner0f214eb2011-06-18 21:18:23 +00002391 " is not of type '" + getTypeString(Elts[0]->getType()));
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002392
Chris Lattner69229312011-02-15 00:14:00 +00002393 ID.ConstantVal = ConstantVector::get(Elts);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002394 ID.Kind = ValID::t_Constant;
2395 return false;
2396 }
2397 case lltok::lsquare: { // Array Constant
2398 Lex.Lex();
2399 SmallVector<Constant*, 16> Elts;
2400 LocTy FirstEltLoc = Lex.getLoc();
2401 if (ParseGlobalValueVector(Elts) ||
2402 ParseToken(lltok::rsquare, "expected end of array constant"))
2403 return true;
2404
2405 // Handle empty element.
2406 if (Elts.empty()) {
2407 // Use undef instead of an array because it's inconvenient to determine
2408 // the element type at this point, there being no elements to examine.
Chris Lattner998fa0a2009-01-05 07:52:51 +00002409 ID.Kind = ValID::t_EmptyArray;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002410 return false;
2411 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002412
Chris Lattnerac161bf2009-01-02 07:01:27 +00002413 if (!Elts[0]->getType()->isFirstClassType())
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002414 return Error(FirstEltLoc, "invalid array element type: " +
Chris Lattner0f214eb2011-06-18 21:18:23 +00002415 getTypeString(Elts[0]->getType()));
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002416
Owen Anderson4056ca92009-07-29 22:17:13 +00002417 ArrayType *ATy = ArrayType::get(Elts[0]->getType(), Elts.size());
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002418
Chris Lattnerac161bf2009-01-02 07:01:27 +00002419 // Verify all elements are correct type!
Chris Lattner59d0e3b2009-01-02 08:49:06 +00002420 for (unsigned i = 0, e = Elts.size(); i != e; ++i) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002421 if (Elts[i]->getType() != Elts[0]->getType())
2422 return Error(FirstEltLoc,
Benjamin Kramerc7583112010-09-27 17:42:11 +00002423 "array element #" + Twine(i) +
Chris Lattner0f214eb2011-06-18 21:18:23 +00002424 " is not of type '" + getTypeString(Elts[0]->getType()));
Chris Lattnerac161bf2009-01-02 07:01:27 +00002425 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002426
Jay Foad83be3612011-06-22 09:24:39 +00002427 ID.ConstantVal = ConstantArray::get(ATy, Elts);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002428 ID.Kind = ValID::t_Constant;
2429 return false;
2430 }
2431 case lltok::kw_c: // c "foo"
2432 Lex.Lex();
Chris Lattnercf9e8f62012-02-05 02:29:43 +00002433 ID.ConstantVal = ConstantDataArray::getString(Context, Lex.getStrVal(),
2434 false);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002435 if (ParseToken(lltok::StringConstant, "expected string")) return true;
2436 ID.Kind = ValID::t_Constant;
2437 return false;
2438
2439 case lltok::kw_asm: {
Chad Rosier6f9c3852013-02-14 20:44:07 +00002440 // ValID ::= 'asm' SideEffect? AlignStack? IntelDialect? STRINGCONSTANT ','
2441 // STRINGCONSTANT
Chad Rosierd8c76102012-09-05 19:00:49 +00002442 bool HasSideEffect, AlignStack, AsmDialect;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002443 Lex.Lex();
2444 if (ParseOptionalToken(lltok::kw_sideeffect, HasSideEffect) ||
Dale Johannesen1cfb9582009-10-21 23:28:00 +00002445 ParseOptionalToken(lltok::kw_alignstack, AlignStack) ||
Chad Rosierd8c76102012-09-05 19:00:49 +00002446 ParseOptionalToken(lltok::kw_inteldialect, AsmDialect) ||
Chris Lattner3822f632009-01-02 08:05:26 +00002447 ParseStringConstant(ID.StrVal) ||
2448 ParseToken(lltok::comma, "expected comma in inline asm expression") ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00002449 ParseToken(lltok::StringConstant, "expected constraint string"))
2450 return true;
2451 ID.StrVal2 = Lex.getStrVal();
Chad Rosierf42fad62012-09-05 00:08:17 +00002452 ID.UIntVal = unsigned(HasSideEffect) | (unsigned(AlignStack)<<1) |
Chad Rosierd8c76102012-09-05 19:00:49 +00002453 (unsigned(AsmDialect)<<2);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002454 ID.Kind = ValID::t_InlineAsm;
2455 return false;
2456 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002457
Chris Lattner3432c622009-10-28 03:39:23 +00002458 case lltok::kw_blockaddress: {
2459 // ValID ::= 'blockaddress' '(' @foo ',' %bar ')'
2460 Lex.Lex();
2461
2462 ValID Fn, Label;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002463
Chris Lattner3432c622009-10-28 03:39:23 +00002464 if (ParseToken(lltok::lparen, "expected '(' in block address expression") ||
2465 ParseValID(Fn) ||
2466 ParseToken(lltok::comma, "expected comma in block address expression")||
2467 ParseValID(Label) ||
2468 ParseToken(lltok::rparen, "expected ')' in block address expression"))
2469 return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002470
Chris Lattner3432c622009-10-28 03:39:23 +00002471 if (Fn.Kind != ValID::t_GlobalID && Fn.Kind != ValID::t_GlobalName)
2472 return Error(Fn.Loc, "expected function name in blockaddress");
Chris Lattneraa99c942009-11-01 01:27:45 +00002473 if (Label.Kind != ValID::t_LocalID && Label.Kind != ValID::t_LocalName)
Chris Lattner3432c622009-10-28 03:39:23 +00002474 return Error(Label.Loc, "expected basic block name in blockaddress");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002475
Chris Lattner3432c622009-10-28 03:39:23 +00002476 // Make a global variable as a placeholder for this reference.
2477 GlobalVariable *FwdRef = new GlobalVariable(*M, Type::getInt8Ty(Context),
2478 false, GlobalValue::InternalLinkage,
Craig Topper2617dcc2014-04-15 06:32:26 +00002479 nullptr, "");
Chris Lattner3432c622009-10-28 03:39:23 +00002480 ForwardRefBlockAddresses[Fn].push_back(std::make_pair(Label, FwdRef));
2481 ID.ConstantVal = FwdRef;
2482 ID.Kind = ValID::t_Constant;
2483 return false;
2484 }
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002485
Chris Lattnerac161bf2009-01-02 07:01:27 +00002486 case lltok::kw_trunc:
2487 case lltok::kw_zext:
2488 case lltok::kw_sext:
2489 case lltok::kw_fptrunc:
2490 case lltok::kw_fpext:
2491 case lltok::kw_bitcast:
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002492 case lltok::kw_addrspacecast:
Chris Lattnerac161bf2009-01-02 07:01:27 +00002493 case lltok::kw_uitofp:
2494 case lltok::kw_sitofp:
2495 case lltok::kw_fptoui:
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002496 case lltok::kw_fptosi:
Chris Lattnerac161bf2009-01-02 07:01:27 +00002497 case lltok::kw_inttoptr:
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002498 case lltok::kw_ptrtoint: {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002499 unsigned Opc = Lex.getUIntVal();
Craig Topper2617dcc2014-04-15 06:32:26 +00002500 Type *DestTy = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002501 Constant *SrcVal;
2502 Lex.Lex();
2503 if (ParseToken(lltok::lparen, "expected '(' after constantexpr cast") ||
2504 ParseGlobalTypeAndValue(SrcVal) ||
Dan Gohman0b5d0422009-06-15 21:52:11 +00002505 ParseToken(lltok::kw_to, "expected 'to' in constantexpr cast") ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00002506 ParseType(DestTy) ||
2507 ParseToken(lltok::rparen, "expected ')' at end of constantexpr cast"))
2508 return true;
2509 if (!CastInst::castIsValid((Instruction::CastOps)Opc, SrcVal, DestTy))
2510 return Error(ID.Loc, "invalid cast opcode for cast from '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00002511 getTypeString(SrcVal->getType()) + "' to '" +
2512 getTypeString(DestTy) + "'");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002513 ID.ConstantVal = ConstantExpr::getCast((Instruction::CastOps)Opc,
Owen Anderson02a9da32009-07-01 23:57:11 +00002514 SrcVal, DestTy);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002515 ID.Kind = ValID::t_Constant;
2516 return false;
2517 }
2518 case lltok::kw_extractvalue: {
2519 Lex.Lex();
2520 Constant *Val;
2521 SmallVector<unsigned, 4> Indices;
2522 if (ParseToken(lltok::lparen, "expected '(' in extractvalue constantexpr")||
2523 ParseGlobalTypeAndValue(Val) ||
2524 ParseIndexList(Indices) ||
2525 ParseToken(lltok::rparen, "expected ')' in extractvalue constantexpr"))
2526 return true;
Devang Patel1cb51162009-11-03 19:06:07 +00002527
Chris Lattner392be582010-02-12 20:49:41 +00002528 if (!Val->getType()->isAggregateType())
2529 return Error(ID.Loc, "extractvalue operand must be aggregate type");
Jay Foad57aa6362011-07-13 10:26:04 +00002530 if (!ExtractValueInst::getIndexedType(Val->getType(), Indices))
Chris Lattnerac161bf2009-01-02 07:01:27 +00002531 return Error(ID.Loc, "invalid indices for extractvalue");
Jay Foad57aa6362011-07-13 10:26:04 +00002532 ID.ConstantVal = ConstantExpr::getExtractValue(Val, Indices);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002533 ID.Kind = ValID::t_Constant;
2534 return false;
2535 }
2536 case lltok::kw_insertvalue: {
2537 Lex.Lex();
2538 Constant *Val0, *Val1;
2539 SmallVector<unsigned, 4> Indices;
2540 if (ParseToken(lltok::lparen, "expected '(' in insertvalue constantexpr")||
2541 ParseGlobalTypeAndValue(Val0) ||
2542 ParseToken(lltok::comma, "expected comma in insertvalue constantexpr")||
2543 ParseGlobalTypeAndValue(Val1) ||
2544 ParseIndexList(Indices) ||
2545 ParseToken(lltok::rparen, "expected ')' in insertvalue constantexpr"))
2546 return true;
Chris Lattner392be582010-02-12 20:49:41 +00002547 if (!Val0->getType()->isAggregateType())
2548 return Error(ID.Loc, "insertvalue operand must be aggregate type");
Jay Foad57aa6362011-07-13 10:26:04 +00002549 if (!ExtractValueInst::getIndexedType(Val0->getType(), Indices))
Chris Lattnerac161bf2009-01-02 07:01:27 +00002550 return Error(ID.Loc, "invalid indices for insertvalue");
Jay Foad57aa6362011-07-13 10:26:04 +00002551 ID.ConstantVal = ConstantExpr::getInsertValue(Val0, Val1, Indices);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002552 ID.Kind = ValID::t_Constant;
2553 return false;
2554 }
2555 case lltok::kw_icmp:
Nick Lewyckya21d3da2009-07-08 03:04:38 +00002556 case lltok::kw_fcmp: {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002557 unsigned PredVal, Opc = Lex.getUIntVal();
2558 Constant *Val0, *Val1;
2559 Lex.Lex();
2560 if (ParseCmpPredicate(PredVal, Opc) ||
2561 ParseToken(lltok::lparen, "expected '(' in compare constantexpr") ||
2562 ParseGlobalTypeAndValue(Val0) ||
2563 ParseToken(lltok::comma, "expected comma in compare constantexpr") ||
2564 ParseGlobalTypeAndValue(Val1) ||
2565 ParseToken(lltok::rparen, "expected ')' in compare constantexpr"))
2566 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002567
Chris Lattnerac161bf2009-01-02 07:01:27 +00002568 if (Val0->getType() != Val1->getType())
2569 return Error(ID.Loc, "compare operands must have the same type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002570
Chris Lattnerac161bf2009-01-02 07:01:27 +00002571 CmpInst::Predicate Pred = (CmpInst::Predicate)PredVal;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002572
Chris Lattnerac161bf2009-01-02 07:01:27 +00002573 if (Opc == Instruction::FCmp) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00002574 if (!Val0->getType()->isFPOrFPVectorTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00002575 return Error(ID.Loc, "fcmp requires floating point operands");
Owen Anderson487375e2009-07-29 18:55:55 +00002576 ID.ConstantVal = ConstantExpr::getFCmp(Pred, Val0, Val1);
Nick Lewyckya21d3da2009-07-08 03:04:38 +00002577 } else {
2578 assert(Opc == Instruction::ICmp && "Unexpected opcode for CmpInst!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00002579 if (!Val0->getType()->isIntOrIntVectorTy() &&
Nadav Rotem3924cb02011-12-05 06:29:09 +00002580 !Val0->getType()->getScalarType()->isPointerTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00002581 return Error(ID.Loc, "icmp requires pointer or integer operands");
Owen Anderson487375e2009-07-29 18:55:55 +00002582 ID.ConstantVal = ConstantExpr::getICmp(Pred, Val0, Val1);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002583 }
2584 ID.Kind = ValID::t_Constant;
2585 return false;
2586 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002587
Chris Lattnerac161bf2009-01-02 07:01:27 +00002588 // Binary Operators.
2589 case lltok::kw_add:
Dan Gohmana5b96452009-06-04 22:49:04 +00002590 case lltok::kw_fadd:
Chris Lattnerac161bf2009-01-02 07:01:27 +00002591 case lltok::kw_sub:
Dan Gohmana5b96452009-06-04 22:49:04 +00002592 case lltok::kw_fsub:
Chris Lattnerac161bf2009-01-02 07:01:27 +00002593 case lltok::kw_mul:
Dan Gohmana5b96452009-06-04 22:49:04 +00002594 case lltok::kw_fmul:
Chris Lattnerac161bf2009-01-02 07:01:27 +00002595 case lltok::kw_udiv:
2596 case lltok::kw_sdiv:
2597 case lltok::kw_fdiv:
2598 case lltok::kw_urem:
2599 case lltok::kw_srem:
Chris Lattnera676c0f2011-02-07 16:40:21 +00002600 case lltok::kw_frem:
2601 case lltok::kw_shl:
2602 case lltok::kw_lshr:
2603 case lltok::kw_ashr: {
Dan Gohman9c7f8082009-07-27 16:11:46 +00002604 bool NUW = false;
2605 bool NSW = false;
2606 bool Exact = false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002607 unsigned Opc = Lex.getUIntVal();
2608 Constant *Val0, *Val1;
2609 Lex.Lex();
Dan Gohman9c7f8082009-07-27 16:11:46 +00002610 LocTy ModifierLoc = Lex.getLoc();
Chris Lattnera676c0f2011-02-07 16:40:21 +00002611 if (Opc == Instruction::Add || Opc == Instruction::Sub ||
2612 Opc == Instruction::Mul || Opc == Instruction::Shl) {
Dan Gohman9c7f8082009-07-27 16:11:46 +00002613 if (EatIfPresent(lltok::kw_nuw))
2614 NUW = true;
2615 if (EatIfPresent(lltok::kw_nsw)) {
2616 NSW = true;
2617 if (EatIfPresent(lltok::kw_nuw))
2618 NUW = true;
2619 }
Chris Lattnera676c0f2011-02-07 16:40:21 +00002620 } else if (Opc == Instruction::SDiv || Opc == Instruction::UDiv ||
2621 Opc == Instruction::LShr || Opc == Instruction::AShr) {
Dan Gohman9c7f8082009-07-27 16:11:46 +00002622 if (EatIfPresent(lltok::kw_exact))
2623 Exact = true;
2624 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00002625 if (ParseToken(lltok::lparen, "expected '(' in binary constantexpr") ||
2626 ParseGlobalTypeAndValue(Val0) ||
2627 ParseToken(lltok::comma, "expected comma in binary constantexpr") ||
2628 ParseGlobalTypeAndValue(Val1) ||
2629 ParseToken(lltok::rparen, "expected ')' in binary constantexpr"))
2630 return true;
2631 if (Val0->getType() != Val1->getType())
2632 return Error(ID.Loc, "operands of constexpr must have same type");
Duncan Sands9dff9be2010-02-15 16:12:20 +00002633 if (!Val0->getType()->isIntOrIntVectorTy()) {
Dan Gohman9c7f8082009-07-27 16:11:46 +00002634 if (NUW)
2635 return Error(ModifierLoc, "nuw only applies to integer operations");
2636 if (NSW)
2637 return Error(ModifierLoc, "nsw only applies to integer operations");
2638 }
Dan Gohmana2414ea2010-05-03 22:44:19 +00002639 // Check that the type is valid for the operator.
2640 switch (Opc) {
2641 case Instruction::Add:
2642 case Instruction::Sub:
2643 case Instruction::Mul:
2644 case Instruction::UDiv:
2645 case Instruction::SDiv:
2646 case Instruction::URem:
2647 case Instruction::SRem:
Chris Lattnera676c0f2011-02-07 16:40:21 +00002648 case Instruction::Shl:
2649 case Instruction::AShr:
2650 case Instruction::LShr:
Dan Gohmana2414ea2010-05-03 22:44:19 +00002651 if (!Val0->getType()->isIntOrIntVectorTy())
2652 return Error(ID.Loc, "constexpr requires integer operands");
2653 break;
2654 case Instruction::FAdd:
2655 case Instruction::FSub:
2656 case Instruction::FMul:
2657 case Instruction::FDiv:
2658 case Instruction::FRem:
2659 if (!Val0->getType()->isFPOrFPVectorTy())
2660 return Error(ID.Loc, "constexpr requires fp operands");
2661 break;
2662 default: llvm_unreachable("Unknown binary operator!");
2663 }
Dan Gohman1b849082009-09-07 23:54:19 +00002664 unsigned Flags = 0;
2665 if (NUW) Flags |= OverflowingBinaryOperator::NoUnsignedWrap;
2666 if (NSW) Flags |= OverflowingBinaryOperator::NoSignedWrap;
Chris Lattner35315d02011-02-06 21:44:57 +00002667 if (Exact) Flags |= PossiblyExactOperator::IsExact;
Dan Gohman1b849082009-09-07 23:54:19 +00002668 Constant *C = ConstantExpr::get(Opc, Val0, Val1, Flags);
Dan Gohman9c7f8082009-07-27 16:11:46 +00002669 ID.ConstantVal = C;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002670 ID.Kind = ValID::t_Constant;
2671 return false;
2672 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002673
Chris Lattnerac161bf2009-01-02 07:01:27 +00002674 // Logical Operations
Chris Lattnerac161bf2009-01-02 07:01:27 +00002675 case lltok::kw_and:
2676 case lltok::kw_or:
2677 case lltok::kw_xor: {
2678 unsigned Opc = Lex.getUIntVal();
2679 Constant *Val0, *Val1;
2680 Lex.Lex();
2681 if (ParseToken(lltok::lparen, "expected '(' in logical constantexpr") ||
2682 ParseGlobalTypeAndValue(Val0) ||
2683 ParseToken(lltok::comma, "expected comma in logical constantexpr") ||
2684 ParseGlobalTypeAndValue(Val1) ||
2685 ParseToken(lltok::rparen, "expected ')' in logical constantexpr"))
2686 return true;
2687 if (Val0->getType() != Val1->getType())
2688 return Error(ID.Loc, "operands of constexpr must have same type");
Duncan Sands9dff9be2010-02-15 16:12:20 +00002689 if (!Val0->getType()->isIntOrIntVectorTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00002690 return Error(ID.Loc,
2691 "constexpr requires integer or integer vector operands");
Owen Anderson487375e2009-07-29 18:55:55 +00002692 ID.ConstantVal = ConstantExpr::get(Opc, Val0, Val1);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002693 ID.Kind = ValID::t_Constant;
2694 return false;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002695 }
2696
Chris Lattnerac161bf2009-01-02 07:01:27 +00002697 case lltok::kw_getelementptr:
2698 case lltok::kw_shufflevector:
2699 case lltok::kw_insertelement:
2700 case lltok::kw_extractelement:
2701 case lltok::kw_select: {
2702 unsigned Opc = Lex.getUIntVal();
2703 SmallVector<Constant*, 16> Elts;
Dan Gohman1639c392009-07-27 21:53:46 +00002704 bool InBounds = false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002705 Lex.Lex();
Dan Gohman1639c392009-07-27 21:53:46 +00002706 if (Opc == Instruction::GetElementPtr)
Dan Gohman16cbbe42009-07-29 15:58:36 +00002707 InBounds = EatIfPresent(lltok::kw_inbounds);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002708 if (ParseToken(lltok::lparen, "expected '(' in constantexpr") ||
2709 ParseGlobalValueVector(Elts) ||
2710 ParseToken(lltok::rparen, "expected ')' in constantexpr"))
2711 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002712
Chris Lattnerac161bf2009-01-02 07:01:27 +00002713 if (Opc == Instruction::GetElementPtr) {
Nadav Rotem3924cb02011-12-05 06:29:09 +00002714 if (Elts.size() == 0 ||
2715 !Elts[0]->getType()->getScalarType()->isPointerTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00002716 return Error(ID.Loc, "getelementptr requires pointer operand");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002717
Jay Foaded8db7d2011-07-21 14:31:17 +00002718 ArrayRef<Constant *> Indices(Elts.begin() + 1, Elts.end());
Jay Foadd1b78492011-07-25 09:48:08 +00002719 if (!GetElementPtrInst::getIndexedType(Elts[0]->getType(), Indices))
Chris Lattnerac161bf2009-01-02 07:01:27 +00002720 return Error(ID.Loc, "invalid indices for getelementptr");
Jay Foad2f5fc8c2011-07-21 15:15:37 +00002721 ID.ConstantVal = ConstantExpr::getGetElementPtr(Elts[0], Indices,
2722 InBounds);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002723 } else if (Opc == Instruction::Select) {
2724 if (Elts.size() != 3)
2725 return Error(ID.Loc, "expected three operands to select");
2726 if (const char *Reason = SelectInst::areInvalidOperands(Elts[0], Elts[1],
2727 Elts[2]))
2728 return Error(ID.Loc, Reason);
Owen Anderson487375e2009-07-29 18:55:55 +00002729 ID.ConstantVal = ConstantExpr::getSelect(Elts[0], Elts[1], Elts[2]);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002730 } else if (Opc == Instruction::ShuffleVector) {
2731 if (Elts.size() != 3)
2732 return Error(ID.Loc, "expected three operands to shufflevector");
2733 if (!ShuffleVectorInst::isValidOperands(Elts[0], Elts[1], Elts[2]))
2734 return Error(ID.Loc, "invalid operands to shufflevector");
Owen Anderson02a9da32009-07-01 23:57:11 +00002735 ID.ConstantVal =
Owen Anderson487375e2009-07-29 18:55:55 +00002736 ConstantExpr::getShuffleVector(Elts[0], Elts[1],Elts[2]);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002737 } else if (Opc == Instruction::ExtractElement) {
2738 if (Elts.size() != 2)
2739 return Error(ID.Loc, "expected two operands to extractelement");
2740 if (!ExtractElementInst::isValidOperands(Elts[0], Elts[1]))
2741 return Error(ID.Loc, "invalid extractelement operands");
Owen Anderson487375e2009-07-29 18:55:55 +00002742 ID.ConstantVal = ConstantExpr::getExtractElement(Elts[0], Elts[1]);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002743 } else {
2744 assert(Opc == Instruction::InsertElement && "Unknown opcode");
2745 if (Elts.size() != 3)
2746 return Error(ID.Loc, "expected three operands to insertelement");
2747 if (!InsertElementInst::isValidOperands(Elts[0], Elts[1], Elts[2]))
2748 return Error(ID.Loc, "invalid insertelement operands");
Owen Anderson02a9da32009-07-01 23:57:11 +00002749 ID.ConstantVal =
Owen Anderson487375e2009-07-29 18:55:55 +00002750 ConstantExpr::getInsertElement(Elts[0], Elts[1],Elts[2]);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002751 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002752
Chris Lattnerac161bf2009-01-02 07:01:27 +00002753 ID.Kind = ValID::t_Constant;
2754 return false;
2755 }
2756 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002757
Chris Lattnerac161bf2009-01-02 07:01:27 +00002758 Lex.Lex();
2759 return false;
2760}
2761
2762/// ParseGlobalValue - Parse a global value with the specified type.
Chris Lattner229907c2011-07-18 04:54:35 +00002763bool LLParser::ParseGlobalValue(Type *Ty, Constant *&C) {
Craig Topper2617dcc2014-04-15 06:32:26 +00002764 C = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002765 ValID ID;
Craig Topper2617dcc2014-04-15 06:32:26 +00002766 Value *V = nullptr;
Victor Hernandez9d75c962010-01-11 22:31:58 +00002767 bool Parsed = ParseValID(ID) ||
Craig Topper2617dcc2014-04-15 06:32:26 +00002768 ConvertValIDToValue(Ty, ID, V, nullptr);
Victor Hernandez9d75c962010-01-11 22:31:58 +00002769 if (V && !(C = dyn_cast<Constant>(V)))
2770 return Error(ID.Loc, "global values must be constants");
2771 return Parsed;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002772}
2773
Victor Hernandez9d75c962010-01-11 22:31:58 +00002774bool LLParser::ParseGlobalTypeAndValue(Constant *&V) {
Craig Topper2617dcc2014-04-15 06:32:26 +00002775 Type *Ty = nullptr;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002776 return ParseType(Ty) ||
2777 ParseGlobalValue(Ty, V);
Victor Hernandez9d75c962010-01-11 22:31:58 +00002778}
2779
2780/// ParseGlobalValueVector
2781/// ::= /*empty*/
2782/// ::= TypeAndValue (',' TypeAndValue)*
2783bool LLParser::ParseGlobalValueVector(SmallVectorImpl<Constant*> &Elts) {
2784 // Empty list.
2785 if (Lex.getKind() == lltok::rbrace ||
2786 Lex.getKind() == lltok::rsquare ||
2787 Lex.getKind() == lltok::greater ||
2788 Lex.getKind() == lltok::rparen)
2789 return false;
2790
2791 Constant *C;
2792 if (ParseGlobalTypeAndValue(C)) return true;
2793 Elts.push_back(C);
2794
2795 while (EatIfPresent(lltok::comma)) {
2796 if (ParseGlobalTypeAndValue(C)) return true;
2797 Elts.push_back(C);
2798 }
2799
2800 return false;
2801}
2802
Dan Gohmanc828c542010-08-24 02:24:03 +00002803bool LLParser::ParseMetadataListValue(ValID &ID, PerFunctionState *PFS) {
2804 assert(Lex.getKind() == lltok::lbrace);
2805 Lex.Lex();
2806
2807 SmallVector<Value*, 16> Elts;
2808 if (ParseMDNodeVector(Elts, PFS) ||
2809 ParseToken(lltok::rbrace, "expected end of metadata node"))
2810 return true;
2811
Jay Foad5514afe2011-04-21 19:59:31 +00002812 ID.MDNodeVal = MDNode::get(Context, Elts);
Dan Gohmanc828c542010-08-24 02:24:03 +00002813 ID.Kind = ValID::t_MDNode;
2814 return false;
2815}
2816
Dan Gohman8939ba332010-07-14 18:26:50 +00002817/// ParseMetadataValue
2818/// ::= !42
2819/// ::= !{...}
2820/// ::= !"string"
2821bool LLParser::ParseMetadataValue(ValID &ID, PerFunctionState *PFS) {
2822 assert(Lex.getKind() == lltok::exclaim);
2823 Lex.Lex();
2824
2825 // MDNode:
2826 // !{ ... }
Dan Gohmanc828c542010-08-24 02:24:03 +00002827 if (Lex.getKind() == lltok::lbrace)
2828 return ParseMetadataListValue(ID, PFS);
Dan Gohman8939ba332010-07-14 18:26:50 +00002829
2830 // Standalone metadata reference
2831 // !42
2832 if (Lex.getKind() == lltok::APSInt) {
2833 if (ParseMDNodeID(ID.MDNodeVal)) return true;
2834 ID.Kind = ValID::t_MDNode;
2835 return false;
2836 }
2837
2838 // MDString:
2839 // ::= '!' STRINGCONSTANT
2840 if (ParseMDString(ID.MDStringVal)) return true;
2841 ID.Kind = ValID::t_MDString;
2842 return false;
2843}
2844
Victor Hernandez9d75c962010-01-11 22:31:58 +00002845
2846//===----------------------------------------------------------------------===//
2847// Function Parsing.
2848//===----------------------------------------------------------------------===//
2849
Chris Lattner229907c2011-07-18 04:54:35 +00002850bool LLParser::ConvertValIDToValue(Type *Ty, ValID &ID, Value *&V,
Victor Hernandez9d75c962010-01-11 22:31:58 +00002851 PerFunctionState *PFS) {
Duncan Sands19d0b472010-02-16 11:11:14 +00002852 if (Ty->isFunctionTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00002853 return Error(ID.Loc, "functions are not values, refer to them as pointers");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002854
Chris Lattnerac161bf2009-01-02 07:01:27 +00002855 switch (ID.Kind) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002856 case ValID::t_LocalID:
Victor Hernandez9d75c962010-01-11 22:31:58 +00002857 if (!PFS) return Error(ID.Loc, "invalid use of function-local name");
2858 V = PFS->GetVal(ID.UIntVal, Ty, ID.Loc);
Craig Topper2617dcc2014-04-15 06:32:26 +00002859 return V == nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002860 case ValID::t_LocalName:
Victor Hernandez9d75c962010-01-11 22:31:58 +00002861 if (!PFS) return Error(ID.Loc, "invalid use of function-local name");
2862 V = PFS->GetVal(ID.StrVal, Ty, ID.Loc);
Craig Topper2617dcc2014-04-15 06:32:26 +00002863 return V == nullptr;
Victor Hernandez9d75c962010-01-11 22:31:58 +00002864 case ValID::t_InlineAsm: {
Chris Lattner229907c2011-07-18 04:54:35 +00002865 PointerType *PTy = dyn_cast<PointerType>(Ty);
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002866 FunctionType *FTy =
Craig Topper2617dcc2014-04-15 06:32:26 +00002867 PTy ? dyn_cast<FunctionType>(PTy->getElementType()) : nullptr;
Victor Hernandez9d75c962010-01-11 22:31:58 +00002868 if (!FTy || !InlineAsm::Verify(FTy, ID.StrVal2))
2869 return Error(ID.Loc, "invalid type for inline asm constraint string");
Chad Rosierf42fad62012-09-05 00:08:17 +00002870 V = InlineAsm::get(FTy, ID.StrVal, ID.StrVal2, ID.UIntVal&1,
Chad Rosierd8c76102012-09-05 19:00:49 +00002871 (ID.UIntVal>>1)&1, (InlineAsm::AsmDialect(ID.UIntVal>>2)));
Victor Hernandez9d75c962010-01-11 22:31:58 +00002872 return false;
2873 }
2874 case ValID::t_MDNode:
2875 if (!Ty->isMetadataTy())
2876 return Error(ID.Loc, "metadata value must have metadata type");
2877 V = ID.MDNodeVal;
2878 return false;
2879 case ValID::t_MDString:
2880 if (!Ty->isMetadataTy())
2881 return Error(ID.Loc, "metadata value must have metadata type");
2882 V = ID.MDStringVal;
2883 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002884 case ValID::t_GlobalName:
2885 V = GetGlobalVal(ID.StrVal, Ty, ID.Loc);
Craig Topper2617dcc2014-04-15 06:32:26 +00002886 return V == nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002887 case ValID::t_GlobalID:
2888 V = GetGlobalVal(ID.UIntVal, Ty, ID.Loc);
Craig Topper2617dcc2014-04-15 06:32:26 +00002889 return V == nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002890 case ValID::t_APSInt:
Duncan Sands19d0b472010-02-16 11:11:14 +00002891 if (!Ty->isIntegerTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00002892 return Error(ID.Loc, "integer constant must have integer type");
Jay Foad583abbc2010-12-07 08:25:19 +00002893 ID.APSIntVal = ID.APSIntVal.extOrTrunc(Ty->getPrimitiveSizeInBits());
Owen Andersonedb4a702009-07-24 23:12:02 +00002894 V = ConstantInt::get(Context, ID.APSIntVal);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002895 return false;
2896 case ValID::t_APFloat:
Duncan Sands9dff9be2010-02-15 16:12:20 +00002897 if (!Ty->isFloatingPointTy() ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00002898 !ConstantFP::isValueValidForType(Ty, ID.APFloatVal))
2899 return Error(ID.Loc, "floating point constant invalid for type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002900
Dan Gohman518cda42011-12-17 00:04:22 +00002901 // The lexer has no type info, so builds all half, float, and double FP
2902 // constants as double. Fix this here. Long double does not need this.
2903 if (&ID.APFloatVal.getSemantics() == &APFloat::IEEEdouble) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002904 bool Ignored;
Dan Gohman518cda42011-12-17 00:04:22 +00002905 if (Ty->isHalfTy())
2906 ID.APFloatVal.convert(APFloat::IEEEhalf, APFloat::rmNearestTiesToEven,
2907 &Ignored);
2908 else if (Ty->isFloatTy())
2909 ID.APFloatVal.convert(APFloat::IEEEsingle, APFloat::rmNearestTiesToEven,
2910 &Ignored);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002911 }
Owen Anderson69c464d2009-07-27 20:59:43 +00002912 V = ConstantFP::get(Context, ID.APFloatVal);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002913
Chris Lattner8f57d29e2009-01-05 18:24:23 +00002914 if (V->getType() != Ty)
2915 return Error(ID.Loc, "floating point constant does not have type '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00002916 getTypeString(Ty) + "'");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002917
Chris Lattnerac161bf2009-01-02 07:01:27 +00002918 return false;
2919 case ValID::t_Null:
Duncan Sands19d0b472010-02-16 11:11:14 +00002920 if (!Ty->isPointerTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00002921 return Error(ID.Loc, "null must be a pointer type");
Owen Andersonb292b8c2009-07-30 23:03:37 +00002922 V = ConstantPointerNull::get(cast<PointerType>(Ty));
Chris Lattnerac161bf2009-01-02 07:01:27 +00002923 return false;
2924 case ValID::t_Undef:
Chris Lattnerffa07782009-01-05 08:13:38 +00002925 // FIXME: LabelTy should not be a first-class type.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002926 if (!Ty->isFirstClassType() || Ty->isLabelTy())
Chris Lattnerffa07782009-01-05 08:13:38 +00002927 return Error(ID.Loc, "invalid type for undef constant");
Owen Andersonb292b8c2009-07-30 23:03:37 +00002928 V = UndefValue::get(Ty);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002929 return false;
Chris Lattner998fa0a2009-01-05 07:52:51 +00002930 case ValID::t_EmptyArray:
Duncan Sands19d0b472010-02-16 11:11:14 +00002931 if (!Ty->isArrayTy() || cast<ArrayType>(Ty)->getNumElements() != 0)
Chris Lattner998fa0a2009-01-05 07:52:51 +00002932 return Error(ID.Loc, "invalid empty array initializer");
Owen Andersonb292b8c2009-07-30 23:03:37 +00002933 V = UndefValue::get(Ty);
Chris Lattner998fa0a2009-01-05 07:52:51 +00002934 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002935 case ValID::t_Zero:
Chris Lattnerffa07782009-01-05 08:13:38 +00002936 // FIXME: LabelTy should not be a first-class type.
Chris Lattnerfdd87902009-10-05 05:54:46 +00002937 if (!Ty->isFirstClassType() || Ty->isLabelTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00002938 return Error(ID.Loc, "invalid type for null constant");
Owen Anderson5a1acd92009-07-31 20:28:14 +00002939 V = Constant::getNullValue(Ty);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002940 return false;
2941 case ValID::t_Constant:
Chris Lattner13ee7952010-08-28 04:09:24 +00002942 if (ID.ConstantVal->getType() != Ty)
Chris Lattnerac161bf2009-01-02 07:01:27 +00002943 return Error(ID.Loc, "constant expression type mismatch");
Chris Lattner392be582010-02-12 20:49:41 +00002944
Chris Lattnerac161bf2009-01-02 07:01:27 +00002945 V = ID.ConstantVal;
2946 return false;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002947 case ValID::t_ConstantStruct:
2948 case ValID::t_PackedConstantStruct:
Chris Lattner229907c2011-07-18 04:54:35 +00002949 if (StructType *ST = dyn_cast<StructType>(Ty)) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002950 if (ST->getNumElements() != ID.UIntVal)
2951 return Error(ID.Loc,
2952 "initializer with struct type has wrong # elements");
2953 if (ST->isPacked() != (ID.Kind == ValID::t_PackedConstantStruct))
2954 return Error(ID.Loc, "packed'ness of initializer and type don't match");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002955
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002956 // Verify that the elements are compatible with the structtype.
2957 for (unsigned i = 0, e = ID.UIntVal; i != e; ++i)
2958 if (ID.ConstantStructElts[i]->getType() != ST->getElementType(i))
2959 return Error(ID.Loc, "element " + Twine(i) +
2960 " of struct initializer doesn't match struct element type");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002961
Frits van Bommel717d7ed2011-07-18 12:00:32 +00002962 V = ConstantStruct::get(ST, makeArrayRef(ID.ConstantStructElts,
2963 ID.UIntVal));
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002964 } else
2965 return Error(ID.Loc, "constant expression type mismatch");
2966 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002967 }
Chandler Carruthf3e85022012-01-10 18:08:01 +00002968 llvm_unreachable("Invalid ValID");
Chris Lattnerac161bf2009-01-02 07:01:27 +00002969}
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002970
Chris Lattner229907c2011-07-18 04:54:35 +00002971bool LLParser::ParseValue(Type *Ty, Value *&V, PerFunctionState *PFS) {
Craig Topper2617dcc2014-04-15 06:32:26 +00002972 V = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002973 ValID ID;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002974 return ParseValID(ID, PFS) ||
2975 ConvertValIDToValue(Ty, ID, V, PFS);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002976}
2977
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002978bool LLParser::ParseTypeAndValue(Value *&V, PerFunctionState *PFS) {
Craig Topper2617dcc2014-04-15 06:32:26 +00002979 Type *Ty = nullptr;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002980 return ParseType(Ty) ||
2981 ParseValue(Ty, V, PFS);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002982}
2983
Chris Lattner3ed871f2009-10-27 19:13:16 +00002984bool LLParser::ParseTypeAndBasicBlock(BasicBlock *&BB, LocTy &Loc,
2985 PerFunctionState &PFS) {
2986 Value *V;
2987 Loc = Lex.getLoc();
2988 if (ParseTypeAndValue(V, PFS)) return true;
2989 if (!isa<BasicBlock>(V))
2990 return Error(Loc, "expected a basic block");
2991 BB = cast<BasicBlock>(V);
2992 return false;
2993}
2994
2995
Chris Lattnerac161bf2009-01-02 07:01:27 +00002996/// FunctionHeader
2997/// ::= OptionalLinkage OptionalVisibility OptionalCallingConv OptRetAttrs
Rafael Espindola45e6c192011-01-08 16:42:36 +00002998/// OptUnnamedAddr Type GlobalName '(' ArgList ')' OptFuncAttrs OptSection
Peter Collingbourne3fa50f92013-09-16 01:08:15 +00002999/// OptionalAlign OptGC OptionalPrefix
Chris Lattnerac161bf2009-01-02 07:01:27 +00003000bool LLParser::ParseFunctionHeader(Function *&Fn, bool isDefine) {
3001 // Parse the linkage.
3002 LocTy LinkageLoc = Lex.getLoc();
3003 unsigned Linkage;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003004
Kostya Serebryanya5054ad2012-01-20 17:56:17 +00003005 unsigned Visibility;
Nico Rieck7157bb72014-01-14 15:22:47 +00003006 unsigned DLLStorageClass;
Bill Wendling50d27842012-10-15 20:35:56 +00003007 AttrBuilder RetAttrs;
Sandeep Patel68c5f472009-09-02 08:44:58 +00003008 CallingConv::ID CC;
Craig Topper2617dcc2014-04-15 06:32:26 +00003009 Type *RetType = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00003010 LocTy RetTypeLoc = Lex.getLoc();
3011 if (ParseOptionalLinkage(Linkage) ||
3012 ParseOptionalVisibility(Visibility) ||
Nico Rieck7157bb72014-01-14 15:22:47 +00003013 ParseOptionalDLLStorageClass(DLLStorageClass) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00003014 ParseOptionalCallingConv(CC) ||
Bill Wendling34c2eb22012-12-04 23:40:58 +00003015 ParseOptionalReturnAttrs(RetAttrs) ||
Chris Lattnerf880ca22009-03-09 04:49:14 +00003016 ParseType(RetType, RetTypeLoc, true /*void allowed*/))
Chris Lattnerac161bf2009-01-02 07:01:27 +00003017 return true;
3018
3019 // Verify that the linkage is ok.
3020 switch ((GlobalValue::LinkageTypes)Linkage) {
3021 case GlobalValue::ExternalLinkage:
3022 break; // always ok.
Duncan Sandse2881052009-03-11 08:08:06 +00003023 case GlobalValue::ExternalWeakLinkage:
Chris Lattnerac161bf2009-01-02 07:01:27 +00003024 if (isDefine)
3025 return Error(LinkageLoc, "invalid linkage for function definition");
3026 break;
Rafael Espindola6de96a12009-01-15 20:18:42 +00003027 case GlobalValue::PrivateLinkage:
Chris Lattnerac161bf2009-01-02 07:01:27 +00003028 case GlobalValue::InternalLinkage:
Nick Lewycky8019af62009-04-13 07:02:02 +00003029 case GlobalValue::AvailableExternallyLinkage:
Duncan Sands12da8ce2009-03-07 15:45:40 +00003030 case GlobalValue::LinkOnceAnyLinkage:
3031 case GlobalValue::LinkOnceODRLinkage:
3032 case GlobalValue::WeakAnyLinkage:
3033 case GlobalValue::WeakODRLinkage:
Chris Lattnerac161bf2009-01-02 07:01:27 +00003034 if (!isDefine)
3035 return Error(LinkageLoc, "invalid linkage for function declaration");
3036 break;
3037 case GlobalValue::AppendingLinkage:
Duncan Sands4581beb2009-03-11 20:14:15 +00003038 case GlobalValue::CommonLinkage:
Chris Lattnerac161bf2009-01-02 07:01:27 +00003039 return Error(LinkageLoc, "invalid function linkage type");
3040 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003041
Duncan P. N. Exon Smithb80de102014-05-07 22:57:20 +00003042 if (!isValidVisibilityForLinkage(Visibility, Linkage))
3043 return Error(LinkageLoc,
3044 "symbol with local linkage must have default visibility");
3045
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00003046 if (!FunctionType::isValidReturnType(RetType))
Chris Lattnerac161bf2009-01-02 07:01:27 +00003047 return Error(RetTypeLoc, "invalid function return type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003048
Chris Lattnerac161bf2009-01-02 07:01:27 +00003049 LocTy NameLoc = Lex.getLoc();
Chris Lattner778c62c2009-02-18 21:48:13 +00003050
3051 std::string FunctionName;
3052 if (Lex.getKind() == lltok::GlobalVar) {
3053 FunctionName = Lex.getStrVal();
3054 } else if (Lex.getKind() == lltok::GlobalID) { // @42 is ok.
3055 unsigned NameID = Lex.getUIntVal();
3056
3057 if (NameID != NumberedVals.size())
3058 return TokError("function expected to be numbered '%" +
Benjamin Kramerc7583112010-09-27 17:42:11 +00003059 Twine(NumberedVals.size()) + "'");
Chris Lattner778c62c2009-02-18 21:48:13 +00003060 } else {
3061 return TokError("expected function name");
3062 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003063
Chris Lattner3822f632009-01-02 08:05:26 +00003064 Lex.Lex();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003065
Chris Lattner3822f632009-01-02 08:05:26 +00003066 if (Lex.getKind() != lltok::lparen)
Chris Lattnerac161bf2009-01-02 07:01:27 +00003067 return TokError("expected '(' in function argument list");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003068
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00003069 SmallVector<ArgInfo, 8> ArgList;
Chris Lattnerac161bf2009-01-02 07:01:27 +00003070 bool isVarArg;
Bill Wendling50d27842012-10-15 20:35:56 +00003071 AttrBuilder FuncAttrs;
Bill Wendlingb32b0412013-02-08 06:32:06 +00003072 std::vector<unsigned> FwdRefAttrGrps;
Michael Gottesman41748d72013-06-27 00:25:01 +00003073 LocTy BuiltinLoc;
Chris Lattnerac161bf2009-01-02 07:01:27 +00003074 std::string Section;
Chris Lattnerac161bf2009-01-02 07:01:27 +00003075 unsigned Alignment;
Chris Lattner3822f632009-01-02 08:05:26 +00003076 std::string GC;
Rafael Espindola563eb4b2011-01-25 19:09:56 +00003077 bool UnnamedAddr;
3078 LocTy UnnamedAddrLoc;
Craig Topper2617dcc2014-04-15 06:32:26 +00003079 Constant *Prefix = nullptr;
Chris Lattner3822f632009-01-02 08:05:26 +00003080
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00003081 if (ParseArgumentList(ArgList, isVarArg) ||
Rafael Espindola563eb4b2011-01-25 19:09:56 +00003082 ParseOptionalToken(lltok::kw_unnamed_addr, UnnamedAddr,
3083 &UnnamedAddrLoc) ||
Bill Wendling09bd1f72013-02-22 00:12:35 +00003084 ParseFnAttributeValuePairs(FuncAttrs, FwdRefAttrGrps, false,
Michael Gottesman41748d72013-06-27 00:25:01 +00003085 BuiltinLoc) ||
Chris Lattner3822f632009-01-02 08:05:26 +00003086 (EatIfPresent(lltok::kw_section) &&
3087 ParseStringConstant(Section)) ||
3088 ParseOptionalAlignment(Alignment) ||
3089 (EatIfPresent(lltok::kw_gc) &&
Peter Collingbourne3fa50f92013-09-16 01:08:15 +00003090 ParseStringConstant(GC)) ||
3091 (EatIfPresent(lltok::kw_prefix) &&
3092 ParseGlobalTypeAndValue(Prefix)))
Chris Lattner3822f632009-01-02 08:05:26 +00003093 return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00003094
Michael Gottesman41748d72013-06-27 00:25:01 +00003095 if (FuncAttrs.contains(Attribute::Builtin))
3096 return Error(BuiltinLoc, "'builtin' attribute not valid on function");
Bill Wendling09bd1f72013-02-22 00:12:35 +00003097
Chris Lattnerac161bf2009-01-02 07:01:27 +00003098 // If the alignment was parsed as an attribute, move to the alignment field.
Bill Wendlingc6daefa2012-10-08 23:27:46 +00003099 if (FuncAttrs.hasAlignmentAttr()) {
Bill Wendling9be77592012-09-21 15:26:31 +00003100 Alignment = FuncAttrs.getAlignment();
Bill Wendling3d7b0b82012-12-19 07:18:57 +00003101 FuncAttrs.removeAttribute(Attribute::Alignment);
Chris Lattnerac161bf2009-01-02 07:01:27 +00003102 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003103
Chris Lattnerac161bf2009-01-02 07:01:27 +00003104 // Okay, if we got here, the function is syntactically valid. Convert types
3105 // and do semantic checks.
Jay Foadb804a2b2011-07-12 14:06:48 +00003106 std::vector<Type*> ParamTypeList;
Bill Wendlingf5075a42013-01-27 02:24:02 +00003107 SmallVector<AttributeSet, 8> Attrs;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003108
Bill Wendling3bef2dd2012-09-19 23:54:18 +00003109 if (RetAttrs.hasAttributes())
Bill Wendlingf5075a42013-01-27 02:24:02 +00003110 Attrs.push_back(AttributeSet::get(RetType->getContext(),
3111 AttributeSet::ReturnIndex,
3112 RetAttrs));
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003113
Chris Lattnerac161bf2009-01-02 07:01:27 +00003114 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00003115 ParamTypeList.push_back(ArgList[i].Ty);
Bill Wendlingfe0021a2013-01-31 00:29:54 +00003116 if (ArgList[i].Attrs.hasAttributes(i + 1)) {
3117 AttrBuilder B(ArgList[i].Attrs, i + 1);
Bill Wendlingf5075a42013-01-27 02:24:02 +00003118 Attrs.push_back(AttributeSet::get(RetType->getContext(), i + 1, B));
3119 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00003120 }
3121
Bill Wendling3bef2dd2012-09-19 23:54:18 +00003122 if (FuncAttrs.hasAttributes())
Bill Wendlingf5075a42013-01-27 02:24:02 +00003123 Attrs.push_back(AttributeSet::get(RetType->getContext(),
3124 AttributeSet::FunctionIndex,
3125 FuncAttrs));
Chris Lattnerac161bf2009-01-02 07:01:27 +00003126
Bill Wendlinge94d8432012-12-07 23:16:57 +00003127 AttributeSet PAL = AttributeSet::get(Context, Attrs);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003128
Bill Wendling749a43d2012-12-30 13:50:49 +00003129 if (PAL.hasAttribute(1, Attribute::StructRet) && !RetType->isVoidTy())
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003130 return Error(RetTypeLoc, "functions with 'sret' argument must return void");
3131
Chris Lattner229907c2011-07-18 04:54:35 +00003132 FunctionType *FT =
Owen Anderson4056ca92009-07-29 22:17:13 +00003133 FunctionType::get(RetType, ParamTypeList, isVarArg);
Chris Lattner229907c2011-07-18 04:54:35 +00003134 PointerType *PFT = PointerType::getUnqual(FT);
Chris Lattnerac161bf2009-01-02 07:01:27 +00003135
Craig Topper2617dcc2014-04-15 06:32:26 +00003136 Fn = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00003137 if (!FunctionName.empty()) {
3138 // If this was a definition of a forward reference, remove the definition
3139 // from the forward reference table and fill in the forward ref.
3140 std::map<std::string, std::pair<GlobalValue*, LocTy> >::iterator FRVI =
3141 ForwardRefVals.find(FunctionName);
3142 if (FRVI != ForwardRefVals.end()) {
3143 Fn = M->getFunction(FunctionName);
Nick Lewycky686d7cb2012-10-11 00:38:25 +00003144 if (!Fn)
3145 return Error(FRVI->second.second, "invalid forward reference to "
3146 "function as global value!");
Chris Lattnerc239eb72010-04-20 04:49:11 +00003147 if (Fn->getType() != PFT)
3148 return Error(FRVI->second.second, "invalid forward reference to "
3149 "function '" + FunctionName + "' with wrong type!");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00003150
Chris Lattnerac161bf2009-01-02 07:01:27 +00003151 ForwardRefVals.erase(FRVI);
3152 } else if ((Fn = M->getFunction(FunctionName))) {
Chris Lattner5756c162011-06-17 07:06:44 +00003153 // Reject redefinitions.
3154 return Error(NameLoc, "invalid redefinition of function '" +
3155 FunctionName + "'");
Chris Lattnere38317f2009-10-25 23:22:50 +00003156 } else if (M->getNamedValue(FunctionName)) {
3157 return Error(NameLoc, "redefinition of function '@" + FunctionName + "'");
Chris Lattnerac161bf2009-01-02 07:01:27 +00003158 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003159
Dan Gohman399d6ae2009-08-29 23:37:49 +00003160 } else {
Chris Lattnerac161bf2009-01-02 07:01:27 +00003161 // If this is a definition of a forward referenced function, make sure the
3162 // types agree.
3163 std::map<unsigned, std::pair<GlobalValue*, LocTy> >::iterator I
3164 = ForwardRefValIDs.find(NumberedVals.size());
3165 if (I != ForwardRefValIDs.end()) {
3166 Fn = cast<Function>(I->second.first);
3167 if (Fn->getType() != PFT)
3168 return Error(NameLoc, "type of definition and forward reference of '@" +
Benjamin Kramerc7583112010-09-27 17:42:11 +00003169 Twine(NumberedVals.size()) + "' disagree");
Chris Lattnerac161bf2009-01-02 07:01:27 +00003170 ForwardRefValIDs.erase(I);
3171 }
3172 }
3173
Craig Topper2617dcc2014-04-15 06:32:26 +00003174 if (!Fn)
Chris Lattnerac161bf2009-01-02 07:01:27 +00003175 Fn = Function::Create(FT, GlobalValue::ExternalLinkage, FunctionName, M);
3176 else // Move the forward-reference to the correct spot in the module.
3177 M->getFunctionList().splice(M->end(), M->getFunctionList(), Fn);
3178
3179 if (FunctionName.empty())
3180 NumberedVals.push_back(Fn);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003181
Chris Lattnerac161bf2009-01-02 07:01:27 +00003182 Fn->setLinkage((GlobalValue::LinkageTypes)Linkage);
3183 Fn->setVisibility((GlobalValue::VisibilityTypes)Visibility);
Nico Rieck7157bb72014-01-14 15:22:47 +00003184 Fn->setDLLStorageClass((GlobalValue::DLLStorageClassTypes)DLLStorageClass);
Chris Lattnerac161bf2009-01-02 07:01:27 +00003185 Fn->setCallingConv(CC);
3186 Fn->setAttributes(PAL);
Rafael Espindola45e6c192011-01-08 16:42:36 +00003187 Fn->setUnnamedAddr(UnnamedAddr);
Chris Lattnerac161bf2009-01-02 07:01:27 +00003188 Fn->setAlignment(Alignment);
3189 Fn->setSection(Section);
3190 if (!GC.empty()) Fn->setGC(GC.c_str());
Peter Collingbourne3fa50f92013-09-16 01:08:15 +00003191 Fn->setPrefixData(Prefix);
Bill Wendlingb32b0412013-02-08 06:32:06 +00003192 ForwardRefAttrGroups[Fn] = FwdRefAttrGrps;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003193
Chris Lattnerac161bf2009-01-02 07:01:27 +00003194 // Add all of the arguments we parsed to the function.
3195 Function::arg_iterator ArgIt = Fn->arg_begin();
3196 for (unsigned i = 0, e = ArgList.size(); i != e; ++i, ++ArgIt) {
3197 // If the argument has a name, insert it into the argument symbol table.
3198 if (ArgList[i].Name.empty()) continue;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003199
Chris Lattnerac161bf2009-01-02 07:01:27 +00003200 // Set the name, if it conflicted, it will be auto-renamed.
3201 ArgIt->setName(ArgList[i].Name);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003202
Benjamin Kramer1dc34b42010-10-16 11:28:23 +00003203 if (ArgIt->getName() != ArgList[i].Name)
Chris Lattnerac161bf2009-01-02 07:01:27 +00003204 return Error(ArgList[i].Loc, "redefinition of argument '%" +
3205 ArgList[i].Name + "'");
3206 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003207
Chris Lattnerac161bf2009-01-02 07:01:27 +00003208 return false;
3209}
3210
3211
3212/// ParseFunctionBody
3213/// ::= '{' BasicBlock+ '}'
Chris Lattnerac161bf2009-01-02 07:01:27 +00003214///
3215bool LLParser::ParseFunctionBody(Function &Fn) {
Chris Lattner4649a732011-06-17 06:42:57 +00003216 if (Lex.getKind() != lltok::lbrace)
Chris Lattnerac161bf2009-01-02 07:01:27 +00003217 return TokError("expected '{' in function body");
3218 Lex.Lex(); // eat the {.
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003219
Chris Lattner3432c622009-10-28 03:39:23 +00003220 int FunctionNumber = -1;
3221 if (!Fn.hasName()) FunctionNumber = NumberedVals.size()-1;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00003222
Chris Lattner3432c622009-10-28 03:39:23 +00003223 PerFunctionState PFS(*this, Fn, FunctionNumber);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003224
Chris Lattnerbbddd962010-01-09 19:20:07 +00003225 // We need at least one basic block.
Chris Lattner4649a732011-06-17 06:42:57 +00003226 if (Lex.getKind() == lltok::rbrace)
Chris Lattnerbbddd962010-01-09 19:20:07 +00003227 return TokError("function body requires at least one basic block");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00003228
Chris Lattner4649a732011-06-17 06:42:57 +00003229 while (Lex.getKind() != lltok::rbrace)
Chris Lattnerac161bf2009-01-02 07:01:27 +00003230 if (ParseBasicBlock(PFS)) return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003231
Chris Lattnerac161bf2009-01-02 07:01:27 +00003232 // Eat the }.
3233 Lex.Lex();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003234
Chris Lattnerac161bf2009-01-02 07:01:27 +00003235 // Verify function is ok.
Chris Lattner3432c622009-10-28 03:39:23 +00003236 return PFS.FinishFunction();
Chris Lattnerac161bf2009-01-02 07:01:27 +00003237}
3238
3239/// ParseBasicBlock
3240/// ::= LabelStr? Instruction*
3241bool LLParser::ParseBasicBlock(PerFunctionState &PFS) {
3242 // If this basic block starts out with a name, remember it.
3243 std::string Name;
3244 LocTy NameLoc = Lex.getLoc();
3245 if (Lex.getKind() == lltok::LabelStr) {
3246 Name = Lex.getStrVal();
3247 Lex.Lex();
3248 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003249
Chris Lattnerac161bf2009-01-02 07:01:27 +00003250 BasicBlock *BB = PFS.DefineBB(Name, NameLoc);
Craig Topper2617dcc2014-04-15 06:32:26 +00003251 if (!BB) return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003252
Chris Lattnerac161bf2009-01-02 07:01:27 +00003253 std::string NameStr;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003254
Chris Lattnerac161bf2009-01-02 07:01:27 +00003255 // Parse the instructions in this block until we get a terminator.
3256 Instruction *Inst;
3257 do {
3258 // This instruction may have three possibilities for a name: a) none
3259 // specified, b) name specified "%foo =", c) number specified: "%4 =".
3260 LocTy NameLoc = Lex.getLoc();
3261 int NameID = -1;
3262 NameStr = "";
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003263
Chris Lattnerac161bf2009-01-02 07:01:27 +00003264 if (Lex.getKind() == lltok::LocalVarID) {
3265 NameID = Lex.getUIntVal();
3266 Lex.Lex();
3267 if (ParseToken(lltok::equal, "expected '=' after instruction id"))
3268 return true;
Chris Lattnerdef19492011-06-17 06:36:20 +00003269 } else if (Lex.getKind() == lltok::LocalVar) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00003270 NameStr = Lex.getStrVal();
3271 Lex.Lex();
3272 if (ParseToken(lltok::equal, "expected '=' after instruction name"))
3273 return true;
3274 }
Devang Patelea8a4b92009-09-17 23:04:48 +00003275
Chris Lattner77b89dc2009-12-30 05:23:43 +00003276 switch (ParseInstruction(Inst, BB, PFS)) {
Craig Toppera2886c22012-02-07 05:05:23 +00003277 default: llvm_unreachable("Unknown ParseInstruction result!");
Chris Lattner77b89dc2009-12-30 05:23:43 +00003278 case InstError: return true;
3279 case InstNormal:
Chris Lattner2e664bd2010-04-07 04:08:57 +00003280 BB->getInstList().push_back(Inst);
3281
Chris Lattner77b89dc2009-12-30 05:23:43 +00003282 // With a normal result, we check to see if the instruction is followed by
3283 // a comma and metadata.
3284 if (EatIfPresent(lltok::comma))
Dan Gohman338d9a42010-08-24 02:05:17 +00003285 if (ParseInstructionMetadata(Inst, &PFS))
Chris Lattner77b89dc2009-12-30 05:23:43 +00003286 return true;
3287 break;
3288 case InstExtraComma:
Chris Lattner2e664bd2010-04-07 04:08:57 +00003289 BB->getInstList().push_back(Inst);
3290
Chris Lattner77b89dc2009-12-30 05:23:43 +00003291 // If the instruction parser ate an extra comma at the end of it, it
3292 // *must* be followed by metadata.
Dan Gohman338d9a42010-08-24 02:05:17 +00003293 if (ParseInstructionMetadata(Inst, &PFS))
Chris Lattner77b89dc2009-12-30 05:23:43 +00003294 return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00003295 break;
Chris Lattner77b89dc2009-12-30 05:23:43 +00003296 }
Devang Patelea8a4b92009-09-17 23:04:48 +00003297
Chris Lattnerac161bf2009-01-02 07:01:27 +00003298 // Set the name on the instruction.
3299 if (PFS.SetInstName(NameID, NameStr, NameLoc, Inst)) return true;
3300 } while (!isa<TerminatorInst>(Inst));
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003301
Chris Lattnerac161bf2009-01-02 07:01:27 +00003302 return false;
3303}
3304
3305//===----------------------------------------------------------------------===//
3306// Instruction Parsing.
3307//===----------------------------------------------------------------------===//
3308
3309/// ParseInstruction - Parse one of the many different instructions.
3310///
Chris Lattner77b89dc2009-12-30 05:23:43 +00003311int LLParser::ParseInstruction(Instruction *&Inst, BasicBlock *BB,
3312 PerFunctionState &PFS) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00003313 lltok::Kind Token = Lex.getKind();
3314 if (Token == lltok::Eof)
3315 return TokError("found end of file when expecting more instructions");
3316 LocTy Loc = Lex.getLoc();
Chris Lattner89d856e2009-03-01 00:53:13 +00003317 unsigned KeywordVal = Lex.getUIntVal();
Chris Lattnerac161bf2009-01-02 07:01:27 +00003318 Lex.Lex(); // Eat the keyword.
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003319
Chris Lattnerac161bf2009-01-02 07:01:27 +00003320 switch (Token) {
3321 default: return Error(Loc, "expected instruction opcode");
3322 // Terminator Instructions.
Owen Anderson55f1c092009-08-13 21:58:54 +00003323 case lltok::kw_unreachable: Inst = new UnreachableInst(Context); return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00003324 case lltok::kw_ret: return ParseRet(Inst, BB, PFS);
3325 case lltok::kw_br: return ParseBr(Inst, PFS);
3326 case lltok::kw_switch: return ParseSwitch(Inst, PFS);
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003327 case lltok::kw_indirectbr: return ParseIndirectBr(Inst, PFS);
Chris Lattnerac161bf2009-01-02 07:01:27 +00003328 case lltok::kw_invoke: return ParseInvoke(Inst, PFS);
Bill Wendlingf891bf82011-07-31 06:30:59 +00003329 case lltok::kw_resume: return ParseResume(Inst, PFS);
Chris Lattnerac161bf2009-01-02 07:01:27 +00003330 // Binary Operators.
3331 case lltok::kw_add:
3332 case lltok::kw_sub:
Chris Lattnera676c0f2011-02-07 16:40:21 +00003333 case lltok::kw_mul:
3334 case lltok::kw_shl: {
Chris Lattnera676c0f2011-02-07 16:40:21 +00003335 bool NUW = EatIfPresent(lltok::kw_nuw);
3336 bool NSW = EatIfPresent(lltok::kw_nsw);
3337 if (!NUW) NUW = EatIfPresent(lltok::kw_nuw);
Michael Ilseman26ee2b82012-11-15 22:34:00 +00003338
Chris Lattnera676c0f2011-02-07 16:40:21 +00003339 if (ParseArithmetic(Inst, PFS, KeywordVal, 1)) return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00003340
Chris Lattnera676c0f2011-02-07 16:40:21 +00003341 if (NUW) cast<BinaryOperator>(Inst)->setHasNoUnsignedWrap(true);
3342 if (NSW) cast<BinaryOperator>(Inst)->setHasNoSignedWrap(true);
3343 return false;
Dan Gohman9c7f8082009-07-27 16:11:46 +00003344 }
Dan Gohmana5b96452009-06-04 22:49:04 +00003345 case lltok::kw_fadd:
3346 case lltok::kw_fsub:
Michael Ilseman92053172012-11-27 00:42:44 +00003347 case lltok::kw_fmul:
3348 case lltok::kw_fdiv:
3349 case lltok::kw_frem: {
3350 FastMathFlags FMF = EatFastMathFlagsIfPresent();
3351 int Res = ParseArithmetic(Inst, PFS, KeywordVal, 2);
3352 if (Res != 0)
3353 return Res;
3354 if (FMF.any())
3355 Inst->setFastMathFlags(FMF);
3356 return 0;
3357 }
Dan Gohmana5b96452009-06-04 22:49:04 +00003358
Chris Lattner35315d02011-02-06 21:44:57 +00003359 case lltok::kw_sdiv:
Chris Lattnera676c0f2011-02-07 16:40:21 +00003360 case lltok::kw_udiv:
3361 case lltok::kw_lshr:
3362 case lltok::kw_ashr: {
3363 bool Exact = EatIfPresent(lltok::kw_exact);
3364
3365 if (ParseArithmetic(Inst, PFS, KeywordVal, 1)) return true;
3366 if (Exact) cast<BinaryOperator>(Inst)->setIsExact(true);
3367 return false;
Dan Gohman9c7f8082009-07-27 16:11:46 +00003368 }
3369
Chris Lattnerac161bf2009-01-02 07:01:27 +00003370 case lltok::kw_urem:
Chris Lattner89d856e2009-03-01 00:53:13 +00003371 case lltok::kw_srem: return ParseArithmetic(Inst, PFS, KeywordVal, 1);
Chris Lattnerac161bf2009-01-02 07:01:27 +00003372 case lltok::kw_and:
3373 case lltok::kw_or:
Chris Lattner89d856e2009-03-01 00:53:13 +00003374 case lltok::kw_xor: return ParseLogical(Inst, PFS, KeywordVal);
Chris Lattnerac161bf2009-01-02 07:01:27 +00003375 case lltok::kw_icmp:
Nick Lewyckya21d3da2009-07-08 03:04:38 +00003376 case lltok::kw_fcmp: return ParseCompare(Inst, PFS, KeywordVal);
Chris Lattnerac161bf2009-01-02 07:01:27 +00003377 // Casts.
3378 case lltok::kw_trunc:
3379 case lltok::kw_zext:
3380 case lltok::kw_sext:
3381 case lltok::kw_fptrunc:
3382 case lltok::kw_fpext:
3383 case lltok::kw_bitcast:
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00003384 case lltok::kw_addrspacecast:
Chris Lattnerac161bf2009-01-02 07:01:27 +00003385 case lltok::kw_uitofp:
3386 case lltok::kw_sitofp:
3387 case lltok::kw_fptoui:
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003388 case lltok::kw_fptosi:
Chris Lattnerac161bf2009-01-02 07:01:27 +00003389 case lltok::kw_inttoptr:
Chris Lattner89d856e2009-03-01 00:53:13 +00003390 case lltok::kw_ptrtoint: return ParseCast(Inst, PFS, KeywordVal);
Chris Lattnerac161bf2009-01-02 07:01:27 +00003391 // Other.
3392 case lltok::kw_select: return ParseSelect(Inst, PFS);
Chris Lattnerb55ab542009-01-05 08:18:44 +00003393 case lltok::kw_va_arg: return ParseVA_Arg(Inst, PFS);
Chris Lattnerac161bf2009-01-02 07:01:27 +00003394 case lltok::kw_extractelement: return ParseExtractElement(Inst, PFS);
3395 case lltok::kw_insertelement: return ParseInsertElement(Inst, PFS);
3396 case lltok::kw_shufflevector: return ParseShuffleVector(Inst, PFS);
3397 case lltok::kw_phi: return ParsePHI(Inst, PFS);
Bill Wendlingfae14752011-08-12 20:24:12 +00003398 case lltok::kw_landingpad: return ParseLandingPad(Inst, PFS);
Reid Kleckner5772b772014-04-24 20:14:34 +00003399 // Call.
3400 case lltok::kw_call: return ParseCall(Inst, PFS, CallInst::TCK_None);
3401 case lltok::kw_tail: return ParseCall(Inst, PFS, CallInst::TCK_Tail);
3402 case lltok::kw_musttail: return ParseCall(Inst, PFS, CallInst::TCK_MustTail);
Chris Lattnerac161bf2009-01-02 07:01:27 +00003403 // Memory.
Victor Hernandezc7d6a832009-10-17 00:00:19 +00003404 case lltok::kw_alloca: return ParseAlloc(Inst, PFS);
Chris Lattnerbc639292011-11-27 06:56:53 +00003405 case lltok::kw_load: return ParseLoad(Inst, PFS);
3406 case lltok::kw_store: return ParseStore(Inst, PFS);
Eli Friedman02e737b2011-08-12 22:50:01 +00003407 case lltok::kw_cmpxchg: return ParseCmpXchg(Inst, PFS);
3408 case lltok::kw_atomicrmw: return ParseAtomicRMW(Inst, PFS);
Eli Friedmanfee02c62011-07-25 23:16:38 +00003409 case lltok::kw_fence: return ParseFence(Inst, PFS);
Chris Lattnerac161bf2009-01-02 07:01:27 +00003410 case lltok::kw_getelementptr: return ParseGetElementPtr(Inst, PFS);
3411 case lltok::kw_extractvalue: return ParseExtractValue(Inst, PFS);
3412 case lltok::kw_insertvalue: return ParseInsertValue(Inst, PFS);
3413 }
3414}
3415
3416/// ParseCmpPredicate - Parse an integer or fp predicate, based on Kind.
3417bool LLParser::ParseCmpPredicate(unsigned &P, unsigned Opc) {
Nick Lewyckya21d3da2009-07-08 03:04:38 +00003418 if (Opc == Instruction::FCmp) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00003419 switch (Lex.getKind()) {
David Tweeda11edf02013-01-07 13:32:38 +00003420 default: return TokError("expected fcmp predicate (e.g. 'oeq')");
Chris Lattnerac161bf2009-01-02 07:01:27 +00003421 case lltok::kw_oeq: P = CmpInst::FCMP_OEQ; break;
3422 case lltok::kw_one: P = CmpInst::FCMP_ONE; break;
3423 case lltok::kw_olt: P = CmpInst::FCMP_OLT; break;
3424 case lltok::kw_ogt: P = CmpInst::FCMP_OGT; break;
3425 case lltok::kw_ole: P = CmpInst::FCMP_OLE; break;
3426 case lltok::kw_oge: P = CmpInst::FCMP_OGE; break;
3427 case lltok::kw_ord: P = CmpInst::FCMP_ORD; break;
3428 case lltok::kw_uno: P = CmpInst::FCMP_UNO; break;
3429 case lltok::kw_ueq: P = CmpInst::FCMP_UEQ; break;
3430 case lltok::kw_une: P = CmpInst::FCMP_UNE; break;
3431 case lltok::kw_ult: P = CmpInst::FCMP_ULT; break;
3432 case lltok::kw_ugt: P = CmpInst::FCMP_UGT; break;
3433 case lltok::kw_ule: P = CmpInst::FCMP_ULE; break;
3434 case lltok::kw_uge: P = CmpInst::FCMP_UGE; break;
3435 case lltok::kw_true: P = CmpInst::FCMP_TRUE; break;
3436 case lltok::kw_false: P = CmpInst::FCMP_FALSE; break;
3437 }
3438 } else {
3439 switch (Lex.getKind()) {
David Tweeda11edf02013-01-07 13:32:38 +00003440 default: return TokError("expected icmp predicate (e.g. 'eq')");
Chris Lattnerac161bf2009-01-02 07:01:27 +00003441 case lltok::kw_eq: P = CmpInst::ICMP_EQ; break;
3442 case lltok::kw_ne: P = CmpInst::ICMP_NE; break;
3443 case lltok::kw_slt: P = CmpInst::ICMP_SLT; break;
3444 case lltok::kw_sgt: P = CmpInst::ICMP_SGT; break;
3445 case lltok::kw_sle: P = CmpInst::ICMP_SLE; break;
3446 case lltok::kw_sge: P = CmpInst::ICMP_SGE; break;
3447 case lltok::kw_ult: P = CmpInst::ICMP_ULT; break;
3448 case lltok::kw_ugt: P = CmpInst::ICMP_UGT; break;
3449 case lltok::kw_ule: P = CmpInst::ICMP_ULE; break;
3450 case lltok::kw_uge: P = CmpInst::ICMP_UGE; break;
3451 }
3452 }
3453 Lex.Lex();
3454 return false;
3455}
3456
3457//===----------------------------------------------------------------------===//
3458// Terminator Instructions.
3459//===----------------------------------------------------------------------===//
3460
3461/// ParseRet - Parse a return instruction.
Chris Lattner596760d2009-12-29 21:25:40 +00003462/// ::= 'ret' void (',' !dbg, !1)*
3463/// ::= 'ret' TypeAndValue (',' !dbg, !1)*
Chris Lattner33de4272011-06-17 06:49:41 +00003464bool LLParser::ParseRet(Instruction *&Inst, BasicBlock *BB,
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00003465 PerFunctionState &PFS) {
3466 SMLoc TypeLoc = Lex.getLoc();
Craig Topper2617dcc2014-04-15 06:32:26 +00003467 Type *Ty = nullptr;
Chris Lattnerf880ca22009-03-09 04:49:14 +00003468 if (ParseType(Ty, true /*void allowed*/)) return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003469
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00003470 Type *ResType = PFS.getFunction().getReturnType();
Michael Ilseman26ee2b82012-11-15 22:34:00 +00003471
Chris Lattnerfdd87902009-10-05 05:54:46 +00003472 if (Ty->isVoidTy()) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00003473 if (!ResType->isVoidTy())
3474 return Error(TypeLoc, "value doesn't match function result type '" +
3475 getTypeString(ResType) + "'");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00003476
Owen Anderson55f1c092009-08-13 21:58:54 +00003477 Inst = ReturnInst::Create(Context);
Chris Lattnerac161bf2009-01-02 07:01:27 +00003478 return false;
3479 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003480
Chris Lattnerac161bf2009-01-02 07:01:27 +00003481 Value *RV;
3482 if (ParseValue(Ty, RV, PFS)) return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00003483
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00003484 if (ResType != RV->getType())
3485 return Error(TypeLoc, "value doesn't match function result type '" +
3486 getTypeString(ResType) + "'");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00003487
Owen Anderson55f1c092009-08-13 21:58:54 +00003488 Inst = ReturnInst::Create(Context, RV);
Chris Lattner33de4272011-06-17 06:49:41 +00003489 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00003490}
3491
3492
3493/// ParseBr
3494/// ::= 'br' TypeAndValue
3495/// ::= 'br' TypeAndValue ',' TypeAndValue ',' TypeAndValue
3496bool LLParser::ParseBr(Instruction *&Inst, PerFunctionState &PFS) {
3497 LocTy Loc, Loc2;
Chris Lattner3ed871f2009-10-27 19:13:16 +00003498 Value *Op0;
3499 BasicBlock *Op1, *Op2;
Chris Lattnerac161bf2009-01-02 07:01:27 +00003500 if (ParseTypeAndValue(Op0, Loc, PFS)) return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003501
Chris Lattnerac161bf2009-01-02 07:01:27 +00003502 if (BasicBlock *BB = dyn_cast<BasicBlock>(Op0)) {
3503 Inst = BranchInst::Create(BB);
3504 return false;
3505 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003506
Owen Anderson55f1c092009-08-13 21:58:54 +00003507 if (Op0->getType() != Type::getInt1Ty(Context))
Chris Lattnerac161bf2009-01-02 07:01:27 +00003508 return Error(Loc, "branch condition must have 'i1' type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003509
Chris Lattnerac161bf2009-01-02 07:01:27 +00003510 if (ParseToken(lltok::comma, "expected ',' after branch condition") ||
Chris Lattner3ed871f2009-10-27 19:13:16 +00003511 ParseTypeAndBasicBlock(Op1, Loc, PFS) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00003512 ParseToken(lltok::comma, "expected ',' after true destination") ||
Chris Lattner3ed871f2009-10-27 19:13:16 +00003513 ParseTypeAndBasicBlock(Op2, Loc2, PFS))
Chris Lattnerac161bf2009-01-02 07:01:27 +00003514 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003515
Chris Lattner3ed871f2009-10-27 19:13:16 +00003516 Inst = BranchInst::Create(Op1, Op2, Op0);
Chris Lattnerac161bf2009-01-02 07:01:27 +00003517 return false;
3518}
3519
3520/// ParseSwitch
3521/// Instruction
3522/// ::= 'switch' TypeAndValue ',' TypeAndValue '[' JumpTable ']'
3523/// JumpTable
3524/// ::= (TypeAndValue ',' TypeAndValue)*
3525bool LLParser::ParseSwitch(Instruction *&Inst, PerFunctionState &PFS) {
3526 LocTy CondLoc, BBLoc;
Chris Lattner3ed871f2009-10-27 19:13:16 +00003527 Value *Cond;
3528 BasicBlock *DefaultBB;
Chris Lattnerac161bf2009-01-02 07:01:27 +00003529 if (ParseTypeAndValue(Cond, CondLoc, PFS) ||
3530 ParseToken(lltok::comma, "expected ',' after switch condition") ||
Chris Lattner3ed871f2009-10-27 19:13:16 +00003531 ParseTypeAndBasicBlock(DefaultBB, BBLoc, PFS) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00003532 ParseToken(lltok::lsquare, "expected '[' with switch table"))
3533 return true;
3534
Duncan Sands19d0b472010-02-16 11:11:14 +00003535 if (!Cond->getType()->isIntegerTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00003536 return Error(CondLoc, "switch condition must have integer type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003537
Chris Lattnerac161bf2009-01-02 07:01:27 +00003538 // Parse the jump table pairs.
3539 SmallPtrSet<Value*, 32> SeenCases;
3540 SmallVector<std::pair<ConstantInt*, BasicBlock*>, 32> Table;
3541 while (Lex.getKind() != lltok::rsquare) {
Chris Lattner3ed871f2009-10-27 19:13:16 +00003542 Value *Constant;
3543 BasicBlock *DestBB;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003544
Chris Lattnerac161bf2009-01-02 07:01:27 +00003545 if (ParseTypeAndValue(Constant, CondLoc, PFS) ||
3546 ParseToken(lltok::comma, "expected ',' after case value") ||
Chris Lattner3ed871f2009-10-27 19:13:16 +00003547 ParseTypeAndBasicBlock(DestBB, PFS))
Chris Lattnerac161bf2009-01-02 07:01:27 +00003548 return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00003549
Chris Lattnerac161bf2009-01-02 07:01:27 +00003550 if (!SeenCases.insert(Constant))
3551 return Error(CondLoc, "duplicate case value in switch");
3552 if (!isa<ConstantInt>(Constant))
3553 return Error(CondLoc, "case value is not a constant integer");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003554
Chris Lattner3ed871f2009-10-27 19:13:16 +00003555 Table.push_back(std::make_pair(cast<ConstantInt>(Constant), DestBB));
Chris Lattnerac161bf2009-01-02 07:01:27 +00003556 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003557
Chris Lattnerac161bf2009-01-02 07:01:27 +00003558 Lex.Lex(); // Eat the ']'.
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003559
Chris Lattner3ed871f2009-10-27 19:13:16 +00003560 SwitchInst *SI = SwitchInst::Create(Cond, DefaultBB, Table.size());
Chris Lattnerac161bf2009-01-02 07:01:27 +00003561 for (unsigned i = 0, e = Table.size(); i != e; ++i)
3562 SI->addCase(Table[i].first, Table[i].second);
3563 Inst = SI;
3564 return false;
3565}
3566
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003567/// ParseIndirectBr
Chris Lattner3ed871f2009-10-27 19:13:16 +00003568/// Instruction
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003569/// ::= 'indirectbr' TypeAndValue ',' '[' LabelList ']'
3570bool LLParser::ParseIndirectBr(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattner3ed871f2009-10-27 19:13:16 +00003571 LocTy AddrLoc;
3572 Value *Address;
3573 if (ParseTypeAndValue(Address, AddrLoc, PFS) ||
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003574 ParseToken(lltok::comma, "expected ',' after indirectbr address") ||
3575 ParseToken(lltok::lsquare, "expected '[' with indirectbr"))
Chris Lattner3ed871f2009-10-27 19:13:16 +00003576 return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00003577
Duncan Sands19d0b472010-02-16 11:11:14 +00003578 if (!Address->getType()->isPointerTy())
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003579 return Error(AddrLoc, "indirectbr address must have pointer type");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00003580
Chris Lattner3ed871f2009-10-27 19:13:16 +00003581 // Parse the destination list.
3582 SmallVector<BasicBlock*, 16> DestList;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00003583
Chris Lattner3ed871f2009-10-27 19:13:16 +00003584 if (Lex.getKind() != lltok::rsquare) {
3585 BasicBlock *DestBB;
3586 if (ParseTypeAndBasicBlock(DestBB, PFS))
3587 return true;
3588 DestList.push_back(DestBB);
Michael Ilseman26ee2b82012-11-15 22:34:00 +00003589
Chris Lattner3ed871f2009-10-27 19:13:16 +00003590 while (EatIfPresent(lltok::comma)) {
3591 if (ParseTypeAndBasicBlock(DestBB, PFS))
3592 return true;
3593 DestList.push_back(DestBB);
3594 }
3595 }
Michael Ilseman26ee2b82012-11-15 22:34:00 +00003596
Chris Lattner3ed871f2009-10-27 19:13:16 +00003597 if (ParseToken(lltok::rsquare, "expected ']' at end of block list"))
3598 return true;
3599
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003600 IndirectBrInst *IBI = IndirectBrInst::Create(Address, DestList.size());
Chris Lattner3ed871f2009-10-27 19:13:16 +00003601 for (unsigned i = 0, e = DestList.size(); i != e; ++i)
3602 IBI->addDestination(DestList[i]);
3603 Inst = IBI;
3604 return false;
3605}
3606
3607
Chris Lattnerac161bf2009-01-02 07:01:27 +00003608/// ParseInvoke
3609/// ::= 'invoke' OptionalCallingConv OptionalAttrs Type Value ParamList
3610/// OptionalAttrs 'to' TypeAndValue 'unwind' TypeAndValue
3611bool LLParser::ParseInvoke(Instruction *&Inst, PerFunctionState &PFS) {
3612 LocTy CallLoc = Lex.getLoc();
Bill Wendling50d27842012-10-15 20:35:56 +00003613 AttrBuilder RetAttrs, FnAttrs;
Bill Wendlingb32b0412013-02-08 06:32:06 +00003614 std::vector<unsigned> FwdRefAttrGrps;
Bill Wendling09bd1f72013-02-22 00:12:35 +00003615 LocTy NoBuiltinLoc;
Sandeep Patel68c5f472009-09-02 08:44:58 +00003616 CallingConv::ID CC;
Craig Topper2617dcc2014-04-15 06:32:26 +00003617 Type *RetType = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00003618 LocTy RetTypeLoc;
3619 ValID CalleeID;
3620 SmallVector<ParamInfo, 16> ArgList;
3621
Chris Lattner3ed871f2009-10-27 19:13:16 +00003622 BasicBlock *NormalBB, *UnwindBB;
Chris Lattnerac161bf2009-01-02 07:01:27 +00003623 if (ParseOptionalCallingConv(CC) ||
Bill Wendling34c2eb22012-12-04 23:40:58 +00003624 ParseOptionalReturnAttrs(RetAttrs) ||
Chris Lattnerf880ca22009-03-09 04:49:14 +00003625 ParseType(RetType, RetTypeLoc, true /*void allowed*/) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00003626 ParseValID(CalleeID) ||
3627 ParseParameterList(ArgList, PFS) ||
Bill Wendling09bd1f72013-02-22 00:12:35 +00003628 ParseFnAttributeValuePairs(FnAttrs, FwdRefAttrGrps, false,
3629 NoBuiltinLoc) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00003630 ParseToken(lltok::kw_to, "expected 'to' in invoke") ||
Chris Lattner3ed871f2009-10-27 19:13:16 +00003631 ParseTypeAndBasicBlock(NormalBB, PFS) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00003632 ParseToken(lltok::kw_unwind, "expected 'unwind' in invoke") ||
Chris Lattner3ed871f2009-10-27 19:13:16 +00003633 ParseTypeAndBasicBlock(UnwindBB, PFS))
Chris Lattnerac161bf2009-01-02 07:01:27 +00003634 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003635
Chris Lattnerac161bf2009-01-02 07:01:27 +00003636 // If RetType is a non-function pointer type, then this is the short syntax
3637 // for the call, which means that RetType is just the return type. Infer the
3638 // rest of the function argument types from the arguments that are present.
Craig Topper2617dcc2014-04-15 06:32:26 +00003639 PointerType *PFTy = nullptr;
3640 FunctionType *Ty = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00003641 if (!(PFTy = dyn_cast<PointerType>(RetType)) ||
3642 !(Ty = dyn_cast<FunctionType>(PFTy->getElementType()))) {
3643 // Pull out the types of all of the arguments...
Jay Foadb804a2b2011-07-12 14:06:48 +00003644 std::vector<Type*> ParamTypes;
Chris Lattnerac161bf2009-01-02 07:01:27 +00003645 for (unsigned i = 0, e = ArgList.size(); i != e; ++i)
3646 ParamTypes.push_back(ArgList[i].V->getType());
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003647
Chris Lattnerac161bf2009-01-02 07:01:27 +00003648 if (!FunctionType::isValidReturnType(RetType))
3649 return Error(RetTypeLoc, "Invalid result type for LLVM function");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003650
Owen Anderson4056ca92009-07-29 22:17:13 +00003651 Ty = FunctionType::get(RetType, ParamTypes, false);
3652 PFTy = PointerType::getUnqual(Ty);
Chris Lattnerac161bf2009-01-02 07:01:27 +00003653 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003654
Chris Lattnerac161bf2009-01-02 07:01:27 +00003655 // Look up the callee.
3656 Value *Callee;
Victor Hernandez9d75c962010-01-11 22:31:58 +00003657 if (ConvertValIDToValue(PFTy, CalleeID, Callee, &PFS)) return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003658
Bill Wendling3d7b0b82012-12-19 07:18:57 +00003659 // Set up the Attribute for the function.
Bill Wendlingf5075a42013-01-27 02:24:02 +00003660 SmallVector<AttributeSet, 8> Attrs;
Bill Wendling3bef2dd2012-09-19 23:54:18 +00003661 if (RetAttrs.hasAttributes())
Bill Wendlingf5075a42013-01-27 02:24:02 +00003662 Attrs.push_back(AttributeSet::get(RetType->getContext(),
3663 AttributeSet::ReturnIndex,
3664 RetAttrs));
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003665
Chris Lattnerac161bf2009-01-02 07:01:27 +00003666 SmallVector<Value*, 8> Args;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003667
Chris Lattnerac161bf2009-01-02 07:01:27 +00003668 // Loop through FunctionType's arguments and ensure they are specified
3669 // correctly. Also, gather any parameter attributes.
3670 FunctionType::param_iterator I = Ty->param_begin();
3671 FunctionType::param_iterator E = Ty->param_end();
3672 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
Craig Topper2617dcc2014-04-15 06:32:26 +00003673 Type *ExpectedTy = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00003674 if (I != E) {
3675 ExpectedTy = *I++;
3676 } else if (!Ty->isVarArg()) {
3677 return Error(ArgList[i].Loc, "too many arguments specified");
3678 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003679
Chris Lattnerac161bf2009-01-02 07:01:27 +00003680 if (ExpectedTy && ExpectedTy != ArgList[i].V->getType())
3681 return Error(ArgList[i].Loc, "argument is not of expected type '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00003682 getTypeString(ExpectedTy) + "'");
Chris Lattnerac161bf2009-01-02 07:01:27 +00003683 Args.push_back(ArgList[i].V);
Bill Wendlingfe0021a2013-01-31 00:29:54 +00003684 if (ArgList[i].Attrs.hasAttributes(i + 1)) {
3685 AttrBuilder B(ArgList[i].Attrs, i + 1);
Bill Wendlingf5075a42013-01-27 02:24:02 +00003686 Attrs.push_back(AttributeSet::get(RetType->getContext(), i + 1, B));
3687 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00003688 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003689
Chris Lattnerac161bf2009-01-02 07:01:27 +00003690 if (I != E)
3691 return Error(CallLoc, "not enough parameters specified for call");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003692
Bill Wendling3bef2dd2012-09-19 23:54:18 +00003693 if (FnAttrs.hasAttributes())
Bill Wendlingf5075a42013-01-27 02:24:02 +00003694 Attrs.push_back(AttributeSet::get(RetType->getContext(),
3695 AttributeSet::FunctionIndex,
3696 FnAttrs));
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003697
Bill Wendling3d7b0b82012-12-19 07:18:57 +00003698 // Finish off the Attribute and check them
Bill Wendlinge94d8432012-12-07 23:16:57 +00003699 AttributeSet PAL = AttributeSet::get(Context, Attrs);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003700
Jay Foad5bd375a2011-07-15 08:37:34 +00003701 InvokeInst *II = InvokeInst::Create(Callee, NormalBB, UnwindBB, Args);
Chris Lattnerac161bf2009-01-02 07:01:27 +00003702 II->setCallingConv(CC);
3703 II->setAttributes(PAL);
Bill Wendlingb32b0412013-02-08 06:32:06 +00003704 ForwardRefAttrGroups[II] = FwdRefAttrGrps;
Chris Lattnerac161bf2009-01-02 07:01:27 +00003705 Inst = II;
3706 return false;
3707}
3708
Bill Wendlingf891bf82011-07-31 06:30:59 +00003709/// ParseResume
3710/// ::= 'resume' TypeAndValue
3711bool LLParser::ParseResume(Instruction *&Inst, PerFunctionState &PFS) {
3712 Value *Exn; LocTy ExnLoc;
Bill Wendlingf891bf82011-07-31 06:30:59 +00003713 if (ParseTypeAndValue(Exn, ExnLoc, PFS))
3714 return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00003715
Bill Wendlingf891bf82011-07-31 06:30:59 +00003716 ResumeInst *RI = ResumeInst::Create(Exn);
3717 Inst = RI;
3718 return false;
3719}
Chris Lattnerac161bf2009-01-02 07:01:27 +00003720
3721//===----------------------------------------------------------------------===//
3722// Binary Operators.
3723//===----------------------------------------------------------------------===//
3724
3725/// ParseArithmetic
Chris Lattnereeefa9a2009-01-05 08:24:46 +00003726/// ::= ArithmeticOps TypeAndValue ',' Value
3727///
3728/// If OperandType is 0, then any FP or integer operand is allowed. If it is 1,
3729/// then any integer operand is allowed, if it is 2, any fp operand is allowed.
Chris Lattnerac161bf2009-01-02 07:01:27 +00003730bool LLParser::ParseArithmetic(Instruction *&Inst, PerFunctionState &PFS,
Chris Lattnereeefa9a2009-01-05 08:24:46 +00003731 unsigned Opc, unsigned OperandType) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00003732 LocTy Loc; Value *LHS, *RHS;
3733 if (ParseTypeAndValue(LHS, Loc, PFS) ||
3734 ParseToken(lltok::comma, "expected ',' in arithmetic operation") ||
3735 ParseValue(LHS->getType(), RHS, PFS))
3736 return true;
3737
Chris Lattnereeefa9a2009-01-05 08:24:46 +00003738 bool Valid;
3739 switch (OperandType) {
Torok Edwinfbcc6632009-07-14 16:55:14 +00003740 default: llvm_unreachable("Unknown operand type!");
Chris Lattnereeefa9a2009-01-05 08:24:46 +00003741 case 0: // int or FP.
Duncan Sands9dff9be2010-02-15 16:12:20 +00003742 Valid = LHS->getType()->isIntOrIntVectorTy() ||
3743 LHS->getType()->isFPOrFPVectorTy();
Chris Lattnereeefa9a2009-01-05 08:24:46 +00003744 break;
Duncan Sands9dff9be2010-02-15 16:12:20 +00003745 case 1: Valid = LHS->getType()->isIntOrIntVectorTy(); break;
3746 case 2: Valid = LHS->getType()->isFPOrFPVectorTy(); break;
Chris Lattnereeefa9a2009-01-05 08:24:46 +00003747 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003748
Chris Lattnereeefa9a2009-01-05 08:24:46 +00003749 if (!Valid)
3750 return Error(Loc, "invalid operand type for instruction");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003751
Chris Lattnerac161bf2009-01-02 07:01:27 +00003752 Inst = BinaryOperator::Create((Instruction::BinaryOps)Opc, LHS, RHS);
3753 return false;
3754}
3755
3756/// ParseLogical
3757/// ::= ArithmeticOps TypeAndValue ',' Value {
3758bool LLParser::ParseLogical(Instruction *&Inst, PerFunctionState &PFS,
3759 unsigned Opc) {
3760 LocTy Loc; Value *LHS, *RHS;
3761 if (ParseTypeAndValue(LHS, Loc, PFS) ||
3762 ParseToken(lltok::comma, "expected ',' in logical operation") ||
3763 ParseValue(LHS->getType(), RHS, PFS))
3764 return true;
3765
Duncan Sands9dff9be2010-02-15 16:12:20 +00003766 if (!LHS->getType()->isIntOrIntVectorTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00003767 return Error(Loc,"instruction requires integer or integer vector operands");
3768
3769 Inst = BinaryOperator::Create((Instruction::BinaryOps)Opc, LHS, RHS);
3770 return false;
3771}
3772
3773
3774/// ParseCompare
3775/// ::= 'icmp' IPredicates TypeAndValue ',' Value
3776/// ::= 'fcmp' FPredicates TypeAndValue ',' Value
Chris Lattnerac161bf2009-01-02 07:01:27 +00003777bool LLParser::ParseCompare(Instruction *&Inst, PerFunctionState &PFS,
3778 unsigned Opc) {
3779 // Parse the integer/fp comparison predicate.
3780 LocTy Loc;
3781 unsigned Pred;
3782 Value *LHS, *RHS;
3783 if (ParseCmpPredicate(Pred, Opc) ||
3784 ParseTypeAndValue(LHS, Loc, PFS) ||
3785 ParseToken(lltok::comma, "expected ',' after compare value") ||
3786 ParseValue(LHS->getType(), RHS, PFS))
3787 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003788
Chris Lattnerac161bf2009-01-02 07:01:27 +00003789 if (Opc == Instruction::FCmp) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00003790 if (!LHS->getType()->isFPOrFPVectorTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00003791 return Error(Loc, "fcmp requires floating point operands");
Dan Gohmanad1f0a12009-08-25 23:17:54 +00003792 Inst = new FCmpInst(CmpInst::Predicate(Pred), LHS, RHS);
Nick Lewyckya21d3da2009-07-08 03:04:38 +00003793 } else {
3794 assert(Opc == Instruction::ICmp && "Unknown opcode for CmpInst!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00003795 if (!LHS->getType()->isIntOrIntVectorTy() &&
Nadav Rotem3924cb02011-12-05 06:29:09 +00003796 !LHS->getType()->getScalarType()->isPointerTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00003797 return Error(Loc, "icmp requires integer operands");
Dan Gohmanad1f0a12009-08-25 23:17:54 +00003798 Inst = new ICmpInst(CmpInst::Predicate(Pred), LHS, RHS);
Chris Lattnerac161bf2009-01-02 07:01:27 +00003799 }
3800 return false;
3801}
3802
3803//===----------------------------------------------------------------------===//
3804// Other Instructions.
3805//===----------------------------------------------------------------------===//
3806
3807
3808/// ParseCast
3809/// ::= CastOpc TypeAndValue 'to' Type
3810bool LLParser::ParseCast(Instruction *&Inst, PerFunctionState &PFS,
3811 unsigned Opc) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00003812 LocTy Loc;
3813 Value *Op;
Craig Topper2617dcc2014-04-15 06:32:26 +00003814 Type *DestTy = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00003815 if (ParseTypeAndValue(Op, Loc, PFS) ||
3816 ParseToken(lltok::kw_to, "expected 'to' after cast value") ||
3817 ParseType(DestTy))
3818 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003819
Chris Lattner89d856e2009-03-01 00:53:13 +00003820 if (!CastInst::castIsValid((Instruction::CastOps)Opc, Op, DestTy)) {
3821 CastInst::castIsValid((Instruction::CastOps)Opc, Op, DestTy);
Chris Lattnerac161bf2009-01-02 07:01:27 +00003822 return Error(Loc, "invalid cast opcode for cast from '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00003823 getTypeString(Op->getType()) + "' to '" +
3824 getTypeString(DestTy) + "'");
Chris Lattner89d856e2009-03-01 00:53:13 +00003825 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00003826 Inst = CastInst::Create((Instruction::CastOps)Opc, Op, DestTy);
3827 return false;
3828}
3829
3830/// ParseSelect
3831/// ::= 'select' TypeAndValue ',' TypeAndValue ',' TypeAndValue
3832bool LLParser::ParseSelect(Instruction *&Inst, PerFunctionState &PFS) {
3833 LocTy Loc;
3834 Value *Op0, *Op1, *Op2;
3835 if (ParseTypeAndValue(Op0, Loc, PFS) ||
3836 ParseToken(lltok::comma, "expected ',' after select condition") ||
3837 ParseTypeAndValue(Op1, PFS) ||
3838 ParseToken(lltok::comma, "expected ',' after select value") ||
3839 ParseTypeAndValue(Op2, PFS))
3840 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003841
Chris Lattnerac161bf2009-01-02 07:01:27 +00003842 if (const char *Reason = SelectInst::areInvalidOperands(Op0, Op1, Op2))
3843 return Error(Loc, Reason);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003844
Chris Lattnerac161bf2009-01-02 07:01:27 +00003845 Inst = SelectInst::Create(Op0, Op1, Op2);
3846 return false;
3847}
3848
Chris Lattnerb55ab542009-01-05 08:18:44 +00003849/// ParseVA_Arg
3850/// ::= 'va_arg' TypeAndValue ',' Type
3851bool LLParser::ParseVA_Arg(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00003852 Value *Op;
Craig Topper2617dcc2014-04-15 06:32:26 +00003853 Type *EltTy = nullptr;
Chris Lattnerb55ab542009-01-05 08:18:44 +00003854 LocTy TypeLoc;
Chris Lattnerac161bf2009-01-02 07:01:27 +00003855 if (ParseTypeAndValue(Op, PFS) ||
3856 ParseToken(lltok::comma, "expected ',' after vaarg operand") ||
Chris Lattnerb55ab542009-01-05 08:18:44 +00003857 ParseType(EltTy, TypeLoc))
Chris Lattnerac161bf2009-01-02 07:01:27 +00003858 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003859
Chris Lattnerb55ab542009-01-05 08:18:44 +00003860 if (!EltTy->isFirstClassType())
3861 return Error(TypeLoc, "va_arg requires operand with first class type");
Chris Lattnerac161bf2009-01-02 07:01:27 +00003862
3863 Inst = new VAArgInst(Op, EltTy);
3864 return false;
3865}
3866
3867/// ParseExtractElement
3868/// ::= 'extractelement' TypeAndValue ',' TypeAndValue
3869bool LLParser::ParseExtractElement(Instruction *&Inst, PerFunctionState &PFS) {
3870 LocTy Loc;
3871 Value *Op0, *Op1;
3872 if (ParseTypeAndValue(Op0, Loc, PFS) ||
3873 ParseToken(lltok::comma, "expected ',' after extract value") ||
3874 ParseTypeAndValue(Op1, PFS))
3875 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003876
Chris Lattnerac161bf2009-01-02 07:01:27 +00003877 if (!ExtractElementInst::isValidOperands(Op0, Op1))
3878 return Error(Loc, "invalid extractelement operands");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003879
Eric Christopherc9742252009-07-25 02:28:41 +00003880 Inst = ExtractElementInst::Create(Op0, Op1);
Chris Lattnerac161bf2009-01-02 07:01:27 +00003881 return false;
3882}
3883
3884/// ParseInsertElement
3885/// ::= 'insertelement' TypeAndValue ',' TypeAndValue ',' TypeAndValue
3886bool LLParser::ParseInsertElement(Instruction *&Inst, PerFunctionState &PFS) {
3887 LocTy Loc;
3888 Value *Op0, *Op1, *Op2;
3889 if (ParseTypeAndValue(Op0, Loc, PFS) ||
3890 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
3891 ParseTypeAndValue(Op1, PFS) ||
3892 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
3893 ParseTypeAndValue(Op2, PFS))
3894 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003895
Chris Lattnerac161bf2009-01-02 07:01:27 +00003896 if (!InsertElementInst::isValidOperands(Op0, Op1, Op2))
Eric Christopherfef8db62009-07-23 01:01:32 +00003897 return Error(Loc, "invalid insertelement operands");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003898
Chris Lattnerac161bf2009-01-02 07:01:27 +00003899 Inst = InsertElementInst::Create(Op0, Op1, Op2);
3900 return false;
3901}
3902
3903/// ParseShuffleVector
3904/// ::= 'shufflevector' TypeAndValue ',' TypeAndValue ',' TypeAndValue
3905bool LLParser::ParseShuffleVector(Instruction *&Inst, PerFunctionState &PFS) {
3906 LocTy Loc;
3907 Value *Op0, *Op1, *Op2;
3908 if (ParseTypeAndValue(Op0, Loc, PFS) ||
3909 ParseToken(lltok::comma, "expected ',' after shuffle mask") ||
3910 ParseTypeAndValue(Op1, PFS) ||
3911 ParseToken(lltok::comma, "expected ',' after shuffle value") ||
3912 ParseTypeAndValue(Op2, PFS))
3913 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003914
Chris Lattnerac161bf2009-01-02 07:01:27 +00003915 if (!ShuffleVectorInst::isValidOperands(Op0, Op1, Op2))
Pete Cooperc1a6f982012-02-01 23:43:12 +00003916 return Error(Loc, "invalid shufflevector operands");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003917
Chris Lattnerac161bf2009-01-02 07:01:27 +00003918 Inst = new ShuffleVectorInst(Op0, Op1, Op2);
3919 return false;
3920}
3921
3922/// ParsePHI
Chris Lattnerc05471e2009-10-18 05:27:44 +00003923/// ::= 'phi' Type '[' Value ',' Value ']' (',' '[' Value ',' Value ']')*
Chris Lattnerf4f03422009-12-30 05:27:33 +00003924int LLParser::ParsePHI(Instruction *&Inst, PerFunctionState &PFS) {
Craig Topper2617dcc2014-04-15 06:32:26 +00003925 Type *Ty = nullptr; LocTy TypeLoc;
Chris Lattnerac161bf2009-01-02 07:01:27 +00003926 Value *Op0, *Op1;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003927
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00003928 if (ParseType(Ty, TypeLoc) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00003929 ParseToken(lltok::lsquare, "expected '[' in phi value list") ||
3930 ParseValue(Ty, Op0, PFS) ||
3931 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
Owen Anderson55f1c092009-08-13 21:58:54 +00003932 ParseValue(Type::getLabelTy(Context), Op1, PFS) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00003933 ParseToken(lltok::rsquare, "expected ']' in phi value list"))
3934 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003935
Chris Lattnerf4f03422009-12-30 05:27:33 +00003936 bool AteExtraComma = false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00003937 SmallVector<std::pair<Value*, BasicBlock*>, 16> PHIVals;
3938 while (1) {
3939 PHIVals.push_back(std::make_pair(Op0, cast<BasicBlock>(Op1)));
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003940
Chris Lattner3822f632009-01-02 08:05:26 +00003941 if (!EatIfPresent(lltok::comma))
Chris Lattnerac161bf2009-01-02 07:01:27 +00003942 break;
3943
Chris Lattnerf4f03422009-12-30 05:27:33 +00003944 if (Lex.getKind() == lltok::MetadataVar) {
3945 AteExtraComma = true;
Devang Patel8f842d32009-10-16 18:45:49 +00003946 break;
Chris Lattnerf4f03422009-12-30 05:27:33 +00003947 }
Devang Patel8f842d32009-10-16 18:45:49 +00003948
Chris Lattner3822f632009-01-02 08:05:26 +00003949 if (ParseToken(lltok::lsquare, "expected '[' in phi value list") ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00003950 ParseValue(Ty, Op0, PFS) ||
3951 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
Owen Anderson55f1c092009-08-13 21:58:54 +00003952 ParseValue(Type::getLabelTy(Context), Op1, PFS) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00003953 ParseToken(lltok::rsquare, "expected ']' in phi value list"))
3954 return true;
3955 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003956
Chris Lattnerac161bf2009-01-02 07:01:27 +00003957 if (!Ty->isFirstClassType())
3958 return Error(TypeLoc, "phi node must have first class type");
3959
Jay Foad52131342011-03-30 11:28:46 +00003960 PHINode *PN = PHINode::Create(Ty, PHIVals.size());
Chris Lattnerac161bf2009-01-02 07:01:27 +00003961 for (unsigned i = 0, e = PHIVals.size(); i != e; ++i)
3962 PN->addIncoming(PHIVals[i].first, PHIVals[i].second);
3963 Inst = PN;
Chris Lattnerf4f03422009-12-30 05:27:33 +00003964 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerac161bf2009-01-02 07:01:27 +00003965}
3966
Bill Wendlingfae14752011-08-12 20:24:12 +00003967/// ParseLandingPad
3968/// ::= 'landingpad' Type 'personality' TypeAndValue 'cleanup'? Clause+
3969/// Clause
3970/// ::= 'catch' TypeAndValue
3971/// ::= 'filter'
3972/// ::= 'filter' TypeAndValue ( ',' TypeAndValue )*
3973bool LLParser::ParseLandingPad(Instruction *&Inst, PerFunctionState &PFS) {
Craig Topper2617dcc2014-04-15 06:32:26 +00003974 Type *Ty = nullptr; LocTy TyLoc;
Bill Wendlingfae14752011-08-12 20:24:12 +00003975 Value *PersFn; LocTy PersFnLoc;
Bill Wendlingfae14752011-08-12 20:24:12 +00003976
3977 if (ParseType(Ty, TyLoc) ||
3978 ParseToken(lltok::kw_personality, "expected 'personality'") ||
3979 ParseTypeAndValue(PersFn, PersFnLoc, PFS))
3980 return true;
3981
3982 LandingPadInst *LP = LandingPadInst::Create(Ty, PersFn, 0);
3983 LP->setCleanup(EatIfPresent(lltok::kw_cleanup));
3984
3985 while (Lex.getKind() == lltok::kw_catch || Lex.getKind() == lltok::kw_filter){
3986 LandingPadInst::ClauseType CT;
3987 if (EatIfPresent(lltok::kw_catch))
3988 CT = LandingPadInst::Catch;
3989 else if (EatIfPresent(lltok::kw_filter))
3990 CT = LandingPadInst::Filter;
3991 else
3992 return TokError("expected 'catch' or 'filter' clause type");
3993
Rafael Espindola4dc5dfc2014-06-04 18:51:31 +00003994 Value *V;
3995 LocTy VLoc;
Bill Wendlingfae14752011-08-12 20:24:12 +00003996 if (ParseTypeAndValue(V, VLoc, PFS)) {
3997 delete LP;
3998 return true;
3999 }
4000
Bill Wendlinga52aa3c2011-08-12 20:52:25 +00004001 // A 'catch' type expects a non-array constant. A filter clause expects an
4002 // array constant.
4003 if (CT == LandingPadInst::Catch) {
4004 if (isa<ArrayType>(V->getType()))
4005 Error(VLoc, "'catch' clause has an invalid type");
4006 } else {
4007 if (!isa<ArrayType>(V->getType()))
4008 Error(VLoc, "'filter' clause has an invalid type");
4009 }
4010
Rafael Espindola4dc5dfc2014-06-04 18:51:31 +00004011 LP->addClause(cast<Constant>(V));
Bill Wendlingfae14752011-08-12 20:24:12 +00004012 }
4013
4014 Inst = LP;
4015 return false;
4016}
4017
Chris Lattnerac161bf2009-01-02 07:01:27 +00004018/// ParseCall
Reid Kleckner5772b772014-04-24 20:14:34 +00004019/// ::= 'call' OptionalCallingConv OptionalAttrs Type Value
4020/// ParameterList OptionalAttrs
4021/// ::= 'tail' 'call' OptionalCallingConv OptionalAttrs Type Value
4022/// ParameterList OptionalAttrs
4023/// ::= 'musttail' 'call' OptionalCallingConv OptionalAttrs Type Value
Chris Lattnerac161bf2009-01-02 07:01:27 +00004024/// ParameterList OptionalAttrs
4025bool LLParser::ParseCall(Instruction *&Inst, PerFunctionState &PFS,
Reid Kleckner5772b772014-04-24 20:14:34 +00004026 CallInst::TailCallKind TCK) {
Bill Wendling50d27842012-10-15 20:35:56 +00004027 AttrBuilder RetAttrs, FnAttrs;
Bill Wendlingb32b0412013-02-08 06:32:06 +00004028 std::vector<unsigned> FwdRefAttrGrps;
Michael Gottesman41748d72013-06-27 00:25:01 +00004029 LocTy BuiltinLoc;
Sandeep Patel68c5f472009-09-02 08:44:58 +00004030 CallingConv::ID CC;
Craig Topper2617dcc2014-04-15 06:32:26 +00004031 Type *RetType = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004032 LocTy RetTypeLoc;
4033 ValID CalleeID;
4034 SmallVector<ParamInfo, 16> ArgList;
4035 LocTy CallLoc = Lex.getLoc();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004036
Reid Kleckner5772b772014-04-24 20:14:34 +00004037 if ((TCK != CallInst::TCK_None &&
4038 ParseToken(lltok::kw_call, "expected 'tail call'")) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00004039 ParseOptionalCallingConv(CC) ||
Bill Wendling34c2eb22012-12-04 23:40:58 +00004040 ParseOptionalReturnAttrs(RetAttrs) ||
Chris Lattnerf880ca22009-03-09 04:49:14 +00004041 ParseType(RetType, RetTypeLoc, true /*void allowed*/) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00004042 ParseValID(CalleeID) ||
4043 ParseParameterList(ArgList, PFS) ||
Bill Wendling09bd1f72013-02-22 00:12:35 +00004044 ParseFnAttributeValuePairs(FnAttrs, FwdRefAttrGrps, false,
Michael Gottesman41748d72013-06-27 00:25:01 +00004045 BuiltinLoc))
Chris Lattnerac161bf2009-01-02 07:01:27 +00004046 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004047
Chris Lattnerac161bf2009-01-02 07:01:27 +00004048 // If RetType is a non-function pointer type, then this is the short syntax
4049 // for the call, which means that RetType is just the return type. Infer the
4050 // rest of the function argument types from the arguments that are present.
Craig Topper2617dcc2014-04-15 06:32:26 +00004051 PointerType *PFTy = nullptr;
4052 FunctionType *Ty = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004053 if (!(PFTy = dyn_cast<PointerType>(RetType)) ||
4054 !(Ty = dyn_cast<FunctionType>(PFTy->getElementType()))) {
4055 // Pull out the types of all of the arguments...
Jay Foadb804a2b2011-07-12 14:06:48 +00004056 std::vector<Type*> ParamTypes;
Eli Friedman6cf51412010-07-24 23:06:59 +00004057 for (unsigned i = 0, e = ArgList.size(); i != e; ++i)
4058 ParamTypes.push_back(ArgList[i].V->getType());
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004059
Chris Lattnerac161bf2009-01-02 07:01:27 +00004060 if (!FunctionType::isValidReturnType(RetType))
4061 return Error(RetTypeLoc, "Invalid result type for LLVM function");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004062
Owen Anderson4056ca92009-07-29 22:17:13 +00004063 Ty = FunctionType::get(RetType, ParamTypes, false);
4064 PFTy = PointerType::getUnqual(Ty);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004065 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004066
Chris Lattnerac161bf2009-01-02 07:01:27 +00004067 // Look up the callee.
4068 Value *Callee;
Victor Hernandez9d75c962010-01-11 22:31:58 +00004069 if (ConvertValIDToValue(PFTy, CalleeID, Callee, &PFS)) return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004070
Bill Wendling3d7b0b82012-12-19 07:18:57 +00004071 // Set up the Attribute for the function.
Bill Wendlingf5075a42013-01-27 02:24:02 +00004072 SmallVector<AttributeSet, 8> Attrs;
Bill Wendling3bef2dd2012-09-19 23:54:18 +00004073 if (RetAttrs.hasAttributes())
Bill Wendlingf5075a42013-01-27 02:24:02 +00004074 Attrs.push_back(AttributeSet::get(RetType->getContext(),
4075 AttributeSet::ReturnIndex,
4076 RetAttrs));
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004077
Chris Lattnerac161bf2009-01-02 07:01:27 +00004078 SmallVector<Value*, 8> Args;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004079
Chris Lattnerac161bf2009-01-02 07:01:27 +00004080 // Loop through FunctionType's arguments and ensure they are specified
4081 // correctly. Also, gather any parameter attributes.
4082 FunctionType::param_iterator I = Ty->param_begin();
4083 FunctionType::param_iterator E = Ty->param_end();
4084 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
Craig Topper2617dcc2014-04-15 06:32:26 +00004085 Type *ExpectedTy = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004086 if (I != E) {
4087 ExpectedTy = *I++;
4088 } else if (!Ty->isVarArg()) {
4089 return Error(ArgList[i].Loc, "too many arguments specified");
4090 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004091
Chris Lattnerac161bf2009-01-02 07:01:27 +00004092 if (ExpectedTy && ExpectedTy != ArgList[i].V->getType())
4093 return Error(ArgList[i].Loc, "argument is not of expected type '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00004094 getTypeString(ExpectedTy) + "'");
Chris Lattnerac161bf2009-01-02 07:01:27 +00004095 Args.push_back(ArgList[i].V);
Bill Wendlingfe0021a2013-01-31 00:29:54 +00004096 if (ArgList[i].Attrs.hasAttributes(i + 1)) {
4097 AttrBuilder B(ArgList[i].Attrs, i + 1);
Bill Wendlingf5075a42013-01-27 02:24:02 +00004098 Attrs.push_back(AttributeSet::get(RetType->getContext(), i + 1, B));
4099 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00004100 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004101
Chris Lattnerac161bf2009-01-02 07:01:27 +00004102 if (I != E)
4103 return Error(CallLoc, "not enough parameters specified for call");
4104
Bill Wendling3bef2dd2012-09-19 23:54:18 +00004105 if (FnAttrs.hasAttributes())
Bill Wendlingf5075a42013-01-27 02:24:02 +00004106 Attrs.push_back(AttributeSet::get(RetType->getContext(),
4107 AttributeSet::FunctionIndex,
4108 FnAttrs));
Chris Lattnerac161bf2009-01-02 07:01:27 +00004109
Bill Wendling3d7b0b82012-12-19 07:18:57 +00004110 // Finish off the Attribute and check them
Bill Wendlinge94d8432012-12-07 23:16:57 +00004111 AttributeSet PAL = AttributeSet::get(Context, Attrs);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004112
Jay Foad5bd375a2011-07-15 08:37:34 +00004113 CallInst *CI = CallInst::Create(Callee, Args);
Reid Kleckner5772b772014-04-24 20:14:34 +00004114 CI->setTailCallKind(TCK);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004115 CI->setCallingConv(CC);
4116 CI->setAttributes(PAL);
Bill Wendlingb32b0412013-02-08 06:32:06 +00004117 ForwardRefAttrGroups[CI] = FwdRefAttrGrps;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004118 Inst = CI;
4119 return false;
4120}
4121
4122//===----------------------------------------------------------------------===//
4123// Memory Instructions.
4124//===----------------------------------------------------------------------===//
4125
4126/// ParseAlloc
David Majnemerc4ab61c2014-03-09 06:41:58 +00004127/// ::= 'alloca' 'inalloca'? Type (',' TypeAndValue)? (',' 'align' i32)?
Chris Lattner78103722011-06-17 03:16:47 +00004128int LLParser::ParseAlloc(Instruction *&Inst, PerFunctionState &PFS) {
Craig Topper2617dcc2014-04-15 06:32:26 +00004129 Value *Size = nullptr;
Chris Lattner200e0752009-07-02 23:08:13 +00004130 LocTy SizeLoc;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004131 unsigned Alignment = 0;
Craig Topper2617dcc2014-04-15 06:32:26 +00004132 Type *Ty = nullptr;
David Majnemerc4ab61c2014-03-09 06:41:58 +00004133
4134 bool IsInAlloca = EatIfPresent(lltok::kw_inalloca);
4135
Chris Lattner3822f632009-01-02 08:05:26 +00004136 if (ParseType(Ty)) return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004137
Chris Lattnerb2f39502009-12-30 05:44:30 +00004138 bool AteExtraComma = false;
Chris Lattner3822f632009-01-02 08:05:26 +00004139 if (EatIfPresent(lltok::comma)) {
David Majnemerc4ab61c2014-03-09 06:41:58 +00004140 if (Lex.getKind() == lltok::kw_align) {
4141 if (ParseOptionalAlignment(Alignment)) return true;
4142 } else if (Lex.getKind() == lltok::MetadataVar) {
4143 AteExtraComma = true;
4144 } else {
4145 if (ParseTypeAndValue(Size, SizeLoc, PFS) ||
4146 ParseOptionalCommaAlign(Alignment, AteExtraComma))
4147 return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004148 }
4149 }
4150
Dan Gohman2140a742010-05-28 01:14:11 +00004151 if (Size && !Size->getType()->isIntegerTy())
4152 return Error(SizeLoc, "element count must have integer type");
Chris Lattnerac161bf2009-01-02 07:01:27 +00004153
Reid Kleckner436c42e2014-01-17 23:58:17 +00004154 AllocaInst *AI = new AllocaInst(Ty, Size, Alignment);
4155 AI->setUsedWithInAlloca(IsInAlloca);
4156 Inst = AI;
Chris Lattner78103722011-06-17 03:16:47 +00004157 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004158}
4159
4160/// ParseLoad
Eli Friedman02e737b2011-08-12 22:50:01 +00004161/// ::= 'load' 'volatile'? TypeAndValue (',' 'align' i32)?
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004162/// ::= 'load' 'atomic' 'volatile'? TypeAndValue
Eli Friedman02e737b2011-08-12 22:50:01 +00004163/// 'singlethread'? AtomicOrdering (',' 'align' i32)?
Chris Lattnerbc639292011-11-27 06:56:53 +00004164int LLParser::ParseLoad(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00004165 Value *Val; LocTy Loc;
Devang Patelea8a4b92009-09-17 23:04:48 +00004166 unsigned Alignment = 0;
Chris Lattnerb2f39502009-12-30 05:44:30 +00004167 bool AteExtraComma = false;
Eli Friedman02e737b2011-08-12 22:50:01 +00004168 bool isAtomic = false;
Eli Friedman59b66882011-08-09 23:02:53 +00004169 AtomicOrdering Ordering = NotAtomic;
4170 SynchronizationScope Scope = CrossThread;
Eli Friedman02e737b2011-08-12 22:50:01 +00004171
4172 if (Lex.getKind() == lltok::kw_atomic) {
Eli Friedman02e737b2011-08-12 22:50:01 +00004173 isAtomic = true;
4174 Lex.Lex();
4175 }
4176
Chris Lattnerbc639292011-11-27 06:56:53 +00004177 bool isVolatile = false;
Eli Friedman02e737b2011-08-12 22:50:01 +00004178 if (Lex.getKind() == lltok::kw_volatile) {
Eli Friedman02e737b2011-08-12 22:50:01 +00004179 isVolatile = true;
4180 Lex.Lex();
4181 }
4182
Chris Lattnerb2f39502009-12-30 05:44:30 +00004183 if (ParseTypeAndValue(Val, Loc, PFS) ||
Eli Friedman59b66882011-08-09 23:02:53 +00004184 ParseScopeAndOrdering(isAtomic, Scope, Ordering) ||
Chris Lattnerb2f39502009-12-30 05:44:30 +00004185 ParseOptionalCommaAlign(Alignment, AteExtraComma))
4186 return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004187
Duncan Sands19d0b472010-02-16 11:11:14 +00004188 if (!Val->getType()->isPointerTy() ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00004189 !cast<PointerType>(Val->getType())->getElementType()->isFirstClassType())
4190 return Error(Loc, "load operand must be a pointer to a first class type");
Eli Friedman59b66882011-08-09 23:02:53 +00004191 if (isAtomic && !Alignment)
4192 return Error(Loc, "atomic load must have explicit non-zero alignment");
4193 if (Ordering == Release || Ordering == AcquireRelease)
4194 return Error(Loc, "atomic load cannot use Release ordering");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004195
Eli Friedman59b66882011-08-09 23:02:53 +00004196 Inst = new LoadInst(Val, "", isVolatile, Alignment, Ordering, Scope);
Chris Lattnerb2f39502009-12-30 05:44:30 +00004197 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004198}
4199
4200/// ParseStore
Eli Friedman02e737b2011-08-12 22:50:01 +00004201
4202/// ::= 'store' 'volatile'? TypeAndValue ',' TypeAndValue (',' 'align' i32)?
4203/// ::= 'store' 'atomic' 'volatile'? TypeAndValue ',' TypeAndValue
Eli Friedman59b66882011-08-09 23:02:53 +00004204/// 'singlethread'? AtomicOrdering (',' 'align' i32)?
Chris Lattnerbc639292011-11-27 06:56:53 +00004205int LLParser::ParseStore(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00004206 Value *Val, *Ptr; LocTy Loc, PtrLoc;
Devang Patelea8a4b92009-09-17 23:04:48 +00004207 unsigned Alignment = 0;
Chris Lattnerb2f39502009-12-30 05:44:30 +00004208 bool AteExtraComma = false;
Eli Friedman02e737b2011-08-12 22:50:01 +00004209 bool isAtomic = false;
Eli Friedman59b66882011-08-09 23:02:53 +00004210 AtomicOrdering Ordering = NotAtomic;
4211 SynchronizationScope Scope = CrossThread;
Eli Friedman02e737b2011-08-12 22:50:01 +00004212
4213 if (Lex.getKind() == lltok::kw_atomic) {
Eli Friedman02e737b2011-08-12 22:50:01 +00004214 isAtomic = true;
4215 Lex.Lex();
4216 }
4217
Chris Lattnerbc639292011-11-27 06:56:53 +00004218 bool isVolatile = false;
Eli Friedman02e737b2011-08-12 22:50:01 +00004219 if (Lex.getKind() == lltok::kw_volatile) {
Eli Friedman02e737b2011-08-12 22:50:01 +00004220 isVolatile = true;
4221 Lex.Lex();
4222 }
4223
Chris Lattnerac161bf2009-01-02 07:01:27 +00004224 if (ParseTypeAndValue(Val, Loc, PFS) ||
4225 ParseToken(lltok::comma, "expected ',' after store operand") ||
Chris Lattnerb2f39502009-12-30 05:44:30 +00004226 ParseTypeAndValue(Ptr, PtrLoc, PFS) ||
Eli Friedman59b66882011-08-09 23:02:53 +00004227 ParseScopeAndOrdering(isAtomic, Scope, Ordering) ||
Chris Lattnerb2f39502009-12-30 05:44:30 +00004228 ParseOptionalCommaAlign(Alignment, AteExtraComma))
Chris Lattnerac161bf2009-01-02 07:01:27 +00004229 return true;
Devang Patelea8a4b92009-09-17 23:04:48 +00004230
Duncan Sands19d0b472010-02-16 11:11:14 +00004231 if (!Ptr->getType()->isPointerTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00004232 return Error(PtrLoc, "store operand must be a pointer");
4233 if (!Val->getType()->isFirstClassType())
4234 return Error(Loc, "store operand must be a first class value");
4235 if (cast<PointerType>(Ptr->getType())->getElementType() != Val->getType())
4236 return Error(Loc, "stored value and pointer type do not match");
Eli Friedman59b66882011-08-09 23:02:53 +00004237 if (isAtomic && !Alignment)
4238 return Error(Loc, "atomic store must have explicit non-zero alignment");
4239 if (Ordering == Acquire || Ordering == AcquireRelease)
4240 return Error(Loc, "atomic store cannot use Acquire ordering");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004241
Eli Friedman59b66882011-08-09 23:02:53 +00004242 Inst = new StoreInst(Val, Ptr, isVolatile, Alignment, Ordering, Scope);
Chris Lattnerb2f39502009-12-30 05:44:30 +00004243 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004244}
4245
Eli Friedmanc9a551e2011-07-28 21:48:00 +00004246/// ParseCmpXchg
Eli Friedman02e737b2011-08-12 22:50:01 +00004247/// ::= 'cmpxchg' 'volatile'? TypeAndValue ',' TypeAndValue ',' TypeAndValue
Tim Northovere94a5182014-03-11 10:48:52 +00004248/// 'singlethread'? AtomicOrdering AtomicOrdering
Eli Friedman02e737b2011-08-12 22:50:01 +00004249int LLParser::ParseCmpXchg(Instruction *&Inst, PerFunctionState &PFS) {
Eli Friedmanc9a551e2011-07-28 21:48:00 +00004250 Value *Ptr, *Cmp, *New; LocTy PtrLoc, CmpLoc, NewLoc;
4251 bool AteExtraComma = false;
Tim Northovere94a5182014-03-11 10:48:52 +00004252 AtomicOrdering SuccessOrdering = NotAtomic;
4253 AtomicOrdering FailureOrdering = NotAtomic;
Eli Friedmanc9a551e2011-07-28 21:48:00 +00004254 SynchronizationScope Scope = CrossThread;
Eli Friedman02e737b2011-08-12 22:50:01 +00004255 bool isVolatile = false;
4256
4257 if (EatIfPresent(lltok::kw_volatile))
4258 isVolatile = true;
4259
Eli Friedmanc9a551e2011-07-28 21:48:00 +00004260 if (ParseTypeAndValue(Ptr, PtrLoc, PFS) ||
4261 ParseToken(lltok::comma, "expected ',' after cmpxchg address") ||
4262 ParseTypeAndValue(Cmp, CmpLoc, PFS) ||
4263 ParseToken(lltok::comma, "expected ',' after cmpxchg cmp operand") ||
4264 ParseTypeAndValue(New, NewLoc, PFS) ||
Tim Northovere94a5182014-03-11 10:48:52 +00004265 ParseScopeAndOrdering(true /*Always atomic*/, Scope, SuccessOrdering) ||
4266 ParseOrdering(FailureOrdering))
Eli Friedmanc9a551e2011-07-28 21:48:00 +00004267 return true;
4268
Tim Northovere94a5182014-03-11 10:48:52 +00004269 if (SuccessOrdering == Unordered || FailureOrdering == Unordered)
Eli Friedmanc9a551e2011-07-28 21:48:00 +00004270 return TokError("cmpxchg cannot be unordered");
Tim Northovere94a5182014-03-11 10:48:52 +00004271 if (SuccessOrdering < FailureOrdering)
4272 return TokError("cmpxchg must be at least as ordered on success as failure");
4273 if (FailureOrdering == Release || FailureOrdering == AcquireRelease)
4274 return TokError("cmpxchg failure ordering cannot include release semantics");
Eli Friedmanc9a551e2011-07-28 21:48:00 +00004275 if (!Ptr->getType()->isPointerTy())
4276 return Error(PtrLoc, "cmpxchg operand must be a pointer");
4277 if (cast<PointerType>(Ptr->getType())->getElementType() != Cmp->getType())
4278 return Error(CmpLoc, "compare value and pointer type do not match");
4279 if (cast<PointerType>(Ptr->getType())->getElementType() != New->getType())
4280 return Error(NewLoc, "new value and pointer type do not match");
4281 if (!New->getType()->isIntegerTy())
4282 return Error(NewLoc, "cmpxchg operand must be an integer");
4283 unsigned Size = New->getType()->getPrimitiveSizeInBits();
4284 if (Size < 8 || (Size & (Size - 1)))
4285 return Error(NewLoc, "cmpxchg operand must be power-of-two byte-sized"
4286 " integer");
4287
Tim Northovere94a5182014-03-11 10:48:52 +00004288 AtomicCmpXchgInst *CXI = new AtomicCmpXchgInst(Ptr, Cmp, New, SuccessOrdering,
4289 FailureOrdering, Scope);
Eli Friedmanc9a551e2011-07-28 21:48:00 +00004290 CXI->setVolatile(isVolatile);
4291 Inst = CXI;
4292 return AteExtraComma ? InstExtraComma : InstNormal;
4293}
4294
4295/// ParseAtomicRMW
Eli Friedman02e737b2011-08-12 22:50:01 +00004296/// ::= 'atomicrmw' 'volatile'? BinOp TypeAndValue ',' TypeAndValue
4297/// 'singlethread'? AtomicOrdering
4298int LLParser::ParseAtomicRMW(Instruction *&Inst, PerFunctionState &PFS) {
Eli Friedmanc9a551e2011-07-28 21:48:00 +00004299 Value *Ptr, *Val; LocTy PtrLoc, ValLoc;
4300 bool AteExtraComma = false;
4301 AtomicOrdering Ordering = NotAtomic;
4302 SynchronizationScope Scope = CrossThread;
Eli Friedman02e737b2011-08-12 22:50:01 +00004303 bool isVolatile = false;
Eli Friedmanc9a551e2011-07-28 21:48:00 +00004304 AtomicRMWInst::BinOp Operation;
Eli Friedman02e737b2011-08-12 22:50:01 +00004305
4306 if (EatIfPresent(lltok::kw_volatile))
4307 isVolatile = true;
4308
Eli Friedmanc9a551e2011-07-28 21:48:00 +00004309 switch (Lex.getKind()) {
4310 default: return TokError("expected binary operation in atomicrmw");
4311 case lltok::kw_xchg: Operation = AtomicRMWInst::Xchg; break;
4312 case lltok::kw_add: Operation = AtomicRMWInst::Add; break;
4313 case lltok::kw_sub: Operation = AtomicRMWInst::Sub; break;
4314 case lltok::kw_and: Operation = AtomicRMWInst::And; break;
4315 case lltok::kw_nand: Operation = AtomicRMWInst::Nand; break;
4316 case lltok::kw_or: Operation = AtomicRMWInst::Or; break;
4317 case lltok::kw_xor: Operation = AtomicRMWInst::Xor; break;
4318 case lltok::kw_max: Operation = AtomicRMWInst::Max; break;
4319 case lltok::kw_min: Operation = AtomicRMWInst::Min; break;
4320 case lltok::kw_umax: Operation = AtomicRMWInst::UMax; break;
4321 case lltok::kw_umin: Operation = AtomicRMWInst::UMin; break;
4322 }
4323 Lex.Lex(); // Eat the operation.
4324
4325 if (ParseTypeAndValue(Ptr, PtrLoc, PFS) ||
4326 ParseToken(lltok::comma, "expected ',' after atomicrmw address") ||
4327 ParseTypeAndValue(Val, ValLoc, PFS) ||
4328 ParseScopeAndOrdering(true /*Always atomic*/, Scope, Ordering))
4329 return true;
4330
4331 if (Ordering == Unordered)
4332 return TokError("atomicrmw cannot be unordered");
4333 if (!Ptr->getType()->isPointerTy())
4334 return Error(PtrLoc, "atomicrmw operand must be a pointer");
4335 if (cast<PointerType>(Ptr->getType())->getElementType() != Val->getType())
4336 return Error(ValLoc, "atomicrmw value and pointer type do not match");
4337 if (!Val->getType()->isIntegerTy())
4338 return Error(ValLoc, "atomicrmw operand must be an integer");
4339 unsigned Size = Val->getType()->getPrimitiveSizeInBits();
4340 if (Size < 8 || (Size & (Size - 1)))
4341 return Error(ValLoc, "atomicrmw operand must be power-of-two byte-sized"
4342 " integer");
4343
4344 AtomicRMWInst *RMWI =
4345 new AtomicRMWInst(Operation, Ptr, Val, Ordering, Scope);
4346 RMWI->setVolatile(isVolatile);
4347 Inst = RMWI;
4348 return AteExtraComma ? InstExtraComma : InstNormal;
4349}
4350
Eli Friedmanfee02c62011-07-25 23:16:38 +00004351/// ParseFence
4352/// ::= 'fence' 'singlethread'? AtomicOrdering
4353int LLParser::ParseFence(Instruction *&Inst, PerFunctionState &PFS) {
4354 AtomicOrdering Ordering = NotAtomic;
4355 SynchronizationScope Scope = CrossThread;
4356 if (ParseScopeAndOrdering(true /*Always atomic*/, Scope, Ordering))
4357 return true;
4358
4359 if (Ordering == Unordered)
4360 return TokError("fence cannot be unordered");
4361 if (Ordering == Monotonic)
4362 return TokError("fence cannot be monotonic");
4363
4364 Inst = new FenceInst(Context, Ordering, Scope);
4365 return InstNormal;
4366}
4367
Chris Lattnerac161bf2009-01-02 07:01:27 +00004368/// ParseGetElementPtr
Dan Gohman1639c392009-07-27 21:53:46 +00004369/// ::= 'getelementptr' 'inbounds'? TypeAndValue (',' TypeAndValue)*
Chris Lattnerf4f03422009-12-30 05:27:33 +00004370int LLParser::ParseGetElementPtr(Instruction *&Inst, PerFunctionState &PFS) {
Craig Topper2617dcc2014-04-15 06:32:26 +00004371 Value *Ptr = nullptr;
4372 Value *Val = nullptr;
Nadav Rotem3924cb02011-12-05 06:29:09 +00004373 LocTy Loc, EltLoc;
Dan Gohman1639c392009-07-27 21:53:46 +00004374
Dan Gohman16cbbe42009-07-29 15:58:36 +00004375 bool InBounds = EatIfPresent(lltok::kw_inbounds);
Dan Gohman1639c392009-07-27 21:53:46 +00004376
Chris Lattner3822f632009-01-02 08:05:26 +00004377 if (ParseTypeAndValue(Ptr, Loc, PFS)) return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004378
Eli Benderskyd9806682013-04-22 17:03:42 +00004379 Type *BaseType = Ptr->getType();
4380 PointerType *BasePointerType = dyn_cast<PointerType>(BaseType->getScalarType());
4381 if (!BasePointerType)
Chris Lattnerac161bf2009-01-02 07:01:27 +00004382 return Error(Loc, "base of getelementptr must be a pointer");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004383
Chris Lattnerac161bf2009-01-02 07:01:27 +00004384 SmallVector<Value*, 16> Indices;
Chris Lattnerf4f03422009-12-30 05:27:33 +00004385 bool AteExtraComma = false;
Chris Lattner3822f632009-01-02 08:05:26 +00004386 while (EatIfPresent(lltok::comma)) {
Chris Lattnerf4f03422009-12-30 05:27:33 +00004387 if (Lex.getKind() == lltok::MetadataVar) {
4388 AteExtraComma = true;
Devang Patel52b17452009-10-13 18:49:55 +00004389 break;
Chris Lattnerf4f03422009-12-30 05:27:33 +00004390 }
Chris Lattner3822f632009-01-02 08:05:26 +00004391 if (ParseTypeAndValue(Val, EltLoc, PFS)) return true;
Nadav Rotem3924cb02011-12-05 06:29:09 +00004392 if (!Val->getType()->getScalarType()->isIntegerTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00004393 return Error(EltLoc, "getelementptr index must be an integer");
Nadav Rotem3924cb02011-12-05 06:29:09 +00004394 if (Val->getType()->isVectorTy() != Ptr->getType()->isVectorTy())
4395 return Error(EltLoc, "getelementptr index type missmatch");
4396 if (Val->getType()->isVectorTy()) {
4397 unsigned ValNumEl = cast<VectorType>(Val->getType())->getNumElements();
4398 unsigned PtrNumEl = cast<VectorType>(Ptr->getType())->getNumElements();
4399 if (ValNumEl != PtrNumEl)
4400 return Error(EltLoc,
4401 "getelementptr vector index has a wrong number of elements");
4402 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00004403 Indices.push_back(Val);
4404 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004405
Eli Benderskyd9806682013-04-22 17:03:42 +00004406 if (!Indices.empty() && !BasePointerType->getElementType()->isSized())
4407 return Error(Loc, "base element of getelementptr must be sized");
4408
4409 if (!GetElementPtrInst::getIndexedType(BaseType, Indices))
Chris Lattnerac161bf2009-01-02 07:01:27 +00004410 return Error(Loc, "invalid getelementptr indices");
Jay Foadd1b78492011-07-25 09:48:08 +00004411 Inst = GetElementPtrInst::Create(Ptr, Indices);
Dan Gohman1639c392009-07-27 21:53:46 +00004412 if (InBounds)
Dan Gohman1b849082009-09-07 23:54:19 +00004413 cast<GetElementPtrInst>(Inst)->setIsInBounds(true);
Chris Lattnerf4f03422009-12-30 05:27:33 +00004414 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004415}
4416
4417/// ParseExtractValue
4418/// ::= 'extractvalue' TypeAndValue (',' uint32)+
Chris Lattnerf4f03422009-12-30 05:27:33 +00004419int LLParser::ParseExtractValue(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00004420 Value *Val; LocTy Loc;
4421 SmallVector<unsigned, 4> Indices;
Chris Lattnerf4f03422009-12-30 05:27:33 +00004422 bool AteExtraComma;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004423 if (ParseTypeAndValue(Val, Loc, PFS) ||
Chris Lattnerf4f03422009-12-30 05:27:33 +00004424 ParseIndexList(Indices, AteExtraComma))
Chris Lattnerac161bf2009-01-02 07:01:27 +00004425 return true;
4426
Chris Lattner392be582010-02-12 20:49:41 +00004427 if (!Val->getType()->isAggregateType())
4428 return Error(Loc, "extractvalue operand must be aggregate type");
Chris Lattnerac161bf2009-01-02 07:01:27 +00004429
Jay Foad57aa6362011-07-13 10:26:04 +00004430 if (!ExtractValueInst::getIndexedType(Val->getType(), Indices))
Chris Lattnerac161bf2009-01-02 07:01:27 +00004431 return Error(Loc, "invalid indices for extractvalue");
Jay Foad57aa6362011-07-13 10:26:04 +00004432 Inst = ExtractValueInst::Create(Val, Indices);
Chris Lattnerf4f03422009-12-30 05:27:33 +00004433 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004434}
4435
4436/// ParseInsertValue
4437/// ::= 'insertvalue' TypeAndValue ',' TypeAndValue (',' uint32)+
Chris Lattnerf4f03422009-12-30 05:27:33 +00004438int LLParser::ParseInsertValue(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00004439 Value *Val0, *Val1; LocTy Loc0, Loc1;
4440 SmallVector<unsigned, 4> Indices;
Chris Lattnerf4f03422009-12-30 05:27:33 +00004441 bool AteExtraComma;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004442 if (ParseTypeAndValue(Val0, Loc0, PFS) ||
4443 ParseToken(lltok::comma, "expected comma after insertvalue operand") ||
4444 ParseTypeAndValue(Val1, Loc1, PFS) ||
Chris Lattnerf4f03422009-12-30 05:27:33 +00004445 ParseIndexList(Indices, AteExtraComma))
Chris Lattnerac161bf2009-01-02 07:01:27 +00004446 return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004447
Chris Lattner392be582010-02-12 20:49:41 +00004448 if (!Val0->getType()->isAggregateType())
4449 return Error(Loc0, "insertvalue operand must be aggregate type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004450
Jay Foad57aa6362011-07-13 10:26:04 +00004451 if (!ExtractValueInst::getIndexedType(Val0->getType(), Indices))
Chris Lattnerac161bf2009-01-02 07:01:27 +00004452 return Error(Loc0, "invalid indices for insertvalue");
Jay Foad57aa6362011-07-13 10:26:04 +00004453 Inst = InsertValueInst::Create(Val0, Val1, Indices);
Chris Lattnerf4f03422009-12-30 05:27:33 +00004454 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004455}
Nick Lewycky49f89192009-04-04 07:22:01 +00004456
4457//===----------------------------------------------------------------------===//
4458// Embedded metadata.
4459//===----------------------------------------------------------------------===//
4460
4461/// ParseMDNodeVector
Nick Lewyckyb8f9b7a2009-05-10 20:57:05 +00004462/// ::= Element (',' Element)*
4463/// Element
4464/// ::= 'null' | TypeAndValue
Victor Hernandezdc6e65a2010-01-05 22:22:14 +00004465bool LLParser::ParseMDNodeVector(SmallVectorImpl<Value*> &Elts,
Victor Hernandezb8fd1522010-01-10 07:14:18 +00004466 PerFunctionState *PFS) {
Dan Gohman1e0213a2010-07-13 19:33:27 +00004467 // Check for an empty list.
4468 if (Lex.getKind() == lltok::rbrace)
4469 return false;
4470
Nick Lewycky49f89192009-04-04 07:22:01 +00004471 do {
Chris Lattnera01ddfc2009-12-30 04:42:57 +00004472 // Null is a special case since it is typeless.
4473 if (EatIfPresent(lltok::kw_null)) {
Craig Topper2617dcc2014-04-15 06:32:26 +00004474 Elts.push_back(nullptr);
Chris Lattnera01ddfc2009-12-30 04:42:57 +00004475 continue;
Nick Lewyckyb8f9b7a2009-05-10 20:57:05 +00004476 }
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004477
Craig Topper2617dcc2014-04-15 06:32:26 +00004478 Value *V = nullptr;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004479 if (ParseTypeAndValue(V, PFS)) return true;
Nick Lewyckyb8f9b7a2009-05-10 20:57:05 +00004480 Elts.push_back(V);
Nick Lewycky49f89192009-04-04 07:22:01 +00004481 } while (EatIfPresent(lltok::comma));
4482
4483 return false;
4484}