blob: e72686d045cbccdaa49724fd90ee35a978ef2541 [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 Amini09b4a8d2016-03-10 01:28:54 +000049 if (Context.discardValueNames())
50 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() {
Manman Ren209b17c2013-09-28 00:22:27 +0000103 for (unsigned I = 0, E = InstsWithTBAATag.size(); I < E; I++)
104 UpgradeInstWithTBAATag(InstsWithTBAATag[I]);
105
Bill Wendlingb32b0412013-02-08 06:32:06 +0000106 // Handle any function attribute group forward references.
107 for (std::map<Value*, std::vector<unsigned> >::iterator
108 I = ForwardRefAttrGroups.begin(), E = ForwardRefAttrGroups.end();
109 I != E; ++I) {
110 Value *V = I->first;
111 std::vector<unsigned> &Vec = I->second;
112 AttrBuilder B;
113
114 for (std::vector<unsigned>::iterator VI = Vec.begin(), VE = Vec.end();
115 VI != VE; ++VI)
116 B.merge(NumberedAttrBuilders[*VI]);
117
118 if (Function *Fn = dyn_cast<Function>(V)) {
119 AttributeSet AS = Fn->getAttributes();
120 AttrBuilder FnAttrs(AS.getFnAttributes(), AttributeSet::FunctionIndex);
121 AS = AS.removeAttributes(Context, AttributeSet::FunctionIndex,
122 AS.getFnAttributes());
123
124 FnAttrs.merge(B);
125
126 // If the alignment was parsed as an attribute, move to the alignment
127 // field.
128 if (FnAttrs.hasAlignmentAttr()) {
129 Fn->setAlignment(FnAttrs.getAlignment());
130 FnAttrs.removeAttribute(Attribute::Alignment);
131 }
132
133 AS = AS.addAttributes(Context, AttributeSet::FunctionIndex,
134 AttributeSet::get(Context,
135 AttributeSet::FunctionIndex,
136 FnAttrs));
137 Fn->setAttributes(AS);
138 } else if (CallInst *CI = dyn_cast<CallInst>(V)) {
139 AttributeSet AS = CI->getAttributes();
140 AttrBuilder FnAttrs(AS.getFnAttributes(), AttributeSet::FunctionIndex);
141 AS = AS.removeAttributes(Context, AttributeSet::FunctionIndex,
142 AS.getFnAttributes());
Bill Wendling59dce372013-02-12 10:13:06 +0000143 FnAttrs.merge(B);
Bill Wendlingb32b0412013-02-08 06:32:06 +0000144 AS = AS.addAttributes(Context, AttributeSet::FunctionIndex,
145 AttributeSet::get(Context,
146 AttributeSet::FunctionIndex,
147 FnAttrs));
148 CI->setAttributes(AS);
149 } else if (InvokeInst *II = dyn_cast<InvokeInst>(V)) {
150 AttributeSet AS = II->getAttributes();
151 AttrBuilder FnAttrs(AS.getFnAttributes(), AttributeSet::FunctionIndex);
152 AS = AS.removeAttributes(Context, AttributeSet::FunctionIndex,
153 AS.getFnAttributes());
Bill Wendling59dce372013-02-12 10:13:06 +0000154 FnAttrs.merge(B);
Bill Wendlingb32b0412013-02-08 06:32:06 +0000155 AS = AS.addAttributes(Context, AttributeSet::FunctionIndex,
156 AttributeSet::get(Context,
157 AttributeSet::FunctionIndex,
158 FnAttrs));
159 II->setAttributes(AS);
160 } else {
161 llvm_unreachable("invalid object with forward attribute group reference");
162 }
163 }
Michael Ilseman26ee2b82012-11-15 22:34:00 +0000164
Duncan P. N. Exon Smith17169902014-08-19 00:13:19 +0000165 // If there are entries in ForwardRefBlockAddresses at this point, the
166 // function was never defined.
167 if (!ForwardRefBlockAddresses.empty())
168 return Error(ForwardRefBlockAddresses.begin()->first.Loc,
169 "expected function name in blockaddress");
Michael Ilseman26ee2b82012-11-15 22:34:00 +0000170
David Majnemer19b51052015-02-11 07:43:56 +0000171 for (const auto &NT : NumberedTypes)
172 if (NT.second.second.isValid())
173 return Error(NT.second.second,
174 "use of undefined type '%" + Twine(NT.first) + "'");
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000175
176 for (StringMap<std::pair<Type*, LocTy> >::iterator I =
177 NamedTypes.begin(), E = NamedTypes.end(); I != E; ++I)
178 if (I->second.second.isValid())
179 return Error(I->second.second,
180 "use of undefined type named '" + I->getKey() + "'");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000181
David Majnemerdad0a642014-06-27 18:19:56 +0000182 if (!ForwardRefComdats.empty())
183 return Error(ForwardRefComdats.begin()->second,
184 "use of undefined comdat '$" +
185 ForwardRefComdats.begin()->first + "'");
186
Chris Lattnerac161bf2009-01-02 07:01:27 +0000187 if (!ForwardRefVals.empty())
188 return Error(ForwardRefVals.begin()->second.second,
189 "use of undefined value '@" + ForwardRefVals.begin()->first +
190 "'");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000191
Chris Lattnerac161bf2009-01-02 07:01:27 +0000192 if (!ForwardRefValIDs.empty())
193 return Error(ForwardRefValIDs.begin()->second.second,
194 "use of undefined value '@" +
Benjamin Kramerc7583112010-09-27 17:42:11 +0000195 Twine(ForwardRefValIDs.begin()->first) + "'");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000196
Devang Pateld2541152009-07-08 19:23:54 +0000197 if (!ForwardRefMDNodes.empty())
198 return Error(ForwardRefMDNodes.begin()->second.second,
199 "use of undefined metadata '!" +
Benjamin Kramerc7583112010-09-27 17:42:11 +0000200 Twine(ForwardRefMDNodes.begin()->first) + "'");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000201
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000202 // Resolve metadata cycles.
David Majnemer19b51052015-02-11 07:43:56 +0000203 for (auto &N : NumberedMetadata) {
204 if (N.second && !N.second->isResolved())
205 N.second->resolveCycles();
206 }
Devang Pateld2541152009-07-08 19:23:54 +0000207
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);
Rafael Espindola464fe022014-07-30 22:51:54 +0000506 return ParseAlias(Name, NameLoc, Linkage, Visibility, DLLStorageClass, TLM,
Rafael Espindola42a4c9f2014-06-06 01:20:28 +0000507 UnnamedAddr);
Dan Gohman466876b2009-08-12 23:32:33 +0000508}
509
Chris Lattnerac161bf2009-01-02 07:01:27 +0000510/// ParseNamedGlobal:
511/// GlobalVar '=' OptionalVisibility ALIAS ...
Nico Rieck7157bb72014-01-14 15:22:47 +0000512/// GlobalVar '=' OptionalLinkage OptionalVisibility OptionalDLLStorageClass
513/// ... -> global variable
Chris Lattnerac161bf2009-01-02 07:01:27 +0000514bool LLParser::ParseNamedGlobal() {
515 assert(Lex.getKind() == lltok::GlobalVar);
516 LocTy NameLoc = Lex.getLoc();
517 std::string Name = Lex.getStrVal();
518 Lex.Lex();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000519
Chris Lattnerac161bf2009-01-02 07:01:27 +0000520 bool HasLinkage;
Nico Rieck7157bb72014-01-14 15:22:47 +0000521 unsigned Linkage, Visibility, DLLStorageClass;
Rafael Espindola59f7eba2014-05-28 18:15:43 +0000522 GlobalVariable::ThreadLocalMode TLM;
Rafael Espindola42a4c9f2014-06-06 01:20:28 +0000523 bool UnnamedAddr;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000524 if (ParseToken(lltok::equal, "expected '=' in global variable") ||
525 ParseOptionalLinkage(Linkage, HasLinkage) ||
Nico Rieck7157bb72014-01-14 15:22:47 +0000526 ParseOptionalVisibility(Visibility) ||
Rafael Espindola59f7eba2014-05-28 18:15:43 +0000527 ParseOptionalDLLStorageClass(DLLStorageClass) ||
Rafael Espindola42a4c9f2014-06-06 01:20:28 +0000528 ParseOptionalThreadLocal(TLM) ||
529 parseOptionalUnnamedAddr(UnnamedAddr))
Chris Lattnerac161bf2009-01-02 07:01:27 +0000530 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000531
Rafael Espindola464fe022014-07-30 22:51:54 +0000532 if (Lex.getKind() != lltok::kw_alias)
Nico Rieck7157bb72014-01-14 15:22:47 +0000533 return ParseGlobal(Name, NameLoc, Linkage, HasLinkage, Visibility,
Rafael Espindola42a4c9f2014-06-06 01:20:28 +0000534 DLLStorageClass, TLM, UnnamedAddr);
Rafael Espindola464fe022014-07-30 22:51:54 +0000535
536 return ParseAlias(Name, NameLoc, Linkage, Visibility, DLLStorageClass, TLM,
Rafael Espindola42a4c9f2014-06-06 01:20:28 +0000537 UnnamedAddr);
Chris Lattnerac161bf2009-01-02 07:01:27 +0000538}
539
David Majnemerdad0a642014-06-27 18:19:56 +0000540bool LLParser::parseComdat() {
541 assert(Lex.getKind() == lltok::ComdatVar);
542 std::string Name = Lex.getStrVal();
543 LocTy NameLoc = Lex.getLoc();
544 Lex.Lex();
545
546 if (ParseToken(lltok::equal, "expected '=' here"))
547 return true;
548
549 if (ParseToken(lltok::kw_comdat, "expected comdat keyword"))
550 return TokError("expected comdat type");
551
552 Comdat::SelectionKind SK;
553 switch (Lex.getKind()) {
554 default:
555 return TokError("unknown selection kind");
556 case lltok::kw_any:
557 SK = Comdat::Any;
558 break;
559 case lltok::kw_exactmatch:
560 SK = Comdat::ExactMatch;
561 break;
562 case lltok::kw_largest:
563 SK = Comdat::Largest;
564 break;
565 case lltok::kw_noduplicates:
566 SK = Comdat::NoDuplicates;
567 break;
568 case lltok::kw_samesize:
569 SK = Comdat::SameSize;
570 break;
571 }
572 Lex.Lex();
573
574 // See if the comdat was forward referenced, if so, use the comdat.
575 Module::ComdatSymTabType &ComdatSymTab = M->getComdatSymbolTable();
576 Module::ComdatSymTabType::iterator I = ComdatSymTab.find(Name);
577 if (I != ComdatSymTab.end() && !ForwardRefComdats.erase(Name))
578 return Error(NameLoc, "redefinition of comdat '$" + Name + "'");
579
580 Comdat *C;
581 if (I != ComdatSymTab.end())
582 C = &I->second;
583 else
584 C = M->getOrInsertComdat(Name);
585 C->setSelectionKind(SK);
586
587 return false;
588}
589
Devang Patel8ff0f8d2009-07-20 19:00:08 +0000590// MDString:
591// ::= '!' STRINGCONSTANT
Chris Lattner1797fc72009-12-29 21:53:55 +0000592bool LLParser::ParseMDString(MDString *&Result) {
Devang Patel8ff0f8d2009-07-20 19:00:08 +0000593 std::string Str;
594 if (ParseStringConstant(Str)) return true;
Chris Lattner1797fc72009-12-29 21:53:55 +0000595 Result = MDString::get(Context, Str);
Devang Patel8ff0f8d2009-07-20 19:00:08 +0000596 return false;
597}
598
599// MDNode:
600// ::= '!' MDNodeNumber
Chris Lattner6dac02a2009-12-30 04:15:23 +0000601bool LLParser::ParseMDNodeID(MDNode *&Result) {
Devang Patel8ff0f8d2009-07-20 19:00:08 +0000602 // !{ ..., !42, ... }
603 unsigned MID = 0;
Duncan P. N. Exon Smitha8d9a022015-01-12 21:14:38 +0000604 if (ParseUInt32(MID))
605 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000606
Chris Lattner8eff0152010-04-01 05:14:45 +0000607 // If not a forward reference, just return it now.
David Majnemer19b51052015-02-11 07:43:56 +0000608 if (NumberedMetadata.count(MID)) {
Duncan P. N. Exon Smitha8d9a022015-01-12 21:14:38 +0000609 Result = NumberedMetadata[MID];
610 return false;
611 }
Devang Patel8ff0f8d2009-07-20 19:00:08 +0000612
Chris Lattner8eff0152010-04-01 05:14:45 +0000613 // Otherwise, create MDNode forward reference.
Duncan P. N. Exon Smith7d823132015-01-19 21:30:18 +0000614 auto &FwdRef = ForwardRefMDNodes[MID];
615 FwdRef = std::make_pair(MDTuple::getTemporary(Context, None), Lex.getLoc());
Michael Ilseman26ee2b82012-11-15 22:34:00 +0000616
Duncan P. N. Exon Smith7d823132015-01-19 21:30:18 +0000617 Result = FwdRef.first.get();
618 NumberedMetadata[MID].reset(Result);
Devang Patel8ff0f8d2009-07-20 19:00:08 +0000619 return false;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000620}
Devang Patel8ff0f8d2009-07-20 19:00:08 +0000621
Chris Lattnerf2fe7ff2009-12-29 22:35:39 +0000622/// ParseNamedMetadata:
Devang Patelbe626972009-07-29 00:34:02 +0000623/// !foo = !{ !1, !2 }
624bool LLParser::ParseNamedMetadata() {
Chris Lattnereafe4de2009-12-30 05:02:06 +0000625 assert(Lex.getKind() == lltok::MetadataVar);
Devang Patelbe626972009-07-29 00:34:02 +0000626 std::string Name = Lex.getStrVal();
Chris Lattnereafe4de2009-12-30 05:02:06 +0000627 Lex.Lex();
Devang Patelbe626972009-07-29 00:34:02 +0000628
Chris Lattnerf2fe7ff2009-12-29 22:35:39 +0000629 if (ParseToken(lltok::equal, "expected '=' here") ||
Chris Lattner1eed2d62009-12-30 04:56:59 +0000630 ParseToken(lltok::exclaim, "Expected '!' here") ||
Chris Lattnerf2fe7ff2009-12-29 22:35:39 +0000631 ParseToken(lltok::lbrace, "Expected '{' here"))
Devang Patelbe626972009-07-29 00:34:02 +0000632 return true;
633
Dan Gohman2637cc12010-07-21 23:38:33 +0000634 NamedMDNode *NMD = M->getOrInsertNamedMetadata(Name);
Dan Gohmanafd69cf2010-07-13 19:42:44 +0000635 if (Lex.getKind() != lltok::rbrace)
636 do {
Dan Gohmanafd69cf2010-07-13 19:42:44 +0000637 if (ParseToken(lltok::exclaim, "Expected '!' here"))
638 return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +0000639
Craig Topper2617dcc2014-04-15 06:32:26 +0000640 MDNode *N = nullptr;
Dan Gohmanafd69cf2010-07-13 19:42:44 +0000641 if (ParseMDNodeID(N)) return true;
Dan Gohman2637cc12010-07-21 23:38:33 +0000642 NMD->addOperand(N);
Dan Gohmanafd69cf2010-07-13 19:42:44 +0000643 } while (EatIfPresent(lltok::comma));
Devang Patelbe626972009-07-29 00:34:02 +0000644
Rafael Espindolac7818fb2015-05-26 20:37:36 +0000645 return ParseToken(lltok::rbrace, "expected end of metadata node");
Devang Patelbe626972009-07-29 00:34:02 +0000646}
647
Devang Patel39e64d42009-07-01 19:21:12 +0000648/// ParseStandaloneMetadata:
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000649/// !42 = !{...}
Devang Patel39e64d42009-07-01 19:21:12 +0000650bool LLParser::ParseStandaloneMetadata() {
Chris Lattner1eed2d62009-12-30 04:56:59 +0000651 assert(Lex.getKind() == lltok::exclaim);
Devang Patel39e64d42009-07-01 19:21:12 +0000652 Lex.Lex();
653 unsigned MetadataID = 0;
Devang Patel39e64d42009-07-01 19:21:12 +0000654
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000655 MDNode *Init;
Chris Lattner278bc952009-12-29 22:40:21 +0000656 if (ParseUInt32(MetadataID) ||
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +0000657 ParseToken(lltok::equal, "expected '=' here"))
658 return true;
659
660 // Detect common error, from old metadata syntax.
661 if (Lex.getKind() == lltok::Type)
662 return TokError("unexpected type in metadata definition");
663
Duncan P. N. Exon Smith090a19b2015-01-08 22:38:29 +0000664 bool IsDistinct = EatIfPresent(lltok::kw_distinct);
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +0000665 if (Lex.getKind() == lltok::MetadataVar) {
666 if (ParseSpecializedMDNode(Init, IsDistinct))
667 return true;
668 } else if (ParseToken(lltok::exclaim, "Expected '!' here") ||
669 ParseMDTuple(Init, IsDistinct))
Devang Patele059ba6e2009-07-23 01:07:34 +0000670 return true;
671
Chris Lattnerfc58af22009-12-30 04:51:58 +0000672 // See if this was forward referenced, if so, handle it.
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000673 auto FI = ForwardRefMDNodes.find(MetadataID);
Devang Pateld2541152009-07-08 19:23:54 +0000674 if (FI != ForwardRefMDNodes.end()) {
Duncan P. N. Exon Smith7d823132015-01-19 21:30:18 +0000675 FI->second.first->replaceAllUsesWith(Init);
Devang Pateld2541152009-07-08 19:23:54 +0000676 ForwardRefMDNodes.erase(FI);
Michael Ilseman26ee2b82012-11-15 22:34:00 +0000677
Chris Lattnerfc58af22009-12-30 04:51:58 +0000678 assert(NumberedMetadata[MetadataID] == Init && "Tracking VH didn't work");
679 } else {
David Majnemer19b51052015-02-11 07:43:56 +0000680 if (NumberedMetadata.count(MetadataID))
Chris Lattnerfc58af22009-12-30 04:51:58 +0000681 return TokError("Metadata id is already used");
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000682 NumberedMetadata[MetadataID].reset(Init);
Devang Pateld2541152009-07-08 19:23:54 +0000683 }
684
Devang Patel39e64d42009-07-01 19:21:12 +0000685 return false;
686}
687
Duncan P. N. Exon Smithb80de102014-05-07 22:57:20 +0000688static bool isValidVisibilityForLinkage(unsigned V, unsigned L) {
689 return !GlobalValue::isLocalLinkage((GlobalValue::LinkageTypes)L) ||
690 (GlobalValue::VisibilityTypes)V == GlobalValue::DefaultVisibility;
691}
692
Chris Lattnerac161bf2009-01-02 07:01:27 +0000693/// ParseAlias:
Rafael Espindola464fe022014-07-30 22:51:54 +0000694/// ::= GlobalVar '=' OptionalLinkage OptionalVisibility
695/// OptionalDLLStorageClass OptionalThreadLocal
Eric Christopher536f0a92015-05-28 23:07:39 +0000696/// OptionalUnnamedAddr 'alias' Aliasee
Rafael Espindola6b238632014-05-16 19:35:39 +0000697///
Chris Lattnerac161bf2009-01-02 07:01:27 +0000698/// Aliasee
Chris Lattner4c73d7a2009-04-25 21:26:00 +0000699/// ::= TypeAndValue
Chris Lattnerac161bf2009-01-02 07:01:27 +0000700///
Eric Christopher536f0a92015-05-28 23:07:39 +0000701/// Everything through OptionalUnnamedAddr has already been parsed.
Chris Lattnerac161bf2009-01-02 07:01:27 +0000702///
Rafael Espindola464fe022014-07-30 22:51:54 +0000703bool LLParser::ParseAlias(const std::string &Name, LocTy NameLoc, unsigned L,
Rafael Espindola59f7eba2014-05-28 18:15:43 +0000704 unsigned Visibility, unsigned DLLStorageClass,
Rafael Espindola42a4c9f2014-06-06 01:20:28 +0000705 GlobalVariable::ThreadLocalMode TLM,
706 bool UnnamedAddr) {
Chris Lattnerac161bf2009-01-02 07:01:27 +0000707 assert(Lex.getKind() == lltok::kw_alias);
708 Lex.Lex();
Chris Lattnerac161bf2009-01-02 07:01:27 +0000709
Rafael Espindola78527052013-10-06 15:10:43 +0000710 GlobalValue::LinkageTypes Linkage = (GlobalValue::LinkageTypes) L;
711
Rafael Espindolacaa43562013-10-09 16:07:32 +0000712 if(!GlobalAlias::isValidLinkage(Linkage))
Rafael Espindola464fe022014-07-30 22:51:54 +0000713 return Error(NameLoc, "invalid linkage type for alias");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000714
Duncan P. N. Exon Smithb80de102014-05-07 22:57:20 +0000715 if (!isValidVisibilityForLinkage(Visibility, L))
Rafael Espindola464fe022014-07-30 22:51:54 +0000716 return Error(NameLoc,
Duncan P. N. Exon Smithb80de102014-05-07 22:57:20 +0000717 "symbol with local linkage must have default visibility");
718
David Blaikie2f408302015-09-11 03:22:04 +0000719 Type *Ty;
720 LocTy ExplicitTypeLoc = Lex.getLoc();
721 if (ParseType(Ty) ||
722 ParseToken(lltok::comma, "expected comma after alias's type"))
723 return true;
724
Rafael Espindola64c1e182014-06-03 02:41:57 +0000725 Constant *Aliasee;
726 LocTy AliaseeLoc = Lex.getLoc();
727 if (Lex.getKind() != lltok::kw_bitcast &&
728 Lex.getKind() != lltok::kw_getelementptr &&
729 Lex.getKind() != lltok::kw_addrspacecast &&
730 Lex.getKind() != lltok::kw_inttoptr) {
731 if (ParseGlobalTypeAndValue(Aliasee))
Rafael Espindola6b238632014-05-16 19:35:39 +0000732 return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000733 } else {
Rafael Espindola64c1e182014-06-03 02:41:57 +0000734 // The bitcast dest type is not present, it is implied by the dest type.
735 ValID ID;
736 if (ParseValID(ID))
737 return true;
738 if (ID.Kind != ValID::t_Constant)
739 return Error(AliaseeLoc, "invalid aliasee");
740 Aliasee = ID.ConstantVal;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000741 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000742
Rafael Espindola64c1e182014-06-03 02:41:57 +0000743 Type *AliaseeType = Aliasee->getType();
744 auto *PTy = dyn_cast<PointerType>(AliaseeType);
745 if (!PTy)
746 return Error(AliaseeLoc, "An alias must have pointer type");
David Blaikie16a2f3e2015-09-14 18:01:59 +0000747 unsigned AddrSpace = PTy->getAddressSpace();
Chris Lattnerac161bf2009-01-02 07:01:27 +0000748
David Blaikie2f408302015-09-11 03:22:04 +0000749 if (Ty != PTy->getElementType())
750 return Error(
751 ExplicitTypeLoc,
752 "explicit pointee type doesn't match operand's pointee type");
753
Peter Collingbourne463ff6d2015-11-25 02:54:07 +0000754 GlobalValue *GVal = nullptr;
755
756 // See if the alias was forward referenced, if so, prepare to replace the
757 // forward reference.
758 if (!Name.empty()) {
759 GVal = M->getNamedValue(Name);
760 if (GVal) {
761 if (!ForwardRefVals.erase(Name))
762 return Error(NameLoc, "redefinition of global '@" + Name + "'");
763 }
764 } else {
765 auto I = ForwardRefValIDs.find(NumberedVals.size());
766 if (I != ForwardRefValIDs.end()) {
767 GVal = I->second.first;
768 ForwardRefValIDs.erase(I);
769 }
770 }
771
Chris Lattnerac161bf2009-01-02 07:01:27 +0000772 // Okay, create the alias but do not insert it into the module yet.
Rafael Espindola4fe00942014-05-16 13:34:04 +0000773 std::unique_ptr<GlobalAlias> GA(
David Blaikie16a2f3e2015-09-14 18:01:59 +0000774 GlobalAlias::create(Ty, AddrSpace, (GlobalValue::LinkageTypes)Linkage,
775 Name, Aliasee, /*Parent*/ nullptr));
Rafael Espindola59f7eba2014-05-28 18:15:43 +0000776 GA->setThreadLocalMode(TLM);
Chris Lattnerac161bf2009-01-02 07:01:27 +0000777 GA->setVisibility((GlobalValue::VisibilityTypes)Visibility);
Nico Rieck7157bb72014-01-14 15:22:47 +0000778 GA->setDLLStorageClass((GlobalValue::DLLStorageClassTypes)DLLStorageClass);
Rafael Espindola42a4c9f2014-06-06 01:20:28 +0000779 GA->setUnnamedAddr(UnnamedAddr);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000780
Rafael Espindola54fc2982015-06-17 17:53:31 +0000781 if (Name.empty())
782 NumberedVals.push_back(GA.get());
783
Peter Collingbourne463ff6d2015-11-25 02:54:07 +0000784 if (GVal) {
785 // Verify that types agree.
786 if (GVal->getType() != GA->getType())
787 return Error(
788 ExplicitTypeLoc,
789 "forward reference and definition of alias have different types");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000790
Chris Lattnerac161bf2009-01-02 07:01:27 +0000791 // If they agree, just RAUW the old value with the alias and remove the
792 // forward ref info.
Peter Collingbourne463ff6d2015-11-25 02:54:07 +0000793 GVal->replaceAllUsesWith(GA.get());
794 GVal->eraseFromParent();
Chris Lattnerac161bf2009-01-02 07:01:27 +0000795 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000796
Chris Lattnerac161bf2009-01-02 07:01:27 +0000797 // Insert into the module, we know its name won't collide now.
Rafael Espindolaaa273822014-05-09 21:49:17 +0000798 M->getAliasList().push_back(GA.get());
Benjamin Kramer1dc34b42010-10-16 11:28:23 +0000799 assert(GA->getName() == Name && "Should not be a name conflict!");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000800
Rafael Espindolaaa273822014-05-09 21:49:17 +0000801 // The module owns this now
802 GA.release();
803
Chris Lattnerac161bf2009-01-02 07:01:27 +0000804 return false;
805}
806
807/// ParseGlobal
Nico Rieck7157bb72014-01-14 15:22:47 +0000808/// ::= GlobalVar '=' OptionalLinkage OptionalVisibility OptionalDLLStorageClass
Eric Christopher536f0a92015-05-28 23:07:39 +0000809/// OptionalThreadLocal OptionalUnnamedAddr OptionalAddrSpace
Michael Gottesman27e7ef32013-02-05 05:57:38 +0000810/// OptionalExternallyInitialized GlobalType Type Const
Nico Rieck7157bb72014-01-14 15:22:47 +0000811/// ::= OptionalLinkage OptionalVisibility OptionalDLLStorageClass
Eric Christopher536f0a92015-05-28 23:07:39 +0000812/// OptionalThreadLocal OptionalUnnamedAddr OptionalAddrSpace
Michael Gottesman27e7ef32013-02-05 05:57:38 +0000813/// OptionalExternallyInitialized GlobalType Type Const
Chris Lattnerac161bf2009-01-02 07:01:27 +0000814///
Eric Christopher536f0a92015-05-28 23:07:39 +0000815/// Everything up to and including OptionalUnnamedAddr has been parsed
David Majnemerc4ab61c2014-03-09 06:41:58 +0000816/// already.
Chris Lattnerac161bf2009-01-02 07:01:27 +0000817///
818bool LLParser::ParseGlobal(const std::string &Name, LocTy NameLoc,
819 unsigned Linkage, bool HasLinkage,
Rafael Espindola59f7eba2014-05-28 18:15:43 +0000820 unsigned Visibility, unsigned DLLStorageClass,
Rafael Espindola42a4c9f2014-06-06 01:20:28 +0000821 GlobalVariable::ThreadLocalMode TLM,
822 bool UnnamedAddr) {
Duncan P. N. Exon Smithb80de102014-05-07 22:57:20 +0000823 if (!isValidVisibilityForLinkage(Visibility, Linkage))
824 return Error(NameLoc,
825 "symbol with local linkage must have default visibility");
826
Chris Lattnerac161bf2009-01-02 07:01:27 +0000827 unsigned AddrSpace;
Rafael Espindola42a4c9f2014-06-06 01:20:28 +0000828 bool IsConstant, IsExternallyInitialized;
Michael Gottesman27e7ef32013-02-05 05:57:38 +0000829 LocTy IsExternallyInitializedLoc;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000830 LocTy TyLoc;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000831
Craig Topper2617dcc2014-04-15 06:32:26 +0000832 Type *Ty = nullptr;
Rafael Espindola59f7eba2014-05-28 18:15:43 +0000833 if (ParseOptionalAddrSpace(AddrSpace) ||
Michael Gottesman27e7ef32013-02-05 05:57:38 +0000834 ParseOptionalToken(lltok::kw_externally_initialized,
835 IsExternallyInitialized,
836 &IsExternallyInitializedLoc) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +0000837 ParseGlobalType(IsConstant) ||
838 ParseType(Ty, TyLoc))
839 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000840
Chris Lattnerac161bf2009-01-02 07:01:27 +0000841 // If the linkage is specified and is external, then no initializer is
842 // present.
Craig Topper2617dcc2014-04-15 06:32:26 +0000843 Constant *Init = nullptr;
Nico Rieck7157bb72014-01-14 15:22:47 +0000844 if (!HasLinkage || (Linkage != GlobalValue::ExternalWeakLinkage &&
Chris Lattnerac161bf2009-01-02 07:01:27 +0000845 Linkage != GlobalValue::ExternalLinkage)) {
846 if (ParseGlobalValue(Ty, Init))
847 return true;
848 }
849
David Majnemer49b3d9b2015-02-16 08:41:08 +0000850 if (Ty->isFunctionTy() || !PointerType::isValidElementType(Ty))
Chris Lattnerc9e1b482009-02-08 20:00:15 +0000851 return Error(TyLoc, "invalid type for global variable");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000852
David Majnemer598bd052014-12-09 05:56:09 +0000853 GlobalValue *GVal = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000854
855 // See if the global was forward referenced, if so, use the global.
Chris Lattner1f386b82009-02-02 07:24:28 +0000856 if (!Name.empty()) {
David Majnemer598bd052014-12-09 05:56:09 +0000857 GVal = M->getNamedValue(Name);
858 if (GVal) {
Peter Collingbourne463ff6d2015-11-25 02:54:07 +0000859 if (!ForwardRefVals.erase(Name))
Chris Lattnere38317f2009-10-25 23:22:50 +0000860 return Error(NameLoc, "redefinition of global '@" + Name + "'");
Chris Lattnere38317f2009-10-25 23:22:50 +0000861 }
Chris Lattnerac161bf2009-01-02 07:01:27 +0000862 } else {
David Blaikie9ebdc692015-09-21 21:07:50 +0000863 auto I = ForwardRefValIDs.find(NumberedVals.size());
Chris Lattnerac161bf2009-01-02 07:01:27 +0000864 if (I != ForwardRefValIDs.end()) {
David Majnemer598bd052014-12-09 05:56:09 +0000865 GVal = I->second.first;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000866 ForwardRefValIDs.erase(I);
867 }
868 }
869
David Majnemer598bd052014-12-09 05:56:09 +0000870 GlobalVariable *GV;
871 if (!GVal) {
Craig Topper2617dcc2014-04-15 06:32:26 +0000872 GV = new GlobalVariable(*M, Ty, false, GlobalValue::ExternalLinkage, nullptr,
873 Name, nullptr, GlobalVariable::NotThreadLocal,
Hans Wennborgcbe34b42012-06-23 11:37:03 +0000874 AddrSpace);
Chris Lattnerac161bf2009-01-02 07:01:27 +0000875 } else {
David Blaikie8f27ae42015-05-13 22:55:01 +0000876 if (GVal->getValueType() != Ty)
Chris Lattnerac161bf2009-01-02 07:01:27 +0000877 return Error(TyLoc,
878 "forward reference and definition of global have different types");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000879
David Majnemer598bd052014-12-09 05:56:09 +0000880 GV = cast<GlobalVariable>(GVal);
881
Chris Lattnerac161bf2009-01-02 07:01:27 +0000882 // Move the forward-reference to the correct spot in the module.
883 M->getGlobalList().splice(M->global_end(), M->getGlobalList(), GV);
884 }
885
886 if (Name.empty())
887 NumberedVals.push_back(GV);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000888
Chris Lattnerac161bf2009-01-02 07:01:27 +0000889 // Set the parsed properties on the global.
890 if (Init)
891 GV->setInitializer(Init);
892 GV->setConstant(IsConstant);
893 GV->setLinkage((GlobalValue::LinkageTypes)Linkage);
894 GV->setVisibility((GlobalValue::VisibilityTypes)Visibility);
Nico Rieck7157bb72014-01-14 15:22:47 +0000895 GV->setDLLStorageClass((GlobalValue::DLLStorageClassTypes)DLLStorageClass);
Michael Gottesman27e7ef32013-02-05 05:57:38 +0000896 GV->setExternallyInitialized(IsExternallyInitialized);
Hans Wennborgcbe34b42012-06-23 11:37:03 +0000897 GV->setThreadLocalMode(TLM);
Rafael Espindola45e6c192011-01-08 16:42:36 +0000898 GV->setUnnamedAddr(UnnamedAddr);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000899
Chris Lattnerac161bf2009-01-02 07:01:27 +0000900 // Parse attributes on the global.
901 while (Lex.getKind() == lltok::comma) {
902 Lex.Lex();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000903
Chris Lattnerac161bf2009-01-02 07:01:27 +0000904 if (Lex.getKind() == lltok::kw_section) {
905 Lex.Lex();
906 GV->setSection(Lex.getStrVal());
907 if (ParseToken(lltok::StringConstant, "expected global section string"))
908 return true;
909 } else if (Lex.getKind() == lltok::kw_align) {
910 unsigned Alignment;
911 if (ParseOptionalAlignment(Alignment)) return true;
912 GV->setAlignment(Alignment);
913 } else {
David Majnemerdad0a642014-06-27 18:19:56 +0000914 Comdat *C;
Rafael Espindola83a362c2015-01-06 22:55:16 +0000915 if (parseOptionalComdat(Name, C))
David Majnemerdad0a642014-06-27 18:19:56 +0000916 return true;
917 if (C)
918 GV->setComdat(C);
919 else
920 return TokError("unknown global variable property!");
Chris Lattnerac161bf2009-01-02 07:01:27 +0000921 }
922 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000923
Chris Lattnerac161bf2009-01-02 07:01:27 +0000924 return false;
925}
926
Bill Wendling63b88192013-02-06 06:52:58 +0000927/// ParseUnnamedAttrGrp
Bill Wendlinga7c38772013-02-09 15:48:49 +0000928/// ::= 'attributes' AttrGrpID '=' '{' AttrValPair+ '}'
Bill Wendling63b88192013-02-06 06:52:58 +0000929bool LLParser::ParseUnnamedAttrGrp() {
Bill Wendlinga7c38772013-02-09 15:48:49 +0000930 assert(Lex.getKind() == lltok::kw_attributes);
Bill Wendling63b88192013-02-06 06:52:58 +0000931 LocTy AttrGrpLoc = Lex.getLoc();
Bill Wendlinga7c38772013-02-09 15:48:49 +0000932 Lex.Lex();
933
David Majnemerb39e22b2014-12-09 18:33:57 +0000934 if (Lex.getKind() != lltok::AttrGrpID)
935 return TokError("expected attribute group id");
936
Bill Wendling63b88192013-02-06 06:52:58 +0000937 unsigned VarID = Lex.getUIntVal();
Bill Wendlingb32b0412013-02-08 06:32:06 +0000938 std::vector<unsigned> unused;
Michael Gottesman41748d72013-06-27 00:25:01 +0000939 LocTy BuiltinLoc;
Bill Wendling63b88192013-02-06 06:52:58 +0000940 Lex.Lex();
941
942 if (ParseToken(lltok::equal, "expected '=' here") ||
Bill Wendling63b88192013-02-06 06:52:58 +0000943 ParseToken(lltok::lbrace, "expected '{' here") ||
Bill Wendling09bd1f72013-02-22 00:12:35 +0000944 ParseFnAttributeValuePairs(NumberedAttrBuilders[VarID], unused, true,
Michael Gottesman41748d72013-06-27 00:25:01 +0000945 BuiltinLoc) ||
Bill Wendling63b88192013-02-06 06:52:58 +0000946 ParseToken(lltok::rbrace, "expected end of attribute group"))
947 return true;
948
Bill Wendlingb32b0412013-02-08 06:32:06 +0000949 if (!NumberedAttrBuilders[VarID].hasAttributes())
Bill Wendling63b88192013-02-06 06:52:58 +0000950 return Error(AttrGrpLoc, "attribute group has no attributes");
951
952 return false;
953}
954
Bill Wendling8b0321d2013-02-08 00:52:31 +0000955/// ParseFnAttributeValuePairs
Bill Wendling63b88192013-02-06 06:52:58 +0000956/// ::= <attr> | <attr> '=' <value>
Bill Wendlingb32b0412013-02-08 06:32:06 +0000957bool LLParser::ParseFnAttributeValuePairs(AttrBuilder &B,
958 std::vector<unsigned> &FwdRefAttrGrps,
Michael Gottesman41748d72013-06-27 00:25:01 +0000959 bool inAttrGrp, LocTy &BuiltinLoc) {
Bill Wendling8b0321d2013-02-08 00:52:31 +0000960 bool HaveError = false;
961
962 B.clear();
963
Bill Wendling63b88192013-02-06 06:52:58 +0000964 while (true) {
965 lltok::Kind Token = Lex.getKind();
Michael Gottesman41748d72013-06-27 00:25:01 +0000966 if (Token == lltok::kw_builtin)
967 BuiltinLoc = Lex.getLoc();
Bill Wendling63b88192013-02-06 06:52:58 +0000968 switch (Token) {
969 default:
Bill Wendling8b0321d2013-02-08 00:52:31 +0000970 if (!inAttrGrp) return HaveError;
Bill Wendling63b88192013-02-06 06:52:58 +0000971 return Error(Lex.getLoc(), "unterminated attribute group");
972 case lltok::rbrace:
973 // Finished.
974 return false;
975
Bill Wendlingb32b0412013-02-08 06:32:06 +0000976 case lltok::AttrGrpID: {
977 // Allow a function to reference an attribute group:
978 //
979 // define void @foo() #1 { ... }
980 if (inAttrGrp)
981 HaveError |=
982 Error(Lex.getLoc(),
983 "cannot have an attribute group reference in an attribute group");
984
985 unsigned AttrGrpNum = Lex.getUIntVal();
986 if (inAttrGrp) break;
987
988 // Save the reference to the attribute group. We'll fill it in later.
989 FwdRefAttrGrps.push_back(AttrGrpNum);
990 break;
991 }
Bill Wendling63b88192013-02-06 06:52:58 +0000992 // Target-dependent attributes:
993 case lltok::StringConstant: {
Artur Pilipenko17376c42015-08-03 14:31:49 +0000994 if (ParseStringAttribute(B))
Bill Wendling63b88192013-02-06 06:52:58 +0000995 return true;
Bill Wendlingb1ea9802013-02-10 10:12:50 +0000996 continue;
Bill Wendling63b88192013-02-06 06:52:58 +0000997 }
998
999 // Target-independent attributes:
1000 case lltok::kw_align: {
Bill Wendlingc62789f2013-04-18 18:30:16 +00001001 // As a hack, we allow function alignment to be initially parsed as an
1002 // attribute on a function declaration/definition or added to an attribute
1003 // group and later moved to the alignment field.
Bill Wendling63b88192013-02-06 06:52:58 +00001004 unsigned Alignment;
Bill Wendling8b0321d2013-02-08 00:52:31 +00001005 if (inAttrGrp) {
Bill Wendling44b08bf2013-02-10 23:15:51 +00001006 Lex.Lex();
Bill Wendling8b0321d2013-02-08 00:52:31 +00001007 if (ParseToken(lltok::equal, "expected '=' here") ||
1008 ParseUInt32(Alignment))
1009 return true;
1010 } else {
1011 if (ParseOptionalAlignment(Alignment))
1012 return true;
1013 }
Bill Wendling63b88192013-02-06 06:52:58 +00001014 B.addAlignmentAttr(Alignment);
Bill Wendling8b0321d2013-02-08 00:52:31 +00001015 continue;
Bill Wendling63b88192013-02-06 06:52:58 +00001016 }
1017 case lltok::kw_alignstack: {
1018 unsigned Alignment;
Bill Wendling8b0321d2013-02-08 00:52:31 +00001019 if (inAttrGrp) {
Bill Wendling44b08bf2013-02-10 23:15:51 +00001020 Lex.Lex();
Bill Wendling8b0321d2013-02-08 00:52:31 +00001021 if (ParseToken(lltok::equal, "expected '=' here") ||
1022 ParseUInt32(Alignment))
1023 return true;
1024 } else {
1025 if (ParseOptionalStackAlignment(Alignment))
1026 return true;
1027 }
Bill Wendling63b88192013-02-06 06:52:58 +00001028 B.addStackAlignmentAttr(Alignment);
Bill Wendling8b0321d2013-02-08 00:52:31 +00001029 continue;
Bill Wendling63b88192013-02-06 06:52:58 +00001030 }
Igor Laevsky39d662f2015-07-11 10:30:36 +00001031 case lltok::kw_alwaysinline: B.addAttribute(Attribute::AlwaysInline); break;
1032 case lltok::kw_argmemonly: B.addAttribute(Attribute::ArgMemOnly); break;
1033 case lltok::kw_builtin: B.addAttribute(Attribute::Builtin); break;
1034 case lltok::kw_cold: B.addAttribute(Attribute::Cold); break;
1035 case lltok::kw_convergent: B.addAttribute(Attribute::Convergent); break;
Vaivaswatha Nagarajfb3f4902015-12-16 16:16:19 +00001036 case lltok::kw_inaccessiblememonly:
1037 B.addAttribute(Attribute::InaccessibleMemOnly); break;
1038 case lltok::kw_inaccessiblemem_or_argmemonly:
1039 B.addAttribute(Attribute::InaccessibleMemOrArgMemOnly); break;
Igor Laevsky39d662f2015-07-11 10:30:36 +00001040 case lltok::kw_inlinehint: B.addAttribute(Attribute::InlineHint); break;
1041 case lltok::kw_jumptable: B.addAttribute(Attribute::JumpTable); break;
1042 case lltok::kw_minsize: B.addAttribute(Attribute::MinSize); break;
1043 case lltok::kw_naked: B.addAttribute(Attribute::Naked); break;
1044 case lltok::kw_nobuiltin: B.addAttribute(Attribute::NoBuiltin); break;
1045 case lltok::kw_noduplicate: B.addAttribute(Attribute::NoDuplicate); break;
1046 case lltok::kw_noimplicitfloat:
1047 B.addAttribute(Attribute::NoImplicitFloat); break;
1048 case lltok::kw_noinline: B.addAttribute(Attribute::NoInline); break;
1049 case lltok::kw_nonlazybind: B.addAttribute(Attribute::NonLazyBind); break;
1050 case lltok::kw_noredzone: B.addAttribute(Attribute::NoRedZone); break;
1051 case lltok::kw_noreturn: B.addAttribute(Attribute::NoReturn); break;
James Molloye6f87ca2015-11-06 10:32:53 +00001052 case lltok::kw_norecurse: B.addAttribute(Attribute::NoRecurse); break;
Igor Laevsky39d662f2015-07-11 10:30:36 +00001053 case lltok::kw_nounwind: B.addAttribute(Attribute::NoUnwind); break;
1054 case lltok::kw_optnone: B.addAttribute(Attribute::OptimizeNone); break;
1055 case lltok::kw_optsize: B.addAttribute(Attribute::OptimizeForSize); break;
1056 case lltok::kw_readnone: B.addAttribute(Attribute::ReadNone); break;
1057 case lltok::kw_readonly: B.addAttribute(Attribute::ReadOnly); break;
1058 case lltok::kw_returns_twice:
1059 B.addAttribute(Attribute::ReturnsTwice); break;
1060 case lltok::kw_ssp: B.addAttribute(Attribute::StackProtect); break;
1061 case lltok::kw_sspreq: B.addAttribute(Attribute::StackProtectReq); break;
1062 case lltok::kw_sspstrong:
1063 B.addAttribute(Attribute::StackProtectStrong); break;
1064 case lltok::kw_safestack: B.addAttribute(Attribute::SafeStack); break;
1065 case lltok::kw_sanitize_address:
1066 B.addAttribute(Attribute::SanitizeAddress); break;
1067 case lltok::kw_sanitize_thread:
1068 B.addAttribute(Attribute::SanitizeThread); break;
1069 case lltok::kw_sanitize_memory:
1070 B.addAttribute(Attribute::SanitizeMemory); break;
1071 case lltok::kw_uwtable: B.addAttribute(Attribute::UWTable); break;
Bill Wendling8b0321d2013-02-08 00:52:31 +00001072
1073 // Error handling.
1074 case lltok::kw_inreg:
1075 case lltok::kw_signext:
1076 case lltok::kw_zeroext:
1077 HaveError |=
1078 Error(Lex.getLoc(),
1079 "invalid use of attribute on a function");
1080 break;
1081 case lltok::kw_byval:
Hal Finkelb0407ba2014-07-18 15:51:28 +00001082 case lltok::kw_dereferenceable:
Sanjoy Das31ea6d12015-04-16 20:29:50 +00001083 case lltok::kw_dereferenceable_or_null:
Reid Klecknera534a382013-12-19 02:14:12 +00001084 case lltok::kw_inalloca:
Bill Wendling8b0321d2013-02-08 00:52:31 +00001085 case lltok::kw_nest:
1086 case lltok::kw_noalias:
1087 case lltok::kw_nocapture:
Nick Lewyckyd52b1522014-05-20 01:23:40 +00001088 case lltok::kw_nonnull:
Stephen Linb8bd2322013-04-20 05:14:40 +00001089 case lltok::kw_returned:
Bill Wendling8b0321d2013-02-08 00:52:31 +00001090 case lltok::kw_sret:
Manman Renf46262e2016-03-29 17:37:21 +00001091 case lltok::kw_swiftself:
Bill Wendling8b0321d2013-02-08 00:52:31 +00001092 HaveError |=
1093 Error(Lex.getLoc(),
1094 "invalid use of parameter-only attribute on a function");
1095 break;
Bill Wendling63b88192013-02-06 06:52:58 +00001096 }
1097
1098 Lex.Lex();
1099 }
1100}
Chris Lattnerac161bf2009-01-02 07:01:27 +00001101
1102//===----------------------------------------------------------------------===//
1103// GlobalValue Reference/Resolution Routines.
1104//===----------------------------------------------------------------------===//
1105
Karl Schimpf77729782015-09-03 18:06:44 +00001106static inline GlobalValue *createGlobalFwdRef(Module *M, PointerType *PTy,
1107 const std::string &Name) {
1108 if (auto *FT = dyn_cast<FunctionType>(PTy->getElementType()))
1109 return Function::Create(FT, GlobalValue::ExternalWeakLinkage, Name, M);
1110 else
1111 return new GlobalVariable(*M, PTy->getElementType(), false,
1112 GlobalValue::ExternalWeakLinkage, nullptr, Name,
1113 nullptr, GlobalVariable::NotThreadLocal,
1114 PTy->getAddressSpace());
1115}
1116
Chris Lattnerac161bf2009-01-02 07:01:27 +00001117/// GetGlobalVal - Get a value with the specified name or ID, creating a
1118/// forward reference record if needed. This can return null if the value
1119/// exists but does not have the right type.
Chris Lattner229907c2011-07-18 04:54:35 +00001120GlobalValue *LLParser::GetGlobalVal(const std::string &Name, Type *Ty,
Chris Lattnerac161bf2009-01-02 07:01:27 +00001121 LocTy Loc) {
Chris Lattner229907c2011-07-18 04:54:35 +00001122 PointerType *PTy = dyn_cast<PointerType>(Ty);
Craig Topper2617dcc2014-04-15 06:32:26 +00001123 if (!PTy) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00001124 Error(Loc, "global variable reference must have pointer type");
Craig Topper2617dcc2014-04-15 06:32:26 +00001125 return nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001126 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001127
Chris Lattnerac161bf2009-01-02 07:01:27 +00001128 // Look this name up in the normal function symbol table.
1129 GlobalValue *Val =
1130 cast_or_null<GlobalValue>(M->getValueSymbolTable().lookup(Name));
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001131
Chris Lattnerac161bf2009-01-02 07:01:27 +00001132 // If this is a forward reference for the value, see if we already created a
1133 // forward ref record.
Craig Topper2617dcc2014-04-15 06:32:26 +00001134 if (!Val) {
David Blaikie9ebdc692015-09-21 21:07:50 +00001135 auto I = ForwardRefVals.find(Name);
Chris Lattnerac161bf2009-01-02 07:01:27 +00001136 if (I != ForwardRefVals.end())
1137 Val = I->second.first;
1138 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001139
Chris Lattnerac161bf2009-01-02 07:01:27 +00001140 // If we have the value in the symbol table or fwd-ref table, return it.
1141 if (Val) {
1142 if (Val->getType() == Ty) return Val;
1143 Error(Loc, "'@" + Name + "' defined with type '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00001144 getTypeString(Val->getType()) + "'");
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 // Otherwise, create a new forward reference for this value and remember it.
Karl Schimpf77729782015-09-03 18:06:44 +00001149 GlobalValue *FwdVal = createGlobalFwdRef(M, PTy, Name);
Chris Lattnerac161bf2009-01-02 07:01:27 +00001150 ForwardRefVals[Name] = std::make_pair(FwdVal, Loc);
1151 return FwdVal;
1152}
1153
Chris Lattner229907c2011-07-18 04:54:35 +00001154GlobalValue *LLParser::GetGlobalVal(unsigned ID, Type *Ty, LocTy Loc) {
1155 PointerType *PTy = dyn_cast<PointerType>(Ty);
Craig Topper2617dcc2014-04-15 06:32:26 +00001156 if (!PTy) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00001157 Error(Loc, "global variable reference must have pointer type");
Craig Topper2617dcc2014-04-15 06:32:26 +00001158 return nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001159 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001160
Craig Topper2617dcc2014-04-15 06:32:26 +00001161 GlobalValue *Val = ID < NumberedVals.size() ? NumberedVals[ID] : nullptr;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001162
Chris Lattnerac161bf2009-01-02 07:01:27 +00001163 // If this is a forward reference for the value, see if we already created a
1164 // forward ref record.
Craig Topper2617dcc2014-04-15 06:32:26 +00001165 if (!Val) {
David Blaikie9ebdc692015-09-21 21:07:50 +00001166 auto I = ForwardRefValIDs.find(ID);
Chris Lattnerac161bf2009-01-02 07:01:27 +00001167 if (I != ForwardRefValIDs.end())
1168 Val = I->second.first;
1169 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001170
Chris Lattnerac161bf2009-01-02 07:01:27 +00001171 // If we have the value in the symbol table or fwd-ref table, return it.
1172 if (Val) {
1173 if (Val->getType() == Ty) return Val;
Benjamin Kramerc7583112010-09-27 17:42:11 +00001174 Error(Loc, "'@" + Twine(ID) + "' defined with type '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00001175 getTypeString(Val->getType()) + "'");
Craig Topper2617dcc2014-04-15 06:32:26 +00001176 return nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001177 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001178
Chris Lattnerac161bf2009-01-02 07:01:27 +00001179 // Otherwise, create a new forward reference for this value and remember it.
Karl Schimpf77729782015-09-03 18:06:44 +00001180 GlobalValue *FwdVal = createGlobalFwdRef(M, PTy, "");
Chris Lattnerac161bf2009-01-02 07:01:27 +00001181 ForwardRefValIDs[ID] = std::make_pair(FwdVal, Loc);
1182 return FwdVal;
1183}
1184
1185
1186//===----------------------------------------------------------------------===//
David Majnemerdad0a642014-06-27 18:19:56 +00001187// Comdat Reference/Resolution Routines.
1188//===----------------------------------------------------------------------===//
1189
1190Comdat *LLParser::getComdat(const std::string &Name, LocTy Loc) {
1191 // Look this name up in the comdat symbol table.
1192 Module::ComdatSymTabType &ComdatSymTab = M->getComdatSymbolTable();
1193 Module::ComdatSymTabType::iterator I = ComdatSymTab.find(Name);
1194 if (I != ComdatSymTab.end())
1195 return &I->second;
1196
1197 // Otherwise, create a new forward reference for this value and remember it.
1198 Comdat *C = M->getOrInsertComdat(Name);
1199 ForwardRefComdats[Name] = Loc;
1200 return C;
1201}
1202
1203
1204//===----------------------------------------------------------------------===//
Chris Lattnerac161bf2009-01-02 07:01:27 +00001205// Helper Routines.
1206//===----------------------------------------------------------------------===//
1207
1208/// ParseToken - If the current token has the specified kind, eat it and return
1209/// success. Otherwise, emit the specified error and return failure.
1210bool LLParser::ParseToken(lltok::Kind T, const char *ErrMsg) {
1211 if (Lex.getKind() != T)
1212 return TokError(ErrMsg);
1213 Lex.Lex();
1214 return false;
1215}
1216
Chris Lattner3822f632009-01-02 08:05:26 +00001217/// ParseStringConstant
1218/// ::= StringConstant
1219bool LLParser::ParseStringConstant(std::string &Result) {
1220 if (Lex.getKind() != lltok::StringConstant)
1221 return TokError("expected string constant");
1222 Result = Lex.getStrVal();
1223 Lex.Lex();
1224 return false;
1225}
1226
1227/// ParseUInt32
1228/// ::= uint32
1229bool LLParser::ParseUInt32(unsigned &Val) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00001230 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned())
1231 return TokError("expected integer");
1232 uint64_t Val64 = Lex.getAPSIntVal().getLimitedValue(0xFFFFFFFFULL+1);
1233 if (Val64 != unsigned(Val64))
1234 return TokError("expected 32-bit integer (too large)");
1235 Val = Val64;
1236 Lex.Lex();
1237 return false;
1238}
1239
Hal Finkelb0407ba2014-07-18 15:51:28 +00001240/// ParseUInt64
1241/// ::= uint64
1242bool LLParser::ParseUInt64(uint64_t &Val) {
1243 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned())
1244 return TokError("expected integer");
1245 Val = Lex.getAPSIntVal().getLimitedValue();
1246 Lex.Lex();
1247 return false;
1248}
1249
Hans Wennborgcbe34b42012-06-23 11:37:03 +00001250/// ParseTLSModel
1251/// := 'localdynamic'
1252/// := 'initialexec'
1253/// := 'localexec'
1254bool LLParser::ParseTLSModel(GlobalVariable::ThreadLocalMode &TLM) {
1255 switch (Lex.getKind()) {
1256 default:
1257 return TokError("expected localdynamic, initialexec or localexec");
1258 case lltok::kw_localdynamic:
1259 TLM = GlobalVariable::LocalDynamicTLSModel;
1260 break;
1261 case lltok::kw_initialexec:
1262 TLM = GlobalVariable::InitialExecTLSModel;
1263 break;
1264 case lltok::kw_localexec:
1265 TLM = GlobalVariable::LocalExecTLSModel;
1266 break;
1267 }
1268
1269 Lex.Lex();
1270 return false;
1271}
1272
1273/// ParseOptionalThreadLocal
1274/// := /*empty*/
1275/// := 'thread_local'
1276/// := 'thread_local' '(' tlsmodel ')'
1277bool LLParser::ParseOptionalThreadLocal(GlobalVariable::ThreadLocalMode &TLM) {
1278 TLM = GlobalVariable::NotThreadLocal;
1279 if (!EatIfPresent(lltok::kw_thread_local))
1280 return false;
1281
1282 TLM = GlobalVariable::GeneralDynamicTLSModel;
1283 if (Lex.getKind() == lltok::lparen) {
1284 Lex.Lex();
1285 return ParseTLSModel(TLM) ||
1286 ParseToken(lltok::rparen, "expected ')' after thread local model");
1287 }
1288 return false;
1289}
Chris Lattnerac161bf2009-01-02 07:01:27 +00001290
1291/// ParseOptionalAddrSpace
1292/// := /*empty*/
1293/// := 'addrspace' '(' uint32 ')'
1294bool LLParser::ParseOptionalAddrSpace(unsigned &AddrSpace) {
1295 AddrSpace = 0;
Chris Lattner3822f632009-01-02 08:05:26 +00001296 if (!EatIfPresent(lltok::kw_addrspace))
Chris Lattnerac161bf2009-01-02 07:01:27 +00001297 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001298 return ParseToken(lltok::lparen, "expected '(' in address space") ||
Chris Lattner3822f632009-01-02 08:05:26 +00001299 ParseUInt32(AddrSpace) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00001300 ParseToken(lltok::rparen, "expected ')' in address space");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001301}
Chris Lattnerac161bf2009-01-02 07:01:27 +00001302
Artur Pilipenko17376c42015-08-03 14:31:49 +00001303/// ParseStringAttribute
1304/// := StringConstant
1305/// := StringConstant '=' StringConstant
1306bool LLParser::ParseStringAttribute(AttrBuilder &B) {
1307 std::string Attr = Lex.getStrVal();
1308 Lex.Lex();
1309 std::string Val;
1310 if (EatIfPresent(lltok::equal) && ParseStringConstant(Val))
1311 return true;
1312 B.addAttribute(Attr, Val);
1313 return false;
1314}
1315
Bill Wendling34c2eb22012-12-04 23:40:58 +00001316/// ParseOptionalParamAttrs - Parse a potentially empty list of parameter attributes.
1317bool LLParser::ParseOptionalParamAttrs(AttrBuilder &B) {
1318 bool HaveError = false;
1319
1320 B.clear();
1321
1322 while (1) {
1323 lltok::Kind Token = Lex.getKind();
1324 switch (Token) {
1325 default: // End of attributes.
1326 return HaveError;
Artur Pilipenko17376c42015-08-03 14:31:49 +00001327 case lltok::StringConstant: {
1328 if (ParseStringAttribute(B))
1329 return true;
1330 continue;
1331 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00001332 case lltok::kw_align: {
1333 unsigned Alignment;
1334 if (ParseOptionalAlignment(Alignment))
1335 return true;
Bill Wendling68d24012012-10-08 22:20:14 +00001336 B.addAlignmentAttr(Alignment);
Chris Lattnerac161bf2009-01-02 07:01:27 +00001337 continue;
1338 }
Bill Wendling3d7b0b82012-12-19 07:18:57 +00001339 case lltok::kw_byval: B.addAttribute(Attribute::ByVal); break;
Hal Finkelb0407ba2014-07-18 15:51:28 +00001340 case lltok::kw_dereferenceable: {
1341 uint64_t Bytes;
Sanjoy Das31ea6d12015-04-16 20:29:50 +00001342 if (ParseOptionalDerefAttrBytes(lltok::kw_dereferenceable, Bytes))
Hal Finkelb0407ba2014-07-18 15:51:28 +00001343 return true;
1344 B.addDereferenceableAttr(Bytes);
1345 continue;
1346 }
Sanjoy Das31ea6d12015-04-16 20:29:50 +00001347 case lltok::kw_dereferenceable_or_null: {
1348 uint64_t Bytes;
1349 if (ParseOptionalDerefAttrBytes(lltok::kw_dereferenceable_or_null, Bytes))
1350 return true;
1351 B.addDereferenceableOrNullAttr(Bytes);
1352 continue;
1353 }
Reid Klecknera534a382013-12-19 02:14:12 +00001354 case lltok::kw_inalloca: B.addAttribute(Attribute::InAlloca); break;
Bill Wendling3d7b0b82012-12-19 07:18:57 +00001355 case lltok::kw_inreg: B.addAttribute(Attribute::InReg); break;
1356 case lltok::kw_nest: B.addAttribute(Attribute::Nest); break;
1357 case lltok::kw_noalias: B.addAttribute(Attribute::NoAlias); break;
1358 case lltok::kw_nocapture: B.addAttribute(Attribute::NoCapture); break;
Nick Lewyckyd52b1522014-05-20 01:23:40 +00001359 case lltok::kw_nonnull: B.addAttribute(Attribute::NonNull); break;
Nick Lewyckyc2ec0722013-07-06 00:29:58 +00001360 case lltok::kw_readnone: B.addAttribute(Attribute::ReadNone); break;
1361 case lltok::kw_readonly: B.addAttribute(Attribute::ReadOnly); break;
Stephen Linb8bd2322013-04-20 05:14:40 +00001362 case lltok::kw_returned: B.addAttribute(Attribute::Returned); break;
Bill Wendling3d7b0b82012-12-19 07:18:57 +00001363 case lltok::kw_signext: B.addAttribute(Attribute::SExt); break;
1364 case lltok::kw_sret: B.addAttribute(Attribute::StructRet); break;
Manman Renf46262e2016-03-29 17:37:21 +00001365 case lltok::kw_swiftself: B.addAttribute(Attribute::SwiftSelf); break;
Bill Wendling3d7b0b82012-12-19 07:18:57 +00001366 case lltok::kw_zeroext: B.addAttribute(Attribute::ZExt); break;
Charles Davisbe5557e2010-02-12 00:31:15 +00001367
Stephen Lin7577ed52013-04-20 13:16:13 +00001368 case lltok::kw_alignstack:
1369 case lltok::kw_alwaysinline:
Igor Laevsky39d662f2015-07-11 10:30:36 +00001370 case lltok::kw_argmemonly:
Michael Gottesman41748d72013-06-27 00:25:01 +00001371 case lltok::kw_builtin:
Stephen Lin7577ed52013-04-20 13:16:13 +00001372 case lltok::kw_inlinehint:
Tom Roeder44cb65f2014-06-05 19:29:43 +00001373 case lltok::kw_jumptable:
Stephen Lin7577ed52013-04-20 13:16:13 +00001374 case lltok::kw_minsize:
1375 case lltok::kw_naked:
1376 case lltok::kw_nobuiltin:
1377 case lltok::kw_noduplicate:
1378 case lltok::kw_noimplicitfloat:
1379 case lltok::kw_noinline:
1380 case lltok::kw_nonlazybind:
1381 case lltok::kw_noredzone:
1382 case lltok::kw_noreturn:
1383 case lltok::kw_nounwind:
Andrea Di Biagio377496b2013-08-23 11:53:55 +00001384 case lltok::kw_optnone:
Stephen Lin7577ed52013-04-20 13:16:13 +00001385 case lltok::kw_optsize:
Stephen Lin7577ed52013-04-20 13:16:13 +00001386 case lltok::kw_returns_twice:
1387 case lltok::kw_sanitize_address:
1388 case lltok::kw_sanitize_memory:
1389 case lltok::kw_sanitize_thread:
1390 case lltok::kw_ssp:
1391 case lltok::kw_sspreq:
1392 case lltok::kw_sspstrong:
Peter Collingbourne82437bf2015-06-15 21:07:11 +00001393 case lltok::kw_safestack:
Stephen Lin7577ed52013-04-20 13:16:13 +00001394 case lltok::kw_uwtable:
Bill Wendling34c2eb22012-12-04 23:40:58 +00001395 HaveError |= Error(Lex.getLoc(), "invalid use of function-only attribute");
1396 break;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001397 }
Bill Wendling0be9c402012-09-28 22:30:18 +00001398
Bill Wendling34c2eb22012-12-04 23:40:58 +00001399 Lex.Lex();
1400 }
1401}
1402
1403/// ParseOptionalReturnAttrs - Parse a potentially empty list of return attributes.
1404bool LLParser::ParseOptionalReturnAttrs(AttrBuilder &B) {
1405 bool HaveError = false;
1406
1407 B.clear();
1408
1409 while (1) {
1410 lltok::Kind Token = Lex.getKind();
Bill Wendling0be9c402012-09-28 22:30:18 +00001411 switch (Token) {
Bill Wendling34c2eb22012-12-04 23:40:58 +00001412 default: // End of attributes.
1413 return HaveError;
Artur Pilipenko17376c42015-08-03 14:31:49 +00001414 case lltok::StringConstant: {
1415 if (ParseStringAttribute(B))
1416 return true;
1417 continue;
1418 }
Hal Finkelb0407ba2014-07-18 15:51:28 +00001419 case lltok::kw_dereferenceable: {
1420 uint64_t Bytes;
Sanjoy Das31ea6d12015-04-16 20:29:50 +00001421 if (ParseOptionalDerefAttrBytes(lltok::kw_dereferenceable, Bytes))
Hal Finkelb0407ba2014-07-18 15:51:28 +00001422 return true;
1423 B.addDereferenceableAttr(Bytes);
1424 continue;
1425 }
Sanjoy Das31ea6d12015-04-16 20:29:50 +00001426 case lltok::kw_dereferenceable_or_null: {
1427 uint64_t Bytes;
1428 if (ParseOptionalDerefAttrBytes(lltok::kw_dereferenceable_or_null, Bytes))
1429 return true;
1430 B.addDereferenceableOrNullAttr(Bytes);
1431 continue;
1432 }
Artur Pilipenko84bc62f2015-09-18 12:33:31 +00001433 case lltok::kw_align: {
1434 unsigned Alignment;
1435 if (ParseOptionalAlignment(Alignment))
1436 return true;
1437 B.addAlignmentAttr(Alignment);
1438 continue;
1439 }
Bill Wendling3d7b0b82012-12-19 07:18:57 +00001440 case lltok::kw_inreg: B.addAttribute(Attribute::InReg); break;
1441 case lltok::kw_noalias: B.addAttribute(Attribute::NoAlias); break;
Nick Lewyckyd52b1522014-05-20 01:23:40 +00001442 case lltok::kw_nonnull: B.addAttribute(Attribute::NonNull); break;
Bill Wendling3d7b0b82012-12-19 07:18:57 +00001443 case lltok::kw_signext: B.addAttribute(Attribute::SExt); break;
1444 case lltok::kw_zeroext: B.addAttribute(Attribute::ZExt); break;
Bill Wendling0be9c402012-09-28 22:30:18 +00001445
Bill Wendling34c2eb22012-12-04 23:40:58 +00001446 // Error handling.
Chandler Carruth9f6b59a2013-04-09 19:46:46 +00001447 case lltok::kw_byval:
Reid Klecknera534a382013-12-19 02:14:12 +00001448 case lltok::kw_inalloca:
Chandler Carruth9f6b59a2013-04-09 19:46:46 +00001449 case lltok::kw_nest:
1450 case lltok::kw_nocapture:
Stephen Linb8bd2322013-04-20 05:14:40 +00001451 case lltok::kw_returned:
Chandler Carruth9f6b59a2013-04-09 19:46:46 +00001452 case lltok::kw_sret:
Manman Renf46262e2016-03-29 17:37:21 +00001453 case lltok::kw_swiftself:
Bill Wendling34c2eb22012-12-04 23:40:58 +00001454 HaveError |= Error(Lex.getLoc(), "invalid use of parameter-only attribute");
Bill Wendling0be9c402012-09-28 22:30:18 +00001455 break;
James Molloy4f6fb952012-12-20 16:04:27 +00001456
Chandler Carruth9f6b59a2013-04-09 19:46:46 +00001457 case lltok::kw_alignstack:
1458 case lltok::kw_alwaysinline:
Igor Laevsky39d662f2015-07-11 10:30:36 +00001459 case lltok::kw_argmemonly:
Michael Gottesman41748d72013-06-27 00:25:01 +00001460 case lltok::kw_builtin:
Diego Novilloc6399532013-05-24 12:26:52 +00001461 case lltok::kw_cold:
Chandler Carruth9f6b59a2013-04-09 19:46:46 +00001462 case lltok::kw_inlinehint:
Tom Roeder44cb65f2014-06-05 19:29:43 +00001463 case lltok::kw_jumptable:
Chandler Carruth9f6b59a2013-04-09 19:46:46 +00001464 case lltok::kw_minsize:
1465 case lltok::kw_naked:
1466 case lltok::kw_nobuiltin:
1467 case lltok::kw_noduplicate:
1468 case lltok::kw_noimplicitfloat:
1469 case lltok::kw_noinline:
1470 case lltok::kw_nonlazybind:
1471 case lltok::kw_noredzone:
1472 case lltok::kw_noreturn:
1473 case lltok::kw_nounwind:
Andrea Di Biagio377496b2013-08-23 11:53:55 +00001474 case lltok::kw_optnone:
Chandler Carruth9f6b59a2013-04-09 19:46:46 +00001475 case lltok::kw_optsize:
Chandler Carruth9f6b59a2013-04-09 19:46:46 +00001476 case lltok::kw_returns_twice:
1477 case lltok::kw_sanitize_address:
1478 case lltok::kw_sanitize_memory:
1479 case lltok::kw_sanitize_thread:
1480 case lltok::kw_ssp:
1481 case lltok::kw_sspreq:
1482 case lltok::kw_sspstrong:
Peter Collingbourne82437bf2015-06-15 21:07:11 +00001483 case lltok::kw_safestack:
Chandler Carruth9f6b59a2013-04-09 19:46:46 +00001484 case lltok::kw_uwtable:
Bill Wendling34c2eb22012-12-04 23:40:58 +00001485 HaveError |= Error(Lex.getLoc(), "invalid use of function-only attribute");
Bill Wendling0be9c402012-09-28 22:30:18 +00001486 break;
Nick Lewyckyc2ec0722013-07-06 00:29:58 +00001487
1488 case lltok::kw_readnone:
1489 case lltok::kw_readonly:
1490 HaveError |= Error(Lex.getLoc(), "invalid use of attribute on return type");
Bill Wendling0be9c402012-09-28 22:30:18 +00001491 }
1492
Chris Lattnerac161bf2009-01-02 07:01:27 +00001493 Lex.Lex();
1494 }
1495}
1496
1497/// ParseOptionalLinkage
1498/// ::= /*empty*/
Rafael Espindola6de96a12009-01-15 20:18:42 +00001499/// ::= 'private'
Chris Lattnerac161bf2009-01-02 07:01:27 +00001500/// ::= 'internal'
1501/// ::= 'weak'
Duncan Sands12da8ce2009-03-07 15:45:40 +00001502/// ::= 'weak_odr'
Chris Lattnerac161bf2009-01-02 07:01:27 +00001503/// ::= 'linkonce'
Duncan Sands12da8ce2009-03-07 15:45:40 +00001504/// ::= 'linkonce_odr'
Bill Wendling03bcd6e2010-07-01 21:55:59 +00001505/// ::= 'available_externally'
Chris Lattnerac161bf2009-01-02 07:01:27 +00001506/// ::= 'appending'
Chris Lattnerac161bf2009-01-02 07:01:27 +00001507/// ::= 'common'
Chris Lattnerac161bf2009-01-02 07:01:27 +00001508/// ::= 'extern_weak'
1509/// ::= 'external'
1510bool LLParser::ParseOptionalLinkage(unsigned &Res, bool &HasLinkage) {
1511 HasLinkage = false;
1512 switch (Lex.getKind()) {
Bill Wendlinga3c6f6b2009-07-20 01:03:30 +00001513 default: Res=GlobalValue::ExternalLinkage; return false;
1514 case lltok::kw_private: Res = GlobalValue::PrivateLinkage; break;
Bill Wendlinga3c6f6b2009-07-20 01:03:30 +00001515 case lltok::kw_internal: Res = GlobalValue::InternalLinkage; break;
1516 case lltok::kw_weak: Res = GlobalValue::WeakAnyLinkage; break;
1517 case lltok::kw_weak_odr: Res = GlobalValue::WeakODRLinkage; break;
1518 case lltok::kw_linkonce: Res = GlobalValue::LinkOnceAnyLinkage; break;
1519 case lltok::kw_linkonce_odr: Res = GlobalValue::LinkOnceODRLinkage; break;
Chris Lattner184f1be2009-04-13 05:44:34 +00001520 case lltok::kw_available_externally:
1521 Res = GlobalValue::AvailableExternallyLinkage;
1522 break;
Bill Wendlinga3c6f6b2009-07-20 01:03:30 +00001523 case lltok::kw_appending: Res = GlobalValue::AppendingLinkage; break;
Bill Wendlinga3c6f6b2009-07-20 01:03:30 +00001524 case lltok::kw_common: Res = GlobalValue::CommonLinkage; break;
Bill Wendlinga3c6f6b2009-07-20 01:03:30 +00001525 case lltok::kw_extern_weak: Res = GlobalValue::ExternalWeakLinkage; break;
1526 case lltok::kw_external: Res = GlobalValue::ExternalLinkage; break;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001527 }
1528 Lex.Lex();
1529 HasLinkage = true;
1530 return false;
1531}
1532
1533/// ParseOptionalVisibility
1534/// ::= /*empty*/
1535/// ::= 'default'
1536/// ::= 'hidden'
1537/// ::= 'protected'
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001538///
Chris Lattnerac161bf2009-01-02 07:01:27 +00001539bool LLParser::ParseOptionalVisibility(unsigned &Res) {
1540 switch (Lex.getKind()) {
1541 default: Res = GlobalValue::DefaultVisibility; return false;
1542 case lltok::kw_default: Res = GlobalValue::DefaultVisibility; break;
1543 case lltok::kw_hidden: Res = GlobalValue::HiddenVisibility; break;
1544 case lltok::kw_protected: Res = GlobalValue::ProtectedVisibility; break;
1545 }
1546 Lex.Lex();
1547 return false;
1548}
1549
Nico Rieck7157bb72014-01-14 15:22:47 +00001550/// ParseOptionalDLLStorageClass
1551/// ::= /*empty*/
1552/// ::= 'dllimport'
1553/// ::= 'dllexport'
1554///
1555bool LLParser::ParseOptionalDLLStorageClass(unsigned &Res) {
1556 switch (Lex.getKind()) {
1557 default: Res = GlobalValue::DefaultStorageClass; return false;
1558 case lltok::kw_dllimport: Res = GlobalValue::DLLImportStorageClass; break;
1559 case lltok::kw_dllexport: Res = GlobalValue::DLLExportStorageClass; break;
1560 }
1561 Lex.Lex();
1562 return false;
1563}
1564
Chris Lattnerac161bf2009-01-02 07:01:27 +00001565/// ParseOptionalCallingConv
1566/// ::= /*empty*/
1567/// ::= 'ccc'
1568/// ::= 'fastcc'
Reid Kleckner35fc3632014-12-01 21:04:44 +00001569/// ::= 'intel_ocl_bicc'
Chris Lattnerac161bf2009-01-02 07:01:27 +00001570/// ::= 'coldcc'
1571/// ::= 'x86_stdcallcc'
1572/// ::= 'x86_fastcallcc'
Anton Korobeynikov8f35fab2010-05-16 09:08:45 +00001573/// ::= 'x86_thiscallcc'
Reid Kleckner9ccce992014-10-28 01:29:26 +00001574/// ::= 'x86_vectorcallcc'
Anton Korobeynikova8fd40b2009-06-16 18:50:49 +00001575/// ::= 'arm_apcscc'
1576/// ::= 'arm_aapcscc'
1577/// ::= 'arm_aapcs_vfpcc'
Anton Korobeynikov27a0ecf2009-12-07 02:27:35 +00001578/// ::= 'msp430_intrcc'
Dylan McKay4fd0d4a2016-03-03 10:08:02 +00001579/// ::= 'avr_intrcc'
1580/// ::= 'avr_signalcc'
Che-Liang Chiou29947902010-09-25 07:46:17 +00001581/// ::= 'ptx_kernel'
1582/// ::= 'ptx_device'
Micah Villmow48c8ddc2012-10-01 17:01:31 +00001583/// ::= 'spir_func'
1584/// ::= 'spir_kernel'
Charles Davise8f297c2013-07-12 06:02:35 +00001585/// ::= 'x86_64_sysvcc'
1586/// ::= 'x86_64_win64cc'
Andrew Tricka3a11de2013-10-31 22:12:01 +00001587/// ::= 'webkit_jscc'
Juergen Ributzka9969d3e2013-11-08 23:28:16 +00001588/// ::= 'anyregcc'
Juergen Ributzkae6250132014-01-17 19:47:03 +00001589/// ::= 'preserve_mostcc'
1590/// ::= 'preserve_allcc'
Reid Kleckner35fc3632014-12-01 21:04:44 +00001591/// ::= 'ghccc'
Amjad Aboud60b5e1b2015-12-21 14:07:14 +00001592/// ::= 'x86_intrcc'
Maksim Panchenkocce239c2015-09-29 22:09:16 +00001593/// ::= 'hhvmcc'
1594/// ::= 'hhvm_ccc'
Manman Ren19c7bbe2015-12-04 17:40:13 +00001595/// ::= 'cxx_fast_tlscc'
Chris Lattnerac161bf2009-01-02 07:01:27 +00001596/// ::= 'cc' UINT
Anton Korobeynikova8fd40b2009-06-16 18:50:49 +00001597///
Alexey Samsonov17a9cff2014-09-10 18:00:17 +00001598bool LLParser::ParseOptionalCallingConv(unsigned &CC) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00001599 switch (Lex.getKind()) {
1600 default: CC = CallingConv::C; return false;
1601 case lltok::kw_ccc: CC = CallingConv::C; break;
1602 case lltok::kw_fastcc: CC = CallingConv::Fast; break;
1603 case lltok::kw_coldcc: CC = CallingConv::Cold; break;
1604 case lltok::kw_x86_stdcallcc: CC = CallingConv::X86_StdCall; break;
1605 case lltok::kw_x86_fastcallcc: CC = CallingConv::X86_FastCall; break;
Anton Korobeynikov8f35fab2010-05-16 09:08:45 +00001606 case lltok::kw_x86_thiscallcc: CC = CallingConv::X86_ThisCall; break;
Reid Kleckner9ccce992014-10-28 01:29:26 +00001607 case lltok::kw_x86_vectorcallcc:CC = CallingConv::X86_VectorCall; break;
Anton Korobeynikova8fd40b2009-06-16 18:50:49 +00001608 case lltok::kw_arm_apcscc: CC = CallingConv::ARM_APCS; break;
1609 case lltok::kw_arm_aapcscc: CC = CallingConv::ARM_AAPCS; break;
1610 case lltok::kw_arm_aapcs_vfpcc:CC = CallingConv::ARM_AAPCS_VFP; break;
Anton Korobeynikov27a0ecf2009-12-07 02:27:35 +00001611 case lltok::kw_msp430_intrcc: CC = CallingConv::MSP430_INTR; break;
Dylan McKay4fd0d4a2016-03-03 10:08:02 +00001612 case lltok::kw_avr_intrcc: CC = CallingConv::AVR_INTR; break;
1613 case lltok::kw_avr_signalcc: CC = CallingConv::AVR_SIGNAL; break;
Che-Liang Chiou29947902010-09-25 07:46:17 +00001614 case lltok::kw_ptx_kernel: CC = CallingConv::PTX_Kernel; break;
1615 case lltok::kw_ptx_device: CC = CallingConv::PTX_Device; break;
Micah Villmow48c8ddc2012-10-01 17:01:31 +00001616 case lltok::kw_spir_kernel: CC = CallingConv::SPIR_KERNEL; break;
1617 case lltok::kw_spir_func: CC = CallingConv::SPIR_FUNC; break;
Elena Demikhovskyd6afb032012-10-24 14:46:16 +00001618 case lltok::kw_intel_ocl_bicc: CC = CallingConv::Intel_OCL_BI; break;
Charles Davise8f297c2013-07-12 06:02:35 +00001619 case lltok::kw_x86_64_sysvcc: CC = CallingConv::X86_64_SysV; break;
1620 case lltok::kw_x86_64_win64cc: CC = CallingConv::X86_64_Win64; break;
Andrew Tricka3a11de2013-10-31 22:12:01 +00001621 case lltok::kw_webkit_jscc: CC = CallingConv::WebKit_JS; break;
Juergen Ributzka9969d3e2013-11-08 23:28:16 +00001622 case lltok::kw_anyregcc: CC = CallingConv::AnyReg; break;
Juergen Ributzkae6250132014-01-17 19:47:03 +00001623 case lltok::kw_preserve_mostcc:CC = CallingConv::PreserveMost; break;
1624 case lltok::kw_preserve_allcc: CC = CallingConv::PreserveAll; break;
Reid Kleckner35fc3632014-12-01 21:04:44 +00001625 case lltok::kw_ghccc: CC = CallingConv::GHC; break;
Amjad Aboud60b5e1b2015-12-21 14:07:14 +00001626 case lltok::kw_x86_intrcc: CC = CallingConv::X86_INTR; break;
Maksim Panchenkocce239c2015-09-29 22:09:16 +00001627 case lltok::kw_hhvmcc: CC = CallingConv::HHVM; break;
1628 case lltok::kw_hhvm_ccc: CC = CallingConv::HHVM_C; break;
Manman Ren19c7bbe2015-12-04 17:40:13 +00001629 case lltok::kw_cxx_fast_tlscc: CC = CallingConv::CXX_FAST_TLS; break;
Sandeep Patel68c5f472009-09-02 08:44:58 +00001630 case lltok::kw_cc: {
Sandeep Patel68c5f472009-09-02 08:44:58 +00001631 Lex.Lex();
Alexey Samsonov17a9cff2014-09-10 18:00:17 +00001632 return ParseUInt32(CC);
Sandeep Patel68c5f472009-09-02 08:44:58 +00001633 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00001634 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001635
Chris Lattnerac161bf2009-01-02 07:01:27 +00001636 Lex.Lex();
1637 return false;
1638}
1639
Duncan P. N. Exon Smith19717ea2015-04-24 21:21:57 +00001640/// ParseMetadataAttachment
1641/// ::= !dbg !42
1642bool LLParser::ParseMetadataAttachment(unsigned &Kind, MDNode *&MD) {
1643 assert(Lex.getKind() == lltok::MetadataVar && "Expected metadata attachment");
1644
1645 std::string Name = Lex.getStrVal();
1646 Kind = M->getMDKindID(Name);
1647 Lex.Lex();
1648
1649 return ParseMDNode(MD);
1650}
1651
Chris Lattner5c427632009-12-30 05:31:19 +00001652/// ParseInstructionMetadata
Chris Lattner596760d2009-12-29 21:25:40 +00001653/// ::= !dbg !42 (',' !dbg !57)*
Duncan P. N. Exon Smith27d702c2015-04-24 21:29:36 +00001654bool LLParser::ParseInstructionMetadata(Instruction &Inst) {
Chris Lattner5c427632009-12-30 05:31:19 +00001655 do {
1656 if (Lex.getKind() != lltok::MetadataVar)
1657 return TokError("expected metadata after comma");
Devang Patelba4a6fd2009-09-29 00:01:14 +00001658
Duncan P. N. Exon Smith19717ea2015-04-24 21:21:57 +00001659 unsigned MDK;
Duncan P. N. Exon Smithf825dae2015-01-12 22:26:48 +00001660 MDNode *N;
Duncan P. N. Exon Smith19717ea2015-04-24 21:21:57 +00001661 if (ParseMetadataAttachment(MDK, N))
Chris Lattner1eed2d62009-12-30 04:56:59 +00001662 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001663
Duncan P. N. Exon Smith27d702c2015-04-24 21:29:36 +00001664 Inst.setMetadata(MDK, N);
Manman Ren209b17c2013-09-28 00:22:27 +00001665 if (MDK == LLVMContext::MD_tbaa)
Duncan P. N. Exon Smith27d702c2015-04-24 21:29:36 +00001666 InstsWithTBAATag.push_back(&Inst);
Manman Ren209b17c2013-09-28 00:22:27 +00001667
Chris Lattner596760d2009-12-29 21:25:40 +00001668 // If this is the end of the list, we're done.
Chris Lattner5c427632009-12-30 05:31:19 +00001669 } while (EatIfPresent(lltok::comma));
1670 return false;
Devang Patelea8a4b92009-09-17 23:04:48 +00001671}
1672
Duncan P. N. Exon Smith3d4cd752015-04-24 22:04:41 +00001673/// ParseOptionalFunctionMetadata
1674/// ::= (!dbg !57)*
1675bool LLParser::ParseOptionalFunctionMetadata(Function &F) {
1676 while (Lex.getKind() == lltok::MetadataVar) {
1677 unsigned MDK;
1678 MDNode *N;
1679 if (ParseMetadataAttachment(MDK, N))
1680 return true;
1681
1682 F.setMetadata(MDK, N);
1683 }
1684 return false;
1685}
1686
Chris Lattnerac161bf2009-01-02 07:01:27 +00001687/// ParseOptionalAlignment
1688/// ::= /* empty */
1689/// ::= 'align' 4
1690bool LLParser::ParseOptionalAlignment(unsigned &Alignment) {
1691 Alignment = 0;
Chris Lattner3822f632009-01-02 08:05:26 +00001692 if (!EatIfPresent(lltok::kw_align))
1693 return false;
Chris Lattnerd11f5142009-01-05 07:46:05 +00001694 LocTy AlignLoc = Lex.getLoc();
1695 if (ParseUInt32(Alignment)) return true;
1696 if (!isPowerOf2_32(Alignment))
1697 return Error(AlignLoc, "alignment is not a power of two");
Dan Gohmand566d2c2010-07-30 21:07:05 +00001698 if (Alignment > Value::MaximumAlignment)
Dan Gohmana7e5a242010-07-28 20:12:04 +00001699 return Error(AlignLoc, "huge alignments are not supported yet");
Chris Lattnerd11f5142009-01-05 07:46:05 +00001700 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001701}
1702
Sanjoy Das31ea6d12015-04-16 20:29:50 +00001703/// ParseOptionalDerefAttrBytes
Hal Finkelb0407ba2014-07-18 15:51:28 +00001704/// ::= /* empty */
Sanjoy Das31ea6d12015-04-16 20:29:50 +00001705/// ::= AttrKind '(' 4 ')'
1706///
1707/// where AttrKind is either 'dereferenceable' or 'dereferenceable_or_null'.
1708bool LLParser::ParseOptionalDerefAttrBytes(lltok::Kind AttrKind,
1709 uint64_t &Bytes) {
1710 assert((AttrKind == lltok::kw_dereferenceable ||
1711 AttrKind == lltok::kw_dereferenceable_or_null) &&
1712 "contract!");
1713
Hal Finkelb0407ba2014-07-18 15:51:28 +00001714 Bytes = 0;
Sanjoy Das31ea6d12015-04-16 20:29:50 +00001715 if (!EatIfPresent(AttrKind))
Hal Finkelb0407ba2014-07-18 15:51:28 +00001716 return false;
1717 LocTy ParenLoc = Lex.getLoc();
1718 if (!EatIfPresent(lltok::lparen))
1719 return Error(ParenLoc, "expected '('");
1720 LocTy DerefLoc = Lex.getLoc();
1721 if (ParseUInt64(Bytes)) return true;
1722 ParenLoc = Lex.getLoc();
1723 if (!EatIfPresent(lltok::rparen))
1724 return Error(ParenLoc, "expected ')'");
1725 if (!Bytes)
1726 return Error(DerefLoc, "dereferenceable bytes must be non-zero");
1727 return false;
1728}
1729
Chris Lattnerb2f39502009-12-30 05:44:30 +00001730/// ParseOptionalCommaAlign
Michael Ilseman26ee2b82012-11-15 22:34:00 +00001731/// ::=
Chris Lattnerb2f39502009-12-30 05:44:30 +00001732/// ::= ',' align 4
1733///
1734/// This returns with AteExtraComma set to true if it ate an excess comma at the
1735/// end.
1736bool LLParser::ParseOptionalCommaAlign(unsigned &Alignment,
1737 bool &AteExtraComma) {
1738 AteExtraComma = false;
1739 while (EatIfPresent(lltok::comma)) {
1740 // Metadata at the end is an early exit.
Chris Lattnereafe4de2009-12-30 05:02:06 +00001741 if (Lex.getKind() == lltok::MetadataVar) {
Chris Lattnerb2f39502009-12-30 05:44:30 +00001742 AteExtraComma = true;
1743 return false;
1744 }
Michael Ilseman26ee2b82012-11-15 22:34:00 +00001745
Chris Lattner95b0ff42010-04-23 00:50:50 +00001746 if (Lex.getKind() != lltok::kw_align)
1747 return Error(Lex.getLoc(), "expected metadata or 'align'");
Duncan Sands4c5c8582010-10-21 16:07:10 +00001748
Chris Lattner95b0ff42010-04-23 00:50:50 +00001749 if (ParseOptionalAlignment(Alignment)) return true;
Chris Lattnerb2f39502009-12-30 05:44:30 +00001750 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001751
Devang Patelea8a4b92009-09-17 23:04:48 +00001752 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001753}
1754
Eli Friedmanfee02c62011-07-25 23:16:38 +00001755/// ParseScopeAndOrdering
1756/// if isAtomic: ::= 'singlethread'? AtomicOrdering
1757/// else: ::=
1758///
1759/// This sets Scope and Ordering to the parsed values.
1760bool LLParser::ParseScopeAndOrdering(bool isAtomic, SynchronizationScope &Scope,
1761 AtomicOrdering &Ordering) {
1762 if (!isAtomic)
1763 return false;
1764
1765 Scope = CrossThread;
1766 if (EatIfPresent(lltok::kw_singlethread))
1767 Scope = SingleThread;
Tim Northovere94a5182014-03-11 10:48:52 +00001768
1769 return ParseOrdering(Ordering);
1770}
1771
1772/// ParseOrdering
1773/// ::= AtomicOrdering
1774///
1775/// This sets Ordering to the parsed value.
1776bool LLParser::ParseOrdering(AtomicOrdering &Ordering) {
Eli Friedmanfee02c62011-07-25 23:16:38 +00001777 switch (Lex.getKind()) {
1778 default: return TokError("Expected ordering on atomic instruction");
1779 case lltok::kw_unordered: Ordering = Unordered; break;
1780 case lltok::kw_monotonic: Ordering = Monotonic; break;
1781 case lltok::kw_acquire: Ordering = Acquire; break;
1782 case lltok::kw_release: Ordering = Release; break;
1783 case lltok::kw_acq_rel: Ordering = AcquireRelease; break;
1784 case lltok::kw_seq_cst: Ordering = SequentiallyConsistent; break;
1785 }
1786 Lex.Lex();
1787 return false;
1788}
1789
Charles Davisbe5557e2010-02-12 00:31:15 +00001790/// ParseOptionalStackAlignment
1791/// ::= /* empty */
1792/// ::= 'alignstack' '(' 4 ')'
1793bool LLParser::ParseOptionalStackAlignment(unsigned &Alignment) {
1794 Alignment = 0;
1795 if (!EatIfPresent(lltok::kw_alignstack))
1796 return false;
1797 LocTy ParenLoc = Lex.getLoc();
1798 if (!EatIfPresent(lltok::lparen))
1799 return Error(ParenLoc, "expected '('");
1800 LocTy AlignLoc = Lex.getLoc();
1801 if (ParseUInt32(Alignment)) return true;
1802 ParenLoc = Lex.getLoc();
1803 if (!EatIfPresent(lltok::rparen))
1804 return Error(ParenLoc, "expected ')'");
1805 if (!isPowerOf2_32(Alignment))
1806 return Error(AlignLoc, "stack alignment is not a power of two");
1807 return false;
1808}
Devang Patelea8a4b92009-09-17 23:04:48 +00001809
Chris Lattner28f1eeb2009-12-30 05:14:00 +00001810/// ParseIndexList - This parses the index list for an insert/extractvalue
1811/// instruction. This sets AteExtraComma in the case where we eat an extra
1812/// comma at the end of the line and find that it is followed by metadata.
1813/// Clients that don't allow metadata can call the version of this function that
1814/// only takes one argument.
1815///
Chris Lattnerac161bf2009-01-02 07:01:27 +00001816/// ParseIndexList
1817/// ::= (',' uint32)+
Chris Lattner28f1eeb2009-12-30 05:14:00 +00001818///
1819bool LLParser::ParseIndexList(SmallVectorImpl<unsigned> &Indices,
1820 bool &AteExtraComma) {
1821 AteExtraComma = false;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00001822
Chris Lattnerac161bf2009-01-02 07:01:27 +00001823 if (Lex.getKind() != lltok::comma)
1824 return TokError("expected ',' as start of index list");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001825
Chris Lattner3822f632009-01-02 08:05:26 +00001826 while (EatIfPresent(lltok::comma)) {
Chris Lattner28f1eeb2009-12-30 05:14:00 +00001827 if (Lex.getKind() == lltok::MetadataVar) {
David Majnemer7ccc34d2015-02-16 09:18:13 +00001828 if (Indices.empty()) return TokError("expected index");
Chris Lattner28f1eeb2009-12-30 05:14:00 +00001829 AteExtraComma = true;
1830 return false;
1831 }
Nick Lewycky83e47112010-09-29 23:32:20 +00001832 unsigned Idx = 0;
Chris Lattner3822f632009-01-02 08:05:26 +00001833 if (ParseUInt32(Idx)) return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001834 Indices.push_back(Idx);
1835 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001836
Chris Lattnerac161bf2009-01-02 07:01:27 +00001837 return false;
1838}
1839
1840//===----------------------------------------------------------------------===//
1841// Type Parsing.
1842//===----------------------------------------------------------------------===//
1843
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001844/// ParseType - Parse a type.
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00001845bool LLParser::ParseType(Type *&Result, const Twine &Msg, bool AllowVoid) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001846 SMLoc TypeLoc = Lex.getLoc();
Chris Lattnerac161bf2009-01-02 07:01:27 +00001847 switch (Lex.getKind()) {
1848 default:
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00001849 return TokError(Msg);
Chris Lattnerac161bf2009-01-02 07:01:27 +00001850 case lltok::Type:
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001851 // Type ::= 'float' | 'void' (etc)
Chris Lattnerac161bf2009-01-02 07:01:27 +00001852 Result = Lex.getTyVal();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001853 Lex.Lex();
Chris Lattnerac161bf2009-01-02 07:01:27 +00001854 break;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001855 case lltok::lbrace:
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001856 // Type ::= StructType
1857 if (ParseAnonStructType(Result, false))
Chris Lattnerac161bf2009-01-02 07:01:27 +00001858 return true;
1859 break;
1860 case lltok::lsquare:
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001861 // Type ::= '[' ... ']'
Chris Lattnerac161bf2009-01-02 07:01:27 +00001862 Lex.Lex(); // eat the lsquare.
1863 if (ParseArrayVectorType(Result, false))
1864 return true;
1865 break;
1866 case lltok::less: // Either vector or packed struct.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001867 // Type ::= '<' ... '>'
Chris Lattner3822f632009-01-02 08:05:26 +00001868 Lex.Lex();
1869 if (Lex.getKind() == lltok::lbrace) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001870 if (ParseAnonStructType(Result, true) ||
Chris Lattner3822f632009-01-02 08:05:26 +00001871 ParseToken(lltok::greater, "expected '>' at end of packed struct"))
Chris Lattnerac161bf2009-01-02 07:01:27 +00001872 return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001873 } else if (ParseArrayVectorType(Result, true))
1874 return true;
1875 break;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001876 case lltok::LocalVar: {
1877 // Type ::= %foo
1878 std::pair<Type*, LocTy> &Entry = NamedTypes[Lex.getStrVal()];
Michael Ilseman26ee2b82012-11-15 22:34:00 +00001879
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001880 // If the type hasn't been defined yet, create a forward definition and
1881 // remember where that forward def'n was seen (in case it never is defined).
Craig Topper2617dcc2014-04-15 06:32:26 +00001882 if (!Entry.first) {
Chris Lattner335d3992011-08-12 18:06:37 +00001883 Entry.first = StructType::create(Context, Lex.getStrVal());
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001884 Entry.second = Lex.getLoc();
Chris Lattnerac161bf2009-01-02 07:01:27 +00001885 }
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001886 Result = Entry.first;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001887 Lex.Lex();
1888 break;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001889 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001890
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001891 case lltok::LocalVarID: {
1892 // Type ::= %4
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001893 std::pair<Type*, LocTy> &Entry = NumberedTypes[Lex.getUIntVal()];
Michael Ilseman26ee2b82012-11-15 22:34:00 +00001894
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001895 // If the type hasn't been defined yet, create a forward definition and
1896 // remember where that forward def'n was seen (in case it never is defined).
Craig Topper2617dcc2014-04-15 06:32:26 +00001897 if (!Entry.first) {
Chris Lattner335d3992011-08-12 18:06:37 +00001898 Entry.first = StructType::create(Context);
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001899 Entry.second = Lex.getLoc();
Chris Lattnerac161bf2009-01-02 07:01:27 +00001900 }
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001901 Result = Entry.first;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001902 Lex.Lex();
1903 break;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001904 }
1905 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001906
1907 // Parse the type suffixes.
Chris Lattnerac161bf2009-01-02 07:01:27 +00001908 while (1) {
1909 switch (Lex.getKind()) {
1910 // End of type.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001911 default:
1912 if (!AllowVoid && Result->isVoidTy())
1913 return Error(TypeLoc, "void type only allowed for function results");
1914 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001915
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001916 // Type ::= Type '*'
Chris Lattnerac161bf2009-01-02 07:01:27 +00001917 case lltok::star:
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001918 if (Result->isLabelTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00001919 return TokError("basic block pointers are invalid");
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001920 if (Result->isVoidTy())
1921 return TokError("pointers to void are invalid - use i8* instead");
1922 if (!PointerType::isValidElementType(Result))
Nick Lewycky0aa6a742009-06-07 07:26:46 +00001923 return TokError("pointer to this type is invalid");
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001924 Result = PointerType::getUnqual(Result);
Chris Lattnerac161bf2009-01-02 07:01:27 +00001925 Lex.Lex();
1926 break;
1927
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001928 // Type ::= Type 'addrspace' '(' uint32 ')' '*'
Chris Lattnerac161bf2009-01-02 07:01:27 +00001929 case lltok::kw_addrspace: {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001930 if (Result->isLabelTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00001931 return TokError("basic block pointers are invalid");
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001932 if (Result->isVoidTy())
Dan Gohman9280a682009-02-09 17:41:21 +00001933 return TokError("pointers to void are invalid; use i8* instead");
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001934 if (!PointerType::isValidElementType(Result))
Nick Lewycky0aa6a742009-06-07 07:26:46 +00001935 return TokError("pointer to this type is invalid");
Chris Lattnerac161bf2009-01-02 07:01:27 +00001936 unsigned AddrSpace;
1937 if (ParseOptionalAddrSpace(AddrSpace) ||
1938 ParseToken(lltok::star, "expected '*' in address space"))
1939 return true;
1940
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001941 Result = PointerType::get(Result, AddrSpace);
Chris Lattnerac161bf2009-01-02 07:01:27 +00001942 break;
1943 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001944
Chris Lattnerac161bf2009-01-02 07:01:27 +00001945 /// Types '(' ArgTypeListI ')' OptFuncAttrs
1946 case lltok::lparen:
1947 if (ParseFunctionType(Result))
1948 return true;
1949 break;
1950 }
1951 }
1952}
1953
1954/// ParseParameterList
1955/// ::= '(' ')'
1956/// ::= '(' Arg (',' Arg)* ')'
1957/// Arg
1958/// ::= Type OptionalAttributes Value OptionalAttributes
1959bool LLParser::ParseParameterList(SmallVectorImpl<ParamInfo> &ArgList,
Reid Kleckner83498642014-08-26 00:33:28 +00001960 PerFunctionState &PFS, bool IsMustTailCall,
1961 bool InVarArgsFunc) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00001962 if (ParseToken(lltok::lparen, "expected '(' in call"))
1963 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001964
Bill Wendlingfe0021a2013-01-31 00:29:54 +00001965 unsigned AttrIndex = 1;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001966 while (Lex.getKind() != lltok::rparen) {
1967 // If this isn't the first argument, we need a comma.
1968 if (!ArgList.empty() &&
1969 ParseToken(lltok::comma, "expected ',' in argument list"))
1970 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001971
Reid Kleckner83498642014-08-26 00:33:28 +00001972 // Parse an ellipsis if this is a musttail call in a variadic function.
1973 if (Lex.getKind() == lltok::dotdotdot) {
1974 const char *Msg = "unexpected ellipsis in argument list for ";
1975 if (!IsMustTailCall)
1976 return TokError(Twine(Msg) + "non-musttail call");
1977 if (!InVarArgsFunc)
1978 return TokError(Twine(Msg) + "musttail call in non-varargs function");
1979 Lex.Lex(); // Lex the '...', it is purely for readability.
1980 return ParseToken(lltok::rparen, "expected ')' at end of argument list");
1981 }
1982
Chris Lattnerac161bf2009-01-02 07:01:27 +00001983 // Parse the argument.
1984 LocTy ArgLoc;
Craig Topper2617dcc2014-04-15 06:32:26 +00001985 Type *ArgTy = nullptr;
Bill Wendling50d27842012-10-15 20:35:56 +00001986 AttrBuilder ArgAttrs;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001987 Value *V;
Victor Hernandezfa232232009-12-03 23:40:58 +00001988 if (ParseType(ArgTy, ArgLoc))
Chris Lattnerac161bf2009-01-02 07:01:27 +00001989 return true;
Victor Hernandezfa232232009-12-03 23:40:58 +00001990
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00001991 if (ArgTy->isMetadataTy()) {
1992 if (ParseMetadataAsValue(V, PFS))
1993 return true;
1994 } else {
1995 // Otherwise, handle normal operands.
1996 if (ParseOptionalParamAttrs(ArgAttrs) || ParseValue(ArgTy, V, PFS))
1997 return true;
1998 }
Bill Wendlingfe0021a2013-01-31 00:29:54 +00001999 ArgList.push_back(ParamInfo(ArgLoc, V, AttributeSet::get(V->getContext(),
2000 AttrIndex++,
2001 ArgAttrs)));
Chris Lattnerac161bf2009-01-02 07:01:27 +00002002 }
2003
Reid Kleckner83498642014-08-26 00:33:28 +00002004 if (IsMustTailCall && InVarArgsFunc)
2005 return TokError("expected '...' at end of argument list for musttail call "
2006 "in varargs function");
2007
Chris Lattnerac161bf2009-01-02 07:01:27 +00002008 Lex.Lex(); // Lex the ')'.
2009 return false;
2010}
2011
Sanjoy Dasb513a9f2015-09-24 23:34:52 +00002012/// ParseOptionalOperandBundles
2013/// ::= /*empty*/
2014/// ::= '[' OperandBundle [, OperandBundle ]* ']'
2015///
2016/// OperandBundle
2017/// ::= bundle-tag '(' ')'
2018/// ::= bundle-tag '(' Type Value [, Type Value ]* ')'
2019///
2020/// bundle-tag ::= String Constant
2021bool LLParser::ParseOptionalOperandBundles(
2022 SmallVectorImpl<OperandBundleDef> &BundleList, PerFunctionState &PFS) {
2023 LocTy BeginLoc = Lex.getLoc();
2024 if (!EatIfPresent(lltok::lsquare))
2025 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002026
Sanjoy Dasb513a9f2015-09-24 23:34:52 +00002027 while (Lex.getKind() != lltok::rsquare) {
2028 // If this isn't the first operand bundle, we need a comma.
2029 if (!BundleList.empty() &&
2030 ParseToken(lltok::comma, "expected ',' in input list"))
2031 return true;
2032
2033 std::string Tag;
2034 if (ParseStringConstant(Tag))
2035 return true;
2036
Sanjoy Dasb513a9f2015-09-24 23:34:52 +00002037 if (ParseToken(lltok::lparen, "expected '(' in operand bundle"))
2038 return true;
2039
Sanjoy Dasf79d3442015-11-18 08:30:07 +00002040 std::vector<Value *> Inputs;
Sanjoy Dasb513a9f2015-09-24 23:34:52 +00002041 while (Lex.getKind() != lltok::rparen) {
2042 // If this isn't the first input, we need a comma.
Sanjoy Dasf79d3442015-11-18 08:30:07 +00002043 if (!Inputs.empty() &&
Sanjoy Dasb513a9f2015-09-24 23:34:52 +00002044 ParseToken(lltok::comma, "expected ',' in input list"))
2045 return true;
2046
2047 Type *Ty = nullptr;
2048 Value *Input = nullptr;
2049 if (ParseType(Ty) || ParseValue(Ty, Input, PFS))
2050 return true;
Sanjoy Dasf79d3442015-11-18 08:30:07 +00002051 Inputs.push_back(Input);
Sanjoy Dasb513a9f2015-09-24 23:34:52 +00002052 }
2053
Sanjoy Dasf79d3442015-11-18 08:30:07 +00002054 BundleList.emplace_back(std::move(Tag), std::move(Inputs));
2055
Sanjoy Dasb513a9f2015-09-24 23:34:52 +00002056 Lex.Lex(); // Lex the ')'.
2057 }
2058
2059 if (BundleList.empty())
2060 return Error(BeginLoc, "operand bundle set must not be empty");
2061
2062 Lex.Lex(); // Lex the ']'.
2063 return false;
2064}
Chris Lattnerac161bf2009-01-02 07:01:27 +00002065
Chris Lattner2ed06b42009-01-05 18:34:07 +00002066/// ParseArgumentList - Parse the argument list for a function type or function
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002067/// prototype.
Chris Lattnerac161bf2009-01-02 07:01:27 +00002068/// ::= '(' ArgTypeListI ')'
2069/// ArgTypeListI
2070/// ::= /*empty*/
2071/// ::= '...'
2072/// ::= ArgTypeList ',' '...'
2073/// ::= ArgType (',' ArgType)*
Chris Lattner2ed06b42009-01-05 18:34:07 +00002074///
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002075bool LLParser::ParseArgumentList(SmallVectorImpl<ArgInfo> &ArgList,
2076 bool &isVarArg){
Chris Lattnerac161bf2009-01-02 07:01:27 +00002077 isVarArg = false;
2078 assert(Lex.getKind() == lltok::lparen);
2079 Lex.Lex(); // eat the (.
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002080
Chris Lattnerac161bf2009-01-02 07:01:27 +00002081 if (Lex.getKind() == lltok::rparen) {
2082 // empty
2083 } else if (Lex.getKind() == lltok::dotdotdot) {
2084 isVarArg = true;
2085 Lex.Lex();
2086 } else {
2087 LocTy TypeLoc = Lex.getLoc();
Craig Topper2617dcc2014-04-15 06:32:26 +00002088 Type *ArgTy = nullptr;
Bill Wendling50d27842012-10-15 20:35:56 +00002089 AttrBuilder Attrs;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002090 std::string Name;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002091
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002092 if (ParseType(ArgTy) ||
Bill Wendling34c2eb22012-12-04 23:40:58 +00002093 ParseOptionalParamAttrs(Attrs)) return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002094
Chris Lattnerfdd87902009-10-05 05:54:46 +00002095 if (ArgTy->isVoidTy())
Chris Lattnerf880ca22009-03-09 04:49:14 +00002096 return Error(TypeLoc, "argument can not have void type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002097
Chris Lattnerdef19492011-06-17 06:36:20 +00002098 if (Lex.getKind() == lltok::LocalVar) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002099 Name = Lex.getStrVal();
2100 Lex.Lex();
2101 }
Chris Lattner3822f632009-01-02 08:05:26 +00002102
Nick Lewycky0aa6a742009-06-07 07:26:46 +00002103 if (!FunctionType::isValidArgumentType(ArgTy))
Chris Lattner3822f632009-01-02 08:05:26 +00002104 return Error(TypeLoc, "invalid type for function argument");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002105
Bill Wendlingfe0021a2013-01-31 00:29:54 +00002106 unsigned AttrIndex = 1;
Benjamin Kramerf5e2fc42015-05-29 19:43:39 +00002107 ArgList.emplace_back(TypeLoc, ArgTy, AttributeSet::get(ArgTy->getContext(),
2108 AttrIndex++, Attrs),
2109 std::move(Name));
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002110
Chris Lattner3822f632009-01-02 08:05:26 +00002111 while (EatIfPresent(lltok::comma)) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002112 // Handle ... at end of arg list.
Chris Lattner3822f632009-01-02 08:05:26 +00002113 if (EatIfPresent(lltok::dotdotdot)) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002114 isVarArg = true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002115 break;
2116 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002117
Chris Lattnerac161bf2009-01-02 07:01:27 +00002118 // Otherwise must be an argument type.
2119 TypeLoc = Lex.getLoc();
Bill Wendling34c2eb22012-12-04 23:40:58 +00002120 if (ParseType(ArgTy) || ParseOptionalParamAttrs(Attrs)) return true;
Chris Lattner3822f632009-01-02 08:05:26 +00002121
Chris Lattnerfdd87902009-10-05 05:54:46 +00002122 if (ArgTy->isVoidTy())
Chris Lattnerf880ca22009-03-09 04:49:14 +00002123 return Error(TypeLoc, "argument can not have void type");
2124
Chris Lattnerdef19492011-06-17 06:36:20 +00002125 if (Lex.getKind() == lltok::LocalVar) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002126 Name = Lex.getStrVal();
2127 Lex.Lex();
2128 } else {
2129 Name = "";
2130 }
Chris Lattner3822f632009-01-02 08:05:26 +00002131
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002132 if (!ArgTy->isFirstClassType())
Chris Lattner3822f632009-01-02 08:05:26 +00002133 return Error(TypeLoc, "invalid type for function argument");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002134
Benjamin Kramerf5e2fc42015-05-29 19:43:39 +00002135 ArgList.emplace_back(
2136 TypeLoc, ArgTy,
2137 AttributeSet::get(ArgTy->getContext(), AttrIndex++, Attrs),
2138 std::move(Name));
Chris Lattnerac161bf2009-01-02 07:01:27 +00002139 }
2140 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002141
Chris Lattner3822f632009-01-02 08:05:26 +00002142 return ParseToken(lltok::rparen, "expected ')' at end of argument list");
Chris Lattnerac161bf2009-01-02 07:01:27 +00002143}
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002144
Chris Lattnerac161bf2009-01-02 07:01:27 +00002145/// ParseFunctionType
2146/// ::= Type ArgumentList OptionalAttrs
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002147bool LLParser::ParseFunctionType(Type *&Result) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002148 assert(Lex.getKind() == lltok::lparen);
2149
Chris Lattnerce473c72009-01-05 08:04:33 +00002150 if (!FunctionType::isValidReturnType(Result))
2151 return TokError("invalid function return type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002152
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002153 SmallVector<ArgInfo, 8> ArgList;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002154 bool isVarArg;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002155 if (ParseArgumentList(ArgList, isVarArg))
Chris Lattnerac161bf2009-01-02 07:01:27 +00002156 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002157
Chris Lattnerac161bf2009-01-02 07:01:27 +00002158 // Reject names on the arguments lists.
2159 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
2160 if (!ArgList[i].Name.empty())
2161 return Error(ArgList[i].Loc, "argument name invalid in function type");
Bill Wendlingfe0021a2013-01-31 00:29:54 +00002162 if (ArgList[i].Attrs.hasAttributes(i + 1))
Chris Lattner6bc5c892011-06-17 17:37:13 +00002163 return Error(ArgList[i].Loc,
2164 "argument attributes invalid in function type");
Chris Lattnerac161bf2009-01-02 07:01:27 +00002165 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002166
Jay Foadb804a2b2011-07-12 14:06:48 +00002167 SmallVector<Type*, 16> ArgListTy;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002168 for (unsigned i = 0, e = ArgList.size(); i != e; ++i)
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002169 ArgListTy.push_back(ArgList[i].Ty);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002170
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002171 Result = FunctionType::get(Result, ArgListTy, isVarArg);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002172 return false;
2173}
2174
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002175/// ParseAnonStructType - Parse an anonymous struct type, which is inlined into
2176/// other structs.
2177bool LLParser::ParseAnonStructType(Type *&Result, bool Packed) {
2178 SmallVector<Type*, 8> Elts;
2179 if (ParseStructBody(Elts)) return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002180
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002181 Result = StructType::get(Context, Elts, Packed);
2182 return false;
2183}
2184
2185/// ParseStructDefinition - Parse a struct in a 'type' definition.
2186bool LLParser::ParseStructDefinition(SMLoc TypeLoc, StringRef Name,
2187 std::pair<Type*, LocTy> &Entry,
2188 Type *&ResultTy) {
2189 // If the type was already defined, diagnose the redefinition.
2190 if (Entry.first && !Entry.second.isValid())
2191 return Error(TypeLoc, "redefinition of type");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002192
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002193 // If we have opaque, just return without filling in the definition for the
2194 // struct. This counts as a definition as far as the .ll file goes.
2195 if (EatIfPresent(lltok::kw_opaque)) {
2196 // This type is being defined, so clear the location to indicate this.
2197 Entry.second = SMLoc();
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002198
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002199 // If this type number has never been uttered, create it.
Craig Topper2617dcc2014-04-15 06:32:26 +00002200 if (!Entry.first)
Chris Lattner335d3992011-08-12 18:06:37 +00002201 Entry.first = StructType::create(Context, Name);
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002202 ResultTy = Entry.first;
2203 return false;
2204 }
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002205
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002206 // If the type starts with '<', then it is either a packed struct or a vector.
2207 bool isPacked = EatIfPresent(lltok::less);
2208
2209 // If we don't have a struct, then we have a random type alias, which we
2210 // accept for compatibility with old files. These types are not allowed to be
2211 // forward referenced and not allowed to be recursive.
2212 if (Lex.getKind() != lltok::lbrace) {
2213 if (Entry.first)
2214 return Error(TypeLoc, "forward references to non-struct type");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002215
Craig Topper2617dcc2014-04-15 06:32:26 +00002216 ResultTy = nullptr;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002217 if (isPacked)
2218 return ParseArrayVectorType(ResultTy, true);
2219 return ParseType(ResultTy);
2220 }
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002221
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002222 // This type is being defined, so clear the location to indicate this.
2223 Entry.second = SMLoc();
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002224
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002225 // If this type number has never been uttered, create it.
Craig Topper2617dcc2014-04-15 06:32:26 +00002226 if (!Entry.first)
Chris Lattner335d3992011-08-12 18:06:37 +00002227 Entry.first = StructType::create(Context, Name);
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002228
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002229 StructType *STy = cast<StructType>(Entry.first);
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002230
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002231 SmallVector<Type*, 8> Body;
2232 if (ParseStructBody(Body) ||
2233 (isPacked && ParseToken(lltok::greater, "expected '>' in packed struct")))
2234 return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002235
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002236 STy->setBody(Body, isPacked);
2237 ResultTy = STy;
2238 return false;
2239}
2240
2241
Chris Lattnerac161bf2009-01-02 07:01:27 +00002242/// ParseStructType: Handles packed and unpacked types. </> parsed elsewhere.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002243/// StructType
Chris Lattnerac161bf2009-01-02 07:01:27 +00002244/// ::= '{' '}'
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002245/// ::= '{' Type (',' Type)* '}'
Chris Lattnerac161bf2009-01-02 07:01:27 +00002246/// ::= '<' '{' '}' '>'
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002247/// ::= '<' '{' Type (',' Type)* '}' '>'
2248bool LLParser::ParseStructBody(SmallVectorImpl<Type*> &Body) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002249 assert(Lex.getKind() == lltok::lbrace);
2250 Lex.Lex(); // Consume the '{'
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002251
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002252 // Handle the empty struct.
2253 if (EatIfPresent(lltok::rbrace))
Chris Lattnerac161bf2009-01-02 07:01:27 +00002254 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002255
Chris Lattnerf880ca22009-03-09 04:49:14 +00002256 LocTy EltTyLoc = Lex.getLoc();
Craig Topper2617dcc2014-04-15 06:32:26 +00002257 Type *Ty = nullptr;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002258 if (ParseType(Ty)) return true;
2259 Body.push_back(Ty);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002260
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002261 if (!StructType::isValidElementType(Ty))
Nick Lewycky0aa6a742009-06-07 07:26:46 +00002262 return Error(EltTyLoc, "invalid element type for struct");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002263
Chris Lattner3822f632009-01-02 08:05:26 +00002264 while (EatIfPresent(lltok::comma)) {
Chris Lattnerf880ca22009-03-09 04:49:14 +00002265 EltTyLoc = Lex.getLoc();
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002266 if (ParseType(Ty)) return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002267
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002268 if (!StructType::isValidElementType(Ty))
Nick Lewycky0aa6a742009-06-07 07:26:46 +00002269 return Error(EltTyLoc, "invalid element type for struct");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002270
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002271 Body.push_back(Ty);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002272 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002273
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002274 return ParseToken(lltok::rbrace, "expected '}' at end of struct");
Chris Lattnerac161bf2009-01-02 07:01:27 +00002275}
2276
2277/// ParseArrayVectorType - Parse an array or vector type, assuming the first
2278/// token has already been consumed.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002279/// Type
Chris Lattnerac161bf2009-01-02 07:01:27 +00002280/// ::= '[' APSINTVAL 'x' Types ']'
2281/// ::= '<' APSINTVAL 'x' Types '>'
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002282bool LLParser::ParseArrayVectorType(Type *&Result, bool isVector) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002283 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned() ||
2284 Lex.getAPSIntVal().getBitWidth() > 64)
2285 return TokError("expected number in address space");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002286
Chris Lattnerac161bf2009-01-02 07:01:27 +00002287 LocTy SizeLoc = Lex.getLoc();
2288 uint64_t Size = Lex.getAPSIntVal().getZExtValue();
Chris Lattner3822f632009-01-02 08:05:26 +00002289 Lex.Lex();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002290
Chris Lattner3822f632009-01-02 08:05:26 +00002291 if (ParseToken(lltok::kw_x, "expected 'x' after element count"))
2292 return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002293
2294 LocTy TypeLoc = Lex.getLoc();
Craig Topper2617dcc2014-04-15 06:32:26 +00002295 Type *EltTy = nullptr;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002296 if (ParseType(EltTy)) return true;
Chris Lattnerf880ca22009-03-09 04:49:14 +00002297
Chris Lattner3822f632009-01-02 08:05:26 +00002298 if (ParseToken(isVector ? lltok::greater : lltok::rsquare,
2299 "expected end of sequential type"))
2300 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002301
Chris Lattnerac161bf2009-01-02 07:01:27 +00002302 if (isVector) {
Chris Lattnerbb1fe8a2009-02-28 18:12:41 +00002303 if (Size == 0)
2304 return Error(SizeLoc, "zero element vector is illegal");
Chris Lattnerac161bf2009-01-02 07:01:27 +00002305 if ((unsigned)Size != Size)
2306 return Error(SizeLoc, "size too large for vector");
Nick Lewycky0aa6a742009-06-07 07:26:46 +00002307 if (!VectorType::isValidElementType(EltTy))
Duncan Sandse6beec62012-11-13 12:59:33 +00002308 return Error(TypeLoc, "invalid vector element type");
Owen Anderson4056ca92009-07-29 22:17:13 +00002309 Result = VectorType::get(EltTy, unsigned(Size));
Chris Lattnerac161bf2009-01-02 07:01:27 +00002310 } else {
Nick Lewycky0aa6a742009-06-07 07:26:46 +00002311 if (!ArrayType::isValidElementType(EltTy))
Chris Lattnerac161bf2009-01-02 07:01:27 +00002312 return Error(TypeLoc, "invalid array element type");
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002313 Result = ArrayType::get(EltTy, Size);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002314 }
2315 return false;
2316}
2317
2318//===----------------------------------------------------------------------===//
2319// Function Semantic Analysis.
2320//===----------------------------------------------------------------------===//
2321
Chris Lattner3432c622009-10-28 03:39:23 +00002322LLParser::PerFunctionState::PerFunctionState(LLParser &p, Function &f,
2323 int functionNumber)
2324 : P(p), F(f), FunctionNumber(functionNumber) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002325
2326 // Insert unnamed arguments into the NumberedVals list.
Duncan P. N. Exon Smithac331fb2015-10-20 01:12:49 +00002327 for (Argument &A : F.args())
2328 if (!A.hasName())
2329 NumberedVals.push_back(&A);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002330}
2331
2332LLParser::PerFunctionState::~PerFunctionState() {
2333 // If there were any forward referenced non-basicblock values, delete them.
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002334
David Blaikie9ebdc692015-09-21 21:07:50 +00002335 for (const auto &P : ForwardRefVals) {
2336 if (isa<BasicBlock>(P.second.first))
2337 continue;
2338 P.second.first->replaceAllUsesWith(
2339 UndefValue::get(P.second.first->getType()));
2340 delete P.second.first;
2341 }
2342
2343 for (const auto &P : ForwardRefValIDs) {
2344 if (isa<BasicBlock>(P.second.first))
2345 continue;
2346 P.second.first->replaceAllUsesWith(
2347 UndefValue::get(P.second.first->getType()));
2348 delete P.second.first;
2349 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00002350}
2351
Chris Lattner3432c622009-10-28 03:39:23 +00002352bool LLParser::PerFunctionState::FinishFunction() {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002353 if (!ForwardRefVals.empty())
2354 return P.Error(ForwardRefVals.begin()->second.second,
2355 "use of undefined value '%" + ForwardRefVals.begin()->first +
2356 "'");
2357 if (!ForwardRefValIDs.empty())
2358 return P.Error(ForwardRefValIDs.begin()->second.second,
2359 "use of undefined value '%" +
Benjamin Kramerc7583112010-09-27 17:42:11 +00002360 Twine(ForwardRefValIDs.begin()->first) + "'");
Chris Lattnerac161bf2009-01-02 07:01:27 +00002361 return false;
2362}
2363
2364
2365/// GetVal - Get a value with the specified name or ID, creating a
2366/// forward reference record if needed. This can return null if the value
2367/// exists but does not have the right type.
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00002368Value *LLParser::PerFunctionState::GetVal(const std::string &Name, Type *Ty,
David Majnemer8a1c45d2015-12-12 05:38:55 +00002369 LocTy Loc) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002370 // Look this name up in the normal function symbol table.
2371 Value *Val = F.getValueSymbolTable().lookup(Name);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002372
Chris Lattnerac161bf2009-01-02 07:01:27 +00002373 // If this is a forward reference for the value, see if we already created a
2374 // forward ref record.
Craig Topper2617dcc2014-04-15 06:32:26 +00002375 if (!Val) {
David Blaikie9ebdc692015-09-21 21:07:50 +00002376 auto I = ForwardRefVals.find(Name);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002377 if (I != ForwardRefVals.end())
2378 Val = I->second.first;
2379 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002380
Chris Lattnerac161bf2009-01-02 07:01:27 +00002381 // If we have the value in the symbol table or fwd-ref table, return it.
2382 if (Val) {
2383 if (Val->getType() == Ty) return Val;
Chris Lattnerfdd87902009-10-05 05:54:46 +00002384 if (Ty->isLabelTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00002385 P.Error(Loc, "'%" + Name + "' is not a basic block");
2386 else
2387 P.Error(Loc, "'%" + Name + "' defined with type '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00002388 getTypeString(Val->getType()) + "'");
Craig Topper2617dcc2014-04-15 06:32:26 +00002389 return nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002390 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002391
Chris Lattnerac161bf2009-01-02 07:01:27 +00002392 // Don't make placeholders with invalid type.
Duncan P. N. Exon Smith6a6e9cb2014-08-05 18:22:58 +00002393 if (!Ty->isFirstClassType()) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002394 P.Error(Loc, "invalid use of a non-first-class type");
Craig Topper2617dcc2014-04-15 06:32:26 +00002395 return nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002396 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002397
Chris Lattnerac161bf2009-01-02 07:01:27 +00002398 // Otherwise, create a new forward reference for this value and remember it.
2399 Value *FwdVal;
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00002400 if (Ty->isLabelTy()) {
Owen Anderson55f1c092009-08-13 21:58:54 +00002401 FwdVal = BasicBlock::Create(F.getContext(), Name, &F);
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00002402 } else {
David Majnemer8a1c45d2015-12-12 05:38:55 +00002403 FwdVal = new Argument(Ty, Name);
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00002404 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002405
Chris Lattnerac161bf2009-01-02 07:01:27 +00002406 ForwardRefVals[Name] = std::make_pair(FwdVal, Loc);
2407 return FwdVal;
2408}
2409
David Majnemer8a1c45d2015-12-12 05:38:55 +00002410Value *LLParser::PerFunctionState::GetVal(unsigned ID, Type *Ty, LocTy Loc) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002411 // Look this name up in the normal function symbol table.
Craig Topper2617dcc2014-04-15 06:32:26 +00002412 Value *Val = ID < NumberedVals.size() ? NumberedVals[ID] : nullptr;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002413
Chris Lattnerac161bf2009-01-02 07:01:27 +00002414 // If this is a forward reference for the value, see if we already created a
2415 // forward ref record.
Craig Topper2617dcc2014-04-15 06:32:26 +00002416 if (!Val) {
David Blaikie9ebdc692015-09-21 21:07:50 +00002417 auto I = ForwardRefValIDs.find(ID);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002418 if (I != ForwardRefValIDs.end())
2419 Val = I->second.first;
2420 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002421
Chris Lattnerac161bf2009-01-02 07:01:27 +00002422 // If we have the value in the symbol table or fwd-ref table, return it.
2423 if (Val) {
2424 if (Val->getType() == Ty) return Val;
Chris Lattnerfdd87902009-10-05 05:54:46 +00002425 if (Ty->isLabelTy())
Benjamin Kramerc7583112010-09-27 17:42:11 +00002426 P.Error(Loc, "'%" + Twine(ID) + "' is not a basic block");
Chris Lattnerac161bf2009-01-02 07:01:27 +00002427 else
Benjamin Kramerc7583112010-09-27 17:42:11 +00002428 P.Error(Loc, "'%" + Twine(ID) + "' defined with type '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00002429 getTypeString(Val->getType()) + "'");
Craig Topper2617dcc2014-04-15 06:32:26 +00002430 return nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002431 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002432
Duncan P. N. Exon Smith6a6e9cb2014-08-05 18:22:58 +00002433 if (!Ty->isFirstClassType()) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002434 P.Error(Loc, "invalid use of a non-first-class type");
Craig Topper2617dcc2014-04-15 06:32:26 +00002435 return nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002436 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002437
Chris Lattnerac161bf2009-01-02 07:01:27 +00002438 // Otherwise, create a new forward reference for this value and remember it.
2439 Value *FwdVal;
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00002440 if (Ty->isLabelTy()) {
Owen Anderson55f1c092009-08-13 21:58:54 +00002441 FwdVal = BasicBlock::Create(F.getContext(), "", &F);
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00002442 } else {
David Majnemer8a1c45d2015-12-12 05:38:55 +00002443 FwdVal = new Argument(Ty);
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00002444 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002445
Chris Lattnerac161bf2009-01-02 07:01:27 +00002446 ForwardRefValIDs[ID] = std::make_pair(FwdVal, Loc);
2447 return FwdVal;
2448}
2449
2450/// SetInstName - After an instruction is parsed and inserted into its
2451/// basic block, this installs its name.
2452bool LLParser::PerFunctionState::SetInstName(int NameID,
2453 const std::string &NameStr,
2454 LocTy NameLoc, Instruction *Inst) {
2455 // If this instruction has void type, it cannot have a name or ID specified.
Chris Lattnerfdd87902009-10-05 05:54:46 +00002456 if (Inst->getType()->isVoidTy()) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002457 if (NameID != -1 || !NameStr.empty())
2458 return P.Error(NameLoc, "instructions returning void cannot have a name");
2459 return false;
2460 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002461
Chris Lattnerac161bf2009-01-02 07:01:27 +00002462 // If this was a numbered instruction, verify that the instruction is the
2463 // expected value and resolve any forward references.
2464 if (NameStr.empty()) {
2465 // If neither a name nor an ID was specified, just use the next ID.
2466 if (NameID == -1)
2467 NameID = NumberedVals.size();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002468
Chris Lattnerac161bf2009-01-02 07:01:27 +00002469 if (unsigned(NameID) != NumberedVals.size())
2470 return P.Error(NameLoc, "instruction expected to be numbered '%" +
Benjamin Kramerc7583112010-09-27 17:42:11 +00002471 Twine(NumberedVals.size()) + "'");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002472
David Blaikie9ebdc692015-09-21 21:07:50 +00002473 auto FI = ForwardRefValIDs.find(NameID);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002474 if (FI != ForwardRefValIDs.end()) {
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00002475 Value *Sentinel = FI->second.first;
2476 if (Sentinel->getType() != Inst->getType())
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002477 return P.Error(NameLoc, "instruction forward referenced with type '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00002478 getTypeString(FI->second.first->getType()) + "'");
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00002479
2480 Sentinel->replaceAllUsesWith(Inst);
2481 delete Sentinel;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002482 ForwardRefValIDs.erase(FI);
2483 }
2484
2485 NumberedVals.push_back(Inst);
2486 return false;
2487 }
2488
2489 // Otherwise, the instruction had a name. Resolve forward refs and set it.
David Blaikie9ebdc692015-09-21 21:07:50 +00002490 auto FI = ForwardRefVals.find(NameStr);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002491 if (FI != ForwardRefVals.end()) {
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00002492 Value *Sentinel = FI->second.first;
2493 if (Sentinel->getType() != Inst->getType())
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002494 return P.Error(NameLoc, "instruction forward referenced with type '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00002495 getTypeString(FI->second.first->getType()) + "'");
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00002496
2497 Sentinel->replaceAllUsesWith(Inst);
2498 delete Sentinel;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002499 ForwardRefVals.erase(FI);
2500 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002501
Chris Lattnerac161bf2009-01-02 07:01:27 +00002502 // Set the name on the instruction.
2503 Inst->setName(NameStr);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002504
Benjamin Kramer1dc34b42010-10-16 11:28:23 +00002505 if (Inst->getName() != NameStr)
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002506 return P.Error(NameLoc, "multiple definition of local value named '" +
Chris Lattnerac161bf2009-01-02 07:01:27 +00002507 NameStr + "'");
2508 return false;
2509}
2510
2511/// GetBB - Get a basic block with the specified name or ID, creating a
2512/// forward reference record if needed.
2513BasicBlock *LLParser::PerFunctionState::GetBB(const std::string &Name,
2514 LocTy Loc) {
Owen Anderson576a9a22015-03-02 05:25:09 +00002515 return dyn_cast_or_null<BasicBlock>(GetVal(Name,
2516 Type::getLabelTy(F.getContext()), Loc));
Chris Lattnerac161bf2009-01-02 07:01:27 +00002517}
2518
2519BasicBlock *LLParser::PerFunctionState::GetBB(unsigned ID, LocTy Loc) {
Owen Anderson576a9a22015-03-02 05:25:09 +00002520 return dyn_cast_or_null<BasicBlock>(GetVal(ID,
2521 Type::getLabelTy(F.getContext()), Loc));
Chris Lattnerac161bf2009-01-02 07:01:27 +00002522}
2523
2524/// DefineBB - Define the specified basic block, which is either named or
2525/// unnamed. If there is an error, this returns null otherwise it returns
2526/// the block being defined.
2527BasicBlock *LLParser::PerFunctionState::DefineBB(const std::string &Name,
2528 LocTy Loc) {
2529 BasicBlock *BB;
2530 if (Name.empty())
2531 BB = GetBB(NumberedVals.size(), Loc);
2532 else
2533 BB = GetBB(Name, Loc);
Craig Topper2617dcc2014-04-15 06:32:26 +00002534 if (!BB) return nullptr; // Already diagnosed error.
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002535
Chris Lattnerac161bf2009-01-02 07:01:27 +00002536 // Move the block to the end of the function. Forward ref'd blocks are
2537 // inserted wherever they happen to be referenced.
2538 F.getBasicBlockList().splice(F.end(), F.getBasicBlockList(), BB);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002539
Chris Lattnerac161bf2009-01-02 07:01:27 +00002540 // Remove the block from forward ref sets.
2541 if (Name.empty()) {
2542 ForwardRefValIDs.erase(NumberedVals.size());
2543 NumberedVals.push_back(BB);
2544 } else {
2545 // BB forward references are already in the function symbol table.
2546 ForwardRefVals.erase(Name);
2547 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002548
Chris Lattnerac161bf2009-01-02 07:01:27 +00002549 return BB;
2550}
2551
2552//===----------------------------------------------------------------------===//
2553// Constants.
2554//===----------------------------------------------------------------------===//
2555
2556/// ParseValID - Parse an abstract value that doesn't necessarily have a
2557/// type implied. For example, if we parse "4" we don't know what integer type
2558/// it has. The value will later be combined with its type and checked for
Victor Hernandezb8fd1522010-01-10 07:14:18 +00002559/// sanity. PFS is used to convert function-local operands of metadata (since
2560/// metadata operands are not just parsed here but also converted to values).
2561/// PFS can be null when we are not parsing metadata values inside a function.
Victor Hernandezdc6e65a2010-01-05 22:22:14 +00002562bool LLParser::ParseValID(ValID &ID, PerFunctionState *PFS) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002563 ID.Loc = Lex.getLoc();
2564 switch (Lex.getKind()) {
2565 default: return TokError("expected value token");
2566 case lltok::GlobalID: // @42
2567 ID.UIntVal = Lex.getUIntVal();
2568 ID.Kind = ValID::t_GlobalID;
2569 break;
2570 case lltok::GlobalVar: // @foo
2571 ID.StrVal = Lex.getStrVal();
2572 ID.Kind = ValID::t_GlobalName;
2573 break;
2574 case lltok::LocalVarID: // %42
2575 ID.UIntVal = Lex.getUIntVal();
2576 ID.Kind = ValID::t_LocalID;
2577 break;
2578 case lltok::LocalVar: // %foo
Chris Lattnerac161bf2009-01-02 07:01:27 +00002579 ID.StrVal = Lex.getStrVal();
2580 ID.Kind = ValID::t_LocalName;
2581 break;
2582 case lltok::APSInt:
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002583 ID.APSIntVal = Lex.getAPSIntVal();
Chris Lattnerac161bf2009-01-02 07:01:27 +00002584 ID.Kind = ValID::t_APSInt;
2585 break;
2586 case lltok::APFloat:
2587 ID.APFloatVal = Lex.getAPFloatVal();
2588 ID.Kind = ValID::t_APFloat;
2589 break;
2590 case lltok::kw_true:
Owen Anderson23a204d2009-07-31 17:39:07 +00002591 ID.ConstantVal = ConstantInt::getTrue(Context);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002592 ID.Kind = ValID::t_Constant;
2593 break;
2594 case lltok::kw_false:
Owen Anderson23a204d2009-07-31 17:39:07 +00002595 ID.ConstantVal = ConstantInt::getFalse(Context);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002596 ID.Kind = ValID::t_Constant;
2597 break;
2598 case lltok::kw_null: ID.Kind = ValID::t_Null; break;
2599 case lltok::kw_undef: ID.Kind = ValID::t_Undef; break;
2600 case lltok::kw_zeroinitializer: ID.Kind = ValID::t_Zero; break;
David Majnemerf0f224d2015-11-11 21:57:16 +00002601 case lltok::kw_none: ID.Kind = ValID::t_None; break;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002602
Chris Lattnerac161bf2009-01-02 07:01:27 +00002603 case lltok::lbrace: {
2604 // ValID ::= '{' ConstVector '}'
2605 Lex.Lex();
2606 SmallVector<Constant*, 16> Elts;
2607 if (ParseGlobalValueVector(Elts) ||
2608 ParseToken(lltok::rbrace, "expected end of struct constant"))
2609 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002610
David Blaikieadbda4b2015-08-03 20:08:41 +00002611 ID.ConstantStructElts = make_unique<Constant *[]>(Elts.size());
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002612 ID.UIntVal = Elts.size();
David Blaikieadbda4b2015-08-03 20:08:41 +00002613 memcpy(ID.ConstantStructElts.get(), Elts.data(),
2614 Elts.size() * sizeof(Elts[0]));
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002615 ID.Kind = ValID::t_ConstantStruct;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002616 return false;
2617 }
2618 case lltok::less: {
2619 // ValID ::= '<' ConstVector '>' --> Vector.
2620 // ValID ::= '<' '{' ConstVector '}' '>' --> Packed Struct.
2621 Lex.Lex();
Chris Lattner3822f632009-01-02 08:05:26 +00002622 bool isPackedStruct = EatIfPresent(lltok::lbrace);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002623
Chris Lattnerac161bf2009-01-02 07:01:27 +00002624 SmallVector<Constant*, 16> Elts;
2625 LocTy FirstEltLoc = Lex.getLoc();
2626 if (ParseGlobalValueVector(Elts) ||
2627 (isPackedStruct &&
2628 ParseToken(lltok::rbrace, "expected end of packed struct")) ||
2629 ParseToken(lltok::greater, "expected end of constant"))
2630 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002631
Chris Lattnerac161bf2009-01-02 07:01:27 +00002632 if (isPackedStruct) {
David Blaikieadbda4b2015-08-03 20:08:41 +00002633 ID.ConstantStructElts = make_unique<Constant *[]>(Elts.size());
2634 memcpy(ID.ConstantStructElts.get(), Elts.data(),
2635 Elts.size() * sizeof(Elts[0]));
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002636 ID.UIntVal = Elts.size();
2637 ID.Kind = ValID::t_PackedConstantStruct;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002638 return false;
2639 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002640
Chris Lattnerac161bf2009-01-02 07:01:27 +00002641 if (Elts.empty())
2642 return Error(ID.Loc, "constant vector must not be empty");
2643
Duncan Sands9dff9be2010-02-15 16:12:20 +00002644 if (!Elts[0]->getType()->isIntegerTy() &&
Nadav Rotem3924cb02011-12-05 06:29:09 +00002645 !Elts[0]->getType()->isFloatingPointTy() &&
2646 !Elts[0]->getType()->isPointerTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00002647 return Error(FirstEltLoc,
Nadav Rotem3924cb02011-12-05 06:29:09 +00002648 "vector elements must have integer, pointer or floating point type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002649
Chris Lattnerac161bf2009-01-02 07:01:27 +00002650 // Verify that all the vector elements have the same type.
2651 for (unsigned i = 1, e = Elts.size(); i != e; ++i)
2652 if (Elts[i]->getType() != Elts[0]->getType())
2653 return Error(FirstEltLoc,
Benjamin Kramerc7583112010-09-27 17:42:11 +00002654 "vector element #" + Twine(i) +
Chris Lattner0f214eb2011-06-18 21:18:23 +00002655 " is not of type '" + getTypeString(Elts[0]->getType()));
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002656
Chris Lattner69229312011-02-15 00:14:00 +00002657 ID.ConstantVal = ConstantVector::get(Elts);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002658 ID.Kind = ValID::t_Constant;
2659 return false;
2660 }
2661 case lltok::lsquare: { // Array Constant
2662 Lex.Lex();
2663 SmallVector<Constant*, 16> Elts;
2664 LocTy FirstEltLoc = Lex.getLoc();
2665 if (ParseGlobalValueVector(Elts) ||
2666 ParseToken(lltok::rsquare, "expected end of array constant"))
2667 return true;
2668
2669 // Handle empty element.
2670 if (Elts.empty()) {
2671 // Use undef instead of an array because it's inconvenient to determine
2672 // the element type at this point, there being no elements to examine.
Chris Lattner998fa0a2009-01-05 07:52:51 +00002673 ID.Kind = ValID::t_EmptyArray;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002674 return false;
2675 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002676
Chris Lattnerac161bf2009-01-02 07:01:27 +00002677 if (!Elts[0]->getType()->isFirstClassType())
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002678 return Error(FirstEltLoc, "invalid array element type: " +
Chris Lattner0f214eb2011-06-18 21:18:23 +00002679 getTypeString(Elts[0]->getType()));
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002680
Owen Anderson4056ca92009-07-29 22:17:13 +00002681 ArrayType *ATy = ArrayType::get(Elts[0]->getType(), Elts.size());
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002682
Chris Lattnerac161bf2009-01-02 07:01:27 +00002683 // Verify all elements are correct type!
Chris Lattner59d0e3b2009-01-02 08:49:06 +00002684 for (unsigned i = 0, e = Elts.size(); i != e; ++i) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002685 if (Elts[i]->getType() != Elts[0]->getType())
2686 return Error(FirstEltLoc,
Benjamin Kramerc7583112010-09-27 17:42:11 +00002687 "array element #" + Twine(i) +
Chris Lattner0f214eb2011-06-18 21:18:23 +00002688 " is not of type '" + getTypeString(Elts[0]->getType()));
Chris Lattnerac161bf2009-01-02 07:01:27 +00002689 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002690
Jay Foad83be3612011-06-22 09:24:39 +00002691 ID.ConstantVal = ConstantArray::get(ATy, Elts);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002692 ID.Kind = ValID::t_Constant;
2693 return false;
2694 }
2695 case lltok::kw_c: // c "foo"
2696 Lex.Lex();
Chris Lattnercf9e8f62012-02-05 02:29:43 +00002697 ID.ConstantVal = ConstantDataArray::getString(Context, Lex.getStrVal(),
2698 false);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002699 if (ParseToken(lltok::StringConstant, "expected string")) return true;
2700 ID.Kind = ValID::t_Constant;
2701 return false;
2702
2703 case lltok::kw_asm: {
Chad Rosier6f9c3852013-02-14 20:44:07 +00002704 // ValID ::= 'asm' SideEffect? AlignStack? IntelDialect? STRINGCONSTANT ','
2705 // STRINGCONSTANT
Chad Rosierd8c76102012-09-05 19:00:49 +00002706 bool HasSideEffect, AlignStack, AsmDialect;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002707 Lex.Lex();
2708 if (ParseOptionalToken(lltok::kw_sideeffect, HasSideEffect) ||
Dale Johannesen1cfb9582009-10-21 23:28:00 +00002709 ParseOptionalToken(lltok::kw_alignstack, AlignStack) ||
Chad Rosierd8c76102012-09-05 19:00:49 +00002710 ParseOptionalToken(lltok::kw_inteldialect, AsmDialect) ||
Chris Lattner3822f632009-01-02 08:05:26 +00002711 ParseStringConstant(ID.StrVal) ||
2712 ParseToken(lltok::comma, "expected comma in inline asm expression") ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00002713 ParseToken(lltok::StringConstant, "expected constraint string"))
2714 return true;
2715 ID.StrVal2 = Lex.getStrVal();
Chad Rosierf42fad62012-09-05 00:08:17 +00002716 ID.UIntVal = unsigned(HasSideEffect) | (unsigned(AlignStack)<<1) |
Chad Rosierd8c76102012-09-05 19:00:49 +00002717 (unsigned(AsmDialect)<<2);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002718 ID.Kind = ValID::t_InlineAsm;
2719 return false;
2720 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002721
Chris Lattner3432c622009-10-28 03:39:23 +00002722 case lltok::kw_blockaddress: {
2723 // ValID ::= 'blockaddress' '(' @foo ',' %bar ')'
2724 Lex.Lex();
2725
2726 ValID Fn, Label;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002727
Chris Lattner3432c622009-10-28 03:39:23 +00002728 if (ParseToken(lltok::lparen, "expected '(' in block address expression") ||
2729 ParseValID(Fn) ||
2730 ParseToken(lltok::comma, "expected comma in block address expression")||
2731 ParseValID(Label) ||
2732 ParseToken(lltok::rparen, "expected ')' in block address expression"))
2733 return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002734
Chris Lattner3432c622009-10-28 03:39:23 +00002735 if (Fn.Kind != ValID::t_GlobalID && Fn.Kind != ValID::t_GlobalName)
2736 return Error(Fn.Loc, "expected function name in blockaddress");
Chris Lattneraa99c942009-11-01 01:27:45 +00002737 if (Label.Kind != ValID::t_LocalID && Label.Kind != ValID::t_LocalName)
Chris Lattner3432c622009-10-28 03:39:23 +00002738 return Error(Label.Loc, "expected basic block name in blockaddress");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002739
Duncan P. N. Exon Smith17169902014-08-19 00:13:19 +00002740 // Try to find the function (but skip it if it's forward-referenced).
2741 GlobalValue *GV = nullptr;
2742 if (Fn.Kind == ValID::t_GlobalID) {
2743 if (Fn.UIntVal < NumberedVals.size())
2744 GV = NumberedVals[Fn.UIntVal];
2745 } else if (!ForwardRefVals.count(Fn.StrVal)) {
2746 GV = M->getNamedValue(Fn.StrVal);
2747 }
2748 Function *F = nullptr;
2749 if (GV) {
2750 // Confirm that it's actually a function with a definition.
2751 if (!isa<Function>(GV))
2752 return Error(Fn.Loc, "expected function name in blockaddress");
2753 F = cast<Function>(GV);
2754 if (F->isDeclaration())
2755 return Error(Fn.Loc, "cannot take blockaddress inside a declaration");
2756 }
2757
2758 if (!F) {
2759 // Make a global variable as a placeholder for this reference.
David Blaikieb9cc6592015-03-04 01:40:07 +00002760 GlobalValue *&FwdRef =
David Blaikie871b4112015-08-03 20:55:00 +00002761 ForwardRefBlockAddresses.insert(std::make_pair(
2762 std::move(Fn),
2763 std::map<ValID, GlobalValue *>()))
David Blaikieb9cc6592015-03-04 01:40:07 +00002764 .first->second.insert(std::make_pair(std::move(Label), nullptr))
2765 .first->second;
Duncan P. N. Exon Smith17169902014-08-19 00:13:19 +00002766 if (!FwdRef)
2767 FwdRef = new GlobalVariable(*M, Type::getInt8Ty(Context), false,
2768 GlobalValue::InternalLinkage, nullptr, "");
2769 ID.ConstantVal = FwdRef;
2770 ID.Kind = ValID::t_Constant;
2771 return false;
2772 }
2773
2774 // We found the function; now find the basic block. Don't use PFS, since we
2775 // might be inside a constant expression.
2776 BasicBlock *BB;
2777 if (BlockAddressPFS && F == &BlockAddressPFS->getFunction()) {
2778 if (Label.Kind == ValID::t_LocalID)
2779 BB = BlockAddressPFS->GetBB(Label.UIntVal, Label.Loc);
2780 else
2781 BB = BlockAddressPFS->GetBB(Label.StrVal, Label.Loc);
2782 if (!BB)
2783 return Error(Label.Loc, "referenced value is not a basic block");
2784 } else {
2785 if (Label.Kind == ValID::t_LocalID)
2786 return Error(Label.Loc, "cannot take address of numeric label after "
2787 "the function is defined");
2788 BB = dyn_cast_or_null<BasicBlock>(
2789 F->getValueSymbolTable().lookup(Label.StrVal));
2790 if (!BB)
2791 return Error(Label.Loc, "referenced value is not a basic block");
2792 }
2793
2794 ID.ConstantVal = BlockAddress::get(F, BB);
Chris Lattner3432c622009-10-28 03:39:23 +00002795 ID.Kind = ValID::t_Constant;
2796 return false;
2797 }
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002798
Chris Lattnerac161bf2009-01-02 07:01:27 +00002799 case lltok::kw_trunc:
2800 case lltok::kw_zext:
2801 case lltok::kw_sext:
2802 case lltok::kw_fptrunc:
2803 case lltok::kw_fpext:
2804 case lltok::kw_bitcast:
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002805 case lltok::kw_addrspacecast:
Chris Lattnerac161bf2009-01-02 07:01:27 +00002806 case lltok::kw_uitofp:
2807 case lltok::kw_sitofp:
2808 case lltok::kw_fptoui:
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002809 case lltok::kw_fptosi:
Chris Lattnerac161bf2009-01-02 07:01:27 +00002810 case lltok::kw_inttoptr:
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002811 case lltok::kw_ptrtoint: {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002812 unsigned Opc = Lex.getUIntVal();
Craig Topper2617dcc2014-04-15 06:32:26 +00002813 Type *DestTy = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002814 Constant *SrcVal;
2815 Lex.Lex();
2816 if (ParseToken(lltok::lparen, "expected '(' after constantexpr cast") ||
2817 ParseGlobalTypeAndValue(SrcVal) ||
Dan Gohman0b5d0422009-06-15 21:52:11 +00002818 ParseToken(lltok::kw_to, "expected 'to' in constantexpr cast") ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00002819 ParseType(DestTy) ||
2820 ParseToken(lltok::rparen, "expected ')' at end of constantexpr cast"))
2821 return true;
2822 if (!CastInst::castIsValid((Instruction::CastOps)Opc, SrcVal, DestTy))
2823 return Error(ID.Loc, "invalid cast opcode for cast from '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00002824 getTypeString(SrcVal->getType()) + "' to '" +
2825 getTypeString(DestTy) + "'");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002826 ID.ConstantVal = ConstantExpr::getCast((Instruction::CastOps)Opc,
Owen Anderson02a9da32009-07-01 23:57:11 +00002827 SrcVal, DestTy);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002828 ID.Kind = ValID::t_Constant;
2829 return false;
2830 }
2831 case lltok::kw_extractvalue: {
2832 Lex.Lex();
2833 Constant *Val;
2834 SmallVector<unsigned, 4> Indices;
2835 if (ParseToken(lltok::lparen, "expected '(' in extractvalue constantexpr")||
2836 ParseGlobalTypeAndValue(Val) ||
2837 ParseIndexList(Indices) ||
2838 ParseToken(lltok::rparen, "expected ')' in extractvalue constantexpr"))
2839 return true;
Devang Patel1cb51162009-11-03 19:06:07 +00002840
Chris Lattner392be582010-02-12 20:49:41 +00002841 if (!Val->getType()->isAggregateType())
2842 return Error(ID.Loc, "extractvalue operand must be aggregate type");
Jay Foad57aa6362011-07-13 10:26:04 +00002843 if (!ExtractValueInst::getIndexedType(Val->getType(), Indices))
Chris Lattnerac161bf2009-01-02 07:01:27 +00002844 return Error(ID.Loc, "invalid indices for extractvalue");
Jay Foad57aa6362011-07-13 10:26:04 +00002845 ID.ConstantVal = ConstantExpr::getExtractValue(Val, Indices);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002846 ID.Kind = ValID::t_Constant;
2847 return false;
2848 }
2849 case lltok::kw_insertvalue: {
2850 Lex.Lex();
2851 Constant *Val0, *Val1;
2852 SmallVector<unsigned, 4> Indices;
2853 if (ParseToken(lltok::lparen, "expected '(' in insertvalue constantexpr")||
2854 ParseGlobalTypeAndValue(Val0) ||
2855 ParseToken(lltok::comma, "expected comma in insertvalue constantexpr")||
2856 ParseGlobalTypeAndValue(Val1) ||
2857 ParseIndexList(Indices) ||
2858 ParseToken(lltok::rparen, "expected ')' in insertvalue constantexpr"))
2859 return true;
Chris Lattner392be582010-02-12 20:49:41 +00002860 if (!Val0->getType()->isAggregateType())
2861 return Error(ID.Loc, "insertvalue operand must be aggregate type");
David Majnemereba692d2015-02-23 07:13:52 +00002862 Type *IndexedType =
2863 ExtractValueInst::getIndexedType(Val0->getType(), Indices);
2864 if (!IndexedType)
Chris Lattnerac161bf2009-01-02 07:01:27 +00002865 return Error(ID.Loc, "invalid indices for insertvalue");
David Majnemereba692d2015-02-23 07:13:52 +00002866 if (IndexedType != Val1->getType())
2867 return Error(ID.Loc, "insertvalue operand and field disagree in type: '" +
2868 getTypeString(Val1->getType()) +
2869 "' instead of '" + getTypeString(IndexedType) +
2870 "'");
Jay Foad57aa6362011-07-13 10:26:04 +00002871 ID.ConstantVal = ConstantExpr::getInsertValue(Val0, Val1, Indices);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002872 ID.Kind = ValID::t_Constant;
2873 return false;
2874 }
2875 case lltok::kw_icmp:
Nick Lewyckya21d3da2009-07-08 03:04:38 +00002876 case lltok::kw_fcmp: {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002877 unsigned PredVal, Opc = Lex.getUIntVal();
2878 Constant *Val0, *Val1;
2879 Lex.Lex();
2880 if (ParseCmpPredicate(PredVal, Opc) ||
2881 ParseToken(lltok::lparen, "expected '(' in compare constantexpr") ||
2882 ParseGlobalTypeAndValue(Val0) ||
2883 ParseToken(lltok::comma, "expected comma in compare constantexpr") ||
2884 ParseGlobalTypeAndValue(Val1) ||
2885 ParseToken(lltok::rparen, "expected ')' in compare constantexpr"))
2886 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002887
Chris Lattnerac161bf2009-01-02 07:01:27 +00002888 if (Val0->getType() != Val1->getType())
2889 return Error(ID.Loc, "compare operands must have the same type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002890
Chris Lattnerac161bf2009-01-02 07:01:27 +00002891 CmpInst::Predicate Pred = (CmpInst::Predicate)PredVal;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002892
Chris Lattnerac161bf2009-01-02 07:01:27 +00002893 if (Opc == Instruction::FCmp) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00002894 if (!Val0->getType()->isFPOrFPVectorTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00002895 return Error(ID.Loc, "fcmp requires floating point operands");
Owen Anderson487375e2009-07-29 18:55:55 +00002896 ID.ConstantVal = ConstantExpr::getFCmp(Pred, Val0, Val1);
Nick Lewyckya21d3da2009-07-08 03:04:38 +00002897 } else {
2898 assert(Opc == Instruction::ICmp && "Unexpected opcode for CmpInst!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00002899 if (!Val0->getType()->isIntOrIntVectorTy() &&
Nadav Rotem3924cb02011-12-05 06:29:09 +00002900 !Val0->getType()->getScalarType()->isPointerTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00002901 return Error(ID.Loc, "icmp requires pointer or integer operands");
Owen Anderson487375e2009-07-29 18:55:55 +00002902 ID.ConstantVal = ConstantExpr::getICmp(Pred, Val0, Val1);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002903 }
2904 ID.Kind = ValID::t_Constant;
2905 return false;
2906 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002907
Chris Lattnerac161bf2009-01-02 07:01:27 +00002908 // Binary Operators.
2909 case lltok::kw_add:
Dan Gohmana5b96452009-06-04 22:49:04 +00002910 case lltok::kw_fadd:
Chris Lattnerac161bf2009-01-02 07:01:27 +00002911 case lltok::kw_sub:
Dan Gohmana5b96452009-06-04 22:49:04 +00002912 case lltok::kw_fsub:
Chris Lattnerac161bf2009-01-02 07:01:27 +00002913 case lltok::kw_mul:
Dan Gohmana5b96452009-06-04 22:49:04 +00002914 case lltok::kw_fmul:
Chris Lattnerac161bf2009-01-02 07:01:27 +00002915 case lltok::kw_udiv:
2916 case lltok::kw_sdiv:
2917 case lltok::kw_fdiv:
2918 case lltok::kw_urem:
2919 case lltok::kw_srem:
Chris Lattnera676c0f2011-02-07 16:40:21 +00002920 case lltok::kw_frem:
2921 case lltok::kw_shl:
2922 case lltok::kw_lshr:
2923 case lltok::kw_ashr: {
Dan Gohman9c7f8082009-07-27 16:11:46 +00002924 bool NUW = false;
2925 bool NSW = false;
2926 bool Exact = false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002927 unsigned Opc = Lex.getUIntVal();
2928 Constant *Val0, *Val1;
2929 Lex.Lex();
Dan Gohman9c7f8082009-07-27 16:11:46 +00002930 LocTy ModifierLoc = Lex.getLoc();
Chris Lattnera676c0f2011-02-07 16:40:21 +00002931 if (Opc == Instruction::Add || Opc == Instruction::Sub ||
2932 Opc == Instruction::Mul || Opc == Instruction::Shl) {
Dan Gohman9c7f8082009-07-27 16:11:46 +00002933 if (EatIfPresent(lltok::kw_nuw))
2934 NUW = true;
2935 if (EatIfPresent(lltok::kw_nsw)) {
2936 NSW = true;
2937 if (EatIfPresent(lltok::kw_nuw))
2938 NUW = true;
2939 }
Chris Lattnera676c0f2011-02-07 16:40:21 +00002940 } else if (Opc == Instruction::SDiv || Opc == Instruction::UDiv ||
2941 Opc == Instruction::LShr || Opc == Instruction::AShr) {
Dan Gohman9c7f8082009-07-27 16:11:46 +00002942 if (EatIfPresent(lltok::kw_exact))
2943 Exact = true;
2944 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00002945 if (ParseToken(lltok::lparen, "expected '(' in binary constantexpr") ||
2946 ParseGlobalTypeAndValue(Val0) ||
2947 ParseToken(lltok::comma, "expected comma in binary constantexpr") ||
2948 ParseGlobalTypeAndValue(Val1) ||
2949 ParseToken(lltok::rparen, "expected ')' in binary constantexpr"))
2950 return true;
2951 if (Val0->getType() != Val1->getType())
2952 return Error(ID.Loc, "operands of constexpr must have same type");
Duncan Sands9dff9be2010-02-15 16:12:20 +00002953 if (!Val0->getType()->isIntOrIntVectorTy()) {
Dan Gohman9c7f8082009-07-27 16:11:46 +00002954 if (NUW)
2955 return Error(ModifierLoc, "nuw only applies to integer operations");
2956 if (NSW)
2957 return Error(ModifierLoc, "nsw only applies to integer operations");
2958 }
Dan Gohmana2414ea2010-05-03 22:44:19 +00002959 // Check that the type is valid for the operator.
2960 switch (Opc) {
2961 case Instruction::Add:
2962 case Instruction::Sub:
2963 case Instruction::Mul:
2964 case Instruction::UDiv:
2965 case Instruction::SDiv:
2966 case Instruction::URem:
2967 case Instruction::SRem:
Chris Lattnera676c0f2011-02-07 16:40:21 +00002968 case Instruction::Shl:
2969 case Instruction::AShr:
2970 case Instruction::LShr:
Dan Gohmana2414ea2010-05-03 22:44:19 +00002971 if (!Val0->getType()->isIntOrIntVectorTy())
2972 return Error(ID.Loc, "constexpr requires integer operands");
2973 break;
2974 case Instruction::FAdd:
2975 case Instruction::FSub:
2976 case Instruction::FMul:
2977 case Instruction::FDiv:
2978 case Instruction::FRem:
2979 if (!Val0->getType()->isFPOrFPVectorTy())
2980 return Error(ID.Loc, "constexpr requires fp operands");
2981 break;
2982 default: llvm_unreachable("Unknown binary operator!");
2983 }
Dan Gohman1b849082009-09-07 23:54:19 +00002984 unsigned Flags = 0;
2985 if (NUW) Flags |= OverflowingBinaryOperator::NoUnsignedWrap;
2986 if (NSW) Flags |= OverflowingBinaryOperator::NoSignedWrap;
Chris Lattner35315d02011-02-06 21:44:57 +00002987 if (Exact) Flags |= PossiblyExactOperator::IsExact;
Dan Gohman1b849082009-09-07 23:54:19 +00002988 Constant *C = ConstantExpr::get(Opc, Val0, Val1, Flags);
Dan Gohman9c7f8082009-07-27 16:11:46 +00002989 ID.ConstantVal = C;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002990 ID.Kind = ValID::t_Constant;
2991 return false;
2992 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002993
Chris Lattnerac161bf2009-01-02 07:01:27 +00002994 // Logical Operations
Chris Lattnerac161bf2009-01-02 07:01:27 +00002995 case lltok::kw_and:
2996 case lltok::kw_or:
2997 case lltok::kw_xor: {
2998 unsigned Opc = Lex.getUIntVal();
2999 Constant *Val0, *Val1;
3000 Lex.Lex();
3001 if (ParseToken(lltok::lparen, "expected '(' in logical constantexpr") ||
3002 ParseGlobalTypeAndValue(Val0) ||
3003 ParseToken(lltok::comma, "expected comma in logical constantexpr") ||
3004 ParseGlobalTypeAndValue(Val1) ||
3005 ParseToken(lltok::rparen, "expected ')' in logical constantexpr"))
3006 return true;
3007 if (Val0->getType() != Val1->getType())
3008 return Error(ID.Loc, "operands of constexpr must have same type");
Duncan Sands9dff9be2010-02-15 16:12:20 +00003009 if (!Val0->getType()->isIntOrIntVectorTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00003010 return Error(ID.Loc,
3011 "constexpr requires integer or integer vector operands");
Owen Anderson487375e2009-07-29 18:55:55 +00003012 ID.ConstantVal = ConstantExpr::get(Opc, Val0, Val1);
Chris Lattnerac161bf2009-01-02 07:01:27 +00003013 ID.Kind = ValID::t_Constant;
3014 return false;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003015 }
3016
Chris Lattnerac161bf2009-01-02 07:01:27 +00003017 case lltok::kw_getelementptr:
3018 case lltok::kw_shufflevector:
3019 case lltok::kw_insertelement:
3020 case lltok::kw_extractelement:
3021 case lltok::kw_select: {
3022 unsigned Opc = Lex.getUIntVal();
3023 SmallVector<Constant*, 16> Elts;
Dan Gohman1639c392009-07-27 21:53:46 +00003024 bool InBounds = false;
David Blaikief72d05b2015-03-13 18:20:45 +00003025 Type *Ty;
Chris Lattnerac161bf2009-01-02 07:01:27 +00003026 Lex.Lex();
David Blaikief72d05b2015-03-13 18:20:45 +00003027
Dan Gohman1639c392009-07-27 21:53:46 +00003028 if (Opc == Instruction::GetElementPtr)
Dan Gohman16cbbe42009-07-29 15:58:36 +00003029 InBounds = EatIfPresent(lltok::kw_inbounds);
David Blaikief72d05b2015-03-13 18:20:45 +00003030
3031 if (ParseToken(lltok::lparen, "expected '(' in constantexpr"))
3032 return true;
3033
3034 LocTy ExplicitTypeLoc = Lex.getLoc();
3035 if (Opc == Instruction::GetElementPtr) {
3036 if (ParseType(Ty) ||
3037 ParseToken(lltok::comma, "expected comma after getelementptr's type"))
3038 return true;
3039 }
3040
3041 if (ParseGlobalValueVector(Elts) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00003042 ParseToken(lltok::rparen, "expected ')' in constantexpr"))
3043 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003044
Chris Lattnerac161bf2009-01-02 07:01:27 +00003045 if (Opc == Instruction::GetElementPtr) {
Nadav Rotem3924cb02011-12-05 06:29:09 +00003046 if (Elts.size() == 0 ||
3047 !Elts[0]->getType()->getScalarType()->isPointerTy())
David Majnemer00303b62015-02-22 23:14:52 +00003048 return Error(ID.Loc, "base of getelementptr must be a pointer");
3049
3050 Type *BaseType = Elts[0]->getType();
3051 auto *BasePointerType = cast<PointerType>(BaseType->getScalarType());
David Blaikief72d05b2015-03-13 18:20:45 +00003052 if (Ty != BasePointerType->getElementType())
3053 return Error(
3054 ExplicitTypeLoc,
3055 "explicit pointee type doesn't match operand's pointee type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003056
Jay Foaded8db7d2011-07-21 14:31:17 +00003057 ArrayRef<Constant *> Indices(Elts.begin() + 1, Elts.end());
David Majnemer00303b62015-02-22 23:14:52 +00003058 for (Constant *Val : Indices) {
3059 Type *ValTy = Val->getType();
3060 if (!ValTy->getScalarType()->isIntegerTy())
3061 return Error(ID.Loc, "getelementptr index must be an integer");
3062 if (ValTy->isVectorTy() != BaseType->isVectorTy())
3063 return Error(ID.Loc, "getelementptr index type missmatch");
3064 if (ValTy->isVectorTy()) {
Elena Demikhovsky37a4da82015-07-09 07:42:48 +00003065 unsigned ValNumEl = ValTy->getVectorNumElements();
3066 unsigned PtrNumEl = BaseType->getVectorNumElements();
David Majnemer00303b62015-02-22 23:14:52 +00003067 if (ValNumEl != PtrNumEl)
3068 return Error(
3069 ID.Loc,
3070 "getelementptr vector index has a wrong number of elements");
3071 }
3072 }
3073
Craig Toppere3dcce92015-08-01 22:20:21 +00003074 SmallPtrSet<Type*, 4> Visited;
David Blaikiee169e822015-04-22 16:37:35 +00003075 if (!Indices.empty() && !Ty->isSized(&Visited))
David Majnemer00303b62015-02-22 23:14:52 +00003076 return Error(ID.Loc, "base element of getelementptr must be sized");
3077
David Blaikie4a2e73b2015-04-02 18:55:32 +00003078 if (!GetElementPtrInst::getIndexedType(Ty, Indices))
David Majnemer00303b62015-02-22 23:14:52 +00003079 return Error(ID.Loc, "invalid getelementptr indices");
David Blaikie4a2e73b2015-04-02 18:55:32 +00003080 ID.ConstantVal =
3081 ConstantExpr::getGetElementPtr(Ty, Elts[0], Indices, InBounds);
Chris Lattnerac161bf2009-01-02 07:01:27 +00003082 } else if (Opc == Instruction::Select) {
3083 if (Elts.size() != 3)
3084 return Error(ID.Loc, "expected three operands to select");
3085 if (const char *Reason = SelectInst::areInvalidOperands(Elts[0], Elts[1],
3086 Elts[2]))
3087 return Error(ID.Loc, Reason);
Owen Anderson487375e2009-07-29 18:55:55 +00003088 ID.ConstantVal = ConstantExpr::getSelect(Elts[0], Elts[1], Elts[2]);
Chris Lattnerac161bf2009-01-02 07:01:27 +00003089 } else if (Opc == Instruction::ShuffleVector) {
3090 if (Elts.size() != 3)
3091 return Error(ID.Loc, "expected three operands to shufflevector");
3092 if (!ShuffleVectorInst::isValidOperands(Elts[0], Elts[1], Elts[2]))
3093 return Error(ID.Loc, "invalid operands to shufflevector");
Owen Anderson02a9da32009-07-01 23:57:11 +00003094 ID.ConstantVal =
Owen Anderson487375e2009-07-29 18:55:55 +00003095 ConstantExpr::getShuffleVector(Elts[0], Elts[1],Elts[2]);
Chris Lattnerac161bf2009-01-02 07:01:27 +00003096 } else if (Opc == Instruction::ExtractElement) {
3097 if (Elts.size() != 2)
3098 return Error(ID.Loc, "expected two operands to extractelement");
3099 if (!ExtractElementInst::isValidOperands(Elts[0], Elts[1]))
3100 return Error(ID.Loc, "invalid extractelement operands");
Owen Anderson487375e2009-07-29 18:55:55 +00003101 ID.ConstantVal = ConstantExpr::getExtractElement(Elts[0], Elts[1]);
Chris Lattnerac161bf2009-01-02 07:01:27 +00003102 } else {
3103 assert(Opc == Instruction::InsertElement && "Unknown opcode");
3104 if (Elts.size() != 3)
3105 return Error(ID.Loc, "expected three operands to insertelement");
3106 if (!InsertElementInst::isValidOperands(Elts[0], Elts[1], Elts[2]))
3107 return Error(ID.Loc, "invalid insertelement operands");
Owen Anderson02a9da32009-07-01 23:57:11 +00003108 ID.ConstantVal =
Owen Anderson487375e2009-07-29 18:55:55 +00003109 ConstantExpr::getInsertElement(Elts[0], Elts[1],Elts[2]);
Chris Lattnerac161bf2009-01-02 07:01:27 +00003110 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003111
Chris Lattnerac161bf2009-01-02 07:01:27 +00003112 ID.Kind = ValID::t_Constant;
3113 return false;
3114 }
3115 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003116
Chris Lattnerac161bf2009-01-02 07:01:27 +00003117 Lex.Lex();
3118 return false;
3119}
3120
3121/// ParseGlobalValue - Parse a global value with the specified type.
Chris Lattner229907c2011-07-18 04:54:35 +00003122bool LLParser::ParseGlobalValue(Type *Ty, Constant *&C) {
Craig Topper2617dcc2014-04-15 06:32:26 +00003123 C = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00003124 ValID ID;
Craig Topper2617dcc2014-04-15 06:32:26 +00003125 Value *V = nullptr;
Victor Hernandez9d75c962010-01-11 22:31:58 +00003126 bool Parsed = ParseValID(ID) ||
Craig Topper2617dcc2014-04-15 06:32:26 +00003127 ConvertValIDToValue(Ty, ID, V, nullptr);
Victor Hernandez9d75c962010-01-11 22:31:58 +00003128 if (V && !(C = dyn_cast<Constant>(V)))
3129 return Error(ID.Loc, "global values must be constants");
3130 return Parsed;
Chris Lattnerac161bf2009-01-02 07:01:27 +00003131}
3132
Victor Hernandez9d75c962010-01-11 22:31:58 +00003133bool LLParser::ParseGlobalTypeAndValue(Constant *&V) {
Craig Topper2617dcc2014-04-15 06:32:26 +00003134 Type *Ty = nullptr;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00003135 return ParseType(Ty) ||
3136 ParseGlobalValue(Ty, V);
Victor Hernandez9d75c962010-01-11 22:31:58 +00003137}
3138
Rafael Espindola83a362c2015-01-06 22:55:16 +00003139bool LLParser::parseOptionalComdat(StringRef GlobalName, Comdat *&C) {
David Majnemerdad0a642014-06-27 18:19:56 +00003140 C = nullptr;
Rafael Espindola83a362c2015-01-06 22:55:16 +00003141
3142 LocTy KwLoc = Lex.getLoc();
David Majnemerdad0a642014-06-27 18:19:56 +00003143 if (!EatIfPresent(lltok::kw_comdat))
3144 return false;
Rafael Espindola83a362c2015-01-06 22:55:16 +00003145
3146 if (EatIfPresent(lltok::lparen)) {
3147 if (Lex.getKind() != lltok::ComdatVar)
3148 return TokError("expected comdat variable");
3149 C = getComdat(Lex.getStrVal(), Lex.getLoc());
3150 Lex.Lex();
3151 if (ParseToken(lltok::rparen, "expected ')' after comdat var"))
3152 return true;
3153 } else {
3154 if (GlobalName.empty())
3155 return TokError("comdat cannot be unnamed");
3156 C = getComdat(GlobalName, KwLoc);
3157 }
3158
David Majnemerdad0a642014-06-27 18:19:56 +00003159 return false;
3160}
3161
Victor Hernandez9d75c962010-01-11 22:31:58 +00003162/// ParseGlobalValueVector
3163/// ::= /*empty*/
3164/// ::= TypeAndValue (',' TypeAndValue)*
Duncan P. N. Exon Smith17169902014-08-19 00:13:19 +00003165bool LLParser::ParseGlobalValueVector(SmallVectorImpl<Constant *> &Elts) {
Victor Hernandez9d75c962010-01-11 22:31:58 +00003166 // Empty list.
3167 if (Lex.getKind() == lltok::rbrace ||
3168 Lex.getKind() == lltok::rsquare ||
3169 Lex.getKind() == lltok::greater ||
3170 Lex.getKind() == lltok::rparen)
3171 return false;
3172
3173 Constant *C;
3174 if (ParseGlobalTypeAndValue(C)) return true;
3175 Elts.push_back(C);
3176
3177 while (EatIfPresent(lltok::comma)) {
3178 if (ParseGlobalTypeAndValue(C)) return true;
3179 Elts.push_back(C);
3180 }
3181
3182 return false;
3183}
3184
Duncan P. N. Exon Smith58ef9d12015-01-12 21:23:11 +00003185bool LLParser::ParseMDTuple(MDNode *&MD, bool IsDistinct) {
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00003186 SmallVector<Metadata *, 16> Elts;
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00003187 if (ParseMDNodeVector(Elts))
Dan Gohmanc828c542010-08-24 02:24:03 +00003188 return true;
3189
Duncan P. N. Exon Smith0b31dd12015-01-12 22:27:39 +00003190 MD = (IsDistinct ? MDTuple::getDistinct : MDTuple::get)(Context, Elts);
Dan Gohmanc828c542010-08-24 02:24:03 +00003191 return false;
3192}
3193
Duncan P. N. Exon Smithf825dae2015-01-12 22:26:48 +00003194/// MDNode:
3195/// ::= !{ ... }
3196/// ::= !7
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003197/// ::= !DILocation(...)
Duncan P. N. Exon Smithf825dae2015-01-12 22:26:48 +00003198bool LLParser::ParseMDNode(MDNode *&N) {
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003199 if (Lex.getKind() == lltok::MetadataVar)
3200 return ParseSpecializedMDNode(N);
3201
Duncan P. N. Exon Smithf825dae2015-01-12 22:26:48 +00003202 return ParseToken(lltok::exclaim, "expected '!' here") ||
3203 ParseMDNodeTail(N);
3204}
3205
3206bool LLParser::ParseMDNodeTail(MDNode *&N) {
3207 // !{ ... }
3208 if (Lex.getKind() == lltok::lbrace)
3209 return ParseMDTuple(N);
3210
3211 // !42
3212 return ParseMDNodeID(N);
3213}
3214
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003215namespace {
3216
3217/// Structure to represent an optional metadata field.
3218template <class FieldTy> struct MDFieldImpl {
3219 typedef MDFieldImpl ImplTy;
3220 FieldTy Val;
3221 bool Seen;
3222
3223 void assign(FieldTy Val) {
3224 Seen = true;
3225 this->Val = std::move(Val);
3226 }
3227
3228 explicit MDFieldImpl(FieldTy Default)
3229 : Val(std::move(Default)), Seen(false) {}
3230};
Duncan P. N. Exon Smithc7363f12015-02-13 01:10:38 +00003231
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003232struct MDUnsignedField : public MDFieldImpl<uint64_t> {
3233 uint64_t Max;
3234
3235 MDUnsignedField(uint64_t Default = 0, uint64_t Max = UINT64_MAX)
3236 : ImplTy(Default), Max(Max) {}
3237};
Duncan P. N. Exon Smith9c93dc62015-02-04 22:59:18 +00003238struct LineField : public MDUnsignedField {
Duncan P. N. Exon Smithaf677eb2015-02-06 22:50:13 +00003239 LineField() : MDUnsignedField(0, UINT32_MAX) {}
Duncan P. N. Exon Smith9c93dc62015-02-04 22:59:18 +00003240};
3241struct ColumnField : public MDUnsignedField {
3242 ColumnField() : MDUnsignedField(0, UINT16_MAX) {}
3243};
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003244struct DwarfTagField : public MDUnsignedField {
Duncan P. N. Exon Smitha81f7e12015-02-06 22:29:35 +00003245 DwarfTagField() : MDUnsignedField(0, dwarf::DW_TAG_hi_user) {}
Duncan P. N. Exon Smith16d182a2015-02-28 23:21:38 +00003246 DwarfTagField(dwarf::Tag DefaultTag)
3247 : MDUnsignedField(DefaultTag, dwarf::DW_TAG_hi_user) {}
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003248};
Amjad Abouda9bcf162015-12-10 12:56:35 +00003249struct DwarfMacinfoTypeField : public MDUnsignedField {
3250 DwarfMacinfoTypeField() : MDUnsignedField(0, dwarf::DW_MACINFO_vendor_ext) {}
3251 DwarfMacinfoTypeField(dwarf::MacinfoRecordType DefaultType)
3252 : MDUnsignedField(DefaultType, dwarf::DW_MACINFO_vendor_ext) {}
3253};
Duncan P. N. Exon Smithcd6636c2015-02-13 01:17:35 +00003254struct DwarfAttEncodingField : public MDUnsignedField {
3255 DwarfAttEncodingField() : MDUnsignedField(0, dwarf::DW_ATE_hi_user) {}
3256};
Duncan P. N. Exon Smith890533e2015-02-13 01:28:16 +00003257struct DwarfVirtualityField : public MDUnsignedField {
3258 DwarfVirtualityField() : MDUnsignedField(0, dwarf::DW_VIRTUALITY_max) {}
3259};
Duncan P. N. Exon Smithaece2dc2015-02-13 01:21:25 +00003260struct DwarfLangField : public MDUnsignedField {
3261 DwarfLangField() : MDUnsignedField(0, dwarf::DW_LANG_hi_user) {}
3262};
Adrian Prantlb939a252016-03-31 23:56:58 +00003263struct EmissionKindField : public MDUnsignedField {
3264 EmissionKindField() : MDUnsignedField(0, DICompileUnit::LastEmissionKind) {}
3265};
Duncan P. N. Exon Smithc7363f12015-02-13 01:10:38 +00003266
Duncan P. N. Exon Smith70ab3d22015-02-21 01:02:18 +00003267struct DIFlagField : public MDUnsignedField {
3268 DIFlagField() : MDUnsignedField(0, UINT32_MAX) {}
3269};
3270
Duncan P. N. Exon Smithc7363f12015-02-13 01:10:38 +00003271struct MDSignedField : public MDFieldImpl<int64_t> {
3272 int64_t Min;
3273 int64_t Max;
3274
3275 MDSignedField(int64_t Default = 0)
3276 : ImplTy(Default), Min(INT64_MIN), Max(INT64_MAX) {}
3277 MDSignedField(int64_t Default, int64_t Min, int64_t Max)
3278 : ImplTy(Default), Min(Min), Max(Max) {}
3279};
3280
Duncan P. N. Exon Smithaece2dc2015-02-13 01:21:25 +00003281struct MDBoolField : public MDFieldImpl<bool> {
3282 MDBoolField(bool Default = false) : ImplTy(Default) {}
3283};
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003284struct MDField : public MDFieldImpl<Metadata *> {
Duncan P. N. Exon Smithe2c61d92015-03-27 17:56:39 +00003285 bool AllowNull;
3286
3287 MDField(bool AllowNull = true) : ImplTy(nullptr), AllowNull(AllowNull) {}
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003288};
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003289struct MDConstant : public MDFieldImpl<ConstantAsMetadata *> {
3290 MDConstant() : ImplTy(nullptr) {}
3291};
Duncan P. N. Exon Smith3d2afaa2015-03-27 17:29:58 +00003292struct MDStringField : public MDFieldImpl<MDString *> {
Duncan P. N. Exon Smith94d58f82015-03-31 01:28:22 +00003293 bool AllowEmpty;
3294 MDStringField(bool AllowEmpty = true)
3295 : ImplTy(nullptr), AllowEmpty(AllowEmpty) {}
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003296};
3297struct MDFieldList : public MDFieldImpl<SmallVector<Metadata *, 4>> {
3298 MDFieldList() : ImplTy(SmallVector<Metadata *, 4>()) {}
3299};
3300
3301} // end namespace
3302
Duncan P. N. Exon Smith2f09c462015-02-04 22:13:28 +00003303namespace llvm {
3304
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003305template <>
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003306bool LLParser::ParseMDField(LocTy Loc, StringRef Name,
Duncan P. N. Exon Smith39b10c22015-02-04 21:57:52 +00003307 MDUnsignedField &Result) {
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003308 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned())
3309 return TokError("expected unsigned integer");
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003310
Duncan P. N. Exon Smith39b10c22015-02-04 21:57:52 +00003311 auto &U = Lex.getAPSIntVal();
3312 if (U.ugt(Result.Max))
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003313 return TokError("value for '" + Name + "' too large, limit is " +
3314 Twine(Result.Max));
Duncan P. N. Exon Smith39b10c22015-02-04 21:57:52 +00003315 Result.assign(U.getZExtValue());
3316 assert(Result.Val <= Result.Max && "Expected value in range");
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003317 Lex.Lex();
3318 return false;
3319}
3320
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003321template <>
Duncan P. N. Exon Smith9c93dc62015-02-04 22:59:18 +00003322bool LLParser::ParseMDField(LocTy Loc, StringRef Name, LineField &Result) {
3323 return ParseMDField(Loc, Name, static_cast<MDUnsignedField &>(Result));
3324}
3325template <>
3326bool LLParser::ParseMDField(LocTy Loc, StringRef Name, ColumnField &Result) {
3327 return ParseMDField(Loc, Name, static_cast<MDUnsignedField &>(Result));
3328}
3329
3330template <>
Duncan P. N. Exon Smith97486072015-02-03 21:56:01 +00003331bool LLParser::ParseMDField(LocTy Loc, StringRef Name, DwarfTagField &Result) {
3332 if (Lex.getKind() == lltok::APSInt)
Duncan P. N. Exon Smith39b10c22015-02-04 21:57:52 +00003333 return ParseMDField(Loc, Name, static_cast<MDUnsignedField &>(Result));
Duncan P. N. Exon Smith97486072015-02-03 21:56:01 +00003334
Duncan P. N. Exon Smith97486072015-02-03 21:56:01 +00003335 if (Lex.getKind() != lltok::DwarfTag)
3336 return TokError("expected DWARF tag");
3337
3338 unsigned Tag = dwarf::getTag(Lex.getStrVal());
3339 if (Tag == dwarf::DW_TAG_invalid)
3340 return TokError("invalid DWARF tag" + Twine(" '") + Lex.getStrVal() + "'");
Duncan P. N. Exon Smithfad631a2015-02-04 22:02:18 +00003341 assert(Tag <= Result.Max && "Expected valid DWARF tag");
Duncan P. N. Exon Smith97486072015-02-03 21:56:01 +00003342
3343 Result.assign(Tag);
3344 Lex.Lex();
3345 return false;
3346}
3347
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003348template <>
Duncan P. N. Exon Smith890533e2015-02-13 01:28:16 +00003349bool LLParser::ParseMDField(LocTy Loc, StringRef Name,
Amjad Abouda9bcf162015-12-10 12:56:35 +00003350 DwarfMacinfoTypeField &Result) {
3351 if (Lex.getKind() == lltok::APSInt)
3352 return ParseMDField(Loc, Name, static_cast<MDUnsignedField &>(Result));
3353
3354 if (Lex.getKind() != lltok::DwarfMacinfo)
3355 return TokError("expected DWARF macinfo type");
3356
3357 unsigned Macinfo = dwarf::getMacinfo(Lex.getStrVal());
3358 if (Macinfo == dwarf::DW_MACINFO_invalid)
3359 return TokError(
3360 "invalid DWARF macinfo type" + Twine(" '") + Lex.getStrVal() + "'");
3361 assert(Macinfo <= Result.Max && "Expected valid DWARF macinfo type");
3362
3363 Result.assign(Macinfo);
3364 Lex.Lex();
3365 return false;
3366}
3367
3368template <>
3369bool LLParser::ParseMDField(LocTy Loc, StringRef Name,
Duncan P. N. Exon Smith890533e2015-02-13 01:28:16 +00003370 DwarfVirtualityField &Result) {
3371 if (Lex.getKind() == lltok::APSInt)
3372 return ParseMDField(Loc, Name, static_cast<MDUnsignedField &>(Result));
3373
3374 if (Lex.getKind() != lltok::DwarfVirtuality)
3375 return TokError("expected DWARF virtuality code");
3376
3377 unsigned Virtuality = dwarf::getVirtuality(Lex.getStrVal());
Peter Collingbournea1f86252016-03-17 23:58:03 +00003378 if (Virtuality == dwarf::DW_VIRTUALITY_invalid)
Duncan P. N. Exon Smith890533e2015-02-13 01:28:16 +00003379 return TokError("invalid DWARF virtuality code" + Twine(" '") +
3380 Lex.getStrVal() + "'");
3381 assert(Virtuality <= Result.Max && "Expected valid DWARF virtuality code");
3382 Result.assign(Virtuality);
3383 Lex.Lex();
3384 return false;
3385}
3386
3387template <>
Duncan P. N. Exon Smithaece2dc2015-02-13 01:21:25 +00003388bool LLParser::ParseMDField(LocTy Loc, StringRef Name, DwarfLangField &Result) {
3389 if (Lex.getKind() == lltok::APSInt)
3390 return ParseMDField(Loc, Name, static_cast<MDUnsignedField &>(Result));
3391
3392 if (Lex.getKind() != lltok::DwarfLang)
3393 return TokError("expected DWARF language");
3394
3395 unsigned Lang = dwarf::getLanguage(Lex.getStrVal());
3396 if (!Lang)
3397 return TokError("invalid DWARF language" + Twine(" '") + Lex.getStrVal() +
3398 "'");
3399 assert(Lang <= Result.Max && "Expected valid DWARF language");
3400 Result.assign(Lang);
3401 Lex.Lex();
3402 return false;
3403}
3404
3405template <>
Adrian Prantlb939a252016-03-31 23:56:58 +00003406bool LLParser::ParseMDField(LocTy Loc, StringRef Name, EmissionKindField &Result) {
3407 if (Lex.getKind() == lltok::APSInt)
3408 return ParseMDField(Loc, Name, static_cast<MDUnsignedField &>(Result));
3409
3410 if (Lex.getKind() != lltok::EmissionKind)
3411 return TokError("expected emission kind");
3412
3413 auto Kind = DICompileUnit::getEmissionKind(Lex.getStrVal());
3414 if (!Kind)
3415 return TokError("invalid emission kind" + Twine(" '") + Lex.getStrVal() +
3416 "'");
3417 assert(*Kind <= Result.Max && "Expected valid emission kind");
3418 Result.assign(*Kind);
3419 Lex.Lex();
3420 return false;
3421}
3422
3423template <>
Duncan P. N. Exon Smithc7363f12015-02-13 01:10:38 +00003424bool LLParser::ParseMDField(LocTy Loc, StringRef Name,
Duncan P. N. Exon Smithcd6636c2015-02-13 01:17:35 +00003425 DwarfAttEncodingField &Result) {
3426 if (Lex.getKind() == lltok::APSInt)
3427 return ParseMDField(Loc, Name, static_cast<MDUnsignedField &>(Result));
3428
3429 if (Lex.getKind() != lltok::DwarfAttEncoding)
3430 return TokError("expected DWARF type attribute encoding");
3431
3432 unsigned Encoding = dwarf::getAttributeEncoding(Lex.getStrVal());
3433 if (!Encoding)
3434 return TokError("invalid DWARF type attribute encoding" + Twine(" '") +
3435 Lex.getStrVal() + "'");
3436 assert(Encoding <= Result.Max && "Expected valid DWARF language");
3437 Result.assign(Encoding);
3438 Lex.Lex();
3439 return false;
3440}
3441
Duncan P. N. Exon Smith70ab3d22015-02-21 01:02:18 +00003442/// DIFlagField
3443/// ::= uint32
3444/// ::= DIFlagVector
3445/// ::= DIFlagVector '|' DIFlagFwdDecl '|' uint32 '|' DIFlagPublic
3446template <>
3447bool LLParser::ParseMDField(LocTy Loc, StringRef Name, DIFlagField &Result) {
3448 assert(Result.Max == UINT32_MAX && "Expected only 32-bits");
3449
3450 // Parser for a single flag.
3451 auto parseFlag = [&](unsigned &Val) {
3452 if (Lex.getKind() == lltok::APSInt && !Lex.getAPSIntVal().isSigned())
3453 return ParseUInt32(Val);
3454
3455 if (Lex.getKind() != lltok::DIFlag)
3456 return TokError("expected debug info flag");
3457
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003458 Val = DINode::getFlag(Lex.getStrVal());
Duncan P. N. Exon Smith70ab3d22015-02-21 01:02:18 +00003459 if (!Val)
3460 return TokError(Twine("invalid debug info flag flag '") +
3461 Lex.getStrVal() + "'");
3462 Lex.Lex();
3463 return false;
3464 };
3465
3466 // Parse the flags and combine them together.
3467 unsigned Combined = 0;
3468 do {
3469 unsigned Val;
3470 if (parseFlag(Val))
3471 return true;
3472 Combined |= Val;
3473 } while (EatIfPresent(lltok::bar));
3474
3475 Result.assign(Combined);
3476 return false;
3477}
3478
Duncan P. N. Exon Smithcd6636c2015-02-13 01:17:35 +00003479template <>
3480bool LLParser::ParseMDField(LocTy Loc, StringRef Name,
Duncan P. N. Exon Smithc7363f12015-02-13 01:10:38 +00003481 MDSignedField &Result) {
3482 if (Lex.getKind() != lltok::APSInt)
3483 return TokError("expected signed integer");
3484
3485 auto &S = Lex.getAPSIntVal();
3486 if (S < Result.Min)
3487 return TokError("value for '" + Name + "' too small, limit is " +
3488 Twine(Result.Min));
3489 if (S > Result.Max)
3490 return TokError("value for '" + Name + "' too large, limit is " +
3491 Twine(Result.Max));
3492 Result.assign(S.getExtValue());
3493 assert(Result.Val >= Result.Min && "Expected value in range");
3494 assert(Result.Val <= Result.Max && "Expected value in range");
3495 Lex.Lex();
3496 return false;
3497}
3498
3499template <>
Duncan P. N. Exon Smithaece2dc2015-02-13 01:21:25 +00003500bool LLParser::ParseMDField(LocTy Loc, StringRef Name, MDBoolField &Result) {
3501 switch (Lex.getKind()) {
3502 default:
3503 return TokError("expected 'true' or 'false'");
3504 case lltok::kw_true:
3505 Result.assign(true);
3506 break;
3507 case lltok::kw_false:
3508 Result.assign(false);
3509 break;
3510 }
3511 Lex.Lex();
3512 return false;
3513}
3514
3515template <>
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003516bool LLParser::ParseMDField(LocTy Loc, StringRef Name, MDField &Result) {
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003517 if (Lex.getKind() == lltok::kw_null) {
Duncan P. N. Exon Smithe2c61d92015-03-27 17:56:39 +00003518 if (!Result.AllowNull)
3519 return TokError("'" + Name + "' cannot be null");
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003520 Lex.Lex();
3521 Result.assign(nullptr);
3522 return false;
3523 }
3524
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003525 Metadata *MD;
3526 if (ParseMetadata(MD, nullptr))
3527 return true;
3528
3529 Result.assign(MD);
3530 return false;
3531}
3532
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003533template <>
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003534bool LLParser::ParseMDField(LocTy Loc, StringRef Name, MDConstant &Result) {
3535 Metadata *MD;
3536 if (ParseValueAsMetadata(MD, "expected constant", nullptr))
3537 return true;
3538
3539 Result.assign(cast<ConstantAsMetadata>(MD));
3540 return false;
3541}
3542
3543template <>
Duncan P. N. Exon Smith4e4aa702015-02-03 21:54:14 +00003544bool LLParser::ParseMDField(LocTy Loc, StringRef Name, MDStringField &Result) {
Duncan P. N. Exon Smith94d58f82015-03-31 01:28:22 +00003545 LocTy ValueLoc = Lex.getLoc();
Duncan P. N. Exon Smith4e4aa702015-02-03 21:54:14 +00003546 std::string S;
3547 if (ParseStringConstant(S))
3548 return true;
3549
Duncan P. N. Exon Smith94d58f82015-03-31 01:28:22 +00003550 if (!Result.AllowEmpty && S.empty())
3551 return Error(ValueLoc, "'" + Name + "' cannot be empty");
3552
Duncan P. N. Exon Smith3d2afaa2015-03-27 17:29:58 +00003553 Result.assign(S.empty() ? nullptr : MDString::get(Context, S));
Duncan P. N. Exon Smith4e4aa702015-02-03 21:54:14 +00003554 return false;
3555}
3556
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003557template <>
Duncan P. N. Exon Smith4e4aa702015-02-03 21:54:14 +00003558bool LLParser::ParseMDField(LocTy Loc, StringRef Name, MDFieldList &Result) {
3559 SmallVector<Metadata *, 4> MDs;
3560 if (ParseMDNodeVector(MDs))
3561 return true;
3562
3563 Result.assign(std::move(MDs));
3564 return false;
3565}
3566
Duncan P. N. Exon Smith2f09c462015-02-04 22:13:28 +00003567} // end namespace llvm
3568
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003569template <class ParserTy>
Duncan P. N. Exon Smith66ca92e2015-01-19 23:39:32 +00003570bool LLParser::ParseMDFieldsImplBody(ParserTy parseField) {
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003571 do {
3572 if (Lex.getKind() != lltok::LabelStr)
3573 return TokError("expected field label here");
3574
3575 if (parseField())
3576 return true;
3577 } while (EatIfPresent(lltok::comma));
3578
Duncan P. N. Exon Smith66ca92e2015-01-19 23:39:32 +00003579 return false;
3580}
3581
3582template <class ParserTy>
3583bool LLParser::ParseMDFieldsImpl(ParserTy parseField, LocTy &ClosingLoc) {
3584 assert(Lex.getKind() == lltok::MetadataVar && "Expected metadata type name");
3585 Lex.Lex();
3586
3587 if (ParseToken(lltok::lparen, "expected '(' here"))
3588 return true;
3589 if (Lex.getKind() != lltok::rparen)
3590 if (ParseMDFieldsImplBody(parseField))
3591 return true;
3592
Duncan P. N. Exon Smith13890af2015-01-19 23:32:36 +00003593 ClosingLoc = Lex.getLoc();
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003594 return ParseToken(lltok::rparen, "expected ')' here");
3595}
3596
Duncan P. N. Exon Smitha7477282015-01-20 02:42:29 +00003597template <class FieldTy>
3598bool LLParser::ParseMDField(StringRef Name, FieldTy &Result) {
3599 if (Result.Seen)
3600 return TokError("field '" + Name + "' cannot be specified more than once");
3601
3602 LocTy Loc = Lex.getLoc();
3603 Lex.Lex();
3604 return ParseMDField(Loc, Name, Result);
3605}
3606
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003607bool LLParser::ParseSpecializedMDNode(MDNode *&N, bool IsDistinct) {
3608 assert(Lex.getKind() == lltok::MetadataVar && "Expected metadata type name");
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003609
3610#define HANDLE_SPECIALIZED_MDNODE_LEAF(CLASS) \
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003611 if (Lex.getStrVal() == #CLASS) \
3612 return Parse##CLASS(N, IsDistinct);
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003613#include "llvm/IR/Metadata.def"
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003614
3615 return TokError("expected metadata type");
3616}
3617
Duncan P. N. Exon Smith2a6b5fc2015-01-19 23:44:41 +00003618#define DECLARE_FIELD(NAME, TYPE, INIT) TYPE NAME INIT
3619#define NOP_FIELD(NAME, TYPE, INIT)
3620#define REQUIRE_FIELD(NAME, TYPE, INIT) \
3621 if (!NAME.Seen) \
3622 return Error(ClosingLoc, "missing required field '" #NAME "'");
3623#define PARSE_MD_FIELD(NAME, TYPE, DEFAULT) \
Duncan P. N. Exon Smitha7477282015-01-20 02:42:29 +00003624 if (Lex.getStrVal() == #NAME) \
3625 return ParseMDField(#NAME, NAME);
Duncan P. N. Exon Smith2a6b5fc2015-01-19 23:44:41 +00003626#define PARSE_MD_FIELDS() \
3627 VISIT_MD_FIELDS(DECLARE_FIELD, DECLARE_FIELD) \
3628 do { \
3629 LocTy ClosingLoc; \
3630 if (ParseMDFieldsImpl([&]() -> bool { \
3631 VISIT_MD_FIELDS(PARSE_MD_FIELD, PARSE_MD_FIELD) \
3632 return TokError(Twine("invalid field '") + Lex.getStrVal() + "'"); \
3633 }, ClosingLoc)) \
3634 return true; \
3635 VISIT_MD_FIELDS(NOP_FIELD, REQUIRE_FIELD) \
3636 } while (false)
Duncan P. N. Exon Smith4e4aa702015-02-03 21:54:14 +00003637#define GET_OR_DISTINCT(CLASS, ARGS) \
3638 (IsDistinct ? CLASS::getDistinct ARGS : CLASS::get ARGS)
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003639
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003640/// ParseDILocationFields:
3641/// ::= !DILocation(line: 43, column: 8, scope: !5, inlinedAt: !6)
3642bool LLParser::ParseDILocation(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith2a6b5fc2015-01-19 23:44:41 +00003643#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith9c93dc62015-02-04 22:59:18 +00003644 OPTIONAL(line, LineField, ); \
3645 OPTIONAL(column, ColumnField, ); \
Duncan P. N. Exon Smithe2c61d92015-03-27 17:56:39 +00003646 REQUIRED(scope, MDField, (/* AllowNull */ false)); \
Duncan P. N. Exon Smith2a6b5fc2015-01-19 23:44:41 +00003647 OPTIONAL(inlinedAt, MDField, );
3648 PARSE_MD_FIELDS();
3649#undef VISIT_MD_FIELDS
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003650
Duncan P. N. Exon Smith26489982015-03-26 22:05:04 +00003651 Result = GET_OR_DISTINCT(
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003652 DILocation, (Context, line.Val, column.Val, scope.Val, inlinedAt.Val));
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003653 return false;
3654}
Duncan P. N. Exon Smith4e4aa702015-02-03 21:54:14 +00003655
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003656/// ParseGenericDINode:
3657/// ::= !GenericDINode(tag: 15, header: "...", operands: {...})
3658bool LLParser::ParseGenericDINode(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith4e4aa702015-02-03 21:54:14 +00003659#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith97486072015-02-03 21:56:01 +00003660 REQUIRED(tag, DwarfTagField, ); \
Duncan P. N. Exon Smith4e4aa702015-02-03 21:54:14 +00003661 OPTIONAL(header, MDStringField, ); \
3662 OPTIONAL(operands, MDFieldList, );
3663 PARSE_MD_FIELDS();
3664#undef VISIT_MD_FIELDS
3665
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003666 Result = GET_OR_DISTINCT(GenericDINode,
Duncan P. N. Exon Smith4e4aa702015-02-03 21:54:14 +00003667 (Context, tag.Val, header.Val, operands.Val));
3668 return false;
3669}
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003670
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003671/// ParseDISubrange:
3672/// ::= !DISubrange(count: 30, lowerBound: 2)
3673bool LLParser::ParseDISubrange(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smithc7363f12015-02-13 01:10:38 +00003674#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith5c9a1772015-02-18 23:17:51 +00003675 REQUIRED(count, MDSignedField, (-1, -1, INT64_MAX)); \
Duncan P. N. Exon Smithc7363f12015-02-13 01:10:38 +00003676 OPTIONAL(lowerBound, MDSignedField, );
3677 PARSE_MD_FIELDS();
3678#undef VISIT_MD_FIELDS
3679
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003680 Result = GET_OR_DISTINCT(DISubrange, (Context, count.Val, lowerBound.Val));
Duncan P. N. Exon Smithc7363f12015-02-13 01:10:38 +00003681 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003682}
Duncan P. N. Exon Smithc7363f12015-02-13 01:10:38 +00003683
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003684/// ParseDIEnumerator:
3685/// ::= !DIEnumerator(value: 30, name: "SomeKind")
3686bool LLParser::ParseDIEnumerator(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith87754762015-02-13 01:14:11 +00003687#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smithcd8fb602015-02-18 21:16:33 +00003688 REQUIRED(name, MDStringField, ); \
3689 REQUIRED(value, MDSignedField, );
Duncan P. N. Exon Smith87754762015-02-13 01:14:11 +00003690 PARSE_MD_FIELDS();
3691#undef VISIT_MD_FIELDS
3692
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003693 Result = GET_OR_DISTINCT(DIEnumerator, (Context, value.Val, name.Val));
Duncan P. N. Exon Smith87754762015-02-13 01:14:11 +00003694 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003695}
Duncan P. N. Exon Smith87754762015-02-13 01:14:11 +00003696
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003697/// ParseDIBasicType:
3698/// ::= !DIBasicType(tag: DW_TAG_base_type, name: "int", size: 32, align: 32)
3699bool LLParser::ParseDIBasicType(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith09e03f32015-02-13 01:14:58 +00003700#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith16d182a2015-02-28 23:21:38 +00003701 OPTIONAL(tag, DwarfTagField, (dwarf::DW_TAG_base_type)); \
Duncan P. N. Exon Smith09e03f32015-02-13 01:14:58 +00003702 OPTIONAL(name, MDStringField, ); \
Duncan P. N. Exon Smithd34db172015-02-19 23:56:07 +00003703 OPTIONAL(size, MDUnsignedField, (0, UINT64_MAX)); \
3704 OPTIONAL(align, MDUnsignedField, (0, UINT64_MAX)); \
Duncan P. N. Exon Smithcd6636c2015-02-13 01:17:35 +00003705 OPTIONAL(encoding, DwarfAttEncodingField, );
Duncan P. N. Exon Smith09e03f32015-02-13 01:14:58 +00003706 PARSE_MD_FIELDS();
3707#undef VISIT_MD_FIELDS
3708
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003709 Result = GET_OR_DISTINCT(DIBasicType, (Context, tag.Val, name.Val, size.Val,
Duncan P. N. Exon Smith09e03f32015-02-13 01:14:58 +00003710 align.Val, encoding.Val));
3711 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003712}
Duncan P. N. Exon Smith09e03f32015-02-13 01:14:58 +00003713
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003714/// ParseDIDerivedType:
3715/// ::= !DIDerivedType(tag: DW_TAG_pointer_type, name: "int", file: !0,
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00003716/// line: 7, scope: !1, baseType: !2, size: 32,
3717/// align: 32, offset: 0, flags: 0, extraData: !3)
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003718bool LLParser::ParseDIDerivedType(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00003719#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
3720 REQUIRED(tag, DwarfTagField, ); \
3721 OPTIONAL(name, MDStringField, ); \
3722 OPTIONAL(file, MDField, ); \
3723 OPTIONAL(line, LineField, ); \
3724 OPTIONAL(scope, MDField, ); \
3725 REQUIRED(baseType, MDField, ); \
Duncan P. N. Exon Smithd34db172015-02-19 23:56:07 +00003726 OPTIONAL(size, MDUnsignedField, (0, UINT64_MAX)); \
3727 OPTIONAL(align, MDUnsignedField, (0, UINT64_MAX)); \
3728 OPTIONAL(offset, MDUnsignedField, (0, UINT64_MAX)); \
Duncan P. N. Exon Smith70ab3d22015-02-21 01:02:18 +00003729 OPTIONAL(flags, DIFlagField, ); \
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00003730 OPTIONAL(extraData, MDField, );
3731 PARSE_MD_FIELDS();
3732#undef VISIT_MD_FIELDS
3733
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003734 Result = GET_OR_DISTINCT(DIDerivedType,
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00003735 (Context, tag.Val, name.Val, file.Val, line.Val,
3736 scope.Val, baseType.Val, size.Val, align.Val,
3737 offset.Val, flags.Val, extraData.Val));
3738 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003739}
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00003740
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003741bool LLParser::ParseDICompositeType(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00003742#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
3743 REQUIRED(tag, DwarfTagField, ); \
3744 OPTIONAL(name, MDStringField, ); \
3745 OPTIONAL(file, MDField, ); \
3746 OPTIONAL(line, LineField, ); \
3747 OPTIONAL(scope, MDField, ); \
3748 OPTIONAL(baseType, MDField, ); \
Duncan P. N. Exon Smithd34db172015-02-19 23:56:07 +00003749 OPTIONAL(size, MDUnsignedField, (0, UINT64_MAX)); \
3750 OPTIONAL(align, MDUnsignedField, (0, UINT64_MAX)); \
3751 OPTIONAL(offset, MDUnsignedField, (0, UINT64_MAX)); \
Duncan P. N. Exon Smith70ab3d22015-02-21 01:02:18 +00003752 OPTIONAL(flags, DIFlagField, ); \
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00003753 OPTIONAL(elements, MDField, ); \
Duncan P. N. Exon Smithaece2dc2015-02-13 01:21:25 +00003754 OPTIONAL(runtimeLang, DwarfLangField, ); \
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00003755 OPTIONAL(vtableHolder, MDField, ); \
3756 OPTIONAL(templateParams, MDField, ); \
3757 OPTIONAL(identifier, MDStringField, );
3758 PARSE_MD_FIELDS();
3759#undef VISIT_MD_FIELDS
3760
3761 Result = GET_OR_DISTINCT(
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003762 DICompositeType,
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00003763 (Context, tag.Val, name.Val, file.Val, line.Val, scope.Val, baseType.Val,
3764 size.Val, align.Val, offset.Val, flags.Val, elements.Val,
3765 runtimeLang.Val, vtableHolder.Val, templateParams.Val, identifier.Val));
3766 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003767}
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00003768
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003769bool LLParser::ParseDISubroutineType(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith54e2bc62015-02-13 01:22:59 +00003770#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith70ab3d22015-02-21 01:02:18 +00003771 OPTIONAL(flags, DIFlagField, ); \
Duncan P. N. Exon Smith54e2bc62015-02-13 01:22:59 +00003772 REQUIRED(types, MDField, );
3773 PARSE_MD_FIELDS();
3774#undef VISIT_MD_FIELDS
3775
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003776 Result = GET_OR_DISTINCT(DISubroutineType, (Context, flags.Val, types.Val));
Duncan P. N. Exon Smith54e2bc62015-02-13 01:22:59 +00003777 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003778}
Duncan P. N. Exon Smithf14b9c72015-02-13 01:19:14 +00003779
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003780/// ParseDIFileType:
3781/// ::= !DIFileType(filename: "path/to/file", directory: "/path/to/dir")
3782bool LLParser::ParseDIFile(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smithf14b9c72015-02-13 01:19:14 +00003783#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
3784 REQUIRED(filename, MDStringField, ); \
3785 REQUIRED(directory, MDStringField, );
3786 PARSE_MD_FIELDS();
3787#undef VISIT_MD_FIELDS
3788
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003789 Result = GET_OR_DISTINCT(DIFile, (Context, filename.Val, directory.Val));
Duncan P. N. Exon Smithf14b9c72015-02-13 01:19:14 +00003790 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003791}
Duncan P. N. Exon Smithf14b9c72015-02-13 01:19:14 +00003792
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003793/// ParseDICompileUnit:
3794/// ::= !DICompileUnit(language: DW_LANG_C99, file: !0, producer: "clang",
Duncan P. N. Exon Smithc1f1acc2015-02-13 01:25:10 +00003795/// isOptimized: true, flags: "-O2", runtimeVersion: 1,
Adrian Prantlb939a252016-03-31 23:56:58 +00003796/// splitDebugFilename: "abc.debug",
3797/// emissionKind: FullDebug,
Duncan P. N. Exon Smithc1f1acc2015-02-13 01:25:10 +00003798/// enums: !1, retainedTypes: !2, subprograms: !3,
Amjad Abouda9bcf162015-12-10 12:56:35 +00003799/// globals: !4, imports: !5, macros: !6, dwoId: 0x0abcd)
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003800bool LLParser::ParseDICompileUnit(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith55ca9642015-08-03 17:26:41 +00003801 if (!IsDistinct)
3802 return Lex.Error("missing 'distinct', required for !DICompileUnit");
3803
Duncan P. N. Exon Smithc1f1acc2015-02-13 01:25:10 +00003804#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
3805 REQUIRED(language, DwarfLangField, ); \
Duncan P. N. Exon Smithcd07efa12015-03-31 00:47:15 +00003806 REQUIRED(file, MDField, (/* AllowNull */ false)); \
Duncan P. N. Exon Smithc1f1acc2015-02-13 01:25:10 +00003807 OPTIONAL(producer, MDStringField, ); \
3808 OPTIONAL(isOptimized, MDBoolField, ); \
3809 OPTIONAL(flags, MDStringField, ); \
3810 OPTIONAL(runtimeVersion, MDUnsignedField, (0, UINT32_MAX)); \
3811 OPTIONAL(splitDebugFilename, MDStringField, ); \
Adrian Prantlb939a252016-03-31 23:56:58 +00003812 OPTIONAL(emissionKind, EmissionKindField, ); \
Duncan P. N. Exon Smithc1f1acc2015-02-13 01:25:10 +00003813 OPTIONAL(enums, MDField, ); \
3814 OPTIONAL(retainedTypes, MDField, ); \
3815 OPTIONAL(subprograms, MDField, ); \
3816 OPTIONAL(globals, MDField, ); \
Adrian Prantl1f599f92015-05-21 20:37:30 +00003817 OPTIONAL(imports, MDField, ); \
Amjad Abouda9bcf162015-12-10 12:56:35 +00003818 OPTIONAL(macros, MDField, ); \
Adrian Prantl1f599f92015-05-21 20:37:30 +00003819 OPTIONAL(dwoId, MDUnsignedField, );
Duncan P. N. Exon Smithc1f1acc2015-02-13 01:25:10 +00003820 PARSE_MD_FIELDS();
3821#undef VISIT_MD_FIELDS
3822
Duncan P. N. Exon Smith55ca9642015-08-03 17:26:41 +00003823 Result = DICompileUnit::getDistinct(
3824 Context, language.Val, file.Val, producer.Val, isOptimized.Val, flags.Val,
3825 runtimeVersion.Val, splitDebugFilename.Val, emissionKind.Val, enums.Val,
Amjad Abouda9bcf162015-12-10 12:56:35 +00003826 retainedTypes.Val, subprograms.Val, globals.Val, imports.Val, macros.Val,
3827 dwoId.Val);
Duncan P. N. Exon Smithc1f1acc2015-02-13 01:25:10 +00003828 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003829}
Duncan P. N. Exon Smithc1f1acc2015-02-13 01:25:10 +00003830
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003831/// ParseDISubprogram:
3832/// ::= !DISubprogram(scope: !0, name: "foo", linkageName: "_Zfoo",
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003833/// file: !1, line: 7, type: !2, isLocal: false,
3834/// isDefinition: true, scopeLine: 8, containingType: !3,
Duncan P. N. Exon Smith890533e2015-02-13 01:28:16 +00003835/// virtuality: DW_VIRTUALTIY_pure_virtual,
3836/// virtualIndex: 10, flags: 11,
Peter Collingbourned4bff302015-11-05 22:03:56 +00003837/// isOptimized: false, templateParams: !4, declaration: !5,
3838/// variables: !6)
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003839bool LLParser::ParseDISubprogram(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith814b8e92015-08-28 20:26:49 +00003840 auto Loc = Lex.getLoc();
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003841#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
3842 OPTIONAL(scope, MDField, ); \
Duncan P. N. Exon Smith3eea1962015-03-16 19:01:54 +00003843 OPTIONAL(name, MDStringField, ); \
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003844 OPTIONAL(linkageName, MDStringField, ); \
3845 OPTIONAL(file, MDField, ); \
3846 OPTIONAL(line, LineField, ); \
3847 OPTIONAL(type, MDField, ); \
3848 OPTIONAL(isLocal, MDBoolField, ); \
3849 OPTIONAL(isDefinition, MDBoolField, (true)); \
3850 OPTIONAL(scopeLine, LineField, ); \
3851 OPTIONAL(containingType, MDField, ); \
Duncan P. N. Exon Smith890533e2015-02-13 01:28:16 +00003852 OPTIONAL(virtuality, DwarfVirtualityField, ); \
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003853 OPTIONAL(virtualIndex, MDUnsignedField, (0, UINT32_MAX)); \
Duncan P. N. Exon Smith70ab3d22015-02-21 01:02:18 +00003854 OPTIONAL(flags, DIFlagField, ); \
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003855 OPTIONAL(isOptimized, MDBoolField, ); \
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003856 OPTIONAL(templateParams, MDField, ); \
3857 OPTIONAL(declaration, MDField, ); \
3858 OPTIONAL(variables, MDField, );
3859 PARSE_MD_FIELDS();
3860#undef VISIT_MD_FIELDS
3861
Duncan P. N. Exon Smith814b8e92015-08-28 20:26:49 +00003862 if (isDefinition.Val && !IsDistinct)
3863 return Lex.Error(
3864 Loc,
3865 "missing 'distinct', required for !DISubprogram when 'isDefinition'");
3866
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003867 Result = GET_OR_DISTINCT(
Peter Collingbourned4bff302015-11-05 22:03:56 +00003868 DISubprogram,
3869 (Context, scope.Val, name.Val, linkageName.Val, file.Val, line.Val,
3870 type.Val, isLocal.Val, isDefinition.Val, scopeLine.Val,
3871 containingType.Val, virtuality.Val, virtualIndex.Val, flags.Val,
3872 isOptimized.Val, templateParams.Val, declaration.Val, variables.Val));
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003873 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003874}
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003875
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003876/// ParseDILexicalBlock:
3877/// ::= !DILexicalBlock(scope: !0, file: !2, line: 7, column: 9)
3878bool LLParser::ParseDILexicalBlock(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smitha96d4092015-02-13 01:29:28 +00003879#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith0e202b92015-03-30 16:37:48 +00003880 REQUIRED(scope, MDField, (/* AllowNull */ false)); \
Duncan P. N. Exon Smitha96d4092015-02-13 01:29:28 +00003881 OPTIONAL(file, MDField, ); \
3882 OPTIONAL(line, LineField, ); \
3883 OPTIONAL(column, ColumnField, );
3884 PARSE_MD_FIELDS();
3885#undef VISIT_MD_FIELDS
3886
3887 Result = GET_OR_DISTINCT(
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003888 DILexicalBlock, (Context, scope.Val, file.Val, line.Val, column.Val));
Duncan P. N. Exon Smitha96d4092015-02-13 01:29:28 +00003889 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003890}
Duncan P. N. Exon Smitha96d4092015-02-13 01:29:28 +00003891
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003892/// ParseDILexicalBlockFile:
3893/// ::= !DILexicalBlockFile(scope: !0, file: !2, discriminator: 9)
3894bool LLParser::ParseDILexicalBlockFile(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith06a07022015-02-13 01:30:42 +00003895#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith0e202b92015-03-30 16:37:48 +00003896 REQUIRED(scope, MDField, (/* AllowNull */ false)); \
Duncan P. N. Exon Smith06a07022015-02-13 01:30:42 +00003897 OPTIONAL(file, MDField, ); \
3898 REQUIRED(discriminator, MDUnsignedField, (0, UINT32_MAX));
3899 PARSE_MD_FIELDS();
3900#undef VISIT_MD_FIELDS
3901
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003902 Result = GET_OR_DISTINCT(DILexicalBlockFile,
Duncan P. N. Exon Smith06a07022015-02-13 01:30:42 +00003903 (Context, scope.Val, file.Val, discriminator.Val));
3904 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003905}
Duncan P. N. Exon Smith06a07022015-02-13 01:30:42 +00003906
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003907/// ParseDINamespace:
3908/// ::= !DINamespace(scope: !0, file: !2, name: "SomeNamespace", line: 9)
3909bool LLParser::ParseDINamespace(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smithe1460002015-02-13 01:32:09 +00003910#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
3911 REQUIRED(scope, MDField, ); \
3912 OPTIONAL(file, MDField, ); \
3913 OPTIONAL(name, MDStringField, ); \
3914 OPTIONAL(line, LineField, );
3915 PARSE_MD_FIELDS();
3916#undef VISIT_MD_FIELDS
3917
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003918 Result = GET_OR_DISTINCT(DINamespace,
Duncan P. N. Exon Smithe1460002015-02-13 01:32:09 +00003919 (Context, scope.Val, file.Val, name.Val, line.Val));
3920 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003921}
Duncan P. N. Exon Smithe1460002015-02-13 01:32:09 +00003922
Amjad Abouda9bcf162015-12-10 12:56:35 +00003923/// ParseDIMacro:
3924/// ::= !DIMacro(macinfo: type, line: 9, name: "SomeMacro", value: "SomeValue")
3925bool LLParser::ParseDIMacro(MDNode *&Result, bool IsDistinct) {
3926#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
3927 REQUIRED(type, DwarfMacinfoTypeField, ); \
3928 REQUIRED(line, LineField, ); \
3929 REQUIRED(name, MDStringField, ); \
3930 OPTIONAL(value, MDStringField, );
3931 PARSE_MD_FIELDS();
3932#undef VISIT_MD_FIELDS
3933
3934 Result = GET_OR_DISTINCT(DIMacro,
3935 (Context, type.Val, line.Val, name.Val, value.Val));
3936 return false;
3937}
3938
3939/// ParseDIMacroFile:
3940/// ::= !DIMacroFile(line: 9, file: !2, nodes: !3)
3941bool LLParser::ParseDIMacroFile(MDNode *&Result, bool IsDistinct) {
3942#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
3943 OPTIONAL(type, DwarfMacinfoTypeField, (dwarf::DW_MACINFO_start_file)); \
3944 REQUIRED(line, LineField, ); \
3945 REQUIRED(file, MDField, ); \
3946 OPTIONAL(nodes, MDField, );
3947 PARSE_MD_FIELDS();
3948#undef VISIT_MD_FIELDS
3949
3950 Result = GET_OR_DISTINCT(DIMacroFile,
3951 (Context, type.Val, line.Val, file.Val, nodes.Val));
3952 return false;
3953}
3954
3955
Adrian Prantlab1243f2015-06-29 23:03:47 +00003956/// ParseDIModule:
3957/// ::= !DIModule(scope: !0, name: "SomeModule", configMacros: "-DNDEBUG",
3958/// includePath: "/usr/include", isysroot: "/")
3959bool LLParser::ParseDIModule(MDNode *&Result, bool IsDistinct) {
3960#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
3961 REQUIRED(scope, MDField, ); \
3962 REQUIRED(name, MDStringField, ); \
3963 OPTIONAL(configMacros, MDStringField, ); \
3964 OPTIONAL(includePath, MDStringField, ); \
3965 OPTIONAL(isysroot, MDStringField, );
3966 PARSE_MD_FIELDS();
3967#undef VISIT_MD_FIELDS
3968
3969 Result = GET_OR_DISTINCT(DIModule, (Context, scope.Val, name.Val,
3970 configMacros.Val, includePath.Val, isysroot.Val));
3971 return false;
3972}
3973
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003974/// ParseDITemplateTypeParameter:
3975/// ::= !DITemplateTypeParameter(name: "Ty", type: !1)
3976bool LLParser::ParseDITemplateTypeParameter(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith2847f382015-02-13 01:34:32 +00003977#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith2847f382015-02-13 01:34:32 +00003978 OPTIONAL(name, MDStringField, ); \
3979 REQUIRED(type, MDField, );
3980 PARSE_MD_FIELDS();
3981#undef VISIT_MD_FIELDS
3982
Duncan P. N. Exon Smith3d62bba2015-02-19 00:37:21 +00003983 Result =
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003984 GET_OR_DISTINCT(DITemplateTypeParameter, (Context, name.Val, type.Val));
Duncan P. N. Exon Smith2847f382015-02-13 01:34:32 +00003985 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003986}
Duncan P. N. Exon Smith2847f382015-02-13 01:34:32 +00003987
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003988/// ParseDITemplateValueParameter:
3989/// ::= !DITemplateValueParameter(tag: DW_TAG_template_value_parameter,
Duncan P. N. Exon Smith3d62bba2015-02-19 00:37:21 +00003990/// name: "V", type: !1, value: i32 7)
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003991bool LLParser::ParseDITemplateValueParameter(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith2847f382015-02-13 01:34:32 +00003992#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith16d182a2015-02-28 23:21:38 +00003993 OPTIONAL(tag, DwarfTagField, (dwarf::DW_TAG_template_value_parameter)); \
Duncan P. N. Exon Smith2847f382015-02-13 01:34:32 +00003994 OPTIONAL(name, MDStringField, ); \
Duncan P. N. Exon Smith16d182a2015-02-28 23:21:38 +00003995 OPTIONAL(type, MDField, ); \
Duncan P. N. Exon Smith2847f382015-02-13 01:34:32 +00003996 REQUIRED(value, MDField, );
3997 PARSE_MD_FIELDS();
3998#undef VISIT_MD_FIELDS
3999
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004000 Result = GET_OR_DISTINCT(DITemplateValueParameter,
Duncan P. N. Exon Smith3d62bba2015-02-19 00:37:21 +00004001 (Context, tag.Val, name.Val, type.Val, value.Val));
Duncan P. N. Exon Smith2847f382015-02-13 01:34:32 +00004002 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00004003}
Duncan P. N. Exon Smith2847f382015-02-13 01:34:32 +00004004
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004005/// ParseDIGlobalVariable:
4006/// ::= !DIGlobalVariable(scope: !0, name: "foo", linkageName: "foo",
Duncan P. N. Exon Smithc8f810a2015-02-13 01:35:40 +00004007/// file: !1, line: 7, type: !2, isLocal: false,
4008/// isDefinition: true, variable: i32* @foo,
4009/// declaration: !3)
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004010bool LLParser::ParseDIGlobalVariable(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smithc8f810a2015-02-13 01:35:40 +00004011#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith94d58f82015-03-31 01:28:22 +00004012 REQUIRED(name, MDStringField, (/* AllowEmpty */ false)); \
Duncan P. N. Exon Smithc8f810a2015-02-13 01:35:40 +00004013 OPTIONAL(scope, MDField, ); \
Duncan P. N. Exon Smithc8f810a2015-02-13 01:35:40 +00004014 OPTIONAL(linkageName, MDStringField, ); \
4015 OPTIONAL(file, MDField, ); \
4016 OPTIONAL(line, LineField, ); \
4017 OPTIONAL(type, MDField, ); \
4018 OPTIONAL(isLocal, MDBoolField, ); \
4019 OPTIONAL(isDefinition, MDBoolField, (true)); \
4020 OPTIONAL(variable, MDConstant, ); \
4021 OPTIONAL(declaration, MDField, );
4022 PARSE_MD_FIELDS();
4023#undef VISIT_MD_FIELDS
4024
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004025 Result = GET_OR_DISTINCT(DIGlobalVariable,
Duncan P. N. Exon Smithc8f810a2015-02-13 01:35:40 +00004026 (Context, scope.Val, name.Val, linkageName.Val,
4027 file.Val, line.Val, type.Val, isLocal.Val,
4028 isDefinition.Val, variable.Val, declaration.Val));
4029 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00004030}
Duncan P. N. Exon Smithc8f810a2015-02-13 01:35:40 +00004031
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004032/// ParseDILocalVariable:
Duncan P. N. Exon Smithed013cd2015-07-31 18:58:39 +00004033/// ::= !DILocalVariable(arg: 7, scope: !0, name: "foo",
4034/// file: !1, line: 7, type: !2, arg: 2, flags: 7)
4035/// ::= !DILocalVariable(scope: !0, name: "foo",
Duncan P. N. Exon Smith62e0f452015-04-15 22:29:27 +00004036/// file: !1, line: 7, type: !2, arg: 2, flags: 7)
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004037bool LLParser::ParseDILocalVariable(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith72fe2d02015-02-13 01:39:44 +00004038#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smithe2c61d92015-03-27 17:56:39 +00004039 REQUIRED(scope, MDField, (/* AllowNull */ false)); \
Duncan P. N. Exon Smith72fe2d02015-02-13 01:39:44 +00004040 OPTIONAL(name, MDStringField, ); \
Duncan P. N. Exon Smithed013cd2015-07-31 18:58:39 +00004041 OPTIONAL(arg, MDUnsignedField, (0, UINT16_MAX)); \
Duncan P. N. Exon Smith72fe2d02015-02-13 01:39:44 +00004042 OPTIONAL(file, MDField, ); \
4043 OPTIONAL(line, LineField, ); \
4044 OPTIONAL(type, MDField, ); \
Duncan P. N. Exon Smith62e0f452015-04-15 22:29:27 +00004045 OPTIONAL(flags, DIFlagField, );
Duncan P. N. Exon Smith72fe2d02015-02-13 01:39:44 +00004046 PARSE_MD_FIELDS();
4047#undef VISIT_MD_FIELDS
4048
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004049 Result = GET_OR_DISTINCT(DILocalVariable,
Duncan P. N. Exon Smithed013cd2015-07-31 18:58:39 +00004050 (Context, scope.Val, name.Val, file.Val, line.Val,
4051 type.Val, arg.Val, flags.Val));
Duncan P. N. Exon Smith72fe2d02015-02-13 01:39:44 +00004052 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00004053}
Duncan P. N. Exon Smith72fe2d02015-02-13 01:39:44 +00004054
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004055/// ParseDIExpression:
4056/// ::= !DIExpression(0, 7, -1)
4057bool LLParser::ParseDIExpression(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith0c5c0122015-02-13 01:42:09 +00004058 assert(Lex.getKind() == lltok::MetadataVar && "Expected metadata type name");
4059 Lex.Lex();
4060
4061 if (ParseToken(lltok::lparen, "expected '(' here"))
4062 return true;
4063
4064 SmallVector<uint64_t, 8> Elements;
4065 if (Lex.getKind() != lltok::rparen)
4066 do {
4067 if (Lex.getKind() == lltok::DwarfOp) {
4068 if (unsigned Op = dwarf::getOperationEncoding(Lex.getStrVal())) {
4069 Lex.Lex();
4070 Elements.push_back(Op);
4071 continue;
4072 }
4073 return TokError(Twine("invalid DWARF op '") + Lex.getStrVal() + "'");
4074 }
4075
4076 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned())
4077 return TokError("expected unsigned integer");
4078
4079 auto &U = Lex.getAPSIntVal();
4080 if (U.ugt(UINT64_MAX))
4081 return TokError("element too large, limit is " + Twine(UINT64_MAX));
4082 Elements.push_back(U.getZExtValue());
4083 Lex.Lex();
4084 } while (EatIfPresent(lltok::comma));
4085
4086 if (ParseToken(lltok::rparen, "expected ')' here"))
4087 return true;
4088
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004089 Result = GET_OR_DISTINCT(DIExpression, (Context, Elements));
Duncan P. N. Exon Smith0c5c0122015-02-13 01:42:09 +00004090 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00004091}
Duncan P. N. Exon Smith0c5c0122015-02-13 01:42:09 +00004092
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004093/// ParseDIObjCProperty:
4094/// ::= !DIObjCProperty(name: "foo", file: !1, line: 7, setter: "setFoo",
Duncan P. N. Exon Smithd45ce962015-02-13 01:43:22 +00004095/// getter: "getFoo", attributes: 7, type: !2)
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004096bool LLParser::ParseDIObjCProperty(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smithd45ce962015-02-13 01:43:22 +00004097#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith3eea1962015-03-16 19:01:54 +00004098 OPTIONAL(name, MDStringField, ); \
Duncan P. N. Exon Smithd45ce962015-02-13 01:43:22 +00004099 OPTIONAL(file, MDField, ); \
4100 OPTIONAL(line, LineField, ); \
4101 OPTIONAL(setter, MDStringField, ); \
4102 OPTIONAL(getter, MDStringField, ); \
4103 OPTIONAL(attributes, MDUnsignedField, (0, UINT32_MAX)); \
4104 OPTIONAL(type, MDField, );
4105 PARSE_MD_FIELDS();
4106#undef VISIT_MD_FIELDS
4107
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004108 Result = GET_OR_DISTINCT(DIObjCProperty,
Duncan P. N. Exon Smithd45ce962015-02-13 01:43:22 +00004109 (Context, name.Val, file.Val, line.Val, setter.Val,
4110 getter.Val, attributes.Val, type.Val));
4111 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00004112}
Duncan P. N. Exon Smithd45ce962015-02-13 01:43:22 +00004113
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004114/// ParseDIImportedEntity:
4115/// ::= !DIImportedEntity(tag: DW_TAG_imported_module, scope: !0, entity: !1,
Duncan P. N. Exon Smith1c931162015-02-13 01:46:02 +00004116/// line: 7, name: "foo")
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004117bool LLParser::ParseDIImportedEntity(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith1c931162015-02-13 01:46:02 +00004118#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
4119 REQUIRED(tag, DwarfTagField, ); \
4120 REQUIRED(scope, MDField, ); \
4121 OPTIONAL(entity, MDField, ); \
4122 OPTIONAL(line, LineField, ); \
4123 OPTIONAL(name, MDStringField, );
4124 PARSE_MD_FIELDS();
4125#undef VISIT_MD_FIELDS
4126
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004127 Result = GET_OR_DISTINCT(DIImportedEntity, (Context, tag.Val, scope.Val,
Duncan P. N. Exon Smith1c931162015-02-13 01:46:02 +00004128 entity.Val, line.Val, name.Val));
4129 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00004130}
Duncan P. N. Exon Smith1c931162015-02-13 01:46:02 +00004131
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00004132#undef PARSE_MD_FIELD
Duncan P. N. Exon Smith2a6b5fc2015-01-19 23:44:41 +00004133#undef NOP_FIELD
4134#undef REQUIRE_FIELD
4135#undef DECLARE_FIELD
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00004136
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00004137/// ParseMetadataAsValue
4138/// ::= metadata i32 %local
4139/// ::= metadata i32 @global
4140/// ::= metadata i32 7
4141/// ::= metadata !0
4142/// ::= metadata !{...}
4143/// ::= metadata !"string"
4144bool LLParser::ParseMetadataAsValue(Value *&V, PerFunctionState &PFS) {
4145 // Note: the type 'metadata' has already been parsed.
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00004146 Metadata *MD;
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00004147 if (ParseMetadata(MD, &PFS))
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00004148 return true;
4149
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00004150 V = MetadataAsValue::get(Context, MD);
4151 return false;
4152}
4153
4154/// ParseValueAsMetadata
4155/// ::= i32 %local
4156/// ::= i32 @global
4157/// ::= i32 7
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00004158bool LLParser::ParseValueAsMetadata(Metadata *&MD, const Twine &TypeMsg,
4159 PerFunctionState *PFS) {
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00004160 Type *Ty;
4161 LocTy Loc;
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00004162 if (ParseType(Ty, TypeMsg, Loc))
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00004163 return true;
4164 if (Ty->isMetadataTy())
4165 return Error(Loc, "invalid metadata-value-metadata roundtrip");
4166
4167 Value *V;
4168 if (ParseValue(Ty, V, PFS))
4169 return true;
4170
4171 MD = ValueAsMetadata::get(V);
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00004172 return false;
4173}
4174
4175/// ParseMetadata
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00004176/// ::= i32 %local
4177/// ::= i32 @global
4178/// ::= i32 7
Dan Gohman8939ba332010-07-14 18:26:50 +00004179/// ::= !42
4180/// ::= !{...}
4181/// ::= !"string"
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004182/// ::= !DILocation(...)
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00004183bool LLParser::ParseMetadata(Metadata *&MD, PerFunctionState *PFS) {
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00004184 if (Lex.getKind() == lltok::MetadataVar) {
4185 MDNode *N;
4186 if (ParseSpecializedMDNode(N))
4187 return true;
4188 MD = N;
4189 return false;
4190 }
4191
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00004192 // ValueAsMetadata:
4193 // <type> <value>
4194 if (Lex.getKind() != lltok::exclaim)
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00004195 return ParseValueAsMetadata(MD, "expected metadata operand", PFS);
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00004196
4197 // '!'.
4198 assert(Lex.getKind() == lltok::exclaim && "Expected '!' here");
4199 Lex.Lex();
Dan Gohman8939ba332010-07-14 18:26:50 +00004200
Duncan P. N. Exon Smith62a79192015-01-12 22:24:50 +00004201 // MDString:
4202 // ::= '!' STRINGCONSTANT
4203 if (Lex.getKind() == lltok::StringConstant) {
4204 MDString *S;
4205 if (ParseMDString(S))
4206 return true;
4207 MD = S;
4208 return false;
4209 }
4210
Dan Gohman8939ba332010-07-14 18:26:50 +00004211 // MDNode:
4212 // !{ ... }
Duncan P. N. Exon Smithf825dae2015-01-12 22:26:48 +00004213 // !7
Duncan P. N. Exon Smith62a79192015-01-12 22:24:50 +00004214 MDNode *N;
Duncan P. N. Exon Smithf825dae2015-01-12 22:26:48 +00004215 if (ParseMDNodeTail(N))
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00004216 return true;
Duncan P. N. Exon Smith62a79192015-01-12 22:24:50 +00004217 MD = N;
Dan Gohman8939ba332010-07-14 18:26:50 +00004218 return false;
4219}
4220
Victor Hernandez9d75c962010-01-11 22:31:58 +00004221
4222//===----------------------------------------------------------------------===//
4223// Function Parsing.
4224//===----------------------------------------------------------------------===//
4225
Chris Lattner229907c2011-07-18 04:54:35 +00004226bool LLParser::ConvertValIDToValue(Type *Ty, ValID &ID, Value *&V,
David Majnemer8a1c45d2015-12-12 05:38:55 +00004227 PerFunctionState *PFS) {
Duncan Sands19d0b472010-02-16 11:11:14 +00004228 if (Ty->isFunctionTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00004229 return Error(ID.Loc, "functions are not values, refer to them as pointers");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004230
Chris Lattnerac161bf2009-01-02 07:01:27 +00004231 switch (ID.Kind) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00004232 case ValID::t_LocalID:
Victor Hernandez9d75c962010-01-11 22:31:58 +00004233 if (!PFS) return Error(ID.Loc, "invalid use of function-local name");
David Majnemer8a1c45d2015-12-12 05:38:55 +00004234 V = PFS->GetVal(ID.UIntVal, Ty, ID.Loc);
Craig Topper2617dcc2014-04-15 06:32:26 +00004235 return V == nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004236 case ValID::t_LocalName:
Victor Hernandez9d75c962010-01-11 22:31:58 +00004237 if (!PFS) return Error(ID.Loc, "invalid use of function-local name");
David Majnemer8a1c45d2015-12-12 05:38:55 +00004238 V = PFS->GetVal(ID.StrVal, Ty, ID.Loc);
Craig Topper2617dcc2014-04-15 06:32:26 +00004239 return V == nullptr;
Victor Hernandez9d75c962010-01-11 22:31:58 +00004240 case ValID::t_InlineAsm: {
Karl Schimpf44876c52015-09-03 16:18:32 +00004241 if (!ID.FTy || !InlineAsm::Verify(ID.FTy, ID.StrVal2))
Victor Hernandez9d75c962010-01-11 22:31:58 +00004242 return Error(ID.Loc, "invalid type for inline asm constraint string");
David Blaikie41ba2b42015-07-27 23:32:19 +00004243 V = InlineAsm::get(ID.FTy, ID.StrVal, ID.StrVal2, ID.UIntVal & 1,
4244 (ID.UIntVal >> 1) & 1,
4245 (InlineAsm::AsmDialect(ID.UIntVal >> 2)));
Victor Hernandez9d75c962010-01-11 22:31:58 +00004246 return false;
4247 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00004248 case ValID::t_GlobalName:
4249 V = GetGlobalVal(ID.StrVal, Ty, ID.Loc);
Craig Topper2617dcc2014-04-15 06:32:26 +00004250 return V == nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004251 case ValID::t_GlobalID:
4252 V = GetGlobalVal(ID.UIntVal, Ty, ID.Loc);
Craig Topper2617dcc2014-04-15 06:32:26 +00004253 return V == nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004254 case ValID::t_APSInt:
Duncan Sands19d0b472010-02-16 11:11:14 +00004255 if (!Ty->isIntegerTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00004256 return Error(ID.Loc, "integer constant must have integer type");
Jay Foad583abbc2010-12-07 08:25:19 +00004257 ID.APSIntVal = ID.APSIntVal.extOrTrunc(Ty->getPrimitiveSizeInBits());
Owen Andersonedb4a702009-07-24 23:12:02 +00004258 V = ConstantInt::get(Context, ID.APSIntVal);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004259 return false;
4260 case ValID::t_APFloat:
Duncan Sands9dff9be2010-02-15 16:12:20 +00004261 if (!Ty->isFloatingPointTy() ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00004262 !ConstantFP::isValueValidForType(Ty, ID.APFloatVal))
4263 return Error(ID.Loc, "floating point constant invalid for type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004264
Dan Gohman518cda42011-12-17 00:04:22 +00004265 // The lexer has no type info, so builds all half, float, and double FP
4266 // constants as double. Fix this here. Long double does not need this.
4267 if (&ID.APFloatVal.getSemantics() == &APFloat::IEEEdouble) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00004268 bool Ignored;
Dan Gohman518cda42011-12-17 00:04:22 +00004269 if (Ty->isHalfTy())
4270 ID.APFloatVal.convert(APFloat::IEEEhalf, APFloat::rmNearestTiesToEven,
4271 &Ignored);
4272 else if (Ty->isFloatTy())
4273 ID.APFloatVal.convert(APFloat::IEEEsingle, APFloat::rmNearestTiesToEven,
4274 &Ignored);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004275 }
Owen Anderson69c464d2009-07-27 20:59:43 +00004276 V = ConstantFP::get(Context, ID.APFloatVal);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004277
Chris Lattner8f57d29e2009-01-05 18:24:23 +00004278 if (V->getType() != Ty)
4279 return Error(ID.Loc, "floating point constant does not have type '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00004280 getTypeString(Ty) + "'");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004281
Chris Lattnerac161bf2009-01-02 07:01:27 +00004282 return false;
4283 case ValID::t_Null:
Duncan Sands19d0b472010-02-16 11:11:14 +00004284 if (!Ty->isPointerTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00004285 return Error(ID.Loc, "null must be a pointer type");
Owen Andersonb292b8c2009-07-30 23:03:37 +00004286 V = ConstantPointerNull::get(cast<PointerType>(Ty));
Chris Lattnerac161bf2009-01-02 07:01:27 +00004287 return false;
4288 case ValID::t_Undef:
Chris Lattnerffa07782009-01-05 08:13:38 +00004289 // FIXME: LabelTy should not be a first-class type.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004290 if (!Ty->isFirstClassType() || Ty->isLabelTy())
Chris Lattnerffa07782009-01-05 08:13:38 +00004291 return Error(ID.Loc, "invalid type for undef constant");
Owen Andersonb292b8c2009-07-30 23:03:37 +00004292 V = UndefValue::get(Ty);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004293 return false;
Chris Lattner998fa0a2009-01-05 07:52:51 +00004294 case ValID::t_EmptyArray:
Duncan Sands19d0b472010-02-16 11:11:14 +00004295 if (!Ty->isArrayTy() || cast<ArrayType>(Ty)->getNumElements() != 0)
Chris Lattner998fa0a2009-01-05 07:52:51 +00004296 return Error(ID.Loc, "invalid empty array initializer");
Owen Andersonb292b8c2009-07-30 23:03:37 +00004297 V = UndefValue::get(Ty);
Chris Lattner998fa0a2009-01-05 07:52:51 +00004298 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004299 case ValID::t_Zero:
Chris Lattnerffa07782009-01-05 08:13:38 +00004300 // FIXME: LabelTy should not be a first-class type.
Chris Lattnerfdd87902009-10-05 05:54:46 +00004301 if (!Ty->isFirstClassType() || Ty->isLabelTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00004302 return Error(ID.Loc, "invalid type for null constant");
Owen Anderson5a1acd92009-07-31 20:28:14 +00004303 V = Constant::getNullValue(Ty);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004304 return false;
David Majnemerf0f224d2015-11-11 21:57:16 +00004305 case ValID::t_None:
4306 if (!Ty->isTokenTy())
4307 return Error(ID.Loc, "invalid type for none constant");
4308 V = Constant::getNullValue(Ty);
4309 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004310 case ValID::t_Constant:
Chris Lattner13ee7952010-08-28 04:09:24 +00004311 if (ID.ConstantVal->getType() != Ty)
Chris Lattnerac161bf2009-01-02 07:01:27 +00004312 return Error(ID.Loc, "constant expression type mismatch");
Chris Lattner392be582010-02-12 20:49:41 +00004313
Chris Lattnerac161bf2009-01-02 07:01:27 +00004314 V = ID.ConstantVal;
4315 return false;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004316 case ValID::t_ConstantStruct:
4317 case ValID::t_PackedConstantStruct:
Chris Lattner229907c2011-07-18 04:54:35 +00004318 if (StructType *ST = dyn_cast<StructType>(Ty)) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004319 if (ST->getNumElements() != ID.UIntVal)
4320 return Error(ID.Loc,
4321 "initializer with struct type has wrong # elements");
4322 if (ST->isPacked() != (ID.Kind == ValID::t_PackedConstantStruct))
4323 return Error(ID.Loc, "packed'ness of initializer and type don't match");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004324
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004325 // Verify that the elements are compatible with the structtype.
4326 for (unsigned i = 0, e = ID.UIntVal; i != e; ++i)
4327 if (ID.ConstantStructElts[i]->getType() != ST->getElementType(i))
4328 return Error(ID.Loc, "element " + Twine(i) +
4329 " of struct initializer doesn't match struct element type");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004330
David Blaikieadbda4b2015-08-03 20:08:41 +00004331 V = ConstantStruct::get(
4332 ST, makeArrayRef(ID.ConstantStructElts.get(), ID.UIntVal));
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004333 } else
4334 return Error(ID.Loc, "constant expression type mismatch");
4335 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004336 }
Chandler Carruthf3e85022012-01-10 18:08:01 +00004337 llvm_unreachable("Invalid ValID");
Chris Lattnerac161bf2009-01-02 07:01:27 +00004338}
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004339
Alex Lorenzd2255952015-07-17 22:07:03 +00004340bool LLParser::parseConstantValue(Type *Ty, Constant *&C) {
4341 C = nullptr;
4342 ValID ID;
4343 auto Loc = Lex.getLoc();
4344 if (ParseValID(ID, /*PFS=*/nullptr))
4345 return true;
4346 switch (ID.Kind) {
4347 case ValID::t_APSInt:
4348 case ValID::t_APFloat:
Alex Lorenzb9a68db2015-09-09 13:44:33 +00004349 case ValID::t_Undef:
Alex Lorenzd2255952015-07-17 22:07:03 +00004350 case ValID::t_Constant:
4351 case ValID::t_ConstantStruct:
4352 case ValID::t_PackedConstantStruct: {
4353 Value *V;
4354 if (ConvertValIDToValue(Ty, ID, V, /*PFS=*/nullptr))
4355 return true;
4356 assert(isa<Constant>(V) && "Expected a constant value");
4357 C = cast<Constant>(V);
4358 return false;
4359 }
4360 default:
4361 return Error(Loc, "expected a constant value");
4362 }
4363}
4364
David Majnemer8a1c45d2015-12-12 05:38:55 +00004365bool LLParser::ParseValue(Type *Ty, Value *&V, PerFunctionState *PFS) {
Craig Topper2617dcc2014-04-15 06:32:26 +00004366 V = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004367 ValID ID;
David Majnemer8a1c45d2015-12-12 05:38:55 +00004368 return ParseValID(ID, PFS) || ConvertValIDToValue(Ty, ID, V, PFS);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004369}
4370
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004371bool LLParser::ParseTypeAndValue(Value *&V, PerFunctionState *PFS) {
Craig Topper2617dcc2014-04-15 06:32:26 +00004372 Type *Ty = nullptr;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004373 return ParseType(Ty) ||
4374 ParseValue(Ty, V, PFS);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004375}
4376
Chris Lattner3ed871f2009-10-27 19:13:16 +00004377bool LLParser::ParseTypeAndBasicBlock(BasicBlock *&BB, LocTy &Loc,
4378 PerFunctionState &PFS) {
4379 Value *V;
4380 Loc = Lex.getLoc();
4381 if (ParseTypeAndValue(V, PFS)) return true;
4382 if (!isa<BasicBlock>(V))
4383 return Error(Loc, "expected a basic block");
4384 BB = cast<BasicBlock>(V);
4385 return false;
4386}
4387
4388
Chris Lattnerac161bf2009-01-02 07:01:27 +00004389/// FunctionHeader
4390/// ::= OptionalLinkage OptionalVisibility OptionalCallingConv OptRetAttrs
Rafael Espindola45e6c192011-01-08 16:42:36 +00004391/// OptUnnamedAddr Type GlobalName '(' ArgList ')' OptFuncAttrs OptSection
David Majnemer7fddecc2015-06-17 20:52:32 +00004392/// OptionalAlign OptGC OptionalPrefix OptionalPrologue OptPersonalityFn
Chris Lattnerac161bf2009-01-02 07:01:27 +00004393bool LLParser::ParseFunctionHeader(Function *&Fn, bool isDefine) {
4394 // Parse the linkage.
4395 LocTy LinkageLoc = Lex.getLoc();
4396 unsigned Linkage;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004397
Kostya Serebryanya5054ad2012-01-20 17:56:17 +00004398 unsigned Visibility;
Nico Rieck7157bb72014-01-14 15:22:47 +00004399 unsigned DLLStorageClass;
Bill Wendling50d27842012-10-15 20:35:56 +00004400 AttrBuilder RetAttrs;
Alexey Samsonov17a9cff2014-09-10 18:00:17 +00004401 unsigned CC;
Craig Topper2617dcc2014-04-15 06:32:26 +00004402 Type *RetType = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004403 LocTy RetTypeLoc = Lex.getLoc();
4404 if (ParseOptionalLinkage(Linkage) ||
4405 ParseOptionalVisibility(Visibility) ||
Nico Rieck7157bb72014-01-14 15:22:47 +00004406 ParseOptionalDLLStorageClass(DLLStorageClass) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00004407 ParseOptionalCallingConv(CC) ||
Bill Wendling34c2eb22012-12-04 23:40:58 +00004408 ParseOptionalReturnAttrs(RetAttrs) ||
Chris Lattnerf880ca22009-03-09 04:49:14 +00004409 ParseType(RetType, RetTypeLoc, true /*void allowed*/))
Chris Lattnerac161bf2009-01-02 07:01:27 +00004410 return true;
4411
4412 // Verify that the linkage is ok.
4413 switch ((GlobalValue::LinkageTypes)Linkage) {
4414 case GlobalValue::ExternalLinkage:
4415 break; // always ok.
Duncan Sandse2881052009-03-11 08:08:06 +00004416 case GlobalValue::ExternalWeakLinkage:
Chris Lattnerac161bf2009-01-02 07:01:27 +00004417 if (isDefine)
4418 return Error(LinkageLoc, "invalid linkage for function definition");
4419 break;
Rafael Espindola6de96a12009-01-15 20:18:42 +00004420 case GlobalValue::PrivateLinkage:
Chris Lattnerac161bf2009-01-02 07:01:27 +00004421 case GlobalValue::InternalLinkage:
Nick Lewycky8019af62009-04-13 07:02:02 +00004422 case GlobalValue::AvailableExternallyLinkage:
Duncan Sands12da8ce2009-03-07 15:45:40 +00004423 case GlobalValue::LinkOnceAnyLinkage:
4424 case GlobalValue::LinkOnceODRLinkage:
4425 case GlobalValue::WeakAnyLinkage:
4426 case GlobalValue::WeakODRLinkage:
Chris Lattnerac161bf2009-01-02 07:01:27 +00004427 if (!isDefine)
4428 return Error(LinkageLoc, "invalid linkage for function declaration");
4429 break;
4430 case GlobalValue::AppendingLinkage:
Duncan Sands4581beb2009-03-11 20:14:15 +00004431 case GlobalValue::CommonLinkage:
Chris Lattnerac161bf2009-01-02 07:01:27 +00004432 return Error(LinkageLoc, "invalid function linkage type");
4433 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004434
Duncan P. N. Exon Smithb80de102014-05-07 22:57:20 +00004435 if (!isValidVisibilityForLinkage(Visibility, Linkage))
4436 return Error(LinkageLoc,
4437 "symbol with local linkage must have default visibility");
4438
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004439 if (!FunctionType::isValidReturnType(RetType))
Chris Lattnerac161bf2009-01-02 07:01:27 +00004440 return Error(RetTypeLoc, "invalid function return type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004441
Chris Lattnerac161bf2009-01-02 07:01:27 +00004442 LocTy NameLoc = Lex.getLoc();
Chris Lattner778c62c2009-02-18 21:48:13 +00004443
4444 std::string FunctionName;
4445 if (Lex.getKind() == lltok::GlobalVar) {
4446 FunctionName = Lex.getStrVal();
4447 } else if (Lex.getKind() == lltok::GlobalID) { // @42 is ok.
4448 unsigned NameID = Lex.getUIntVal();
4449
4450 if (NameID != NumberedVals.size())
4451 return TokError("function expected to be numbered '%" +
Benjamin Kramerc7583112010-09-27 17:42:11 +00004452 Twine(NumberedVals.size()) + "'");
Chris Lattner778c62c2009-02-18 21:48:13 +00004453 } else {
4454 return TokError("expected function name");
4455 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004456
Chris Lattner3822f632009-01-02 08:05:26 +00004457 Lex.Lex();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004458
Chris Lattner3822f632009-01-02 08:05:26 +00004459 if (Lex.getKind() != lltok::lparen)
Chris Lattnerac161bf2009-01-02 07:01:27 +00004460 return TokError("expected '(' in function argument list");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004461
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004462 SmallVector<ArgInfo, 8> ArgList;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004463 bool isVarArg;
Bill Wendling50d27842012-10-15 20:35:56 +00004464 AttrBuilder FuncAttrs;
Bill Wendlingb32b0412013-02-08 06:32:06 +00004465 std::vector<unsigned> FwdRefAttrGrps;
Michael Gottesman41748d72013-06-27 00:25:01 +00004466 LocTy BuiltinLoc;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004467 std::string Section;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004468 unsigned Alignment;
Chris Lattner3822f632009-01-02 08:05:26 +00004469 std::string GC;
Rafael Espindola563eb4b2011-01-25 19:09:56 +00004470 bool UnnamedAddr;
4471 LocTy UnnamedAddrLoc;
Craig Topper2617dcc2014-04-15 06:32:26 +00004472 Constant *Prefix = nullptr;
Peter Collingbourne51d2de72014-12-03 02:08:38 +00004473 Constant *Prologue = nullptr;
David Majnemer7fddecc2015-06-17 20:52:32 +00004474 Constant *PersonalityFn = nullptr;
David Majnemerdad0a642014-06-27 18:19:56 +00004475 Comdat *C;
Chris Lattner3822f632009-01-02 08:05:26 +00004476
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004477 if (ParseArgumentList(ArgList, isVarArg) ||
Rafael Espindola563eb4b2011-01-25 19:09:56 +00004478 ParseOptionalToken(lltok::kw_unnamed_addr, UnnamedAddr,
4479 &UnnamedAddrLoc) ||
Bill Wendling09bd1f72013-02-22 00:12:35 +00004480 ParseFnAttributeValuePairs(FuncAttrs, FwdRefAttrGrps, false,
Michael Gottesman41748d72013-06-27 00:25:01 +00004481 BuiltinLoc) ||
Chris Lattner3822f632009-01-02 08:05:26 +00004482 (EatIfPresent(lltok::kw_section) &&
4483 ParseStringConstant(Section)) ||
Rafael Espindola83a362c2015-01-06 22:55:16 +00004484 parseOptionalComdat(FunctionName, C) ||
Chris Lattner3822f632009-01-02 08:05:26 +00004485 ParseOptionalAlignment(Alignment) ||
4486 (EatIfPresent(lltok::kw_gc) &&
Peter Collingbourne3fa50f92013-09-16 01:08:15 +00004487 ParseStringConstant(GC)) ||
4488 (EatIfPresent(lltok::kw_prefix) &&
Peter Collingbourne51d2de72014-12-03 02:08:38 +00004489 ParseGlobalTypeAndValue(Prefix)) ||
4490 (EatIfPresent(lltok::kw_prologue) &&
David Majnemer7fddecc2015-06-17 20:52:32 +00004491 ParseGlobalTypeAndValue(Prologue)) ||
4492 (EatIfPresent(lltok::kw_personality) &&
4493 ParseGlobalTypeAndValue(PersonalityFn)))
Chris Lattner3822f632009-01-02 08:05:26 +00004494 return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004495
Michael Gottesman41748d72013-06-27 00:25:01 +00004496 if (FuncAttrs.contains(Attribute::Builtin))
4497 return Error(BuiltinLoc, "'builtin' attribute not valid on function");
Bill Wendling09bd1f72013-02-22 00:12:35 +00004498
Chris Lattnerac161bf2009-01-02 07:01:27 +00004499 // If the alignment was parsed as an attribute, move to the alignment field.
Bill Wendlingc6daefa2012-10-08 23:27:46 +00004500 if (FuncAttrs.hasAlignmentAttr()) {
Bill Wendling9be77592012-09-21 15:26:31 +00004501 Alignment = FuncAttrs.getAlignment();
Bill Wendling3d7b0b82012-12-19 07:18:57 +00004502 FuncAttrs.removeAttribute(Attribute::Alignment);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004503 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004504
Chris Lattnerac161bf2009-01-02 07:01:27 +00004505 // Okay, if we got here, the function is syntactically valid. Convert types
4506 // and do semantic checks.
Jay Foadb804a2b2011-07-12 14:06:48 +00004507 std::vector<Type*> ParamTypeList;
Bill Wendlingf5075a42013-01-27 02:24:02 +00004508 SmallVector<AttributeSet, 8> Attrs;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004509
Bill Wendling3bef2dd2012-09-19 23:54:18 +00004510 if (RetAttrs.hasAttributes())
Bill Wendlingf5075a42013-01-27 02:24:02 +00004511 Attrs.push_back(AttributeSet::get(RetType->getContext(),
4512 AttributeSet::ReturnIndex,
4513 RetAttrs));
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004514
Chris Lattnerac161bf2009-01-02 07:01:27 +00004515 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004516 ParamTypeList.push_back(ArgList[i].Ty);
Bill Wendlingfe0021a2013-01-31 00:29:54 +00004517 if (ArgList[i].Attrs.hasAttributes(i + 1)) {
4518 AttrBuilder B(ArgList[i].Attrs, i + 1);
Bill Wendlingf5075a42013-01-27 02:24:02 +00004519 Attrs.push_back(AttributeSet::get(RetType->getContext(), i + 1, B));
4520 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00004521 }
4522
Bill Wendling3bef2dd2012-09-19 23:54:18 +00004523 if (FuncAttrs.hasAttributes())
Bill Wendlingf5075a42013-01-27 02:24:02 +00004524 Attrs.push_back(AttributeSet::get(RetType->getContext(),
4525 AttributeSet::FunctionIndex,
4526 FuncAttrs));
Chris Lattnerac161bf2009-01-02 07:01:27 +00004527
Bill Wendlinge94d8432012-12-07 23:16:57 +00004528 AttributeSet PAL = AttributeSet::get(Context, Attrs);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004529
Bill Wendling749a43d2012-12-30 13:50:49 +00004530 if (PAL.hasAttribute(1, Attribute::StructRet) && !RetType->isVoidTy())
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004531 return Error(RetTypeLoc, "functions with 'sret' argument must return void");
4532
Chris Lattner229907c2011-07-18 04:54:35 +00004533 FunctionType *FT =
Owen Anderson4056ca92009-07-29 22:17:13 +00004534 FunctionType::get(RetType, ParamTypeList, isVarArg);
Chris Lattner229907c2011-07-18 04:54:35 +00004535 PointerType *PFT = PointerType::getUnqual(FT);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004536
Craig Topper2617dcc2014-04-15 06:32:26 +00004537 Fn = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004538 if (!FunctionName.empty()) {
4539 // If this was a definition of a forward reference, remove the definition
4540 // from the forward reference table and fill in the forward ref.
David Blaikie9ebdc692015-09-21 21:07:50 +00004541 auto FRVI = ForwardRefVals.find(FunctionName);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004542 if (FRVI != ForwardRefVals.end()) {
4543 Fn = M->getFunction(FunctionName);
Nick Lewycky686d7cb2012-10-11 00:38:25 +00004544 if (!Fn)
4545 return Error(FRVI->second.second, "invalid forward reference to "
4546 "function as global value!");
Chris Lattnerc239eb72010-04-20 04:49:11 +00004547 if (Fn->getType() != PFT)
4548 return Error(FRVI->second.second, "invalid forward reference to "
4549 "function '" + FunctionName + "' with wrong type!");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004550
Chris Lattnerac161bf2009-01-02 07:01:27 +00004551 ForwardRefVals.erase(FRVI);
4552 } else if ((Fn = M->getFunction(FunctionName))) {
Chris Lattner5756c162011-06-17 07:06:44 +00004553 // Reject redefinitions.
4554 return Error(NameLoc, "invalid redefinition of function '" +
4555 FunctionName + "'");
Chris Lattnere38317f2009-10-25 23:22:50 +00004556 } else if (M->getNamedValue(FunctionName)) {
4557 return Error(NameLoc, "redefinition of function '@" + FunctionName + "'");
Chris Lattnerac161bf2009-01-02 07:01:27 +00004558 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004559
Dan Gohman399d6ae2009-08-29 23:37:49 +00004560 } else {
Chris Lattnerac161bf2009-01-02 07:01:27 +00004561 // If this is a definition of a forward referenced function, make sure the
4562 // types agree.
David Blaikie9ebdc692015-09-21 21:07:50 +00004563 auto I = ForwardRefValIDs.find(NumberedVals.size());
Chris Lattnerac161bf2009-01-02 07:01:27 +00004564 if (I != ForwardRefValIDs.end()) {
4565 Fn = cast<Function>(I->second.first);
4566 if (Fn->getType() != PFT)
4567 return Error(NameLoc, "type of definition and forward reference of '@" +
Benjamin Kramerc7583112010-09-27 17:42:11 +00004568 Twine(NumberedVals.size()) + "' disagree");
Chris Lattnerac161bf2009-01-02 07:01:27 +00004569 ForwardRefValIDs.erase(I);
4570 }
4571 }
4572
Craig Topper2617dcc2014-04-15 06:32:26 +00004573 if (!Fn)
Chris Lattnerac161bf2009-01-02 07:01:27 +00004574 Fn = Function::Create(FT, GlobalValue::ExternalLinkage, FunctionName, M);
4575 else // Move the forward-reference to the correct spot in the module.
4576 M->getFunctionList().splice(M->end(), M->getFunctionList(), Fn);
4577
4578 if (FunctionName.empty())
4579 NumberedVals.push_back(Fn);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004580
Chris Lattnerac161bf2009-01-02 07:01:27 +00004581 Fn->setLinkage((GlobalValue::LinkageTypes)Linkage);
4582 Fn->setVisibility((GlobalValue::VisibilityTypes)Visibility);
Nico Rieck7157bb72014-01-14 15:22:47 +00004583 Fn->setDLLStorageClass((GlobalValue::DLLStorageClassTypes)DLLStorageClass);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004584 Fn->setCallingConv(CC);
4585 Fn->setAttributes(PAL);
Rafael Espindola45e6c192011-01-08 16:42:36 +00004586 Fn->setUnnamedAddr(UnnamedAddr);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004587 Fn->setAlignment(Alignment);
4588 Fn->setSection(Section);
David Majnemerdad0a642014-06-27 18:19:56 +00004589 Fn->setComdat(C);
David Majnemer7fddecc2015-06-17 20:52:32 +00004590 Fn->setPersonalityFn(PersonalityFn);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004591 if (!GC.empty()) Fn->setGC(GC.c_str());
Peter Collingbourne3fa50f92013-09-16 01:08:15 +00004592 Fn->setPrefixData(Prefix);
Peter Collingbourne51d2de72014-12-03 02:08:38 +00004593 Fn->setPrologueData(Prologue);
Bill Wendlingb32b0412013-02-08 06:32:06 +00004594 ForwardRefAttrGroups[Fn] = FwdRefAttrGrps;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004595
Chris Lattnerac161bf2009-01-02 07:01:27 +00004596 // Add all of the arguments we parsed to the function.
4597 Function::arg_iterator ArgIt = Fn->arg_begin();
4598 for (unsigned i = 0, e = ArgList.size(); i != e; ++i, ++ArgIt) {
4599 // If the argument has a name, insert it into the argument symbol table.
4600 if (ArgList[i].Name.empty()) continue;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004601
Chris Lattnerac161bf2009-01-02 07:01:27 +00004602 // Set the name, if it conflicted, it will be auto-renamed.
4603 ArgIt->setName(ArgList[i].Name);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004604
Benjamin Kramer1dc34b42010-10-16 11:28:23 +00004605 if (ArgIt->getName() != ArgList[i].Name)
Chris Lattnerac161bf2009-01-02 07:01:27 +00004606 return Error(ArgList[i].Loc, "redefinition of argument '%" +
4607 ArgList[i].Name + "'");
4608 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004609
Duncan P. N. Exon Smith17169902014-08-19 00:13:19 +00004610 if (isDefine)
4611 return false;
4612
Robin Morisset039781e2014-08-29 21:53:01 +00004613 // Check the declaration has no block address forward references.
Duncan P. N. Exon Smith17169902014-08-19 00:13:19 +00004614 ValID ID;
4615 if (FunctionName.empty()) {
4616 ID.Kind = ValID::t_GlobalID;
4617 ID.UIntVal = NumberedVals.size() - 1;
4618 } else {
4619 ID.Kind = ValID::t_GlobalName;
4620 ID.StrVal = FunctionName;
4621 }
4622 auto Blocks = ForwardRefBlockAddresses.find(ID);
4623 if (Blocks != ForwardRefBlockAddresses.end())
4624 return Error(Blocks->first.Loc,
4625 "cannot take blockaddress inside a declaration");
Chris Lattnerac161bf2009-01-02 07:01:27 +00004626 return false;
4627}
4628
Duncan P. N. Exon Smith17169902014-08-19 00:13:19 +00004629bool LLParser::PerFunctionState::resolveForwardRefBlockAddresses() {
4630 ValID ID;
4631 if (FunctionNumber == -1) {
4632 ID.Kind = ValID::t_GlobalName;
4633 ID.StrVal = F.getName();
4634 } else {
4635 ID.Kind = ValID::t_GlobalID;
4636 ID.UIntVal = FunctionNumber;
4637 }
4638
4639 auto Blocks = P.ForwardRefBlockAddresses.find(ID);
4640 if (Blocks == P.ForwardRefBlockAddresses.end())
4641 return false;
4642
4643 for (const auto &I : Blocks->second) {
4644 const ValID &BBID = I.first;
4645 GlobalValue *GV = I.second;
4646
4647 assert((BBID.Kind == ValID::t_LocalID || BBID.Kind == ValID::t_LocalName) &&
4648 "Expected local id or name");
4649 BasicBlock *BB;
4650 if (BBID.Kind == ValID::t_LocalName)
4651 BB = GetBB(BBID.StrVal, BBID.Loc);
4652 else
4653 BB = GetBB(BBID.UIntVal, BBID.Loc);
4654 if (!BB)
4655 return P.Error(BBID.Loc, "referenced value is not a basic block");
4656
4657 GV->replaceAllUsesWith(BlockAddress::get(&F, BB));
4658 GV->eraseFromParent();
4659 }
4660
4661 P.ForwardRefBlockAddresses.erase(Blocks);
4662 return false;
4663}
Chris Lattnerac161bf2009-01-02 07:01:27 +00004664
4665/// ParseFunctionBody
Duncan P. N. Exon Smith0a448fb2014-08-19 21:30:15 +00004666/// ::= '{' BasicBlock+ UseListOrderDirective* '}'
Chris Lattnerac161bf2009-01-02 07:01:27 +00004667bool LLParser::ParseFunctionBody(Function &Fn) {
Chris Lattner4649a732011-06-17 06:42:57 +00004668 if (Lex.getKind() != lltok::lbrace)
Chris Lattnerac161bf2009-01-02 07:01:27 +00004669 return TokError("expected '{' in function body");
4670 Lex.Lex(); // eat the {.
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004671
Chris Lattner3432c622009-10-28 03:39:23 +00004672 int FunctionNumber = -1;
4673 if (!Fn.hasName()) FunctionNumber = NumberedVals.size()-1;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004674
Chris Lattner3432c622009-10-28 03:39:23 +00004675 PerFunctionState PFS(*this, Fn, FunctionNumber);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004676
Duncan P. N. Exon Smith17169902014-08-19 00:13:19 +00004677 // Resolve block addresses and allow basic blocks to be forward-declared
4678 // within this function.
4679 if (PFS.resolveForwardRefBlockAddresses())
4680 return true;
4681 SaveAndRestore<PerFunctionState *> ScopeExit(BlockAddressPFS, &PFS);
4682
Chris Lattnerbbddd962010-01-09 19:20:07 +00004683 // We need at least one basic block.
Duncan P. N. Exon Smith0a448fb2014-08-19 21:30:15 +00004684 if (Lex.getKind() == lltok::rbrace || Lex.getKind() == lltok::kw_uselistorder)
Chris Lattnerbbddd962010-01-09 19:20:07 +00004685 return TokError("function body requires at least one basic block");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004686
Duncan P. N. Exon Smith0a448fb2014-08-19 21:30:15 +00004687 while (Lex.getKind() != lltok::rbrace &&
4688 Lex.getKind() != lltok::kw_uselistorder)
Chris Lattnerac161bf2009-01-02 07:01:27 +00004689 if (ParseBasicBlock(PFS)) return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004690
Duncan P. N. Exon Smith0a448fb2014-08-19 21:30:15 +00004691 while (Lex.getKind() != lltok::rbrace)
4692 if (ParseUseListOrder(&PFS))
4693 return true;
4694
Chris Lattnerac161bf2009-01-02 07:01:27 +00004695 // Eat the }.
4696 Lex.Lex();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004697
Chris Lattnerac161bf2009-01-02 07:01:27 +00004698 // Verify function is ok.
Chris Lattner3432c622009-10-28 03:39:23 +00004699 return PFS.FinishFunction();
Chris Lattnerac161bf2009-01-02 07:01:27 +00004700}
4701
4702/// ParseBasicBlock
4703/// ::= LabelStr? Instruction*
4704bool LLParser::ParseBasicBlock(PerFunctionState &PFS) {
4705 // If this basic block starts out with a name, remember it.
4706 std::string Name;
4707 LocTy NameLoc = Lex.getLoc();
4708 if (Lex.getKind() == lltok::LabelStr) {
4709 Name = Lex.getStrVal();
4710 Lex.Lex();
4711 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004712
Chris Lattnerac161bf2009-01-02 07:01:27 +00004713 BasicBlock *BB = PFS.DefineBB(Name, NameLoc);
Owen Anderson576a9a22015-03-02 05:25:09 +00004714 if (!BB)
4715 return Error(NameLoc,
4716 "unable to create block named '" + Name + "'");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004717
Chris Lattnerac161bf2009-01-02 07:01:27 +00004718 std::string NameStr;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004719
Chris Lattnerac161bf2009-01-02 07:01:27 +00004720 // Parse the instructions in this block until we get a terminator.
4721 Instruction *Inst;
4722 do {
4723 // This instruction may have three possibilities for a name: a) none
4724 // specified, b) name specified "%foo =", c) number specified: "%4 =".
4725 LocTy NameLoc = Lex.getLoc();
4726 int NameID = -1;
4727 NameStr = "";
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004728
Chris Lattnerac161bf2009-01-02 07:01:27 +00004729 if (Lex.getKind() == lltok::LocalVarID) {
4730 NameID = Lex.getUIntVal();
4731 Lex.Lex();
4732 if (ParseToken(lltok::equal, "expected '=' after instruction id"))
4733 return true;
Chris Lattnerdef19492011-06-17 06:36:20 +00004734 } else if (Lex.getKind() == lltok::LocalVar) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00004735 NameStr = Lex.getStrVal();
4736 Lex.Lex();
4737 if (ParseToken(lltok::equal, "expected '=' after instruction name"))
4738 return true;
4739 }
Devang Patelea8a4b92009-09-17 23:04:48 +00004740
Chris Lattner77b89dc2009-12-30 05:23:43 +00004741 switch (ParseInstruction(Inst, BB, PFS)) {
Craig Toppera2886c22012-02-07 05:05:23 +00004742 default: llvm_unreachable("Unknown ParseInstruction result!");
Chris Lattner77b89dc2009-12-30 05:23:43 +00004743 case InstError: return true;
4744 case InstNormal:
Chris Lattner2e664bd2010-04-07 04:08:57 +00004745 BB->getInstList().push_back(Inst);
4746
Chris Lattner77b89dc2009-12-30 05:23:43 +00004747 // With a normal result, we check to see if the instruction is followed by
4748 // a comma and metadata.
4749 if (EatIfPresent(lltok::comma))
Duncan P. N. Exon Smith27d702c2015-04-24 21:29:36 +00004750 if (ParseInstructionMetadata(*Inst))
Chris Lattner77b89dc2009-12-30 05:23:43 +00004751 return true;
4752 break;
4753 case InstExtraComma:
Chris Lattner2e664bd2010-04-07 04:08:57 +00004754 BB->getInstList().push_back(Inst);
4755
Chris Lattner77b89dc2009-12-30 05:23:43 +00004756 // If the instruction parser ate an extra comma at the end of it, it
4757 // *must* be followed by metadata.
Duncan P. N. Exon Smith27d702c2015-04-24 21:29:36 +00004758 if (ParseInstructionMetadata(*Inst))
Chris Lattner77b89dc2009-12-30 05:23:43 +00004759 return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004760 break;
Chris Lattner77b89dc2009-12-30 05:23:43 +00004761 }
Devang Patelea8a4b92009-09-17 23:04:48 +00004762
Chris Lattnerac161bf2009-01-02 07:01:27 +00004763 // Set the name on the instruction.
4764 if (PFS.SetInstName(NameID, NameStr, NameLoc, Inst)) return true;
4765 } while (!isa<TerminatorInst>(Inst));
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004766
Chris Lattnerac161bf2009-01-02 07:01:27 +00004767 return false;
4768}
4769
4770//===----------------------------------------------------------------------===//
4771// Instruction Parsing.
4772//===----------------------------------------------------------------------===//
4773
4774/// ParseInstruction - Parse one of the many different instructions.
4775///
Chris Lattner77b89dc2009-12-30 05:23:43 +00004776int LLParser::ParseInstruction(Instruction *&Inst, BasicBlock *BB,
4777 PerFunctionState &PFS) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00004778 lltok::Kind Token = Lex.getKind();
4779 if (Token == lltok::Eof)
4780 return TokError("found end of file when expecting more instructions");
4781 LocTy Loc = Lex.getLoc();
Chris Lattner89d856e2009-03-01 00:53:13 +00004782 unsigned KeywordVal = Lex.getUIntVal();
Chris Lattnerac161bf2009-01-02 07:01:27 +00004783 Lex.Lex(); // Eat the keyword.
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004784
Chris Lattnerac161bf2009-01-02 07:01:27 +00004785 switch (Token) {
4786 default: return Error(Loc, "expected instruction opcode");
4787 // Terminator Instructions.
Owen Anderson55f1c092009-08-13 21:58:54 +00004788 case lltok::kw_unreachable: Inst = new UnreachableInst(Context); return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004789 case lltok::kw_ret: return ParseRet(Inst, BB, PFS);
4790 case lltok::kw_br: return ParseBr(Inst, PFS);
4791 case lltok::kw_switch: return ParseSwitch(Inst, PFS);
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00004792 case lltok::kw_indirectbr: return ParseIndirectBr(Inst, PFS);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004793 case lltok::kw_invoke: return ParseInvoke(Inst, PFS);
Bill Wendlingf891bf82011-07-31 06:30:59 +00004794 case lltok::kw_resume: return ParseResume(Inst, PFS);
David Majnemer654e1302015-07-31 17:58:14 +00004795 case lltok::kw_cleanupret: return ParseCleanupRet(Inst, PFS);
4796 case lltok::kw_catchret: return ParseCatchRet(Inst, PFS);
David Majnemer8a1c45d2015-12-12 05:38:55 +00004797 case lltok::kw_catchswitch: return ParseCatchSwitch(Inst, PFS);
4798 case lltok::kw_catchpad: return ParseCatchPad(Inst, PFS);
David Majnemer8a1c45d2015-12-12 05:38:55 +00004799 case lltok::kw_cleanuppad: return ParseCleanupPad(Inst, PFS);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004800 // Binary Operators.
4801 case lltok::kw_add:
4802 case lltok::kw_sub:
Chris Lattnera676c0f2011-02-07 16:40:21 +00004803 case lltok::kw_mul:
4804 case lltok::kw_shl: {
Chris Lattnera676c0f2011-02-07 16:40:21 +00004805 bool NUW = EatIfPresent(lltok::kw_nuw);
4806 bool NSW = EatIfPresent(lltok::kw_nsw);
4807 if (!NUW) NUW = EatIfPresent(lltok::kw_nuw);
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004808
Chris Lattnera676c0f2011-02-07 16:40:21 +00004809 if (ParseArithmetic(Inst, PFS, KeywordVal, 1)) return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004810
Chris Lattnera676c0f2011-02-07 16:40:21 +00004811 if (NUW) cast<BinaryOperator>(Inst)->setHasNoUnsignedWrap(true);
4812 if (NSW) cast<BinaryOperator>(Inst)->setHasNoSignedWrap(true);
4813 return false;
Dan Gohman9c7f8082009-07-27 16:11:46 +00004814 }
Dan Gohmana5b96452009-06-04 22:49:04 +00004815 case lltok::kw_fadd:
4816 case lltok::kw_fsub:
Michael Ilseman92053172012-11-27 00:42:44 +00004817 case lltok::kw_fmul:
4818 case lltok::kw_fdiv:
4819 case lltok::kw_frem: {
4820 FastMathFlags FMF = EatFastMathFlagsIfPresent();
4821 int Res = ParseArithmetic(Inst, PFS, KeywordVal, 2);
4822 if (Res != 0)
4823 return Res;
4824 if (FMF.any())
4825 Inst->setFastMathFlags(FMF);
4826 return 0;
4827 }
Dan Gohmana5b96452009-06-04 22:49:04 +00004828
Chris Lattner35315d02011-02-06 21:44:57 +00004829 case lltok::kw_sdiv:
Chris Lattnera676c0f2011-02-07 16:40:21 +00004830 case lltok::kw_udiv:
4831 case lltok::kw_lshr:
4832 case lltok::kw_ashr: {
4833 bool Exact = EatIfPresent(lltok::kw_exact);
4834
4835 if (ParseArithmetic(Inst, PFS, KeywordVal, 1)) return true;
4836 if (Exact) cast<BinaryOperator>(Inst)->setIsExact(true);
4837 return false;
Dan Gohman9c7f8082009-07-27 16:11:46 +00004838 }
4839
Chris Lattnerac161bf2009-01-02 07:01:27 +00004840 case lltok::kw_urem:
Chris Lattner89d856e2009-03-01 00:53:13 +00004841 case lltok::kw_srem: return ParseArithmetic(Inst, PFS, KeywordVal, 1);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004842 case lltok::kw_and:
4843 case lltok::kw_or:
Chris Lattner89d856e2009-03-01 00:53:13 +00004844 case lltok::kw_xor: return ParseLogical(Inst, PFS, KeywordVal);
James Molloy88eb5352015-07-10 12:52:00 +00004845 case lltok::kw_icmp: return ParseCompare(Inst, PFS, KeywordVal);
4846 case lltok::kw_fcmp: {
4847 FastMathFlags FMF = EatFastMathFlagsIfPresent();
4848 int Res = ParseCompare(Inst, PFS, KeywordVal);
4849 if (Res != 0)
4850 return Res;
4851 if (FMF.any())
4852 Inst->setFastMathFlags(FMF);
4853 return 0;
4854 }
4855
Chris Lattnerac161bf2009-01-02 07:01:27 +00004856 // Casts.
4857 case lltok::kw_trunc:
4858 case lltok::kw_zext:
4859 case lltok::kw_sext:
4860 case lltok::kw_fptrunc:
4861 case lltok::kw_fpext:
4862 case lltok::kw_bitcast:
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00004863 case lltok::kw_addrspacecast:
Chris Lattnerac161bf2009-01-02 07:01:27 +00004864 case lltok::kw_uitofp:
4865 case lltok::kw_sitofp:
4866 case lltok::kw_fptoui:
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004867 case lltok::kw_fptosi:
Chris Lattnerac161bf2009-01-02 07:01:27 +00004868 case lltok::kw_inttoptr:
Chris Lattner89d856e2009-03-01 00:53:13 +00004869 case lltok::kw_ptrtoint: return ParseCast(Inst, PFS, KeywordVal);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004870 // Other.
4871 case lltok::kw_select: return ParseSelect(Inst, PFS);
Chris Lattnerb55ab542009-01-05 08:18:44 +00004872 case lltok::kw_va_arg: return ParseVA_Arg(Inst, PFS);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004873 case lltok::kw_extractelement: return ParseExtractElement(Inst, PFS);
4874 case lltok::kw_insertelement: return ParseInsertElement(Inst, PFS);
4875 case lltok::kw_shufflevector: return ParseShuffleVector(Inst, PFS);
4876 case lltok::kw_phi: return ParsePHI(Inst, PFS);
Bill Wendlingfae14752011-08-12 20:24:12 +00004877 case lltok::kw_landingpad: return ParseLandingPad(Inst, PFS);
Reid Kleckner5772b772014-04-24 20:14:34 +00004878 // Call.
4879 case lltok::kw_call: return ParseCall(Inst, PFS, CallInst::TCK_None);
4880 case lltok::kw_tail: return ParseCall(Inst, PFS, CallInst::TCK_Tail);
4881 case lltok::kw_musttail: return ParseCall(Inst, PFS, CallInst::TCK_MustTail);
Akira Hatanaka5cfcce122015-11-06 23:55:38 +00004882 case lltok::kw_notail: return ParseCall(Inst, PFS, CallInst::TCK_NoTail);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004883 // Memory.
Victor Hernandezc7d6a832009-10-17 00:00:19 +00004884 case lltok::kw_alloca: return ParseAlloc(Inst, PFS);
Chris Lattnerbc639292011-11-27 06:56:53 +00004885 case lltok::kw_load: return ParseLoad(Inst, PFS);
4886 case lltok::kw_store: return ParseStore(Inst, PFS);
Eli Friedman02e737b2011-08-12 22:50:01 +00004887 case lltok::kw_cmpxchg: return ParseCmpXchg(Inst, PFS);
4888 case lltok::kw_atomicrmw: return ParseAtomicRMW(Inst, PFS);
Eli Friedmanfee02c62011-07-25 23:16:38 +00004889 case lltok::kw_fence: return ParseFence(Inst, PFS);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004890 case lltok::kw_getelementptr: return ParseGetElementPtr(Inst, PFS);
4891 case lltok::kw_extractvalue: return ParseExtractValue(Inst, PFS);
4892 case lltok::kw_insertvalue: return ParseInsertValue(Inst, PFS);
4893 }
4894}
4895
4896/// ParseCmpPredicate - Parse an integer or fp predicate, based on Kind.
4897bool LLParser::ParseCmpPredicate(unsigned &P, unsigned Opc) {
Nick Lewyckya21d3da2009-07-08 03:04:38 +00004898 if (Opc == Instruction::FCmp) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00004899 switch (Lex.getKind()) {
David Tweeda11edf02013-01-07 13:32:38 +00004900 default: return TokError("expected fcmp predicate (e.g. 'oeq')");
Chris Lattnerac161bf2009-01-02 07:01:27 +00004901 case lltok::kw_oeq: P = CmpInst::FCMP_OEQ; break;
4902 case lltok::kw_one: P = CmpInst::FCMP_ONE; break;
4903 case lltok::kw_olt: P = CmpInst::FCMP_OLT; break;
4904 case lltok::kw_ogt: P = CmpInst::FCMP_OGT; break;
4905 case lltok::kw_ole: P = CmpInst::FCMP_OLE; break;
4906 case lltok::kw_oge: P = CmpInst::FCMP_OGE; break;
4907 case lltok::kw_ord: P = CmpInst::FCMP_ORD; break;
4908 case lltok::kw_uno: P = CmpInst::FCMP_UNO; break;
4909 case lltok::kw_ueq: P = CmpInst::FCMP_UEQ; break;
4910 case lltok::kw_une: P = CmpInst::FCMP_UNE; break;
4911 case lltok::kw_ult: P = CmpInst::FCMP_ULT; break;
4912 case lltok::kw_ugt: P = CmpInst::FCMP_UGT; break;
4913 case lltok::kw_ule: P = CmpInst::FCMP_ULE; break;
4914 case lltok::kw_uge: P = CmpInst::FCMP_UGE; break;
4915 case lltok::kw_true: P = CmpInst::FCMP_TRUE; break;
4916 case lltok::kw_false: P = CmpInst::FCMP_FALSE; break;
4917 }
4918 } else {
4919 switch (Lex.getKind()) {
David Tweeda11edf02013-01-07 13:32:38 +00004920 default: return TokError("expected icmp predicate (e.g. 'eq')");
Chris Lattnerac161bf2009-01-02 07:01:27 +00004921 case lltok::kw_eq: P = CmpInst::ICMP_EQ; break;
4922 case lltok::kw_ne: P = CmpInst::ICMP_NE; break;
4923 case lltok::kw_slt: P = CmpInst::ICMP_SLT; break;
4924 case lltok::kw_sgt: P = CmpInst::ICMP_SGT; break;
4925 case lltok::kw_sle: P = CmpInst::ICMP_SLE; break;
4926 case lltok::kw_sge: P = CmpInst::ICMP_SGE; break;
4927 case lltok::kw_ult: P = CmpInst::ICMP_ULT; break;
4928 case lltok::kw_ugt: P = CmpInst::ICMP_UGT; break;
4929 case lltok::kw_ule: P = CmpInst::ICMP_ULE; break;
4930 case lltok::kw_uge: P = CmpInst::ICMP_UGE; break;
4931 }
4932 }
4933 Lex.Lex();
4934 return false;
4935}
4936
4937//===----------------------------------------------------------------------===//
4938// Terminator Instructions.
4939//===----------------------------------------------------------------------===//
4940
4941/// ParseRet - Parse a return instruction.
Chris Lattner596760d2009-12-29 21:25:40 +00004942/// ::= 'ret' void (',' !dbg, !1)*
4943/// ::= 'ret' TypeAndValue (',' !dbg, !1)*
Chris Lattner33de4272011-06-17 06:49:41 +00004944bool LLParser::ParseRet(Instruction *&Inst, BasicBlock *BB,
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004945 PerFunctionState &PFS) {
4946 SMLoc TypeLoc = Lex.getLoc();
Craig Topper2617dcc2014-04-15 06:32:26 +00004947 Type *Ty = nullptr;
Chris Lattnerf880ca22009-03-09 04:49:14 +00004948 if (ParseType(Ty, true /*void allowed*/)) return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004949
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004950 Type *ResType = PFS.getFunction().getReturnType();
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004951
Chris Lattnerfdd87902009-10-05 05:54:46 +00004952 if (Ty->isVoidTy()) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004953 if (!ResType->isVoidTy())
4954 return Error(TypeLoc, "value doesn't match function result type '" +
4955 getTypeString(ResType) + "'");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004956
Owen Anderson55f1c092009-08-13 21:58:54 +00004957 Inst = ReturnInst::Create(Context);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004958 return false;
4959 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004960
Chris Lattnerac161bf2009-01-02 07:01:27 +00004961 Value *RV;
4962 if (ParseValue(Ty, RV, PFS)) return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004963
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004964 if (ResType != RV->getType())
4965 return Error(TypeLoc, "value doesn't match function result type '" +
4966 getTypeString(ResType) + "'");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004967
Owen Anderson55f1c092009-08-13 21:58:54 +00004968 Inst = ReturnInst::Create(Context, RV);
Chris Lattner33de4272011-06-17 06:49:41 +00004969 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004970}
4971
4972
4973/// ParseBr
4974/// ::= 'br' TypeAndValue
4975/// ::= 'br' TypeAndValue ',' TypeAndValue ',' TypeAndValue
4976bool LLParser::ParseBr(Instruction *&Inst, PerFunctionState &PFS) {
4977 LocTy Loc, Loc2;
Chris Lattner3ed871f2009-10-27 19:13:16 +00004978 Value *Op0;
4979 BasicBlock *Op1, *Op2;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004980 if (ParseTypeAndValue(Op0, Loc, PFS)) return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004981
Chris Lattnerac161bf2009-01-02 07:01:27 +00004982 if (BasicBlock *BB = dyn_cast<BasicBlock>(Op0)) {
4983 Inst = BranchInst::Create(BB);
4984 return false;
4985 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004986
Owen Anderson55f1c092009-08-13 21:58:54 +00004987 if (Op0->getType() != Type::getInt1Ty(Context))
Chris Lattnerac161bf2009-01-02 07:01:27 +00004988 return Error(Loc, "branch condition must have 'i1' type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004989
Chris Lattnerac161bf2009-01-02 07:01:27 +00004990 if (ParseToken(lltok::comma, "expected ',' after branch condition") ||
Chris Lattner3ed871f2009-10-27 19:13:16 +00004991 ParseTypeAndBasicBlock(Op1, Loc, PFS) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00004992 ParseToken(lltok::comma, "expected ',' after true destination") ||
Chris Lattner3ed871f2009-10-27 19:13:16 +00004993 ParseTypeAndBasicBlock(Op2, Loc2, PFS))
Chris Lattnerac161bf2009-01-02 07:01:27 +00004994 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004995
Chris Lattner3ed871f2009-10-27 19:13:16 +00004996 Inst = BranchInst::Create(Op1, Op2, Op0);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004997 return false;
4998}
4999
5000/// ParseSwitch
5001/// Instruction
5002/// ::= 'switch' TypeAndValue ',' TypeAndValue '[' JumpTable ']'
5003/// JumpTable
5004/// ::= (TypeAndValue ',' TypeAndValue)*
5005bool LLParser::ParseSwitch(Instruction *&Inst, PerFunctionState &PFS) {
5006 LocTy CondLoc, BBLoc;
Chris Lattner3ed871f2009-10-27 19:13:16 +00005007 Value *Cond;
5008 BasicBlock *DefaultBB;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005009 if (ParseTypeAndValue(Cond, CondLoc, PFS) ||
5010 ParseToken(lltok::comma, "expected ',' after switch condition") ||
Chris Lattner3ed871f2009-10-27 19:13:16 +00005011 ParseTypeAndBasicBlock(DefaultBB, BBLoc, PFS) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00005012 ParseToken(lltok::lsquare, "expected '[' with switch table"))
5013 return true;
5014
Duncan Sands19d0b472010-02-16 11:11:14 +00005015 if (!Cond->getType()->isIntegerTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00005016 return Error(CondLoc, "switch condition must have integer type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005017
Chris Lattnerac161bf2009-01-02 07:01:27 +00005018 // Parse the jump table pairs.
5019 SmallPtrSet<Value*, 32> SeenCases;
5020 SmallVector<std::pair<ConstantInt*, BasicBlock*>, 32> Table;
5021 while (Lex.getKind() != lltok::rsquare) {
Chris Lattner3ed871f2009-10-27 19:13:16 +00005022 Value *Constant;
5023 BasicBlock *DestBB;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005024
Chris Lattnerac161bf2009-01-02 07:01:27 +00005025 if (ParseTypeAndValue(Constant, CondLoc, PFS) ||
5026 ParseToken(lltok::comma, "expected ',' after case value") ||
Chris Lattner3ed871f2009-10-27 19:13:16 +00005027 ParseTypeAndBasicBlock(DestBB, PFS))
Chris Lattnerac161bf2009-01-02 07:01:27 +00005028 return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00005029
David Blaikie70573dc2014-11-19 07:49:26 +00005030 if (!SeenCases.insert(Constant).second)
Chris Lattnerac161bf2009-01-02 07:01:27 +00005031 return Error(CondLoc, "duplicate case value in switch");
5032 if (!isa<ConstantInt>(Constant))
5033 return Error(CondLoc, "case value is not a constant integer");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005034
Chris Lattner3ed871f2009-10-27 19:13:16 +00005035 Table.push_back(std::make_pair(cast<ConstantInt>(Constant), DestBB));
Chris Lattnerac161bf2009-01-02 07:01:27 +00005036 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005037
Chris Lattnerac161bf2009-01-02 07:01:27 +00005038 Lex.Lex(); // Eat the ']'.
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005039
Chris Lattner3ed871f2009-10-27 19:13:16 +00005040 SwitchInst *SI = SwitchInst::Create(Cond, DefaultBB, Table.size());
Chris Lattnerac161bf2009-01-02 07:01:27 +00005041 for (unsigned i = 0, e = Table.size(); i != e; ++i)
5042 SI->addCase(Table[i].first, Table[i].second);
5043 Inst = SI;
5044 return false;
5045}
5046
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00005047/// ParseIndirectBr
Chris Lattner3ed871f2009-10-27 19:13:16 +00005048/// Instruction
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00005049/// ::= 'indirectbr' TypeAndValue ',' '[' LabelList ']'
5050bool LLParser::ParseIndirectBr(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattner3ed871f2009-10-27 19:13:16 +00005051 LocTy AddrLoc;
5052 Value *Address;
5053 if (ParseTypeAndValue(Address, AddrLoc, PFS) ||
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00005054 ParseToken(lltok::comma, "expected ',' after indirectbr address") ||
5055 ParseToken(lltok::lsquare, "expected '[' with indirectbr"))
Chris Lattner3ed871f2009-10-27 19:13:16 +00005056 return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00005057
Duncan Sands19d0b472010-02-16 11:11:14 +00005058 if (!Address->getType()->isPointerTy())
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00005059 return Error(AddrLoc, "indirectbr address must have pointer type");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00005060
Chris Lattner3ed871f2009-10-27 19:13:16 +00005061 // Parse the destination list.
5062 SmallVector<BasicBlock*, 16> DestList;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00005063
Chris Lattner3ed871f2009-10-27 19:13:16 +00005064 if (Lex.getKind() != lltok::rsquare) {
5065 BasicBlock *DestBB;
5066 if (ParseTypeAndBasicBlock(DestBB, PFS))
5067 return true;
5068 DestList.push_back(DestBB);
Michael Ilseman26ee2b82012-11-15 22:34:00 +00005069
Chris Lattner3ed871f2009-10-27 19:13:16 +00005070 while (EatIfPresent(lltok::comma)) {
5071 if (ParseTypeAndBasicBlock(DestBB, PFS))
5072 return true;
5073 DestList.push_back(DestBB);
5074 }
5075 }
Michael Ilseman26ee2b82012-11-15 22:34:00 +00005076
Chris Lattner3ed871f2009-10-27 19:13:16 +00005077 if (ParseToken(lltok::rsquare, "expected ']' at end of block list"))
5078 return true;
5079
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00005080 IndirectBrInst *IBI = IndirectBrInst::Create(Address, DestList.size());
Chris Lattner3ed871f2009-10-27 19:13:16 +00005081 for (unsigned i = 0, e = DestList.size(); i != e; ++i)
5082 IBI->addDestination(DestList[i]);
5083 Inst = IBI;
5084 return false;
5085}
5086
5087
Chris Lattnerac161bf2009-01-02 07:01:27 +00005088/// ParseInvoke
5089/// ::= 'invoke' OptionalCallingConv OptionalAttrs Type Value ParamList
5090/// OptionalAttrs 'to' TypeAndValue 'unwind' TypeAndValue
5091bool LLParser::ParseInvoke(Instruction *&Inst, PerFunctionState &PFS) {
5092 LocTy CallLoc = Lex.getLoc();
Bill Wendling50d27842012-10-15 20:35:56 +00005093 AttrBuilder RetAttrs, FnAttrs;
Bill Wendlingb32b0412013-02-08 06:32:06 +00005094 std::vector<unsigned> FwdRefAttrGrps;
Bill Wendling09bd1f72013-02-22 00:12:35 +00005095 LocTy NoBuiltinLoc;
Alexey Samsonov17a9cff2014-09-10 18:00:17 +00005096 unsigned CC;
Craig Topper2617dcc2014-04-15 06:32:26 +00005097 Type *RetType = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005098 LocTy RetTypeLoc;
5099 ValID CalleeID;
5100 SmallVector<ParamInfo, 16> ArgList;
Sanjoy Dasb513a9f2015-09-24 23:34:52 +00005101 SmallVector<OperandBundleDef, 2> BundleList;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005102
Chris Lattner3ed871f2009-10-27 19:13:16 +00005103 BasicBlock *NormalBB, *UnwindBB;
Sanjoy Dasb513a9f2015-09-24 23:34:52 +00005104 if (ParseOptionalCallingConv(CC) || ParseOptionalReturnAttrs(RetAttrs) ||
Chris Lattnerf880ca22009-03-09 04:49:14 +00005105 ParseType(RetType, RetTypeLoc, true /*void allowed*/) ||
Sanjoy Dasb513a9f2015-09-24 23:34:52 +00005106 ParseValID(CalleeID) || ParseParameterList(ArgList, PFS) ||
Bill Wendling09bd1f72013-02-22 00:12:35 +00005107 ParseFnAttributeValuePairs(FnAttrs, FwdRefAttrGrps, false,
5108 NoBuiltinLoc) ||
Sanjoy Dasb513a9f2015-09-24 23:34:52 +00005109 ParseOptionalOperandBundles(BundleList, PFS) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00005110 ParseToken(lltok::kw_to, "expected 'to' in invoke") ||
Chris Lattner3ed871f2009-10-27 19:13:16 +00005111 ParseTypeAndBasicBlock(NormalBB, PFS) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00005112 ParseToken(lltok::kw_unwind, "expected 'unwind' in invoke") ||
Chris Lattner3ed871f2009-10-27 19:13:16 +00005113 ParseTypeAndBasicBlock(UnwindBB, PFS))
Chris Lattnerac161bf2009-01-02 07:01:27 +00005114 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005115
Chris Lattnerac161bf2009-01-02 07:01:27 +00005116 // If RetType is a non-function pointer type, then this is the short syntax
5117 // for the call, which means that RetType is just the return type. Infer the
5118 // rest of the function argument types from the arguments that are present.
David Blaikie445e3fb2015-04-24 19:32:54 +00005119 FunctionType *Ty = dyn_cast<FunctionType>(RetType);
5120 if (!Ty) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00005121 // Pull out the types of all of the arguments...
Jay Foadb804a2b2011-07-12 14:06:48 +00005122 std::vector<Type*> ParamTypes;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005123 for (unsigned i = 0, e = ArgList.size(); i != e; ++i)
5124 ParamTypes.push_back(ArgList[i].V->getType());
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005125
Chris Lattnerac161bf2009-01-02 07:01:27 +00005126 if (!FunctionType::isValidReturnType(RetType))
5127 return Error(RetTypeLoc, "Invalid result type for LLVM function");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005128
Owen Anderson4056ca92009-07-29 22:17:13 +00005129 Ty = FunctionType::get(RetType, ParamTypes, false);
Chris Lattnerac161bf2009-01-02 07:01:27 +00005130 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005131
David Blaikie41ba2b42015-07-27 23:32:19 +00005132 CalleeID.FTy = Ty;
5133
Chris Lattnerac161bf2009-01-02 07:01:27 +00005134 // Look up the callee.
5135 Value *Callee;
David Blaikie445e3fb2015-04-24 19:32:54 +00005136 if (ConvertValIDToValue(PointerType::getUnqual(Ty), CalleeID, Callee, &PFS))
5137 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005138
Bill Wendling3d7b0b82012-12-19 07:18:57 +00005139 // Set up the Attribute for the function.
Bill Wendlingf5075a42013-01-27 02:24:02 +00005140 SmallVector<AttributeSet, 8> Attrs;
Bill Wendling3bef2dd2012-09-19 23:54:18 +00005141 if (RetAttrs.hasAttributes())
Bill Wendlingf5075a42013-01-27 02:24:02 +00005142 Attrs.push_back(AttributeSet::get(RetType->getContext(),
5143 AttributeSet::ReturnIndex,
5144 RetAttrs));
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005145
Chris Lattnerac161bf2009-01-02 07:01:27 +00005146 SmallVector<Value*, 8> Args;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005147
Chris Lattnerac161bf2009-01-02 07:01:27 +00005148 // Loop through FunctionType's arguments and ensure they are specified
5149 // correctly. Also, gather any parameter attributes.
5150 FunctionType::param_iterator I = Ty->param_begin();
5151 FunctionType::param_iterator E = Ty->param_end();
5152 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
Craig Topper2617dcc2014-04-15 06:32:26 +00005153 Type *ExpectedTy = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005154 if (I != E) {
5155 ExpectedTy = *I++;
5156 } else if (!Ty->isVarArg()) {
5157 return Error(ArgList[i].Loc, "too many arguments specified");
5158 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005159
Chris Lattnerac161bf2009-01-02 07:01:27 +00005160 if (ExpectedTy && ExpectedTy != ArgList[i].V->getType())
5161 return Error(ArgList[i].Loc, "argument is not of expected type '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00005162 getTypeString(ExpectedTy) + "'");
Chris Lattnerac161bf2009-01-02 07:01:27 +00005163 Args.push_back(ArgList[i].V);
Bill Wendlingfe0021a2013-01-31 00:29:54 +00005164 if (ArgList[i].Attrs.hasAttributes(i + 1)) {
5165 AttrBuilder B(ArgList[i].Attrs, i + 1);
Bill Wendlingf5075a42013-01-27 02:24:02 +00005166 Attrs.push_back(AttributeSet::get(RetType->getContext(), i + 1, B));
5167 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00005168 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005169
Chris Lattnerac161bf2009-01-02 07:01:27 +00005170 if (I != E)
5171 return Error(CallLoc, "not enough parameters specified for call");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005172
David Majnemer8d22abd2015-02-23 00:01:32 +00005173 if (FnAttrs.hasAttributes()) {
5174 if (FnAttrs.hasAlignmentAttr())
5175 return Error(CallLoc, "invoke instructions may not have an alignment");
5176
Bill Wendlingf5075a42013-01-27 02:24:02 +00005177 Attrs.push_back(AttributeSet::get(RetType->getContext(),
5178 AttributeSet::FunctionIndex,
5179 FnAttrs));
David Majnemer8d22abd2015-02-23 00:01:32 +00005180 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005181
Bill Wendling3d7b0b82012-12-19 07:18:57 +00005182 // Finish off the Attribute and check them
Bill Wendlinge94d8432012-12-07 23:16:57 +00005183 AttributeSet PAL = AttributeSet::get(Context, Attrs);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005184
Sanjoy Dasb513a9f2015-09-24 23:34:52 +00005185 InvokeInst *II =
5186 InvokeInst::Create(Ty, Callee, NormalBB, UnwindBB, Args, BundleList);
Chris Lattnerac161bf2009-01-02 07:01:27 +00005187 II->setCallingConv(CC);
5188 II->setAttributes(PAL);
Bill Wendlingb32b0412013-02-08 06:32:06 +00005189 ForwardRefAttrGroups[II] = FwdRefAttrGrps;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005190 Inst = II;
5191 return false;
5192}
5193
Bill Wendlingf891bf82011-07-31 06:30:59 +00005194/// ParseResume
5195/// ::= 'resume' TypeAndValue
5196bool LLParser::ParseResume(Instruction *&Inst, PerFunctionState &PFS) {
5197 Value *Exn; LocTy ExnLoc;
Bill Wendlingf891bf82011-07-31 06:30:59 +00005198 if (ParseTypeAndValue(Exn, ExnLoc, PFS))
5199 return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005200
Bill Wendlingf891bf82011-07-31 06:30:59 +00005201 ResumeInst *RI = ResumeInst::Create(Exn);
5202 Inst = RI;
5203 return false;
5204}
Chris Lattnerac161bf2009-01-02 07:01:27 +00005205
David Majnemer654e1302015-07-31 17:58:14 +00005206bool LLParser::ParseExceptionArgs(SmallVectorImpl<Value *> &Args,
5207 PerFunctionState &PFS) {
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00005208 if (ParseToken(lltok::lsquare, "expected '[' in catchpad/cleanuppad"))
David Majnemer654e1302015-07-31 17:58:14 +00005209 return true;
5210
5211 while (Lex.getKind() != lltok::rsquare) {
5212 // If this isn't the first argument, we need a comma.
5213 if (!Args.empty() &&
5214 ParseToken(lltok::comma, "expected ',' in argument list"))
5215 return true;
5216
5217 // Parse the argument.
5218 LocTy ArgLoc;
5219 Type *ArgTy = nullptr;
5220 if (ParseType(ArgTy, ArgLoc))
5221 return true;
5222
5223 Value *V;
5224 if (ArgTy->isMetadataTy()) {
5225 if (ParseMetadataAsValue(V, PFS))
5226 return true;
5227 } else {
5228 if (ParseValue(ArgTy, V, PFS))
5229 return true;
5230 }
5231 Args.push_back(V);
5232 }
5233
5234 Lex.Lex(); // Lex the ']'.
5235 return false;
5236}
5237
5238/// ParseCleanupRet
David Majnemer8a1c45d2015-12-12 05:38:55 +00005239/// ::= 'cleanupret' from Value unwind ('to' 'caller' | TypeAndValue)
David Majnemer654e1302015-07-31 17:58:14 +00005240bool LLParser::ParseCleanupRet(Instruction *&Inst, PerFunctionState &PFS) {
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00005241 Value *CleanupPad = nullptr;
David Majnemer654e1302015-07-31 17:58:14 +00005242
David Majnemer8a1c45d2015-12-12 05:38:55 +00005243 if (ParseToken(lltok::kw_from, "expected 'from' after cleanupret"))
5244 return true;
5245
5246 if (ParseValue(Type::getTokenTy(Context), CleanupPad, PFS))
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00005247 return true;
David Majnemer654e1302015-07-31 17:58:14 +00005248
5249 if (ParseToken(lltok::kw_unwind, "expected 'unwind' in cleanupret"))
5250 return true;
5251
5252 BasicBlock *UnwindBB = nullptr;
5253 if (Lex.getKind() == lltok::kw_to) {
5254 Lex.Lex();
5255 if (ParseToken(lltok::kw_caller, "expected 'caller' in cleanupret"))
5256 return true;
5257 } else {
5258 if (ParseTypeAndBasicBlock(UnwindBB, PFS)) {
5259 return true;
5260 }
5261 }
5262
David Majnemer8a1c45d2015-12-12 05:38:55 +00005263 Inst = CleanupReturnInst::Create(CleanupPad, UnwindBB);
David Majnemer654e1302015-07-31 17:58:14 +00005264 return false;
5265}
5266
5267/// ParseCatchRet
David Majnemer8a1c45d2015-12-12 05:38:55 +00005268/// ::= 'catchret' from Parent Value 'to' TypeAndValue
David Majnemer654e1302015-07-31 17:58:14 +00005269bool LLParser::ParseCatchRet(Instruction *&Inst, PerFunctionState &PFS) {
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00005270 Value *CatchPad = nullptr;
David Majnemer0bc0eef2015-08-15 02:46:08 +00005271
David Majnemer8a1c45d2015-12-12 05:38:55 +00005272 if (ParseToken(lltok::kw_from, "expected 'from' after catchret"))
5273 return true;
5274
5275 if (ParseValue(Type::getTokenTy(Context), CatchPad, PFS))
David Majnemer0bc0eef2015-08-15 02:46:08 +00005276 return true;
5277
David Majnemer0bc0eef2015-08-15 02:46:08 +00005278 BasicBlock *BB;
5279 if (ParseToken(lltok::kw_to, "expected 'to' in catchret") ||
5280 ParseTypeAndBasicBlock(BB, PFS))
5281 return true;
5282
David Majnemer8a1c45d2015-12-12 05:38:55 +00005283 Inst = CatchReturnInst::Create(CatchPad, BB);
5284 return false;
5285}
5286
5287/// ParseCatchSwitch
5288/// ::= 'catchswitch' within Parent
5289bool LLParser::ParseCatchSwitch(Instruction *&Inst, PerFunctionState &PFS) {
5290 Value *ParentPad;
5291 LocTy BBLoc;
5292
5293 if (ParseToken(lltok::kw_within, "expected 'within' after catchswitch"))
5294 return true;
5295
5296 if (Lex.getKind() != lltok::kw_none && Lex.getKind() != lltok::LocalVar &&
5297 Lex.getKind() != lltok::LocalVarID)
5298 return TokError("expected scope value for catchswitch");
5299
5300 if (ParseValue(Type::getTokenTy(Context), ParentPad, PFS))
5301 return true;
5302
5303 if (ParseToken(lltok::lsquare, "expected '[' with catchswitch labels"))
5304 return true;
5305
5306 SmallVector<BasicBlock *, 32> Table;
5307 do {
5308 BasicBlock *DestBB;
5309 if (ParseTypeAndBasicBlock(DestBB, PFS))
5310 return true;
5311 Table.push_back(DestBB);
5312 } while (EatIfPresent(lltok::comma));
5313
5314 if (ParseToken(lltok::rsquare, "expected ']' after catchswitch labels"))
5315 return true;
5316
5317 if (ParseToken(lltok::kw_unwind,
5318 "expected 'unwind' after catchswitch scope"))
5319 return true;
5320
5321 BasicBlock *UnwindBB = nullptr;
5322 if (EatIfPresent(lltok::kw_to)) {
5323 if (ParseToken(lltok::kw_caller, "expected 'caller' in catchswitch"))
5324 return true;
5325 } else {
5326 if (ParseTypeAndBasicBlock(UnwindBB, PFS))
5327 return true;
5328 }
5329
5330 auto *CatchSwitch =
5331 CatchSwitchInst::Create(ParentPad, UnwindBB, Table.size());
5332 for (BasicBlock *DestBB : Table)
5333 CatchSwitch->addHandler(DestBB);
5334 Inst = CatchSwitch;
David Majnemer654e1302015-07-31 17:58:14 +00005335 return false;
5336}
5337
5338/// ParseCatchPad
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00005339/// ::= 'catchpad' ParamList 'to' TypeAndValue 'unwind' TypeAndValue
David Majnemer654e1302015-07-31 17:58:14 +00005340bool LLParser::ParseCatchPad(Instruction *&Inst, PerFunctionState &PFS) {
David Majnemer8a1c45d2015-12-12 05:38:55 +00005341 Value *CatchSwitch = nullptr;
5342
5343 if (ParseToken(lltok::kw_within, "expected 'within' after catchpad"))
5344 return true;
5345
5346 if (Lex.getKind() != lltok::LocalVar && Lex.getKind() != lltok::LocalVarID)
5347 return TokError("expected scope value for catchpad");
5348
5349 if (ParseValue(Type::getTokenTy(Context), CatchSwitch, PFS))
5350 return true;
5351
David Majnemer654e1302015-07-31 17:58:14 +00005352 SmallVector<Value *, 8> Args;
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00005353 if (ParseExceptionArgs(Args, PFS))
David Majnemer654e1302015-07-31 17:58:14 +00005354 return true;
5355
David Majnemer8a1c45d2015-12-12 05:38:55 +00005356 Inst = CatchPadInst::Create(CatchSwitch, Args);
David Majnemer654e1302015-07-31 17:58:14 +00005357 return false;
5358}
5359
David Majnemer654e1302015-07-31 17:58:14 +00005360/// ParseCleanupPad
David Majnemer8a1c45d2015-12-12 05:38:55 +00005361/// ::= 'cleanuppad' within Parent ParamList
David Majnemer654e1302015-07-31 17:58:14 +00005362bool LLParser::ParseCleanupPad(Instruction *&Inst, PerFunctionState &PFS) {
David Majnemer8a1c45d2015-12-12 05:38:55 +00005363 Value *ParentPad = nullptr;
5364
5365 if (ParseToken(lltok::kw_within, "expected 'within' after cleanuppad"))
5366 return true;
5367
5368 if (Lex.getKind() != lltok::kw_none && Lex.getKind() != lltok::LocalVar &&
5369 Lex.getKind() != lltok::LocalVarID)
5370 return TokError("expected scope value for cleanuppad");
5371
5372 if (ParseValue(Type::getTokenTy(Context), ParentPad, PFS))
5373 return true;
5374
David Majnemer654e1302015-07-31 17:58:14 +00005375 SmallVector<Value *, 8> Args;
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00005376 if (ParseExceptionArgs(Args, PFS))
David Majnemer654e1302015-07-31 17:58:14 +00005377 return true;
5378
David Majnemer8a1c45d2015-12-12 05:38:55 +00005379 Inst = CleanupPadInst::Create(ParentPad, Args);
Joseph Tremoulet9ce71f72015-09-03 09:09:43 +00005380 return false;
5381}
5382
Chris Lattnerac161bf2009-01-02 07:01:27 +00005383//===----------------------------------------------------------------------===//
5384// Binary Operators.
5385//===----------------------------------------------------------------------===//
5386
5387/// ParseArithmetic
Chris Lattnereeefa9a2009-01-05 08:24:46 +00005388/// ::= ArithmeticOps TypeAndValue ',' Value
5389///
5390/// If OperandType is 0, then any FP or integer operand is allowed. If it is 1,
5391/// then any integer operand is allowed, if it is 2, any fp operand is allowed.
Chris Lattnerac161bf2009-01-02 07:01:27 +00005392bool LLParser::ParseArithmetic(Instruction *&Inst, PerFunctionState &PFS,
Chris Lattnereeefa9a2009-01-05 08:24:46 +00005393 unsigned Opc, unsigned OperandType) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00005394 LocTy Loc; Value *LHS, *RHS;
5395 if (ParseTypeAndValue(LHS, Loc, PFS) ||
5396 ParseToken(lltok::comma, "expected ',' in arithmetic operation") ||
5397 ParseValue(LHS->getType(), RHS, PFS))
5398 return true;
5399
Chris Lattnereeefa9a2009-01-05 08:24:46 +00005400 bool Valid;
5401 switch (OperandType) {
Torok Edwinfbcc6632009-07-14 16:55:14 +00005402 default: llvm_unreachable("Unknown operand type!");
Chris Lattnereeefa9a2009-01-05 08:24:46 +00005403 case 0: // int or FP.
Duncan Sands9dff9be2010-02-15 16:12:20 +00005404 Valid = LHS->getType()->isIntOrIntVectorTy() ||
5405 LHS->getType()->isFPOrFPVectorTy();
Chris Lattnereeefa9a2009-01-05 08:24:46 +00005406 break;
Duncan Sands9dff9be2010-02-15 16:12:20 +00005407 case 1: Valid = LHS->getType()->isIntOrIntVectorTy(); break;
5408 case 2: Valid = LHS->getType()->isFPOrFPVectorTy(); break;
Chris Lattnereeefa9a2009-01-05 08:24:46 +00005409 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005410
Chris Lattnereeefa9a2009-01-05 08:24:46 +00005411 if (!Valid)
5412 return Error(Loc, "invalid operand type for instruction");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005413
Chris Lattnerac161bf2009-01-02 07:01:27 +00005414 Inst = BinaryOperator::Create((Instruction::BinaryOps)Opc, LHS, RHS);
5415 return false;
5416}
5417
5418/// ParseLogical
5419/// ::= ArithmeticOps TypeAndValue ',' Value {
5420bool LLParser::ParseLogical(Instruction *&Inst, PerFunctionState &PFS,
5421 unsigned Opc) {
5422 LocTy Loc; Value *LHS, *RHS;
5423 if (ParseTypeAndValue(LHS, Loc, PFS) ||
5424 ParseToken(lltok::comma, "expected ',' in logical operation") ||
5425 ParseValue(LHS->getType(), RHS, PFS))
5426 return true;
5427
Duncan Sands9dff9be2010-02-15 16:12:20 +00005428 if (!LHS->getType()->isIntOrIntVectorTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00005429 return Error(Loc,"instruction requires integer or integer vector operands");
5430
5431 Inst = BinaryOperator::Create((Instruction::BinaryOps)Opc, LHS, RHS);
5432 return false;
5433}
5434
5435
5436/// ParseCompare
5437/// ::= 'icmp' IPredicates TypeAndValue ',' Value
5438/// ::= 'fcmp' FPredicates TypeAndValue ',' Value
Chris Lattnerac161bf2009-01-02 07:01:27 +00005439bool LLParser::ParseCompare(Instruction *&Inst, PerFunctionState &PFS,
5440 unsigned Opc) {
5441 // Parse the integer/fp comparison predicate.
5442 LocTy Loc;
5443 unsigned Pred;
5444 Value *LHS, *RHS;
5445 if (ParseCmpPredicate(Pred, Opc) ||
5446 ParseTypeAndValue(LHS, Loc, PFS) ||
5447 ParseToken(lltok::comma, "expected ',' after compare value") ||
5448 ParseValue(LHS->getType(), RHS, PFS))
5449 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005450
Chris Lattnerac161bf2009-01-02 07:01:27 +00005451 if (Opc == Instruction::FCmp) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00005452 if (!LHS->getType()->isFPOrFPVectorTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00005453 return Error(Loc, "fcmp requires floating point operands");
Dan Gohmanad1f0a12009-08-25 23:17:54 +00005454 Inst = new FCmpInst(CmpInst::Predicate(Pred), LHS, RHS);
Nick Lewyckya21d3da2009-07-08 03:04:38 +00005455 } else {
5456 assert(Opc == Instruction::ICmp && "Unknown opcode for CmpInst!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00005457 if (!LHS->getType()->isIntOrIntVectorTy() &&
Nadav Rotem3924cb02011-12-05 06:29:09 +00005458 !LHS->getType()->getScalarType()->isPointerTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00005459 return Error(Loc, "icmp requires integer operands");
Dan Gohmanad1f0a12009-08-25 23:17:54 +00005460 Inst = new ICmpInst(CmpInst::Predicate(Pred), LHS, RHS);
Chris Lattnerac161bf2009-01-02 07:01:27 +00005461 }
5462 return false;
5463}
5464
5465//===----------------------------------------------------------------------===//
5466// Other Instructions.
5467//===----------------------------------------------------------------------===//
5468
5469
5470/// ParseCast
5471/// ::= CastOpc TypeAndValue 'to' Type
5472bool LLParser::ParseCast(Instruction *&Inst, PerFunctionState &PFS,
5473 unsigned Opc) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00005474 LocTy Loc;
5475 Value *Op;
Craig Topper2617dcc2014-04-15 06:32:26 +00005476 Type *DestTy = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005477 if (ParseTypeAndValue(Op, Loc, PFS) ||
5478 ParseToken(lltok::kw_to, "expected 'to' after cast value") ||
5479 ParseType(DestTy))
5480 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005481
Chris Lattner89d856e2009-03-01 00:53:13 +00005482 if (!CastInst::castIsValid((Instruction::CastOps)Opc, Op, DestTy)) {
5483 CastInst::castIsValid((Instruction::CastOps)Opc, Op, DestTy);
Chris Lattnerac161bf2009-01-02 07:01:27 +00005484 return Error(Loc, "invalid cast opcode for cast from '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00005485 getTypeString(Op->getType()) + "' to '" +
5486 getTypeString(DestTy) + "'");
Chris Lattner89d856e2009-03-01 00:53:13 +00005487 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00005488 Inst = CastInst::Create((Instruction::CastOps)Opc, Op, DestTy);
5489 return false;
5490}
5491
5492/// ParseSelect
5493/// ::= 'select' TypeAndValue ',' TypeAndValue ',' TypeAndValue
5494bool LLParser::ParseSelect(Instruction *&Inst, PerFunctionState &PFS) {
5495 LocTy Loc;
5496 Value *Op0, *Op1, *Op2;
5497 if (ParseTypeAndValue(Op0, Loc, PFS) ||
5498 ParseToken(lltok::comma, "expected ',' after select condition") ||
5499 ParseTypeAndValue(Op1, PFS) ||
5500 ParseToken(lltok::comma, "expected ',' after select value") ||
5501 ParseTypeAndValue(Op2, PFS))
5502 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005503
Chris Lattnerac161bf2009-01-02 07:01:27 +00005504 if (const char *Reason = SelectInst::areInvalidOperands(Op0, Op1, Op2))
5505 return Error(Loc, Reason);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005506
Chris Lattnerac161bf2009-01-02 07:01:27 +00005507 Inst = SelectInst::Create(Op0, Op1, Op2);
5508 return false;
5509}
5510
Chris Lattnerb55ab542009-01-05 08:18:44 +00005511/// ParseVA_Arg
5512/// ::= 'va_arg' TypeAndValue ',' Type
5513bool LLParser::ParseVA_Arg(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00005514 Value *Op;
Craig Topper2617dcc2014-04-15 06:32:26 +00005515 Type *EltTy = nullptr;
Chris Lattnerb55ab542009-01-05 08:18:44 +00005516 LocTy TypeLoc;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005517 if (ParseTypeAndValue(Op, PFS) ||
5518 ParseToken(lltok::comma, "expected ',' after vaarg operand") ||
Chris Lattnerb55ab542009-01-05 08:18:44 +00005519 ParseType(EltTy, TypeLoc))
Chris Lattnerac161bf2009-01-02 07:01:27 +00005520 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005521
Chris Lattnerb55ab542009-01-05 08:18:44 +00005522 if (!EltTy->isFirstClassType())
5523 return Error(TypeLoc, "va_arg requires operand with first class type");
Chris Lattnerac161bf2009-01-02 07:01:27 +00005524
5525 Inst = new VAArgInst(Op, EltTy);
5526 return false;
5527}
5528
5529/// ParseExtractElement
5530/// ::= 'extractelement' TypeAndValue ',' TypeAndValue
5531bool LLParser::ParseExtractElement(Instruction *&Inst, PerFunctionState &PFS) {
5532 LocTy Loc;
5533 Value *Op0, *Op1;
5534 if (ParseTypeAndValue(Op0, Loc, PFS) ||
5535 ParseToken(lltok::comma, "expected ',' after extract value") ||
5536 ParseTypeAndValue(Op1, PFS))
5537 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005538
Chris Lattnerac161bf2009-01-02 07:01:27 +00005539 if (!ExtractElementInst::isValidOperands(Op0, Op1))
5540 return Error(Loc, "invalid extractelement operands");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005541
Eric Christopherc9742252009-07-25 02:28:41 +00005542 Inst = ExtractElementInst::Create(Op0, Op1);
Chris Lattnerac161bf2009-01-02 07:01:27 +00005543 return false;
5544}
5545
5546/// ParseInsertElement
5547/// ::= 'insertelement' TypeAndValue ',' TypeAndValue ',' TypeAndValue
5548bool LLParser::ParseInsertElement(Instruction *&Inst, PerFunctionState &PFS) {
5549 LocTy Loc;
5550 Value *Op0, *Op1, *Op2;
5551 if (ParseTypeAndValue(Op0, Loc, PFS) ||
5552 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
5553 ParseTypeAndValue(Op1, PFS) ||
5554 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
5555 ParseTypeAndValue(Op2, PFS))
5556 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005557
Chris Lattnerac161bf2009-01-02 07:01:27 +00005558 if (!InsertElementInst::isValidOperands(Op0, Op1, Op2))
Eric Christopherfef8db62009-07-23 01:01:32 +00005559 return Error(Loc, "invalid insertelement operands");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005560
Chris Lattnerac161bf2009-01-02 07:01:27 +00005561 Inst = InsertElementInst::Create(Op0, Op1, Op2);
5562 return false;
5563}
5564
5565/// ParseShuffleVector
5566/// ::= 'shufflevector' TypeAndValue ',' TypeAndValue ',' TypeAndValue
5567bool LLParser::ParseShuffleVector(Instruction *&Inst, PerFunctionState &PFS) {
5568 LocTy Loc;
5569 Value *Op0, *Op1, *Op2;
5570 if (ParseTypeAndValue(Op0, Loc, PFS) ||
5571 ParseToken(lltok::comma, "expected ',' after shuffle mask") ||
5572 ParseTypeAndValue(Op1, PFS) ||
5573 ParseToken(lltok::comma, "expected ',' after shuffle value") ||
5574 ParseTypeAndValue(Op2, PFS))
5575 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005576
Chris Lattnerac161bf2009-01-02 07:01:27 +00005577 if (!ShuffleVectorInst::isValidOperands(Op0, Op1, Op2))
Pete Cooperc1a6f982012-02-01 23:43:12 +00005578 return Error(Loc, "invalid shufflevector operands");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005579
Chris Lattnerac161bf2009-01-02 07:01:27 +00005580 Inst = new ShuffleVectorInst(Op0, Op1, Op2);
5581 return false;
5582}
5583
5584/// ParsePHI
Chris Lattnerc05471e2009-10-18 05:27:44 +00005585/// ::= 'phi' Type '[' Value ',' Value ']' (',' '[' Value ',' Value ']')*
Chris Lattnerf4f03422009-12-30 05:27:33 +00005586int LLParser::ParsePHI(Instruction *&Inst, PerFunctionState &PFS) {
Craig Topper2617dcc2014-04-15 06:32:26 +00005587 Type *Ty = nullptr; LocTy TypeLoc;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005588 Value *Op0, *Op1;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005589
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00005590 if (ParseType(Ty, TypeLoc) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00005591 ParseToken(lltok::lsquare, "expected '[' in phi value list") ||
5592 ParseValue(Ty, Op0, PFS) ||
5593 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
Owen Anderson55f1c092009-08-13 21:58:54 +00005594 ParseValue(Type::getLabelTy(Context), Op1, PFS) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00005595 ParseToken(lltok::rsquare, "expected ']' in phi value list"))
5596 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005597
Chris Lattnerf4f03422009-12-30 05:27:33 +00005598 bool AteExtraComma = false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005599 SmallVector<std::pair<Value*, BasicBlock*>, 16> PHIVals;
5600 while (1) {
5601 PHIVals.push_back(std::make_pair(Op0, cast<BasicBlock>(Op1)));
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005602
Chris Lattner3822f632009-01-02 08:05:26 +00005603 if (!EatIfPresent(lltok::comma))
Chris Lattnerac161bf2009-01-02 07:01:27 +00005604 break;
5605
Chris Lattnerf4f03422009-12-30 05:27:33 +00005606 if (Lex.getKind() == lltok::MetadataVar) {
5607 AteExtraComma = true;
Devang Patel8f842d32009-10-16 18:45:49 +00005608 break;
Chris Lattnerf4f03422009-12-30 05:27:33 +00005609 }
Devang Patel8f842d32009-10-16 18:45:49 +00005610
Chris Lattner3822f632009-01-02 08:05:26 +00005611 if (ParseToken(lltok::lsquare, "expected '[' in phi value list") ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00005612 ParseValue(Ty, Op0, PFS) ||
5613 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
Owen Anderson55f1c092009-08-13 21:58:54 +00005614 ParseValue(Type::getLabelTy(Context), Op1, PFS) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00005615 ParseToken(lltok::rsquare, "expected ']' in phi value list"))
5616 return true;
5617 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005618
Chris Lattnerac161bf2009-01-02 07:01:27 +00005619 if (!Ty->isFirstClassType())
5620 return Error(TypeLoc, "phi node must have first class type");
5621
Jay Foad52131342011-03-30 11:28:46 +00005622 PHINode *PN = PHINode::Create(Ty, PHIVals.size());
Chris Lattnerac161bf2009-01-02 07:01:27 +00005623 for (unsigned i = 0, e = PHIVals.size(); i != e; ++i)
5624 PN->addIncoming(PHIVals[i].first, PHIVals[i].second);
5625 Inst = PN;
Chris Lattnerf4f03422009-12-30 05:27:33 +00005626 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005627}
5628
Bill Wendlingfae14752011-08-12 20:24:12 +00005629/// ParseLandingPad
5630/// ::= 'landingpad' Type 'personality' TypeAndValue 'cleanup'? Clause+
5631/// Clause
5632/// ::= 'catch' TypeAndValue
5633/// ::= 'filter'
5634/// ::= 'filter' TypeAndValue ( ',' TypeAndValue )*
5635bool LLParser::ParseLandingPad(Instruction *&Inst, PerFunctionState &PFS) {
Craig Topper2617dcc2014-04-15 06:32:26 +00005636 Type *Ty = nullptr; LocTy TyLoc;
Bill Wendlingfae14752011-08-12 20:24:12 +00005637
David Majnemer7fddecc2015-06-17 20:52:32 +00005638 if (ParseType(Ty, TyLoc))
Bill Wendlingfae14752011-08-12 20:24:12 +00005639 return true;
5640
David Majnemer7fddecc2015-06-17 20:52:32 +00005641 std::unique_ptr<LandingPadInst> LP(LandingPadInst::Create(Ty, 0));
Bill Wendlingfae14752011-08-12 20:24:12 +00005642 LP->setCleanup(EatIfPresent(lltok::kw_cleanup));
5643
5644 while (Lex.getKind() == lltok::kw_catch || Lex.getKind() == lltok::kw_filter){
5645 LandingPadInst::ClauseType CT;
5646 if (EatIfPresent(lltok::kw_catch))
5647 CT = LandingPadInst::Catch;
5648 else if (EatIfPresent(lltok::kw_filter))
5649 CT = LandingPadInst::Filter;
5650 else
5651 return TokError("expected 'catch' or 'filter' clause type");
5652
Rafael Espindola4dc5dfc2014-06-04 18:51:31 +00005653 Value *V;
5654 LocTy VLoc;
Owen Andersonf8f259d2015-03-09 07:13:42 +00005655 if (ParseTypeAndValue(V, VLoc, PFS))
Bill Wendlingfae14752011-08-12 20:24:12 +00005656 return true;
Bill Wendlingfae14752011-08-12 20:24:12 +00005657
Bill Wendlinga52aa3c2011-08-12 20:52:25 +00005658 // A 'catch' type expects a non-array constant. A filter clause expects an
5659 // array constant.
5660 if (CT == LandingPadInst::Catch) {
5661 if (isa<ArrayType>(V->getType()))
5662 Error(VLoc, "'catch' clause has an invalid type");
5663 } else {
5664 if (!isa<ArrayType>(V->getType()))
5665 Error(VLoc, "'filter' clause has an invalid type");
5666 }
5667
Owen Andersonf8f259d2015-03-09 07:13:42 +00005668 Constant *CV = dyn_cast<Constant>(V);
5669 if (!CV)
5670 return Error(VLoc, "clause argument must be a constant");
5671 LP->addClause(CV);
Bill Wendlingfae14752011-08-12 20:24:12 +00005672 }
5673
Owen Andersonf8f259d2015-03-09 07:13:42 +00005674 Inst = LP.release();
Bill Wendlingfae14752011-08-12 20:24:12 +00005675 return false;
5676}
5677
Chris Lattnerac161bf2009-01-02 07:01:27 +00005678/// ParseCall
Sanjay Patelfa54ace2015-12-14 21:59:03 +00005679/// ::= 'call' OptionalFastMathFlags OptionalCallingConv
5680/// OptionalAttrs Type Value ParameterList OptionalAttrs
5681/// ::= 'tail' 'call' OptionalFastMathFlags OptionalCallingConv
5682/// OptionalAttrs Type Value ParameterList OptionalAttrs
5683/// ::= 'musttail' 'call' OptionalFastMathFlags OptionalCallingConv
5684/// OptionalAttrs Type Value ParameterList OptionalAttrs
5685/// ::= 'notail' 'call' OptionalFastMathFlags OptionalCallingConv
5686/// OptionalAttrs Type Value ParameterList OptionalAttrs
Chris Lattnerac161bf2009-01-02 07:01:27 +00005687bool LLParser::ParseCall(Instruction *&Inst, PerFunctionState &PFS,
Reid Kleckner5772b772014-04-24 20:14:34 +00005688 CallInst::TailCallKind TCK) {
Bill Wendling50d27842012-10-15 20:35:56 +00005689 AttrBuilder RetAttrs, FnAttrs;
Bill Wendlingb32b0412013-02-08 06:32:06 +00005690 std::vector<unsigned> FwdRefAttrGrps;
Michael Gottesman41748d72013-06-27 00:25:01 +00005691 LocTy BuiltinLoc;
Alexey Samsonov17a9cff2014-09-10 18:00:17 +00005692 unsigned CC;
Craig Topper2617dcc2014-04-15 06:32:26 +00005693 Type *RetType = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005694 LocTy RetTypeLoc;
5695 ValID CalleeID;
5696 SmallVector<ParamInfo, 16> ArgList;
Sanjoy Dasb513a9f2015-09-24 23:34:52 +00005697 SmallVector<OperandBundleDef, 2> BundleList;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005698 LocTy CallLoc = Lex.getLoc();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005699
Sanjay Patelfa54ace2015-12-14 21:59:03 +00005700 if (TCK != CallInst::TCK_None &&
5701 ParseToken(lltok::kw_call,
5702 "expected 'tail call', 'musttail call', or 'notail call'"))
5703 return true;
5704
5705 FastMathFlags FMF = EatFastMathFlagsIfPresent();
5706
5707 if (ParseOptionalCallingConv(CC) || ParseOptionalReturnAttrs(RetAttrs) ||
Chris Lattnerf880ca22009-03-09 04:49:14 +00005708 ParseType(RetType, RetTypeLoc, true /*void allowed*/) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00005709 ParseValID(CalleeID) ||
Reid Kleckner83498642014-08-26 00:33:28 +00005710 ParseParameterList(ArgList, PFS, TCK == CallInst::TCK_MustTail,
5711 PFS.getFunction().isVarArg()) ||
Sanjoy Dasb513a9f2015-09-24 23:34:52 +00005712 ParseFnAttributeValuePairs(FnAttrs, FwdRefAttrGrps, false, BuiltinLoc) ||
5713 ParseOptionalOperandBundles(BundleList, PFS))
Chris Lattnerac161bf2009-01-02 07:01:27 +00005714 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005715
Sanjay Patelfa54ace2015-12-14 21:59:03 +00005716 if (FMF.any() && !RetType->isFPOrFPVectorTy())
5717 return Error(CallLoc, "fast-math-flags specified for call without "
5718 "floating-point scalar or vector return type");
5719
Chris Lattnerac161bf2009-01-02 07:01:27 +00005720 // If RetType is a non-function pointer type, then this is the short syntax
5721 // for the call, which means that RetType is just the return type. Infer the
5722 // rest of the function argument types from the arguments that are present.
David Blaikie23af6482015-04-16 23:24:18 +00005723 FunctionType *Ty = dyn_cast<FunctionType>(RetType);
5724 if (!Ty) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00005725 // Pull out the types of all of the arguments...
Jay Foadb804a2b2011-07-12 14:06:48 +00005726 std::vector<Type*> ParamTypes;
Eli Friedman6cf51412010-07-24 23:06:59 +00005727 for (unsigned i = 0, e = ArgList.size(); i != e; ++i)
5728 ParamTypes.push_back(ArgList[i].V->getType());
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005729
Chris Lattnerac161bf2009-01-02 07:01:27 +00005730 if (!FunctionType::isValidReturnType(RetType))
5731 return Error(RetTypeLoc, "Invalid result type for LLVM function");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005732
Owen Anderson4056ca92009-07-29 22:17:13 +00005733 Ty = FunctionType::get(RetType, ParamTypes, false);
Chris Lattnerac161bf2009-01-02 07:01:27 +00005734 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005735
David Blaikie41ba2b42015-07-27 23:32:19 +00005736 CalleeID.FTy = Ty;
5737
Chris Lattnerac161bf2009-01-02 07:01:27 +00005738 // Look up the callee.
5739 Value *Callee;
David Blaikie23af6482015-04-16 23:24:18 +00005740 if (ConvertValIDToValue(PointerType::getUnqual(Ty), CalleeID, Callee, &PFS))
5741 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005742
Bill Wendling3d7b0b82012-12-19 07:18:57 +00005743 // Set up the Attribute for the function.
Bill Wendlingf5075a42013-01-27 02:24:02 +00005744 SmallVector<AttributeSet, 8> Attrs;
Bill Wendling3bef2dd2012-09-19 23:54:18 +00005745 if (RetAttrs.hasAttributes())
Bill Wendlingf5075a42013-01-27 02:24:02 +00005746 Attrs.push_back(AttributeSet::get(RetType->getContext(),
5747 AttributeSet::ReturnIndex,
5748 RetAttrs));
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005749
Chris Lattnerac161bf2009-01-02 07:01:27 +00005750 SmallVector<Value*, 8> Args;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005751
Chris Lattnerac161bf2009-01-02 07:01:27 +00005752 // Loop through FunctionType's arguments and ensure they are specified
5753 // correctly. Also, gather any parameter attributes.
5754 FunctionType::param_iterator I = Ty->param_begin();
5755 FunctionType::param_iterator E = Ty->param_end();
5756 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
Craig Topper2617dcc2014-04-15 06:32:26 +00005757 Type *ExpectedTy = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005758 if (I != E) {
5759 ExpectedTy = *I++;
5760 } else if (!Ty->isVarArg()) {
5761 return Error(ArgList[i].Loc, "too many arguments specified");
5762 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005763
Chris Lattnerac161bf2009-01-02 07:01:27 +00005764 if (ExpectedTy && ExpectedTy != ArgList[i].V->getType())
5765 return Error(ArgList[i].Loc, "argument is not of expected type '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00005766 getTypeString(ExpectedTy) + "'");
Chris Lattnerac161bf2009-01-02 07:01:27 +00005767 Args.push_back(ArgList[i].V);
Bill Wendlingfe0021a2013-01-31 00:29:54 +00005768 if (ArgList[i].Attrs.hasAttributes(i + 1)) {
5769 AttrBuilder B(ArgList[i].Attrs, i + 1);
Bill Wendlingf5075a42013-01-27 02:24:02 +00005770 Attrs.push_back(AttributeSet::get(RetType->getContext(), i + 1, B));
5771 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00005772 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005773
Chris Lattnerac161bf2009-01-02 07:01:27 +00005774 if (I != E)
5775 return Error(CallLoc, "not enough parameters specified for call");
5776
David Majnemer8d22abd2015-02-23 00:01:32 +00005777 if (FnAttrs.hasAttributes()) {
5778 if (FnAttrs.hasAlignmentAttr())
5779 return Error(CallLoc, "call instructions may not have an alignment");
5780
Bill Wendlingf5075a42013-01-27 02:24:02 +00005781 Attrs.push_back(AttributeSet::get(RetType->getContext(),
5782 AttributeSet::FunctionIndex,
5783 FnAttrs));
David Majnemer8d22abd2015-02-23 00:01:32 +00005784 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00005785
Bill Wendling3d7b0b82012-12-19 07:18:57 +00005786 // Finish off the Attribute and check them
Bill Wendlinge94d8432012-12-07 23:16:57 +00005787 AttributeSet PAL = AttributeSet::get(Context, Attrs);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005788
Sanjoy Dasb513a9f2015-09-24 23:34:52 +00005789 CallInst *CI = CallInst::Create(Ty, Callee, Args, BundleList);
Reid Kleckner5772b772014-04-24 20:14:34 +00005790 CI->setTailCallKind(TCK);
Chris Lattnerac161bf2009-01-02 07:01:27 +00005791 CI->setCallingConv(CC);
Sanjay Patelfa54ace2015-12-14 21:59:03 +00005792 if (FMF.any())
5793 CI->setFastMathFlags(FMF);
Chris Lattnerac161bf2009-01-02 07:01:27 +00005794 CI->setAttributes(PAL);
Bill Wendlingb32b0412013-02-08 06:32:06 +00005795 ForwardRefAttrGroups[CI] = FwdRefAttrGrps;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005796 Inst = CI;
5797 return false;
5798}
5799
5800//===----------------------------------------------------------------------===//
5801// Memory Instructions.
5802//===----------------------------------------------------------------------===//
5803
5804/// ParseAlloc
David Majnemerc4ab61c2014-03-09 06:41:58 +00005805/// ::= 'alloca' 'inalloca'? Type (',' TypeAndValue)? (',' 'align' i32)?
Chris Lattner78103722011-06-17 03:16:47 +00005806int LLParser::ParseAlloc(Instruction *&Inst, PerFunctionState &PFS) {
Craig Topper2617dcc2014-04-15 06:32:26 +00005807 Value *Size = nullptr;
David Majnemera3b0eb22015-02-16 08:38:03 +00005808 LocTy SizeLoc, TyLoc;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005809 unsigned Alignment = 0;
Craig Topper2617dcc2014-04-15 06:32:26 +00005810 Type *Ty = nullptr;
David Majnemerc4ab61c2014-03-09 06:41:58 +00005811
5812 bool IsInAlloca = EatIfPresent(lltok::kw_inalloca);
5813
David Majnemera3b0eb22015-02-16 08:38:03 +00005814 if (ParseType(Ty, TyLoc)) return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005815
David Majnemera3b0eb22015-02-16 08:38:03 +00005816 if (Ty->isFunctionTy() || !PointerType::isValidElementType(Ty))
5817 return Error(TyLoc, "invalid type for alloca");
David Majnemerfad5a312015-02-11 09:13:11 +00005818
Chris Lattnerb2f39502009-12-30 05:44:30 +00005819 bool AteExtraComma = false;
Chris Lattner3822f632009-01-02 08:05:26 +00005820 if (EatIfPresent(lltok::comma)) {
David Majnemerc4ab61c2014-03-09 06:41:58 +00005821 if (Lex.getKind() == lltok::kw_align) {
5822 if (ParseOptionalAlignment(Alignment)) return true;
5823 } else if (Lex.getKind() == lltok::MetadataVar) {
5824 AteExtraComma = true;
5825 } else {
5826 if (ParseTypeAndValue(Size, SizeLoc, PFS) ||
5827 ParseOptionalCommaAlign(Alignment, AteExtraComma))
5828 return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005829 }
5830 }
5831
Dan Gohman2140a742010-05-28 01:14:11 +00005832 if (Size && !Size->getType()->isIntegerTy())
5833 return Error(SizeLoc, "element count must have integer type");
Chris Lattnerac161bf2009-01-02 07:01:27 +00005834
Reid Kleckner436c42e2014-01-17 23:58:17 +00005835 AllocaInst *AI = new AllocaInst(Ty, Size, Alignment);
5836 AI->setUsedWithInAlloca(IsInAlloca);
5837 Inst = AI;
Chris Lattner78103722011-06-17 03:16:47 +00005838 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005839}
5840
5841/// ParseLoad
Eli Friedman02e737b2011-08-12 22:50:01 +00005842/// ::= 'load' 'volatile'? TypeAndValue (',' 'align' i32)?
Michael Ilseman26ee2b82012-11-15 22:34:00 +00005843/// ::= 'load' 'atomic' 'volatile'? TypeAndValue
Eli Friedman02e737b2011-08-12 22:50:01 +00005844/// 'singlethread'? AtomicOrdering (',' 'align' i32)?
Chris Lattnerbc639292011-11-27 06:56:53 +00005845int LLParser::ParseLoad(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00005846 Value *Val; LocTy Loc;
Devang Patelea8a4b92009-09-17 23:04:48 +00005847 unsigned Alignment = 0;
Chris Lattnerb2f39502009-12-30 05:44:30 +00005848 bool AteExtraComma = false;
Eli Friedman02e737b2011-08-12 22:50:01 +00005849 bool isAtomic = false;
Eli Friedman59b66882011-08-09 23:02:53 +00005850 AtomicOrdering Ordering = NotAtomic;
5851 SynchronizationScope Scope = CrossThread;
Eli Friedman02e737b2011-08-12 22:50:01 +00005852
5853 if (Lex.getKind() == lltok::kw_atomic) {
Eli Friedman02e737b2011-08-12 22:50:01 +00005854 isAtomic = true;
5855 Lex.Lex();
5856 }
5857
Chris Lattnerbc639292011-11-27 06:56:53 +00005858 bool isVolatile = false;
Eli Friedman02e737b2011-08-12 22:50:01 +00005859 if (Lex.getKind() == lltok::kw_volatile) {
Eli Friedman02e737b2011-08-12 22:50:01 +00005860 isVolatile = true;
5861 Lex.Lex();
5862 }
5863
David Blaikie15d9a4c2015-04-06 20:59:48 +00005864 Type *Ty;
David Blaikiea79ac142015-02-27 21:17:42 +00005865 LocTy ExplicitTypeLoc = Lex.getLoc();
5866 if (ParseType(Ty) ||
5867 ParseToken(lltok::comma, "expected comma after load's type") ||
5868 ParseTypeAndValue(Val, Loc, PFS) ||
Eli Friedman59b66882011-08-09 23:02:53 +00005869 ParseScopeAndOrdering(isAtomic, Scope, Ordering) ||
Chris Lattnerb2f39502009-12-30 05:44:30 +00005870 ParseOptionalCommaAlign(Alignment, AteExtraComma))
5871 return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005872
David Blaikie15d9a4c2015-04-06 20:59:48 +00005873 if (!Val->getType()->isPointerTy() || !Ty->isFirstClassType())
Chris Lattnerac161bf2009-01-02 07:01:27 +00005874 return Error(Loc, "load operand must be a pointer to a first class type");
Eli Friedman59b66882011-08-09 23:02:53 +00005875 if (isAtomic && !Alignment)
5876 return Error(Loc, "atomic load must have explicit non-zero alignment");
5877 if (Ordering == Release || Ordering == AcquireRelease)
5878 return Error(Loc, "atomic load cannot use Release ordering");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005879
David Blaikiea79ac142015-02-27 21:17:42 +00005880 if (Ty != cast<PointerType>(Val->getType())->getElementType())
5881 return Error(ExplicitTypeLoc,
5882 "explicit pointee type doesn't match operand's pointee type");
5883
David Blaikie15d9a4c2015-04-06 20:59:48 +00005884 Inst = new LoadInst(Ty, Val, "", isVolatile, Alignment, Ordering, Scope);
Chris Lattnerb2f39502009-12-30 05:44:30 +00005885 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005886}
5887
5888/// ParseStore
Eli Friedman02e737b2011-08-12 22:50:01 +00005889
5890/// ::= 'store' 'volatile'? TypeAndValue ',' TypeAndValue (',' 'align' i32)?
5891/// ::= 'store' 'atomic' 'volatile'? TypeAndValue ',' TypeAndValue
Eli Friedman59b66882011-08-09 23:02:53 +00005892/// 'singlethread'? AtomicOrdering (',' 'align' i32)?
Chris Lattnerbc639292011-11-27 06:56:53 +00005893int LLParser::ParseStore(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00005894 Value *Val, *Ptr; LocTy Loc, PtrLoc;
Devang Patelea8a4b92009-09-17 23:04:48 +00005895 unsigned Alignment = 0;
Chris Lattnerb2f39502009-12-30 05:44:30 +00005896 bool AteExtraComma = false;
Eli Friedman02e737b2011-08-12 22:50:01 +00005897 bool isAtomic = false;
Eli Friedman59b66882011-08-09 23:02:53 +00005898 AtomicOrdering Ordering = NotAtomic;
5899 SynchronizationScope Scope = CrossThread;
Eli Friedman02e737b2011-08-12 22:50:01 +00005900
5901 if (Lex.getKind() == lltok::kw_atomic) {
Eli Friedman02e737b2011-08-12 22:50:01 +00005902 isAtomic = true;
5903 Lex.Lex();
5904 }
5905
Chris Lattnerbc639292011-11-27 06:56:53 +00005906 bool isVolatile = false;
Eli Friedman02e737b2011-08-12 22:50:01 +00005907 if (Lex.getKind() == lltok::kw_volatile) {
Eli Friedman02e737b2011-08-12 22:50:01 +00005908 isVolatile = true;
5909 Lex.Lex();
5910 }
5911
Chris Lattnerac161bf2009-01-02 07:01:27 +00005912 if (ParseTypeAndValue(Val, Loc, PFS) ||
5913 ParseToken(lltok::comma, "expected ',' after store operand") ||
Chris Lattnerb2f39502009-12-30 05:44:30 +00005914 ParseTypeAndValue(Ptr, PtrLoc, PFS) ||
Eli Friedman59b66882011-08-09 23:02:53 +00005915 ParseScopeAndOrdering(isAtomic, Scope, Ordering) ||
Chris Lattnerb2f39502009-12-30 05:44:30 +00005916 ParseOptionalCommaAlign(Alignment, AteExtraComma))
Chris Lattnerac161bf2009-01-02 07:01:27 +00005917 return true;
Devang Patelea8a4b92009-09-17 23:04:48 +00005918
Duncan Sands19d0b472010-02-16 11:11:14 +00005919 if (!Ptr->getType()->isPointerTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00005920 return Error(PtrLoc, "store operand must be a pointer");
5921 if (!Val->getType()->isFirstClassType())
5922 return Error(Loc, "store operand must be a first class value");
5923 if (cast<PointerType>(Ptr->getType())->getElementType() != Val->getType())
5924 return Error(Loc, "stored value and pointer type do not match");
Eli Friedman59b66882011-08-09 23:02:53 +00005925 if (isAtomic && !Alignment)
5926 return Error(Loc, "atomic store must have explicit non-zero alignment");
5927 if (Ordering == Acquire || Ordering == AcquireRelease)
5928 return Error(Loc, "atomic store cannot use Acquire ordering");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005929
Eli Friedman59b66882011-08-09 23:02:53 +00005930 Inst = new StoreInst(Val, Ptr, isVolatile, Alignment, Ordering, Scope);
Chris Lattnerb2f39502009-12-30 05:44:30 +00005931 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005932}
5933
Eli Friedmanc9a551e2011-07-28 21:48:00 +00005934/// ParseCmpXchg
Tim Northover420a2162014-06-13 14:24:07 +00005935/// ::= 'cmpxchg' 'weak'? 'volatile'? TypeAndValue ',' TypeAndValue ','
5936/// TypeAndValue 'singlethread'? AtomicOrdering AtomicOrdering
Eli Friedman02e737b2011-08-12 22:50:01 +00005937int LLParser::ParseCmpXchg(Instruction *&Inst, PerFunctionState &PFS) {
Eli Friedmanc9a551e2011-07-28 21:48:00 +00005938 Value *Ptr, *Cmp, *New; LocTy PtrLoc, CmpLoc, NewLoc;
5939 bool AteExtraComma = false;
Tim Northovere94a5182014-03-11 10:48:52 +00005940 AtomicOrdering SuccessOrdering = NotAtomic;
5941 AtomicOrdering FailureOrdering = NotAtomic;
Eli Friedmanc9a551e2011-07-28 21:48:00 +00005942 SynchronizationScope Scope = CrossThread;
Eli Friedman02e737b2011-08-12 22:50:01 +00005943 bool isVolatile = false;
Tim Northover420a2162014-06-13 14:24:07 +00005944 bool isWeak = false;
5945
5946 if (EatIfPresent(lltok::kw_weak))
5947 isWeak = true;
Eli Friedman02e737b2011-08-12 22:50:01 +00005948
5949 if (EatIfPresent(lltok::kw_volatile))
5950 isVolatile = true;
5951
Eli Friedmanc9a551e2011-07-28 21:48:00 +00005952 if (ParseTypeAndValue(Ptr, PtrLoc, PFS) ||
5953 ParseToken(lltok::comma, "expected ',' after cmpxchg address") ||
5954 ParseTypeAndValue(Cmp, CmpLoc, PFS) ||
5955 ParseToken(lltok::comma, "expected ',' after cmpxchg cmp operand") ||
5956 ParseTypeAndValue(New, NewLoc, PFS) ||
Tim Northovere94a5182014-03-11 10:48:52 +00005957 ParseScopeAndOrdering(true /*Always atomic*/, Scope, SuccessOrdering) ||
5958 ParseOrdering(FailureOrdering))
Eli Friedmanc9a551e2011-07-28 21:48:00 +00005959 return true;
5960
Tim Northovere94a5182014-03-11 10:48:52 +00005961 if (SuccessOrdering == Unordered || FailureOrdering == Unordered)
Eli Friedmanc9a551e2011-07-28 21:48:00 +00005962 return TokError("cmpxchg cannot be unordered");
Tim Northovere94a5182014-03-11 10:48:52 +00005963 if (SuccessOrdering < FailureOrdering)
5964 return TokError("cmpxchg must be at least as ordered on success as failure");
5965 if (FailureOrdering == Release || FailureOrdering == AcquireRelease)
5966 return TokError("cmpxchg failure ordering cannot include release semantics");
Eli Friedmanc9a551e2011-07-28 21:48:00 +00005967 if (!Ptr->getType()->isPointerTy())
5968 return Error(PtrLoc, "cmpxchg operand must be a pointer");
5969 if (cast<PointerType>(Ptr->getType())->getElementType() != Cmp->getType())
5970 return Error(CmpLoc, "compare value and pointer type do not match");
5971 if (cast<PointerType>(Ptr->getType())->getElementType() != New->getType())
5972 return Error(NewLoc, "new value and pointer type do not match");
Philip Reames1960cfd2016-02-19 00:06:41 +00005973 if (!New->getType()->isFirstClassType())
5974 return Error(NewLoc, "cmpxchg operand must be a first class value");
Tim Northover420a2162014-06-13 14:24:07 +00005975 AtomicCmpXchgInst *CXI = new AtomicCmpXchgInst(
5976 Ptr, Cmp, New, SuccessOrdering, FailureOrdering, Scope);
Eli Friedmanc9a551e2011-07-28 21:48:00 +00005977 CXI->setVolatile(isVolatile);
Tim Northover420a2162014-06-13 14:24:07 +00005978 CXI->setWeak(isWeak);
Eli Friedmanc9a551e2011-07-28 21:48:00 +00005979 Inst = CXI;
5980 return AteExtraComma ? InstExtraComma : InstNormal;
5981}
5982
5983/// ParseAtomicRMW
Eli Friedman02e737b2011-08-12 22:50:01 +00005984/// ::= 'atomicrmw' 'volatile'? BinOp TypeAndValue ',' TypeAndValue
5985/// 'singlethread'? AtomicOrdering
5986int LLParser::ParseAtomicRMW(Instruction *&Inst, PerFunctionState &PFS) {
Eli Friedmanc9a551e2011-07-28 21:48:00 +00005987 Value *Ptr, *Val; LocTy PtrLoc, ValLoc;
5988 bool AteExtraComma = false;
5989 AtomicOrdering Ordering = NotAtomic;
5990 SynchronizationScope Scope = CrossThread;
Eli Friedman02e737b2011-08-12 22:50:01 +00005991 bool isVolatile = false;
Eli Friedmanc9a551e2011-07-28 21:48:00 +00005992 AtomicRMWInst::BinOp Operation;
Eli Friedman02e737b2011-08-12 22:50:01 +00005993
5994 if (EatIfPresent(lltok::kw_volatile))
5995 isVolatile = true;
5996
Eli Friedmanc9a551e2011-07-28 21:48:00 +00005997 switch (Lex.getKind()) {
5998 default: return TokError("expected binary operation in atomicrmw");
5999 case lltok::kw_xchg: Operation = AtomicRMWInst::Xchg; break;
6000 case lltok::kw_add: Operation = AtomicRMWInst::Add; break;
6001 case lltok::kw_sub: Operation = AtomicRMWInst::Sub; break;
6002 case lltok::kw_and: Operation = AtomicRMWInst::And; break;
6003 case lltok::kw_nand: Operation = AtomicRMWInst::Nand; break;
6004 case lltok::kw_or: Operation = AtomicRMWInst::Or; break;
6005 case lltok::kw_xor: Operation = AtomicRMWInst::Xor; break;
6006 case lltok::kw_max: Operation = AtomicRMWInst::Max; break;
6007 case lltok::kw_min: Operation = AtomicRMWInst::Min; break;
6008 case lltok::kw_umax: Operation = AtomicRMWInst::UMax; break;
6009 case lltok::kw_umin: Operation = AtomicRMWInst::UMin; break;
6010 }
6011 Lex.Lex(); // Eat the operation.
6012
6013 if (ParseTypeAndValue(Ptr, PtrLoc, PFS) ||
6014 ParseToken(lltok::comma, "expected ',' after atomicrmw address") ||
6015 ParseTypeAndValue(Val, ValLoc, PFS) ||
6016 ParseScopeAndOrdering(true /*Always atomic*/, Scope, Ordering))
6017 return true;
6018
6019 if (Ordering == Unordered)
6020 return TokError("atomicrmw cannot be unordered");
6021 if (!Ptr->getType()->isPointerTy())
6022 return Error(PtrLoc, "atomicrmw operand must be a pointer");
6023 if (cast<PointerType>(Ptr->getType())->getElementType() != Val->getType())
6024 return Error(ValLoc, "atomicrmw value and pointer type do not match");
6025 if (!Val->getType()->isIntegerTy())
6026 return Error(ValLoc, "atomicrmw operand must be an integer");
6027 unsigned Size = Val->getType()->getPrimitiveSizeInBits();
6028 if (Size < 8 || (Size & (Size - 1)))
6029 return Error(ValLoc, "atomicrmw operand must be power-of-two byte-sized"
6030 " integer");
6031
6032 AtomicRMWInst *RMWI =
6033 new AtomicRMWInst(Operation, Ptr, Val, Ordering, Scope);
6034 RMWI->setVolatile(isVolatile);
6035 Inst = RMWI;
6036 return AteExtraComma ? InstExtraComma : InstNormal;
6037}
6038
Eli Friedmanfee02c62011-07-25 23:16:38 +00006039/// ParseFence
6040/// ::= 'fence' 'singlethread'? AtomicOrdering
6041int LLParser::ParseFence(Instruction *&Inst, PerFunctionState &PFS) {
6042 AtomicOrdering Ordering = NotAtomic;
6043 SynchronizationScope Scope = CrossThread;
6044 if (ParseScopeAndOrdering(true /*Always atomic*/, Scope, Ordering))
6045 return true;
6046
6047 if (Ordering == Unordered)
6048 return TokError("fence cannot be unordered");
6049 if (Ordering == Monotonic)
6050 return TokError("fence cannot be monotonic");
6051
6052 Inst = new FenceInst(Context, Ordering, Scope);
6053 return InstNormal;
6054}
6055
Chris Lattnerac161bf2009-01-02 07:01:27 +00006056/// ParseGetElementPtr
Dan Gohman1639c392009-07-27 21:53:46 +00006057/// ::= 'getelementptr' 'inbounds'? TypeAndValue (',' TypeAndValue)*
Chris Lattnerf4f03422009-12-30 05:27:33 +00006058int LLParser::ParseGetElementPtr(Instruction *&Inst, PerFunctionState &PFS) {
Craig Topper2617dcc2014-04-15 06:32:26 +00006059 Value *Ptr = nullptr;
6060 Value *Val = nullptr;
Nadav Rotem3924cb02011-12-05 06:29:09 +00006061 LocTy Loc, EltLoc;
Dan Gohman1639c392009-07-27 21:53:46 +00006062
Dan Gohman16cbbe42009-07-29 15:58:36 +00006063 bool InBounds = EatIfPresent(lltok::kw_inbounds);
Dan Gohman1639c392009-07-27 21:53:46 +00006064
David Blaikie79e6c742015-02-27 19:29:02 +00006065 Type *Ty = nullptr;
6066 LocTy ExplicitTypeLoc = Lex.getLoc();
6067 if (ParseType(Ty) ||
6068 ParseToken(lltok::comma, "expected comma after getelementptr's type") ||
6069 ParseTypeAndValue(Ptr, Loc, PFS))
6070 return true;
6071
Eli Benderskyd9806682013-04-22 17:03:42 +00006072 Type *BaseType = Ptr->getType();
6073 PointerType *BasePointerType = dyn_cast<PointerType>(BaseType->getScalarType());
6074 if (!BasePointerType)
Chris Lattnerac161bf2009-01-02 07:01:27 +00006075 return Error(Loc, "base of getelementptr must be a pointer");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00006076
David Blaikie8d757942015-03-09 23:08:44 +00006077 if (Ty != BasePointerType->getElementType())
6078 return Error(ExplicitTypeLoc,
6079 "explicit pointee type doesn't match operand's pointee type");
6080
Chris Lattnerac161bf2009-01-02 07:01:27 +00006081 SmallVector<Value*, 16> Indices;
Chris Lattnerf4f03422009-12-30 05:27:33 +00006082 bool AteExtraComma = false;
Elena Demikhovsky37a4da82015-07-09 07:42:48 +00006083 // GEP returns a vector of pointers if at least one of parameters is a vector.
6084 // All vector parameters should have the same vector width.
6085 unsigned GEPWidth = BaseType->isVectorTy() ?
6086 BaseType->getVectorNumElements() : 0;
6087
Chris Lattner3822f632009-01-02 08:05:26 +00006088 while (EatIfPresent(lltok::comma)) {
Chris Lattnerf4f03422009-12-30 05:27:33 +00006089 if (Lex.getKind() == lltok::MetadataVar) {
6090 AteExtraComma = true;
Devang Patel52b17452009-10-13 18:49:55 +00006091 break;
Chris Lattnerf4f03422009-12-30 05:27:33 +00006092 }
Chris Lattner3822f632009-01-02 08:05:26 +00006093 if (ParseTypeAndValue(Val, EltLoc, PFS)) return true;
Nadav Rotem3924cb02011-12-05 06:29:09 +00006094 if (!Val->getType()->getScalarType()->isIntegerTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00006095 return Error(EltLoc, "getelementptr index must be an integer");
Elena Demikhovsky37a4da82015-07-09 07:42:48 +00006096
Nadav Rotem3924cb02011-12-05 06:29:09 +00006097 if (Val->getType()->isVectorTy()) {
Elena Demikhovsky37a4da82015-07-09 07:42:48 +00006098 unsigned ValNumEl = Val->getType()->getVectorNumElements();
6099 if (GEPWidth && GEPWidth != ValNumEl)
Nadav Rotem3924cb02011-12-05 06:29:09 +00006100 return Error(EltLoc,
6101 "getelementptr vector index has a wrong number of elements");
Elena Demikhovsky37a4da82015-07-09 07:42:48 +00006102 GEPWidth = ValNumEl;
Nadav Rotem3924cb02011-12-05 06:29:09 +00006103 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00006104 Indices.push_back(Val);
6105 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00006106
Craig Toppere3dcce92015-08-01 22:20:21 +00006107 SmallPtrSet<Type*, 4> Visited;
David Blaikied33bad32015-04-17 22:32:13 +00006108 if (!Indices.empty() && !Ty->isSized(&Visited))
Eli Benderskyd9806682013-04-22 17:03:42 +00006109 return Error(Loc, "base element of getelementptr must be sized");
6110
David Blaikied33bad32015-04-17 22:32:13 +00006111 if (!GetElementPtrInst::getIndexedType(Ty, Indices))
Chris Lattnerac161bf2009-01-02 07:01:27 +00006112 return Error(Loc, "invalid getelementptr indices");
David Blaikiecd7b97e2015-03-14 21:11:24 +00006113 Inst = GetElementPtrInst::Create(Ty, Ptr, Indices);
Dan Gohman1639c392009-07-27 21:53:46 +00006114 if (InBounds)
Dan Gohman1b849082009-09-07 23:54:19 +00006115 cast<GetElementPtrInst>(Inst)->setIsInBounds(true);
Chris Lattnerf4f03422009-12-30 05:27:33 +00006116 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerac161bf2009-01-02 07:01:27 +00006117}
6118
6119/// ParseExtractValue
6120/// ::= 'extractvalue' TypeAndValue (',' uint32)+
Chris Lattnerf4f03422009-12-30 05:27:33 +00006121int LLParser::ParseExtractValue(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00006122 Value *Val; LocTy Loc;
6123 SmallVector<unsigned, 4> Indices;
Chris Lattnerf4f03422009-12-30 05:27:33 +00006124 bool AteExtraComma;
Chris Lattnerac161bf2009-01-02 07:01:27 +00006125 if (ParseTypeAndValue(Val, Loc, PFS) ||
Chris Lattnerf4f03422009-12-30 05:27:33 +00006126 ParseIndexList(Indices, AteExtraComma))
Chris Lattnerac161bf2009-01-02 07:01:27 +00006127 return true;
6128
Chris Lattner392be582010-02-12 20:49:41 +00006129 if (!Val->getType()->isAggregateType())
6130 return Error(Loc, "extractvalue operand must be aggregate type");
Chris Lattnerac161bf2009-01-02 07:01:27 +00006131
Jay Foad57aa6362011-07-13 10:26:04 +00006132 if (!ExtractValueInst::getIndexedType(Val->getType(), Indices))
Chris Lattnerac161bf2009-01-02 07:01:27 +00006133 return Error(Loc, "invalid indices for extractvalue");
Jay Foad57aa6362011-07-13 10:26:04 +00006134 Inst = ExtractValueInst::Create(Val, Indices);
Chris Lattnerf4f03422009-12-30 05:27:33 +00006135 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerac161bf2009-01-02 07:01:27 +00006136}
6137
6138/// ParseInsertValue
6139/// ::= 'insertvalue' TypeAndValue ',' TypeAndValue (',' uint32)+
Chris Lattnerf4f03422009-12-30 05:27:33 +00006140int LLParser::ParseInsertValue(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00006141 Value *Val0, *Val1; LocTy Loc0, Loc1;
6142 SmallVector<unsigned, 4> Indices;
Chris Lattnerf4f03422009-12-30 05:27:33 +00006143 bool AteExtraComma;
Chris Lattnerac161bf2009-01-02 07:01:27 +00006144 if (ParseTypeAndValue(Val0, Loc0, PFS) ||
6145 ParseToken(lltok::comma, "expected comma after insertvalue operand") ||
6146 ParseTypeAndValue(Val1, Loc1, PFS) ||
Chris Lattnerf4f03422009-12-30 05:27:33 +00006147 ParseIndexList(Indices, AteExtraComma))
Chris Lattnerac161bf2009-01-02 07:01:27 +00006148 return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00006149
Chris Lattner392be582010-02-12 20:49:41 +00006150 if (!Val0->getType()->isAggregateType())
6151 return Error(Loc0, "insertvalue operand must be aggregate type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00006152
David Majnemer30074532015-02-11 07:43:58 +00006153 Type *IndexedType = ExtractValueInst::getIndexedType(Val0->getType(), Indices);
6154 if (!IndexedType)
Chris Lattnerac161bf2009-01-02 07:01:27 +00006155 return Error(Loc0, "invalid indices for insertvalue");
David Majnemer30074532015-02-11 07:43:58 +00006156 if (IndexedType != Val1->getType())
6157 return Error(Loc1, "insertvalue operand and field disagree in type: '" +
6158 getTypeString(Val1->getType()) + "' instead of '" +
6159 getTypeString(IndexedType) + "'");
Jay Foad57aa6362011-07-13 10:26:04 +00006160 Inst = InsertValueInst::Create(Val0, Val1, Indices);
Chris Lattnerf4f03422009-12-30 05:27:33 +00006161 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerac161bf2009-01-02 07:01:27 +00006162}
Nick Lewycky49f89192009-04-04 07:22:01 +00006163
6164//===----------------------------------------------------------------------===//
6165// Embedded metadata.
6166//===----------------------------------------------------------------------===//
6167
6168/// ParseMDNodeVector
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00006169/// ::= { Element (',' Element)* }
Nick Lewyckyb8f9b7a2009-05-10 20:57:05 +00006170/// Element
6171/// ::= 'null' | TypeAndValue
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00006172bool LLParser::ParseMDNodeVector(SmallVectorImpl<Metadata *> &Elts) {
David Majnemer06f960d2014-12-11 20:44:09 +00006173 if (ParseToken(lltok::lbrace, "expected '{' here"))
6174 return true;
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00006175
Dan Gohman1e0213a2010-07-13 19:33:27 +00006176 // Check for an empty list.
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00006177 if (EatIfPresent(lltok::rbrace))
Dan Gohman1e0213a2010-07-13 19:33:27 +00006178 return false;
6179
Nick Lewycky49f89192009-04-04 07:22:01 +00006180 do {
Chris Lattnera01ddfc2009-12-30 04:42:57 +00006181 // Null is a special case since it is typeless.
6182 if (EatIfPresent(lltok::kw_null)) {
Craig Topper2617dcc2014-04-15 06:32:26 +00006183 Elts.push_back(nullptr);
Chris Lattnera01ddfc2009-12-30 04:42:57 +00006184 continue;
Nick Lewyckyb8f9b7a2009-05-10 20:57:05 +00006185 }
Michael Ilseman26ee2b82012-11-15 22:34:00 +00006186
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00006187 Metadata *MD;
6188 if (ParseMetadata(MD, nullptr))
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00006189 return true;
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00006190 Elts.push_back(MD);
Nick Lewycky49f89192009-04-04 07:22:01 +00006191 } while (EatIfPresent(lltok::comma));
6192
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00006193 return ParseToken(lltok::rbrace, "expected end of metadata node");
Nick Lewycky49f89192009-04-04 07:22:01 +00006194}
Duncan P. N. Exon Smith0a448fb2014-08-19 21:30:15 +00006195
6196//===----------------------------------------------------------------------===//
6197// Use-list order directives.
6198//===----------------------------------------------------------------------===//
6199bool LLParser::sortUseListOrder(Value *V, ArrayRef<unsigned> Indexes,
6200 SMLoc Loc) {
6201 if (V->use_empty())
6202 return Error(Loc, "value has no uses");
6203
6204 unsigned NumUses = 0;
6205 SmallDenseMap<const Use *, unsigned, 16> Order;
6206 for (const Use &U : V->uses()) {
6207 if (++NumUses > Indexes.size())
6208 break;
6209 Order[&U] = Indexes[NumUses - 1];
6210 }
6211 if (NumUses < 2)
6212 return Error(Loc, "value only has one use");
6213 if (Order.size() != Indexes.size() || NumUses > Indexes.size())
6214 return Error(Loc, "wrong number of indexes, expected " +
6215 Twine(std::distance(V->use_begin(), V->use_end())));
6216
6217 V->sortUseList([&](const Use &L, const Use &R) {
6218 return Order.lookup(&L) < Order.lookup(&R);
6219 });
6220 return false;
6221}
6222
6223/// ParseUseListOrderIndexes
6224/// ::= '{' uint32 (',' uint32)+ '}'
6225bool LLParser::ParseUseListOrderIndexes(SmallVectorImpl<unsigned> &Indexes) {
6226 SMLoc Loc = Lex.getLoc();
6227 if (ParseToken(lltok::lbrace, "expected '{' here"))
6228 return true;
6229 if (Lex.getKind() == lltok::rbrace)
6230 return Lex.Error("expected non-empty list of uselistorder indexes");
6231
6232 // Use Offset, Max, and IsOrdered to check consistency of indexes. The
6233 // indexes should be distinct numbers in the range [0, size-1], and should
6234 // not be in order.
6235 unsigned Offset = 0;
6236 unsigned Max = 0;
6237 bool IsOrdered = true;
6238 assert(Indexes.empty() && "Expected empty order vector");
6239 do {
6240 unsigned Index;
6241 if (ParseUInt32(Index))
6242 return true;
6243
6244 // Update consistency checks.
6245 Offset += Index - Indexes.size();
6246 Max = std::max(Max, Index);
6247 IsOrdered &= Index == Indexes.size();
6248
6249 Indexes.push_back(Index);
6250 } while (EatIfPresent(lltok::comma));
6251
6252 if (ParseToken(lltok::rbrace, "expected '}' here"))
6253 return true;
6254
6255 if (Indexes.size() < 2)
6256 return Error(Loc, "expected >= 2 uselistorder indexes");
6257 if (Offset != 0 || Max >= Indexes.size())
6258 return Error(Loc, "expected distinct uselistorder indexes in range [0, size)");
6259 if (IsOrdered)
6260 return Error(Loc, "expected uselistorder indexes to change the order");
6261
6262 return false;
6263}
6264
6265/// ParseUseListOrder
6266/// ::= 'uselistorder' Type Value ',' UseListOrderIndexes
6267bool LLParser::ParseUseListOrder(PerFunctionState *PFS) {
6268 SMLoc Loc = Lex.getLoc();
6269 if (ParseToken(lltok::kw_uselistorder, "expected uselistorder directive"))
6270 return true;
6271
6272 Value *V;
6273 SmallVector<unsigned, 16> Indexes;
6274 if (ParseTypeAndValue(V, PFS) ||
6275 ParseToken(lltok::comma, "expected comma in uselistorder directive") ||
6276 ParseUseListOrderIndexes(Indexes))
6277 return true;
6278
6279 return sortUseListOrder(V, Indexes, Loc);
6280}
6281
6282/// ParseUseListOrderBB
6283/// ::= 'uselistorder_bb' @foo ',' %bar ',' UseListOrderIndexes
6284bool LLParser::ParseUseListOrderBB() {
6285 assert(Lex.getKind() == lltok::kw_uselistorder_bb);
6286 SMLoc Loc = Lex.getLoc();
6287 Lex.Lex();
6288
6289 ValID Fn, Label;
6290 SmallVector<unsigned, 16> Indexes;
6291 if (ParseValID(Fn) ||
6292 ParseToken(lltok::comma, "expected comma in uselistorder_bb directive") ||
6293 ParseValID(Label) ||
6294 ParseToken(lltok::comma, "expected comma in uselistorder_bb directive") ||
6295 ParseUseListOrderIndexes(Indexes))
6296 return true;
6297
6298 // Check the function.
6299 GlobalValue *GV;
6300 if (Fn.Kind == ValID::t_GlobalName)
6301 GV = M->getNamedValue(Fn.StrVal);
6302 else if (Fn.Kind == ValID::t_GlobalID)
6303 GV = Fn.UIntVal < NumberedVals.size() ? NumberedVals[Fn.UIntVal] : nullptr;
6304 else
6305 return Error(Fn.Loc, "expected function name in uselistorder_bb");
6306 if (!GV)
6307 return Error(Fn.Loc, "invalid function forward reference in uselistorder_bb");
6308 auto *F = dyn_cast<Function>(GV);
6309 if (!F)
6310 return Error(Fn.Loc, "expected function name in uselistorder_bb");
6311 if (F->isDeclaration())
6312 return Error(Fn.Loc, "invalid declaration in uselistorder_bb");
6313
6314 // Check the basic block.
6315 if (Label.Kind == ValID::t_LocalID)
6316 return Error(Label.Loc, "invalid numeric label in uselistorder_bb");
6317 if (Label.Kind != ValID::t_LocalName)
6318 return Error(Label.Loc, "expected basic block name in uselistorder_bb");
6319 Value *V = F->getValueSymbolTable().lookup(Label.StrVal);
6320 if (!V)
6321 return Error(Label.Loc, "invalid basic block in uselistorder_bb");
6322 if (!isa<BasicBlock>(V))
6323 return Error(Label.Loc, "expected basic block in uselistorder_bb");
6324
6325 return sortUseListOrder(V, Indexes, Loc);
6326}