blob: 2d09b18a9019305fa9d08890522d8b287e377483 [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"
David Blaikieadbda4b2015-08-03 20:08:41 +000016#include "llvm/ADT/STLExtras.h"
Alex Lorenz8955f7d2015-06-23 17:10:10 +000017#include "llvm/AsmParser/SlotMapping.h"
Chandler Carruth91065212014-03-05 10:34:14 +000018#include "llvm/IR/AutoUpgrade.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000019#include "llvm/IR/CallingConv.h"
20#include "llvm/IR/Constants.h"
Duncan P. N. Exon Smith70ab3d22015-02-21 01:02:18 +000021#include "llvm/IR/DebugInfo.h"
Duncan P. N. Exon Smithd9901ff2015-02-02 18:53:21 +000022#include "llvm/IR/DebugInfoMetadata.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000023#include "llvm/IR/DerivedTypes.h"
24#include "llvm/IR/InlineAsm.h"
25#include "llvm/IR/Instructions.h"
Manman Ren209b17c2013-09-28 00:22:27 +000026#include "llvm/IR/LLVMContext.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000027#include "llvm/IR/Module.h"
28#include "llvm/IR/Operator.h"
29#include "llvm/IR/ValueSymbolTable.h"
Duncan P. N. Exon Smith97486072015-02-03 21:56:01 +000030#include "llvm/Support/Dwarf.h"
Torok Edwin56d06592009-07-11 20:10:48 +000031#include "llvm/Support/ErrorHandling.h"
Duncan P. N. Exon Smith17169902014-08-19 00:13:19 +000032#include "llvm/Support/SaveAndRestore.h"
Chris Lattnerac161bf2009-01-02 07:01:27 +000033#include "llvm/Support/raw_ostream.h"
34using namespace llvm;
35
Chris Lattner229907c2011-07-18 04:54:35 +000036static std::string getTypeString(Type *T) {
Alp Tokere69170a2014-06-26 22:52:05 +000037 std::string Result;
38 raw_string_ostream Tmp(Result);
39 Tmp << *T;
40 return Tmp.str();
Chris Lattner0f214eb2011-06-18 21:18:23 +000041}
42
Chris Lattner3822f632009-01-02 08:05:26 +000043/// Run: module ::= toplevelentity*
Chris Lattnerad6f3352009-01-04 20:44:11 +000044bool LLParser::Run() {
Chris Lattner3822f632009-01-02 08:05:26 +000045 // Prime the lexer.
46 Lex.Lex();
47
Chris Lattnerad6f3352009-01-04 20:44:11 +000048 return ParseTopLevelEntities() ||
49 ValidateEndOfModule();
Chris Lattnerac161bf2009-01-02 07:01:27 +000050}
51
Alex Lorenz1de2acd2015-08-21 21:32:39 +000052bool LLParser::parseStandaloneConstantValue(Constant *&C,
53 const SlotMapping *Slots) {
54 restoreParsingState(Slots);
Alex Lorenzd2255952015-07-17 22:07:03 +000055 Lex.Lex();
56
57 Type *Ty = nullptr;
58 if (ParseType(Ty) || parseConstantValue(Ty, C))
59 return true;
60 if (Lex.getKind() != lltok::Eof)
61 return Error(Lex.getLoc(), "expected end of string");
62 return false;
63}
64
Alex Lorenz1de2acd2015-08-21 21:32:39 +000065void LLParser::restoreParsingState(const SlotMapping *Slots) {
66 if (!Slots)
67 return;
68 NumberedVals = Slots->GlobalValues;
69 NumberedMetadata = Slots->MetadataNodes;
70 for (const auto &I : Slots->NamedTypes)
71 NamedTypes.insert(
72 std::make_pair(I.getKey(), std::make_pair(I.second, LocTy())));
73 for (const auto &I : Slots->Types)
74 NumberedTypes.insert(
75 std::make_pair(I.first, std::make_pair(I.second, LocTy())));
76}
77
Chris Lattnerac161bf2009-01-02 07:01:27 +000078/// ValidateEndOfModule - Do final validity and sanity checks at the end of the
79/// module.
80bool LLParser::ValidateEndOfModule() {
Manman Ren209b17c2013-09-28 00:22:27 +000081 for (unsigned I = 0, E = InstsWithTBAATag.size(); I < E; I++)
82 UpgradeInstWithTBAATag(InstsWithTBAATag[I]);
83
Bill Wendlingb32b0412013-02-08 06:32:06 +000084 // Handle any function attribute group forward references.
85 for (std::map<Value*, std::vector<unsigned> >::iterator
86 I = ForwardRefAttrGroups.begin(), E = ForwardRefAttrGroups.end();
87 I != E; ++I) {
88 Value *V = I->first;
89 std::vector<unsigned> &Vec = I->second;
90 AttrBuilder B;
91
92 for (std::vector<unsigned>::iterator VI = Vec.begin(), VE = Vec.end();
93 VI != VE; ++VI)
94 B.merge(NumberedAttrBuilders[*VI]);
95
96 if (Function *Fn = dyn_cast<Function>(V)) {
97 AttributeSet AS = Fn->getAttributes();
98 AttrBuilder FnAttrs(AS.getFnAttributes(), AttributeSet::FunctionIndex);
99 AS = AS.removeAttributes(Context, AttributeSet::FunctionIndex,
100 AS.getFnAttributes());
101
102 FnAttrs.merge(B);
103
104 // If the alignment was parsed as an attribute, move to the alignment
105 // field.
106 if (FnAttrs.hasAlignmentAttr()) {
107 Fn->setAlignment(FnAttrs.getAlignment());
108 FnAttrs.removeAttribute(Attribute::Alignment);
109 }
110
111 AS = AS.addAttributes(Context, AttributeSet::FunctionIndex,
112 AttributeSet::get(Context,
113 AttributeSet::FunctionIndex,
114 FnAttrs));
115 Fn->setAttributes(AS);
116 } else if (CallInst *CI = dyn_cast<CallInst>(V)) {
117 AttributeSet AS = CI->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 CI->setAttributes(AS);
127 } else if (InvokeInst *II = dyn_cast<InvokeInst>(V)) {
128 AttributeSet AS = II->getAttributes();
129 AttrBuilder FnAttrs(AS.getFnAttributes(), AttributeSet::FunctionIndex);
130 AS = AS.removeAttributes(Context, AttributeSet::FunctionIndex,
131 AS.getFnAttributes());
Bill Wendling59dce372013-02-12 10:13:06 +0000132 FnAttrs.merge(B);
Bill Wendlingb32b0412013-02-08 06:32:06 +0000133 AS = AS.addAttributes(Context, AttributeSet::FunctionIndex,
134 AttributeSet::get(Context,
135 AttributeSet::FunctionIndex,
136 FnAttrs));
137 II->setAttributes(AS);
138 } else {
139 llvm_unreachable("invalid object with forward attribute group reference");
140 }
141 }
Michael Ilseman26ee2b82012-11-15 22:34:00 +0000142
Duncan P. N. Exon Smith17169902014-08-19 00:13:19 +0000143 // If there are entries in ForwardRefBlockAddresses at this point, the
144 // function was never defined.
145 if (!ForwardRefBlockAddresses.empty())
146 return Error(ForwardRefBlockAddresses.begin()->first.Loc,
147 "expected function name in blockaddress");
Michael Ilseman26ee2b82012-11-15 22:34:00 +0000148
David Majnemer19b51052015-02-11 07:43:56 +0000149 for (const auto &NT : NumberedTypes)
150 if (NT.second.second.isValid())
151 return Error(NT.second.second,
152 "use of undefined type '%" + Twine(NT.first) + "'");
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000153
154 for (StringMap<std::pair<Type*, LocTy> >::iterator I =
155 NamedTypes.begin(), E = NamedTypes.end(); I != E; ++I)
156 if (I->second.second.isValid())
157 return Error(I->second.second,
158 "use of undefined type named '" + I->getKey() + "'");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000159
David Majnemerdad0a642014-06-27 18:19:56 +0000160 if (!ForwardRefComdats.empty())
161 return Error(ForwardRefComdats.begin()->second,
162 "use of undefined comdat '$" +
163 ForwardRefComdats.begin()->first + "'");
164
Chris Lattnerac161bf2009-01-02 07:01:27 +0000165 if (!ForwardRefVals.empty())
166 return Error(ForwardRefVals.begin()->second.second,
167 "use of undefined value '@" + ForwardRefVals.begin()->first +
168 "'");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000169
Chris Lattnerac161bf2009-01-02 07:01:27 +0000170 if (!ForwardRefValIDs.empty())
171 return Error(ForwardRefValIDs.begin()->second.second,
172 "use of undefined value '@" +
Benjamin Kramerc7583112010-09-27 17:42:11 +0000173 Twine(ForwardRefValIDs.begin()->first) + "'");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000174
Devang Pateld2541152009-07-08 19:23:54 +0000175 if (!ForwardRefMDNodes.empty())
176 return Error(ForwardRefMDNodes.begin()->second.second,
177 "use of undefined metadata '!" +
Benjamin Kramerc7583112010-09-27 17:42:11 +0000178 Twine(ForwardRefMDNodes.begin()->first) + "'");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000179
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000180 // Resolve metadata cycles.
David Majnemer19b51052015-02-11 07:43:56 +0000181 for (auto &N : NumberedMetadata) {
182 if (N.second && !N.second->isResolved())
183 N.second->resolveCycles();
184 }
Devang Pateld2541152009-07-08 19:23:54 +0000185
Chris Lattnerac161bf2009-01-02 07:01:27 +0000186 // Look for intrinsic functions and CallInst that need to be upgraded
187 for (Module::iterator FI = M->begin(), FE = M->end(); FI != FE; )
Duncan P. N. Exon Smithac331fb2015-10-20 01:12:49 +0000188 UpgradeCallsToIntrinsic(&*FI++); // must be post-increment, as we remove
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000189
Manman Ren8b4306c2013-12-02 21:29:56 +0000190 UpgradeDebugInfo(*M);
191
Alex Lorenz8955f7d2015-06-23 17:10:10 +0000192 if (!Slots)
193 return false;
194 // Initialize the slot mapping.
195 // Because by this point we've parsed and validated everything, we can "steal"
196 // the mapping from LLParser as it doesn't need it anymore.
197 Slots->GlobalValues = std::move(NumberedVals);
198 Slots->MetadataNodes = std::move(NumberedMetadata);
Alex Lorenz1de2acd2015-08-21 21:32:39 +0000199 for (const auto &I : NamedTypes)
200 Slots->NamedTypes.insert(std::make_pair(I.getKey(), I.second.first));
201 for (const auto &I : NumberedTypes)
202 Slots->Types.insert(std::make_pair(I.first, I.second.first));
Alex Lorenz8955f7d2015-06-23 17:10:10 +0000203
Chris Lattnerac161bf2009-01-02 07:01:27 +0000204 return false;
205}
206
207//===----------------------------------------------------------------------===//
208// Top-Level Entities
209//===----------------------------------------------------------------------===//
210
211bool LLParser::ParseTopLevelEntities() {
Chris Lattnerac161bf2009-01-02 07:01:27 +0000212 while (1) {
213 switch (Lex.getKind()) {
214 default: return TokError("expected top-level entity");
215 case lltok::Eof: return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000216 case lltok::kw_declare: if (ParseDeclare()) return true; break;
217 case lltok::kw_define: if (ParseDefine()) return true; break;
218 case lltok::kw_module: if (ParseModuleAsm()) return true; break;
219 case lltok::kw_target: if (ParseTargetDefinition()) return true; break;
Bill Wendling706d3d62012-11-28 08:41:48 +0000220 case lltok::kw_deplibs: if (ParseDepLibs()) return true; break;
Dan Gohman466876b2009-08-12 23:32:33 +0000221 case lltok::LocalVarID: if (ParseUnnamedType()) return true; break;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000222 case lltok::LocalVar: if (ParseNamedType()) return true; break;
Dan Gohman466876b2009-08-12 23:32:33 +0000223 case lltok::GlobalID: if (ParseUnnamedGlobal()) return true; break;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000224 case lltok::GlobalVar: if (ParseNamedGlobal()) return true; break;
David Majnemerdad0a642014-06-27 18:19:56 +0000225 case lltok::ComdatVar: if (parseComdat()) return true; break;
Chris Lattner1eed2d62009-12-30 04:56:59 +0000226 case lltok::exclaim: if (ParseStandaloneMetadata()) return true; break;
Bill Wendling63b88192013-02-06 06:52:58 +0000227 case lltok::MetadataVar:if (ParseNamedMetadata()) return true; break;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000228
229 // The Global variable production with no name can have many different
230 // optional leading prefixes, the production is:
Nico Rieck7157bb72014-01-14 15:22:47 +0000231 // GlobalVar ::= OptionalLinkage OptionalVisibility OptionalDLLStorageClass
Eric Christopher536f0a92015-05-28 23:07:39 +0000232 // OptionalThreadLocal OptionalAddrSpace OptionalUnnamedAddr
Rafael Espindola45e6c192011-01-08 16:42:36 +0000233 // ('constant'|'global') ...
Bill Wendling03bcd6e2010-07-01 21:55:59 +0000234 case lltok::kw_private: // OptionalLinkage
Bill Wendling03bcd6e2010-07-01 21:55:59 +0000235 case lltok::kw_internal: // OptionalLinkage
236 case lltok::kw_weak: // OptionalLinkage
237 case lltok::kw_weak_odr: // OptionalLinkage
238 case lltok::kw_linkonce: // OptionalLinkage
239 case lltok::kw_linkonce_odr: // OptionalLinkage
240 case lltok::kw_appending: // OptionalLinkage
Bill Wendling03bcd6e2010-07-01 21:55:59 +0000241 case lltok::kw_common: // OptionalLinkage
Bill Wendling03bcd6e2010-07-01 21:55:59 +0000242 case lltok::kw_extern_weak: // OptionalLinkage
Rafael Espindola52b74422014-06-03 20:00:20 +0000243 case lltok::kw_external: // OptionalLinkage
244 case lltok::kw_default: // OptionalVisibility
245 case lltok::kw_hidden: // OptionalVisibility
246 case lltok::kw_protected: // OptionalVisibility
Rafael Espindola63e92fb2014-06-03 20:07:32 +0000247 case lltok::kw_dllimport: // OptionalDLLStorageClass
248 case lltok::kw_dllexport: // OptionalDLLStorageClass
Rafael Espindola52b74422014-06-03 20:00:20 +0000249 case lltok::kw_thread_local: // OptionalThreadLocal
250 case lltok::kw_addrspace: // OptionalAddrSpace
251 case lltok::kw_constant: // GlobalType
252 case lltok::kw_global: { // GlobalType
Nico Rieck7157bb72014-01-14 15:22:47 +0000253 unsigned Linkage, Visibility, DLLStorageClass;
Rafael Espindola42a4c9f2014-06-06 01:20:28 +0000254 bool UnnamedAddr;
Rafael Espindola59f7eba2014-05-28 18:15:43 +0000255 GlobalVariable::ThreadLocalMode TLM;
Rafael Espindola52b74422014-06-03 20:00:20 +0000256 bool HasLinkage;
257 if (ParseOptionalLinkage(Linkage, HasLinkage) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +0000258 ParseOptionalVisibility(Visibility) ||
Nico Rieck7157bb72014-01-14 15:22:47 +0000259 ParseOptionalDLLStorageClass(DLLStorageClass) ||
Rafael Espindola59f7eba2014-05-28 18:15:43 +0000260 ParseOptionalThreadLocal(TLM) ||
Rafael Espindola42a4c9f2014-06-06 01:20:28 +0000261 parseOptionalUnnamedAddr(UnnamedAddr) ||
Rafael Espindola52b74422014-06-03 20:00:20 +0000262 ParseGlobal("", SMLoc(), Linkage, HasLinkage, Visibility,
Rafael Espindola42a4c9f2014-06-06 01:20:28 +0000263 DLLStorageClass, TLM, UnnamedAddr))
Chris Lattnerac161bf2009-01-02 07:01:27 +0000264 return true;
265 break;
266 }
Bill Wendlinga7c38772013-02-09 15:48:49 +0000267
268 case lltok::kw_attributes: if (ParseUnnamedAttrGrp()) return true; break;
Duncan P. N. Exon Smith0a448fb2014-08-19 21:30:15 +0000269 case lltok::kw_uselistorder: if (ParseUseListOrder()) return true; break;
270 case lltok::kw_uselistorder_bb:
271 if (ParseUseListOrderBB()) return true; break;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000272 }
273 }
274}
275
276
277/// toplevelentity
278/// ::= 'module' 'asm' STRINGCONSTANT
279bool LLParser::ParseModuleAsm() {
280 assert(Lex.getKind() == lltok::kw_module);
281 Lex.Lex();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000282
283 std::string AsmStr;
Chris Lattner3822f632009-01-02 08:05:26 +0000284 if (ParseToken(lltok::kw_asm, "expected 'module asm'") ||
285 ParseStringConstant(AsmStr)) return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000286
Rafael Espindola1e49a6d2011-03-02 04:14:42 +0000287 M->appendModuleInlineAsm(AsmStr);
Chris Lattnerac161bf2009-01-02 07:01:27 +0000288 return false;
289}
290
291/// toplevelentity
292/// ::= 'target' 'triple' '=' STRINGCONSTANT
293/// ::= 'target' 'datalayout' '=' STRINGCONSTANT
294bool LLParser::ParseTargetDefinition() {
295 assert(Lex.getKind() == lltok::kw_target);
Chris Lattner3822f632009-01-02 08:05:26 +0000296 std::string Str;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000297 switch (Lex.Lex()) {
298 default: return TokError("unknown target property");
299 case lltok::kw_triple:
300 Lex.Lex();
Chris Lattner3822f632009-01-02 08:05:26 +0000301 if (ParseToken(lltok::equal, "expected '=' after target triple") ||
302 ParseStringConstant(Str))
Chris Lattnerac161bf2009-01-02 07:01:27 +0000303 return true;
Chris Lattner3822f632009-01-02 08:05:26 +0000304 M->setTargetTriple(Str);
Chris Lattnerac161bf2009-01-02 07:01:27 +0000305 return false;
306 case lltok::kw_datalayout:
307 Lex.Lex();
Chris Lattner3822f632009-01-02 08:05:26 +0000308 if (ParseToken(lltok::equal, "expected '=' after target datalayout") ||
309 ParseStringConstant(Str))
Chris Lattnerac161bf2009-01-02 07:01:27 +0000310 return true;
Chris Lattner3822f632009-01-02 08:05:26 +0000311 M->setDataLayout(Str);
Chris Lattnerac161bf2009-01-02 07:01:27 +0000312 return false;
313 }
314}
315
Bill Wendling706d3d62012-11-28 08:41:48 +0000316/// toplevelentity
317/// ::= 'deplibs' '=' '[' ']'
318/// ::= 'deplibs' '=' '[' STRINGCONSTANT (',' STRINGCONSTANT)* ']'
319/// FIXME: Remove in 4.0. Currently parse, but ignore.
320bool LLParser::ParseDepLibs() {
321 assert(Lex.getKind() == lltok::kw_deplibs);
322 Lex.Lex();
323 if (ParseToken(lltok::equal, "expected '=' after deplibs") ||
324 ParseToken(lltok::lsquare, "expected '=' after deplibs"))
325 return true;
326
327 if (EatIfPresent(lltok::rsquare))
328 return false;
329
330 do {
331 std::string Str;
332 if (ParseStringConstant(Str)) return true;
333 } while (EatIfPresent(lltok::comma));
334
335 return ParseToken(lltok::rsquare, "expected ']' at end of list");
336}
337
Dan Gohman466876b2009-08-12 23:32:33 +0000338/// ParseUnnamedType:
Dan Gohman466876b2009-08-12 23:32:33 +0000339/// ::= LocalVarID '=' 'type' type
Chris Lattnerac161bf2009-01-02 07:01:27 +0000340bool LLParser::ParseUnnamedType() {
Chris Lattner07037362011-06-18 23:51:31 +0000341 LocTy TypeLoc = Lex.getLoc();
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000342 unsigned TypeID = Lex.getUIntVal();
Chris Lattner8936d2b2011-06-19 00:03:46 +0000343 Lex.Lex(); // eat LocalVarID;
344
345 if (ParseToken(lltok::equal, "expected '=' after name") ||
346 ParseToken(lltok::kw_type, "expected 'type' after '='"))
347 return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000348
Craig Topper2617dcc2014-04-15 06:32:26 +0000349 Type *Result = nullptr;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000350 if (ParseStructDefinition(TypeLoc, "",
351 NumberedTypes[TypeID], Result)) return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +0000352
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000353 if (!isa<StructType>(Result)) {
354 std::pair<Type*, LocTy> &Entry = NumberedTypes[TypeID];
355 if (Entry.first)
356 return Error(TypeLoc, "non-struct types may not be recursive");
357 Entry.first = Result;
358 Entry.second = SMLoc();
Chris Lattnerac161bf2009-01-02 07:01:27 +0000359 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000360
Chris Lattnerac161bf2009-01-02 07:01:27 +0000361 return false;
362}
363
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000364
Chris Lattnerac161bf2009-01-02 07:01:27 +0000365/// toplevelentity
366/// ::= LocalVar '=' 'type' type
367bool LLParser::ParseNamedType() {
368 std::string Name = Lex.getStrVal();
369 LocTy NameLoc = Lex.getLoc();
Chris Lattner3822f632009-01-02 08:05:26 +0000370 Lex.Lex(); // eat LocalVar.
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000371
Chris Lattner3822f632009-01-02 08:05:26 +0000372 if (ParseToken(lltok::equal, "expected '=' after name") ||
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000373 ParseToken(lltok::kw_type, "expected 'type' after name"))
Chris Lattner3822f632009-01-02 08:05:26 +0000374 return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +0000375
Craig Topper2617dcc2014-04-15 06:32:26 +0000376 Type *Result = nullptr;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000377 if (ParseStructDefinition(NameLoc, Name,
378 NamedTypes[Name], Result)) return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +0000379
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000380 if (!isa<StructType>(Result)) {
381 std::pair<Type*, LocTy> &Entry = NamedTypes[Name];
382 if (Entry.first)
383 return Error(NameLoc, "non-struct types may not be recursive");
384 Entry.first = Result;
385 Entry.second = SMLoc();
Chris Lattnerac161bf2009-01-02 07:01:27 +0000386 }
Michael Ilseman26ee2b82012-11-15 22:34:00 +0000387
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000388 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000389}
390
391
392/// toplevelentity
393/// ::= 'declare' FunctionHeader
394bool LLParser::ParseDeclare() {
395 assert(Lex.getKind() == lltok::kw_declare);
396 Lex.Lex();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000397
Chris Lattnerac161bf2009-01-02 07:01:27 +0000398 Function *F;
399 return ParseFunctionHeader(F, false);
400}
401
402/// toplevelentity
Duncan P. N. Exon Smith3d4cd752015-04-24 22:04:41 +0000403/// ::= 'define' FunctionHeader (!dbg !56)* '{' ...
Chris Lattnerac161bf2009-01-02 07:01:27 +0000404bool LLParser::ParseDefine() {
405 assert(Lex.getKind() == lltok::kw_define);
406 Lex.Lex();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000407
Chris Lattnerac161bf2009-01-02 07:01:27 +0000408 Function *F;
Chris Lattner3822f632009-01-02 08:05:26 +0000409 return ParseFunctionHeader(F, true) ||
Duncan P. N. Exon Smith3d4cd752015-04-24 22:04:41 +0000410 ParseOptionalFunctionMetadata(*F) ||
Chris Lattner3822f632009-01-02 08:05:26 +0000411 ParseFunctionBody(*F);
Chris Lattnerac161bf2009-01-02 07:01:27 +0000412}
413
Chris Lattner3822f632009-01-02 08:05:26 +0000414/// ParseGlobalType
415/// ::= 'constant'
416/// ::= 'global'
Chris Lattnerac161bf2009-01-02 07:01:27 +0000417bool LLParser::ParseGlobalType(bool &IsConstant) {
418 if (Lex.getKind() == lltok::kw_constant)
419 IsConstant = true;
420 else if (Lex.getKind() == lltok::kw_global)
421 IsConstant = false;
Duncan Sandsd1de45a2009-02-10 16:24:55 +0000422 else {
423 IsConstant = false;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000424 return TokError("expected 'global' or 'constant'");
Duncan Sandsd1de45a2009-02-10 16:24:55 +0000425 }
Chris Lattnerac161bf2009-01-02 07:01:27 +0000426 Lex.Lex();
427 return false;
428}
429
Dan Gohman466876b2009-08-12 23:32:33 +0000430/// ParseUnnamedGlobal:
431/// OptionalVisibility ALIAS ...
Nico Rieck7157bb72014-01-14 15:22:47 +0000432/// OptionalLinkage OptionalVisibility OptionalDLLStorageClass
433/// ... -> global variable
Dan Gohman466876b2009-08-12 23:32:33 +0000434/// GlobalID '=' OptionalVisibility ALIAS ...
Nico Rieck7157bb72014-01-14 15:22:47 +0000435/// GlobalID '=' OptionalLinkage OptionalVisibility OptionalDLLStorageClass
436/// ... -> global variable
Dan Gohman466876b2009-08-12 23:32:33 +0000437bool LLParser::ParseUnnamedGlobal() {
438 unsigned VarID = NumberedVals.size();
439 std::string Name;
440 LocTy NameLoc = Lex.getLoc();
441
442 // Handle the GlobalID form.
443 if (Lex.getKind() == lltok::GlobalID) {
444 if (Lex.getUIntVal() != VarID)
445 return Error(Lex.getLoc(), "variable expected to be numbered '%" +
Benjamin Kramerc7583112010-09-27 17:42:11 +0000446 Twine(VarID) + "'");
Dan Gohman466876b2009-08-12 23:32:33 +0000447 Lex.Lex(); // eat GlobalID;
448
449 if (ParseToken(lltok::equal, "expected '=' after name"))
450 return true;
451 }
452
453 bool HasLinkage;
Nico Rieck7157bb72014-01-14 15:22:47 +0000454 unsigned Linkage, Visibility, DLLStorageClass;
Rafael Espindola59f7eba2014-05-28 18:15:43 +0000455 GlobalVariable::ThreadLocalMode TLM;
Rafael Espindola42a4c9f2014-06-06 01:20:28 +0000456 bool UnnamedAddr;
Dan Gohman466876b2009-08-12 23:32:33 +0000457 if (ParseOptionalLinkage(Linkage, HasLinkage) ||
Nico Rieck7157bb72014-01-14 15:22:47 +0000458 ParseOptionalVisibility(Visibility) ||
Rafael Espindola59f7eba2014-05-28 18:15:43 +0000459 ParseOptionalDLLStorageClass(DLLStorageClass) ||
Rafael Espindola42a4c9f2014-06-06 01:20:28 +0000460 ParseOptionalThreadLocal(TLM) ||
461 parseOptionalUnnamedAddr(UnnamedAddr))
Dan Gohman466876b2009-08-12 23:32:33 +0000462 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000463
Rafael Espindola464fe022014-07-30 22:51:54 +0000464 if (Lex.getKind() != lltok::kw_alias)
Nico Rieck7157bb72014-01-14 15:22:47 +0000465 return ParseGlobal(Name, NameLoc, Linkage, HasLinkage, Visibility,
Rafael Espindola42a4c9f2014-06-06 01:20:28 +0000466 DLLStorageClass, TLM, UnnamedAddr);
Rafael Espindola464fe022014-07-30 22:51:54 +0000467 return ParseAlias(Name, NameLoc, Linkage, Visibility, DLLStorageClass, TLM,
Rafael Espindola42a4c9f2014-06-06 01:20:28 +0000468 UnnamedAddr);
Dan Gohman466876b2009-08-12 23:32:33 +0000469}
470
Chris Lattnerac161bf2009-01-02 07:01:27 +0000471/// ParseNamedGlobal:
472/// GlobalVar '=' OptionalVisibility ALIAS ...
Nico Rieck7157bb72014-01-14 15:22:47 +0000473/// GlobalVar '=' OptionalLinkage OptionalVisibility OptionalDLLStorageClass
474/// ... -> global variable
Chris Lattnerac161bf2009-01-02 07:01:27 +0000475bool LLParser::ParseNamedGlobal() {
476 assert(Lex.getKind() == lltok::GlobalVar);
477 LocTy NameLoc = Lex.getLoc();
478 std::string Name = Lex.getStrVal();
479 Lex.Lex();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000480
Chris Lattnerac161bf2009-01-02 07:01:27 +0000481 bool HasLinkage;
Nico Rieck7157bb72014-01-14 15:22:47 +0000482 unsigned Linkage, Visibility, DLLStorageClass;
Rafael Espindola59f7eba2014-05-28 18:15:43 +0000483 GlobalVariable::ThreadLocalMode TLM;
Rafael Espindola42a4c9f2014-06-06 01:20:28 +0000484 bool UnnamedAddr;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000485 if (ParseToken(lltok::equal, "expected '=' in global variable") ||
486 ParseOptionalLinkage(Linkage, HasLinkage) ||
Nico Rieck7157bb72014-01-14 15:22:47 +0000487 ParseOptionalVisibility(Visibility) ||
Rafael Espindola59f7eba2014-05-28 18:15:43 +0000488 ParseOptionalDLLStorageClass(DLLStorageClass) ||
Rafael Espindola42a4c9f2014-06-06 01:20:28 +0000489 ParseOptionalThreadLocal(TLM) ||
490 parseOptionalUnnamedAddr(UnnamedAddr))
Chris Lattnerac161bf2009-01-02 07:01:27 +0000491 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000492
Rafael Espindola464fe022014-07-30 22:51:54 +0000493 if (Lex.getKind() != lltok::kw_alias)
Nico Rieck7157bb72014-01-14 15:22:47 +0000494 return ParseGlobal(Name, NameLoc, Linkage, HasLinkage, Visibility,
Rafael Espindola42a4c9f2014-06-06 01:20:28 +0000495 DLLStorageClass, TLM, UnnamedAddr);
Rafael Espindola464fe022014-07-30 22:51:54 +0000496
497 return ParseAlias(Name, NameLoc, Linkage, Visibility, DLLStorageClass, TLM,
Rafael Espindola42a4c9f2014-06-06 01:20:28 +0000498 UnnamedAddr);
Chris Lattnerac161bf2009-01-02 07:01:27 +0000499}
500
David Majnemerdad0a642014-06-27 18:19:56 +0000501bool LLParser::parseComdat() {
502 assert(Lex.getKind() == lltok::ComdatVar);
503 std::string Name = Lex.getStrVal();
504 LocTy NameLoc = Lex.getLoc();
505 Lex.Lex();
506
507 if (ParseToken(lltok::equal, "expected '=' here"))
508 return true;
509
510 if (ParseToken(lltok::kw_comdat, "expected comdat keyword"))
511 return TokError("expected comdat type");
512
513 Comdat::SelectionKind SK;
514 switch (Lex.getKind()) {
515 default:
516 return TokError("unknown selection kind");
517 case lltok::kw_any:
518 SK = Comdat::Any;
519 break;
520 case lltok::kw_exactmatch:
521 SK = Comdat::ExactMatch;
522 break;
523 case lltok::kw_largest:
524 SK = Comdat::Largest;
525 break;
526 case lltok::kw_noduplicates:
527 SK = Comdat::NoDuplicates;
528 break;
529 case lltok::kw_samesize:
530 SK = Comdat::SameSize;
531 break;
532 }
533 Lex.Lex();
534
535 // See if the comdat was forward referenced, if so, use the comdat.
536 Module::ComdatSymTabType &ComdatSymTab = M->getComdatSymbolTable();
537 Module::ComdatSymTabType::iterator I = ComdatSymTab.find(Name);
538 if (I != ComdatSymTab.end() && !ForwardRefComdats.erase(Name))
539 return Error(NameLoc, "redefinition of comdat '$" + Name + "'");
540
541 Comdat *C;
542 if (I != ComdatSymTab.end())
543 C = &I->second;
544 else
545 C = M->getOrInsertComdat(Name);
546 C->setSelectionKind(SK);
547
548 return false;
549}
550
Devang Patel8ff0f8d2009-07-20 19:00:08 +0000551// MDString:
552// ::= '!' STRINGCONSTANT
Chris Lattner1797fc72009-12-29 21:53:55 +0000553bool LLParser::ParseMDString(MDString *&Result) {
Devang Patel8ff0f8d2009-07-20 19:00:08 +0000554 std::string Str;
555 if (ParseStringConstant(Str)) return true;
Eli Bendersky5d5e18d2014-06-25 15:41:00 +0000556 llvm::UpgradeMDStringConstant(Str);
Chris Lattner1797fc72009-12-29 21:53:55 +0000557 Result = MDString::get(Context, Str);
Devang Patel8ff0f8d2009-07-20 19:00:08 +0000558 return false;
559}
560
561// MDNode:
562// ::= '!' MDNodeNumber
Chris Lattner6dac02a2009-12-30 04:15:23 +0000563bool LLParser::ParseMDNodeID(MDNode *&Result) {
Devang Patel8ff0f8d2009-07-20 19:00:08 +0000564 // !{ ..., !42, ... }
565 unsigned MID = 0;
Duncan P. N. Exon Smitha8d9a022015-01-12 21:14:38 +0000566 if (ParseUInt32(MID))
567 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000568
Chris Lattner8eff0152010-04-01 05:14:45 +0000569 // If not a forward reference, just return it now.
David Majnemer19b51052015-02-11 07:43:56 +0000570 if (NumberedMetadata.count(MID)) {
Duncan P. N. Exon Smitha8d9a022015-01-12 21:14:38 +0000571 Result = NumberedMetadata[MID];
572 return false;
573 }
Devang Patel8ff0f8d2009-07-20 19:00:08 +0000574
Chris Lattner8eff0152010-04-01 05:14:45 +0000575 // Otherwise, create MDNode forward reference.
Duncan P. N. Exon Smith7d823132015-01-19 21:30:18 +0000576 auto &FwdRef = ForwardRefMDNodes[MID];
577 FwdRef = std::make_pair(MDTuple::getTemporary(Context, None), Lex.getLoc());
Michael Ilseman26ee2b82012-11-15 22:34:00 +0000578
Duncan P. N. Exon Smith7d823132015-01-19 21:30:18 +0000579 Result = FwdRef.first.get();
580 NumberedMetadata[MID].reset(Result);
Devang Patel8ff0f8d2009-07-20 19:00:08 +0000581 return false;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000582}
Devang Patel8ff0f8d2009-07-20 19:00:08 +0000583
Chris Lattnerf2fe7ff2009-12-29 22:35:39 +0000584/// ParseNamedMetadata:
Devang Patelbe626972009-07-29 00:34:02 +0000585/// !foo = !{ !1, !2 }
586bool LLParser::ParseNamedMetadata() {
Chris Lattnereafe4de2009-12-30 05:02:06 +0000587 assert(Lex.getKind() == lltok::MetadataVar);
Devang Patelbe626972009-07-29 00:34:02 +0000588 std::string Name = Lex.getStrVal();
Chris Lattnereafe4de2009-12-30 05:02:06 +0000589 Lex.Lex();
Devang Patelbe626972009-07-29 00:34:02 +0000590
Chris Lattnerf2fe7ff2009-12-29 22:35:39 +0000591 if (ParseToken(lltok::equal, "expected '=' here") ||
Chris Lattner1eed2d62009-12-30 04:56:59 +0000592 ParseToken(lltok::exclaim, "Expected '!' here") ||
Chris Lattnerf2fe7ff2009-12-29 22:35:39 +0000593 ParseToken(lltok::lbrace, "Expected '{' here"))
Devang Patelbe626972009-07-29 00:34:02 +0000594 return true;
595
Dan Gohman2637cc12010-07-21 23:38:33 +0000596 NamedMDNode *NMD = M->getOrInsertNamedMetadata(Name);
Dan Gohmanafd69cf2010-07-13 19:42:44 +0000597 if (Lex.getKind() != lltok::rbrace)
598 do {
Dan Gohmanafd69cf2010-07-13 19:42:44 +0000599 if (ParseToken(lltok::exclaim, "Expected '!' here"))
600 return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +0000601
Craig Topper2617dcc2014-04-15 06:32:26 +0000602 MDNode *N = nullptr;
Dan Gohmanafd69cf2010-07-13 19:42:44 +0000603 if (ParseMDNodeID(N)) return true;
Dan Gohman2637cc12010-07-21 23:38:33 +0000604 NMD->addOperand(N);
Dan Gohmanafd69cf2010-07-13 19:42:44 +0000605 } while (EatIfPresent(lltok::comma));
Devang Patelbe626972009-07-29 00:34:02 +0000606
Rafael Espindolac7818fb2015-05-26 20:37:36 +0000607 return ParseToken(lltok::rbrace, "expected end of metadata node");
Devang Patelbe626972009-07-29 00:34:02 +0000608}
609
Devang Patel39e64d42009-07-01 19:21:12 +0000610/// ParseStandaloneMetadata:
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000611/// !42 = !{...}
Devang Patel39e64d42009-07-01 19:21:12 +0000612bool LLParser::ParseStandaloneMetadata() {
Chris Lattner1eed2d62009-12-30 04:56:59 +0000613 assert(Lex.getKind() == lltok::exclaim);
Devang Patel39e64d42009-07-01 19:21:12 +0000614 Lex.Lex();
615 unsigned MetadataID = 0;
Devang Patel39e64d42009-07-01 19:21:12 +0000616
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000617 MDNode *Init;
Chris Lattner278bc952009-12-29 22:40:21 +0000618 if (ParseUInt32(MetadataID) ||
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +0000619 ParseToken(lltok::equal, "expected '=' here"))
620 return true;
621
622 // Detect common error, from old metadata syntax.
623 if (Lex.getKind() == lltok::Type)
624 return TokError("unexpected type in metadata definition");
625
Duncan P. N. Exon Smith090a19b2015-01-08 22:38:29 +0000626 bool IsDistinct = EatIfPresent(lltok::kw_distinct);
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +0000627 if (Lex.getKind() == lltok::MetadataVar) {
628 if (ParseSpecializedMDNode(Init, IsDistinct))
629 return true;
630 } else if (ParseToken(lltok::exclaim, "Expected '!' here") ||
631 ParseMDTuple(Init, IsDistinct))
Devang Patele059ba6e2009-07-23 01:07:34 +0000632 return true;
633
Chris Lattnerfc58af22009-12-30 04:51:58 +0000634 // See if this was forward referenced, if so, handle it.
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000635 auto FI = ForwardRefMDNodes.find(MetadataID);
Devang Pateld2541152009-07-08 19:23:54 +0000636 if (FI != ForwardRefMDNodes.end()) {
Duncan P. N. Exon Smith7d823132015-01-19 21:30:18 +0000637 FI->second.first->replaceAllUsesWith(Init);
Devang Pateld2541152009-07-08 19:23:54 +0000638 ForwardRefMDNodes.erase(FI);
Michael Ilseman26ee2b82012-11-15 22:34:00 +0000639
Chris Lattnerfc58af22009-12-30 04:51:58 +0000640 assert(NumberedMetadata[MetadataID] == Init && "Tracking VH didn't work");
641 } else {
David Majnemer19b51052015-02-11 07:43:56 +0000642 if (NumberedMetadata.count(MetadataID))
Chris Lattnerfc58af22009-12-30 04:51:58 +0000643 return TokError("Metadata id is already used");
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000644 NumberedMetadata[MetadataID].reset(Init);
Devang Pateld2541152009-07-08 19:23:54 +0000645 }
646
Devang Patel39e64d42009-07-01 19:21:12 +0000647 return false;
648}
649
Duncan P. N. Exon Smithb80de102014-05-07 22:57:20 +0000650static bool isValidVisibilityForLinkage(unsigned V, unsigned L) {
651 return !GlobalValue::isLocalLinkage((GlobalValue::LinkageTypes)L) ||
652 (GlobalValue::VisibilityTypes)V == GlobalValue::DefaultVisibility;
653}
654
Chris Lattnerac161bf2009-01-02 07:01:27 +0000655/// ParseAlias:
Rafael Espindola464fe022014-07-30 22:51:54 +0000656/// ::= GlobalVar '=' OptionalLinkage OptionalVisibility
657/// OptionalDLLStorageClass OptionalThreadLocal
Eric Christopher536f0a92015-05-28 23:07:39 +0000658/// OptionalUnnamedAddr 'alias' Aliasee
Rafael Espindola6b238632014-05-16 19:35:39 +0000659///
Chris Lattnerac161bf2009-01-02 07:01:27 +0000660/// Aliasee
Chris Lattner4c73d7a2009-04-25 21:26:00 +0000661/// ::= TypeAndValue
Chris Lattnerac161bf2009-01-02 07:01:27 +0000662///
Eric Christopher536f0a92015-05-28 23:07:39 +0000663/// Everything through OptionalUnnamedAddr has already been parsed.
Chris Lattnerac161bf2009-01-02 07:01:27 +0000664///
Rafael Espindola464fe022014-07-30 22:51:54 +0000665bool LLParser::ParseAlias(const std::string &Name, LocTy NameLoc, unsigned L,
Rafael Espindola59f7eba2014-05-28 18:15:43 +0000666 unsigned Visibility, unsigned DLLStorageClass,
Rafael Espindola42a4c9f2014-06-06 01:20:28 +0000667 GlobalVariable::ThreadLocalMode TLM,
668 bool UnnamedAddr) {
Chris Lattnerac161bf2009-01-02 07:01:27 +0000669 assert(Lex.getKind() == lltok::kw_alias);
670 Lex.Lex();
Chris Lattnerac161bf2009-01-02 07:01:27 +0000671
Rafael Espindola78527052013-10-06 15:10:43 +0000672 GlobalValue::LinkageTypes Linkage = (GlobalValue::LinkageTypes) L;
673
Rafael Espindolacaa43562013-10-09 16:07:32 +0000674 if(!GlobalAlias::isValidLinkage(Linkage))
Rafael Espindola464fe022014-07-30 22:51:54 +0000675 return Error(NameLoc, "invalid linkage type for alias");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000676
Duncan P. N. Exon Smithb80de102014-05-07 22:57:20 +0000677 if (!isValidVisibilityForLinkage(Visibility, L))
Rafael Espindola464fe022014-07-30 22:51:54 +0000678 return Error(NameLoc,
Duncan P. N. Exon Smithb80de102014-05-07 22:57:20 +0000679 "symbol with local linkage must have default visibility");
680
David Blaikie2f408302015-09-11 03:22:04 +0000681 Type *Ty;
682 LocTy ExplicitTypeLoc = Lex.getLoc();
683 if (ParseType(Ty) ||
684 ParseToken(lltok::comma, "expected comma after alias's type"))
685 return true;
686
Rafael Espindola64c1e182014-06-03 02:41:57 +0000687 Constant *Aliasee;
688 LocTy AliaseeLoc = Lex.getLoc();
689 if (Lex.getKind() != lltok::kw_bitcast &&
690 Lex.getKind() != lltok::kw_getelementptr &&
691 Lex.getKind() != lltok::kw_addrspacecast &&
692 Lex.getKind() != lltok::kw_inttoptr) {
693 if (ParseGlobalTypeAndValue(Aliasee))
Rafael Espindola6b238632014-05-16 19:35:39 +0000694 return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000695 } else {
Rafael Espindola64c1e182014-06-03 02:41:57 +0000696 // The bitcast dest type is not present, it is implied by the dest type.
697 ValID ID;
698 if (ParseValID(ID))
699 return true;
700 if (ID.Kind != ValID::t_Constant)
701 return Error(AliaseeLoc, "invalid aliasee");
702 Aliasee = ID.ConstantVal;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000703 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000704
Rafael Espindola64c1e182014-06-03 02:41:57 +0000705 Type *AliaseeType = Aliasee->getType();
706 auto *PTy = dyn_cast<PointerType>(AliaseeType);
707 if (!PTy)
708 return Error(AliaseeLoc, "An alias must have pointer type");
David Blaikie16a2f3e2015-09-14 18:01:59 +0000709 unsigned AddrSpace = PTy->getAddressSpace();
Chris Lattnerac161bf2009-01-02 07:01:27 +0000710
David Blaikie2f408302015-09-11 03:22:04 +0000711 if (Ty != PTy->getElementType())
712 return Error(
713 ExplicitTypeLoc,
714 "explicit pointee type doesn't match operand's pointee type");
715
Chris Lattnerac161bf2009-01-02 07:01:27 +0000716 // Okay, create the alias but do not insert it into the module yet.
Rafael Espindola4fe00942014-05-16 13:34:04 +0000717 std::unique_ptr<GlobalAlias> GA(
David Blaikie16a2f3e2015-09-14 18:01:59 +0000718 GlobalAlias::create(Ty, AddrSpace, (GlobalValue::LinkageTypes)Linkage,
719 Name, Aliasee, /*Parent*/ nullptr));
Rafael Espindola59f7eba2014-05-28 18:15:43 +0000720 GA->setThreadLocalMode(TLM);
Chris Lattnerac161bf2009-01-02 07:01:27 +0000721 GA->setVisibility((GlobalValue::VisibilityTypes)Visibility);
Nico Rieck7157bb72014-01-14 15:22:47 +0000722 GA->setDLLStorageClass((GlobalValue::DLLStorageClassTypes)DLLStorageClass);
Rafael Espindola42a4c9f2014-06-06 01:20:28 +0000723 GA->setUnnamedAddr(UnnamedAddr);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000724
Rafael Espindola54fc2982015-06-17 17:53:31 +0000725 if (Name.empty())
726 NumberedVals.push_back(GA.get());
727
Chris Lattnerac161bf2009-01-02 07:01:27 +0000728 // See if this value already exists in the symbol table. If so, it is either
729 // a redefinition or a definition of a forward reference.
Chris Lattnere38317f2009-10-25 23:22:50 +0000730 if (GlobalValue *Val = M->getNamedValue(Name)) {
Chris Lattnerac161bf2009-01-02 07:01:27 +0000731 // See if this was a redefinition. If so, there is no entry in
732 // ForwardRefVals.
David Blaikie9ebdc692015-09-21 21:07:50 +0000733 auto I = ForwardRefVals.find(Name);
Chris Lattnerac161bf2009-01-02 07:01:27 +0000734 if (I == ForwardRefVals.end())
735 return Error(NameLoc, "redefinition of global named '@" + Name + "'");
736
737 // Otherwise, this was a definition of forward ref. Verify that types
738 // agree.
739 if (Val->getType() != GA->getType())
740 return Error(NameLoc,
741 "forward reference and definition of alias have different types");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000742
Chris Lattnerac161bf2009-01-02 07:01:27 +0000743 // If they agree, just RAUW the old value with the alias and remove the
744 // forward ref info.
Rafael Espindolaaa273822014-05-09 21:49:17 +0000745 Val->replaceAllUsesWith(GA.get());
Chris Lattnerac161bf2009-01-02 07:01:27 +0000746 Val->eraseFromParent();
747 ForwardRefVals.erase(I);
748 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000749
Chris Lattnerac161bf2009-01-02 07:01:27 +0000750 // Insert into the module, we know its name won't collide now.
Rafael Espindolaaa273822014-05-09 21:49:17 +0000751 M->getAliasList().push_back(GA.get());
Benjamin Kramer1dc34b42010-10-16 11:28:23 +0000752 assert(GA->getName() == Name && "Should not be a name conflict!");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000753
Rafael Espindolaaa273822014-05-09 21:49:17 +0000754 // The module owns this now
755 GA.release();
756
Chris Lattnerac161bf2009-01-02 07:01:27 +0000757 return false;
758}
759
760/// ParseGlobal
Nico Rieck7157bb72014-01-14 15:22:47 +0000761/// ::= GlobalVar '=' OptionalLinkage OptionalVisibility OptionalDLLStorageClass
Eric Christopher536f0a92015-05-28 23:07:39 +0000762/// OptionalThreadLocal OptionalUnnamedAddr OptionalAddrSpace
Michael Gottesman27e7ef32013-02-05 05:57:38 +0000763/// OptionalExternallyInitialized GlobalType Type Const
Nico Rieck7157bb72014-01-14 15:22:47 +0000764/// ::= OptionalLinkage OptionalVisibility OptionalDLLStorageClass
Eric Christopher536f0a92015-05-28 23:07:39 +0000765/// OptionalThreadLocal OptionalUnnamedAddr OptionalAddrSpace
Michael Gottesman27e7ef32013-02-05 05:57:38 +0000766/// OptionalExternallyInitialized GlobalType Type Const
Chris Lattnerac161bf2009-01-02 07:01:27 +0000767///
Eric Christopher536f0a92015-05-28 23:07:39 +0000768/// Everything up to and including OptionalUnnamedAddr has been parsed
David Majnemerc4ab61c2014-03-09 06:41:58 +0000769/// already.
Chris Lattnerac161bf2009-01-02 07:01:27 +0000770///
771bool LLParser::ParseGlobal(const std::string &Name, LocTy NameLoc,
772 unsigned Linkage, bool HasLinkage,
Rafael Espindola59f7eba2014-05-28 18:15:43 +0000773 unsigned Visibility, unsigned DLLStorageClass,
Rafael Espindola42a4c9f2014-06-06 01:20:28 +0000774 GlobalVariable::ThreadLocalMode TLM,
775 bool UnnamedAddr) {
Duncan P. N. Exon Smithb80de102014-05-07 22:57:20 +0000776 if (!isValidVisibilityForLinkage(Visibility, Linkage))
777 return Error(NameLoc,
778 "symbol with local linkage must have default visibility");
779
Chris Lattnerac161bf2009-01-02 07:01:27 +0000780 unsigned AddrSpace;
Rafael Espindola42a4c9f2014-06-06 01:20:28 +0000781 bool IsConstant, IsExternallyInitialized;
Michael Gottesman27e7ef32013-02-05 05:57:38 +0000782 LocTy IsExternallyInitializedLoc;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000783 LocTy TyLoc;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000784
Craig Topper2617dcc2014-04-15 06:32:26 +0000785 Type *Ty = nullptr;
Rafael Espindola59f7eba2014-05-28 18:15:43 +0000786 if (ParseOptionalAddrSpace(AddrSpace) ||
Michael Gottesman27e7ef32013-02-05 05:57:38 +0000787 ParseOptionalToken(lltok::kw_externally_initialized,
788 IsExternallyInitialized,
789 &IsExternallyInitializedLoc) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +0000790 ParseGlobalType(IsConstant) ||
791 ParseType(Ty, TyLoc))
792 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000793
Chris Lattnerac161bf2009-01-02 07:01:27 +0000794 // If the linkage is specified and is external, then no initializer is
795 // present.
Craig Topper2617dcc2014-04-15 06:32:26 +0000796 Constant *Init = nullptr;
Nico Rieck7157bb72014-01-14 15:22:47 +0000797 if (!HasLinkage || (Linkage != GlobalValue::ExternalWeakLinkage &&
Chris Lattnerac161bf2009-01-02 07:01:27 +0000798 Linkage != GlobalValue::ExternalLinkage)) {
799 if (ParseGlobalValue(Ty, Init))
800 return true;
801 }
802
David Majnemer49b3d9b2015-02-16 08:41:08 +0000803 if (Ty->isFunctionTy() || !PointerType::isValidElementType(Ty))
Chris Lattnerc9e1b482009-02-08 20:00:15 +0000804 return Error(TyLoc, "invalid type for global variable");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000805
David Majnemer598bd052014-12-09 05:56:09 +0000806 GlobalValue *GVal = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000807
808 // See if the global was forward referenced, if so, use the global.
Chris Lattner1f386b82009-02-02 07:24:28 +0000809 if (!Name.empty()) {
David Majnemer598bd052014-12-09 05:56:09 +0000810 GVal = M->getNamedValue(Name);
811 if (GVal) {
Chris Lattnere38317f2009-10-25 23:22:50 +0000812 if (!ForwardRefVals.erase(Name) || !isa<GlobalValue>(GVal))
813 return Error(NameLoc, "redefinition of global '@" + Name + "'");
Chris Lattnere38317f2009-10-25 23:22:50 +0000814 }
Chris Lattnerac161bf2009-01-02 07:01:27 +0000815 } else {
David Blaikie9ebdc692015-09-21 21:07:50 +0000816 auto I = ForwardRefValIDs.find(NumberedVals.size());
Chris Lattnerac161bf2009-01-02 07:01:27 +0000817 if (I != ForwardRefValIDs.end()) {
David Majnemer598bd052014-12-09 05:56:09 +0000818 GVal = I->second.first;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000819 ForwardRefValIDs.erase(I);
820 }
821 }
822
David Majnemer598bd052014-12-09 05:56:09 +0000823 GlobalVariable *GV;
824 if (!GVal) {
Craig Topper2617dcc2014-04-15 06:32:26 +0000825 GV = new GlobalVariable(*M, Ty, false, GlobalValue::ExternalLinkage, nullptr,
826 Name, nullptr, GlobalVariable::NotThreadLocal,
Hans Wennborgcbe34b42012-06-23 11:37:03 +0000827 AddrSpace);
Chris Lattnerac161bf2009-01-02 07:01:27 +0000828 } else {
David Blaikie8f27ae42015-05-13 22:55:01 +0000829 if (GVal->getValueType() != Ty)
Chris Lattnerac161bf2009-01-02 07:01:27 +0000830 return Error(TyLoc,
831 "forward reference and definition of global have different types");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000832
David Majnemer598bd052014-12-09 05:56:09 +0000833 GV = cast<GlobalVariable>(GVal);
834
Chris Lattnerac161bf2009-01-02 07:01:27 +0000835 // Move the forward-reference to the correct spot in the module.
836 M->getGlobalList().splice(M->global_end(), M->getGlobalList(), GV);
837 }
838
839 if (Name.empty())
840 NumberedVals.push_back(GV);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000841
Chris Lattnerac161bf2009-01-02 07:01:27 +0000842 // Set the parsed properties on the global.
843 if (Init)
844 GV->setInitializer(Init);
845 GV->setConstant(IsConstant);
846 GV->setLinkage((GlobalValue::LinkageTypes)Linkage);
847 GV->setVisibility((GlobalValue::VisibilityTypes)Visibility);
Nico Rieck7157bb72014-01-14 15:22:47 +0000848 GV->setDLLStorageClass((GlobalValue::DLLStorageClassTypes)DLLStorageClass);
Michael Gottesman27e7ef32013-02-05 05:57:38 +0000849 GV->setExternallyInitialized(IsExternallyInitialized);
Hans Wennborgcbe34b42012-06-23 11:37:03 +0000850 GV->setThreadLocalMode(TLM);
Rafael Espindola45e6c192011-01-08 16:42:36 +0000851 GV->setUnnamedAddr(UnnamedAddr);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000852
Chris Lattnerac161bf2009-01-02 07:01:27 +0000853 // Parse attributes on the global.
854 while (Lex.getKind() == lltok::comma) {
855 Lex.Lex();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000856
Chris Lattnerac161bf2009-01-02 07:01:27 +0000857 if (Lex.getKind() == lltok::kw_section) {
858 Lex.Lex();
859 GV->setSection(Lex.getStrVal());
860 if (ParseToken(lltok::StringConstant, "expected global section string"))
861 return true;
862 } else if (Lex.getKind() == lltok::kw_align) {
863 unsigned Alignment;
864 if (ParseOptionalAlignment(Alignment)) return true;
865 GV->setAlignment(Alignment);
866 } else {
David Majnemerdad0a642014-06-27 18:19:56 +0000867 Comdat *C;
Rafael Espindola83a362c2015-01-06 22:55:16 +0000868 if (parseOptionalComdat(Name, C))
David Majnemerdad0a642014-06-27 18:19:56 +0000869 return true;
870 if (C)
871 GV->setComdat(C);
872 else
873 return TokError("unknown global variable property!");
Chris Lattnerac161bf2009-01-02 07:01:27 +0000874 }
875 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000876
Chris Lattnerac161bf2009-01-02 07:01:27 +0000877 return false;
878}
879
Bill Wendling63b88192013-02-06 06:52:58 +0000880/// ParseUnnamedAttrGrp
Bill Wendlinga7c38772013-02-09 15:48:49 +0000881/// ::= 'attributes' AttrGrpID '=' '{' AttrValPair+ '}'
Bill Wendling63b88192013-02-06 06:52:58 +0000882bool LLParser::ParseUnnamedAttrGrp() {
Bill Wendlinga7c38772013-02-09 15:48:49 +0000883 assert(Lex.getKind() == lltok::kw_attributes);
Bill Wendling63b88192013-02-06 06:52:58 +0000884 LocTy AttrGrpLoc = Lex.getLoc();
Bill Wendlinga7c38772013-02-09 15:48:49 +0000885 Lex.Lex();
886
David Majnemerb39e22b2014-12-09 18:33:57 +0000887 if (Lex.getKind() != lltok::AttrGrpID)
888 return TokError("expected attribute group id");
889
Bill Wendling63b88192013-02-06 06:52:58 +0000890 unsigned VarID = Lex.getUIntVal();
Bill Wendlingb32b0412013-02-08 06:32:06 +0000891 std::vector<unsigned> unused;
Michael Gottesman41748d72013-06-27 00:25:01 +0000892 LocTy BuiltinLoc;
Bill Wendling63b88192013-02-06 06:52:58 +0000893 Lex.Lex();
894
895 if (ParseToken(lltok::equal, "expected '=' here") ||
Bill Wendling63b88192013-02-06 06:52:58 +0000896 ParseToken(lltok::lbrace, "expected '{' here") ||
Bill Wendling09bd1f72013-02-22 00:12:35 +0000897 ParseFnAttributeValuePairs(NumberedAttrBuilders[VarID], unused, true,
Michael Gottesman41748d72013-06-27 00:25:01 +0000898 BuiltinLoc) ||
Bill Wendling63b88192013-02-06 06:52:58 +0000899 ParseToken(lltok::rbrace, "expected end of attribute group"))
900 return true;
901
Bill Wendlingb32b0412013-02-08 06:32:06 +0000902 if (!NumberedAttrBuilders[VarID].hasAttributes())
Bill Wendling63b88192013-02-06 06:52:58 +0000903 return Error(AttrGrpLoc, "attribute group has no attributes");
904
905 return false;
906}
907
Bill Wendling8b0321d2013-02-08 00:52:31 +0000908/// ParseFnAttributeValuePairs
Bill Wendling63b88192013-02-06 06:52:58 +0000909/// ::= <attr> | <attr> '=' <value>
Bill Wendlingb32b0412013-02-08 06:32:06 +0000910bool LLParser::ParseFnAttributeValuePairs(AttrBuilder &B,
911 std::vector<unsigned> &FwdRefAttrGrps,
Michael Gottesman41748d72013-06-27 00:25:01 +0000912 bool inAttrGrp, LocTy &BuiltinLoc) {
Bill Wendling8b0321d2013-02-08 00:52:31 +0000913 bool HaveError = false;
914
915 B.clear();
916
Bill Wendling63b88192013-02-06 06:52:58 +0000917 while (true) {
918 lltok::Kind Token = Lex.getKind();
Michael Gottesman41748d72013-06-27 00:25:01 +0000919 if (Token == lltok::kw_builtin)
920 BuiltinLoc = Lex.getLoc();
Bill Wendling63b88192013-02-06 06:52:58 +0000921 switch (Token) {
922 default:
Bill Wendling8b0321d2013-02-08 00:52:31 +0000923 if (!inAttrGrp) return HaveError;
Bill Wendling63b88192013-02-06 06:52:58 +0000924 return Error(Lex.getLoc(), "unterminated attribute group");
925 case lltok::rbrace:
926 // Finished.
927 return false;
928
Bill Wendlingb32b0412013-02-08 06:32:06 +0000929 case lltok::AttrGrpID: {
930 // Allow a function to reference an attribute group:
931 //
932 // define void @foo() #1 { ... }
933 if (inAttrGrp)
934 HaveError |=
935 Error(Lex.getLoc(),
936 "cannot have an attribute group reference in an attribute group");
937
938 unsigned AttrGrpNum = Lex.getUIntVal();
939 if (inAttrGrp) break;
940
941 // Save the reference to the attribute group. We'll fill it in later.
942 FwdRefAttrGrps.push_back(AttrGrpNum);
943 break;
944 }
Bill Wendling63b88192013-02-06 06:52:58 +0000945 // Target-dependent attributes:
946 case lltok::StringConstant: {
Artur Pilipenko17376c42015-08-03 14:31:49 +0000947 if (ParseStringAttribute(B))
Bill Wendling63b88192013-02-06 06:52:58 +0000948 return true;
Bill Wendlingb1ea9802013-02-10 10:12:50 +0000949 continue;
Bill Wendling63b88192013-02-06 06:52:58 +0000950 }
951
952 // Target-independent attributes:
953 case lltok::kw_align: {
Bill Wendlingc62789f2013-04-18 18:30:16 +0000954 // As a hack, we allow function alignment to be initially parsed as an
955 // attribute on a function declaration/definition or added to an attribute
956 // group and later moved to the alignment field.
Bill Wendling63b88192013-02-06 06:52:58 +0000957 unsigned Alignment;
Bill Wendling8b0321d2013-02-08 00:52:31 +0000958 if (inAttrGrp) {
Bill Wendling44b08bf2013-02-10 23:15:51 +0000959 Lex.Lex();
Bill Wendling8b0321d2013-02-08 00:52:31 +0000960 if (ParseToken(lltok::equal, "expected '=' here") ||
961 ParseUInt32(Alignment))
962 return true;
963 } else {
964 if (ParseOptionalAlignment(Alignment))
965 return true;
966 }
Bill Wendling63b88192013-02-06 06:52:58 +0000967 B.addAlignmentAttr(Alignment);
Bill Wendling8b0321d2013-02-08 00:52:31 +0000968 continue;
Bill Wendling63b88192013-02-06 06:52:58 +0000969 }
970 case lltok::kw_alignstack: {
971 unsigned Alignment;
Bill Wendling8b0321d2013-02-08 00:52:31 +0000972 if (inAttrGrp) {
Bill Wendling44b08bf2013-02-10 23:15:51 +0000973 Lex.Lex();
Bill Wendling8b0321d2013-02-08 00:52:31 +0000974 if (ParseToken(lltok::equal, "expected '=' here") ||
975 ParseUInt32(Alignment))
976 return true;
977 } else {
978 if (ParseOptionalStackAlignment(Alignment))
979 return true;
980 }
Bill Wendling63b88192013-02-06 06:52:58 +0000981 B.addStackAlignmentAttr(Alignment);
Bill Wendling8b0321d2013-02-08 00:52:31 +0000982 continue;
Bill Wendling63b88192013-02-06 06:52:58 +0000983 }
Igor Laevsky39d662f2015-07-11 10:30:36 +0000984 case lltok::kw_alwaysinline: B.addAttribute(Attribute::AlwaysInline); break;
985 case lltok::kw_argmemonly: B.addAttribute(Attribute::ArgMemOnly); break;
986 case lltok::kw_builtin: B.addAttribute(Attribute::Builtin); break;
987 case lltok::kw_cold: B.addAttribute(Attribute::Cold); break;
988 case lltok::kw_convergent: B.addAttribute(Attribute::Convergent); break;
989 case lltok::kw_inlinehint: B.addAttribute(Attribute::InlineHint); break;
990 case lltok::kw_jumptable: B.addAttribute(Attribute::JumpTable); break;
991 case lltok::kw_minsize: B.addAttribute(Attribute::MinSize); break;
992 case lltok::kw_naked: B.addAttribute(Attribute::Naked); break;
993 case lltok::kw_nobuiltin: B.addAttribute(Attribute::NoBuiltin); break;
994 case lltok::kw_noduplicate: B.addAttribute(Attribute::NoDuplicate); break;
995 case lltok::kw_noimplicitfloat:
996 B.addAttribute(Attribute::NoImplicitFloat); break;
997 case lltok::kw_noinline: B.addAttribute(Attribute::NoInline); break;
998 case lltok::kw_nonlazybind: B.addAttribute(Attribute::NonLazyBind); break;
999 case lltok::kw_noredzone: B.addAttribute(Attribute::NoRedZone); break;
1000 case lltok::kw_noreturn: B.addAttribute(Attribute::NoReturn); break;
James Molloye6f87ca2015-11-06 10:32:53 +00001001 case lltok::kw_norecurse: B.addAttribute(Attribute::NoRecurse); break;
Igor Laevsky39d662f2015-07-11 10:30:36 +00001002 case lltok::kw_nounwind: B.addAttribute(Attribute::NoUnwind); break;
1003 case lltok::kw_optnone: B.addAttribute(Attribute::OptimizeNone); break;
1004 case lltok::kw_optsize: B.addAttribute(Attribute::OptimizeForSize); break;
1005 case lltok::kw_readnone: B.addAttribute(Attribute::ReadNone); break;
1006 case lltok::kw_readonly: B.addAttribute(Attribute::ReadOnly); break;
1007 case lltok::kw_returns_twice:
1008 B.addAttribute(Attribute::ReturnsTwice); break;
1009 case lltok::kw_ssp: B.addAttribute(Attribute::StackProtect); break;
1010 case lltok::kw_sspreq: B.addAttribute(Attribute::StackProtectReq); break;
1011 case lltok::kw_sspstrong:
1012 B.addAttribute(Attribute::StackProtectStrong); break;
1013 case lltok::kw_safestack: B.addAttribute(Attribute::SafeStack); break;
1014 case lltok::kw_sanitize_address:
1015 B.addAttribute(Attribute::SanitizeAddress); break;
1016 case lltok::kw_sanitize_thread:
1017 B.addAttribute(Attribute::SanitizeThread); break;
1018 case lltok::kw_sanitize_memory:
1019 B.addAttribute(Attribute::SanitizeMemory); break;
1020 case lltok::kw_uwtable: B.addAttribute(Attribute::UWTable); break;
Bill Wendling8b0321d2013-02-08 00:52:31 +00001021
1022 // Error handling.
1023 case lltok::kw_inreg:
1024 case lltok::kw_signext:
1025 case lltok::kw_zeroext:
1026 HaveError |=
1027 Error(Lex.getLoc(),
1028 "invalid use of attribute on a function");
1029 break;
1030 case lltok::kw_byval:
Hal Finkelb0407ba2014-07-18 15:51:28 +00001031 case lltok::kw_dereferenceable:
Sanjoy Das31ea6d12015-04-16 20:29:50 +00001032 case lltok::kw_dereferenceable_or_null:
Reid Klecknera534a382013-12-19 02:14:12 +00001033 case lltok::kw_inalloca:
Bill Wendling8b0321d2013-02-08 00:52:31 +00001034 case lltok::kw_nest:
1035 case lltok::kw_noalias:
1036 case lltok::kw_nocapture:
Nick Lewyckyd52b1522014-05-20 01:23:40 +00001037 case lltok::kw_nonnull:
Stephen Linb8bd2322013-04-20 05:14:40 +00001038 case lltok::kw_returned:
Bill Wendling8b0321d2013-02-08 00:52:31 +00001039 case lltok::kw_sret:
1040 HaveError |=
1041 Error(Lex.getLoc(),
1042 "invalid use of parameter-only attribute on a function");
1043 break;
Bill Wendling63b88192013-02-06 06:52:58 +00001044 }
1045
1046 Lex.Lex();
1047 }
1048}
Chris Lattnerac161bf2009-01-02 07:01:27 +00001049
1050//===----------------------------------------------------------------------===//
1051// GlobalValue Reference/Resolution Routines.
1052//===----------------------------------------------------------------------===//
1053
Karl Schimpf77729782015-09-03 18:06:44 +00001054static inline GlobalValue *createGlobalFwdRef(Module *M, PointerType *PTy,
1055 const std::string &Name) {
1056 if (auto *FT = dyn_cast<FunctionType>(PTy->getElementType()))
1057 return Function::Create(FT, GlobalValue::ExternalWeakLinkage, Name, M);
1058 else
1059 return new GlobalVariable(*M, PTy->getElementType(), false,
1060 GlobalValue::ExternalWeakLinkage, nullptr, Name,
1061 nullptr, GlobalVariable::NotThreadLocal,
1062 PTy->getAddressSpace());
1063}
1064
Chris Lattnerac161bf2009-01-02 07:01:27 +00001065/// GetGlobalVal - Get a value with the specified name or ID, creating a
1066/// forward reference record if needed. This can return null if the value
1067/// exists but does not have the right type.
Chris Lattner229907c2011-07-18 04:54:35 +00001068GlobalValue *LLParser::GetGlobalVal(const std::string &Name, Type *Ty,
Chris Lattnerac161bf2009-01-02 07:01:27 +00001069 LocTy Loc) {
Chris Lattner229907c2011-07-18 04:54:35 +00001070 PointerType *PTy = dyn_cast<PointerType>(Ty);
Craig Topper2617dcc2014-04-15 06:32:26 +00001071 if (!PTy) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00001072 Error(Loc, "global variable reference must have pointer type");
Craig Topper2617dcc2014-04-15 06:32:26 +00001073 return nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001074 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001075
Chris Lattnerac161bf2009-01-02 07:01:27 +00001076 // Look this name up in the normal function symbol table.
1077 GlobalValue *Val =
1078 cast_or_null<GlobalValue>(M->getValueSymbolTable().lookup(Name));
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001079
Chris Lattnerac161bf2009-01-02 07:01:27 +00001080 // If this is a forward reference for the value, see if we already created a
1081 // forward ref record.
Craig Topper2617dcc2014-04-15 06:32:26 +00001082 if (!Val) {
David Blaikie9ebdc692015-09-21 21:07:50 +00001083 auto I = ForwardRefVals.find(Name);
Chris Lattnerac161bf2009-01-02 07:01:27 +00001084 if (I != ForwardRefVals.end())
1085 Val = I->second.first;
1086 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001087
Chris Lattnerac161bf2009-01-02 07:01:27 +00001088 // If we have the value in the symbol table or fwd-ref table, return it.
1089 if (Val) {
1090 if (Val->getType() == Ty) return Val;
1091 Error(Loc, "'@" + Name + "' defined with type '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00001092 getTypeString(Val->getType()) + "'");
Craig Topper2617dcc2014-04-15 06:32:26 +00001093 return nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001094 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001095
Chris Lattnerac161bf2009-01-02 07:01:27 +00001096 // Otherwise, create a new forward reference for this value and remember it.
Karl Schimpf77729782015-09-03 18:06:44 +00001097 GlobalValue *FwdVal = createGlobalFwdRef(M, PTy, Name);
Chris Lattnerac161bf2009-01-02 07:01:27 +00001098 ForwardRefVals[Name] = std::make_pair(FwdVal, Loc);
1099 return FwdVal;
1100}
1101
Chris Lattner229907c2011-07-18 04:54:35 +00001102GlobalValue *LLParser::GetGlobalVal(unsigned ID, Type *Ty, LocTy Loc) {
1103 PointerType *PTy = dyn_cast<PointerType>(Ty);
Craig Topper2617dcc2014-04-15 06:32:26 +00001104 if (!PTy) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00001105 Error(Loc, "global variable reference must have pointer type");
Craig Topper2617dcc2014-04-15 06:32:26 +00001106 return nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001107 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001108
Craig Topper2617dcc2014-04-15 06:32:26 +00001109 GlobalValue *Val = ID < NumberedVals.size() ? NumberedVals[ID] : nullptr;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001110
Chris Lattnerac161bf2009-01-02 07:01:27 +00001111 // If this is a forward reference for the value, see if we already created a
1112 // forward ref record.
Craig Topper2617dcc2014-04-15 06:32:26 +00001113 if (!Val) {
David Blaikie9ebdc692015-09-21 21:07:50 +00001114 auto I = ForwardRefValIDs.find(ID);
Chris Lattnerac161bf2009-01-02 07:01:27 +00001115 if (I != ForwardRefValIDs.end())
1116 Val = I->second.first;
1117 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001118
Chris Lattnerac161bf2009-01-02 07:01:27 +00001119 // If we have the value in the symbol table or fwd-ref table, return it.
1120 if (Val) {
1121 if (Val->getType() == Ty) return Val;
Benjamin Kramerc7583112010-09-27 17:42:11 +00001122 Error(Loc, "'@" + Twine(ID) + "' defined with type '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00001123 getTypeString(Val->getType()) + "'");
Craig Topper2617dcc2014-04-15 06:32:26 +00001124 return nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001125 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001126
Chris Lattnerac161bf2009-01-02 07:01:27 +00001127 // Otherwise, create a new forward reference for this value and remember it.
Karl Schimpf77729782015-09-03 18:06:44 +00001128 GlobalValue *FwdVal = createGlobalFwdRef(M, PTy, "");
Chris Lattnerac161bf2009-01-02 07:01:27 +00001129 ForwardRefValIDs[ID] = std::make_pair(FwdVal, Loc);
1130 return FwdVal;
1131}
1132
1133
1134//===----------------------------------------------------------------------===//
David Majnemerdad0a642014-06-27 18:19:56 +00001135// Comdat Reference/Resolution Routines.
1136//===----------------------------------------------------------------------===//
1137
1138Comdat *LLParser::getComdat(const std::string &Name, LocTy Loc) {
1139 // Look this name up in the comdat symbol table.
1140 Module::ComdatSymTabType &ComdatSymTab = M->getComdatSymbolTable();
1141 Module::ComdatSymTabType::iterator I = ComdatSymTab.find(Name);
1142 if (I != ComdatSymTab.end())
1143 return &I->second;
1144
1145 // Otherwise, create a new forward reference for this value and remember it.
1146 Comdat *C = M->getOrInsertComdat(Name);
1147 ForwardRefComdats[Name] = Loc;
1148 return C;
1149}
1150
1151
1152//===----------------------------------------------------------------------===//
Chris Lattnerac161bf2009-01-02 07:01:27 +00001153// Helper Routines.
1154//===----------------------------------------------------------------------===//
1155
1156/// ParseToken - If the current token has the specified kind, eat it and return
1157/// success. Otherwise, emit the specified error and return failure.
1158bool LLParser::ParseToken(lltok::Kind T, const char *ErrMsg) {
1159 if (Lex.getKind() != T)
1160 return TokError(ErrMsg);
1161 Lex.Lex();
1162 return false;
1163}
1164
Chris Lattner3822f632009-01-02 08:05:26 +00001165/// ParseStringConstant
1166/// ::= StringConstant
1167bool LLParser::ParseStringConstant(std::string &Result) {
1168 if (Lex.getKind() != lltok::StringConstant)
1169 return TokError("expected string constant");
1170 Result = Lex.getStrVal();
1171 Lex.Lex();
1172 return false;
1173}
1174
1175/// ParseUInt32
1176/// ::= uint32
1177bool LLParser::ParseUInt32(unsigned &Val) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00001178 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned())
1179 return TokError("expected integer");
1180 uint64_t Val64 = Lex.getAPSIntVal().getLimitedValue(0xFFFFFFFFULL+1);
1181 if (Val64 != unsigned(Val64))
1182 return TokError("expected 32-bit integer (too large)");
1183 Val = Val64;
1184 Lex.Lex();
1185 return false;
1186}
1187
Hal Finkelb0407ba2014-07-18 15:51:28 +00001188/// ParseUInt64
1189/// ::= uint64
1190bool LLParser::ParseUInt64(uint64_t &Val) {
1191 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned())
1192 return TokError("expected integer");
1193 Val = Lex.getAPSIntVal().getLimitedValue();
1194 Lex.Lex();
1195 return false;
1196}
1197
Hans Wennborgcbe34b42012-06-23 11:37:03 +00001198/// ParseTLSModel
1199/// := 'localdynamic'
1200/// := 'initialexec'
1201/// := 'localexec'
1202bool LLParser::ParseTLSModel(GlobalVariable::ThreadLocalMode &TLM) {
1203 switch (Lex.getKind()) {
1204 default:
1205 return TokError("expected localdynamic, initialexec or localexec");
1206 case lltok::kw_localdynamic:
1207 TLM = GlobalVariable::LocalDynamicTLSModel;
1208 break;
1209 case lltok::kw_initialexec:
1210 TLM = GlobalVariable::InitialExecTLSModel;
1211 break;
1212 case lltok::kw_localexec:
1213 TLM = GlobalVariable::LocalExecTLSModel;
1214 break;
1215 }
1216
1217 Lex.Lex();
1218 return false;
1219}
1220
1221/// ParseOptionalThreadLocal
1222/// := /*empty*/
1223/// := 'thread_local'
1224/// := 'thread_local' '(' tlsmodel ')'
1225bool LLParser::ParseOptionalThreadLocal(GlobalVariable::ThreadLocalMode &TLM) {
1226 TLM = GlobalVariable::NotThreadLocal;
1227 if (!EatIfPresent(lltok::kw_thread_local))
1228 return false;
1229
1230 TLM = GlobalVariable::GeneralDynamicTLSModel;
1231 if (Lex.getKind() == lltok::lparen) {
1232 Lex.Lex();
1233 return ParseTLSModel(TLM) ||
1234 ParseToken(lltok::rparen, "expected ')' after thread local model");
1235 }
1236 return false;
1237}
Chris Lattnerac161bf2009-01-02 07:01:27 +00001238
1239/// ParseOptionalAddrSpace
1240/// := /*empty*/
1241/// := 'addrspace' '(' uint32 ')'
1242bool LLParser::ParseOptionalAddrSpace(unsigned &AddrSpace) {
1243 AddrSpace = 0;
Chris Lattner3822f632009-01-02 08:05:26 +00001244 if (!EatIfPresent(lltok::kw_addrspace))
Chris Lattnerac161bf2009-01-02 07:01:27 +00001245 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001246 return ParseToken(lltok::lparen, "expected '(' in address space") ||
Chris Lattner3822f632009-01-02 08:05:26 +00001247 ParseUInt32(AddrSpace) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00001248 ParseToken(lltok::rparen, "expected ')' in address space");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001249}
Chris Lattnerac161bf2009-01-02 07:01:27 +00001250
Artur Pilipenko17376c42015-08-03 14:31:49 +00001251/// ParseStringAttribute
1252/// := StringConstant
1253/// := StringConstant '=' StringConstant
1254bool LLParser::ParseStringAttribute(AttrBuilder &B) {
1255 std::string Attr = Lex.getStrVal();
1256 Lex.Lex();
1257 std::string Val;
1258 if (EatIfPresent(lltok::equal) && ParseStringConstant(Val))
1259 return true;
1260 B.addAttribute(Attr, Val);
1261 return false;
1262}
1263
Bill Wendling34c2eb22012-12-04 23:40:58 +00001264/// ParseOptionalParamAttrs - Parse a potentially empty list of parameter attributes.
1265bool LLParser::ParseOptionalParamAttrs(AttrBuilder &B) {
1266 bool HaveError = false;
1267
1268 B.clear();
1269
1270 while (1) {
1271 lltok::Kind Token = Lex.getKind();
1272 switch (Token) {
1273 default: // End of attributes.
1274 return HaveError;
Artur Pilipenko17376c42015-08-03 14:31:49 +00001275 case lltok::StringConstant: {
1276 if (ParseStringAttribute(B))
1277 return true;
1278 continue;
1279 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00001280 case lltok::kw_align: {
1281 unsigned Alignment;
1282 if (ParseOptionalAlignment(Alignment))
1283 return true;
Bill Wendling68d24012012-10-08 22:20:14 +00001284 B.addAlignmentAttr(Alignment);
Chris Lattnerac161bf2009-01-02 07:01:27 +00001285 continue;
1286 }
Bill Wendling3d7b0b82012-12-19 07:18:57 +00001287 case lltok::kw_byval: B.addAttribute(Attribute::ByVal); break;
Hal Finkelb0407ba2014-07-18 15:51:28 +00001288 case lltok::kw_dereferenceable: {
1289 uint64_t Bytes;
Sanjoy Das31ea6d12015-04-16 20:29:50 +00001290 if (ParseOptionalDerefAttrBytes(lltok::kw_dereferenceable, Bytes))
Hal Finkelb0407ba2014-07-18 15:51:28 +00001291 return true;
1292 B.addDereferenceableAttr(Bytes);
1293 continue;
1294 }
Sanjoy Das31ea6d12015-04-16 20:29:50 +00001295 case lltok::kw_dereferenceable_or_null: {
1296 uint64_t Bytes;
1297 if (ParseOptionalDerefAttrBytes(lltok::kw_dereferenceable_or_null, Bytes))
1298 return true;
1299 B.addDereferenceableOrNullAttr(Bytes);
1300 continue;
1301 }
Reid Klecknera534a382013-12-19 02:14:12 +00001302 case lltok::kw_inalloca: B.addAttribute(Attribute::InAlloca); break;
Bill Wendling3d7b0b82012-12-19 07:18:57 +00001303 case lltok::kw_inreg: B.addAttribute(Attribute::InReg); break;
1304 case lltok::kw_nest: B.addAttribute(Attribute::Nest); break;
1305 case lltok::kw_noalias: B.addAttribute(Attribute::NoAlias); break;
1306 case lltok::kw_nocapture: B.addAttribute(Attribute::NoCapture); break;
Nick Lewyckyd52b1522014-05-20 01:23:40 +00001307 case lltok::kw_nonnull: B.addAttribute(Attribute::NonNull); break;
Nick Lewyckyc2ec0722013-07-06 00:29:58 +00001308 case lltok::kw_readnone: B.addAttribute(Attribute::ReadNone); break;
1309 case lltok::kw_readonly: B.addAttribute(Attribute::ReadOnly); break;
Stephen Linb8bd2322013-04-20 05:14:40 +00001310 case lltok::kw_returned: B.addAttribute(Attribute::Returned); break;
Bill Wendling3d7b0b82012-12-19 07:18:57 +00001311 case lltok::kw_signext: B.addAttribute(Attribute::SExt); break;
1312 case lltok::kw_sret: B.addAttribute(Attribute::StructRet); break;
1313 case lltok::kw_zeroext: B.addAttribute(Attribute::ZExt); break;
Charles Davisbe5557e2010-02-12 00:31:15 +00001314
Stephen Lin7577ed52013-04-20 13:16:13 +00001315 case lltok::kw_alignstack:
1316 case lltok::kw_alwaysinline:
Igor Laevsky39d662f2015-07-11 10:30:36 +00001317 case lltok::kw_argmemonly:
Michael Gottesman41748d72013-06-27 00:25:01 +00001318 case lltok::kw_builtin:
Stephen Lin7577ed52013-04-20 13:16:13 +00001319 case lltok::kw_inlinehint:
Tom Roeder44cb65f2014-06-05 19:29:43 +00001320 case lltok::kw_jumptable:
Stephen Lin7577ed52013-04-20 13:16:13 +00001321 case lltok::kw_minsize:
1322 case lltok::kw_naked:
1323 case lltok::kw_nobuiltin:
1324 case lltok::kw_noduplicate:
1325 case lltok::kw_noimplicitfloat:
1326 case lltok::kw_noinline:
1327 case lltok::kw_nonlazybind:
1328 case lltok::kw_noredzone:
1329 case lltok::kw_noreturn:
1330 case lltok::kw_nounwind:
Andrea Di Biagio377496b2013-08-23 11:53:55 +00001331 case lltok::kw_optnone:
Stephen Lin7577ed52013-04-20 13:16:13 +00001332 case lltok::kw_optsize:
Stephen Lin7577ed52013-04-20 13:16:13 +00001333 case lltok::kw_returns_twice:
1334 case lltok::kw_sanitize_address:
1335 case lltok::kw_sanitize_memory:
1336 case lltok::kw_sanitize_thread:
1337 case lltok::kw_ssp:
1338 case lltok::kw_sspreq:
1339 case lltok::kw_sspstrong:
Peter Collingbourne82437bf2015-06-15 21:07:11 +00001340 case lltok::kw_safestack:
Stephen Lin7577ed52013-04-20 13:16:13 +00001341 case lltok::kw_uwtable:
Bill Wendling34c2eb22012-12-04 23:40:58 +00001342 HaveError |= Error(Lex.getLoc(), "invalid use of function-only attribute");
1343 break;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001344 }
Bill Wendling0be9c402012-09-28 22:30:18 +00001345
Bill Wendling34c2eb22012-12-04 23:40:58 +00001346 Lex.Lex();
1347 }
1348}
1349
1350/// ParseOptionalReturnAttrs - Parse a potentially empty list of return attributes.
1351bool LLParser::ParseOptionalReturnAttrs(AttrBuilder &B) {
1352 bool HaveError = false;
1353
1354 B.clear();
1355
1356 while (1) {
1357 lltok::Kind Token = Lex.getKind();
Bill Wendling0be9c402012-09-28 22:30:18 +00001358 switch (Token) {
Bill Wendling34c2eb22012-12-04 23:40:58 +00001359 default: // End of attributes.
1360 return HaveError;
Artur Pilipenko17376c42015-08-03 14:31:49 +00001361 case lltok::StringConstant: {
1362 if (ParseStringAttribute(B))
1363 return true;
1364 continue;
1365 }
Hal Finkelb0407ba2014-07-18 15:51:28 +00001366 case lltok::kw_dereferenceable: {
1367 uint64_t Bytes;
Sanjoy Das31ea6d12015-04-16 20:29:50 +00001368 if (ParseOptionalDerefAttrBytes(lltok::kw_dereferenceable, Bytes))
Hal Finkelb0407ba2014-07-18 15:51:28 +00001369 return true;
1370 B.addDereferenceableAttr(Bytes);
1371 continue;
1372 }
Sanjoy Das31ea6d12015-04-16 20:29:50 +00001373 case lltok::kw_dereferenceable_or_null: {
1374 uint64_t Bytes;
1375 if (ParseOptionalDerefAttrBytes(lltok::kw_dereferenceable_or_null, Bytes))
1376 return true;
1377 B.addDereferenceableOrNullAttr(Bytes);
1378 continue;
1379 }
Artur Pilipenko84bc62f2015-09-18 12:33:31 +00001380 case lltok::kw_align: {
1381 unsigned Alignment;
1382 if (ParseOptionalAlignment(Alignment))
1383 return true;
1384 B.addAlignmentAttr(Alignment);
1385 continue;
1386 }
Bill Wendling3d7b0b82012-12-19 07:18:57 +00001387 case lltok::kw_inreg: B.addAttribute(Attribute::InReg); break;
1388 case lltok::kw_noalias: B.addAttribute(Attribute::NoAlias); break;
Nick Lewyckyd52b1522014-05-20 01:23:40 +00001389 case lltok::kw_nonnull: B.addAttribute(Attribute::NonNull); break;
Bill Wendling3d7b0b82012-12-19 07:18:57 +00001390 case lltok::kw_signext: B.addAttribute(Attribute::SExt); break;
1391 case lltok::kw_zeroext: B.addAttribute(Attribute::ZExt); break;
Bill Wendling0be9c402012-09-28 22:30:18 +00001392
Bill Wendling34c2eb22012-12-04 23:40:58 +00001393 // Error handling.
Chandler Carruth9f6b59a2013-04-09 19:46:46 +00001394 case lltok::kw_byval:
Reid Klecknera534a382013-12-19 02:14:12 +00001395 case lltok::kw_inalloca:
Chandler Carruth9f6b59a2013-04-09 19:46:46 +00001396 case lltok::kw_nest:
1397 case lltok::kw_nocapture:
Stephen Linb8bd2322013-04-20 05:14:40 +00001398 case lltok::kw_returned:
Chandler Carruth9f6b59a2013-04-09 19:46:46 +00001399 case lltok::kw_sret:
Bill Wendling34c2eb22012-12-04 23:40:58 +00001400 HaveError |= Error(Lex.getLoc(), "invalid use of parameter-only attribute");
Bill Wendling0be9c402012-09-28 22:30:18 +00001401 break;
James Molloy4f6fb952012-12-20 16:04:27 +00001402
Chandler Carruth9f6b59a2013-04-09 19:46:46 +00001403 case lltok::kw_alignstack:
1404 case lltok::kw_alwaysinline:
Igor Laevsky39d662f2015-07-11 10:30:36 +00001405 case lltok::kw_argmemonly:
Michael Gottesman41748d72013-06-27 00:25:01 +00001406 case lltok::kw_builtin:
Diego Novilloc6399532013-05-24 12:26:52 +00001407 case lltok::kw_cold:
Chandler Carruth9f6b59a2013-04-09 19:46:46 +00001408 case lltok::kw_inlinehint:
Tom Roeder44cb65f2014-06-05 19:29:43 +00001409 case lltok::kw_jumptable:
Chandler Carruth9f6b59a2013-04-09 19:46:46 +00001410 case lltok::kw_minsize:
1411 case lltok::kw_naked:
1412 case lltok::kw_nobuiltin:
1413 case lltok::kw_noduplicate:
1414 case lltok::kw_noimplicitfloat:
1415 case lltok::kw_noinline:
1416 case lltok::kw_nonlazybind:
1417 case lltok::kw_noredzone:
1418 case lltok::kw_noreturn:
1419 case lltok::kw_nounwind:
Andrea Di Biagio377496b2013-08-23 11:53:55 +00001420 case lltok::kw_optnone:
Chandler Carruth9f6b59a2013-04-09 19:46:46 +00001421 case lltok::kw_optsize:
Chandler Carruth9f6b59a2013-04-09 19:46:46 +00001422 case lltok::kw_returns_twice:
1423 case lltok::kw_sanitize_address:
1424 case lltok::kw_sanitize_memory:
1425 case lltok::kw_sanitize_thread:
1426 case lltok::kw_ssp:
1427 case lltok::kw_sspreq:
1428 case lltok::kw_sspstrong:
Peter Collingbourne82437bf2015-06-15 21:07:11 +00001429 case lltok::kw_safestack:
Chandler Carruth9f6b59a2013-04-09 19:46:46 +00001430 case lltok::kw_uwtable:
Bill Wendling34c2eb22012-12-04 23:40:58 +00001431 HaveError |= Error(Lex.getLoc(), "invalid use of function-only attribute");
Bill Wendling0be9c402012-09-28 22:30:18 +00001432 break;
Nick Lewyckyc2ec0722013-07-06 00:29:58 +00001433
1434 case lltok::kw_readnone:
1435 case lltok::kw_readonly:
1436 HaveError |= Error(Lex.getLoc(), "invalid use of attribute on return type");
Bill Wendling0be9c402012-09-28 22:30:18 +00001437 }
1438
Chris Lattnerac161bf2009-01-02 07:01:27 +00001439 Lex.Lex();
1440 }
1441}
1442
1443/// ParseOptionalLinkage
1444/// ::= /*empty*/
Rafael Espindola6de96a12009-01-15 20:18:42 +00001445/// ::= 'private'
Chris Lattnerac161bf2009-01-02 07:01:27 +00001446/// ::= 'internal'
1447/// ::= 'weak'
Duncan Sands12da8ce2009-03-07 15:45:40 +00001448/// ::= 'weak_odr'
Chris Lattnerac161bf2009-01-02 07:01:27 +00001449/// ::= 'linkonce'
Duncan Sands12da8ce2009-03-07 15:45:40 +00001450/// ::= 'linkonce_odr'
Bill Wendling03bcd6e2010-07-01 21:55:59 +00001451/// ::= 'available_externally'
Chris Lattnerac161bf2009-01-02 07:01:27 +00001452/// ::= 'appending'
Chris Lattnerac161bf2009-01-02 07:01:27 +00001453/// ::= 'common'
Chris Lattnerac161bf2009-01-02 07:01:27 +00001454/// ::= 'extern_weak'
1455/// ::= 'external'
1456bool LLParser::ParseOptionalLinkage(unsigned &Res, bool &HasLinkage) {
1457 HasLinkage = false;
1458 switch (Lex.getKind()) {
Bill Wendlinga3c6f6b2009-07-20 01:03:30 +00001459 default: Res=GlobalValue::ExternalLinkage; return false;
1460 case lltok::kw_private: Res = GlobalValue::PrivateLinkage; break;
Bill Wendlinga3c6f6b2009-07-20 01:03:30 +00001461 case lltok::kw_internal: Res = GlobalValue::InternalLinkage; break;
1462 case lltok::kw_weak: Res = GlobalValue::WeakAnyLinkage; break;
1463 case lltok::kw_weak_odr: Res = GlobalValue::WeakODRLinkage; break;
1464 case lltok::kw_linkonce: Res = GlobalValue::LinkOnceAnyLinkage; break;
1465 case lltok::kw_linkonce_odr: Res = GlobalValue::LinkOnceODRLinkage; break;
Chris Lattner184f1be2009-04-13 05:44:34 +00001466 case lltok::kw_available_externally:
1467 Res = GlobalValue::AvailableExternallyLinkage;
1468 break;
Bill Wendlinga3c6f6b2009-07-20 01:03:30 +00001469 case lltok::kw_appending: Res = GlobalValue::AppendingLinkage; break;
Bill Wendlinga3c6f6b2009-07-20 01:03:30 +00001470 case lltok::kw_common: Res = GlobalValue::CommonLinkage; break;
Bill Wendlinga3c6f6b2009-07-20 01:03:30 +00001471 case lltok::kw_extern_weak: Res = GlobalValue::ExternalWeakLinkage; break;
1472 case lltok::kw_external: Res = GlobalValue::ExternalLinkage; break;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001473 }
1474 Lex.Lex();
1475 HasLinkage = true;
1476 return false;
1477}
1478
1479/// ParseOptionalVisibility
1480/// ::= /*empty*/
1481/// ::= 'default'
1482/// ::= 'hidden'
1483/// ::= 'protected'
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001484///
Chris Lattnerac161bf2009-01-02 07:01:27 +00001485bool LLParser::ParseOptionalVisibility(unsigned &Res) {
1486 switch (Lex.getKind()) {
1487 default: Res = GlobalValue::DefaultVisibility; return false;
1488 case lltok::kw_default: Res = GlobalValue::DefaultVisibility; break;
1489 case lltok::kw_hidden: Res = GlobalValue::HiddenVisibility; break;
1490 case lltok::kw_protected: Res = GlobalValue::ProtectedVisibility; break;
1491 }
1492 Lex.Lex();
1493 return false;
1494}
1495
Nico Rieck7157bb72014-01-14 15:22:47 +00001496/// ParseOptionalDLLStorageClass
1497/// ::= /*empty*/
1498/// ::= 'dllimport'
1499/// ::= 'dllexport'
1500///
1501bool LLParser::ParseOptionalDLLStorageClass(unsigned &Res) {
1502 switch (Lex.getKind()) {
1503 default: Res = GlobalValue::DefaultStorageClass; return false;
1504 case lltok::kw_dllimport: Res = GlobalValue::DLLImportStorageClass; break;
1505 case lltok::kw_dllexport: Res = GlobalValue::DLLExportStorageClass; break;
1506 }
1507 Lex.Lex();
1508 return false;
1509}
1510
Chris Lattnerac161bf2009-01-02 07:01:27 +00001511/// ParseOptionalCallingConv
1512/// ::= /*empty*/
1513/// ::= 'ccc'
1514/// ::= 'fastcc'
Reid Kleckner35fc3632014-12-01 21:04:44 +00001515/// ::= 'intel_ocl_bicc'
Chris Lattnerac161bf2009-01-02 07:01:27 +00001516/// ::= 'coldcc'
1517/// ::= 'x86_stdcallcc'
1518/// ::= 'x86_fastcallcc'
Anton Korobeynikov8f35fab2010-05-16 09:08:45 +00001519/// ::= 'x86_thiscallcc'
Reid Kleckner9ccce992014-10-28 01:29:26 +00001520/// ::= 'x86_vectorcallcc'
Anton Korobeynikova8fd40b2009-06-16 18:50:49 +00001521/// ::= 'arm_apcscc'
1522/// ::= 'arm_aapcscc'
1523/// ::= 'arm_aapcs_vfpcc'
Anton Korobeynikov27a0ecf2009-12-07 02:27:35 +00001524/// ::= 'msp430_intrcc'
Che-Liang Chiou29947902010-09-25 07:46:17 +00001525/// ::= 'ptx_kernel'
1526/// ::= 'ptx_device'
Micah Villmow48c8ddc2012-10-01 17:01:31 +00001527/// ::= 'spir_func'
1528/// ::= 'spir_kernel'
Charles Davise8f297c2013-07-12 06:02:35 +00001529/// ::= 'x86_64_sysvcc'
1530/// ::= 'x86_64_win64cc'
Andrew Tricka3a11de2013-10-31 22:12:01 +00001531/// ::= 'webkit_jscc'
Juergen Ributzka9969d3e2013-11-08 23:28:16 +00001532/// ::= 'anyregcc'
Juergen Ributzkae6250132014-01-17 19:47:03 +00001533/// ::= 'preserve_mostcc'
1534/// ::= 'preserve_allcc'
Reid Kleckner35fc3632014-12-01 21:04:44 +00001535/// ::= 'ghccc'
Maksim Panchenkocce239c2015-09-29 22:09:16 +00001536/// ::= 'hhvmcc'
1537/// ::= 'hhvm_ccc'
Chris Lattnerac161bf2009-01-02 07:01:27 +00001538/// ::= 'cc' UINT
Anton Korobeynikova8fd40b2009-06-16 18:50:49 +00001539///
Alexey Samsonov17a9cff2014-09-10 18:00:17 +00001540bool LLParser::ParseOptionalCallingConv(unsigned &CC) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00001541 switch (Lex.getKind()) {
1542 default: CC = CallingConv::C; return false;
1543 case lltok::kw_ccc: CC = CallingConv::C; break;
1544 case lltok::kw_fastcc: CC = CallingConv::Fast; break;
1545 case lltok::kw_coldcc: CC = CallingConv::Cold; break;
1546 case lltok::kw_x86_stdcallcc: CC = CallingConv::X86_StdCall; break;
1547 case lltok::kw_x86_fastcallcc: CC = CallingConv::X86_FastCall; break;
Anton Korobeynikov8f35fab2010-05-16 09:08:45 +00001548 case lltok::kw_x86_thiscallcc: CC = CallingConv::X86_ThisCall; break;
Reid Kleckner9ccce992014-10-28 01:29:26 +00001549 case lltok::kw_x86_vectorcallcc:CC = CallingConv::X86_VectorCall; break;
Anton Korobeynikova8fd40b2009-06-16 18:50:49 +00001550 case lltok::kw_arm_apcscc: CC = CallingConv::ARM_APCS; break;
1551 case lltok::kw_arm_aapcscc: CC = CallingConv::ARM_AAPCS; break;
1552 case lltok::kw_arm_aapcs_vfpcc:CC = CallingConv::ARM_AAPCS_VFP; break;
Anton Korobeynikov27a0ecf2009-12-07 02:27:35 +00001553 case lltok::kw_msp430_intrcc: CC = CallingConv::MSP430_INTR; break;
Che-Liang Chiou29947902010-09-25 07:46:17 +00001554 case lltok::kw_ptx_kernel: CC = CallingConv::PTX_Kernel; break;
1555 case lltok::kw_ptx_device: CC = CallingConv::PTX_Device; break;
Micah Villmow48c8ddc2012-10-01 17:01:31 +00001556 case lltok::kw_spir_kernel: CC = CallingConv::SPIR_KERNEL; break;
1557 case lltok::kw_spir_func: CC = CallingConv::SPIR_FUNC; break;
Elena Demikhovskyd6afb032012-10-24 14:46:16 +00001558 case lltok::kw_intel_ocl_bicc: CC = CallingConv::Intel_OCL_BI; break;
Charles Davise8f297c2013-07-12 06:02:35 +00001559 case lltok::kw_x86_64_sysvcc: CC = CallingConv::X86_64_SysV; break;
1560 case lltok::kw_x86_64_win64cc: CC = CallingConv::X86_64_Win64; break;
Andrew Tricka3a11de2013-10-31 22:12:01 +00001561 case lltok::kw_webkit_jscc: CC = CallingConv::WebKit_JS; break;
Juergen Ributzka9969d3e2013-11-08 23:28:16 +00001562 case lltok::kw_anyregcc: CC = CallingConv::AnyReg; break;
Juergen Ributzkae6250132014-01-17 19:47:03 +00001563 case lltok::kw_preserve_mostcc:CC = CallingConv::PreserveMost; break;
1564 case lltok::kw_preserve_allcc: CC = CallingConv::PreserveAll; break;
Reid Kleckner35fc3632014-12-01 21:04:44 +00001565 case lltok::kw_ghccc: CC = CallingConv::GHC; break;
Maksim Panchenkocce239c2015-09-29 22:09:16 +00001566 case lltok::kw_hhvmcc: CC = CallingConv::HHVM; break;
1567 case lltok::kw_hhvm_ccc: CC = CallingConv::HHVM_C; break;
Sandeep Patel68c5f472009-09-02 08:44:58 +00001568 case lltok::kw_cc: {
Sandeep Patel68c5f472009-09-02 08:44:58 +00001569 Lex.Lex();
Alexey Samsonov17a9cff2014-09-10 18:00:17 +00001570 return ParseUInt32(CC);
Sandeep Patel68c5f472009-09-02 08:44:58 +00001571 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00001572 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001573
Chris Lattnerac161bf2009-01-02 07:01:27 +00001574 Lex.Lex();
1575 return false;
1576}
1577
Duncan P. N. Exon Smith19717ea2015-04-24 21:21:57 +00001578/// ParseMetadataAttachment
1579/// ::= !dbg !42
1580bool LLParser::ParseMetadataAttachment(unsigned &Kind, MDNode *&MD) {
1581 assert(Lex.getKind() == lltok::MetadataVar && "Expected metadata attachment");
1582
1583 std::string Name = Lex.getStrVal();
1584 Kind = M->getMDKindID(Name);
1585 Lex.Lex();
1586
1587 return ParseMDNode(MD);
1588}
1589
Chris Lattner5c427632009-12-30 05:31:19 +00001590/// ParseInstructionMetadata
Chris Lattner596760d2009-12-29 21:25:40 +00001591/// ::= !dbg !42 (',' !dbg !57)*
Duncan P. N. Exon Smith27d702c2015-04-24 21:29:36 +00001592bool LLParser::ParseInstructionMetadata(Instruction &Inst) {
Chris Lattner5c427632009-12-30 05:31:19 +00001593 do {
1594 if (Lex.getKind() != lltok::MetadataVar)
1595 return TokError("expected metadata after comma");
Devang Patelba4a6fd2009-09-29 00:01:14 +00001596
Duncan P. N. Exon Smith19717ea2015-04-24 21:21:57 +00001597 unsigned MDK;
Duncan P. N. Exon Smithf825dae2015-01-12 22:26:48 +00001598 MDNode *N;
Duncan P. N. Exon Smith19717ea2015-04-24 21:21:57 +00001599 if (ParseMetadataAttachment(MDK, N))
Chris Lattner1eed2d62009-12-30 04:56:59 +00001600 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001601
Duncan P. N. Exon Smith27d702c2015-04-24 21:29:36 +00001602 Inst.setMetadata(MDK, N);
Manman Ren209b17c2013-09-28 00:22:27 +00001603 if (MDK == LLVMContext::MD_tbaa)
Duncan P. N. Exon Smith27d702c2015-04-24 21:29:36 +00001604 InstsWithTBAATag.push_back(&Inst);
Manman Ren209b17c2013-09-28 00:22:27 +00001605
Chris Lattner596760d2009-12-29 21:25:40 +00001606 // If this is the end of the list, we're done.
Chris Lattner5c427632009-12-30 05:31:19 +00001607 } while (EatIfPresent(lltok::comma));
1608 return false;
Devang Patelea8a4b92009-09-17 23:04:48 +00001609}
1610
Duncan P. N. Exon Smith3d4cd752015-04-24 22:04:41 +00001611/// ParseOptionalFunctionMetadata
1612/// ::= (!dbg !57)*
1613bool LLParser::ParseOptionalFunctionMetadata(Function &F) {
1614 while (Lex.getKind() == lltok::MetadataVar) {
1615 unsigned MDK;
1616 MDNode *N;
1617 if (ParseMetadataAttachment(MDK, N))
1618 return true;
1619
1620 F.setMetadata(MDK, N);
1621 }
1622 return false;
1623}
1624
Chris Lattnerac161bf2009-01-02 07:01:27 +00001625/// ParseOptionalAlignment
1626/// ::= /* empty */
1627/// ::= 'align' 4
1628bool LLParser::ParseOptionalAlignment(unsigned &Alignment) {
1629 Alignment = 0;
Chris Lattner3822f632009-01-02 08:05:26 +00001630 if (!EatIfPresent(lltok::kw_align))
1631 return false;
Chris Lattnerd11f5142009-01-05 07:46:05 +00001632 LocTy AlignLoc = Lex.getLoc();
1633 if (ParseUInt32(Alignment)) return true;
1634 if (!isPowerOf2_32(Alignment))
1635 return Error(AlignLoc, "alignment is not a power of two");
Dan Gohmand566d2c2010-07-30 21:07:05 +00001636 if (Alignment > Value::MaximumAlignment)
Dan Gohmana7e5a242010-07-28 20:12:04 +00001637 return Error(AlignLoc, "huge alignments are not supported yet");
Chris Lattnerd11f5142009-01-05 07:46:05 +00001638 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001639}
1640
Sanjoy Das31ea6d12015-04-16 20:29:50 +00001641/// ParseOptionalDerefAttrBytes
Hal Finkelb0407ba2014-07-18 15:51:28 +00001642/// ::= /* empty */
Sanjoy Das31ea6d12015-04-16 20:29:50 +00001643/// ::= AttrKind '(' 4 ')'
1644///
1645/// where AttrKind is either 'dereferenceable' or 'dereferenceable_or_null'.
1646bool LLParser::ParseOptionalDerefAttrBytes(lltok::Kind AttrKind,
1647 uint64_t &Bytes) {
1648 assert((AttrKind == lltok::kw_dereferenceable ||
1649 AttrKind == lltok::kw_dereferenceable_or_null) &&
1650 "contract!");
1651
Hal Finkelb0407ba2014-07-18 15:51:28 +00001652 Bytes = 0;
Sanjoy Das31ea6d12015-04-16 20:29:50 +00001653 if (!EatIfPresent(AttrKind))
Hal Finkelb0407ba2014-07-18 15:51:28 +00001654 return false;
1655 LocTy ParenLoc = Lex.getLoc();
1656 if (!EatIfPresent(lltok::lparen))
1657 return Error(ParenLoc, "expected '('");
1658 LocTy DerefLoc = Lex.getLoc();
1659 if (ParseUInt64(Bytes)) return true;
1660 ParenLoc = Lex.getLoc();
1661 if (!EatIfPresent(lltok::rparen))
1662 return Error(ParenLoc, "expected ')'");
1663 if (!Bytes)
1664 return Error(DerefLoc, "dereferenceable bytes must be non-zero");
1665 return false;
1666}
1667
Chris Lattnerb2f39502009-12-30 05:44:30 +00001668/// ParseOptionalCommaAlign
Michael Ilseman26ee2b82012-11-15 22:34:00 +00001669/// ::=
Chris Lattnerb2f39502009-12-30 05:44:30 +00001670/// ::= ',' align 4
1671///
1672/// This returns with AteExtraComma set to true if it ate an excess comma at the
1673/// end.
1674bool LLParser::ParseOptionalCommaAlign(unsigned &Alignment,
1675 bool &AteExtraComma) {
1676 AteExtraComma = false;
1677 while (EatIfPresent(lltok::comma)) {
1678 // Metadata at the end is an early exit.
Chris Lattnereafe4de2009-12-30 05:02:06 +00001679 if (Lex.getKind() == lltok::MetadataVar) {
Chris Lattnerb2f39502009-12-30 05:44:30 +00001680 AteExtraComma = true;
1681 return false;
1682 }
Michael Ilseman26ee2b82012-11-15 22:34:00 +00001683
Chris Lattner95b0ff42010-04-23 00:50:50 +00001684 if (Lex.getKind() != lltok::kw_align)
1685 return Error(Lex.getLoc(), "expected metadata or 'align'");
Duncan Sands4c5c8582010-10-21 16:07:10 +00001686
Chris Lattner95b0ff42010-04-23 00:50:50 +00001687 if (ParseOptionalAlignment(Alignment)) return true;
Chris Lattnerb2f39502009-12-30 05:44:30 +00001688 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001689
Devang Patelea8a4b92009-09-17 23:04:48 +00001690 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001691}
1692
Eli Friedmanfee02c62011-07-25 23:16:38 +00001693/// ParseScopeAndOrdering
1694/// if isAtomic: ::= 'singlethread'? AtomicOrdering
1695/// else: ::=
1696///
1697/// This sets Scope and Ordering to the parsed values.
1698bool LLParser::ParseScopeAndOrdering(bool isAtomic, SynchronizationScope &Scope,
1699 AtomicOrdering &Ordering) {
1700 if (!isAtomic)
1701 return false;
1702
1703 Scope = CrossThread;
1704 if (EatIfPresent(lltok::kw_singlethread))
1705 Scope = SingleThread;
Tim Northovere94a5182014-03-11 10:48:52 +00001706
1707 return ParseOrdering(Ordering);
1708}
1709
1710/// ParseOrdering
1711/// ::= AtomicOrdering
1712///
1713/// This sets Ordering to the parsed value.
1714bool LLParser::ParseOrdering(AtomicOrdering &Ordering) {
Eli Friedmanfee02c62011-07-25 23:16:38 +00001715 switch (Lex.getKind()) {
1716 default: return TokError("Expected ordering on atomic instruction");
1717 case lltok::kw_unordered: Ordering = Unordered; break;
1718 case lltok::kw_monotonic: Ordering = Monotonic; break;
1719 case lltok::kw_acquire: Ordering = Acquire; break;
1720 case lltok::kw_release: Ordering = Release; break;
1721 case lltok::kw_acq_rel: Ordering = AcquireRelease; break;
1722 case lltok::kw_seq_cst: Ordering = SequentiallyConsistent; break;
1723 }
1724 Lex.Lex();
1725 return false;
1726}
1727
Charles Davisbe5557e2010-02-12 00:31:15 +00001728/// ParseOptionalStackAlignment
1729/// ::= /* empty */
1730/// ::= 'alignstack' '(' 4 ')'
1731bool LLParser::ParseOptionalStackAlignment(unsigned &Alignment) {
1732 Alignment = 0;
1733 if (!EatIfPresent(lltok::kw_alignstack))
1734 return false;
1735 LocTy ParenLoc = Lex.getLoc();
1736 if (!EatIfPresent(lltok::lparen))
1737 return Error(ParenLoc, "expected '('");
1738 LocTy AlignLoc = Lex.getLoc();
1739 if (ParseUInt32(Alignment)) return true;
1740 ParenLoc = Lex.getLoc();
1741 if (!EatIfPresent(lltok::rparen))
1742 return Error(ParenLoc, "expected ')'");
1743 if (!isPowerOf2_32(Alignment))
1744 return Error(AlignLoc, "stack alignment is not a power of two");
1745 return false;
1746}
Devang Patelea8a4b92009-09-17 23:04:48 +00001747
Chris Lattner28f1eeb2009-12-30 05:14:00 +00001748/// ParseIndexList - This parses the index list for an insert/extractvalue
1749/// instruction. This sets AteExtraComma in the case where we eat an extra
1750/// comma at the end of the line and find that it is followed by metadata.
1751/// Clients that don't allow metadata can call the version of this function that
1752/// only takes one argument.
1753///
Chris Lattnerac161bf2009-01-02 07:01:27 +00001754/// ParseIndexList
1755/// ::= (',' uint32)+
Chris Lattner28f1eeb2009-12-30 05:14:00 +00001756///
1757bool LLParser::ParseIndexList(SmallVectorImpl<unsigned> &Indices,
1758 bool &AteExtraComma) {
1759 AteExtraComma = false;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00001760
Chris Lattnerac161bf2009-01-02 07:01:27 +00001761 if (Lex.getKind() != lltok::comma)
1762 return TokError("expected ',' as start of index list");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001763
Chris Lattner3822f632009-01-02 08:05:26 +00001764 while (EatIfPresent(lltok::comma)) {
Chris Lattner28f1eeb2009-12-30 05:14:00 +00001765 if (Lex.getKind() == lltok::MetadataVar) {
David Majnemer7ccc34d2015-02-16 09:18:13 +00001766 if (Indices.empty()) return TokError("expected index");
Chris Lattner28f1eeb2009-12-30 05:14:00 +00001767 AteExtraComma = true;
1768 return false;
1769 }
Nick Lewycky83e47112010-09-29 23:32:20 +00001770 unsigned Idx = 0;
Chris Lattner3822f632009-01-02 08:05:26 +00001771 if (ParseUInt32(Idx)) return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001772 Indices.push_back(Idx);
1773 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001774
Chris Lattnerac161bf2009-01-02 07:01:27 +00001775 return false;
1776}
1777
1778//===----------------------------------------------------------------------===//
1779// Type Parsing.
1780//===----------------------------------------------------------------------===//
1781
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001782/// ParseType - Parse a type.
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00001783bool LLParser::ParseType(Type *&Result, const Twine &Msg, bool AllowVoid) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001784 SMLoc TypeLoc = Lex.getLoc();
Chris Lattnerac161bf2009-01-02 07:01:27 +00001785 switch (Lex.getKind()) {
1786 default:
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00001787 return TokError(Msg);
Chris Lattnerac161bf2009-01-02 07:01:27 +00001788 case lltok::Type:
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001789 // Type ::= 'float' | 'void' (etc)
Chris Lattnerac161bf2009-01-02 07:01:27 +00001790 Result = Lex.getTyVal();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001791 Lex.Lex();
Chris Lattnerac161bf2009-01-02 07:01:27 +00001792 break;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001793 case lltok::lbrace:
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001794 // Type ::= StructType
1795 if (ParseAnonStructType(Result, false))
Chris Lattnerac161bf2009-01-02 07:01:27 +00001796 return true;
1797 break;
1798 case lltok::lsquare:
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001799 // Type ::= '[' ... ']'
Chris Lattnerac161bf2009-01-02 07:01:27 +00001800 Lex.Lex(); // eat the lsquare.
1801 if (ParseArrayVectorType(Result, false))
1802 return true;
1803 break;
1804 case lltok::less: // Either vector or packed struct.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001805 // Type ::= '<' ... '>'
Chris Lattner3822f632009-01-02 08:05:26 +00001806 Lex.Lex();
1807 if (Lex.getKind() == lltok::lbrace) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001808 if (ParseAnonStructType(Result, true) ||
Chris Lattner3822f632009-01-02 08:05:26 +00001809 ParseToken(lltok::greater, "expected '>' at end of packed struct"))
Chris Lattnerac161bf2009-01-02 07:01:27 +00001810 return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001811 } else if (ParseArrayVectorType(Result, true))
1812 return true;
1813 break;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001814 case lltok::LocalVar: {
1815 // Type ::= %foo
1816 std::pair<Type*, LocTy> &Entry = NamedTypes[Lex.getStrVal()];
Michael Ilseman26ee2b82012-11-15 22:34:00 +00001817
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001818 // If the type hasn't been defined yet, create a forward definition and
1819 // remember where that forward def'n was seen (in case it never is defined).
Craig Topper2617dcc2014-04-15 06:32:26 +00001820 if (!Entry.first) {
Chris Lattner335d3992011-08-12 18:06:37 +00001821 Entry.first = StructType::create(Context, Lex.getStrVal());
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001822 Entry.second = Lex.getLoc();
Chris Lattnerac161bf2009-01-02 07:01:27 +00001823 }
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001824 Result = Entry.first;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001825 Lex.Lex();
1826 break;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001827 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001828
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001829 case lltok::LocalVarID: {
1830 // Type ::= %4
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001831 std::pair<Type*, LocTy> &Entry = NumberedTypes[Lex.getUIntVal()];
Michael Ilseman26ee2b82012-11-15 22:34:00 +00001832
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001833 // If the type hasn't been defined yet, create a forward definition and
1834 // remember where that forward def'n was seen (in case it never is defined).
Craig Topper2617dcc2014-04-15 06:32:26 +00001835 if (!Entry.first) {
Chris Lattner335d3992011-08-12 18:06:37 +00001836 Entry.first = StructType::create(Context);
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001837 Entry.second = Lex.getLoc();
Chris Lattnerac161bf2009-01-02 07:01:27 +00001838 }
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001839 Result = Entry.first;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001840 Lex.Lex();
1841 break;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001842 }
1843 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001844
1845 // Parse the type suffixes.
Chris Lattnerac161bf2009-01-02 07:01:27 +00001846 while (1) {
1847 switch (Lex.getKind()) {
1848 // End of type.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001849 default:
1850 if (!AllowVoid && Result->isVoidTy())
1851 return Error(TypeLoc, "void type only allowed for function results");
1852 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001853
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001854 // Type ::= Type '*'
Chris Lattnerac161bf2009-01-02 07:01:27 +00001855 case lltok::star:
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001856 if (Result->isLabelTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00001857 return TokError("basic block pointers are invalid");
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001858 if (Result->isVoidTy())
1859 return TokError("pointers to void are invalid - use i8* instead");
1860 if (!PointerType::isValidElementType(Result))
Nick Lewycky0aa6a742009-06-07 07:26:46 +00001861 return TokError("pointer to this type is invalid");
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001862 Result = PointerType::getUnqual(Result);
Chris Lattnerac161bf2009-01-02 07:01:27 +00001863 Lex.Lex();
1864 break;
1865
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001866 // Type ::= Type 'addrspace' '(' uint32 ')' '*'
Chris Lattnerac161bf2009-01-02 07:01:27 +00001867 case lltok::kw_addrspace: {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001868 if (Result->isLabelTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00001869 return TokError("basic block pointers are invalid");
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001870 if (Result->isVoidTy())
Dan Gohman9280a682009-02-09 17:41:21 +00001871 return TokError("pointers to void are invalid; use i8* instead");
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001872 if (!PointerType::isValidElementType(Result))
Nick Lewycky0aa6a742009-06-07 07:26:46 +00001873 return TokError("pointer to this type is invalid");
Chris Lattnerac161bf2009-01-02 07:01:27 +00001874 unsigned AddrSpace;
1875 if (ParseOptionalAddrSpace(AddrSpace) ||
1876 ParseToken(lltok::star, "expected '*' in address space"))
1877 return true;
1878
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001879 Result = PointerType::get(Result, AddrSpace);
Chris Lattnerac161bf2009-01-02 07:01:27 +00001880 break;
1881 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001882
Chris Lattnerac161bf2009-01-02 07:01:27 +00001883 /// Types '(' ArgTypeListI ')' OptFuncAttrs
1884 case lltok::lparen:
1885 if (ParseFunctionType(Result))
1886 return true;
1887 break;
1888 }
1889 }
1890}
1891
1892/// ParseParameterList
1893/// ::= '(' ')'
1894/// ::= '(' Arg (',' Arg)* ')'
1895/// Arg
1896/// ::= Type OptionalAttributes Value OptionalAttributes
1897bool LLParser::ParseParameterList(SmallVectorImpl<ParamInfo> &ArgList,
Reid Kleckner83498642014-08-26 00:33:28 +00001898 PerFunctionState &PFS, bool IsMustTailCall,
1899 bool InVarArgsFunc) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00001900 if (ParseToken(lltok::lparen, "expected '(' in call"))
1901 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001902
Bill Wendlingfe0021a2013-01-31 00:29:54 +00001903 unsigned AttrIndex = 1;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001904 while (Lex.getKind() != lltok::rparen) {
1905 // If this isn't the first argument, we need a comma.
1906 if (!ArgList.empty() &&
1907 ParseToken(lltok::comma, "expected ',' in argument list"))
1908 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001909
Reid Kleckner83498642014-08-26 00:33:28 +00001910 // Parse an ellipsis if this is a musttail call in a variadic function.
1911 if (Lex.getKind() == lltok::dotdotdot) {
1912 const char *Msg = "unexpected ellipsis in argument list for ";
1913 if (!IsMustTailCall)
1914 return TokError(Twine(Msg) + "non-musttail call");
1915 if (!InVarArgsFunc)
1916 return TokError(Twine(Msg) + "musttail call in non-varargs function");
1917 Lex.Lex(); // Lex the '...', it is purely for readability.
1918 return ParseToken(lltok::rparen, "expected ')' at end of argument list");
1919 }
1920
Chris Lattnerac161bf2009-01-02 07:01:27 +00001921 // Parse the argument.
1922 LocTy ArgLoc;
Craig Topper2617dcc2014-04-15 06:32:26 +00001923 Type *ArgTy = nullptr;
Bill Wendling50d27842012-10-15 20:35:56 +00001924 AttrBuilder ArgAttrs;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001925 Value *V;
Victor Hernandezfa232232009-12-03 23:40:58 +00001926 if (ParseType(ArgTy, ArgLoc))
Chris Lattnerac161bf2009-01-02 07:01:27 +00001927 return true;
Victor Hernandezfa232232009-12-03 23:40:58 +00001928
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00001929 if (ArgTy->isMetadataTy()) {
1930 if (ParseMetadataAsValue(V, PFS))
1931 return true;
1932 } else {
1933 // Otherwise, handle normal operands.
1934 if (ParseOptionalParamAttrs(ArgAttrs) || ParseValue(ArgTy, V, PFS))
1935 return true;
1936 }
Bill Wendlingfe0021a2013-01-31 00:29:54 +00001937 ArgList.push_back(ParamInfo(ArgLoc, V, AttributeSet::get(V->getContext(),
1938 AttrIndex++,
1939 ArgAttrs)));
Chris Lattnerac161bf2009-01-02 07:01:27 +00001940 }
1941
Reid Kleckner83498642014-08-26 00:33:28 +00001942 if (IsMustTailCall && InVarArgsFunc)
1943 return TokError("expected '...' at end of argument list for musttail call "
1944 "in varargs function");
1945
Chris Lattnerac161bf2009-01-02 07:01:27 +00001946 Lex.Lex(); // Lex the ')'.
1947 return false;
1948}
1949
Sanjoy Dasb513a9f2015-09-24 23:34:52 +00001950/// ParseOptionalOperandBundles
1951/// ::= /*empty*/
1952/// ::= '[' OperandBundle [, OperandBundle ]* ']'
1953///
1954/// OperandBundle
1955/// ::= bundle-tag '(' ')'
1956/// ::= bundle-tag '(' Type Value [, Type Value ]* ')'
1957///
1958/// bundle-tag ::= String Constant
1959bool LLParser::ParseOptionalOperandBundles(
1960 SmallVectorImpl<OperandBundleDef> &BundleList, PerFunctionState &PFS) {
1961 LocTy BeginLoc = Lex.getLoc();
1962 if (!EatIfPresent(lltok::lsquare))
1963 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001964
Sanjoy Dasb513a9f2015-09-24 23:34:52 +00001965 while (Lex.getKind() != lltok::rsquare) {
1966 // If this isn't the first operand bundle, we need a comma.
1967 if (!BundleList.empty() &&
1968 ParseToken(lltok::comma, "expected ',' in input list"))
1969 return true;
1970
1971 std::string Tag;
1972 if (ParseStringConstant(Tag))
1973 return true;
1974
Sanjoy Dasb513a9f2015-09-24 23:34:52 +00001975 if (ParseToken(lltok::lparen, "expected '(' in operand bundle"))
1976 return true;
1977
Sanjoy Dasf79d3442015-11-18 08:30:07 +00001978 std::vector<Value *> Inputs;
Sanjoy Dasb513a9f2015-09-24 23:34:52 +00001979 while (Lex.getKind() != lltok::rparen) {
1980 // If this isn't the first input, we need a comma.
Sanjoy Dasf79d3442015-11-18 08:30:07 +00001981 if (!Inputs.empty() &&
Sanjoy Dasb513a9f2015-09-24 23:34:52 +00001982 ParseToken(lltok::comma, "expected ',' in input list"))
1983 return true;
1984
1985 Type *Ty = nullptr;
1986 Value *Input = nullptr;
1987 if (ParseType(Ty) || ParseValue(Ty, Input, PFS))
1988 return true;
Sanjoy Dasf79d3442015-11-18 08:30:07 +00001989 Inputs.push_back(Input);
Sanjoy Dasb513a9f2015-09-24 23:34:52 +00001990 }
1991
Sanjoy Dasf79d3442015-11-18 08:30:07 +00001992 BundleList.emplace_back(std::move(Tag), std::move(Inputs));
1993
Sanjoy Dasb513a9f2015-09-24 23:34:52 +00001994 Lex.Lex(); // Lex the ')'.
1995 }
1996
1997 if (BundleList.empty())
1998 return Error(BeginLoc, "operand bundle set must not be empty");
1999
2000 Lex.Lex(); // Lex the ']'.
2001 return false;
2002}
Chris Lattnerac161bf2009-01-02 07:01:27 +00002003
Chris Lattner2ed06b42009-01-05 18:34:07 +00002004/// ParseArgumentList - Parse the argument list for a function type or function
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002005/// prototype.
Chris Lattnerac161bf2009-01-02 07:01:27 +00002006/// ::= '(' ArgTypeListI ')'
2007/// ArgTypeListI
2008/// ::= /*empty*/
2009/// ::= '...'
2010/// ::= ArgTypeList ',' '...'
2011/// ::= ArgType (',' ArgType)*
Chris Lattner2ed06b42009-01-05 18:34:07 +00002012///
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002013bool LLParser::ParseArgumentList(SmallVectorImpl<ArgInfo> &ArgList,
2014 bool &isVarArg){
Chris Lattnerac161bf2009-01-02 07:01:27 +00002015 isVarArg = false;
2016 assert(Lex.getKind() == lltok::lparen);
2017 Lex.Lex(); // eat the (.
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002018
Chris Lattnerac161bf2009-01-02 07:01:27 +00002019 if (Lex.getKind() == lltok::rparen) {
2020 // empty
2021 } else if (Lex.getKind() == lltok::dotdotdot) {
2022 isVarArg = true;
2023 Lex.Lex();
2024 } else {
2025 LocTy TypeLoc = Lex.getLoc();
Craig Topper2617dcc2014-04-15 06:32:26 +00002026 Type *ArgTy = nullptr;
Bill Wendling50d27842012-10-15 20:35:56 +00002027 AttrBuilder Attrs;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002028 std::string Name;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002029
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002030 if (ParseType(ArgTy) ||
Bill Wendling34c2eb22012-12-04 23:40:58 +00002031 ParseOptionalParamAttrs(Attrs)) return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002032
Chris Lattnerfdd87902009-10-05 05:54:46 +00002033 if (ArgTy->isVoidTy())
Chris Lattnerf880ca22009-03-09 04:49:14 +00002034 return Error(TypeLoc, "argument can not have void type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002035
Chris Lattnerdef19492011-06-17 06:36:20 +00002036 if (Lex.getKind() == lltok::LocalVar) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002037 Name = Lex.getStrVal();
2038 Lex.Lex();
2039 }
Chris Lattner3822f632009-01-02 08:05:26 +00002040
Nick Lewycky0aa6a742009-06-07 07:26:46 +00002041 if (!FunctionType::isValidArgumentType(ArgTy))
Chris Lattner3822f632009-01-02 08:05:26 +00002042 return Error(TypeLoc, "invalid type for function argument");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002043
Bill Wendlingfe0021a2013-01-31 00:29:54 +00002044 unsigned AttrIndex = 1;
Benjamin Kramerf5e2fc42015-05-29 19:43:39 +00002045 ArgList.emplace_back(TypeLoc, ArgTy, AttributeSet::get(ArgTy->getContext(),
2046 AttrIndex++, Attrs),
2047 std::move(Name));
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002048
Chris Lattner3822f632009-01-02 08:05:26 +00002049 while (EatIfPresent(lltok::comma)) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002050 // Handle ... at end of arg list.
Chris Lattner3822f632009-01-02 08:05:26 +00002051 if (EatIfPresent(lltok::dotdotdot)) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002052 isVarArg = true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002053 break;
2054 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002055
Chris Lattnerac161bf2009-01-02 07:01:27 +00002056 // Otherwise must be an argument type.
2057 TypeLoc = Lex.getLoc();
Bill Wendling34c2eb22012-12-04 23:40:58 +00002058 if (ParseType(ArgTy) || ParseOptionalParamAttrs(Attrs)) return true;
Chris Lattner3822f632009-01-02 08:05:26 +00002059
Chris Lattnerfdd87902009-10-05 05:54:46 +00002060 if (ArgTy->isVoidTy())
Chris Lattnerf880ca22009-03-09 04:49:14 +00002061 return Error(TypeLoc, "argument can not have void type");
2062
Chris Lattnerdef19492011-06-17 06:36:20 +00002063 if (Lex.getKind() == lltok::LocalVar) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002064 Name = Lex.getStrVal();
2065 Lex.Lex();
2066 } else {
2067 Name = "";
2068 }
Chris Lattner3822f632009-01-02 08:05:26 +00002069
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002070 if (!ArgTy->isFirstClassType())
Chris Lattner3822f632009-01-02 08:05:26 +00002071 return Error(TypeLoc, "invalid type for function argument");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002072
Benjamin Kramerf5e2fc42015-05-29 19:43:39 +00002073 ArgList.emplace_back(
2074 TypeLoc, ArgTy,
2075 AttributeSet::get(ArgTy->getContext(), AttrIndex++, Attrs),
2076 std::move(Name));
Chris Lattnerac161bf2009-01-02 07:01:27 +00002077 }
2078 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002079
Chris Lattner3822f632009-01-02 08:05:26 +00002080 return ParseToken(lltok::rparen, "expected ')' at end of argument list");
Chris Lattnerac161bf2009-01-02 07:01:27 +00002081}
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002082
Chris Lattnerac161bf2009-01-02 07:01:27 +00002083/// ParseFunctionType
2084/// ::= Type ArgumentList OptionalAttrs
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002085bool LLParser::ParseFunctionType(Type *&Result) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002086 assert(Lex.getKind() == lltok::lparen);
2087
Chris Lattnerce473c72009-01-05 08:04:33 +00002088 if (!FunctionType::isValidReturnType(Result))
2089 return TokError("invalid function return type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002090
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002091 SmallVector<ArgInfo, 8> ArgList;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002092 bool isVarArg;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002093 if (ParseArgumentList(ArgList, isVarArg))
Chris Lattnerac161bf2009-01-02 07:01:27 +00002094 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002095
Chris Lattnerac161bf2009-01-02 07:01:27 +00002096 // Reject names on the arguments lists.
2097 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
2098 if (!ArgList[i].Name.empty())
2099 return Error(ArgList[i].Loc, "argument name invalid in function type");
Bill Wendlingfe0021a2013-01-31 00:29:54 +00002100 if (ArgList[i].Attrs.hasAttributes(i + 1))
Chris Lattner6bc5c892011-06-17 17:37:13 +00002101 return Error(ArgList[i].Loc,
2102 "argument attributes invalid in function type");
Chris Lattnerac161bf2009-01-02 07:01:27 +00002103 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002104
Jay Foadb804a2b2011-07-12 14:06:48 +00002105 SmallVector<Type*, 16> ArgListTy;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002106 for (unsigned i = 0, e = ArgList.size(); i != e; ++i)
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002107 ArgListTy.push_back(ArgList[i].Ty);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002108
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002109 Result = FunctionType::get(Result, ArgListTy, isVarArg);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002110 return false;
2111}
2112
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002113/// ParseAnonStructType - Parse an anonymous struct type, which is inlined into
2114/// other structs.
2115bool LLParser::ParseAnonStructType(Type *&Result, bool Packed) {
2116 SmallVector<Type*, 8> Elts;
2117 if (ParseStructBody(Elts)) return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002118
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002119 Result = StructType::get(Context, Elts, Packed);
2120 return false;
2121}
2122
2123/// ParseStructDefinition - Parse a struct in a 'type' definition.
2124bool LLParser::ParseStructDefinition(SMLoc TypeLoc, StringRef Name,
2125 std::pair<Type*, LocTy> &Entry,
2126 Type *&ResultTy) {
2127 // If the type was already defined, diagnose the redefinition.
2128 if (Entry.first && !Entry.second.isValid())
2129 return Error(TypeLoc, "redefinition of type");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002130
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002131 // If we have opaque, just return without filling in the definition for the
2132 // struct. This counts as a definition as far as the .ll file goes.
2133 if (EatIfPresent(lltok::kw_opaque)) {
2134 // This type is being defined, so clear the location to indicate this.
2135 Entry.second = SMLoc();
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002136
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002137 // If this type number has never been uttered, create it.
Craig Topper2617dcc2014-04-15 06:32:26 +00002138 if (!Entry.first)
Chris Lattner335d3992011-08-12 18:06:37 +00002139 Entry.first = StructType::create(Context, Name);
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002140 ResultTy = Entry.first;
2141 return false;
2142 }
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002143
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002144 // If the type starts with '<', then it is either a packed struct or a vector.
2145 bool isPacked = EatIfPresent(lltok::less);
2146
2147 // If we don't have a struct, then we have a random type alias, which we
2148 // accept for compatibility with old files. These types are not allowed to be
2149 // forward referenced and not allowed to be recursive.
2150 if (Lex.getKind() != lltok::lbrace) {
2151 if (Entry.first)
2152 return Error(TypeLoc, "forward references to non-struct type");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002153
Craig Topper2617dcc2014-04-15 06:32:26 +00002154 ResultTy = nullptr;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002155 if (isPacked)
2156 return ParseArrayVectorType(ResultTy, true);
2157 return ParseType(ResultTy);
2158 }
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002159
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002160 // This type is being defined, so clear the location to indicate this.
2161 Entry.second = SMLoc();
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002162
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002163 // If this type number has never been uttered, create it.
Craig Topper2617dcc2014-04-15 06:32:26 +00002164 if (!Entry.first)
Chris Lattner335d3992011-08-12 18:06:37 +00002165 Entry.first = StructType::create(Context, Name);
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002166
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002167 StructType *STy = cast<StructType>(Entry.first);
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002168
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002169 SmallVector<Type*, 8> Body;
2170 if (ParseStructBody(Body) ||
2171 (isPacked && ParseToken(lltok::greater, "expected '>' in packed struct")))
2172 return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002173
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002174 STy->setBody(Body, isPacked);
2175 ResultTy = STy;
2176 return false;
2177}
2178
2179
Chris Lattnerac161bf2009-01-02 07:01:27 +00002180/// ParseStructType: Handles packed and unpacked types. </> parsed elsewhere.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002181/// StructType
Chris Lattnerac161bf2009-01-02 07:01:27 +00002182/// ::= '{' '}'
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002183/// ::= '{' Type (',' Type)* '}'
Chris Lattnerac161bf2009-01-02 07:01:27 +00002184/// ::= '<' '{' '}' '>'
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002185/// ::= '<' '{' Type (',' Type)* '}' '>'
2186bool LLParser::ParseStructBody(SmallVectorImpl<Type*> &Body) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002187 assert(Lex.getKind() == lltok::lbrace);
2188 Lex.Lex(); // Consume the '{'
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002189
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002190 // Handle the empty struct.
2191 if (EatIfPresent(lltok::rbrace))
Chris Lattnerac161bf2009-01-02 07:01:27 +00002192 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002193
Chris Lattnerf880ca22009-03-09 04:49:14 +00002194 LocTy EltTyLoc = Lex.getLoc();
Craig Topper2617dcc2014-04-15 06:32:26 +00002195 Type *Ty = nullptr;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002196 if (ParseType(Ty)) return true;
2197 Body.push_back(Ty);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002198
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002199 if (!StructType::isValidElementType(Ty))
Nick Lewycky0aa6a742009-06-07 07:26:46 +00002200 return Error(EltTyLoc, "invalid element type for struct");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002201
Chris Lattner3822f632009-01-02 08:05:26 +00002202 while (EatIfPresent(lltok::comma)) {
Chris Lattnerf880ca22009-03-09 04:49:14 +00002203 EltTyLoc = Lex.getLoc();
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002204 if (ParseType(Ty)) return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002205
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002206 if (!StructType::isValidElementType(Ty))
Nick Lewycky0aa6a742009-06-07 07:26:46 +00002207 return Error(EltTyLoc, "invalid element type for struct");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002208
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002209 Body.push_back(Ty);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002210 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002211
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002212 return ParseToken(lltok::rbrace, "expected '}' at end of struct");
Chris Lattnerac161bf2009-01-02 07:01:27 +00002213}
2214
2215/// ParseArrayVectorType - Parse an array or vector type, assuming the first
2216/// token has already been consumed.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002217/// Type
Chris Lattnerac161bf2009-01-02 07:01:27 +00002218/// ::= '[' APSINTVAL 'x' Types ']'
2219/// ::= '<' APSINTVAL 'x' Types '>'
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002220bool LLParser::ParseArrayVectorType(Type *&Result, bool isVector) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002221 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned() ||
2222 Lex.getAPSIntVal().getBitWidth() > 64)
2223 return TokError("expected number in address space");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002224
Chris Lattnerac161bf2009-01-02 07:01:27 +00002225 LocTy SizeLoc = Lex.getLoc();
2226 uint64_t Size = Lex.getAPSIntVal().getZExtValue();
Chris Lattner3822f632009-01-02 08:05:26 +00002227 Lex.Lex();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002228
Chris Lattner3822f632009-01-02 08:05:26 +00002229 if (ParseToken(lltok::kw_x, "expected 'x' after element count"))
2230 return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002231
2232 LocTy TypeLoc = Lex.getLoc();
Craig Topper2617dcc2014-04-15 06:32:26 +00002233 Type *EltTy = nullptr;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002234 if (ParseType(EltTy)) return true;
Chris Lattnerf880ca22009-03-09 04:49:14 +00002235
Chris Lattner3822f632009-01-02 08:05:26 +00002236 if (ParseToken(isVector ? lltok::greater : lltok::rsquare,
2237 "expected end of sequential type"))
2238 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002239
Chris Lattnerac161bf2009-01-02 07:01:27 +00002240 if (isVector) {
Chris Lattnerbb1fe8a2009-02-28 18:12:41 +00002241 if (Size == 0)
2242 return Error(SizeLoc, "zero element vector is illegal");
Chris Lattnerac161bf2009-01-02 07:01:27 +00002243 if ((unsigned)Size != Size)
2244 return Error(SizeLoc, "size too large for vector");
Nick Lewycky0aa6a742009-06-07 07:26:46 +00002245 if (!VectorType::isValidElementType(EltTy))
Duncan Sandse6beec62012-11-13 12:59:33 +00002246 return Error(TypeLoc, "invalid vector element type");
Owen Anderson4056ca92009-07-29 22:17:13 +00002247 Result = VectorType::get(EltTy, unsigned(Size));
Chris Lattnerac161bf2009-01-02 07:01:27 +00002248 } else {
Nick Lewycky0aa6a742009-06-07 07:26:46 +00002249 if (!ArrayType::isValidElementType(EltTy))
Chris Lattnerac161bf2009-01-02 07:01:27 +00002250 return Error(TypeLoc, "invalid array element type");
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002251 Result = ArrayType::get(EltTy, Size);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002252 }
2253 return false;
2254}
2255
2256//===----------------------------------------------------------------------===//
2257// Function Semantic Analysis.
2258//===----------------------------------------------------------------------===//
2259
Chris Lattner3432c622009-10-28 03:39:23 +00002260LLParser::PerFunctionState::PerFunctionState(LLParser &p, Function &f,
2261 int functionNumber)
2262 : P(p), F(f), FunctionNumber(functionNumber) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002263
2264 // Insert unnamed arguments into the NumberedVals list.
Duncan P. N. Exon Smithac331fb2015-10-20 01:12:49 +00002265 for (Argument &A : F.args())
2266 if (!A.hasName())
2267 NumberedVals.push_back(&A);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002268}
2269
2270LLParser::PerFunctionState::~PerFunctionState() {
2271 // If there were any forward referenced non-basicblock values, delete them.
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002272
David Blaikie9ebdc692015-09-21 21:07:50 +00002273 for (const auto &P : ForwardRefVals) {
2274 if (isa<BasicBlock>(P.second.first))
2275 continue;
2276 P.second.first->replaceAllUsesWith(
2277 UndefValue::get(P.second.first->getType()));
2278 delete P.second.first;
2279 }
2280
2281 for (const auto &P : ForwardRefValIDs) {
2282 if (isa<BasicBlock>(P.second.first))
2283 continue;
2284 P.second.first->replaceAllUsesWith(
2285 UndefValue::get(P.second.first->getType()));
2286 delete P.second.first;
2287 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00002288}
2289
Chris Lattner3432c622009-10-28 03:39:23 +00002290bool LLParser::PerFunctionState::FinishFunction() {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002291 if (!ForwardRefVals.empty())
2292 return P.Error(ForwardRefVals.begin()->second.second,
2293 "use of undefined value '%" + ForwardRefVals.begin()->first +
2294 "'");
2295 if (!ForwardRefValIDs.empty())
2296 return P.Error(ForwardRefValIDs.begin()->second.second,
2297 "use of undefined value '%" +
Benjamin Kramerc7583112010-09-27 17:42:11 +00002298 Twine(ForwardRefValIDs.begin()->first) + "'");
Chris Lattnerac161bf2009-01-02 07:01:27 +00002299 return false;
2300}
2301
2302
2303/// GetVal - Get a value with the specified name or ID, creating a
2304/// forward reference record if needed. This can return null if the value
2305/// exists but does not have the right type.
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00002306Value *LLParser::PerFunctionState::GetVal(const std::string &Name, Type *Ty,
2307 LocTy Loc, OperatorConstraint OC) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002308 // Look this name up in the normal function symbol table.
2309 Value *Val = F.getValueSymbolTable().lookup(Name);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002310
Chris Lattnerac161bf2009-01-02 07:01:27 +00002311 // If this is a forward reference for the value, see if we already created a
2312 // forward ref record.
Craig Topper2617dcc2014-04-15 06:32:26 +00002313 if (!Val) {
David Blaikie9ebdc692015-09-21 21:07:50 +00002314 auto I = ForwardRefVals.find(Name);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002315 if (I != ForwardRefVals.end())
2316 Val = I->second.first;
2317 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002318
Chris Lattnerac161bf2009-01-02 07:01:27 +00002319 // If we have the value in the symbol table or fwd-ref table, return it.
2320 if (Val) {
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00002321 // Check operator constraints.
2322 switch (OC) {
2323 case OC_None:
2324 // no constraint
2325 break;
2326 case OC_CatchPad:
2327 if (!isa<CatchPadInst>(Val)) {
2328 P.Error(Loc, "'%" + Name + "' is not a catchpad");
2329 return nullptr;
2330 }
2331 break;
2332 case OC_CleanupPad:
2333 if (!isa<CleanupPadInst>(Val)) {
2334 P.Error(Loc, "'%" + Name + "' is not a cleanuppad");
2335 return nullptr;
2336 }
2337 break;
2338 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00002339 if (Val->getType() == Ty) return Val;
Chris Lattnerfdd87902009-10-05 05:54:46 +00002340 if (Ty->isLabelTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00002341 P.Error(Loc, "'%" + Name + "' is not a basic block");
2342 else
2343 P.Error(Loc, "'%" + Name + "' defined with type '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00002344 getTypeString(Val->getType()) + "'");
Craig Topper2617dcc2014-04-15 06:32:26 +00002345 return nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002346 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002347
Chris Lattnerac161bf2009-01-02 07:01:27 +00002348 // Don't make placeholders with invalid type.
Duncan P. N. Exon Smith6a6e9cb2014-08-05 18:22:58 +00002349 if (!Ty->isFirstClassType()) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002350 P.Error(Loc, "invalid use of a non-first-class type");
Craig Topper2617dcc2014-04-15 06:32:26 +00002351 return nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002352 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002353
Chris Lattnerac161bf2009-01-02 07:01:27 +00002354 // Otherwise, create a new forward reference for this value and remember it.
2355 Value *FwdVal;
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00002356 if (Ty->isLabelTy()) {
2357 assert(!OC);
Owen Anderson55f1c092009-08-13 21:58:54 +00002358 FwdVal = BasicBlock::Create(F.getContext(), Name, &F);
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00002359 } else if (!OC) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002360 FwdVal = new Argument(Ty, Name);
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00002361 } else {
2362 switch (OC) {
2363 case OC_CatchPad:
2364 FwdVal = CatchPadInst::Create(&F.getEntryBlock(), &F.getEntryBlock(), {},
2365 Name);
2366 break;
2367 case OC_CleanupPad:
2368 FwdVal = CleanupPadInst::Create(F.getContext(), {}, Name);
2369 break;
2370 default:
2371 llvm_unreachable("unexpected constraint");
2372 }
2373 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002374
Chris Lattnerac161bf2009-01-02 07:01:27 +00002375 ForwardRefVals[Name] = std::make_pair(FwdVal, Loc);
2376 return FwdVal;
2377}
2378
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00002379Value *LLParser::PerFunctionState::GetVal(unsigned ID, Type *Ty, LocTy Loc,
2380 OperatorConstraint OC) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002381 // Look this name up in the normal function symbol table.
Craig Topper2617dcc2014-04-15 06:32:26 +00002382 Value *Val = ID < NumberedVals.size() ? NumberedVals[ID] : nullptr;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002383
Chris Lattnerac161bf2009-01-02 07:01:27 +00002384 // If this is a forward reference for the value, see if we already created a
2385 // forward ref record.
Craig Topper2617dcc2014-04-15 06:32:26 +00002386 if (!Val) {
David Blaikie9ebdc692015-09-21 21:07:50 +00002387 auto I = ForwardRefValIDs.find(ID);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002388 if (I != ForwardRefValIDs.end())
2389 Val = I->second.first;
2390 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002391
Chris Lattnerac161bf2009-01-02 07:01:27 +00002392 // If we have the value in the symbol table or fwd-ref table, return it.
2393 if (Val) {
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00002394 // Check operator constraint.
2395 switch (OC) {
2396 case OC_None:
2397 // no constraint
2398 break;
2399 case OC_CatchPad:
2400 if (!isa<CatchPadInst>(Val)) {
2401 P.Error(Loc, "'%" + Twine(ID) + "' is not a catchpad");
2402 return nullptr;
2403 }
2404 break;
2405 case OC_CleanupPad:
2406 if (!isa<CleanupPadInst>(Val)) {
2407 P.Error(Loc, "'%" + Twine(ID) + "' is not a cleanuppad");
2408 return nullptr;
2409 }
2410 break;
2411 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00002412 if (Val->getType() == Ty) return Val;
Chris Lattnerfdd87902009-10-05 05:54:46 +00002413 if (Ty->isLabelTy())
Benjamin Kramerc7583112010-09-27 17:42:11 +00002414 P.Error(Loc, "'%" + Twine(ID) + "' is not a basic block");
Chris Lattnerac161bf2009-01-02 07:01:27 +00002415 else
Benjamin Kramerc7583112010-09-27 17:42:11 +00002416 P.Error(Loc, "'%" + Twine(ID) + "' defined with type '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00002417 getTypeString(Val->getType()) + "'");
Craig Topper2617dcc2014-04-15 06:32:26 +00002418 return nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002419 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002420
Duncan P. N. Exon Smith6a6e9cb2014-08-05 18:22:58 +00002421 if (!Ty->isFirstClassType()) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002422 P.Error(Loc, "invalid use of a non-first-class type");
Craig Topper2617dcc2014-04-15 06:32:26 +00002423 return nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002424 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002425
Chris Lattnerac161bf2009-01-02 07:01:27 +00002426 // Otherwise, create a new forward reference for this value and remember it.
2427 Value *FwdVal;
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00002428 if (Ty->isLabelTy()) {
2429 assert(!OC);
Owen Anderson55f1c092009-08-13 21:58:54 +00002430 FwdVal = BasicBlock::Create(F.getContext(), "", &F);
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00002431 } else if (!OC) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002432 FwdVal = new Argument(Ty);
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00002433 } else {
2434 switch (OC) {
2435 case OC_CatchPad:
2436 FwdVal = CatchPadInst::Create(&F.getEntryBlock(), &F.getEntryBlock(), {});
2437 break;
2438 case OC_CleanupPad:
2439 FwdVal = CleanupPadInst::Create(F.getContext(), {});
2440 break;
2441 default:
2442 llvm_unreachable("unexpected constraint");
2443 }
2444 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002445
Chris Lattnerac161bf2009-01-02 07:01:27 +00002446 ForwardRefValIDs[ID] = std::make_pair(FwdVal, Loc);
2447 return FwdVal;
2448}
2449
2450/// SetInstName - After an instruction is parsed and inserted into its
2451/// basic block, this installs its name.
2452bool LLParser::PerFunctionState::SetInstName(int NameID,
2453 const std::string &NameStr,
2454 LocTy NameLoc, Instruction *Inst) {
2455 // If this instruction has void type, it cannot have a name or ID specified.
Chris Lattnerfdd87902009-10-05 05:54:46 +00002456 if (Inst->getType()->isVoidTy()) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002457 if (NameID != -1 || !NameStr.empty())
2458 return P.Error(NameLoc, "instructions returning void cannot have a name");
2459 return false;
2460 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002461
Chris Lattnerac161bf2009-01-02 07:01:27 +00002462 // If this was a numbered instruction, verify that the instruction is the
2463 // expected value and resolve any forward references.
2464 if (NameStr.empty()) {
2465 // If neither a name nor an ID was specified, just use the next ID.
2466 if (NameID == -1)
2467 NameID = NumberedVals.size();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002468
Chris Lattnerac161bf2009-01-02 07:01:27 +00002469 if (unsigned(NameID) != NumberedVals.size())
2470 return P.Error(NameLoc, "instruction expected to be numbered '%" +
Benjamin Kramerc7583112010-09-27 17:42:11 +00002471 Twine(NumberedVals.size()) + "'");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002472
David Blaikie9ebdc692015-09-21 21:07:50 +00002473 auto FI = ForwardRefValIDs.find(NameID);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002474 if (FI != ForwardRefValIDs.end()) {
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00002475 Value *Sentinel = FI->second.first;
2476 if (Sentinel->getType() != Inst->getType())
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002477 return P.Error(NameLoc, "instruction forward referenced with type '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00002478 getTypeString(FI->second.first->getType()) + "'");
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00002479 // Check operator constraints. We only put cleanuppads or catchpads in
2480 // the forward value map if the value is constrained to match.
2481 if (isa<CatchPadInst>(Sentinel)) {
2482 if (!isa<CatchPadInst>(Inst))
2483 return P.Error(FI->second.second,
2484 "'%" + Twine(NameID) + "' is not a catchpad");
2485 } else if (isa<CleanupPadInst>(Sentinel)) {
2486 if (!isa<CleanupPadInst>(Inst))
2487 return P.Error(FI->second.second,
2488 "'%" + Twine(NameID) + "' is not a cleanuppad");
2489 }
2490
2491 Sentinel->replaceAllUsesWith(Inst);
2492 delete Sentinel;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002493 ForwardRefValIDs.erase(FI);
2494 }
2495
2496 NumberedVals.push_back(Inst);
2497 return false;
2498 }
2499
2500 // Otherwise, the instruction had a name. Resolve forward refs and set it.
David Blaikie9ebdc692015-09-21 21:07:50 +00002501 auto FI = ForwardRefVals.find(NameStr);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002502 if (FI != ForwardRefVals.end()) {
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00002503 Value *Sentinel = FI->second.first;
2504 if (Sentinel->getType() != Inst->getType())
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002505 return P.Error(NameLoc, "instruction forward referenced with type '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00002506 getTypeString(FI->second.first->getType()) + "'");
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00002507 // Check operator constraints. We only put cleanuppads or catchpads in
2508 // the forward value map if the value is constrained to match.
2509 if (isa<CatchPadInst>(Sentinel)) {
2510 if (!isa<CatchPadInst>(Inst))
2511 return P.Error(FI->second.second,
2512 "'%" + NameStr + "' is not a catchpad");
2513 } else if (isa<CleanupPadInst>(Sentinel)) {
2514 if (!isa<CleanupPadInst>(Inst))
2515 return P.Error(FI->second.second,
2516 "'%" + NameStr + "' is not a cleanuppad");
2517 }
2518
2519 Sentinel->replaceAllUsesWith(Inst);
2520 delete Sentinel;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002521 ForwardRefVals.erase(FI);
2522 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002523
Chris Lattnerac161bf2009-01-02 07:01:27 +00002524 // Set the name on the instruction.
2525 Inst->setName(NameStr);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002526
Benjamin Kramer1dc34b42010-10-16 11:28:23 +00002527 if (Inst->getName() != NameStr)
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002528 return P.Error(NameLoc, "multiple definition of local value named '" +
Chris Lattnerac161bf2009-01-02 07:01:27 +00002529 NameStr + "'");
2530 return false;
2531}
2532
2533/// GetBB - Get a basic block with the specified name or ID, creating a
2534/// forward reference record if needed.
2535BasicBlock *LLParser::PerFunctionState::GetBB(const std::string &Name,
2536 LocTy Loc) {
Owen Anderson576a9a22015-03-02 05:25:09 +00002537 return dyn_cast_or_null<BasicBlock>(GetVal(Name,
2538 Type::getLabelTy(F.getContext()), Loc));
Chris Lattnerac161bf2009-01-02 07:01:27 +00002539}
2540
2541BasicBlock *LLParser::PerFunctionState::GetBB(unsigned ID, LocTy Loc) {
Owen Anderson576a9a22015-03-02 05:25:09 +00002542 return dyn_cast_or_null<BasicBlock>(GetVal(ID,
2543 Type::getLabelTy(F.getContext()), Loc));
Chris Lattnerac161bf2009-01-02 07:01:27 +00002544}
2545
2546/// DefineBB - Define the specified basic block, which is either named or
2547/// unnamed. If there is an error, this returns null otherwise it returns
2548/// the block being defined.
2549BasicBlock *LLParser::PerFunctionState::DefineBB(const std::string &Name,
2550 LocTy Loc) {
2551 BasicBlock *BB;
2552 if (Name.empty())
2553 BB = GetBB(NumberedVals.size(), Loc);
2554 else
2555 BB = GetBB(Name, Loc);
Craig Topper2617dcc2014-04-15 06:32:26 +00002556 if (!BB) return nullptr; // Already diagnosed error.
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002557
Chris Lattnerac161bf2009-01-02 07:01:27 +00002558 // Move the block to the end of the function. Forward ref'd blocks are
2559 // inserted wherever they happen to be referenced.
2560 F.getBasicBlockList().splice(F.end(), F.getBasicBlockList(), BB);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002561
Chris Lattnerac161bf2009-01-02 07:01:27 +00002562 // Remove the block from forward ref sets.
2563 if (Name.empty()) {
2564 ForwardRefValIDs.erase(NumberedVals.size());
2565 NumberedVals.push_back(BB);
2566 } else {
2567 // BB forward references are already in the function symbol table.
2568 ForwardRefVals.erase(Name);
2569 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002570
Chris Lattnerac161bf2009-01-02 07:01:27 +00002571 return BB;
2572}
2573
2574//===----------------------------------------------------------------------===//
2575// Constants.
2576//===----------------------------------------------------------------------===//
2577
2578/// ParseValID - Parse an abstract value that doesn't necessarily have a
2579/// type implied. For example, if we parse "4" we don't know what integer type
2580/// it has. The value will later be combined with its type and checked for
Victor Hernandezb8fd1522010-01-10 07:14:18 +00002581/// sanity. PFS is used to convert function-local operands of metadata (since
2582/// metadata operands are not just parsed here but also converted to values).
2583/// PFS can be null when we are not parsing metadata values inside a function.
Victor Hernandezdc6e65a2010-01-05 22:22:14 +00002584bool LLParser::ParseValID(ValID &ID, PerFunctionState *PFS) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002585 ID.Loc = Lex.getLoc();
2586 switch (Lex.getKind()) {
2587 default: return TokError("expected value token");
2588 case lltok::GlobalID: // @42
2589 ID.UIntVal = Lex.getUIntVal();
2590 ID.Kind = ValID::t_GlobalID;
2591 break;
2592 case lltok::GlobalVar: // @foo
2593 ID.StrVal = Lex.getStrVal();
2594 ID.Kind = ValID::t_GlobalName;
2595 break;
2596 case lltok::LocalVarID: // %42
2597 ID.UIntVal = Lex.getUIntVal();
2598 ID.Kind = ValID::t_LocalID;
2599 break;
2600 case lltok::LocalVar: // %foo
Chris Lattnerac161bf2009-01-02 07:01:27 +00002601 ID.StrVal = Lex.getStrVal();
2602 ID.Kind = ValID::t_LocalName;
2603 break;
2604 case lltok::APSInt:
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002605 ID.APSIntVal = Lex.getAPSIntVal();
Chris Lattnerac161bf2009-01-02 07:01:27 +00002606 ID.Kind = ValID::t_APSInt;
2607 break;
2608 case lltok::APFloat:
2609 ID.APFloatVal = Lex.getAPFloatVal();
2610 ID.Kind = ValID::t_APFloat;
2611 break;
2612 case lltok::kw_true:
Owen Anderson23a204d2009-07-31 17:39:07 +00002613 ID.ConstantVal = ConstantInt::getTrue(Context);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002614 ID.Kind = ValID::t_Constant;
2615 break;
2616 case lltok::kw_false:
Owen Anderson23a204d2009-07-31 17:39:07 +00002617 ID.ConstantVal = ConstantInt::getFalse(Context);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002618 ID.Kind = ValID::t_Constant;
2619 break;
2620 case lltok::kw_null: ID.Kind = ValID::t_Null; break;
2621 case lltok::kw_undef: ID.Kind = ValID::t_Undef; break;
2622 case lltok::kw_zeroinitializer: ID.Kind = ValID::t_Zero; break;
David Majnemerf0f224d2015-11-11 21:57:16 +00002623 case lltok::kw_none: ID.Kind = ValID::t_None; break;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002624
Chris Lattnerac161bf2009-01-02 07:01:27 +00002625 case lltok::lbrace: {
2626 // ValID ::= '{' ConstVector '}'
2627 Lex.Lex();
2628 SmallVector<Constant*, 16> Elts;
2629 if (ParseGlobalValueVector(Elts) ||
2630 ParseToken(lltok::rbrace, "expected end of struct constant"))
2631 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002632
David Blaikieadbda4b2015-08-03 20:08:41 +00002633 ID.ConstantStructElts = make_unique<Constant *[]>(Elts.size());
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002634 ID.UIntVal = Elts.size();
David Blaikieadbda4b2015-08-03 20:08:41 +00002635 memcpy(ID.ConstantStructElts.get(), Elts.data(),
2636 Elts.size() * sizeof(Elts[0]));
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002637 ID.Kind = ValID::t_ConstantStruct;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002638 return false;
2639 }
2640 case lltok::less: {
2641 // ValID ::= '<' ConstVector '>' --> Vector.
2642 // ValID ::= '<' '{' ConstVector '}' '>' --> Packed Struct.
2643 Lex.Lex();
Chris Lattner3822f632009-01-02 08:05:26 +00002644 bool isPackedStruct = EatIfPresent(lltok::lbrace);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002645
Chris Lattnerac161bf2009-01-02 07:01:27 +00002646 SmallVector<Constant*, 16> Elts;
2647 LocTy FirstEltLoc = Lex.getLoc();
2648 if (ParseGlobalValueVector(Elts) ||
2649 (isPackedStruct &&
2650 ParseToken(lltok::rbrace, "expected end of packed struct")) ||
2651 ParseToken(lltok::greater, "expected end of constant"))
2652 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002653
Chris Lattnerac161bf2009-01-02 07:01:27 +00002654 if (isPackedStruct) {
David Blaikieadbda4b2015-08-03 20:08:41 +00002655 ID.ConstantStructElts = make_unique<Constant *[]>(Elts.size());
2656 memcpy(ID.ConstantStructElts.get(), Elts.data(),
2657 Elts.size() * sizeof(Elts[0]));
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002658 ID.UIntVal = Elts.size();
2659 ID.Kind = ValID::t_PackedConstantStruct;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002660 return false;
2661 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002662
Chris Lattnerac161bf2009-01-02 07:01:27 +00002663 if (Elts.empty())
2664 return Error(ID.Loc, "constant vector must not be empty");
2665
Duncan Sands9dff9be2010-02-15 16:12:20 +00002666 if (!Elts[0]->getType()->isIntegerTy() &&
Nadav Rotem3924cb02011-12-05 06:29:09 +00002667 !Elts[0]->getType()->isFloatingPointTy() &&
2668 !Elts[0]->getType()->isPointerTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00002669 return Error(FirstEltLoc,
Nadav Rotem3924cb02011-12-05 06:29:09 +00002670 "vector elements must have integer, pointer or floating point type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002671
Chris Lattnerac161bf2009-01-02 07:01:27 +00002672 // Verify that all the vector elements have the same type.
2673 for (unsigned i = 1, e = Elts.size(); i != e; ++i)
2674 if (Elts[i]->getType() != Elts[0]->getType())
2675 return Error(FirstEltLoc,
Benjamin Kramerc7583112010-09-27 17:42:11 +00002676 "vector element #" + Twine(i) +
Chris Lattner0f214eb2011-06-18 21:18:23 +00002677 " is not of type '" + getTypeString(Elts[0]->getType()));
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002678
Chris Lattner69229312011-02-15 00:14:00 +00002679 ID.ConstantVal = ConstantVector::get(Elts);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002680 ID.Kind = ValID::t_Constant;
2681 return false;
2682 }
2683 case lltok::lsquare: { // Array Constant
2684 Lex.Lex();
2685 SmallVector<Constant*, 16> Elts;
2686 LocTy FirstEltLoc = Lex.getLoc();
2687 if (ParseGlobalValueVector(Elts) ||
2688 ParseToken(lltok::rsquare, "expected end of array constant"))
2689 return true;
2690
2691 // Handle empty element.
2692 if (Elts.empty()) {
2693 // Use undef instead of an array because it's inconvenient to determine
2694 // the element type at this point, there being no elements to examine.
Chris Lattner998fa0a2009-01-05 07:52:51 +00002695 ID.Kind = ValID::t_EmptyArray;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002696 return false;
2697 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002698
Chris Lattnerac161bf2009-01-02 07:01:27 +00002699 if (!Elts[0]->getType()->isFirstClassType())
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002700 return Error(FirstEltLoc, "invalid array element type: " +
Chris Lattner0f214eb2011-06-18 21:18:23 +00002701 getTypeString(Elts[0]->getType()));
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002702
Owen Anderson4056ca92009-07-29 22:17:13 +00002703 ArrayType *ATy = ArrayType::get(Elts[0]->getType(), Elts.size());
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002704
Chris Lattnerac161bf2009-01-02 07:01:27 +00002705 // Verify all elements are correct type!
Chris Lattner59d0e3b2009-01-02 08:49:06 +00002706 for (unsigned i = 0, e = Elts.size(); i != e; ++i) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002707 if (Elts[i]->getType() != Elts[0]->getType())
2708 return Error(FirstEltLoc,
Benjamin Kramerc7583112010-09-27 17:42:11 +00002709 "array element #" + Twine(i) +
Chris Lattner0f214eb2011-06-18 21:18:23 +00002710 " is not of type '" + getTypeString(Elts[0]->getType()));
Chris Lattnerac161bf2009-01-02 07:01:27 +00002711 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002712
Jay Foad83be3612011-06-22 09:24:39 +00002713 ID.ConstantVal = ConstantArray::get(ATy, Elts);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002714 ID.Kind = ValID::t_Constant;
2715 return false;
2716 }
2717 case lltok::kw_c: // c "foo"
2718 Lex.Lex();
Chris Lattnercf9e8f62012-02-05 02:29:43 +00002719 ID.ConstantVal = ConstantDataArray::getString(Context, Lex.getStrVal(),
2720 false);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002721 if (ParseToken(lltok::StringConstant, "expected string")) return true;
2722 ID.Kind = ValID::t_Constant;
2723 return false;
2724
2725 case lltok::kw_asm: {
Chad Rosier6f9c3852013-02-14 20:44:07 +00002726 // ValID ::= 'asm' SideEffect? AlignStack? IntelDialect? STRINGCONSTANT ','
2727 // STRINGCONSTANT
Chad Rosierd8c76102012-09-05 19:00:49 +00002728 bool HasSideEffect, AlignStack, AsmDialect;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002729 Lex.Lex();
2730 if (ParseOptionalToken(lltok::kw_sideeffect, HasSideEffect) ||
Dale Johannesen1cfb9582009-10-21 23:28:00 +00002731 ParseOptionalToken(lltok::kw_alignstack, AlignStack) ||
Chad Rosierd8c76102012-09-05 19:00:49 +00002732 ParseOptionalToken(lltok::kw_inteldialect, AsmDialect) ||
Chris Lattner3822f632009-01-02 08:05:26 +00002733 ParseStringConstant(ID.StrVal) ||
2734 ParseToken(lltok::comma, "expected comma in inline asm expression") ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00002735 ParseToken(lltok::StringConstant, "expected constraint string"))
2736 return true;
2737 ID.StrVal2 = Lex.getStrVal();
Chad Rosierf42fad62012-09-05 00:08:17 +00002738 ID.UIntVal = unsigned(HasSideEffect) | (unsigned(AlignStack)<<1) |
Chad Rosierd8c76102012-09-05 19:00:49 +00002739 (unsigned(AsmDialect)<<2);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002740 ID.Kind = ValID::t_InlineAsm;
2741 return false;
2742 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002743
Chris Lattner3432c622009-10-28 03:39:23 +00002744 case lltok::kw_blockaddress: {
2745 // ValID ::= 'blockaddress' '(' @foo ',' %bar ')'
2746 Lex.Lex();
2747
2748 ValID Fn, Label;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002749
Chris Lattner3432c622009-10-28 03:39:23 +00002750 if (ParseToken(lltok::lparen, "expected '(' in block address expression") ||
2751 ParseValID(Fn) ||
2752 ParseToken(lltok::comma, "expected comma in block address expression")||
2753 ParseValID(Label) ||
2754 ParseToken(lltok::rparen, "expected ')' in block address expression"))
2755 return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002756
Chris Lattner3432c622009-10-28 03:39:23 +00002757 if (Fn.Kind != ValID::t_GlobalID && Fn.Kind != ValID::t_GlobalName)
2758 return Error(Fn.Loc, "expected function name in blockaddress");
Chris Lattneraa99c942009-11-01 01:27:45 +00002759 if (Label.Kind != ValID::t_LocalID && Label.Kind != ValID::t_LocalName)
Chris Lattner3432c622009-10-28 03:39:23 +00002760 return Error(Label.Loc, "expected basic block name in blockaddress");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002761
Duncan P. N. Exon Smith17169902014-08-19 00:13:19 +00002762 // Try to find the function (but skip it if it's forward-referenced).
2763 GlobalValue *GV = nullptr;
2764 if (Fn.Kind == ValID::t_GlobalID) {
2765 if (Fn.UIntVal < NumberedVals.size())
2766 GV = NumberedVals[Fn.UIntVal];
2767 } else if (!ForwardRefVals.count(Fn.StrVal)) {
2768 GV = M->getNamedValue(Fn.StrVal);
2769 }
2770 Function *F = nullptr;
2771 if (GV) {
2772 // Confirm that it's actually a function with a definition.
2773 if (!isa<Function>(GV))
2774 return Error(Fn.Loc, "expected function name in blockaddress");
2775 F = cast<Function>(GV);
2776 if (F->isDeclaration())
2777 return Error(Fn.Loc, "cannot take blockaddress inside a declaration");
2778 }
2779
2780 if (!F) {
2781 // Make a global variable as a placeholder for this reference.
David Blaikieb9cc6592015-03-04 01:40:07 +00002782 GlobalValue *&FwdRef =
David Blaikie871b4112015-08-03 20:55:00 +00002783 ForwardRefBlockAddresses.insert(std::make_pair(
2784 std::move(Fn),
2785 std::map<ValID, GlobalValue *>()))
David Blaikieb9cc6592015-03-04 01:40:07 +00002786 .first->second.insert(std::make_pair(std::move(Label), nullptr))
2787 .first->second;
Duncan P. N. Exon Smith17169902014-08-19 00:13:19 +00002788 if (!FwdRef)
2789 FwdRef = new GlobalVariable(*M, Type::getInt8Ty(Context), false,
2790 GlobalValue::InternalLinkage, nullptr, "");
2791 ID.ConstantVal = FwdRef;
2792 ID.Kind = ValID::t_Constant;
2793 return false;
2794 }
2795
2796 // We found the function; now find the basic block. Don't use PFS, since we
2797 // might be inside a constant expression.
2798 BasicBlock *BB;
2799 if (BlockAddressPFS && F == &BlockAddressPFS->getFunction()) {
2800 if (Label.Kind == ValID::t_LocalID)
2801 BB = BlockAddressPFS->GetBB(Label.UIntVal, Label.Loc);
2802 else
2803 BB = BlockAddressPFS->GetBB(Label.StrVal, Label.Loc);
2804 if (!BB)
2805 return Error(Label.Loc, "referenced value is not a basic block");
2806 } else {
2807 if (Label.Kind == ValID::t_LocalID)
2808 return Error(Label.Loc, "cannot take address of numeric label after "
2809 "the function is defined");
2810 BB = dyn_cast_or_null<BasicBlock>(
2811 F->getValueSymbolTable().lookup(Label.StrVal));
2812 if (!BB)
2813 return Error(Label.Loc, "referenced value is not a basic block");
2814 }
2815
2816 ID.ConstantVal = BlockAddress::get(F, BB);
Chris Lattner3432c622009-10-28 03:39:23 +00002817 ID.Kind = ValID::t_Constant;
2818 return false;
2819 }
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002820
Chris Lattnerac161bf2009-01-02 07:01:27 +00002821 case lltok::kw_trunc:
2822 case lltok::kw_zext:
2823 case lltok::kw_sext:
2824 case lltok::kw_fptrunc:
2825 case lltok::kw_fpext:
2826 case lltok::kw_bitcast:
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002827 case lltok::kw_addrspacecast:
Chris Lattnerac161bf2009-01-02 07:01:27 +00002828 case lltok::kw_uitofp:
2829 case lltok::kw_sitofp:
2830 case lltok::kw_fptoui:
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002831 case lltok::kw_fptosi:
Chris Lattnerac161bf2009-01-02 07:01:27 +00002832 case lltok::kw_inttoptr:
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002833 case lltok::kw_ptrtoint: {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002834 unsigned Opc = Lex.getUIntVal();
Craig Topper2617dcc2014-04-15 06:32:26 +00002835 Type *DestTy = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002836 Constant *SrcVal;
2837 Lex.Lex();
2838 if (ParseToken(lltok::lparen, "expected '(' after constantexpr cast") ||
2839 ParseGlobalTypeAndValue(SrcVal) ||
Dan Gohman0b5d0422009-06-15 21:52:11 +00002840 ParseToken(lltok::kw_to, "expected 'to' in constantexpr cast") ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00002841 ParseType(DestTy) ||
2842 ParseToken(lltok::rparen, "expected ')' at end of constantexpr cast"))
2843 return true;
2844 if (!CastInst::castIsValid((Instruction::CastOps)Opc, SrcVal, DestTy))
2845 return Error(ID.Loc, "invalid cast opcode for cast from '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00002846 getTypeString(SrcVal->getType()) + "' to '" +
2847 getTypeString(DestTy) + "'");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002848 ID.ConstantVal = ConstantExpr::getCast((Instruction::CastOps)Opc,
Owen Anderson02a9da32009-07-01 23:57:11 +00002849 SrcVal, DestTy);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002850 ID.Kind = ValID::t_Constant;
2851 return false;
2852 }
2853 case lltok::kw_extractvalue: {
2854 Lex.Lex();
2855 Constant *Val;
2856 SmallVector<unsigned, 4> Indices;
2857 if (ParseToken(lltok::lparen, "expected '(' in extractvalue constantexpr")||
2858 ParseGlobalTypeAndValue(Val) ||
2859 ParseIndexList(Indices) ||
2860 ParseToken(lltok::rparen, "expected ')' in extractvalue constantexpr"))
2861 return true;
Devang Patel1cb51162009-11-03 19:06:07 +00002862
Chris Lattner392be582010-02-12 20:49:41 +00002863 if (!Val->getType()->isAggregateType())
2864 return Error(ID.Loc, "extractvalue operand must be aggregate type");
Jay Foad57aa6362011-07-13 10:26:04 +00002865 if (!ExtractValueInst::getIndexedType(Val->getType(), Indices))
Chris Lattnerac161bf2009-01-02 07:01:27 +00002866 return Error(ID.Loc, "invalid indices for extractvalue");
Jay Foad57aa6362011-07-13 10:26:04 +00002867 ID.ConstantVal = ConstantExpr::getExtractValue(Val, Indices);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002868 ID.Kind = ValID::t_Constant;
2869 return false;
2870 }
2871 case lltok::kw_insertvalue: {
2872 Lex.Lex();
2873 Constant *Val0, *Val1;
2874 SmallVector<unsigned, 4> Indices;
2875 if (ParseToken(lltok::lparen, "expected '(' in insertvalue constantexpr")||
2876 ParseGlobalTypeAndValue(Val0) ||
2877 ParseToken(lltok::comma, "expected comma in insertvalue constantexpr")||
2878 ParseGlobalTypeAndValue(Val1) ||
2879 ParseIndexList(Indices) ||
2880 ParseToken(lltok::rparen, "expected ')' in insertvalue constantexpr"))
2881 return true;
Chris Lattner392be582010-02-12 20:49:41 +00002882 if (!Val0->getType()->isAggregateType())
2883 return Error(ID.Loc, "insertvalue operand must be aggregate type");
David Majnemereba692d2015-02-23 07:13:52 +00002884 Type *IndexedType =
2885 ExtractValueInst::getIndexedType(Val0->getType(), Indices);
2886 if (!IndexedType)
Chris Lattnerac161bf2009-01-02 07:01:27 +00002887 return Error(ID.Loc, "invalid indices for insertvalue");
David Majnemereba692d2015-02-23 07:13:52 +00002888 if (IndexedType != Val1->getType())
2889 return Error(ID.Loc, "insertvalue operand and field disagree in type: '" +
2890 getTypeString(Val1->getType()) +
2891 "' instead of '" + getTypeString(IndexedType) +
2892 "'");
Jay Foad57aa6362011-07-13 10:26:04 +00002893 ID.ConstantVal = ConstantExpr::getInsertValue(Val0, Val1, Indices);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002894 ID.Kind = ValID::t_Constant;
2895 return false;
2896 }
2897 case lltok::kw_icmp:
Nick Lewyckya21d3da2009-07-08 03:04:38 +00002898 case lltok::kw_fcmp: {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002899 unsigned PredVal, Opc = Lex.getUIntVal();
2900 Constant *Val0, *Val1;
2901 Lex.Lex();
2902 if (ParseCmpPredicate(PredVal, Opc) ||
2903 ParseToken(lltok::lparen, "expected '(' in compare constantexpr") ||
2904 ParseGlobalTypeAndValue(Val0) ||
2905 ParseToken(lltok::comma, "expected comma in compare constantexpr") ||
2906 ParseGlobalTypeAndValue(Val1) ||
2907 ParseToken(lltok::rparen, "expected ')' in compare constantexpr"))
2908 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002909
Chris Lattnerac161bf2009-01-02 07:01:27 +00002910 if (Val0->getType() != Val1->getType())
2911 return Error(ID.Loc, "compare operands must have the same type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002912
Chris Lattnerac161bf2009-01-02 07:01:27 +00002913 CmpInst::Predicate Pred = (CmpInst::Predicate)PredVal;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002914
Chris Lattnerac161bf2009-01-02 07:01:27 +00002915 if (Opc == Instruction::FCmp) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00002916 if (!Val0->getType()->isFPOrFPVectorTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00002917 return Error(ID.Loc, "fcmp requires floating point operands");
Owen Anderson487375e2009-07-29 18:55:55 +00002918 ID.ConstantVal = ConstantExpr::getFCmp(Pred, Val0, Val1);
Nick Lewyckya21d3da2009-07-08 03:04:38 +00002919 } else {
2920 assert(Opc == Instruction::ICmp && "Unexpected opcode for CmpInst!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00002921 if (!Val0->getType()->isIntOrIntVectorTy() &&
Nadav Rotem3924cb02011-12-05 06:29:09 +00002922 !Val0->getType()->getScalarType()->isPointerTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00002923 return Error(ID.Loc, "icmp requires pointer or integer operands");
Owen Anderson487375e2009-07-29 18:55:55 +00002924 ID.ConstantVal = ConstantExpr::getICmp(Pred, Val0, Val1);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002925 }
2926 ID.Kind = ValID::t_Constant;
2927 return false;
2928 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002929
Chris Lattnerac161bf2009-01-02 07:01:27 +00002930 // Binary Operators.
2931 case lltok::kw_add:
Dan Gohmana5b96452009-06-04 22:49:04 +00002932 case lltok::kw_fadd:
Chris Lattnerac161bf2009-01-02 07:01:27 +00002933 case lltok::kw_sub:
Dan Gohmana5b96452009-06-04 22:49:04 +00002934 case lltok::kw_fsub:
Chris Lattnerac161bf2009-01-02 07:01:27 +00002935 case lltok::kw_mul:
Dan Gohmana5b96452009-06-04 22:49:04 +00002936 case lltok::kw_fmul:
Chris Lattnerac161bf2009-01-02 07:01:27 +00002937 case lltok::kw_udiv:
2938 case lltok::kw_sdiv:
2939 case lltok::kw_fdiv:
2940 case lltok::kw_urem:
2941 case lltok::kw_srem:
Chris Lattnera676c0f2011-02-07 16:40:21 +00002942 case lltok::kw_frem:
2943 case lltok::kw_shl:
2944 case lltok::kw_lshr:
2945 case lltok::kw_ashr: {
Dan Gohman9c7f8082009-07-27 16:11:46 +00002946 bool NUW = false;
2947 bool NSW = false;
2948 bool Exact = false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002949 unsigned Opc = Lex.getUIntVal();
2950 Constant *Val0, *Val1;
2951 Lex.Lex();
Dan Gohman9c7f8082009-07-27 16:11:46 +00002952 LocTy ModifierLoc = Lex.getLoc();
Chris Lattnera676c0f2011-02-07 16:40:21 +00002953 if (Opc == Instruction::Add || Opc == Instruction::Sub ||
2954 Opc == Instruction::Mul || Opc == Instruction::Shl) {
Dan Gohman9c7f8082009-07-27 16:11:46 +00002955 if (EatIfPresent(lltok::kw_nuw))
2956 NUW = true;
2957 if (EatIfPresent(lltok::kw_nsw)) {
2958 NSW = true;
2959 if (EatIfPresent(lltok::kw_nuw))
2960 NUW = true;
2961 }
Chris Lattnera676c0f2011-02-07 16:40:21 +00002962 } else if (Opc == Instruction::SDiv || Opc == Instruction::UDiv ||
2963 Opc == Instruction::LShr || Opc == Instruction::AShr) {
Dan Gohman9c7f8082009-07-27 16:11:46 +00002964 if (EatIfPresent(lltok::kw_exact))
2965 Exact = true;
2966 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00002967 if (ParseToken(lltok::lparen, "expected '(' in binary constantexpr") ||
2968 ParseGlobalTypeAndValue(Val0) ||
2969 ParseToken(lltok::comma, "expected comma in binary constantexpr") ||
2970 ParseGlobalTypeAndValue(Val1) ||
2971 ParseToken(lltok::rparen, "expected ')' in binary constantexpr"))
2972 return true;
2973 if (Val0->getType() != Val1->getType())
2974 return Error(ID.Loc, "operands of constexpr must have same type");
Duncan Sands9dff9be2010-02-15 16:12:20 +00002975 if (!Val0->getType()->isIntOrIntVectorTy()) {
Dan Gohman9c7f8082009-07-27 16:11:46 +00002976 if (NUW)
2977 return Error(ModifierLoc, "nuw only applies to integer operations");
2978 if (NSW)
2979 return Error(ModifierLoc, "nsw only applies to integer operations");
2980 }
Dan Gohmana2414ea2010-05-03 22:44:19 +00002981 // Check that the type is valid for the operator.
2982 switch (Opc) {
2983 case Instruction::Add:
2984 case Instruction::Sub:
2985 case Instruction::Mul:
2986 case Instruction::UDiv:
2987 case Instruction::SDiv:
2988 case Instruction::URem:
2989 case Instruction::SRem:
Chris Lattnera676c0f2011-02-07 16:40:21 +00002990 case Instruction::Shl:
2991 case Instruction::AShr:
2992 case Instruction::LShr:
Dan Gohmana2414ea2010-05-03 22:44:19 +00002993 if (!Val0->getType()->isIntOrIntVectorTy())
2994 return Error(ID.Loc, "constexpr requires integer operands");
2995 break;
2996 case Instruction::FAdd:
2997 case Instruction::FSub:
2998 case Instruction::FMul:
2999 case Instruction::FDiv:
3000 case Instruction::FRem:
3001 if (!Val0->getType()->isFPOrFPVectorTy())
3002 return Error(ID.Loc, "constexpr requires fp operands");
3003 break;
3004 default: llvm_unreachable("Unknown binary operator!");
3005 }
Dan Gohman1b849082009-09-07 23:54:19 +00003006 unsigned Flags = 0;
3007 if (NUW) Flags |= OverflowingBinaryOperator::NoUnsignedWrap;
3008 if (NSW) Flags |= OverflowingBinaryOperator::NoSignedWrap;
Chris Lattner35315d02011-02-06 21:44:57 +00003009 if (Exact) Flags |= PossiblyExactOperator::IsExact;
Dan Gohman1b849082009-09-07 23:54:19 +00003010 Constant *C = ConstantExpr::get(Opc, Val0, Val1, Flags);
Dan Gohman9c7f8082009-07-27 16:11:46 +00003011 ID.ConstantVal = C;
Chris Lattnerac161bf2009-01-02 07:01:27 +00003012 ID.Kind = ValID::t_Constant;
3013 return false;
3014 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003015
Chris Lattnerac161bf2009-01-02 07:01:27 +00003016 // Logical Operations
Chris Lattnerac161bf2009-01-02 07:01:27 +00003017 case lltok::kw_and:
3018 case lltok::kw_or:
3019 case lltok::kw_xor: {
3020 unsigned Opc = Lex.getUIntVal();
3021 Constant *Val0, *Val1;
3022 Lex.Lex();
3023 if (ParseToken(lltok::lparen, "expected '(' in logical constantexpr") ||
3024 ParseGlobalTypeAndValue(Val0) ||
3025 ParseToken(lltok::comma, "expected comma in logical constantexpr") ||
3026 ParseGlobalTypeAndValue(Val1) ||
3027 ParseToken(lltok::rparen, "expected ')' in logical constantexpr"))
3028 return true;
3029 if (Val0->getType() != Val1->getType())
3030 return Error(ID.Loc, "operands of constexpr must have same type");
Duncan Sands9dff9be2010-02-15 16:12:20 +00003031 if (!Val0->getType()->isIntOrIntVectorTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00003032 return Error(ID.Loc,
3033 "constexpr requires integer or integer vector operands");
Owen Anderson487375e2009-07-29 18:55:55 +00003034 ID.ConstantVal = ConstantExpr::get(Opc, Val0, Val1);
Chris Lattnerac161bf2009-01-02 07:01:27 +00003035 ID.Kind = ValID::t_Constant;
3036 return false;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003037 }
3038
Chris Lattnerac161bf2009-01-02 07:01:27 +00003039 case lltok::kw_getelementptr:
3040 case lltok::kw_shufflevector:
3041 case lltok::kw_insertelement:
3042 case lltok::kw_extractelement:
3043 case lltok::kw_select: {
3044 unsigned Opc = Lex.getUIntVal();
3045 SmallVector<Constant*, 16> Elts;
Dan Gohman1639c392009-07-27 21:53:46 +00003046 bool InBounds = false;
David Blaikief72d05b2015-03-13 18:20:45 +00003047 Type *Ty;
Chris Lattnerac161bf2009-01-02 07:01:27 +00003048 Lex.Lex();
David Blaikief72d05b2015-03-13 18:20:45 +00003049
Dan Gohman1639c392009-07-27 21:53:46 +00003050 if (Opc == Instruction::GetElementPtr)
Dan Gohman16cbbe42009-07-29 15:58:36 +00003051 InBounds = EatIfPresent(lltok::kw_inbounds);
David Blaikief72d05b2015-03-13 18:20:45 +00003052
3053 if (ParseToken(lltok::lparen, "expected '(' in constantexpr"))
3054 return true;
3055
3056 LocTy ExplicitTypeLoc = Lex.getLoc();
3057 if (Opc == Instruction::GetElementPtr) {
3058 if (ParseType(Ty) ||
3059 ParseToken(lltok::comma, "expected comma after getelementptr's type"))
3060 return true;
3061 }
3062
3063 if (ParseGlobalValueVector(Elts) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00003064 ParseToken(lltok::rparen, "expected ')' in constantexpr"))
3065 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003066
Chris Lattnerac161bf2009-01-02 07:01:27 +00003067 if (Opc == Instruction::GetElementPtr) {
Nadav Rotem3924cb02011-12-05 06:29:09 +00003068 if (Elts.size() == 0 ||
3069 !Elts[0]->getType()->getScalarType()->isPointerTy())
David Majnemer00303b62015-02-22 23:14:52 +00003070 return Error(ID.Loc, "base of getelementptr must be a pointer");
3071
3072 Type *BaseType = Elts[0]->getType();
3073 auto *BasePointerType = cast<PointerType>(BaseType->getScalarType());
David Blaikief72d05b2015-03-13 18:20:45 +00003074 if (Ty != BasePointerType->getElementType())
3075 return Error(
3076 ExplicitTypeLoc,
3077 "explicit pointee type doesn't match operand's pointee type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003078
Jay Foaded8db7d2011-07-21 14:31:17 +00003079 ArrayRef<Constant *> Indices(Elts.begin() + 1, Elts.end());
David Majnemer00303b62015-02-22 23:14:52 +00003080 for (Constant *Val : Indices) {
3081 Type *ValTy = Val->getType();
3082 if (!ValTy->getScalarType()->isIntegerTy())
3083 return Error(ID.Loc, "getelementptr index must be an integer");
3084 if (ValTy->isVectorTy() != BaseType->isVectorTy())
3085 return Error(ID.Loc, "getelementptr index type missmatch");
3086 if (ValTy->isVectorTy()) {
Elena Demikhovsky37a4da82015-07-09 07:42:48 +00003087 unsigned ValNumEl = ValTy->getVectorNumElements();
3088 unsigned PtrNumEl = BaseType->getVectorNumElements();
David Majnemer00303b62015-02-22 23:14:52 +00003089 if (ValNumEl != PtrNumEl)
3090 return Error(
3091 ID.Loc,
3092 "getelementptr vector index has a wrong number of elements");
3093 }
3094 }
3095
Craig Toppere3dcce92015-08-01 22:20:21 +00003096 SmallPtrSet<Type*, 4> Visited;
David Blaikiee169e822015-04-22 16:37:35 +00003097 if (!Indices.empty() && !Ty->isSized(&Visited))
David Majnemer00303b62015-02-22 23:14:52 +00003098 return Error(ID.Loc, "base element of getelementptr must be sized");
3099
David Blaikie4a2e73b2015-04-02 18:55:32 +00003100 if (!GetElementPtrInst::getIndexedType(Ty, Indices))
David Majnemer00303b62015-02-22 23:14:52 +00003101 return Error(ID.Loc, "invalid getelementptr indices");
David Blaikie4a2e73b2015-04-02 18:55:32 +00003102 ID.ConstantVal =
3103 ConstantExpr::getGetElementPtr(Ty, Elts[0], Indices, InBounds);
Chris Lattnerac161bf2009-01-02 07:01:27 +00003104 } else if (Opc == Instruction::Select) {
3105 if (Elts.size() != 3)
3106 return Error(ID.Loc, "expected three operands to select");
3107 if (const char *Reason = SelectInst::areInvalidOperands(Elts[0], Elts[1],
3108 Elts[2]))
3109 return Error(ID.Loc, Reason);
Owen Anderson487375e2009-07-29 18:55:55 +00003110 ID.ConstantVal = ConstantExpr::getSelect(Elts[0], Elts[1], Elts[2]);
Chris Lattnerac161bf2009-01-02 07:01:27 +00003111 } else if (Opc == Instruction::ShuffleVector) {
3112 if (Elts.size() != 3)
3113 return Error(ID.Loc, "expected three operands to shufflevector");
3114 if (!ShuffleVectorInst::isValidOperands(Elts[0], Elts[1], Elts[2]))
3115 return Error(ID.Loc, "invalid operands to shufflevector");
Owen Anderson02a9da32009-07-01 23:57:11 +00003116 ID.ConstantVal =
Owen Anderson487375e2009-07-29 18:55:55 +00003117 ConstantExpr::getShuffleVector(Elts[0], Elts[1],Elts[2]);
Chris Lattnerac161bf2009-01-02 07:01:27 +00003118 } else if (Opc == Instruction::ExtractElement) {
3119 if (Elts.size() != 2)
3120 return Error(ID.Loc, "expected two operands to extractelement");
3121 if (!ExtractElementInst::isValidOperands(Elts[0], Elts[1]))
3122 return Error(ID.Loc, "invalid extractelement operands");
Owen Anderson487375e2009-07-29 18:55:55 +00003123 ID.ConstantVal = ConstantExpr::getExtractElement(Elts[0], Elts[1]);
Chris Lattnerac161bf2009-01-02 07:01:27 +00003124 } else {
3125 assert(Opc == Instruction::InsertElement && "Unknown opcode");
3126 if (Elts.size() != 3)
3127 return Error(ID.Loc, "expected three operands to insertelement");
3128 if (!InsertElementInst::isValidOperands(Elts[0], Elts[1], Elts[2]))
3129 return Error(ID.Loc, "invalid insertelement operands");
Owen Anderson02a9da32009-07-01 23:57:11 +00003130 ID.ConstantVal =
Owen Anderson487375e2009-07-29 18:55:55 +00003131 ConstantExpr::getInsertElement(Elts[0], Elts[1],Elts[2]);
Chris Lattnerac161bf2009-01-02 07:01:27 +00003132 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003133
Chris Lattnerac161bf2009-01-02 07:01:27 +00003134 ID.Kind = ValID::t_Constant;
3135 return false;
3136 }
3137 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003138
Chris Lattnerac161bf2009-01-02 07:01:27 +00003139 Lex.Lex();
3140 return false;
3141}
3142
3143/// ParseGlobalValue - Parse a global value with the specified type.
Chris Lattner229907c2011-07-18 04:54:35 +00003144bool LLParser::ParseGlobalValue(Type *Ty, Constant *&C) {
Craig Topper2617dcc2014-04-15 06:32:26 +00003145 C = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00003146 ValID ID;
Craig Topper2617dcc2014-04-15 06:32:26 +00003147 Value *V = nullptr;
Victor Hernandez9d75c962010-01-11 22:31:58 +00003148 bool Parsed = ParseValID(ID) ||
Craig Topper2617dcc2014-04-15 06:32:26 +00003149 ConvertValIDToValue(Ty, ID, V, nullptr);
Victor Hernandez9d75c962010-01-11 22:31:58 +00003150 if (V && !(C = dyn_cast<Constant>(V)))
3151 return Error(ID.Loc, "global values must be constants");
3152 return Parsed;
Chris Lattnerac161bf2009-01-02 07:01:27 +00003153}
3154
Victor Hernandez9d75c962010-01-11 22:31:58 +00003155bool LLParser::ParseGlobalTypeAndValue(Constant *&V) {
Craig Topper2617dcc2014-04-15 06:32:26 +00003156 Type *Ty = nullptr;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00003157 return ParseType(Ty) ||
3158 ParseGlobalValue(Ty, V);
Victor Hernandez9d75c962010-01-11 22:31:58 +00003159}
3160
Rafael Espindola83a362c2015-01-06 22:55:16 +00003161bool LLParser::parseOptionalComdat(StringRef GlobalName, Comdat *&C) {
David Majnemerdad0a642014-06-27 18:19:56 +00003162 C = nullptr;
Rafael Espindola83a362c2015-01-06 22:55:16 +00003163
3164 LocTy KwLoc = Lex.getLoc();
David Majnemerdad0a642014-06-27 18:19:56 +00003165 if (!EatIfPresent(lltok::kw_comdat))
3166 return false;
Rafael Espindola83a362c2015-01-06 22:55:16 +00003167
3168 if (EatIfPresent(lltok::lparen)) {
3169 if (Lex.getKind() != lltok::ComdatVar)
3170 return TokError("expected comdat variable");
3171 C = getComdat(Lex.getStrVal(), Lex.getLoc());
3172 Lex.Lex();
3173 if (ParseToken(lltok::rparen, "expected ')' after comdat var"))
3174 return true;
3175 } else {
3176 if (GlobalName.empty())
3177 return TokError("comdat cannot be unnamed");
3178 C = getComdat(GlobalName, KwLoc);
3179 }
3180
David Majnemerdad0a642014-06-27 18:19:56 +00003181 return false;
3182}
3183
Victor Hernandez9d75c962010-01-11 22:31:58 +00003184/// ParseGlobalValueVector
3185/// ::= /*empty*/
3186/// ::= TypeAndValue (',' TypeAndValue)*
Duncan P. N. Exon Smith17169902014-08-19 00:13:19 +00003187bool LLParser::ParseGlobalValueVector(SmallVectorImpl<Constant *> &Elts) {
Victor Hernandez9d75c962010-01-11 22:31:58 +00003188 // Empty list.
3189 if (Lex.getKind() == lltok::rbrace ||
3190 Lex.getKind() == lltok::rsquare ||
3191 Lex.getKind() == lltok::greater ||
3192 Lex.getKind() == lltok::rparen)
3193 return false;
3194
3195 Constant *C;
3196 if (ParseGlobalTypeAndValue(C)) return true;
3197 Elts.push_back(C);
3198
3199 while (EatIfPresent(lltok::comma)) {
3200 if (ParseGlobalTypeAndValue(C)) return true;
3201 Elts.push_back(C);
3202 }
3203
3204 return false;
3205}
3206
Duncan P. N. Exon Smith58ef9d12015-01-12 21:23:11 +00003207bool LLParser::ParseMDTuple(MDNode *&MD, bool IsDistinct) {
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00003208 SmallVector<Metadata *, 16> Elts;
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00003209 if (ParseMDNodeVector(Elts))
Dan Gohmanc828c542010-08-24 02:24:03 +00003210 return true;
3211
Duncan P. N. Exon Smith0b31dd12015-01-12 22:27:39 +00003212 MD = (IsDistinct ? MDTuple::getDistinct : MDTuple::get)(Context, Elts);
Dan Gohmanc828c542010-08-24 02:24:03 +00003213 return false;
3214}
3215
Duncan P. N. Exon Smithf825dae2015-01-12 22:26:48 +00003216/// MDNode:
3217/// ::= !{ ... }
3218/// ::= !7
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003219/// ::= !DILocation(...)
Duncan P. N. Exon Smithf825dae2015-01-12 22:26:48 +00003220bool LLParser::ParseMDNode(MDNode *&N) {
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003221 if (Lex.getKind() == lltok::MetadataVar)
3222 return ParseSpecializedMDNode(N);
3223
Duncan P. N. Exon Smithf825dae2015-01-12 22:26:48 +00003224 return ParseToken(lltok::exclaim, "expected '!' here") ||
3225 ParseMDNodeTail(N);
3226}
3227
3228bool LLParser::ParseMDNodeTail(MDNode *&N) {
3229 // !{ ... }
3230 if (Lex.getKind() == lltok::lbrace)
3231 return ParseMDTuple(N);
3232
3233 // !42
3234 return ParseMDNodeID(N);
3235}
3236
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003237namespace {
3238
3239/// Structure to represent an optional metadata field.
3240template <class FieldTy> struct MDFieldImpl {
3241 typedef MDFieldImpl ImplTy;
3242 FieldTy Val;
3243 bool Seen;
3244
3245 void assign(FieldTy Val) {
3246 Seen = true;
3247 this->Val = std::move(Val);
3248 }
3249
3250 explicit MDFieldImpl(FieldTy Default)
3251 : Val(std::move(Default)), Seen(false) {}
3252};
Duncan P. N. Exon Smithc7363f12015-02-13 01:10:38 +00003253
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003254struct MDUnsignedField : public MDFieldImpl<uint64_t> {
3255 uint64_t Max;
3256
3257 MDUnsignedField(uint64_t Default = 0, uint64_t Max = UINT64_MAX)
3258 : ImplTy(Default), Max(Max) {}
3259};
Duncan P. N. Exon Smith9c93dc62015-02-04 22:59:18 +00003260struct LineField : public MDUnsignedField {
Duncan P. N. Exon Smithaf677eb2015-02-06 22:50:13 +00003261 LineField() : MDUnsignedField(0, UINT32_MAX) {}
Duncan P. N. Exon Smith9c93dc62015-02-04 22:59:18 +00003262};
3263struct ColumnField : public MDUnsignedField {
3264 ColumnField() : MDUnsignedField(0, UINT16_MAX) {}
3265};
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003266struct DwarfTagField : public MDUnsignedField {
Duncan P. N. Exon Smitha81f7e12015-02-06 22:29:35 +00003267 DwarfTagField() : MDUnsignedField(0, dwarf::DW_TAG_hi_user) {}
Duncan P. N. Exon Smith16d182a2015-02-28 23:21:38 +00003268 DwarfTagField(dwarf::Tag DefaultTag)
3269 : MDUnsignedField(DefaultTag, dwarf::DW_TAG_hi_user) {}
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003270};
Duncan P. N. Exon Smithcd6636c2015-02-13 01:17:35 +00003271struct DwarfAttEncodingField : public MDUnsignedField {
3272 DwarfAttEncodingField() : MDUnsignedField(0, dwarf::DW_ATE_hi_user) {}
3273};
Duncan P. N. Exon Smith890533e2015-02-13 01:28:16 +00003274struct DwarfVirtualityField : public MDUnsignedField {
3275 DwarfVirtualityField() : MDUnsignedField(0, dwarf::DW_VIRTUALITY_max) {}
3276};
Duncan P. N. Exon Smithaece2dc2015-02-13 01:21:25 +00003277struct DwarfLangField : public MDUnsignedField {
3278 DwarfLangField() : MDUnsignedField(0, dwarf::DW_LANG_hi_user) {}
3279};
Duncan P. N. Exon Smithc7363f12015-02-13 01:10:38 +00003280
Duncan P. N. Exon Smith70ab3d22015-02-21 01:02:18 +00003281struct DIFlagField : public MDUnsignedField {
3282 DIFlagField() : MDUnsignedField(0, UINT32_MAX) {}
3283};
3284
Duncan P. N. Exon Smithc7363f12015-02-13 01:10:38 +00003285struct MDSignedField : public MDFieldImpl<int64_t> {
3286 int64_t Min;
3287 int64_t Max;
3288
3289 MDSignedField(int64_t Default = 0)
3290 : ImplTy(Default), Min(INT64_MIN), Max(INT64_MAX) {}
3291 MDSignedField(int64_t Default, int64_t Min, int64_t Max)
3292 : ImplTy(Default), Min(Min), Max(Max) {}
3293};
3294
Duncan P. N. Exon Smithaece2dc2015-02-13 01:21:25 +00003295struct MDBoolField : public MDFieldImpl<bool> {
3296 MDBoolField(bool Default = false) : ImplTy(Default) {}
3297};
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003298struct MDField : public MDFieldImpl<Metadata *> {
Duncan P. N. Exon Smithe2c61d92015-03-27 17:56:39 +00003299 bool AllowNull;
3300
3301 MDField(bool AllowNull = true) : ImplTy(nullptr), AllowNull(AllowNull) {}
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003302};
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003303struct MDConstant : public MDFieldImpl<ConstantAsMetadata *> {
3304 MDConstant() : ImplTy(nullptr) {}
3305};
Duncan P. N. Exon Smith3d2afaa2015-03-27 17:29:58 +00003306struct MDStringField : public MDFieldImpl<MDString *> {
Duncan P. N. Exon Smith94d58f82015-03-31 01:28:22 +00003307 bool AllowEmpty;
3308 MDStringField(bool AllowEmpty = true)
3309 : ImplTy(nullptr), AllowEmpty(AllowEmpty) {}
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003310};
3311struct MDFieldList : public MDFieldImpl<SmallVector<Metadata *, 4>> {
3312 MDFieldList() : ImplTy(SmallVector<Metadata *, 4>()) {}
3313};
3314
3315} // end namespace
3316
Duncan P. N. Exon Smith2f09c462015-02-04 22:13:28 +00003317namespace llvm {
3318
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003319template <>
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003320bool LLParser::ParseMDField(LocTy Loc, StringRef Name,
Duncan P. N. Exon Smith39b10c22015-02-04 21:57:52 +00003321 MDUnsignedField &Result) {
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003322 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned())
3323 return TokError("expected unsigned integer");
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003324
Duncan P. N. Exon Smith39b10c22015-02-04 21:57:52 +00003325 auto &U = Lex.getAPSIntVal();
3326 if (U.ugt(Result.Max))
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003327 return TokError("value for '" + Name + "' too large, limit is " +
3328 Twine(Result.Max));
Duncan P. N. Exon Smith39b10c22015-02-04 21:57:52 +00003329 Result.assign(U.getZExtValue());
3330 assert(Result.Val <= Result.Max && "Expected value in range");
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003331 Lex.Lex();
3332 return false;
3333}
3334
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003335template <>
Duncan P. N. Exon Smith9c93dc62015-02-04 22:59:18 +00003336bool LLParser::ParseMDField(LocTy Loc, StringRef Name, LineField &Result) {
3337 return ParseMDField(Loc, Name, static_cast<MDUnsignedField &>(Result));
3338}
3339template <>
3340bool LLParser::ParseMDField(LocTy Loc, StringRef Name, ColumnField &Result) {
3341 return ParseMDField(Loc, Name, static_cast<MDUnsignedField &>(Result));
3342}
3343
3344template <>
Duncan P. N. Exon Smith97486072015-02-03 21:56:01 +00003345bool LLParser::ParseMDField(LocTy Loc, StringRef Name, DwarfTagField &Result) {
3346 if (Lex.getKind() == lltok::APSInt)
Duncan P. N. Exon Smith39b10c22015-02-04 21:57:52 +00003347 return ParseMDField(Loc, Name, static_cast<MDUnsignedField &>(Result));
Duncan P. N. Exon Smith97486072015-02-03 21:56:01 +00003348
Duncan P. N. Exon Smith97486072015-02-03 21:56:01 +00003349 if (Lex.getKind() != lltok::DwarfTag)
3350 return TokError("expected DWARF tag");
3351
3352 unsigned Tag = dwarf::getTag(Lex.getStrVal());
3353 if (Tag == dwarf::DW_TAG_invalid)
3354 return TokError("invalid DWARF tag" + Twine(" '") + Lex.getStrVal() + "'");
Duncan P. N. Exon Smithfad631a2015-02-04 22:02:18 +00003355 assert(Tag <= Result.Max && "Expected valid DWARF tag");
Duncan P. N. Exon Smith97486072015-02-03 21:56:01 +00003356
3357 Result.assign(Tag);
3358 Lex.Lex();
3359 return false;
3360}
3361
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003362template <>
Duncan P. N. Exon Smith890533e2015-02-13 01:28:16 +00003363bool LLParser::ParseMDField(LocTy Loc, StringRef Name,
3364 DwarfVirtualityField &Result) {
3365 if (Lex.getKind() == lltok::APSInt)
3366 return ParseMDField(Loc, Name, static_cast<MDUnsignedField &>(Result));
3367
3368 if (Lex.getKind() != lltok::DwarfVirtuality)
3369 return TokError("expected DWARF virtuality code");
3370
3371 unsigned Virtuality = dwarf::getVirtuality(Lex.getStrVal());
3372 if (!Virtuality)
3373 return TokError("invalid DWARF virtuality code" + Twine(" '") +
3374 Lex.getStrVal() + "'");
3375 assert(Virtuality <= Result.Max && "Expected valid DWARF virtuality code");
3376 Result.assign(Virtuality);
3377 Lex.Lex();
3378 return false;
3379}
3380
3381template <>
Duncan P. N. Exon Smithaece2dc2015-02-13 01:21:25 +00003382bool LLParser::ParseMDField(LocTy Loc, StringRef Name, DwarfLangField &Result) {
3383 if (Lex.getKind() == lltok::APSInt)
3384 return ParseMDField(Loc, Name, static_cast<MDUnsignedField &>(Result));
3385
3386 if (Lex.getKind() != lltok::DwarfLang)
3387 return TokError("expected DWARF language");
3388
3389 unsigned Lang = dwarf::getLanguage(Lex.getStrVal());
3390 if (!Lang)
3391 return TokError("invalid DWARF language" + Twine(" '") + Lex.getStrVal() +
3392 "'");
3393 assert(Lang <= Result.Max && "Expected valid DWARF language");
3394 Result.assign(Lang);
3395 Lex.Lex();
3396 return false;
3397}
3398
3399template <>
Duncan P. N. Exon Smithc7363f12015-02-13 01:10:38 +00003400bool LLParser::ParseMDField(LocTy Loc, StringRef Name,
Duncan P. N. Exon Smithcd6636c2015-02-13 01:17:35 +00003401 DwarfAttEncodingField &Result) {
3402 if (Lex.getKind() == lltok::APSInt)
3403 return ParseMDField(Loc, Name, static_cast<MDUnsignedField &>(Result));
3404
3405 if (Lex.getKind() != lltok::DwarfAttEncoding)
3406 return TokError("expected DWARF type attribute encoding");
3407
3408 unsigned Encoding = dwarf::getAttributeEncoding(Lex.getStrVal());
3409 if (!Encoding)
3410 return TokError("invalid DWARF type attribute encoding" + Twine(" '") +
3411 Lex.getStrVal() + "'");
3412 assert(Encoding <= Result.Max && "Expected valid DWARF language");
3413 Result.assign(Encoding);
3414 Lex.Lex();
3415 return false;
3416}
3417
Duncan P. N. Exon Smith70ab3d22015-02-21 01:02:18 +00003418/// DIFlagField
3419/// ::= uint32
3420/// ::= DIFlagVector
3421/// ::= DIFlagVector '|' DIFlagFwdDecl '|' uint32 '|' DIFlagPublic
3422template <>
3423bool LLParser::ParseMDField(LocTy Loc, StringRef Name, DIFlagField &Result) {
3424 assert(Result.Max == UINT32_MAX && "Expected only 32-bits");
3425
3426 // Parser for a single flag.
3427 auto parseFlag = [&](unsigned &Val) {
3428 if (Lex.getKind() == lltok::APSInt && !Lex.getAPSIntVal().isSigned())
3429 return ParseUInt32(Val);
3430
3431 if (Lex.getKind() != lltok::DIFlag)
3432 return TokError("expected debug info flag");
3433
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003434 Val = DINode::getFlag(Lex.getStrVal());
Duncan P. N. Exon Smith70ab3d22015-02-21 01:02:18 +00003435 if (!Val)
3436 return TokError(Twine("invalid debug info flag flag '") +
3437 Lex.getStrVal() + "'");
3438 Lex.Lex();
3439 return false;
3440 };
3441
3442 // Parse the flags and combine them together.
3443 unsigned Combined = 0;
3444 do {
3445 unsigned Val;
3446 if (parseFlag(Val))
3447 return true;
3448 Combined |= Val;
3449 } while (EatIfPresent(lltok::bar));
3450
3451 Result.assign(Combined);
3452 return false;
3453}
3454
Duncan P. N. Exon Smithcd6636c2015-02-13 01:17:35 +00003455template <>
3456bool LLParser::ParseMDField(LocTy Loc, StringRef Name,
Duncan P. N. Exon Smithc7363f12015-02-13 01:10:38 +00003457 MDSignedField &Result) {
3458 if (Lex.getKind() != lltok::APSInt)
3459 return TokError("expected signed integer");
3460
3461 auto &S = Lex.getAPSIntVal();
3462 if (S < Result.Min)
3463 return TokError("value for '" + Name + "' too small, limit is " +
3464 Twine(Result.Min));
3465 if (S > Result.Max)
3466 return TokError("value for '" + Name + "' too large, limit is " +
3467 Twine(Result.Max));
3468 Result.assign(S.getExtValue());
3469 assert(Result.Val >= Result.Min && "Expected value in range");
3470 assert(Result.Val <= Result.Max && "Expected value in range");
3471 Lex.Lex();
3472 return false;
3473}
3474
3475template <>
Duncan P. N. Exon Smithaece2dc2015-02-13 01:21:25 +00003476bool LLParser::ParseMDField(LocTy Loc, StringRef Name, MDBoolField &Result) {
3477 switch (Lex.getKind()) {
3478 default:
3479 return TokError("expected 'true' or 'false'");
3480 case lltok::kw_true:
3481 Result.assign(true);
3482 break;
3483 case lltok::kw_false:
3484 Result.assign(false);
3485 break;
3486 }
3487 Lex.Lex();
3488 return false;
3489}
3490
3491template <>
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003492bool LLParser::ParseMDField(LocTy Loc, StringRef Name, MDField &Result) {
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003493 if (Lex.getKind() == lltok::kw_null) {
Duncan P. N. Exon Smithe2c61d92015-03-27 17:56:39 +00003494 if (!Result.AllowNull)
3495 return TokError("'" + Name + "' cannot be null");
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003496 Lex.Lex();
3497 Result.assign(nullptr);
3498 return false;
3499 }
3500
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003501 Metadata *MD;
3502 if (ParseMetadata(MD, nullptr))
3503 return true;
3504
3505 Result.assign(MD);
3506 return false;
3507}
3508
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003509template <>
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003510bool LLParser::ParseMDField(LocTy Loc, StringRef Name, MDConstant &Result) {
3511 Metadata *MD;
3512 if (ParseValueAsMetadata(MD, "expected constant", nullptr))
3513 return true;
3514
3515 Result.assign(cast<ConstantAsMetadata>(MD));
3516 return false;
3517}
3518
3519template <>
Duncan P. N. Exon Smith4e4aa702015-02-03 21:54:14 +00003520bool LLParser::ParseMDField(LocTy Loc, StringRef Name, MDStringField &Result) {
Duncan P. N. Exon Smith94d58f82015-03-31 01:28:22 +00003521 LocTy ValueLoc = Lex.getLoc();
Duncan P. N. Exon Smith4e4aa702015-02-03 21:54:14 +00003522 std::string S;
3523 if (ParseStringConstant(S))
3524 return true;
3525
Duncan P. N. Exon Smith94d58f82015-03-31 01:28:22 +00003526 if (!Result.AllowEmpty && S.empty())
3527 return Error(ValueLoc, "'" + Name + "' cannot be empty");
3528
Duncan P. N. Exon Smith3d2afaa2015-03-27 17:29:58 +00003529 Result.assign(S.empty() ? nullptr : MDString::get(Context, S));
Duncan P. N. Exon Smith4e4aa702015-02-03 21:54:14 +00003530 return false;
3531}
3532
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003533template <>
Duncan P. N. Exon Smith4e4aa702015-02-03 21:54:14 +00003534bool LLParser::ParseMDField(LocTy Loc, StringRef Name, MDFieldList &Result) {
3535 SmallVector<Metadata *, 4> MDs;
3536 if (ParseMDNodeVector(MDs))
3537 return true;
3538
3539 Result.assign(std::move(MDs));
3540 return false;
3541}
3542
Duncan P. N. Exon Smith2f09c462015-02-04 22:13:28 +00003543} // end namespace llvm
3544
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003545template <class ParserTy>
Duncan P. N. Exon Smith66ca92e2015-01-19 23:39:32 +00003546bool LLParser::ParseMDFieldsImplBody(ParserTy parseField) {
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003547 do {
3548 if (Lex.getKind() != lltok::LabelStr)
3549 return TokError("expected field label here");
3550
3551 if (parseField())
3552 return true;
3553 } while (EatIfPresent(lltok::comma));
3554
Duncan P. N. Exon Smith66ca92e2015-01-19 23:39:32 +00003555 return false;
3556}
3557
3558template <class ParserTy>
3559bool LLParser::ParseMDFieldsImpl(ParserTy parseField, LocTy &ClosingLoc) {
3560 assert(Lex.getKind() == lltok::MetadataVar && "Expected metadata type name");
3561 Lex.Lex();
3562
3563 if (ParseToken(lltok::lparen, "expected '(' here"))
3564 return true;
3565 if (Lex.getKind() != lltok::rparen)
3566 if (ParseMDFieldsImplBody(parseField))
3567 return true;
3568
Duncan P. N. Exon Smith13890af2015-01-19 23:32:36 +00003569 ClosingLoc = Lex.getLoc();
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003570 return ParseToken(lltok::rparen, "expected ')' here");
3571}
3572
Duncan P. N. Exon Smitha7477282015-01-20 02:42:29 +00003573template <class FieldTy>
3574bool LLParser::ParseMDField(StringRef Name, FieldTy &Result) {
3575 if (Result.Seen)
3576 return TokError("field '" + Name + "' cannot be specified more than once");
3577
3578 LocTy Loc = Lex.getLoc();
3579 Lex.Lex();
3580 return ParseMDField(Loc, Name, Result);
3581}
3582
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003583bool LLParser::ParseSpecializedMDNode(MDNode *&N, bool IsDistinct) {
3584 assert(Lex.getKind() == lltok::MetadataVar && "Expected metadata type name");
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003585
3586#define HANDLE_SPECIALIZED_MDNODE_LEAF(CLASS) \
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003587 if (Lex.getStrVal() == #CLASS) \
3588 return Parse##CLASS(N, IsDistinct);
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003589#include "llvm/IR/Metadata.def"
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003590
3591 return TokError("expected metadata type");
3592}
3593
Duncan P. N. Exon Smith2a6b5fc2015-01-19 23:44:41 +00003594#define DECLARE_FIELD(NAME, TYPE, INIT) TYPE NAME INIT
3595#define NOP_FIELD(NAME, TYPE, INIT)
3596#define REQUIRE_FIELD(NAME, TYPE, INIT) \
3597 if (!NAME.Seen) \
3598 return Error(ClosingLoc, "missing required field '" #NAME "'");
3599#define PARSE_MD_FIELD(NAME, TYPE, DEFAULT) \
Duncan P. N. Exon Smitha7477282015-01-20 02:42:29 +00003600 if (Lex.getStrVal() == #NAME) \
3601 return ParseMDField(#NAME, NAME);
Duncan P. N. Exon Smith2a6b5fc2015-01-19 23:44:41 +00003602#define PARSE_MD_FIELDS() \
3603 VISIT_MD_FIELDS(DECLARE_FIELD, DECLARE_FIELD) \
3604 do { \
3605 LocTy ClosingLoc; \
3606 if (ParseMDFieldsImpl([&]() -> bool { \
3607 VISIT_MD_FIELDS(PARSE_MD_FIELD, PARSE_MD_FIELD) \
3608 return TokError(Twine("invalid field '") + Lex.getStrVal() + "'"); \
3609 }, ClosingLoc)) \
3610 return true; \
3611 VISIT_MD_FIELDS(NOP_FIELD, REQUIRE_FIELD) \
3612 } while (false)
Duncan P. N. Exon Smith4e4aa702015-02-03 21:54:14 +00003613#define GET_OR_DISTINCT(CLASS, ARGS) \
3614 (IsDistinct ? CLASS::getDistinct ARGS : CLASS::get ARGS)
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003615
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003616/// ParseDILocationFields:
3617/// ::= !DILocation(line: 43, column: 8, scope: !5, inlinedAt: !6)
3618bool LLParser::ParseDILocation(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith2a6b5fc2015-01-19 23:44:41 +00003619#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith9c93dc62015-02-04 22:59:18 +00003620 OPTIONAL(line, LineField, ); \
3621 OPTIONAL(column, ColumnField, ); \
Duncan P. N. Exon Smithe2c61d92015-03-27 17:56:39 +00003622 REQUIRED(scope, MDField, (/* AllowNull */ false)); \
Duncan P. N. Exon Smith2a6b5fc2015-01-19 23:44:41 +00003623 OPTIONAL(inlinedAt, MDField, );
3624 PARSE_MD_FIELDS();
3625#undef VISIT_MD_FIELDS
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003626
Duncan P. N. Exon Smith26489982015-03-26 22:05:04 +00003627 Result = GET_OR_DISTINCT(
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003628 DILocation, (Context, line.Val, column.Val, scope.Val, inlinedAt.Val));
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003629 return false;
3630}
Duncan P. N. Exon Smith4e4aa702015-02-03 21:54:14 +00003631
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003632/// ParseGenericDINode:
3633/// ::= !GenericDINode(tag: 15, header: "...", operands: {...})
3634bool LLParser::ParseGenericDINode(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith4e4aa702015-02-03 21:54:14 +00003635#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith97486072015-02-03 21:56:01 +00003636 REQUIRED(tag, DwarfTagField, ); \
Duncan P. N. Exon Smith4e4aa702015-02-03 21:54:14 +00003637 OPTIONAL(header, MDStringField, ); \
3638 OPTIONAL(operands, MDFieldList, );
3639 PARSE_MD_FIELDS();
3640#undef VISIT_MD_FIELDS
3641
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003642 Result = GET_OR_DISTINCT(GenericDINode,
Duncan P. N. Exon Smith4e4aa702015-02-03 21:54:14 +00003643 (Context, tag.Val, header.Val, operands.Val));
3644 return false;
3645}
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003646
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003647/// ParseDISubrange:
3648/// ::= !DISubrange(count: 30, lowerBound: 2)
3649bool LLParser::ParseDISubrange(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smithc7363f12015-02-13 01:10:38 +00003650#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith5c9a1772015-02-18 23:17:51 +00003651 REQUIRED(count, MDSignedField, (-1, -1, INT64_MAX)); \
Duncan P. N. Exon Smithc7363f12015-02-13 01:10:38 +00003652 OPTIONAL(lowerBound, MDSignedField, );
3653 PARSE_MD_FIELDS();
3654#undef VISIT_MD_FIELDS
3655
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003656 Result = GET_OR_DISTINCT(DISubrange, (Context, count.Val, lowerBound.Val));
Duncan P. N. Exon Smithc7363f12015-02-13 01:10:38 +00003657 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003658}
Duncan P. N. Exon Smithc7363f12015-02-13 01:10:38 +00003659
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003660/// ParseDIEnumerator:
3661/// ::= !DIEnumerator(value: 30, name: "SomeKind")
3662bool LLParser::ParseDIEnumerator(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith87754762015-02-13 01:14:11 +00003663#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smithcd8fb602015-02-18 21:16:33 +00003664 REQUIRED(name, MDStringField, ); \
3665 REQUIRED(value, MDSignedField, );
Duncan P. N. Exon Smith87754762015-02-13 01:14:11 +00003666 PARSE_MD_FIELDS();
3667#undef VISIT_MD_FIELDS
3668
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003669 Result = GET_OR_DISTINCT(DIEnumerator, (Context, value.Val, name.Val));
Duncan P. N. Exon Smith87754762015-02-13 01:14:11 +00003670 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003671}
Duncan P. N. Exon Smith87754762015-02-13 01:14:11 +00003672
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003673/// ParseDIBasicType:
3674/// ::= !DIBasicType(tag: DW_TAG_base_type, name: "int", size: 32, align: 32)
3675bool LLParser::ParseDIBasicType(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith09e03f32015-02-13 01:14:58 +00003676#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith16d182a2015-02-28 23:21:38 +00003677 OPTIONAL(tag, DwarfTagField, (dwarf::DW_TAG_base_type)); \
Duncan P. N. Exon Smith09e03f32015-02-13 01:14:58 +00003678 OPTIONAL(name, MDStringField, ); \
Duncan P. N. Exon Smithd34db172015-02-19 23:56:07 +00003679 OPTIONAL(size, MDUnsignedField, (0, UINT64_MAX)); \
3680 OPTIONAL(align, MDUnsignedField, (0, UINT64_MAX)); \
Duncan P. N. Exon Smithcd6636c2015-02-13 01:17:35 +00003681 OPTIONAL(encoding, DwarfAttEncodingField, );
Duncan P. N. Exon Smith09e03f32015-02-13 01:14:58 +00003682 PARSE_MD_FIELDS();
3683#undef VISIT_MD_FIELDS
3684
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003685 Result = GET_OR_DISTINCT(DIBasicType, (Context, tag.Val, name.Val, size.Val,
Duncan P. N. Exon Smith09e03f32015-02-13 01:14:58 +00003686 align.Val, encoding.Val));
3687 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003688}
Duncan P. N. Exon Smith09e03f32015-02-13 01:14:58 +00003689
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003690/// ParseDIDerivedType:
3691/// ::= !DIDerivedType(tag: DW_TAG_pointer_type, name: "int", file: !0,
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00003692/// line: 7, scope: !1, baseType: !2, size: 32,
3693/// align: 32, offset: 0, flags: 0, extraData: !3)
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003694bool LLParser::ParseDIDerivedType(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00003695#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
3696 REQUIRED(tag, DwarfTagField, ); \
3697 OPTIONAL(name, MDStringField, ); \
3698 OPTIONAL(file, MDField, ); \
3699 OPTIONAL(line, LineField, ); \
3700 OPTIONAL(scope, MDField, ); \
3701 REQUIRED(baseType, MDField, ); \
Duncan P. N. Exon Smithd34db172015-02-19 23:56:07 +00003702 OPTIONAL(size, MDUnsignedField, (0, UINT64_MAX)); \
3703 OPTIONAL(align, MDUnsignedField, (0, UINT64_MAX)); \
3704 OPTIONAL(offset, MDUnsignedField, (0, UINT64_MAX)); \
Duncan P. N. Exon Smith70ab3d22015-02-21 01:02:18 +00003705 OPTIONAL(flags, DIFlagField, ); \
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00003706 OPTIONAL(extraData, MDField, );
3707 PARSE_MD_FIELDS();
3708#undef VISIT_MD_FIELDS
3709
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003710 Result = GET_OR_DISTINCT(DIDerivedType,
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00003711 (Context, tag.Val, name.Val, file.Val, line.Val,
3712 scope.Val, baseType.Val, size.Val, align.Val,
3713 offset.Val, flags.Val, extraData.Val));
3714 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003715}
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00003716
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003717bool LLParser::ParseDICompositeType(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00003718#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
3719 REQUIRED(tag, DwarfTagField, ); \
3720 OPTIONAL(name, MDStringField, ); \
3721 OPTIONAL(file, MDField, ); \
3722 OPTIONAL(line, LineField, ); \
3723 OPTIONAL(scope, MDField, ); \
3724 OPTIONAL(baseType, MDField, ); \
Duncan P. N. Exon Smithd34db172015-02-19 23:56:07 +00003725 OPTIONAL(size, MDUnsignedField, (0, UINT64_MAX)); \
3726 OPTIONAL(align, MDUnsignedField, (0, UINT64_MAX)); \
3727 OPTIONAL(offset, MDUnsignedField, (0, UINT64_MAX)); \
Duncan P. N. Exon Smith70ab3d22015-02-21 01:02:18 +00003728 OPTIONAL(flags, DIFlagField, ); \
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00003729 OPTIONAL(elements, MDField, ); \
Duncan P. N. Exon Smithaece2dc2015-02-13 01:21:25 +00003730 OPTIONAL(runtimeLang, DwarfLangField, ); \
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00003731 OPTIONAL(vtableHolder, MDField, ); \
3732 OPTIONAL(templateParams, MDField, ); \
3733 OPTIONAL(identifier, MDStringField, );
3734 PARSE_MD_FIELDS();
3735#undef VISIT_MD_FIELDS
3736
3737 Result = GET_OR_DISTINCT(
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003738 DICompositeType,
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00003739 (Context, tag.Val, name.Val, file.Val, line.Val, scope.Val, baseType.Val,
3740 size.Val, align.Val, offset.Val, flags.Val, elements.Val,
3741 runtimeLang.Val, vtableHolder.Val, templateParams.Val, identifier.Val));
3742 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003743}
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00003744
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003745bool LLParser::ParseDISubroutineType(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith54e2bc62015-02-13 01:22:59 +00003746#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith70ab3d22015-02-21 01:02:18 +00003747 OPTIONAL(flags, DIFlagField, ); \
Duncan P. N. Exon Smith54e2bc62015-02-13 01:22:59 +00003748 REQUIRED(types, MDField, );
3749 PARSE_MD_FIELDS();
3750#undef VISIT_MD_FIELDS
3751
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003752 Result = GET_OR_DISTINCT(DISubroutineType, (Context, flags.Val, types.Val));
Duncan P. N. Exon Smith54e2bc62015-02-13 01:22:59 +00003753 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003754}
Duncan P. N. Exon Smithf14b9c72015-02-13 01:19:14 +00003755
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003756/// ParseDIFileType:
3757/// ::= !DIFileType(filename: "path/to/file", directory: "/path/to/dir")
3758bool LLParser::ParseDIFile(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smithf14b9c72015-02-13 01:19:14 +00003759#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
3760 REQUIRED(filename, MDStringField, ); \
3761 REQUIRED(directory, MDStringField, );
3762 PARSE_MD_FIELDS();
3763#undef VISIT_MD_FIELDS
3764
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003765 Result = GET_OR_DISTINCT(DIFile, (Context, filename.Val, directory.Val));
Duncan P. N. Exon Smithf14b9c72015-02-13 01:19:14 +00003766 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003767}
Duncan P. N. Exon Smithf14b9c72015-02-13 01:19:14 +00003768
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003769/// ParseDICompileUnit:
3770/// ::= !DICompileUnit(language: DW_LANG_C99, file: !0, producer: "clang",
Duncan P. N. Exon Smithc1f1acc2015-02-13 01:25:10 +00003771/// isOptimized: true, flags: "-O2", runtimeVersion: 1,
3772/// splitDebugFilename: "abc.debug", emissionKind: 1,
3773/// enums: !1, retainedTypes: !2, subprograms: !3,
Adrian Prantl1f599f92015-05-21 20:37:30 +00003774/// globals: !4, imports: !5, dwoId: 0x0abcd)
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003775bool LLParser::ParseDICompileUnit(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith55ca9642015-08-03 17:26:41 +00003776 if (!IsDistinct)
3777 return Lex.Error("missing 'distinct', required for !DICompileUnit");
3778
Duncan P. N. Exon Smithc1f1acc2015-02-13 01:25:10 +00003779#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
3780 REQUIRED(language, DwarfLangField, ); \
Duncan P. N. Exon Smithcd07efa12015-03-31 00:47:15 +00003781 REQUIRED(file, MDField, (/* AllowNull */ false)); \
Duncan P. N. Exon Smithc1f1acc2015-02-13 01:25:10 +00003782 OPTIONAL(producer, MDStringField, ); \
3783 OPTIONAL(isOptimized, MDBoolField, ); \
3784 OPTIONAL(flags, MDStringField, ); \
3785 OPTIONAL(runtimeVersion, MDUnsignedField, (0, UINT32_MAX)); \
3786 OPTIONAL(splitDebugFilename, MDStringField, ); \
3787 OPTIONAL(emissionKind, MDUnsignedField, (0, UINT32_MAX)); \
3788 OPTIONAL(enums, MDField, ); \
3789 OPTIONAL(retainedTypes, MDField, ); \
3790 OPTIONAL(subprograms, MDField, ); \
3791 OPTIONAL(globals, MDField, ); \
Adrian Prantl1f599f92015-05-21 20:37:30 +00003792 OPTIONAL(imports, MDField, ); \
3793 OPTIONAL(dwoId, MDUnsignedField, );
Duncan P. N. Exon Smithc1f1acc2015-02-13 01:25:10 +00003794 PARSE_MD_FIELDS();
3795#undef VISIT_MD_FIELDS
3796
Duncan P. N. Exon Smith55ca9642015-08-03 17:26:41 +00003797 Result = DICompileUnit::getDistinct(
3798 Context, language.Val, file.Val, producer.Val, isOptimized.Val, flags.Val,
3799 runtimeVersion.Val, splitDebugFilename.Val, emissionKind.Val, enums.Val,
3800 retainedTypes.Val, subprograms.Val, globals.Val, imports.Val, dwoId.Val);
Duncan P. N. Exon Smithc1f1acc2015-02-13 01:25:10 +00003801 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003802}
Duncan P. N. Exon Smithc1f1acc2015-02-13 01:25:10 +00003803
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003804/// ParseDISubprogram:
3805/// ::= !DISubprogram(scope: !0, name: "foo", linkageName: "_Zfoo",
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003806/// file: !1, line: 7, type: !2, isLocal: false,
3807/// isDefinition: true, scopeLine: 8, containingType: !3,
Duncan P. N. Exon Smith890533e2015-02-13 01:28:16 +00003808/// virtuality: DW_VIRTUALTIY_pure_virtual,
3809/// virtualIndex: 10, flags: 11,
Peter Collingbourned4bff302015-11-05 22:03:56 +00003810/// isOptimized: false, templateParams: !4, declaration: !5,
3811/// variables: !6)
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003812bool LLParser::ParseDISubprogram(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith814b8e92015-08-28 20:26:49 +00003813 auto Loc = Lex.getLoc();
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003814#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
3815 OPTIONAL(scope, MDField, ); \
Duncan P. N. Exon Smith3eea1962015-03-16 19:01:54 +00003816 OPTIONAL(name, MDStringField, ); \
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003817 OPTIONAL(linkageName, MDStringField, ); \
3818 OPTIONAL(file, MDField, ); \
3819 OPTIONAL(line, LineField, ); \
3820 OPTIONAL(type, MDField, ); \
3821 OPTIONAL(isLocal, MDBoolField, ); \
3822 OPTIONAL(isDefinition, MDBoolField, (true)); \
3823 OPTIONAL(scopeLine, LineField, ); \
3824 OPTIONAL(containingType, MDField, ); \
Duncan P. N. Exon Smith890533e2015-02-13 01:28:16 +00003825 OPTIONAL(virtuality, DwarfVirtualityField, ); \
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003826 OPTIONAL(virtualIndex, MDUnsignedField, (0, UINT32_MAX)); \
Duncan P. N. Exon Smith70ab3d22015-02-21 01:02:18 +00003827 OPTIONAL(flags, DIFlagField, ); \
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003828 OPTIONAL(isOptimized, MDBoolField, ); \
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003829 OPTIONAL(templateParams, MDField, ); \
3830 OPTIONAL(declaration, MDField, ); \
3831 OPTIONAL(variables, MDField, );
3832 PARSE_MD_FIELDS();
3833#undef VISIT_MD_FIELDS
3834
Duncan P. N. Exon Smith814b8e92015-08-28 20:26:49 +00003835 if (isDefinition.Val && !IsDistinct)
3836 return Lex.Error(
3837 Loc,
3838 "missing 'distinct', required for !DISubprogram when 'isDefinition'");
3839
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003840 Result = GET_OR_DISTINCT(
Peter Collingbourned4bff302015-11-05 22:03:56 +00003841 DISubprogram,
3842 (Context, scope.Val, name.Val, linkageName.Val, file.Val, line.Val,
3843 type.Val, isLocal.Val, isDefinition.Val, scopeLine.Val,
3844 containingType.Val, virtuality.Val, virtualIndex.Val, flags.Val,
3845 isOptimized.Val, templateParams.Val, declaration.Val, variables.Val));
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003846 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003847}
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003848
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003849/// ParseDILexicalBlock:
3850/// ::= !DILexicalBlock(scope: !0, file: !2, line: 7, column: 9)
3851bool LLParser::ParseDILexicalBlock(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smitha96d4092015-02-13 01:29:28 +00003852#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith0e202b92015-03-30 16:37:48 +00003853 REQUIRED(scope, MDField, (/* AllowNull */ false)); \
Duncan P. N. Exon Smitha96d4092015-02-13 01:29:28 +00003854 OPTIONAL(file, MDField, ); \
3855 OPTIONAL(line, LineField, ); \
3856 OPTIONAL(column, ColumnField, );
3857 PARSE_MD_FIELDS();
3858#undef VISIT_MD_FIELDS
3859
3860 Result = GET_OR_DISTINCT(
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003861 DILexicalBlock, (Context, scope.Val, file.Val, line.Val, column.Val));
Duncan P. N. Exon Smitha96d4092015-02-13 01:29:28 +00003862 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003863}
Duncan P. N. Exon Smitha96d4092015-02-13 01:29:28 +00003864
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003865/// ParseDILexicalBlockFile:
3866/// ::= !DILexicalBlockFile(scope: !0, file: !2, discriminator: 9)
3867bool LLParser::ParseDILexicalBlockFile(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith06a07022015-02-13 01:30:42 +00003868#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith0e202b92015-03-30 16:37:48 +00003869 REQUIRED(scope, MDField, (/* AllowNull */ false)); \
Duncan P. N. Exon Smith06a07022015-02-13 01:30:42 +00003870 OPTIONAL(file, MDField, ); \
3871 REQUIRED(discriminator, MDUnsignedField, (0, UINT32_MAX));
3872 PARSE_MD_FIELDS();
3873#undef VISIT_MD_FIELDS
3874
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003875 Result = GET_OR_DISTINCT(DILexicalBlockFile,
Duncan P. N. Exon Smith06a07022015-02-13 01:30:42 +00003876 (Context, scope.Val, file.Val, discriminator.Val));
3877 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003878}
Duncan P. N. Exon Smith06a07022015-02-13 01:30:42 +00003879
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003880/// ParseDINamespace:
3881/// ::= !DINamespace(scope: !0, file: !2, name: "SomeNamespace", line: 9)
3882bool LLParser::ParseDINamespace(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smithe1460002015-02-13 01:32:09 +00003883#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
3884 REQUIRED(scope, MDField, ); \
3885 OPTIONAL(file, MDField, ); \
3886 OPTIONAL(name, MDStringField, ); \
3887 OPTIONAL(line, LineField, );
3888 PARSE_MD_FIELDS();
3889#undef VISIT_MD_FIELDS
3890
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003891 Result = GET_OR_DISTINCT(DINamespace,
Duncan P. N. Exon Smithe1460002015-02-13 01:32:09 +00003892 (Context, scope.Val, file.Val, name.Val, line.Val));
3893 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003894}
Duncan P. N. Exon Smithe1460002015-02-13 01:32:09 +00003895
Adrian Prantlab1243f2015-06-29 23:03:47 +00003896/// ParseDIModule:
3897/// ::= !DIModule(scope: !0, name: "SomeModule", configMacros: "-DNDEBUG",
3898/// includePath: "/usr/include", isysroot: "/")
3899bool LLParser::ParseDIModule(MDNode *&Result, bool IsDistinct) {
3900#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
3901 REQUIRED(scope, MDField, ); \
3902 REQUIRED(name, MDStringField, ); \
3903 OPTIONAL(configMacros, MDStringField, ); \
3904 OPTIONAL(includePath, MDStringField, ); \
3905 OPTIONAL(isysroot, MDStringField, );
3906 PARSE_MD_FIELDS();
3907#undef VISIT_MD_FIELDS
3908
3909 Result = GET_OR_DISTINCT(DIModule, (Context, scope.Val, name.Val,
3910 configMacros.Val, includePath.Val, isysroot.Val));
3911 return false;
3912}
3913
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003914/// ParseDITemplateTypeParameter:
3915/// ::= !DITemplateTypeParameter(name: "Ty", type: !1)
3916bool LLParser::ParseDITemplateTypeParameter(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith2847f382015-02-13 01:34:32 +00003917#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith2847f382015-02-13 01:34:32 +00003918 OPTIONAL(name, MDStringField, ); \
3919 REQUIRED(type, MDField, );
3920 PARSE_MD_FIELDS();
3921#undef VISIT_MD_FIELDS
3922
Duncan P. N. Exon Smith3d62bba2015-02-19 00:37:21 +00003923 Result =
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003924 GET_OR_DISTINCT(DITemplateTypeParameter, (Context, name.Val, type.Val));
Duncan P. N. Exon Smith2847f382015-02-13 01:34:32 +00003925 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003926}
Duncan P. N. Exon Smith2847f382015-02-13 01:34:32 +00003927
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003928/// ParseDITemplateValueParameter:
3929/// ::= !DITemplateValueParameter(tag: DW_TAG_template_value_parameter,
Duncan P. N. Exon Smith3d62bba2015-02-19 00:37:21 +00003930/// name: "V", type: !1, value: i32 7)
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003931bool LLParser::ParseDITemplateValueParameter(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith2847f382015-02-13 01:34:32 +00003932#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith16d182a2015-02-28 23:21:38 +00003933 OPTIONAL(tag, DwarfTagField, (dwarf::DW_TAG_template_value_parameter)); \
Duncan P. N. Exon Smith2847f382015-02-13 01:34:32 +00003934 OPTIONAL(name, MDStringField, ); \
Duncan P. N. Exon Smith16d182a2015-02-28 23:21:38 +00003935 OPTIONAL(type, MDField, ); \
Duncan P. N. Exon Smith2847f382015-02-13 01:34:32 +00003936 REQUIRED(value, MDField, );
3937 PARSE_MD_FIELDS();
3938#undef VISIT_MD_FIELDS
3939
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003940 Result = GET_OR_DISTINCT(DITemplateValueParameter,
Duncan P. N. Exon Smith3d62bba2015-02-19 00:37:21 +00003941 (Context, tag.Val, name.Val, type.Val, value.Val));
Duncan P. N. Exon Smith2847f382015-02-13 01:34:32 +00003942 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003943}
Duncan P. N. Exon Smith2847f382015-02-13 01:34:32 +00003944
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003945/// ParseDIGlobalVariable:
3946/// ::= !DIGlobalVariable(scope: !0, name: "foo", linkageName: "foo",
Duncan P. N. Exon Smithc8f810a2015-02-13 01:35:40 +00003947/// file: !1, line: 7, type: !2, isLocal: false,
3948/// isDefinition: true, variable: i32* @foo,
3949/// declaration: !3)
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003950bool LLParser::ParseDIGlobalVariable(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smithc8f810a2015-02-13 01:35:40 +00003951#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith94d58f82015-03-31 01:28:22 +00003952 REQUIRED(name, MDStringField, (/* AllowEmpty */ false)); \
Duncan P. N. Exon Smithc8f810a2015-02-13 01:35:40 +00003953 OPTIONAL(scope, MDField, ); \
Duncan P. N. Exon Smithc8f810a2015-02-13 01:35:40 +00003954 OPTIONAL(linkageName, MDStringField, ); \
3955 OPTIONAL(file, MDField, ); \
3956 OPTIONAL(line, LineField, ); \
3957 OPTIONAL(type, MDField, ); \
3958 OPTIONAL(isLocal, MDBoolField, ); \
3959 OPTIONAL(isDefinition, MDBoolField, (true)); \
3960 OPTIONAL(variable, MDConstant, ); \
3961 OPTIONAL(declaration, MDField, );
3962 PARSE_MD_FIELDS();
3963#undef VISIT_MD_FIELDS
3964
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003965 Result = GET_OR_DISTINCT(DIGlobalVariable,
Duncan P. N. Exon Smithc8f810a2015-02-13 01:35:40 +00003966 (Context, scope.Val, name.Val, linkageName.Val,
3967 file.Val, line.Val, type.Val, isLocal.Val,
3968 isDefinition.Val, variable.Val, declaration.Val));
3969 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003970}
Duncan P. N. Exon Smithc8f810a2015-02-13 01:35:40 +00003971
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003972/// ParseDILocalVariable:
Duncan P. N. Exon Smithed013cd2015-07-31 18:58:39 +00003973/// ::= !DILocalVariable(arg: 7, scope: !0, name: "foo",
3974/// file: !1, line: 7, type: !2, arg: 2, flags: 7)
3975/// ::= !DILocalVariable(scope: !0, name: "foo",
Duncan P. N. Exon Smith62e0f452015-04-15 22:29:27 +00003976/// file: !1, line: 7, type: !2, arg: 2, flags: 7)
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003977bool LLParser::ParseDILocalVariable(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith72fe2d02015-02-13 01:39:44 +00003978#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smithe2c61d92015-03-27 17:56:39 +00003979 REQUIRED(scope, MDField, (/* AllowNull */ false)); \
Duncan P. N. Exon Smith72fe2d02015-02-13 01:39:44 +00003980 OPTIONAL(name, MDStringField, ); \
Duncan P. N. Exon Smithed013cd2015-07-31 18:58:39 +00003981 OPTIONAL(arg, MDUnsignedField, (0, UINT16_MAX)); \
Duncan P. N. Exon Smith72fe2d02015-02-13 01:39:44 +00003982 OPTIONAL(file, MDField, ); \
3983 OPTIONAL(line, LineField, ); \
3984 OPTIONAL(type, MDField, ); \
Duncan P. N. Exon Smith62e0f452015-04-15 22:29:27 +00003985 OPTIONAL(flags, DIFlagField, );
Duncan P. N. Exon Smith72fe2d02015-02-13 01:39:44 +00003986 PARSE_MD_FIELDS();
3987#undef VISIT_MD_FIELDS
3988
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003989 Result = GET_OR_DISTINCT(DILocalVariable,
Duncan P. N. Exon Smithed013cd2015-07-31 18:58:39 +00003990 (Context, scope.Val, name.Val, file.Val, line.Val,
3991 type.Val, arg.Val, flags.Val));
Duncan P. N. Exon Smith72fe2d02015-02-13 01:39:44 +00003992 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003993}
Duncan P. N. Exon Smith72fe2d02015-02-13 01:39:44 +00003994
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003995/// ParseDIExpression:
3996/// ::= !DIExpression(0, 7, -1)
3997bool LLParser::ParseDIExpression(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith0c5c0122015-02-13 01:42:09 +00003998 assert(Lex.getKind() == lltok::MetadataVar && "Expected metadata type name");
3999 Lex.Lex();
4000
4001 if (ParseToken(lltok::lparen, "expected '(' here"))
4002 return true;
4003
4004 SmallVector<uint64_t, 8> Elements;
4005 if (Lex.getKind() != lltok::rparen)
4006 do {
4007 if (Lex.getKind() == lltok::DwarfOp) {
4008 if (unsigned Op = dwarf::getOperationEncoding(Lex.getStrVal())) {
4009 Lex.Lex();
4010 Elements.push_back(Op);
4011 continue;
4012 }
4013 return TokError(Twine("invalid DWARF op '") + Lex.getStrVal() + "'");
4014 }
4015
4016 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned())
4017 return TokError("expected unsigned integer");
4018
4019 auto &U = Lex.getAPSIntVal();
4020 if (U.ugt(UINT64_MAX))
4021 return TokError("element too large, limit is " + Twine(UINT64_MAX));
4022 Elements.push_back(U.getZExtValue());
4023 Lex.Lex();
4024 } while (EatIfPresent(lltok::comma));
4025
4026 if (ParseToken(lltok::rparen, "expected ')' here"))
4027 return true;
4028
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004029 Result = GET_OR_DISTINCT(DIExpression, (Context, Elements));
Duncan P. N. Exon Smith0c5c0122015-02-13 01:42:09 +00004030 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00004031}
Duncan P. N. Exon Smith0c5c0122015-02-13 01:42:09 +00004032
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004033/// ParseDIObjCProperty:
4034/// ::= !DIObjCProperty(name: "foo", file: !1, line: 7, setter: "setFoo",
Duncan P. N. Exon Smithd45ce962015-02-13 01:43:22 +00004035/// getter: "getFoo", attributes: 7, type: !2)
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004036bool LLParser::ParseDIObjCProperty(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smithd45ce962015-02-13 01:43:22 +00004037#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith3eea1962015-03-16 19:01:54 +00004038 OPTIONAL(name, MDStringField, ); \
Duncan P. N. Exon Smithd45ce962015-02-13 01:43:22 +00004039 OPTIONAL(file, MDField, ); \
4040 OPTIONAL(line, LineField, ); \
4041 OPTIONAL(setter, MDStringField, ); \
4042 OPTIONAL(getter, MDStringField, ); \
4043 OPTIONAL(attributes, MDUnsignedField, (0, UINT32_MAX)); \
4044 OPTIONAL(type, MDField, );
4045 PARSE_MD_FIELDS();
4046#undef VISIT_MD_FIELDS
4047
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004048 Result = GET_OR_DISTINCT(DIObjCProperty,
Duncan P. N. Exon Smithd45ce962015-02-13 01:43:22 +00004049 (Context, name.Val, file.Val, line.Val, setter.Val,
4050 getter.Val, attributes.Val, type.Val));
4051 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00004052}
Duncan P. N. Exon Smithd45ce962015-02-13 01:43:22 +00004053
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004054/// ParseDIImportedEntity:
4055/// ::= !DIImportedEntity(tag: DW_TAG_imported_module, scope: !0, entity: !1,
Duncan P. N. Exon Smith1c931162015-02-13 01:46:02 +00004056/// line: 7, name: "foo")
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004057bool LLParser::ParseDIImportedEntity(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith1c931162015-02-13 01:46:02 +00004058#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
4059 REQUIRED(tag, DwarfTagField, ); \
4060 REQUIRED(scope, MDField, ); \
4061 OPTIONAL(entity, MDField, ); \
4062 OPTIONAL(line, LineField, ); \
4063 OPTIONAL(name, MDStringField, );
4064 PARSE_MD_FIELDS();
4065#undef VISIT_MD_FIELDS
4066
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004067 Result = GET_OR_DISTINCT(DIImportedEntity, (Context, tag.Val, scope.Val,
Duncan P. N. Exon Smith1c931162015-02-13 01:46:02 +00004068 entity.Val, line.Val, name.Val));
4069 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00004070}
Duncan P. N. Exon Smith1c931162015-02-13 01:46:02 +00004071
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00004072#undef PARSE_MD_FIELD
Duncan P. N. Exon Smith2a6b5fc2015-01-19 23:44:41 +00004073#undef NOP_FIELD
4074#undef REQUIRE_FIELD
4075#undef DECLARE_FIELD
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00004076
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00004077/// ParseMetadataAsValue
4078/// ::= metadata i32 %local
4079/// ::= metadata i32 @global
4080/// ::= metadata i32 7
4081/// ::= metadata !0
4082/// ::= metadata !{...}
4083/// ::= metadata !"string"
4084bool LLParser::ParseMetadataAsValue(Value *&V, PerFunctionState &PFS) {
4085 // Note: the type 'metadata' has already been parsed.
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00004086 Metadata *MD;
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00004087 if (ParseMetadata(MD, &PFS))
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00004088 return true;
4089
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00004090 V = MetadataAsValue::get(Context, MD);
4091 return false;
4092}
4093
4094/// ParseValueAsMetadata
4095/// ::= i32 %local
4096/// ::= i32 @global
4097/// ::= i32 7
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00004098bool LLParser::ParseValueAsMetadata(Metadata *&MD, const Twine &TypeMsg,
4099 PerFunctionState *PFS) {
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00004100 Type *Ty;
4101 LocTy Loc;
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00004102 if (ParseType(Ty, TypeMsg, Loc))
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00004103 return true;
4104 if (Ty->isMetadataTy())
4105 return Error(Loc, "invalid metadata-value-metadata roundtrip");
4106
4107 Value *V;
4108 if (ParseValue(Ty, V, PFS))
4109 return true;
4110
4111 MD = ValueAsMetadata::get(V);
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00004112 return false;
4113}
4114
4115/// ParseMetadata
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00004116/// ::= i32 %local
4117/// ::= i32 @global
4118/// ::= i32 7
Dan Gohman8939ba332010-07-14 18:26:50 +00004119/// ::= !42
4120/// ::= !{...}
4121/// ::= !"string"
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004122/// ::= !DILocation(...)
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00004123bool LLParser::ParseMetadata(Metadata *&MD, PerFunctionState *PFS) {
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00004124 if (Lex.getKind() == lltok::MetadataVar) {
4125 MDNode *N;
4126 if (ParseSpecializedMDNode(N))
4127 return true;
4128 MD = N;
4129 return false;
4130 }
4131
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00004132 // ValueAsMetadata:
4133 // <type> <value>
4134 if (Lex.getKind() != lltok::exclaim)
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00004135 return ParseValueAsMetadata(MD, "expected metadata operand", PFS);
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00004136
4137 // '!'.
4138 assert(Lex.getKind() == lltok::exclaim && "Expected '!' here");
4139 Lex.Lex();
Dan Gohman8939ba332010-07-14 18:26:50 +00004140
Duncan P. N. Exon Smith62a79192015-01-12 22:24:50 +00004141 // MDString:
4142 // ::= '!' STRINGCONSTANT
4143 if (Lex.getKind() == lltok::StringConstant) {
4144 MDString *S;
4145 if (ParseMDString(S))
4146 return true;
4147 MD = S;
4148 return false;
4149 }
4150
Dan Gohman8939ba332010-07-14 18:26:50 +00004151 // MDNode:
4152 // !{ ... }
Duncan P. N. Exon Smithf825dae2015-01-12 22:26:48 +00004153 // !7
Duncan P. N. Exon Smith62a79192015-01-12 22:24:50 +00004154 MDNode *N;
Duncan P. N. Exon Smithf825dae2015-01-12 22:26:48 +00004155 if (ParseMDNodeTail(N))
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00004156 return true;
Duncan P. N. Exon Smith62a79192015-01-12 22:24:50 +00004157 MD = N;
Dan Gohman8939ba332010-07-14 18:26:50 +00004158 return false;
4159}
4160
Victor Hernandez9d75c962010-01-11 22:31:58 +00004161
4162//===----------------------------------------------------------------------===//
4163// Function Parsing.
4164//===----------------------------------------------------------------------===//
4165
Chris Lattner229907c2011-07-18 04:54:35 +00004166bool LLParser::ConvertValIDToValue(Type *Ty, ValID &ID, Value *&V,
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00004167 PerFunctionState *PFS,
4168 OperatorConstraint OC) {
Duncan Sands19d0b472010-02-16 11:11:14 +00004169 if (Ty->isFunctionTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00004170 return Error(ID.Loc, "functions are not values, refer to them as pointers");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004171
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00004172 if (OC && ID.Kind != ValID::t_LocalID && ID.Kind != ValID::t_LocalName) {
4173 switch (OC) {
4174 case OC_CatchPad:
4175 return Error(ID.Loc, "Catchpad value required in this position");
4176 case OC_CleanupPad:
4177 return Error(ID.Loc, "Cleanuppad value required in this position");
4178 default:
4179 llvm_unreachable("Unexpected constraint kind");
4180 }
4181 }
4182
Chris Lattnerac161bf2009-01-02 07:01:27 +00004183 switch (ID.Kind) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00004184 case ValID::t_LocalID:
Victor Hernandez9d75c962010-01-11 22:31:58 +00004185 if (!PFS) return Error(ID.Loc, "invalid use of function-local name");
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00004186 V = PFS->GetVal(ID.UIntVal, Ty, ID.Loc, OC);
Craig Topper2617dcc2014-04-15 06:32:26 +00004187 return V == nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004188 case ValID::t_LocalName:
Victor Hernandez9d75c962010-01-11 22:31:58 +00004189 if (!PFS) return Error(ID.Loc, "invalid use of function-local name");
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00004190 V = PFS->GetVal(ID.StrVal, Ty, ID.Loc, OC);
Craig Topper2617dcc2014-04-15 06:32:26 +00004191 return V == nullptr;
Victor Hernandez9d75c962010-01-11 22:31:58 +00004192 case ValID::t_InlineAsm: {
Karl Schimpf44876c52015-09-03 16:18:32 +00004193 if (!ID.FTy || !InlineAsm::Verify(ID.FTy, ID.StrVal2))
Victor Hernandez9d75c962010-01-11 22:31:58 +00004194 return Error(ID.Loc, "invalid type for inline asm constraint string");
David Blaikie41ba2b42015-07-27 23:32:19 +00004195 V = InlineAsm::get(ID.FTy, ID.StrVal, ID.StrVal2, ID.UIntVal & 1,
4196 (ID.UIntVal >> 1) & 1,
4197 (InlineAsm::AsmDialect(ID.UIntVal >> 2)));
Victor Hernandez9d75c962010-01-11 22:31:58 +00004198 return false;
4199 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00004200 case ValID::t_GlobalName:
4201 V = GetGlobalVal(ID.StrVal, Ty, ID.Loc);
Craig Topper2617dcc2014-04-15 06:32:26 +00004202 return V == nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004203 case ValID::t_GlobalID:
4204 V = GetGlobalVal(ID.UIntVal, Ty, ID.Loc);
Craig Topper2617dcc2014-04-15 06:32:26 +00004205 return V == nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004206 case ValID::t_APSInt:
Duncan Sands19d0b472010-02-16 11:11:14 +00004207 if (!Ty->isIntegerTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00004208 return Error(ID.Loc, "integer constant must have integer type");
Jay Foad583abbc2010-12-07 08:25:19 +00004209 ID.APSIntVal = ID.APSIntVal.extOrTrunc(Ty->getPrimitiveSizeInBits());
Owen Andersonedb4a702009-07-24 23:12:02 +00004210 V = ConstantInt::get(Context, ID.APSIntVal);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004211 return false;
4212 case ValID::t_APFloat:
Duncan Sands9dff9be2010-02-15 16:12:20 +00004213 if (!Ty->isFloatingPointTy() ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00004214 !ConstantFP::isValueValidForType(Ty, ID.APFloatVal))
4215 return Error(ID.Loc, "floating point constant invalid for type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004216
Dan Gohman518cda42011-12-17 00:04:22 +00004217 // The lexer has no type info, so builds all half, float, and double FP
4218 // constants as double. Fix this here. Long double does not need this.
4219 if (&ID.APFloatVal.getSemantics() == &APFloat::IEEEdouble) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00004220 bool Ignored;
Dan Gohman518cda42011-12-17 00:04:22 +00004221 if (Ty->isHalfTy())
4222 ID.APFloatVal.convert(APFloat::IEEEhalf, APFloat::rmNearestTiesToEven,
4223 &Ignored);
4224 else if (Ty->isFloatTy())
4225 ID.APFloatVal.convert(APFloat::IEEEsingle, APFloat::rmNearestTiesToEven,
4226 &Ignored);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004227 }
Owen Anderson69c464d2009-07-27 20:59:43 +00004228 V = ConstantFP::get(Context, ID.APFloatVal);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004229
Chris Lattner8f57d29e2009-01-05 18:24:23 +00004230 if (V->getType() != Ty)
4231 return Error(ID.Loc, "floating point constant does not have type '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00004232 getTypeString(Ty) + "'");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004233
Chris Lattnerac161bf2009-01-02 07:01:27 +00004234 return false;
4235 case ValID::t_Null:
Duncan Sands19d0b472010-02-16 11:11:14 +00004236 if (!Ty->isPointerTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00004237 return Error(ID.Loc, "null must be a pointer type");
Owen Andersonb292b8c2009-07-30 23:03:37 +00004238 V = ConstantPointerNull::get(cast<PointerType>(Ty));
Chris Lattnerac161bf2009-01-02 07:01:27 +00004239 return false;
4240 case ValID::t_Undef:
Chris Lattnerffa07782009-01-05 08:13:38 +00004241 // FIXME: LabelTy should not be a first-class type.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004242 if (!Ty->isFirstClassType() || Ty->isLabelTy())
Chris Lattnerffa07782009-01-05 08:13:38 +00004243 return Error(ID.Loc, "invalid type for undef constant");
Owen Andersonb292b8c2009-07-30 23:03:37 +00004244 V = UndefValue::get(Ty);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004245 return false;
Chris Lattner998fa0a2009-01-05 07:52:51 +00004246 case ValID::t_EmptyArray:
Duncan Sands19d0b472010-02-16 11:11:14 +00004247 if (!Ty->isArrayTy() || cast<ArrayType>(Ty)->getNumElements() != 0)
Chris Lattner998fa0a2009-01-05 07:52:51 +00004248 return Error(ID.Loc, "invalid empty array initializer");
Owen Andersonb292b8c2009-07-30 23:03:37 +00004249 V = UndefValue::get(Ty);
Chris Lattner998fa0a2009-01-05 07:52:51 +00004250 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004251 case ValID::t_Zero:
Chris Lattnerffa07782009-01-05 08:13:38 +00004252 // FIXME: LabelTy should not be a first-class type.
Chris Lattnerfdd87902009-10-05 05:54:46 +00004253 if (!Ty->isFirstClassType() || Ty->isLabelTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00004254 return Error(ID.Loc, "invalid type for null constant");
Owen Anderson5a1acd92009-07-31 20:28:14 +00004255 V = Constant::getNullValue(Ty);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004256 return false;
David Majnemerf0f224d2015-11-11 21:57:16 +00004257 case ValID::t_None:
4258 if (!Ty->isTokenTy())
4259 return Error(ID.Loc, "invalid type for none constant");
4260 V = Constant::getNullValue(Ty);
4261 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004262 case ValID::t_Constant:
Chris Lattner13ee7952010-08-28 04:09:24 +00004263 if (ID.ConstantVal->getType() != Ty)
Chris Lattnerac161bf2009-01-02 07:01:27 +00004264 return Error(ID.Loc, "constant expression type mismatch");
Chris Lattner392be582010-02-12 20:49:41 +00004265
Chris Lattnerac161bf2009-01-02 07:01:27 +00004266 V = ID.ConstantVal;
4267 return false;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004268 case ValID::t_ConstantStruct:
4269 case ValID::t_PackedConstantStruct:
Chris Lattner229907c2011-07-18 04:54:35 +00004270 if (StructType *ST = dyn_cast<StructType>(Ty)) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004271 if (ST->getNumElements() != ID.UIntVal)
4272 return Error(ID.Loc,
4273 "initializer with struct type has wrong # elements");
4274 if (ST->isPacked() != (ID.Kind == ValID::t_PackedConstantStruct))
4275 return Error(ID.Loc, "packed'ness of initializer and type don't match");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004276
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004277 // Verify that the elements are compatible with the structtype.
4278 for (unsigned i = 0, e = ID.UIntVal; i != e; ++i)
4279 if (ID.ConstantStructElts[i]->getType() != ST->getElementType(i))
4280 return Error(ID.Loc, "element " + Twine(i) +
4281 " of struct initializer doesn't match struct element type");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004282
David Blaikieadbda4b2015-08-03 20:08:41 +00004283 V = ConstantStruct::get(
4284 ST, makeArrayRef(ID.ConstantStructElts.get(), ID.UIntVal));
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004285 } else
4286 return Error(ID.Loc, "constant expression type mismatch");
4287 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004288 }
Chandler Carruthf3e85022012-01-10 18:08:01 +00004289 llvm_unreachable("Invalid ValID");
Chris Lattnerac161bf2009-01-02 07:01:27 +00004290}
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004291
Alex Lorenzd2255952015-07-17 22:07:03 +00004292bool LLParser::parseConstantValue(Type *Ty, Constant *&C) {
4293 C = nullptr;
4294 ValID ID;
4295 auto Loc = Lex.getLoc();
4296 if (ParseValID(ID, /*PFS=*/nullptr))
4297 return true;
4298 switch (ID.Kind) {
4299 case ValID::t_APSInt:
4300 case ValID::t_APFloat:
Alex Lorenzb9a68db2015-09-09 13:44:33 +00004301 case ValID::t_Undef:
Alex Lorenzd2255952015-07-17 22:07:03 +00004302 case ValID::t_Constant:
4303 case ValID::t_ConstantStruct:
4304 case ValID::t_PackedConstantStruct: {
4305 Value *V;
4306 if (ConvertValIDToValue(Ty, ID, V, /*PFS=*/nullptr))
4307 return true;
4308 assert(isa<Constant>(V) && "Expected a constant value");
4309 C = cast<Constant>(V);
4310 return false;
4311 }
4312 default:
4313 return Error(Loc, "expected a constant value");
4314 }
4315}
4316
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00004317bool LLParser::ParseValue(Type *Ty, Value *&V, PerFunctionState *PFS,
4318 OperatorConstraint OC) {
Craig Topper2617dcc2014-04-15 06:32:26 +00004319 V = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004320 ValID ID;
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00004321 return ParseValID(ID, PFS) || ConvertValIDToValue(Ty, ID, V, PFS, OC);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004322}
4323
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004324bool LLParser::ParseTypeAndValue(Value *&V, PerFunctionState *PFS) {
Craig Topper2617dcc2014-04-15 06:32:26 +00004325 Type *Ty = nullptr;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004326 return ParseType(Ty) ||
4327 ParseValue(Ty, V, PFS);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004328}
4329
Chris Lattner3ed871f2009-10-27 19:13:16 +00004330bool LLParser::ParseTypeAndBasicBlock(BasicBlock *&BB, LocTy &Loc,
4331 PerFunctionState &PFS) {
4332 Value *V;
4333 Loc = Lex.getLoc();
4334 if (ParseTypeAndValue(V, PFS)) return true;
4335 if (!isa<BasicBlock>(V))
4336 return Error(Loc, "expected a basic block");
4337 BB = cast<BasicBlock>(V);
4338 return false;
4339}
4340
4341
Chris Lattnerac161bf2009-01-02 07:01:27 +00004342/// FunctionHeader
4343/// ::= OptionalLinkage OptionalVisibility OptionalCallingConv OptRetAttrs
Rafael Espindola45e6c192011-01-08 16:42:36 +00004344/// OptUnnamedAddr Type GlobalName '(' ArgList ')' OptFuncAttrs OptSection
David Majnemer7fddecc2015-06-17 20:52:32 +00004345/// OptionalAlign OptGC OptionalPrefix OptionalPrologue OptPersonalityFn
Chris Lattnerac161bf2009-01-02 07:01:27 +00004346bool LLParser::ParseFunctionHeader(Function *&Fn, bool isDefine) {
4347 // Parse the linkage.
4348 LocTy LinkageLoc = Lex.getLoc();
4349 unsigned Linkage;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004350
Kostya Serebryanya5054ad2012-01-20 17:56:17 +00004351 unsigned Visibility;
Nico Rieck7157bb72014-01-14 15:22:47 +00004352 unsigned DLLStorageClass;
Bill Wendling50d27842012-10-15 20:35:56 +00004353 AttrBuilder RetAttrs;
Alexey Samsonov17a9cff2014-09-10 18:00:17 +00004354 unsigned CC;
Craig Topper2617dcc2014-04-15 06:32:26 +00004355 Type *RetType = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004356 LocTy RetTypeLoc = Lex.getLoc();
4357 if (ParseOptionalLinkage(Linkage) ||
4358 ParseOptionalVisibility(Visibility) ||
Nico Rieck7157bb72014-01-14 15:22:47 +00004359 ParseOptionalDLLStorageClass(DLLStorageClass) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00004360 ParseOptionalCallingConv(CC) ||
Bill Wendling34c2eb22012-12-04 23:40:58 +00004361 ParseOptionalReturnAttrs(RetAttrs) ||
Chris Lattnerf880ca22009-03-09 04:49:14 +00004362 ParseType(RetType, RetTypeLoc, true /*void allowed*/))
Chris Lattnerac161bf2009-01-02 07:01:27 +00004363 return true;
4364
4365 // Verify that the linkage is ok.
4366 switch ((GlobalValue::LinkageTypes)Linkage) {
4367 case GlobalValue::ExternalLinkage:
4368 break; // always ok.
Duncan Sandse2881052009-03-11 08:08:06 +00004369 case GlobalValue::ExternalWeakLinkage:
Chris Lattnerac161bf2009-01-02 07:01:27 +00004370 if (isDefine)
4371 return Error(LinkageLoc, "invalid linkage for function definition");
4372 break;
Rafael Espindola6de96a12009-01-15 20:18:42 +00004373 case GlobalValue::PrivateLinkage:
Chris Lattnerac161bf2009-01-02 07:01:27 +00004374 case GlobalValue::InternalLinkage:
Nick Lewycky8019af62009-04-13 07:02:02 +00004375 case GlobalValue::AvailableExternallyLinkage:
Duncan Sands12da8ce2009-03-07 15:45:40 +00004376 case GlobalValue::LinkOnceAnyLinkage:
4377 case GlobalValue::LinkOnceODRLinkage:
4378 case GlobalValue::WeakAnyLinkage:
4379 case GlobalValue::WeakODRLinkage:
Chris Lattnerac161bf2009-01-02 07:01:27 +00004380 if (!isDefine)
4381 return Error(LinkageLoc, "invalid linkage for function declaration");
4382 break;
4383 case GlobalValue::AppendingLinkage:
Duncan Sands4581beb2009-03-11 20:14:15 +00004384 case GlobalValue::CommonLinkage:
Chris Lattnerac161bf2009-01-02 07:01:27 +00004385 return Error(LinkageLoc, "invalid function linkage type");
4386 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004387
Duncan P. N. Exon Smithb80de102014-05-07 22:57:20 +00004388 if (!isValidVisibilityForLinkage(Visibility, Linkage))
4389 return Error(LinkageLoc,
4390 "symbol with local linkage must have default visibility");
4391
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004392 if (!FunctionType::isValidReturnType(RetType))
Chris Lattnerac161bf2009-01-02 07:01:27 +00004393 return Error(RetTypeLoc, "invalid function return type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004394
Chris Lattnerac161bf2009-01-02 07:01:27 +00004395 LocTy NameLoc = Lex.getLoc();
Chris Lattner778c62c2009-02-18 21:48:13 +00004396
4397 std::string FunctionName;
4398 if (Lex.getKind() == lltok::GlobalVar) {
4399 FunctionName = Lex.getStrVal();
4400 } else if (Lex.getKind() == lltok::GlobalID) { // @42 is ok.
4401 unsigned NameID = Lex.getUIntVal();
4402
4403 if (NameID != NumberedVals.size())
4404 return TokError("function expected to be numbered '%" +
Benjamin Kramerc7583112010-09-27 17:42:11 +00004405 Twine(NumberedVals.size()) + "'");
Chris Lattner778c62c2009-02-18 21:48:13 +00004406 } else {
4407 return TokError("expected function name");
4408 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004409
Chris Lattner3822f632009-01-02 08:05:26 +00004410 Lex.Lex();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004411
Chris Lattner3822f632009-01-02 08:05:26 +00004412 if (Lex.getKind() != lltok::lparen)
Chris Lattnerac161bf2009-01-02 07:01:27 +00004413 return TokError("expected '(' in function argument list");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004414
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004415 SmallVector<ArgInfo, 8> ArgList;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004416 bool isVarArg;
Bill Wendling50d27842012-10-15 20:35:56 +00004417 AttrBuilder FuncAttrs;
Bill Wendlingb32b0412013-02-08 06:32:06 +00004418 std::vector<unsigned> FwdRefAttrGrps;
Michael Gottesman41748d72013-06-27 00:25:01 +00004419 LocTy BuiltinLoc;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004420 std::string Section;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004421 unsigned Alignment;
Chris Lattner3822f632009-01-02 08:05:26 +00004422 std::string GC;
Rafael Espindola563eb4b2011-01-25 19:09:56 +00004423 bool UnnamedAddr;
4424 LocTy UnnamedAddrLoc;
Craig Topper2617dcc2014-04-15 06:32:26 +00004425 Constant *Prefix = nullptr;
Peter Collingbourne51d2de72014-12-03 02:08:38 +00004426 Constant *Prologue = nullptr;
David Majnemer7fddecc2015-06-17 20:52:32 +00004427 Constant *PersonalityFn = nullptr;
David Majnemerdad0a642014-06-27 18:19:56 +00004428 Comdat *C;
Chris Lattner3822f632009-01-02 08:05:26 +00004429
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004430 if (ParseArgumentList(ArgList, isVarArg) ||
Rafael Espindola563eb4b2011-01-25 19:09:56 +00004431 ParseOptionalToken(lltok::kw_unnamed_addr, UnnamedAddr,
4432 &UnnamedAddrLoc) ||
Bill Wendling09bd1f72013-02-22 00:12:35 +00004433 ParseFnAttributeValuePairs(FuncAttrs, FwdRefAttrGrps, false,
Michael Gottesman41748d72013-06-27 00:25:01 +00004434 BuiltinLoc) ||
Chris Lattner3822f632009-01-02 08:05:26 +00004435 (EatIfPresent(lltok::kw_section) &&
4436 ParseStringConstant(Section)) ||
Rafael Espindola83a362c2015-01-06 22:55:16 +00004437 parseOptionalComdat(FunctionName, C) ||
Chris Lattner3822f632009-01-02 08:05:26 +00004438 ParseOptionalAlignment(Alignment) ||
4439 (EatIfPresent(lltok::kw_gc) &&
Peter Collingbourne3fa50f92013-09-16 01:08:15 +00004440 ParseStringConstant(GC)) ||
4441 (EatIfPresent(lltok::kw_prefix) &&
Peter Collingbourne51d2de72014-12-03 02:08:38 +00004442 ParseGlobalTypeAndValue(Prefix)) ||
4443 (EatIfPresent(lltok::kw_prologue) &&
David Majnemer7fddecc2015-06-17 20:52:32 +00004444 ParseGlobalTypeAndValue(Prologue)) ||
4445 (EatIfPresent(lltok::kw_personality) &&
4446 ParseGlobalTypeAndValue(PersonalityFn)))
Chris Lattner3822f632009-01-02 08:05:26 +00004447 return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004448
Michael Gottesman41748d72013-06-27 00:25:01 +00004449 if (FuncAttrs.contains(Attribute::Builtin))
4450 return Error(BuiltinLoc, "'builtin' attribute not valid on function");
Bill Wendling09bd1f72013-02-22 00:12:35 +00004451
Chris Lattnerac161bf2009-01-02 07:01:27 +00004452 // If the alignment was parsed as an attribute, move to the alignment field.
Bill Wendlingc6daefa2012-10-08 23:27:46 +00004453 if (FuncAttrs.hasAlignmentAttr()) {
Bill Wendling9be77592012-09-21 15:26:31 +00004454 Alignment = FuncAttrs.getAlignment();
Bill Wendling3d7b0b82012-12-19 07:18:57 +00004455 FuncAttrs.removeAttribute(Attribute::Alignment);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004456 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004457
Chris Lattnerac161bf2009-01-02 07:01:27 +00004458 // Okay, if we got here, the function is syntactically valid. Convert types
4459 // and do semantic checks.
Jay Foadb804a2b2011-07-12 14:06:48 +00004460 std::vector<Type*> ParamTypeList;
Bill Wendlingf5075a42013-01-27 02:24:02 +00004461 SmallVector<AttributeSet, 8> Attrs;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004462
Bill Wendling3bef2dd2012-09-19 23:54:18 +00004463 if (RetAttrs.hasAttributes())
Bill Wendlingf5075a42013-01-27 02:24:02 +00004464 Attrs.push_back(AttributeSet::get(RetType->getContext(),
4465 AttributeSet::ReturnIndex,
4466 RetAttrs));
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004467
Chris Lattnerac161bf2009-01-02 07:01:27 +00004468 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004469 ParamTypeList.push_back(ArgList[i].Ty);
Bill Wendlingfe0021a2013-01-31 00:29:54 +00004470 if (ArgList[i].Attrs.hasAttributes(i + 1)) {
4471 AttrBuilder B(ArgList[i].Attrs, i + 1);
Bill Wendlingf5075a42013-01-27 02:24:02 +00004472 Attrs.push_back(AttributeSet::get(RetType->getContext(), i + 1, B));
4473 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00004474 }
4475
Bill Wendling3bef2dd2012-09-19 23:54:18 +00004476 if (FuncAttrs.hasAttributes())
Bill Wendlingf5075a42013-01-27 02:24:02 +00004477 Attrs.push_back(AttributeSet::get(RetType->getContext(),
4478 AttributeSet::FunctionIndex,
4479 FuncAttrs));
Chris Lattnerac161bf2009-01-02 07:01:27 +00004480
Bill Wendlinge94d8432012-12-07 23:16:57 +00004481 AttributeSet PAL = AttributeSet::get(Context, Attrs);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004482
Bill Wendling749a43d2012-12-30 13:50:49 +00004483 if (PAL.hasAttribute(1, Attribute::StructRet) && !RetType->isVoidTy())
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004484 return Error(RetTypeLoc, "functions with 'sret' argument must return void");
4485
Chris Lattner229907c2011-07-18 04:54:35 +00004486 FunctionType *FT =
Owen Anderson4056ca92009-07-29 22:17:13 +00004487 FunctionType::get(RetType, ParamTypeList, isVarArg);
Chris Lattner229907c2011-07-18 04:54:35 +00004488 PointerType *PFT = PointerType::getUnqual(FT);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004489
Craig Topper2617dcc2014-04-15 06:32:26 +00004490 Fn = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004491 if (!FunctionName.empty()) {
4492 // If this was a definition of a forward reference, remove the definition
4493 // from the forward reference table and fill in the forward ref.
David Blaikie9ebdc692015-09-21 21:07:50 +00004494 auto FRVI = ForwardRefVals.find(FunctionName);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004495 if (FRVI != ForwardRefVals.end()) {
4496 Fn = M->getFunction(FunctionName);
Nick Lewycky686d7cb2012-10-11 00:38:25 +00004497 if (!Fn)
4498 return Error(FRVI->second.second, "invalid forward reference to "
4499 "function as global value!");
Chris Lattnerc239eb72010-04-20 04:49:11 +00004500 if (Fn->getType() != PFT)
4501 return Error(FRVI->second.second, "invalid forward reference to "
4502 "function '" + FunctionName + "' with wrong type!");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004503
Chris Lattnerac161bf2009-01-02 07:01:27 +00004504 ForwardRefVals.erase(FRVI);
4505 } else if ((Fn = M->getFunction(FunctionName))) {
Chris Lattner5756c162011-06-17 07:06:44 +00004506 // Reject redefinitions.
4507 return Error(NameLoc, "invalid redefinition of function '" +
4508 FunctionName + "'");
Chris Lattnere38317f2009-10-25 23:22:50 +00004509 } else if (M->getNamedValue(FunctionName)) {
4510 return Error(NameLoc, "redefinition of function '@" + FunctionName + "'");
Chris Lattnerac161bf2009-01-02 07:01:27 +00004511 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004512
Dan Gohman399d6ae2009-08-29 23:37:49 +00004513 } else {
Chris Lattnerac161bf2009-01-02 07:01:27 +00004514 // If this is a definition of a forward referenced function, make sure the
4515 // types agree.
David Blaikie9ebdc692015-09-21 21:07:50 +00004516 auto I = ForwardRefValIDs.find(NumberedVals.size());
Chris Lattnerac161bf2009-01-02 07:01:27 +00004517 if (I != ForwardRefValIDs.end()) {
4518 Fn = cast<Function>(I->second.first);
4519 if (Fn->getType() != PFT)
4520 return Error(NameLoc, "type of definition and forward reference of '@" +
Benjamin Kramerc7583112010-09-27 17:42:11 +00004521 Twine(NumberedVals.size()) + "' disagree");
Chris Lattnerac161bf2009-01-02 07:01:27 +00004522 ForwardRefValIDs.erase(I);
4523 }
4524 }
4525
Craig Topper2617dcc2014-04-15 06:32:26 +00004526 if (!Fn)
Chris Lattnerac161bf2009-01-02 07:01:27 +00004527 Fn = Function::Create(FT, GlobalValue::ExternalLinkage, FunctionName, M);
4528 else // Move the forward-reference to the correct spot in the module.
4529 M->getFunctionList().splice(M->end(), M->getFunctionList(), Fn);
4530
4531 if (FunctionName.empty())
4532 NumberedVals.push_back(Fn);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004533
Chris Lattnerac161bf2009-01-02 07:01:27 +00004534 Fn->setLinkage((GlobalValue::LinkageTypes)Linkage);
4535 Fn->setVisibility((GlobalValue::VisibilityTypes)Visibility);
Nico Rieck7157bb72014-01-14 15:22:47 +00004536 Fn->setDLLStorageClass((GlobalValue::DLLStorageClassTypes)DLLStorageClass);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004537 Fn->setCallingConv(CC);
4538 Fn->setAttributes(PAL);
Rafael Espindola45e6c192011-01-08 16:42:36 +00004539 Fn->setUnnamedAddr(UnnamedAddr);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004540 Fn->setAlignment(Alignment);
4541 Fn->setSection(Section);
David Majnemerdad0a642014-06-27 18:19:56 +00004542 Fn->setComdat(C);
David Majnemer7fddecc2015-06-17 20:52:32 +00004543 Fn->setPersonalityFn(PersonalityFn);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004544 if (!GC.empty()) Fn->setGC(GC.c_str());
Peter Collingbourne3fa50f92013-09-16 01:08:15 +00004545 Fn->setPrefixData(Prefix);
Peter Collingbourne51d2de72014-12-03 02:08:38 +00004546 Fn->setPrologueData(Prologue);
Bill Wendlingb32b0412013-02-08 06:32:06 +00004547 ForwardRefAttrGroups[Fn] = FwdRefAttrGrps;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004548
Chris Lattnerac161bf2009-01-02 07:01:27 +00004549 // Add all of the arguments we parsed to the function.
4550 Function::arg_iterator ArgIt = Fn->arg_begin();
4551 for (unsigned i = 0, e = ArgList.size(); i != e; ++i, ++ArgIt) {
4552 // If the argument has a name, insert it into the argument symbol table.
4553 if (ArgList[i].Name.empty()) continue;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004554
Chris Lattnerac161bf2009-01-02 07:01:27 +00004555 // Set the name, if it conflicted, it will be auto-renamed.
4556 ArgIt->setName(ArgList[i].Name);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004557
Benjamin Kramer1dc34b42010-10-16 11:28:23 +00004558 if (ArgIt->getName() != ArgList[i].Name)
Chris Lattnerac161bf2009-01-02 07:01:27 +00004559 return Error(ArgList[i].Loc, "redefinition of argument '%" +
4560 ArgList[i].Name + "'");
4561 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004562
Duncan P. N. Exon Smith17169902014-08-19 00:13:19 +00004563 if (isDefine)
4564 return false;
4565
Robin Morisset039781e2014-08-29 21:53:01 +00004566 // Check the declaration has no block address forward references.
Duncan P. N. Exon Smith17169902014-08-19 00:13:19 +00004567 ValID ID;
4568 if (FunctionName.empty()) {
4569 ID.Kind = ValID::t_GlobalID;
4570 ID.UIntVal = NumberedVals.size() - 1;
4571 } else {
4572 ID.Kind = ValID::t_GlobalName;
4573 ID.StrVal = FunctionName;
4574 }
4575 auto Blocks = ForwardRefBlockAddresses.find(ID);
4576 if (Blocks != ForwardRefBlockAddresses.end())
4577 return Error(Blocks->first.Loc,
4578 "cannot take blockaddress inside a declaration");
Chris Lattnerac161bf2009-01-02 07:01:27 +00004579 return false;
4580}
4581
Duncan P. N. Exon Smith17169902014-08-19 00:13:19 +00004582bool LLParser::PerFunctionState::resolveForwardRefBlockAddresses() {
4583 ValID ID;
4584 if (FunctionNumber == -1) {
4585 ID.Kind = ValID::t_GlobalName;
4586 ID.StrVal = F.getName();
4587 } else {
4588 ID.Kind = ValID::t_GlobalID;
4589 ID.UIntVal = FunctionNumber;
4590 }
4591
4592 auto Blocks = P.ForwardRefBlockAddresses.find(ID);
4593 if (Blocks == P.ForwardRefBlockAddresses.end())
4594 return false;
4595
4596 for (const auto &I : Blocks->second) {
4597 const ValID &BBID = I.first;
4598 GlobalValue *GV = I.second;
4599
4600 assert((BBID.Kind == ValID::t_LocalID || BBID.Kind == ValID::t_LocalName) &&
4601 "Expected local id or name");
4602 BasicBlock *BB;
4603 if (BBID.Kind == ValID::t_LocalName)
4604 BB = GetBB(BBID.StrVal, BBID.Loc);
4605 else
4606 BB = GetBB(BBID.UIntVal, BBID.Loc);
4607 if (!BB)
4608 return P.Error(BBID.Loc, "referenced value is not a basic block");
4609
4610 GV->replaceAllUsesWith(BlockAddress::get(&F, BB));
4611 GV->eraseFromParent();
4612 }
4613
4614 P.ForwardRefBlockAddresses.erase(Blocks);
4615 return false;
4616}
Chris Lattnerac161bf2009-01-02 07:01:27 +00004617
4618/// ParseFunctionBody
Duncan P. N. Exon Smith0a448fb2014-08-19 21:30:15 +00004619/// ::= '{' BasicBlock+ UseListOrderDirective* '}'
Chris Lattnerac161bf2009-01-02 07:01:27 +00004620bool LLParser::ParseFunctionBody(Function &Fn) {
Chris Lattner4649a732011-06-17 06:42:57 +00004621 if (Lex.getKind() != lltok::lbrace)
Chris Lattnerac161bf2009-01-02 07:01:27 +00004622 return TokError("expected '{' in function body");
4623 Lex.Lex(); // eat the {.
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004624
Chris Lattner3432c622009-10-28 03:39:23 +00004625 int FunctionNumber = -1;
4626 if (!Fn.hasName()) FunctionNumber = NumberedVals.size()-1;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004627
Chris Lattner3432c622009-10-28 03:39:23 +00004628 PerFunctionState PFS(*this, Fn, FunctionNumber);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004629
Duncan P. N. Exon Smith17169902014-08-19 00:13:19 +00004630 // Resolve block addresses and allow basic blocks to be forward-declared
4631 // within this function.
4632 if (PFS.resolveForwardRefBlockAddresses())
4633 return true;
4634 SaveAndRestore<PerFunctionState *> ScopeExit(BlockAddressPFS, &PFS);
4635
Chris Lattnerbbddd962010-01-09 19:20:07 +00004636 // We need at least one basic block.
Duncan P. N. Exon Smith0a448fb2014-08-19 21:30:15 +00004637 if (Lex.getKind() == lltok::rbrace || Lex.getKind() == lltok::kw_uselistorder)
Chris Lattnerbbddd962010-01-09 19:20:07 +00004638 return TokError("function body requires at least one basic block");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004639
Duncan P. N. Exon Smith0a448fb2014-08-19 21:30:15 +00004640 while (Lex.getKind() != lltok::rbrace &&
4641 Lex.getKind() != lltok::kw_uselistorder)
Chris Lattnerac161bf2009-01-02 07:01:27 +00004642 if (ParseBasicBlock(PFS)) return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004643
Duncan P. N. Exon Smith0a448fb2014-08-19 21:30:15 +00004644 while (Lex.getKind() != lltok::rbrace)
4645 if (ParseUseListOrder(&PFS))
4646 return true;
4647
Chris Lattnerac161bf2009-01-02 07:01:27 +00004648 // Eat the }.
4649 Lex.Lex();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004650
Chris Lattnerac161bf2009-01-02 07:01:27 +00004651 // Verify function is ok.
Chris Lattner3432c622009-10-28 03:39:23 +00004652 return PFS.FinishFunction();
Chris Lattnerac161bf2009-01-02 07:01:27 +00004653}
4654
4655/// ParseBasicBlock
4656/// ::= LabelStr? Instruction*
4657bool LLParser::ParseBasicBlock(PerFunctionState &PFS) {
4658 // If this basic block starts out with a name, remember it.
4659 std::string Name;
4660 LocTy NameLoc = Lex.getLoc();
4661 if (Lex.getKind() == lltok::LabelStr) {
4662 Name = Lex.getStrVal();
4663 Lex.Lex();
4664 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004665
Chris Lattnerac161bf2009-01-02 07:01:27 +00004666 BasicBlock *BB = PFS.DefineBB(Name, NameLoc);
Owen Anderson576a9a22015-03-02 05:25:09 +00004667 if (!BB)
4668 return Error(NameLoc,
4669 "unable to create block named '" + Name + "'");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004670
Chris Lattnerac161bf2009-01-02 07:01:27 +00004671 std::string NameStr;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004672
Chris Lattnerac161bf2009-01-02 07:01:27 +00004673 // Parse the instructions in this block until we get a terminator.
4674 Instruction *Inst;
4675 do {
4676 // This instruction may have three possibilities for a name: a) none
4677 // specified, b) name specified "%foo =", c) number specified: "%4 =".
4678 LocTy NameLoc = Lex.getLoc();
4679 int NameID = -1;
4680 NameStr = "";
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004681
Chris Lattnerac161bf2009-01-02 07:01:27 +00004682 if (Lex.getKind() == lltok::LocalVarID) {
4683 NameID = Lex.getUIntVal();
4684 Lex.Lex();
4685 if (ParseToken(lltok::equal, "expected '=' after instruction id"))
4686 return true;
Chris Lattnerdef19492011-06-17 06:36:20 +00004687 } else if (Lex.getKind() == lltok::LocalVar) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00004688 NameStr = Lex.getStrVal();
4689 Lex.Lex();
4690 if (ParseToken(lltok::equal, "expected '=' after instruction name"))
4691 return true;
4692 }
Devang Patelea8a4b92009-09-17 23:04:48 +00004693
Chris Lattner77b89dc2009-12-30 05:23:43 +00004694 switch (ParseInstruction(Inst, BB, PFS)) {
Craig Toppera2886c22012-02-07 05:05:23 +00004695 default: llvm_unreachable("Unknown ParseInstruction result!");
Chris Lattner77b89dc2009-12-30 05:23:43 +00004696 case InstError: return true;
4697 case InstNormal:
Chris Lattner2e664bd2010-04-07 04:08:57 +00004698 BB->getInstList().push_back(Inst);
4699
Chris Lattner77b89dc2009-12-30 05:23:43 +00004700 // With a normal result, we check to see if the instruction is followed by
4701 // a comma and metadata.
4702 if (EatIfPresent(lltok::comma))
Duncan P. N. Exon Smith27d702c2015-04-24 21:29:36 +00004703 if (ParseInstructionMetadata(*Inst))
Chris Lattner77b89dc2009-12-30 05:23:43 +00004704 return true;
4705 break;
4706 case InstExtraComma:
Chris Lattner2e664bd2010-04-07 04:08:57 +00004707 BB->getInstList().push_back(Inst);
4708
Chris Lattner77b89dc2009-12-30 05:23:43 +00004709 // If the instruction parser ate an extra comma at the end of it, it
4710 // *must* be followed by metadata.
Duncan P. N. Exon Smith27d702c2015-04-24 21:29:36 +00004711 if (ParseInstructionMetadata(*Inst))
Chris Lattner77b89dc2009-12-30 05:23:43 +00004712 return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004713 break;
Chris Lattner77b89dc2009-12-30 05:23:43 +00004714 }
Devang Patelea8a4b92009-09-17 23:04:48 +00004715
Chris Lattnerac161bf2009-01-02 07:01:27 +00004716 // Set the name on the instruction.
4717 if (PFS.SetInstName(NameID, NameStr, NameLoc, Inst)) return true;
4718 } while (!isa<TerminatorInst>(Inst));
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004719
Chris Lattnerac161bf2009-01-02 07:01:27 +00004720 return false;
4721}
4722
4723//===----------------------------------------------------------------------===//
4724// Instruction Parsing.
4725//===----------------------------------------------------------------------===//
4726
4727/// ParseInstruction - Parse one of the many different instructions.
4728///
Chris Lattner77b89dc2009-12-30 05:23:43 +00004729int LLParser::ParseInstruction(Instruction *&Inst, BasicBlock *BB,
4730 PerFunctionState &PFS) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00004731 lltok::Kind Token = Lex.getKind();
4732 if (Token == lltok::Eof)
4733 return TokError("found end of file when expecting more instructions");
4734 LocTy Loc = Lex.getLoc();
Chris Lattner89d856e2009-03-01 00:53:13 +00004735 unsigned KeywordVal = Lex.getUIntVal();
Chris Lattnerac161bf2009-01-02 07:01:27 +00004736 Lex.Lex(); // Eat the keyword.
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004737
Chris Lattnerac161bf2009-01-02 07:01:27 +00004738 switch (Token) {
4739 default: return Error(Loc, "expected instruction opcode");
4740 // Terminator Instructions.
Owen Anderson55f1c092009-08-13 21:58:54 +00004741 case lltok::kw_unreachable: Inst = new UnreachableInst(Context); return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004742 case lltok::kw_ret: return ParseRet(Inst, BB, PFS);
4743 case lltok::kw_br: return ParseBr(Inst, PFS);
4744 case lltok::kw_switch: return ParseSwitch(Inst, PFS);
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00004745 case lltok::kw_indirectbr: return ParseIndirectBr(Inst, PFS);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004746 case lltok::kw_invoke: return ParseInvoke(Inst, PFS);
Bill Wendlingf891bf82011-07-31 06:30:59 +00004747 case lltok::kw_resume: return ParseResume(Inst, PFS);
David Majnemer654e1302015-07-31 17:58:14 +00004748 case lltok::kw_cleanupret: return ParseCleanupRet(Inst, PFS);
4749 case lltok::kw_catchret: return ParseCatchRet(Inst, PFS);
4750 case lltok::kw_catchpad: return ParseCatchPad(Inst, PFS);
4751 case lltok::kw_terminatepad: return ParseTerminatePad(Inst, PFS);
4752 case lltok::kw_cleanuppad: return ParseCleanupPad(Inst, PFS);
4753 case lltok::kw_catchendpad: return ParseCatchEndPad(Inst, PFS);
Joseph Tremoulet9ce71f72015-09-03 09:09:43 +00004754 case lltok::kw_cleanupendpad: return ParseCleanupEndPad(Inst, PFS);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004755 // Binary Operators.
4756 case lltok::kw_add:
4757 case lltok::kw_sub:
Chris Lattnera676c0f2011-02-07 16:40:21 +00004758 case lltok::kw_mul:
4759 case lltok::kw_shl: {
Chris Lattnera676c0f2011-02-07 16:40:21 +00004760 bool NUW = EatIfPresent(lltok::kw_nuw);
4761 bool NSW = EatIfPresent(lltok::kw_nsw);
4762 if (!NUW) NUW = EatIfPresent(lltok::kw_nuw);
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004763
Chris Lattnera676c0f2011-02-07 16:40:21 +00004764 if (ParseArithmetic(Inst, PFS, KeywordVal, 1)) return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004765
Chris Lattnera676c0f2011-02-07 16:40:21 +00004766 if (NUW) cast<BinaryOperator>(Inst)->setHasNoUnsignedWrap(true);
4767 if (NSW) cast<BinaryOperator>(Inst)->setHasNoSignedWrap(true);
4768 return false;
Dan Gohman9c7f8082009-07-27 16:11:46 +00004769 }
Dan Gohmana5b96452009-06-04 22:49:04 +00004770 case lltok::kw_fadd:
4771 case lltok::kw_fsub:
Michael Ilseman92053172012-11-27 00:42:44 +00004772 case lltok::kw_fmul:
4773 case lltok::kw_fdiv:
4774 case lltok::kw_frem: {
4775 FastMathFlags FMF = EatFastMathFlagsIfPresent();
4776 int Res = ParseArithmetic(Inst, PFS, KeywordVal, 2);
4777 if (Res != 0)
4778 return Res;
4779 if (FMF.any())
4780 Inst->setFastMathFlags(FMF);
4781 return 0;
4782 }
Dan Gohmana5b96452009-06-04 22:49:04 +00004783
Chris Lattner35315d02011-02-06 21:44:57 +00004784 case lltok::kw_sdiv:
Chris Lattnera676c0f2011-02-07 16:40:21 +00004785 case lltok::kw_udiv:
4786 case lltok::kw_lshr:
4787 case lltok::kw_ashr: {
4788 bool Exact = EatIfPresent(lltok::kw_exact);
4789
4790 if (ParseArithmetic(Inst, PFS, KeywordVal, 1)) return true;
4791 if (Exact) cast<BinaryOperator>(Inst)->setIsExact(true);
4792 return false;
Dan Gohman9c7f8082009-07-27 16:11:46 +00004793 }
4794
Chris Lattnerac161bf2009-01-02 07:01:27 +00004795 case lltok::kw_urem:
Chris Lattner89d856e2009-03-01 00:53:13 +00004796 case lltok::kw_srem: return ParseArithmetic(Inst, PFS, KeywordVal, 1);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004797 case lltok::kw_and:
4798 case lltok::kw_or:
Chris Lattner89d856e2009-03-01 00:53:13 +00004799 case lltok::kw_xor: return ParseLogical(Inst, PFS, KeywordVal);
James Molloy88eb5352015-07-10 12:52:00 +00004800 case lltok::kw_icmp: return ParseCompare(Inst, PFS, KeywordVal);
4801 case lltok::kw_fcmp: {
4802 FastMathFlags FMF = EatFastMathFlagsIfPresent();
4803 int Res = ParseCompare(Inst, PFS, KeywordVal);
4804 if (Res != 0)
4805 return Res;
4806 if (FMF.any())
4807 Inst->setFastMathFlags(FMF);
4808 return 0;
4809 }
4810
Chris Lattnerac161bf2009-01-02 07:01:27 +00004811 // Casts.
4812 case lltok::kw_trunc:
4813 case lltok::kw_zext:
4814 case lltok::kw_sext:
4815 case lltok::kw_fptrunc:
4816 case lltok::kw_fpext:
4817 case lltok::kw_bitcast:
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00004818 case lltok::kw_addrspacecast:
Chris Lattnerac161bf2009-01-02 07:01:27 +00004819 case lltok::kw_uitofp:
4820 case lltok::kw_sitofp:
4821 case lltok::kw_fptoui:
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004822 case lltok::kw_fptosi:
Chris Lattnerac161bf2009-01-02 07:01:27 +00004823 case lltok::kw_inttoptr:
Chris Lattner89d856e2009-03-01 00:53:13 +00004824 case lltok::kw_ptrtoint: return ParseCast(Inst, PFS, KeywordVal);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004825 // Other.
4826 case lltok::kw_select: return ParseSelect(Inst, PFS);
Chris Lattnerb55ab542009-01-05 08:18:44 +00004827 case lltok::kw_va_arg: return ParseVA_Arg(Inst, PFS);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004828 case lltok::kw_extractelement: return ParseExtractElement(Inst, PFS);
4829 case lltok::kw_insertelement: return ParseInsertElement(Inst, PFS);
4830 case lltok::kw_shufflevector: return ParseShuffleVector(Inst, PFS);
4831 case lltok::kw_phi: return ParsePHI(Inst, PFS);
Bill Wendlingfae14752011-08-12 20:24:12 +00004832 case lltok::kw_landingpad: return ParseLandingPad(Inst, PFS);
Reid Kleckner5772b772014-04-24 20:14:34 +00004833 // Call.
4834 case lltok::kw_call: return ParseCall(Inst, PFS, CallInst::TCK_None);
4835 case lltok::kw_tail: return ParseCall(Inst, PFS, CallInst::TCK_Tail);
4836 case lltok::kw_musttail: return ParseCall(Inst, PFS, CallInst::TCK_MustTail);
Akira Hatanaka5cfcce122015-11-06 23:55:38 +00004837 case lltok::kw_notail: return ParseCall(Inst, PFS, CallInst::TCK_NoTail);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004838 // Memory.
Victor Hernandezc7d6a832009-10-17 00:00:19 +00004839 case lltok::kw_alloca: return ParseAlloc(Inst, PFS);
Chris Lattnerbc639292011-11-27 06:56:53 +00004840 case lltok::kw_load: return ParseLoad(Inst, PFS);
4841 case lltok::kw_store: return ParseStore(Inst, PFS);
Eli Friedman02e737b2011-08-12 22:50:01 +00004842 case lltok::kw_cmpxchg: return ParseCmpXchg(Inst, PFS);
4843 case lltok::kw_atomicrmw: return ParseAtomicRMW(Inst, PFS);
Eli Friedmanfee02c62011-07-25 23:16:38 +00004844 case lltok::kw_fence: return ParseFence(Inst, PFS);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004845 case lltok::kw_getelementptr: return ParseGetElementPtr(Inst, PFS);
4846 case lltok::kw_extractvalue: return ParseExtractValue(Inst, PFS);
4847 case lltok::kw_insertvalue: return ParseInsertValue(Inst, PFS);
4848 }
4849}
4850
4851/// ParseCmpPredicate - Parse an integer or fp predicate, based on Kind.
4852bool LLParser::ParseCmpPredicate(unsigned &P, unsigned Opc) {
Nick Lewyckya21d3da2009-07-08 03:04:38 +00004853 if (Opc == Instruction::FCmp) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00004854 switch (Lex.getKind()) {
David Tweeda11edf02013-01-07 13:32:38 +00004855 default: return TokError("expected fcmp predicate (e.g. 'oeq')");
Chris Lattnerac161bf2009-01-02 07:01:27 +00004856 case lltok::kw_oeq: P = CmpInst::FCMP_OEQ; break;
4857 case lltok::kw_one: P = CmpInst::FCMP_ONE; break;
4858 case lltok::kw_olt: P = CmpInst::FCMP_OLT; break;
4859 case lltok::kw_ogt: P = CmpInst::FCMP_OGT; break;
4860 case lltok::kw_ole: P = CmpInst::FCMP_OLE; break;
4861 case lltok::kw_oge: P = CmpInst::FCMP_OGE; break;
4862 case lltok::kw_ord: P = CmpInst::FCMP_ORD; break;
4863 case lltok::kw_uno: P = CmpInst::FCMP_UNO; break;
4864 case lltok::kw_ueq: P = CmpInst::FCMP_UEQ; break;
4865 case lltok::kw_une: P = CmpInst::FCMP_UNE; break;
4866 case lltok::kw_ult: P = CmpInst::FCMP_ULT; break;
4867 case lltok::kw_ugt: P = CmpInst::FCMP_UGT; break;
4868 case lltok::kw_ule: P = CmpInst::FCMP_ULE; break;
4869 case lltok::kw_uge: P = CmpInst::FCMP_UGE; break;
4870 case lltok::kw_true: P = CmpInst::FCMP_TRUE; break;
4871 case lltok::kw_false: P = CmpInst::FCMP_FALSE; break;
4872 }
4873 } else {
4874 switch (Lex.getKind()) {
David Tweeda11edf02013-01-07 13:32:38 +00004875 default: return TokError("expected icmp predicate (e.g. 'eq')");
Chris Lattnerac161bf2009-01-02 07:01:27 +00004876 case lltok::kw_eq: P = CmpInst::ICMP_EQ; break;
4877 case lltok::kw_ne: P = CmpInst::ICMP_NE; break;
4878 case lltok::kw_slt: P = CmpInst::ICMP_SLT; break;
4879 case lltok::kw_sgt: P = CmpInst::ICMP_SGT; break;
4880 case lltok::kw_sle: P = CmpInst::ICMP_SLE; break;
4881 case lltok::kw_sge: P = CmpInst::ICMP_SGE; break;
4882 case lltok::kw_ult: P = CmpInst::ICMP_ULT; break;
4883 case lltok::kw_ugt: P = CmpInst::ICMP_UGT; break;
4884 case lltok::kw_ule: P = CmpInst::ICMP_ULE; break;
4885 case lltok::kw_uge: P = CmpInst::ICMP_UGE; break;
4886 }
4887 }
4888 Lex.Lex();
4889 return false;
4890}
4891
4892//===----------------------------------------------------------------------===//
4893// Terminator Instructions.
4894//===----------------------------------------------------------------------===//
4895
4896/// ParseRet - Parse a return instruction.
Chris Lattner596760d2009-12-29 21:25:40 +00004897/// ::= 'ret' void (',' !dbg, !1)*
4898/// ::= 'ret' TypeAndValue (',' !dbg, !1)*
Chris Lattner33de4272011-06-17 06:49:41 +00004899bool LLParser::ParseRet(Instruction *&Inst, BasicBlock *BB,
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004900 PerFunctionState &PFS) {
4901 SMLoc TypeLoc = Lex.getLoc();
Craig Topper2617dcc2014-04-15 06:32:26 +00004902 Type *Ty = nullptr;
Chris Lattnerf880ca22009-03-09 04:49:14 +00004903 if (ParseType(Ty, true /*void allowed*/)) return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004904
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004905 Type *ResType = PFS.getFunction().getReturnType();
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004906
Chris Lattnerfdd87902009-10-05 05:54:46 +00004907 if (Ty->isVoidTy()) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004908 if (!ResType->isVoidTy())
4909 return Error(TypeLoc, "value doesn't match function result type '" +
4910 getTypeString(ResType) + "'");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004911
Owen Anderson55f1c092009-08-13 21:58:54 +00004912 Inst = ReturnInst::Create(Context);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004913 return false;
4914 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004915
Chris Lattnerac161bf2009-01-02 07:01:27 +00004916 Value *RV;
4917 if (ParseValue(Ty, RV, PFS)) return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004918
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004919 if (ResType != RV->getType())
4920 return Error(TypeLoc, "value doesn't match function result type '" +
4921 getTypeString(ResType) + "'");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004922
Owen Anderson55f1c092009-08-13 21:58:54 +00004923 Inst = ReturnInst::Create(Context, RV);
Chris Lattner33de4272011-06-17 06:49:41 +00004924 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004925}
4926
4927
4928/// ParseBr
4929/// ::= 'br' TypeAndValue
4930/// ::= 'br' TypeAndValue ',' TypeAndValue ',' TypeAndValue
4931bool LLParser::ParseBr(Instruction *&Inst, PerFunctionState &PFS) {
4932 LocTy Loc, Loc2;
Chris Lattner3ed871f2009-10-27 19:13:16 +00004933 Value *Op0;
4934 BasicBlock *Op1, *Op2;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004935 if (ParseTypeAndValue(Op0, Loc, PFS)) return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004936
Chris Lattnerac161bf2009-01-02 07:01:27 +00004937 if (BasicBlock *BB = dyn_cast<BasicBlock>(Op0)) {
4938 Inst = BranchInst::Create(BB);
4939 return false;
4940 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004941
Owen Anderson55f1c092009-08-13 21:58:54 +00004942 if (Op0->getType() != Type::getInt1Ty(Context))
Chris Lattnerac161bf2009-01-02 07:01:27 +00004943 return Error(Loc, "branch condition must have 'i1' type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004944
Chris Lattnerac161bf2009-01-02 07:01:27 +00004945 if (ParseToken(lltok::comma, "expected ',' after branch condition") ||
Chris Lattner3ed871f2009-10-27 19:13:16 +00004946 ParseTypeAndBasicBlock(Op1, Loc, PFS) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00004947 ParseToken(lltok::comma, "expected ',' after true destination") ||
Chris Lattner3ed871f2009-10-27 19:13:16 +00004948 ParseTypeAndBasicBlock(Op2, Loc2, PFS))
Chris Lattnerac161bf2009-01-02 07:01:27 +00004949 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004950
Chris Lattner3ed871f2009-10-27 19:13:16 +00004951 Inst = BranchInst::Create(Op1, Op2, Op0);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004952 return false;
4953}
4954
4955/// ParseSwitch
4956/// Instruction
4957/// ::= 'switch' TypeAndValue ',' TypeAndValue '[' JumpTable ']'
4958/// JumpTable
4959/// ::= (TypeAndValue ',' TypeAndValue)*
4960bool LLParser::ParseSwitch(Instruction *&Inst, PerFunctionState &PFS) {
4961 LocTy CondLoc, BBLoc;
Chris Lattner3ed871f2009-10-27 19:13:16 +00004962 Value *Cond;
4963 BasicBlock *DefaultBB;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004964 if (ParseTypeAndValue(Cond, CondLoc, PFS) ||
4965 ParseToken(lltok::comma, "expected ',' after switch condition") ||
Chris Lattner3ed871f2009-10-27 19:13:16 +00004966 ParseTypeAndBasicBlock(DefaultBB, BBLoc, PFS) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00004967 ParseToken(lltok::lsquare, "expected '[' with switch table"))
4968 return true;
4969
Duncan Sands19d0b472010-02-16 11:11:14 +00004970 if (!Cond->getType()->isIntegerTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00004971 return Error(CondLoc, "switch condition must have integer type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004972
Chris Lattnerac161bf2009-01-02 07:01:27 +00004973 // Parse the jump table pairs.
4974 SmallPtrSet<Value*, 32> SeenCases;
4975 SmallVector<std::pair<ConstantInt*, BasicBlock*>, 32> Table;
4976 while (Lex.getKind() != lltok::rsquare) {
Chris Lattner3ed871f2009-10-27 19:13:16 +00004977 Value *Constant;
4978 BasicBlock *DestBB;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004979
Chris Lattnerac161bf2009-01-02 07:01:27 +00004980 if (ParseTypeAndValue(Constant, CondLoc, PFS) ||
4981 ParseToken(lltok::comma, "expected ',' after case value") ||
Chris Lattner3ed871f2009-10-27 19:13:16 +00004982 ParseTypeAndBasicBlock(DestBB, PFS))
Chris Lattnerac161bf2009-01-02 07:01:27 +00004983 return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004984
David Blaikie70573dc2014-11-19 07:49:26 +00004985 if (!SeenCases.insert(Constant).second)
Chris Lattnerac161bf2009-01-02 07:01:27 +00004986 return Error(CondLoc, "duplicate case value in switch");
4987 if (!isa<ConstantInt>(Constant))
4988 return Error(CondLoc, "case value is not a constant integer");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004989
Chris Lattner3ed871f2009-10-27 19:13:16 +00004990 Table.push_back(std::make_pair(cast<ConstantInt>(Constant), DestBB));
Chris Lattnerac161bf2009-01-02 07:01:27 +00004991 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004992
Chris Lattnerac161bf2009-01-02 07:01:27 +00004993 Lex.Lex(); // Eat the ']'.
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004994
Chris Lattner3ed871f2009-10-27 19:13:16 +00004995 SwitchInst *SI = SwitchInst::Create(Cond, DefaultBB, Table.size());
Chris Lattnerac161bf2009-01-02 07:01:27 +00004996 for (unsigned i = 0, e = Table.size(); i != e; ++i)
4997 SI->addCase(Table[i].first, Table[i].second);
4998 Inst = SI;
4999 return false;
5000}
5001
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00005002/// ParseIndirectBr
Chris Lattner3ed871f2009-10-27 19:13:16 +00005003/// Instruction
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00005004/// ::= 'indirectbr' TypeAndValue ',' '[' LabelList ']'
5005bool LLParser::ParseIndirectBr(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattner3ed871f2009-10-27 19:13:16 +00005006 LocTy AddrLoc;
5007 Value *Address;
5008 if (ParseTypeAndValue(Address, AddrLoc, PFS) ||
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00005009 ParseToken(lltok::comma, "expected ',' after indirectbr address") ||
5010 ParseToken(lltok::lsquare, "expected '[' with indirectbr"))
Chris Lattner3ed871f2009-10-27 19:13:16 +00005011 return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00005012
Duncan Sands19d0b472010-02-16 11:11:14 +00005013 if (!Address->getType()->isPointerTy())
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00005014 return Error(AddrLoc, "indirectbr address must have pointer type");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00005015
Chris Lattner3ed871f2009-10-27 19:13:16 +00005016 // Parse the destination list.
5017 SmallVector<BasicBlock*, 16> DestList;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00005018
Chris Lattner3ed871f2009-10-27 19:13:16 +00005019 if (Lex.getKind() != lltok::rsquare) {
5020 BasicBlock *DestBB;
5021 if (ParseTypeAndBasicBlock(DestBB, PFS))
5022 return true;
5023 DestList.push_back(DestBB);
Michael Ilseman26ee2b82012-11-15 22:34:00 +00005024
Chris Lattner3ed871f2009-10-27 19:13:16 +00005025 while (EatIfPresent(lltok::comma)) {
5026 if (ParseTypeAndBasicBlock(DestBB, PFS))
5027 return true;
5028 DestList.push_back(DestBB);
5029 }
5030 }
Michael Ilseman26ee2b82012-11-15 22:34:00 +00005031
Chris Lattner3ed871f2009-10-27 19:13:16 +00005032 if (ParseToken(lltok::rsquare, "expected ']' at end of block list"))
5033 return true;
5034
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00005035 IndirectBrInst *IBI = IndirectBrInst::Create(Address, DestList.size());
Chris Lattner3ed871f2009-10-27 19:13:16 +00005036 for (unsigned i = 0, e = DestList.size(); i != e; ++i)
5037 IBI->addDestination(DestList[i]);
5038 Inst = IBI;
5039 return false;
5040}
5041
5042
Chris Lattnerac161bf2009-01-02 07:01:27 +00005043/// ParseInvoke
5044/// ::= 'invoke' OptionalCallingConv OptionalAttrs Type Value ParamList
5045/// OptionalAttrs 'to' TypeAndValue 'unwind' TypeAndValue
5046bool LLParser::ParseInvoke(Instruction *&Inst, PerFunctionState &PFS) {
5047 LocTy CallLoc = Lex.getLoc();
Bill Wendling50d27842012-10-15 20:35:56 +00005048 AttrBuilder RetAttrs, FnAttrs;
Bill Wendlingb32b0412013-02-08 06:32:06 +00005049 std::vector<unsigned> FwdRefAttrGrps;
Bill Wendling09bd1f72013-02-22 00:12:35 +00005050 LocTy NoBuiltinLoc;
Alexey Samsonov17a9cff2014-09-10 18:00:17 +00005051 unsigned CC;
Craig Topper2617dcc2014-04-15 06:32:26 +00005052 Type *RetType = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005053 LocTy RetTypeLoc;
5054 ValID CalleeID;
5055 SmallVector<ParamInfo, 16> ArgList;
Sanjoy Dasb513a9f2015-09-24 23:34:52 +00005056 SmallVector<OperandBundleDef, 2> BundleList;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005057
Chris Lattner3ed871f2009-10-27 19:13:16 +00005058 BasicBlock *NormalBB, *UnwindBB;
Sanjoy Dasb513a9f2015-09-24 23:34:52 +00005059 if (ParseOptionalCallingConv(CC) || ParseOptionalReturnAttrs(RetAttrs) ||
Chris Lattnerf880ca22009-03-09 04:49:14 +00005060 ParseType(RetType, RetTypeLoc, true /*void allowed*/) ||
Sanjoy Dasb513a9f2015-09-24 23:34:52 +00005061 ParseValID(CalleeID) || ParseParameterList(ArgList, PFS) ||
Bill Wendling09bd1f72013-02-22 00:12:35 +00005062 ParseFnAttributeValuePairs(FnAttrs, FwdRefAttrGrps, false,
5063 NoBuiltinLoc) ||
Sanjoy Dasb513a9f2015-09-24 23:34:52 +00005064 ParseOptionalOperandBundles(BundleList, PFS) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00005065 ParseToken(lltok::kw_to, "expected 'to' in invoke") ||
Chris Lattner3ed871f2009-10-27 19:13:16 +00005066 ParseTypeAndBasicBlock(NormalBB, PFS) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00005067 ParseToken(lltok::kw_unwind, "expected 'unwind' in invoke") ||
Chris Lattner3ed871f2009-10-27 19:13:16 +00005068 ParseTypeAndBasicBlock(UnwindBB, PFS))
Chris Lattnerac161bf2009-01-02 07:01:27 +00005069 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005070
Chris Lattnerac161bf2009-01-02 07:01:27 +00005071 // If RetType is a non-function pointer type, then this is the short syntax
5072 // for the call, which means that RetType is just the return type. Infer the
5073 // rest of the function argument types from the arguments that are present.
David Blaikie445e3fb2015-04-24 19:32:54 +00005074 FunctionType *Ty = dyn_cast<FunctionType>(RetType);
5075 if (!Ty) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00005076 // Pull out the types of all of the arguments...
Jay Foadb804a2b2011-07-12 14:06:48 +00005077 std::vector<Type*> ParamTypes;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005078 for (unsigned i = 0, e = ArgList.size(); i != e; ++i)
5079 ParamTypes.push_back(ArgList[i].V->getType());
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005080
Chris Lattnerac161bf2009-01-02 07:01:27 +00005081 if (!FunctionType::isValidReturnType(RetType))
5082 return Error(RetTypeLoc, "Invalid result type for LLVM function");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005083
Owen Anderson4056ca92009-07-29 22:17:13 +00005084 Ty = FunctionType::get(RetType, ParamTypes, false);
Chris Lattnerac161bf2009-01-02 07:01:27 +00005085 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005086
David Blaikie41ba2b42015-07-27 23:32:19 +00005087 CalleeID.FTy = Ty;
5088
Chris Lattnerac161bf2009-01-02 07:01:27 +00005089 // Look up the callee.
5090 Value *Callee;
David Blaikie445e3fb2015-04-24 19:32:54 +00005091 if (ConvertValIDToValue(PointerType::getUnqual(Ty), CalleeID, Callee, &PFS))
5092 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005093
Bill Wendling3d7b0b82012-12-19 07:18:57 +00005094 // Set up the Attribute for the function.
Bill Wendlingf5075a42013-01-27 02:24:02 +00005095 SmallVector<AttributeSet, 8> Attrs;
Bill Wendling3bef2dd2012-09-19 23:54:18 +00005096 if (RetAttrs.hasAttributes())
Bill Wendlingf5075a42013-01-27 02:24:02 +00005097 Attrs.push_back(AttributeSet::get(RetType->getContext(),
5098 AttributeSet::ReturnIndex,
5099 RetAttrs));
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005100
Chris Lattnerac161bf2009-01-02 07:01:27 +00005101 SmallVector<Value*, 8> Args;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005102
Chris Lattnerac161bf2009-01-02 07:01:27 +00005103 // Loop through FunctionType's arguments and ensure they are specified
5104 // correctly. Also, gather any parameter attributes.
5105 FunctionType::param_iterator I = Ty->param_begin();
5106 FunctionType::param_iterator E = Ty->param_end();
5107 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
Craig Topper2617dcc2014-04-15 06:32:26 +00005108 Type *ExpectedTy = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005109 if (I != E) {
5110 ExpectedTy = *I++;
5111 } else if (!Ty->isVarArg()) {
5112 return Error(ArgList[i].Loc, "too many arguments specified");
5113 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005114
Chris Lattnerac161bf2009-01-02 07:01:27 +00005115 if (ExpectedTy && ExpectedTy != ArgList[i].V->getType())
5116 return Error(ArgList[i].Loc, "argument is not of expected type '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00005117 getTypeString(ExpectedTy) + "'");
Chris Lattnerac161bf2009-01-02 07:01:27 +00005118 Args.push_back(ArgList[i].V);
Bill Wendlingfe0021a2013-01-31 00:29:54 +00005119 if (ArgList[i].Attrs.hasAttributes(i + 1)) {
5120 AttrBuilder B(ArgList[i].Attrs, i + 1);
Bill Wendlingf5075a42013-01-27 02:24:02 +00005121 Attrs.push_back(AttributeSet::get(RetType->getContext(), i + 1, B));
5122 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00005123 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005124
Chris Lattnerac161bf2009-01-02 07:01:27 +00005125 if (I != E)
5126 return Error(CallLoc, "not enough parameters specified for call");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005127
David Majnemer8d22abd2015-02-23 00:01:32 +00005128 if (FnAttrs.hasAttributes()) {
5129 if (FnAttrs.hasAlignmentAttr())
5130 return Error(CallLoc, "invoke instructions may not have an alignment");
5131
Bill Wendlingf5075a42013-01-27 02:24:02 +00005132 Attrs.push_back(AttributeSet::get(RetType->getContext(),
5133 AttributeSet::FunctionIndex,
5134 FnAttrs));
David Majnemer8d22abd2015-02-23 00:01:32 +00005135 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005136
Bill Wendling3d7b0b82012-12-19 07:18:57 +00005137 // Finish off the Attribute and check them
Bill Wendlinge94d8432012-12-07 23:16:57 +00005138 AttributeSet PAL = AttributeSet::get(Context, Attrs);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005139
Sanjoy Dasb513a9f2015-09-24 23:34:52 +00005140 InvokeInst *II =
5141 InvokeInst::Create(Ty, Callee, NormalBB, UnwindBB, Args, BundleList);
Chris Lattnerac161bf2009-01-02 07:01:27 +00005142 II->setCallingConv(CC);
5143 II->setAttributes(PAL);
Bill Wendlingb32b0412013-02-08 06:32:06 +00005144 ForwardRefAttrGroups[II] = FwdRefAttrGrps;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005145 Inst = II;
5146 return false;
5147}
5148
Bill Wendlingf891bf82011-07-31 06:30:59 +00005149/// ParseResume
5150/// ::= 'resume' TypeAndValue
5151bool LLParser::ParseResume(Instruction *&Inst, PerFunctionState &PFS) {
5152 Value *Exn; LocTy ExnLoc;
Bill Wendlingf891bf82011-07-31 06:30:59 +00005153 if (ParseTypeAndValue(Exn, ExnLoc, PFS))
5154 return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005155
Bill Wendlingf891bf82011-07-31 06:30:59 +00005156 ResumeInst *RI = ResumeInst::Create(Exn);
5157 Inst = RI;
5158 return false;
5159}
Chris Lattnerac161bf2009-01-02 07:01:27 +00005160
David Majnemer654e1302015-07-31 17:58:14 +00005161bool LLParser::ParseExceptionArgs(SmallVectorImpl<Value *> &Args,
5162 PerFunctionState &PFS) {
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00005163 if (ParseToken(lltok::lsquare, "expected '[' in catchpad/cleanuppad"))
David Majnemer654e1302015-07-31 17:58:14 +00005164 return true;
5165
5166 while (Lex.getKind() != lltok::rsquare) {
5167 // If this isn't the first argument, we need a comma.
5168 if (!Args.empty() &&
5169 ParseToken(lltok::comma, "expected ',' in argument list"))
5170 return true;
5171
5172 // Parse the argument.
5173 LocTy ArgLoc;
5174 Type *ArgTy = nullptr;
5175 if (ParseType(ArgTy, ArgLoc))
5176 return true;
5177
5178 Value *V;
5179 if (ArgTy->isMetadataTy()) {
5180 if (ParseMetadataAsValue(V, PFS))
5181 return true;
5182 } else {
5183 if (ParseValue(ArgTy, V, PFS))
5184 return true;
5185 }
5186 Args.push_back(V);
5187 }
5188
5189 Lex.Lex(); // Lex the ']'.
5190 return false;
5191}
5192
5193/// ParseCleanupRet
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00005194/// ::= 'cleanupret' Value unwind ('to' 'caller' | TypeAndValue)
David Majnemer654e1302015-07-31 17:58:14 +00005195bool LLParser::ParseCleanupRet(Instruction *&Inst, PerFunctionState &PFS) {
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00005196 Value *CleanupPad = nullptr;
David Majnemer654e1302015-07-31 17:58:14 +00005197
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00005198 if (ParseValue(Type::getTokenTy(Context), CleanupPad, PFS, OC_CleanupPad))
5199 return true;
David Majnemer654e1302015-07-31 17:58:14 +00005200
5201 if (ParseToken(lltok::kw_unwind, "expected 'unwind' in cleanupret"))
5202 return true;
5203
5204 BasicBlock *UnwindBB = nullptr;
5205 if (Lex.getKind() == lltok::kw_to) {
5206 Lex.Lex();
5207 if (ParseToken(lltok::kw_caller, "expected 'caller' in cleanupret"))
5208 return true;
5209 } else {
5210 if (ParseTypeAndBasicBlock(UnwindBB, PFS)) {
5211 return true;
5212 }
5213 }
5214
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00005215 Inst = CleanupReturnInst::Create(cast<CleanupPadInst>(CleanupPad), UnwindBB);
David Majnemer654e1302015-07-31 17:58:14 +00005216 return false;
5217}
5218
5219/// ParseCatchRet
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00005220/// ::= 'catchret' Value 'to' TypeAndValue
David Majnemer654e1302015-07-31 17:58:14 +00005221bool LLParser::ParseCatchRet(Instruction *&Inst, PerFunctionState &PFS) {
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00005222 Value *CatchPad = nullptr;
David Majnemer0bc0eef2015-08-15 02:46:08 +00005223
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00005224 if (ParseValue(Type::getTokenTy(Context), CatchPad, PFS, OC_CatchPad))
David Majnemer0bc0eef2015-08-15 02:46:08 +00005225 return true;
5226
David Majnemer0bc0eef2015-08-15 02:46:08 +00005227 BasicBlock *BB;
5228 if (ParseToken(lltok::kw_to, "expected 'to' in catchret") ||
5229 ParseTypeAndBasicBlock(BB, PFS))
5230 return true;
5231
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00005232 Inst = CatchReturnInst::Create(cast<CatchPadInst>(CatchPad), BB);
David Majnemer654e1302015-07-31 17:58:14 +00005233 return false;
5234}
5235
5236/// ParseCatchPad
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00005237/// ::= 'catchpad' ParamList 'to' TypeAndValue 'unwind' TypeAndValue
David Majnemer654e1302015-07-31 17:58:14 +00005238bool LLParser::ParseCatchPad(Instruction *&Inst, PerFunctionState &PFS) {
David Majnemer654e1302015-07-31 17:58:14 +00005239 SmallVector<Value *, 8> Args;
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00005240 if (ParseExceptionArgs(Args, PFS))
David Majnemer654e1302015-07-31 17:58:14 +00005241 return true;
5242
5243 BasicBlock *NormalBB, *UnwindBB;
5244 if (ParseToken(lltok::kw_to, "expected 'to' in catchpad") ||
5245 ParseTypeAndBasicBlock(NormalBB, PFS) ||
5246 ParseToken(lltok::kw_unwind, "expected 'unwind' in catchpad") ||
5247 ParseTypeAndBasicBlock(UnwindBB, PFS))
5248 return true;
5249
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00005250 Inst = CatchPadInst::Create(NormalBB, UnwindBB, Args);
David Majnemer654e1302015-07-31 17:58:14 +00005251 return false;
5252}
5253
5254/// ParseTerminatePad
5255/// ::= 'terminatepad' ParamList 'to' TypeAndValue
5256bool LLParser::ParseTerminatePad(Instruction *&Inst, PerFunctionState &PFS) {
5257 SmallVector<Value *, 8> Args;
5258 if (ParseExceptionArgs(Args, PFS))
5259 return true;
5260
5261 if (ParseToken(lltok::kw_unwind, "expected 'unwind' in terminatepad"))
5262 return true;
5263
5264 BasicBlock *UnwindBB = nullptr;
5265 if (Lex.getKind() == lltok::kw_to) {
5266 Lex.Lex();
5267 if (ParseToken(lltok::kw_caller, "expected 'caller' in terminatepad"))
5268 return true;
5269 } else {
5270 if (ParseTypeAndBasicBlock(UnwindBB, PFS)) {
5271 return true;
5272 }
5273 }
5274
5275 Inst = TerminatePadInst::Create(Context, UnwindBB, Args);
5276 return false;
5277}
5278
5279/// ParseCleanupPad
5280/// ::= 'cleanuppad' ParamList
5281bool LLParser::ParseCleanupPad(Instruction *&Inst, PerFunctionState &PFS) {
David Majnemer654e1302015-07-31 17:58:14 +00005282 SmallVector<Value *, 8> Args;
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00005283 if (ParseExceptionArgs(Args, PFS))
David Majnemer654e1302015-07-31 17:58:14 +00005284 return true;
5285
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00005286 Inst = CleanupPadInst::Create(Context, Args);
David Majnemer654e1302015-07-31 17:58:14 +00005287 return false;
5288}
5289
5290/// ParseCatchEndPad
5291/// ::= 'catchendpad' unwind ('to' 'caller' | TypeAndValue)
5292bool LLParser::ParseCatchEndPad(Instruction *&Inst, PerFunctionState &PFS) {
5293 if (ParseToken(lltok::kw_unwind, "expected 'unwind' in catchendpad"))
5294 return true;
5295
5296 BasicBlock *UnwindBB = nullptr;
5297 if (Lex.getKind() == lltok::kw_to) {
5298 Lex.Lex();
5299 if (Lex.getKind() == lltok::kw_caller) {
5300 Lex.Lex();
5301 } else {
5302 return true;
5303 }
5304 } else {
5305 if (ParseTypeAndBasicBlock(UnwindBB, PFS)) {
5306 return true;
5307 }
5308 }
5309
5310 Inst = CatchEndPadInst::Create(Context, UnwindBB);
5311 return false;
5312}
5313
Joseph Tremoulet9ce71f72015-09-03 09:09:43 +00005314/// ParseCatchEndPad
5315/// ::= 'cleanupendpad' Value unwind ('to' 'caller' | TypeAndValue)
5316bool LLParser::ParseCleanupEndPad(Instruction *&Inst, PerFunctionState &PFS) {
5317 Value *CleanupPad = nullptr;
5318
5319 if (ParseValue(Type::getTokenTy(Context), CleanupPad, PFS, OC_CleanupPad))
5320 return true;
5321
5322 if (ParseToken(lltok::kw_unwind, "expected 'unwind' in catchendpad"))
5323 return true;
5324
5325 BasicBlock *UnwindBB = nullptr;
5326 if (Lex.getKind() == lltok::kw_to) {
5327 Lex.Lex();
5328 if (Lex.getKind() == lltok::kw_caller) {
5329 Lex.Lex();
5330 } else {
NAKAMURA Takumi9947cac2015-11-06 10:07:33 +00005331 return true;
Joseph Tremoulet9ce71f72015-09-03 09:09:43 +00005332 }
5333 } else {
5334 if (ParseTypeAndBasicBlock(UnwindBB, PFS)) {
5335 return true;
5336 }
5337 }
5338
5339 Inst = CleanupEndPadInst::Create(cast<CleanupPadInst>(CleanupPad), UnwindBB);
5340 return false;
5341}
5342
Chris Lattnerac161bf2009-01-02 07:01:27 +00005343//===----------------------------------------------------------------------===//
5344// Binary Operators.
5345//===----------------------------------------------------------------------===//
5346
5347/// ParseArithmetic
Chris Lattnereeefa9a2009-01-05 08:24:46 +00005348/// ::= ArithmeticOps TypeAndValue ',' Value
5349///
5350/// If OperandType is 0, then any FP or integer operand is allowed. If it is 1,
5351/// then any integer operand is allowed, if it is 2, any fp operand is allowed.
Chris Lattnerac161bf2009-01-02 07:01:27 +00005352bool LLParser::ParseArithmetic(Instruction *&Inst, PerFunctionState &PFS,
Chris Lattnereeefa9a2009-01-05 08:24:46 +00005353 unsigned Opc, unsigned OperandType) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00005354 LocTy Loc; Value *LHS, *RHS;
5355 if (ParseTypeAndValue(LHS, Loc, PFS) ||
5356 ParseToken(lltok::comma, "expected ',' in arithmetic operation") ||
5357 ParseValue(LHS->getType(), RHS, PFS))
5358 return true;
5359
Chris Lattnereeefa9a2009-01-05 08:24:46 +00005360 bool Valid;
5361 switch (OperandType) {
Torok Edwinfbcc6632009-07-14 16:55:14 +00005362 default: llvm_unreachable("Unknown operand type!");
Chris Lattnereeefa9a2009-01-05 08:24:46 +00005363 case 0: // int or FP.
Duncan Sands9dff9be2010-02-15 16:12:20 +00005364 Valid = LHS->getType()->isIntOrIntVectorTy() ||
5365 LHS->getType()->isFPOrFPVectorTy();
Chris Lattnereeefa9a2009-01-05 08:24:46 +00005366 break;
Duncan Sands9dff9be2010-02-15 16:12:20 +00005367 case 1: Valid = LHS->getType()->isIntOrIntVectorTy(); break;
5368 case 2: Valid = LHS->getType()->isFPOrFPVectorTy(); break;
Chris Lattnereeefa9a2009-01-05 08:24:46 +00005369 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005370
Chris Lattnereeefa9a2009-01-05 08:24:46 +00005371 if (!Valid)
5372 return Error(Loc, "invalid operand type for instruction");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005373
Chris Lattnerac161bf2009-01-02 07:01:27 +00005374 Inst = BinaryOperator::Create((Instruction::BinaryOps)Opc, LHS, RHS);
5375 return false;
5376}
5377
5378/// ParseLogical
5379/// ::= ArithmeticOps TypeAndValue ',' Value {
5380bool LLParser::ParseLogical(Instruction *&Inst, PerFunctionState &PFS,
5381 unsigned Opc) {
5382 LocTy Loc; Value *LHS, *RHS;
5383 if (ParseTypeAndValue(LHS, Loc, PFS) ||
5384 ParseToken(lltok::comma, "expected ',' in logical operation") ||
5385 ParseValue(LHS->getType(), RHS, PFS))
5386 return true;
5387
Duncan Sands9dff9be2010-02-15 16:12:20 +00005388 if (!LHS->getType()->isIntOrIntVectorTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00005389 return Error(Loc,"instruction requires integer or integer vector operands");
5390
5391 Inst = BinaryOperator::Create((Instruction::BinaryOps)Opc, LHS, RHS);
5392 return false;
5393}
5394
5395
5396/// ParseCompare
5397/// ::= 'icmp' IPredicates TypeAndValue ',' Value
5398/// ::= 'fcmp' FPredicates TypeAndValue ',' Value
Chris Lattnerac161bf2009-01-02 07:01:27 +00005399bool LLParser::ParseCompare(Instruction *&Inst, PerFunctionState &PFS,
5400 unsigned Opc) {
5401 // Parse the integer/fp comparison predicate.
5402 LocTy Loc;
5403 unsigned Pred;
5404 Value *LHS, *RHS;
5405 if (ParseCmpPredicate(Pred, Opc) ||
5406 ParseTypeAndValue(LHS, Loc, PFS) ||
5407 ParseToken(lltok::comma, "expected ',' after compare value") ||
5408 ParseValue(LHS->getType(), RHS, PFS))
5409 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005410
Chris Lattnerac161bf2009-01-02 07:01:27 +00005411 if (Opc == Instruction::FCmp) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00005412 if (!LHS->getType()->isFPOrFPVectorTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00005413 return Error(Loc, "fcmp requires floating point operands");
Dan Gohmanad1f0a12009-08-25 23:17:54 +00005414 Inst = new FCmpInst(CmpInst::Predicate(Pred), LHS, RHS);
Nick Lewyckya21d3da2009-07-08 03:04:38 +00005415 } else {
5416 assert(Opc == Instruction::ICmp && "Unknown opcode for CmpInst!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00005417 if (!LHS->getType()->isIntOrIntVectorTy() &&
Nadav Rotem3924cb02011-12-05 06:29:09 +00005418 !LHS->getType()->getScalarType()->isPointerTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00005419 return Error(Loc, "icmp requires integer operands");
Dan Gohmanad1f0a12009-08-25 23:17:54 +00005420 Inst = new ICmpInst(CmpInst::Predicate(Pred), LHS, RHS);
Chris Lattnerac161bf2009-01-02 07:01:27 +00005421 }
5422 return false;
5423}
5424
5425//===----------------------------------------------------------------------===//
5426// Other Instructions.
5427//===----------------------------------------------------------------------===//
5428
5429
5430/// ParseCast
5431/// ::= CastOpc TypeAndValue 'to' Type
5432bool LLParser::ParseCast(Instruction *&Inst, PerFunctionState &PFS,
5433 unsigned Opc) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00005434 LocTy Loc;
5435 Value *Op;
Craig Topper2617dcc2014-04-15 06:32:26 +00005436 Type *DestTy = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005437 if (ParseTypeAndValue(Op, Loc, PFS) ||
5438 ParseToken(lltok::kw_to, "expected 'to' after cast value") ||
5439 ParseType(DestTy))
5440 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005441
Chris Lattner89d856e2009-03-01 00:53:13 +00005442 if (!CastInst::castIsValid((Instruction::CastOps)Opc, Op, DestTy)) {
5443 CastInst::castIsValid((Instruction::CastOps)Opc, Op, DestTy);
Chris Lattnerac161bf2009-01-02 07:01:27 +00005444 return Error(Loc, "invalid cast opcode for cast from '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00005445 getTypeString(Op->getType()) + "' to '" +
5446 getTypeString(DestTy) + "'");
Chris Lattner89d856e2009-03-01 00:53:13 +00005447 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00005448 Inst = CastInst::Create((Instruction::CastOps)Opc, Op, DestTy);
5449 return false;
5450}
5451
5452/// ParseSelect
5453/// ::= 'select' TypeAndValue ',' TypeAndValue ',' TypeAndValue
5454bool LLParser::ParseSelect(Instruction *&Inst, PerFunctionState &PFS) {
5455 LocTy Loc;
5456 Value *Op0, *Op1, *Op2;
5457 if (ParseTypeAndValue(Op0, Loc, PFS) ||
5458 ParseToken(lltok::comma, "expected ',' after select condition") ||
5459 ParseTypeAndValue(Op1, PFS) ||
5460 ParseToken(lltok::comma, "expected ',' after select value") ||
5461 ParseTypeAndValue(Op2, PFS))
5462 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005463
Chris Lattnerac161bf2009-01-02 07:01:27 +00005464 if (const char *Reason = SelectInst::areInvalidOperands(Op0, Op1, Op2))
5465 return Error(Loc, Reason);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005466
Chris Lattnerac161bf2009-01-02 07:01:27 +00005467 Inst = SelectInst::Create(Op0, Op1, Op2);
5468 return false;
5469}
5470
Chris Lattnerb55ab542009-01-05 08:18:44 +00005471/// ParseVA_Arg
5472/// ::= 'va_arg' TypeAndValue ',' Type
5473bool LLParser::ParseVA_Arg(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00005474 Value *Op;
Craig Topper2617dcc2014-04-15 06:32:26 +00005475 Type *EltTy = nullptr;
Chris Lattnerb55ab542009-01-05 08:18:44 +00005476 LocTy TypeLoc;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005477 if (ParseTypeAndValue(Op, PFS) ||
5478 ParseToken(lltok::comma, "expected ',' after vaarg operand") ||
Chris Lattnerb55ab542009-01-05 08:18:44 +00005479 ParseType(EltTy, TypeLoc))
Chris Lattnerac161bf2009-01-02 07:01:27 +00005480 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005481
Chris Lattnerb55ab542009-01-05 08:18:44 +00005482 if (!EltTy->isFirstClassType())
5483 return Error(TypeLoc, "va_arg requires operand with first class type");
Chris Lattnerac161bf2009-01-02 07:01:27 +00005484
5485 Inst = new VAArgInst(Op, EltTy);
5486 return false;
5487}
5488
5489/// ParseExtractElement
5490/// ::= 'extractelement' TypeAndValue ',' TypeAndValue
5491bool LLParser::ParseExtractElement(Instruction *&Inst, PerFunctionState &PFS) {
5492 LocTy Loc;
5493 Value *Op0, *Op1;
5494 if (ParseTypeAndValue(Op0, Loc, PFS) ||
5495 ParseToken(lltok::comma, "expected ',' after extract value") ||
5496 ParseTypeAndValue(Op1, PFS))
5497 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005498
Chris Lattnerac161bf2009-01-02 07:01:27 +00005499 if (!ExtractElementInst::isValidOperands(Op0, Op1))
5500 return Error(Loc, "invalid extractelement operands");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005501
Eric Christopherc9742252009-07-25 02:28:41 +00005502 Inst = ExtractElementInst::Create(Op0, Op1);
Chris Lattnerac161bf2009-01-02 07:01:27 +00005503 return false;
5504}
5505
5506/// ParseInsertElement
5507/// ::= 'insertelement' TypeAndValue ',' TypeAndValue ',' TypeAndValue
5508bool LLParser::ParseInsertElement(Instruction *&Inst, PerFunctionState &PFS) {
5509 LocTy Loc;
5510 Value *Op0, *Op1, *Op2;
5511 if (ParseTypeAndValue(Op0, Loc, PFS) ||
5512 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
5513 ParseTypeAndValue(Op1, PFS) ||
5514 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
5515 ParseTypeAndValue(Op2, PFS))
5516 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005517
Chris Lattnerac161bf2009-01-02 07:01:27 +00005518 if (!InsertElementInst::isValidOperands(Op0, Op1, Op2))
Eric Christopherfef8db62009-07-23 01:01:32 +00005519 return Error(Loc, "invalid insertelement operands");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005520
Chris Lattnerac161bf2009-01-02 07:01:27 +00005521 Inst = InsertElementInst::Create(Op0, Op1, Op2);
5522 return false;
5523}
5524
5525/// ParseShuffleVector
5526/// ::= 'shufflevector' TypeAndValue ',' TypeAndValue ',' TypeAndValue
5527bool LLParser::ParseShuffleVector(Instruction *&Inst, PerFunctionState &PFS) {
5528 LocTy Loc;
5529 Value *Op0, *Op1, *Op2;
5530 if (ParseTypeAndValue(Op0, Loc, PFS) ||
5531 ParseToken(lltok::comma, "expected ',' after shuffle mask") ||
5532 ParseTypeAndValue(Op1, PFS) ||
5533 ParseToken(lltok::comma, "expected ',' after shuffle value") ||
5534 ParseTypeAndValue(Op2, PFS))
5535 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005536
Chris Lattnerac161bf2009-01-02 07:01:27 +00005537 if (!ShuffleVectorInst::isValidOperands(Op0, Op1, Op2))
Pete Cooperc1a6f982012-02-01 23:43:12 +00005538 return Error(Loc, "invalid shufflevector operands");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005539
Chris Lattnerac161bf2009-01-02 07:01:27 +00005540 Inst = new ShuffleVectorInst(Op0, Op1, Op2);
5541 return false;
5542}
5543
5544/// ParsePHI
Chris Lattnerc05471e2009-10-18 05:27:44 +00005545/// ::= 'phi' Type '[' Value ',' Value ']' (',' '[' Value ',' Value ']')*
Chris Lattnerf4f03422009-12-30 05:27:33 +00005546int LLParser::ParsePHI(Instruction *&Inst, PerFunctionState &PFS) {
Craig Topper2617dcc2014-04-15 06:32:26 +00005547 Type *Ty = nullptr; LocTy TypeLoc;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005548 Value *Op0, *Op1;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005549
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00005550 if (ParseType(Ty, TypeLoc) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00005551 ParseToken(lltok::lsquare, "expected '[' in phi value list") ||
5552 ParseValue(Ty, Op0, PFS) ||
5553 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
Owen Anderson55f1c092009-08-13 21:58:54 +00005554 ParseValue(Type::getLabelTy(Context), Op1, PFS) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00005555 ParseToken(lltok::rsquare, "expected ']' in phi value list"))
5556 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005557
Chris Lattnerf4f03422009-12-30 05:27:33 +00005558 bool AteExtraComma = false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005559 SmallVector<std::pair<Value*, BasicBlock*>, 16> PHIVals;
5560 while (1) {
5561 PHIVals.push_back(std::make_pair(Op0, cast<BasicBlock>(Op1)));
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005562
Chris Lattner3822f632009-01-02 08:05:26 +00005563 if (!EatIfPresent(lltok::comma))
Chris Lattnerac161bf2009-01-02 07:01:27 +00005564 break;
5565
Chris Lattnerf4f03422009-12-30 05:27:33 +00005566 if (Lex.getKind() == lltok::MetadataVar) {
5567 AteExtraComma = true;
Devang Patel8f842d32009-10-16 18:45:49 +00005568 break;
Chris Lattnerf4f03422009-12-30 05:27:33 +00005569 }
Devang Patel8f842d32009-10-16 18:45:49 +00005570
Chris Lattner3822f632009-01-02 08:05:26 +00005571 if (ParseToken(lltok::lsquare, "expected '[' in phi value list") ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00005572 ParseValue(Ty, Op0, PFS) ||
5573 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
Owen Anderson55f1c092009-08-13 21:58:54 +00005574 ParseValue(Type::getLabelTy(Context), Op1, PFS) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00005575 ParseToken(lltok::rsquare, "expected ']' in phi value list"))
5576 return true;
5577 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005578
Chris Lattnerac161bf2009-01-02 07:01:27 +00005579 if (!Ty->isFirstClassType())
5580 return Error(TypeLoc, "phi node must have first class type");
5581
Jay Foad52131342011-03-30 11:28:46 +00005582 PHINode *PN = PHINode::Create(Ty, PHIVals.size());
Chris Lattnerac161bf2009-01-02 07:01:27 +00005583 for (unsigned i = 0, e = PHIVals.size(); i != e; ++i)
5584 PN->addIncoming(PHIVals[i].first, PHIVals[i].second);
5585 Inst = PN;
Chris Lattnerf4f03422009-12-30 05:27:33 +00005586 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005587}
5588
Bill Wendlingfae14752011-08-12 20:24:12 +00005589/// ParseLandingPad
5590/// ::= 'landingpad' Type 'personality' TypeAndValue 'cleanup'? Clause+
5591/// Clause
5592/// ::= 'catch' TypeAndValue
5593/// ::= 'filter'
5594/// ::= 'filter' TypeAndValue ( ',' TypeAndValue )*
5595bool LLParser::ParseLandingPad(Instruction *&Inst, PerFunctionState &PFS) {
Craig Topper2617dcc2014-04-15 06:32:26 +00005596 Type *Ty = nullptr; LocTy TyLoc;
Bill Wendlingfae14752011-08-12 20:24:12 +00005597
David Majnemer7fddecc2015-06-17 20:52:32 +00005598 if (ParseType(Ty, TyLoc))
Bill Wendlingfae14752011-08-12 20:24:12 +00005599 return true;
5600
David Majnemer7fddecc2015-06-17 20:52:32 +00005601 std::unique_ptr<LandingPadInst> LP(LandingPadInst::Create(Ty, 0));
Bill Wendlingfae14752011-08-12 20:24:12 +00005602 LP->setCleanup(EatIfPresent(lltok::kw_cleanup));
5603
5604 while (Lex.getKind() == lltok::kw_catch || Lex.getKind() == lltok::kw_filter){
5605 LandingPadInst::ClauseType CT;
5606 if (EatIfPresent(lltok::kw_catch))
5607 CT = LandingPadInst::Catch;
5608 else if (EatIfPresent(lltok::kw_filter))
5609 CT = LandingPadInst::Filter;
5610 else
5611 return TokError("expected 'catch' or 'filter' clause type");
5612
Rafael Espindola4dc5dfc2014-06-04 18:51:31 +00005613 Value *V;
5614 LocTy VLoc;
Owen Andersonf8f259d2015-03-09 07:13:42 +00005615 if (ParseTypeAndValue(V, VLoc, PFS))
Bill Wendlingfae14752011-08-12 20:24:12 +00005616 return true;
Bill Wendlingfae14752011-08-12 20:24:12 +00005617
Bill Wendlinga52aa3c2011-08-12 20:52:25 +00005618 // A 'catch' type expects a non-array constant. A filter clause expects an
5619 // array constant.
5620 if (CT == LandingPadInst::Catch) {
5621 if (isa<ArrayType>(V->getType()))
5622 Error(VLoc, "'catch' clause has an invalid type");
5623 } else {
5624 if (!isa<ArrayType>(V->getType()))
5625 Error(VLoc, "'filter' clause has an invalid type");
5626 }
5627
Owen Andersonf8f259d2015-03-09 07:13:42 +00005628 Constant *CV = dyn_cast<Constant>(V);
5629 if (!CV)
5630 return Error(VLoc, "clause argument must be a constant");
5631 LP->addClause(CV);
Bill Wendlingfae14752011-08-12 20:24:12 +00005632 }
5633
Owen Andersonf8f259d2015-03-09 07:13:42 +00005634 Inst = LP.release();
Bill Wendlingfae14752011-08-12 20:24:12 +00005635 return false;
5636}
5637
Chris Lattnerac161bf2009-01-02 07:01:27 +00005638/// ParseCall
Reid Kleckner5772b772014-04-24 20:14:34 +00005639/// ::= 'call' OptionalCallingConv OptionalAttrs Type Value
5640/// ParameterList OptionalAttrs
5641/// ::= 'tail' 'call' OptionalCallingConv OptionalAttrs Type Value
5642/// ParameterList OptionalAttrs
5643/// ::= 'musttail' 'call' OptionalCallingConv OptionalAttrs Type Value
Chris Lattnerac161bf2009-01-02 07:01:27 +00005644/// ParameterList OptionalAttrs
5645bool LLParser::ParseCall(Instruction *&Inst, PerFunctionState &PFS,
Reid Kleckner5772b772014-04-24 20:14:34 +00005646 CallInst::TailCallKind TCK) {
Bill Wendling50d27842012-10-15 20:35:56 +00005647 AttrBuilder RetAttrs, FnAttrs;
Bill Wendlingb32b0412013-02-08 06:32:06 +00005648 std::vector<unsigned> FwdRefAttrGrps;
Michael Gottesman41748d72013-06-27 00:25:01 +00005649 LocTy BuiltinLoc;
Alexey Samsonov17a9cff2014-09-10 18:00:17 +00005650 unsigned CC;
Craig Topper2617dcc2014-04-15 06:32:26 +00005651 Type *RetType = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005652 LocTy RetTypeLoc;
5653 ValID CalleeID;
5654 SmallVector<ParamInfo, 16> ArgList;
Sanjoy Dasb513a9f2015-09-24 23:34:52 +00005655 SmallVector<OperandBundleDef, 2> BundleList;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005656 LocTy CallLoc = Lex.getLoc();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005657
Reid Kleckner5772b772014-04-24 20:14:34 +00005658 if ((TCK != CallInst::TCK_None &&
5659 ParseToken(lltok::kw_call, "expected 'tail call'")) ||
Sanjoy Dasb513a9f2015-09-24 23:34:52 +00005660 ParseOptionalCallingConv(CC) || ParseOptionalReturnAttrs(RetAttrs) ||
Chris Lattnerf880ca22009-03-09 04:49:14 +00005661 ParseType(RetType, RetTypeLoc, true /*void allowed*/) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00005662 ParseValID(CalleeID) ||
Reid Kleckner83498642014-08-26 00:33:28 +00005663 ParseParameterList(ArgList, PFS, TCK == CallInst::TCK_MustTail,
5664 PFS.getFunction().isVarArg()) ||
Sanjoy Dasb513a9f2015-09-24 23:34:52 +00005665 ParseFnAttributeValuePairs(FnAttrs, FwdRefAttrGrps, false, BuiltinLoc) ||
5666 ParseOptionalOperandBundles(BundleList, PFS))
Chris Lattnerac161bf2009-01-02 07:01:27 +00005667 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005668
Chris Lattnerac161bf2009-01-02 07:01:27 +00005669 // If RetType is a non-function pointer type, then this is the short syntax
5670 // for the call, which means that RetType is just the return type. Infer the
5671 // rest of the function argument types from the arguments that are present.
David Blaikie23af6482015-04-16 23:24:18 +00005672 FunctionType *Ty = dyn_cast<FunctionType>(RetType);
5673 if (!Ty) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00005674 // Pull out the types of all of the arguments...
Jay Foadb804a2b2011-07-12 14:06:48 +00005675 std::vector<Type*> ParamTypes;
Eli Friedman6cf51412010-07-24 23:06:59 +00005676 for (unsigned i = 0, e = ArgList.size(); i != e; ++i)
5677 ParamTypes.push_back(ArgList[i].V->getType());
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005678
Chris Lattnerac161bf2009-01-02 07:01:27 +00005679 if (!FunctionType::isValidReturnType(RetType))
5680 return Error(RetTypeLoc, "Invalid result type for LLVM function");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005681
Owen Anderson4056ca92009-07-29 22:17:13 +00005682 Ty = FunctionType::get(RetType, ParamTypes, false);
Chris Lattnerac161bf2009-01-02 07:01:27 +00005683 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005684
David Blaikie41ba2b42015-07-27 23:32:19 +00005685 CalleeID.FTy = Ty;
5686
Chris Lattnerac161bf2009-01-02 07:01:27 +00005687 // Look up the callee.
5688 Value *Callee;
David Blaikie23af6482015-04-16 23:24:18 +00005689 if (ConvertValIDToValue(PointerType::getUnqual(Ty), CalleeID, Callee, &PFS))
5690 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005691
Bill Wendling3d7b0b82012-12-19 07:18:57 +00005692 // Set up the Attribute for the function.
Bill Wendlingf5075a42013-01-27 02:24:02 +00005693 SmallVector<AttributeSet, 8> Attrs;
Bill Wendling3bef2dd2012-09-19 23:54:18 +00005694 if (RetAttrs.hasAttributes())
Bill Wendlingf5075a42013-01-27 02:24:02 +00005695 Attrs.push_back(AttributeSet::get(RetType->getContext(),
5696 AttributeSet::ReturnIndex,
5697 RetAttrs));
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005698
Chris Lattnerac161bf2009-01-02 07:01:27 +00005699 SmallVector<Value*, 8> Args;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005700
Chris Lattnerac161bf2009-01-02 07:01:27 +00005701 // Loop through FunctionType's arguments and ensure they are specified
5702 // correctly. Also, gather any parameter attributes.
5703 FunctionType::param_iterator I = Ty->param_begin();
5704 FunctionType::param_iterator E = Ty->param_end();
5705 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
Craig Topper2617dcc2014-04-15 06:32:26 +00005706 Type *ExpectedTy = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005707 if (I != E) {
5708 ExpectedTy = *I++;
5709 } else if (!Ty->isVarArg()) {
5710 return Error(ArgList[i].Loc, "too many arguments specified");
5711 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005712
Chris Lattnerac161bf2009-01-02 07:01:27 +00005713 if (ExpectedTy && ExpectedTy != ArgList[i].V->getType())
5714 return Error(ArgList[i].Loc, "argument is not of expected type '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00005715 getTypeString(ExpectedTy) + "'");
Chris Lattnerac161bf2009-01-02 07:01:27 +00005716 Args.push_back(ArgList[i].V);
Bill Wendlingfe0021a2013-01-31 00:29:54 +00005717 if (ArgList[i].Attrs.hasAttributes(i + 1)) {
5718 AttrBuilder B(ArgList[i].Attrs, i + 1);
Bill Wendlingf5075a42013-01-27 02:24:02 +00005719 Attrs.push_back(AttributeSet::get(RetType->getContext(), i + 1, B));
5720 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00005721 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005722
Chris Lattnerac161bf2009-01-02 07:01:27 +00005723 if (I != E)
5724 return Error(CallLoc, "not enough parameters specified for call");
5725
David Majnemer8d22abd2015-02-23 00:01:32 +00005726 if (FnAttrs.hasAttributes()) {
5727 if (FnAttrs.hasAlignmentAttr())
5728 return Error(CallLoc, "call instructions may not have an alignment");
5729
Bill Wendlingf5075a42013-01-27 02:24:02 +00005730 Attrs.push_back(AttributeSet::get(RetType->getContext(),
5731 AttributeSet::FunctionIndex,
5732 FnAttrs));
David Majnemer8d22abd2015-02-23 00:01:32 +00005733 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00005734
Bill Wendling3d7b0b82012-12-19 07:18:57 +00005735 // Finish off the Attribute and check them
Bill Wendlinge94d8432012-12-07 23:16:57 +00005736 AttributeSet PAL = AttributeSet::get(Context, Attrs);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005737
Sanjoy Dasb513a9f2015-09-24 23:34:52 +00005738 CallInst *CI = CallInst::Create(Ty, Callee, Args, BundleList);
Reid Kleckner5772b772014-04-24 20:14:34 +00005739 CI->setTailCallKind(TCK);
Chris Lattnerac161bf2009-01-02 07:01:27 +00005740 CI->setCallingConv(CC);
5741 CI->setAttributes(PAL);
Bill Wendlingb32b0412013-02-08 06:32:06 +00005742 ForwardRefAttrGroups[CI] = FwdRefAttrGrps;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005743 Inst = CI;
5744 return false;
5745}
5746
5747//===----------------------------------------------------------------------===//
5748// Memory Instructions.
5749//===----------------------------------------------------------------------===//
5750
5751/// ParseAlloc
David Majnemerc4ab61c2014-03-09 06:41:58 +00005752/// ::= 'alloca' 'inalloca'? Type (',' TypeAndValue)? (',' 'align' i32)?
Chris Lattner78103722011-06-17 03:16:47 +00005753int LLParser::ParseAlloc(Instruction *&Inst, PerFunctionState &PFS) {
Craig Topper2617dcc2014-04-15 06:32:26 +00005754 Value *Size = nullptr;
David Majnemera3b0eb22015-02-16 08:38:03 +00005755 LocTy SizeLoc, TyLoc;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005756 unsigned Alignment = 0;
Craig Topper2617dcc2014-04-15 06:32:26 +00005757 Type *Ty = nullptr;
David Majnemerc4ab61c2014-03-09 06:41:58 +00005758
5759 bool IsInAlloca = EatIfPresent(lltok::kw_inalloca);
5760
David Majnemera3b0eb22015-02-16 08:38:03 +00005761 if (ParseType(Ty, TyLoc)) return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005762
David Majnemera3b0eb22015-02-16 08:38:03 +00005763 if (Ty->isFunctionTy() || !PointerType::isValidElementType(Ty))
5764 return Error(TyLoc, "invalid type for alloca");
David Majnemerfad5a312015-02-11 09:13:11 +00005765
Chris Lattnerb2f39502009-12-30 05:44:30 +00005766 bool AteExtraComma = false;
Chris Lattner3822f632009-01-02 08:05:26 +00005767 if (EatIfPresent(lltok::comma)) {
David Majnemerc4ab61c2014-03-09 06:41:58 +00005768 if (Lex.getKind() == lltok::kw_align) {
5769 if (ParseOptionalAlignment(Alignment)) return true;
5770 } else if (Lex.getKind() == lltok::MetadataVar) {
5771 AteExtraComma = true;
5772 } else {
5773 if (ParseTypeAndValue(Size, SizeLoc, PFS) ||
5774 ParseOptionalCommaAlign(Alignment, AteExtraComma))
5775 return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005776 }
5777 }
5778
Dan Gohman2140a742010-05-28 01:14:11 +00005779 if (Size && !Size->getType()->isIntegerTy())
5780 return Error(SizeLoc, "element count must have integer type");
Chris Lattnerac161bf2009-01-02 07:01:27 +00005781
Reid Kleckner436c42e2014-01-17 23:58:17 +00005782 AllocaInst *AI = new AllocaInst(Ty, Size, Alignment);
5783 AI->setUsedWithInAlloca(IsInAlloca);
5784 Inst = AI;
Chris Lattner78103722011-06-17 03:16:47 +00005785 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005786}
5787
5788/// ParseLoad
Eli Friedman02e737b2011-08-12 22:50:01 +00005789/// ::= 'load' 'volatile'? TypeAndValue (',' 'align' i32)?
Michael Ilseman26ee2b82012-11-15 22:34:00 +00005790/// ::= 'load' 'atomic' 'volatile'? TypeAndValue
Eli Friedman02e737b2011-08-12 22:50:01 +00005791/// 'singlethread'? AtomicOrdering (',' 'align' i32)?
Chris Lattnerbc639292011-11-27 06:56:53 +00005792int LLParser::ParseLoad(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00005793 Value *Val; LocTy Loc;
Devang Patelea8a4b92009-09-17 23:04:48 +00005794 unsigned Alignment = 0;
Chris Lattnerb2f39502009-12-30 05:44:30 +00005795 bool AteExtraComma = false;
Eli Friedman02e737b2011-08-12 22:50:01 +00005796 bool isAtomic = false;
Eli Friedman59b66882011-08-09 23:02:53 +00005797 AtomicOrdering Ordering = NotAtomic;
5798 SynchronizationScope Scope = CrossThread;
Eli Friedman02e737b2011-08-12 22:50:01 +00005799
5800 if (Lex.getKind() == lltok::kw_atomic) {
Eli Friedman02e737b2011-08-12 22:50:01 +00005801 isAtomic = true;
5802 Lex.Lex();
5803 }
5804
Chris Lattnerbc639292011-11-27 06:56:53 +00005805 bool isVolatile = false;
Eli Friedman02e737b2011-08-12 22:50:01 +00005806 if (Lex.getKind() == lltok::kw_volatile) {
Eli Friedman02e737b2011-08-12 22:50:01 +00005807 isVolatile = true;
5808 Lex.Lex();
5809 }
5810
David Blaikie15d9a4c2015-04-06 20:59:48 +00005811 Type *Ty;
David Blaikiea79ac142015-02-27 21:17:42 +00005812 LocTy ExplicitTypeLoc = Lex.getLoc();
5813 if (ParseType(Ty) ||
5814 ParseToken(lltok::comma, "expected comma after load's type") ||
5815 ParseTypeAndValue(Val, Loc, PFS) ||
Eli Friedman59b66882011-08-09 23:02:53 +00005816 ParseScopeAndOrdering(isAtomic, Scope, Ordering) ||
Chris Lattnerb2f39502009-12-30 05:44:30 +00005817 ParseOptionalCommaAlign(Alignment, AteExtraComma))
5818 return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005819
David Blaikie15d9a4c2015-04-06 20:59:48 +00005820 if (!Val->getType()->isPointerTy() || !Ty->isFirstClassType())
Chris Lattnerac161bf2009-01-02 07:01:27 +00005821 return Error(Loc, "load operand must be a pointer to a first class type");
Eli Friedman59b66882011-08-09 23:02:53 +00005822 if (isAtomic && !Alignment)
5823 return Error(Loc, "atomic load must have explicit non-zero alignment");
5824 if (Ordering == Release || Ordering == AcquireRelease)
5825 return Error(Loc, "atomic load cannot use Release ordering");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005826
David Blaikiea79ac142015-02-27 21:17:42 +00005827 if (Ty != cast<PointerType>(Val->getType())->getElementType())
5828 return Error(ExplicitTypeLoc,
5829 "explicit pointee type doesn't match operand's pointee type");
5830
David Blaikie15d9a4c2015-04-06 20:59:48 +00005831 Inst = new LoadInst(Ty, Val, "", isVolatile, Alignment, Ordering, Scope);
Chris Lattnerb2f39502009-12-30 05:44:30 +00005832 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005833}
5834
5835/// ParseStore
Eli Friedman02e737b2011-08-12 22:50:01 +00005836
5837/// ::= 'store' 'volatile'? TypeAndValue ',' TypeAndValue (',' 'align' i32)?
5838/// ::= 'store' 'atomic' 'volatile'? TypeAndValue ',' TypeAndValue
Eli Friedman59b66882011-08-09 23:02:53 +00005839/// 'singlethread'? AtomicOrdering (',' 'align' i32)?
Chris Lattnerbc639292011-11-27 06:56:53 +00005840int LLParser::ParseStore(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00005841 Value *Val, *Ptr; LocTy Loc, PtrLoc;
Devang Patelea8a4b92009-09-17 23:04:48 +00005842 unsigned Alignment = 0;
Chris Lattnerb2f39502009-12-30 05:44:30 +00005843 bool AteExtraComma = false;
Eli Friedman02e737b2011-08-12 22:50:01 +00005844 bool isAtomic = false;
Eli Friedman59b66882011-08-09 23:02:53 +00005845 AtomicOrdering Ordering = NotAtomic;
5846 SynchronizationScope Scope = CrossThread;
Eli Friedman02e737b2011-08-12 22:50:01 +00005847
5848 if (Lex.getKind() == lltok::kw_atomic) {
Eli Friedman02e737b2011-08-12 22:50:01 +00005849 isAtomic = true;
5850 Lex.Lex();
5851 }
5852
Chris Lattnerbc639292011-11-27 06:56:53 +00005853 bool isVolatile = false;
Eli Friedman02e737b2011-08-12 22:50:01 +00005854 if (Lex.getKind() == lltok::kw_volatile) {
Eli Friedman02e737b2011-08-12 22:50:01 +00005855 isVolatile = true;
5856 Lex.Lex();
5857 }
5858
Chris Lattnerac161bf2009-01-02 07:01:27 +00005859 if (ParseTypeAndValue(Val, Loc, PFS) ||
5860 ParseToken(lltok::comma, "expected ',' after store operand") ||
Chris Lattnerb2f39502009-12-30 05:44:30 +00005861 ParseTypeAndValue(Ptr, PtrLoc, PFS) ||
Eli Friedman59b66882011-08-09 23:02:53 +00005862 ParseScopeAndOrdering(isAtomic, Scope, Ordering) ||
Chris Lattnerb2f39502009-12-30 05:44:30 +00005863 ParseOptionalCommaAlign(Alignment, AteExtraComma))
Chris Lattnerac161bf2009-01-02 07:01:27 +00005864 return true;
Devang Patelea8a4b92009-09-17 23:04:48 +00005865
Duncan Sands19d0b472010-02-16 11:11:14 +00005866 if (!Ptr->getType()->isPointerTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00005867 return Error(PtrLoc, "store operand must be a pointer");
5868 if (!Val->getType()->isFirstClassType())
5869 return Error(Loc, "store operand must be a first class value");
5870 if (cast<PointerType>(Ptr->getType())->getElementType() != Val->getType())
5871 return Error(Loc, "stored value and pointer type do not match");
Eli Friedman59b66882011-08-09 23:02:53 +00005872 if (isAtomic && !Alignment)
5873 return Error(Loc, "atomic store must have explicit non-zero alignment");
5874 if (Ordering == Acquire || Ordering == AcquireRelease)
5875 return Error(Loc, "atomic store cannot use Acquire ordering");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005876
Eli Friedman59b66882011-08-09 23:02:53 +00005877 Inst = new StoreInst(Val, Ptr, isVolatile, Alignment, Ordering, Scope);
Chris Lattnerb2f39502009-12-30 05:44:30 +00005878 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005879}
5880
Eli Friedmanc9a551e2011-07-28 21:48:00 +00005881/// ParseCmpXchg
Tim Northover420a2162014-06-13 14:24:07 +00005882/// ::= 'cmpxchg' 'weak'? 'volatile'? TypeAndValue ',' TypeAndValue ','
5883/// TypeAndValue 'singlethread'? AtomicOrdering AtomicOrdering
Eli Friedman02e737b2011-08-12 22:50:01 +00005884int LLParser::ParseCmpXchg(Instruction *&Inst, PerFunctionState &PFS) {
Eli Friedmanc9a551e2011-07-28 21:48:00 +00005885 Value *Ptr, *Cmp, *New; LocTy PtrLoc, CmpLoc, NewLoc;
5886 bool AteExtraComma = false;
Tim Northovere94a5182014-03-11 10:48:52 +00005887 AtomicOrdering SuccessOrdering = NotAtomic;
5888 AtomicOrdering FailureOrdering = NotAtomic;
Eli Friedmanc9a551e2011-07-28 21:48:00 +00005889 SynchronizationScope Scope = CrossThread;
Eli Friedman02e737b2011-08-12 22:50:01 +00005890 bool isVolatile = false;
Tim Northover420a2162014-06-13 14:24:07 +00005891 bool isWeak = false;
5892
5893 if (EatIfPresent(lltok::kw_weak))
5894 isWeak = true;
Eli Friedman02e737b2011-08-12 22:50:01 +00005895
5896 if (EatIfPresent(lltok::kw_volatile))
5897 isVolatile = true;
5898
Eli Friedmanc9a551e2011-07-28 21:48:00 +00005899 if (ParseTypeAndValue(Ptr, PtrLoc, PFS) ||
5900 ParseToken(lltok::comma, "expected ',' after cmpxchg address") ||
5901 ParseTypeAndValue(Cmp, CmpLoc, PFS) ||
5902 ParseToken(lltok::comma, "expected ',' after cmpxchg cmp operand") ||
5903 ParseTypeAndValue(New, NewLoc, PFS) ||
Tim Northovere94a5182014-03-11 10:48:52 +00005904 ParseScopeAndOrdering(true /*Always atomic*/, Scope, SuccessOrdering) ||
5905 ParseOrdering(FailureOrdering))
Eli Friedmanc9a551e2011-07-28 21:48:00 +00005906 return true;
5907
Tim Northovere94a5182014-03-11 10:48:52 +00005908 if (SuccessOrdering == Unordered || FailureOrdering == Unordered)
Eli Friedmanc9a551e2011-07-28 21:48:00 +00005909 return TokError("cmpxchg cannot be unordered");
Tim Northovere94a5182014-03-11 10:48:52 +00005910 if (SuccessOrdering < FailureOrdering)
5911 return TokError("cmpxchg must be at least as ordered on success as failure");
5912 if (FailureOrdering == Release || FailureOrdering == AcquireRelease)
5913 return TokError("cmpxchg failure ordering cannot include release semantics");
Eli Friedmanc9a551e2011-07-28 21:48:00 +00005914 if (!Ptr->getType()->isPointerTy())
5915 return Error(PtrLoc, "cmpxchg operand must be a pointer");
5916 if (cast<PointerType>(Ptr->getType())->getElementType() != Cmp->getType())
5917 return Error(CmpLoc, "compare value and pointer type do not match");
5918 if (cast<PointerType>(Ptr->getType())->getElementType() != New->getType())
5919 return Error(NewLoc, "new value and pointer type do not match");
5920 if (!New->getType()->isIntegerTy())
5921 return Error(NewLoc, "cmpxchg operand must be an integer");
5922 unsigned Size = New->getType()->getPrimitiveSizeInBits();
5923 if (Size < 8 || (Size & (Size - 1)))
5924 return Error(NewLoc, "cmpxchg operand must be power-of-two byte-sized"
5925 " integer");
5926
Tim Northover420a2162014-06-13 14:24:07 +00005927 AtomicCmpXchgInst *CXI = new AtomicCmpXchgInst(
5928 Ptr, Cmp, New, SuccessOrdering, FailureOrdering, Scope);
Eli Friedmanc9a551e2011-07-28 21:48:00 +00005929 CXI->setVolatile(isVolatile);
Tim Northover420a2162014-06-13 14:24:07 +00005930 CXI->setWeak(isWeak);
Eli Friedmanc9a551e2011-07-28 21:48:00 +00005931 Inst = CXI;
5932 return AteExtraComma ? InstExtraComma : InstNormal;
5933}
5934
5935/// ParseAtomicRMW
Eli Friedman02e737b2011-08-12 22:50:01 +00005936/// ::= 'atomicrmw' 'volatile'? BinOp TypeAndValue ',' TypeAndValue
5937/// 'singlethread'? AtomicOrdering
5938int LLParser::ParseAtomicRMW(Instruction *&Inst, PerFunctionState &PFS) {
Eli Friedmanc9a551e2011-07-28 21:48:00 +00005939 Value *Ptr, *Val; LocTy PtrLoc, ValLoc;
5940 bool AteExtraComma = false;
5941 AtomicOrdering Ordering = NotAtomic;
5942 SynchronizationScope Scope = CrossThread;
Eli Friedman02e737b2011-08-12 22:50:01 +00005943 bool isVolatile = false;
Eli Friedmanc9a551e2011-07-28 21:48:00 +00005944 AtomicRMWInst::BinOp Operation;
Eli Friedman02e737b2011-08-12 22:50:01 +00005945
5946 if (EatIfPresent(lltok::kw_volatile))
5947 isVolatile = true;
5948
Eli Friedmanc9a551e2011-07-28 21:48:00 +00005949 switch (Lex.getKind()) {
5950 default: return TokError("expected binary operation in atomicrmw");
5951 case lltok::kw_xchg: Operation = AtomicRMWInst::Xchg; break;
5952 case lltok::kw_add: Operation = AtomicRMWInst::Add; break;
5953 case lltok::kw_sub: Operation = AtomicRMWInst::Sub; break;
5954 case lltok::kw_and: Operation = AtomicRMWInst::And; break;
5955 case lltok::kw_nand: Operation = AtomicRMWInst::Nand; break;
5956 case lltok::kw_or: Operation = AtomicRMWInst::Or; break;
5957 case lltok::kw_xor: Operation = AtomicRMWInst::Xor; break;
5958 case lltok::kw_max: Operation = AtomicRMWInst::Max; break;
5959 case lltok::kw_min: Operation = AtomicRMWInst::Min; break;
5960 case lltok::kw_umax: Operation = AtomicRMWInst::UMax; break;
5961 case lltok::kw_umin: Operation = AtomicRMWInst::UMin; break;
5962 }
5963 Lex.Lex(); // Eat the operation.
5964
5965 if (ParseTypeAndValue(Ptr, PtrLoc, PFS) ||
5966 ParseToken(lltok::comma, "expected ',' after atomicrmw address") ||
5967 ParseTypeAndValue(Val, ValLoc, PFS) ||
5968 ParseScopeAndOrdering(true /*Always atomic*/, Scope, Ordering))
5969 return true;
5970
5971 if (Ordering == Unordered)
5972 return TokError("atomicrmw cannot be unordered");
5973 if (!Ptr->getType()->isPointerTy())
5974 return Error(PtrLoc, "atomicrmw operand must be a pointer");
5975 if (cast<PointerType>(Ptr->getType())->getElementType() != Val->getType())
5976 return Error(ValLoc, "atomicrmw value and pointer type do not match");
5977 if (!Val->getType()->isIntegerTy())
5978 return Error(ValLoc, "atomicrmw operand must be an integer");
5979 unsigned Size = Val->getType()->getPrimitiveSizeInBits();
5980 if (Size < 8 || (Size & (Size - 1)))
5981 return Error(ValLoc, "atomicrmw operand must be power-of-two byte-sized"
5982 " integer");
5983
5984 AtomicRMWInst *RMWI =
5985 new AtomicRMWInst(Operation, Ptr, Val, Ordering, Scope);
5986 RMWI->setVolatile(isVolatile);
5987 Inst = RMWI;
5988 return AteExtraComma ? InstExtraComma : InstNormal;
5989}
5990
Eli Friedmanfee02c62011-07-25 23:16:38 +00005991/// ParseFence
5992/// ::= 'fence' 'singlethread'? AtomicOrdering
5993int LLParser::ParseFence(Instruction *&Inst, PerFunctionState &PFS) {
5994 AtomicOrdering Ordering = NotAtomic;
5995 SynchronizationScope Scope = CrossThread;
5996 if (ParseScopeAndOrdering(true /*Always atomic*/, Scope, Ordering))
5997 return true;
5998
5999 if (Ordering == Unordered)
6000 return TokError("fence cannot be unordered");
6001 if (Ordering == Monotonic)
6002 return TokError("fence cannot be monotonic");
6003
6004 Inst = new FenceInst(Context, Ordering, Scope);
6005 return InstNormal;
6006}
6007
Chris Lattnerac161bf2009-01-02 07:01:27 +00006008/// ParseGetElementPtr
Dan Gohman1639c392009-07-27 21:53:46 +00006009/// ::= 'getelementptr' 'inbounds'? TypeAndValue (',' TypeAndValue)*
Chris Lattnerf4f03422009-12-30 05:27:33 +00006010int LLParser::ParseGetElementPtr(Instruction *&Inst, PerFunctionState &PFS) {
Craig Topper2617dcc2014-04-15 06:32:26 +00006011 Value *Ptr = nullptr;
6012 Value *Val = nullptr;
Nadav Rotem3924cb02011-12-05 06:29:09 +00006013 LocTy Loc, EltLoc;
Dan Gohman1639c392009-07-27 21:53:46 +00006014
Dan Gohman16cbbe42009-07-29 15:58:36 +00006015 bool InBounds = EatIfPresent(lltok::kw_inbounds);
Dan Gohman1639c392009-07-27 21:53:46 +00006016
David Blaikie79e6c742015-02-27 19:29:02 +00006017 Type *Ty = nullptr;
6018 LocTy ExplicitTypeLoc = Lex.getLoc();
6019 if (ParseType(Ty) ||
6020 ParseToken(lltok::comma, "expected comma after getelementptr's type") ||
6021 ParseTypeAndValue(Ptr, Loc, PFS))
6022 return true;
6023
Eli Benderskyd9806682013-04-22 17:03:42 +00006024 Type *BaseType = Ptr->getType();
6025 PointerType *BasePointerType = dyn_cast<PointerType>(BaseType->getScalarType());
6026 if (!BasePointerType)
Chris Lattnerac161bf2009-01-02 07:01:27 +00006027 return Error(Loc, "base of getelementptr must be a pointer");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00006028
David Blaikie8d757942015-03-09 23:08:44 +00006029 if (Ty != BasePointerType->getElementType())
6030 return Error(ExplicitTypeLoc,
6031 "explicit pointee type doesn't match operand's pointee type");
6032
Chris Lattnerac161bf2009-01-02 07:01:27 +00006033 SmallVector<Value*, 16> Indices;
Chris Lattnerf4f03422009-12-30 05:27:33 +00006034 bool AteExtraComma = false;
Elena Demikhovsky37a4da82015-07-09 07:42:48 +00006035 // GEP returns a vector of pointers if at least one of parameters is a vector.
6036 // All vector parameters should have the same vector width.
6037 unsigned GEPWidth = BaseType->isVectorTy() ?
6038 BaseType->getVectorNumElements() : 0;
6039
Chris Lattner3822f632009-01-02 08:05:26 +00006040 while (EatIfPresent(lltok::comma)) {
Chris Lattnerf4f03422009-12-30 05:27:33 +00006041 if (Lex.getKind() == lltok::MetadataVar) {
6042 AteExtraComma = true;
Devang Patel52b17452009-10-13 18:49:55 +00006043 break;
Chris Lattnerf4f03422009-12-30 05:27:33 +00006044 }
Chris Lattner3822f632009-01-02 08:05:26 +00006045 if (ParseTypeAndValue(Val, EltLoc, PFS)) return true;
Nadav Rotem3924cb02011-12-05 06:29:09 +00006046 if (!Val->getType()->getScalarType()->isIntegerTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00006047 return Error(EltLoc, "getelementptr index must be an integer");
Elena Demikhovsky37a4da82015-07-09 07:42:48 +00006048
Nadav Rotem3924cb02011-12-05 06:29:09 +00006049 if (Val->getType()->isVectorTy()) {
Elena Demikhovsky37a4da82015-07-09 07:42:48 +00006050 unsigned ValNumEl = Val->getType()->getVectorNumElements();
6051 if (GEPWidth && GEPWidth != ValNumEl)
Nadav Rotem3924cb02011-12-05 06:29:09 +00006052 return Error(EltLoc,
6053 "getelementptr vector index has a wrong number of elements");
Elena Demikhovsky37a4da82015-07-09 07:42:48 +00006054 GEPWidth = ValNumEl;
Nadav Rotem3924cb02011-12-05 06:29:09 +00006055 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00006056 Indices.push_back(Val);
6057 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00006058
Craig Toppere3dcce92015-08-01 22:20:21 +00006059 SmallPtrSet<Type*, 4> Visited;
David Blaikied33bad32015-04-17 22:32:13 +00006060 if (!Indices.empty() && !Ty->isSized(&Visited))
Eli Benderskyd9806682013-04-22 17:03:42 +00006061 return Error(Loc, "base element of getelementptr must be sized");
6062
David Blaikied33bad32015-04-17 22:32:13 +00006063 if (!GetElementPtrInst::getIndexedType(Ty, Indices))
Chris Lattnerac161bf2009-01-02 07:01:27 +00006064 return Error(Loc, "invalid getelementptr indices");
David Blaikiecd7b97e2015-03-14 21:11:24 +00006065 Inst = GetElementPtrInst::Create(Ty, Ptr, Indices);
Dan Gohman1639c392009-07-27 21:53:46 +00006066 if (InBounds)
Dan Gohman1b849082009-09-07 23:54:19 +00006067 cast<GetElementPtrInst>(Inst)->setIsInBounds(true);
Chris Lattnerf4f03422009-12-30 05:27:33 +00006068 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerac161bf2009-01-02 07:01:27 +00006069}
6070
6071/// ParseExtractValue
6072/// ::= 'extractvalue' TypeAndValue (',' uint32)+
Chris Lattnerf4f03422009-12-30 05:27:33 +00006073int LLParser::ParseExtractValue(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00006074 Value *Val; LocTy Loc;
6075 SmallVector<unsigned, 4> Indices;
Chris Lattnerf4f03422009-12-30 05:27:33 +00006076 bool AteExtraComma;
Chris Lattnerac161bf2009-01-02 07:01:27 +00006077 if (ParseTypeAndValue(Val, Loc, PFS) ||
Chris Lattnerf4f03422009-12-30 05:27:33 +00006078 ParseIndexList(Indices, AteExtraComma))
Chris Lattnerac161bf2009-01-02 07:01:27 +00006079 return true;
6080
Chris Lattner392be582010-02-12 20:49:41 +00006081 if (!Val->getType()->isAggregateType())
6082 return Error(Loc, "extractvalue operand must be aggregate type");
Chris Lattnerac161bf2009-01-02 07:01:27 +00006083
Jay Foad57aa6362011-07-13 10:26:04 +00006084 if (!ExtractValueInst::getIndexedType(Val->getType(), Indices))
Chris Lattnerac161bf2009-01-02 07:01:27 +00006085 return Error(Loc, "invalid indices for extractvalue");
Jay Foad57aa6362011-07-13 10:26:04 +00006086 Inst = ExtractValueInst::Create(Val, Indices);
Chris Lattnerf4f03422009-12-30 05:27:33 +00006087 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerac161bf2009-01-02 07:01:27 +00006088}
6089
6090/// ParseInsertValue
6091/// ::= 'insertvalue' TypeAndValue ',' TypeAndValue (',' uint32)+
Chris Lattnerf4f03422009-12-30 05:27:33 +00006092int LLParser::ParseInsertValue(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00006093 Value *Val0, *Val1; LocTy Loc0, Loc1;
6094 SmallVector<unsigned, 4> Indices;
Chris Lattnerf4f03422009-12-30 05:27:33 +00006095 bool AteExtraComma;
Chris Lattnerac161bf2009-01-02 07:01:27 +00006096 if (ParseTypeAndValue(Val0, Loc0, PFS) ||
6097 ParseToken(lltok::comma, "expected comma after insertvalue operand") ||
6098 ParseTypeAndValue(Val1, Loc1, PFS) ||
Chris Lattnerf4f03422009-12-30 05:27:33 +00006099 ParseIndexList(Indices, AteExtraComma))
Chris Lattnerac161bf2009-01-02 07:01:27 +00006100 return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00006101
Chris Lattner392be582010-02-12 20:49:41 +00006102 if (!Val0->getType()->isAggregateType())
6103 return Error(Loc0, "insertvalue operand must be aggregate type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00006104
David Majnemer30074532015-02-11 07:43:58 +00006105 Type *IndexedType = ExtractValueInst::getIndexedType(Val0->getType(), Indices);
6106 if (!IndexedType)
Chris Lattnerac161bf2009-01-02 07:01:27 +00006107 return Error(Loc0, "invalid indices for insertvalue");
David Majnemer30074532015-02-11 07:43:58 +00006108 if (IndexedType != Val1->getType())
6109 return Error(Loc1, "insertvalue operand and field disagree in type: '" +
6110 getTypeString(Val1->getType()) + "' instead of '" +
6111 getTypeString(IndexedType) + "'");
Jay Foad57aa6362011-07-13 10:26:04 +00006112 Inst = InsertValueInst::Create(Val0, Val1, Indices);
Chris Lattnerf4f03422009-12-30 05:27:33 +00006113 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerac161bf2009-01-02 07:01:27 +00006114}
Nick Lewycky49f89192009-04-04 07:22:01 +00006115
6116//===----------------------------------------------------------------------===//
6117// Embedded metadata.
6118//===----------------------------------------------------------------------===//
6119
6120/// ParseMDNodeVector
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00006121/// ::= { Element (',' Element)* }
Nick Lewyckyb8f9b7a2009-05-10 20:57:05 +00006122/// Element
6123/// ::= 'null' | TypeAndValue
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00006124bool LLParser::ParseMDNodeVector(SmallVectorImpl<Metadata *> &Elts) {
David Majnemer06f960d2014-12-11 20:44:09 +00006125 if (ParseToken(lltok::lbrace, "expected '{' here"))
6126 return true;
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00006127
Dan Gohman1e0213a2010-07-13 19:33:27 +00006128 // Check for an empty list.
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00006129 if (EatIfPresent(lltok::rbrace))
Dan Gohman1e0213a2010-07-13 19:33:27 +00006130 return false;
6131
Nick Lewycky49f89192009-04-04 07:22:01 +00006132 do {
Chris Lattnera01ddfc2009-12-30 04:42:57 +00006133 // Null is a special case since it is typeless.
6134 if (EatIfPresent(lltok::kw_null)) {
Craig Topper2617dcc2014-04-15 06:32:26 +00006135 Elts.push_back(nullptr);
Chris Lattnera01ddfc2009-12-30 04:42:57 +00006136 continue;
Nick Lewyckyb8f9b7a2009-05-10 20:57:05 +00006137 }
Michael Ilseman26ee2b82012-11-15 22:34:00 +00006138
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00006139 Metadata *MD;
6140 if (ParseMetadata(MD, nullptr))
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00006141 return true;
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00006142 Elts.push_back(MD);
Nick Lewycky49f89192009-04-04 07:22:01 +00006143 } while (EatIfPresent(lltok::comma));
6144
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00006145 return ParseToken(lltok::rbrace, "expected end of metadata node");
Nick Lewycky49f89192009-04-04 07:22:01 +00006146}
Duncan P. N. Exon Smith0a448fb2014-08-19 21:30:15 +00006147
6148//===----------------------------------------------------------------------===//
6149// Use-list order directives.
6150//===----------------------------------------------------------------------===//
6151bool LLParser::sortUseListOrder(Value *V, ArrayRef<unsigned> Indexes,
6152 SMLoc Loc) {
6153 if (V->use_empty())
6154 return Error(Loc, "value has no uses");
6155
6156 unsigned NumUses = 0;
6157 SmallDenseMap<const Use *, unsigned, 16> Order;
6158 for (const Use &U : V->uses()) {
6159 if (++NumUses > Indexes.size())
6160 break;
6161 Order[&U] = Indexes[NumUses - 1];
6162 }
6163 if (NumUses < 2)
6164 return Error(Loc, "value only has one use");
6165 if (Order.size() != Indexes.size() || NumUses > Indexes.size())
6166 return Error(Loc, "wrong number of indexes, expected " +
6167 Twine(std::distance(V->use_begin(), V->use_end())));
6168
6169 V->sortUseList([&](const Use &L, const Use &R) {
6170 return Order.lookup(&L) < Order.lookup(&R);
6171 });
6172 return false;
6173}
6174
6175/// ParseUseListOrderIndexes
6176/// ::= '{' uint32 (',' uint32)+ '}'
6177bool LLParser::ParseUseListOrderIndexes(SmallVectorImpl<unsigned> &Indexes) {
6178 SMLoc Loc = Lex.getLoc();
6179 if (ParseToken(lltok::lbrace, "expected '{' here"))
6180 return true;
6181 if (Lex.getKind() == lltok::rbrace)
6182 return Lex.Error("expected non-empty list of uselistorder indexes");
6183
6184 // Use Offset, Max, and IsOrdered to check consistency of indexes. The
6185 // indexes should be distinct numbers in the range [0, size-1], and should
6186 // not be in order.
6187 unsigned Offset = 0;
6188 unsigned Max = 0;
6189 bool IsOrdered = true;
6190 assert(Indexes.empty() && "Expected empty order vector");
6191 do {
6192 unsigned Index;
6193 if (ParseUInt32(Index))
6194 return true;
6195
6196 // Update consistency checks.
6197 Offset += Index - Indexes.size();
6198 Max = std::max(Max, Index);
6199 IsOrdered &= Index == Indexes.size();
6200
6201 Indexes.push_back(Index);
6202 } while (EatIfPresent(lltok::comma));
6203
6204 if (ParseToken(lltok::rbrace, "expected '}' here"))
6205 return true;
6206
6207 if (Indexes.size() < 2)
6208 return Error(Loc, "expected >= 2 uselistorder indexes");
6209 if (Offset != 0 || Max >= Indexes.size())
6210 return Error(Loc, "expected distinct uselistorder indexes in range [0, size)");
6211 if (IsOrdered)
6212 return Error(Loc, "expected uselistorder indexes to change the order");
6213
6214 return false;
6215}
6216
6217/// ParseUseListOrder
6218/// ::= 'uselistorder' Type Value ',' UseListOrderIndexes
6219bool LLParser::ParseUseListOrder(PerFunctionState *PFS) {
6220 SMLoc Loc = Lex.getLoc();
6221 if (ParseToken(lltok::kw_uselistorder, "expected uselistorder directive"))
6222 return true;
6223
6224 Value *V;
6225 SmallVector<unsigned, 16> Indexes;
6226 if (ParseTypeAndValue(V, PFS) ||
6227 ParseToken(lltok::comma, "expected comma in uselistorder directive") ||
6228 ParseUseListOrderIndexes(Indexes))
6229 return true;
6230
6231 return sortUseListOrder(V, Indexes, Loc);
6232}
6233
6234/// ParseUseListOrderBB
6235/// ::= 'uselistorder_bb' @foo ',' %bar ',' UseListOrderIndexes
6236bool LLParser::ParseUseListOrderBB() {
6237 assert(Lex.getKind() == lltok::kw_uselistorder_bb);
6238 SMLoc Loc = Lex.getLoc();
6239 Lex.Lex();
6240
6241 ValID Fn, Label;
6242 SmallVector<unsigned, 16> Indexes;
6243 if (ParseValID(Fn) ||
6244 ParseToken(lltok::comma, "expected comma in uselistorder_bb directive") ||
6245 ParseValID(Label) ||
6246 ParseToken(lltok::comma, "expected comma in uselistorder_bb directive") ||
6247 ParseUseListOrderIndexes(Indexes))
6248 return true;
6249
6250 // Check the function.
6251 GlobalValue *GV;
6252 if (Fn.Kind == ValID::t_GlobalName)
6253 GV = M->getNamedValue(Fn.StrVal);
6254 else if (Fn.Kind == ValID::t_GlobalID)
6255 GV = Fn.UIntVal < NumberedVals.size() ? NumberedVals[Fn.UIntVal] : nullptr;
6256 else
6257 return Error(Fn.Loc, "expected function name in uselistorder_bb");
6258 if (!GV)
6259 return Error(Fn.Loc, "invalid function forward reference in uselistorder_bb");
6260 auto *F = dyn_cast<Function>(GV);
6261 if (!F)
6262 return Error(Fn.Loc, "expected function name in uselistorder_bb");
6263 if (F->isDeclaration())
6264 return Error(Fn.Loc, "invalid declaration in uselistorder_bb");
6265
6266 // Check the basic block.
6267 if (Label.Kind == ValID::t_LocalID)
6268 return Error(Label.Loc, "invalid numeric label in uselistorder_bb");
6269 if (Label.Kind != ValID::t_LocalName)
6270 return Error(Label.Loc, "expected basic block name in uselistorder_bb");
6271 Value *V = F->getValueSymbolTable().lookup(Label.StrVal);
6272 if (!V)
6273 return Error(Label.Loc, "invalid basic block in uselistorder_bb");
6274 if (!isa<BasicBlock>(V))
6275 return Error(Label.Loc, "expected basic block in uselistorder_bb");
6276
6277 return sortUseListOrder(V, Indexes, Loc);
6278}