blob: bf1d2f005ee0f8fb0c028c373c7809251a2a300a [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"
Philip Reames1960cfd2016-02-19 00:06:41 +000030#include "llvm/Support/Debug.h"
Duncan P. N. Exon Smith97486072015-02-03 21:56:01 +000031#include "llvm/Support/Dwarf.h"
Torok Edwin56d06592009-07-11 20:10:48 +000032#include "llvm/Support/ErrorHandling.h"
Duncan P. N. Exon Smith17169902014-08-19 00:13:19 +000033#include "llvm/Support/SaveAndRestore.h"
Chris Lattnerac161bf2009-01-02 07:01:27 +000034#include "llvm/Support/raw_ostream.h"
35using namespace llvm;
36
Chris Lattner229907c2011-07-18 04:54:35 +000037static std::string getTypeString(Type *T) {
Alp Tokere69170a2014-06-26 22:52:05 +000038 std::string Result;
39 raw_string_ostream Tmp(Result);
40 Tmp << *T;
41 return Tmp.str();
Chris Lattner0f214eb2011-06-18 21:18:23 +000042}
43
Chris Lattner3822f632009-01-02 08:05:26 +000044/// Run: module ::= toplevelentity*
Chris Lattnerad6f3352009-01-04 20:44:11 +000045bool LLParser::Run() {
Chris Lattner3822f632009-01-02 08:05:26 +000046 // Prime the lexer.
47 Lex.Lex();
48
Mehdi Amini50af49f2016-04-02 03:46:17 +000049 if (Context.shouldDiscardValueNames())
Mehdi Amini09b4a8d2016-03-10 01:28:54 +000050 return Error(
51 Lex.getLoc(),
52 "Can't read textual IR with a Context that discards named Values");
53
Chris Lattnerad6f3352009-01-04 20:44:11 +000054 return ParseTopLevelEntities() ||
55 ValidateEndOfModule();
Chris Lattnerac161bf2009-01-02 07:01:27 +000056}
57
Alex Lorenz1de2acd2015-08-21 21:32:39 +000058bool LLParser::parseStandaloneConstantValue(Constant *&C,
59 const SlotMapping *Slots) {
60 restoreParsingState(Slots);
Alex Lorenzd2255952015-07-17 22:07:03 +000061 Lex.Lex();
62
63 Type *Ty = nullptr;
64 if (ParseType(Ty) || parseConstantValue(Ty, C))
65 return true;
66 if (Lex.getKind() != lltok::Eof)
67 return Error(Lex.getLoc(), "expected end of string");
68 return false;
69}
70
Quentin Colombetdafed5d2016-03-08 00:37:07 +000071bool LLParser::parseTypeAtBeginning(Type *&Ty, unsigned &Read,
72 const SlotMapping *Slots) {
Quentin Colombet81e72b42016-03-07 22:09:05 +000073 restoreParsingState(Slots);
74 Lex.Lex();
75
Quentin Colombetdafed5d2016-03-08 00:37:07 +000076 Read = 0;
77 SMLoc Start = Lex.getLoc();
Quentin Colombet81e72b42016-03-07 22:09:05 +000078 Ty = nullptr;
79 if (ParseType(Ty))
80 return true;
Quentin Colombetdafed5d2016-03-08 00:37:07 +000081 SMLoc End = Lex.getLoc();
82 Read = End.getPointer() - Start.getPointer();
83
Quentin Colombet81e72b42016-03-07 22:09:05 +000084 return false;
85}
86
Alex Lorenz1de2acd2015-08-21 21:32:39 +000087void LLParser::restoreParsingState(const SlotMapping *Slots) {
88 if (!Slots)
89 return;
90 NumberedVals = Slots->GlobalValues;
91 NumberedMetadata = Slots->MetadataNodes;
92 for (const auto &I : Slots->NamedTypes)
93 NamedTypes.insert(
94 std::make_pair(I.getKey(), std::make_pair(I.second, LocTy())));
95 for (const auto &I : Slots->Types)
96 NumberedTypes.insert(
97 std::make_pair(I.first, std::make_pair(I.second, LocTy())));
98}
99
Chris Lattnerac161bf2009-01-02 07:01:27 +0000100/// ValidateEndOfModule - Do final validity and sanity checks at the end of the
101/// module.
102bool LLParser::ValidateEndOfModule() {
Bill Wendlingb32b0412013-02-08 06:32:06 +0000103 // Handle any function attribute group forward references.
104 for (std::map<Value*, std::vector<unsigned> >::iterator
105 I = ForwardRefAttrGroups.begin(), E = ForwardRefAttrGroups.end();
106 I != E; ++I) {
107 Value *V = I->first;
108 std::vector<unsigned> &Vec = I->second;
109 AttrBuilder B;
110
111 for (std::vector<unsigned>::iterator VI = Vec.begin(), VE = Vec.end();
112 VI != VE; ++VI)
113 B.merge(NumberedAttrBuilders[*VI]);
114
115 if (Function *Fn = dyn_cast<Function>(V)) {
116 AttributeSet AS = Fn->getAttributes();
117 AttrBuilder FnAttrs(AS.getFnAttributes(), AttributeSet::FunctionIndex);
118 AS = AS.removeAttributes(Context, AttributeSet::FunctionIndex,
119 AS.getFnAttributes());
120
121 FnAttrs.merge(B);
122
123 // If the alignment was parsed as an attribute, move to the alignment
124 // field.
125 if (FnAttrs.hasAlignmentAttr()) {
126 Fn->setAlignment(FnAttrs.getAlignment());
127 FnAttrs.removeAttribute(Attribute::Alignment);
128 }
129
130 AS = AS.addAttributes(Context, AttributeSet::FunctionIndex,
131 AttributeSet::get(Context,
132 AttributeSet::FunctionIndex,
133 FnAttrs));
134 Fn->setAttributes(AS);
135 } else if (CallInst *CI = dyn_cast<CallInst>(V)) {
136 AttributeSet AS = CI->getAttributes();
137 AttrBuilder FnAttrs(AS.getFnAttributes(), AttributeSet::FunctionIndex);
138 AS = AS.removeAttributes(Context, AttributeSet::FunctionIndex,
139 AS.getFnAttributes());
Bill Wendling59dce372013-02-12 10:13:06 +0000140 FnAttrs.merge(B);
Bill Wendlingb32b0412013-02-08 06:32:06 +0000141 AS = AS.addAttributes(Context, AttributeSet::FunctionIndex,
142 AttributeSet::get(Context,
143 AttributeSet::FunctionIndex,
144 FnAttrs));
145 CI->setAttributes(AS);
146 } else if (InvokeInst *II = dyn_cast<InvokeInst>(V)) {
147 AttributeSet AS = II->getAttributes();
148 AttrBuilder FnAttrs(AS.getFnAttributes(), AttributeSet::FunctionIndex);
149 AS = AS.removeAttributes(Context, AttributeSet::FunctionIndex,
150 AS.getFnAttributes());
Bill Wendling59dce372013-02-12 10:13:06 +0000151 FnAttrs.merge(B);
Bill Wendlingb32b0412013-02-08 06:32:06 +0000152 AS = AS.addAttributes(Context, AttributeSet::FunctionIndex,
153 AttributeSet::get(Context,
154 AttributeSet::FunctionIndex,
155 FnAttrs));
156 II->setAttributes(AS);
157 } else {
158 llvm_unreachable("invalid object with forward attribute group reference");
159 }
160 }
Michael Ilseman26ee2b82012-11-15 22:34:00 +0000161
Duncan P. N. Exon Smith17169902014-08-19 00:13:19 +0000162 // If there are entries in ForwardRefBlockAddresses at this point, the
163 // function was never defined.
164 if (!ForwardRefBlockAddresses.empty())
165 return Error(ForwardRefBlockAddresses.begin()->first.Loc,
166 "expected function name in blockaddress");
Michael Ilseman26ee2b82012-11-15 22:34:00 +0000167
David Majnemer19b51052015-02-11 07:43:56 +0000168 for (const auto &NT : NumberedTypes)
169 if (NT.second.second.isValid())
170 return Error(NT.second.second,
171 "use of undefined type '%" + Twine(NT.first) + "'");
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000172
173 for (StringMap<std::pair<Type*, LocTy> >::iterator I =
174 NamedTypes.begin(), E = NamedTypes.end(); I != E; ++I)
175 if (I->second.second.isValid())
176 return Error(I->second.second,
177 "use of undefined type named '" + I->getKey() + "'");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000178
David Majnemerdad0a642014-06-27 18:19:56 +0000179 if (!ForwardRefComdats.empty())
180 return Error(ForwardRefComdats.begin()->second,
181 "use of undefined comdat '$" +
182 ForwardRefComdats.begin()->first + "'");
183
Chris Lattnerac161bf2009-01-02 07:01:27 +0000184 if (!ForwardRefVals.empty())
185 return Error(ForwardRefVals.begin()->second.second,
186 "use of undefined value '@" + ForwardRefVals.begin()->first +
187 "'");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000188
Chris Lattnerac161bf2009-01-02 07:01:27 +0000189 if (!ForwardRefValIDs.empty())
190 return Error(ForwardRefValIDs.begin()->second.second,
191 "use of undefined value '@" +
Benjamin Kramerc7583112010-09-27 17:42:11 +0000192 Twine(ForwardRefValIDs.begin()->first) + "'");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000193
Devang Pateld2541152009-07-08 19:23:54 +0000194 if (!ForwardRefMDNodes.empty())
195 return Error(ForwardRefMDNodes.begin()->second.second,
196 "use of undefined metadata '!" +
Benjamin Kramerc7583112010-09-27 17:42:11 +0000197 Twine(ForwardRefMDNodes.begin()->first) + "'");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000198
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000199 // Resolve metadata cycles.
David Majnemer19b51052015-02-11 07:43:56 +0000200 for (auto &N : NumberedMetadata) {
201 if (N.second && !N.second->isResolved())
202 N.second->resolveCycles();
203 }
Devang Pateld2541152009-07-08 19:23:54 +0000204
Duncan P. N. Exon Smith29883862016-04-06 02:06:40 +0000205 for (unsigned I = 0, E = InstsWithTBAATag.size(); I < E; I++)
206 UpgradeInstWithTBAATag(InstsWithTBAATag[I]);
207
Chris Lattnerac161bf2009-01-02 07:01:27 +0000208 // Look for intrinsic functions and CallInst that need to be upgraded
209 for (Module::iterator FI = M->begin(), FE = M->end(); FI != FE; )
Duncan P. N. Exon Smithac331fb2015-10-20 01:12:49 +0000210 UpgradeCallsToIntrinsic(&*FI++); // must be post-increment, as we remove
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000211
Manman Ren8b4306c2013-12-02 21:29:56 +0000212 UpgradeDebugInfo(*M);
213
Alex Lorenz8955f7d2015-06-23 17:10:10 +0000214 if (!Slots)
215 return false;
216 // Initialize the slot mapping.
217 // Because by this point we've parsed and validated everything, we can "steal"
218 // the mapping from LLParser as it doesn't need it anymore.
219 Slots->GlobalValues = std::move(NumberedVals);
220 Slots->MetadataNodes = std::move(NumberedMetadata);
Alex Lorenz1de2acd2015-08-21 21:32:39 +0000221 for (const auto &I : NamedTypes)
222 Slots->NamedTypes.insert(std::make_pair(I.getKey(), I.second.first));
223 for (const auto &I : NumberedTypes)
224 Slots->Types.insert(std::make_pair(I.first, I.second.first));
Alex Lorenz8955f7d2015-06-23 17:10:10 +0000225
Chris Lattnerac161bf2009-01-02 07:01:27 +0000226 return false;
227}
228
229//===----------------------------------------------------------------------===//
230// Top-Level Entities
231//===----------------------------------------------------------------------===//
232
233bool LLParser::ParseTopLevelEntities() {
Chris Lattnerac161bf2009-01-02 07:01:27 +0000234 while (1) {
235 switch (Lex.getKind()) {
236 default: return TokError("expected top-level entity");
237 case lltok::Eof: return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000238 case lltok::kw_declare: if (ParseDeclare()) return true; break;
239 case lltok::kw_define: if (ParseDefine()) return true; break;
240 case lltok::kw_module: if (ParseModuleAsm()) return true; break;
241 case lltok::kw_target: if (ParseTargetDefinition()) return true; break;
Teresa Johnson83c517c2016-03-30 18:15:08 +0000242 case lltok::kw_source_filename:
243 if (ParseSourceFileName())
244 return true;
245 break;
Bill Wendling706d3d62012-11-28 08:41:48 +0000246 case lltok::kw_deplibs: if (ParseDepLibs()) return true; break;
Dan Gohman466876b2009-08-12 23:32:33 +0000247 case lltok::LocalVarID: if (ParseUnnamedType()) return true; break;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000248 case lltok::LocalVar: if (ParseNamedType()) return true; break;
Dan Gohman466876b2009-08-12 23:32:33 +0000249 case lltok::GlobalID: if (ParseUnnamedGlobal()) return true; break;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000250 case lltok::GlobalVar: if (ParseNamedGlobal()) return true; break;
David Majnemerdad0a642014-06-27 18:19:56 +0000251 case lltok::ComdatVar: if (parseComdat()) return true; break;
Chris Lattner1eed2d62009-12-30 04:56:59 +0000252 case lltok::exclaim: if (ParseStandaloneMetadata()) return true; break;
Bill Wendling63b88192013-02-06 06:52:58 +0000253 case lltok::MetadataVar:if (ParseNamedMetadata()) return true; break;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000254
255 // The Global variable production with no name can have many different
256 // optional leading prefixes, the production is:
Nico Rieck7157bb72014-01-14 15:22:47 +0000257 // GlobalVar ::= OptionalLinkage OptionalVisibility OptionalDLLStorageClass
Eric Christopher536f0a92015-05-28 23:07:39 +0000258 // OptionalThreadLocal OptionalAddrSpace OptionalUnnamedAddr
Rafael Espindola45e6c192011-01-08 16:42:36 +0000259 // ('constant'|'global') ...
Bill Wendling03bcd6e2010-07-01 21:55:59 +0000260 case lltok::kw_private: // OptionalLinkage
Bill Wendling03bcd6e2010-07-01 21:55:59 +0000261 case lltok::kw_internal: // OptionalLinkage
262 case lltok::kw_weak: // OptionalLinkage
263 case lltok::kw_weak_odr: // OptionalLinkage
264 case lltok::kw_linkonce: // OptionalLinkage
265 case lltok::kw_linkonce_odr: // OptionalLinkage
266 case lltok::kw_appending: // OptionalLinkage
Bill Wendling03bcd6e2010-07-01 21:55:59 +0000267 case lltok::kw_common: // OptionalLinkage
Bill Wendling03bcd6e2010-07-01 21:55:59 +0000268 case lltok::kw_extern_weak: // OptionalLinkage
Rafael Espindola52b74422014-06-03 20:00:20 +0000269 case lltok::kw_external: // OptionalLinkage
270 case lltok::kw_default: // OptionalVisibility
271 case lltok::kw_hidden: // OptionalVisibility
272 case lltok::kw_protected: // OptionalVisibility
Rafael Espindola63e92fb2014-06-03 20:07:32 +0000273 case lltok::kw_dllimport: // OptionalDLLStorageClass
274 case lltok::kw_dllexport: // OptionalDLLStorageClass
Rafael Espindola52b74422014-06-03 20:00:20 +0000275 case lltok::kw_thread_local: // OptionalThreadLocal
276 case lltok::kw_addrspace: // OptionalAddrSpace
277 case lltok::kw_constant: // GlobalType
278 case lltok::kw_global: { // GlobalType
Nico Rieck7157bb72014-01-14 15:22:47 +0000279 unsigned Linkage, Visibility, DLLStorageClass;
Rafael Espindola42a4c9f2014-06-06 01:20:28 +0000280 bool UnnamedAddr;
Rafael Espindola59f7eba2014-05-28 18:15:43 +0000281 GlobalVariable::ThreadLocalMode TLM;
Rafael Espindola52b74422014-06-03 20:00:20 +0000282 bool HasLinkage;
283 if (ParseOptionalLinkage(Linkage, HasLinkage) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +0000284 ParseOptionalVisibility(Visibility) ||
Nico Rieck7157bb72014-01-14 15:22:47 +0000285 ParseOptionalDLLStorageClass(DLLStorageClass) ||
Rafael Espindola59f7eba2014-05-28 18:15:43 +0000286 ParseOptionalThreadLocal(TLM) ||
Rafael Espindola42a4c9f2014-06-06 01:20:28 +0000287 parseOptionalUnnamedAddr(UnnamedAddr) ||
Rafael Espindola52b74422014-06-03 20:00:20 +0000288 ParseGlobal("", SMLoc(), Linkage, HasLinkage, Visibility,
Rafael Espindola42a4c9f2014-06-06 01:20:28 +0000289 DLLStorageClass, TLM, UnnamedAddr))
Chris Lattnerac161bf2009-01-02 07:01:27 +0000290 return true;
291 break;
292 }
Bill Wendlinga7c38772013-02-09 15:48:49 +0000293
294 case lltok::kw_attributes: if (ParseUnnamedAttrGrp()) return true; break;
Duncan P. N. Exon Smith0a448fb2014-08-19 21:30:15 +0000295 case lltok::kw_uselistorder: if (ParseUseListOrder()) return true; break;
296 case lltok::kw_uselistorder_bb:
297 if (ParseUseListOrderBB()) return true; break;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000298 }
299 }
300}
301
302
303/// toplevelentity
304/// ::= 'module' 'asm' STRINGCONSTANT
305bool LLParser::ParseModuleAsm() {
306 assert(Lex.getKind() == lltok::kw_module);
307 Lex.Lex();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000308
309 std::string AsmStr;
Chris Lattner3822f632009-01-02 08:05:26 +0000310 if (ParseToken(lltok::kw_asm, "expected 'module asm'") ||
311 ParseStringConstant(AsmStr)) return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000312
Rafael Espindola1e49a6d2011-03-02 04:14:42 +0000313 M->appendModuleInlineAsm(AsmStr);
Chris Lattnerac161bf2009-01-02 07:01:27 +0000314 return false;
315}
316
317/// toplevelentity
318/// ::= 'target' 'triple' '=' STRINGCONSTANT
319/// ::= 'target' 'datalayout' '=' STRINGCONSTANT
320bool LLParser::ParseTargetDefinition() {
321 assert(Lex.getKind() == lltok::kw_target);
Chris Lattner3822f632009-01-02 08:05:26 +0000322 std::string Str;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000323 switch (Lex.Lex()) {
324 default: return TokError("unknown target property");
325 case lltok::kw_triple:
326 Lex.Lex();
Chris Lattner3822f632009-01-02 08:05:26 +0000327 if (ParseToken(lltok::equal, "expected '=' after target triple") ||
328 ParseStringConstant(Str))
Chris Lattnerac161bf2009-01-02 07:01:27 +0000329 return true;
Chris Lattner3822f632009-01-02 08:05:26 +0000330 M->setTargetTriple(Str);
Chris Lattnerac161bf2009-01-02 07:01:27 +0000331 return false;
332 case lltok::kw_datalayout:
333 Lex.Lex();
Chris Lattner3822f632009-01-02 08:05:26 +0000334 if (ParseToken(lltok::equal, "expected '=' after target datalayout") ||
335 ParseStringConstant(Str))
Chris Lattnerac161bf2009-01-02 07:01:27 +0000336 return true;
Chris Lattner3822f632009-01-02 08:05:26 +0000337 M->setDataLayout(Str);
Chris Lattnerac161bf2009-01-02 07:01:27 +0000338 return false;
339 }
340}
341
Bill Wendling706d3d62012-11-28 08:41:48 +0000342/// toplevelentity
Teresa Johnson83c517c2016-03-30 18:15:08 +0000343/// ::= 'source_filename' '=' STRINGCONSTANT
344bool LLParser::ParseSourceFileName() {
345 assert(Lex.getKind() == lltok::kw_source_filename);
346 std::string Str;
347 Lex.Lex();
348 if (ParseToken(lltok::equal, "expected '=' after source_filename") ||
349 ParseStringConstant(Str))
350 return true;
351 M->setSourceFileName(Str);
352 return false;
353}
354
355/// toplevelentity
Bill Wendling706d3d62012-11-28 08:41:48 +0000356/// ::= 'deplibs' '=' '[' ']'
357/// ::= 'deplibs' '=' '[' STRINGCONSTANT (',' STRINGCONSTANT)* ']'
358/// FIXME: Remove in 4.0. Currently parse, but ignore.
359bool LLParser::ParseDepLibs() {
360 assert(Lex.getKind() == lltok::kw_deplibs);
361 Lex.Lex();
362 if (ParseToken(lltok::equal, "expected '=' after deplibs") ||
363 ParseToken(lltok::lsquare, "expected '=' after deplibs"))
364 return true;
365
366 if (EatIfPresent(lltok::rsquare))
367 return false;
368
369 do {
370 std::string Str;
371 if (ParseStringConstant(Str)) return true;
372 } while (EatIfPresent(lltok::comma));
373
374 return ParseToken(lltok::rsquare, "expected ']' at end of list");
375}
376
Dan Gohman466876b2009-08-12 23:32:33 +0000377/// ParseUnnamedType:
Dan Gohman466876b2009-08-12 23:32:33 +0000378/// ::= LocalVarID '=' 'type' type
Chris Lattnerac161bf2009-01-02 07:01:27 +0000379bool LLParser::ParseUnnamedType() {
Chris Lattner07037362011-06-18 23:51:31 +0000380 LocTy TypeLoc = Lex.getLoc();
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000381 unsigned TypeID = Lex.getUIntVal();
Chris Lattner8936d2b2011-06-19 00:03:46 +0000382 Lex.Lex(); // eat LocalVarID;
383
384 if (ParseToken(lltok::equal, "expected '=' after name") ||
385 ParseToken(lltok::kw_type, "expected 'type' after '='"))
386 return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000387
Craig Topper2617dcc2014-04-15 06:32:26 +0000388 Type *Result = nullptr;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000389 if (ParseStructDefinition(TypeLoc, "",
390 NumberedTypes[TypeID], Result)) return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +0000391
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000392 if (!isa<StructType>(Result)) {
393 std::pair<Type*, LocTy> &Entry = NumberedTypes[TypeID];
394 if (Entry.first)
395 return Error(TypeLoc, "non-struct types may not be recursive");
396 Entry.first = Result;
397 Entry.second = SMLoc();
Chris Lattnerac161bf2009-01-02 07:01:27 +0000398 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000399
Chris Lattnerac161bf2009-01-02 07:01:27 +0000400 return false;
401}
402
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000403
Chris Lattnerac161bf2009-01-02 07:01:27 +0000404/// toplevelentity
405/// ::= LocalVar '=' 'type' type
406bool LLParser::ParseNamedType() {
407 std::string Name = Lex.getStrVal();
408 LocTy NameLoc = Lex.getLoc();
Chris Lattner3822f632009-01-02 08:05:26 +0000409 Lex.Lex(); // eat LocalVar.
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000410
Chris Lattner3822f632009-01-02 08:05:26 +0000411 if (ParseToken(lltok::equal, "expected '=' after name") ||
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000412 ParseToken(lltok::kw_type, "expected 'type' after name"))
Chris Lattner3822f632009-01-02 08:05:26 +0000413 return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +0000414
Craig Topper2617dcc2014-04-15 06:32:26 +0000415 Type *Result = nullptr;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000416 if (ParseStructDefinition(NameLoc, Name,
417 NamedTypes[Name], Result)) return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +0000418
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000419 if (!isa<StructType>(Result)) {
420 std::pair<Type*, LocTy> &Entry = NamedTypes[Name];
421 if (Entry.first)
422 return Error(NameLoc, "non-struct types may not be recursive");
423 Entry.first = Result;
424 Entry.second = SMLoc();
Chris Lattnerac161bf2009-01-02 07:01:27 +0000425 }
Michael Ilseman26ee2b82012-11-15 22:34:00 +0000426
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000427 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000428}
429
430
431/// toplevelentity
432/// ::= 'declare' FunctionHeader
433bool LLParser::ParseDeclare() {
434 assert(Lex.getKind() == lltok::kw_declare);
435 Lex.Lex();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000436
Chris Lattnerac161bf2009-01-02 07:01:27 +0000437 Function *F;
438 return ParseFunctionHeader(F, false);
439}
440
441/// toplevelentity
Duncan P. N. Exon Smith3d4cd752015-04-24 22:04:41 +0000442/// ::= 'define' FunctionHeader (!dbg !56)* '{' ...
Chris Lattnerac161bf2009-01-02 07:01:27 +0000443bool LLParser::ParseDefine() {
444 assert(Lex.getKind() == lltok::kw_define);
445 Lex.Lex();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000446
Chris Lattnerac161bf2009-01-02 07:01:27 +0000447 Function *F;
Chris Lattner3822f632009-01-02 08:05:26 +0000448 return ParseFunctionHeader(F, true) ||
Duncan P. N. Exon Smith3d4cd752015-04-24 22:04:41 +0000449 ParseOptionalFunctionMetadata(*F) ||
Chris Lattner3822f632009-01-02 08:05:26 +0000450 ParseFunctionBody(*F);
Chris Lattnerac161bf2009-01-02 07:01:27 +0000451}
452
Chris Lattner3822f632009-01-02 08:05:26 +0000453/// ParseGlobalType
454/// ::= 'constant'
455/// ::= 'global'
Chris Lattnerac161bf2009-01-02 07:01:27 +0000456bool LLParser::ParseGlobalType(bool &IsConstant) {
457 if (Lex.getKind() == lltok::kw_constant)
458 IsConstant = true;
459 else if (Lex.getKind() == lltok::kw_global)
460 IsConstant = false;
Duncan Sandsd1de45a2009-02-10 16:24:55 +0000461 else {
462 IsConstant = false;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000463 return TokError("expected 'global' or 'constant'");
Duncan Sandsd1de45a2009-02-10 16:24:55 +0000464 }
Chris Lattnerac161bf2009-01-02 07:01:27 +0000465 Lex.Lex();
466 return false;
467}
468
Dan Gohman466876b2009-08-12 23:32:33 +0000469/// ParseUnnamedGlobal:
470/// OptionalVisibility ALIAS ...
Nico Rieck7157bb72014-01-14 15:22:47 +0000471/// OptionalLinkage OptionalVisibility OptionalDLLStorageClass
472/// ... -> global variable
Dan Gohman466876b2009-08-12 23:32:33 +0000473/// GlobalID '=' OptionalVisibility ALIAS ...
Nico Rieck7157bb72014-01-14 15:22:47 +0000474/// GlobalID '=' OptionalLinkage OptionalVisibility OptionalDLLStorageClass
475/// ... -> global variable
Dan Gohman466876b2009-08-12 23:32:33 +0000476bool LLParser::ParseUnnamedGlobal() {
477 unsigned VarID = NumberedVals.size();
478 std::string Name;
479 LocTy NameLoc = Lex.getLoc();
480
481 // Handle the GlobalID form.
482 if (Lex.getKind() == lltok::GlobalID) {
483 if (Lex.getUIntVal() != VarID)
484 return Error(Lex.getLoc(), "variable expected to be numbered '%" +
Benjamin Kramerc7583112010-09-27 17:42:11 +0000485 Twine(VarID) + "'");
Dan Gohman466876b2009-08-12 23:32:33 +0000486 Lex.Lex(); // eat GlobalID;
487
488 if (ParseToken(lltok::equal, "expected '=' after name"))
489 return true;
490 }
491
492 bool HasLinkage;
Nico Rieck7157bb72014-01-14 15:22:47 +0000493 unsigned Linkage, Visibility, DLLStorageClass;
Rafael Espindola59f7eba2014-05-28 18:15:43 +0000494 GlobalVariable::ThreadLocalMode TLM;
Rafael Espindola42a4c9f2014-06-06 01:20:28 +0000495 bool UnnamedAddr;
Dan Gohman466876b2009-08-12 23:32:33 +0000496 if (ParseOptionalLinkage(Linkage, HasLinkage) ||
Nico Rieck7157bb72014-01-14 15:22:47 +0000497 ParseOptionalVisibility(Visibility) ||
Rafael Espindola59f7eba2014-05-28 18:15:43 +0000498 ParseOptionalDLLStorageClass(DLLStorageClass) ||
Rafael Espindola42a4c9f2014-06-06 01:20:28 +0000499 ParseOptionalThreadLocal(TLM) ||
500 parseOptionalUnnamedAddr(UnnamedAddr))
Dan Gohman466876b2009-08-12 23:32:33 +0000501 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000502
Rafael Espindola464fe022014-07-30 22:51:54 +0000503 if (Lex.getKind() != lltok::kw_alias)
Nico Rieck7157bb72014-01-14 15:22:47 +0000504 return ParseGlobal(Name, NameLoc, Linkage, HasLinkage, Visibility,
Rafael Espindola42a4c9f2014-06-06 01:20:28 +0000505 DLLStorageClass, TLM, UnnamedAddr);
Dmitry Polukhina3d5b0b2016-04-05 08:47:51 +0000506
507 return parseIndirectSymbol(Name, NameLoc, Linkage, Visibility,
508 DLLStorageClass, TLM, UnnamedAddr);
Dan Gohman466876b2009-08-12 23:32:33 +0000509}
510
Chris Lattnerac161bf2009-01-02 07:01:27 +0000511/// ParseNamedGlobal:
512/// GlobalVar '=' OptionalVisibility ALIAS ...
Nico Rieck7157bb72014-01-14 15:22:47 +0000513/// GlobalVar '=' OptionalLinkage OptionalVisibility OptionalDLLStorageClass
514/// ... -> global variable
Chris Lattnerac161bf2009-01-02 07:01:27 +0000515bool LLParser::ParseNamedGlobal() {
516 assert(Lex.getKind() == lltok::GlobalVar);
517 LocTy NameLoc = Lex.getLoc();
518 std::string Name = Lex.getStrVal();
519 Lex.Lex();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000520
Chris Lattnerac161bf2009-01-02 07:01:27 +0000521 bool HasLinkage;
Nico Rieck7157bb72014-01-14 15:22:47 +0000522 unsigned Linkage, Visibility, DLLStorageClass;
Rafael Espindola59f7eba2014-05-28 18:15:43 +0000523 GlobalVariable::ThreadLocalMode TLM;
Rafael Espindola42a4c9f2014-06-06 01:20:28 +0000524 bool UnnamedAddr;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000525 if (ParseToken(lltok::equal, "expected '=' in global variable") ||
526 ParseOptionalLinkage(Linkage, HasLinkage) ||
Nico Rieck7157bb72014-01-14 15:22:47 +0000527 ParseOptionalVisibility(Visibility) ||
Rafael Espindola59f7eba2014-05-28 18:15:43 +0000528 ParseOptionalDLLStorageClass(DLLStorageClass) ||
Rafael Espindola42a4c9f2014-06-06 01:20:28 +0000529 ParseOptionalThreadLocal(TLM) ||
530 parseOptionalUnnamedAddr(UnnamedAddr))
Chris Lattnerac161bf2009-01-02 07:01:27 +0000531 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000532
Rafael Espindola464fe022014-07-30 22:51:54 +0000533 if (Lex.getKind() != lltok::kw_alias)
Nico Rieck7157bb72014-01-14 15:22:47 +0000534 return ParseGlobal(Name, NameLoc, Linkage, HasLinkage, Visibility,
Rafael Espindola42a4c9f2014-06-06 01:20:28 +0000535 DLLStorageClass, TLM, UnnamedAddr);
Rafael Espindola464fe022014-07-30 22:51:54 +0000536
Dmitry Polukhina3d5b0b2016-04-05 08:47:51 +0000537 return parseIndirectSymbol(Name, NameLoc, Linkage, Visibility,
538 DLLStorageClass, TLM, UnnamedAddr);
Chris Lattnerac161bf2009-01-02 07:01:27 +0000539}
540
David Majnemerdad0a642014-06-27 18:19:56 +0000541bool LLParser::parseComdat() {
542 assert(Lex.getKind() == lltok::ComdatVar);
543 std::string Name = Lex.getStrVal();
544 LocTy NameLoc = Lex.getLoc();
545 Lex.Lex();
546
547 if (ParseToken(lltok::equal, "expected '=' here"))
548 return true;
549
550 if (ParseToken(lltok::kw_comdat, "expected comdat keyword"))
551 return TokError("expected comdat type");
552
553 Comdat::SelectionKind SK;
554 switch (Lex.getKind()) {
555 default:
556 return TokError("unknown selection kind");
557 case lltok::kw_any:
558 SK = Comdat::Any;
559 break;
560 case lltok::kw_exactmatch:
561 SK = Comdat::ExactMatch;
562 break;
563 case lltok::kw_largest:
564 SK = Comdat::Largest;
565 break;
566 case lltok::kw_noduplicates:
567 SK = Comdat::NoDuplicates;
568 break;
569 case lltok::kw_samesize:
570 SK = Comdat::SameSize;
571 break;
572 }
573 Lex.Lex();
574
575 // See if the comdat was forward referenced, if so, use the comdat.
576 Module::ComdatSymTabType &ComdatSymTab = M->getComdatSymbolTable();
577 Module::ComdatSymTabType::iterator I = ComdatSymTab.find(Name);
578 if (I != ComdatSymTab.end() && !ForwardRefComdats.erase(Name))
579 return Error(NameLoc, "redefinition of comdat '$" + Name + "'");
580
581 Comdat *C;
582 if (I != ComdatSymTab.end())
583 C = &I->second;
584 else
585 C = M->getOrInsertComdat(Name);
586 C->setSelectionKind(SK);
587
588 return false;
589}
590
Devang Patel8ff0f8d2009-07-20 19:00:08 +0000591// MDString:
592// ::= '!' STRINGCONSTANT
Chris Lattner1797fc72009-12-29 21:53:55 +0000593bool LLParser::ParseMDString(MDString *&Result) {
Devang Patel8ff0f8d2009-07-20 19:00:08 +0000594 std::string Str;
595 if (ParseStringConstant(Str)) return true;
Chris Lattner1797fc72009-12-29 21:53:55 +0000596 Result = MDString::get(Context, Str);
Devang Patel8ff0f8d2009-07-20 19:00:08 +0000597 return false;
598}
599
600// MDNode:
601// ::= '!' MDNodeNumber
Chris Lattner6dac02a2009-12-30 04:15:23 +0000602bool LLParser::ParseMDNodeID(MDNode *&Result) {
Devang Patel8ff0f8d2009-07-20 19:00:08 +0000603 // !{ ..., !42, ... }
Duncan P. N. Exon Smith29883862016-04-06 02:06:40 +0000604 LocTy IDLoc = Lex.getLoc();
Devang Patel8ff0f8d2009-07-20 19:00:08 +0000605 unsigned MID = 0;
Duncan P. N. Exon Smitha8d9a022015-01-12 21:14:38 +0000606 if (ParseUInt32(MID))
607 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000608
Chris Lattner8eff0152010-04-01 05:14:45 +0000609 // If not a forward reference, just return it now.
David Majnemer19b51052015-02-11 07:43:56 +0000610 if (NumberedMetadata.count(MID)) {
Duncan P. N. Exon Smitha8d9a022015-01-12 21:14:38 +0000611 Result = NumberedMetadata[MID];
612 return false;
613 }
Devang Patel8ff0f8d2009-07-20 19:00:08 +0000614
Chris Lattner8eff0152010-04-01 05:14:45 +0000615 // Otherwise, create MDNode forward reference.
Duncan P. N. Exon Smith7d823132015-01-19 21:30:18 +0000616 auto &FwdRef = ForwardRefMDNodes[MID];
Duncan P. N. Exon Smith29883862016-04-06 02:06:40 +0000617 FwdRef = std::make_pair(MDTuple::getTemporary(Context, None), IDLoc);
Michael Ilseman26ee2b82012-11-15 22:34:00 +0000618
Duncan P. N. Exon Smith7d823132015-01-19 21:30:18 +0000619 Result = FwdRef.first.get();
620 NumberedMetadata[MID].reset(Result);
Devang Patel8ff0f8d2009-07-20 19:00:08 +0000621 return false;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000622}
Devang Patel8ff0f8d2009-07-20 19:00:08 +0000623
Chris Lattnerf2fe7ff2009-12-29 22:35:39 +0000624/// ParseNamedMetadata:
Devang Patelbe626972009-07-29 00:34:02 +0000625/// !foo = !{ !1, !2 }
626bool LLParser::ParseNamedMetadata() {
Chris Lattnereafe4de2009-12-30 05:02:06 +0000627 assert(Lex.getKind() == lltok::MetadataVar);
Devang Patelbe626972009-07-29 00:34:02 +0000628 std::string Name = Lex.getStrVal();
Chris Lattnereafe4de2009-12-30 05:02:06 +0000629 Lex.Lex();
Devang Patelbe626972009-07-29 00:34:02 +0000630
Chris Lattnerf2fe7ff2009-12-29 22:35:39 +0000631 if (ParseToken(lltok::equal, "expected '=' here") ||
Chris Lattner1eed2d62009-12-30 04:56:59 +0000632 ParseToken(lltok::exclaim, "Expected '!' here") ||
Chris Lattnerf2fe7ff2009-12-29 22:35:39 +0000633 ParseToken(lltok::lbrace, "Expected '{' here"))
Devang Patelbe626972009-07-29 00:34:02 +0000634 return true;
635
Dan Gohman2637cc12010-07-21 23:38:33 +0000636 NamedMDNode *NMD = M->getOrInsertNamedMetadata(Name);
Dan Gohmanafd69cf2010-07-13 19:42:44 +0000637 if (Lex.getKind() != lltok::rbrace)
638 do {
Dan Gohmanafd69cf2010-07-13 19:42:44 +0000639 if (ParseToken(lltok::exclaim, "Expected '!' here"))
640 return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +0000641
Craig Topper2617dcc2014-04-15 06:32:26 +0000642 MDNode *N = nullptr;
Dan Gohmanafd69cf2010-07-13 19:42:44 +0000643 if (ParseMDNodeID(N)) return true;
Dan Gohman2637cc12010-07-21 23:38:33 +0000644 NMD->addOperand(N);
Dan Gohmanafd69cf2010-07-13 19:42:44 +0000645 } while (EatIfPresent(lltok::comma));
Devang Patelbe626972009-07-29 00:34:02 +0000646
Rafael Espindolac7818fb2015-05-26 20:37:36 +0000647 return ParseToken(lltok::rbrace, "expected end of metadata node");
Devang Patelbe626972009-07-29 00:34:02 +0000648}
649
Devang Patel39e64d42009-07-01 19:21:12 +0000650/// ParseStandaloneMetadata:
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000651/// !42 = !{...}
Devang Patel39e64d42009-07-01 19:21:12 +0000652bool LLParser::ParseStandaloneMetadata() {
Chris Lattner1eed2d62009-12-30 04:56:59 +0000653 assert(Lex.getKind() == lltok::exclaim);
Devang Patel39e64d42009-07-01 19:21:12 +0000654 Lex.Lex();
655 unsigned MetadataID = 0;
Devang Patel39e64d42009-07-01 19:21:12 +0000656
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000657 MDNode *Init;
Chris Lattner278bc952009-12-29 22:40:21 +0000658 if (ParseUInt32(MetadataID) ||
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +0000659 ParseToken(lltok::equal, "expected '=' here"))
660 return true;
661
662 // Detect common error, from old metadata syntax.
663 if (Lex.getKind() == lltok::Type)
664 return TokError("unexpected type in metadata definition");
665
Duncan P. N. Exon Smith090a19b2015-01-08 22:38:29 +0000666 bool IsDistinct = EatIfPresent(lltok::kw_distinct);
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +0000667 if (Lex.getKind() == lltok::MetadataVar) {
668 if (ParseSpecializedMDNode(Init, IsDistinct))
669 return true;
670 } else if (ParseToken(lltok::exclaim, "Expected '!' here") ||
671 ParseMDTuple(Init, IsDistinct))
Devang Patele059ba6e2009-07-23 01:07:34 +0000672 return true;
673
Chris Lattnerfc58af22009-12-30 04:51:58 +0000674 // See if this was forward referenced, if so, handle it.
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000675 auto FI = ForwardRefMDNodes.find(MetadataID);
Devang Pateld2541152009-07-08 19:23:54 +0000676 if (FI != ForwardRefMDNodes.end()) {
Duncan P. N. Exon Smith7d823132015-01-19 21:30:18 +0000677 FI->second.first->replaceAllUsesWith(Init);
Devang Pateld2541152009-07-08 19:23:54 +0000678 ForwardRefMDNodes.erase(FI);
Michael Ilseman26ee2b82012-11-15 22:34:00 +0000679
Chris Lattnerfc58af22009-12-30 04:51:58 +0000680 assert(NumberedMetadata[MetadataID] == Init && "Tracking VH didn't work");
681 } else {
David Majnemer19b51052015-02-11 07:43:56 +0000682 if (NumberedMetadata.count(MetadataID))
Chris Lattnerfc58af22009-12-30 04:51:58 +0000683 return TokError("Metadata id is already used");
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000684 NumberedMetadata[MetadataID].reset(Init);
Devang Pateld2541152009-07-08 19:23:54 +0000685 }
686
Devang Patel39e64d42009-07-01 19:21:12 +0000687 return false;
688}
689
Duncan P. N. Exon Smithb80de102014-05-07 22:57:20 +0000690static bool isValidVisibilityForLinkage(unsigned V, unsigned L) {
691 return !GlobalValue::isLocalLinkage((GlobalValue::LinkageTypes)L) ||
692 (GlobalValue::VisibilityTypes)V == GlobalValue::DefaultVisibility;
693}
694
Dmitry Polukhina3d5b0b2016-04-05 08:47:51 +0000695/// parseIndirectSymbol:
Rafael Espindola464fe022014-07-30 22:51:54 +0000696/// ::= GlobalVar '=' OptionalLinkage OptionalVisibility
697/// OptionalDLLStorageClass OptionalThreadLocal
Dmitry Polukhina3d5b0b2016-04-05 08:47:51 +0000698/// OptionalUnnamedAddr 'alias' IndirectSymbol
Rafael Espindola6b238632014-05-16 19:35:39 +0000699///
Dmitry Polukhina3d5b0b2016-04-05 08:47:51 +0000700/// IndirectSymbol
Chris Lattner4c73d7a2009-04-25 21:26:00 +0000701/// ::= TypeAndValue
Chris Lattnerac161bf2009-01-02 07:01:27 +0000702///
Eric Christopher536f0a92015-05-28 23:07:39 +0000703/// Everything through OptionalUnnamedAddr has already been parsed.
Chris Lattnerac161bf2009-01-02 07:01:27 +0000704///
Dmitry Polukhina3d5b0b2016-04-05 08:47:51 +0000705bool LLParser::parseIndirectSymbol(const std::string &Name, LocTy NameLoc,
706 unsigned L, unsigned Visibility,
707 unsigned DLLStorageClass,
708 GlobalVariable::ThreadLocalMode TLM,
709 bool UnnamedAddr) {
710 bool IsAlias;
711 if (Lex.getKind() == lltok::kw_alias)
712 IsAlias = true;
713 else
714 llvm_unreachable("Not an alias!");
Chris Lattnerac161bf2009-01-02 07:01:27 +0000715 Lex.Lex();
Chris Lattnerac161bf2009-01-02 07:01:27 +0000716
Rafael Espindola78527052013-10-06 15:10:43 +0000717 GlobalValue::LinkageTypes Linkage = (GlobalValue::LinkageTypes) L;
718
Dmitry Polukhina3d5b0b2016-04-05 08:47:51 +0000719 if(IsAlias && !GlobalAlias::isValidLinkage(Linkage))
Rafael Espindola464fe022014-07-30 22:51:54 +0000720 return Error(NameLoc, "invalid linkage type for alias");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000721
Duncan P. N. Exon Smithb80de102014-05-07 22:57:20 +0000722 if (!isValidVisibilityForLinkage(Visibility, L))
Rafael Espindola464fe022014-07-30 22:51:54 +0000723 return Error(NameLoc,
Duncan P. N. Exon Smithb80de102014-05-07 22:57:20 +0000724 "symbol with local linkage must have default visibility");
725
David Blaikie2f408302015-09-11 03:22:04 +0000726 Type *Ty;
727 LocTy ExplicitTypeLoc = Lex.getLoc();
728 if (ParseType(Ty) ||
729 ParseToken(lltok::comma, "expected comma after alias's type"))
730 return true;
731
Rafael Espindola64c1e182014-06-03 02:41:57 +0000732 Constant *Aliasee;
733 LocTy AliaseeLoc = Lex.getLoc();
734 if (Lex.getKind() != lltok::kw_bitcast &&
735 Lex.getKind() != lltok::kw_getelementptr &&
736 Lex.getKind() != lltok::kw_addrspacecast &&
737 Lex.getKind() != lltok::kw_inttoptr) {
738 if (ParseGlobalTypeAndValue(Aliasee))
Rafael Espindola6b238632014-05-16 19:35:39 +0000739 return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000740 } else {
Rafael Espindola64c1e182014-06-03 02:41:57 +0000741 // The bitcast dest type is not present, it is implied by the dest type.
742 ValID ID;
743 if (ParseValID(ID))
744 return true;
745 if (ID.Kind != ValID::t_Constant)
746 return Error(AliaseeLoc, "invalid aliasee");
747 Aliasee = ID.ConstantVal;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000748 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000749
Rafael Espindola64c1e182014-06-03 02:41:57 +0000750 Type *AliaseeType = Aliasee->getType();
751 auto *PTy = dyn_cast<PointerType>(AliaseeType);
752 if (!PTy)
753 return Error(AliaseeLoc, "An alias must have pointer type");
David Blaikie16a2f3e2015-09-14 18:01:59 +0000754 unsigned AddrSpace = PTy->getAddressSpace();
Chris Lattnerac161bf2009-01-02 07:01:27 +0000755
Dmitry Polukhina3d5b0b2016-04-05 08:47:51 +0000756 if (IsAlias && Ty != PTy->getElementType())
David Blaikie2f408302015-09-11 03:22:04 +0000757 return Error(
758 ExplicitTypeLoc,
759 "explicit pointee type doesn't match operand's pointee type");
760
Dmitry Polukhina3d5b0b2016-04-05 08:47:51 +0000761 if (!IsAlias && !PTy->getElementType()->isFunctionTy())
762 return Error(
763 ExplicitTypeLoc,
764 "explicit pointee type should be a function type");
765
Peter Collingbourne463ff6d2015-11-25 02:54:07 +0000766 GlobalValue *GVal = nullptr;
767
768 // See if the alias was forward referenced, if so, prepare to replace the
769 // forward reference.
770 if (!Name.empty()) {
771 GVal = M->getNamedValue(Name);
772 if (GVal) {
773 if (!ForwardRefVals.erase(Name))
774 return Error(NameLoc, "redefinition of global '@" + Name + "'");
775 }
776 } else {
777 auto I = ForwardRefValIDs.find(NumberedVals.size());
778 if (I != ForwardRefValIDs.end()) {
779 GVal = I->second.first;
780 ForwardRefValIDs.erase(I);
781 }
782 }
783
Chris Lattnerac161bf2009-01-02 07:01:27 +0000784 // Okay, create the alias but do not insert it into the module yet.
Dmitry Polukhina3d5b0b2016-04-05 08:47:51 +0000785 std::unique_ptr<GlobalIndirectSymbol> GA;
786 if (IsAlias)
787 GA.reset(GlobalAlias::create(Ty, AddrSpace,
788 (GlobalValue::LinkageTypes)Linkage, Name,
789 Aliasee, /*Parent*/ nullptr));
790 else
791 llvm_unreachable("Not an alias!");
Rafael Espindola59f7eba2014-05-28 18:15:43 +0000792 GA->setThreadLocalMode(TLM);
Chris Lattnerac161bf2009-01-02 07:01:27 +0000793 GA->setVisibility((GlobalValue::VisibilityTypes)Visibility);
Nico Rieck7157bb72014-01-14 15:22:47 +0000794 GA->setDLLStorageClass((GlobalValue::DLLStorageClassTypes)DLLStorageClass);
Rafael Espindola42a4c9f2014-06-06 01:20:28 +0000795 GA->setUnnamedAddr(UnnamedAddr);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000796
Rafael Espindola54fc2982015-06-17 17:53:31 +0000797 if (Name.empty())
798 NumberedVals.push_back(GA.get());
799
Peter Collingbourne463ff6d2015-11-25 02:54:07 +0000800 if (GVal) {
801 // Verify that types agree.
802 if (GVal->getType() != GA->getType())
803 return Error(
804 ExplicitTypeLoc,
805 "forward reference and definition of alias have different types");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000806
Chris Lattnerac161bf2009-01-02 07:01:27 +0000807 // If they agree, just RAUW the old value with the alias and remove the
808 // forward ref info.
Peter Collingbourne463ff6d2015-11-25 02:54:07 +0000809 GVal->replaceAllUsesWith(GA.get());
810 GVal->eraseFromParent();
Chris Lattnerac161bf2009-01-02 07:01:27 +0000811 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000812
Chris Lattnerac161bf2009-01-02 07:01:27 +0000813 // Insert into the module, we know its name won't collide now.
Dmitry Polukhina3d5b0b2016-04-05 08:47:51 +0000814 if (IsAlias)
815 M->getAliasList().push_back(cast<GlobalAlias>(GA.get()));
816 else
817 llvm_unreachable("Not an alias!");
Benjamin Kramer1dc34b42010-10-16 11:28:23 +0000818 assert(GA->getName() == Name && "Should not be a name conflict!");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000819
Rafael Espindolaaa273822014-05-09 21:49:17 +0000820 // The module owns this now
821 GA.release();
822
Chris Lattnerac161bf2009-01-02 07:01:27 +0000823 return false;
824}
825
826/// ParseGlobal
Nico Rieck7157bb72014-01-14 15:22:47 +0000827/// ::= GlobalVar '=' OptionalLinkage OptionalVisibility OptionalDLLStorageClass
Eric Christopher536f0a92015-05-28 23:07:39 +0000828/// OptionalThreadLocal OptionalUnnamedAddr OptionalAddrSpace
Michael Gottesman27e7ef32013-02-05 05:57:38 +0000829/// OptionalExternallyInitialized GlobalType Type Const
Nico Rieck7157bb72014-01-14 15:22:47 +0000830/// ::= OptionalLinkage OptionalVisibility OptionalDLLStorageClass
Eric Christopher536f0a92015-05-28 23:07:39 +0000831/// OptionalThreadLocal OptionalUnnamedAddr OptionalAddrSpace
Michael Gottesman27e7ef32013-02-05 05:57:38 +0000832/// OptionalExternallyInitialized GlobalType Type Const
Chris Lattnerac161bf2009-01-02 07:01:27 +0000833///
Eric Christopher536f0a92015-05-28 23:07:39 +0000834/// Everything up to and including OptionalUnnamedAddr has been parsed
David Majnemerc4ab61c2014-03-09 06:41:58 +0000835/// already.
Chris Lattnerac161bf2009-01-02 07:01:27 +0000836///
837bool LLParser::ParseGlobal(const std::string &Name, LocTy NameLoc,
838 unsigned Linkage, bool HasLinkage,
Rafael Espindola59f7eba2014-05-28 18:15:43 +0000839 unsigned Visibility, unsigned DLLStorageClass,
Rafael Espindola42a4c9f2014-06-06 01:20:28 +0000840 GlobalVariable::ThreadLocalMode TLM,
841 bool UnnamedAddr) {
Duncan P. N. Exon Smithb80de102014-05-07 22:57:20 +0000842 if (!isValidVisibilityForLinkage(Visibility, Linkage))
843 return Error(NameLoc,
844 "symbol with local linkage must have default visibility");
845
Chris Lattnerac161bf2009-01-02 07:01:27 +0000846 unsigned AddrSpace;
Rafael Espindola42a4c9f2014-06-06 01:20:28 +0000847 bool IsConstant, IsExternallyInitialized;
Michael Gottesman27e7ef32013-02-05 05:57:38 +0000848 LocTy IsExternallyInitializedLoc;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000849 LocTy TyLoc;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000850
Craig Topper2617dcc2014-04-15 06:32:26 +0000851 Type *Ty = nullptr;
Rafael Espindola59f7eba2014-05-28 18:15:43 +0000852 if (ParseOptionalAddrSpace(AddrSpace) ||
Michael Gottesman27e7ef32013-02-05 05:57:38 +0000853 ParseOptionalToken(lltok::kw_externally_initialized,
854 IsExternallyInitialized,
855 &IsExternallyInitializedLoc) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +0000856 ParseGlobalType(IsConstant) ||
857 ParseType(Ty, TyLoc))
858 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000859
Chris Lattnerac161bf2009-01-02 07:01:27 +0000860 // If the linkage is specified and is external, then no initializer is
861 // present.
Craig Topper2617dcc2014-04-15 06:32:26 +0000862 Constant *Init = nullptr;
Nico Rieck7157bb72014-01-14 15:22:47 +0000863 if (!HasLinkage || (Linkage != GlobalValue::ExternalWeakLinkage &&
Chris Lattnerac161bf2009-01-02 07:01:27 +0000864 Linkage != GlobalValue::ExternalLinkage)) {
865 if (ParseGlobalValue(Ty, Init))
866 return true;
867 }
868
David Majnemer49b3d9b2015-02-16 08:41:08 +0000869 if (Ty->isFunctionTy() || !PointerType::isValidElementType(Ty))
Chris Lattnerc9e1b482009-02-08 20:00:15 +0000870 return Error(TyLoc, "invalid type for global variable");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000871
David Majnemer598bd052014-12-09 05:56:09 +0000872 GlobalValue *GVal = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000873
874 // See if the global was forward referenced, if so, use the global.
Chris Lattner1f386b82009-02-02 07:24:28 +0000875 if (!Name.empty()) {
David Majnemer598bd052014-12-09 05:56:09 +0000876 GVal = M->getNamedValue(Name);
877 if (GVal) {
Peter Collingbourne463ff6d2015-11-25 02:54:07 +0000878 if (!ForwardRefVals.erase(Name))
Chris Lattnere38317f2009-10-25 23:22:50 +0000879 return Error(NameLoc, "redefinition of global '@" + Name + "'");
Chris Lattnere38317f2009-10-25 23:22:50 +0000880 }
Chris Lattnerac161bf2009-01-02 07:01:27 +0000881 } else {
David Blaikie9ebdc692015-09-21 21:07:50 +0000882 auto I = ForwardRefValIDs.find(NumberedVals.size());
Chris Lattnerac161bf2009-01-02 07:01:27 +0000883 if (I != ForwardRefValIDs.end()) {
David Majnemer598bd052014-12-09 05:56:09 +0000884 GVal = I->second.first;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000885 ForwardRefValIDs.erase(I);
886 }
887 }
888
David Majnemer598bd052014-12-09 05:56:09 +0000889 GlobalVariable *GV;
890 if (!GVal) {
Craig Topper2617dcc2014-04-15 06:32:26 +0000891 GV = new GlobalVariable(*M, Ty, false, GlobalValue::ExternalLinkage, nullptr,
892 Name, nullptr, GlobalVariable::NotThreadLocal,
Hans Wennborgcbe34b42012-06-23 11:37:03 +0000893 AddrSpace);
Chris Lattnerac161bf2009-01-02 07:01:27 +0000894 } else {
David Blaikie8f27ae42015-05-13 22:55:01 +0000895 if (GVal->getValueType() != Ty)
Chris Lattnerac161bf2009-01-02 07:01:27 +0000896 return Error(TyLoc,
897 "forward reference and definition of global have different types");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000898
David Majnemer598bd052014-12-09 05:56:09 +0000899 GV = cast<GlobalVariable>(GVal);
900
Chris Lattnerac161bf2009-01-02 07:01:27 +0000901 // Move the forward-reference to the correct spot in the module.
902 M->getGlobalList().splice(M->global_end(), M->getGlobalList(), GV);
903 }
904
905 if (Name.empty())
906 NumberedVals.push_back(GV);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000907
Chris Lattnerac161bf2009-01-02 07:01:27 +0000908 // Set the parsed properties on the global.
909 if (Init)
910 GV->setInitializer(Init);
911 GV->setConstant(IsConstant);
912 GV->setLinkage((GlobalValue::LinkageTypes)Linkage);
913 GV->setVisibility((GlobalValue::VisibilityTypes)Visibility);
Nico Rieck7157bb72014-01-14 15:22:47 +0000914 GV->setDLLStorageClass((GlobalValue::DLLStorageClassTypes)DLLStorageClass);
Michael Gottesman27e7ef32013-02-05 05:57:38 +0000915 GV->setExternallyInitialized(IsExternallyInitialized);
Hans Wennborgcbe34b42012-06-23 11:37:03 +0000916 GV->setThreadLocalMode(TLM);
Rafael Espindola45e6c192011-01-08 16:42:36 +0000917 GV->setUnnamedAddr(UnnamedAddr);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000918
Chris Lattnerac161bf2009-01-02 07:01:27 +0000919 // Parse attributes on the global.
920 while (Lex.getKind() == lltok::comma) {
921 Lex.Lex();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000922
Chris Lattnerac161bf2009-01-02 07:01:27 +0000923 if (Lex.getKind() == lltok::kw_section) {
924 Lex.Lex();
925 GV->setSection(Lex.getStrVal());
926 if (ParseToken(lltok::StringConstant, "expected global section string"))
927 return true;
928 } else if (Lex.getKind() == lltok::kw_align) {
929 unsigned Alignment;
930 if (ParseOptionalAlignment(Alignment)) return true;
931 GV->setAlignment(Alignment);
932 } else {
David Majnemerdad0a642014-06-27 18:19:56 +0000933 Comdat *C;
Rafael Espindola83a362c2015-01-06 22:55:16 +0000934 if (parseOptionalComdat(Name, C))
David Majnemerdad0a642014-06-27 18:19:56 +0000935 return true;
936 if (C)
937 GV->setComdat(C);
938 else
939 return TokError("unknown global variable property!");
Chris Lattnerac161bf2009-01-02 07:01:27 +0000940 }
941 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000942
Chris Lattnerac161bf2009-01-02 07:01:27 +0000943 return false;
944}
945
Bill Wendling63b88192013-02-06 06:52:58 +0000946/// ParseUnnamedAttrGrp
Bill Wendlinga7c38772013-02-09 15:48:49 +0000947/// ::= 'attributes' AttrGrpID '=' '{' AttrValPair+ '}'
Bill Wendling63b88192013-02-06 06:52:58 +0000948bool LLParser::ParseUnnamedAttrGrp() {
Bill Wendlinga7c38772013-02-09 15:48:49 +0000949 assert(Lex.getKind() == lltok::kw_attributes);
Bill Wendling63b88192013-02-06 06:52:58 +0000950 LocTy AttrGrpLoc = Lex.getLoc();
Bill Wendlinga7c38772013-02-09 15:48:49 +0000951 Lex.Lex();
952
David Majnemerb39e22b2014-12-09 18:33:57 +0000953 if (Lex.getKind() != lltok::AttrGrpID)
954 return TokError("expected attribute group id");
955
Bill Wendling63b88192013-02-06 06:52:58 +0000956 unsigned VarID = Lex.getUIntVal();
Bill Wendlingb32b0412013-02-08 06:32:06 +0000957 std::vector<unsigned> unused;
Michael Gottesman41748d72013-06-27 00:25:01 +0000958 LocTy BuiltinLoc;
Bill Wendling63b88192013-02-06 06:52:58 +0000959 Lex.Lex();
960
961 if (ParseToken(lltok::equal, "expected '=' here") ||
Bill Wendling63b88192013-02-06 06:52:58 +0000962 ParseToken(lltok::lbrace, "expected '{' here") ||
Bill Wendling09bd1f72013-02-22 00:12:35 +0000963 ParseFnAttributeValuePairs(NumberedAttrBuilders[VarID], unused, true,
Michael Gottesman41748d72013-06-27 00:25:01 +0000964 BuiltinLoc) ||
Bill Wendling63b88192013-02-06 06:52:58 +0000965 ParseToken(lltok::rbrace, "expected end of attribute group"))
966 return true;
967
Bill Wendlingb32b0412013-02-08 06:32:06 +0000968 if (!NumberedAttrBuilders[VarID].hasAttributes())
Bill Wendling63b88192013-02-06 06:52:58 +0000969 return Error(AttrGrpLoc, "attribute group has no attributes");
970
971 return false;
972}
973
Bill Wendling8b0321d2013-02-08 00:52:31 +0000974/// ParseFnAttributeValuePairs
Bill Wendling63b88192013-02-06 06:52:58 +0000975/// ::= <attr> | <attr> '=' <value>
Bill Wendlingb32b0412013-02-08 06:32:06 +0000976bool LLParser::ParseFnAttributeValuePairs(AttrBuilder &B,
977 std::vector<unsigned> &FwdRefAttrGrps,
Michael Gottesman41748d72013-06-27 00:25:01 +0000978 bool inAttrGrp, LocTy &BuiltinLoc) {
Bill Wendling8b0321d2013-02-08 00:52:31 +0000979 bool HaveError = false;
980
981 B.clear();
982
Bill Wendling63b88192013-02-06 06:52:58 +0000983 while (true) {
984 lltok::Kind Token = Lex.getKind();
Michael Gottesman41748d72013-06-27 00:25:01 +0000985 if (Token == lltok::kw_builtin)
986 BuiltinLoc = Lex.getLoc();
Bill Wendling63b88192013-02-06 06:52:58 +0000987 switch (Token) {
988 default:
Bill Wendling8b0321d2013-02-08 00:52:31 +0000989 if (!inAttrGrp) return HaveError;
Bill Wendling63b88192013-02-06 06:52:58 +0000990 return Error(Lex.getLoc(), "unterminated attribute group");
991 case lltok::rbrace:
992 // Finished.
993 return false;
994
Bill Wendlingb32b0412013-02-08 06:32:06 +0000995 case lltok::AttrGrpID: {
996 // Allow a function to reference an attribute group:
997 //
998 // define void @foo() #1 { ... }
999 if (inAttrGrp)
1000 HaveError |=
1001 Error(Lex.getLoc(),
1002 "cannot have an attribute group reference in an attribute group");
1003
1004 unsigned AttrGrpNum = Lex.getUIntVal();
1005 if (inAttrGrp) break;
1006
1007 // Save the reference to the attribute group. We'll fill it in later.
1008 FwdRefAttrGrps.push_back(AttrGrpNum);
1009 break;
1010 }
Bill Wendling63b88192013-02-06 06:52:58 +00001011 // Target-dependent attributes:
1012 case lltok::StringConstant: {
Artur Pilipenko17376c42015-08-03 14:31:49 +00001013 if (ParseStringAttribute(B))
Bill Wendling63b88192013-02-06 06:52:58 +00001014 return true;
Bill Wendlingb1ea9802013-02-10 10:12:50 +00001015 continue;
Bill Wendling63b88192013-02-06 06:52:58 +00001016 }
1017
1018 // Target-independent attributes:
1019 case lltok::kw_align: {
Bill Wendlingc62789f2013-04-18 18:30:16 +00001020 // As a hack, we allow function alignment to be initially parsed as an
1021 // attribute on a function declaration/definition or added to an attribute
1022 // group and later moved to the alignment field.
Bill Wendling63b88192013-02-06 06:52:58 +00001023 unsigned Alignment;
Bill Wendling8b0321d2013-02-08 00:52:31 +00001024 if (inAttrGrp) {
Bill Wendling44b08bf2013-02-10 23:15:51 +00001025 Lex.Lex();
Bill Wendling8b0321d2013-02-08 00:52:31 +00001026 if (ParseToken(lltok::equal, "expected '=' here") ||
1027 ParseUInt32(Alignment))
1028 return true;
1029 } else {
1030 if (ParseOptionalAlignment(Alignment))
1031 return true;
1032 }
Bill Wendling63b88192013-02-06 06:52:58 +00001033 B.addAlignmentAttr(Alignment);
Bill Wendling8b0321d2013-02-08 00:52:31 +00001034 continue;
Bill Wendling63b88192013-02-06 06:52:58 +00001035 }
1036 case lltok::kw_alignstack: {
1037 unsigned Alignment;
Bill Wendling8b0321d2013-02-08 00:52:31 +00001038 if (inAttrGrp) {
Bill Wendling44b08bf2013-02-10 23:15:51 +00001039 Lex.Lex();
Bill Wendling8b0321d2013-02-08 00:52:31 +00001040 if (ParseToken(lltok::equal, "expected '=' here") ||
1041 ParseUInt32(Alignment))
1042 return true;
1043 } else {
1044 if (ParseOptionalStackAlignment(Alignment))
1045 return true;
1046 }
Bill Wendling63b88192013-02-06 06:52:58 +00001047 B.addStackAlignmentAttr(Alignment);
Bill Wendling8b0321d2013-02-08 00:52:31 +00001048 continue;
Bill Wendling63b88192013-02-06 06:52:58 +00001049 }
Igor Laevsky39d662f2015-07-11 10:30:36 +00001050 case lltok::kw_alwaysinline: B.addAttribute(Attribute::AlwaysInline); break;
1051 case lltok::kw_argmemonly: B.addAttribute(Attribute::ArgMemOnly); break;
1052 case lltok::kw_builtin: B.addAttribute(Attribute::Builtin); break;
1053 case lltok::kw_cold: B.addAttribute(Attribute::Cold); break;
1054 case lltok::kw_convergent: B.addAttribute(Attribute::Convergent); break;
Vaivaswatha Nagarajfb3f4902015-12-16 16:16:19 +00001055 case lltok::kw_inaccessiblememonly:
1056 B.addAttribute(Attribute::InaccessibleMemOnly); break;
1057 case lltok::kw_inaccessiblemem_or_argmemonly:
1058 B.addAttribute(Attribute::InaccessibleMemOrArgMemOnly); break;
Igor Laevsky39d662f2015-07-11 10:30:36 +00001059 case lltok::kw_inlinehint: B.addAttribute(Attribute::InlineHint); break;
1060 case lltok::kw_jumptable: B.addAttribute(Attribute::JumpTable); break;
1061 case lltok::kw_minsize: B.addAttribute(Attribute::MinSize); break;
1062 case lltok::kw_naked: B.addAttribute(Attribute::Naked); break;
1063 case lltok::kw_nobuiltin: B.addAttribute(Attribute::NoBuiltin); break;
1064 case lltok::kw_noduplicate: B.addAttribute(Attribute::NoDuplicate); break;
1065 case lltok::kw_noimplicitfloat:
1066 B.addAttribute(Attribute::NoImplicitFloat); break;
1067 case lltok::kw_noinline: B.addAttribute(Attribute::NoInline); break;
1068 case lltok::kw_nonlazybind: B.addAttribute(Attribute::NonLazyBind); break;
1069 case lltok::kw_noredzone: B.addAttribute(Attribute::NoRedZone); break;
1070 case lltok::kw_noreturn: B.addAttribute(Attribute::NoReturn); break;
James Molloye6f87ca2015-11-06 10:32:53 +00001071 case lltok::kw_norecurse: B.addAttribute(Attribute::NoRecurse); break;
Igor Laevsky39d662f2015-07-11 10:30:36 +00001072 case lltok::kw_nounwind: B.addAttribute(Attribute::NoUnwind); break;
1073 case lltok::kw_optnone: B.addAttribute(Attribute::OptimizeNone); break;
1074 case lltok::kw_optsize: B.addAttribute(Attribute::OptimizeForSize); break;
1075 case lltok::kw_readnone: B.addAttribute(Attribute::ReadNone); break;
1076 case lltok::kw_readonly: B.addAttribute(Attribute::ReadOnly); break;
1077 case lltok::kw_returns_twice:
1078 B.addAttribute(Attribute::ReturnsTwice); break;
1079 case lltok::kw_ssp: B.addAttribute(Attribute::StackProtect); break;
1080 case lltok::kw_sspreq: B.addAttribute(Attribute::StackProtectReq); break;
1081 case lltok::kw_sspstrong:
1082 B.addAttribute(Attribute::StackProtectStrong); break;
1083 case lltok::kw_safestack: B.addAttribute(Attribute::SafeStack); break;
1084 case lltok::kw_sanitize_address:
1085 B.addAttribute(Attribute::SanitizeAddress); break;
1086 case lltok::kw_sanitize_thread:
1087 B.addAttribute(Attribute::SanitizeThread); break;
1088 case lltok::kw_sanitize_memory:
1089 B.addAttribute(Attribute::SanitizeMemory); break;
1090 case lltok::kw_uwtable: B.addAttribute(Attribute::UWTable); break;
Bill Wendling8b0321d2013-02-08 00:52:31 +00001091
1092 // Error handling.
1093 case lltok::kw_inreg:
1094 case lltok::kw_signext:
1095 case lltok::kw_zeroext:
1096 HaveError |=
1097 Error(Lex.getLoc(),
1098 "invalid use of attribute on a function");
1099 break;
1100 case lltok::kw_byval:
Hal Finkelb0407ba2014-07-18 15:51:28 +00001101 case lltok::kw_dereferenceable:
Sanjoy Das31ea6d12015-04-16 20:29:50 +00001102 case lltok::kw_dereferenceable_or_null:
Reid Klecknera534a382013-12-19 02:14:12 +00001103 case lltok::kw_inalloca:
Bill Wendling8b0321d2013-02-08 00:52:31 +00001104 case lltok::kw_nest:
1105 case lltok::kw_noalias:
1106 case lltok::kw_nocapture:
Nick Lewyckyd52b1522014-05-20 01:23:40 +00001107 case lltok::kw_nonnull:
Stephen Linb8bd2322013-04-20 05:14:40 +00001108 case lltok::kw_returned:
Bill Wendling8b0321d2013-02-08 00:52:31 +00001109 case lltok::kw_sret:
Manman Ren9bfd0d02016-04-01 21:41:15 +00001110 case lltok::kw_swifterror:
Manman Renf46262e2016-03-29 17:37:21 +00001111 case lltok::kw_swiftself:
Bill Wendling8b0321d2013-02-08 00:52:31 +00001112 HaveError |=
1113 Error(Lex.getLoc(),
1114 "invalid use of parameter-only attribute on a function");
1115 break;
Bill Wendling63b88192013-02-06 06:52:58 +00001116 }
1117
1118 Lex.Lex();
1119 }
1120}
Chris Lattnerac161bf2009-01-02 07:01:27 +00001121
1122//===----------------------------------------------------------------------===//
1123// GlobalValue Reference/Resolution Routines.
1124//===----------------------------------------------------------------------===//
1125
Karl Schimpf77729782015-09-03 18:06:44 +00001126static inline GlobalValue *createGlobalFwdRef(Module *M, PointerType *PTy,
1127 const std::string &Name) {
1128 if (auto *FT = dyn_cast<FunctionType>(PTy->getElementType()))
1129 return Function::Create(FT, GlobalValue::ExternalWeakLinkage, Name, M);
1130 else
1131 return new GlobalVariable(*M, PTy->getElementType(), false,
1132 GlobalValue::ExternalWeakLinkage, nullptr, Name,
1133 nullptr, GlobalVariable::NotThreadLocal,
1134 PTy->getAddressSpace());
1135}
1136
Chris Lattnerac161bf2009-01-02 07:01:27 +00001137/// GetGlobalVal - Get a value with the specified name or ID, creating a
1138/// forward reference record if needed. This can return null if the value
1139/// exists but does not have the right type.
Chris Lattner229907c2011-07-18 04:54:35 +00001140GlobalValue *LLParser::GetGlobalVal(const std::string &Name, Type *Ty,
Chris Lattnerac161bf2009-01-02 07:01:27 +00001141 LocTy Loc) {
Chris Lattner229907c2011-07-18 04:54:35 +00001142 PointerType *PTy = dyn_cast<PointerType>(Ty);
Craig Topper2617dcc2014-04-15 06:32:26 +00001143 if (!PTy) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00001144 Error(Loc, "global variable reference must have pointer type");
Craig Topper2617dcc2014-04-15 06:32:26 +00001145 return nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001146 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001147
Chris Lattnerac161bf2009-01-02 07:01:27 +00001148 // Look this name up in the normal function symbol table.
1149 GlobalValue *Val =
1150 cast_or_null<GlobalValue>(M->getValueSymbolTable().lookup(Name));
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001151
Chris Lattnerac161bf2009-01-02 07:01:27 +00001152 // If this is a forward reference for the value, see if we already created a
1153 // forward ref record.
Craig Topper2617dcc2014-04-15 06:32:26 +00001154 if (!Val) {
David Blaikie9ebdc692015-09-21 21:07:50 +00001155 auto I = ForwardRefVals.find(Name);
Chris Lattnerac161bf2009-01-02 07:01:27 +00001156 if (I != ForwardRefVals.end())
1157 Val = I->second.first;
1158 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001159
Chris Lattnerac161bf2009-01-02 07:01:27 +00001160 // If we have the value in the symbol table or fwd-ref table, return it.
1161 if (Val) {
1162 if (Val->getType() == Ty) return Val;
1163 Error(Loc, "'@" + Name + "' defined with type '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00001164 getTypeString(Val->getType()) + "'");
Craig Topper2617dcc2014-04-15 06:32:26 +00001165 return nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001166 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001167
Chris Lattnerac161bf2009-01-02 07:01:27 +00001168 // Otherwise, create a new forward reference for this value and remember it.
Karl Schimpf77729782015-09-03 18:06:44 +00001169 GlobalValue *FwdVal = createGlobalFwdRef(M, PTy, Name);
Chris Lattnerac161bf2009-01-02 07:01:27 +00001170 ForwardRefVals[Name] = std::make_pair(FwdVal, Loc);
1171 return FwdVal;
1172}
1173
Chris Lattner229907c2011-07-18 04:54:35 +00001174GlobalValue *LLParser::GetGlobalVal(unsigned ID, Type *Ty, LocTy Loc) {
1175 PointerType *PTy = dyn_cast<PointerType>(Ty);
Craig Topper2617dcc2014-04-15 06:32:26 +00001176 if (!PTy) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00001177 Error(Loc, "global variable reference must have pointer type");
Craig Topper2617dcc2014-04-15 06:32:26 +00001178 return nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001179 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001180
Craig Topper2617dcc2014-04-15 06:32:26 +00001181 GlobalValue *Val = ID < NumberedVals.size() ? NumberedVals[ID] : nullptr;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001182
Chris Lattnerac161bf2009-01-02 07:01:27 +00001183 // If this is a forward reference for the value, see if we already created a
1184 // forward ref record.
Craig Topper2617dcc2014-04-15 06:32:26 +00001185 if (!Val) {
David Blaikie9ebdc692015-09-21 21:07:50 +00001186 auto I = ForwardRefValIDs.find(ID);
Chris Lattnerac161bf2009-01-02 07:01:27 +00001187 if (I != ForwardRefValIDs.end())
1188 Val = I->second.first;
1189 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001190
Chris Lattnerac161bf2009-01-02 07:01:27 +00001191 // If we have the value in the symbol table or fwd-ref table, return it.
1192 if (Val) {
1193 if (Val->getType() == Ty) return Val;
Benjamin Kramerc7583112010-09-27 17:42:11 +00001194 Error(Loc, "'@" + Twine(ID) + "' defined with type '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00001195 getTypeString(Val->getType()) + "'");
Craig Topper2617dcc2014-04-15 06:32:26 +00001196 return nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001197 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001198
Chris Lattnerac161bf2009-01-02 07:01:27 +00001199 // Otherwise, create a new forward reference for this value and remember it.
Karl Schimpf77729782015-09-03 18:06:44 +00001200 GlobalValue *FwdVal = createGlobalFwdRef(M, PTy, "");
Chris Lattnerac161bf2009-01-02 07:01:27 +00001201 ForwardRefValIDs[ID] = std::make_pair(FwdVal, Loc);
1202 return FwdVal;
1203}
1204
1205
1206//===----------------------------------------------------------------------===//
David Majnemerdad0a642014-06-27 18:19:56 +00001207// Comdat Reference/Resolution Routines.
1208//===----------------------------------------------------------------------===//
1209
1210Comdat *LLParser::getComdat(const std::string &Name, LocTy Loc) {
1211 // Look this name up in the comdat symbol table.
1212 Module::ComdatSymTabType &ComdatSymTab = M->getComdatSymbolTable();
1213 Module::ComdatSymTabType::iterator I = ComdatSymTab.find(Name);
1214 if (I != ComdatSymTab.end())
1215 return &I->second;
1216
1217 // Otherwise, create a new forward reference for this value and remember it.
1218 Comdat *C = M->getOrInsertComdat(Name);
1219 ForwardRefComdats[Name] = Loc;
1220 return C;
1221}
1222
1223
1224//===----------------------------------------------------------------------===//
Chris Lattnerac161bf2009-01-02 07:01:27 +00001225// Helper Routines.
1226//===----------------------------------------------------------------------===//
1227
1228/// ParseToken - If the current token has the specified kind, eat it and return
1229/// success. Otherwise, emit the specified error and return failure.
1230bool LLParser::ParseToken(lltok::Kind T, const char *ErrMsg) {
1231 if (Lex.getKind() != T)
1232 return TokError(ErrMsg);
1233 Lex.Lex();
1234 return false;
1235}
1236
Chris Lattner3822f632009-01-02 08:05:26 +00001237/// ParseStringConstant
1238/// ::= StringConstant
1239bool LLParser::ParseStringConstant(std::string &Result) {
1240 if (Lex.getKind() != lltok::StringConstant)
1241 return TokError("expected string constant");
1242 Result = Lex.getStrVal();
1243 Lex.Lex();
1244 return false;
1245}
1246
1247/// ParseUInt32
1248/// ::= uint32
1249bool LLParser::ParseUInt32(unsigned &Val) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00001250 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned())
1251 return TokError("expected integer");
1252 uint64_t Val64 = Lex.getAPSIntVal().getLimitedValue(0xFFFFFFFFULL+1);
1253 if (Val64 != unsigned(Val64))
1254 return TokError("expected 32-bit integer (too large)");
1255 Val = Val64;
1256 Lex.Lex();
1257 return false;
1258}
1259
Hal Finkelb0407ba2014-07-18 15:51:28 +00001260/// ParseUInt64
1261/// ::= uint64
1262bool LLParser::ParseUInt64(uint64_t &Val) {
1263 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned())
1264 return TokError("expected integer");
1265 Val = Lex.getAPSIntVal().getLimitedValue();
1266 Lex.Lex();
1267 return false;
1268}
1269
Hans Wennborgcbe34b42012-06-23 11:37:03 +00001270/// ParseTLSModel
1271/// := 'localdynamic'
1272/// := 'initialexec'
1273/// := 'localexec'
1274bool LLParser::ParseTLSModel(GlobalVariable::ThreadLocalMode &TLM) {
1275 switch (Lex.getKind()) {
1276 default:
1277 return TokError("expected localdynamic, initialexec or localexec");
1278 case lltok::kw_localdynamic:
1279 TLM = GlobalVariable::LocalDynamicTLSModel;
1280 break;
1281 case lltok::kw_initialexec:
1282 TLM = GlobalVariable::InitialExecTLSModel;
1283 break;
1284 case lltok::kw_localexec:
1285 TLM = GlobalVariable::LocalExecTLSModel;
1286 break;
1287 }
1288
1289 Lex.Lex();
1290 return false;
1291}
1292
1293/// ParseOptionalThreadLocal
1294/// := /*empty*/
1295/// := 'thread_local'
1296/// := 'thread_local' '(' tlsmodel ')'
1297bool LLParser::ParseOptionalThreadLocal(GlobalVariable::ThreadLocalMode &TLM) {
1298 TLM = GlobalVariable::NotThreadLocal;
1299 if (!EatIfPresent(lltok::kw_thread_local))
1300 return false;
1301
1302 TLM = GlobalVariable::GeneralDynamicTLSModel;
1303 if (Lex.getKind() == lltok::lparen) {
1304 Lex.Lex();
1305 return ParseTLSModel(TLM) ||
1306 ParseToken(lltok::rparen, "expected ')' after thread local model");
1307 }
1308 return false;
1309}
Chris Lattnerac161bf2009-01-02 07:01:27 +00001310
1311/// ParseOptionalAddrSpace
1312/// := /*empty*/
1313/// := 'addrspace' '(' uint32 ')'
1314bool LLParser::ParseOptionalAddrSpace(unsigned &AddrSpace) {
1315 AddrSpace = 0;
Chris Lattner3822f632009-01-02 08:05:26 +00001316 if (!EatIfPresent(lltok::kw_addrspace))
Chris Lattnerac161bf2009-01-02 07:01:27 +00001317 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001318 return ParseToken(lltok::lparen, "expected '(' in address space") ||
Chris Lattner3822f632009-01-02 08:05:26 +00001319 ParseUInt32(AddrSpace) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00001320 ParseToken(lltok::rparen, "expected ')' in address space");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001321}
Chris Lattnerac161bf2009-01-02 07:01:27 +00001322
Artur Pilipenko17376c42015-08-03 14:31:49 +00001323/// ParseStringAttribute
1324/// := StringConstant
1325/// := StringConstant '=' StringConstant
1326bool LLParser::ParseStringAttribute(AttrBuilder &B) {
1327 std::string Attr = Lex.getStrVal();
1328 Lex.Lex();
1329 std::string Val;
1330 if (EatIfPresent(lltok::equal) && ParseStringConstant(Val))
1331 return true;
1332 B.addAttribute(Attr, Val);
1333 return false;
1334}
1335
Bill Wendling34c2eb22012-12-04 23:40:58 +00001336/// ParseOptionalParamAttrs - Parse a potentially empty list of parameter attributes.
1337bool LLParser::ParseOptionalParamAttrs(AttrBuilder &B) {
1338 bool HaveError = false;
1339
1340 B.clear();
1341
1342 while (1) {
1343 lltok::Kind Token = Lex.getKind();
1344 switch (Token) {
1345 default: // End of attributes.
1346 return HaveError;
Artur Pilipenko17376c42015-08-03 14:31:49 +00001347 case lltok::StringConstant: {
1348 if (ParseStringAttribute(B))
1349 return true;
1350 continue;
1351 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00001352 case lltok::kw_align: {
1353 unsigned Alignment;
1354 if (ParseOptionalAlignment(Alignment))
1355 return true;
Bill Wendling68d24012012-10-08 22:20:14 +00001356 B.addAlignmentAttr(Alignment);
Chris Lattnerac161bf2009-01-02 07:01:27 +00001357 continue;
1358 }
Bill Wendling3d7b0b82012-12-19 07:18:57 +00001359 case lltok::kw_byval: B.addAttribute(Attribute::ByVal); break;
Hal Finkelb0407ba2014-07-18 15:51:28 +00001360 case lltok::kw_dereferenceable: {
1361 uint64_t Bytes;
Sanjoy Das31ea6d12015-04-16 20:29:50 +00001362 if (ParseOptionalDerefAttrBytes(lltok::kw_dereferenceable, Bytes))
Hal Finkelb0407ba2014-07-18 15:51:28 +00001363 return true;
1364 B.addDereferenceableAttr(Bytes);
1365 continue;
1366 }
Sanjoy Das31ea6d12015-04-16 20:29:50 +00001367 case lltok::kw_dereferenceable_or_null: {
1368 uint64_t Bytes;
1369 if (ParseOptionalDerefAttrBytes(lltok::kw_dereferenceable_or_null, Bytes))
1370 return true;
1371 B.addDereferenceableOrNullAttr(Bytes);
1372 continue;
1373 }
Reid Klecknera534a382013-12-19 02:14:12 +00001374 case lltok::kw_inalloca: B.addAttribute(Attribute::InAlloca); break;
Bill Wendling3d7b0b82012-12-19 07:18:57 +00001375 case lltok::kw_inreg: B.addAttribute(Attribute::InReg); break;
1376 case lltok::kw_nest: B.addAttribute(Attribute::Nest); break;
1377 case lltok::kw_noalias: B.addAttribute(Attribute::NoAlias); break;
1378 case lltok::kw_nocapture: B.addAttribute(Attribute::NoCapture); break;
Nick Lewyckyd52b1522014-05-20 01:23:40 +00001379 case lltok::kw_nonnull: B.addAttribute(Attribute::NonNull); break;
Nick Lewyckyc2ec0722013-07-06 00:29:58 +00001380 case lltok::kw_readnone: B.addAttribute(Attribute::ReadNone); break;
1381 case lltok::kw_readonly: B.addAttribute(Attribute::ReadOnly); break;
Stephen Linb8bd2322013-04-20 05:14:40 +00001382 case lltok::kw_returned: B.addAttribute(Attribute::Returned); break;
Bill Wendling3d7b0b82012-12-19 07:18:57 +00001383 case lltok::kw_signext: B.addAttribute(Attribute::SExt); break;
1384 case lltok::kw_sret: B.addAttribute(Attribute::StructRet); break;
Manman Ren9bfd0d02016-04-01 21:41:15 +00001385 case lltok::kw_swifterror: B.addAttribute(Attribute::SwiftError); break;
Manman Renf46262e2016-03-29 17:37:21 +00001386 case lltok::kw_swiftself: B.addAttribute(Attribute::SwiftSelf); break;
Bill Wendling3d7b0b82012-12-19 07:18:57 +00001387 case lltok::kw_zeroext: B.addAttribute(Attribute::ZExt); break;
Charles Davisbe5557e2010-02-12 00:31:15 +00001388
Stephen Lin7577ed52013-04-20 13:16:13 +00001389 case lltok::kw_alignstack:
1390 case lltok::kw_alwaysinline:
Igor Laevsky39d662f2015-07-11 10:30:36 +00001391 case lltok::kw_argmemonly:
Michael Gottesman41748d72013-06-27 00:25:01 +00001392 case lltok::kw_builtin:
Stephen Lin7577ed52013-04-20 13:16:13 +00001393 case lltok::kw_inlinehint:
Tom Roeder44cb65f2014-06-05 19:29:43 +00001394 case lltok::kw_jumptable:
Stephen Lin7577ed52013-04-20 13:16:13 +00001395 case lltok::kw_minsize:
1396 case lltok::kw_naked:
1397 case lltok::kw_nobuiltin:
1398 case lltok::kw_noduplicate:
1399 case lltok::kw_noimplicitfloat:
1400 case lltok::kw_noinline:
1401 case lltok::kw_nonlazybind:
1402 case lltok::kw_noredzone:
1403 case lltok::kw_noreturn:
1404 case lltok::kw_nounwind:
Andrea Di Biagio377496b2013-08-23 11:53:55 +00001405 case lltok::kw_optnone:
Stephen Lin7577ed52013-04-20 13:16:13 +00001406 case lltok::kw_optsize:
Stephen Lin7577ed52013-04-20 13:16:13 +00001407 case lltok::kw_returns_twice:
1408 case lltok::kw_sanitize_address:
1409 case lltok::kw_sanitize_memory:
1410 case lltok::kw_sanitize_thread:
1411 case lltok::kw_ssp:
1412 case lltok::kw_sspreq:
1413 case lltok::kw_sspstrong:
Peter Collingbourne82437bf2015-06-15 21:07:11 +00001414 case lltok::kw_safestack:
Stephen Lin7577ed52013-04-20 13:16:13 +00001415 case lltok::kw_uwtable:
Bill Wendling34c2eb22012-12-04 23:40:58 +00001416 HaveError |= Error(Lex.getLoc(), "invalid use of function-only attribute");
1417 break;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001418 }
Bill Wendling0be9c402012-09-28 22:30:18 +00001419
Bill Wendling34c2eb22012-12-04 23:40:58 +00001420 Lex.Lex();
1421 }
1422}
1423
1424/// ParseOptionalReturnAttrs - Parse a potentially empty list of return attributes.
1425bool LLParser::ParseOptionalReturnAttrs(AttrBuilder &B) {
1426 bool HaveError = false;
1427
1428 B.clear();
1429
1430 while (1) {
1431 lltok::Kind Token = Lex.getKind();
Bill Wendling0be9c402012-09-28 22:30:18 +00001432 switch (Token) {
Bill Wendling34c2eb22012-12-04 23:40:58 +00001433 default: // End of attributes.
1434 return HaveError;
Artur Pilipenko17376c42015-08-03 14:31:49 +00001435 case lltok::StringConstant: {
1436 if (ParseStringAttribute(B))
1437 return true;
1438 continue;
1439 }
Hal Finkelb0407ba2014-07-18 15:51:28 +00001440 case lltok::kw_dereferenceable: {
1441 uint64_t Bytes;
Sanjoy Das31ea6d12015-04-16 20:29:50 +00001442 if (ParseOptionalDerefAttrBytes(lltok::kw_dereferenceable, Bytes))
Hal Finkelb0407ba2014-07-18 15:51:28 +00001443 return true;
1444 B.addDereferenceableAttr(Bytes);
1445 continue;
1446 }
Sanjoy Das31ea6d12015-04-16 20:29:50 +00001447 case lltok::kw_dereferenceable_or_null: {
1448 uint64_t Bytes;
1449 if (ParseOptionalDerefAttrBytes(lltok::kw_dereferenceable_or_null, Bytes))
1450 return true;
1451 B.addDereferenceableOrNullAttr(Bytes);
1452 continue;
1453 }
Artur Pilipenko84bc62f2015-09-18 12:33:31 +00001454 case lltok::kw_align: {
1455 unsigned Alignment;
1456 if (ParseOptionalAlignment(Alignment))
1457 return true;
1458 B.addAlignmentAttr(Alignment);
1459 continue;
1460 }
Bill Wendling3d7b0b82012-12-19 07:18:57 +00001461 case lltok::kw_inreg: B.addAttribute(Attribute::InReg); break;
1462 case lltok::kw_noalias: B.addAttribute(Attribute::NoAlias); break;
Nick Lewyckyd52b1522014-05-20 01:23:40 +00001463 case lltok::kw_nonnull: B.addAttribute(Attribute::NonNull); break;
Bill Wendling3d7b0b82012-12-19 07:18:57 +00001464 case lltok::kw_signext: B.addAttribute(Attribute::SExt); break;
1465 case lltok::kw_zeroext: B.addAttribute(Attribute::ZExt); break;
Bill Wendling0be9c402012-09-28 22:30:18 +00001466
Bill Wendling34c2eb22012-12-04 23:40:58 +00001467 // Error handling.
Chandler Carruth9f6b59a2013-04-09 19:46:46 +00001468 case lltok::kw_byval:
Reid Klecknera534a382013-12-19 02:14:12 +00001469 case lltok::kw_inalloca:
Chandler Carruth9f6b59a2013-04-09 19:46:46 +00001470 case lltok::kw_nest:
1471 case lltok::kw_nocapture:
Stephen Linb8bd2322013-04-20 05:14:40 +00001472 case lltok::kw_returned:
Chandler Carruth9f6b59a2013-04-09 19:46:46 +00001473 case lltok::kw_sret:
Manman Ren9bfd0d02016-04-01 21:41:15 +00001474 case lltok::kw_swifterror:
Manman Renf46262e2016-03-29 17:37:21 +00001475 case lltok::kw_swiftself:
Bill Wendling34c2eb22012-12-04 23:40:58 +00001476 HaveError |= Error(Lex.getLoc(), "invalid use of parameter-only attribute");
Bill Wendling0be9c402012-09-28 22:30:18 +00001477 break;
James Molloy4f6fb952012-12-20 16:04:27 +00001478
Chandler Carruth9f6b59a2013-04-09 19:46:46 +00001479 case lltok::kw_alignstack:
1480 case lltok::kw_alwaysinline:
Igor Laevsky39d662f2015-07-11 10:30:36 +00001481 case lltok::kw_argmemonly:
Michael Gottesman41748d72013-06-27 00:25:01 +00001482 case lltok::kw_builtin:
Diego Novilloc6399532013-05-24 12:26:52 +00001483 case lltok::kw_cold:
Chandler Carruth9f6b59a2013-04-09 19:46:46 +00001484 case lltok::kw_inlinehint:
Tom Roeder44cb65f2014-06-05 19:29:43 +00001485 case lltok::kw_jumptable:
Chandler Carruth9f6b59a2013-04-09 19:46:46 +00001486 case lltok::kw_minsize:
1487 case lltok::kw_naked:
1488 case lltok::kw_nobuiltin:
1489 case lltok::kw_noduplicate:
1490 case lltok::kw_noimplicitfloat:
1491 case lltok::kw_noinline:
1492 case lltok::kw_nonlazybind:
1493 case lltok::kw_noredzone:
1494 case lltok::kw_noreturn:
1495 case lltok::kw_nounwind:
Andrea Di Biagio377496b2013-08-23 11:53:55 +00001496 case lltok::kw_optnone:
Chandler Carruth9f6b59a2013-04-09 19:46:46 +00001497 case lltok::kw_optsize:
Chandler Carruth9f6b59a2013-04-09 19:46:46 +00001498 case lltok::kw_returns_twice:
1499 case lltok::kw_sanitize_address:
1500 case lltok::kw_sanitize_memory:
1501 case lltok::kw_sanitize_thread:
1502 case lltok::kw_ssp:
1503 case lltok::kw_sspreq:
1504 case lltok::kw_sspstrong:
Peter Collingbourne82437bf2015-06-15 21:07:11 +00001505 case lltok::kw_safestack:
Chandler Carruth9f6b59a2013-04-09 19:46:46 +00001506 case lltok::kw_uwtable:
Bill Wendling34c2eb22012-12-04 23:40:58 +00001507 HaveError |= Error(Lex.getLoc(), "invalid use of function-only attribute");
Bill Wendling0be9c402012-09-28 22:30:18 +00001508 break;
Nick Lewyckyc2ec0722013-07-06 00:29:58 +00001509
1510 case lltok::kw_readnone:
1511 case lltok::kw_readonly:
1512 HaveError |= Error(Lex.getLoc(), "invalid use of attribute on return type");
Bill Wendling0be9c402012-09-28 22:30:18 +00001513 }
1514
Chris Lattnerac161bf2009-01-02 07:01:27 +00001515 Lex.Lex();
1516 }
1517}
1518
1519/// ParseOptionalLinkage
1520/// ::= /*empty*/
Rafael Espindola6de96a12009-01-15 20:18:42 +00001521/// ::= 'private'
Chris Lattnerac161bf2009-01-02 07:01:27 +00001522/// ::= 'internal'
1523/// ::= 'weak'
Duncan Sands12da8ce2009-03-07 15:45:40 +00001524/// ::= 'weak_odr'
Chris Lattnerac161bf2009-01-02 07:01:27 +00001525/// ::= 'linkonce'
Duncan Sands12da8ce2009-03-07 15:45:40 +00001526/// ::= 'linkonce_odr'
Bill Wendling03bcd6e2010-07-01 21:55:59 +00001527/// ::= 'available_externally'
Chris Lattnerac161bf2009-01-02 07:01:27 +00001528/// ::= 'appending'
Chris Lattnerac161bf2009-01-02 07:01:27 +00001529/// ::= 'common'
Chris Lattnerac161bf2009-01-02 07:01:27 +00001530/// ::= 'extern_weak'
1531/// ::= 'external'
1532bool LLParser::ParseOptionalLinkage(unsigned &Res, bool &HasLinkage) {
1533 HasLinkage = false;
1534 switch (Lex.getKind()) {
Bill Wendlinga3c6f6b2009-07-20 01:03:30 +00001535 default: Res=GlobalValue::ExternalLinkage; return false;
1536 case lltok::kw_private: Res = GlobalValue::PrivateLinkage; break;
Bill Wendlinga3c6f6b2009-07-20 01:03:30 +00001537 case lltok::kw_internal: Res = GlobalValue::InternalLinkage; break;
1538 case lltok::kw_weak: Res = GlobalValue::WeakAnyLinkage; break;
1539 case lltok::kw_weak_odr: Res = GlobalValue::WeakODRLinkage; break;
1540 case lltok::kw_linkonce: Res = GlobalValue::LinkOnceAnyLinkage; break;
1541 case lltok::kw_linkonce_odr: Res = GlobalValue::LinkOnceODRLinkage; break;
Chris Lattner184f1be2009-04-13 05:44:34 +00001542 case lltok::kw_available_externally:
1543 Res = GlobalValue::AvailableExternallyLinkage;
1544 break;
Bill Wendlinga3c6f6b2009-07-20 01:03:30 +00001545 case lltok::kw_appending: Res = GlobalValue::AppendingLinkage; break;
Bill Wendlinga3c6f6b2009-07-20 01:03:30 +00001546 case lltok::kw_common: Res = GlobalValue::CommonLinkage; break;
Bill Wendlinga3c6f6b2009-07-20 01:03:30 +00001547 case lltok::kw_extern_weak: Res = GlobalValue::ExternalWeakLinkage; break;
1548 case lltok::kw_external: Res = GlobalValue::ExternalLinkage; break;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001549 }
1550 Lex.Lex();
1551 HasLinkage = true;
1552 return false;
1553}
1554
1555/// ParseOptionalVisibility
1556/// ::= /*empty*/
1557/// ::= 'default'
1558/// ::= 'hidden'
1559/// ::= 'protected'
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001560///
Chris Lattnerac161bf2009-01-02 07:01:27 +00001561bool LLParser::ParseOptionalVisibility(unsigned &Res) {
1562 switch (Lex.getKind()) {
1563 default: Res = GlobalValue::DefaultVisibility; return false;
1564 case lltok::kw_default: Res = GlobalValue::DefaultVisibility; break;
1565 case lltok::kw_hidden: Res = GlobalValue::HiddenVisibility; break;
1566 case lltok::kw_protected: Res = GlobalValue::ProtectedVisibility; break;
1567 }
1568 Lex.Lex();
1569 return false;
1570}
1571
Nico Rieck7157bb72014-01-14 15:22:47 +00001572/// ParseOptionalDLLStorageClass
1573/// ::= /*empty*/
1574/// ::= 'dllimport'
1575/// ::= 'dllexport'
1576///
1577bool LLParser::ParseOptionalDLLStorageClass(unsigned &Res) {
1578 switch (Lex.getKind()) {
1579 default: Res = GlobalValue::DefaultStorageClass; return false;
1580 case lltok::kw_dllimport: Res = GlobalValue::DLLImportStorageClass; break;
1581 case lltok::kw_dllexport: Res = GlobalValue::DLLExportStorageClass; break;
1582 }
1583 Lex.Lex();
1584 return false;
1585}
1586
Chris Lattnerac161bf2009-01-02 07:01:27 +00001587/// ParseOptionalCallingConv
1588/// ::= /*empty*/
1589/// ::= 'ccc'
1590/// ::= 'fastcc'
Reid Kleckner35fc3632014-12-01 21:04:44 +00001591/// ::= 'intel_ocl_bicc'
Chris Lattnerac161bf2009-01-02 07:01:27 +00001592/// ::= 'coldcc'
1593/// ::= 'x86_stdcallcc'
1594/// ::= 'x86_fastcallcc'
Anton Korobeynikov8f35fab2010-05-16 09:08:45 +00001595/// ::= 'x86_thiscallcc'
Reid Kleckner9ccce992014-10-28 01:29:26 +00001596/// ::= 'x86_vectorcallcc'
Anton Korobeynikova8fd40b2009-06-16 18:50:49 +00001597/// ::= 'arm_apcscc'
1598/// ::= 'arm_aapcscc'
1599/// ::= 'arm_aapcs_vfpcc'
Anton Korobeynikov27a0ecf2009-12-07 02:27:35 +00001600/// ::= 'msp430_intrcc'
Dylan McKay4fd0d4a2016-03-03 10:08:02 +00001601/// ::= 'avr_intrcc'
1602/// ::= 'avr_signalcc'
Che-Liang Chiou29947902010-09-25 07:46:17 +00001603/// ::= 'ptx_kernel'
1604/// ::= 'ptx_device'
Micah Villmow48c8ddc2012-10-01 17:01:31 +00001605/// ::= 'spir_func'
1606/// ::= 'spir_kernel'
Charles Davise8f297c2013-07-12 06:02:35 +00001607/// ::= 'x86_64_sysvcc'
1608/// ::= 'x86_64_win64cc'
Andrew Tricka3a11de2013-10-31 22:12:01 +00001609/// ::= 'webkit_jscc'
Juergen Ributzka9969d3e2013-11-08 23:28:16 +00001610/// ::= 'anyregcc'
Juergen Ributzkae6250132014-01-17 19:47:03 +00001611/// ::= 'preserve_mostcc'
1612/// ::= 'preserve_allcc'
Reid Kleckner35fc3632014-12-01 21:04:44 +00001613/// ::= 'ghccc'
Manman Renf8bdd882016-04-05 22:41:47 +00001614/// ::= 'swiftcc'
Amjad Aboud60b5e1b2015-12-21 14:07:14 +00001615/// ::= 'x86_intrcc'
Maksim Panchenkocce239c2015-09-29 22:09:16 +00001616/// ::= 'hhvmcc'
1617/// ::= 'hhvm_ccc'
Manman Ren19c7bbe2015-12-04 17:40:13 +00001618/// ::= 'cxx_fast_tlscc'
Nicolai Haehnledf3a20c2016-04-06 19:40:20 +00001619/// ::= 'amdgpu_vs'
1620/// ::= 'amdgpu_tcs'
1621/// ::= 'amdgpu_tes'
1622/// ::= 'amdgpu_gs'
1623/// ::= 'amdgpu_ps'
1624/// ::= 'amdgpu_cs'
Chris Lattnerac161bf2009-01-02 07:01:27 +00001625/// ::= 'cc' UINT
Anton Korobeynikova8fd40b2009-06-16 18:50:49 +00001626///
Alexey Samsonov17a9cff2014-09-10 18:00:17 +00001627bool LLParser::ParseOptionalCallingConv(unsigned &CC) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00001628 switch (Lex.getKind()) {
1629 default: CC = CallingConv::C; return false;
1630 case lltok::kw_ccc: CC = CallingConv::C; break;
1631 case lltok::kw_fastcc: CC = CallingConv::Fast; break;
1632 case lltok::kw_coldcc: CC = CallingConv::Cold; break;
1633 case lltok::kw_x86_stdcallcc: CC = CallingConv::X86_StdCall; break;
1634 case lltok::kw_x86_fastcallcc: CC = CallingConv::X86_FastCall; break;
Anton Korobeynikov8f35fab2010-05-16 09:08:45 +00001635 case lltok::kw_x86_thiscallcc: CC = CallingConv::X86_ThisCall; break;
Reid Kleckner9ccce992014-10-28 01:29:26 +00001636 case lltok::kw_x86_vectorcallcc:CC = CallingConv::X86_VectorCall; break;
Anton Korobeynikova8fd40b2009-06-16 18:50:49 +00001637 case lltok::kw_arm_apcscc: CC = CallingConv::ARM_APCS; break;
1638 case lltok::kw_arm_aapcscc: CC = CallingConv::ARM_AAPCS; break;
1639 case lltok::kw_arm_aapcs_vfpcc:CC = CallingConv::ARM_AAPCS_VFP; break;
Anton Korobeynikov27a0ecf2009-12-07 02:27:35 +00001640 case lltok::kw_msp430_intrcc: CC = CallingConv::MSP430_INTR; break;
Dylan McKay4fd0d4a2016-03-03 10:08:02 +00001641 case lltok::kw_avr_intrcc: CC = CallingConv::AVR_INTR; break;
1642 case lltok::kw_avr_signalcc: CC = CallingConv::AVR_SIGNAL; break;
Che-Liang Chiou29947902010-09-25 07:46:17 +00001643 case lltok::kw_ptx_kernel: CC = CallingConv::PTX_Kernel; break;
1644 case lltok::kw_ptx_device: CC = CallingConv::PTX_Device; break;
Micah Villmow48c8ddc2012-10-01 17:01:31 +00001645 case lltok::kw_spir_kernel: CC = CallingConv::SPIR_KERNEL; break;
1646 case lltok::kw_spir_func: CC = CallingConv::SPIR_FUNC; break;
Elena Demikhovskyd6afb032012-10-24 14:46:16 +00001647 case lltok::kw_intel_ocl_bicc: CC = CallingConv::Intel_OCL_BI; break;
Charles Davise8f297c2013-07-12 06:02:35 +00001648 case lltok::kw_x86_64_sysvcc: CC = CallingConv::X86_64_SysV; break;
1649 case lltok::kw_x86_64_win64cc: CC = CallingConv::X86_64_Win64; break;
Andrew Tricka3a11de2013-10-31 22:12:01 +00001650 case lltok::kw_webkit_jscc: CC = CallingConv::WebKit_JS; break;
Juergen Ributzka9969d3e2013-11-08 23:28:16 +00001651 case lltok::kw_anyregcc: CC = CallingConv::AnyReg; break;
Juergen Ributzkae6250132014-01-17 19:47:03 +00001652 case lltok::kw_preserve_mostcc:CC = CallingConv::PreserveMost; break;
1653 case lltok::kw_preserve_allcc: CC = CallingConv::PreserveAll; break;
Reid Kleckner35fc3632014-12-01 21:04:44 +00001654 case lltok::kw_ghccc: CC = CallingConv::GHC; break;
Manman Renf8bdd882016-04-05 22:41:47 +00001655 case lltok::kw_swiftcc: CC = CallingConv::Swift; break;
Amjad Aboud60b5e1b2015-12-21 14:07:14 +00001656 case lltok::kw_x86_intrcc: CC = CallingConv::X86_INTR; break;
Maksim Panchenkocce239c2015-09-29 22:09:16 +00001657 case lltok::kw_hhvmcc: CC = CallingConv::HHVM; break;
1658 case lltok::kw_hhvm_ccc: CC = CallingConv::HHVM_C; break;
Manman Ren19c7bbe2015-12-04 17:40:13 +00001659 case lltok::kw_cxx_fast_tlscc: CC = CallingConv::CXX_FAST_TLS; break;
Nicolai Haehnledf3a20c2016-04-06 19:40:20 +00001660 case lltok::kw_amdgpu_vs: CC = CallingConv::AMDGPU_VS; break;
1661 case lltok::kw_amdgpu_gs: CC = CallingConv::AMDGPU_GS; break;
1662 case lltok::kw_amdgpu_ps: CC = CallingConv::AMDGPU_PS; break;
1663 case lltok::kw_amdgpu_cs: CC = CallingConv::AMDGPU_CS; break;
Sandeep Patel68c5f472009-09-02 08:44:58 +00001664 case lltok::kw_cc: {
Sandeep Patel68c5f472009-09-02 08:44:58 +00001665 Lex.Lex();
Alexey Samsonov17a9cff2014-09-10 18:00:17 +00001666 return ParseUInt32(CC);
Sandeep Patel68c5f472009-09-02 08:44:58 +00001667 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00001668 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001669
Chris Lattnerac161bf2009-01-02 07:01:27 +00001670 Lex.Lex();
1671 return false;
1672}
1673
Duncan P. N. Exon Smith19717ea2015-04-24 21:21:57 +00001674/// ParseMetadataAttachment
1675/// ::= !dbg !42
1676bool LLParser::ParseMetadataAttachment(unsigned &Kind, MDNode *&MD) {
1677 assert(Lex.getKind() == lltok::MetadataVar && "Expected metadata attachment");
1678
1679 std::string Name = Lex.getStrVal();
1680 Kind = M->getMDKindID(Name);
1681 Lex.Lex();
1682
1683 return ParseMDNode(MD);
1684}
1685
Chris Lattner5c427632009-12-30 05:31:19 +00001686/// ParseInstructionMetadata
Chris Lattner596760d2009-12-29 21:25:40 +00001687/// ::= !dbg !42 (',' !dbg !57)*
Duncan P. N. Exon Smith27d702c2015-04-24 21:29:36 +00001688bool LLParser::ParseInstructionMetadata(Instruction &Inst) {
Chris Lattner5c427632009-12-30 05:31:19 +00001689 do {
1690 if (Lex.getKind() != lltok::MetadataVar)
1691 return TokError("expected metadata after comma");
Devang Patelba4a6fd2009-09-29 00:01:14 +00001692
Duncan P. N. Exon Smith19717ea2015-04-24 21:21:57 +00001693 unsigned MDK;
Duncan P. N. Exon Smithf825dae2015-01-12 22:26:48 +00001694 MDNode *N;
Duncan P. N. Exon Smith19717ea2015-04-24 21:21:57 +00001695 if (ParseMetadataAttachment(MDK, N))
Chris Lattner1eed2d62009-12-30 04:56:59 +00001696 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001697
Duncan P. N. Exon Smith27d702c2015-04-24 21:29:36 +00001698 Inst.setMetadata(MDK, N);
Manman Ren209b17c2013-09-28 00:22:27 +00001699 if (MDK == LLVMContext::MD_tbaa)
Duncan P. N. Exon Smith27d702c2015-04-24 21:29:36 +00001700 InstsWithTBAATag.push_back(&Inst);
Manman Ren209b17c2013-09-28 00:22:27 +00001701
Chris Lattner596760d2009-12-29 21:25:40 +00001702 // If this is the end of the list, we're done.
Chris Lattner5c427632009-12-30 05:31:19 +00001703 } while (EatIfPresent(lltok::comma));
1704 return false;
Devang Patelea8a4b92009-09-17 23:04:48 +00001705}
1706
Duncan P. N. Exon Smith3d4cd752015-04-24 22:04:41 +00001707/// ParseOptionalFunctionMetadata
1708/// ::= (!dbg !57)*
1709bool LLParser::ParseOptionalFunctionMetadata(Function &F) {
1710 while (Lex.getKind() == lltok::MetadataVar) {
1711 unsigned MDK;
1712 MDNode *N;
1713 if (ParseMetadataAttachment(MDK, N))
1714 return true;
1715
1716 F.setMetadata(MDK, N);
1717 }
1718 return false;
1719}
1720
Chris Lattnerac161bf2009-01-02 07:01:27 +00001721/// ParseOptionalAlignment
1722/// ::= /* empty */
1723/// ::= 'align' 4
1724bool LLParser::ParseOptionalAlignment(unsigned &Alignment) {
1725 Alignment = 0;
Chris Lattner3822f632009-01-02 08:05:26 +00001726 if (!EatIfPresent(lltok::kw_align))
1727 return false;
Chris Lattnerd11f5142009-01-05 07:46:05 +00001728 LocTy AlignLoc = Lex.getLoc();
1729 if (ParseUInt32(Alignment)) return true;
1730 if (!isPowerOf2_32(Alignment))
1731 return Error(AlignLoc, "alignment is not a power of two");
Dan Gohmand566d2c2010-07-30 21:07:05 +00001732 if (Alignment > Value::MaximumAlignment)
Dan Gohmana7e5a242010-07-28 20:12:04 +00001733 return Error(AlignLoc, "huge alignments are not supported yet");
Chris Lattnerd11f5142009-01-05 07:46:05 +00001734 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001735}
1736
Sanjoy Das31ea6d12015-04-16 20:29:50 +00001737/// ParseOptionalDerefAttrBytes
Hal Finkelb0407ba2014-07-18 15:51:28 +00001738/// ::= /* empty */
Sanjoy Das31ea6d12015-04-16 20:29:50 +00001739/// ::= AttrKind '(' 4 ')'
1740///
1741/// where AttrKind is either 'dereferenceable' or 'dereferenceable_or_null'.
1742bool LLParser::ParseOptionalDerefAttrBytes(lltok::Kind AttrKind,
1743 uint64_t &Bytes) {
1744 assert((AttrKind == lltok::kw_dereferenceable ||
1745 AttrKind == lltok::kw_dereferenceable_or_null) &&
1746 "contract!");
1747
Hal Finkelb0407ba2014-07-18 15:51:28 +00001748 Bytes = 0;
Sanjoy Das31ea6d12015-04-16 20:29:50 +00001749 if (!EatIfPresent(AttrKind))
Hal Finkelb0407ba2014-07-18 15:51:28 +00001750 return false;
1751 LocTy ParenLoc = Lex.getLoc();
1752 if (!EatIfPresent(lltok::lparen))
1753 return Error(ParenLoc, "expected '('");
1754 LocTy DerefLoc = Lex.getLoc();
1755 if (ParseUInt64(Bytes)) return true;
1756 ParenLoc = Lex.getLoc();
1757 if (!EatIfPresent(lltok::rparen))
1758 return Error(ParenLoc, "expected ')'");
1759 if (!Bytes)
1760 return Error(DerefLoc, "dereferenceable bytes must be non-zero");
1761 return false;
1762}
1763
Chris Lattnerb2f39502009-12-30 05:44:30 +00001764/// ParseOptionalCommaAlign
Michael Ilseman26ee2b82012-11-15 22:34:00 +00001765/// ::=
Chris Lattnerb2f39502009-12-30 05:44:30 +00001766/// ::= ',' align 4
1767///
1768/// This returns with AteExtraComma set to true if it ate an excess comma at the
1769/// end.
1770bool LLParser::ParseOptionalCommaAlign(unsigned &Alignment,
1771 bool &AteExtraComma) {
1772 AteExtraComma = false;
1773 while (EatIfPresent(lltok::comma)) {
1774 // Metadata at the end is an early exit.
Chris Lattnereafe4de2009-12-30 05:02:06 +00001775 if (Lex.getKind() == lltok::MetadataVar) {
Chris Lattnerb2f39502009-12-30 05:44:30 +00001776 AteExtraComma = true;
1777 return false;
1778 }
Michael Ilseman26ee2b82012-11-15 22:34:00 +00001779
Chris Lattner95b0ff42010-04-23 00:50:50 +00001780 if (Lex.getKind() != lltok::kw_align)
1781 return Error(Lex.getLoc(), "expected metadata or 'align'");
Duncan Sands4c5c8582010-10-21 16:07:10 +00001782
Chris Lattner95b0ff42010-04-23 00:50:50 +00001783 if (ParseOptionalAlignment(Alignment)) return true;
Chris Lattnerb2f39502009-12-30 05:44:30 +00001784 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001785
Devang Patelea8a4b92009-09-17 23:04:48 +00001786 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001787}
1788
Eli Friedmanfee02c62011-07-25 23:16:38 +00001789/// ParseScopeAndOrdering
1790/// if isAtomic: ::= 'singlethread'? AtomicOrdering
1791/// else: ::=
1792///
1793/// This sets Scope and Ordering to the parsed values.
1794bool LLParser::ParseScopeAndOrdering(bool isAtomic, SynchronizationScope &Scope,
1795 AtomicOrdering &Ordering) {
1796 if (!isAtomic)
1797 return false;
1798
1799 Scope = CrossThread;
1800 if (EatIfPresent(lltok::kw_singlethread))
1801 Scope = SingleThread;
Tim Northovere94a5182014-03-11 10:48:52 +00001802
1803 return ParseOrdering(Ordering);
1804}
1805
1806/// ParseOrdering
1807/// ::= AtomicOrdering
1808///
1809/// This sets Ordering to the parsed value.
1810bool LLParser::ParseOrdering(AtomicOrdering &Ordering) {
Eli Friedmanfee02c62011-07-25 23:16:38 +00001811 switch (Lex.getKind()) {
1812 default: return TokError("Expected ordering on atomic instruction");
JF Bastien800f87a2016-04-06 21:19:33 +00001813 case lltok::kw_unordered: Ordering = AtomicOrdering::Unordered; break;
1814 case lltok::kw_monotonic: Ordering = AtomicOrdering::Monotonic; break;
1815 // Not specified yet:
1816 // case lltok::kw_consume: Ordering = AtomicOrdering::Consume; break;
1817 case lltok::kw_acquire: Ordering = AtomicOrdering::Acquire; break;
1818 case lltok::kw_release: Ordering = AtomicOrdering::Release; break;
1819 case lltok::kw_acq_rel: Ordering = AtomicOrdering::AcquireRelease; break;
1820 case lltok::kw_seq_cst:
1821 Ordering = AtomicOrdering::SequentiallyConsistent;
1822 break;
Eli Friedmanfee02c62011-07-25 23:16:38 +00001823 }
1824 Lex.Lex();
1825 return false;
1826}
1827
Charles Davisbe5557e2010-02-12 00:31:15 +00001828/// ParseOptionalStackAlignment
1829/// ::= /* empty */
1830/// ::= 'alignstack' '(' 4 ')'
1831bool LLParser::ParseOptionalStackAlignment(unsigned &Alignment) {
1832 Alignment = 0;
1833 if (!EatIfPresent(lltok::kw_alignstack))
1834 return false;
1835 LocTy ParenLoc = Lex.getLoc();
1836 if (!EatIfPresent(lltok::lparen))
1837 return Error(ParenLoc, "expected '('");
1838 LocTy AlignLoc = Lex.getLoc();
1839 if (ParseUInt32(Alignment)) return true;
1840 ParenLoc = Lex.getLoc();
1841 if (!EatIfPresent(lltok::rparen))
1842 return Error(ParenLoc, "expected ')'");
1843 if (!isPowerOf2_32(Alignment))
1844 return Error(AlignLoc, "stack alignment is not a power of two");
1845 return false;
1846}
Devang Patelea8a4b92009-09-17 23:04:48 +00001847
Chris Lattner28f1eeb2009-12-30 05:14:00 +00001848/// ParseIndexList - This parses the index list for an insert/extractvalue
1849/// instruction. This sets AteExtraComma in the case where we eat an extra
1850/// comma at the end of the line and find that it is followed by metadata.
1851/// Clients that don't allow metadata can call the version of this function that
1852/// only takes one argument.
1853///
Chris Lattnerac161bf2009-01-02 07:01:27 +00001854/// ParseIndexList
1855/// ::= (',' uint32)+
Chris Lattner28f1eeb2009-12-30 05:14:00 +00001856///
1857bool LLParser::ParseIndexList(SmallVectorImpl<unsigned> &Indices,
1858 bool &AteExtraComma) {
1859 AteExtraComma = false;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00001860
Chris Lattnerac161bf2009-01-02 07:01:27 +00001861 if (Lex.getKind() != lltok::comma)
1862 return TokError("expected ',' as start of index list");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001863
Chris Lattner3822f632009-01-02 08:05:26 +00001864 while (EatIfPresent(lltok::comma)) {
Chris Lattner28f1eeb2009-12-30 05:14:00 +00001865 if (Lex.getKind() == lltok::MetadataVar) {
David Majnemer7ccc34d2015-02-16 09:18:13 +00001866 if (Indices.empty()) return TokError("expected index");
Chris Lattner28f1eeb2009-12-30 05:14:00 +00001867 AteExtraComma = true;
1868 return false;
1869 }
Nick Lewycky83e47112010-09-29 23:32:20 +00001870 unsigned Idx = 0;
Chris Lattner3822f632009-01-02 08:05:26 +00001871 if (ParseUInt32(Idx)) return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001872 Indices.push_back(Idx);
1873 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001874
Chris Lattnerac161bf2009-01-02 07:01:27 +00001875 return false;
1876}
1877
1878//===----------------------------------------------------------------------===//
1879// Type Parsing.
1880//===----------------------------------------------------------------------===//
1881
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001882/// ParseType - Parse a type.
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00001883bool LLParser::ParseType(Type *&Result, const Twine &Msg, bool AllowVoid) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001884 SMLoc TypeLoc = Lex.getLoc();
Chris Lattnerac161bf2009-01-02 07:01:27 +00001885 switch (Lex.getKind()) {
1886 default:
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00001887 return TokError(Msg);
Chris Lattnerac161bf2009-01-02 07:01:27 +00001888 case lltok::Type:
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001889 // Type ::= 'float' | 'void' (etc)
Chris Lattnerac161bf2009-01-02 07:01:27 +00001890 Result = Lex.getTyVal();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001891 Lex.Lex();
Chris Lattnerac161bf2009-01-02 07:01:27 +00001892 break;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001893 case lltok::lbrace:
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001894 // Type ::= StructType
1895 if (ParseAnonStructType(Result, false))
Chris Lattnerac161bf2009-01-02 07:01:27 +00001896 return true;
1897 break;
1898 case lltok::lsquare:
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001899 // Type ::= '[' ... ']'
Chris Lattnerac161bf2009-01-02 07:01:27 +00001900 Lex.Lex(); // eat the lsquare.
1901 if (ParseArrayVectorType(Result, false))
1902 return true;
1903 break;
1904 case lltok::less: // Either vector or packed struct.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001905 // Type ::= '<' ... '>'
Chris Lattner3822f632009-01-02 08:05:26 +00001906 Lex.Lex();
1907 if (Lex.getKind() == lltok::lbrace) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001908 if (ParseAnonStructType(Result, true) ||
Chris Lattner3822f632009-01-02 08:05:26 +00001909 ParseToken(lltok::greater, "expected '>' at end of packed struct"))
Chris Lattnerac161bf2009-01-02 07:01:27 +00001910 return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001911 } else if (ParseArrayVectorType(Result, true))
1912 return true;
1913 break;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001914 case lltok::LocalVar: {
1915 // Type ::= %foo
1916 std::pair<Type*, LocTy> &Entry = NamedTypes[Lex.getStrVal()];
Michael Ilseman26ee2b82012-11-15 22:34:00 +00001917
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001918 // If the type hasn't been defined yet, create a forward definition and
1919 // remember where that forward def'n was seen (in case it never is defined).
Craig Topper2617dcc2014-04-15 06:32:26 +00001920 if (!Entry.first) {
Chris Lattner335d3992011-08-12 18:06:37 +00001921 Entry.first = StructType::create(Context, Lex.getStrVal());
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001922 Entry.second = Lex.getLoc();
Chris Lattnerac161bf2009-01-02 07:01:27 +00001923 }
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001924 Result = Entry.first;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001925 Lex.Lex();
1926 break;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001927 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001928
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001929 case lltok::LocalVarID: {
1930 // Type ::= %4
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001931 std::pair<Type*, LocTy> &Entry = NumberedTypes[Lex.getUIntVal()];
Michael Ilseman26ee2b82012-11-15 22:34:00 +00001932
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001933 // If the type hasn't been defined yet, create a forward definition and
1934 // remember where that forward def'n was seen (in case it never is defined).
Craig Topper2617dcc2014-04-15 06:32:26 +00001935 if (!Entry.first) {
Chris Lattner335d3992011-08-12 18:06:37 +00001936 Entry.first = StructType::create(Context);
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001937 Entry.second = Lex.getLoc();
Chris Lattnerac161bf2009-01-02 07:01:27 +00001938 }
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001939 Result = Entry.first;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001940 Lex.Lex();
1941 break;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001942 }
1943 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001944
1945 // Parse the type suffixes.
Chris Lattnerac161bf2009-01-02 07:01:27 +00001946 while (1) {
1947 switch (Lex.getKind()) {
1948 // End of type.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001949 default:
1950 if (!AllowVoid && Result->isVoidTy())
1951 return Error(TypeLoc, "void type only allowed for function results");
1952 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001953
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001954 // Type ::= Type '*'
Chris Lattnerac161bf2009-01-02 07:01:27 +00001955 case lltok::star:
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001956 if (Result->isLabelTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00001957 return TokError("basic block pointers are invalid");
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001958 if (Result->isVoidTy())
1959 return TokError("pointers to void are invalid - use i8* instead");
1960 if (!PointerType::isValidElementType(Result))
Nick Lewycky0aa6a742009-06-07 07:26:46 +00001961 return TokError("pointer to this type is invalid");
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001962 Result = PointerType::getUnqual(Result);
Chris Lattnerac161bf2009-01-02 07:01:27 +00001963 Lex.Lex();
1964 break;
1965
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001966 // Type ::= Type 'addrspace' '(' uint32 ')' '*'
Chris Lattnerac161bf2009-01-02 07:01:27 +00001967 case lltok::kw_addrspace: {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001968 if (Result->isLabelTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00001969 return TokError("basic block pointers are invalid");
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001970 if (Result->isVoidTy())
Dan Gohman9280a682009-02-09 17:41:21 +00001971 return TokError("pointers to void are invalid; use i8* instead");
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001972 if (!PointerType::isValidElementType(Result))
Nick Lewycky0aa6a742009-06-07 07:26:46 +00001973 return TokError("pointer to this type is invalid");
Chris Lattnerac161bf2009-01-02 07:01:27 +00001974 unsigned AddrSpace;
1975 if (ParseOptionalAddrSpace(AddrSpace) ||
1976 ParseToken(lltok::star, "expected '*' in address space"))
1977 return true;
1978
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001979 Result = PointerType::get(Result, AddrSpace);
Chris Lattnerac161bf2009-01-02 07:01:27 +00001980 break;
1981 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001982
Chris Lattnerac161bf2009-01-02 07:01:27 +00001983 /// Types '(' ArgTypeListI ')' OptFuncAttrs
1984 case lltok::lparen:
1985 if (ParseFunctionType(Result))
1986 return true;
1987 break;
1988 }
1989 }
1990}
1991
1992/// ParseParameterList
1993/// ::= '(' ')'
1994/// ::= '(' Arg (',' Arg)* ')'
1995/// Arg
1996/// ::= Type OptionalAttributes Value OptionalAttributes
1997bool LLParser::ParseParameterList(SmallVectorImpl<ParamInfo> &ArgList,
Reid Kleckner83498642014-08-26 00:33:28 +00001998 PerFunctionState &PFS, bool IsMustTailCall,
1999 bool InVarArgsFunc) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002000 if (ParseToken(lltok::lparen, "expected '(' in call"))
2001 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002002
Bill Wendlingfe0021a2013-01-31 00:29:54 +00002003 unsigned AttrIndex = 1;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002004 while (Lex.getKind() != lltok::rparen) {
2005 // If this isn't the first argument, we need a comma.
2006 if (!ArgList.empty() &&
2007 ParseToken(lltok::comma, "expected ',' in argument list"))
2008 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002009
Reid Kleckner83498642014-08-26 00:33:28 +00002010 // Parse an ellipsis if this is a musttail call in a variadic function.
2011 if (Lex.getKind() == lltok::dotdotdot) {
2012 const char *Msg = "unexpected ellipsis in argument list for ";
2013 if (!IsMustTailCall)
2014 return TokError(Twine(Msg) + "non-musttail call");
2015 if (!InVarArgsFunc)
2016 return TokError(Twine(Msg) + "musttail call in non-varargs function");
2017 Lex.Lex(); // Lex the '...', it is purely for readability.
2018 return ParseToken(lltok::rparen, "expected ')' at end of argument list");
2019 }
2020
Chris Lattnerac161bf2009-01-02 07:01:27 +00002021 // Parse the argument.
2022 LocTy ArgLoc;
Craig Topper2617dcc2014-04-15 06:32:26 +00002023 Type *ArgTy = nullptr;
Bill Wendling50d27842012-10-15 20:35:56 +00002024 AttrBuilder ArgAttrs;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002025 Value *V;
Victor Hernandezfa232232009-12-03 23:40:58 +00002026 if (ParseType(ArgTy, ArgLoc))
Chris Lattnerac161bf2009-01-02 07:01:27 +00002027 return true;
Victor Hernandezfa232232009-12-03 23:40:58 +00002028
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00002029 if (ArgTy->isMetadataTy()) {
2030 if (ParseMetadataAsValue(V, PFS))
2031 return true;
2032 } else {
2033 // Otherwise, handle normal operands.
2034 if (ParseOptionalParamAttrs(ArgAttrs) || ParseValue(ArgTy, V, PFS))
2035 return true;
2036 }
Bill Wendlingfe0021a2013-01-31 00:29:54 +00002037 ArgList.push_back(ParamInfo(ArgLoc, V, AttributeSet::get(V->getContext(),
2038 AttrIndex++,
2039 ArgAttrs)));
Chris Lattnerac161bf2009-01-02 07:01:27 +00002040 }
2041
Reid Kleckner83498642014-08-26 00:33:28 +00002042 if (IsMustTailCall && InVarArgsFunc)
2043 return TokError("expected '...' at end of argument list for musttail call "
2044 "in varargs function");
2045
Chris Lattnerac161bf2009-01-02 07:01:27 +00002046 Lex.Lex(); // Lex the ')'.
2047 return false;
2048}
2049
Sanjoy Dasb513a9f2015-09-24 23:34:52 +00002050/// ParseOptionalOperandBundles
2051/// ::= /*empty*/
2052/// ::= '[' OperandBundle [, OperandBundle ]* ']'
2053///
2054/// OperandBundle
2055/// ::= bundle-tag '(' ')'
2056/// ::= bundle-tag '(' Type Value [, Type Value ]* ')'
2057///
2058/// bundle-tag ::= String Constant
2059bool LLParser::ParseOptionalOperandBundles(
2060 SmallVectorImpl<OperandBundleDef> &BundleList, PerFunctionState &PFS) {
2061 LocTy BeginLoc = Lex.getLoc();
2062 if (!EatIfPresent(lltok::lsquare))
2063 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002064
Sanjoy Dasb513a9f2015-09-24 23:34:52 +00002065 while (Lex.getKind() != lltok::rsquare) {
2066 // If this isn't the first operand bundle, we need a comma.
2067 if (!BundleList.empty() &&
2068 ParseToken(lltok::comma, "expected ',' in input list"))
2069 return true;
2070
2071 std::string Tag;
2072 if (ParseStringConstant(Tag))
2073 return true;
2074
Sanjoy Dasb513a9f2015-09-24 23:34:52 +00002075 if (ParseToken(lltok::lparen, "expected '(' in operand bundle"))
2076 return true;
2077
Sanjoy Dasf79d3442015-11-18 08:30:07 +00002078 std::vector<Value *> Inputs;
Sanjoy Dasb513a9f2015-09-24 23:34:52 +00002079 while (Lex.getKind() != lltok::rparen) {
2080 // If this isn't the first input, we need a comma.
Sanjoy Dasf79d3442015-11-18 08:30:07 +00002081 if (!Inputs.empty() &&
Sanjoy Dasb513a9f2015-09-24 23:34:52 +00002082 ParseToken(lltok::comma, "expected ',' in input list"))
2083 return true;
2084
2085 Type *Ty = nullptr;
2086 Value *Input = nullptr;
2087 if (ParseType(Ty) || ParseValue(Ty, Input, PFS))
2088 return true;
Sanjoy Dasf79d3442015-11-18 08:30:07 +00002089 Inputs.push_back(Input);
Sanjoy Dasb513a9f2015-09-24 23:34:52 +00002090 }
2091
Sanjoy Dasf79d3442015-11-18 08:30:07 +00002092 BundleList.emplace_back(std::move(Tag), std::move(Inputs));
2093
Sanjoy Dasb513a9f2015-09-24 23:34:52 +00002094 Lex.Lex(); // Lex the ')'.
2095 }
2096
2097 if (BundleList.empty())
2098 return Error(BeginLoc, "operand bundle set must not be empty");
2099
2100 Lex.Lex(); // Lex the ']'.
2101 return false;
2102}
Chris Lattnerac161bf2009-01-02 07:01:27 +00002103
Chris Lattner2ed06b42009-01-05 18:34:07 +00002104/// ParseArgumentList - Parse the argument list for a function type or function
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002105/// prototype.
Chris Lattnerac161bf2009-01-02 07:01:27 +00002106/// ::= '(' ArgTypeListI ')'
2107/// ArgTypeListI
2108/// ::= /*empty*/
2109/// ::= '...'
2110/// ::= ArgTypeList ',' '...'
2111/// ::= ArgType (',' ArgType)*
Chris Lattner2ed06b42009-01-05 18:34:07 +00002112///
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002113bool LLParser::ParseArgumentList(SmallVectorImpl<ArgInfo> &ArgList,
2114 bool &isVarArg){
Chris Lattnerac161bf2009-01-02 07:01:27 +00002115 isVarArg = false;
2116 assert(Lex.getKind() == lltok::lparen);
2117 Lex.Lex(); // eat the (.
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002118
Chris Lattnerac161bf2009-01-02 07:01:27 +00002119 if (Lex.getKind() == lltok::rparen) {
2120 // empty
2121 } else if (Lex.getKind() == lltok::dotdotdot) {
2122 isVarArg = true;
2123 Lex.Lex();
2124 } else {
2125 LocTy TypeLoc = Lex.getLoc();
Craig Topper2617dcc2014-04-15 06:32:26 +00002126 Type *ArgTy = nullptr;
Bill Wendling50d27842012-10-15 20:35:56 +00002127 AttrBuilder Attrs;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002128 std::string Name;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002129
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002130 if (ParseType(ArgTy) ||
Bill Wendling34c2eb22012-12-04 23:40:58 +00002131 ParseOptionalParamAttrs(Attrs)) return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002132
Chris Lattnerfdd87902009-10-05 05:54:46 +00002133 if (ArgTy->isVoidTy())
Chris Lattnerf880ca22009-03-09 04:49:14 +00002134 return Error(TypeLoc, "argument can not have void type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002135
Chris Lattnerdef19492011-06-17 06:36:20 +00002136 if (Lex.getKind() == lltok::LocalVar) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002137 Name = Lex.getStrVal();
2138 Lex.Lex();
2139 }
Chris Lattner3822f632009-01-02 08:05:26 +00002140
Nick Lewycky0aa6a742009-06-07 07:26:46 +00002141 if (!FunctionType::isValidArgumentType(ArgTy))
Chris Lattner3822f632009-01-02 08:05:26 +00002142 return Error(TypeLoc, "invalid type for function argument");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002143
Bill Wendlingfe0021a2013-01-31 00:29:54 +00002144 unsigned AttrIndex = 1;
Benjamin Kramerf5e2fc42015-05-29 19:43:39 +00002145 ArgList.emplace_back(TypeLoc, ArgTy, AttributeSet::get(ArgTy->getContext(),
2146 AttrIndex++, Attrs),
2147 std::move(Name));
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002148
Chris Lattner3822f632009-01-02 08:05:26 +00002149 while (EatIfPresent(lltok::comma)) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002150 // Handle ... at end of arg list.
Chris Lattner3822f632009-01-02 08:05:26 +00002151 if (EatIfPresent(lltok::dotdotdot)) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002152 isVarArg = true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002153 break;
2154 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002155
Chris Lattnerac161bf2009-01-02 07:01:27 +00002156 // Otherwise must be an argument type.
2157 TypeLoc = Lex.getLoc();
Bill Wendling34c2eb22012-12-04 23:40:58 +00002158 if (ParseType(ArgTy) || ParseOptionalParamAttrs(Attrs)) return true;
Chris Lattner3822f632009-01-02 08:05:26 +00002159
Chris Lattnerfdd87902009-10-05 05:54:46 +00002160 if (ArgTy->isVoidTy())
Chris Lattnerf880ca22009-03-09 04:49:14 +00002161 return Error(TypeLoc, "argument can not have void type");
2162
Chris Lattnerdef19492011-06-17 06:36:20 +00002163 if (Lex.getKind() == lltok::LocalVar) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002164 Name = Lex.getStrVal();
2165 Lex.Lex();
2166 } else {
2167 Name = "";
2168 }
Chris Lattner3822f632009-01-02 08:05:26 +00002169
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002170 if (!ArgTy->isFirstClassType())
Chris Lattner3822f632009-01-02 08:05:26 +00002171 return Error(TypeLoc, "invalid type for function argument");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002172
Benjamin Kramerf5e2fc42015-05-29 19:43:39 +00002173 ArgList.emplace_back(
2174 TypeLoc, ArgTy,
2175 AttributeSet::get(ArgTy->getContext(), AttrIndex++, Attrs),
2176 std::move(Name));
Chris Lattnerac161bf2009-01-02 07:01:27 +00002177 }
2178 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002179
Chris Lattner3822f632009-01-02 08:05:26 +00002180 return ParseToken(lltok::rparen, "expected ')' at end of argument list");
Chris Lattnerac161bf2009-01-02 07:01:27 +00002181}
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002182
Chris Lattnerac161bf2009-01-02 07:01:27 +00002183/// ParseFunctionType
2184/// ::= Type ArgumentList OptionalAttrs
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002185bool LLParser::ParseFunctionType(Type *&Result) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002186 assert(Lex.getKind() == lltok::lparen);
2187
Chris Lattnerce473c72009-01-05 08:04:33 +00002188 if (!FunctionType::isValidReturnType(Result))
2189 return TokError("invalid function return type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002190
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002191 SmallVector<ArgInfo, 8> ArgList;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002192 bool isVarArg;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002193 if (ParseArgumentList(ArgList, isVarArg))
Chris Lattnerac161bf2009-01-02 07:01:27 +00002194 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002195
Chris Lattnerac161bf2009-01-02 07:01:27 +00002196 // Reject names on the arguments lists.
2197 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
2198 if (!ArgList[i].Name.empty())
2199 return Error(ArgList[i].Loc, "argument name invalid in function type");
Bill Wendlingfe0021a2013-01-31 00:29:54 +00002200 if (ArgList[i].Attrs.hasAttributes(i + 1))
Chris Lattner6bc5c892011-06-17 17:37:13 +00002201 return Error(ArgList[i].Loc,
2202 "argument attributes invalid in function type");
Chris Lattnerac161bf2009-01-02 07:01:27 +00002203 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002204
Jay Foadb804a2b2011-07-12 14:06:48 +00002205 SmallVector<Type*, 16> ArgListTy;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002206 for (unsigned i = 0, e = ArgList.size(); i != e; ++i)
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002207 ArgListTy.push_back(ArgList[i].Ty);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002208
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002209 Result = FunctionType::get(Result, ArgListTy, isVarArg);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002210 return false;
2211}
2212
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002213/// ParseAnonStructType - Parse an anonymous struct type, which is inlined into
2214/// other structs.
2215bool LLParser::ParseAnonStructType(Type *&Result, bool Packed) {
2216 SmallVector<Type*, 8> Elts;
2217 if (ParseStructBody(Elts)) return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002218
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002219 Result = StructType::get(Context, Elts, Packed);
2220 return false;
2221}
2222
2223/// ParseStructDefinition - Parse a struct in a 'type' definition.
2224bool LLParser::ParseStructDefinition(SMLoc TypeLoc, StringRef Name,
2225 std::pair<Type*, LocTy> &Entry,
2226 Type *&ResultTy) {
2227 // If the type was already defined, diagnose the redefinition.
2228 if (Entry.first && !Entry.second.isValid())
2229 return Error(TypeLoc, "redefinition of type");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002230
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002231 // If we have opaque, just return without filling in the definition for the
2232 // struct. This counts as a definition as far as the .ll file goes.
2233 if (EatIfPresent(lltok::kw_opaque)) {
2234 // This type is being defined, so clear the location to indicate this.
2235 Entry.second = SMLoc();
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002236
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002237 // If this type number has never been uttered, create it.
Craig Topper2617dcc2014-04-15 06:32:26 +00002238 if (!Entry.first)
Chris Lattner335d3992011-08-12 18:06:37 +00002239 Entry.first = StructType::create(Context, Name);
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002240 ResultTy = Entry.first;
2241 return false;
2242 }
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002243
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002244 // If the type starts with '<', then it is either a packed struct or a vector.
2245 bool isPacked = EatIfPresent(lltok::less);
2246
2247 // If we don't have a struct, then we have a random type alias, which we
2248 // accept for compatibility with old files. These types are not allowed to be
2249 // forward referenced and not allowed to be recursive.
2250 if (Lex.getKind() != lltok::lbrace) {
2251 if (Entry.first)
2252 return Error(TypeLoc, "forward references to non-struct type");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002253
Craig Topper2617dcc2014-04-15 06:32:26 +00002254 ResultTy = nullptr;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002255 if (isPacked)
2256 return ParseArrayVectorType(ResultTy, true);
2257 return ParseType(ResultTy);
2258 }
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002259
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002260 // This type is being defined, so clear the location to indicate this.
2261 Entry.second = SMLoc();
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002262
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002263 // If this type number has never been uttered, create it.
Craig Topper2617dcc2014-04-15 06:32:26 +00002264 if (!Entry.first)
Chris Lattner335d3992011-08-12 18:06:37 +00002265 Entry.first = StructType::create(Context, Name);
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002266
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002267 StructType *STy = cast<StructType>(Entry.first);
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002268
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002269 SmallVector<Type*, 8> Body;
2270 if (ParseStructBody(Body) ||
2271 (isPacked && ParseToken(lltok::greater, "expected '>' in packed struct")))
2272 return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002273
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002274 STy->setBody(Body, isPacked);
2275 ResultTy = STy;
2276 return false;
2277}
2278
2279
Chris Lattnerac161bf2009-01-02 07:01:27 +00002280/// ParseStructType: Handles packed and unpacked types. </> parsed elsewhere.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002281/// StructType
Chris Lattnerac161bf2009-01-02 07:01:27 +00002282/// ::= '{' '}'
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002283/// ::= '{' Type (',' Type)* '}'
Chris Lattnerac161bf2009-01-02 07:01:27 +00002284/// ::= '<' '{' '}' '>'
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002285/// ::= '<' '{' Type (',' Type)* '}' '>'
2286bool LLParser::ParseStructBody(SmallVectorImpl<Type*> &Body) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002287 assert(Lex.getKind() == lltok::lbrace);
2288 Lex.Lex(); // Consume the '{'
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002289
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002290 // Handle the empty struct.
2291 if (EatIfPresent(lltok::rbrace))
Chris Lattnerac161bf2009-01-02 07:01:27 +00002292 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002293
Chris Lattnerf880ca22009-03-09 04:49:14 +00002294 LocTy EltTyLoc = Lex.getLoc();
Craig Topper2617dcc2014-04-15 06:32:26 +00002295 Type *Ty = nullptr;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002296 if (ParseType(Ty)) return true;
2297 Body.push_back(Ty);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002298
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002299 if (!StructType::isValidElementType(Ty))
Nick Lewycky0aa6a742009-06-07 07:26:46 +00002300 return Error(EltTyLoc, "invalid element type for struct");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002301
Chris Lattner3822f632009-01-02 08:05:26 +00002302 while (EatIfPresent(lltok::comma)) {
Chris Lattnerf880ca22009-03-09 04:49:14 +00002303 EltTyLoc = Lex.getLoc();
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002304 if (ParseType(Ty)) return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002305
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002306 if (!StructType::isValidElementType(Ty))
Nick Lewycky0aa6a742009-06-07 07:26:46 +00002307 return Error(EltTyLoc, "invalid element type for struct");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002308
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002309 Body.push_back(Ty);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002310 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002311
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002312 return ParseToken(lltok::rbrace, "expected '}' at end of struct");
Chris Lattnerac161bf2009-01-02 07:01:27 +00002313}
2314
2315/// ParseArrayVectorType - Parse an array or vector type, assuming the first
2316/// token has already been consumed.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002317/// Type
Chris Lattnerac161bf2009-01-02 07:01:27 +00002318/// ::= '[' APSINTVAL 'x' Types ']'
2319/// ::= '<' APSINTVAL 'x' Types '>'
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002320bool LLParser::ParseArrayVectorType(Type *&Result, bool isVector) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002321 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned() ||
2322 Lex.getAPSIntVal().getBitWidth() > 64)
2323 return TokError("expected number in address space");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002324
Chris Lattnerac161bf2009-01-02 07:01:27 +00002325 LocTy SizeLoc = Lex.getLoc();
2326 uint64_t Size = Lex.getAPSIntVal().getZExtValue();
Chris Lattner3822f632009-01-02 08:05:26 +00002327 Lex.Lex();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002328
Chris Lattner3822f632009-01-02 08:05:26 +00002329 if (ParseToken(lltok::kw_x, "expected 'x' after element count"))
2330 return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002331
2332 LocTy TypeLoc = Lex.getLoc();
Craig Topper2617dcc2014-04-15 06:32:26 +00002333 Type *EltTy = nullptr;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002334 if (ParseType(EltTy)) return true;
Chris Lattnerf880ca22009-03-09 04:49:14 +00002335
Chris Lattner3822f632009-01-02 08:05:26 +00002336 if (ParseToken(isVector ? lltok::greater : lltok::rsquare,
2337 "expected end of sequential type"))
2338 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002339
Chris Lattnerac161bf2009-01-02 07:01:27 +00002340 if (isVector) {
Chris Lattnerbb1fe8a2009-02-28 18:12:41 +00002341 if (Size == 0)
2342 return Error(SizeLoc, "zero element vector is illegal");
Chris Lattnerac161bf2009-01-02 07:01:27 +00002343 if ((unsigned)Size != Size)
2344 return Error(SizeLoc, "size too large for vector");
Nick Lewycky0aa6a742009-06-07 07:26:46 +00002345 if (!VectorType::isValidElementType(EltTy))
Duncan Sandse6beec62012-11-13 12:59:33 +00002346 return Error(TypeLoc, "invalid vector element type");
Owen Anderson4056ca92009-07-29 22:17:13 +00002347 Result = VectorType::get(EltTy, unsigned(Size));
Chris Lattnerac161bf2009-01-02 07:01:27 +00002348 } else {
Nick Lewycky0aa6a742009-06-07 07:26:46 +00002349 if (!ArrayType::isValidElementType(EltTy))
Chris Lattnerac161bf2009-01-02 07:01:27 +00002350 return Error(TypeLoc, "invalid array element type");
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002351 Result = ArrayType::get(EltTy, Size);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002352 }
2353 return false;
2354}
2355
2356//===----------------------------------------------------------------------===//
2357// Function Semantic Analysis.
2358//===----------------------------------------------------------------------===//
2359
Chris Lattner3432c622009-10-28 03:39:23 +00002360LLParser::PerFunctionState::PerFunctionState(LLParser &p, Function &f,
2361 int functionNumber)
2362 : P(p), F(f), FunctionNumber(functionNumber) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002363
2364 // Insert unnamed arguments into the NumberedVals list.
Duncan P. N. Exon Smithac331fb2015-10-20 01:12:49 +00002365 for (Argument &A : F.args())
2366 if (!A.hasName())
2367 NumberedVals.push_back(&A);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002368}
2369
2370LLParser::PerFunctionState::~PerFunctionState() {
2371 // If there were any forward referenced non-basicblock values, delete them.
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002372
David Blaikie9ebdc692015-09-21 21:07:50 +00002373 for (const auto &P : ForwardRefVals) {
2374 if (isa<BasicBlock>(P.second.first))
2375 continue;
2376 P.second.first->replaceAllUsesWith(
2377 UndefValue::get(P.second.first->getType()));
2378 delete P.second.first;
2379 }
2380
2381 for (const auto &P : ForwardRefValIDs) {
2382 if (isa<BasicBlock>(P.second.first))
2383 continue;
2384 P.second.first->replaceAllUsesWith(
2385 UndefValue::get(P.second.first->getType()));
2386 delete P.second.first;
2387 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00002388}
2389
Chris Lattner3432c622009-10-28 03:39:23 +00002390bool LLParser::PerFunctionState::FinishFunction() {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002391 if (!ForwardRefVals.empty())
2392 return P.Error(ForwardRefVals.begin()->second.second,
2393 "use of undefined value '%" + ForwardRefVals.begin()->first +
2394 "'");
2395 if (!ForwardRefValIDs.empty())
2396 return P.Error(ForwardRefValIDs.begin()->second.second,
2397 "use of undefined value '%" +
Benjamin Kramerc7583112010-09-27 17:42:11 +00002398 Twine(ForwardRefValIDs.begin()->first) + "'");
Chris Lattnerac161bf2009-01-02 07:01:27 +00002399 return false;
2400}
2401
2402
2403/// GetVal - Get a value with the specified name or ID, creating a
2404/// forward reference record if needed. This can return null if the value
2405/// exists but does not have the right type.
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00002406Value *LLParser::PerFunctionState::GetVal(const std::string &Name, Type *Ty,
David Majnemer8a1c45d2015-12-12 05:38:55 +00002407 LocTy Loc) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002408 // Look this name up in the normal function symbol table.
2409 Value *Val = F.getValueSymbolTable().lookup(Name);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002410
Chris Lattnerac161bf2009-01-02 07:01:27 +00002411 // If this is a forward reference for the value, see if we already created a
2412 // forward ref record.
Craig Topper2617dcc2014-04-15 06:32:26 +00002413 if (!Val) {
David Blaikie9ebdc692015-09-21 21:07:50 +00002414 auto I = ForwardRefVals.find(Name);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002415 if (I != ForwardRefVals.end())
2416 Val = I->second.first;
2417 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002418
Chris Lattnerac161bf2009-01-02 07:01:27 +00002419 // If we have the value in the symbol table or fwd-ref table, return it.
2420 if (Val) {
2421 if (Val->getType() == Ty) return Val;
Chris Lattnerfdd87902009-10-05 05:54:46 +00002422 if (Ty->isLabelTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00002423 P.Error(Loc, "'%" + Name + "' is not a basic block");
2424 else
2425 P.Error(Loc, "'%" + Name + "' defined with type '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00002426 getTypeString(Val->getType()) + "'");
Craig Topper2617dcc2014-04-15 06:32:26 +00002427 return nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002428 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002429
Chris Lattnerac161bf2009-01-02 07:01:27 +00002430 // Don't make placeholders with invalid type.
Duncan P. N. Exon Smith6a6e9cb2014-08-05 18:22:58 +00002431 if (!Ty->isFirstClassType()) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002432 P.Error(Loc, "invalid use of a non-first-class type");
Craig Topper2617dcc2014-04-15 06:32:26 +00002433 return nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002434 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002435
Chris Lattnerac161bf2009-01-02 07:01:27 +00002436 // Otherwise, create a new forward reference for this value and remember it.
2437 Value *FwdVal;
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00002438 if (Ty->isLabelTy()) {
Owen Anderson55f1c092009-08-13 21:58:54 +00002439 FwdVal = BasicBlock::Create(F.getContext(), Name, &F);
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00002440 } else {
David Majnemer8a1c45d2015-12-12 05:38:55 +00002441 FwdVal = new Argument(Ty, Name);
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00002442 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002443
Chris Lattnerac161bf2009-01-02 07:01:27 +00002444 ForwardRefVals[Name] = std::make_pair(FwdVal, Loc);
2445 return FwdVal;
2446}
2447
David Majnemer8a1c45d2015-12-12 05:38:55 +00002448Value *LLParser::PerFunctionState::GetVal(unsigned ID, Type *Ty, LocTy Loc) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002449 // Look this name up in the normal function symbol table.
Craig Topper2617dcc2014-04-15 06:32:26 +00002450 Value *Val = ID < NumberedVals.size() ? NumberedVals[ID] : nullptr;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002451
Chris Lattnerac161bf2009-01-02 07:01:27 +00002452 // If this is a forward reference for the value, see if we already created a
2453 // forward ref record.
Craig Topper2617dcc2014-04-15 06:32:26 +00002454 if (!Val) {
David Blaikie9ebdc692015-09-21 21:07:50 +00002455 auto I = ForwardRefValIDs.find(ID);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002456 if (I != ForwardRefValIDs.end())
2457 Val = I->second.first;
2458 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002459
Chris Lattnerac161bf2009-01-02 07:01:27 +00002460 // If we have the value in the symbol table or fwd-ref table, return it.
2461 if (Val) {
2462 if (Val->getType() == Ty) return Val;
Chris Lattnerfdd87902009-10-05 05:54:46 +00002463 if (Ty->isLabelTy())
Benjamin Kramerc7583112010-09-27 17:42:11 +00002464 P.Error(Loc, "'%" + Twine(ID) + "' is not a basic block");
Chris Lattnerac161bf2009-01-02 07:01:27 +00002465 else
Benjamin Kramerc7583112010-09-27 17:42:11 +00002466 P.Error(Loc, "'%" + Twine(ID) + "' defined with type '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00002467 getTypeString(Val->getType()) + "'");
Craig Topper2617dcc2014-04-15 06:32:26 +00002468 return nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002469 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002470
Duncan P. N. Exon Smith6a6e9cb2014-08-05 18:22:58 +00002471 if (!Ty->isFirstClassType()) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002472 P.Error(Loc, "invalid use of a non-first-class type");
Craig Topper2617dcc2014-04-15 06:32:26 +00002473 return nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002474 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002475
Chris Lattnerac161bf2009-01-02 07:01:27 +00002476 // Otherwise, create a new forward reference for this value and remember it.
2477 Value *FwdVal;
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00002478 if (Ty->isLabelTy()) {
Owen Anderson55f1c092009-08-13 21:58:54 +00002479 FwdVal = BasicBlock::Create(F.getContext(), "", &F);
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00002480 } else {
David Majnemer8a1c45d2015-12-12 05:38:55 +00002481 FwdVal = new Argument(Ty);
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00002482 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002483
Chris Lattnerac161bf2009-01-02 07:01:27 +00002484 ForwardRefValIDs[ID] = std::make_pair(FwdVal, Loc);
2485 return FwdVal;
2486}
2487
2488/// SetInstName - After an instruction is parsed and inserted into its
2489/// basic block, this installs its name.
2490bool LLParser::PerFunctionState::SetInstName(int NameID,
2491 const std::string &NameStr,
2492 LocTy NameLoc, Instruction *Inst) {
2493 // If this instruction has void type, it cannot have a name or ID specified.
Chris Lattnerfdd87902009-10-05 05:54:46 +00002494 if (Inst->getType()->isVoidTy()) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002495 if (NameID != -1 || !NameStr.empty())
2496 return P.Error(NameLoc, "instructions returning void cannot have a name");
2497 return false;
2498 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002499
Chris Lattnerac161bf2009-01-02 07:01:27 +00002500 // If this was a numbered instruction, verify that the instruction is the
2501 // expected value and resolve any forward references.
2502 if (NameStr.empty()) {
2503 // If neither a name nor an ID was specified, just use the next ID.
2504 if (NameID == -1)
2505 NameID = NumberedVals.size();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002506
Chris Lattnerac161bf2009-01-02 07:01:27 +00002507 if (unsigned(NameID) != NumberedVals.size())
2508 return P.Error(NameLoc, "instruction expected to be numbered '%" +
Benjamin Kramerc7583112010-09-27 17:42:11 +00002509 Twine(NumberedVals.size()) + "'");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002510
David Blaikie9ebdc692015-09-21 21:07:50 +00002511 auto FI = ForwardRefValIDs.find(NameID);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002512 if (FI != ForwardRefValIDs.end()) {
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00002513 Value *Sentinel = FI->second.first;
2514 if (Sentinel->getType() != Inst->getType())
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002515 return P.Error(NameLoc, "instruction forward referenced with type '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00002516 getTypeString(FI->second.first->getType()) + "'");
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00002517
2518 Sentinel->replaceAllUsesWith(Inst);
2519 delete Sentinel;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002520 ForwardRefValIDs.erase(FI);
2521 }
2522
2523 NumberedVals.push_back(Inst);
2524 return false;
2525 }
2526
2527 // Otherwise, the instruction had a name. Resolve forward refs and set it.
David Blaikie9ebdc692015-09-21 21:07:50 +00002528 auto FI = ForwardRefVals.find(NameStr);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002529 if (FI != ForwardRefVals.end()) {
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00002530 Value *Sentinel = FI->second.first;
2531 if (Sentinel->getType() != Inst->getType())
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002532 return P.Error(NameLoc, "instruction forward referenced with type '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00002533 getTypeString(FI->second.first->getType()) + "'");
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00002534
2535 Sentinel->replaceAllUsesWith(Inst);
2536 delete Sentinel;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002537 ForwardRefVals.erase(FI);
2538 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002539
Chris Lattnerac161bf2009-01-02 07:01:27 +00002540 // Set the name on the instruction.
2541 Inst->setName(NameStr);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002542
Benjamin Kramer1dc34b42010-10-16 11:28:23 +00002543 if (Inst->getName() != NameStr)
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002544 return P.Error(NameLoc, "multiple definition of local value named '" +
Chris Lattnerac161bf2009-01-02 07:01:27 +00002545 NameStr + "'");
2546 return false;
2547}
2548
2549/// GetBB - Get a basic block with the specified name or ID, creating a
2550/// forward reference record if needed.
2551BasicBlock *LLParser::PerFunctionState::GetBB(const std::string &Name,
2552 LocTy Loc) {
Owen Anderson576a9a22015-03-02 05:25:09 +00002553 return dyn_cast_or_null<BasicBlock>(GetVal(Name,
2554 Type::getLabelTy(F.getContext()), Loc));
Chris Lattnerac161bf2009-01-02 07:01:27 +00002555}
2556
2557BasicBlock *LLParser::PerFunctionState::GetBB(unsigned ID, LocTy Loc) {
Owen Anderson576a9a22015-03-02 05:25:09 +00002558 return dyn_cast_or_null<BasicBlock>(GetVal(ID,
2559 Type::getLabelTy(F.getContext()), Loc));
Chris Lattnerac161bf2009-01-02 07:01:27 +00002560}
2561
2562/// DefineBB - Define the specified basic block, which is either named or
2563/// unnamed. If there is an error, this returns null otherwise it returns
2564/// the block being defined.
2565BasicBlock *LLParser::PerFunctionState::DefineBB(const std::string &Name,
2566 LocTy Loc) {
2567 BasicBlock *BB;
2568 if (Name.empty())
2569 BB = GetBB(NumberedVals.size(), Loc);
2570 else
2571 BB = GetBB(Name, Loc);
Craig Topper2617dcc2014-04-15 06:32:26 +00002572 if (!BB) return nullptr; // Already diagnosed error.
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002573
Chris Lattnerac161bf2009-01-02 07:01:27 +00002574 // Move the block to the end of the function. Forward ref'd blocks are
2575 // inserted wherever they happen to be referenced.
2576 F.getBasicBlockList().splice(F.end(), F.getBasicBlockList(), BB);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002577
Chris Lattnerac161bf2009-01-02 07:01:27 +00002578 // Remove the block from forward ref sets.
2579 if (Name.empty()) {
2580 ForwardRefValIDs.erase(NumberedVals.size());
2581 NumberedVals.push_back(BB);
2582 } else {
2583 // BB forward references are already in the function symbol table.
2584 ForwardRefVals.erase(Name);
2585 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002586
Chris Lattnerac161bf2009-01-02 07:01:27 +00002587 return BB;
2588}
2589
2590//===----------------------------------------------------------------------===//
2591// Constants.
2592//===----------------------------------------------------------------------===//
2593
2594/// ParseValID - Parse an abstract value that doesn't necessarily have a
2595/// type implied. For example, if we parse "4" we don't know what integer type
2596/// it has. The value will later be combined with its type and checked for
Victor Hernandezb8fd1522010-01-10 07:14:18 +00002597/// sanity. PFS is used to convert function-local operands of metadata (since
2598/// metadata operands are not just parsed here but also converted to values).
2599/// PFS can be null when we are not parsing metadata values inside a function.
Victor Hernandezdc6e65a2010-01-05 22:22:14 +00002600bool LLParser::ParseValID(ValID &ID, PerFunctionState *PFS) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002601 ID.Loc = Lex.getLoc();
2602 switch (Lex.getKind()) {
2603 default: return TokError("expected value token");
2604 case lltok::GlobalID: // @42
2605 ID.UIntVal = Lex.getUIntVal();
2606 ID.Kind = ValID::t_GlobalID;
2607 break;
2608 case lltok::GlobalVar: // @foo
2609 ID.StrVal = Lex.getStrVal();
2610 ID.Kind = ValID::t_GlobalName;
2611 break;
2612 case lltok::LocalVarID: // %42
2613 ID.UIntVal = Lex.getUIntVal();
2614 ID.Kind = ValID::t_LocalID;
2615 break;
2616 case lltok::LocalVar: // %foo
Chris Lattnerac161bf2009-01-02 07:01:27 +00002617 ID.StrVal = Lex.getStrVal();
2618 ID.Kind = ValID::t_LocalName;
2619 break;
2620 case lltok::APSInt:
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002621 ID.APSIntVal = Lex.getAPSIntVal();
Chris Lattnerac161bf2009-01-02 07:01:27 +00002622 ID.Kind = ValID::t_APSInt;
2623 break;
2624 case lltok::APFloat:
2625 ID.APFloatVal = Lex.getAPFloatVal();
2626 ID.Kind = ValID::t_APFloat;
2627 break;
2628 case lltok::kw_true:
Owen Anderson23a204d2009-07-31 17:39:07 +00002629 ID.ConstantVal = ConstantInt::getTrue(Context);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002630 ID.Kind = ValID::t_Constant;
2631 break;
2632 case lltok::kw_false:
Owen Anderson23a204d2009-07-31 17:39:07 +00002633 ID.ConstantVal = ConstantInt::getFalse(Context);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002634 ID.Kind = ValID::t_Constant;
2635 break;
2636 case lltok::kw_null: ID.Kind = ValID::t_Null; break;
2637 case lltok::kw_undef: ID.Kind = ValID::t_Undef; break;
2638 case lltok::kw_zeroinitializer: ID.Kind = ValID::t_Zero; break;
David Majnemerf0f224d2015-11-11 21:57:16 +00002639 case lltok::kw_none: ID.Kind = ValID::t_None; break;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002640
Chris Lattnerac161bf2009-01-02 07:01:27 +00002641 case lltok::lbrace: {
2642 // ValID ::= '{' ConstVector '}'
2643 Lex.Lex();
2644 SmallVector<Constant*, 16> Elts;
2645 if (ParseGlobalValueVector(Elts) ||
2646 ParseToken(lltok::rbrace, "expected end of struct constant"))
2647 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002648
David Blaikieadbda4b2015-08-03 20:08:41 +00002649 ID.ConstantStructElts = make_unique<Constant *[]>(Elts.size());
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002650 ID.UIntVal = Elts.size();
David Blaikieadbda4b2015-08-03 20:08:41 +00002651 memcpy(ID.ConstantStructElts.get(), Elts.data(),
2652 Elts.size() * sizeof(Elts[0]));
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002653 ID.Kind = ValID::t_ConstantStruct;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002654 return false;
2655 }
2656 case lltok::less: {
2657 // ValID ::= '<' ConstVector '>' --> Vector.
2658 // ValID ::= '<' '{' ConstVector '}' '>' --> Packed Struct.
2659 Lex.Lex();
Chris Lattner3822f632009-01-02 08:05:26 +00002660 bool isPackedStruct = EatIfPresent(lltok::lbrace);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002661
Chris Lattnerac161bf2009-01-02 07:01:27 +00002662 SmallVector<Constant*, 16> Elts;
2663 LocTy FirstEltLoc = Lex.getLoc();
2664 if (ParseGlobalValueVector(Elts) ||
2665 (isPackedStruct &&
2666 ParseToken(lltok::rbrace, "expected end of packed struct")) ||
2667 ParseToken(lltok::greater, "expected end of constant"))
2668 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002669
Chris Lattnerac161bf2009-01-02 07:01:27 +00002670 if (isPackedStruct) {
David Blaikieadbda4b2015-08-03 20:08:41 +00002671 ID.ConstantStructElts = make_unique<Constant *[]>(Elts.size());
2672 memcpy(ID.ConstantStructElts.get(), Elts.data(),
2673 Elts.size() * sizeof(Elts[0]));
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002674 ID.UIntVal = Elts.size();
2675 ID.Kind = ValID::t_PackedConstantStruct;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002676 return false;
2677 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002678
Chris Lattnerac161bf2009-01-02 07:01:27 +00002679 if (Elts.empty())
2680 return Error(ID.Loc, "constant vector must not be empty");
2681
Duncan Sands9dff9be2010-02-15 16:12:20 +00002682 if (!Elts[0]->getType()->isIntegerTy() &&
Nadav Rotem3924cb02011-12-05 06:29:09 +00002683 !Elts[0]->getType()->isFloatingPointTy() &&
2684 !Elts[0]->getType()->isPointerTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00002685 return Error(FirstEltLoc,
Nadav Rotem3924cb02011-12-05 06:29:09 +00002686 "vector elements must have integer, pointer or floating point type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002687
Chris Lattnerac161bf2009-01-02 07:01:27 +00002688 // Verify that all the vector elements have the same type.
2689 for (unsigned i = 1, e = Elts.size(); i != e; ++i)
2690 if (Elts[i]->getType() != Elts[0]->getType())
2691 return Error(FirstEltLoc,
Benjamin Kramerc7583112010-09-27 17:42:11 +00002692 "vector element #" + Twine(i) +
Chris Lattner0f214eb2011-06-18 21:18:23 +00002693 " is not of type '" + getTypeString(Elts[0]->getType()));
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002694
Chris Lattner69229312011-02-15 00:14:00 +00002695 ID.ConstantVal = ConstantVector::get(Elts);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002696 ID.Kind = ValID::t_Constant;
2697 return false;
2698 }
2699 case lltok::lsquare: { // Array Constant
2700 Lex.Lex();
2701 SmallVector<Constant*, 16> Elts;
2702 LocTy FirstEltLoc = Lex.getLoc();
2703 if (ParseGlobalValueVector(Elts) ||
2704 ParseToken(lltok::rsquare, "expected end of array constant"))
2705 return true;
2706
2707 // Handle empty element.
2708 if (Elts.empty()) {
2709 // Use undef instead of an array because it's inconvenient to determine
2710 // the element type at this point, there being no elements to examine.
Chris Lattner998fa0a2009-01-05 07:52:51 +00002711 ID.Kind = ValID::t_EmptyArray;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002712 return false;
2713 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002714
Chris Lattnerac161bf2009-01-02 07:01:27 +00002715 if (!Elts[0]->getType()->isFirstClassType())
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002716 return Error(FirstEltLoc, "invalid array element type: " +
Chris Lattner0f214eb2011-06-18 21:18:23 +00002717 getTypeString(Elts[0]->getType()));
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002718
Owen Anderson4056ca92009-07-29 22:17:13 +00002719 ArrayType *ATy = ArrayType::get(Elts[0]->getType(), Elts.size());
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002720
Chris Lattnerac161bf2009-01-02 07:01:27 +00002721 // Verify all elements are correct type!
Chris Lattner59d0e3b2009-01-02 08:49:06 +00002722 for (unsigned i = 0, e = Elts.size(); i != e; ++i) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002723 if (Elts[i]->getType() != Elts[0]->getType())
2724 return Error(FirstEltLoc,
Benjamin Kramerc7583112010-09-27 17:42:11 +00002725 "array element #" + Twine(i) +
Chris Lattner0f214eb2011-06-18 21:18:23 +00002726 " is not of type '" + getTypeString(Elts[0]->getType()));
Chris Lattnerac161bf2009-01-02 07:01:27 +00002727 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002728
Jay Foad83be3612011-06-22 09:24:39 +00002729 ID.ConstantVal = ConstantArray::get(ATy, Elts);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002730 ID.Kind = ValID::t_Constant;
2731 return false;
2732 }
2733 case lltok::kw_c: // c "foo"
2734 Lex.Lex();
Chris Lattnercf9e8f62012-02-05 02:29:43 +00002735 ID.ConstantVal = ConstantDataArray::getString(Context, Lex.getStrVal(),
2736 false);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002737 if (ParseToken(lltok::StringConstant, "expected string")) return true;
2738 ID.Kind = ValID::t_Constant;
2739 return false;
2740
2741 case lltok::kw_asm: {
Chad Rosier6f9c3852013-02-14 20:44:07 +00002742 // ValID ::= 'asm' SideEffect? AlignStack? IntelDialect? STRINGCONSTANT ','
2743 // STRINGCONSTANT
Chad Rosierd8c76102012-09-05 19:00:49 +00002744 bool HasSideEffect, AlignStack, AsmDialect;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002745 Lex.Lex();
2746 if (ParseOptionalToken(lltok::kw_sideeffect, HasSideEffect) ||
Dale Johannesen1cfb9582009-10-21 23:28:00 +00002747 ParseOptionalToken(lltok::kw_alignstack, AlignStack) ||
Chad Rosierd8c76102012-09-05 19:00:49 +00002748 ParseOptionalToken(lltok::kw_inteldialect, AsmDialect) ||
Chris Lattner3822f632009-01-02 08:05:26 +00002749 ParseStringConstant(ID.StrVal) ||
2750 ParseToken(lltok::comma, "expected comma in inline asm expression") ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00002751 ParseToken(lltok::StringConstant, "expected constraint string"))
2752 return true;
2753 ID.StrVal2 = Lex.getStrVal();
Chad Rosierf42fad62012-09-05 00:08:17 +00002754 ID.UIntVal = unsigned(HasSideEffect) | (unsigned(AlignStack)<<1) |
Chad Rosierd8c76102012-09-05 19:00:49 +00002755 (unsigned(AsmDialect)<<2);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002756 ID.Kind = ValID::t_InlineAsm;
2757 return false;
2758 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002759
Chris Lattner3432c622009-10-28 03:39:23 +00002760 case lltok::kw_blockaddress: {
2761 // ValID ::= 'blockaddress' '(' @foo ',' %bar ')'
2762 Lex.Lex();
2763
2764 ValID Fn, Label;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002765
Chris Lattner3432c622009-10-28 03:39:23 +00002766 if (ParseToken(lltok::lparen, "expected '(' in block address expression") ||
2767 ParseValID(Fn) ||
2768 ParseToken(lltok::comma, "expected comma in block address expression")||
2769 ParseValID(Label) ||
2770 ParseToken(lltok::rparen, "expected ')' in block address expression"))
2771 return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002772
Chris Lattner3432c622009-10-28 03:39:23 +00002773 if (Fn.Kind != ValID::t_GlobalID && Fn.Kind != ValID::t_GlobalName)
2774 return Error(Fn.Loc, "expected function name in blockaddress");
Chris Lattneraa99c942009-11-01 01:27:45 +00002775 if (Label.Kind != ValID::t_LocalID && Label.Kind != ValID::t_LocalName)
Chris Lattner3432c622009-10-28 03:39:23 +00002776 return Error(Label.Loc, "expected basic block name in blockaddress");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002777
Duncan P. N. Exon Smith17169902014-08-19 00:13:19 +00002778 // Try to find the function (but skip it if it's forward-referenced).
2779 GlobalValue *GV = nullptr;
2780 if (Fn.Kind == ValID::t_GlobalID) {
2781 if (Fn.UIntVal < NumberedVals.size())
2782 GV = NumberedVals[Fn.UIntVal];
2783 } else if (!ForwardRefVals.count(Fn.StrVal)) {
2784 GV = M->getNamedValue(Fn.StrVal);
2785 }
2786 Function *F = nullptr;
2787 if (GV) {
2788 // Confirm that it's actually a function with a definition.
2789 if (!isa<Function>(GV))
2790 return Error(Fn.Loc, "expected function name in blockaddress");
2791 F = cast<Function>(GV);
2792 if (F->isDeclaration())
2793 return Error(Fn.Loc, "cannot take blockaddress inside a declaration");
2794 }
2795
2796 if (!F) {
2797 // Make a global variable as a placeholder for this reference.
David Blaikieb9cc6592015-03-04 01:40:07 +00002798 GlobalValue *&FwdRef =
David Blaikie871b4112015-08-03 20:55:00 +00002799 ForwardRefBlockAddresses.insert(std::make_pair(
2800 std::move(Fn),
2801 std::map<ValID, GlobalValue *>()))
David Blaikieb9cc6592015-03-04 01:40:07 +00002802 .first->second.insert(std::make_pair(std::move(Label), nullptr))
2803 .first->second;
Duncan P. N. Exon Smith17169902014-08-19 00:13:19 +00002804 if (!FwdRef)
2805 FwdRef = new GlobalVariable(*M, Type::getInt8Ty(Context), false,
2806 GlobalValue::InternalLinkage, nullptr, "");
2807 ID.ConstantVal = FwdRef;
2808 ID.Kind = ValID::t_Constant;
2809 return false;
2810 }
2811
2812 // We found the function; now find the basic block. Don't use PFS, since we
2813 // might be inside a constant expression.
2814 BasicBlock *BB;
2815 if (BlockAddressPFS && F == &BlockAddressPFS->getFunction()) {
2816 if (Label.Kind == ValID::t_LocalID)
2817 BB = BlockAddressPFS->GetBB(Label.UIntVal, Label.Loc);
2818 else
2819 BB = BlockAddressPFS->GetBB(Label.StrVal, Label.Loc);
2820 if (!BB)
2821 return Error(Label.Loc, "referenced value is not a basic block");
2822 } else {
2823 if (Label.Kind == ValID::t_LocalID)
2824 return Error(Label.Loc, "cannot take address of numeric label after "
2825 "the function is defined");
2826 BB = dyn_cast_or_null<BasicBlock>(
2827 F->getValueSymbolTable().lookup(Label.StrVal));
2828 if (!BB)
2829 return Error(Label.Loc, "referenced value is not a basic block");
2830 }
2831
2832 ID.ConstantVal = BlockAddress::get(F, BB);
Chris Lattner3432c622009-10-28 03:39:23 +00002833 ID.Kind = ValID::t_Constant;
2834 return false;
2835 }
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002836
Chris Lattnerac161bf2009-01-02 07:01:27 +00002837 case lltok::kw_trunc:
2838 case lltok::kw_zext:
2839 case lltok::kw_sext:
2840 case lltok::kw_fptrunc:
2841 case lltok::kw_fpext:
2842 case lltok::kw_bitcast:
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002843 case lltok::kw_addrspacecast:
Chris Lattnerac161bf2009-01-02 07:01:27 +00002844 case lltok::kw_uitofp:
2845 case lltok::kw_sitofp:
2846 case lltok::kw_fptoui:
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002847 case lltok::kw_fptosi:
Chris Lattnerac161bf2009-01-02 07:01:27 +00002848 case lltok::kw_inttoptr:
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002849 case lltok::kw_ptrtoint: {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002850 unsigned Opc = Lex.getUIntVal();
Craig Topper2617dcc2014-04-15 06:32:26 +00002851 Type *DestTy = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002852 Constant *SrcVal;
2853 Lex.Lex();
2854 if (ParseToken(lltok::lparen, "expected '(' after constantexpr cast") ||
2855 ParseGlobalTypeAndValue(SrcVal) ||
Dan Gohman0b5d0422009-06-15 21:52:11 +00002856 ParseToken(lltok::kw_to, "expected 'to' in constantexpr cast") ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00002857 ParseType(DestTy) ||
2858 ParseToken(lltok::rparen, "expected ')' at end of constantexpr cast"))
2859 return true;
2860 if (!CastInst::castIsValid((Instruction::CastOps)Opc, SrcVal, DestTy))
2861 return Error(ID.Loc, "invalid cast opcode for cast from '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00002862 getTypeString(SrcVal->getType()) + "' to '" +
2863 getTypeString(DestTy) + "'");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002864 ID.ConstantVal = ConstantExpr::getCast((Instruction::CastOps)Opc,
Owen Anderson02a9da32009-07-01 23:57:11 +00002865 SrcVal, DestTy);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002866 ID.Kind = ValID::t_Constant;
2867 return false;
2868 }
2869 case lltok::kw_extractvalue: {
2870 Lex.Lex();
2871 Constant *Val;
2872 SmallVector<unsigned, 4> Indices;
2873 if (ParseToken(lltok::lparen, "expected '(' in extractvalue constantexpr")||
2874 ParseGlobalTypeAndValue(Val) ||
2875 ParseIndexList(Indices) ||
2876 ParseToken(lltok::rparen, "expected ')' in extractvalue constantexpr"))
2877 return true;
Devang Patel1cb51162009-11-03 19:06:07 +00002878
Chris Lattner392be582010-02-12 20:49:41 +00002879 if (!Val->getType()->isAggregateType())
2880 return Error(ID.Loc, "extractvalue operand must be aggregate type");
Jay Foad57aa6362011-07-13 10:26:04 +00002881 if (!ExtractValueInst::getIndexedType(Val->getType(), Indices))
Chris Lattnerac161bf2009-01-02 07:01:27 +00002882 return Error(ID.Loc, "invalid indices for extractvalue");
Jay Foad57aa6362011-07-13 10:26:04 +00002883 ID.ConstantVal = ConstantExpr::getExtractValue(Val, Indices);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002884 ID.Kind = ValID::t_Constant;
2885 return false;
2886 }
2887 case lltok::kw_insertvalue: {
2888 Lex.Lex();
2889 Constant *Val0, *Val1;
2890 SmallVector<unsigned, 4> Indices;
2891 if (ParseToken(lltok::lparen, "expected '(' in insertvalue constantexpr")||
2892 ParseGlobalTypeAndValue(Val0) ||
2893 ParseToken(lltok::comma, "expected comma in insertvalue constantexpr")||
2894 ParseGlobalTypeAndValue(Val1) ||
2895 ParseIndexList(Indices) ||
2896 ParseToken(lltok::rparen, "expected ')' in insertvalue constantexpr"))
2897 return true;
Chris Lattner392be582010-02-12 20:49:41 +00002898 if (!Val0->getType()->isAggregateType())
2899 return Error(ID.Loc, "insertvalue operand must be aggregate type");
David Majnemereba692d2015-02-23 07:13:52 +00002900 Type *IndexedType =
2901 ExtractValueInst::getIndexedType(Val0->getType(), Indices);
2902 if (!IndexedType)
Chris Lattnerac161bf2009-01-02 07:01:27 +00002903 return Error(ID.Loc, "invalid indices for insertvalue");
David Majnemereba692d2015-02-23 07:13:52 +00002904 if (IndexedType != Val1->getType())
2905 return Error(ID.Loc, "insertvalue operand and field disagree in type: '" +
2906 getTypeString(Val1->getType()) +
2907 "' instead of '" + getTypeString(IndexedType) +
2908 "'");
Jay Foad57aa6362011-07-13 10:26:04 +00002909 ID.ConstantVal = ConstantExpr::getInsertValue(Val0, Val1, Indices);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002910 ID.Kind = ValID::t_Constant;
2911 return false;
2912 }
2913 case lltok::kw_icmp:
Nick Lewyckya21d3da2009-07-08 03:04:38 +00002914 case lltok::kw_fcmp: {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002915 unsigned PredVal, Opc = Lex.getUIntVal();
2916 Constant *Val0, *Val1;
2917 Lex.Lex();
2918 if (ParseCmpPredicate(PredVal, Opc) ||
2919 ParseToken(lltok::lparen, "expected '(' in compare constantexpr") ||
2920 ParseGlobalTypeAndValue(Val0) ||
2921 ParseToken(lltok::comma, "expected comma in compare constantexpr") ||
2922 ParseGlobalTypeAndValue(Val1) ||
2923 ParseToken(lltok::rparen, "expected ')' in compare constantexpr"))
2924 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002925
Chris Lattnerac161bf2009-01-02 07:01:27 +00002926 if (Val0->getType() != Val1->getType())
2927 return Error(ID.Loc, "compare operands must have the same type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002928
Chris Lattnerac161bf2009-01-02 07:01:27 +00002929 CmpInst::Predicate Pred = (CmpInst::Predicate)PredVal;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002930
Chris Lattnerac161bf2009-01-02 07:01:27 +00002931 if (Opc == Instruction::FCmp) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00002932 if (!Val0->getType()->isFPOrFPVectorTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00002933 return Error(ID.Loc, "fcmp requires floating point operands");
Owen Anderson487375e2009-07-29 18:55:55 +00002934 ID.ConstantVal = ConstantExpr::getFCmp(Pred, Val0, Val1);
Nick Lewyckya21d3da2009-07-08 03:04:38 +00002935 } else {
2936 assert(Opc == Instruction::ICmp && "Unexpected opcode for CmpInst!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00002937 if (!Val0->getType()->isIntOrIntVectorTy() &&
Nadav Rotem3924cb02011-12-05 06:29:09 +00002938 !Val0->getType()->getScalarType()->isPointerTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00002939 return Error(ID.Loc, "icmp requires pointer or integer operands");
Owen Anderson487375e2009-07-29 18:55:55 +00002940 ID.ConstantVal = ConstantExpr::getICmp(Pred, Val0, Val1);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002941 }
2942 ID.Kind = ValID::t_Constant;
2943 return false;
2944 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002945
Chris Lattnerac161bf2009-01-02 07:01:27 +00002946 // Binary Operators.
2947 case lltok::kw_add:
Dan Gohmana5b96452009-06-04 22:49:04 +00002948 case lltok::kw_fadd:
Chris Lattnerac161bf2009-01-02 07:01:27 +00002949 case lltok::kw_sub:
Dan Gohmana5b96452009-06-04 22:49:04 +00002950 case lltok::kw_fsub:
Chris Lattnerac161bf2009-01-02 07:01:27 +00002951 case lltok::kw_mul:
Dan Gohmana5b96452009-06-04 22:49:04 +00002952 case lltok::kw_fmul:
Chris Lattnerac161bf2009-01-02 07:01:27 +00002953 case lltok::kw_udiv:
2954 case lltok::kw_sdiv:
2955 case lltok::kw_fdiv:
2956 case lltok::kw_urem:
2957 case lltok::kw_srem:
Chris Lattnera676c0f2011-02-07 16:40:21 +00002958 case lltok::kw_frem:
2959 case lltok::kw_shl:
2960 case lltok::kw_lshr:
2961 case lltok::kw_ashr: {
Dan Gohman9c7f8082009-07-27 16:11:46 +00002962 bool NUW = false;
2963 bool NSW = false;
2964 bool Exact = false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002965 unsigned Opc = Lex.getUIntVal();
2966 Constant *Val0, *Val1;
2967 Lex.Lex();
Dan Gohman9c7f8082009-07-27 16:11:46 +00002968 LocTy ModifierLoc = Lex.getLoc();
Chris Lattnera676c0f2011-02-07 16:40:21 +00002969 if (Opc == Instruction::Add || Opc == Instruction::Sub ||
2970 Opc == Instruction::Mul || Opc == Instruction::Shl) {
Dan Gohman9c7f8082009-07-27 16:11:46 +00002971 if (EatIfPresent(lltok::kw_nuw))
2972 NUW = true;
2973 if (EatIfPresent(lltok::kw_nsw)) {
2974 NSW = true;
2975 if (EatIfPresent(lltok::kw_nuw))
2976 NUW = true;
2977 }
Chris Lattnera676c0f2011-02-07 16:40:21 +00002978 } else if (Opc == Instruction::SDiv || Opc == Instruction::UDiv ||
2979 Opc == Instruction::LShr || Opc == Instruction::AShr) {
Dan Gohman9c7f8082009-07-27 16:11:46 +00002980 if (EatIfPresent(lltok::kw_exact))
2981 Exact = true;
2982 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00002983 if (ParseToken(lltok::lparen, "expected '(' in binary constantexpr") ||
2984 ParseGlobalTypeAndValue(Val0) ||
2985 ParseToken(lltok::comma, "expected comma in binary constantexpr") ||
2986 ParseGlobalTypeAndValue(Val1) ||
2987 ParseToken(lltok::rparen, "expected ')' in binary constantexpr"))
2988 return true;
2989 if (Val0->getType() != Val1->getType())
2990 return Error(ID.Loc, "operands of constexpr must have same type");
Duncan Sands9dff9be2010-02-15 16:12:20 +00002991 if (!Val0->getType()->isIntOrIntVectorTy()) {
Dan Gohman9c7f8082009-07-27 16:11:46 +00002992 if (NUW)
2993 return Error(ModifierLoc, "nuw only applies to integer operations");
2994 if (NSW)
2995 return Error(ModifierLoc, "nsw only applies to integer operations");
2996 }
Dan Gohmana2414ea2010-05-03 22:44:19 +00002997 // Check that the type is valid for the operator.
2998 switch (Opc) {
2999 case Instruction::Add:
3000 case Instruction::Sub:
3001 case Instruction::Mul:
3002 case Instruction::UDiv:
3003 case Instruction::SDiv:
3004 case Instruction::URem:
3005 case Instruction::SRem:
Chris Lattnera676c0f2011-02-07 16:40:21 +00003006 case Instruction::Shl:
3007 case Instruction::AShr:
3008 case Instruction::LShr:
Dan Gohmana2414ea2010-05-03 22:44:19 +00003009 if (!Val0->getType()->isIntOrIntVectorTy())
3010 return Error(ID.Loc, "constexpr requires integer operands");
3011 break;
3012 case Instruction::FAdd:
3013 case Instruction::FSub:
3014 case Instruction::FMul:
3015 case Instruction::FDiv:
3016 case Instruction::FRem:
3017 if (!Val0->getType()->isFPOrFPVectorTy())
3018 return Error(ID.Loc, "constexpr requires fp operands");
3019 break;
3020 default: llvm_unreachable("Unknown binary operator!");
3021 }
Dan Gohman1b849082009-09-07 23:54:19 +00003022 unsigned Flags = 0;
3023 if (NUW) Flags |= OverflowingBinaryOperator::NoUnsignedWrap;
3024 if (NSW) Flags |= OverflowingBinaryOperator::NoSignedWrap;
Chris Lattner35315d02011-02-06 21:44:57 +00003025 if (Exact) Flags |= PossiblyExactOperator::IsExact;
Dan Gohman1b849082009-09-07 23:54:19 +00003026 Constant *C = ConstantExpr::get(Opc, Val0, Val1, Flags);
Dan Gohman9c7f8082009-07-27 16:11:46 +00003027 ID.ConstantVal = C;
Chris Lattnerac161bf2009-01-02 07:01:27 +00003028 ID.Kind = ValID::t_Constant;
3029 return false;
3030 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003031
Chris Lattnerac161bf2009-01-02 07:01:27 +00003032 // Logical Operations
Chris Lattnerac161bf2009-01-02 07:01:27 +00003033 case lltok::kw_and:
3034 case lltok::kw_or:
3035 case lltok::kw_xor: {
3036 unsigned Opc = Lex.getUIntVal();
3037 Constant *Val0, *Val1;
3038 Lex.Lex();
3039 if (ParseToken(lltok::lparen, "expected '(' in logical constantexpr") ||
3040 ParseGlobalTypeAndValue(Val0) ||
3041 ParseToken(lltok::comma, "expected comma in logical constantexpr") ||
3042 ParseGlobalTypeAndValue(Val1) ||
3043 ParseToken(lltok::rparen, "expected ')' in logical constantexpr"))
3044 return true;
3045 if (Val0->getType() != Val1->getType())
3046 return Error(ID.Loc, "operands of constexpr must have same type");
Duncan Sands9dff9be2010-02-15 16:12:20 +00003047 if (!Val0->getType()->isIntOrIntVectorTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00003048 return Error(ID.Loc,
3049 "constexpr requires integer or integer vector operands");
Owen Anderson487375e2009-07-29 18:55:55 +00003050 ID.ConstantVal = ConstantExpr::get(Opc, Val0, Val1);
Chris Lattnerac161bf2009-01-02 07:01:27 +00003051 ID.Kind = ValID::t_Constant;
3052 return false;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003053 }
3054
Chris Lattnerac161bf2009-01-02 07:01:27 +00003055 case lltok::kw_getelementptr:
3056 case lltok::kw_shufflevector:
3057 case lltok::kw_insertelement:
3058 case lltok::kw_extractelement:
3059 case lltok::kw_select: {
3060 unsigned Opc = Lex.getUIntVal();
3061 SmallVector<Constant*, 16> Elts;
Dan Gohman1639c392009-07-27 21:53:46 +00003062 bool InBounds = false;
David Blaikief72d05b2015-03-13 18:20:45 +00003063 Type *Ty;
Chris Lattnerac161bf2009-01-02 07:01:27 +00003064 Lex.Lex();
David Blaikief72d05b2015-03-13 18:20:45 +00003065
Dan Gohman1639c392009-07-27 21:53:46 +00003066 if (Opc == Instruction::GetElementPtr)
Dan Gohman16cbbe42009-07-29 15:58:36 +00003067 InBounds = EatIfPresent(lltok::kw_inbounds);
David Blaikief72d05b2015-03-13 18:20:45 +00003068
3069 if (ParseToken(lltok::lparen, "expected '(' in constantexpr"))
3070 return true;
3071
3072 LocTy ExplicitTypeLoc = Lex.getLoc();
3073 if (Opc == Instruction::GetElementPtr) {
3074 if (ParseType(Ty) ||
3075 ParseToken(lltok::comma, "expected comma after getelementptr's type"))
3076 return true;
3077 }
3078
3079 if (ParseGlobalValueVector(Elts) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00003080 ParseToken(lltok::rparen, "expected ')' in constantexpr"))
3081 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003082
Chris Lattnerac161bf2009-01-02 07:01:27 +00003083 if (Opc == Instruction::GetElementPtr) {
Nadav Rotem3924cb02011-12-05 06:29:09 +00003084 if (Elts.size() == 0 ||
3085 !Elts[0]->getType()->getScalarType()->isPointerTy())
David Majnemer00303b62015-02-22 23:14:52 +00003086 return Error(ID.Loc, "base of getelementptr must be a pointer");
3087
3088 Type *BaseType = Elts[0]->getType();
3089 auto *BasePointerType = cast<PointerType>(BaseType->getScalarType());
David Blaikief72d05b2015-03-13 18:20:45 +00003090 if (Ty != BasePointerType->getElementType())
3091 return Error(
3092 ExplicitTypeLoc,
3093 "explicit pointee type doesn't match operand's pointee type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003094
Jay Foaded8db7d2011-07-21 14:31:17 +00003095 ArrayRef<Constant *> Indices(Elts.begin() + 1, Elts.end());
David Majnemer00303b62015-02-22 23:14:52 +00003096 for (Constant *Val : Indices) {
3097 Type *ValTy = Val->getType();
3098 if (!ValTy->getScalarType()->isIntegerTy())
3099 return Error(ID.Loc, "getelementptr index must be an integer");
3100 if (ValTy->isVectorTy() != BaseType->isVectorTy())
3101 return Error(ID.Loc, "getelementptr index type missmatch");
3102 if (ValTy->isVectorTy()) {
Elena Demikhovsky37a4da82015-07-09 07:42:48 +00003103 unsigned ValNumEl = ValTy->getVectorNumElements();
3104 unsigned PtrNumEl = BaseType->getVectorNumElements();
David Majnemer00303b62015-02-22 23:14:52 +00003105 if (ValNumEl != PtrNumEl)
3106 return Error(
3107 ID.Loc,
3108 "getelementptr vector index has a wrong number of elements");
3109 }
3110 }
3111
Craig Toppere3dcce92015-08-01 22:20:21 +00003112 SmallPtrSet<Type*, 4> Visited;
David Blaikiee169e822015-04-22 16:37:35 +00003113 if (!Indices.empty() && !Ty->isSized(&Visited))
David Majnemer00303b62015-02-22 23:14:52 +00003114 return Error(ID.Loc, "base element of getelementptr must be sized");
3115
David Blaikie4a2e73b2015-04-02 18:55:32 +00003116 if (!GetElementPtrInst::getIndexedType(Ty, Indices))
David Majnemer00303b62015-02-22 23:14:52 +00003117 return Error(ID.Loc, "invalid getelementptr indices");
David Blaikie4a2e73b2015-04-02 18:55:32 +00003118 ID.ConstantVal =
3119 ConstantExpr::getGetElementPtr(Ty, Elts[0], Indices, InBounds);
Chris Lattnerac161bf2009-01-02 07:01:27 +00003120 } else if (Opc == Instruction::Select) {
3121 if (Elts.size() != 3)
3122 return Error(ID.Loc, "expected three operands to select");
3123 if (const char *Reason = SelectInst::areInvalidOperands(Elts[0], Elts[1],
3124 Elts[2]))
3125 return Error(ID.Loc, Reason);
Owen Anderson487375e2009-07-29 18:55:55 +00003126 ID.ConstantVal = ConstantExpr::getSelect(Elts[0], Elts[1], Elts[2]);
Chris Lattnerac161bf2009-01-02 07:01:27 +00003127 } else if (Opc == Instruction::ShuffleVector) {
3128 if (Elts.size() != 3)
3129 return Error(ID.Loc, "expected three operands to shufflevector");
3130 if (!ShuffleVectorInst::isValidOperands(Elts[0], Elts[1], Elts[2]))
3131 return Error(ID.Loc, "invalid operands to shufflevector");
Owen Anderson02a9da32009-07-01 23:57:11 +00003132 ID.ConstantVal =
Owen Anderson487375e2009-07-29 18:55:55 +00003133 ConstantExpr::getShuffleVector(Elts[0], Elts[1],Elts[2]);
Chris Lattnerac161bf2009-01-02 07:01:27 +00003134 } else if (Opc == Instruction::ExtractElement) {
3135 if (Elts.size() != 2)
3136 return Error(ID.Loc, "expected two operands to extractelement");
3137 if (!ExtractElementInst::isValidOperands(Elts[0], Elts[1]))
3138 return Error(ID.Loc, "invalid extractelement operands");
Owen Anderson487375e2009-07-29 18:55:55 +00003139 ID.ConstantVal = ConstantExpr::getExtractElement(Elts[0], Elts[1]);
Chris Lattnerac161bf2009-01-02 07:01:27 +00003140 } else {
3141 assert(Opc == Instruction::InsertElement && "Unknown opcode");
3142 if (Elts.size() != 3)
3143 return Error(ID.Loc, "expected three operands to insertelement");
3144 if (!InsertElementInst::isValidOperands(Elts[0], Elts[1], Elts[2]))
3145 return Error(ID.Loc, "invalid insertelement operands");
Owen Anderson02a9da32009-07-01 23:57:11 +00003146 ID.ConstantVal =
Owen Anderson487375e2009-07-29 18:55:55 +00003147 ConstantExpr::getInsertElement(Elts[0], Elts[1],Elts[2]);
Chris Lattnerac161bf2009-01-02 07:01:27 +00003148 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003149
Chris Lattnerac161bf2009-01-02 07:01:27 +00003150 ID.Kind = ValID::t_Constant;
3151 return false;
3152 }
3153 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003154
Chris Lattnerac161bf2009-01-02 07:01:27 +00003155 Lex.Lex();
3156 return false;
3157}
3158
3159/// ParseGlobalValue - Parse a global value with the specified type.
Chris Lattner229907c2011-07-18 04:54:35 +00003160bool LLParser::ParseGlobalValue(Type *Ty, Constant *&C) {
Craig Topper2617dcc2014-04-15 06:32:26 +00003161 C = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00003162 ValID ID;
Craig Topper2617dcc2014-04-15 06:32:26 +00003163 Value *V = nullptr;
Victor Hernandez9d75c962010-01-11 22:31:58 +00003164 bool Parsed = ParseValID(ID) ||
Craig Topper2617dcc2014-04-15 06:32:26 +00003165 ConvertValIDToValue(Ty, ID, V, nullptr);
Victor Hernandez9d75c962010-01-11 22:31:58 +00003166 if (V && !(C = dyn_cast<Constant>(V)))
3167 return Error(ID.Loc, "global values must be constants");
3168 return Parsed;
Chris Lattnerac161bf2009-01-02 07:01:27 +00003169}
3170
Victor Hernandez9d75c962010-01-11 22:31:58 +00003171bool LLParser::ParseGlobalTypeAndValue(Constant *&V) {
Craig Topper2617dcc2014-04-15 06:32:26 +00003172 Type *Ty = nullptr;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00003173 return ParseType(Ty) ||
3174 ParseGlobalValue(Ty, V);
Victor Hernandez9d75c962010-01-11 22:31:58 +00003175}
3176
Rafael Espindola83a362c2015-01-06 22:55:16 +00003177bool LLParser::parseOptionalComdat(StringRef GlobalName, Comdat *&C) {
David Majnemerdad0a642014-06-27 18:19:56 +00003178 C = nullptr;
Rafael Espindola83a362c2015-01-06 22:55:16 +00003179
3180 LocTy KwLoc = Lex.getLoc();
David Majnemerdad0a642014-06-27 18:19:56 +00003181 if (!EatIfPresent(lltok::kw_comdat))
3182 return false;
Rafael Espindola83a362c2015-01-06 22:55:16 +00003183
3184 if (EatIfPresent(lltok::lparen)) {
3185 if (Lex.getKind() != lltok::ComdatVar)
3186 return TokError("expected comdat variable");
3187 C = getComdat(Lex.getStrVal(), Lex.getLoc());
3188 Lex.Lex();
3189 if (ParseToken(lltok::rparen, "expected ')' after comdat var"))
3190 return true;
3191 } else {
3192 if (GlobalName.empty())
3193 return TokError("comdat cannot be unnamed");
3194 C = getComdat(GlobalName, KwLoc);
3195 }
3196
David Majnemerdad0a642014-06-27 18:19:56 +00003197 return false;
3198}
3199
Victor Hernandez9d75c962010-01-11 22:31:58 +00003200/// ParseGlobalValueVector
3201/// ::= /*empty*/
3202/// ::= TypeAndValue (',' TypeAndValue)*
Duncan P. N. Exon Smith17169902014-08-19 00:13:19 +00003203bool LLParser::ParseGlobalValueVector(SmallVectorImpl<Constant *> &Elts) {
Victor Hernandez9d75c962010-01-11 22:31:58 +00003204 // Empty list.
3205 if (Lex.getKind() == lltok::rbrace ||
3206 Lex.getKind() == lltok::rsquare ||
3207 Lex.getKind() == lltok::greater ||
3208 Lex.getKind() == lltok::rparen)
3209 return false;
3210
3211 Constant *C;
3212 if (ParseGlobalTypeAndValue(C)) return true;
3213 Elts.push_back(C);
3214
3215 while (EatIfPresent(lltok::comma)) {
3216 if (ParseGlobalTypeAndValue(C)) return true;
3217 Elts.push_back(C);
3218 }
3219
3220 return false;
3221}
3222
Duncan P. N. Exon Smith58ef9d12015-01-12 21:23:11 +00003223bool LLParser::ParseMDTuple(MDNode *&MD, bool IsDistinct) {
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00003224 SmallVector<Metadata *, 16> Elts;
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00003225 if (ParseMDNodeVector(Elts))
Dan Gohmanc828c542010-08-24 02:24:03 +00003226 return true;
3227
Duncan P. N. Exon Smith0b31dd12015-01-12 22:27:39 +00003228 MD = (IsDistinct ? MDTuple::getDistinct : MDTuple::get)(Context, Elts);
Dan Gohmanc828c542010-08-24 02:24:03 +00003229 return false;
3230}
3231
Duncan P. N. Exon Smithf825dae2015-01-12 22:26:48 +00003232/// MDNode:
3233/// ::= !{ ... }
3234/// ::= !7
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003235/// ::= !DILocation(...)
Duncan P. N. Exon Smithf825dae2015-01-12 22:26:48 +00003236bool LLParser::ParseMDNode(MDNode *&N) {
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003237 if (Lex.getKind() == lltok::MetadataVar)
3238 return ParseSpecializedMDNode(N);
3239
Duncan P. N. Exon Smithf825dae2015-01-12 22:26:48 +00003240 return ParseToken(lltok::exclaim, "expected '!' here") ||
3241 ParseMDNodeTail(N);
3242}
3243
3244bool LLParser::ParseMDNodeTail(MDNode *&N) {
3245 // !{ ... }
3246 if (Lex.getKind() == lltok::lbrace)
3247 return ParseMDTuple(N);
3248
3249 // !42
3250 return ParseMDNodeID(N);
3251}
3252
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003253namespace {
3254
3255/// Structure to represent an optional metadata field.
3256template <class FieldTy> struct MDFieldImpl {
3257 typedef MDFieldImpl ImplTy;
3258 FieldTy Val;
3259 bool Seen;
3260
3261 void assign(FieldTy Val) {
3262 Seen = true;
3263 this->Val = std::move(Val);
3264 }
3265
3266 explicit MDFieldImpl(FieldTy Default)
3267 : Val(std::move(Default)), Seen(false) {}
3268};
Duncan P. N. Exon Smithc7363f12015-02-13 01:10:38 +00003269
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003270struct MDUnsignedField : public MDFieldImpl<uint64_t> {
3271 uint64_t Max;
3272
3273 MDUnsignedField(uint64_t Default = 0, uint64_t Max = UINT64_MAX)
3274 : ImplTy(Default), Max(Max) {}
3275};
Duncan P. N. Exon Smith9c93dc62015-02-04 22:59:18 +00003276struct LineField : public MDUnsignedField {
Duncan P. N. Exon Smithaf677eb2015-02-06 22:50:13 +00003277 LineField() : MDUnsignedField(0, UINT32_MAX) {}
Duncan P. N. Exon Smith9c93dc62015-02-04 22:59:18 +00003278};
3279struct ColumnField : public MDUnsignedField {
3280 ColumnField() : MDUnsignedField(0, UINT16_MAX) {}
3281};
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003282struct DwarfTagField : public MDUnsignedField {
Duncan P. N. Exon Smitha81f7e12015-02-06 22:29:35 +00003283 DwarfTagField() : MDUnsignedField(0, dwarf::DW_TAG_hi_user) {}
Duncan P. N. Exon Smith16d182a2015-02-28 23:21:38 +00003284 DwarfTagField(dwarf::Tag DefaultTag)
3285 : MDUnsignedField(DefaultTag, dwarf::DW_TAG_hi_user) {}
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003286};
Amjad Abouda9bcf162015-12-10 12:56:35 +00003287struct DwarfMacinfoTypeField : public MDUnsignedField {
3288 DwarfMacinfoTypeField() : MDUnsignedField(0, dwarf::DW_MACINFO_vendor_ext) {}
3289 DwarfMacinfoTypeField(dwarf::MacinfoRecordType DefaultType)
3290 : MDUnsignedField(DefaultType, dwarf::DW_MACINFO_vendor_ext) {}
3291};
Duncan P. N. Exon Smithcd6636c2015-02-13 01:17:35 +00003292struct DwarfAttEncodingField : public MDUnsignedField {
3293 DwarfAttEncodingField() : MDUnsignedField(0, dwarf::DW_ATE_hi_user) {}
3294};
Duncan P. N. Exon Smith890533e2015-02-13 01:28:16 +00003295struct DwarfVirtualityField : public MDUnsignedField {
3296 DwarfVirtualityField() : MDUnsignedField(0, dwarf::DW_VIRTUALITY_max) {}
3297};
Duncan P. N. Exon Smithaece2dc2015-02-13 01:21:25 +00003298struct DwarfLangField : public MDUnsignedField {
3299 DwarfLangField() : MDUnsignedField(0, dwarf::DW_LANG_hi_user) {}
3300};
Adrian Prantlb939a252016-03-31 23:56:58 +00003301struct EmissionKindField : public MDUnsignedField {
3302 EmissionKindField() : MDUnsignedField(0, DICompileUnit::LastEmissionKind) {}
3303};
Duncan P. N. Exon Smithc7363f12015-02-13 01:10:38 +00003304
Duncan P. N. Exon Smith70ab3d22015-02-21 01:02:18 +00003305struct DIFlagField : public MDUnsignedField {
3306 DIFlagField() : MDUnsignedField(0, UINT32_MAX) {}
3307};
3308
Duncan P. N. Exon Smithc7363f12015-02-13 01:10:38 +00003309struct MDSignedField : public MDFieldImpl<int64_t> {
3310 int64_t Min;
3311 int64_t Max;
3312
3313 MDSignedField(int64_t Default = 0)
3314 : ImplTy(Default), Min(INT64_MIN), Max(INT64_MAX) {}
3315 MDSignedField(int64_t Default, int64_t Min, int64_t Max)
3316 : ImplTy(Default), Min(Min), Max(Max) {}
3317};
3318
Duncan P. N. Exon Smithaece2dc2015-02-13 01:21:25 +00003319struct MDBoolField : public MDFieldImpl<bool> {
3320 MDBoolField(bool Default = false) : ImplTy(Default) {}
3321};
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003322struct MDField : public MDFieldImpl<Metadata *> {
Duncan P. N. Exon Smithe2c61d92015-03-27 17:56:39 +00003323 bool AllowNull;
3324
3325 MDField(bool AllowNull = true) : ImplTy(nullptr), AllowNull(AllowNull) {}
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003326};
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003327struct MDConstant : public MDFieldImpl<ConstantAsMetadata *> {
3328 MDConstant() : ImplTy(nullptr) {}
3329};
Duncan P. N. Exon Smith3d2afaa2015-03-27 17:29:58 +00003330struct MDStringField : public MDFieldImpl<MDString *> {
Duncan P. N. Exon Smith94d58f82015-03-31 01:28:22 +00003331 bool AllowEmpty;
3332 MDStringField(bool AllowEmpty = true)
3333 : ImplTy(nullptr), AllowEmpty(AllowEmpty) {}
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003334};
3335struct MDFieldList : public MDFieldImpl<SmallVector<Metadata *, 4>> {
3336 MDFieldList() : ImplTy(SmallVector<Metadata *, 4>()) {}
3337};
3338
3339} // end namespace
3340
Duncan P. N. Exon Smith2f09c462015-02-04 22:13:28 +00003341namespace llvm {
3342
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003343template <>
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003344bool LLParser::ParseMDField(LocTy Loc, StringRef Name,
Duncan P. N. Exon Smith39b10c22015-02-04 21:57:52 +00003345 MDUnsignedField &Result) {
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003346 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned())
3347 return TokError("expected unsigned integer");
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003348
Duncan P. N. Exon Smith39b10c22015-02-04 21:57:52 +00003349 auto &U = Lex.getAPSIntVal();
3350 if (U.ugt(Result.Max))
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003351 return TokError("value for '" + Name + "' too large, limit is " +
3352 Twine(Result.Max));
Duncan P. N. Exon Smith39b10c22015-02-04 21:57:52 +00003353 Result.assign(U.getZExtValue());
3354 assert(Result.Val <= Result.Max && "Expected value in range");
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003355 Lex.Lex();
3356 return false;
3357}
3358
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003359template <>
Duncan P. N. Exon Smith9c93dc62015-02-04 22:59:18 +00003360bool LLParser::ParseMDField(LocTy Loc, StringRef Name, LineField &Result) {
3361 return ParseMDField(Loc, Name, static_cast<MDUnsignedField &>(Result));
3362}
3363template <>
3364bool LLParser::ParseMDField(LocTy Loc, StringRef Name, ColumnField &Result) {
3365 return ParseMDField(Loc, Name, static_cast<MDUnsignedField &>(Result));
3366}
3367
3368template <>
Duncan P. N. Exon Smith97486072015-02-03 21:56:01 +00003369bool LLParser::ParseMDField(LocTy Loc, StringRef Name, DwarfTagField &Result) {
3370 if (Lex.getKind() == lltok::APSInt)
Duncan P. N. Exon Smith39b10c22015-02-04 21:57:52 +00003371 return ParseMDField(Loc, Name, static_cast<MDUnsignedField &>(Result));
Duncan P. N. Exon Smith97486072015-02-03 21:56:01 +00003372
Duncan P. N. Exon Smith97486072015-02-03 21:56:01 +00003373 if (Lex.getKind() != lltok::DwarfTag)
3374 return TokError("expected DWARF tag");
3375
3376 unsigned Tag = dwarf::getTag(Lex.getStrVal());
3377 if (Tag == dwarf::DW_TAG_invalid)
3378 return TokError("invalid DWARF tag" + Twine(" '") + Lex.getStrVal() + "'");
Duncan P. N. Exon Smithfad631a2015-02-04 22:02:18 +00003379 assert(Tag <= Result.Max && "Expected valid DWARF tag");
Duncan P. N. Exon Smith97486072015-02-03 21:56:01 +00003380
3381 Result.assign(Tag);
3382 Lex.Lex();
3383 return false;
3384}
3385
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003386template <>
Duncan P. N. Exon Smith890533e2015-02-13 01:28:16 +00003387bool LLParser::ParseMDField(LocTy Loc, StringRef Name,
Amjad Abouda9bcf162015-12-10 12:56:35 +00003388 DwarfMacinfoTypeField &Result) {
3389 if (Lex.getKind() == lltok::APSInt)
3390 return ParseMDField(Loc, Name, static_cast<MDUnsignedField &>(Result));
3391
3392 if (Lex.getKind() != lltok::DwarfMacinfo)
3393 return TokError("expected DWARF macinfo type");
3394
3395 unsigned Macinfo = dwarf::getMacinfo(Lex.getStrVal());
3396 if (Macinfo == dwarf::DW_MACINFO_invalid)
3397 return TokError(
3398 "invalid DWARF macinfo type" + Twine(" '") + Lex.getStrVal() + "'");
3399 assert(Macinfo <= Result.Max && "Expected valid DWARF macinfo type");
3400
3401 Result.assign(Macinfo);
3402 Lex.Lex();
3403 return false;
3404}
3405
3406template <>
3407bool LLParser::ParseMDField(LocTy Loc, StringRef Name,
Duncan P. N. Exon Smith890533e2015-02-13 01:28:16 +00003408 DwarfVirtualityField &Result) {
3409 if (Lex.getKind() == lltok::APSInt)
3410 return ParseMDField(Loc, Name, static_cast<MDUnsignedField &>(Result));
3411
3412 if (Lex.getKind() != lltok::DwarfVirtuality)
3413 return TokError("expected DWARF virtuality code");
3414
3415 unsigned Virtuality = dwarf::getVirtuality(Lex.getStrVal());
Peter Collingbournea1f86252016-03-17 23:58:03 +00003416 if (Virtuality == dwarf::DW_VIRTUALITY_invalid)
Duncan P. N. Exon Smith890533e2015-02-13 01:28:16 +00003417 return TokError("invalid DWARF virtuality code" + Twine(" '") +
3418 Lex.getStrVal() + "'");
3419 assert(Virtuality <= Result.Max && "Expected valid DWARF virtuality code");
3420 Result.assign(Virtuality);
3421 Lex.Lex();
3422 return false;
3423}
3424
3425template <>
Duncan P. N. Exon Smithaece2dc2015-02-13 01:21:25 +00003426bool LLParser::ParseMDField(LocTy Loc, StringRef Name, DwarfLangField &Result) {
3427 if (Lex.getKind() == lltok::APSInt)
3428 return ParseMDField(Loc, Name, static_cast<MDUnsignedField &>(Result));
3429
3430 if (Lex.getKind() != lltok::DwarfLang)
3431 return TokError("expected DWARF language");
3432
3433 unsigned Lang = dwarf::getLanguage(Lex.getStrVal());
3434 if (!Lang)
3435 return TokError("invalid DWARF language" + Twine(" '") + Lex.getStrVal() +
3436 "'");
3437 assert(Lang <= Result.Max && "Expected valid DWARF language");
3438 Result.assign(Lang);
3439 Lex.Lex();
3440 return false;
3441}
3442
3443template <>
Adrian Prantlb939a252016-03-31 23:56:58 +00003444bool LLParser::ParseMDField(LocTy Loc, StringRef Name, EmissionKindField &Result) {
3445 if (Lex.getKind() == lltok::APSInt)
3446 return ParseMDField(Loc, Name, static_cast<MDUnsignedField &>(Result));
3447
3448 if (Lex.getKind() != lltok::EmissionKind)
3449 return TokError("expected emission kind");
3450
3451 auto Kind = DICompileUnit::getEmissionKind(Lex.getStrVal());
3452 if (!Kind)
3453 return TokError("invalid emission kind" + Twine(" '") + Lex.getStrVal() +
3454 "'");
3455 assert(*Kind <= Result.Max && "Expected valid emission kind");
3456 Result.assign(*Kind);
3457 Lex.Lex();
3458 return false;
3459}
3460
3461template <>
Duncan P. N. Exon Smithc7363f12015-02-13 01:10:38 +00003462bool LLParser::ParseMDField(LocTy Loc, StringRef Name,
Duncan P. N. Exon Smithcd6636c2015-02-13 01:17:35 +00003463 DwarfAttEncodingField &Result) {
3464 if (Lex.getKind() == lltok::APSInt)
3465 return ParseMDField(Loc, Name, static_cast<MDUnsignedField &>(Result));
3466
3467 if (Lex.getKind() != lltok::DwarfAttEncoding)
3468 return TokError("expected DWARF type attribute encoding");
3469
3470 unsigned Encoding = dwarf::getAttributeEncoding(Lex.getStrVal());
3471 if (!Encoding)
3472 return TokError("invalid DWARF type attribute encoding" + Twine(" '") +
3473 Lex.getStrVal() + "'");
3474 assert(Encoding <= Result.Max && "Expected valid DWARF language");
3475 Result.assign(Encoding);
3476 Lex.Lex();
3477 return false;
3478}
3479
Duncan P. N. Exon Smith70ab3d22015-02-21 01:02:18 +00003480/// DIFlagField
3481/// ::= uint32
3482/// ::= DIFlagVector
3483/// ::= DIFlagVector '|' DIFlagFwdDecl '|' uint32 '|' DIFlagPublic
3484template <>
3485bool LLParser::ParseMDField(LocTy Loc, StringRef Name, DIFlagField &Result) {
3486 assert(Result.Max == UINT32_MAX && "Expected only 32-bits");
3487
3488 // Parser for a single flag.
3489 auto parseFlag = [&](unsigned &Val) {
3490 if (Lex.getKind() == lltok::APSInt && !Lex.getAPSIntVal().isSigned())
3491 return ParseUInt32(Val);
3492
3493 if (Lex.getKind() != lltok::DIFlag)
3494 return TokError("expected debug info flag");
3495
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003496 Val = DINode::getFlag(Lex.getStrVal());
Duncan P. N. Exon Smith70ab3d22015-02-21 01:02:18 +00003497 if (!Val)
3498 return TokError(Twine("invalid debug info flag flag '") +
3499 Lex.getStrVal() + "'");
3500 Lex.Lex();
3501 return false;
3502 };
3503
3504 // Parse the flags and combine them together.
3505 unsigned Combined = 0;
3506 do {
3507 unsigned Val;
3508 if (parseFlag(Val))
3509 return true;
3510 Combined |= Val;
3511 } while (EatIfPresent(lltok::bar));
3512
3513 Result.assign(Combined);
3514 return false;
3515}
3516
Duncan P. N. Exon Smithcd6636c2015-02-13 01:17:35 +00003517template <>
3518bool LLParser::ParseMDField(LocTy Loc, StringRef Name,
Duncan P. N. Exon Smithc7363f12015-02-13 01:10:38 +00003519 MDSignedField &Result) {
3520 if (Lex.getKind() != lltok::APSInt)
3521 return TokError("expected signed integer");
3522
3523 auto &S = Lex.getAPSIntVal();
3524 if (S < Result.Min)
3525 return TokError("value for '" + Name + "' too small, limit is " +
3526 Twine(Result.Min));
3527 if (S > Result.Max)
3528 return TokError("value for '" + Name + "' too large, limit is " +
3529 Twine(Result.Max));
3530 Result.assign(S.getExtValue());
3531 assert(Result.Val >= Result.Min && "Expected value in range");
3532 assert(Result.Val <= Result.Max && "Expected value in range");
3533 Lex.Lex();
3534 return false;
3535}
3536
3537template <>
Duncan P. N. Exon Smithaece2dc2015-02-13 01:21:25 +00003538bool LLParser::ParseMDField(LocTy Loc, StringRef Name, MDBoolField &Result) {
3539 switch (Lex.getKind()) {
3540 default:
3541 return TokError("expected 'true' or 'false'");
3542 case lltok::kw_true:
3543 Result.assign(true);
3544 break;
3545 case lltok::kw_false:
3546 Result.assign(false);
3547 break;
3548 }
3549 Lex.Lex();
3550 return false;
3551}
3552
3553template <>
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003554bool LLParser::ParseMDField(LocTy Loc, StringRef Name, MDField &Result) {
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003555 if (Lex.getKind() == lltok::kw_null) {
Duncan P. N. Exon Smithe2c61d92015-03-27 17:56:39 +00003556 if (!Result.AllowNull)
3557 return TokError("'" + Name + "' cannot be null");
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003558 Lex.Lex();
3559 Result.assign(nullptr);
3560 return false;
3561 }
3562
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003563 Metadata *MD;
3564 if (ParseMetadata(MD, nullptr))
3565 return true;
3566
3567 Result.assign(MD);
3568 return false;
3569}
3570
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003571template <>
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003572bool LLParser::ParseMDField(LocTy Loc, StringRef Name, MDConstant &Result) {
3573 Metadata *MD;
3574 if (ParseValueAsMetadata(MD, "expected constant", nullptr))
3575 return true;
3576
3577 Result.assign(cast<ConstantAsMetadata>(MD));
3578 return false;
3579}
3580
3581template <>
Duncan P. N. Exon Smith4e4aa702015-02-03 21:54:14 +00003582bool LLParser::ParseMDField(LocTy Loc, StringRef Name, MDStringField &Result) {
Duncan P. N. Exon Smith94d58f82015-03-31 01:28:22 +00003583 LocTy ValueLoc = Lex.getLoc();
Duncan P. N. Exon Smith4e4aa702015-02-03 21:54:14 +00003584 std::string S;
3585 if (ParseStringConstant(S))
3586 return true;
3587
Duncan P. N. Exon Smith94d58f82015-03-31 01:28:22 +00003588 if (!Result.AllowEmpty && S.empty())
3589 return Error(ValueLoc, "'" + Name + "' cannot be empty");
3590
Duncan P. N. Exon Smith3d2afaa2015-03-27 17:29:58 +00003591 Result.assign(S.empty() ? nullptr : MDString::get(Context, S));
Duncan P. N. Exon Smith4e4aa702015-02-03 21:54:14 +00003592 return false;
3593}
3594
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003595template <>
Duncan P. N. Exon Smith4e4aa702015-02-03 21:54:14 +00003596bool LLParser::ParseMDField(LocTy Loc, StringRef Name, MDFieldList &Result) {
3597 SmallVector<Metadata *, 4> MDs;
3598 if (ParseMDNodeVector(MDs))
3599 return true;
3600
3601 Result.assign(std::move(MDs));
3602 return false;
3603}
3604
Duncan P. N. Exon Smith2f09c462015-02-04 22:13:28 +00003605} // end namespace llvm
3606
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003607template <class ParserTy>
Duncan P. N. Exon Smith66ca92e2015-01-19 23:39:32 +00003608bool LLParser::ParseMDFieldsImplBody(ParserTy parseField) {
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003609 do {
3610 if (Lex.getKind() != lltok::LabelStr)
3611 return TokError("expected field label here");
3612
3613 if (parseField())
3614 return true;
3615 } while (EatIfPresent(lltok::comma));
3616
Duncan P. N. Exon Smith66ca92e2015-01-19 23:39:32 +00003617 return false;
3618}
3619
3620template <class ParserTy>
3621bool LLParser::ParseMDFieldsImpl(ParserTy parseField, LocTy &ClosingLoc) {
3622 assert(Lex.getKind() == lltok::MetadataVar && "Expected metadata type name");
3623 Lex.Lex();
3624
3625 if (ParseToken(lltok::lparen, "expected '(' here"))
3626 return true;
3627 if (Lex.getKind() != lltok::rparen)
3628 if (ParseMDFieldsImplBody(parseField))
3629 return true;
3630
Duncan P. N. Exon Smith13890af2015-01-19 23:32:36 +00003631 ClosingLoc = Lex.getLoc();
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003632 return ParseToken(lltok::rparen, "expected ')' here");
3633}
3634
Duncan P. N. Exon Smitha7477282015-01-20 02:42:29 +00003635template <class FieldTy>
3636bool LLParser::ParseMDField(StringRef Name, FieldTy &Result) {
3637 if (Result.Seen)
3638 return TokError("field '" + Name + "' cannot be specified more than once");
3639
3640 LocTy Loc = Lex.getLoc();
3641 Lex.Lex();
3642 return ParseMDField(Loc, Name, Result);
3643}
3644
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003645bool LLParser::ParseSpecializedMDNode(MDNode *&N, bool IsDistinct) {
3646 assert(Lex.getKind() == lltok::MetadataVar && "Expected metadata type name");
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003647
3648#define HANDLE_SPECIALIZED_MDNODE_LEAF(CLASS) \
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003649 if (Lex.getStrVal() == #CLASS) \
3650 return Parse##CLASS(N, IsDistinct);
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003651#include "llvm/IR/Metadata.def"
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003652
3653 return TokError("expected metadata type");
3654}
3655
Duncan P. N. Exon Smith2a6b5fc2015-01-19 23:44:41 +00003656#define DECLARE_FIELD(NAME, TYPE, INIT) TYPE NAME INIT
3657#define NOP_FIELD(NAME, TYPE, INIT)
3658#define REQUIRE_FIELD(NAME, TYPE, INIT) \
3659 if (!NAME.Seen) \
3660 return Error(ClosingLoc, "missing required field '" #NAME "'");
3661#define PARSE_MD_FIELD(NAME, TYPE, DEFAULT) \
Duncan P. N. Exon Smitha7477282015-01-20 02:42:29 +00003662 if (Lex.getStrVal() == #NAME) \
3663 return ParseMDField(#NAME, NAME);
Duncan P. N. Exon Smith2a6b5fc2015-01-19 23:44:41 +00003664#define PARSE_MD_FIELDS() \
3665 VISIT_MD_FIELDS(DECLARE_FIELD, DECLARE_FIELD) \
3666 do { \
3667 LocTy ClosingLoc; \
3668 if (ParseMDFieldsImpl([&]() -> bool { \
3669 VISIT_MD_FIELDS(PARSE_MD_FIELD, PARSE_MD_FIELD) \
3670 return TokError(Twine("invalid field '") + Lex.getStrVal() + "'"); \
3671 }, ClosingLoc)) \
3672 return true; \
3673 VISIT_MD_FIELDS(NOP_FIELD, REQUIRE_FIELD) \
3674 } while (false)
Duncan P. N. Exon Smith4e4aa702015-02-03 21:54:14 +00003675#define GET_OR_DISTINCT(CLASS, ARGS) \
3676 (IsDistinct ? CLASS::getDistinct ARGS : CLASS::get ARGS)
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003677
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003678/// ParseDILocationFields:
3679/// ::= !DILocation(line: 43, column: 8, scope: !5, inlinedAt: !6)
3680bool LLParser::ParseDILocation(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith2a6b5fc2015-01-19 23:44:41 +00003681#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith9c93dc62015-02-04 22:59:18 +00003682 OPTIONAL(line, LineField, ); \
3683 OPTIONAL(column, ColumnField, ); \
Duncan P. N. Exon Smithe2c61d92015-03-27 17:56:39 +00003684 REQUIRED(scope, MDField, (/* AllowNull */ false)); \
Duncan P. N. Exon Smith2a6b5fc2015-01-19 23:44:41 +00003685 OPTIONAL(inlinedAt, MDField, );
3686 PARSE_MD_FIELDS();
3687#undef VISIT_MD_FIELDS
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003688
Duncan P. N. Exon Smith26489982015-03-26 22:05:04 +00003689 Result = GET_OR_DISTINCT(
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003690 DILocation, (Context, line.Val, column.Val, scope.Val, inlinedAt.Val));
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003691 return false;
3692}
Duncan P. N. Exon Smith4e4aa702015-02-03 21:54:14 +00003693
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003694/// ParseGenericDINode:
3695/// ::= !GenericDINode(tag: 15, header: "...", operands: {...})
3696bool LLParser::ParseGenericDINode(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith4e4aa702015-02-03 21:54:14 +00003697#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith97486072015-02-03 21:56:01 +00003698 REQUIRED(tag, DwarfTagField, ); \
Duncan P. N. Exon Smith4e4aa702015-02-03 21:54:14 +00003699 OPTIONAL(header, MDStringField, ); \
3700 OPTIONAL(operands, MDFieldList, );
3701 PARSE_MD_FIELDS();
3702#undef VISIT_MD_FIELDS
3703
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003704 Result = GET_OR_DISTINCT(GenericDINode,
Duncan P. N. Exon Smith4e4aa702015-02-03 21:54:14 +00003705 (Context, tag.Val, header.Val, operands.Val));
3706 return false;
3707}
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003708
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003709/// ParseDISubrange:
3710/// ::= !DISubrange(count: 30, lowerBound: 2)
3711bool LLParser::ParseDISubrange(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smithc7363f12015-02-13 01:10:38 +00003712#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith5c9a1772015-02-18 23:17:51 +00003713 REQUIRED(count, MDSignedField, (-1, -1, INT64_MAX)); \
Duncan P. N. Exon Smithc7363f12015-02-13 01:10:38 +00003714 OPTIONAL(lowerBound, MDSignedField, );
3715 PARSE_MD_FIELDS();
3716#undef VISIT_MD_FIELDS
3717
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003718 Result = GET_OR_DISTINCT(DISubrange, (Context, count.Val, lowerBound.Val));
Duncan P. N. Exon Smithc7363f12015-02-13 01:10:38 +00003719 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003720}
Duncan P. N. Exon Smithc7363f12015-02-13 01:10:38 +00003721
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003722/// ParseDIEnumerator:
3723/// ::= !DIEnumerator(value: 30, name: "SomeKind")
3724bool LLParser::ParseDIEnumerator(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith87754762015-02-13 01:14:11 +00003725#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smithcd8fb602015-02-18 21:16:33 +00003726 REQUIRED(name, MDStringField, ); \
3727 REQUIRED(value, MDSignedField, );
Duncan P. N. Exon Smith87754762015-02-13 01:14:11 +00003728 PARSE_MD_FIELDS();
3729#undef VISIT_MD_FIELDS
3730
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003731 Result = GET_OR_DISTINCT(DIEnumerator, (Context, value.Val, name.Val));
Duncan P. N. Exon Smith87754762015-02-13 01:14:11 +00003732 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003733}
Duncan P. N. Exon Smith87754762015-02-13 01:14:11 +00003734
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003735/// ParseDIBasicType:
3736/// ::= !DIBasicType(tag: DW_TAG_base_type, name: "int", size: 32, align: 32)
3737bool LLParser::ParseDIBasicType(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith09e03f32015-02-13 01:14:58 +00003738#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith16d182a2015-02-28 23:21:38 +00003739 OPTIONAL(tag, DwarfTagField, (dwarf::DW_TAG_base_type)); \
Duncan P. N. Exon Smith09e03f32015-02-13 01:14:58 +00003740 OPTIONAL(name, MDStringField, ); \
Duncan P. N. Exon Smithd34db172015-02-19 23:56:07 +00003741 OPTIONAL(size, MDUnsignedField, (0, UINT64_MAX)); \
3742 OPTIONAL(align, MDUnsignedField, (0, UINT64_MAX)); \
Duncan P. N. Exon Smithcd6636c2015-02-13 01:17:35 +00003743 OPTIONAL(encoding, DwarfAttEncodingField, );
Duncan P. N. Exon Smith09e03f32015-02-13 01:14:58 +00003744 PARSE_MD_FIELDS();
3745#undef VISIT_MD_FIELDS
3746
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003747 Result = GET_OR_DISTINCT(DIBasicType, (Context, tag.Val, name.Val, size.Val,
Duncan P. N. Exon Smith09e03f32015-02-13 01:14:58 +00003748 align.Val, encoding.Val));
3749 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003750}
Duncan P. N. Exon Smith09e03f32015-02-13 01:14:58 +00003751
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003752/// ParseDIDerivedType:
3753/// ::= !DIDerivedType(tag: DW_TAG_pointer_type, name: "int", file: !0,
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00003754/// line: 7, scope: !1, baseType: !2, size: 32,
3755/// align: 32, offset: 0, flags: 0, extraData: !3)
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003756bool LLParser::ParseDIDerivedType(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00003757#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
3758 REQUIRED(tag, DwarfTagField, ); \
3759 OPTIONAL(name, MDStringField, ); \
3760 OPTIONAL(file, MDField, ); \
3761 OPTIONAL(line, LineField, ); \
3762 OPTIONAL(scope, MDField, ); \
3763 REQUIRED(baseType, MDField, ); \
Duncan P. N. Exon Smithd34db172015-02-19 23:56:07 +00003764 OPTIONAL(size, MDUnsignedField, (0, UINT64_MAX)); \
3765 OPTIONAL(align, MDUnsignedField, (0, UINT64_MAX)); \
3766 OPTIONAL(offset, MDUnsignedField, (0, UINT64_MAX)); \
Duncan P. N. Exon Smith70ab3d22015-02-21 01:02:18 +00003767 OPTIONAL(flags, DIFlagField, ); \
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00003768 OPTIONAL(extraData, MDField, );
3769 PARSE_MD_FIELDS();
3770#undef VISIT_MD_FIELDS
3771
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003772 Result = GET_OR_DISTINCT(DIDerivedType,
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00003773 (Context, tag.Val, name.Val, file.Val, line.Val,
3774 scope.Val, baseType.Val, size.Val, align.Val,
3775 offset.Val, flags.Val, extraData.Val));
3776 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003777}
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00003778
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003779bool LLParser::ParseDICompositeType(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00003780#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
3781 REQUIRED(tag, DwarfTagField, ); \
3782 OPTIONAL(name, MDStringField, ); \
3783 OPTIONAL(file, MDField, ); \
3784 OPTIONAL(line, LineField, ); \
3785 OPTIONAL(scope, MDField, ); \
3786 OPTIONAL(baseType, MDField, ); \
Duncan P. N. Exon Smithd34db172015-02-19 23:56:07 +00003787 OPTIONAL(size, MDUnsignedField, (0, UINT64_MAX)); \
3788 OPTIONAL(align, MDUnsignedField, (0, UINT64_MAX)); \
3789 OPTIONAL(offset, MDUnsignedField, (0, UINT64_MAX)); \
Duncan P. N. Exon Smith70ab3d22015-02-21 01:02:18 +00003790 OPTIONAL(flags, DIFlagField, ); \
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00003791 OPTIONAL(elements, MDField, ); \
Duncan P. N. Exon Smithaece2dc2015-02-13 01:21:25 +00003792 OPTIONAL(runtimeLang, DwarfLangField, ); \
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00003793 OPTIONAL(vtableHolder, MDField, ); \
3794 OPTIONAL(templateParams, MDField, ); \
3795 OPTIONAL(identifier, MDStringField, );
3796 PARSE_MD_FIELDS();
3797#undef VISIT_MD_FIELDS
3798
3799 Result = GET_OR_DISTINCT(
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003800 DICompositeType,
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00003801 (Context, tag.Val, name.Val, file.Val, line.Val, scope.Val, baseType.Val,
3802 size.Val, align.Val, offset.Val, flags.Val, elements.Val,
3803 runtimeLang.Val, vtableHolder.Val, templateParams.Val, identifier.Val));
3804 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003805}
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00003806
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003807bool LLParser::ParseDISubroutineType(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith54e2bc62015-02-13 01:22:59 +00003808#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith70ab3d22015-02-21 01:02:18 +00003809 OPTIONAL(flags, DIFlagField, ); \
Duncan P. N. Exon Smith54e2bc62015-02-13 01:22:59 +00003810 REQUIRED(types, MDField, );
3811 PARSE_MD_FIELDS();
3812#undef VISIT_MD_FIELDS
3813
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003814 Result = GET_OR_DISTINCT(DISubroutineType, (Context, flags.Val, types.Val));
Duncan P. N. Exon Smith54e2bc62015-02-13 01:22:59 +00003815 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003816}
Duncan P. N. Exon Smithf14b9c72015-02-13 01:19:14 +00003817
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003818/// ParseDIFileType:
3819/// ::= !DIFileType(filename: "path/to/file", directory: "/path/to/dir")
3820bool LLParser::ParseDIFile(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smithf14b9c72015-02-13 01:19:14 +00003821#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
3822 REQUIRED(filename, MDStringField, ); \
3823 REQUIRED(directory, MDStringField, );
3824 PARSE_MD_FIELDS();
3825#undef VISIT_MD_FIELDS
3826
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003827 Result = GET_OR_DISTINCT(DIFile, (Context, filename.Val, directory.Val));
Duncan P. N. Exon Smithf14b9c72015-02-13 01:19:14 +00003828 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003829}
Duncan P. N. Exon Smithf14b9c72015-02-13 01:19:14 +00003830
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003831/// ParseDICompileUnit:
3832/// ::= !DICompileUnit(language: DW_LANG_C99, file: !0, producer: "clang",
Duncan P. N. Exon Smithc1f1acc2015-02-13 01:25:10 +00003833/// isOptimized: true, flags: "-O2", runtimeVersion: 1,
Adrian Prantlb939a252016-03-31 23:56:58 +00003834/// splitDebugFilename: "abc.debug",
3835/// emissionKind: FullDebug,
Duncan P. N. Exon Smithc1f1acc2015-02-13 01:25:10 +00003836/// enums: !1, retainedTypes: !2, subprograms: !3,
Amjad Abouda9bcf162015-12-10 12:56:35 +00003837/// globals: !4, imports: !5, macros: !6, dwoId: 0x0abcd)
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003838bool LLParser::ParseDICompileUnit(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith55ca9642015-08-03 17:26:41 +00003839 if (!IsDistinct)
3840 return Lex.Error("missing 'distinct', required for !DICompileUnit");
3841
Duncan P. N. Exon Smithc1f1acc2015-02-13 01:25:10 +00003842#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
3843 REQUIRED(language, DwarfLangField, ); \
Duncan P. N. Exon Smithcd07efa12015-03-31 00:47:15 +00003844 REQUIRED(file, MDField, (/* AllowNull */ false)); \
Duncan P. N. Exon Smithc1f1acc2015-02-13 01:25:10 +00003845 OPTIONAL(producer, MDStringField, ); \
3846 OPTIONAL(isOptimized, MDBoolField, ); \
3847 OPTIONAL(flags, MDStringField, ); \
3848 OPTIONAL(runtimeVersion, MDUnsignedField, (0, UINT32_MAX)); \
3849 OPTIONAL(splitDebugFilename, MDStringField, ); \
Adrian Prantlb939a252016-03-31 23:56:58 +00003850 OPTIONAL(emissionKind, EmissionKindField, ); \
Duncan P. N. Exon Smithc1f1acc2015-02-13 01:25:10 +00003851 OPTIONAL(enums, MDField, ); \
3852 OPTIONAL(retainedTypes, MDField, ); \
3853 OPTIONAL(subprograms, MDField, ); \
3854 OPTIONAL(globals, MDField, ); \
Adrian Prantl1f599f92015-05-21 20:37:30 +00003855 OPTIONAL(imports, MDField, ); \
Amjad Abouda9bcf162015-12-10 12:56:35 +00003856 OPTIONAL(macros, MDField, ); \
Adrian Prantl1f599f92015-05-21 20:37:30 +00003857 OPTIONAL(dwoId, MDUnsignedField, );
Duncan P. N. Exon Smithc1f1acc2015-02-13 01:25:10 +00003858 PARSE_MD_FIELDS();
3859#undef VISIT_MD_FIELDS
3860
Duncan P. N. Exon Smith55ca9642015-08-03 17:26:41 +00003861 Result = DICompileUnit::getDistinct(
3862 Context, language.Val, file.Val, producer.Val, isOptimized.Val, flags.Val,
3863 runtimeVersion.Val, splitDebugFilename.Val, emissionKind.Val, enums.Val,
Amjad Abouda9bcf162015-12-10 12:56:35 +00003864 retainedTypes.Val, subprograms.Val, globals.Val, imports.Val, macros.Val,
3865 dwoId.Val);
Duncan P. N. Exon Smithc1f1acc2015-02-13 01:25:10 +00003866 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003867}
Duncan P. N. Exon Smithc1f1acc2015-02-13 01:25:10 +00003868
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003869/// ParseDISubprogram:
3870/// ::= !DISubprogram(scope: !0, name: "foo", linkageName: "_Zfoo",
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003871/// file: !1, line: 7, type: !2, isLocal: false,
3872/// isDefinition: true, scopeLine: 8, containingType: !3,
Duncan P. N. Exon Smith890533e2015-02-13 01:28:16 +00003873/// virtuality: DW_VIRTUALTIY_pure_virtual,
3874/// virtualIndex: 10, flags: 11,
Peter Collingbourned4bff302015-11-05 22:03:56 +00003875/// isOptimized: false, templateParams: !4, declaration: !5,
3876/// variables: !6)
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003877bool LLParser::ParseDISubprogram(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith814b8e92015-08-28 20:26:49 +00003878 auto Loc = Lex.getLoc();
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003879#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
3880 OPTIONAL(scope, MDField, ); \
Duncan P. N. Exon Smith3eea1962015-03-16 19:01:54 +00003881 OPTIONAL(name, MDStringField, ); \
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003882 OPTIONAL(linkageName, MDStringField, ); \
3883 OPTIONAL(file, MDField, ); \
3884 OPTIONAL(line, LineField, ); \
3885 OPTIONAL(type, MDField, ); \
3886 OPTIONAL(isLocal, MDBoolField, ); \
3887 OPTIONAL(isDefinition, MDBoolField, (true)); \
3888 OPTIONAL(scopeLine, LineField, ); \
3889 OPTIONAL(containingType, MDField, ); \
Duncan P. N. Exon Smith890533e2015-02-13 01:28:16 +00003890 OPTIONAL(virtuality, DwarfVirtualityField, ); \
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003891 OPTIONAL(virtualIndex, MDUnsignedField, (0, UINT32_MAX)); \
Duncan P. N. Exon Smith70ab3d22015-02-21 01:02:18 +00003892 OPTIONAL(flags, DIFlagField, ); \
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003893 OPTIONAL(isOptimized, MDBoolField, ); \
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003894 OPTIONAL(templateParams, MDField, ); \
3895 OPTIONAL(declaration, MDField, ); \
3896 OPTIONAL(variables, MDField, );
3897 PARSE_MD_FIELDS();
3898#undef VISIT_MD_FIELDS
3899
Duncan P. N. Exon Smith814b8e92015-08-28 20:26:49 +00003900 if (isDefinition.Val && !IsDistinct)
3901 return Lex.Error(
3902 Loc,
3903 "missing 'distinct', required for !DISubprogram when 'isDefinition'");
3904
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003905 Result = GET_OR_DISTINCT(
Peter Collingbourned4bff302015-11-05 22:03:56 +00003906 DISubprogram,
3907 (Context, scope.Val, name.Val, linkageName.Val, file.Val, line.Val,
3908 type.Val, isLocal.Val, isDefinition.Val, scopeLine.Val,
3909 containingType.Val, virtuality.Val, virtualIndex.Val, flags.Val,
3910 isOptimized.Val, templateParams.Val, declaration.Val, variables.Val));
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003911 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003912}
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003913
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003914/// ParseDILexicalBlock:
3915/// ::= !DILexicalBlock(scope: !0, file: !2, line: 7, column: 9)
3916bool LLParser::ParseDILexicalBlock(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smitha96d4092015-02-13 01:29:28 +00003917#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith0e202b92015-03-30 16:37:48 +00003918 REQUIRED(scope, MDField, (/* AllowNull */ false)); \
Duncan P. N. Exon Smitha96d4092015-02-13 01:29:28 +00003919 OPTIONAL(file, MDField, ); \
3920 OPTIONAL(line, LineField, ); \
3921 OPTIONAL(column, ColumnField, );
3922 PARSE_MD_FIELDS();
3923#undef VISIT_MD_FIELDS
3924
3925 Result = GET_OR_DISTINCT(
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003926 DILexicalBlock, (Context, scope.Val, file.Val, line.Val, column.Val));
Duncan P. N. Exon Smitha96d4092015-02-13 01:29:28 +00003927 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003928}
Duncan P. N. Exon Smitha96d4092015-02-13 01:29:28 +00003929
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003930/// ParseDILexicalBlockFile:
3931/// ::= !DILexicalBlockFile(scope: !0, file: !2, discriminator: 9)
3932bool LLParser::ParseDILexicalBlockFile(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith06a07022015-02-13 01:30:42 +00003933#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith0e202b92015-03-30 16:37:48 +00003934 REQUIRED(scope, MDField, (/* AllowNull */ false)); \
Duncan P. N. Exon Smith06a07022015-02-13 01:30:42 +00003935 OPTIONAL(file, MDField, ); \
3936 REQUIRED(discriminator, MDUnsignedField, (0, UINT32_MAX));
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(DILexicalBlockFile,
Duncan P. N. Exon Smith06a07022015-02-13 01:30:42 +00003941 (Context, scope.Val, file.Val, discriminator.Val));
3942 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003943}
Duncan P. N. Exon Smith06a07022015-02-13 01:30:42 +00003944
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003945/// ParseDINamespace:
3946/// ::= !DINamespace(scope: !0, file: !2, name: "SomeNamespace", line: 9)
3947bool LLParser::ParseDINamespace(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smithe1460002015-02-13 01:32:09 +00003948#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
3949 REQUIRED(scope, MDField, ); \
3950 OPTIONAL(file, MDField, ); \
3951 OPTIONAL(name, MDStringField, ); \
3952 OPTIONAL(line, LineField, );
3953 PARSE_MD_FIELDS();
3954#undef VISIT_MD_FIELDS
3955
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003956 Result = GET_OR_DISTINCT(DINamespace,
Duncan P. N. Exon Smithe1460002015-02-13 01:32:09 +00003957 (Context, scope.Val, file.Val, name.Val, line.Val));
3958 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003959}
Duncan P. N. Exon Smithe1460002015-02-13 01:32:09 +00003960
Amjad Abouda9bcf162015-12-10 12:56:35 +00003961/// ParseDIMacro:
3962/// ::= !DIMacro(macinfo: type, line: 9, name: "SomeMacro", value: "SomeValue")
3963bool LLParser::ParseDIMacro(MDNode *&Result, bool IsDistinct) {
3964#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
3965 REQUIRED(type, DwarfMacinfoTypeField, ); \
3966 REQUIRED(line, LineField, ); \
3967 REQUIRED(name, MDStringField, ); \
3968 OPTIONAL(value, MDStringField, );
3969 PARSE_MD_FIELDS();
3970#undef VISIT_MD_FIELDS
3971
3972 Result = GET_OR_DISTINCT(DIMacro,
3973 (Context, type.Val, line.Val, name.Val, value.Val));
3974 return false;
3975}
3976
3977/// ParseDIMacroFile:
3978/// ::= !DIMacroFile(line: 9, file: !2, nodes: !3)
3979bool LLParser::ParseDIMacroFile(MDNode *&Result, bool IsDistinct) {
3980#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
3981 OPTIONAL(type, DwarfMacinfoTypeField, (dwarf::DW_MACINFO_start_file)); \
3982 REQUIRED(line, LineField, ); \
3983 REQUIRED(file, MDField, ); \
3984 OPTIONAL(nodes, MDField, );
3985 PARSE_MD_FIELDS();
3986#undef VISIT_MD_FIELDS
3987
3988 Result = GET_OR_DISTINCT(DIMacroFile,
3989 (Context, type.Val, line.Val, file.Val, nodes.Val));
3990 return false;
3991}
3992
3993
Adrian Prantlab1243f2015-06-29 23:03:47 +00003994/// ParseDIModule:
3995/// ::= !DIModule(scope: !0, name: "SomeModule", configMacros: "-DNDEBUG",
3996/// includePath: "/usr/include", isysroot: "/")
3997bool LLParser::ParseDIModule(MDNode *&Result, bool IsDistinct) {
3998#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
3999 REQUIRED(scope, MDField, ); \
4000 REQUIRED(name, MDStringField, ); \
4001 OPTIONAL(configMacros, MDStringField, ); \
4002 OPTIONAL(includePath, MDStringField, ); \
4003 OPTIONAL(isysroot, MDStringField, );
4004 PARSE_MD_FIELDS();
4005#undef VISIT_MD_FIELDS
4006
4007 Result = GET_OR_DISTINCT(DIModule, (Context, scope.Val, name.Val,
4008 configMacros.Val, includePath.Val, isysroot.Val));
4009 return false;
4010}
4011
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004012/// ParseDITemplateTypeParameter:
4013/// ::= !DITemplateTypeParameter(name: "Ty", type: !1)
4014bool LLParser::ParseDITemplateTypeParameter(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith2847f382015-02-13 01:34:32 +00004015#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith2847f382015-02-13 01:34:32 +00004016 OPTIONAL(name, MDStringField, ); \
4017 REQUIRED(type, MDField, );
4018 PARSE_MD_FIELDS();
4019#undef VISIT_MD_FIELDS
4020
Duncan P. N. Exon Smith3d62bba2015-02-19 00:37:21 +00004021 Result =
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004022 GET_OR_DISTINCT(DITemplateTypeParameter, (Context, name.Val, type.Val));
Duncan P. N. Exon Smith2847f382015-02-13 01:34:32 +00004023 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00004024}
Duncan P. N. Exon Smith2847f382015-02-13 01:34:32 +00004025
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004026/// ParseDITemplateValueParameter:
4027/// ::= !DITemplateValueParameter(tag: DW_TAG_template_value_parameter,
Duncan P. N. Exon Smith3d62bba2015-02-19 00:37:21 +00004028/// name: "V", type: !1, value: i32 7)
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004029bool LLParser::ParseDITemplateValueParameter(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith2847f382015-02-13 01:34:32 +00004030#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith16d182a2015-02-28 23:21:38 +00004031 OPTIONAL(tag, DwarfTagField, (dwarf::DW_TAG_template_value_parameter)); \
Duncan P. N. Exon Smith2847f382015-02-13 01:34:32 +00004032 OPTIONAL(name, MDStringField, ); \
Duncan P. N. Exon Smith16d182a2015-02-28 23:21:38 +00004033 OPTIONAL(type, MDField, ); \
Duncan P. N. Exon Smith2847f382015-02-13 01:34:32 +00004034 REQUIRED(value, MDField, );
4035 PARSE_MD_FIELDS();
4036#undef VISIT_MD_FIELDS
4037
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004038 Result = GET_OR_DISTINCT(DITemplateValueParameter,
Duncan P. N. Exon Smith3d62bba2015-02-19 00:37:21 +00004039 (Context, tag.Val, name.Val, type.Val, value.Val));
Duncan P. N. Exon Smith2847f382015-02-13 01:34:32 +00004040 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00004041}
Duncan P. N. Exon Smith2847f382015-02-13 01:34:32 +00004042
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004043/// ParseDIGlobalVariable:
4044/// ::= !DIGlobalVariable(scope: !0, name: "foo", linkageName: "foo",
Duncan P. N. Exon Smithc8f810a2015-02-13 01:35:40 +00004045/// file: !1, line: 7, type: !2, isLocal: false,
4046/// isDefinition: true, variable: i32* @foo,
4047/// declaration: !3)
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004048bool LLParser::ParseDIGlobalVariable(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smithc8f810a2015-02-13 01:35:40 +00004049#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith94d58f82015-03-31 01:28:22 +00004050 REQUIRED(name, MDStringField, (/* AllowEmpty */ false)); \
Duncan P. N. Exon Smithc8f810a2015-02-13 01:35:40 +00004051 OPTIONAL(scope, MDField, ); \
Duncan P. N. Exon Smithc8f810a2015-02-13 01:35:40 +00004052 OPTIONAL(linkageName, MDStringField, ); \
4053 OPTIONAL(file, MDField, ); \
4054 OPTIONAL(line, LineField, ); \
4055 OPTIONAL(type, MDField, ); \
4056 OPTIONAL(isLocal, MDBoolField, ); \
4057 OPTIONAL(isDefinition, MDBoolField, (true)); \
4058 OPTIONAL(variable, MDConstant, ); \
4059 OPTIONAL(declaration, MDField, );
4060 PARSE_MD_FIELDS();
4061#undef VISIT_MD_FIELDS
4062
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004063 Result = GET_OR_DISTINCT(DIGlobalVariable,
Duncan P. N. Exon Smithc8f810a2015-02-13 01:35:40 +00004064 (Context, scope.Val, name.Val, linkageName.Val,
4065 file.Val, line.Val, type.Val, isLocal.Val,
4066 isDefinition.Val, variable.Val, declaration.Val));
4067 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00004068}
Duncan P. N. Exon Smithc8f810a2015-02-13 01:35:40 +00004069
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004070/// ParseDILocalVariable:
Duncan P. N. Exon Smithed013cd2015-07-31 18:58:39 +00004071/// ::= !DILocalVariable(arg: 7, scope: !0, name: "foo",
4072/// file: !1, line: 7, type: !2, arg: 2, flags: 7)
4073/// ::= !DILocalVariable(scope: !0, name: "foo",
Duncan P. N. Exon Smith62e0f452015-04-15 22:29:27 +00004074/// file: !1, line: 7, type: !2, arg: 2, flags: 7)
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004075bool LLParser::ParseDILocalVariable(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith72fe2d02015-02-13 01:39:44 +00004076#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smithe2c61d92015-03-27 17:56:39 +00004077 REQUIRED(scope, MDField, (/* AllowNull */ false)); \
Duncan P. N. Exon Smith72fe2d02015-02-13 01:39:44 +00004078 OPTIONAL(name, MDStringField, ); \
Duncan P. N. Exon Smithed013cd2015-07-31 18:58:39 +00004079 OPTIONAL(arg, MDUnsignedField, (0, UINT16_MAX)); \
Duncan P. N. Exon Smith72fe2d02015-02-13 01:39:44 +00004080 OPTIONAL(file, MDField, ); \
4081 OPTIONAL(line, LineField, ); \
4082 OPTIONAL(type, MDField, ); \
Duncan P. N. Exon Smith62e0f452015-04-15 22:29:27 +00004083 OPTIONAL(flags, DIFlagField, );
Duncan P. N. Exon Smith72fe2d02015-02-13 01:39:44 +00004084 PARSE_MD_FIELDS();
4085#undef VISIT_MD_FIELDS
4086
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004087 Result = GET_OR_DISTINCT(DILocalVariable,
Duncan P. N. Exon Smithed013cd2015-07-31 18:58:39 +00004088 (Context, scope.Val, name.Val, file.Val, line.Val,
4089 type.Val, arg.Val, flags.Val));
Duncan P. N. Exon Smith72fe2d02015-02-13 01:39:44 +00004090 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00004091}
Duncan P. N. Exon Smith72fe2d02015-02-13 01:39:44 +00004092
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004093/// ParseDIExpression:
4094/// ::= !DIExpression(0, 7, -1)
4095bool LLParser::ParseDIExpression(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith0c5c0122015-02-13 01:42:09 +00004096 assert(Lex.getKind() == lltok::MetadataVar && "Expected metadata type name");
4097 Lex.Lex();
4098
4099 if (ParseToken(lltok::lparen, "expected '(' here"))
4100 return true;
4101
4102 SmallVector<uint64_t, 8> Elements;
4103 if (Lex.getKind() != lltok::rparen)
4104 do {
4105 if (Lex.getKind() == lltok::DwarfOp) {
4106 if (unsigned Op = dwarf::getOperationEncoding(Lex.getStrVal())) {
4107 Lex.Lex();
4108 Elements.push_back(Op);
4109 continue;
4110 }
4111 return TokError(Twine("invalid DWARF op '") + Lex.getStrVal() + "'");
4112 }
4113
4114 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned())
4115 return TokError("expected unsigned integer");
4116
4117 auto &U = Lex.getAPSIntVal();
4118 if (U.ugt(UINT64_MAX))
4119 return TokError("element too large, limit is " + Twine(UINT64_MAX));
4120 Elements.push_back(U.getZExtValue());
4121 Lex.Lex();
4122 } while (EatIfPresent(lltok::comma));
4123
4124 if (ParseToken(lltok::rparen, "expected ')' here"))
4125 return true;
4126
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004127 Result = GET_OR_DISTINCT(DIExpression, (Context, Elements));
Duncan P. N. Exon Smith0c5c0122015-02-13 01:42:09 +00004128 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00004129}
Duncan P. N. Exon Smith0c5c0122015-02-13 01:42:09 +00004130
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004131/// ParseDIObjCProperty:
4132/// ::= !DIObjCProperty(name: "foo", file: !1, line: 7, setter: "setFoo",
Duncan P. N. Exon Smithd45ce962015-02-13 01:43:22 +00004133/// getter: "getFoo", attributes: 7, type: !2)
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004134bool LLParser::ParseDIObjCProperty(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smithd45ce962015-02-13 01:43:22 +00004135#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith3eea1962015-03-16 19:01:54 +00004136 OPTIONAL(name, MDStringField, ); \
Duncan P. N. Exon Smithd45ce962015-02-13 01:43:22 +00004137 OPTIONAL(file, MDField, ); \
4138 OPTIONAL(line, LineField, ); \
4139 OPTIONAL(setter, MDStringField, ); \
4140 OPTIONAL(getter, MDStringField, ); \
4141 OPTIONAL(attributes, MDUnsignedField, (0, UINT32_MAX)); \
4142 OPTIONAL(type, MDField, );
4143 PARSE_MD_FIELDS();
4144#undef VISIT_MD_FIELDS
4145
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004146 Result = GET_OR_DISTINCT(DIObjCProperty,
Duncan P. N. Exon Smithd45ce962015-02-13 01:43:22 +00004147 (Context, name.Val, file.Val, line.Val, setter.Val,
4148 getter.Val, attributes.Val, type.Val));
4149 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00004150}
Duncan P. N. Exon Smithd45ce962015-02-13 01:43:22 +00004151
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004152/// ParseDIImportedEntity:
4153/// ::= !DIImportedEntity(tag: DW_TAG_imported_module, scope: !0, entity: !1,
Duncan P. N. Exon Smith1c931162015-02-13 01:46:02 +00004154/// line: 7, name: "foo")
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004155bool LLParser::ParseDIImportedEntity(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith1c931162015-02-13 01:46:02 +00004156#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
4157 REQUIRED(tag, DwarfTagField, ); \
4158 REQUIRED(scope, MDField, ); \
4159 OPTIONAL(entity, MDField, ); \
4160 OPTIONAL(line, LineField, ); \
4161 OPTIONAL(name, MDStringField, );
4162 PARSE_MD_FIELDS();
4163#undef VISIT_MD_FIELDS
4164
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004165 Result = GET_OR_DISTINCT(DIImportedEntity, (Context, tag.Val, scope.Val,
Duncan P. N. Exon Smith1c931162015-02-13 01:46:02 +00004166 entity.Val, line.Val, name.Val));
4167 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00004168}
Duncan P. N. Exon Smith1c931162015-02-13 01:46:02 +00004169
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00004170#undef PARSE_MD_FIELD
Duncan P. N. Exon Smith2a6b5fc2015-01-19 23:44:41 +00004171#undef NOP_FIELD
4172#undef REQUIRE_FIELD
4173#undef DECLARE_FIELD
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00004174
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00004175/// ParseMetadataAsValue
4176/// ::= metadata i32 %local
4177/// ::= metadata i32 @global
4178/// ::= metadata i32 7
4179/// ::= metadata !0
4180/// ::= metadata !{...}
4181/// ::= metadata !"string"
4182bool LLParser::ParseMetadataAsValue(Value *&V, PerFunctionState &PFS) {
4183 // Note: the type 'metadata' has already been parsed.
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00004184 Metadata *MD;
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00004185 if (ParseMetadata(MD, &PFS))
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00004186 return true;
4187
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00004188 V = MetadataAsValue::get(Context, MD);
4189 return false;
4190}
4191
4192/// ParseValueAsMetadata
4193/// ::= i32 %local
4194/// ::= i32 @global
4195/// ::= i32 7
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00004196bool LLParser::ParseValueAsMetadata(Metadata *&MD, const Twine &TypeMsg,
4197 PerFunctionState *PFS) {
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00004198 Type *Ty;
4199 LocTy Loc;
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00004200 if (ParseType(Ty, TypeMsg, Loc))
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00004201 return true;
4202 if (Ty->isMetadataTy())
4203 return Error(Loc, "invalid metadata-value-metadata roundtrip");
4204
4205 Value *V;
4206 if (ParseValue(Ty, V, PFS))
4207 return true;
4208
4209 MD = ValueAsMetadata::get(V);
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00004210 return false;
4211}
4212
4213/// ParseMetadata
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00004214/// ::= i32 %local
4215/// ::= i32 @global
4216/// ::= i32 7
Dan Gohman8939ba332010-07-14 18:26:50 +00004217/// ::= !42
4218/// ::= !{...}
4219/// ::= !"string"
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004220/// ::= !DILocation(...)
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00004221bool LLParser::ParseMetadata(Metadata *&MD, PerFunctionState *PFS) {
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00004222 if (Lex.getKind() == lltok::MetadataVar) {
4223 MDNode *N;
4224 if (ParseSpecializedMDNode(N))
4225 return true;
4226 MD = N;
4227 return false;
4228 }
4229
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00004230 // ValueAsMetadata:
4231 // <type> <value>
4232 if (Lex.getKind() != lltok::exclaim)
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00004233 return ParseValueAsMetadata(MD, "expected metadata operand", PFS);
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00004234
4235 // '!'.
4236 assert(Lex.getKind() == lltok::exclaim && "Expected '!' here");
4237 Lex.Lex();
Dan Gohman8939ba332010-07-14 18:26:50 +00004238
Duncan P. N. Exon Smith62a79192015-01-12 22:24:50 +00004239 // MDString:
4240 // ::= '!' STRINGCONSTANT
4241 if (Lex.getKind() == lltok::StringConstant) {
4242 MDString *S;
4243 if (ParseMDString(S))
4244 return true;
4245 MD = S;
4246 return false;
4247 }
4248
Dan Gohman8939ba332010-07-14 18:26:50 +00004249 // MDNode:
4250 // !{ ... }
Duncan P. N. Exon Smithf825dae2015-01-12 22:26:48 +00004251 // !7
Duncan P. N. Exon Smith62a79192015-01-12 22:24:50 +00004252 MDNode *N;
Duncan P. N. Exon Smithf825dae2015-01-12 22:26:48 +00004253 if (ParseMDNodeTail(N))
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00004254 return true;
Duncan P. N. Exon Smith62a79192015-01-12 22:24:50 +00004255 MD = N;
Dan Gohman8939ba332010-07-14 18:26:50 +00004256 return false;
4257}
4258
Victor Hernandez9d75c962010-01-11 22:31:58 +00004259
4260//===----------------------------------------------------------------------===//
4261// Function Parsing.
4262//===----------------------------------------------------------------------===//
4263
Chris Lattner229907c2011-07-18 04:54:35 +00004264bool LLParser::ConvertValIDToValue(Type *Ty, ValID &ID, Value *&V,
David Majnemer8a1c45d2015-12-12 05:38:55 +00004265 PerFunctionState *PFS) {
Duncan Sands19d0b472010-02-16 11:11:14 +00004266 if (Ty->isFunctionTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00004267 return Error(ID.Loc, "functions are not values, refer to them as pointers");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004268
Chris Lattnerac161bf2009-01-02 07:01:27 +00004269 switch (ID.Kind) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00004270 case ValID::t_LocalID:
Victor Hernandez9d75c962010-01-11 22:31:58 +00004271 if (!PFS) return Error(ID.Loc, "invalid use of function-local name");
David Majnemer8a1c45d2015-12-12 05:38:55 +00004272 V = PFS->GetVal(ID.UIntVal, Ty, ID.Loc);
Craig Topper2617dcc2014-04-15 06:32:26 +00004273 return V == nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004274 case ValID::t_LocalName:
Victor Hernandez9d75c962010-01-11 22:31:58 +00004275 if (!PFS) return Error(ID.Loc, "invalid use of function-local name");
David Majnemer8a1c45d2015-12-12 05:38:55 +00004276 V = PFS->GetVal(ID.StrVal, Ty, ID.Loc);
Craig Topper2617dcc2014-04-15 06:32:26 +00004277 return V == nullptr;
Victor Hernandez9d75c962010-01-11 22:31:58 +00004278 case ValID::t_InlineAsm: {
Karl Schimpf44876c52015-09-03 16:18:32 +00004279 if (!ID.FTy || !InlineAsm::Verify(ID.FTy, ID.StrVal2))
Victor Hernandez9d75c962010-01-11 22:31:58 +00004280 return Error(ID.Loc, "invalid type for inline asm constraint string");
David Blaikie41ba2b42015-07-27 23:32:19 +00004281 V = InlineAsm::get(ID.FTy, ID.StrVal, ID.StrVal2, ID.UIntVal & 1,
4282 (ID.UIntVal >> 1) & 1,
4283 (InlineAsm::AsmDialect(ID.UIntVal >> 2)));
Victor Hernandez9d75c962010-01-11 22:31:58 +00004284 return false;
4285 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00004286 case ValID::t_GlobalName:
4287 V = GetGlobalVal(ID.StrVal, Ty, ID.Loc);
Craig Topper2617dcc2014-04-15 06:32:26 +00004288 return V == nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004289 case ValID::t_GlobalID:
4290 V = GetGlobalVal(ID.UIntVal, Ty, ID.Loc);
Craig Topper2617dcc2014-04-15 06:32:26 +00004291 return V == nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004292 case ValID::t_APSInt:
Duncan Sands19d0b472010-02-16 11:11:14 +00004293 if (!Ty->isIntegerTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00004294 return Error(ID.Loc, "integer constant must have integer type");
Jay Foad583abbc2010-12-07 08:25:19 +00004295 ID.APSIntVal = ID.APSIntVal.extOrTrunc(Ty->getPrimitiveSizeInBits());
Owen Andersonedb4a702009-07-24 23:12:02 +00004296 V = ConstantInt::get(Context, ID.APSIntVal);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004297 return false;
4298 case ValID::t_APFloat:
Duncan Sands9dff9be2010-02-15 16:12:20 +00004299 if (!Ty->isFloatingPointTy() ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00004300 !ConstantFP::isValueValidForType(Ty, ID.APFloatVal))
4301 return Error(ID.Loc, "floating point constant invalid for type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004302
Dan Gohman518cda42011-12-17 00:04:22 +00004303 // The lexer has no type info, so builds all half, float, and double FP
4304 // constants as double. Fix this here. Long double does not need this.
4305 if (&ID.APFloatVal.getSemantics() == &APFloat::IEEEdouble) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00004306 bool Ignored;
Dan Gohman518cda42011-12-17 00:04:22 +00004307 if (Ty->isHalfTy())
4308 ID.APFloatVal.convert(APFloat::IEEEhalf, APFloat::rmNearestTiesToEven,
4309 &Ignored);
4310 else if (Ty->isFloatTy())
4311 ID.APFloatVal.convert(APFloat::IEEEsingle, APFloat::rmNearestTiesToEven,
4312 &Ignored);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004313 }
Owen Anderson69c464d2009-07-27 20:59:43 +00004314 V = ConstantFP::get(Context, ID.APFloatVal);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004315
Chris Lattner8f57d29e2009-01-05 18:24:23 +00004316 if (V->getType() != Ty)
4317 return Error(ID.Loc, "floating point constant does not have type '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00004318 getTypeString(Ty) + "'");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004319
Chris Lattnerac161bf2009-01-02 07:01:27 +00004320 return false;
4321 case ValID::t_Null:
Duncan Sands19d0b472010-02-16 11:11:14 +00004322 if (!Ty->isPointerTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00004323 return Error(ID.Loc, "null must be a pointer type");
Owen Andersonb292b8c2009-07-30 23:03:37 +00004324 V = ConstantPointerNull::get(cast<PointerType>(Ty));
Chris Lattnerac161bf2009-01-02 07:01:27 +00004325 return false;
4326 case ValID::t_Undef:
Chris Lattnerffa07782009-01-05 08:13:38 +00004327 // FIXME: LabelTy should not be a first-class type.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004328 if (!Ty->isFirstClassType() || Ty->isLabelTy())
Chris Lattnerffa07782009-01-05 08:13:38 +00004329 return Error(ID.Loc, "invalid type for undef constant");
Owen Andersonb292b8c2009-07-30 23:03:37 +00004330 V = UndefValue::get(Ty);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004331 return false;
Chris Lattner998fa0a2009-01-05 07:52:51 +00004332 case ValID::t_EmptyArray:
Duncan Sands19d0b472010-02-16 11:11:14 +00004333 if (!Ty->isArrayTy() || cast<ArrayType>(Ty)->getNumElements() != 0)
Chris Lattner998fa0a2009-01-05 07:52:51 +00004334 return Error(ID.Loc, "invalid empty array initializer");
Owen Andersonb292b8c2009-07-30 23:03:37 +00004335 V = UndefValue::get(Ty);
Chris Lattner998fa0a2009-01-05 07:52:51 +00004336 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004337 case ValID::t_Zero:
Chris Lattnerffa07782009-01-05 08:13:38 +00004338 // FIXME: LabelTy should not be a first-class type.
Chris Lattnerfdd87902009-10-05 05:54:46 +00004339 if (!Ty->isFirstClassType() || Ty->isLabelTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00004340 return Error(ID.Loc, "invalid type for null constant");
Owen Anderson5a1acd92009-07-31 20:28:14 +00004341 V = Constant::getNullValue(Ty);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004342 return false;
David Majnemerf0f224d2015-11-11 21:57:16 +00004343 case ValID::t_None:
4344 if (!Ty->isTokenTy())
4345 return Error(ID.Loc, "invalid type for none constant");
4346 V = Constant::getNullValue(Ty);
4347 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004348 case ValID::t_Constant:
Chris Lattner13ee7952010-08-28 04:09:24 +00004349 if (ID.ConstantVal->getType() != Ty)
Chris Lattnerac161bf2009-01-02 07:01:27 +00004350 return Error(ID.Loc, "constant expression type mismatch");
Chris Lattner392be582010-02-12 20:49:41 +00004351
Chris Lattnerac161bf2009-01-02 07:01:27 +00004352 V = ID.ConstantVal;
4353 return false;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004354 case ValID::t_ConstantStruct:
4355 case ValID::t_PackedConstantStruct:
Chris Lattner229907c2011-07-18 04:54:35 +00004356 if (StructType *ST = dyn_cast<StructType>(Ty)) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004357 if (ST->getNumElements() != ID.UIntVal)
4358 return Error(ID.Loc,
4359 "initializer with struct type has wrong # elements");
4360 if (ST->isPacked() != (ID.Kind == ValID::t_PackedConstantStruct))
4361 return Error(ID.Loc, "packed'ness of initializer and type don't match");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004362
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004363 // Verify that the elements are compatible with the structtype.
4364 for (unsigned i = 0, e = ID.UIntVal; i != e; ++i)
4365 if (ID.ConstantStructElts[i]->getType() != ST->getElementType(i))
4366 return Error(ID.Loc, "element " + Twine(i) +
4367 " of struct initializer doesn't match struct element type");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004368
David Blaikieadbda4b2015-08-03 20:08:41 +00004369 V = ConstantStruct::get(
4370 ST, makeArrayRef(ID.ConstantStructElts.get(), ID.UIntVal));
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004371 } else
4372 return Error(ID.Loc, "constant expression type mismatch");
4373 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004374 }
Chandler Carruthf3e85022012-01-10 18:08:01 +00004375 llvm_unreachable("Invalid ValID");
Chris Lattnerac161bf2009-01-02 07:01:27 +00004376}
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004377
Alex Lorenzd2255952015-07-17 22:07:03 +00004378bool LLParser::parseConstantValue(Type *Ty, Constant *&C) {
4379 C = nullptr;
4380 ValID ID;
4381 auto Loc = Lex.getLoc();
4382 if (ParseValID(ID, /*PFS=*/nullptr))
4383 return true;
4384 switch (ID.Kind) {
4385 case ValID::t_APSInt:
4386 case ValID::t_APFloat:
Alex Lorenzb9a68db2015-09-09 13:44:33 +00004387 case ValID::t_Undef:
Alex Lorenzd2255952015-07-17 22:07:03 +00004388 case ValID::t_Constant:
4389 case ValID::t_ConstantStruct:
4390 case ValID::t_PackedConstantStruct: {
4391 Value *V;
4392 if (ConvertValIDToValue(Ty, ID, V, /*PFS=*/nullptr))
4393 return true;
4394 assert(isa<Constant>(V) && "Expected a constant value");
4395 C = cast<Constant>(V);
4396 return false;
4397 }
4398 default:
4399 return Error(Loc, "expected a constant value");
4400 }
4401}
4402
David Majnemer8a1c45d2015-12-12 05:38:55 +00004403bool LLParser::ParseValue(Type *Ty, Value *&V, PerFunctionState *PFS) {
Craig Topper2617dcc2014-04-15 06:32:26 +00004404 V = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004405 ValID ID;
David Majnemer8a1c45d2015-12-12 05:38:55 +00004406 return ParseValID(ID, PFS) || ConvertValIDToValue(Ty, ID, V, PFS);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004407}
4408
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004409bool LLParser::ParseTypeAndValue(Value *&V, PerFunctionState *PFS) {
Craig Topper2617dcc2014-04-15 06:32:26 +00004410 Type *Ty = nullptr;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004411 return ParseType(Ty) ||
4412 ParseValue(Ty, V, PFS);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004413}
4414
Chris Lattner3ed871f2009-10-27 19:13:16 +00004415bool LLParser::ParseTypeAndBasicBlock(BasicBlock *&BB, LocTy &Loc,
4416 PerFunctionState &PFS) {
4417 Value *V;
4418 Loc = Lex.getLoc();
4419 if (ParseTypeAndValue(V, PFS)) return true;
4420 if (!isa<BasicBlock>(V))
4421 return Error(Loc, "expected a basic block");
4422 BB = cast<BasicBlock>(V);
4423 return false;
4424}
4425
4426
Chris Lattnerac161bf2009-01-02 07:01:27 +00004427/// FunctionHeader
4428/// ::= OptionalLinkage OptionalVisibility OptionalCallingConv OptRetAttrs
Rafael Espindola45e6c192011-01-08 16:42:36 +00004429/// OptUnnamedAddr Type GlobalName '(' ArgList ')' OptFuncAttrs OptSection
David Majnemer7fddecc2015-06-17 20:52:32 +00004430/// OptionalAlign OptGC OptionalPrefix OptionalPrologue OptPersonalityFn
Chris Lattnerac161bf2009-01-02 07:01:27 +00004431bool LLParser::ParseFunctionHeader(Function *&Fn, bool isDefine) {
4432 // Parse the linkage.
4433 LocTy LinkageLoc = Lex.getLoc();
4434 unsigned Linkage;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004435
Kostya Serebryanya5054ad2012-01-20 17:56:17 +00004436 unsigned Visibility;
Nico Rieck7157bb72014-01-14 15:22:47 +00004437 unsigned DLLStorageClass;
Bill Wendling50d27842012-10-15 20:35:56 +00004438 AttrBuilder RetAttrs;
Alexey Samsonov17a9cff2014-09-10 18:00:17 +00004439 unsigned CC;
Craig Topper2617dcc2014-04-15 06:32:26 +00004440 Type *RetType = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004441 LocTy RetTypeLoc = Lex.getLoc();
4442 if (ParseOptionalLinkage(Linkage) ||
4443 ParseOptionalVisibility(Visibility) ||
Nico Rieck7157bb72014-01-14 15:22:47 +00004444 ParseOptionalDLLStorageClass(DLLStorageClass) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00004445 ParseOptionalCallingConv(CC) ||
Bill Wendling34c2eb22012-12-04 23:40:58 +00004446 ParseOptionalReturnAttrs(RetAttrs) ||
Chris Lattnerf880ca22009-03-09 04:49:14 +00004447 ParseType(RetType, RetTypeLoc, true /*void allowed*/))
Chris Lattnerac161bf2009-01-02 07:01:27 +00004448 return true;
4449
4450 // Verify that the linkage is ok.
4451 switch ((GlobalValue::LinkageTypes)Linkage) {
4452 case GlobalValue::ExternalLinkage:
4453 break; // always ok.
Duncan Sandse2881052009-03-11 08:08:06 +00004454 case GlobalValue::ExternalWeakLinkage:
Chris Lattnerac161bf2009-01-02 07:01:27 +00004455 if (isDefine)
4456 return Error(LinkageLoc, "invalid linkage for function definition");
4457 break;
Rafael Espindola6de96a12009-01-15 20:18:42 +00004458 case GlobalValue::PrivateLinkage:
Chris Lattnerac161bf2009-01-02 07:01:27 +00004459 case GlobalValue::InternalLinkage:
Nick Lewycky8019af62009-04-13 07:02:02 +00004460 case GlobalValue::AvailableExternallyLinkage:
Duncan Sands12da8ce2009-03-07 15:45:40 +00004461 case GlobalValue::LinkOnceAnyLinkage:
4462 case GlobalValue::LinkOnceODRLinkage:
4463 case GlobalValue::WeakAnyLinkage:
4464 case GlobalValue::WeakODRLinkage:
Chris Lattnerac161bf2009-01-02 07:01:27 +00004465 if (!isDefine)
4466 return Error(LinkageLoc, "invalid linkage for function declaration");
4467 break;
4468 case GlobalValue::AppendingLinkage:
Duncan Sands4581beb2009-03-11 20:14:15 +00004469 case GlobalValue::CommonLinkage:
Chris Lattnerac161bf2009-01-02 07:01:27 +00004470 return Error(LinkageLoc, "invalid function linkage type");
4471 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004472
Duncan P. N. Exon Smithb80de102014-05-07 22:57:20 +00004473 if (!isValidVisibilityForLinkage(Visibility, Linkage))
4474 return Error(LinkageLoc,
4475 "symbol with local linkage must have default visibility");
4476
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004477 if (!FunctionType::isValidReturnType(RetType))
Chris Lattnerac161bf2009-01-02 07:01:27 +00004478 return Error(RetTypeLoc, "invalid function return type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004479
Chris Lattnerac161bf2009-01-02 07:01:27 +00004480 LocTy NameLoc = Lex.getLoc();
Chris Lattner778c62c2009-02-18 21:48:13 +00004481
4482 std::string FunctionName;
4483 if (Lex.getKind() == lltok::GlobalVar) {
4484 FunctionName = Lex.getStrVal();
4485 } else if (Lex.getKind() == lltok::GlobalID) { // @42 is ok.
4486 unsigned NameID = Lex.getUIntVal();
4487
4488 if (NameID != NumberedVals.size())
4489 return TokError("function expected to be numbered '%" +
Benjamin Kramerc7583112010-09-27 17:42:11 +00004490 Twine(NumberedVals.size()) + "'");
Chris Lattner778c62c2009-02-18 21:48:13 +00004491 } else {
4492 return TokError("expected function name");
4493 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004494
Chris Lattner3822f632009-01-02 08:05:26 +00004495 Lex.Lex();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004496
Chris Lattner3822f632009-01-02 08:05:26 +00004497 if (Lex.getKind() != lltok::lparen)
Chris Lattnerac161bf2009-01-02 07:01:27 +00004498 return TokError("expected '(' in function argument list");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004499
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004500 SmallVector<ArgInfo, 8> ArgList;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004501 bool isVarArg;
Bill Wendling50d27842012-10-15 20:35:56 +00004502 AttrBuilder FuncAttrs;
Bill Wendlingb32b0412013-02-08 06:32:06 +00004503 std::vector<unsigned> FwdRefAttrGrps;
Michael Gottesman41748d72013-06-27 00:25:01 +00004504 LocTy BuiltinLoc;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004505 std::string Section;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004506 unsigned Alignment;
Chris Lattner3822f632009-01-02 08:05:26 +00004507 std::string GC;
Rafael Espindola563eb4b2011-01-25 19:09:56 +00004508 bool UnnamedAddr;
4509 LocTy UnnamedAddrLoc;
Craig Topper2617dcc2014-04-15 06:32:26 +00004510 Constant *Prefix = nullptr;
Peter Collingbourne51d2de72014-12-03 02:08:38 +00004511 Constant *Prologue = nullptr;
David Majnemer7fddecc2015-06-17 20:52:32 +00004512 Constant *PersonalityFn = nullptr;
David Majnemerdad0a642014-06-27 18:19:56 +00004513 Comdat *C;
Chris Lattner3822f632009-01-02 08:05:26 +00004514
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004515 if (ParseArgumentList(ArgList, isVarArg) ||
Rafael Espindola563eb4b2011-01-25 19:09:56 +00004516 ParseOptionalToken(lltok::kw_unnamed_addr, UnnamedAddr,
4517 &UnnamedAddrLoc) ||
Bill Wendling09bd1f72013-02-22 00:12:35 +00004518 ParseFnAttributeValuePairs(FuncAttrs, FwdRefAttrGrps, false,
Michael Gottesman41748d72013-06-27 00:25:01 +00004519 BuiltinLoc) ||
Chris Lattner3822f632009-01-02 08:05:26 +00004520 (EatIfPresent(lltok::kw_section) &&
4521 ParseStringConstant(Section)) ||
Rafael Espindola83a362c2015-01-06 22:55:16 +00004522 parseOptionalComdat(FunctionName, C) ||
Chris Lattner3822f632009-01-02 08:05:26 +00004523 ParseOptionalAlignment(Alignment) ||
4524 (EatIfPresent(lltok::kw_gc) &&
Peter Collingbourne3fa50f92013-09-16 01:08:15 +00004525 ParseStringConstant(GC)) ||
4526 (EatIfPresent(lltok::kw_prefix) &&
Peter Collingbourne51d2de72014-12-03 02:08:38 +00004527 ParseGlobalTypeAndValue(Prefix)) ||
4528 (EatIfPresent(lltok::kw_prologue) &&
David Majnemer7fddecc2015-06-17 20:52:32 +00004529 ParseGlobalTypeAndValue(Prologue)) ||
4530 (EatIfPresent(lltok::kw_personality) &&
4531 ParseGlobalTypeAndValue(PersonalityFn)))
Chris Lattner3822f632009-01-02 08:05:26 +00004532 return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004533
Michael Gottesman41748d72013-06-27 00:25:01 +00004534 if (FuncAttrs.contains(Attribute::Builtin))
4535 return Error(BuiltinLoc, "'builtin' attribute not valid on function");
Bill Wendling09bd1f72013-02-22 00:12:35 +00004536
Chris Lattnerac161bf2009-01-02 07:01:27 +00004537 // If the alignment was parsed as an attribute, move to the alignment field.
Bill Wendlingc6daefa2012-10-08 23:27:46 +00004538 if (FuncAttrs.hasAlignmentAttr()) {
Bill Wendling9be77592012-09-21 15:26:31 +00004539 Alignment = FuncAttrs.getAlignment();
Bill Wendling3d7b0b82012-12-19 07:18:57 +00004540 FuncAttrs.removeAttribute(Attribute::Alignment);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004541 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004542
Chris Lattnerac161bf2009-01-02 07:01:27 +00004543 // Okay, if we got here, the function is syntactically valid. Convert types
4544 // and do semantic checks.
Jay Foadb804a2b2011-07-12 14:06:48 +00004545 std::vector<Type*> ParamTypeList;
Bill Wendlingf5075a42013-01-27 02:24:02 +00004546 SmallVector<AttributeSet, 8> Attrs;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004547
Bill Wendling3bef2dd2012-09-19 23:54:18 +00004548 if (RetAttrs.hasAttributes())
Bill Wendlingf5075a42013-01-27 02:24:02 +00004549 Attrs.push_back(AttributeSet::get(RetType->getContext(),
4550 AttributeSet::ReturnIndex,
4551 RetAttrs));
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004552
Chris Lattnerac161bf2009-01-02 07:01:27 +00004553 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004554 ParamTypeList.push_back(ArgList[i].Ty);
Bill Wendlingfe0021a2013-01-31 00:29:54 +00004555 if (ArgList[i].Attrs.hasAttributes(i + 1)) {
4556 AttrBuilder B(ArgList[i].Attrs, i + 1);
Bill Wendlingf5075a42013-01-27 02:24:02 +00004557 Attrs.push_back(AttributeSet::get(RetType->getContext(), i + 1, B));
4558 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00004559 }
4560
Bill Wendling3bef2dd2012-09-19 23:54:18 +00004561 if (FuncAttrs.hasAttributes())
Bill Wendlingf5075a42013-01-27 02:24:02 +00004562 Attrs.push_back(AttributeSet::get(RetType->getContext(),
4563 AttributeSet::FunctionIndex,
4564 FuncAttrs));
Chris Lattnerac161bf2009-01-02 07:01:27 +00004565
Bill Wendlinge94d8432012-12-07 23:16:57 +00004566 AttributeSet PAL = AttributeSet::get(Context, Attrs);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004567
Bill Wendling749a43d2012-12-30 13:50:49 +00004568 if (PAL.hasAttribute(1, Attribute::StructRet) && !RetType->isVoidTy())
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004569 return Error(RetTypeLoc, "functions with 'sret' argument must return void");
4570
Chris Lattner229907c2011-07-18 04:54:35 +00004571 FunctionType *FT =
Owen Anderson4056ca92009-07-29 22:17:13 +00004572 FunctionType::get(RetType, ParamTypeList, isVarArg);
Chris Lattner229907c2011-07-18 04:54:35 +00004573 PointerType *PFT = PointerType::getUnqual(FT);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004574
Craig Topper2617dcc2014-04-15 06:32:26 +00004575 Fn = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004576 if (!FunctionName.empty()) {
4577 // If this was a definition of a forward reference, remove the definition
4578 // from the forward reference table and fill in the forward ref.
David Blaikie9ebdc692015-09-21 21:07:50 +00004579 auto FRVI = ForwardRefVals.find(FunctionName);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004580 if (FRVI != ForwardRefVals.end()) {
4581 Fn = M->getFunction(FunctionName);
Nick Lewycky686d7cb2012-10-11 00:38:25 +00004582 if (!Fn)
4583 return Error(FRVI->second.second, "invalid forward reference to "
4584 "function as global value!");
Chris Lattnerc239eb72010-04-20 04:49:11 +00004585 if (Fn->getType() != PFT)
4586 return Error(FRVI->second.second, "invalid forward reference to "
4587 "function '" + FunctionName + "' with wrong type!");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004588
Chris Lattnerac161bf2009-01-02 07:01:27 +00004589 ForwardRefVals.erase(FRVI);
4590 } else if ((Fn = M->getFunction(FunctionName))) {
Chris Lattner5756c162011-06-17 07:06:44 +00004591 // Reject redefinitions.
4592 return Error(NameLoc, "invalid redefinition of function '" +
4593 FunctionName + "'");
Chris Lattnere38317f2009-10-25 23:22:50 +00004594 } else if (M->getNamedValue(FunctionName)) {
4595 return Error(NameLoc, "redefinition of function '@" + FunctionName + "'");
Chris Lattnerac161bf2009-01-02 07:01:27 +00004596 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004597
Dan Gohman399d6ae2009-08-29 23:37:49 +00004598 } else {
Chris Lattnerac161bf2009-01-02 07:01:27 +00004599 // If this is a definition of a forward referenced function, make sure the
4600 // types agree.
David Blaikie9ebdc692015-09-21 21:07:50 +00004601 auto I = ForwardRefValIDs.find(NumberedVals.size());
Chris Lattnerac161bf2009-01-02 07:01:27 +00004602 if (I != ForwardRefValIDs.end()) {
4603 Fn = cast<Function>(I->second.first);
4604 if (Fn->getType() != PFT)
4605 return Error(NameLoc, "type of definition and forward reference of '@" +
Benjamin Kramerc7583112010-09-27 17:42:11 +00004606 Twine(NumberedVals.size()) + "' disagree");
Chris Lattnerac161bf2009-01-02 07:01:27 +00004607 ForwardRefValIDs.erase(I);
4608 }
4609 }
4610
Craig Topper2617dcc2014-04-15 06:32:26 +00004611 if (!Fn)
Chris Lattnerac161bf2009-01-02 07:01:27 +00004612 Fn = Function::Create(FT, GlobalValue::ExternalLinkage, FunctionName, M);
4613 else // Move the forward-reference to the correct spot in the module.
4614 M->getFunctionList().splice(M->end(), M->getFunctionList(), Fn);
4615
4616 if (FunctionName.empty())
4617 NumberedVals.push_back(Fn);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004618
Chris Lattnerac161bf2009-01-02 07:01:27 +00004619 Fn->setLinkage((GlobalValue::LinkageTypes)Linkage);
4620 Fn->setVisibility((GlobalValue::VisibilityTypes)Visibility);
Nico Rieck7157bb72014-01-14 15:22:47 +00004621 Fn->setDLLStorageClass((GlobalValue::DLLStorageClassTypes)DLLStorageClass);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004622 Fn->setCallingConv(CC);
4623 Fn->setAttributes(PAL);
Rafael Espindola45e6c192011-01-08 16:42:36 +00004624 Fn->setUnnamedAddr(UnnamedAddr);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004625 Fn->setAlignment(Alignment);
4626 Fn->setSection(Section);
David Majnemerdad0a642014-06-27 18:19:56 +00004627 Fn->setComdat(C);
David Majnemer7fddecc2015-06-17 20:52:32 +00004628 Fn->setPersonalityFn(PersonalityFn);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004629 if (!GC.empty()) Fn->setGC(GC.c_str());
Peter Collingbourne3fa50f92013-09-16 01:08:15 +00004630 Fn->setPrefixData(Prefix);
Peter Collingbourne51d2de72014-12-03 02:08:38 +00004631 Fn->setPrologueData(Prologue);
Bill Wendlingb32b0412013-02-08 06:32:06 +00004632 ForwardRefAttrGroups[Fn] = FwdRefAttrGrps;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004633
Chris Lattnerac161bf2009-01-02 07:01:27 +00004634 // Add all of the arguments we parsed to the function.
4635 Function::arg_iterator ArgIt = Fn->arg_begin();
4636 for (unsigned i = 0, e = ArgList.size(); i != e; ++i, ++ArgIt) {
4637 // If the argument has a name, insert it into the argument symbol table.
4638 if (ArgList[i].Name.empty()) continue;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004639
Chris Lattnerac161bf2009-01-02 07:01:27 +00004640 // Set the name, if it conflicted, it will be auto-renamed.
4641 ArgIt->setName(ArgList[i].Name);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004642
Benjamin Kramer1dc34b42010-10-16 11:28:23 +00004643 if (ArgIt->getName() != ArgList[i].Name)
Chris Lattnerac161bf2009-01-02 07:01:27 +00004644 return Error(ArgList[i].Loc, "redefinition of argument '%" +
4645 ArgList[i].Name + "'");
4646 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004647
Duncan P. N. Exon Smith17169902014-08-19 00:13:19 +00004648 if (isDefine)
4649 return false;
4650
Robin Morisset039781e2014-08-29 21:53:01 +00004651 // Check the declaration has no block address forward references.
Duncan P. N. Exon Smith17169902014-08-19 00:13:19 +00004652 ValID ID;
4653 if (FunctionName.empty()) {
4654 ID.Kind = ValID::t_GlobalID;
4655 ID.UIntVal = NumberedVals.size() - 1;
4656 } else {
4657 ID.Kind = ValID::t_GlobalName;
4658 ID.StrVal = FunctionName;
4659 }
4660 auto Blocks = ForwardRefBlockAddresses.find(ID);
4661 if (Blocks != ForwardRefBlockAddresses.end())
4662 return Error(Blocks->first.Loc,
4663 "cannot take blockaddress inside a declaration");
Chris Lattnerac161bf2009-01-02 07:01:27 +00004664 return false;
4665}
4666
Duncan P. N. Exon Smith17169902014-08-19 00:13:19 +00004667bool LLParser::PerFunctionState::resolveForwardRefBlockAddresses() {
4668 ValID ID;
4669 if (FunctionNumber == -1) {
4670 ID.Kind = ValID::t_GlobalName;
4671 ID.StrVal = F.getName();
4672 } else {
4673 ID.Kind = ValID::t_GlobalID;
4674 ID.UIntVal = FunctionNumber;
4675 }
4676
4677 auto Blocks = P.ForwardRefBlockAddresses.find(ID);
4678 if (Blocks == P.ForwardRefBlockAddresses.end())
4679 return false;
4680
4681 for (const auto &I : Blocks->second) {
4682 const ValID &BBID = I.first;
4683 GlobalValue *GV = I.second;
4684
4685 assert((BBID.Kind == ValID::t_LocalID || BBID.Kind == ValID::t_LocalName) &&
4686 "Expected local id or name");
4687 BasicBlock *BB;
4688 if (BBID.Kind == ValID::t_LocalName)
4689 BB = GetBB(BBID.StrVal, BBID.Loc);
4690 else
4691 BB = GetBB(BBID.UIntVal, BBID.Loc);
4692 if (!BB)
4693 return P.Error(BBID.Loc, "referenced value is not a basic block");
4694
4695 GV->replaceAllUsesWith(BlockAddress::get(&F, BB));
4696 GV->eraseFromParent();
4697 }
4698
4699 P.ForwardRefBlockAddresses.erase(Blocks);
4700 return false;
4701}
Chris Lattnerac161bf2009-01-02 07:01:27 +00004702
4703/// ParseFunctionBody
Duncan P. N. Exon Smith0a448fb2014-08-19 21:30:15 +00004704/// ::= '{' BasicBlock+ UseListOrderDirective* '}'
Chris Lattnerac161bf2009-01-02 07:01:27 +00004705bool LLParser::ParseFunctionBody(Function &Fn) {
Chris Lattner4649a732011-06-17 06:42:57 +00004706 if (Lex.getKind() != lltok::lbrace)
Chris Lattnerac161bf2009-01-02 07:01:27 +00004707 return TokError("expected '{' in function body");
4708 Lex.Lex(); // eat the {.
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004709
Chris Lattner3432c622009-10-28 03:39:23 +00004710 int FunctionNumber = -1;
4711 if (!Fn.hasName()) FunctionNumber = NumberedVals.size()-1;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004712
Chris Lattner3432c622009-10-28 03:39:23 +00004713 PerFunctionState PFS(*this, Fn, FunctionNumber);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004714
Duncan P. N. Exon Smith17169902014-08-19 00:13:19 +00004715 // Resolve block addresses and allow basic blocks to be forward-declared
4716 // within this function.
4717 if (PFS.resolveForwardRefBlockAddresses())
4718 return true;
4719 SaveAndRestore<PerFunctionState *> ScopeExit(BlockAddressPFS, &PFS);
4720
Chris Lattnerbbddd962010-01-09 19:20:07 +00004721 // We need at least one basic block.
Duncan P. N. Exon Smith0a448fb2014-08-19 21:30:15 +00004722 if (Lex.getKind() == lltok::rbrace || Lex.getKind() == lltok::kw_uselistorder)
Chris Lattnerbbddd962010-01-09 19:20:07 +00004723 return TokError("function body requires at least one basic block");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004724
Duncan P. N. Exon Smith0a448fb2014-08-19 21:30:15 +00004725 while (Lex.getKind() != lltok::rbrace &&
4726 Lex.getKind() != lltok::kw_uselistorder)
Chris Lattnerac161bf2009-01-02 07:01:27 +00004727 if (ParseBasicBlock(PFS)) return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004728
Duncan P. N. Exon Smith0a448fb2014-08-19 21:30:15 +00004729 while (Lex.getKind() != lltok::rbrace)
4730 if (ParseUseListOrder(&PFS))
4731 return true;
4732
Chris Lattnerac161bf2009-01-02 07:01:27 +00004733 // Eat the }.
4734 Lex.Lex();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004735
Chris Lattnerac161bf2009-01-02 07:01:27 +00004736 // Verify function is ok.
Chris Lattner3432c622009-10-28 03:39:23 +00004737 return PFS.FinishFunction();
Chris Lattnerac161bf2009-01-02 07:01:27 +00004738}
4739
4740/// ParseBasicBlock
4741/// ::= LabelStr? Instruction*
4742bool LLParser::ParseBasicBlock(PerFunctionState &PFS) {
4743 // If this basic block starts out with a name, remember it.
4744 std::string Name;
4745 LocTy NameLoc = Lex.getLoc();
4746 if (Lex.getKind() == lltok::LabelStr) {
4747 Name = Lex.getStrVal();
4748 Lex.Lex();
4749 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004750
Chris Lattnerac161bf2009-01-02 07:01:27 +00004751 BasicBlock *BB = PFS.DefineBB(Name, NameLoc);
Owen Anderson576a9a22015-03-02 05:25:09 +00004752 if (!BB)
4753 return Error(NameLoc,
4754 "unable to create block named '" + Name + "'");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004755
Chris Lattnerac161bf2009-01-02 07:01:27 +00004756 std::string NameStr;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004757
Chris Lattnerac161bf2009-01-02 07:01:27 +00004758 // Parse the instructions in this block until we get a terminator.
4759 Instruction *Inst;
4760 do {
4761 // This instruction may have three possibilities for a name: a) none
4762 // specified, b) name specified "%foo =", c) number specified: "%4 =".
4763 LocTy NameLoc = Lex.getLoc();
4764 int NameID = -1;
4765 NameStr = "";
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004766
Chris Lattnerac161bf2009-01-02 07:01:27 +00004767 if (Lex.getKind() == lltok::LocalVarID) {
4768 NameID = Lex.getUIntVal();
4769 Lex.Lex();
4770 if (ParseToken(lltok::equal, "expected '=' after instruction id"))
4771 return true;
Chris Lattnerdef19492011-06-17 06:36:20 +00004772 } else if (Lex.getKind() == lltok::LocalVar) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00004773 NameStr = Lex.getStrVal();
4774 Lex.Lex();
4775 if (ParseToken(lltok::equal, "expected '=' after instruction name"))
4776 return true;
4777 }
Devang Patelea8a4b92009-09-17 23:04:48 +00004778
Chris Lattner77b89dc2009-12-30 05:23:43 +00004779 switch (ParseInstruction(Inst, BB, PFS)) {
Craig Toppera2886c22012-02-07 05:05:23 +00004780 default: llvm_unreachable("Unknown ParseInstruction result!");
Chris Lattner77b89dc2009-12-30 05:23:43 +00004781 case InstError: return true;
4782 case InstNormal:
Chris Lattner2e664bd2010-04-07 04:08:57 +00004783 BB->getInstList().push_back(Inst);
4784
Chris Lattner77b89dc2009-12-30 05:23:43 +00004785 // With a normal result, we check to see if the instruction is followed by
4786 // a comma and metadata.
4787 if (EatIfPresent(lltok::comma))
Duncan P. N. Exon Smith27d702c2015-04-24 21:29:36 +00004788 if (ParseInstructionMetadata(*Inst))
Chris Lattner77b89dc2009-12-30 05:23:43 +00004789 return true;
4790 break;
4791 case InstExtraComma:
Chris Lattner2e664bd2010-04-07 04:08:57 +00004792 BB->getInstList().push_back(Inst);
4793
Chris Lattner77b89dc2009-12-30 05:23:43 +00004794 // If the instruction parser ate an extra comma at the end of it, it
4795 // *must* be followed by metadata.
Duncan P. N. Exon Smith27d702c2015-04-24 21:29:36 +00004796 if (ParseInstructionMetadata(*Inst))
Chris Lattner77b89dc2009-12-30 05:23:43 +00004797 return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004798 break;
Chris Lattner77b89dc2009-12-30 05:23:43 +00004799 }
Devang Patelea8a4b92009-09-17 23:04:48 +00004800
Chris Lattnerac161bf2009-01-02 07:01:27 +00004801 // Set the name on the instruction.
4802 if (PFS.SetInstName(NameID, NameStr, NameLoc, Inst)) return true;
4803 } while (!isa<TerminatorInst>(Inst));
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004804
Chris Lattnerac161bf2009-01-02 07:01:27 +00004805 return false;
4806}
4807
4808//===----------------------------------------------------------------------===//
4809// Instruction Parsing.
4810//===----------------------------------------------------------------------===//
4811
4812/// ParseInstruction - Parse one of the many different instructions.
4813///
Chris Lattner77b89dc2009-12-30 05:23:43 +00004814int LLParser::ParseInstruction(Instruction *&Inst, BasicBlock *BB,
4815 PerFunctionState &PFS) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00004816 lltok::Kind Token = Lex.getKind();
4817 if (Token == lltok::Eof)
4818 return TokError("found end of file when expecting more instructions");
4819 LocTy Loc = Lex.getLoc();
Chris Lattner89d856e2009-03-01 00:53:13 +00004820 unsigned KeywordVal = Lex.getUIntVal();
Chris Lattnerac161bf2009-01-02 07:01:27 +00004821 Lex.Lex(); // Eat the keyword.
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004822
Chris Lattnerac161bf2009-01-02 07:01:27 +00004823 switch (Token) {
4824 default: return Error(Loc, "expected instruction opcode");
4825 // Terminator Instructions.
Owen Anderson55f1c092009-08-13 21:58:54 +00004826 case lltok::kw_unreachable: Inst = new UnreachableInst(Context); return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004827 case lltok::kw_ret: return ParseRet(Inst, BB, PFS);
4828 case lltok::kw_br: return ParseBr(Inst, PFS);
4829 case lltok::kw_switch: return ParseSwitch(Inst, PFS);
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00004830 case lltok::kw_indirectbr: return ParseIndirectBr(Inst, PFS);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004831 case lltok::kw_invoke: return ParseInvoke(Inst, PFS);
Bill Wendlingf891bf82011-07-31 06:30:59 +00004832 case lltok::kw_resume: return ParseResume(Inst, PFS);
David Majnemer654e1302015-07-31 17:58:14 +00004833 case lltok::kw_cleanupret: return ParseCleanupRet(Inst, PFS);
4834 case lltok::kw_catchret: return ParseCatchRet(Inst, PFS);
David Majnemer8a1c45d2015-12-12 05:38:55 +00004835 case lltok::kw_catchswitch: return ParseCatchSwitch(Inst, PFS);
4836 case lltok::kw_catchpad: return ParseCatchPad(Inst, PFS);
David Majnemer8a1c45d2015-12-12 05:38:55 +00004837 case lltok::kw_cleanuppad: return ParseCleanupPad(Inst, PFS);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004838 // Binary Operators.
4839 case lltok::kw_add:
4840 case lltok::kw_sub:
Chris Lattnera676c0f2011-02-07 16:40:21 +00004841 case lltok::kw_mul:
4842 case lltok::kw_shl: {
Chris Lattnera676c0f2011-02-07 16:40:21 +00004843 bool NUW = EatIfPresent(lltok::kw_nuw);
4844 bool NSW = EatIfPresent(lltok::kw_nsw);
4845 if (!NUW) NUW = EatIfPresent(lltok::kw_nuw);
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004846
Chris Lattnera676c0f2011-02-07 16:40:21 +00004847 if (ParseArithmetic(Inst, PFS, KeywordVal, 1)) return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004848
Chris Lattnera676c0f2011-02-07 16:40:21 +00004849 if (NUW) cast<BinaryOperator>(Inst)->setHasNoUnsignedWrap(true);
4850 if (NSW) cast<BinaryOperator>(Inst)->setHasNoSignedWrap(true);
4851 return false;
Dan Gohman9c7f8082009-07-27 16:11:46 +00004852 }
Dan Gohmana5b96452009-06-04 22:49:04 +00004853 case lltok::kw_fadd:
4854 case lltok::kw_fsub:
Michael Ilseman92053172012-11-27 00:42:44 +00004855 case lltok::kw_fmul:
4856 case lltok::kw_fdiv:
4857 case lltok::kw_frem: {
4858 FastMathFlags FMF = EatFastMathFlagsIfPresent();
4859 int Res = ParseArithmetic(Inst, PFS, KeywordVal, 2);
4860 if (Res != 0)
4861 return Res;
4862 if (FMF.any())
4863 Inst->setFastMathFlags(FMF);
4864 return 0;
4865 }
Dan Gohmana5b96452009-06-04 22:49:04 +00004866
Chris Lattner35315d02011-02-06 21:44:57 +00004867 case lltok::kw_sdiv:
Chris Lattnera676c0f2011-02-07 16:40:21 +00004868 case lltok::kw_udiv:
4869 case lltok::kw_lshr:
4870 case lltok::kw_ashr: {
4871 bool Exact = EatIfPresent(lltok::kw_exact);
4872
4873 if (ParseArithmetic(Inst, PFS, KeywordVal, 1)) return true;
4874 if (Exact) cast<BinaryOperator>(Inst)->setIsExact(true);
4875 return false;
Dan Gohman9c7f8082009-07-27 16:11:46 +00004876 }
4877
Chris Lattnerac161bf2009-01-02 07:01:27 +00004878 case lltok::kw_urem:
Chris Lattner89d856e2009-03-01 00:53:13 +00004879 case lltok::kw_srem: return ParseArithmetic(Inst, PFS, KeywordVal, 1);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004880 case lltok::kw_and:
4881 case lltok::kw_or:
Chris Lattner89d856e2009-03-01 00:53:13 +00004882 case lltok::kw_xor: return ParseLogical(Inst, PFS, KeywordVal);
James Molloy88eb5352015-07-10 12:52:00 +00004883 case lltok::kw_icmp: return ParseCompare(Inst, PFS, KeywordVal);
4884 case lltok::kw_fcmp: {
4885 FastMathFlags FMF = EatFastMathFlagsIfPresent();
4886 int Res = ParseCompare(Inst, PFS, KeywordVal);
4887 if (Res != 0)
4888 return Res;
4889 if (FMF.any())
4890 Inst->setFastMathFlags(FMF);
4891 return 0;
4892 }
4893
Chris Lattnerac161bf2009-01-02 07:01:27 +00004894 // Casts.
4895 case lltok::kw_trunc:
4896 case lltok::kw_zext:
4897 case lltok::kw_sext:
4898 case lltok::kw_fptrunc:
4899 case lltok::kw_fpext:
4900 case lltok::kw_bitcast:
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00004901 case lltok::kw_addrspacecast:
Chris Lattnerac161bf2009-01-02 07:01:27 +00004902 case lltok::kw_uitofp:
4903 case lltok::kw_sitofp:
4904 case lltok::kw_fptoui:
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004905 case lltok::kw_fptosi:
Chris Lattnerac161bf2009-01-02 07:01:27 +00004906 case lltok::kw_inttoptr:
Chris Lattner89d856e2009-03-01 00:53:13 +00004907 case lltok::kw_ptrtoint: return ParseCast(Inst, PFS, KeywordVal);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004908 // Other.
4909 case lltok::kw_select: return ParseSelect(Inst, PFS);
Chris Lattnerb55ab542009-01-05 08:18:44 +00004910 case lltok::kw_va_arg: return ParseVA_Arg(Inst, PFS);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004911 case lltok::kw_extractelement: return ParseExtractElement(Inst, PFS);
4912 case lltok::kw_insertelement: return ParseInsertElement(Inst, PFS);
4913 case lltok::kw_shufflevector: return ParseShuffleVector(Inst, PFS);
4914 case lltok::kw_phi: return ParsePHI(Inst, PFS);
Bill Wendlingfae14752011-08-12 20:24:12 +00004915 case lltok::kw_landingpad: return ParseLandingPad(Inst, PFS);
Reid Kleckner5772b772014-04-24 20:14:34 +00004916 // Call.
4917 case lltok::kw_call: return ParseCall(Inst, PFS, CallInst::TCK_None);
4918 case lltok::kw_tail: return ParseCall(Inst, PFS, CallInst::TCK_Tail);
4919 case lltok::kw_musttail: return ParseCall(Inst, PFS, CallInst::TCK_MustTail);
Akira Hatanaka5cfcce122015-11-06 23:55:38 +00004920 case lltok::kw_notail: return ParseCall(Inst, PFS, CallInst::TCK_NoTail);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004921 // Memory.
Victor Hernandezc7d6a832009-10-17 00:00:19 +00004922 case lltok::kw_alloca: return ParseAlloc(Inst, PFS);
Chris Lattnerbc639292011-11-27 06:56:53 +00004923 case lltok::kw_load: return ParseLoad(Inst, PFS);
4924 case lltok::kw_store: return ParseStore(Inst, PFS);
Eli Friedman02e737b2011-08-12 22:50:01 +00004925 case lltok::kw_cmpxchg: return ParseCmpXchg(Inst, PFS);
4926 case lltok::kw_atomicrmw: return ParseAtomicRMW(Inst, PFS);
Eli Friedmanfee02c62011-07-25 23:16:38 +00004927 case lltok::kw_fence: return ParseFence(Inst, PFS);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004928 case lltok::kw_getelementptr: return ParseGetElementPtr(Inst, PFS);
4929 case lltok::kw_extractvalue: return ParseExtractValue(Inst, PFS);
4930 case lltok::kw_insertvalue: return ParseInsertValue(Inst, PFS);
4931 }
4932}
4933
4934/// ParseCmpPredicate - Parse an integer or fp predicate, based on Kind.
4935bool LLParser::ParseCmpPredicate(unsigned &P, unsigned Opc) {
Nick Lewyckya21d3da2009-07-08 03:04:38 +00004936 if (Opc == Instruction::FCmp) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00004937 switch (Lex.getKind()) {
David Tweeda11edf02013-01-07 13:32:38 +00004938 default: return TokError("expected fcmp predicate (e.g. 'oeq')");
Chris Lattnerac161bf2009-01-02 07:01:27 +00004939 case lltok::kw_oeq: P = CmpInst::FCMP_OEQ; break;
4940 case lltok::kw_one: P = CmpInst::FCMP_ONE; break;
4941 case lltok::kw_olt: P = CmpInst::FCMP_OLT; break;
4942 case lltok::kw_ogt: P = CmpInst::FCMP_OGT; break;
4943 case lltok::kw_ole: P = CmpInst::FCMP_OLE; break;
4944 case lltok::kw_oge: P = CmpInst::FCMP_OGE; break;
4945 case lltok::kw_ord: P = CmpInst::FCMP_ORD; break;
4946 case lltok::kw_uno: P = CmpInst::FCMP_UNO; break;
4947 case lltok::kw_ueq: P = CmpInst::FCMP_UEQ; break;
4948 case lltok::kw_une: P = CmpInst::FCMP_UNE; break;
4949 case lltok::kw_ult: P = CmpInst::FCMP_ULT; break;
4950 case lltok::kw_ugt: P = CmpInst::FCMP_UGT; break;
4951 case lltok::kw_ule: P = CmpInst::FCMP_ULE; break;
4952 case lltok::kw_uge: P = CmpInst::FCMP_UGE; break;
4953 case lltok::kw_true: P = CmpInst::FCMP_TRUE; break;
4954 case lltok::kw_false: P = CmpInst::FCMP_FALSE; break;
4955 }
4956 } else {
4957 switch (Lex.getKind()) {
David Tweeda11edf02013-01-07 13:32:38 +00004958 default: return TokError("expected icmp predicate (e.g. 'eq')");
Chris Lattnerac161bf2009-01-02 07:01:27 +00004959 case lltok::kw_eq: P = CmpInst::ICMP_EQ; break;
4960 case lltok::kw_ne: P = CmpInst::ICMP_NE; break;
4961 case lltok::kw_slt: P = CmpInst::ICMP_SLT; break;
4962 case lltok::kw_sgt: P = CmpInst::ICMP_SGT; break;
4963 case lltok::kw_sle: P = CmpInst::ICMP_SLE; break;
4964 case lltok::kw_sge: P = CmpInst::ICMP_SGE; break;
4965 case lltok::kw_ult: P = CmpInst::ICMP_ULT; break;
4966 case lltok::kw_ugt: P = CmpInst::ICMP_UGT; break;
4967 case lltok::kw_ule: P = CmpInst::ICMP_ULE; break;
4968 case lltok::kw_uge: P = CmpInst::ICMP_UGE; break;
4969 }
4970 }
4971 Lex.Lex();
4972 return false;
4973}
4974
4975//===----------------------------------------------------------------------===//
4976// Terminator Instructions.
4977//===----------------------------------------------------------------------===//
4978
4979/// ParseRet - Parse a return instruction.
Chris Lattner596760d2009-12-29 21:25:40 +00004980/// ::= 'ret' void (',' !dbg, !1)*
4981/// ::= 'ret' TypeAndValue (',' !dbg, !1)*
Chris Lattner33de4272011-06-17 06:49:41 +00004982bool LLParser::ParseRet(Instruction *&Inst, BasicBlock *BB,
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004983 PerFunctionState &PFS) {
4984 SMLoc TypeLoc = Lex.getLoc();
Craig Topper2617dcc2014-04-15 06:32:26 +00004985 Type *Ty = nullptr;
Chris Lattnerf880ca22009-03-09 04:49:14 +00004986 if (ParseType(Ty, true /*void allowed*/)) return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004987
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004988 Type *ResType = PFS.getFunction().getReturnType();
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004989
Chris Lattnerfdd87902009-10-05 05:54:46 +00004990 if (Ty->isVoidTy()) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004991 if (!ResType->isVoidTy())
4992 return Error(TypeLoc, "value doesn't match function result type '" +
4993 getTypeString(ResType) + "'");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004994
Owen Anderson55f1c092009-08-13 21:58:54 +00004995 Inst = ReturnInst::Create(Context);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004996 return false;
4997 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004998
Chris Lattnerac161bf2009-01-02 07:01:27 +00004999 Value *RV;
5000 if (ParseValue(Ty, RV, PFS)) return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005001
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00005002 if (ResType != RV->getType())
5003 return Error(TypeLoc, "value doesn't match function result type '" +
5004 getTypeString(ResType) + "'");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00005005
Owen Anderson55f1c092009-08-13 21:58:54 +00005006 Inst = ReturnInst::Create(Context, RV);
Chris Lattner33de4272011-06-17 06:49:41 +00005007 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005008}
5009
5010
5011/// ParseBr
5012/// ::= 'br' TypeAndValue
5013/// ::= 'br' TypeAndValue ',' TypeAndValue ',' TypeAndValue
5014bool LLParser::ParseBr(Instruction *&Inst, PerFunctionState &PFS) {
5015 LocTy Loc, Loc2;
Chris Lattner3ed871f2009-10-27 19:13:16 +00005016 Value *Op0;
5017 BasicBlock *Op1, *Op2;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005018 if (ParseTypeAndValue(Op0, Loc, PFS)) return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005019
Chris Lattnerac161bf2009-01-02 07:01:27 +00005020 if (BasicBlock *BB = dyn_cast<BasicBlock>(Op0)) {
5021 Inst = BranchInst::Create(BB);
5022 return false;
5023 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005024
Owen Anderson55f1c092009-08-13 21:58:54 +00005025 if (Op0->getType() != Type::getInt1Ty(Context))
Chris Lattnerac161bf2009-01-02 07:01:27 +00005026 return Error(Loc, "branch condition must have 'i1' type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005027
Chris Lattnerac161bf2009-01-02 07:01:27 +00005028 if (ParseToken(lltok::comma, "expected ',' after branch condition") ||
Chris Lattner3ed871f2009-10-27 19:13:16 +00005029 ParseTypeAndBasicBlock(Op1, Loc, PFS) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00005030 ParseToken(lltok::comma, "expected ',' after true destination") ||
Chris Lattner3ed871f2009-10-27 19:13:16 +00005031 ParseTypeAndBasicBlock(Op2, Loc2, PFS))
Chris Lattnerac161bf2009-01-02 07:01:27 +00005032 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005033
Chris Lattner3ed871f2009-10-27 19:13:16 +00005034 Inst = BranchInst::Create(Op1, Op2, Op0);
Chris Lattnerac161bf2009-01-02 07:01:27 +00005035 return false;
5036}
5037
5038/// ParseSwitch
5039/// Instruction
5040/// ::= 'switch' TypeAndValue ',' TypeAndValue '[' JumpTable ']'
5041/// JumpTable
5042/// ::= (TypeAndValue ',' TypeAndValue)*
5043bool LLParser::ParseSwitch(Instruction *&Inst, PerFunctionState &PFS) {
5044 LocTy CondLoc, BBLoc;
Chris Lattner3ed871f2009-10-27 19:13:16 +00005045 Value *Cond;
5046 BasicBlock *DefaultBB;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005047 if (ParseTypeAndValue(Cond, CondLoc, PFS) ||
5048 ParseToken(lltok::comma, "expected ',' after switch condition") ||
Chris Lattner3ed871f2009-10-27 19:13:16 +00005049 ParseTypeAndBasicBlock(DefaultBB, BBLoc, PFS) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00005050 ParseToken(lltok::lsquare, "expected '[' with switch table"))
5051 return true;
5052
Duncan Sands19d0b472010-02-16 11:11:14 +00005053 if (!Cond->getType()->isIntegerTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00005054 return Error(CondLoc, "switch condition must have integer type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005055
Chris Lattnerac161bf2009-01-02 07:01:27 +00005056 // Parse the jump table pairs.
5057 SmallPtrSet<Value*, 32> SeenCases;
5058 SmallVector<std::pair<ConstantInt*, BasicBlock*>, 32> Table;
5059 while (Lex.getKind() != lltok::rsquare) {
Chris Lattner3ed871f2009-10-27 19:13:16 +00005060 Value *Constant;
5061 BasicBlock *DestBB;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005062
Chris Lattnerac161bf2009-01-02 07:01:27 +00005063 if (ParseTypeAndValue(Constant, CondLoc, PFS) ||
5064 ParseToken(lltok::comma, "expected ',' after case value") ||
Chris Lattner3ed871f2009-10-27 19:13:16 +00005065 ParseTypeAndBasicBlock(DestBB, PFS))
Chris Lattnerac161bf2009-01-02 07:01:27 +00005066 return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00005067
David Blaikie70573dc2014-11-19 07:49:26 +00005068 if (!SeenCases.insert(Constant).second)
Chris Lattnerac161bf2009-01-02 07:01:27 +00005069 return Error(CondLoc, "duplicate case value in switch");
5070 if (!isa<ConstantInt>(Constant))
5071 return Error(CondLoc, "case value is not a constant integer");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005072
Chris Lattner3ed871f2009-10-27 19:13:16 +00005073 Table.push_back(std::make_pair(cast<ConstantInt>(Constant), DestBB));
Chris Lattnerac161bf2009-01-02 07:01:27 +00005074 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005075
Chris Lattnerac161bf2009-01-02 07:01:27 +00005076 Lex.Lex(); // Eat the ']'.
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005077
Chris Lattner3ed871f2009-10-27 19:13:16 +00005078 SwitchInst *SI = SwitchInst::Create(Cond, DefaultBB, Table.size());
Chris Lattnerac161bf2009-01-02 07:01:27 +00005079 for (unsigned i = 0, e = Table.size(); i != e; ++i)
5080 SI->addCase(Table[i].first, Table[i].second);
5081 Inst = SI;
5082 return false;
5083}
5084
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00005085/// ParseIndirectBr
Chris Lattner3ed871f2009-10-27 19:13:16 +00005086/// Instruction
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00005087/// ::= 'indirectbr' TypeAndValue ',' '[' LabelList ']'
5088bool LLParser::ParseIndirectBr(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattner3ed871f2009-10-27 19:13:16 +00005089 LocTy AddrLoc;
5090 Value *Address;
5091 if (ParseTypeAndValue(Address, AddrLoc, PFS) ||
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00005092 ParseToken(lltok::comma, "expected ',' after indirectbr address") ||
5093 ParseToken(lltok::lsquare, "expected '[' with indirectbr"))
Chris Lattner3ed871f2009-10-27 19:13:16 +00005094 return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00005095
Duncan Sands19d0b472010-02-16 11:11:14 +00005096 if (!Address->getType()->isPointerTy())
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00005097 return Error(AddrLoc, "indirectbr address must have pointer type");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00005098
Chris Lattner3ed871f2009-10-27 19:13:16 +00005099 // Parse the destination list.
5100 SmallVector<BasicBlock*, 16> DestList;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00005101
Chris Lattner3ed871f2009-10-27 19:13:16 +00005102 if (Lex.getKind() != lltok::rsquare) {
5103 BasicBlock *DestBB;
5104 if (ParseTypeAndBasicBlock(DestBB, PFS))
5105 return true;
5106 DestList.push_back(DestBB);
Michael Ilseman26ee2b82012-11-15 22:34:00 +00005107
Chris Lattner3ed871f2009-10-27 19:13:16 +00005108 while (EatIfPresent(lltok::comma)) {
5109 if (ParseTypeAndBasicBlock(DestBB, PFS))
5110 return true;
5111 DestList.push_back(DestBB);
5112 }
5113 }
Michael Ilseman26ee2b82012-11-15 22:34:00 +00005114
Chris Lattner3ed871f2009-10-27 19:13:16 +00005115 if (ParseToken(lltok::rsquare, "expected ']' at end of block list"))
5116 return true;
5117
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00005118 IndirectBrInst *IBI = IndirectBrInst::Create(Address, DestList.size());
Chris Lattner3ed871f2009-10-27 19:13:16 +00005119 for (unsigned i = 0, e = DestList.size(); i != e; ++i)
5120 IBI->addDestination(DestList[i]);
5121 Inst = IBI;
5122 return false;
5123}
5124
5125
Chris Lattnerac161bf2009-01-02 07:01:27 +00005126/// ParseInvoke
5127/// ::= 'invoke' OptionalCallingConv OptionalAttrs Type Value ParamList
5128/// OptionalAttrs 'to' TypeAndValue 'unwind' TypeAndValue
5129bool LLParser::ParseInvoke(Instruction *&Inst, PerFunctionState &PFS) {
5130 LocTy CallLoc = Lex.getLoc();
Bill Wendling50d27842012-10-15 20:35:56 +00005131 AttrBuilder RetAttrs, FnAttrs;
Bill Wendlingb32b0412013-02-08 06:32:06 +00005132 std::vector<unsigned> FwdRefAttrGrps;
Bill Wendling09bd1f72013-02-22 00:12:35 +00005133 LocTy NoBuiltinLoc;
Alexey Samsonov17a9cff2014-09-10 18:00:17 +00005134 unsigned CC;
Craig Topper2617dcc2014-04-15 06:32:26 +00005135 Type *RetType = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005136 LocTy RetTypeLoc;
5137 ValID CalleeID;
5138 SmallVector<ParamInfo, 16> ArgList;
Sanjoy Dasb513a9f2015-09-24 23:34:52 +00005139 SmallVector<OperandBundleDef, 2> BundleList;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005140
Chris Lattner3ed871f2009-10-27 19:13:16 +00005141 BasicBlock *NormalBB, *UnwindBB;
Sanjoy Dasb513a9f2015-09-24 23:34:52 +00005142 if (ParseOptionalCallingConv(CC) || ParseOptionalReturnAttrs(RetAttrs) ||
Chris Lattnerf880ca22009-03-09 04:49:14 +00005143 ParseType(RetType, RetTypeLoc, true /*void allowed*/) ||
Sanjoy Dasb513a9f2015-09-24 23:34:52 +00005144 ParseValID(CalleeID) || ParseParameterList(ArgList, PFS) ||
Bill Wendling09bd1f72013-02-22 00:12:35 +00005145 ParseFnAttributeValuePairs(FnAttrs, FwdRefAttrGrps, false,
5146 NoBuiltinLoc) ||
Sanjoy Dasb513a9f2015-09-24 23:34:52 +00005147 ParseOptionalOperandBundles(BundleList, PFS) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00005148 ParseToken(lltok::kw_to, "expected 'to' in invoke") ||
Chris Lattner3ed871f2009-10-27 19:13:16 +00005149 ParseTypeAndBasicBlock(NormalBB, PFS) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00005150 ParseToken(lltok::kw_unwind, "expected 'unwind' in invoke") ||
Chris Lattner3ed871f2009-10-27 19:13:16 +00005151 ParseTypeAndBasicBlock(UnwindBB, PFS))
Chris Lattnerac161bf2009-01-02 07:01:27 +00005152 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005153
Chris Lattnerac161bf2009-01-02 07:01:27 +00005154 // If RetType is a non-function pointer type, then this is the short syntax
5155 // for the call, which means that RetType is just the return type. Infer the
5156 // rest of the function argument types from the arguments that are present.
David Blaikie445e3fb2015-04-24 19:32:54 +00005157 FunctionType *Ty = dyn_cast<FunctionType>(RetType);
5158 if (!Ty) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00005159 // Pull out the types of all of the arguments...
Jay Foadb804a2b2011-07-12 14:06:48 +00005160 std::vector<Type*> ParamTypes;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005161 for (unsigned i = 0, e = ArgList.size(); i != e; ++i)
5162 ParamTypes.push_back(ArgList[i].V->getType());
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005163
Chris Lattnerac161bf2009-01-02 07:01:27 +00005164 if (!FunctionType::isValidReturnType(RetType))
5165 return Error(RetTypeLoc, "Invalid result type for LLVM function");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005166
Owen Anderson4056ca92009-07-29 22:17:13 +00005167 Ty = FunctionType::get(RetType, ParamTypes, false);
Chris Lattnerac161bf2009-01-02 07:01:27 +00005168 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005169
David Blaikie41ba2b42015-07-27 23:32:19 +00005170 CalleeID.FTy = Ty;
5171
Chris Lattnerac161bf2009-01-02 07:01:27 +00005172 // Look up the callee.
5173 Value *Callee;
David Blaikie445e3fb2015-04-24 19:32:54 +00005174 if (ConvertValIDToValue(PointerType::getUnqual(Ty), CalleeID, Callee, &PFS))
5175 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005176
Bill Wendling3d7b0b82012-12-19 07:18:57 +00005177 // Set up the Attribute for the function.
Bill Wendlingf5075a42013-01-27 02:24:02 +00005178 SmallVector<AttributeSet, 8> Attrs;
Bill Wendling3bef2dd2012-09-19 23:54:18 +00005179 if (RetAttrs.hasAttributes())
Bill Wendlingf5075a42013-01-27 02:24:02 +00005180 Attrs.push_back(AttributeSet::get(RetType->getContext(),
5181 AttributeSet::ReturnIndex,
5182 RetAttrs));
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005183
Chris Lattnerac161bf2009-01-02 07:01:27 +00005184 SmallVector<Value*, 8> Args;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005185
Chris Lattnerac161bf2009-01-02 07:01:27 +00005186 // Loop through FunctionType's arguments and ensure they are specified
5187 // correctly. Also, gather any parameter attributes.
5188 FunctionType::param_iterator I = Ty->param_begin();
5189 FunctionType::param_iterator E = Ty->param_end();
5190 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
Craig Topper2617dcc2014-04-15 06:32:26 +00005191 Type *ExpectedTy = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005192 if (I != E) {
5193 ExpectedTy = *I++;
5194 } else if (!Ty->isVarArg()) {
5195 return Error(ArgList[i].Loc, "too many arguments specified");
5196 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005197
Chris Lattnerac161bf2009-01-02 07:01:27 +00005198 if (ExpectedTy && ExpectedTy != ArgList[i].V->getType())
5199 return Error(ArgList[i].Loc, "argument is not of expected type '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00005200 getTypeString(ExpectedTy) + "'");
Chris Lattnerac161bf2009-01-02 07:01:27 +00005201 Args.push_back(ArgList[i].V);
Bill Wendlingfe0021a2013-01-31 00:29:54 +00005202 if (ArgList[i].Attrs.hasAttributes(i + 1)) {
5203 AttrBuilder B(ArgList[i].Attrs, i + 1);
Bill Wendlingf5075a42013-01-27 02:24:02 +00005204 Attrs.push_back(AttributeSet::get(RetType->getContext(), i + 1, B));
5205 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00005206 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005207
Chris Lattnerac161bf2009-01-02 07:01:27 +00005208 if (I != E)
5209 return Error(CallLoc, "not enough parameters specified for call");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005210
David Majnemer8d22abd2015-02-23 00:01:32 +00005211 if (FnAttrs.hasAttributes()) {
5212 if (FnAttrs.hasAlignmentAttr())
5213 return Error(CallLoc, "invoke instructions may not have an alignment");
5214
Bill Wendlingf5075a42013-01-27 02:24:02 +00005215 Attrs.push_back(AttributeSet::get(RetType->getContext(),
5216 AttributeSet::FunctionIndex,
5217 FnAttrs));
David Majnemer8d22abd2015-02-23 00:01:32 +00005218 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005219
Bill Wendling3d7b0b82012-12-19 07:18:57 +00005220 // Finish off the Attribute and check them
Bill Wendlinge94d8432012-12-07 23:16:57 +00005221 AttributeSet PAL = AttributeSet::get(Context, Attrs);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005222
Sanjoy Dasb513a9f2015-09-24 23:34:52 +00005223 InvokeInst *II =
5224 InvokeInst::Create(Ty, Callee, NormalBB, UnwindBB, Args, BundleList);
Chris Lattnerac161bf2009-01-02 07:01:27 +00005225 II->setCallingConv(CC);
5226 II->setAttributes(PAL);
Bill Wendlingb32b0412013-02-08 06:32:06 +00005227 ForwardRefAttrGroups[II] = FwdRefAttrGrps;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005228 Inst = II;
5229 return false;
5230}
5231
Bill Wendlingf891bf82011-07-31 06:30:59 +00005232/// ParseResume
5233/// ::= 'resume' TypeAndValue
5234bool LLParser::ParseResume(Instruction *&Inst, PerFunctionState &PFS) {
5235 Value *Exn; LocTy ExnLoc;
Bill Wendlingf891bf82011-07-31 06:30:59 +00005236 if (ParseTypeAndValue(Exn, ExnLoc, PFS))
5237 return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005238
Bill Wendlingf891bf82011-07-31 06:30:59 +00005239 ResumeInst *RI = ResumeInst::Create(Exn);
5240 Inst = RI;
5241 return false;
5242}
Chris Lattnerac161bf2009-01-02 07:01:27 +00005243
David Majnemer654e1302015-07-31 17:58:14 +00005244bool LLParser::ParseExceptionArgs(SmallVectorImpl<Value *> &Args,
5245 PerFunctionState &PFS) {
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00005246 if (ParseToken(lltok::lsquare, "expected '[' in catchpad/cleanuppad"))
David Majnemer654e1302015-07-31 17:58:14 +00005247 return true;
5248
5249 while (Lex.getKind() != lltok::rsquare) {
5250 // If this isn't the first argument, we need a comma.
5251 if (!Args.empty() &&
5252 ParseToken(lltok::comma, "expected ',' in argument list"))
5253 return true;
5254
5255 // Parse the argument.
5256 LocTy ArgLoc;
5257 Type *ArgTy = nullptr;
5258 if (ParseType(ArgTy, ArgLoc))
5259 return true;
5260
5261 Value *V;
5262 if (ArgTy->isMetadataTy()) {
5263 if (ParseMetadataAsValue(V, PFS))
5264 return true;
5265 } else {
5266 if (ParseValue(ArgTy, V, PFS))
5267 return true;
5268 }
5269 Args.push_back(V);
5270 }
5271
5272 Lex.Lex(); // Lex the ']'.
5273 return false;
5274}
5275
5276/// ParseCleanupRet
David Majnemer8a1c45d2015-12-12 05:38:55 +00005277/// ::= 'cleanupret' from Value unwind ('to' 'caller' | TypeAndValue)
David Majnemer654e1302015-07-31 17:58:14 +00005278bool LLParser::ParseCleanupRet(Instruction *&Inst, PerFunctionState &PFS) {
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00005279 Value *CleanupPad = nullptr;
David Majnemer654e1302015-07-31 17:58:14 +00005280
David Majnemer8a1c45d2015-12-12 05:38:55 +00005281 if (ParseToken(lltok::kw_from, "expected 'from' after cleanupret"))
5282 return true;
5283
5284 if (ParseValue(Type::getTokenTy(Context), CleanupPad, PFS))
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00005285 return true;
David Majnemer654e1302015-07-31 17:58:14 +00005286
5287 if (ParseToken(lltok::kw_unwind, "expected 'unwind' in cleanupret"))
5288 return true;
5289
5290 BasicBlock *UnwindBB = nullptr;
5291 if (Lex.getKind() == lltok::kw_to) {
5292 Lex.Lex();
5293 if (ParseToken(lltok::kw_caller, "expected 'caller' in cleanupret"))
5294 return true;
5295 } else {
5296 if (ParseTypeAndBasicBlock(UnwindBB, PFS)) {
5297 return true;
5298 }
5299 }
5300
David Majnemer8a1c45d2015-12-12 05:38:55 +00005301 Inst = CleanupReturnInst::Create(CleanupPad, UnwindBB);
David Majnemer654e1302015-07-31 17:58:14 +00005302 return false;
5303}
5304
5305/// ParseCatchRet
David Majnemer8a1c45d2015-12-12 05:38:55 +00005306/// ::= 'catchret' from Parent Value 'to' TypeAndValue
David Majnemer654e1302015-07-31 17:58:14 +00005307bool LLParser::ParseCatchRet(Instruction *&Inst, PerFunctionState &PFS) {
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00005308 Value *CatchPad = nullptr;
David Majnemer0bc0eef2015-08-15 02:46:08 +00005309
David Majnemer8a1c45d2015-12-12 05:38:55 +00005310 if (ParseToken(lltok::kw_from, "expected 'from' after catchret"))
5311 return true;
5312
5313 if (ParseValue(Type::getTokenTy(Context), CatchPad, PFS))
David Majnemer0bc0eef2015-08-15 02:46:08 +00005314 return true;
5315
David Majnemer0bc0eef2015-08-15 02:46:08 +00005316 BasicBlock *BB;
5317 if (ParseToken(lltok::kw_to, "expected 'to' in catchret") ||
5318 ParseTypeAndBasicBlock(BB, PFS))
5319 return true;
5320
David Majnemer8a1c45d2015-12-12 05:38:55 +00005321 Inst = CatchReturnInst::Create(CatchPad, BB);
5322 return false;
5323}
5324
5325/// ParseCatchSwitch
5326/// ::= 'catchswitch' within Parent
5327bool LLParser::ParseCatchSwitch(Instruction *&Inst, PerFunctionState &PFS) {
5328 Value *ParentPad;
5329 LocTy BBLoc;
5330
5331 if (ParseToken(lltok::kw_within, "expected 'within' after catchswitch"))
5332 return true;
5333
5334 if (Lex.getKind() != lltok::kw_none && Lex.getKind() != lltok::LocalVar &&
5335 Lex.getKind() != lltok::LocalVarID)
5336 return TokError("expected scope value for catchswitch");
5337
5338 if (ParseValue(Type::getTokenTy(Context), ParentPad, PFS))
5339 return true;
5340
5341 if (ParseToken(lltok::lsquare, "expected '[' with catchswitch labels"))
5342 return true;
5343
5344 SmallVector<BasicBlock *, 32> Table;
5345 do {
5346 BasicBlock *DestBB;
5347 if (ParseTypeAndBasicBlock(DestBB, PFS))
5348 return true;
5349 Table.push_back(DestBB);
5350 } while (EatIfPresent(lltok::comma));
5351
5352 if (ParseToken(lltok::rsquare, "expected ']' after catchswitch labels"))
5353 return true;
5354
5355 if (ParseToken(lltok::kw_unwind,
5356 "expected 'unwind' after catchswitch scope"))
5357 return true;
5358
5359 BasicBlock *UnwindBB = nullptr;
5360 if (EatIfPresent(lltok::kw_to)) {
5361 if (ParseToken(lltok::kw_caller, "expected 'caller' in catchswitch"))
5362 return true;
5363 } else {
5364 if (ParseTypeAndBasicBlock(UnwindBB, PFS))
5365 return true;
5366 }
5367
5368 auto *CatchSwitch =
5369 CatchSwitchInst::Create(ParentPad, UnwindBB, Table.size());
5370 for (BasicBlock *DestBB : Table)
5371 CatchSwitch->addHandler(DestBB);
5372 Inst = CatchSwitch;
David Majnemer654e1302015-07-31 17:58:14 +00005373 return false;
5374}
5375
5376/// ParseCatchPad
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00005377/// ::= 'catchpad' ParamList 'to' TypeAndValue 'unwind' TypeAndValue
David Majnemer654e1302015-07-31 17:58:14 +00005378bool LLParser::ParseCatchPad(Instruction *&Inst, PerFunctionState &PFS) {
David Majnemer8a1c45d2015-12-12 05:38:55 +00005379 Value *CatchSwitch = nullptr;
5380
5381 if (ParseToken(lltok::kw_within, "expected 'within' after catchpad"))
5382 return true;
5383
5384 if (Lex.getKind() != lltok::LocalVar && Lex.getKind() != lltok::LocalVarID)
5385 return TokError("expected scope value for catchpad");
5386
5387 if (ParseValue(Type::getTokenTy(Context), CatchSwitch, PFS))
5388 return true;
5389
David Majnemer654e1302015-07-31 17:58:14 +00005390 SmallVector<Value *, 8> Args;
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00005391 if (ParseExceptionArgs(Args, PFS))
David Majnemer654e1302015-07-31 17:58:14 +00005392 return true;
5393
David Majnemer8a1c45d2015-12-12 05:38:55 +00005394 Inst = CatchPadInst::Create(CatchSwitch, Args);
David Majnemer654e1302015-07-31 17:58:14 +00005395 return false;
5396}
5397
David Majnemer654e1302015-07-31 17:58:14 +00005398/// ParseCleanupPad
David Majnemer8a1c45d2015-12-12 05:38:55 +00005399/// ::= 'cleanuppad' within Parent ParamList
David Majnemer654e1302015-07-31 17:58:14 +00005400bool LLParser::ParseCleanupPad(Instruction *&Inst, PerFunctionState &PFS) {
David Majnemer8a1c45d2015-12-12 05:38:55 +00005401 Value *ParentPad = nullptr;
5402
5403 if (ParseToken(lltok::kw_within, "expected 'within' after cleanuppad"))
5404 return true;
5405
5406 if (Lex.getKind() != lltok::kw_none && Lex.getKind() != lltok::LocalVar &&
5407 Lex.getKind() != lltok::LocalVarID)
5408 return TokError("expected scope value for cleanuppad");
5409
5410 if (ParseValue(Type::getTokenTy(Context), ParentPad, PFS))
5411 return true;
5412
David Majnemer654e1302015-07-31 17:58:14 +00005413 SmallVector<Value *, 8> Args;
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00005414 if (ParseExceptionArgs(Args, PFS))
David Majnemer654e1302015-07-31 17:58:14 +00005415 return true;
5416
David Majnemer8a1c45d2015-12-12 05:38:55 +00005417 Inst = CleanupPadInst::Create(ParentPad, Args);
Joseph Tremoulet9ce71f72015-09-03 09:09:43 +00005418 return false;
5419}
5420
Chris Lattnerac161bf2009-01-02 07:01:27 +00005421//===----------------------------------------------------------------------===//
5422// Binary Operators.
5423//===----------------------------------------------------------------------===//
5424
5425/// ParseArithmetic
Chris Lattnereeefa9a2009-01-05 08:24:46 +00005426/// ::= ArithmeticOps TypeAndValue ',' Value
5427///
5428/// If OperandType is 0, then any FP or integer operand is allowed. If it is 1,
5429/// then any integer operand is allowed, if it is 2, any fp operand is allowed.
Chris Lattnerac161bf2009-01-02 07:01:27 +00005430bool LLParser::ParseArithmetic(Instruction *&Inst, PerFunctionState &PFS,
Chris Lattnereeefa9a2009-01-05 08:24:46 +00005431 unsigned Opc, unsigned OperandType) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00005432 LocTy Loc; Value *LHS, *RHS;
5433 if (ParseTypeAndValue(LHS, Loc, PFS) ||
5434 ParseToken(lltok::comma, "expected ',' in arithmetic operation") ||
5435 ParseValue(LHS->getType(), RHS, PFS))
5436 return true;
5437
Chris Lattnereeefa9a2009-01-05 08:24:46 +00005438 bool Valid;
5439 switch (OperandType) {
Torok Edwinfbcc6632009-07-14 16:55:14 +00005440 default: llvm_unreachable("Unknown operand type!");
Chris Lattnereeefa9a2009-01-05 08:24:46 +00005441 case 0: // int or FP.
Duncan Sands9dff9be2010-02-15 16:12:20 +00005442 Valid = LHS->getType()->isIntOrIntVectorTy() ||
5443 LHS->getType()->isFPOrFPVectorTy();
Chris Lattnereeefa9a2009-01-05 08:24:46 +00005444 break;
Duncan Sands9dff9be2010-02-15 16:12:20 +00005445 case 1: Valid = LHS->getType()->isIntOrIntVectorTy(); break;
5446 case 2: Valid = LHS->getType()->isFPOrFPVectorTy(); break;
Chris Lattnereeefa9a2009-01-05 08:24:46 +00005447 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005448
Chris Lattnereeefa9a2009-01-05 08:24:46 +00005449 if (!Valid)
5450 return Error(Loc, "invalid operand type for instruction");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005451
Chris Lattnerac161bf2009-01-02 07:01:27 +00005452 Inst = BinaryOperator::Create((Instruction::BinaryOps)Opc, LHS, RHS);
5453 return false;
5454}
5455
5456/// ParseLogical
5457/// ::= ArithmeticOps TypeAndValue ',' Value {
5458bool LLParser::ParseLogical(Instruction *&Inst, PerFunctionState &PFS,
5459 unsigned Opc) {
5460 LocTy Loc; Value *LHS, *RHS;
5461 if (ParseTypeAndValue(LHS, Loc, PFS) ||
5462 ParseToken(lltok::comma, "expected ',' in logical operation") ||
5463 ParseValue(LHS->getType(), RHS, PFS))
5464 return true;
5465
Duncan Sands9dff9be2010-02-15 16:12:20 +00005466 if (!LHS->getType()->isIntOrIntVectorTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00005467 return Error(Loc,"instruction requires integer or integer vector operands");
5468
5469 Inst = BinaryOperator::Create((Instruction::BinaryOps)Opc, LHS, RHS);
5470 return false;
5471}
5472
5473
5474/// ParseCompare
5475/// ::= 'icmp' IPredicates TypeAndValue ',' Value
5476/// ::= 'fcmp' FPredicates TypeAndValue ',' Value
Chris Lattnerac161bf2009-01-02 07:01:27 +00005477bool LLParser::ParseCompare(Instruction *&Inst, PerFunctionState &PFS,
5478 unsigned Opc) {
5479 // Parse the integer/fp comparison predicate.
5480 LocTy Loc;
5481 unsigned Pred;
5482 Value *LHS, *RHS;
5483 if (ParseCmpPredicate(Pred, Opc) ||
5484 ParseTypeAndValue(LHS, Loc, PFS) ||
5485 ParseToken(lltok::comma, "expected ',' after compare value") ||
5486 ParseValue(LHS->getType(), RHS, PFS))
5487 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005488
Chris Lattnerac161bf2009-01-02 07:01:27 +00005489 if (Opc == Instruction::FCmp) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00005490 if (!LHS->getType()->isFPOrFPVectorTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00005491 return Error(Loc, "fcmp requires floating point operands");
Dan Gohmanad1f0a12009-08-25 23:17:54 +00005492 Inst = new FCmpInst(CmpInst::Predicate(Pred), LHS, RHS);
Nick Lewyckya21d3da2009-07-08 03:04:38 +00005493 } else {
5494 assert(Opc == Instruction::ICmp && "Unknown opcode for CmpInst!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00005495 if (!LHS->getType()->isIntOrIntVectorTy() &&
Nadav Rotem3924cb02011-12-05 06:29:09 +00005496 !LHS->getType()->getScalarType()->isPointerTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00005497 return Error(Loc, "icmp requires integer operands");
Dan Gohmanad1f0a12009-08-25 23:17:54 +00005498 Inst = new ICmpInst(CmpInst::Predicate(Pred), LHS, RHS);
Chris Lattnerac161bf2009-01-02 07:01:27 +00005499 }
5500 return false;
5501}
5502
5503//===----------------------------------------------------------------------===//
5504// Other Instructions.
5505//===----------------------------------------------------------------------===//
5506
5507
5508/// ParseCast
5509/// ::= CastOpc TypeAndValue 'to' Type
5510bool LLParser::ParseCast(Instruction *&Inst, PerFunctionState &PFS,
5511 unsigned Opc) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00005512 LocTy Loc;
5513 Value *Op;
Craig Topper2617dcc2014-04-15 06:32:26 +00005514 Type *DestTy = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005515 if (ParseTypeAndValue(Op, Loc, PFS) ||
5516 ParseToken(lltok::kw_to, "expected 'to' after cast value") ||
5517 ParseType(DestTy))
5518 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005519
Chris Lattner89d856e2009-03-01 00:53:13 +00005520 if (!CastInst::castIsValid((Instruction::CastOps)Opc, Op, DestTy)) {
5521 CastInst::castIsValid((Instruction::CastOps)Opc, Op, DestTy);
Chris Lattnerac161bf2009-01-02 07:01:27 +00005522 return Error(Loc, "invalid cast opcode for cast from '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00005523 getTypeString(Op->getType()) + "' to '" +
5524 getTypeString(DestTy) + "'");
Chris Lattner89d856e2009-03-01 00:53:13 +00005525 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00005526 Inst = CastInst::Create((Instruction::CastOps)Opc, Op, DestTy);
5527 return false;
5528}
5529
5530/// ParseSelect
5531/// ::= 'select' TypeAndValue ',' TypeAndValue ',' TypeAndValue
5532bool LLParser::ParseSelect(Instruction *&Inst, PerFunctionState &PFS) {
5533 LocTy Loc;
5534 Value *Op0, *Op1, *Op2;
5535 if (ParseTypeAndValue(Op0, Loc, PFS) ||
5536 ParseToken(lltok::comma, "expected ',' after select condition") ||
5537 ParseTypeAndValue(Op1, PFS) ||
5538 ParseToken(lltok::comma, "expected ',' after select value") ||
5539 ParseTypeAndValue(Op2, PFS))
5540 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005541
Chris Lattnerac161bf2009-01-02 07:01:27 +00005542 if (const char *Reason = SelectInst::areInvalidOperands(Op0, Op1, Op2))
5543 return Error(Loc, Reason);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005544
Chris Lattnerac161bf2009-01-02 07:01:27 +00005545 Inst = SelectInst::Create(Op0, Op1, Op2);
5546 return false;
5547}
5548
Chris Lattnerb55ab542009-01-05 08:18:44 +00005549/// ParseVA_Arg
5550/// ::= 'va_arg' TypeAndValue ',' Type
5551bool LLParser::ParseVA_Arg(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00005552 Value *Op;
Craig Topper2617dcc2014-04-15 06:32:26 +00005553 Type *EltTy = nullptr;
Chris Lattnerb55ab542009-01-05 08:18:44 +00005554 LocTy TypeLoc;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005555 if (ParseTypeAndValue(Op, PFS) ||
5556 ParseToken(lltok::comma, "expected ',' after vaarg operand") ||
Chris Lattnerb55ab542009-01-05 08:18:44 +00005557 ParseType(EltTy, TypeLoc))
Chris Lattnerac161bf2009-01-02 07:01:27 +00005558 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005559
Chris Lattnerb55ab542009-01-05 08:18:44 +00005560 if (!EltTy->isFirstClassType())
5561 return Error(TypeLoc, "va_arg requires operand with first class type");
Chris Lattnerac161bf2009-01-02 07:01:27 +00005562
5563 Inst = new VAArgInst(Op, EltTy);
5564 return false;
5565}
5566
5567/// ParseExtractElement
5568/// ::= 'extractelement' TypeAndValue ',' TypeAndValue
5569bool LLParser::ParseExtractElement(Instruction *&Inst, PerFunctionState &PFS) {
5570 LocTy Loc;
5571 Value *Op0, *Op1;
5572 if (ParseTypeAndValue(Op0, Loc, PFS) ||
5573 ParseToken(lltok::comma, "expected ',' after extract value") ||
5574 ParseTypeAndValue(Op1, PFS))
5575 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005576
Chris Lattnerac161bf2009-01-02 07:01:27 +00005577 if (!ExtractElementInst::isValidOperands(Op0, Op1))
5578 return Error(Loc, "invalid extractelement operands");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005579
Eric Christopherc9742252009-07-25 02:28:41 +00005580 Inst = ExtractElementInst::Create(Op0, Op1);
Chris Lattnerac161bf2009-01-02 07:01:27 +00005581 return false;
5582}
5583
5584/// ParseInsertElement
5585/// ::= 'insertelement' TypeAndValue ',' TypeAndValue ',' TypeAndValue
5586bool LLParser::ParseInsertElement(Instruction *&Inst, PerFunctionState &PFS) {
5587 LocTy Loc;
5588 Value *Op0, *Op1, *Op2;
5589 if (ParseTypeAndValue(Op0, Loc, PFS) ||
5590 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
5591 ParseTypeAndValue(Op1, PFS) ||
5592 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
5593 ParseTypeAndValue(Op2, PFS))
5594 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005595
Chris Lattnerac161bf2009-01-02 07:01:27 +00005596 if (!InsertElementInst::isValidOperands(Op0, Op1, Op2))
Eric Christopherfef8db62009-07-23 01:01:32 +00005597 return Error(Loc, "invalid insertelement operands");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005598
Chris Lattnerac161bf2009-01-02 07:01:27 +00005599 Inst = InsertElementInst::Create(Op0, Op1, Op2);
5600 return false;
5601}
5602
5603/// ParseShuffleVector
5604/// ::= 'shufflevector' TypeAndValue ',' TypeAndValue ',' TypeAndValue
5605bool LLParser::ParseShuffleVector(Instruction *&Inst, PerFunctionState &PFS) {
5606 LocTy Loc;
5607 Value *Op0, *Op1, *Op2;
5608 if (ParseTypeAndValue(Op0, Loc, PFS) ||
5609 ParseToken(lltok::comma, "expected ',' after shuffle mask") ||
5610 ParseTypeAndValue(Op1, PFS) ||
5611 ParseToken(lltok::comma, "expected ',' after shuffle value") ||
5612 ParseTypeAndValue(Op2, PFS))
5613 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005614
Chris Lattnerac161bf2009-01-02 07:01:27 +00005615 if (!ShuffleVectorInst::isValidOperands(Op0, Op1, Op2))
Pete Cooperc1a6f982012-02-01 23:43:12 +00005616 return Error(Loc, "invalid shufflevector operands");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005617
Chris Lattnerac161bf2009-01-02 07:01:27 +00005618 Inst = new ShuffleVectorInst(Op0, Op1, Op2);
5619 return false;
5620}
5621
5622/// ParsePHI
Chris Lattnerc05471e2009-10-18 05:27:44 +00005623/// ::= 'phi' Type '[' Value ',' Value ']' (',' '[' Value ',' Value ']')*
Chris Lattnerf4f03422009-12-30 05:27:33 +00005624int LLParser::ParsePHI(Instruction *&Inst, PerFunctionState &PFS) {
Craig Topper2617dcc2014-04-15 06:32:26 +00005625 Type *Ty = nullptr; LocTy TypeLoc;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005626 Value *Op0, *Op1;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005627
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00005628 if (ParseType(Ty, TypeLoc) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00005629 ParseToken(lltok::lsquare, "expected '[' in phi value list") ||
5630 ParseValue(Ty, Op0, PFS) ||
5631 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
Owen Anderson55f1c092009-08-13 21:58:54 +00005632 ParseValue(Type::getLabelTy(Context), Op1, PFS) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00005633 ParseToken(lltok::rsquare, "expected ']' in phi value list"))
5634 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005635
Chris Lattnerf4f03422009-12-30 05:27:33 +00005636 bool AteExtraComma = false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005637 SmallVector<std::pair<Value*, BasicBlock*>, 16> PHIVals;
5638 while (1) {
5639 PHIVals.push_back(std::make_pair(Op0, cast<BasicBlock>(Op1)));
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005640
Chris Lattner3822f632009-01-02 08:05:26 +00005641 if (!EatIfPresent(lltok::comma))
Chris Lattnerac161bf2009-01-02 07:01:27 +00005642 break;
5643
Chris Lattnerf4f03422009-12-30 05:27:33 +00005644 if (Lex.getKind() == lltok::MetadataVar) {
5645 AteExtraComma = true;
Devang Patel8f842d32009-10-16 18:45:49 +00005646 break;
Chris Lattnerf4f03422009-12-30 05:27:33 +00005647 }
Devang Patel8f842d32009-10-16 18:45:49 +00005648
Chris Lattner3822f632009-01-02 08:05:26 +00005649 if (ParseToken(lltok::lsquare, "expected '[' in phi value list") ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00005650 ParseValue(Ty, Op0, PFS) ||
5651 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
Owen Anderson55f1c092009-08-13 21:58:54 +00005652 ParseValue(Type::getLabelTy(Context), Op1, PFS) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00005653 ParseToken(lltok::rsquare, "expected ']' in phi value list"))
5654 return true;
5655 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005656
Chris Lattnerac161bf2009-01-02 07:01:27 +00005657 if (!Ty->isFirstClassType())
5658 return Error(TypeLoc, "phi node must have first class type");
5659
Jay Foad52131342011-03-30 11:28:46 +00005660 PHINode *PN = PHINode::Create(Ty, PHIVals.size());
Chris Lattnerac161bf2009-01-02 07:01:27 +00005661 for (unsigned i = 0, e = PHIVals.size(); i != e; ++i)
5662 PN->addIncoming(PHIVals[i].first, PHIVals[i].second);
5663 Inst = PN;
Chris Lattnerf4f03422009-12-30 05:27:33 +00005664 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005665}
5666
Bill Wendlingfae14752011-08-12 20:24:12 +00005667/// ParseLandingPad
5668/// ::= 'landingpad' Type 'personality' TypeAndValue 'cleanup'? Clause+
5669/// Clause
5670/// ::= 'catch' TypeAndValue
5671/// ::= 'filter'
5672/// ::= 'filter' TypeAndValue ( ',' TypeAndValue )*
5673bool LLParser::ParseLandingPad(Instruction *&Inst, PerFunctionState &PFS) {
Craig Topper2617dcc2014-04-15 06:32:26 +00005674 Type *Ty = nullptr; LocTy TyLoc;
Bill Wendlingfae14752011-08-12 20:24:12 +00005675
David Majnemer7fddecc2015-06-17 20:52:32 +00005676 if (ParseType(Ty, TyLoc))
Bill Wendlingfae14752011-08-12 20:24:12 +00005677 return true;
5678
David Majnemer7fddecc2015-06-17 20:52:32 +00005679 std::unique_ptr<LandingPadInst> LP(LandingPadInst::Create(Ty, 0));
Bill Wendlingfae14752011-08-12 20:24:12 +00005680 LP->setCleanup(EatIfPresent(lltok::kw_cleanup));
5681
5682 while (Lex.getKind() == lltok::kw_catch || Lex.getKind() == lltok::kw_filter){
5683 LandingPadInst::ClauseType CT;
5684 if (EatIfPresent(lltok::kw_catch))
5685 CT = LandingPadInst::Catch;
5686 else if (EatIfPresent(lltok::kw_filter))
5687 CT = LandingPadInst::Filter;
5688 else
5689 return TokError("expected 'catch' or 'filter' clause type");
5690
Rafael Espindola4dc5dfc2014-06-04 18:51:31 +00005691 Value *V;
5692 LocTy VLoc;
Owen Andersonf8f259d2015-03-09 07:13:42 +00005693 if (ParseTypeAndValue(V, VLoc, PFS))
Bill Wendlingfae14752011-08-12 20:24:12 +00005694 return true;
Bill Wendlingfae14752011-08-12 20:24:12 +00005695
Bill Wendlinga52aa3c2011-08-12 20:52:25 +00005696 // A 'catch' type expects a non-array constant. A filter clause expects an
5697 // array constant.
5698 if (CT == LandingPadInst::Catch) {
5699 if (isa<ArrayType>(V->getType()))
5700 Error(VLoc, "'catch' clause has an invalid type");
5701 } else {
5702 if (!isa<ArrayType>(V->getType()))
5703 Error(VLoc, "'filter' clause has an invalid type");
5704 }
5705
Owen Andersonf8f259d2015-03-09 07:13:42 +00005706 Constant *CV = dyn_cast<Constant>(V);
5707 if (!CV)
5708 return Error(VLoc, "clause argument must be a constant");
5709 LP->addClause(CV);
Bill Wendlingfae14752011-08-12 20:24:12 +00005710 }
5711
Owen Andersonf8f259d2015-03-09 07:13:42 +00005712 Inst = LP.release();
Bill Wendlingfae14752011-08-12 20:24:12 +00005713 return false;
5714}
5715
Chris Lattnerac161bf2009-01-02 07:01:27 +00005716/// ParseCall
Sanjay Patelfa54ace2015-12-14 21:59:03 +00005717/// ::= 'call' OptionalFastMathFlags OptionalCallingConv
5718/// OptionalAttrs Type Value ParameterList OptionalAttrs
5719/// ::= 'tail' 'call' OptionalFastMathFlags OptionalCallingConv
5720/// OptionalAttrs Type Value ParameterList OptionalAttrs
5721/// ::= 'musttail' 'call' OptionalFastMathFlags OptionalCallingConv
5722/// OptionalAttrs Type Value ParameterList OptionalAttrs
5723/// ::= 'notail' 'call' OptionalFastMathFlags OptionalCallingConv
5724/// OptionalAttrs Type Value ParameterList OptionalAttrs
Chris Lattnerac161bf2009-01-02 07:01:27 +00005725bool LLParser::ParseCall(Instruction *&Inst, PerFunctionState &PFS,
Reid Kleckner5772b772014-04-24 20:14:34 +00005726 CallInst::TailCallKind TCK) {
Bill Wendling50d27842012-10-15 20:35:56 +00005727 AttrBuilder RetAttrs, FnAttrs;
Bill Wendlingb32b0412013-02-08 06:32:06 +00005728 std::vector<unsigned> FwdRefAttrGrps;
Michael Gottesman41748d72013-06-27 00:25:01 +00005729 LocTy BuiltinLoc;
Alexey Samsonov17a9cff2014-09-10 18:00:17 +00005730 unsigned CC;
Craig Topper2617dcc2014-04-15 06:32:26 +00005731 Type *RetType = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005732 LocTy RetTypeLoc;
5733 ValID CalleeID;
5734 SmallVector<ParamInfo, 16> ArgList;
Sanjoy Dasb513a9f2015-09-24 23:34:52 +00005735 SmallVector<OperandBundleDef, 2> BundleList;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005736 LocTy CallLoc = Lex.getLoc();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005737
Sanjay Patelfa54ace2015-12-14 21:59:03 +00005738 if (TCK != CallInst::TCK_None &&
5739 ParseToken(lltok::kw_call,
5740 "expected 'tail call', 'musttail call', or 'notail call'"))
5741 return true;
5742
5743 FastMathFlags FMF = EatFastMathFlagsIfPresent();
5744
5745 if (ParseOptionalCallingConv(CC) || ParseOptionalReturnAttrs(RetAttrs) ||
Chris Lattnerf880ca22009-03-09 04:49:14 +00005746 ParseType(RetType, RetTypeLoc, true /*void allowed*/) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00005747 ParseValID(CalleeID) ||
Reid Kleckner83498642014-08-26 00:33:28 +00005748 ParseParameterList(ArgList, PFS, TCK == CallInst::TCK_MustTail,
5749 PFS.getFunction().isVarArg()) ||
Sanjoy Dasb513a9f2015-09-24 23:34:52 +00005750 ParseFnAttributeValuePairs(FnAttrs, FwdRefAttrGrps, false, BuiltinLoc) ||
5751 ParseOptionalOperandBundles(BundleList, PFS))
Chris Lattnerac161bf2009-01-02 07:01:27 +00005752 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005753
Sanjay Patelfa54ace2015-12-14 21:59:03 +00005754 if (FMF.any() && !RetType->isFPOrFPVectorTy())
5755 return Error(CallLoc, "fast-math-flags specified for call without "
5756 "floating-point scalar or vector return type");
5757
Chris Lattnerac161bf2009-01-02 07:01:27 +00005758 // If RetType is a non-function pointer type, then this is the short syntax
5759 // for the call, which means that RetType is just the return type. Infer the
5760 // rest of the function argument types from the arguments that are present.
David Blaikie23af6482015-04-16 23:24:18 +00005761 FunctionType *Ty = dyn_cast<FunctionType>(RetType);
5762 if (!Ty) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00005763 // Pull out the types of all of the arguments...
Jay Foadb804a2b2011-07-12 14:06:48 +00005764 std::vector<Type*> ParamTypes;
Eli Friedman6cf51412010-07-24 23:06:59 +00005765 for (unsigned i = 0, e = ArgList.size(); i != e; ++i)
5766 ParamTypes.push_back(ArgList[i].V->getType());
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005767
Chris Lattnerac161bf2009-01-02 07:01:27 +00005768 if (!FunctionType::isValidReturnType(RetType))
5769 return Error(RetTypeLoc, "Invalid result type for LLVM function");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005770
Owen Anderson4056ca92009-07-29 22:17:13 +00005771 Ty = FunctionType::get(RetType, ParamTypes, false);
Chris Lattnerac161bf2009-01-02 07:01:27 +00005772 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005773
David Blaikie41ba2b42015-07-27 23:32:19 +00005774 CalleeID.FTy = Ty;
5775
Chris Lattnerac161bf2009-01-02 07:01:27 +00005776 // Look up the callee.
5777 Value *Callee;
David Blaikie23af6482015-04-16 23:24:18 +00005778 if (ConvertValIDToValue(PointerType::getUnqual(Ty), CalleeID, Callee, &PFS))
5779 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005780
Bill Wendling3d7b0b82012-12-19 07:18:57 +00005781 // Set up the Attribute for the function.
Bill Wendlingf5075a42013-01-27 02:24:02 +00005782 SmallVector<AttributeSet, 8> Attrs;
Bill Wendling3bef2dd2012-09-19 23:54:18 +00005783 if (RetAttrs.hasAttributes())
Bill Wendlingf5075a42013-01-27 02:24:02 +00005784 Attrs.push_back(AttributeSet::get(RetType->getContext(),
5785 AttributeSet::ReturnIndex,
5786 RetAttrs));
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005787
Chris Lattnerac161bf2009-01-02 07:01:27 +00005788 SmallVector<Value*, 8> Args;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005789
Chris Lattnerac161bf2009-01-02 07:01:27 +00005790 // Loop through FunctionType's arguments and ensure they are specified
5791 // correctly. Also, gather any parameter attributes.
5792 FunctionType::param_iterator I = Ty->param_begin();
5793 FunctionType::param_iterator E = Ty->param_end();
5794 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
Craig Topper2617dcc2014-04-15 06:32:26 +00005795 Type *ExpectedTy = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005796 if (I != E) {
5797 ExpectedTy = *I++;
5798 } else if (!Ty->isVarArg()) {
5799 return Error(ArgList[i].Loc, "too many arguments specified");
5800 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005801
Chris Lattnerac161bf2009-01-02 07:01:27 +00005802 if (ExpectedTy && ExpectedTy != ArgList[i].V->getType())
5803 return Error(ArgList[i].Loc, "argument is not of expected type '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00005804 getTypeString(ExpectedTy) + "'");
Chris Lattnerac161bf2009-01-02 07:01:27 +00005805 Args.push_back(ArgList[i].V);
Bill Wendlingfe0021a2013-01-31 00:29:54 +00005806 if (ArgList[i].Attrs.hasAttributes(i + 1)) {
5807 AttrBuilder B(ArgList[i].Attrs, i + 1);
Bill Wendlingf5075a42013-01-27 02:24:02 +00005808 Attrs.push_back(AttributeSet::get(RetType->getContext(), i + 1, B));
5809 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00005810 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005811
Chris Lattnerac161bf2009-01-02 07:01:27 +00005812 if (I != E)
5813 return Error(CallLoc, "not enough parameters specified for call");
5814
David Majnemer8d22abd2015-02-23 00:01:32 +00005815 if (FnAttrs.hasAttributes()) {
5816 if (FnAttrs.hasAlignmentAttr())
5817 return Error(CallLoc, "call instructions may not have an alignment");
5818
Bill Wendlingf5075a42013-01-27 02:24:02 +00005819 Attrs.push_back(AttributeSet::get(RetType->getContext(),
5820 AttributeSet::FunctionIndex,
5821 FnAttrs));
David Majnemer8d22abd2015-02-23 00:01:32 +00005822 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00005823
Bill Wendling3d7b0b82012-12-19 07:18:57 +00005824 // Finish off the Attribute and check them
Bill Wendlinge94d8432012-12-07 23:16:57 +00005825 AttributeSet PAL = AttributeSet::get(Context, Attrs);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005826
Sanjoy Dasb513a9f2015-09-24 23:34:52 +00005827 CallInst *CI = CallInst::Create(Ty, Callee, Args, BundleList);
Reid Kleckner5772b772014-04-24 20:14:34 +00005828 CI->setTailCallKind(TCK);
Chris Lattnerac161bf2009-01-02 07:01:27 +00005829 CI->setCallingConv(CC);
Sanjay Patelfa54ace2015-12-14 21:59:03 +00005830 if (FMF.any())
5831 CI->setFastMathFlags(FMF);
Chris Lattnerac161bf2009-01-02 07:01:27 +00005832 CI->setAttributes(PAL);
Bill Wendlingb32b0412013-02-08 06:32:06 +00005833 ForwardRefAttrGroups[CI] = FwdRefAttrGrps;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005834 Inst = CI;
5835 return false;
5836}
5837
5838//===----------------------------------------------------------------------===//
5839// Memory Instructions.
5840//===----------------------------------------------------------------------===//
5841
5842/// ParseAlloc
Manman Ren9bfd0d02016-04-01 21:41:15 +00005843/// ::= 'alloca' 'inalloca'? 'swifterror'? Type (',' TypeAndValue)?
5844/// (',' 'align' i32)?
Chris Lattner78103722011-06-17 03:16:47 +00005845int LLParser::ParseAlloc(Instruction *&Inst, PerFunctionState &PFS) {
Craig Topper2617dcc2014-04-15 06:32:26 +00005846 Value *Size = nullptr;
David Majnemera3b0eb22015-02-16 08:38:03 +00005847 LocTy SizeLoc, TyLoc;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005848 unsigned Alignment = 0;
Craig Topper2617dcc2014-04-15 06:32:26 +00005849 Type *Ty = nullptr;
David Majnemerc4ab61c2014-03-09 06:41:58 +00005850
5851 bool IsInAlloca = EatIfPresent(lltok::kw_inalloca);
Manman Ren9bfd0d02016-04-01 21:41:15 +00005852 bool IsSwiftError = EatIfPresent(lltok::kw_swifterror);
David Majnemerc4ab61c2014-03-09 06:41:58 +00005853
David Majnemera3b0eb22015-02-16 08:38:03 +00005854 if (ParseType(Ty, TyLoc)) return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005855
David Majnemera3b0eb22015-02-16 08:38:03 +00005856 if (Ty->isFunctionTy() || !PointerType::isValidElementType(Ty))
5857 return Error(TyLoc, "invalid type for alloca");
David Majnemerfad5a312015-02-11 09:13:11 +00005858
Chris Lattnerb2f39502009-12-30 05:44:30 +00005859 bool AteExtraComma = false;
Chris Lattner3822f632009-01-02 08:05:26 +00005860 if (EatIfPresent(lltok::comma)) {
David Majnemerc4ab61c2014-03-09 06:41:58 +00005861 if (Lex.getKind() == lltok::kw_align) {
5862 if (ParseOptionalAlignment(Alignment)) return true;
5863 } else if (Lex.getKind() == lltok::MetadataVar) {
5864 AteExtraComma = true;
5865 } else {
5866 if (ParseTypeAndValue(Size, SizeLoc, PFS) ||
5867 ParseOptionalCommaAlign(Alignment, AteExtraComma))
5868 return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005869 }
5870 }
5871
Dan Gohman2140a742010-05-28 01:14:11 +00005872 if (Size && !Size->getType()->isIntegerTy())
5873 return Error(SizeLoc, "element count must have integer type");
Chris Lattnerac161bf2009-01-02 07:01:27 +00005874
Reid Kleckner436c42e2014-01-17 23:58:17 +00005875 AllocaInst *AI = new AllocaInst(Ty, Size, Alignment);
5876 AI->setUsedWithInAlloca(IsInAlloca);
Manman Ren9bfd0d02016-04-01 21:41:15 +00005877 AI->setSwiftError(IsSwiftError);
Reid Kleckner436c42e2014-01-17 23:58:17 +00005878 Inst = AI;
Chris Lattner78103722011-06-17 03:16:47 +00005879 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005880}
5881
5882/// ParseLoad
Eli Friedman02e737b2011-08-12 22:50:01 +00005883/// ::= 'load' 'volatile'? TypeAndValue (',' 'align' i32)?
Michael Ilseman26ee2b82012-11-15 22:34:00 +00005884/// ::= 'load' 'atomic' 'volatile'? TypeAndValue
Eli Friedman02e737b2011-08-12 22:50:01 +00005885/// 'singlethread'? AtomicOrdering (',' 'align' i32)?
Chris Lattnerbc639292011-11-27 06:56:53 +00005886int LLParser::ParseLoad(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00005887 Value *Val; LocTy Loc;
Devang Patelea8a4b92009-09-17 23:04:48 +00005888 unsigned Alignment = 0;
Chris Lattnerb2f39502009-12-30 05:44:30 +00005889 bool AteExtraComma = false;
Eli Friedman02e737b2011-08-12 22:50:01 +00005890 bool isAtomic = false;
JF Bastien800f87a2016-04-06 21:19:33 +00005891 AtomicOrdering Ordering = AtomicOrdering::NotAtomic;
Eli Friedman59b66882011-08-09 23:02:53 +00005892 SynchronizationScope Scope = CrossThread;
Eli Friedman02e737b2011-08-12 22:50:01 +00005893
5894 if (Lex.getKind() == lltok::kw_atomic) {
Eli Friedman02e737b2011-08-12 22:50:01 +00005895 isAtomic = true;
5896 Lex.Lex();
5897 }
5898
Chris Lattnerbc639292011-11-27 06:56:53 +00005899 bool isVolatile = false;
Eli Friedman02e737b2011-08-12 22:50:01 +00005900 if (Lex.getKind() == lltok::kw_volatile) {
Eli Friedman02e737b2011-08-12 22:50:01 +00005901 isVolatile = true;
5902 Lex.Lex();
5903 }
5904
David Blaikie15d9a4c2015-04-06 20:59:48 +00005905 Type *Ty;
David Blaikiea79ac142015-02-27 21:17:42 +00005906 LocTy ExplicitTypeLoc = Lex.getLoc();
5907 if (ParseType(Ty) ||
5908 ParseToken(lltok::comma, "expected comma after load's type") ||
5909 ParseTypeAndValue(Val, Loc, PFS) ||
Eli Friedman59b66882011-08-09 23:02:53 +00005910 ParseScopeAndOrdering(isAtomic, Scope, Ordering) ||
Chris Lattnerb2f39502009-12-30 05:44:30 +00005911 ParseOptionalCommaAlign(Alignment, AteExtraComma))
5912 return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005913
David Blaikie15d9a4c2015-04-06 20:59:48 +00005914 if (!Val->getType()->isPointerTy() || !Ty->isFirstClassType())
Chris Lattnerac161bf2009-01-02 07:01:27 +00005915 return Error(Loc, "load operand must be a pointer to a first class type");
Eli Friedman59b66882011-08-09 23:02:53 +00005916 if (isAtomic && !Alignment)
5917 return Error(Loc, "atomic load must have explicit non-zero alignment");
JF Bastien800f87a2016-04-06 21:19:33 +00005918 if (Ordering == AtomicOrdering::Release ||
5919 Ordering == AtomicOrdering::AcquireRelease)
Eli Friedman59b66882011-08-09 23:02:53 +00005920 return Error(Loc, "atomic load cannot use Release ordering");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005921
David Blaikiea79ac142015-02-27 21:17:42 +00005922 if (Ty != cast<PointerType>(Val->getType())->getElementType())
5923 return Error(ExplicitTypeLoc,
5924 "explicit pointee type doesn't match operand's pointee type");
5925
David Blaikie15d9a4c2015-04-06 20:59:48 +00005926 Inst = new LoadInst(Ty, Val, "", isVolatile, Alignment, Ordering, Scope);
Chris Lattnerb2f39502009-12-30 05:44:30 +00005927 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005928}
5929
5930/// ParseStore
Eli Friedman02e737b2011-08-12 22:50:01 +00005931
5932/// ::= 'store' 'volatile'? TypeAndValue ',' TypeAndValue (',' 'align' i32)?
5933/// ::= 'store' 'atomic' 'volatile'? TypeAndValue ',' TypeAndValue
Eli Friedman59b66882011-08-09 23:02:53 +00005934/// 'singlethread'? AtomicOrdering (',' 'align' i32)?
Chris Lattnerbc639292011-11-27 06:56:53 +00005935int LLParser::ParseStore(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00005936 Value *Val, *Ptr; LocTy Loc, PtrLoc;
Devang Patelea8a4b92009-09-17 23:04:48 +00005937 unsigned Alignment = 0;
Chris Lattnerb2f39502009-12-30 05:44:30 +00005938 bool AteExtraComma = false;
Eli Friedman02e737b2011-08-12 22:50:01 +00005939 bool isAtomic = false;
JF Bastien800f87a2016-04-06 21:19:33 +00005940 AtomicOrdering Ordering = AtomicOrdering::NotAtomic;
Eli Friedman59b66882011-08-09 23:02:53 +00005941 SynchronizationScope Scope = CrossThread;
Eli Friedman02e737b2011-08-12 22:50:01 +00005942
5943 if (Lex.getKind() == lltok::kw_atomic) {
Eli Friedman02e737b2011-08-12 22:50:01 +00005944 isAtomic = true;
5945 Lex.Lex();
5946 }
5947
Chris Lattnerbc639292011-11-27 06:56:53 +00005948 bool isVolatile = false;
Eli Friedman02e737b2011-08-12 22:50:01 +00005949 if (Lex.getKind() == lltok::kw_volatile) {
Eli Friedman02e737b2011-08-12 22:50:01 +00005950 isVolatile = true;
5951 Lex.Lex();
5952 }
5953
Chris Lattnerac161bf2009-01-02 07:01:27 +00005954 if (ParseTypeAndValue(Val, Loc, PFS) ||
5955 ParseToken(lltok::comma, "expected ',' after store operand") ||
Chris Lattnerb2f39502009-12-30 05:44:30 +00005956 ParseTypeAndValue(Ptr, PtrLoc, PFS) ||
Eli Friedman59b66882011-08-09 23:02:53 +00005957 ParseScopeAndOrdering(isAtomic, Scope, Ordering) ||
Chris Lattnerb2f39502009-12-30 05:44:30 +00005958 ParseOptionalCommaAlign(Alignment, AteExtraComma))
Chris Lattnerac161bf2009-01-02 07:01:27 +00005959 return true;
Devang Patelea8a4b92009-09-17 23:04:48 +00005960
Duncan Sands19d0b472010-02-16 11:11:14 +00005961 if (!Ptr->getType()->isPointerTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00005962 return Error(PtrLoc, "store operand must be a pointer");
5963 if (!Val->getType()->isFirstClassType())
5964 return Error(Loc, "store operand must be a first class value");
5965 if (cast<PointerType>(Ptr->getType())->getElementType() != Val->getType())
5966 return Error(Loc, "stored value and pointer type do not match");
Eli Friedman59b66882011-08-09 23:02:53 +00005967 if (isAtomic && !Alignment)
5968 return Error(Loc, "atomic store must have explicit non-zero alignment");
JF Bastien800f87a2016-04-06 21:19:33 +00005969 if (Ordering == AtomicOrdering::Acquire ||
5970 Ordering == AtomicOrdering::AcquireRelease)
Eli Friedman59b66882011-08-09 23:02:53 +00005971 return Error(Loc, "atomic store cannot use Acquire ordering");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005972
Eli Friedman59b66882011-08-09 23:02:53 +00005973 Inst = new StoreInst(Val, Ptr, isVolatile, Alignment, Ordering, Scope);
Chris Lattnerb2f39502009-12-30 05:44:30 +00005974 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005975}
5976
Eli Friedmanc9a551e2011-07-28 21:48:00 +00005977/// ParseCmpXchg
Tim Northover420a2162014-06-13 14:24:07 +00005978/// ::= 'cmpxchg' 'weak'? 'volatile'? TypeAndValue ',' TypeAndValue ','
5979/// TypeAndValue 'singlethread'? AtomicOrdering AtomicOrdering
Eli Friedman02e737b2011-08-12 22:50:01 +00005980int LLParser::ParseCmpXchg(Instruction *&Inst, PerFunctionState &PFS) {
Eli Friedmanc9a551e2011-07-28 21:48:00 +00005981 Value *Ptr, *Cmp, *New; LocTy PtrLoc, CmpLoc, NewLoc;
5982 bool AteExtraComma = false;
JF Bastien800f87a2016-04-06 21:19:33 +00005983 AtomicOrdering SuccessOrdering = AtomicOrdering::NotAtomic;
5984 AtomicOrdering FailureOrdering = AtomicOrdering::NotAtomic;
Eli Friedmanc9a551e2011-07-28 21:48:00 +00005985 SynchronizationScope Scope = CrossThread;
Eli Friedman02e737b2011-08-12 22:50:01 +00005986 bool isVolatile = false;
Tim Northover420a2162014-06-13 14:24:07 +00005987 bool isWeak = false;
5988
5989 if (EatIfPresent(lltok::kw_weak))
5990 isWeak = true;
Eli Friedman02e737b2011-08-12 22:50:01 +00005991
5992 if (EatIfPresent(lltok::kw_volatile))
5993 isVolatile = true;
5994
Eli Friedmanc9a551e2011-07-28 21:48:00 +00005995 if (ParseTypeAndValue(Ptr, PtrLoc, PFS) ||
5996 ParseToken(lltok::comma, "expected ',' after cmpxchg address") ||
5997 ParseTypeAndValue(Cmp, CmpLoc, PFS) ||
5998 ParseToken(lltok::comma, "expected ',' after cmpxchg cmp operand") ||
5999 ParseTypeAndValue(New, NewLoc, PFS) ||
Tim Northovere94a5182014-03-11 10:48:52 +00006000 ParseScopeAndOrdering(true /*Always atomic*/, Scope, SuccessOrdering) ||
6001 ParseOrdering(FailureOrdering))
Eli Friedmanc9a551e2011-07-28 21:48:00 +00006002 return true;
6003
JF Bastien800f87a2016-04-06 21:19:33 +00006004 if (SuccessOrdering == AtomicOrdering::Unordered ||
6005 FailureOrdering == AtomicOrdering::Unordered)
Eli Friedmanc9a551e2011-07-28 21:48:00 +00006006 return TokError("cmpxchg cannot be unordered");
JF Bastien800f87a2016-04-06 21:19:33 +00006007 if (isStrongerThan(FailureOrdering, SuccessOrdering))
6008 return TokError("cmpxchg failure argument shall be no stronger than the "
6009 "success argument");
6010 if (FailureOrdering == AtomicOrdering::Release ||
6011 FailureOrdering == AtomicOrdering::AcquireRelease)
6012 return TokError(
6013 "cmpxchg failure ordering cannot include release semantics");
Eli Friedmanc9a551e2011-07-28 21:48:00 +00006014 if (!Ptr->getType()->isPointerTy())
6015 return Error(PtrLoc, "cmpxchg operand must be a pointer");
6016 if (cast<PointerType>(Ptr->getType())->getElementType() != Cmp->getType())
6017 return Error(CmpLoc, "compare value and pointer type do not match");
6018 if (cast<PointerType>(Ptr->getType())->getElementType() != New->getType())
6019 return Error(NewLoc, "new value and pointer type do not match");
Philip Reames1960cfd2016-02-19 00:06:41 +00006020 if (!New->getType()->isFirstClassType())
6021 return Error(NewLoc, "cmpxchg operand must be a first class value");
Tim Northover420a2162014-06-13 14:24:07 +00006022 AtomicCmpXchgInst *CXI = new AtomicCmpXchgInst(
6023 Ptr, Cmp, New, SuccessOrdering, FailureOrdering, Scope);
Eli Friedmanc9a551e2011-07-28 21:48:00 +00006024 CXI->setVolatile(isVolatile);
Tim Northover420a2162014-06-13 14:24:07 +00006025 CXI->setWeak(isWeak);
Eli Friedmanc9a551e2011-07-28 21:48:00 +00006026 Inst = CXI;
6027 return AteExtraComma ? InstExtraComma : InstNormal;
6028}
6029
6030/// ParseAtomicRMW
Eli Friedman02e737b2011-08-12 22:50:01 +00006031/// ::= 'atomicrmw' 'volatile'? BinOp TypeAndValue ',' TypeAndValue
6032/// 'singlethread'? AtomicOrdering
6033int LLParser::ParseAtomicRMW(Instruction *&Inst, PerFunctionState &PFS) {
Eli Friedmanc9a551e2011-07-28 21:48:00 +00006034 Value *Ptr, *Val; LocTy PtrLoc, ValLoc;
6035 bool AteExtraComma = false;
JF Bastien800f87a2016-04-06 21:19:33 +00006036 AtomicOrdering Ordering = AtomicOrdering::NotAtomic;
Eli Friedmanc9a551e2011-07-28 21:48:00 +00006037 SynchronizationScope Scope = CrossThread;
Eli Friedman02e737b2011-08-12 22:50:01 +00006038 bool isVolatile = false;
Eli Friedmanc9a551e2011-07-28 21:48:00 +00006039 AtomicRMWInst::BinOp Operation;
Eli Friedman02e737b2011-08-12 22:50:01 +00006040
6041 if (EatIfPresent(lltok::kw_volatile))
6042 isVolatile = true;
6043
Eli Friedmanc9a551e2011-07-28 21:48:00 +00006044 switch (Lex.getKind()) {
6045 default: return TokError("expected binary operation in atomicrmw");
6046 case lltok::kw_xchg: Operation = AtomicRMWInst::Xchg; break;
6047 case lltok::kw_add: Operation = AtomicRMWInst::Add; break;
6048 case lltok::kw_sub: Operation = AtomicRMWInst::Sub; break;
6049 case lltok::kw_and: Operation = AtomicRMWInst::And; break;
6050 case lltok::kw_nand: Operation = AtomicRMWInst::Nand; break;
6051 case lltok::kw_or: Operation = AtomicRMWInst::Or; break;
6052 case lltok::kw_xor: Operation = AtomicRMWInst::Xor; break;
6053 case lltok::kw_max: Operation = AtomicRMWInst::Max; break;
6054 case lltok::kw_min: Operation = AtomicRMWInst::Min; break;
6055 case lltok::kw_umax: Operation = AtomicRMWInst::UMax; break;
6056 case lltok::kw_umin: Operation = AtomicRMWInst::UMin; break;
6057 }
6058 Lex.Lex(); // Eat the operation.
6059
6060 if (ParseTypeAndValue(Ptr, PtrLoc, PFS) ||
6061 ParseToken(lltok::comma, "expected ',' after atomicrmw address") ||
6062 ParseTypeAndValue(Val, ValLoc, PFS) ||
6063 ParseScopeAndOrdering(true /*Always atomic*/, Scope, Ordering))
6064 return true;
6065
JF Bastien800f87a2016-04-06 21:19:33 +00006066 if (Ordering == AtomicOrdering::Unordered)
Eli Friedmanc9a551e2011-07-28 21:48:00 +00006067 return TokError("atomicrmw cannot be unordered");
6068 if (!Ptr->getType()->isPointerTy())
6069 return Error(PtrLoc, "atomicrmw operand must be a pointer");
6070 if (cast<PointerType>(Ptr->getType())->getElementType() != Val->getType())
6071 return Error(ValLoc, "atomicrmw value and pointer type do not match");
6072 if (!Val->getType()->isIntegerTy())
6073 return Error(ValLoc, "atomicrmw operand must be an integer");
6074 unsigned Size = Val->getType()->getPrimitiveSizeInBits();
6075 if (Size < 8 || (Size & (Size - 1)))
6076 return Error(ValLoc, "atomicrmw operand must be power-of-two byte-sized"
6077 " integer");
6078
6079 AtomicRMWInst *RMWI =
6080 new AtomicRMWInst(Operation, Ptr, Val, Ordering, Scope);
6081 RMWI->setVolatile(isVolatile);
6082 Inst = RMWI;
6083 return AteExtraComma ? InstExtraComma : InstNormal;
6084}
6085
Eli Friedmanfee02c62011-07-25 23:16:38 +00006086/// ParseFence
6087/// ::= 'fence' 'singlethread'? AtomicOrdering
6088int LLParser::ParseFence(Instruction *&Inst, PerFunctionState &PFS) {
JF Bastien800f87a2016-04-06 21:19:33 +00006089 AtomicOrdering Ordering = AtomicOrdering::NotAtomic;
Eli Friedmanfee02c62011-07-25 23:16:38 +00006090 SynchronizationScope Scope = CrossThread;
6091 if (ParseScopeAndOrdering(true /*Always atomic*/, Scope, Ordering))
6092 return true;
6093
JF Bastien800f87a2016-04-06 21:19:33 +00006094 if (Ordering == AtomicOrdering::Unordered)
Eli Friedmanfee02c62011-07-25 23:16:38 +00006095 return TokError("fence cannot be unordered");
JF Bastien800f87a2016-04-06 21:19:33 +00006096 if (Ordering == AtomicOrdering::Monotonic)
Eli Friedmanfee02c62011-07-25 23:16:38 +00006097 return TokError("fence cannot be monotonic");
6098
6099 Inst = new FenceInst(Context, Ordering, Scope);
6100 return InstNormal;
6101}
6102
Chris Lattnerac161bf2009-01-02 07:01:27 +00006103/// ParseGetElementPtr
Dan Gohman1639c392009-07-27 21:53:46 +00006104/// ::= 'getelementptr' 'inbounds'? TypeAndValue (',' TypeAndValue)*
Chris Lattnerf4f03422009-12-30 05:27:33 +00006105int LLParser::ParseGetElementPtr(Instruction *&Inst, PerFunctionState &PFS) {
Craig Topper2617dcc2014-04-15 06:32:26 +00006106 Value *Ptr = nullptr;
6107 Value *Val = nullptr;
Nadav Rotem3924cb02011-12-05 06:29:09 +00006108 LocTy Loc, EltLoc;
Dan Gohman1639c392009-07-27 21:53:46 +00006109
Dan Gohman16cbbe42009-07-29 15:58:36 +00006110 bool InBounds = EatIfPresent(lltok::kw_inbounds);
Dan Gohman1639c392009-07-27 21:53:46 +00006111
David Blaikie79e6c742015-02-27 19:29:02 +00006112 Type *Ty = nullptr;
6113 LocTy ExplicitTypeLoc = Lex.getLoc();
6114 if (ParseType(Ty) ||
6115 ParseToken(lltok::comma, "expected comma after getelementptr's type") ||
6116 ParseTypeAndValue(Ptr, Loc, PFS))
6117 return true;
6118
Eli Benderskyd9806682013-04-22 17:03:42 +00006119 Type *BaseType = Ptr->getType();
6120 PointerType *BasePointerType = dyn_cast<PointerType>(BaseType->getScalarType());
6121 if (!BasePointerType)
Chris Lattnerac161bf2009-01-02 07:01:27 +00006122 return Error(Loc, "base of getelementptr must be a pointer");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00006123
David Blaikie8d757942015-03-09 23:08:44 +00006124 if (Ty != BasePointerType->getElementType())
6125 return Error(ExplicitTypeLoc,
6126 "explicit pointee type doesn't match operand's pointee type");
6127
Chris Lattnerac161bf2009-01-02 07:01:27 +00006128 SmallVector<Value*, 16> Indices;
Chris Lattnerf4f03422009-12-30 05:27:33 +00006129 bool AteExtraComma = false;
Elena Demikhovsky37a4da82015-07-09 07:42:48 +00006130 // GEP returns a vector of pointers if at least one of parameters is a vector.
6131 // All vector parameters should have the same vector width.
6132 unsigned GEPWidth = BaseType->isVectorTy() ?
6133 BaseType->getVectorNumElements() : 0;
6134
Chris Lattner3822f632009-01-02 08:05:26 +00006135 while (EatIfPresent(lltok::comma)) {
Chris Lattnerf4f03422009-12-30 05:27:33 +00006136 if (Lex.getKind() == lltok::MetadataVar) {
6137 AteExtraComma = true;
Devang Patel52b17452009-10-13 18:49:55 +00006138 break;
Chris Lattnerf4f03422009-12-30 05:27:33 +00006139 }
Chris Lattner3822f632009-01-02 08:05:26 +00006140 if (ParseTypeAndValue(Val, EltLoc, PFS)) return true;
Nadav Rotem3924cb02011-12-05 06:29:09 +00006141 if (!Val->getType()->getScalarType()->isIntegerTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00006142 return Error(EltLoc, "getelementptr index must be an integer");
Elena Demikhovsky37a4da82015-07-09 07:42:48 +00006143
Nadav Rotem3924cb02011-12-05 06:29:09 +00006144 if (Val->getType()->isVectorTy()) {
Elena Demikhovsky37a4da82015-07-09 07:42:48 +00006145 unsigned ValNumEl = Val->getType()->getVectorNumElements();
6146 if (GEPWidth && GEPWidth != ValNumEl)
Nadav Rotem3924cb02011-12-05 06:29:09 +00006147 return Error(EltLoc,
6148 "getelementptr vector index has a wrong number of elements");
Elena Demikhovsky37a4da82015-07-09 07:42:48 +00006149 GEPWidth = ValNumEl;
Nadav Rotem3924cb02011-12-05 06:29:09 +00006150 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00006151 Indices.push_back(Val);
6152 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00006153
Craig Toppere3dcce92015-08-01 22:20:21 +00006154 SmallPtrSet<Type*, 4> Visited;
David Blaikied33bad32015-04-17 22:32:13 +00006155 if (!Indices.empty() && !Ty->isSized(&Visited))
Eli Benderskyd9806682013-04-22 17:03:42 +00006156 return Error(Loc, "base element of getelementptr must be sized");
6157
David Blaikied33bad32015-04-17 22:32:13 +00006158 if (!GetElementPtrInst::getIndexedType(Ty, Indices))
Chris Lattnerac161bf2009-01-02 07:01:27 +00006159 return Error(Loc, "invalid getelementptr indices");
David Blaikiecd7b97e2015-03-14 21:11:24 +00006160 Inst = GetElementPtrInst::Create(Ty, Ptr, Indices);
Dan Gohman1639c392009-07-27 21:53:46 +00006161 if (InBounds)
Dan Gohman1b849082009-09-07 23:54:19 +00006162 cast<GetElementPtrInst>(Inst)->setIsInBounds(true);
Chris Lattnerf4f03422009-12-30 05:27:33 +00006163 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerac161bf2009-01-02 07:01:27 +00006164}
6165
6166/// ParseExtractValue
6167/// ::= 'extractvalue' TypeAndValue (',' uint32)+
Chris Lattnerf4f03422009-12-30 05:27:33 +00006168int LLParser::ParseExtractValue(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00006169 Value *Val; LocTy Loc;
6170 SmallVector<unsigned, 4> Indices;
Chris Lattnerf4f03422009-12-30 05:27:33 +00006171 bool AteExtraComma;
Chris Lattnerac161bf2009-01-02 07:01:27 +00006172 if (ParseTypeAndValue(Val, Loc, PFS) ||
Chris Lattnerf4f03422009-12-30 05:27:33 +00006173 ParseIndexList(Indices, AteExtraComma))
Chris Lattnerac161bf2009-01-02 07:01:27 +00006174 return true;
6175
Chris Lattner392be582010-02-12 20:49:41 +00006176 if (!Val->getType()->isAggregateType())
6177 return Error(Loc, "extractvalue operand must be aggregate type");
Chris Lattnerac161bf2009-01-02 07:01:27 +00006178
Jay Foad57aa6362011-07-13 10:26:04 +00006179 if (!ExtractValueInst::getIndexedType(Val->getType(), Indices))
Chris Lattnerac161bf2009-01-02 07:01:27 +00006180 return Error(Loc, "invalid indices for extractvalue");
Jay Foad57aa6362011-07-13 10:26:04 +00006181 Inst = ExtractValueInst::Create(Val, Indices);
Chris Lattnerf4f03422009-12-30 05:27:33 +00006182 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerac161bf2009-01-02 07:01:27 +00006183}
6184
6185/// ParseInsertValue
6186/// ::= 'insertvalue' TypeAndValue ',' TypeAndValue (',' uint32)+
Chris Lattnerf4f03422009-12-30 05:27:33 +00006187int LLParser::ParseInsertValue(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00006188 Value *Val0, *Val1; LocTy Loc0, Loc1;
6189 SmallVector<unsigned, 4> Indices;
Chris Lattnerf4f03422009-12-30 05:27:33 +00006190 bool AteExtraComma;
Chris Lattnerac161bf2009-01-02 07:01:27 +00006191 if (ParseTypeAndValue(Val0, Loc0, PFS) ||
6192 ParseToken(lltok::comma, "expected comma after insertvalue operand") ||
6193 ParseTypeAndValue(Val1, Loc1, PFS) ||
Chris Lattnerf4f03422009-12-30 05:27:33 +00006194 ParseIndexList(Indices, AteExtraComma))
Chris Lattnerac161bf2009-01-02 07:01:27 +00006195 return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00006196
Chris Lattner392be582010-02-12 20:49:41 +00006197 if (!Val0->getType()->isAggregateType())
6198 return Error(Loc0, "insertvalue operand must be aggregate type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00006199
David Majnemer30074532015-02-11 07:43:58 +00006200 Type *IndexedType = ExtractValueInst::getIndexedType(Val0->getType(), Indices);
6201 if (!IndexedType)
Chris Lattnerac161bf2009-01-02 07:01:27 +00006202 return Error(Loc0, "invalid indices for insertvalue");
David Majnemer30074532015-02-11 07:43:58 +00006203 if (IndexedType != Val1->getType())
6204 return Error(Loc1, "insertvalue operand and field disagree in type: '" +
6205 getTypeString(Val1->getType()) + "' instead of '" +
6206 getTypeString(IndexedType) + "'");
Jay Foad57aa6362011-07-13 10:26:04 +00006207 Inst = InsertValueInst::Create(Val0, Val1, Indices);
Chris Lattnerf4f03422009-12-30 05:27:33 +00006208 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerac161bf2009-01-02 07:01:27 +00006209}
Nick Lewycky49f89192009-04-04 07:22:01 +00006210
6211//===----------------------------------------------------------------------===//
6212// Embedded metadata.
6213//===----------------------------------------------------------------------===//
6214
6215/// ParseMDNodeVector
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00006216/// ::= { Element (',' Element)* }
Nick Lewyckyb8f9b7a2009-05-10 20:57:05 +00006217/// Element
6218/// ::= 'null' | TypeAndValue
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00006219bool LLParser::ParseMDNodeVector(SmallVectorImpl<Metadata *> &Elts) {
David Majnemer06f960d2014-12-11 20:44:09 +00006220 if (ParseToken(lltok::lbrace, "expected '{' here"))
6221 return true;
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00006222
Dan Gohman1e0213a2010-07-13 19:33:27 +00006223 // Check for an empty list.
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00006224 if (EatIfPresent(lltok::rbrace))
Dan Gohman1e0213a2010-07-13 19:33:27 +00006225 return false;
6226
Nick Lewycky49f89192009-04-04 07:22:01 +00006227 do {
Chris Lattnera01ddfc2009-12-30 04:42:57 +00006228 // Null is a special case since it is typeless.
6229 if (EatIfPresent(lltok::kw_null)) {
Craig Topper2617dcc2014-04-15 06:32:26 +00006230 Elts.push_back(nullptr);
Chris Lattnera01ddfc2009-12-30 04:42:57 +00006231 continue;
Nick Lewyckyb8f9b7a2009-05-10 20:57:05 +00006232 }
Michael Ilseman26ee2b82012-11-15 22:34:00 +00006233
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00006234 Metadata *MD;
6235 if (ParseMetadata(MD, nullptr))
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00006236 return true;
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00006237 Elts.push_back(MD);
Nick Lewycky49f89192009-04-04 07:22:01 +00006238 } while (EatIfPresent(lltok::comma));
6239
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00006240 return ParseToken(lltok::rbrace, "expected end of metadata node");
Nick Lewycky49f89192009-04-04 07:22:01 +00006241}
Duncan P. N. Exon Smith0a448fb2014-08-19 21:30:15 +00006242
6243//===----------------------------------------------------------------------===//
6244// Use-list order directives.
6245//===----------------------------------------------------------------------===//
6246bool LLParser::sortUseListOrder(Value *V, ArrayRef<unsigned> Indexes,
6247 SMLoc Loc) {
6248 if (V->use_empty())
6249 return Error(Loc, "value has no uses");
6250
6251 unsigned NumUses = 0;
6252 SmallDenseMap<const Use *, unsigned, 16> Order;
6253 for (const Use &U : V->uses()) {
6254 if (++NumUses > Indexes.size())
6255 break;
6256 Order[&U] = Indexes[NumUses - 1];
6257 }
6258 if (NumUses < 2)
6259 return Error(Loc, "value only has one use");
6260 if (Order.size() != Indexes.size() || NumUses > Indexes.size())
6261 return Error(Loc, "wrong number of indexes, expected " +
6262 Twine(std::distance(V->use_begin(), V->use_end())));
6263
6264 V->sortUseList([&](const Use &L, const Use &R) {
6265 return Order.lookup(&L) < Order.lookup(&R);
6266 });
6267 return false;
6268}
6269
6270/// ParseUseListOrderIndexes
6271/// ::= '{' uint32 (',' uint32)+ '}'
6272bool LLParser::ParseUseListOrderIndexes(SmallVectorImpl<unsigned> &Indexes) {
6273 SMLoc Loc = Lex.getLoc();
6274 if (ParseToken(lltok::lbrace, "expected '{' here"))
6275 return true;
6276 if (Lex.getKind() == lltok::rbrace)
6277 return Lex.Error("expected non-empty list of uselistorder indexes");
6278
6279 // Use Offset, Max, and IsOrdered to check consistency of indexes. The
6280 // indexes should be distinct numbers in the range [0, size-1], and should
6281 // not be in order.
6282 unsigned Offset = 0;
6283 unsigned Max = 0;
6284 bool IsOrdered = true;
6285 assert(Indexes.empty() && "Expected empty order vector");
6286 do {
6287 unsigned Index;
6288 if (ParseUInt32(Index))
6289 return true;
6290
6291 // Update consistency checks.
6292 Offset += Index - Indexes.size();
6293 Max = std::max(Max, Index);
6294 IsOrdered &= Index == Indexes.size();
6295
6296 Indexes.push_back(Index);
6297 } while (EatIfPresent(lltok::comma));
6298
6299 if (ParseToken(lltok::rbrace, "expected '}' here"))
6300 return true;
6301
6302 if (Indexes.size() < 2)
6303 return Error(Loc, "expected >= 2 uselistorder indexes");
6304 if (Offset != 0 || Max >= Indexes.size())
6305 return Error(Loc, "expected distinct uselistorder indexes in range [0, size)");
6306 if (IsOrdered)
6307 return Error(Loc, "expected uselistorder indexes to change the order");
6308
6309 return false;
6310}
6311
6312/// ParseUseListOrder
6313/// ::= 'uselistorder' Type Value ',' UseListOrderIndexes
6314bool LLParser::ParseUseListOrder(PerFunctionState *PFS) {
6315 SMLoc Loc = Lex.getLoc();
6316 if (ParseToken(lltok::kw_uselistorder, "expected uselistorder directive"))
6317 return true;
6318
6319 Value *V;
6320 SmallVector<unsigned, 16> Indexes;
6321 if (ParseTypeAndValue(V, PFS) ||
6322 ParseToken(lltok::comma, "expected comma in uselistorder directive") ||
6323 ParseUseListOrderIndexes(Indexes))
6324 return true;
6325
6326 return sortUseListOrder(V, Indexes, Loc);
6327}
6328
6329/// ParseUseListOrderBB
6330/// ::= 'uselistorder_bb' @foo ',' %bar ',' UseListOrderIndexes
6331bool LLParser::ParseUseListOrderBB() {
6332 assert(Lex.getKind() == lltok::kw_uselistorder_bb);
6333 SMLoc Loc = Lex.getLoc();
6334 Lex.Lex();
6335
6336 ValID Fn, Label;
6337 SmallVector<unsigned, 16> Indexes;
6338 if (ParseValID(Fn) ||
6339 ParseToken(lltok::comma, "expected comma in uselistorder_bb directive") ||
6340 ParseValID(Label) ||
6341 ParseToken(lltok::comma, "expected comma in uselistorder_bb directive") ||
6342 ParseUseListOrderIndexes(Indexes))
6343 return true;
6344
6345 // Check the function.
6346 GlobalValue *GV;
6347 if (Fn.Kind == ValID::t_GlobalName)
6348 GV = M->getNamedValue(Fn.StrVal);
6349 else if (Fn.Kind == ValID::t_GlobalID)
6350 GV = Fn.UIntVal < NumberedVals.size() ? NumberedVals[Fn.UIntVal] : nullptr;
6351 else
6352 return Error(Fn.Loc, "expected function name in uselistorder_bb");
6353 if (!GV)
6354 return Error(Fn.Loc, "invalid function forward reference in uselistorder_bb");
6355 auto *F = dyn_cast<Function>(GV);
6356 if (!F)
6357 return Error(Fn.Loc, "expected function name in uselistorder_bb");
6358 if (F->isDeclaration())
6359 return Error(Fn.Loc, "invalid declaration in uselistorder_bb");
6360
6361 // Check the basic block.
6362 if (Label.Kind == ValID::t_LocalID)
6363 return Error(Label.Loc, "invalid numeric label in uselistorder_bb");
6364 if (Label.Kind != ValID::t_LocalName)
6365 return Error(Label.Loc, "expected basic block name in uselistorder_bb");
6366 Value *V = F->getValueSymbolTable().lookup(Label.StrVal);
6367 if (!V)
6368 return Error(Label.Loc, "invalid basic block in uselistorder_bb");
6369 if (!isa<BasicBlock>(V))
6370 return Error(Label.Loc, "expected basic block in uselistorder_bb");
6371
6372 return sortUseListOrder(V, Indexes, Loc);
6373}