blob: 712a2c6762d2a06fe83332b5e4be5f6dc7455c5f [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"
Eugene Zelenko1804a772016-08-25 00:45:04 +000015#include "llvm/ADT/DenseMap.h"
16#include "llvm/ADT/None.h"
17#include "llvm/ADT/Optional.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000018#include "llvm/ADT/SmallPtrSet.h"
David Blaikieadbda4b2015-08-03 20:08:41 +000019#include "llvm/ADT/STLExtras.h"
Alex Lorenz8955f7d2015-06-23 17:10:10 +000020#include "llvm/AsmParser/SlotMapping.h"
Eugene Zelenko1804a772016-08-25 00:45:04 +000021#include "llvm/IR/Argument.h"
Chandler Carruth91065212014-03-05 10:34:14 +000022#include "llvm/IR/AutoUpgrade.h"
Eugene Zelenko1804a772016-08-25 00:45:04 +000023#include "llvm/IR/BasicBlock.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000024#include "llvm/IR/CallingConv.h"
Eugene Zelenko1804a772016-08-25 00:45:04 +000025#include "llvm/IR/Comdat.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000026#include "llvm/IR/Constants.h"
Duncan P. N. Exon Smithd9901ff2015-02-02 18:53:21 +000027#include "llvm/IR/DebugInfoMetadata.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000028#include "llvm/IR/DerivedTypes.h"
Eugene Zelenko1804a772016-08-25 00:45:04 +000029#include "llvm/IR/Function.h"
30#include "llvm/IR/GlobalIFunc.h"
31#include "llvm/IR/GlobalObject.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000032#include "llvm/IR/InlineAsm.h"
Eugene Zelenko1804a772016-08-25 00:45:04 +000033#include "llvm/IR/Instruction.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000034#include "llvm/IR/Instructions.h"
Artur Pilipenko6c7a8ab2016-06-24 15:10:29 +000035#include "llvm/IR/Intrinsics.h"
Manman Ren209b17c2013-09-28 00:22:27 +000036#include "llvm/IR/LLVMContext.h"
Eugene Zelenko1804a772016-08-25 00:45:04 +000037#include "llvm/IR/Metadata.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000038#include "llvm/IR/Module.h"
39#include "llvm/IR/Operator.h"
Eugene Zelenko1804a772016-08-25 00:45:04 +000040#include "llvm/IR/Type.h"
41#include "llvm/IR/Value.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000042#include "llvm/IR/ValueSymbolTable.h"
Eugene Zelenko1804a772016-08-25 00:45:04 +000043#include "llvm/Support/Casting.h"
Duncan P. N. Exon Smith97486072015-02-03 21:56:01 +000044#include "llvm/Support/Dwarf.h"
Torok Edwin56d06592009-07-11 20:10:48 +000045#include "llvm/Support/ErrorHandling.h"
Eugene Zelenko1804a772016-08-25 00:45:04 +000046#include "llvm/Support/MathExtras.h"
Duncan P. N. Exon Smith17169902014-08-19 00:13:19 +000047#include "llvm/Support/SaveAndRestore.h"
Chris Lattnerac161bf2009-01-02 07:01:27 +000048#include "llvm/Support/raw_ostream.h"
Eugene Zelenko1804a772016-08-25 00:45:04 +000049#include <algorithm>
50#include <cassert>
51#include <cstring>
52#include <iterator>
53#include <vector>
54
Chris Lattnerac161bf2009-01-02 07:01:27 +000055using namespace llvm;
56
Chris Lattner229907c2011-07-18 04:54:35 +000057static std::string getTypeString(Type *T) {
Alp Tokere69170a2014-06-26 22:52:05 +000058 std::string Result;
59 raw_string_ostream Tmp(Result);
60 Tmp << *T;
61 return Tmp.str();
Chris Lattner0f214eb2011-06-18 21:18:23 +000062}
63
Chris Lattner3822f632009-01-02 08:05:26 +000064/// Run: module ::= toplevelentity*
Chris Lattnerad6f3352009-01-04 20:44:11 +000065bool LLParser::Run() {
Chris Lattner3822f632009-01-02 08:05:26 +000066 // Prime the lexer.
67 Lex.Lex();
68
Mehdi Amini50af49f2016-04-02 03:46:17 +000069 if (Context.shouldDiscardValueNames())
Mehdi Amini09b4a8d2016-03-10 01:28:54 +000070 return Error(
71 Lex.getLoc(),
72 "Can't read textual IR with a Context that discards named Values");
73
Chris Lattnerad6f3352009-01-04 20:44:11 +000074 return ParseTopLevelEntities() ||
75 ValidateEndOfModule();
Chris Lattnerac161bf2009-01-02 07:01:27 +000076}
77
Alex Lorenz1de2acd2015-08-21 21:32:39 +000078bool LLParser::parseStandaloneConstantValue(Constant *&C,
79 const SlotMapping *Slots) {
80 restoreParsingState(Slots);
Alex Lorenzd2255952015-07-17 22:07:03 +000081 Lex.Lex();
82
83 Type *Ty = nullptr;
84 if (ParseType(Ty) || parseConstantValue(Ty, C))
85 return true;
86 if (Lex.getKind() != lltok::Eof)
87 return Error(Lex.getLoc(), "expected end of string");
88 return false;
89}
90
Quentin Colombetdafed5d2016-03-08 00:37:07 +000091bool LLParser::parseTypeAtBeginning(Type *&Ty, unsigned &Read,
92 const SlotMapping *Slots) {
Quentin Colombet81e72b42016-03-07 22:09:05 +000093 restoreParsingState(Slots);
94 Lex.Lex();
95
Quentin Colombetdafed5d2016-03-08 00:37:07 +000096 Read = 0;
97 SMLoc Start = Lex.getLoc();
Quentin Colombet81e72b42016-03-07 22:09:05 +000098 Ty = nullptr;
99 if (ParseType(Ty))
100 return true;
Quentin Colombetdafed5d2016-03-08 00:37:07 +0000101 SMLoc End = Lex.getLoc();
102 Read = End.getPointer() - Start.getPointer();
103
Quentin Colombet81e72b42016-03-07 22:09:05 +0000104 return false;
105}
106
Alex Lorenz1de2acd2015-08-21 21:32:39 +0000107void LLParser::restoreParsingState(const SlotMapping *Slots) {
108 if (!Slots)
109 return;
110 NumberedVals = Slots->GlobalValues;
111 NumberedMetadata = Slots->MetadataNodes;
112 for (const auto &I : Slots->NamedTypes)
113 NamedTypes.insert(
114 std::make_pair(I.getKey(), std::make_pair(I.second, LocTy())));
115 for (const auto &I : Slots->Types)
116 NumberedTypes.insert(
117 std::make_pair(I.first, std::make_pair(I.second, LocTy())));
118}
119
Chris Lattnerac161bf2009-01-02 07:01:27 +0000120/// ValidateEndOfModule - Do final validity and sanity checks at the end of the
121/// module.
122bool LLParser::ValidateEndOfModule() {
Bill Wendlingb32b0412013-02-08 06:32:06 +0000123 // Handle any function attribute group forward references.
124 for (std::map<Value*, std::vector<unsigned> >::iterator
125 I = ForwardRefAttrGroups.begin(), E = ForwardRefAttrGroups.end();
126 I != E; ++I) {
127 Value *V = I->first;
128 std::vector<unsigned> &Vec = I->second;
129 AttrBuilder B;
130
131 for (std::vector<unsigned>::iterator VI = Vec.begin(), VE = Vec.end();
132 VI != VE; ++VI)
133 B.merge(NumberedAttrBuilders[*VI]);
134
135 if (Function *Fn = dyn_cast<Function>(V)) {
136 AttributeSet AS = Fn->getAttributes();
137 AttrBuilder FnAttrs(AS.getFnAttributes(), AttributeSet::FunctionIndex);
138 AS = AS.removeAttributes(Context, AttributeSet::FunctionIndex,
139 AS.getFnAttributes());
140
141 FnAttrs.merge(B);
142
143 // If the alignment was parsed as an attribute, move to the alignment
144 // field.
145 if (FnAttrs.hasAlignmentAttr()) {
146 Fn->setAlignment(FnAttrs.getAlignment());
147 FnAttrs.removeAttribute(Attribute::Alignment);
148 }
149
150 AS = AS.addAttributes(Context, AttributeSet::FunctionIndex,
151 AttributeSet::get(Context,
152 AttributeSet::FunctionIndex,
153 FnAttrs));
154 Fn->setAttributes(AS);
155 } else if (CallInst *CI = dyn_cast<CallInst>(V)) {
156 AttributeSet AS = CI->getAttributes();
157 AttrBuilder FnAttrs(AS.getFnAttributes(), AttributeSet::FunctionIndex);
158 AS = AS.removeAttributes(Context, AttributeSet::FunctionIndex,
159 AS.getFnAttributes());
Bill Wendling59dce372013-02-12 10:13:06 +0000160 FnAttrs.merge(B);
Bill Wendlingb32b0412013-02-08 06:32:06 +0000161 AS = AS.addAttributes(Context, AttributeSet::FunctionIndex,
162 AttributeSet::get(Context,
163 AttributeSet::FunctionIndex,
164 FnAttrs));
165 CI->setAttributes(AS);
166 } else if (InvokeInst *II = dyn_cast<InvokeInst>(V)) {
167 AttributeSet AS = II->getAttributes();
168 AttrBuilder FnAttrs(AS.getFnAttributes(), AttributeSet::FunctionIndex);
169 AS = AS.removeAttributes(Context, AttributeSet::FunctionIndex,
170 AS.getFnAttributes());
Bill Wendling59dce372013-02-12 10:13:06 +0000171 FnAttrs.merge(B);
Bill Wendlingb32b0412013-02-08 06:32:06 +0000172 AS = AS.addAttributes(Context, AttributeSet::FunctionIndex,
173 AttributeSet::get(Context,
174 AttributeSet::FunctionIndex,
175 FnAttrs));
176 II->setAttributes(AS);
177 } else {
178 llvm_unreachable("invalid object with forward attribute group reference");
179 }
180 }
Michael Ilseman26ee2b82012-11-15 22:34:00 +0000181
Duncan P. N. Exon Smith17169902014-08-19 00:13:19 +0000182 // If there are entries in ForwardRefBlockAddresses at this point, the
183 // function was never defined.
184 if (!ForwardRefBlockAddresses.empty())
185 return Error(ForwardRefBlockAddresses.begin()->first.Loc,
186 "expected function name in blockaddress");
Michael Ilseman26ee2b82012-11-15 22:34:00 +0000187
David Majnemer19b51052015-02-11 07:43:56 +0000188 for (const auto &NT : NumberedTypes)
189 if (NT.second.second.isValid())
190 return Error(NT.second.second,
191 "use of undefined type '%" + Twine(NT.first) + "'");
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000192
193 for (StringMap<std::pair<Type*, LocTy> >::iterator I =
194 NamedTypes.begin(), E = NamedTypes.end(); I != E; ++I)
195 if (I->second.second.isValid())
196 return Error(I->second.second,
197 "use of undefined type named '" + I->getKey() + "'");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000198
David Majnemerdad0a642014-06-27 18:19:56 +0000199 if (!ForwardRefComdats.empty())
200 return Error(ForwardRefComdats.begin()->second,
201 "use of undefined comdat '$" +
202 ForwardRefComdats.begin()->first + "'");
203
Chris Lattnerac161bf2009-01-02 07:01:27 +0000204 if (!ForwardRefVals.empty())
205 return Error(ForwardRefVals.begin()->second.second,
206 "use of undefined value '@" + ForwardRefVals.begin()->first +
207 "'");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000208
Chris Lattnerac161bf2009-01-02 07:01:27 +0000209 if (!ForwardRefValIDs.empty())
210 return Error(ForwardRefValIDs.begin()->second.second,
211 "use of undefined value '@" +
Benjamin Kramerc7583112010-09-27 17:42:11 +0000212 Twine(ForwardRefValIDs.begin()->first) + "'");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000213
Devang Pateld2541152009-07-08 19:23:54 +0000214 if (!ForwardRefMDNodes.empty())
215 return Error(ForwardRefMDNodes.begin()->second.second,
216 "use of undefined metadata '!" +
Benjamin Kramerc7583112010-09-27 17:42:11 +0000217 Twine(ForwardRefMDNodes.begin()->first) + "'");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000218
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000219 // Resolve metadata cycles.
David Majnemer19b51052015-02-11 07:43:56 +0000220 for (auto &N : NumberedMetadata) {
221 if (N.second && !N.second->isResolved())
222 N.second->resolveCycles();
223 }
Devang Pateld2541152009-07-08 19:23:54 +0000224
Mehdi Aminie4709272016-09-14 22:29:59 +0000225 for (auto *Inst : InstsWithTBAATag) {
226 MDNode *MD = Inst->getMetadata(LLVMContext::MD_tbaa);
227 assert(MD && "UpgradeInstWithTBAATag should have a TBAA tag");
228 auto *UpgradedMD = UpgradeTBAANode(*MD);
229 if (MD != UpgradedMD)
230 Inst->setMetadata(LLVMContext::MD_tbaa, UpgradedMD);
231 }
Duncan P. N. Exon Smith29883862016-04-06 02:06:40 +0000232
Chris Lattnerac161bf2009-01-02 07:01:27 +0000233 // Look for intrinsic functions and CallInst that need to be upgraded
234 for (Module::iterator FI = M->begin(), FE = M->end(); FI != FE; )
Duncan P. N. Exon Smithac331fb2015-10-20 01:12:49 +0000235 UpgradeCallsToIntrinsic(&*FI++); // must be post-increment, as we remove
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000236
Artur Pilipenko6c7a8ab2016-06-24 15:10:29 +0000237 // Some types could be renamed during loading if several modules are
238 // loaded in the same LLVMContext (LTO scenario). In this case we should
239 // remangle intrinsics names as well.
240 for (Module::iterator FI = M->begin(), FE = M->end(); FI != FE; ) {
241 Function *F = &*FI++;
242 if (auto Remangled = Intrinsic::remangleIntrinsicFunction(F)) {
243 F->replaceAllUsesWith(Remangled.getValue());
244 F->eraseFromParent();
245 }
246 }
247
Manman Ren8b4306c2013-12-02 21:29:56 +0000248 UpgradeDebugInfo(*M);
249
Manman Renb5d7ff42016-05-25 23:14:48 +0000250 UpgradeModuleFlags(*M);
251
Alex Lorenz8955f7d2015-06-23 17:10:10 +0000252 if (!Slots)
253 return false;
254 // Initialize the slot mapping.
255 // Because by this point we've parsed and validated everything, we can "steal"
256 // the mapping from LLParser as it doesn't need it anymore.
257 Slots->GlobalValues = std::move(NumberedVals);
258 Slots->MetadataNodes = std::move(NumberedMetadata);
Alex Lorenz1de2acd2015-08-21 21:32:39 +0000259 for (const auto &I : NamedTypes)
260 Slots->NamedTypes.insert(std::make_pair(I.getKey(), I.second.first));
261 for (const auto &I : NumberedTypes)
262 Slots->Types.insert(std::make_pair(I.first, I.second.first));
Alex Lorenz8955f7d2015-06-23 17:10:10 +0000263
Chris Lattnerac161bf2009-01-02 07:01:27 +0000264 return false;
265}
266
267//===----------------------------------------------------------------------===//
268// Top-Level Entities
269//===----------------------------------------------------------------------===//
270
271bool LLParser::ParseTopLevelEntities() {
Eugene Zelenko1804a772016-08-25 00:45:04 +0000272 while (true) {
Chris Lattnerac161bf2009-01-02 07:01:27 +0000273 switch (Lex.getKind()) {
274 default: return TokError("expected top-level entity");
275 case lltok::Eof: return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000276 case lltok::kw_declare: if (ParseDeclare()) return true; break;
277 case lltok::kw_define: if (ParseDefine()) return true; break;
278 case lltok::kw_module: if (ParseModuleAsm()) return true; break;
279 case lltok::kw_target: if (ParseTargetDefinition()) return true; break;
Teresa Johnson83c517c2016-03-30 18:15:08 +0000280 case lltok::kw_source_filename:
281 if (ParseSourceFileName())
282 return true;
283 break;
Bill Wendling706d3d62012-11-28 08:41:48 +0000284 case lltok::kw_deplibs: if (ParseDepLibs()) return true; break;
Dan Gohman466876b2009-08-12 23:32:33 +0000285 case lltok::LocalVarID: if (ParseUnnamedType()) return true; break;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000286 case lltok::LocalVar: if (ParseNamedType()) return true; break;
Dan Gohman466876b2009-08-12 23:32:33 +0000287 case lltok::GlobalID: if (ParseUnnamedGlobal()) return true; break;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000288 case lltok::GlobalVar: if (ParseNamedGlobal()) return true; break;
David Majnemerdad0a642014-06-27 18:19:56 +0000289 case lltok::ComdatVar: if (parseComdat()) return true; break;
Chris Lattner1eed2d62009-12-30 04:56:59 +0000290 case lltok::exclaim: if (ParseStandaloneMetadata()) return true; break;
Bill Wendling63b88192013-02-06 06:52:58 +0000291 case lltok::MetadataVar:if (ParseNamedMetadata()) return true; break;
Bill Wendlinga7c38772013-02-09 15:48:49 +0000292 case lltok::kw_attributes: if (ParseUnnamedAttrGrp()) return true; break;
Duncan P. N. Exon Smith0a448fb2014-08-19 21:30:15 +0000293 case lltok::kw_uselistorder: if (ParseUseListOrder()) return true; break;
294 case lltok::kw_uselistorder_bb:
Davide Italianof4e16612016-08-26 18:05:03 +0000295 if (ParseUseListOrderBB())
296 return true;
297 break;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000298 }
299 }
300}
301
Chris Lattnerac161bf2009-01-02 07:01:27 +0000302/// toplevelentity
303/// ::= 'module' 'asm' STRINGCONSTANT
304bool LLParser::ParseModuleAsm() {
305 assert(Lex.getKind() == lltok::kw_module);
306 Lex.Lex();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000307
308 std::string AsmStr;
Chris Lattner3822f632009-01-02 08:05:26 +0000309 if (ParseToken(lltok::kw_asm, "expected 'module asm'") ||
310 ParseStringConstant(AsmStr)) return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000311
Rafael Espindola1e49a6d2011-03-02 04:14:42 +0000312 M->appendModuleInlineAsm(AsmStr);
Chris Lattnerac161bf2009-01-02 07:01:27 +0000313 return false;
314}
315
316/// toplevelentity
317/// ::= 'target' 'triple' '=' STRINGCONSTANT
318/// ::= 'target' 'datalayout' '=' STRINGCONSTANT
319bool LLParser::ParseTargetDefinition() {
320 assert(Lex.getKind() == lltok::kw_target);
Chris Lattner3822f632009-01-02 08:05:26 +0000321 std::string Str;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000322 switch (Lex.Lex()) {
323 default: return TokError("unknown target property");
324 case lltok::kw_triple:
325 Lex.Lex();
Chris Lattner3822f632009-01-02 08:05:26 +0000326 if (ParseToken(lltok::equal, "expected '=' after target triple") ||
327 ParseStringConstant(Str))
Chris Lattnerac161bf2009-01-02 07:01:27 +0000328 return true;
Chris Lattner3822f632009-01-02 08:05:26 +0000329 M->setTargetTriple(Str);
Chris Lattnerac161bf2009-01-02 07:01:27 +0000330 return false;
331 case lltok::kw_datalayout:
332 Lex.Lex();
Chris Lattner3822f632009-01-02 08:05:26 +0000333 if (ParseToken(lltok::equal, "expected '=' after target datalayout") ||
334 ParseStringConstant(Str))
Chris Lattnerac161bf2009-01-02 07:01:27 +0000335 return true;
Chris Lattner3822f632009-01-02 08:05:26 +0000336 M->setDataLayout(Str);
Chris Lattnerac161bf2009-01-02 07:01:27 +0000337 return false;
338 }
339}
340
Bill Wendling706d3d62012-11-28 08:41:48 +0000341/// toplevelentity
Teresa Johnson83c517c2016-03-30 18:15:08 +0000342/// ::= 'source_filename' '=' STRINGCONSTANT
343bool LLParser::ParseSourceFileName() {
344 assert(Lex.getKind() == lltok::kw_source_filename);
345 std::string Str;
346 Lex.Lex();
347 if (ParseToken(lltok::equal, "expected '=' after source_filename") ||
348 ParseStringConstant(Str))
349 return true;
350 M->setSourceFileName(Str);
351 return false;
352}
353
354/// toplevelentity
Bill Wendling706d3d62012-11-28 08:41:48 +0000355/// ::= 'deplibs' '=' '[' ']'
356/// ::= 'deplibs' '=' '[' STRINGCONSTANT (',' STRINGCONSTANT)* ']'
357/// FIXME: Remove in 4.0. Currently parse, but ignore.
358bool LLParser::ParseDepLibs() {
359 assert(Lex.getKind() == lltok::kw_deplibs);
360 Lex.Lex();
361 if (ParseToken(lltok::equal, "expected '=' after deplibs") ||
362 ParseToken(lltok::lsquare, "expected '=' after deplibs"))
363 return true;
364
365 if (EatIfPresent(lltok::rsquare))
366 return false;
367
368 do {
369 std::string Str;
370 if (ParseStringConstant(Str)) return true;
371 } while (EatIfPresent(lltok::comma));
372
373 return ParseToken(lltok::rsquare, "expected ']' at end of list");
374}
375
Dan Gohman466876b2009-08-12 23:32:33 +0000376/// ParseUnnamedType:
Dan Gohman466876b2009-08-12 23:32:33 +0000377/// ::= LocalVarID '=' 'type' type
Chris Lattnerac161bf2009-01-02 07:01:27 +0000378bool LLParser::ParseUnnamedType() {
Chris Lattner07037362011-06-18 23:51:31 +0000379 LocTy TypeLoc = Lex.getLoc();
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000380 unsigned TypeID = Lex.getUIntVal();
Chris Lattner8936d2b2011-06-19 00:03:46 +0000381 Lex.Lex(); // eat LocalVarID;
382
383 if (ParseToken(lltok::equal, "expected '=' after name") ||
384 ParseToken(lltok::kw_type, "expected 'type' after '='"))
385 return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000386
Craig Topper2617dcc2014-04-15 06:32:26 +0000387 Type *Result = nullptr;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000388 if (ParseStructDefinition(TypeLoc, "",
389 NumberedTypes[TypeID], Result)) return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +0000390
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000391 if (!isa<StructType>(Result)) {
392 std::pair<Type*, LocTy> &Entry = NumberedTypes[TypeID];
393 if (Entry.first)
394 return Error(TypeLoc, "non-struct types may not be recursive");
395 Entry.first = Result;
396 Entry.second = SMLoc();
Chris Lattnerac161bf2009-01-02 07:01:27 +0000397 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000398
Chris Lattnerac161bf2009-01-02 07:01:27 +0000399 return false;
400}
401
402/// toplevelentity
403/// ::= LocalVar '=' 'type' type
404bool LLParser::ParseNamedType() {
405 std::string Name = Lex.getStrVal();
406 LocTy NameLoc = Lex.getLoc();
Chris Lattner3822f632009-01-02 08:05:26 +0000407 Lex.Lex(); // eat LocalVar.
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000408
Chris Lattner3822f632009-01-02 08:05:26 +0000409 if (ParseToken(lltok::equal, "expected '=' after name") ||
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000410 ParseToken(lltok::kw_type, "expected 'type' after name"))
Chris Lattner3822f632009-01-02 08:05:26 +0000411 return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +0000412
Craig Topper2617dcc2014-04-15 06:32:26 +0000413 Type *Result = nullptr;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000414 if (ParseStructDefinition(NameLoc, Name,
415 NamedTypes[Name], Result)) return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +0000416
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000417 if (!isa<StructType>(Result)) {
418 std::pair<Type*, LocTy> &Entry = NamedTypes[Name];
419 if (Entry.first)
420 return Error(NameLoc, "non-struct types may not be recursive");
421 Entry.first = Result;
422 Entry.second = SMLoc();
Chris Lattnerac161bf2009-01-02 07:01:27 +0000423 }
Michael Ilseman26ee2b82012-11-15 22:34:00 +0000424
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000425 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000426}
427
Chris Lattnerac161bf2009-01-02 07:01:27 +0000428/// toplevelentity
429/// ::= 'declare' FunctionHeader
430bool LLParser::ParseDeclare() {
431 assert(Lex.getKind() == lltok::kw_declare);
432 Lex.Lex();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000433
Peter Collingbourne21521892016-06-21 23:42:48 +0000434 std::vector<std::pair<unsigned, MDNode *>> MDs;
435 while (Lex.getKind() == lltok::MetadataVar) {
436 unsigned MDK;
437 MDNode *N;
438 if (ParseMetadataAttachment(MDK, N))
439 return true;
440 MDs.push_back({MDK, N});
441 }
442
Chris Lattnerac161bf2009-01-02 07:01:27 +0000443 Function *F;
Peter Collingbourne21521892016-06-21 23:42:48 +0000444 if (ParseFunctionHeader(F, false))
445 return true;
446 for (auto &MD : MDs)
447 F->addMetadata(MD.first, *MD.second);
448 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000449}
450
451/// toplevelentity
Duncan P. N. Exon Smith3d4cd752015-04-24 22:04:41 +0000452/// ::= 'define' FunctionHeader (!dbg !56)* '{' ...
Chris Lattnerac161bf2009-01-02 07:01:27 +0000453bool LLParser::ParseDefine() {
454 assert(Lex.getKind() == lltok::kw_define);
455 Lex.Lex();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000456
Chris Lattnerac161bf2009-01-02 07:01:27 +0000457 Function *F;
Chris Lattner3822f632009-01-02 08:05:26 +0000458 return ParseFunctionHeader(F, true) ||
Duncan P. N. Exon Smith3d4cd752015-04-24 22:04:41 +0000459 ParseOptionalFunctionMetadata(*F) ||
Chris Lattner3822f632009-01-02 08:05:26 +0000460 ParseFunctionBody(*F);
Chris Lattnerac161bf2009-01-02 07:01:27 +0000461}
462
Chris Lattner3822f632009-01-02 08:05:26 +0000463/// ParseGlobalType
464/// ::= 'constant'
465/// ::= 'global'
Chris Lattnerac161bf2009-01-02 07:01:27 +0000466bool LLParser::ParseGlobalType(bool &IsConstant) {
467 if (Lex.getKind() == lltok::kw_constant)
468 IsConstant = true;
469 else if (Lex.getKind() == lltok::kw_global)
470 IsConstant = false;
Duncan Sandsd1de45a2009-02-10 16:24:55 +0000471 else {
472 IsConstant = false;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000473 return TokError("expected 'global' or 'constant'");
Duncan Sandsd1de45a2009-02-10 16:24:55 +0000474 }
Chris Lattnerac161bf2009-01-02 07:01:27 +0000475 Lex.Lex();
476 return false;
477}
478
Peter Collingbourne96efdd62016-06-14 21:01:22 +0000479bool LLParser::ParseOptionalUnnamedAddr(
480 GlobalVariable::UnnamedAddr &UnnamedAddr) {
481 if (EatIfPresent(lltok::kw_unnamed_addr))
482 UnnamedAddr = GlobalValue::UnnamedAddr::Global;
483 else if (EatIfPresent(lltok::kw_local_unnamed_addr))
484 UnnamedAddr = GlobalValue::UnnamedAddr::Local;
485 else
486 UnnamedAddr = GlobalValue::UnnamedAddr::None;
487 return false;
488}
489
Dan Gohman466876b2009-08-12 23:32:33 +0000490/// ParseUnnamedGlobal:
Dmitry Polukhina1feff72016-04-07 12:32:19 +0000491/// OptionalVisibility (ALIAS | IFUNC) ...
Nico Rieck7157bb72014-01-14 15:22:47 +0000492/// OptionalLinkage OptionalVisibility OptionalDLLStorageClass
493/// ... -> global variable
Dmitry Polukhina1feff72016-04-07 12:32:19 +0000494/// GlobalID '=' OptionalVisibility (ALIAS | IFUNC) ...
Nico Rieck7157bb72014-01-14 15:22:47 +0000495/// GlobalID '=' OptionalLinkage OptionalVisibility OptionalDLLStorageClass
496/// ... -> global variable
Dan Gohman466876b2009-08-12 23:32:33 +0000497bool LLParser::ParseUnnamedGlobal() {
498 unsigned VarID = NumberedVals.size();
499 std::string Name;
500 LocTy NameLoc = Lex.getLoc();
501
502 // Handle the GlobalID form.
503 if (Lex.getKind() == lltok::GlobalID) {
504 if (Lex.getUIntVal() != VarID)
505 return Error(Lex.getLoc(), "variable expected to be numbered '%" +
Benjamin Kramerc7583112010-09-27 17:42:11 +0000506 Twine(VarID) + "'");
Dan Gohman466876b2009-08-12 23:32:33 +0000507 Lex.Lex(); // eat GlobalID;
508
509 if (ParseToken(lltok::equal, "expected '=' after name"))
510 return true;
511 }
512
513 bool HasLinkage;
Nico Rieck7157bb72014-01-14 15:22:47 +0000514 unsigned Linkage, Visibility, DLLStorageClass;
Rafael Espindola59f7eba2014-05-28 18:15:43 +0000515 GlobalVariable::ThreadLocalMode TLM;
Peter Collingbourne96efdd62016-06-14 21:01:22 +0000516 GlobalVariable::UnnamedAddr UnnamedAddr;
Rafael Espindola2615c9e2016-05-12 12:37:52 +0000517 if (ParseOptionalLinkage(Linkage, HasLinkage, Visibility, DLLStorageClass) ||
Peter Collingbourne96efdd62016-06-14 21:01:22 +0000518 ParseOptionalThreadLocal(TLM) || ParseOptionalUnnamedAddr(UnnamedAddr))
Dan Gohman466876b2009-08-12 23:32:33 +0000519 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000520
Dmitry Polukhina1feff72016-04-07 12:32:19 +0000521 if (Lex.getKind() != lltok::kw_alias && Lex.getKind() != lltok::kw_ifunc)
Nico Rieck7157bb72014-01-14 15:22:47 +0000522 return ParseGlobal(Name, NameLoc, Linkage, HasLinkage, Visibility,
Rafael Espindola42a4c9f2014-06-06 01:20:28 +0000523 DLLStorageClass, TLM, UnnamedAddr);
Dmitry Polukhina3d5b0b2016-04-05 08:47:51 +0000524
525 return parseIndirectSymbol(Name, NameLoc, Linkage, Visibility,
526 DLLStorageClass, TLM, UnnamedAddr);
Dan Gohman466876b2009-08-12 23:32:33 +0000527}
528
Chris Lattnerac161bf2009-01-02 07:01:27 +0000529/// ParseNamedGlobal:
Dmitry Polukhina1feff72016-04-07 12:32:19 +0000530/// GlobalVar '=' OptionalVisibility (ALIAS | IFUNC) ...
Nico Rieck7157bb72014-01-14 15:22:47 +0000531/// GlobalVar '=' OptionalLinkage OptionalVisibility OptionalDLLStorageClass
532/// ... -> global variable
Chris Lattnerac161bf2009-01-02 07:01:27 +0000533bool LLParser::ParseNamedGlobal() {
534 assert(Lex.getKind() == lltok::GlobalVar);
535 LocTy NameLoc = Lex.getLoc();
536 std::string Name = Lex.getStrVal();
537 Lex.Lex();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000538
Chris Lattnerac161bf2009-01-02 07:01:27 +0000539 bool HasLinkage;
Nico Rieck7157bb72014-01-14 15:22:47 +0000540 unsigned Linkage, Visibility, DLLStorageClass;
Rafael Espindola59f7eba2014-05-28 18:15:43 +0000541 GlobalVariable::ThreadLocalMode TLM;
Peter Collingbourne96efdd62016-06-14 21:01:22 +0000542 GlobalVariable::UnnamedAddr UnnamedAddr;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000543 if (ParseToken(lltok::equal, "expected '=' in global variable") ||
Rafael Espindola2615c9e2016-05-12 12:37:52 +0000544 ParseOptionalLinkage(Linkage, HasLinkage, Visibility, DLLStorageClass) ||
Peter Collingbourne96efdd62016-06-14 21:01:22 +0000545 ParseOptionalThreadLocal(TLM) || ParseOptionalUnnamedAddr(UnnamedAddr))
Chris Lattnerac161bf2009-01-02 07:01:27 +0000546 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000547
Dmitry Polukhina1feff72016-04-07 12:32:19 +0000548 if (Lex.getKind() != lltok::kw_alias && Lex.getKind() != lltok::kw_ifunc)
Nico Rieck7157bb72014-01-14 15:22:47 +0000549 return ParseGlobal(Name, NameLoc, Linkage, HasLinkage, Visibility,
Rafael Espindola42a4c9f2014-06-06 01:20:28 +0000550 DLLStorageClass, TLM, UnnamedAddr);
Rafael Espindola464fe022014-07-30 22:51:54 +0000551
Dmitry Polukhina3d5b0b2016-04-05 08:47:51 +0000552 return parseIndirectSymbol(Name, NameLoc, Linkage, Visibility,
553 DLLStorageClass, TLM, UnnamedAddr);
Chris Lattnerac161bf2009-01-02 07:01:27 +0000554}
555
David Majnemerdad0a642014-06-27 18:19:56 +0000556bool LLParser::parseComdat() {
557 assert(Lex.getKind() == lltok::ComdatVar);
558 std::string Name = Lex.getStrVal();
559 LocTy NameLoc = Lex.getLoc();
560 Lex.Lex();
561
562 if (ParseToken(lltok::equal, "expected '=' here"))
563 return true;
564
565 if (ParseToken(lltok::kw_comdat, "expected comdat keyword"))
566 return TokError("expected comdat type");
567
568 Comdat::SelectionKind SK;
569 switch (Lex.getKind()) {
570 default:
571 return TokError("unknown selection kind");
572 case lltok::kw_any:
573 SK = Comdat::Any;
574 break;
575 case lltok::kw_exactmatch:
576 SK = Comdat::ExactMatch;
577 break;
578 case lltok::kw_largest:
579 SK = Comdat::Largest;
580 break;
581 case lltok::kw_noduplicates:
582 SK = Comdat::NoDuplicates;
583 break;
584 case lltok::kw_samesize:
585 SK = Comdat::SameSize;
586 break;
587 }
588 Lex.Lex();
589
590 // See if the comdat was forward referenced, if so, use the comdat.
591 Module::ComdatSymTabType &ComdatSymTab = M->getComdatSymbolTable();
592 Module::ComdatSymTabType::iterator I = ComdatSymTab.find(Name);
593 if (I != ComdatSymTab.end() && !ForwardRefComdats.erase(Name))
594 return Error(NameLoc, "redefinition of comdat '$" + Name + "'");
595
596 Comdat *C;
597 if (I != ComdatSymTab.end())
598 C = &I->second;
599 else
600 C = M->getOrInsertComdat(Name);
601 C->setSelectionKind(SK);
602
603 return false;
604}
605
Devang Patel8ff0f8d2009-07-20 19:00:08 +0000606// MDString:
607// ::= '!' STRINGCONSTANT
Chris Lattner1797fc72009-12-29 21:53:55 +0000608bool LLParser::ParseMDString(MDString *&Result) {
Devang Patel8ff0f8d2009-07-20 19:00:08 +0000609 std::string Str;
610 if (ParseStringConstant(Str)) return true;
Chris Lattner1797fc72009-12-29 21:53:55 +0000611 Result = MDString::get(Context, Str);
Devang Patel8ff0f8d2009-07-20 19:00:08 +0000612 return false;
613}
614
615// MDNode:
616// ::= '!' MDNodeNumber
Chris Lattner6dac02a2009-12-30 04:15:23 +0000617bool LLParser::ParseMDNodeID(MDNode *&Result) {
Devang Patel8ff0f8d2009-07-20 19:00:08 +0000618 // !{ ..., !42, ... }
Duncan P. N. Exon Smith29883862016-04-06 02:06:40 +0000619 LocTy IDLoc = Lex.getLoc();
Devang Patel8ff0f8d2009-07-20 19:00:08 +0000620 unsigned MID = 0;
Duncan P. N. Exon Smitha8d9a022015-01-12 21:14:38 +0000621 if (ParseUInt32(MID))
622 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000623
Chris Lattner8eff0152010-04-01 05:14:45 +0000624 // If not a forward reference, just return it now.
David Majnemer19b51052015-02-11 07:43:56 +0000625 if (NumberedMetadata.count(MID)) {
Duncan P. N. Exon Smitha8d9a022015-01-12 21:14:38 +0000626 Result = NumberedMetadata[MID];
627 return false;
628 }
Devang Patel8ff0f8d2009-07-20 19:00:08 +0000629
Chris Lattner8eff0152010-04-01 05:14:45 +0000630 // Otherwise, create MDNode forward reference.
Duncan P. N. Exon Smith7d823132015-01-19 21:30:18 +0000631 auto &FwdRef = ForwardRefMDNodes[MID];
Duncan P. N. Exon Smith29883862016-04-06 02:06:40 +0000632 FwdRef = std::make_pair(MDTuple::getTemporary(Context, None), IDLoc);
Michael Ilseman26ee2b82012-11-15 22:34:00 +0000633
Duncan P. N. Exon Smith7d823132015-01-19 21:30:18 +0000634 Result = FwdRef.first.get();
635 NumberedMetadata[MID].reset(Result);
Devang Patel8ff0f8d2009-07-20 19:00:08 +0000636 return false;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000637}
Devang Patel8ff0f8d2009-07-20 19:00:08 +0000638
Chris Lattnerf2fe7ff2009-12-29 22:35:39 +0000639/// ParseNamedMetadata:
Devang Patelbe626972009-07-29 00:34:02 +0000640/// !foo = !{ !1, !2 }
641bool LLParser::ParseNamedMetadata() {
Chris Lattnereafe4de2009-12-30 05:02:06 +0000642 assert(Lex.getKind() == lltok::MetadataVar);
Devang Patelbe626972009-07-29 00:34:02 +0000643 std::string Name = Lex.getStrVal();
Chris Lattnereafe4de2009-12-30 05:02:06 +0000644 Lex.Lex();
Devang Patelbe626972009-07-29 00:34:02 +0000645
Chris Lattnerf2fe7ff2009-12-29 22:35:39 +0000646 if (ParseToken(lltok::equal, "expected '=' here") ||
Chris Lattner1eed2d62009-12-30 04:56:59 +0000647 ParseToken(lltok::exclaim, "Expected '!' here") ||
Chris Lattnerf2fe7ff2009-12-29 22:35:39 +0000648 ParseToken(lltok::lbrace, "Expected '{' here"))
Devang Patelbe626972009-07-29 00:34:02 +0000649 return true;
650
Dan Gohman2637cc12010-07-21 23:38:33 +0000651 NamedMDNode *NMD = M->getOrInsertNamedMetadata(Name);
Dan Gohmanafd69cf2010-07-13 19:42:44 +0000652 if (Lex.getKind() != lltok::rbrace)
653 do {
Dan Gohmanafd69cf2010-07-13 19:42:44 +0000654 if (ParseToken(lltok::exclaim, "Expected '!' here"))
655 return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +0000656
Craig Topper2617dcc2014-04-15 06:32:26 +0000657 MDNode *N = nullptr;
Dan Gohmanafd69cf2010-07-13 19:42:44 +0000658 if (ParseMDNodeID(N)) return true;
Dan Gohman2637cc12010-07-21 23:38:33 +0000659 NMD->addOperand(N);
Dan Gohmanafd69cf2010-07-13 19:42:44 +0000660 } while (EatIfPresent(lltok::comma));
Devang Patelbe626972009-07-29 00:34:02 +0000661
Rafael Espindolac7818fb2015-05-26 20:37:36 +0000662 return ParseToken(lltok::rbrace, "expected end of metadata node");
Devang Patelbe626972009-07-29 00:34:02 +0000663}
664
Devang Patel39e64d42009-07-01 19:21:12 +0000665/// ParseStandaloneMetadata:
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000666/// !42 = !{...}
Devang Patel39e64d42009-07-01 19:21:12 +0000667bool LLParser::ParseStandaloneMetadata() {
Chris Lattner1eed2d62009-12-30 04:56:59 +0000668 assert(Lex.getKind() == lltok::exclaim);
Devang Patel39e64d42009-07-01 19:21:12 +0000669 Lex.Lex();
670 unsigned MetadataID = 0;
Devang Patel39e64d42009-07-01 19:21:12 +0000671
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000672 MDNode *Init;
Chris Lattner278bc952009-12-29 22:40:21 +0000673 if (ParseUInt32(MetadataID) ||
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +0000674 ParseToken(lltok::equal, "expected '=' here"))
675 return true;
676
677 // Detect common error, from old metadata syntax.
678 if (Lex.getKind() == lltok::Type)
679 return TokError("unexpected type in metadata definition");
680
Duncan P. N. Exon Smith090a19b2015-01-08 22:38:29 +0000681 bool IsDistinct = EatIfPresent(lltok::kw_distinct);
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +0000682 if (Lex.getKind() == lltok::MetadataVar) {
683 if (ParseSpecializedMDNode(Init, IsDistinct))
684 return true;
685 } else if (ParseToken(lltok::exclaim, "Expected '!' here") ||
686 ParseMDTuple(Init, IsDistinct))
Devang Patele059ba6e2009-07-23 01:07:34 +0000687 return true;
688
Chris Lattnerfc58af22009-12-30 04:51:58 +0000689 // See if this was forward referenced, if so, handle it.
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000690 auto FI = ForwardRefMDNodes.find(MetadataID);
Devang Pateld2541152009-07-08 19:23:54 +0000691 if (FI != ForwardRefMDNodes.end()) {
Duncan P. N. Exon Smith7d823132015-01-19 21:30:18 +0000692 FI->second.first->replaceAllUsesWith(Init);
Devang Pateld2541152009-07-08 19:23:54 +0000693 ForwardRefMDNodes.erase(FI);
Michael Ilseman26ee2b82012-11-15 22:34:00 +0000694
Chris Lattnerfc58af22009-12-30 04:51:58 +0000695 assert(NumberedMetadata[MetadataID] == Init && "Tracking VH didn't work");
696 } else {
David Majnemer19b51052015-02-11 07:43:56 +0000697 if (NumberedMetadata.count(MetadataID))
Chris Lattnerfc58af22009-12-30 04:51:58 +0000698 return TokError("Metadata id is already used");
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000699 NumberedMetadata[MetadataID].reset(Init);
Devang Pateld2541152009-07-08 19:23:54 +0000700 }
701
Devang Patel39e64d42009-07-01 19:21:12 +0000702 return false;
703}
704
Duncan P. N. Exon Smithb80de102014-05-07 22:57:20 +0000705static bool isValidVisibilityForLinkage(unsigned V, unsigned L) {
706 return !GlobalValue::isLocalLinkage((GlobalValue::LinkageTypes)L) ||
707 (GlobalValue::VisibilityTypes)V == GlobalValue::DefaultVisibility;
708}
709
Dmitry Polukhina3d5b0b2016-04-05 08:47:51 +0000710/// parseIndirectSymbol:
Rafael Espindola464fe022014-07-30 22:51:54 +0000711/// ::= GlobalVar '=' OptionalLinkage OptionalVisibility
712/// OptionalDLLStorageClass OptionalThreadLocal
Dmitry Polukhina1feff72016-04-07 12:32:19 +0000713/// OptionalUnnamedAddr 'alias|ifunc' IndirectSymbol
Rafael Espindola6b238632014-05-16 19:35:39 +0000714///
Dmitry Polukhina3d5b0b2016-04-05 08:47:51 +0000715/// IndirectSymbol
Chris Lattner4c73d7a2009-04-25 21:26:00 +0000716/// ::= TypeAndValue
Chris Lattnerac161bf2009-01-02 07:01:27 +0000717///
Eric Christopher536f0a92015-05-28 23:07:39 +0000718/// Everything through OptionalUnnamedAddr has already been parsed.
Chris Lattnerac161bf2009-01-02 07:01:27 +0000719///
Peter Collingbourne96efdd62016-06-14 21:01:22 +0000720bool LLParser::parseIndirectSymbol(
721 const std::string &Name, LocTy NameLoc, unsigned L, unsigned Visibility,
722 unsigned DLLStorageClass, GlobalVariable::ThreadLocalMode TLM,
723 GlobalVariable::UnnamedAddr UnnamedAddr) {
Dmitry Polukhina3d5b0b2016-04-05 08:47:51 +0000724 bool IsAlias;
725 if (Lex.getKind() == lltok::kw_alias)
726 IsAlias = true;
Dmitry Polukhina1feff72016-04-07 12:32:19 +0000727 else if (Lex.getKind() == lltok::kw_ifunc)
728 IsAlias = false;
Dmitry Polukhina3d5b0b2016-04-05 08:47:51 +0000729 else
Dmitry Polukhina1feff72016-04-07 12:32:19 +0000730 llvm_unreachable("Not an alias or ifunc!");
Chris Lattnerac161bf2009-01-02 07:01:27 +0000731 Lex.Lex();
Chris Lattnerac161bf2009-01-02 07:01:27 +0000732
Rafael Espindola78527052013-10-06 15:10:43 +0000733 GlobalValue::LinkageTypes Linkage = (GlobalValue::LinkageTypes) L;
734
Dmitry Polukhina3d5b0b2016-04-05 08:47:51 +0000735 if(IsAlias && !GlobalAlias::isValidLinkage(Linkage))
Rafael Espindola464fe022014-07-30 22:51:54 +0000736 return Error(NameLoc, "invalid linkage type for alias");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000737
Duncan P. N. Exon Smithb80de102014-05-07 22:57:20 +0000738 if (!isValidVisibilityForLinkage(Visibility, L))
Rafael Espindola464fe022014-07-30 22:51:54 +0000739 return Error(NameLoc,
Duncan P. N. Exon Smithb80de102014-05-07 22:57:20 +0000740 "symbol with local linkage must have default visibility");
741
David Blaikie2f408302015-09-11 03:22:04 +0000742 Type *Ty;
743 LocTy ExplicitTypeLoc = Lex.getLoc();
744 if (ParseType(Ty) ||
Dmitry Polukhina1feff72016-04-07 12:32:19 +0000745 ParseToken(lltok::comma, "expected comma after alias or ifunc's type"))
David Blaikie2f408302015-09-11 03:22:04 +0000746 return true;
747
Rafael Espindola64c1e182014-06-03 02:41:57 +0000748 Constant *Aliasee;
749 LocTy AliaseeLoc = Lex.getLoc();
750 if (Lex.getKind() != lltok::kw_bitcast &&
751 Lex.getKind() != lltok::kw_getelementptr &&
752 Lex.getKind() != lltok::kw_addrspacecast &&
753 Lex.getKind() != lltok::kw_inttoptr) {
754 if (ParseGlobalTypeAndValue(Aliasee))
Rafael Espindola6b238632014-05-16 19:35:39 +0000755 return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000756 } else {
Rafael Espindola64c1e182014-06-03 02:41:57 +0000757 // The bitcast dest type is not present, it is implied by the dest type.
758 ValID ID;
759 if (ParseValID(ID))
760 return true;
761 if (ID.Kind != ValID::t_Constant)
762 return Error(AliaseeLoc, "invalid aliasee");
763 Aliasee = ID.ConstantVal;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000764 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000765
Rafael Espindola64c1e182014-06-03 02:41:57 +0000766 Type *AliaseeType = Aliasee->getType();
767 auto *PTy = dyn_cast<PointerType>(AliaseeType);
768 if (!PTy)
Dmitry Polukhina1feff72016-04-07 12:32:19 +0000769 return Error(AliaseeLoc, "An alias or ifunc must have pointer type");
David Blaikie16a2f3e2015-09-14 18:01:59 +0000770 unsigned AddrSpace = PTy->getAddressSpace();
Chris Lattnerac161bf2009-01-02 07:01:27 +0000771
Dmitry Polukhina3d5b0b2016-04-05 08:47:51 +0000772 if (IsAlias && Ty != PTy->getElementType())
David Blaikie2f408302015-09-11 03:22:04 +0000773 return Error(
774 ExplicitTypeLoc,
775 "explicit pointee type doesn't match operand's pointee type");
776
Dmitry Polukhina3d5b0b2016-04-05 08:47:51 +0000777 if (!IsAlias && !PTy->getElementType()->isFunctionTy())
778 return Error(
779 ExplicitTypeLoc,
780 "explicit pointee type should be a function type");
781
Peter Collingbourne463ff6d2015-11-25 02:54:07 +0000782 GlobalValue *GVal = nullptr;
783
784 // See if the alias was forward referenced, if so, prepare to replace the
785 // forward reference.
786 if (!Name.empty()) {
787 GVal = M->getNamedValue(Name);
788 if (GVal) {
789 if (!ForwardRefVals.erase(Name))
790 return Error(NameLoc, "redefinition of global '@" + Name + "'");
791 }
792 } else {
793 auto I = ForwardRefValIDs.find(NumberedVals.size());
794 if (I != ForwardRefValIDs.end()) {
795 GVal = I->second.first;
796 ForwardRefValIDs.erase(I);
797 }
798 }
799
Chris Lattnerac161bf2009-01-02 07:01:27 +0000800 // Okay, create the alias but do not insert it into the module yet.
Dmitry Polukhina3d5b0b2016-04-05 08:47:51 +0000801 std::unique_ptr<GlobalIndirectSymbol> GA;
802 if (IsAlias)
803 GA.reset(GlobalAlias::create(Ty, AddrSpace,
804 (GlobalValue::LinkageTypes)Linkage, Name,
805 Aliasee, /*Parent*/ nullptr));
806 else
Dmitry Polukhina1feff72016-04-07 12:32:19 +0000807 GA.reset(GlobalIFunc::create(Ty, AddrSpace,
808 (GlobalValue::LinkageTypes)Linkage, Name,
809 Aliasee, /*Parent*/ nullptr));
Rafael Espindola59f7eba2014-05-28 18:15:43 +0000810 GA->setThreadLocalMode(TLM);
Chris Lattnerac161bf2009-01-02 07:01:27 +0000811 GA->setVisibility((GlobalValue::VisibilityTypes)Visibility);
Nico Rieck7157bb72014-01-14 15:22:47 +0000812 GA->setDLLStorageClass((GlobalValue::DLLStorageClassTypes)DLLStorageClass);
Rafael Espindola42a4c9f2014-06-06 01:20:28 +0000813 GA->setUnnamedAddr(UnnamedAddr);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000814
Rafael Espindola54fc2982015-06-17 17:53:31 +0000815 if (Name.empty())
816 NumberedVals.push_back(GA.get());
817
Peter Collingbourne463ff6d2015-11-25 02:54:07 +0000818 if (GVal) {
819 // Verify that types agree.
820 if (GVal->getType() != GA->getType())
821 return Error(
822 ExplicitTypeLoc,
823 "forward reference and definition of alias have different types");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000824
Chris Lattnerac161bf2009-01-02 07:01:27 +0000825 // If they agree, just RAUW the old value with the alias and remove the
826 // forward ref info.
Peter Collingbourne463ff6d2015-11-25 02:54:07 +0000827 GVal->replaceAllUsesWith(GA.get());
828 GVal->eraseFromParent();
Chris Lattnerac161bf2009-01-02 07:01:27 +0000829 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000830
Chris Lattnerac161bf2009-01-02 07:01:27 +0000831 // Insert into the module, we know its name won't collide now.
Dmitry Polukhina3d5b0b2016-04-05 08:47:51 +0000832 if (IsAlias)
833 M->getAliasList().push_back(cast<GlobalAlias>(GA.get()));
834 else
Dmitry Polukhina1feff72016-04-07 12:32:19 +0000835 M->getIFuncList().push_back(cast<GlobalIFunc>(GA.get()));
Benjamin Kramer1dc34b42010-10-16 11:28:23 +0000836 assert(GA->getName() == Name && "Should not be a name conflict!");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000837
Rafael Espindolaaa273822014-05-09 21:49:17 +0000838 // The module owns this now
839 GA.release();
840
Chris Lattnerac161bf2009-01-02 07:01:27 +0000841 return false;
842}
843
844/// ParseGlobal
Nico Rieck7157bb72014-01-14 15:22:47 +0000845/// ::= GlobalVar '=' OptionalLinkage OptionalVisibility OptionalDLLStorageClass
Eric Christopher536f0a92015-05-28 23:07:39 +0000846/// OptionalThreadLocal OptionalUnnamedAddr OptionalAddrSpace
Michael Gottesman27e7ef32013-02-05 05:57:38 +0000847/// OptionalExternallyInitialized GlobalType Type Const
Nico Rieck7157bb72014-01-14 15:22:47 +0000848/// ::= OptionalLinkage OptionalVisibility OptionalDLLStorageClass
Eric Christopher536f0a92015-05-28 23:07:39 +0000849/// OptionalThreadLocal OptionalUnnamedAddr OptionalAddrSpace
Michael Gottesman27e7ef32013-02-05 05:57:38 +0000850/// OptionalExternallyInitialized GlobalType Type Const
Chris Lattnerac161bf2009-01-02 07:01:27 +0000851///
Eric Christopher536f0a92015-05-28 23:07:39 +0000852/// Everything up to and including OptionalUnnamedAddr has been parsed
David Majnemerc4ab61c2014-03-09 06:41:58 +0000853/// already.
Chris Lattnerac161bf2009-01-02 07:01:27 +0000854///
855bool LLParser::ParseGlobal(const std::string &Name, LocTy NameLoc,
856 unsigned Linkage, bool HasLinkage,
Rafael Espindola59f7eba2014-05-28 18:15:43 +0000857 unsigned Visibility, unsigned DLLStorageClass,
Rafael Espindola42a4c9f2014-06-06 01:20:28 +0000858 GlobalVariable::ThreadLocalMode TLM,
Peter Collingbourne96efdd62016-06-14 21:01:22 +0000859 GlobalVariable::UnnamedAddr UnnamedAddr) {
Duncan P. N. Exon Smithb80de102014-05-07 22:57:20 +0000860 if (!isValidVisibilityForLinkage(Visibility, Linkage))
861 return Error(NameLoc,
862 "symbol with local linkage must have default visibility");
863
Chris Lattnerac161bf2009-01-02 07:01:27 +0000864 unsigned AddrSpace;
Rafael Espindola42a4c9f2014-06-06 01:20:28 +0000865 bool IsConstant, IsExternallyInitialized;
Michael Gottesman27e7ef32013-02-05 05:57:38 +0000866 LocTy IsExternallyInitializedLoc;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000867 LocTy TyLoc;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000868
Craig Topper2617dcc2014-04-15 06:32:26 +0000869 Type *Ty = nullptr;
Rafael Espindola59f7eba2014-05-28 18:15:43 +0000870 if (ParseOptionalAddrSpace(AddrSpace) ||
Michael Gottesman27e7ef32013-02-05 05:57:38 +0000871 ParseOptionalToken(lltok::kw_externally_initialized,
872 IsExternallyInitialized,
873 &IsExternallyInitializedLoc) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +0000874 ParseGlobalType(IsConstant) ||
875 ParseType(Ty, TyLoc))
876 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000877
Chris Lattnerac161bf2009-01-02 07:01:27 +0000878 // If the linkage is specified and is external, then no initializer is
879 // present.
Craig Topper2617dcc2014-04-15 06:32:26 +0000880 Constant *Init = nullptr;
Rafael Espindola4787ba32016-05-11 13:51:39 +0000881 if (!HasLinkage ||
882 !GlobalValue::isValidDeclarationLinkage(
883 (GlobalValue::LinkageTypes)Linkage)) {
Chris Lattnerac161bf2009-01-02 07:01:27 +0000884 if (ParseGlobalValue(Ty, Init))
885 return true;
886 }
887
David Majnemer49b3d9b2015-02-16 08:41:08 +0000888 if (Ty->isFunctionTy() || !PointerType::isValidElementType(Ty))
Chris Lattnerc9e1b482009-02-08 20:00:15 +0000889 return Error(TyLoc, "invalid type for global variable");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000890
David Majnemer598bd052014-12-09 05:56:09 +0000891 GlobalValue *GVal = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000892
893 // See if the global was forward referenced, if so, use the global.
Chris Lattner1f386b82009-02-02 07:24:28 +0000894 if (!Name.empty()) {
David Majnemer598bd052014-12-09 05:56:09 +0000895 GVal = M->getNamedValue(Name);
896 if (GVal) {
Peter Collingbourne463ff6d2015-11-25 02:54:07 +0000897 if (!ForwardRefVals.erase(Name))
Chris Lattnere38317f2009-10-25 23:22:50 +0000898 return Error(NameLoc, "redefinition of global '@" + Name + "'");
Chris Lattnere38317f2009-10-25 23:22:50 +0000899 }
Chris Lattnerac161bf2009-01-02 07:01:27 +0000900 } else {
David Blaikie9ebdc692015-09-21 21:07:50 +0000901 auto I = ForwardRefValIDs.find(NumberedVals.size());
Chris Lattnerac161bf2009-01-02 07:01:27 +0000902 if (I != ForwardRefValIDs.end()) {
David Majnemer598bd052014-12-09 05:56:09 +0000903 GVal = I->second.first;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000904 ForwardRefValIDs.erase(I);
905 }
906 }
907
David Majnemer598bd052014-12-09 05:56:09 +0000908 GlobalVariable *GV;
909 if (!GVal) {
Craig Topper2617dcc2014-04-15 06:32:26 +0000910 GV = new GlobalVariable(*M, Ty, false, GlobalValue::ExternalLinkage, nullptr,
911 Name, nullptr, GlobalVariable::NotThreadLocal,
Hans Wennborgcbe34b42012-06-23 11:37:03 +0000912 AddrSpace);
Chris Lattnerac161bf2009-01-02 07:01:27 +0000913 } else {
David Blaikie8f27ae42015-05-13 22:55:01 +0000914 if (GVal->getValueType() != Ty)
Chris Lattnerac161bf2009-01-02 07:01:27 +0000915 return Error(TyLoc,
916 "forward reference and definition of global have different types");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000917
David Majnemer598bd052014-12-09 05:56:09 +0000918 GV = cast<GlobalVariable>(GVal);
919
Chris Lattnerac161bf2009-01-02 07:01:27 +0000920 // Move the forward-reference to the correct spot in the module.
921 M->getGlobalList().splice(M->global_end(), M->getGlobalList(), GV);
922 }
923
924 if (Name.empty())
925 NumberedVals.push_back(GV);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000926
Chris Lattnerac161bf2009-01-02 07:01:27 +0000927 // Set the parsed properties on the global.
928 if (Init)
929 GV->setInitializer(Init);
930 GV->setConstant(IsConstant);
931 GV->setLinkage((GlobalValue::LinkageTypes)Linkage);
932 GV->setVisibility((GlobalValue::VisibilityTypes)Visibility);
Nico Rieck7157bb72014-01-14 15:22:47 +0000933 GV->setDLLStorageClass((GlobalValue::DLLStorageClassTypes)DLLStorageClass);
Michael Gottesman27e7ef32013-02-05 05:57:38 +0000934 GV->setExternallyInitialized(IsExternallyInitialized);
Hans Wennborgcbe34b42012-06-23 11:37:03 +0000935 GV->setThreadLocalMode(TLM);
Rafael Espindola45e6c192011-01-08 16:42:36 +0000936 GV->setUnnamedAddr(UnnamedAddr);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000937
Chris Lattnerac161bf2009-01-02 07:01:27 +0000938 // Parse attributes on the global.
939 while (Lex.getKind() == lltok::comma) {
940 Lex.Lex();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000941
Chris Lattnerac161bf2009-01-02 07:01:27 +0000942 if (Lex.getKind() == lltok::kw_section) {
943 Lex.Lex();
944 GV->setSection(Lex.getStrVal());
945 if (ParseToken(lltok::StringConstant, "expected global section string"))
946 return true;
947 } else if (Lex.getKind() == lltok::kw_align) {
948 unsigned Alignment;
949 if (ParseOptionalAlignment(Alignment)) return true;
950 GV->setAlignment(Alignment);
Peter Collingbournecceae7f2016-05-31 23:01:54 +0000951 } else if (Lex.getKind() == lltok::MetadataVar) {
952 if (ParseGlobalObjectMetadataAttachment(*GV))
953 return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000954 } else {
David Majnemerdad0a642014-06-27 18:19:56 +0000955 Comdat *C;
Rafael Espindola83a362c2015-01-06 22:55:16 +0000956 if (parseOptionalComdat(Name, C))
David Majnemerdad0a642014-06-27 18:19:56 +0000957 return true;
958 if (C)
959 GV->setComdat(C);
960 else
961 return TokError("unknown global variable property!");
Chris Lattnerac161bf2009-01-02 07:01:27 +0000962 }
963 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000964
Chris Lattnerac161bf2009-01-02 07:01:27 +0000965 return false;
966}
967
Bill Wendling63b88192013-02-06 06:52:58 +0000968/// ParseUnnamedAttrGrp
Bill Wendlinga7c38772013-02-09 15:48:49 +0000969/// ::= 'attributes' AttrGrpID '=' '{' AttrValPair+ '}'
Bill Wendling63b88192013-02-06 06:52:58 +0000970bool LLParser::ParseUnnamedAttrGrp() {
Bill Wendlinga7c38772013-02-09 15:48:49 +0000971 assert(Lex.getKind() == lltok::kw_attributes);
Bill Wendling63b88192013-02-06 06:52:58 +0000972 LocTy AttrGrpLoc = Lex.getLoc();
Bill Wendlinga7c38772013-02-09 15:48:49 +0000973 Lex.Lex();
974
David Majnemerb39e22b2014-12-09 18:33:57 +0000975 if (Lex.getKind() != lltok::AttrGrpID)
976 return TokError("expected attribute group id");
977
Bill Wendling63b88192013-02-06 06:52:58 +0000978 unsigned VarID = Lex.getUIntVal();
Bill Wendlingb32b0412013-02-08 06:32:06 +0000979 std::vector<unsigned> unused;
Michael Gottesman41748d72013-06-27 00:25:01 +0000980 LocTy BuiltinLoc;
Bill Wendling63b88192013-02-06 06:52:58 +0000981 Lex.Lex();
982
983 if (ParseToken(lltok::equal, "expected '=' here") ||
Bill Wendling63b88192013-02-06 06:52:58 +0000984 ParseToken(lltok::lbrace, "expected '{' here") ||
Bill Wendling09bd1f72013-02-22 00:12:35 +0000985 ParseFnAttributeValuePairs(NumberedAttrBuilders[VarID], unused, true,
Michael Gottesman41748d72013-06-27 00:25:01 +0000986 BuiltinLoc) ||
Bill Wendling63b88192013-02-06 06:52:58 +0000987 ParseToken(lltok::rbrace, "expected end of attribute group"))
988 return true;
989
Bill Wendlingb32b0412013-02-08 06:32:06 +0000990 if (!NumberedAttrBuilders[VarID].hasAttributes())
Bill Wendling63b88192013-02-06 06:52:58 +0000991 return Error(AttrGrpLoc, "attribute group has no attributes");
992
993 return false;
994}
995
Bill Wendling8b0321d2013-02-08 00:52:31 +0000996/// ParseFnAttributeValuePairs
Bill Wendling63b88192013-02-06 06:52:58 +0000997/// ::= <attr> | <attr> '=' <value>
Bill Wendlingb32b0412013-02-08 06:32:06 +0000998bool LLParser::ParseFnAttributeValuePairs(AttrBuilder &B,
999 std::vector<unsigned> &FwdRefAttrGrps,
Michael Gottesman41748d72013-06-27 00:25:01 +00001000 bool inAttrGrp, LocTy &BuiltinLoc) {
Bill Wendling8b0321d2013-02-08 00:52:31 +00001001 bool HaveError = false;
1002
1003 B.clear();
1004
Bill Wendling63b88192013-02-06 06:52:58 +00001005 while (true) {
1006 lltok::Kind Token = Lex.getKind();
Michael Gottesman41748d72013-06-27 00:25:01 +00001007 if (Token == lltok::kw_builtin)
1008 BuiltinLoc = Lex.getLoc();
Bill Wendling63b88192013-02-06 06:52:58 +00001009 switch (Token) {
1010 default:
Bill Wendling8b0321d2013-02-08 00:52:31 +00001011 if (!inAttrGrp) return HaveError;
Bill Wendling63b88192013-02-06 06:52:58 +00001012 return Error(Lex.getLoc(), "unterminated attribute group");
1013 case lltok::rbrace:
1014 // Finished.
1015 return false;
1016
Bill Wendlingb32b0412013-02-08 06:32:06 +00001017 case lltok::AttrGrpID: {
1018 // Allow a function to reference an attribute group:
1019 //
1020 // define void @foo() #1 { ... }
1021 if (inAttrGrp)
1022 HaveError |=
1023 Error(Lex.getLoc(),
1024 "cannot have an attribute group reference in an attribute group");
1025
1026 unsigned AttrGrpNum = Lex.getUIntVal();
1027 if (inAttrGrp) break;
1028
1029 // Save the reference to the attribute group. We'll fill it in later.
1030 FwdRefAttrGrps.push_back(AttrGrpNum);
1031 break;
1032 }
Bill Wendling63b88192013-02-06 06:52:58 +00001033 // Target-dependent attributes:
1034 case lltok::StringConstant: {
Artur Pilipenko17376c42015-08-03 14:31:49 +00001035 if (ParseStringAttribute(B))
Bill Wendling63b88192013-02-06 06:52:58 +00001036 return true;
Bill Wendlingb1ea9802013-02-10 10:12:50 +00001037 continue;
Bill Wendling63b88192013-02-06 06:52:58 +00001038 }
1039
1040 // Target-independent attributes:
1041 case lltok::kw_align: {
Bill Wendlingc62789f2013-04-18 18:30:16 +00001042 // As a hack, we allow function alignment to be initially parsed as an
1043 // attribute on a function declaration/definition or added to an attribute
1044 // group and later moved to the alignment field.
Bill Wendling63b88192013-02-06 06:52:58 +00001045 unsigned Alignment;
Bill Wendling8b0321d2013-02-08 00:52:31 +00001046 if (inAttrGrp) {
Bill Wendling44b08bf2013-02-10 23:15:51 +00001047 Lex.Lex();
Bill Wendling8b0321d2013-02-08 00:52:31 +00001048 if (ParseToken(lltok::equal, "expected '=' here") ||
1049 ParseUInt32(Alignment))
1050 return true;
1051 } else {
1052 if (ParseOptionalAlignment(Alignment))
1053 return true;
1054 }
Bill Wendling63b88192013-02-06 06:52:58 +00001055 B.addAlignmentAttr(Alignment);
Bill Wendling8b0321d2013-02-08 00:52:31 +00001056 continue;
Bill Wendling63b88192013-02-06 06:52:58 +00001057 }
1058 case lltok::kw_alignstack: {
1059 unsigned Alignment;
Bill Wendling8b0321d2013-02-08 00:52:31 +00001060 if (inAttrGrp) {
Bill Wendling44b08bf2013-02-10 23:15:51 +00001061 Lex.Lex();
Bill Wendling8b0321d2013-02-08 00:52:31 +00001062 if (ParseToken(lltok::equal, "expected '=' here") ||
1063 ParseUInt32(Alignment))
1064 return true;
1065 } else {
1066 if (ParseOptionalStackAlignment(Alignment))
1067 return true;
1068 }
Bill Wendling63b88192013-02-06 06:52:58 +00001069 B.addStackAlignmentAttr(Alignment);
Bill Wendling8b0321d2013-02-08 00:52:31 +00001070 continue;
Bill Wendling63b88192013-02-06 06:52:58 +00001071 }
George Burgess IV278199f2016-04-12 01:05:35 +00001072 case lltok::kw_allocsize: {
1073 unsigned ElemSizeArg;
1074 Optional<unsigned> NumElemsArg;
1075 // inAttrGrp doesn't matter; we only support allocsize(a[, b])
1076 if (parseAllocSizeArguments(ElemSizeArg, NumElemsArg))
1077 return true;
1078 B.addAllocSizeAttr(ElemSizeArg, NumElemsArg);
1079 continue;
1080 }
Igor Laevsky39d662f2015-07-11 10:30:36 +00001081 case lltok::kw_alwaysinline: B.addAttribute(Attribute::AlwaysInline); break;
1082 case lltok::kw_argmemonly: B.addAttribute(Attribute::ArgMemOnly); break;
1083 case lltok::kw_builtin: B.addAttribute(Attribute::Builtin); break;
1084 case lltok::kw_cold: B.addAttribute(Attribute::Cold); break;
1085 case lltok::kw_convergent: B.addAttribute(Attribute::Convergent); break;
Vaivaswatha Nagarajfb3f4902015-12-16 16:16:19 +00001086 case lltok::kw_inaccessiblememonly:
1087 B.addAttribute(Attribute::InaccessibleMemOnly); break;
1088 case lltok::kw_inaccessiblemem_or_argmemonly:
1089 B.addAttribute(Attribute::InaccessibleMemOrArgMemOnly); break;
Igor Laevsky39d662f2015-07-11 10:30:36 +00001090 case lltok::kw_inlinehint: B.addAttribute(Attribute::InlineHint); break;
1091 case lltok::kw_jumptable: B.addAttribute(Attribute::JumpTable); break;
1092 case lltok::kw_minsize: B.addAttribute(Attribute::MinSize); break;
1093 case lltok::kw_naked: B.addAttribute(Attribute::Naked); break;
1094 case lltok::kw_nobuiltin: B.addAttribute(Attribute::NoBuiltin); break;
1095 case lltok::kw_noduplicate: B.addAttribute(Attribute::NoDuplicate); break;
1096 case lltok::kw_noimplicitfloat:
1097 B.addAttribute(Attribute::NoImplicitFloat); break;
1098 case lltok::kw_noinline: B.addAttribute(Attribute::NoInline); break;
1099 case lltok::kw_nonlazybind: B.addAttribute(Attribute::NonLazyBind); break;
1100 case lltok::kw_noredzone: B.addAttribute(Attribute::NoRedZone); break;
1101 case lltok::kw_noreturn: B.addAttribute(Attribute::NoReturn); break;
James Molloye6f87ca2015-11-06 10:32:53 +00001102 case lltok::kw_norecurse: B.addAttribute(Attribute::NoRecurse); break;
Igor Laevsky39d662f2015-07-11 10:30:36 +00001103 case lltok::kw_nounwind: B.addAttribute(Attribute::NoUnwind); break;
1104 case lltok::kw_optnone: B.addAttribute(Attribute::OptimizeNone); break;
1105 case lltok::kw_optsize: B.addAttribute(Attribute::OptimizeForSize); break;
1106 case lltok::kw_readnone: B.addAttribute(Attribute::ReadNone); break;
1107 case lltok::kw_readonly: B.addAttribute(Attribute::ReadOnly); break;
1108 case lltok::kw_returns_twice:
1109 B.addAttribute(Attribute::ReturnsTwice); break;
1110 case lltok::kw_ssp: B.addAttribute(Attribute::StackProtect); break;
1111 case lltok::kw_sspreq: B.addAttribute(Attribute::StackProtectReq); break;
1112 case lltok::kw_sspstrong:
1113 B.addAttribute(Attribute::StackProtectStrong); break;
1114 case lltok::kw_safestack: B.addAttribute(Attribute::SafeStack); break;
1115 case lltok::kw_sanitize_address:
1116 B.addAttribute(Attribute::SanitizeAddress); break;
1117 case lltok::kw_sanitize_thread:
1118 B.addAttribute(Attribute::SanitizeThread); break;
1119 case lltok::kw_sanitize_memory:
1120 B.addAttribute(Attribute::SanitizeMemory); break;
1121 case lltok::kw_uwtable: B.addAttribute(Attribute::UWTable); break;
Nicolai Haehnle84c9f992016-07-04 08:01:29 +00001122 case lltok::kw_writeonly: B.addAttribute(Attribute::WriteOnly); break;
Bill Wendling8b0321d2013-02-08 00:52:31 +00001123
1124 // Error handling.
1125 case lltok::kw_inreg:
1126 case lltok::kw_signext:
1127 case lltok::kw_zeroext:
1128 HaveError |=
1129 Error(Lex.getLoc(),
1130 "invalid use of attribute on a function");
1131 break;
1132 case lltok::kw_byval:
Hal Finkelb0407ba2014-07-18 15:51:28 +00001133 case lltok::kw_dereferenceable:
Sanjoy Das31ea6d12015-04-16 20:29:50 +00001134 case lltok::kw_dereferenceable_or_null:
Reid Klecknera534a382013-12-19 02:14:12 +00001135 case lltok::kw_inalloca:
Bill Wendling8b0321d2013-02-08 00:52:31 +00001136 case lltok::kw_nest:
1137 case lltok::kw_noalias:
1138 case lltok::kw_nocapture:
Nick Lewyckyd52b1522014-05-20 01:23:40 +00001139 case lltok::kw_nonnull:
Stephen Linb8bd2322013-04-20 05:14:40 +00001140 case lltok::kw_returned:
Bill Wendling8b0321d2013-02-08 00:52:31 +00001141 case lltok::kw_sret:
Manman Ren9bfd0d02016-04-01 21:41:15 +00001142 case lltok::kw_swifterror:
Manman Renf46262e2016-03-29 17:37:21 +00001143 case lltok::kw_swiftself:
Bill Wendling8b0321d2013-02-08 00:52:31 +00001144 HaveError |=
1145 Error(Lex.getLoc(),
1146 "invalid use of parameter-only attribute on a function");
1147 break;
Bill Wendling63b88192013-02-06 06:52:58 +00001148 }
1149
1150 Lex.Lex();
1151 }
1152}
Chris Lattnerac161bf2009-01-02 07:01:27 +00001153
1154//===----------------------------------------------------------------------===//
1155// GlobalValue Reference/Resolution Routines.
1156//===----------------------------------------------------------------------===//
1157
Karl Schimpf77729782015-09-03 18:06:44 +00001158static inline GlobalValue *createGlobalFwdRef(Module *M, PointerType *PTy,
1159 const std::string &Name) {
1160 if (auto *FT = dyn_cast<FunctionType>(PTy->getElementType()))
1161 return Function::Create(FT, GlobalValue::ExternalWeakLinkage, Name, M);
1162 else
1163 return new GlobalVariable(*M, PTy->getElementType(), false,
1164 GlobalValue::ExternalWeakLinkage, nullptr, Name,
1165 nullptr, GlobalVariable::NotThreadLocal,
1166 PTy->getAddressSpace());
1167}
1168
Chris Lattnerac161bf2009-01-02 07:01:27 +00001169/// GetGlobalVal - Get a value with the specified name or ID, creating a
1170/// forward reference record if needed. This can return null if the value
1171/// exists but does not have the right type.
Chris Lattner229907c2011-07-18 04:54:35 +00001172GlobalValue *LLParser::GetGlobalVal(const std::string &Name, Type *Ty,
Chris Lattnerac161bf2009-01-02 07:01:27 +00001173 LocTy Loc) {
Chris Lattner229907c2011-07-18 04:54:35 +00001174 PointerType *PTy = dyn_cast<PointerType>(Ty);
Craig Topper2617dcc2014-04-15 06:32:26 +00001175 if (!PTy) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00001176 Error(Loc, "global variable reference must have pointer type");
Craig Topper2617dcc2014-04-15 06:32:26 +00001177 return nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001178 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001179
Chris Lattnerac161bf2009-01-02 07:01:27 +00001180 // Look this name up in the normal function symbol table.
1181 GlobalValue *Val =
1182 cast_or_null<GlobalValue>(M->getValueSymbolTable().lookup(Name));
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001183
Chris Lattnerac161bf2009-01-02 07:01:27 +00001184 // If this is a forward reference for the value, see if we already created a
1185 // forward ref record.
Craig Topper2617dcc2014-04-15 06:32:26 +00001186 if (!Val) {
David Blaikie9ebdc692015-09-21 21:07:50 +00001187 auto I = ForwardRefVals.find(Name);
Chris Lattnerac161bf2009-01-02 07:01:27 +00001188 if (I != ForwardRefVals.end())
1189 Val = I->second.first;
1190 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001191
Chris Lattnerac161bf2009-01-02 07:01:27 +00001192 // If we have the value in the symbol table or fwd-ref table, return it.
1193 if (Val) {
1194 if (Val->getType() == Ty) return Val;
1195 Error(Loc, "'@" + Name + "' defined with type '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00001196 getTypeString(Val->getType()) + "'");
Craig Topper2617dcc2014-04-15 06:32:26 +00001197 return nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001198 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001199
Chris Lattnerac161bf2009-01-02 07:01:27 +00001200 // Otherwise, create a new forward reference for this value and remember it.
Karl Schimpf77729782015-09-03 18:06:44 +00001201 GlobalValue *FwdVal = createGlobalFwdRef(M, PTy, Name);
Chris Lattnerac161bf2009-01-02 07:01:27 +00001202 ForwardRefVals[Name] = std::make_pair(FwdVal, Loc);
1203 return FwdVal;
1204}
1205
Chris Lattner229907c2011-07-18 04:54:35 +00001206GlobalValue *LLParser::GetGlobalVal(unsigned ID, Type *Ty, LocTy Loc) {
1207 PointerType *PTy = dyn_cast<PointerType>(Ty);
Craig Topper2617dcc2014-04-15 06:32:26 +00001208 if (!PTy) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00001209 Error(Loc, "global variable reference must have pointer type");
Craig Topper2617dcc2014-04-15 06:32:26 +00001210 return nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001211 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001212
Craig Topper2617dcc2014-04-15 06:32:26 +00001213 GlobalValue *Val = ID < NumberedVals.size() ? NumberedVals[ID] : nullptr;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001214
Chris Lattnerac161bf2009-01-02 07:01:27 +00001215 // If this is a forward reference for the value, see if we already created a
1216 // forward ref record.
Craig Topper2617dcc2014-04-15 06:32:26 +00001217 if (!Val) {
David Blaikie9ebdc692015-09-21 21:07:50 +00001218 auto I = ForwardRefValIDs.find(ID);
Chris Lattnerac161bf2009-01-02 07:01:27 +00001219 if (I != ForwardRefValIDs.end())
1220 Val = I->second.first;
1221 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001222
Chris Lattnerac161bf2009-01-02 07:01:27 +00001223 // If we have the value in the symbol table or fwd-ref table, return it.
1224 if (Val) {
1225 if (Val->getType() == Ty) return Val;
Benjamin Kramerc7583112010-09-27 17:42:11 +00001226 Error(Loc, "'@" + Twine(ID) + "' defined with type '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00001227 getTypeString(Val->getType()) + "'");
Craig Topper2617dcc2014-04-15 06:32:26 +00001228 return nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001229 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001230
Chris Lattnerac161bf2009-01-02 07:01:27 +00001231 // Otherwise, create a new forward reference for this value and remember it.
Karl Schimpf77729782015-09-03 18:06:44 +00001232 GlobalValue *FwdVal = createGlobalFwdRef(M, PTy, "");
Chris Lattnerac161bf2009-01-02 07:01:27 +00001233 ForwardRefValIDs[ID] = std::make_pair(FwdVal, Loc);
1234 return FwdVal;
1235}
1236
Chris Lattnerac161bf2009-01-02 07:01:27 +00001237//===----------------------------------------------------------------------===//
David Majnemerdad0a642014-06-27 18:19:56 +00001238// Comdat Reference/Resolution Routines.
1239//===----------------------------------------------------------------------===//
1240
1241Comdat *LLParser::getComdat(const std::string &Name, LocTy Loc) {
1242 // Look this name up in the comdat symbol table.
1243 Module::ComdatSymTabType &ComdatSymTab = M->getComdatSymbolTable();
1244 Module::ComdatSymTabType::iterator I = ComdatSymTab.find(Name);
1245 if (I != ComdatSymTab.end())
1246 return &I->second;
1247
1248 // Otherwise, create a new forward reference for this value and remember it.
1249 Comdat *C = M->getOrInsertComdat(Name);
1250 ForwardRefComdats[Name] = Loc;
1251 return C;
1252}
1253
David Majnemerdad0a642014-06-27 18:19:56 +00001254//===----------------------------------------------------------------------===//
Chris Lattnerac161bf2009-01-02 07:01:27 +00001255// Helper Routines.
1256//===----------------------------------------------------------------------===//
1257
1258/// ParseToken - If the current token has the specified kind, eat it and return
1259/// success. Otherwise, emit the specified error and return failure.
1260bool LLParser::ParseToken(lltok::Kind T, const char *ErrMsg) {
1261 if (Lex.getKind() != T)
1262 return TokError(ErrMsg);
1263 Lex.Lex();
1264 return false;
1265}
1266
Chris Lattner3822f632009-01-02 08:05:26 +00001267/// ParseStringConstant
1268/// ::= StringConstant
1269bool LLParser::ParseStringConstant(std::string &Result) {
1270 if (Lex.getKind() != lltok::StringConstant)
1271 return TokError("expected string constant");
1272 Result = Lex.getStrVal();
1273 Lex.Lex();
1274 return false;
1275}
1276
1277/// ParseUInt32
1278/// ::= uint32
Leny Kholodov5fcc4182016-09-06 10:46:28 +00001279bool LLParser::ParseUInt32(uint32_t &Val) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00001280 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned())
1281 return TokError("expected integer");
1282 uint64_t Val64 = Lex.getAPSIntVal().getLimitedValue(0xFFFFFFFFULL+1);
1283 if (Val64 != unsigned(Val64))
1284 return TokError("expected 32-bit integer (too large)");
1285 Val = Val64;
1286 Lex.Lex();
1287 return false;
1288}
1289
Hal Finkelb0407ba2014-07-18 15:51:28 +00001290/// ParseUInt64
1291/// ::= uint64
1292bool LLParser::ParseUInt64(uint64_t &Val) {
1293 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned())
1294 return TokError("expected integer");
1295 Val = Lex.getAPSIntVal().getLimitedValue();
1296 Lex.Lex();
1297 return false;
1298}
1299
Hans Wennborgcbe34b42012-06-23 11:37:03 +00001300/// ParseTLSModel
1301/// := 'localdynamic'
1302/// := 'initialexec'
1303/// := 'localexec'
1304bool LLParser::ParseTLSModel(GlobalVariable::ThreadLocalMode &TLM) {
1305 switch (Lex.getKind()) {
1306 default:
1307 return TokError("expected localdynamic, initialexec or localexec");
1308 case lltok::kw_localdynamic:
1309 TLM = GlobalVariable::LocalDynamicTLSModel;
1310 break;
1311 case lltok::kw_initialexec:
1312 TLM = GlobalVariable::InitialExecTLSModel;
1313 break;
1314 case lltok::kw_localexec:
1315 TLM = GlobalVariable::LocalExecTLSModel;
1316 break;
1317 }
1318
1319 Lex.Lex();
1320 return false;
1321}
1322
1323/// ParseOptionalThreadLocal
1324/// := /*empty*/
1325/// := 'thread_local'
1326/// := 'thread_local' '(' tlsmodel ')'
1327bool LLParser::ParseOptionalThreadLocal(GlobalVariable::ThreadLocalMode &TLM) {
1328 TLM = GlobalVariable::NotThreadLocal;
1329 if (!EatIfPresent(lltok::kw_thread_local))
1330 return false;
1331
1332 TLM = GlobalVariable::GeneralDynamicTLSModel;
1333 if (Lex.getKind() == lltok::lparen) {
1334 Lex.Lex();
1335 return ParseTLSModel(TLM) ||
1336 ParseToken(lltok::rparen, "expected ')' after thread local model");
1337 }
1338 return false;
1339}
Chris Lattnerac161bf2009-01-02 07:01:27 +00001340
1341/// ParseOptionalAddrSpace
1342/// := /*empty*/
1343/// := 'addrspace' '(' uint32 ')'
1344bool LLParser::ParseOptionalAddrSpace(unsigned &AddrSpace) {
1345 AddrSpace = 0;
Chris Lattner3822f632009-01-02 08:05:26 +00001346 if (!EatIfPresent(lltok::kw_addrspace))
Chris Lattnerac161bf2009-01-02 07:01:27 +00001347 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001348 return ParseToken(lltok::lparen, "expected '(' in address space") ||
Chris Lattner3822f632009-01-02 08:05:26 +00001349 ParseUInt32(AddrSpace) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00001350 ParseToken(lltok::rparen, "expected ')' in address space");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001351}
Chris Lattnerac161bf2009-01-02 07:01:27 +00001352
Artur Pilipenko17376c42015-08-03 14:31:49 +00001353/// ParseStringAttribute
1354/// := StringConstant
1355/// := StringConstant '=' StringConstant
1356bool LLParser::ParseStringAttribute(AttrBuilder &B) {
1357 std::string Attr = Lex.getStrVal();
1358 Lex.Lex();
1359 std::string Val;
1360 if (EatIfPresent(lltok::equal) && ParseStringConstant(Val))
1361 return true;
1362 B.addAttribute(Attr, Val);
1363 return false;
1364}
1365
Bill Wendling34c2eb22012-12-04 23:40:58 +00001366/// ParseOptionalParamAttrs - Parse a potentially empty list of parameter attributes.
1367bool LLParser::ParseOptionalParamAttrs(AttrBuilder &B) {
1368 bool HaveError = false;
1369
1370 B.clear();
1371
Eugene Zelenko1804a772016-08-25 00:45:04 +00001372 while (true) {
Bill Wendling34c2eb22012-12-04 23:40:58 +00001373 lltok::Kind Token = Lex.getKind();
1374 switch (Token) {
1375 default: // End of attributes.
1376 return HaveError;
Artur Pilipenko17376c42015-08-03 14:31:49 +00001377 case lltok::StringConstant: {
1378 if (ParseStringAttribute(B))
1379 return true;
1380 continue;
1381 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00001382 case lltok::kw_align: {
1383 unsigned Alignment;
1384 if (ParseOptionalAlignment(Alignment))
1385 return true;
Bill Wendling68d24012012-10-08 22:20:14 +00001386 B.addAlignmentAttr(Alignment);
Chris Lattnerac161bf2009-01-02 07:01:27 +00001387 continue;
1388 }
Bill Wendling3d7b0b82012-12-19 07:18:57 +00001389 case lltok::kw_byval: B.addAttribute(Attribute::ByVal); break;
Hal Finkelb0407ba2014-07-18 15:51:28 +00001390 case lltok::kw_dereferenceable: {
1391 uint64_t Bytes;
Sanjoy Das31ea6d12015-04-16 20:29:50 +00001392 if (ParseOptionalDerefAttrBytes(lltok::kw_dereferenceable, Bytes))
Hal Finkelb0407ba2014-07-18 15:51:28 +00001393 return true;
1394 B.addDereferenceableAttr(Bytes);
1395 continue;
1396 }
Sanjoy Das31ea6d12015-04-16 20:29:50 +00001397 case lltok::kw_dereferenceable_or_null: {
1398 uint64_t Bytes;
1399 if (ParseOptionalDerefAttrBytes(lltok::kw_dereferenceable_or_null, Bytes))
1400 return true;
1401 B.addDereferenceableOrNullAttr(Bytes);
1402 continue;
1403 }
Reid Klecknera534a382013-12-19 02:14:12 +00001404 case lltok::kw_inalloca: B.addAttribute(Attribute::InAlloca); break;
Bill Wendling3d7b0b82012-12-19 07:18:57 +00001405 case lltok::kw_inreg: B.addAttribute(Attribute::InReg); break;
1406 case lltok::kw_nest: B.addAttribute(Attribute::Nest); break;
1407 case lltok::kw_noalias: B.addAttribute(Attribute::NoAlias); break;
1408 case lltok::kw_nocapture: B.addAttribute(Attribute::NoCapture); break;
Nick Lewyckyd52b1522014-05-20 01:23:40 +00001409 case lltok::kw_nonnull: B.addAttribute(Attribute::NonNull); break;
Nick Lewyckyc2ec0722013-07-06 00:29:58 +00001410 case lltok::kw_readnone: B.addAttribute(Attribute::ReadNone); break;
1411 case lltok::kw_readonly: B.addAttribute(Attribute::ReadOnly); break;
Stephen Linb8bd2322013-04-20 05:14:40 +00001412 case lltok::kw_returned: B.addAttribute(Attribute::Returned); break;
Bill Wendling3d7b0b82012-12-19 07:18:57 +00001413 case lltok::kw_signext: B.addAttribute(Attribute::SExt); break;
1414 case lltok::kw_sret: B.addAttribute(Attribute::StructRet); break;
Manman Ren9bfd0d02016-04-01 21:41:15 +00001415 case lltok::kw_swifterror: B.addAttribute(Attribute::SwiftError); break;
Manman Renf46262e2016-03-29 17:37:21 +00001416 case lltok::kw_swiftself: B.addAttribute(Attribute::SwiftSelf); break;
Nicolai Haehnle84c9f992016-07-04 08:01:29 +00001417 case lltok::kw_writeonly: B.addAttribute(Attribute::WriteOnly); break;
Bill Wendling3d7b0b82012-12-19 07:18:57 +00001418 case lltok::kw_zeroext: B.addAttribute(Attribute::ZExt); break;
Charles Davisbe5557e2010-02-12 00:31:15 +00001419
Stephen Lin7577ed52013-04-20 13:16:13 +00001420 case lltok::kw_alignstack:
1421 case lltok::kw_alwaysinline:
Igor Laevsky39d662f2015-07-11 10:30:36 +00001422 case lltok::kw_argmemonly:
Michael Gottesman41748d72013-06-27 00:25:01 +00001423 case lltok::kw_builtin:
Stephen Lin7577ed52013-04-20 13:16:13 +00001424 case lltok::kw_inlinehint:
Tom Roeder44cb65f2014-06-05 19:29:43 +00001425 case lltok::kw_jumptable:
Stephen Lin7577ed52013-04-20 13:16:13 +00001426 case lltok::kw_minsize:
1427 case lltok::kw_naked:
1428 case lltok::kw_nobuiltin:
1429 case lltok::kw_noduplicate:
1430 case lltok::kw_noimplicitfloat:
1431 case lltok::kw_noinline:
1432 case lltok::kw_nonlazybind:
1433 case lltok::kw_noredzone:
1434 case lltok::kw_noreturn:
1435 case lltok::kw_nounwind:
Andrea Di Biagio377496b2013-08-23 11:53:55 +00001436 case lltok::kw_optnone:
Stephen Lin7577ed52013-04-20 13:16:13 +00001437 case lltok::kw_optsize:
Stephen Lin7577ed52013-04-20 13:16:13 +00001438 case lltok::kw_returns_twice:
1439 case lltok::kw_sanitize_address:
1440 case lltok::kw_sanitize_memory:
1441 case lltok::kw_sanitize_thread:
1442 case lltok::kw_ssp:
1443 case lltok::kw_sspreq:
1444 case lltok::kw_sspstrong:
Peter Collingbourne82437bf2015-06-15 21:07:11 +00001445 case lltok::kw_safestack:
Stephen Lin7577ed52013-04-20 13:16:13 +00001446 case lltok::kw_uwtable:
Bill Wendling34c2eb22012-12-04 23:40:58 +00001447 HaveError |= Error(Lex.getLoc(), "invalid use of function-only attribute");
1448 break;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001449 }
Bill Wendling0be9c402012-09-28 22:30:18 +00001450
Bill Wendling34c2eb22012-12-04 23:40:58 +00001451 Lex.Lex();
1452 }
1453}
1454
1455/// ParseOptionalReturnAttrs - Parse a potentially empty list of return attributes.
1456bool LLParser::ParseOptionalReturnAttrs(AttrBuilder &B) {
1457 bool HaveError = false;
1458
1459 B.clear();
1460
Eugene Zelenko1804a772016-08-25 00:45:04 +00001461 while (true) {
Bill Wendling34c2eb22012-12-04 23:40:58 +00001462 lltok::Kind Token = Lex.getKind();
Bill Wendling0be9c402012-09-28 22:30:18 +00001463 switch (Token) {
Bill Wendling34c2eb22012-12-04 23:40:58 +00001464 default: // End of attributes.
1465 return HaveError;
Artur Pilipenko17376c42015-08-03 14:31:49 +00001466 case lltok::StringConstant: {
1467 if (ParseStringAttribute(B))
1468 return true;
1469 continue;
1470 }
Hal Finkelb0407ba2014-07-18 15:51:28 +00001471 case lltok::kw_dereferenceable: {
1472 uint64_t Bytes;
Sanjoy Das31ea6d12015-04-16 20:29:50 +00001473 if (ParseOptionalDerefAttrBytes(lltok::kw_dereferenceable, Bytes))
Hal Finkelb0407ba2014-07-18 15:51:28 +00001474 return true;
1475 B.addDereferenceableAttr(Bytes);
1476 continue;
1477 }
Sanjoy Das31ea6d12015-04-16 20:29:50 +00001478 case lltok::kw_dereferenceable_or_null: {
1479 uint64_t Bytes;
1480 if (ParseOptionalDerefAttrBytes(lltok::kw_dereferenceable_or_null, Bytes))
1481 return true;
1482 B.addDereferenceableOrNullAttr(Bytes);
1483 continue;
1484 }
Artur Pilipenko84bc62f2015-09-18 12:33:31 +00001485 case lltok::kw_align: {
1486 unsigned Alignment;
1487 if (ParseOptionalAlignment(Alignment))
1488 return true;
1489 B.addAlignmentAttr(Alignment);
1490 continue;
1491 }
Bill Wendling3d7b0b82012-12-19 07:18:57 +00001492 case lltok::kw_inreg: B.addAttribute(Attribute::InReg); break;
1493 case lltok::kw_noalias: B.addAttribute(Attribute::NoAlias); break;
Nick Lewyckyd52b1522014-05-20 01:23:40 +00001494 case lltok::kw_nonnull: B.addAttribute(Attribute::NonNull); break;
Bill Wendling3d7b0b82012-12-19 07:18:57 +00001495 case lltok::kw_signext: B.addAttribute(Attribute::SExt); break;
1496 case lltok::kw_zeroext: B.addAttribute(Attribute::ZExt); break;
Bill Wendling0be9c402012-09-28 22:30:18 +00001497
Bill Wendling34c2eb22012-12-04 23:40:58 +00001498 // Error handling.
Chandler Carruth9f6b59a2013-04-09 19:46:46 +00001499 case lltok::kw_byval:
Reid Klecknera534a382013-12-19 02:14:12 +00001500 case lltok::kw_inalloca:
Chandler Carruth9f6b59a2013-04-09 19:46:46 +00001501 case lltok::kw_nest:
1502 case lltok::kw_nocapture:
Stephen Linb8bd2322013-04-20 05:14:40 +00001503 case lltok::kw_returned:
Chandler Carruth9f6b59a2013-04-09 19:46:46 +00001504 case lltok::kw_sret:
Manman Ren9bfd0d02016-04-01 21:41:15 +00001505 case lltok::kw_swifterror:
Manman Renf46262e2016-03-29 17:37:21 +00001506 case lltok::kw_swiftself:
Bill Wendling34c2eb22012-12-04 23:40:58 +00001507 HaveError |= Error(Lex.getLoc(), "invalid use of parameter-only attribute");
Bill Wendling0be9c402012-09-28 22:30:18 +00001508 break;
James Molloy4f6fb952012-12-20 16:04:27 +00001509
Chandler Carruth9f6b59a2013-04-09 19:46:46 +00001510 case lltok::kw_alignstack:
1511 case lltok::kw_alwaysinline:
Igor Laevsky39d662f2015-07-11 10:30:36 +00001512 case lltok::kw_argmemonly:
Michael Gottesman41748d72013-06-27 00:25:01 +00001513 case lltok::kw_builtin:
Diego Novilloc6399532013-05-24 12:26:52 +00001514 case lltok::kw_cold:
Chandler Carruth9f6b59a2013-04-09 19:46:46 +00001515 case lltok::kw_inlinehint:
Tom Roeder44cb65f2014-06-05 19:29:43 +00001516 case lltok::kw_jumptable:
Chandler Carruth9f6b59a2013-04-09 19:46:46 +00001517 case lltok::kw_minsize:
1518 case lltok::kw_naked:
1519 case lltok::kw_nobuiltin:
1520 case lltok::kw_noduplicate:
1521 case lltok::kw_noimplicitfloat:
1522 case lltok::kw_noinline:
1523 case lltok::kw_nonlazybind:
1524 case lltok::kw_noredzone:
1525 case lltok::kw_noreturn:
1526 case lltok::kw_nounwind:
Andrea Di Biagio377496b2013-08-23 11:53:55 +00001527 case lltok::kw_optnone:
Chandler Carruth9f6b59a2013-04-09 19:46:46 +00001528 case lltok::kw_optsize:
Chandler Carruth9f6b59a2013-04-09 19:46:46 +00001529 case lltok::kw_returns_twice:
1530 case lltok::kw_sanitize_address:
1531 case lltok::kw_sanitize_memory:
1532 case lltok::kw_sanitize_thread:
1533 case lltok::kw_ssp:
1534 case lltok::kw_sspreq:
1535 case lltok::kw_sspstrong:
Peter Collingbourne82437bf2015-06-15 21:07:11 +00001536 case lltok::kw_safestack:
Chandler Carruth9f6b59a2013-04-09 19:46:46 +00001537 case lltok::kw_uwtable:
Bill Wendling34c2eb22012-12-04 23:40:58 +00001538 HaveError |= Error(Lex.getLoc(), "invalid use of function-only attribute");
Bill Wendling0be9c402012-09-28 22:30:18 +00001539 break;
Nick Lewyckyc2ec0722013-07-06 00:29:58 +00001540
1541 case lltok::kw_readnone:
1542 case lltok::kw_readonly:
1543 HaveError |= Error(Lex.getLoc(), "invalid use of attribute on return type");
Bill Wendling0be9c402012-09-28 22:30:18 +00001544 }
1545
Chris Lattnerac161bf2009-01-02 07:01:27 +00001546 Lex.Lex();
1547 }
1548}
1549
Rafael Espindolac6269912016-05-10 17:16:45 +00001550static unsigned parseOptionalLinkageAux(lltok::Kind Kind, bool &HasLinkage) {
1551 HasLinkage = true;
1552 switch (Kind) {
1553 default:
1554 HasLinkage = false;
1555 return GlobalValue::ExternalLinkage;
1556 case lltok::kw_private:
1557 return GlobalValue::PrivateLinkage;
1558 case lltok::kw_internal:
1559 return GlobalValue::InternalLinkage;
1560 case lltok::kw_weak:
1561 return GlobalValue::WeakAnyLinkage;
1562 case lltok::kw_weak_odr:
1563 return GlobalValue::WeakODRLinkage;
1564 case lltok::kw_linkonce:
1565 return GlobalValue::LinkOnceAnyLinkage;
1566 case lltok::kw_linkonce_odr:
1567 return GlobalValue::LinkOnceODRLinkage;
1568 case lltok::kw_available_externally:
1569 return GlobalValue::AvailableExternallyLinkage;
1570 case lltok::kw_appending:
1571 return GlobalValue::AppendingLinkage;
1572 case lltok::kw_common:
1573 return GlobalValue::CommonLinkage;
1574 case lltok::kw_extern_weak:
1575 return GlobalValue::ExternalWeakLinkage;
1576 case lltok::kw_external:
1577 return GlobalValue::ExternalLinkage;
1578 }
1579}
1580
Chris Lattnerac161bf2009-01-02 07:01:27 +00001581/// ParseOptionalLinkage
1582/// ::= /*empty*/
Rafael Espindola6de96a12009-01-15 20:18:42 +00001583/// ::= 'private'
Chris Lattnerac161bf2009-01-02 07:01:27 +00001584/// ::= 'internal'
1585/// ::= 'weak'
Duncan Sands12da8ce2009-03-07 15:45:40 +00001586/// ::= 'weak_odr'
Chris Lattnerac161bf2009-01-02 07:01:27 +00001587/// ::= 'linkonce'
Duncan Sands12da8ce2009-03-07 15:45:40 +00001588/// ::= 'linkonce_odr'
Bill Wendling03bcd6e2010-07-01 21:55:59 +00001589/// ::= 'available_externally'
Chris Lattnerac161bf2009-01-02 07:01:27 +00001590/// ::= 'appending'
Chris Lattnerac161bf2009-01-02 07:01:27 +00001591/// ::= 'common'
Chris Lattnerac161bf2009-01-02 07:01:27 +00001592/// ::= 'extern_weak'
1593/// ::= 'external'
Rafael Espindola2615c9e2016-05-12 12:37:52 +00001594bool LLParser::ParseOptionalLinkage(unsigned &Res, bool &HasLinkage,
1595 unsigned &Visibility,
1596 unsigned &DLLStorageClass) {
Rafael Espindolac6269912016-05-10 17:16:45 +00001597 Res = parseOptionalLinkageAux(Lex.getKind(), HasLinkage);
1598 if (HasLinkage)
1599 Lex.Lex();
Rafael Espindola2615c9e2016-05-12 12:37:52 +00001600 ParseOptionalVisibility(Visibility);
1601 ParseOptionalDLLStorageClass(DLLStorageClass);
Chris Lattnerac161bf2009-01-02 07:01:27 +00001602 return false;
1603}
1604
1605/// ParseOptionalVisibility
1606/// ::= /*empty*/
1607/// ::= 'default'
1608/// ::= 'hidden'
1609/// ::= 'protected'
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001610///
Rafael Espindola2615c9e2016-05-12 12:37:52 +00001611void LLParser::ParseOptionalVisibility(unsigned &Res) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00001612 switch (Lex.getKind()) {
Rafael Espindola2615c9e2016-05-12 12:37:52 +00001613 default:
1614 Res = GlobalValue::DefaultVisibility;
1615 return;
1616 case lltok::kw_default:
1617 Res = GlobalValue::DefaultVisibility;
1618 break;
1619 case lltok::kw_hidden:
1620 Res = GlobalValue::HiddenVisibility;
1621 break;
1622 case lltok::kw_protected:
1623 Res = GlobalValue::ProtectedVisibility;
1624 break;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001625 }
1626 Lex.Lex();
Chris Lattnerac161bf2009-01-02 07:01:27 +00001627}
1628
Nico Rieck7157bb72014-01-14 15:22:47 +00001629/// ParseOptionalDLLStorageClass
1630/// ::= /*empty*/
1631/// ::= 'dllimport'
1632/// ::= 'dllexport'
1633///
Rafael Espindola2615c9e2016-05-12 12:37:52 +00001634void LLParser::ParseOptionalDLLStorageClass(unsigned &Res) {
Nico Rieck7157bb72014-01-14 15:22:47 +00001635 switch (Lex.getKind()) {
Rafael Espindola2615c9e2016-05-12 12:37:52 +00001636 default:
1637 Res = GlobalValue::DefaultStorageClass;
1638 return;
1639 case lltok::kw_dllimport:
1640 Res = GlobalValue::DLLImportStorageClass;
1641 break;
1642 case lltok::kw_dllexport:
1643 Res = GlobalValue::DLLExportStorageClass;
1644 break;
Nico Rieck7157bb72014-01-14 15:22:47 +00001645 }
1646 Lex.Lex();
Nico Rieck7157bb72014-01-14 15:22:47 +00001647}
1648
Chris Lattnerac161bf2009-01-02 07:01:27 +00001649/// ParseOptionalCallingConv
1650/// ::= /*empty*/
1651/// ::= 'ccc'
1652/// ::= 'fastcc'
Reid Kleckner35fc3632014-12-01 21:04:44 +00001653/// ::= 'intel_ocl_bicc'
Chris Lattnerac161bf2009-01-02 07:01:27 +00001654/// ::= 'coldcc'
1655/// ::= 'x86_stdcallcc'
1656/// ::= 'x86_fastcallcc'
Anton Korobeynikov8f35fab2010-05-16 09:08:45 +00001657/// ::= 'x86_thiscallcc'
Reid Kleckner9ccce992014-10-28 01:29:26 +00001658/// ::= 'x86_vectorcallcc'
Anton Korobeynikova8fd40b2009-06-16 18:50:49 +00001659/// ::= 'arm_apcscc'
1660/// ::= 'arm_aapcscc'
1661/// ::= 'arm_aapcs_vfpcc'
Anton Korobeynikov27a0ecf2009-12-07 02:27:35 +00001662/// ::= 'msp430_intrcc'
Dylan McKay4fd0d4a2016-03-03 10:08:02 +00001663/// ::= 'avr_intrcc'
1664/// ::= 'avr_signalcc'
Che-Liang Chiou29947902010-09-25 07:46:17 +00001665/// ::= 'ptx_kernel'
1666/// ::= 'ptx_device'
Micah Villmow48c8ddc2012-10-01 17:01:31 +00001667/// ::= 'spir_func'
1668/// ::= 'spir_kernel'
Charles Davise8f297c2013-07-12 06:02:35 +00001669/// ::= 'x86_64_sysvcc'
1670/// ::= 'x86_64_win64cc'
Andrew Tricka3a11de2013-10-31 22:12:01 +00001671/// ::= 'webkit_jscc'
Juergen Ributzka9969d3e2013-11-08 23:28:16 +00001672/// ::= 'anyregcc'
Juergen Ributzkae6250132014-01-17 19:47:03 +00001673/// ::= 'preserve_mostcc'
1674/// ::= 'preserve_allcc'
Reid Kleckner35fc3632014-12-01 21:04:44 +00001675/// ::= 'ghccc'
Manman Renf8bdd882016-04-05 22:41:47 +00001676/// ::= 'swiftcc'
Amjad Aboud60b5e1b2015-12-21 14:07:14 +00001677/// ::= 'x86_intrcc'
Maksim Panchenkocce239c2015-09-29 22:09:16 +00001678/// ::= 'hhvmcc'
1679/// ::= 'hhvm_ccc'
Manman Ren19c7bbe2015-12-04 17:40:13 +00001680/// ::= 'cxx_fast_tlscc'
Nicolai Haehnledf3a20c2016-04-06 19:40:20 +00001681/// ::= 'amdgpu_vs'
1682/// ::= 'amdgpu_tcs'
1683/// ::= 'amdgpu_tes'
1684/// ::= 'amdgpu_gs'
1685/// ::= 'amdgpu_ps'
1686/// ::= 'amdgpu_cs'
Nikolay Haustov1f7732a2016-05-06 09:07:29 +00001687/// ::= 'amdgpu_kernel'
Chris Lattnerac161bf2009-01-02 07:01:27 +00001688/// ::= 'cc' UINT
Anton Korobeynikova8fd40b2009-06-16 18:50:49 +00001689///
Alexey Samsonov17a9cff2014-09-10 18:00:17 +00001690bool LLParser::ParseOptionalCallingConv(unsigned &CC) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00001691 switch (Lex.getKind()) {
1692 default: CC = CallingConv::C; return false;
1693 case lltok::kw_ccc: CC = CallingConv::C; break;
1694 case lltok::kw_fastcc: CC = CallingConv::Fast; break;
1695 case lltok::kw_coldcc: CC = CallingConv::Cold; break;
1696 case lltok::kw_x86_stdcallcc: CC = CallingConv::X86_StdCall; break;
1697 case lltok::kw_x86_fastcallcc: CC = CallingConv::X86_FastCall; break;
Oren Ben Simhon92ccbf22016-10-13 07:53:43 +00001698 case lltok::kw_x86_regcallcc: CC = CallingConv::X86_RegCall; break;
Anton Korobeynikov8f35fab2010-05-16 09:08:45 +00001699 case lltok::kw_x86_thiscallcc: CC = CallingConv::X86_ThisCall; break;
Reid Kleckner9ccce992014-10-28 01:29:26 +00001700 case lltok::kw_x86_vectorcallcc:CC = CallingConv::X86_VectorCall; break;
Anton Korobeynikova8fd40b2009-06-16 18:50:49 +00001701 case lltok::kw_arm_apcscc: CC = CallingConv::ARM_APCS; break;
1702 case lltok::kw_arm_aapcscc: CC = CallingConv::ARM_AAPCS; break;
1703 case lltok::kw_arm_aapcs_vfpcc:CC = CallingConv::ARM_AAPCS_VFP; break;
Anton Korobeynikov27a0ecf2009-12-07 02:27:35 +00001704 case lltok::kw_msp430_intrcc: CC = CallingConv::MSP430_INTR; break;
Dylan McKay4fd0d4a2016-03-03 10:08:02 +00001705 case lltok::kw_avr_intrcc: CC = CallingConv::AVR_INTR; break;
1706 case lltok::kw_avr_signalcc: CC = CallingConv::AVR_SIGNAL; break;
Che-Liang Chiou29947902010-09-25 07:46:17 +00001707 case lltok::kw_ptx_kernel: CC = CallingConv::PTX_Kernel; break;
1708 case lltok::kw_ptx_device: CC = CallingConv::PTX_Device; break;
Micah Villmow48c8ddc2012-10-01 17:01:31 +00001709 case lltok::kw_spir_kernel: CC = CallingConv::SPIR_KERNEL; break;
1710 case lltok::kw_spir_func: CC = CallingConv::SPIR_FUNC; break;
Elena Demikhovskyd6afb032012-10-24 14:46:16 +00001711 case lltok::kw_intel_ocl_bicc: CC = CallingConv::Intel_OCL_BI; break;
Charles Davise8f297c2013-07-12 06:02:35 +00001712 case lltok::kw_x86_64_sysvcc: CC = CallingConv::X86_64_SysV; break;
1713 case lltok::kw_x86_64_win64cc: CC = CallingConv::X86_64_Win64; break;
Andrew Tricka3a11de2013-10-31 22:12:01 +00001714 case lltok::kw_webkit_jscc: CC = CallingConv::WebKit_JS; break;
Juergen Ributzka9969d3e2013-11-08 23:28:16 +00001715 case lltok::kw_anyregcc: CC = CallingConv::AnyReg; break;
Juergen Ributzkae6250132014-01-17 19:47:03 +00001716 case lltok::kw_preserve_mostcc:CC = CallingConv::PreserveMost; break;
1717 case lltok::kw_preserve_allcc: CC = CallingConv::PreserveAll; break;
Reid Kleckner35fc3632014-12-01 21:04:44 +00001718 case lltok::kw_ghccc: CC = CallingConv::GHC; break;
Manman Renf8bdd882016-04-05 22:41:47 +00001719 case lltok::kw_swiftcc: CC = CallingConv::Swift; break;
Amjad Aboud60b5e1b2015-12-21 14:07:14 +00001720 case lltok::kw_x86_intrcc: CC = CallingConv::X86_INTR; break;
Maksim Panchenkocce239c2015-09-29 22:09:16 +00001721 case lltok::kw_hhvmcc: CC = CallingConv::HHVM; break;
1722 case lltok::kw_hhvm_ccc: CC = CallingConv::HHVM_C; break;
Manman Ren19c7bbe2015-12-04 17:40:13 +00001723 case lltok::kw_cxx_fast_tlscc: CC = CallingConv::CXX_FAST_TLS; break;
Nicolai Haehnledf3a20c2016-04-06 19:40:20 +00001724 case lltok::kw_amdgpu_vs: CC = CallingConv::AMDGPU_VS; break;
1725 case lltok::kw_amdgpu_gs: CC = CallingConv::AMDGPU_GS; break;
1726 case lltok::kw_amdgpu_ps: CC = CallingConv::AMDGPU_PS; break;
1727 case lltok::kw_amdgpu_cs: CC = CallingConv::AMDGPU_CS; break;
Nikolay Haustov1f7732a2016-05-06 09:07:29 +00001728 case lltok::kw_amdgpu_kernel: CC = CallingConv::AMDGPU_KERNEL; break;
Sandeep Patel68c5f472009-09-02 08:44:58 +00001729 case lltok::kw_cc: {
Sandeep Patel68c5f472009-09-02 08:44:58 +00001730 Lex.Lex();
Alexey Samsonov17a9cff2014-09-10 18:00:17 +00001731 return ParseUInt32(CC);
Sandeep Patel68c5f472009-09-02 08:44:58 +00001732 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00001733 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001734
Chris Lattnerac161bf2009-01-02 07:01:27 +00001735 Lex.Lex();
1736 return false;
1737}
1738
Duncan P. N. Exon Smith19717ea2015-04-24 21:21:57 +00001739/// ParseMetadataAttachment
1740/// ::= !dbg !42
1741bool LLParser::ParseMetadataAttachment(unsigned &Kind, MDNode *&MD) {
1742 assert(Lex.getKind() == lltok::MetadataVar && "Expected metadata attachment");
1743
1744 std::string Name = Lex.getStrVal();
1745 Kind = M->getMDKindID(Name);
1746 Lex.Lex();
1747
1748 return ParseMDNode(MD);
1749}
1750
Chris Lattner5c427632009-12-30 05:31:19 +00001751/// ParseInstructionMetadata
Chris Lattner596760d2009-12-29 21:25:40 +00001752/// ::= !dbg !42 (',' !dbg !57)*
Duncan P. N. Exon Smith27d702c2015-04-24 21:29:36 +00001753bool LLParser::ParseInstructionMetadata(Instruction &Inst) {
Chris Lattner5c427632009-12-30 05:31:19 +00001754 do {
1755 if (Lex.getKind() != lltok::MetadataVar)
1756 return TokError("expected metadata after comma");
Devang Patelba4a6fd2009-09-29 00:01:14 +00001757
Duncan P. N. Exon Smith19717ea2015-04-24 21:21:57 +00001758 unsigned MDK;
Duncan P. N. Exon Smithf825dae2015-01-12 22:26:48 +00001759 MDNode *N;
Duncan P. N. Exon Smith19717ea2015-04-24 21:21:57 +00001760 if (ParseMetadataAttachment(MDK, N))
Chris Lattner1eed2d62009-12-30 04:56:59 +00001761 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001762
Duncan P. N. Exon Smith27d702c2015-04-24 21:29:36 +00001763 Inst.setMetadata(MDK, N);
Manman Ren209b17c2013-09-28 00:22:27 +00001764 if (MDK == LLVMContext::MD_tbaa)
Duncan P. N. Exon Smith27d702c2015-04-24 21:29:36 +00001765 InstsWithTBAATag.push_back(&Inst);
Manman Ren209b17c2013-09-28 00:22:27 +00001766
Chris Lattner596760d2009-12-29 21:25:40 +00001767 // If this is the end of the list, we're done.
Chris Lattner5c427632009-12-30 05:31:19 +00001768 } while (EatIfPresent(lltok::comma));
1769 return false;
Devang Patelea8a4b92009-09-17 23:04:48 +00001770}
1771
Peter Collingbournecceae7f2016-05-31 23:01:54 +00001772/// ParseGlobalObjectMetadataAttachment
1773/// ::= !dbg !57
1774bool LLParser::ParseGlobalObjectMetadataAttachment(GlobalObject &GO) {
1775 unsigned MDK;
1776 MDNode *N;
1777 if (ParseMetadataAttachment(MDK, N))
1778 return true;
1779
Peter Collingbourne382d81c2016-06-01 01:17:57 +00001780 GO.addMetadata(MDK, *N);
Peter Collingbournecceae7f2016-05-31 23:01:54 +00001781 return false;
1782}
1783
Duncan P. N. Exon Smith3d4cd752015-04-24 22:04:41 +00001784/// ParseOptionalFunctionMetadata
1785/// ::= (!dbg !57)*
1786bool LLParser::ParseOptionalFunctionMetadata(Function &F) {
Peter Collingbournecceae7f2016-05-31 23:01:54 +00001787 while (Lex.getKind() == lltok::MetadataVar)
1788 if (ParseGlobalObjectMetadataAttachment(F))
Duncan P. N. Exon Smith3d4cd752015-04-24 22:04:41 +00001789 return true;
Duncan P. N. Exon Smith3d4cd752015-04-24 22:04:41 +00001790 return false;
1791}
1792
Chris Lattnerac161bf2009-01-02 07:01:27 +00001793/// ParseOptionalAlignment
1794/// ::= /* empty */
1795/// ::= 'align' 4
1796bool LLParser::ParseOptionalAlignment(unsigned &Alignment) {
1797 Alignment = 0;
Chris Lattner3822f632009-01-02 08:05:26 +00001798 if (!EatIfPresent(lltok::kw_align))
1799 return false;
Chris Lattnerd11f5142009-01-05 07:46:05 +00001800 LocTy AlignLoc = Lex.getLoc();
1801 if (ParseUInt32(Alignment)) return true;
1802 if (!isPowerOf2_32(Alignment))
1803 return Error(AlignLoc, "alignment is not a power of two");
Dan Gohmand566d2c2010-07-30 21:07:05 +00001804 if (Alignment > Value::MaximumAlignment)
Dan Gohmana7e5a242010-07-28 20:12:04 +00001805 return Error(AlignLoc, "huge alignments are not supported yet");
Chris Lattnerd11f5142009-01-05 07:46:05 +00001806 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001807}
1808
Sanjoy Das31ea6d12015-04-16 20:29:50 +00001809/// ParseOptionalDerefAttrBytes
Hal Finkelb0407ba2014-07-18 15:51:28 +00001810/// ::= /* empty */
Sanjoy Das31ea6d12015-04-16 20:29:50 +00001811/// ::= AttrKind '(' 4 ')'
1812///
1813/// where AttrKind is either 'dereferenceable' or 'dereferenceable_or_null'.
1814bool LLParser::ParseOptionalDerefAttrBytes(lltok::Kind AttrKind,
1815 uint64_t &Bytes) {
1816 assert((AttrKind == lltok::kw_dereferenceable ||
1817 AttrKind == lltok::kw_dereferenceable_or_null) &&
1818 "contract!");
1819
Hal Finkelb0407ba2014-07-18 15:51:28 +00001820 Bytes = 0;
Sanjoy Das31ea6d12015-04-16 20:29:50 +00001821 if (!EatIfPresent(AttrKind))
Hal Finkelb0407ba2014-07-18 15:51:28 +00001822 return false;
1823 LocTy ParenLoc = Lex.getLoc();
1824 if (!EatIfPresent(lltok::lparen))
1825 return Error(ParenLoc, "expected '('");
1826 LocTy DerefLoc = Lex.getLoc();
1827 if (ParseUInt64(Bytes)) return true;
1828 ParenLoc = Lex.getLoc();
1829 if (!EatIfPresent(lltok::rparen))
1830 return Error(ParenLoc, "expected ')'");
1831 if (!Bytes)
1832 return Error(DerefLoc, "dereferenceable bytes must be non-zero");
1833 return false;
1834}
1835
Chris Lattnerb2f39502009-12-30 05:44:30 +00001836/// ParseOptionalCommaAlign
Michael Ilseman26ee2b82012-11-15 22:34:00 +00001837/// ::=
Chris Lattnerb2f39502009-12-30 05:44:30 +00001838/// ::= ',' align 4
1839///
1840/// This returns with AteExtraComma set to true if it ate an excess comma at the
1841/// end.
1842bool LLParser::ParseOptionalCommaAlign(unsigned &Alignment,
1843 bool &AteExtraComma) {
1844 AteExtraComma = false;
1845 while (EatIfPresent(lltok::comma)) {
1846 // Metadata at the end is an early exit.
Chris Lattnereafe4de2009-12-30 05:02:06 +00001847 if (Lex.getKind() == lltok::MetadataVar) {
Chris Lattnerb2f39502009-12-30 05:44:30 +00001848 AteExtraComma = true;
1849 return false;
1850 }
Michael Ilseman26ee2b82012-11-15 22:34:00 +00001851
Chris Lattner95b0ff42010-04-23 00:50:50 +00001852 if (Lex.getKind() != lltok::kw_align)
1853 return Error(Lex.getLoc(), "expected metadata or 'align'");
Duncan Sands4c5c8582010-10-21 16:07:10 +00001854
Chris Lattner95b0ff42010-04-23 00:50:50 +00001855 if (ParseOptionalAlignment(Alignment)) return true;
Chris Lattnerb2f39502009-12-30 05:44:30 +00001856 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001857
Devang Patelea8a4b92009-09-17 23:04:48 +00001858 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001859}
1860
George Burgess IV278199f2016-04-12 01:05:35 +00001861bool LLParser::parseAllocSizeArguments(unsigned &BaseSizeArg,
1862 Optional<unsigned> &HowManyArg) {
1863 Lex.Lex();
1864
1865 auto StartParen = Lex.getLoc();
1866 if (!EatIfPresent(lltok::lparen))
1867 return Error(StartParen, "expected '('");
1868
1869 if (ParseUInt32(BaseSizeArg))
1870 return true;
1871
1872 if (EatIfPresent(lltok::comma)) {
1873 auto HowManyAt = Lex.getLoc();
1874 unsigned HowMany;
1875 if (ParseUInt32(HowMany))
1876 return true;
1877 if (HowMany == BaseSizeArg)
1878 return Error(HowManyAt,
1879 "'allocsize' indices can't refer to the same parameter");
1880 HowManyArg = HowMany;
1881 } else
1882 HowManyArg = None;
1883
1884 auto EndParen = Lex.getLoc();
1885 if (!EatIfPresent(lltok::rparen))
1886 return Error(EndParen, "expected ')'");
1887 return false;
1888}
1889
Eli Friedmanfee02c62011-07-25 23:16:38 +00001890/// ParseScopeAndOrdering
1891/// if isAtomic: ::= 'singlethread'? AtomicOrdering
1892/// else: ::=
1893///
1894/// This sets Scope and Ordering to the parsed values.
1895bool LLParser::ParseScopeAndOrdering(bool isAtomic, SynchronizationScope &Scope,
1896 AtomicOrdering &Ordering) {
1897 if (!isAtomic)
1898 return false;
1899
1900 Scope = CrossThread;
1901 if (EatIfPresent(lltok::kw_singlethread))
1902 Scope = SingleThread;
Tim Northovere94a5182014-03-11 10:48:52 +00001903
1904 return ParseOrdering(Ordering);
1905}
1906
1907/// ParseOrdering
1908/// ::= AtomicOrdering
1909///
1910/// This sets Ordering to the parsed value.
1911bool LLParser::ParseOrdering(AtomicOrdering &Ordering) {
Eli Friedmanfee02c62011-07-25 23:16:38 +00001912 switch (Lex.getKind()) {
1913 default: return TokError("Expected ordering on atomic instruction");
JF Bastien800f87a2016-04-06 21:19:33 +00001914 case lltok::kw_unordered: Ordering = AtomicOrdering::Unordered; break;
1915 case lltok::kw_monotonic: Ordering = AtomicOrdering::Monotonic; break;
1916 // Not specified yet:
1917 // case lltok::kw_consume: Ordering = AtomicOrdering::Consume; break;
1918 case lltok::kw_acquire: Ordering = AtomicOrdering::Acquire; break;
1919 case lltok::kw_release: Ordering = AtomicOrdering::Release; break;
1920 case lltok::kw_acq_rel: Ordering = AtomicOrdering::AcquireRelease; break;
1921 case lltok::kw_seq_cst:
1922 Ordering = AtomicOrdering::SequentiallyConsistent;
1923 break;
Eli Friedmanfee02c62011-07-25 23:16:38 +00001924 }
1925 Lex.Lex();
1926 return false;
1927}
1928
Charles Davisbe5557e2010-02-12 00:31:15 +00001929/// ParseOptionalStackAlignment
1930/// ::= /* empty */
1931/// ::= 'alignstack' '(' 4 ')'
1932bool LLParser::ParseOptionalStackAlignment(unsigned &Alignment) {
1933 Alignment = 0;
1934 if (!EatIfPresent(lltok::kw_alignstack))
1935 return false;
1936 LocTy ParenLoc = Lex.getLoc();
1937 if (!EatIfPresent(lltok::lparen))
1938 return Error(ParenLoc, "expected '('");
1939 LocTy AlignLoc = Lex.getLoc();
1940 if (ParseUInt32(Alignment)) return true;
1941 ParenLoc = Lex.getLoc();
1942 if (!EatIfPresent(lltok::rparen))
1943 return Error(ParenLoc, "expected ')'");
1944 if (!isPowerOf2_32(Alignment))
1945 return Error(AlignLoc, "stack alignment is not a power of two");
1946 return false;
1947}
Devang Patelea8a4b92009-09-17 23:04:48 +00001948
Chris Lattner28f1eeb2009-12-30 05:14:00 +00001949/// ParseIndexList - This parses the index list for an insert/extractvalue
1950/// instruction. This sets AteExtraComma in the case where we eat an extra
1951/// comma at the end of the line and find that it is followed by metadata.
1952/// Clients that don't allow metadata can call the version of this function that
1953/// only takes one argument.
1954///
Chris Lattnerac161bf2009-01-02 07:01:27 +00001955/// ParseIndexList
1956/// ::= (',' uint32)+
Chris Lattner28f1eeb2009-12-30 05:14:00 +00001957///
1958bool LLParser::ParseIndexList(SmallVectorImpl<unsigned> &Indices,
1959 bool &AteExtraComma) {
1960 AteExtraComma = false;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00001961
Chris Lattnerac161bf2009-01-02 07:01:27 +00001962 if (Lex.getKind() != lltok::comma)
1963 return TokError("expected ',' as start of index list");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001964
Chris Lattner3822f632009-01-02 08:05:26 +00001965 while (EatIfPresent(lltok::comma)) {
Chris Lattner28f1eeb2009-12-30 05:14:00 +00001966 if (Lex.getKind() == lltok::MetadataVar) {
David Majnemer7ccc34d2015-02-16 09:18:13 +00001967 if (Indices.empty()) return TokError("expected index");
Chris Lattner28f1eeb2009-12-30 05:14:00 +00001968 AteExtraComma = true;
1969 return false;
1970 }
Nick Lewycky83e47112010-09-29 23:32:20 +00001971 unsigned Idx = 0;
Chris Lattner3822f632009-01-02 08:05:26 +00001972 if (ParseUInt32(Idx)) return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001973 Indices.push_back(Idx);
1974 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001975
Chris Lattnerac161bf2009-01-02 07:01:27 +00001976 return false;
1977}
1978
1979//===----------------------------------------------------------------------===//
1980// Type Parsing.
1981//===----------------------------------------------------------------------===//
1982
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001983/// ParseType - Parse a type.
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00001984bool LLParser::ParseType(Type *&Result, const Twine &Msg, bool AllowVoid) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001985 SMLoc TypeLoc = Lex.getLoc();
Chris Lattnerac161bf2009-01-02 07:01:27 +00001986 switch (Lex.getKind()) {
1987 default:
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00001988 return TokError(Msg);
Chris Lattnerac161bf2009-01-02 07:01:27 +00001989 case lltok::Type:
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001990 // Type ::= 'float' | 'void' (etc)
Chris Lattnerac161bf2009-01-02 07:01:27 +00001991 Result = Lex.getTyVal();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001992 Lex.Lex();
Chris Lattnerac161bf2009-01-02 07:01:27 +00001993 break;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001994 case lltok::lbrace:
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001995 // Type ::= StructType
1996 if (ParseAnonStructType(Result, false))
Chris Lattnerac161bf2009-01-02 07:01:27 +00001997 return true;
1998 break;
1999 case lltok::lsquare:
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002000 // Type ::= '[' ... ']'
Chris Lattnerac161bf2009-01-02 07:01:27 +00002001 Lex.Lex(); // eat the lsquare.
2002 if (ParseArrayVectorType(Result, false))
2003 return true;
2004 break;
2005 case lltok::less: // Either vector or packed struct.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002006 // Type ::= '<' ... '>'
Chris Lattner3822f632009-01-02 08:05:26 +00002007 Lex.Lex();
2008 if (Lex.getKind() == lltok::lbrace) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002009 if (ParseAnonStructType(Result, true) ||
Chris Lattner3822f632009-01-02 08:05:26 +00002010 ParseToken(lltok::greater, "expected '>' at end of packed struct"))
Chris Lattnerac161bf2009-01-02 07:01:27 +00002011 return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002012 } else if (ParseArrayVectorType(Result, true))
2013 return true;
2014 break;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002015 case lltok::LocalVar: {
2016 // Type ::= %foo
2017 std::pair<Type*, LocTy> &Entry = NamedTypes[Lex.getStrVal()];
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002018
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002019 // If the type hasn't been defined yet, create a forward definition and
2020 // remember where that forward def'n was seen (in case it never is defined).
Craig Topper2617dcc2014-04-15 06:32:26 +00002021 if (!Entry.first) {
Chris Lattner335d3992011-08-12 18:06:37 +00002022 Entry.first = StructType::create(Context, Lex.getStrVal());
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002023 Entry.second = Lex.getLoc();
Chris Lattnerac161bf2009-01-02 07:01:27 +00002024 }
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002025 Result = Entry.first;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002026 Lex.Lex();
2027 break;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002028 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002029
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002030 case lltok::LocalVarID: {
2031 // Type ::= %4
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002032 std::pair<Type*, LocTy> &Entry = NumberedTypes[Lex.getUIntVal()];
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002033
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002034 // If the type hasn't been defined yet, create a forward definition and
2035 // remember where that forward def'n was seen (in case it never is defined).
Craig Topper2617dcc2014-04-15 06:32:26 +00002036 if (!Entry.first) {
Chris Lattner335d3992011-08-12 18:06:37 +00002037 Entry.first = StructType::create(Context);
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002038 Entry.second = Lex.getLoc();
Chris Lattnerac161bf2009-01-02 07:01:27 +00002039 }
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002040 Result = Entry.first;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002041 Lex.Lex();
2042 break;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002043 }
2044 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002045
2046 // Parse the type suffixes.
Eugene Zelenko1804a772016-08-25 00:45:04 +00002047 while (true) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002048 switch (Lex.getKind()) {
2049 // End of type.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002050 default:
2051 if (!AllowVoid && Result->isVoidTy())
2052 return Error(TypeLoc, "void type only allowed for function results");
2053 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002054
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002055 // Type ::= Type '*'
Chris Lattnerac161bf2009-01-02 07:01:27 +00002056 case lltok::star:
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002057 if (Result->isLabelTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00002058 return TokError("basic block pointers are invalid");
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002059 if (Result->isVoidTy())
2060 return TokError("pointers to void are invalid - use i8* instead");
2061 if (!PointerType::isValidElementType(Result))
Nick Lewycky0aa6a742009-06-07 07:26:46 +00002062 return TokError("pointer to this type is invalid");
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002063 Result = PointerType::getUnqual(Result);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002064 Lex.Lex();
2065 break;
2066
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002067 // Type ::= Type 'addrspace' '(' uint32 ')' '*'
Chris Lattnerac161bf2009-01-02 07:01:27 +00002068 case lltok::kw_addrspace: {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002069 if (Result->isLabelTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00002070 return TokError("basic block pointers are invalid");
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002071 if (Result->isVoidTy())
Dan Gohman9280a682009-02-09 17:41:21 +00002072 return TokError("pointers to void are invalid; use i8* instead");
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002073 if (!PointerType::isValidElementType(Result))
Nick Lewycky0aa6a742009-06-07 07:26:46 +00002074 return TokError("pointer to this type is invalid");
Chris Lattnerac161bf2009-01-02 07:01:27 +00002075 unsigned AddrSpace;
2076 if (ParseOptionalAddrSpace(AddrSpace) ||
2077 ParseToken(lltok::star, "expected '*' in address space"))
2078 return true;
2079
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002080 Result = PointerType::get(Result, AddrSpace);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002081 break;
2082 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002083
Chris Lattnerac161bf2009-01-02 07:01:27 +00002084 /// Types '(' ArgTypeListI ')' OptFuncAttrs
2085 case lltok::lparen:
2086 if (ParseFunctionType(Result))
2087 return true;
2088 break;
2089 }
2090 }
2091}
2092
2093/// ParseParameterList
2094/// ::= '(' ')'
2095/// ::= '(' Arg (',' Arg)* ')'
2096/// Arg
2097/// ::= Type OptionalAttributes Value OptionalAttributes
2098bool LLParser::ParseParameterList(SmallVectorImpl<ParamInfo> &ArgList,
Reid Kleckner83498642014-08-26 00:33:28 +00002099 PerFunctionState &PFS, bool IsMustTailCall,
2100 bool InVarArgsFunc) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002101 if (ParseToken(lltok::lparen, "expected '(' in call"))
2102 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002103
Bill Wendlingfe0021a2013-01-31 00:29:54 +00002104 unsigned AttrIndex = 1;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002105 while (Lex.getKind() != lltok::rparen) {
2106 // If this isn't the first argument, we need a comma.
2107 if (!ArgList.empty() &&
2108 ParseToken(lltok::comma, "expected ',' in argument list"))
2109 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002110
Reid Kleckner83498642014-08-26 00:33:28 +00002111 // Parse an ellipsis if this is a musttail call in a variadic function.
2112 if (Lex.getKind() == lltok::dotdotdot) {
2113 const char *Msg = "unexpected ellipsis in argument list for ";
2114 if (!IsMustTailCall)
2115 return TokError(Twine(Msg) + "non-musttail call");
2116 if (!InVarArgsFunc)
2117 return TokError(Twine(Msg) + "musttail call in non-varargs function");
2118 Lex.Lex(); // Lex the '...', it is purely for readability.
2119 return ParseToken(lltok::rparen, "expected ')' at end of argument list");
2120 }
2121
Chris Lattnerac161bf2009-01-02 07:01:27 +00002122 // Parse the argument.
2123 LocTy ArgLoc;
Craig Topper2617dcc2014-04-15 06:32:26 +00002124 Type *ArgTy = nullptr;
Bill Wendling50d27842012-10-15 20:35:56 +00002125 AttrBuilder ArgAttrs;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002126 Value *V;
Victor Hernandezfa232232009-12-03 23:40:58 +00002127 if (ParseType(ArgTy, ArgLoc))
Chris Lattnerac161bf2009-01-02 07:01:27 +00002128 return true;
Victor Hernandezfa232232009-12-03 23:40:58 +00002129
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00002130 if (ArgTy->isMetadataTy()) {
2131 if (ParseMetadataAsValue(V, PFS))
2132 return true;
2133 } else {
2134 // Otherwise, handle normal operands.
2135 if (ParseOptionalParamAttrs(ArgAttrs) || ParseValue(ArgTy, V, PFS))
2136 return true;
2137 }
Bill Wendlingfe0021a2013-01-31 00:29:54 +00002138 ArgList.push_back(ParamInfo(ArgLoc, V, AttributeSet::get(V->getContext(),
2139 AttrIndex++,
2140 ArgAttrs)));
Chris Lattnerac161bf2009-01-02 07:01:27 +00002141 }
2142
Reid Kleckner83498642014-08-26 00:33:28 +00002143 if (IsMustTailCall && InVarArgsFunc)
2144 return TokError("expected '...' at end of argument list for musttail call "
2145 "in varargs function");
2146
Chris Lattnerac161bf2009-01-02 07:01:27 +00002147 Lex.Lex(); // Lex the ')'.
2148 return false;
2149}
2150
Sanjoy Dasb513a9f2015-09-24 23:34:52 +00002151/// ParseOptionalOperandBundles
2152/// ::= /*empty*/
2153/// ::= '[' OperandBundle [, OperandBundle ]* ']'
2154///
2155/// OperandBundle
2156/// ::= bundle-tag '(' ')'
2157/// ::= bundle-tag '(' Type Value [, Type Value ]* ')'
2158///
2159/// bundle-tag ::= String Constant
2160bool LLParser::ParseOptionalOperandBundles(
2161 SmallVectorImpl<OperandBundleDef> &BundleList, PerFunctionState &PFS) {
2162 LocTy BeginLoc = Lex.getLoc();
2163 if (!EatIfPresent(lltok::lsquare))
2164 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002165
Sanjoy Dasb513a9f2015-09-24 23:34:52 +00002166 while (Lex.getKind() != lltok::rsquare) {
2167 // If this isn't the first operand bundle, we need a comma.
2168 if (!BundleList.empty() &&
2169 ParseToken(lltok::comma, "expected ',' in input list"))
2170 return true;
2171
2172 std::string Tag;
2173 if (ParseStringConstant(Tag))
2174 return true;
2175
Sanjoy Dasb513a9f2015-09-24 23:34:52 +00002176 if (ParseToken(lltok::lparen, "expected '(' in operand bundle"))
2177 return true;
2178
Sanjoy Dasf79d3442015-11-18 08:30:07 +00002179 std::vector<Value *> Inputs;
Sanjoy Dasb513a9f2015-09-24 23:34:52 +00002180 while (Lex.getKind() != lltok::rparen) {
2181 // If this isn't the first input, we need a comma.
Sanjoy Dasf79d3442015-11-18 08:30:07 +00002182 if (!Inputs.empty() &&
Sanjoy Dasb513a9f2015-09-24 23:34:52 +00002183 ParseToken(lltok::comma, "expected ',' in input list"))
2184 return true;
2185
2186 Type *Ty = nullptr;
2187 Value *Input = nullptr;
2188 if (ParseType(Ty) || ParseValue(Ty, Input, PFS))
2189 return true;
Sanjoy Dasf79d3442015-11-18 08:30:07 +00002190 Inputs.push_back(Input);
Sanjoy Dasb513a9f2015-09-24 23:34:52 +00002191 }
2192
Sanjoy Dasf79d3442015-11-18 08:30:07 +00002193 BundleList.emplace_back(std::move(Tag), std::move(Inputs));
2194
Sanjoy Dasb513a9f2015-09-24 23:34:52 +00002195 Lex.Lex(); // Lex the ')'.
2196 }
2197
2198 if (BundleList.empty())
2199 return Error(BeginLoc, "operand bundle set must not be empty");
2200
2201 Lex.Lex(); // Lex the ']'.
2202 return false;
2203}
Chris Lattnerac161bf2009-01-02 07:01:27 +00002204
Chris Lattner2ed06b42009-01-05 18:34:07 +00002205/// ParseArgumentList - Parse the argument list for a function type or function
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002206/// prototype.
Chris Lattnerac161bf2009-01-02 07:01:27 +00002207/// ::= '(' ArgTypeListI ')'
2208/// ArgTypeListI
2209/// ::= /*empty*/
2210/// ::= '...'
2211/// ::= ArgTypeList ',' '...'
2212/// ::= ArgType (',' ArgType)*
Chris Lattner2ed06b42009-01-05 18:34:07 +00002213///
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002214bool LLParser::ParseArgumentList(SmallVectorImpl<ArgInfo> &ArgList,
2215 bool &isVarArg){
Chris Lattnerac161bf2009-01-02 07:01:27 +00002216 isVarArg = false;
2217 assert(Lex.getKind() == lltok::lparen);
2218 Lex.Lex(); // eat the (.
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002219
Chris Lattnerac161bf2009-01-02 07:01:27 +00002220 if (Lex.getKind() == lltok::rparen) {
2221 // empty
2222 } else if (Lex.getKind() == lltok::dotdotdot) {
2223 isVarArg = true;
2224 Lex.Lex();
2225 } else {
2226 LocTy TypeLoc = Lex.getLoc();
Craig Topper2617dcc2014-04-15 06:32:26 +00002227 Type *ArgTy = nullptr;
Bill Wendling50d27842012-10-15 20:35:56 +00002228 AttrBuilder Attrs;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002229 std::string Name;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002230
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002231 if (ParseType(ArgTy) ||
Bill Wendling34c2eb22012-12-04 23:40:58 +00002232 ParseOptionalParamAttrs(Attrs)) return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002233
Chris Lattnerfdd87902009-10-05 05:54:46 +00002234 if (ArgTy->isVoidTy())
Chris Lattnerf880ca22009-03-09 04:49:14 +00002235 return Error(TypeLoc, "argument can not have void type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002236
Chris Lattnerdef19492011-06-17 06:36:20 +00002237 if (Lex.getKind() == lltok::LocalVar) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002238 Name = Lex.getStrVal();
2239 Lex.Lex();
2240 }
Chris Lattner3822f632009-01-02 08:05:26 +00002241
Nick Lewycky0aa6a742009-06-07 07:26:46 +00002242 if (!FunctionType::isValidArgumentType(ArgTy))
Chris Lattner3822f632009-01-02 08:05:26 +00002243 return Error(TypeLoc, "invalid type for function argument");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002244
Bill Wendlingfe0021a2013-01-31 00:29:54 +00002245 unsigned AttrIndex = 1;
Benjamin Kramerf5e2fc42015-05-29 19:43:39 +00002246 ArgList.emplace_back(TypeLoc, ArgTy, AttributeSet::get(ArgTy->getContext(),
2247 AttrIndex++, Attrs),
2248 std::move(Name));
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002249
Chris Lattner3822f632009-01-02 08:05:26 +00002250 while (EatIfPresent(lltok::comma)) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002251 // Handle ... at end of arg list.
Chris Lattner3822f632009-01-02 08:05:26 +00002252 if (EatIfPresent(lltok::dotdotdot)) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002253 isVarArg = true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002254 break;
2255 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002256
Chris Lattnerac161bf2009-01-02 07:01:27 +00002257 // Otherwise must be an argument type.
2258 TypeLoc = Lex.getLoc();
Bill Wendling34c2eb22012-12-04 23:40:58 +00002259 if (ParseType(ArgTy) || ParseOptionalParamAttrs(Attrs)) return true;
Chris Lattner3822f632009-01-02 08:05:26 +00002260
Chris Lattnerfdd87902009-10-05 05:54:46 +00002261 if (ArgTy->isVoidTy())
Chris Lattnerf880ca22009-03-09 04:49:14 +00002262 return Error(TypeLoc, "argument can not have void type");
2263
Chris Lattnerdef19492011-06-17 06:36:20 +00002264 if (Lex.getKind() == lltok::LocalVar) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002265 Name = Lex.getStrVal();
2266 Lex.Lex();
2267 } else {
2268 Name = "";
2269 }
Chris Lattner3822f632009-01-02 08:05:26 +00002270
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002271 if (!ArgTy->isFirstClassType())
Chris Lattner3822f632009-01-02 08:05:26 +00002272 return Error(TypeLoc, "invalid type for function argument");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002273
Benjamin Kramerf5e2fc42015-05-29 19:43:39 +00002274 ArgList.emplace_back(
2275 TypeLoc, ArgTy,
2276 AttributeSet::get(ArgTy->getContext(), AttrIndex++, Attrs),
2277 std::move(Name));
Chris Lattnerac161bf2009-01-02 07:01:27 +00002278 }
2279 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002280
Chris Lattner3822f632009-01-02 08:05:26 +00002281 return ParseToken(lltok::rparen, "expected ')' at end of argument list");
Chris Lattnerac161bf2009-01-02 07:01:27 +00002282}
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002283
Chris Lattnerac161bf2009-01-02 07:01:27 +00002284/// ParseFunctionType
2285/// ::= Type ArgumentList OptionalAttrs
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002286bool LLParser::ParseFunctionType(Type *&Result) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002287 assert(Lex.getKind() == lltok::lparen);
2288
Chris Lattnerce473c72009-01-05 08:04:33 +00002289 if (!FunctionType::isValidReturnType(Result))
2290 return TokError("invalid function return type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002291
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002292 SmallVector<ArgInfo, 8> ArgList;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002293 bool isVarArg;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002294 if (ParseArgumentList(ArgList, isVarArg))
Chris Lattnerac161bf2009-01-02 07:01:27 +00002295 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002296
Chris Lattnerac161bf2009-01-02 07:01:27 +00002297 // Reject names on the arguments lists.
2298 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
2299 if (!ArgList[i].Name.empty())
2300 return Error(ArgList[i].Loc, "argument name invalid in function type");
Bill Wendlingfe0021a2013-01-31 00:29:54 +00002301 if (ArgList[i].Attrs.hasAttributes(i + 1))
Chris Lattner6bc5c892011-06-17 17:37:13 +00002302 return Error(ArgList[i].Loc,
2303 "argument attributes invalid in function type");
Chris Lattnerac161bf2009-01-02 07:01:27 +00002304 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002305
Jay Foadb804a2b2011-07-12 14:06:48 +00002306 SmallVector<Type*, 16> ArgListTy;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002307 for (unsigned i = 0, e = ArgList.size(); i != e; ++i)
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002308 ArgListTy.push_back(ArgList[i].Ty);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002309
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002310 Result = FunctionType::get(Result, ArgListTy, isVarArg);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002311 return false;
2312}
2313
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002314/// ParseAnonStructType - Parse an anonymous struct type, which is inlined into
2315/// other structs.
2316bool LLParser::ParseAnonStructType(Type *&Result, bool Packed) {
2317 SmallVector<Type*, 8> Elts;
2318 if (ParseStructBody(Elts)) return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002319
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002320 Result = StructType::get(Context, Elts, Packed);
2321 return false;
2322}
2323
2324/// ParseStructDefinition - Parse a struct in a 'type' definition.
2325bool LLParser::ParseStructDefinition(SMLoc TypeLoc, StringRef Name,
2326 std::pair<Type*, LocTy> &Entry,
2327 Type *&ResultTy) {
2328 // If the type was already defined, diagnose the redefinition.
2329 if (Entry.first && !Entry.second.isValid())
2330 return Error(TypeLoc, "redefinition of type");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002331
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002332 // If we have opaque, just return without filling in the definition for the
2333 // struct. This counts as a definition as far as the .ll file goes.
2334 if (EatIfPresent(lltok::kw_opaque)) {
2335 // This type is being defined, so clear the location to indicate this.
2336 Entry.second = SMLoc();
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002337
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002338 // If this type number has never been uttered, create it.
Craig Topper2617dcc2014-04-15 06:32:26 +00002339 if (!Entry.first)
Chris Lattner335d3992011-08-12 18:06:37 +00002340 Entry.first = StructType::create(Context, Name);
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002341 ResultTy = Entry.first;
2342 return false;
2343 }
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002344
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002345 // If the type starts with '<', then it is either a packed struct or a vector.
2346 bool isPacked = EatIfPresent(lltok::less);
2347
2348 // If we don't have a struct, then we have a random type alias, which we
2349 // accept for compatibility with old files. These types are not allowed to be
2350 // forward referenced and not allowed to be recursive.
2351 if (Lex.getKind() != lltok::lbrace) {
2352 if (Entry.first)
2353 return Error(TypeLoc, "forward references to non-struct type");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002354
Craig Topper2617dcc2014-04-15 06:32:26 +00002355 ResultTy = nullptr;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002356 if (isPacked)
2357 return ParseArrayVectorType(ResultTy, true);
2358 return ParseType(ResultTy);
2359 }
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002360
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002361 // This type is being defined, so clear the location to indicate this.
2362 Entry.second = SMLoc();
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002363
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002364 // If this type number has never been uttered, create it.
Craig Topper2617dcc2014-04-15 06:32:26 +00002365 if (!Entry.first)
Chris Lattner335d3992011-08-12 18:06:37 +00002366 Entry.first = StructType::create(Context, Name);
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002367
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002368 StructType *STy = cast<StructType>(Entry.first);
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002369
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002370 SmallVector<Type*, 8> Body;
2371 if (ParseStructBody(Body) ||
2372 (isPacked && ParseToken(lltok::greater, "expected '>' in packed struct")))
2373 return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002374
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002375 STy->setBody(Body, isPacked);
2376 ResultTy = STy;
2377 return false;
2378}
2379
Chris Lattnerac161bf2009-01-02 07:01:27 +00002380/// ParseStructType: Handles packed and unpacked types. </> parsed elsewhere.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002381/// StructType
Chris Lattnerac161bf2009-01-02 07:01:27 +00002382/// ::= '{' '}'
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002383/// ::= '{' Type (',' Type)* '}'
Chris Lattnerac161bf2009-01-02 07:01:27 +00002384/// ::= '<' '{' '}' '>'
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002385/// ::= '<' '{' Type (',' Type)* '}' '>'
2386bool LLParser::ParseStructBody(SmallVectorImpl<Type*> &Body) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002387 assert(Lex.getKind() == lltok::lbrace);
2388 Lex.Lex(); // Consume the '{'
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002389
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002390 // Handle the empty struct.
2391 if (EatIfPresent(lltok::rbrace))
Chris Lattnerac161bf2009-01-02 07:01:27 +00002392 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002393
Chris Lattnerf880ca22009-03-09 04:49:14 +00002394 LocTy EltTyLoc = Lex.getLoc();
Craig Topper2617dcc2014-04-15 06:32:26 +00002395 Type *Ty = nullptr;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002396 if (ParseType(Ty)) return true;
2397 Body.push_back(Ty);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002398
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002399 if (!StructType::isValidElementType(Ty))
Nick Lewycky0aa6a742009-06-07 07:26:46 +00002400 return Error(EltTyLoc, "invalid element type for struct");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002401
Chris Lattner3822f632009-01-02 08:05:26 +00002402 while (EatIfPresent(lltok::comma)) {
Chris Lattnerf880ca22009-03-09 04:49:14 +00002403 EltTyLoc = Lex.getLoc();
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002404 if (ParseType(Ty)) return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002405
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002406 if (!StructType::isValidElementType(Ty))
Nick Lewycky0aa6a742009-06-07 07:26:46 +00002407 return Error(EltTyLoc, "invalid element type for struct");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002408
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002409 Body.push_back(Ty);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002410 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002411
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002412 return ParseToken(lltok::rbrace, "expected '}' at end of struct");
Chris Lattnerac161bf2009-01-02 07:01:27 +00002413}
2414
2415/// ParseArrayVectorType - Parse an array or vector type, assuming the first
2416/// token has already been consumed.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002417/// Type
Chris Lattnerac161bf2009-01-02 07:01:27 +00002418/// ::= '[' APSINTVAL 'x' Types ']'
2419/// ::= '<' APSINTVAL 'x' Types '>'
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002420bool LLParser::ParseArrayVectorType(Type *&Result, bool isVector) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002421 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned() ||
2422 Lex.getAPSIntVal().getBitWidth() > 64)
2423 return TokError("expected number in address space");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002424
Chris Lattnerac161bf2009-01-02 07:01:27 +00002425 LocTy SizeLoc = Lex.getLoc();
2426 uint64_t Size = Lex.getAPSIntVal().getZExtValue();
Chris Lattner3822f632009-01-02 08:05:26 +00002427 Lex.Lex();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002428
Chris Lattner3822f632009-01-02 08:05:26 +00002429 if (ParseToken(lltok::kw_x, "expected 'x' after element count"))
2430 return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002431
2432 LocTy TypeLoc = Lex.getLoc();
Craig Topper2617dcc2014-04-15 06:32:26 +00002433 Type *EltTy = nullptr;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002434 if (ParseType(EltTy)) return true;
Chris Lattnerf880ca22009-03-09 04:49:14 +00002435
Chris Lattner3822f632009-01-02 08:05:26 +00002436 if (ParseToken(isVector ? lltok::greater : lltok::rsquare,
2437 "expected end of sequential type"))
2438 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002439
Chris Lattnerac161bf2009-01-02 07:01:27 +00002440 if (isVector) {
Chris Lattnerbb1fe8a2009-02-28 18:12:41 +00002441 if (Size == 0)
2442 return Error(SizeLoc, "zero element vector is illegal");
Chris Lattnerac161bf2009-01-02 07:01:27 +00002443 if ((unsigned)Size != Size)
2444 return Error(SizeLoc, "size too large for vector");
Nick Lewycky0aa6a742009-06-07 07:26:46 +00002445 if (!VectorType::isValidElementType(EltTy))
Duncan Sandse6beec62012-11-13 12:59:33 +00002446 return Error(TypeLoc, "invalid vector element type");
Owen Anderson4056ca92009-07-29 22:17:13 +00002447 Result = VectorType::get(EltTy, unsigned(Size));
Chris Lattnerac161bf2009-01-02 07:01:27 +00002448 } else {
Nick Lewycky0aa6a742009-06-07 07:26:46 +00002449 if (!ArrayType::isValidElementType(EltTy))
Chris Lattnerac161bf2009-01-02 07:01:27 +00002450 return Error(TypeLoc, "invalid array element type");
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002451 Result = ArrayType::get(EltTy, Size);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002452 }
2453 return false;
2454}
2455
2456//===----------------------------------------------------------------------===//
2457// Function Semantic Analysis.
2458//===----------------------------------------------------------------------===//
2459
Chris Lattner3432c622009-10-28 03:39:23 +00002460LLParser::PerFunctionState::PerFunctionState(LLParser &p, Function &f,
2461 int functionNumber)
2462 : P(p), F(f), FunctionNumber(functionNumber) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002463
2464 // Insert unnamed arguments into the NumberedVals list.
Duncan P. N. Exon Smithac331fb2015-10-20 01:12:49 +00002465 for (Argument &A : F.args())
2466 if (!A.hasName())
2467 NumberedVals.push_back(&A);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002468}
2469
2470LLParser::PerFunctionState::~PerFunctionState() {
2471 // If there were any forward referenced non-basicblock values, delete them.
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002472
David Blaikie9ebdc692015-09-21 21:07:50 +00002473 for (const auto &P : ForwardRefVals) {
2474 if (isa<BasicBlock>(P.second.first))
2475 continue;
2476 P.second.first->replaceAllUsesWith(
2477 UndefValue::get(P.second.first->getType()));
2478 delete P.second.first;
2479 }
2480
2481 for (const auto &P : ForwardRefValIDs) {
2482 if (isa<BasicBlock>(P.second.first))
2483 continue;
2484 P.second.first->replaceAllUsesWith(
2485 UndefValue::get(P.second.first->getType()));
2486 delete P.second.first;
2487 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00002488}
2489
Chris Lattner3432c622009-10-28 03:39:23 +00002490bool LLParser::PerFunctionState::FinishFunction() {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002491 if (!ForwardRefVals.empty())
2492 return P.Error(ForwardRefVals.begin()->second.second,
2493 "use of undefined value '%" + ForwardRefVals.begin()->first +
2494 "'");
2495 if (!ForwardRefValIDs.empty())
2496 return P.Error(ForwardRefValIDs.begin()->second.second,
2497 "use of undefined value '%" +
Benjamin Kramerc7583112010-09-27 17:42:11 +00002498 Twine(ForwardRefValIDs.begin()->first) + "'");
Chris Lattnerac161bf2009-01-02 07:01:27 +00002499 return false;
2500}
2501
Chris Lattnerac161bf2009-01-02 07:01:27 +00002502/// GetVal - Get a value with the specified name or ID, creating a
2503/// forward reference record if needed. This can return null if the value
2504/// exists but does not have the right type.
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00002505Value *LLParser::PerFunctionState::GetVal(const std::string &Name, Type *Ty,
David Majnemer8a1c45d2015-12-12 05:38:55 +00002506 LocTy Loc) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002507 // Look this name up in the normal function symbol table.
Mehdi Aminia53d49e2016-09-17 06:00:02 +00002508 Value *Val = F.getValueSymbolTable()->lookup(Name);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002509
Chris Lattnerac161bf2009-01-02 07:01:27 +00002510 // If this is a forward reference for the value, see if we already created a
2511 // forward ref record.
Craig Topper2617dcc2014-04-15 06:32:26 +00002512 if (!Val) {
David Blaikie9ebdc692015-09-21 21:07:50 +00002513 auto I = ForwardRefVals.find(Name);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002514 if (I != ForwardRefVals.end())
2515 Val = I->second.first;
2516 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002517
Chris Lattnerac161bf2009-01-02 07:01:27 +00002518 // If we have the value in the symbol table or fwd-ref table, return it.
2519 if (Val) {
2520 if (Val->getType() == Ty) return Val;
Chris Lattnerfdd87902009-10-05 05:54:46 +00002521 if (Ty->isLabelTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00002522 P.Error(Loc, "'%" + Name + "' is not a basic block");
2523 else
2524 P.Error(Loc, "'%" + Name + "' defined with type '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00002525 getTypeString(Val->getType()) + "'");
Craig Topper2617dcc2014-04-15 06:32:26 +00002526 return nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002527 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002528
Chris Lattnerac161bf2009-01-02 07:01:27 +00002529 // Don't make placeholders with invalid type.
Duncan P. N. Exon Smith6a6e9cb2014-08-05 18:22:58 +00002530 if (!Ty->isFirstClassType()) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002531 P.Error(Loc, "invalid use of a non-first-class type");
Craig Topper2617dcc2014-04-15 06:32:26 +00002532 return nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002533 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002534
Chris Lattnerac161bf2009-01-02 07:01:27 +00002535 // Otherwise, create a new forward reference for this value and remember it.
2536 Value *FwdVal;
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00002537 if (Ty->isLabelTy()) {
Owen Anderson55f1c092009-08-13 21:58:54 +00002538 FwdVal = BasicBlock::Create(F.getContext(), Name, &F);
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00002539 } else {
David Majnemer8a1c45d2015-12-12 05:38:55 +00002540 FwdVal = new Argument(Ty, Name);
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00002541 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002542
Chris Lattnerac161bf2009-01-02 07:01:27 +00002543 ForwardRefVals[Name] = std::make_pair(FwdVal, Loc);
2544 return FwdVal;
2545}
2546
David Majnemer8a1c45d2015-12-12 05:38:55 +00002547Value *LLParser::PerFunctionState::GetVal(unsigned ID, Type *Ty, LocTy Loc) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002548 // Look this name up in the normal function symbol table.
Craig Topper2617dcc2014-04-15 06:32:26 +00002549 Value *Val = ID < NumberedVals.size() ? NumberedVals[ID] : nullptr;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002550
Chris Lattnerac161bf2009-01-02 07:01:27 +00002551 // If this is a forward reference for the value, see if we already created a
2552 // forward ref record.
Craig Topper2617dcc2014-04-15 06:32:26 +00002553 if (!Val) {
David Blaikie9ebdc692015-09-21 21:07:50 +00002554 auto I = ForwardRefValIDs.find(ID);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002555 if (I != ForwardRefValIDs.end())
2556 Val = I->second.first;
2557 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002558
Chris Lattnerac161bf2009-01-02 07:01:27 +00002559 // If we have the value in the symbol table or fwd-ref table, return it.
2560 if (Val) {
2561 if (Val->getType() == Ty) return Val;
Chris Lattnerfdd87902009-10-05 05:54:46 +00002562 if (Ty->isLabelTy())
Benjamin Kramerc7583112010-09-27 17:42:11 +00002563 P.Error(Loc, "'%" + Twine(ID) + "' is not a basic block");
Chris Lattnerac161bf2009-01-02 07:01:27 +00002564 else
Benjamin Kramerc7583112010-09-27 17:42:11 +00002565 P.Error(Loc, "'%" + Twine(ID) + "' defined with type '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00002566 getTypeString(Val->getType()) + "'");
Craig Topper2617dcc2014-04-15 06:32:26 +00002567 return nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002568 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002569
Duncan P. N. Exon Smith6a6e9cb2014-08-05 18:22:58 +00002570 if (!Ty->isFirstClassType()) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002571 P.Error(Loc, "invalid use of a non-first-class type");
Craig Topper2617dcc2014-04-15 06:32:26 +00002572 return nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002573 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002574
Chris Lattnerac161bf2009-01-02 07:01:27 +00002575 // Otherwise, create a new forward reference for this value and remember it.
2576 Value *FwdVal;
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00002577 if (Ty->isLabelTy()) {
Owen Anderson55f1c092009-08-13 21:58:54 +00002578 FwdVal = BasicBlock::Create(F.getContext(), "", &F);
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00002579 } else {
David Majnemer8a1c45d2015-12-12 05:38:55 +00002580 FwdVal = new Argument(Ty);
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00002581 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002582
Chris Lattnerac161bf2009-01-02 07:01:27 +00002583 ForwardRefValIDs[ID] = std::make_pair(FwdVal, Loc);
2584 return FwdVal;
2585}
2586
2587/// SetInstName - After an instruction is parsed and inserted into its
2588/// basic block, this installs its name.
2589bool LLParser::PerFunctionState::SetInstName(int NameID,
2590 const std::string &NameStr,
2591 LocTy NameLoc, Instruction *Inst) {
2592 // If this instruction has void type, it cannot have a name or ID specified.
Chris Lattnerfdd87902009-10-05 05:54:46 +00002593 if (Inst->getType()->isVoidTy()) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002594 if (NameID != -1 || !NameStr.empty())
2595 return P.Error(NameLoc, "instructions returning void cannot have a name");
2596 return false;
2597 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002598
Chris Lattnerac161bf2009-01-02 07:01:27 +00002599 // If this was a numbered instruction, verify that the instruction is the
2600 // expected value and resolve any forward references.
2601 if (NameStr.empty()) {
2602 // If neither a name nor an ID was specified, just use the next ID.
2603 if (NameID == -1)
2604 NameID = NumberedVals.size();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002605
Chris Lattnerac161bf2009-01-02 07:01:27 +00002606 if (unsigned(NameID) != NumberedVals.size())
2607 return P.Error(NameLoc, "instruction expected to be numbered '%" +
Benjamin Kramerc7583112010-09-27 17:42:11 +00002608 Twine(NumberedVals.size()) + "'");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002609
David Blaikie9ebdc692015-09-21 21:07:50 +00002610 auto FI = ForwardRefValIDs.find(NameID);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002611 if (FI != ForwardRefValIDs.end()) {
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00002612 Value *Sentinel = FI->second.first;
2613 if (Sentinel->getType() != Inst->getType())
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002614 return P.Error(NameLoc, "instruction forward referenced with type '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00002615 getTypeString(FI->second.first->getType()) + "'");
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00002616
2617 Sentinel->replaceAllUsesWith(Inst);
2618 delete Sentinel;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002619 ForwardRefValIDs.erase(FI);
2620 }
2621
2622 NumberedVals.push_back(Inst);
2623 return false;
2624 }
2625
2626 // Otherwise, the instruction had a name. Resolve forward refs and set it.
David Blaikie9ebdc692015-09-21 21:07:50 +00002627 auto FI = ForwardRefVals.find(NameStr);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002628 if (FI != ForwardRefVals.end()) {
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00002629 Value *Sentinel = FI->second.first;
2630 if (Sentinel->getType() != Inst->getType())
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002631 return P.Error(NameLoc, "instruction forward referenced with type '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00002632 getTypeString(FI->second.first->getType()) + "'");
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00002633
2634 Sentinel->replaceAllUsesWith(Inst);
2635 delete Sentinel;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002636 ForwardRefVals.erase(FI);
2637 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002638
Chris Lattnerac161bf2009-01-02 07:01:27 +00002639 // Set the name on the instruction.
2640 Inst->setName(NameStr);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002641
Benjamin Kramer1dc34b42010-10-16 11:28:23 +00002642 if (Inst->getName() != NameStr)
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002643 return P.Error(NameLoc, "multiple definition of local value named '" +
Chris Lattnerac161bf2009-01-02 07:01:27 +00002644 NameStr + "'");
2645 return false;
2646}
2647
2648/// GetBB - Get a basic block with the specified name or ID, creating a
2649/// forward reference record if needed.
2650BasicBlock *LLParser::PerFunctionState::GetBB(const std::string &Name,
2651 LocTy Loc) {
Owen Anderson576a9a22015-03-02 05:25:09 +00002652 return dyn_cast_or_null<BasicBlock>(GetVal(Name,
2653 Type::getLabelTy(F.getContext()), Loc));
Chris Lattnerac161bf2009-01-02 07:01:27 +00002654}
2655
2656BasicBlock *LLParser::PerFunctionState::GetBB(unsigned ID, LocTy Loc) {
Owen Anderson576a9a22015-03-02 05:25:09 +00002657 return dyn_cast_or_null<BasicBlock>(GetVal(ID,
2658 Type::getLabelTy(F.getContext()), Loc));
Chris Lattnerac161bf2009-01-02 07:01:27 +00002659}
2660
2661/// DefineBB - Define the specified basic block, which is either named or
2662/// unnamed. If there is an error, this returns null otherwise it returns
2663/// the block being defined.
2664BasicBlock *LLParser::PerFunctionState::DefineBB(const std::string &Name,
2665 LocTy Loc) {
2666 BasicBlock *BB;
2667 if (Name.empty())
2668 BB = GetBB(NumberedVals.size(), Loc);
2669 else
2670 BB = GetBB(Name, Loc);
Craig Topper2617dcc2014-04-15 06:32:26 +00002671 if (!BB) return nullptr; // Already diagnosed error.
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002672
Chris Lattnerac161bf2009-01-02 07:01:27 +00002673 // Move the block to the end of the function. Forward ref'd blocks are
2674 // inserted wherever they happen to be referenced.
2675 F.getBasicBlockList().splice(F.end(), F.getBasicBlockList(), BB);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002676
Chris Lattnerac161bf2009-01-02 07:01:27 +00002677 // Remove the block from forward ref sets.
2678 if (Name.empty()) {
2679 ForwardRefValIDs.erase(NumberedVals.size());
2680 NumberedVals.push_back(BB);
2681 } else {
2682 // BB forward references are already in the function symbol table.
2683 ForwardRefVals.erase(Name);
2684 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002685
Chris Lattnerac161bf2009-01-02 07:01:27 +00002686 return BB;
2687}
2688
2689//===----------------------------------------------------------------------===//
2690// Constants.
2691//===----------------------------------------------------------------------===//
2692
2693/// ParseValID - Parse an abstract value that doesn't necessarily have a
2694/// type implied. For example, if we parse "4" we don't know what integer type
2695/// it has. The value will later be combined with its type and checked for
Victor Hernandezb8fd1522010-01-10 07:14:18 +00002696/// sanity. PFS is used to convert function-local operands of metadata (since
2697/// metadata operands are not just parsed here but also converted to values).
2698/// PFS can be null when we are not parsing metadata values inside a function.
Victor Hernandezdc6e65a2010-01-05 22:22:14 +00002699bool LLParser::ParseValID(ValID &ID, PerFunctionState *PFS) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002700 ID.Loc = Lex.getLoc();
2701 switch (Lex.getKind()) {
2702 default: return TokError("expected value token");
2703 case lltok::GlobalID: // @42
2704 ID.UIntVal = Lex.getUIntVal();
2705 ID.Kind = ValID::t_GlobalID;
2706 break;
2707 case lltok::GlobalVar: // @foo
2708 ID.StrVal = Lex.getStrVal();
2709 ID.Kind = ValID::t_GlobalName;
2710 break;
2711 case lltok::LocalVarID: // %42
2712 ID.UIntVal = Lex.getUIntVal();
2713 ID.Kind = ValID::t_LocalID;
2714 break;
2715 case lltok::LocalVar: // %foo
Chris Lattnerac161bf2009-01-02 07:01:27 +00002716 ID.StrVal = Lex.getStrVal();
2717 ID.Kind = ValID::t_LocalName;
2718 break;
2719 case lltok::APSInt:
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002720 ID.APSIntVal = Lex.getAPSIntVal();
Chris Lattnerac161bf2009-01-02 07:01:27 +00002721 ID.Kind = ValID::t_APSInt;
2722 break;
2723 case lltok::APFloat:
2724 ID.APFloatVal = Lex.getAPFloatVal();
2725 ID.Kind = ValID::t_APFloat;
2726 break;
2727 case lltok::kw_true:
Owen Anderson23a204d2009-07-31 17:39:07 +00002728 ID.ConstantVal = ConstantInt::getTrue(Context);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002729 ID.Kind = ValID::t_Constant;
2730 break;
2731 case lltok::kw_false:
Owen Anderson23a204d2009-07-31 17:39:07 +00002732 ID.ConstantVal = ConstantInt::getFalse(Context);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002733 ID.Kind = ValID::t_Constant;
2734 break;
2735 case lltok::kw_null: ID.Kind = ValID::t_Null; break;
2736 case lltok::kw_undef: ID.Kind = ValID::t_Undef; break;
2737 case lltok::kw_zeroinitializer: ID.Kind = ValID::t_Zero; break;
David Majnemerf0f224d2015-11-11 21:57:16 +00002738 case lltok::kw_none: ID.Kind = ValID::t_None; break;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002739
Chris Lattnerac161bf2009-01-02 07:01:27 +00002740 case lltok::lbrace: {
2741 // ValID ::= '{' ConstVector '}'
2742 Lex.Lex();
2743 SmallVector<Constant*, 16> Elts;
2744 if (ParseGlobalValueVector(Elts) ||
2745 ParseToken(lltok::rbrace, "expected end of struct constant"))
2746 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002747
David Blaikieadbda4b2015-08-03 20:08:41 +00002748 ID.ConstantStructElts = make_unique<Constant *[]>(Elts.size());
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002749 ID.UIntVal = Elts.size();
David Blaikieadbda4b2015-08-03 20:08:41 +00002750 memcpy(ID.ConstantStructElts.get(), Elts.data(),
2751 Elts.size() * sizeof(Elts[0]));
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002752 ID.Kind = ValID::t_ConstantStruct;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002753 return false;
2754 }
2755 case lltok::less: {
2756 // ValID ::= '<' ConstVector '>' --> Vector.
2757 // ValID ::= '<' '{' ConstVector '}' '>' --> Packed Struct.
2758 Lex.Lex();
Chris Lattner3822f632009-01-02 08:05:26 +00002759 bool isPackedStruct = EatIfPresent(lltok::lbrace);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002760
Chris Lattnerac161bf2009-01-02 07:01:27 +00002761 SmallVector<Constant*, 16> Elts;
2762 LocTy FirstEltLoc = Lex.getLoc();
2763 if (ParseGlobalValueVector(Elts) ||
2764 (isPackedStruct &&
2765 ParseToken(lltok::rbrace, "expected end of packed struct")) ||
2766 ParseToken(lltok::greater, "expected end of constant"))
2767 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002768
Chris Lattnerac161bf2009-01-02 07:01:27 +00002769 if (isPackedStruct) {
David Blaikieadbda4b2015-08-03 20:08:41 +00002770 ID.ConstantStructElts = make_unique<Constant *[]>(Elts.size());
2771 memcpy(ID.ConstantStructElts.get(), Elts.data(),
2772 Elts.size() * sizeof(Elts[0]));
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002773 ID.UIntVal = Elts.size();
2774 ID.Kind = ValID::t_PackedConstantStruct;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002775 return false;
2776 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002777
Chris Lattnerac161bf2009-01-02 07:01:27 +00002778 if (Elts.empty())
2779 return Error(ID.Loc, "constant vector must not be empty");
2780
Duncan Sands9dff9be2010-02-15 16:12:20 +00002781 if (!Elts[0]->getType()->isIntegerTy() &&
Nadav Rotem3924cb02011-12-05 06:29:09 +00002782 !Elts[0]->getType()->isFloatingPointTy() &&
2783 !Elts[0]->getType()->isPointerTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00002784 return Error(FirstEltLoc,
Nadav Rotem3924cb02011-12-05 06:29:09 +00002785 "vector elements must have integer, pointer or floating point type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002786
Chris Lattnerac161bf2009-01-02 07:01:27 +00002787 // Verify that all the vector elements have the same type.
2788 for (unsigned i = 1, e = Elts.size(); i != e; ++i)
2789 if (Elts[i]->getType() != Elts[0]->getType())
2790 return Error(FirstEltLoc,
Benjamin Kramerc7583112010-09-27 17:42:11 +00002791 "vector element #" + Twine(i) +
Chris Lattner0f214eb2011-06-18 21:18:23 +00002792 " is not of type '" + getTypeString(Elts[0]->getType()));
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002793
Chris Lattner69229312011-02-15 00:14:00 +00002794 ID.ConstantVal = ConstantVector::get(Elts);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002795 ID.Kind = ValID::t_Constant;
2796 return false;
2797 }
2798 case lltok::lsquare: { // Array Constant
2799 Lex.Lex();
2800 SmallVector<Constant*, 16> Elts;
2801 LocTy FirstEltLoc = Lex.getLoc();
2802 if (ParseGlobalValueVector(Elts) ||
2803 ParseToken(lltok::rsquare, "expected end of array constant"))
2804 return true;
2805
2806 // Handle empty element.
2807 if (Elts.empty()) {
2808 // Use undef instead of an array because it's inconvenient to determine
2809 // the element type at this point, there being no elements to examine.
Chris Lattner998fa0a2009-01-05 07:52:51 +00002810 ID.Kind = ValID::t_EmptyArray;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002811 return false;
2812 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002813
Chris Lattnerac161bf2009-01-02 07:01:27 +00002814 if (!Elts[0]->getType()->isFirstClassType())
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002815 return Error(FirstEltLoc, "invalid array element type: " +
Chris Lattner0f214eb2011-06-18 21:18:23 +00002816 getTypeString(Elts[0]->getType()));
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002817
Owen Anderson4056ca92009-07-29 22:17:13 +00002818 ArrayType *ATy = ArrayType::get(Elts[0]->getType(), Elts.size());
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002819
Chris Lattnerac161bf2009-01-02 07:01:27 +00002820 // Verify all elements are correct type!
Chris Lattner59d0e3b2009-01-02 08:49:06 +00002821 for (unsigned i = 0, e = Elts.size(); i != e; ++i) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002822 if (Elts[i]->getType() != Elts[0]->getType())
2823 return Error(FirstEltLoc,
Benjamin Kramerc7583112010-09-27 17:42:11 +00002824 "array element #" + Twine(i) +
Chris Lattner0f214eb2011-06-18 21:18:23 +00002825 " is not of type '" + getTypeString(Elts[0]->getType()));
Chris Lattnerac161bf2009-01-02 07:01:27 +00002826 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002827
Jay Foad83be3612011-06-22 09:24:39 +00002828 ID.ConstantVal = ConstantArray::get(ATy, Elts);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002829 ID.Kind = ValID::t_Constant;
2830 return false;
2831 }
2832 case lltok::kw_c: // c "foo"
2833 Lex.Lex();
Chris Lattnercf9e8f62012-02-05 02:29:43 +00002834 ID.ConstantVal = ConstantDataArray::getString(Context, Lex.getStrVal(),
2835 false);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002836 if (ParseToken(lltok::StringConstant, "expected string")) return true;
2837 ID.Kind = ValID::t_Constant;
2838 return false;
2839
2840 case lltok::kw_asm: {
Chad Rosier6f9c3852013-02-14 20:44:07 +00002841 // ValID ::= 'asm' SideEffect? AlignStack? IntelDialect? STRINGCONSTANT ','
2842 // STRINGCONSTANT
Chad Rosierd8c76102012-09-05 19:00:49 +00002843 bool HasSideEffect, AlignStack, AsmDialect;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002844 Lex.Lex();
2845 if (ParseOptionalToken(lltok::kw_sideeffect, HasSideEffect) ||
Dale Johannesen1cfb9582009-10-21 23:28:00 +00002846 ParseOptionalToken(lltok::kw_alignstack, AlignStack) ||
Chad Rosierd8c76102012-09-05 19:00:49 +00002847 ParseOptionalToken(lltok::kw_inteldialect, AsmDialect) ||
Chris Lattner3822f632009-01-02 08:05:26 +00002848 ParseStringConstant(ID.StrVal) ||
2849 ParseToken(lltok::comma, "expected comma in inline asm expression") ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00002850 ParseToken(lltok::StringConstant, "expected constraint string"))
2851 return true;
2852 ID.StrVal2 = Lex.getStrVal();
Chad Rosierf42fad62012-09-05 00:08:17 +00002853 ID.UIntVal = unsigned(HasSideEffect) | (unsigned(AlignStack)<<1) |
Chad Rosierd8c76102012-09-05 19:00:49 +00002854 (unsigned(AsmDialect)<<2);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002855 ID.Kind = ValID::t_InlineAsm;
2856 return false;
2857 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002858
Chris Lattner3432c622009-10-28 03:39:23 +00002859 case lltok::kw_blockaddress: {
2860 // ValID ::= 'blockaddress' '(' @foo ',' %bar ')'
2861 Lex.Lex();
2862
2863 ValID Fn, Label;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002864
Chris Lattner3432c622009-10-28 03:39:23 +00002865 if (ParseToken(lltok::lparen, "expected '(' in block address expression") ||
2866 ParseValID(Fn) ||
2867 ParseToken(lltok::comma, "expected comma in block address expression")||
2868 ParseValID(Label) ||
2869 ParseToken(lltok::rparen, "expected ')' in block address expression"))
2870 return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002871
Chris Lattner3432c622009-10-28 03:39:23 +00002872 if (Fn.Kind != ValID::t_GlobalID && Fn.Kind != ValID::t_GlobalName)
2873 return Error(Fn.Loc, "expected function name in blockaddress");
Chris Lattneraa99c942009-11-01 01:27:45 +00002874 if (Label.Kind != ValID::t_LocalID && Label.Kind != ValID::t_LocalName)
Chris Lattner3432c622009-10-28 03:39:23 +00002875 return Error(Label.Loc, "expected basic block name in blockaddress");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002876
Duncan P. N. Exon Smith17169902014-08-19 00:13:19 +00002877 // Try to find the function (but skip it if it's forward-referenced).
2878 GlobalValue *GV = nullptr;
2879 if (Fn.Kind == ValID::t_GlobalID) {
2880 if (Fn.UIntVal < NumberedVals.size())
2881 GV = NumberedVals[Fn.UIntVal];
2882 } else if (!ForwardRefVals.count(Fn.StrVal)) {
2883 GV = M->getNamedValue(Fn.StrVal);
2884 }
2885 Function *F = nullptr;
2886 if (GV) {
2887 // Confirm that it's actually a function with a definition.
2888 if (!isa<Function>(GV))
2889 return Error(Fn.Loc, "expected function name in blockaddress");
2890 F = cast<Function>(GV);
2891 if (F->isDeclaration())
2892 return Error(Fn.Loc, "cannot take blockaddress inside a declaration");
2893 }
2894
2895 if (!F) {
2896 // Make a global variable as a placeholder for this reference.
David Blaikieb9cc6592015-03-04 01:40:07 +00002897 GlobalValue *&FwdRef =
David Blaikie871b4112015-08-03 20:55:00 +00002898 ForwardRefBlockAddresses.insert(std::make_pair(
2899 std::move(Fn),
2900 std::map<ValID, GlobalValue *>()))
David Blaikieb9cc6592015-03-04 01:40:07 +00002901 .first->second.insert(std::make_pair(std::move(Label), nullptr))
2902 .first->second;
Duncan P. N. Exon Smith17169902014-08-19 00:13:19 +00002903 if (!FwdRef)
2904 FwdRef = new GlobalVariable(*M, Type::getInt8Ty(Context), false,
2905 GlobalValue::InternalLinkage, nullptr, "");
2906 ID.ConstantVal = FwdRef;
2907 ID.Kind = ValID::t_Constant;
2908 return false;
2909 }
2910
2911 // We found the function; now find the basic block. Don't use PFS, since we
2912 // might be inside a constant expression.
2913 BasicBlock *BB;
2914 if (BlockAddressPFS && F == &BlockAddressPFS->getFunction()) {
2915 if (Label.Kind == ValID::t_LocalID)
2916 BB = BlockAddressPFS->GetBB(Label.UIntVal, Label.Loc);
2917 else
2918 BB = BlockAddressPFS->GetBB(Label.StrVal, Label.Loc);
2919 if (!BB)
2920 return Error(Label.Loc, "referenced value is not a basic block");
2921 } else {
2922 if (Label.Kind == ValID::t_LocalID)
2923 return Error(Label.Loc, "cannot take address of numeric label after "
2924 "the function is defined");
2925 BB = dyn_cast_or_null<BasicBlock>(
Mehdi Aminia53d49e2016-09-17 06:00:02 +00002926 F->getValueSymbolTable()->lookup(Label.StrVal));
Duncan P. N. Exon Smith17169902014-08-19 00:13:19 +00002927 if (!BB)
2928 return Error(Label.Loc, "referenced value is not a basic block");
2929 }
2930
2931 ID.ConstantVal = BlockAddress::get(F, BB);
Chris Lattner3432c622009-10-28 03:39:23 +00002932 ID.Kind = ValID::t_Constant;
2933 return false;
2934 }
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002935
Chris Lattnerac161bf2009-01-02 07:01:27 +00002936 case lltok::kw_trunc:
2937 case lltok::kw_zext:
2938 case lltok::kw_sext:
2939 case lltok::kw_fptrunc:
2940 case lltok::kw_fpext:
2941 case lltok::kw_bitcast:
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002942 case lltok::kw_addrspacecast:
Chris Lattnerac161bf2009-01-02 07:01:27 +00002943 case lltok::kw_uitofp:
2944 case lltok::kw_sitofp:
2945 case lltok::kw_fptoui:
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002946 case lltok::kw_fptosi:
Chris Lattnerac161bf2009-01-02 07:01:27 +00002947 case lltok::kw_inttoptr:
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002948 case lltok::kw_ptrtoint: {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002949 unsigned Opc = Lex.getUIntVal();
Craig Topper2617dcc2014-04-15 06:32:26 +00002950 Type *DestTy = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002951 Constant *SrcVal;
2952 Lex.Lex();
2953 if (ParseToken(lltok::lparen, "expected '(' after constantexpr cast") ||
2954 ParseGlobalTypeAndValue(SrcVal) ||
Dan Gohman0b5d0422009-06-15 21:52:11 +00002955 ParseToken(lltok::kw_to, "expected 'to' in constantexpr cast") ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00002956 ParseType(DestTy) ||
2957 ParseToken(lltok::rparen, "expected ')' at end of constantexpr cast"))
2958 return true;
2959 if (!CastInst::castIsValid((Instruction::CastOps)Opc, SrcVal, DestTy))
2960 return Error(ID.Loc, "invalid cast opcode for cast from '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00002961 getTypeString(SrcVal->getType()) + "' to '" +
2962 getTypeString(DestTy) + "'");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002963 ID.ConstantVal = ConstantExpr::getCast((Instruction::CastOps)Opc,
Owen Anderson02a9da32009-07-01 23:57:11 +00002964 SrcVal, DestTy);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002965 ID.Kind = ValID::t_Constant;
2966 return false;
2967 }
2968 case lltok::kw_extractvalue: {
2969 Lex.Lex();
2970 Constant *Val;
2971 SmallVector<unsigned, 4> Indices;
2972 if (ParseToken(lltok::lparen, "expected '(' in extractvalue constantexpr")||
2973 ParseGlobalTypeAndValue(Val) ||
2974 ParseIndexList(Indices) ||
2975 ParseToken(lltok::rparen, "expected ')' in extractvalue constantexpr"))
2976 return true;
Devang Patel1cb51162009-11-03 19:06:07 +00002977
Chris Lattner392be582010-02-12 20:49:41 +00002978 if (!Val->getType()->isAggregateType())
2979 return Error(ID.Loc, "extractvalue operand must be aggregate type");
Jay Foad57aa6362011-07-13 10:26:04 +00002980 if (!ExtractValueInst::getIndexedType(Val->getType(), Indices))
Chris Lattnerac161bf2009-01-02 07:01:27 +00002981 return Error(ID.Loc, "invalid indices for extractvalue");
Jay Foad57aa6362011-07-13 10:26:04 +00002982 ID.ConstantVal = ConstantExpr::getExtractValue(Val, Indices);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002983 ID.Kind = ValID::t_Constant;
2984 return false;
2985 }
2986 case lltok::kw_insertvalue: {
2987 Lex.Lex();
2988 Constant *Val0, *Val1;
2989 SmallVector<unsigned, 4> Indices;
2990 if (ParseToken(lltok::lparen, "expected '(' in insertvalue constantexpr")||
2991 ParseGlobalTypeAndValue(Val0) ||
2992 ParseToken(lltok::comma, "expected comma in insertvalue constantexpr")||
2993 ParseGlobalTypeAndValue(Val1) ||
2994 ParseIndexList(Indices) ||
2995 ParseToken(lltok::rparen, "expected ')' in insertvalue constantexpr"))
2996 return true;
Chris Lattner392be582010-02-12 20:49:41 +00002997 if (!Val0->getType()->isAggregateType())
2998 return Error(ID.Loc, "insertvalue operand must be aggregate type");
David Majnemereba692d2015-02-23 07:13:52 +00002999 Type *IndexedType =
3000 ExtractValueInst::getIndexedType(Val0->getType(), Indices);
3001 if (!IndexedType)
Chris Lattnerac161bf2009-01-02 07:01:27 +00003002 return Error(ID.Loc, "invalid indices for insertvalue");
David Majnemereba692d2015-02-23 07:13:52 +00003003 if (IndexedType != Val1->getType())
3004 return Error(ID.Loc, "insertvalue operand and field disagree in type: '" +
3005 getTypeString(Val1->getType()) +
3006 "' instead of '" + getTypeString(IndexedType) +
3007 "'");
Jay Foad57aa6362011-07-13 10:26:04 +00003008 ID.ConstantVal = ConstantExpr::getInsertValue(Val0, Val1, Indices);
Chris Lattnerac161bf2009-01-02 07:01:27 +00003009 ID.Kind = ValID::t_Constant;
3010 return false;
3011 }
3012 case lltok::kw_icmp:
Nick Lewyckya21d3da2009-07-08 03:04:38 +00003013 case lltok::kw_fcmp: {
Chris Lattnerac161bf2009-01-02 07:01:27 +00003014 unsigned PredVal, Opc = Lex.getUIntVal();
3015 Constant *Val0, *Val1;
3016 Lex.Lex();
3017 if (ParseCmpPredicate(PredVal, Opc) ||
3018 ParseToken(lltok::lparen, "expected '(' in compare constantexpr") ||
3019 ParseGlobalTypeAndValue(Val0) ||
3020 ParseToken(lltok::comma, "expected comma in compare constantexpr") ||
3021 ParseGlobalTypeAndValue(Val1) ||
3022 ParseToken(lltok::rparen, "expected ')' in compare constantexpr"))
3023 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003024
Chris Lattnerac161bf2009-01-02 07:01:27 +00003025 if (Val0->getType() != Val1->getType())
3026 return Error(ID.Loc, "compare operands must have the same type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003027
Chris Lattnerac161bf2009-01-02 07:01:27 +00003028 CmpInst::Predicate Pred = (CmpInst::Predicate)PredVal;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003029
Chris Lattnerac161bf2009-01-02 07:01:27 +00003030 if (Opc == Instruction::FCmp) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00003031 if (!Val0->getType()->isFPOrFPVectorTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00003032 return Error(ID.Loc, "fcmp requires floating point operands");
Owen Anderson487375e2009-07-29 18:55:55 +00003033 ID.ConstantVal = ConstantExpr::getFCmp(Pred, Val0, Val1);
Nick Lewyckya21d3da2009-07-08 03:04:38 +00003034 } else {
3035 assert(Opc == Instruction::ICmp && "Unexpected opcode for CmpInst!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00003036 if (!Val0->getType()->isIntOrIntVectorTy() &&
Nadav Rotem3924cb02011-12-05 06:29:09 +00003037 !Val0->getType()->getScalarType()->isPointerTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00003038 return Error(ID.Loc, "icmp requires pointer or integer operands");
Owen Anderson487375e2009-07-29 18:55:55 +00003039 ID.ConstantVal = ConstantExpr::getICmp(Pred, Val0, Val1);
Chris Lattnerac161bf2009-01-02 07:01:27 +00003040 }
3041 ID.Kind = ValID::t_Constant;
3042 return false;
3043 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003044
Chris Lattnerac161bf2009-01-02 07:01:27 +00003045 // Binary Operators.
3046 case lltok::kw_add:
Dan Gohmana5b96452009-06-04 22:49:04 +00003047 case lltok::kw_fadd:
Chris Lattnerac161bf2009-01-02 07:01:27 +00003048 case lltok::kw_sub:
Dan Gohmana5b96452009-06-04 22:49:04 +00003049 case lltok::kw_fsub:
Chris Lattnerac161bf2009-01-02 07:01:27 +00003050 case lltok::kw_mul:
Dan Gohmana5b96452009-06-04 22:49:04 +00003051 case lltok::kw_fmul:
Chris Lattnerac161bf2009-01-02 07:01:27 +00003052 case lltok::kw_udiv:
3053 case lltok::kw_sdiv:
3054 case lltok::kw_fdiv:
3055 case lltok::kw_urem:
3056 case lltok::kw_srem:
Chris Lattnera676c0f2011-02-07 16:40:21 +00003057 case lltok::kw_frem:
3058 case lltok::kw_shl:
3059 case lltok::kw_lshr:
3060 case lltok::kw_ashr: {
Dan Gohman9c7f8082009-07-27 16:11:46 +00003061 bool NUW = false;
3062 bool NSW = false;
3063 bool Exact = false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00003064 unsigned Opc = Lex.getUIntVal();
3065 Constant *Val0, *Val1;
3066 Lex.Lex();
Dan Gohman9c7f8082009-07-27 16:11:46 +00003067 LocTy ModifierLoc = Lex.getLoc();
Chris Lattnera676c0f2011-02-07 16:40:21 +00003068 if (Opc == Instruction::Add || Opc == Instruction::Sub ||
3069 Opc == Instruction::Mul || Opc == Instruction::Shl) {
Dan Gohman9c7f8082009-07-27 16:11:46 +00003070 if (EatIfPresent(lltok::kw_nuw))
3071 NUW = true;
3072 if (EatIfPresent(lltok::kw_nsw)) {
3073 NSW = true;
3074 if (EatIfPresent(lltok::kw_nuw))
3075 NUW = true;
3076 }
Chris Lattnera676c0f2011-02-07 16:40:21 +00003077 } else if (Opc == Instruction::SDiv || Opc == Instruction::UDiv ||
3078 Opc == Instruction::LShr || Opc == Instruction::AShr) {
Dan Gohman9c7f8082009-07-27 16:11:46 +00003079 if (EatIfPresent(lltok::kw_exact))
3080 Exact = true;
3081 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00003082 if (ParseToken(lltok::lparen, "expected '(' in binary constantexpr") ||
3083 ParseGlobalTypeAndValue(Val0) ||
3084 ParseToken(lltok::comma, "expected comma in binary constantexpr") ||
3085 ParseGlobalTypeAndValue(Val1) ||
3086 ParseToken(lltok::rparen, "expected ')' in binary constantexpr"))
3087 return true;
3088 if (Val0->getType() != Val1->getType())
3089 return Error(ID.Loc, "operands of constexpr must have same type");
Duncan Sands9dff9be2010-02-15 16:12:20 +00003090 if (!Val0->getType()->isIntOrIntVectorTy()) {
Dan Gohman9c7f8082009-07-27 16:11:46 +00003091 if (NUW)
3092 return Error(ModifierLoc, "nuw only applies to integer operations");
3093 if (NSW)
3094 return Error(ModifierLoc, "nsw only applies to integer operations");
3095 }
Dan Gohmana2414ea2010-05-03 22:44:19 +00003096 // Check that the type is valid for the operator.
3097 switch (Opc) {
3098 case Instruction::Add:
3099 case Instruction::Sub:
3100 case Instruction::Mul:
3101 case Instruction::UDiv:
3102 case Instruction::SDiv:
3103 case Instruction::URem:
3104 case Instruction::SRem:
Chris Lattnera676c0f2011-02-07 16:40:21 +00003105 case Instruction::Shl:
3106 case Instruction::AShr:
3107 case Instruction::LShr:
Dan Gohmana2414ea2010-05-03 22:44:19 +00003108 if (!Val0->getType()->isIntOrIntVectorTy())
3109 return Error(ID.Loc, "constexpr requires integer operands");
3110 break;
3111 case Instruction::FAdd:
3112 case Instruction::FSub:
3113 case Instruction::FMul:
3114 case Instruction::FDiv:
3115 case Instruction::FRem:
3116 if (!Val0->getType()->isFPOrFPVectorTy())
3117 return Error(ID.Loc, "constexpr requires fp operands");
3118 break;
3119 default: llvm_unreachable("Unknown binary operator!");
3120 }
Dan Gohman1b849082009-09-07 23:54:19 +00003121 unsigned Flags = 0;
3122 if (NUW) Flags |= OverflowingBinaryOperator::NoUnsignedWrap;
3123 if (NSW) Flags |= OverflowingBinaryOperator::NoSignedWrap;
Chris Lattner35315d02011-02-06 21:44:57 +00003124 if (Exact) Flags |= PossiblyExactOperator::IsExact;
Dan Gohman1b849082009-09-07 23:54:19 +00003125 Constant *C = ConstantExpr::get(Opc, Val0, Val1, Flags);
Dan Gohman9c7f8082009-07-27 16:11:46 +00003126 ID.ConstantVal = C;
Chris Lattnerac161bf2009-01-02 07:01:27 +00003127 ID.Kind = ValID::t_Constant;
3128 return false;
3129 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003130
Chris Lattnerac161bf2009-01-02 07:01:27 +00003131 // Logical Operations
Chris Lattnerac161bf2009-01-02 07:01:27 +00003132 case lltok::kw_and:
3133 case lltok::kw_or:
3134 case lltok::kw_xor: {
3135 unsigned Opc = Lex.getUIntVal();
3136 Constant *Val0, *Val1;
3137 Lex.Lex();
3138 if (ParseToken(lltok::lparen, "expected '(' in logical constantexpr") ||
3139 ParseGlobalTypeAndValue(Val0) ||
3140 ParseToken(lltok::comma, "expected comma in logical constantexpr") ||
3141 ParseGlobalTypeAndValue(Val1) ||
3142 ParseToken(lltok::rparen, "expected ')' in logical constantexpr"))
3143 return true;
3144 if (Val0->getType() != Val1->getType())
3145 return Error(ID.Loc, "operands of constexpr must have same type");
Duncan Sands9dff9be2010-02-15 16:12:20 +00003146 if (!Val0->getType()->isIntOrIntVectorTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00003147 return Error(ID.Loc,
3148 "constexpr requires integer or integer vector operands");
Owen Anderson487375e2009-07-29 18:55:55 +00003149 ID.ConstantVal = ConstantExpr::get(Opc, Val0, Val1);
Chris Lattnerac161bf2009-01-02 07:01:27 +00003150 ID.Kind = ValID::t_Constant;
3151 return false;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003152 }
3153
Chris Lattnerac161bf2009-01-02 07:01:27 +00003154 case lltok::kw_getelementptr:
3155 case lltok::kw_shufflevector:
3156 case lltok::kw_insertelement:
3157 case lltok::kw_extractelement:
3158 case lltok::kw_select: {
3159 unsigned Opc = Lex.getUIntVal();
3160 SmallVector<Constant*, 16> Elts;
Dan Gohman1639c392009-07-27 21:53:46 +00003161 bool InBounds = false;
David Blaikief72d05b2015-03-13 18:20:45 +00003162 Type *Ty;
Chris Lattnerac161bf2009-01-02 07:01:27 +00003163 Lex.Lex();
David Blaikief72d05b2015-03-13 18:20:45 +00003164
Dan Gohman1639c392009-07-27 21:53:46 +00003165 if (Opc == Instruction::GetElementPtr)
Dan Gohman16cbbe42009-07-29 15:58:36 +00003166 InBounds = EatIfPresent(lltok::kw_inbounds);
David Blaikief72d05b2015-03-13 18:20:45 +00003167
3168 if (ParseToken(lltok::lparen, "expected '(' in constantexpr"))
3169 return true;
3170
3171 LocTy ExplicitTypeLoc = Lex.getLoc();
3172 if (Opc == Instruction::GetElementPtr) {
3173 if (ParseType(Ty) ||
3174 ParseToken(lltok::comma, "expected comma after getelementptr's type"))
3175 return true;
3176 }
3177
Peter Collingbourned93620b2016-11-10 22:34:55 +00003178 Optional<unsigned> InRangeOp;
3179 if (ParseGlobalValueVector(
3180 Elts, Opc == Instruction::GetElementPtr ? &InRangeOp : nullptr) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00003181 ParseToken(lltok::rparen, "expected ')' in constantexpr"))
3182 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003183
Chris Lattnerac161bf2009-01-02 07:01:27 +00003184 if (Opc == Instruction::GetElementPtr) {
Nadav Rotem3924cb02011-12-05 06:29:09 +00003185 if (Elts.size() == 0 ||
3186 !Elts[0]->getType()->getScalarType()->isPointerTy())
David Majnemer00303b62015-02-22 23:14:52 +00003187 return Error(ID.Loc, "base of getelementptr must be a pointer");
3188
3189 Type *BaseType = Elts[0]->getType();
3190 auto *BasePointerType = cast<PointerType>(BaseType->getScalarType());
David Blaikief72d05b2015-03-13 18:20:45 +00003191 if (Ty != BasePointerType->getElementType())
3192 return Error(
3193 ExplicitTypeLoc,
3194 "explicit pointee type doesn't match operand's pointee type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003195
Jay Foaded8db7d2011-07-21 14:31:17 +00003196 ArrayRef<Constant *> Indices(Elts.begin() + 1, Elts.end());
David Majnemer00303b62015-02-22 23:14:52 +00003197 for (Constant *Val : Indices) {
3198 Type *ValTy = Val->getType();
3199 if (!ValTy->getScalarType()->isIntegerTy())
3200 return Error(ID.Loc, "getelementptr index must be an integer");
3201 if (ValTy->isVectorTy() != BaseType->isVectorTy())
3202 return Error(ID.Loc, "getelementptr index type missmatch");
3203 if (ValTy->isVectorTy()) {
Elena Demikhovsky37a4da82015-07-09 07:42:48 +00003204 unsigned ValNumEl = ValTy->getVectorNumElements();
3205 unsigned PtrNumEl = BaseType->getVectorNumElements();
David Majnemer00303b62015-02-22 23:14:52 +00003206 if (ValNumEl != PtrNumEl)
3207 return Error(
3208 ID.Loc,
3209 "getelementptr vector index has a wrong number of elements");
3210 }
3211 }
3212
Craig Toppere3dcce92015-08-01 22:20:21 +00003213 SmallPtrSet<Type*, 4> Visited;
David Blaikiee169e822015-04-22 16:37:35 +00003214 if (!Indices.empty() && !Ty->isSized(&Visited))
David Majnemer00303b62015-02-22 23:14:52 +00003215 return Error(ID.Loc, "base element of getelementptr must be sized");
3216
David Blaikie4a2e73b2015-04-02 18:55:32 +00003217 if (!GetElementPtrInst::getIndexedType(Ty, Indices))
David Majnemer00303b62015-02-22 23:14:52 +00003218 return Error(ID.Loc, "invalid getelementptr indices");
Peter Collingbourned93620b2016-11-10 22:34:55 +00003219
3220 if (InRangeOp) {
3221 if (*InRangeOp == 0)
3222 return Error(ID.Loc,
3223 "inrange keyword may not appear on pointer operand");
3224 --*InRangeOp;
3225 }
3226
3227 ID.ConstantVal = ConstantExpr::getGetElementPtr(Ty, Elts[0], Indices,
3228 InBounds, InRangeOp);
Chris Lattnerac161bf2009-01-02 07:01:27 +00003229 } else if (Opc == Instruction::Select) {
3230 if (Elts.size() != 3)
3231 return Error(ID.Loc, "expected three operands to select");
3232 if (const char *Reason = SelectInst::areInvalidOperands(Elts[0], Elts[1],
3233 Elts[2]))
3234 return Error(ID.Loc, Reason);
Owen Anderson487375e2009-07-29 18:55:55 +00003235 ID.ConstantVal = ConstantExpr::getSelect(Elts[0], Elts[1], Elts[2]);
Chris Lattnerac161bf2009-01-02 07:01:27 +00003236 } else if (Opc == Instruction::ShuffleVector) {
3237 if (Elts.size() != 3)
3238 return Error(ID.Loc, "expected three operands to shufflevector");
3239 if (!ShuffleVectorInst::isValidOperands(Elts[0], Elts[1], Elts[2]))
3240 return Error(ID.Loc, "invalid operands to shufflevector");
Owen Anderson02a9da32009-07-01 23:57:11 +00003241 ID.ConstantVal =
Owen Anderson487375e2009-07-29 18:55:55 +00003242 ConstantExpr::getShuffleVector(Elts[0], Elts[1],Elts[2]);
Chris Lattnerac161bf2009-01-02 07:01:27 +00003243 } else if (Opc == Instruction::ExtractElement) {
3244 if (Elts.size() != 2)
3245 return Error(ID.Loc, "expected two operands to extractelement");
3246 if (!ExtractElementInst::isValidOperands(Elts[0], Elts[1]))
3247 return Error(ID.Loc, "invalid extractelement operands");
Owen Anderson487375e2009-07-29 18:55:55 +00003248 ID.ConstantVal = ConstantExpr::getExtractElement(Elts[0], Elts[1]);
Chris Lattnerac161bf2009-01-02 07:01:27 +00003249 } else {
3250 assert(Opc == Instruction::InsertElement && "Unknown opcode");
3251 if (Elts.size() != 3)
3252 return Error(ID.Loc, "expected three operands to insertelement");
3253 if (!InsertElementInst::isValidOperands(Elts[0], Elts[1], Elts[2]))
3254 return Error(ID.Loc, "invalid insertelement operands");
Owen Anderson02a9da32009-07-01 23:57:11 +00003255 ID.ConstantVal =
Owen Anderson487375e2009-07-29 18:55:55 +00003256 ConstantExpr::getInsertElement(Elts[0], Elts[1],Elts[2]);
Chris Lattnerac161bf2009-01-02 07:01:27 +00003257 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003258
Chris Lattnerac161bf2009-01-02 07:01:27 +00003259 ID.Kind = ValID::t_Constant;
3260 return false;
3261 }
3262 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003263
Chris Lattnerac161bf2009-01-02 07:01:27 +00003264 Lex.Lex();
3265 return false;
3266}
3267
3268/// ParseGlobalValue - Parse a global value with the specified type.
Chris Lattner229907c2011-07-18 04:54:35 +00003269bool LLParser::ParseGlobalValue(Type *Ty, Constant *&C) {
Craig Topper2617dcc2014-04-15 06:32:26 +00003270 C = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00003271 ValID ID;
Craig Topper2617dcc2014-04-15 06:32:26 +00003272 Value *V = nullptr;
Victor Hernandez9d75c962010-01-11 22:31:58 +00003273 bool Parsed = ParseValID(ID) ||
Craig Topper2617dcc2014-04-15 06:32:26 +00003274 ConvertValIDToValue(Ty, ID, V, nullptr);
Victor Hernandez9d75c962010-01-11 22:31:58 +00003275 if (V && !(C = dyn_cast<Constant>(V)))
3276 return Error(ID.Loc, "global values must be constants");
3277 return Parsed;
Chris Lattnerac161bf2009-01-02 07:01:27 +00003278}
3279
Victor Hernandez9d75c962010-01-11 22:31:58 +00003280bool LLParser::ParseGlobalTypeAndValue(Constant *&V) {
Craig Topper2617dcc2014-04-15 06:32:26 +00003281 Type *Ty = nullptr;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00003282 return ParseType(Ty) ||
3283 ParseGlobalValue(Ty, V);
Victor Hernandez9d75c962010-01-11 22:31:58 +00003284}
3285
Rafael Espindola83a362c2015-01-06 22:55:16 +00003286bool LLParser::parseOptionalComdat(StringRef GlobalName, Comdat *&C) {
David Majnemerdad0a642014-06-27 18:19:56 +00003287 C = nullptr;
Rafael Espindola83a362c2015-01-06 22:55:16 +00003288
3289 LocTy KwLoc = Lex.getLoc();
David Majnemerdad0a642014-06-27 18:19:56 +00003290 if (!EatIfPresent(lltok::kw_comdat))
3291 return false;
Rafael Espindola83a362c2015-01-06 22:55:16 +00003292
3293 if (EatIfPresent(lltok::lparen)) {
3294 if (Lex.getKind() != lltok::ComdatVar)
3295 return TokError("expected comdat variable");
3296 C = getComdat(Lex.getStrVal(), Lex.getLoc());
3297 Lex.Lex();
3298 if (ParseToken(lltok::rparen, "expected ')' after comdat var"))
3299 return true;
3300 } else {
3301 if (GlobalName.empty())
3302 return TokError("comdat cannot be unnamed");
3303 C = getComdat(GlobalName, KwLoc);
3304 }
3305
David Majnemerdad0a642014-06-27 18:19:56 +00003306 return false;
3307}
3308
Victor Hernandez9d75c962010-01-11 22:31:58 +00003309/// ParseGlobalValueVector
3310/// ::= /*empty*/
Peter Collingbourned93620b2016-11-10 22:34:55 +00003311/// ::= [inrange] TypeAndValue (',' [inrange] TypeAndValue)*
3312bool LLParser::ParseGlobalValueVector(SmallVectorImpl<Constant *> &Elts,
3313 Optional<unsigned> *InRangeOp) {
Victor Hernandez9d75c962010-01-11 22:31:58 +00003314 // Empty list.
3315 if (Lex.getKind() == lltok::rbrace ||
3316 Lex.getKind() == lltok::rsquare ||
3317 Lex.getKind() == lltok::greater ||
3318 Lex.getKind() == lltok::rparen)
3319 return false;
3320
Peter Collingbourned93620b2016-11-10 22:34:55 +00003321 do {
3322 if (InRangeOp && !*InRangeOp && EatIfPresent(lltok::kw_inrange))
3323 *InRangeOp = Elts.size();
Victor Hernandez9d75c962010-01-11 22:31:58 +00003324
Peter Collingbourned93620b2016-11-10 22:34:55 +00003325 Constant *C;
Victor Hernandez9d75c962010-01-11 22:31:58 +00003326 if (ParseGlobalTypeAndValue(C)) return true;
3327 Elts.push_back(C);
Peter Collingbourned93620b2016-11-10 22:34:55 +00003328 } while (EatIfPresent(lltok::comma));
Victor Hernandez9d75c962010-01-11 22:31:58 +00003329
3330 return false;
3331}
3332
Duncan P. N. Exon Smith58ef9d12015-01-12 21:23:11 +00003333bool LLParser::ParseMDTuple(MDNode *&MD, bool IsDistinct) {
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00003334 SmallVector<Metadata *, 16> Elts;
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00003335 if (ParseMDNodeVector(Elts))
Dan Gohmanc828c542010-08-24 02:24:03 +00003336 return true;
3337
Duncan P. N. Exon Smith0b31dd12015-01-12 22:27:39 +00003338 MD = (IsDistinct ? MDTuple::getDistinct : MDTuple::get)(Context, Elts);
Dan Gohmanc828c542010-08-24 02:24:03 +00003339 return false;
3340}
3341
Duncan P. N. Exon Smithf825dae2015-01-12 22:26:48 +00003342/// MDNode:
3343/// ::= !{ ... }
3344/// ::= !7
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003345/// ::= !DILocation(...)
Duncan P. N. Exon Smithf825dae2015-01-12 22:26:48 +00003346bool LLParser::ParseMDNode(MDNode *&N) {
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003347 if (Lex.getKind() == lltok::MetadataVar)
3348 return ParseSpecializedMDNode(N);
3349
Duncan P. N. Exon Smithf825dae2015-01-12 22:26:48 +00003350 return ParseToken(lltok::exclaim, "expected '!' here") ||
3351 ParseMDNodeTail(N);
3352}
3353
3354bool LLParser::ParseMDNodeTail(MDNode *&N) {
3355 // !{ ... }
3356 if (Lex.getKind() == lltok::lbrace)
3357 return ParseMDTuple(N);
3358
3359 // !42
3360 return ParseMDNodeID(N);
3361}
3362
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003363namespace {
3364
3365/// Structure to represent an optional metadata field.
3366template <class FieldTy> struct MDFieldImpl {
3367 typedef MDFieldImpl ImplTy;
3368 FieldTy Val;
3369 bool Seen;
3370
3371 void assign(FieldTy Val) {
3372 Seen = true;
3373 this->Val = std::move(Val);
3374 }
3375
3376 explicit MDFieldImpl(FieldTy Default)
3377 : Val(std::move(Default)), Seen(false) {}
3378};
Duncan P. N. Exon Smithc7363f12015-02-13 01:10:38 +00003379
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003380struct MDUnsignedField : public MDFieldImpl<uint64_t> {
3381 uint64_t Max;
3382
3383 MDUnsignedField(uint64_t Default = 0, uint64_t Max = UINT64_MAX)
3384 : ImplTy(Default), Max(Max) {}
3385};
Eugene Zelenko1804a772016-08-25 00:45:04 +00003386
Duncan P. N. Exon Smith9c93dc62015-02-04 22:59:18 +00003387struct LineField : public MDUnsignedField {
Duncan P. N. Exon Smithaf677eb2015-02-06 22:50:13 +00003388 LineField() : MDUnsignedField(0, UINT32_MAX) {}
Duncan P. N. Exon Smith9c93dc62015-02-04 22:59:18 +00003389};
Eugene Zelenko1804a772016-08-25 00:45:04 +00003390
Duncan P. N. Exon Smith9c93dc62015-02-04 22:59:18 +00003391struct ColumnField : public MDUnsignedField {
3392 ColumnField() : MDUnsignedField(0, UINT16_MAX) {}
3393};
Eugene Zelenko1804a772016-08-25 00:45:04 +00003394
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003395struct DwarfTagField : public MDUnsignedField {
Duncan P. N. Exon Smitha81f7e12015-02-06 22:29:35 +00003396 DwarfTagField() : MDUnsignedField(0, dwarf::DW_TAG_hi_user) {}
Duncan P. N. Exon Smith16d182a2015-02-28 23:21:38 +00003397 DwarfTagField(dwarf::Tag DefaultTag)
3398 : MDUnsignedField(DefaultTag, dwarf::DW_TAG_hi_user) {}
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003399};
Eugene Zelenko1804a772016-08-25 00:45:04 +00003400
Amjad Abouda9bcf162015-12-10 12:56:35 +00003401struct DwarfMacinfoTypeField : public MDUnsignedField {
3402 DwarfMacinfoTypeField() : MDUnsignedField(0, dwarf::DW_MACINFO_vendor_ext) {}
3403 DwarfMacinfoTypeField(dwarf::MacinfoRecordType DefaultType)
3404 : MDUnsignedField(DefaultType, dwarf::DW_MACINFO_vendor_ext) {}
3405};
Eugene Zelenko1804a772016-08-25 00:45:04 +00003406
Duncan P. N. Exon Smithcd6636c2015-02-13 01:17:35 +00003407struct DwarfAttEncodingField : public MDUnsignedField {
3408 DwarfAttEncodingField() : MDUnsignedField(0, dwarf::DW_ATE_hi_user) {}
3409};
Eugene Zelenko1804a772016-08-25 00:45:04 +00003410
Duncan P. N. Exon Smith890533e2015-02-13 01:28:16 +00003411struct DwarfVirtualityField : public MDUnsignedField {
3412 DwarfVirtualityField() : MDUnsignedField(0, dwarf::DW_VIRTUALITY_max) {}
3413};
Eugene Zelenko1804a772016-08-25 00:45:04 +00003414
Duncan P. N. Exon Smithaece2dc2015-02-13 01:21:25 +00003415struct DwarfLangField : public MDUnsignedField {
3416 DwarfLangField() : MDUnsignedField(0, dwarf::DW_LANG_hi_user) {}
3417};
Eugene Zelenko1804a772016-08-25 00:45:04 +00003418
Reid Klecknerde3d8b52016-06-08 20:34:29 +00003419struct DwarfCCField : public MDUnsignedField {
3420 DwarfCCField() : MDUnsignedField(0, dwarf::DW_CC_hi_user) {}
3421};
Eugene Zelenko1804a772016-08-25 00:45:04 +00003422
Adrian Prantlb939a252016-03-31 23:56:58 +00003423struct EmissionKindField : public MDUnsignedField {
3424 EmissionKindField() : MDUnsignedField(0, DICompileUnit::LastEmissionKind) {}
3425};
Duncan P. N. Exon Smithc7363f12015-02-13 01:10:38 +00003426
Leny Kholodov5fcc4182016-09-06 10:46:28 +00003427struct DIFlagField : public MDFieldImpl<DINode::DIFlags> {
3428 DIFlagField() : MDFieldImpl(DINode::FlagZero) {}
Duncan P. N. Exon Smith70ab3d22015-02-21 01:02:18 +00003429};
3430
Duncan P. N. Exon Smithc7363f12015-02-13 01:10:38 +00003431struct MDSignedField : public MDFieldImpl<int64_t> {
3432 int64_t Min;
3433 int64_t Max;
3434
3435 MDSignedField(int64_t Default = 0)
3436 : ImplTy(Default), Min(INT64_MIN), Max(INT64_MAX) {}
3437 MDSignedField(int64_t Default, int64_t Min, int64_t Max)
3438 : ImplTy(Default), Min(Min), Max(Max) {}
3439};
3440
Duncan P. N. Exon Smithaece2dc2015-02-13 01:21:25 +00003441struct MDBoolField : public MDFieldImpl<bool> {
3442 MDBoolField(bool Default = false) : ImplTy(Default) {}
3443};
Eugene Zelenko1804a772016-08-25 00:45:04 +00003444
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003445struct MDField : public MDFieldImpl<Metadata *> {
Duncan P. N. Exon Smithe2c61d92015-03-27 17:56:39 +00003446 bool AllowNull;
3447
3448 MDField(bool AllowNull = true) : ImplTy(nullptr), AllowNull(AllowNull) {}
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003449};
Eugene Zelenko1804a772016-08-25 00:45:04 +00003450
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003451struct MDConstant : public MDFieldImpl<ConstantAsMetadata *> {
3452 MDConstant() : ImplTy(nullptr) {}
3453};
Eugene Zelenko1804a772016-08-25 00:45:04 +00003454
Duncan P. N. Exon Smith3d2afaa2015-03-27 17:29:58 +00003455struct MDStringField : public MDFieldImpl<MDString *> {
Duncan P. N. Exon Smith94d58f82015-03-31 01:28:22 +00003456 bool AllowEmpty;
3457 MDStringField(bool AllowEmpty = true)
3458 : ImplTy(nullptr), AllowEmpty(AllowEmpty) {}
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003459};
Eugene Zelenko1804a772016-08-25 00:45:04 +00003460
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003461struct MDFieldList : public MDFieldImpl<SmallVector<Metadata *, 4>> {
3462 MDFieldList() : ImplTy(SmallVector<Metadata *, 4>()) {}
3463};
3464
Eugene Zelenko1804a772016-08-25 00:45:04 +00003465} // end anonymous namespace
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003466
Duncan P. N. Exon Smith2f09c462015-02-04 22:13:28 +00003467namespace llvm {
3468
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003469template <>
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003470bool LLParser::ParseMDField(LocTy Loc, StringRef Name,
Duncan P. N. Exon Smith39b10c22015-02-04 21:57:52 +00003471 MDUnsignedField &Result) {
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003472 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned())
3473 return TokError("expected unsigned integer");
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003474
Duncan P. N. Exon Smith39b10c22015-02-04 21:57:52 +00003475 auto &U = Lex.getAPSIntVal();
3476 if (U.ugt(Result.Max))
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003477 return TokError("value for '" + Name + "' too large, limit is " +
3478 Twine(Result.Max));
Duncan P. N. Exon Smith39b10c22015-02-04 21:57:52 +00003479 Result.assign(U.getZExtValue());
3480 assert(Result.Val <= Result.Max && "Expected value in range");
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003481 Lex.Lex();
3482 return false;
3483}
3484
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003485template <>
Duncan P. N. Exon Smith9c93dc62015-02-04 22:59:18 +00003486bool LLParser::ParseMDField(LocTy Loc, StringRef Name, LineField &Result) {
3487 return ParseMDField(Loc, Name, static_cast<MDUnsignedField &>(Result));
3488}
3489template <>
3490bool LLParser::ParseMDField(LocTy Loc, StringRef Name, ColumnField &Result) {
3491 return ParseMDField(Loc, Name, static_cast<MDUnsignedField &>(Result));
3492}
3493
3494template <>
Duncan P. N. Exon Smith97486072015-02-03 21:56:01 +00003495bool LLParser::ParseMDField(LocTy Loc, StringRef Name, DwarfTagField &Result) {
3496 if (Lex.getKind() == lltok::APSInt)
Duncan P. N. Exon Smith39b10c22015-02-04 21:57:52 +00003497 return ParseMDField(Loc, Name, static_cast<MDUnsignedField &>(Result));
Duncan P. N. Exon Smith97486072015-02-03 21:56:01 +00003498
Duncan P. N. Exon Smith97486072015-02-03 21:56:01 +00003499 if (Lex.getKind() != lltok::DwarfTag)
3500 return TokError("expected DWARF tag");
3501
3502 unsigned Tag = dwarf::getTag(Lex.getStrVal());
3503 if (Tag == dwarf::DW_TAG_invalid)
3504 return TokError("invalid DWARF tag" + Twine(" '") + Lex.getStrVal() + "'");
Duncan P. N. Exon Smithfad631a2015-02-04 22:02:18 +00003505 assert(Tag <= Result.Max && "Expected valid DWARF tag");
Duncan P. N. Exon Smith97486072015-02-03 21:56:01 +00003506
3507 Result.assign(Tag);
3508 Lex.Lex();
3509 return false;
3510}
3511
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003512template <>
Duncan P. N. Exon Smith890533e2015-02-13 01:28:16 +00003513bool LLParser::ParseMDField(LocTy Loc, StringRef Name,
Amjad Abouda9bcf162015-12-10 12:56:35 +00003514 DwarfMacinfoTypeField &Result) {
3515 if (Lex.getKind() == lltok::APSInt)
3516 return ParseMDField(Loc, Name, static_cast<MDUnsignedField &>(Result));
3517
3518 if (Lex.getKind() != lltok::DwarfMacinfo)
3519 return TokError("expected DWARF macinfo type");
3520
3521 unsigned Macinfo = dwarf::getMacinfo(Lex.getStrVal());
3522 if (Macinfo == dwarf::DW_MACINFO_invalid)
3523 return TokError(
3524 "invalid DWARF macinfo type" + Twine(" '") + Lex.getStrVal() + "'");
3525 assert(Macinfo <= Result.Max && "Expected valid DWARF macinfo type");
3526
3527 Result.assign(Macinfo);
3528 Lex.Lex();
3529 return false;
3530}
3531
3532template <>
3533bool LLParser::ParseMDField(LocTy Loc, StringRef Name,
Duncan P. N. Exon Smith890533e2015-02-13 01:28:16 +00003534 DwarfVirtualityField &Result) {
3535 if (Lex.getKind() == lltok::APSInt)
3536 return ParseMDField(Loc, Name, static_cast<MDUnsignedField &>(Result));
3537
3538 if (Lex.getKind() != lltok::DwarfVirtuality)
3539 return TokError("expected DWARF virtuality code");
3540
3541 unsigned Virtuality = dwarf::getVirtuality(Lex.getStrVal());
Peter Collingbournea1f86252016-03-17 23:58:03 +00003542 if (Virtuality == dwarf::DW_VIRTUALITY_invalid)
Duncan P. N. Exon Smith890533e2015-02-13 01:28:16 +00003543 return TokError("invalid DWARF virtuality code" + Twine(" '") +
3544 Lex.getStrVal() + "'");
3545 assert(Virtuality <= Result.Max && "Expected valid DWARF virtuality code");
3546 Result.assign(Virtuality);
3547 Lex.Lex();
3548 return false;
3549}
3550
3551template <>
Duncan P. N. Exon Smithaece2dc2015-02-13 01:21:25 +00003552bool LLParser::ParseMDField(LocTy Loc, StringRef Name, DwarfLangField &Result) {
3553 if (Lex.getKind() == lltok::APSInt)
3554 return ParseMDField(Loc, Name, static_cast<MDUnsignedField &>(Result));
3555
3556 if (Lex.getKind() != lltok::DwarfLang)
3557 return TokError("expected DWARF language");
3558
3559 unsigned Lang = dwarf::getLanguage(Lex.getStrVal());
3560 if (!Lang)
3561 return TokError("invalid DWARF language" + Twine(" '") + Lex.getStrVal() +
3562 "'");
3563 assert(Lang <= Result.Max && "Expected valid DWARF language");
3564 Result.assign(Lang);
3565 Lex.Lex();
3566 return false;
3567}
3568
3569template <>
Reid Klecknerde3d8b52016-06-08 20:34:29 +00003570bool LLParser::ParseMDField(LocTy Loc, StringRef Name, DwarfCCField &Result) {
3571 if (Lex.getKind() == lltok::APSInt)
3572 return ParseMDField(Loc, Name, static_cast<MDUnsignedField &>(Result));
3573
3574 if (Lex.getKind() != lltok::DwarfCC)
3575 return TokError("expected DWARF calling convention");
3576
3577 unsigned CC = dwarf::getCallingConvention(Lex.getStrVal());
3578 if (!CC)
3579 return TokError("invalid DWARF calling convention" + Twine(" '") + Lex.getStrVal() +
3580 "'");
3581 assert(CC <= Result.Max && "Expected valid DWARF calling convention");
3582 Result.assign(CC);
3583 Lex.Lex();
3584 return false;
3585}
3586
3587template <>
Adrian Prantlb939a252016-03-31 23:56:58 +00003588bool LLParser::ParseMDField(LocTy Loc, StringRef Name, EmissionKindField &Result) {
3589 if (Lex.getKind() == lltok::APSInt)
3590 return ParseMDField(Loc, Name, static_cast<MDUnsignedField &>(Result));
3591
3592 if (Lex.getKind() != lltok::EmissionKind)
3593 return TokError("expected emission kind");
3594
3595 auto Kind = DICompileUnit::getEmissionKind(Lex.getStrVal());
3596 if (!Kind)
3597 return TokError("invalid emission kind" + Twine(" '") + Lex.getStrVal() +
3598 "'");
3599 assert(*Kind <= Result.Max && "Expected valid emission kind");
3600 Result.assign(*Kind);
3601 Lex.Lex();
3602 return false;
3603}
3604
3605template <>
Duncan P. N. Exon Smithc7363f12015-02-13 01:10:38 +00003606bool LLParser::ParseMDField(LocTy Loc, StringRef Name,
Duncan P. N. Exon Smithcd6636c2015-02-13 01:17:35 +00003607 DwarfAttEncodingField &Result) {
3608 if (Lex.getKind() == lltok::APSInt)
3609 return ParseMDField(Loc, Name, static_cast<MDUnsignedField &>(Result));
3610
3611 if (Lex.getKind() != lltok::DwarfAttEncoding)
3612 return TokError("expected DWARF type attribute encoding");
3613
3614 unsigned Encoding = dwarf::getAttributeEncoding(Lex.getStrVal());
3615 if (!Encoding)
3616 return TokError("invalid DWARF type attribute encoding" + Twine(" '") +
3617 Lex.getStrVal() + "'");
3618 assert(Encoding <= Result.Max && "Expected valid DWARF language");
3619 Result.assign(Encoding);
3620 Lex.Lex();
3621 return false;
3622}
3623
Duncan P. N. Exon Smith70ab3d22015-02-21 01:02:18 +00003624/// DIFlagField
3625/// ::= uint32
3626/// ::= DIFlagVector
3627/// ::= DIFlagVector '|' DIFlagFwdDecl '|' uint32 '|' DIFlagPublic
3628template <>
3629bool LLParser::ParseMDField(LocTy Loc, StringRef Name, DIFlagField &Result) {
Duncan P. N. Exon Smith70ab3d22015-02-21 01:02:18 +00003630
3631 // Parser for a single flag.
Leny Kholodov5fcc4182016-09-06 10:46:28 +00003632 auto parseFlag = [&](DINode::DIFlags &Val) {
3633 if (Lex.getKind() == lltok::APSInt && !Lex.getAPSIntVal().isSigned()) {
3634 uint32_t TempVal = static_cast<uint32_t>(Val);
3635 bool Res = ParseUInt32(TempVal);
3636 Val = static_cast<DINode::DIFlags>(TempVal);
3637 return Res;
3638 }
Duncan P. N. Exon Smith70ab3d22015-02-21 01:02:18 +00003639
3640 if (Lex.getKind() != lltok::DIFlag)
3641 return TokError("expected debug info flag");
3642
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003643 Val = DINode::getFlag(Lex.getStrVal());
Duncan P. N. Exon Smith70ab3d22015-02-21 01:02:18 +00003644 if (!Val)
3645 return TokError(Twine("invalid debug info flag flag '") +
3646 Lex.getStrVal() + "'");
3647 Lex.Lex();
3648 return false;
3649 };
3650
3651 // Parse the flags and combine them together.
Leny Kholodov5fcc4182016-09-06 10:46:28 +00003652 DINode::DIFlags Combined = DINode::FlagZero;
Duncan P. N. Exon Smith70ab3d22015-02-21 01:02:18 +00003653 do {
Leny Kholodov5fcc4182016-09-06 10:46:28 +00003654 DINode::DIFlags Val;
Duncan P. N. Exon Smith70ab3d22015-02-21 01:02:18 +00003655 if (parseFlag(Val))
3656 return true;
3657 Combined |= Val;
3658 } while (EatIfPresent(lltok::bar));
3659
3660 Result.assign(Combined);
3661 return false;
3662}
3663
Duncan P. N. Exon Smithcd6636c2015-02-13 01:17:35 +00003664template <>
3665bool LLParser::ParseMDField(LocTy Loc, StringRef Name,
Duncan P. N. Exon Smithc7363f12015-02-13 01:10:38 +00003666 MDSignedField &Result) {
3667 if (Lex.getKind() != lltok::APSInt)
3668 return TokError("expected signed integer");
3669
3670 auto &S = Lex.getAPSIntVal();
3671 if (S < Result.Min)
3672 return TokError("value for '" + Name + "' too small, limit is " +
3673 Twine(Result.Min));
3674 if (S > Result.Max)
3675 return TokError("value for '" + Name + "' too large, limit is " +
3676 Twine(Result.Max));
3677 Result.assign(S.getExtValue());
3678 assert(Result.Val >= Result.Min && "Expected value in range");
3679 assert(Result.Val <= Result.Max && "Expected value in range");
3680 Lex.Lex();
3681 return false;
3682}
3683
3684template <>
Duncan P. N. Exon Smithaece2dc2015-02-13 01:21:25 +00003685bool LLParser::ParseMDField(LocTy Loc, StringRef Name, MDBoolField &Result) {
3686 switch (Lex.getKind()) {
3687 default:
3688 return TokError("expected 'true' or 'false'");
3689 case lltok::kw_true:
3690 Result.assign(true);
3691 break;
3692 case lltok::kw_false:
3693 Result.assign(false);
3694 break;
3695 }
3696 Lex.Lex();
3697 return false;
3698}
3699
3700template <>
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003701bool LLParser::ParseMDField(LocTy Loc, StringRef Name, MDField &Result) {
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003702 if (Lex.getKind() == lltok::kw_null) {
Duncan P. N. Exon Smithe2c61d92015-03-27 17:56:39 +00003703 if (!Result.AllowNull)
3704 return TokError("'" + Name + "' cannot be null");
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003705 Lex.Lex();
3706 Result.assign(nullptr);
3707 return false;
3708 }
3709
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003710 Metadata *MD;
3711 if (ParseMetadata(MD, nullptr))
3712 return true;
3713
3714 Result.assign(MD);
3715 return false;
3716}
3717
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003718template <>
Duncan P. N. Exon Smith4e4aa702015-02-03 21:54:14 +00003719bool LLParser::ParseMDField(LocTy Loc, StringRef Name, MDStringField &Result) {
Duncan P. N. Exon Smith94d58f82015-03-31 01:28:22 +00003720 LocTy ValueLoc = Lex.getLoc();
Duncan P. N. Exon Smith4e4aa702015-02-03 21:54:14 +00003721 std::string S;
3722 if (ParseStringConstant(S))
3723 return true;
3724
Duncan P. N. Exon Smith94d58f82015-03-31 01:28:22 +00003725 if (!Result.AllowEmpty && S.empty())
3726 return Error(ValueLoc, "'" + Name + "' cannot be empty");
3727
Duncan P. N. Exon Smith3d2afaa2015-03-27 17:29:58 +00003728 Result.assign(S.empty() ? nullptr : MDString::get(Context, S));
Duncan P. N. Exon Smith4e4aa702015-02-03 21:54:14 +00003729 return false;
3730}
3731
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003732template <>
Duncan P. N. Exon Smith4e4aa702015-02-03 21:54:14 +00003733bool LLParser::ParseMDField(LocTy Loc, StringRef Name, MDFieldList &Result) {
3734 SmallVector<Metadata *, 4> MDs;
3735 if (ParseMDNodeVector(MDs))
3736 return true;
3737
3738 Result.assign(std::move(MDs));
3739 return false;
3740}
3741
Duncan P. N. Exon Smith2f09c462015-02-04 22:13:28 +00003742} // end namespace llvm
3743
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003744template <class ParserTy>
Duncan P. N. Exon Smith66ca92e2015-01-19 23:39:32 +00003745bool LLParser::ParseMDFieldsImplBody(ParserTy parseField) {
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003746 do {
3747 if (Lex.getKind() != lltok::LabelStr)
3748 return TokError("expected field label here");
3749
3750 if (parseField())
3751 return true;
3752 } while (EatIfPresent(lltok::comma));
3753
Duncan P. N. Exon Smith66ca92e2015-01-19 23:39:32 +00003754 return false;
3755}
3756
3757template <class ParserTy>
3758bool LLParser::ParseMDFieldsImpl(ParserTy parseField, LocTy &ClosingLoc) {
3759 assert(Lex.getKind() == lltok::MetadataVar && "Expected metadata type name");
3760 Lex.Lex();
3761
3762 if (ParseToken(lltok::lparen, "expected '(' here"))
3763 return true;
3764 if (Lex.getKind() != lltok::rparen)
3765 if (ParseMDFieldsImplBody(parseField))
3766 return true;
3767
Duncan P. N. Exon Smith13890af2015-01-19 23:32:36 +00003768 ClosingLoc = Lex.getLoc();
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003769 return ParseToken(lltok::rparen, "expected ')' here");
3770}
3771
Duncan P. N. Exon Smitha7477282015-01-20 02:42:29 +00003772template <class FieldTy>
3773bool LLParser::ParseMDField(StringRef Name, FieldTy &Result) {
3774 if (Result.Seen)
3775 return TokError("field '" + Name + "' cannot be specified more than once");
3776
3777 LocTy Loc = Lex.getLoc();
3778 Lex.Lex();
3779 return ParseMDField(Loc, Name, Result);
3780}
3781
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003782bool LLParser::ParseSpecializedMDNode(MDNode *&N, bool IsDistinct) {
3783 assert(Lex.getKind() == lltok::MetadataVar && "Expected metadata type name");
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003784
3785#define HANDLE_SPECIALIZED_MDNODE_LEAF(CLASS) \
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003786 if (Lex.getStrVal() == #CLASS) \
3787 return Parse##CLASS(N, IsDistinct);
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003788#include "llvm/IR/Metadata.def"
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003789
3790 return TokError("expected metadata type");
3791}
3792
Duncan P. N. Exon Smith2a6b5fc2015-01-19 23:44:41 +00003793#define DECLARE_FIELD(NAME, TYPE, INIT) TYPE NAME INIT
3794#define NOP_FIELD(NAME, TYPE, INIT)
3795#define REQUIRE_FIELD(NAME, TYPE, INIT) \
3796 if (!NAME.Seen) \
3797 return Error(ClosingLoc, "missing required field '" #NAME "'");
3798#define PARSE_MD_FIELD(NAME, TYPE, DEFAULT) \
Duncan P. N. Exon Smitha7477282015-01-20 02:42:29 +00003799 if (Lex.getStrVal() == #NAME) \
3800 return ParseMDField(#NAME, NAME);
Duncan P. N. Exon Smith2a6b5fc2015-01-19 23:44:41 +00003801#define PARSE_MD_FIELDS() \
3802 VISIT_MD_FIELDS(DECLARE_FIELD, DECLARE_FIELD) \
3803 do { \
3804 LocTy ClosingLoc; \
3805 if (ParseMDFieldsImpl([&]() -> bool { \
3806 VISIT_MD_FIELDS(PARSE_MD_FIELD, PARSE_MD_FIELD) \
3807 return TokError(Twine("invalid field '") + Lex.getStrVal() + "'"); \
3808 }, ClosingLoc)) \
3809 return true; \
3810 VISIT_MD_FIELDS(NOP_FIELD, REQUIRE_FIELD) \
3811 } while (false)
Duncan P. N. Exon Smith4e4aa702015-02-03 21:54:14 +00003812#define GET_OR_DISTINCT(CLASS, ARGS) \
3813 (IsDistinct ? CLASS::getDistinct ARGS : CLASS::get ARGS)
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003814
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003815/// ParseDILocationFields:
3816/// ::= !DILocation(line: 43, column: 8, scope: !5, inlinedAt: !6)
3817bool LLParser::ParseDILocation(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith2a6b5fc2015-01-19 23:44:41 +00003818#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith9c93dc62015-02-04 22:59:18 +00003819 OPTIONAL(line, LineField, ); \
3820 OPTIONAL(column, ColumnField, ); \
Duncan P. N. Exon Smithe2c61d92015-03-27 17:56:39 +00003821 REQUIRED(scope, MDField, (/* AllowNull */ false)); \
Duncan P. N. Exon Smith2a6b5fc2015-01-19 23:44:41 +00003822 OPTIONAL(inlinedAt, MDField, );
3823 PARSE_MD_FIELDS();
3824#undef VISIT_MD_FIELDS
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003825
Duncan P. N. Exon Smith26489982015-03-26 22:05:04 +00003826 Result = GET_OR_DISTINCT(
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003827 DILocation, (Context, line.Val, column.Val, scope.Val, inlinedAt.Val));
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003828 return false;
3829}
Duncan P. N. Exon Smith4e4aa702015-02-03 21:54:14 +00003830
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003831/// ParseGenericDINode:
3832/// ::= !GenericDINode(tag: 15, header: "...", operands: {...})
3833bool LLParser::ParseGenericDINode(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith4e4aa702015-02-03 21:54:14 +00003834#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith97486072015-02-03 21:56:01 +00003835 REQUIRED(tag, DwarfTagField, ); \
Duncan P. N. Exon Smith4e4aa702015-02-03 21:54:14 +00003836 OPTIONAL(header, MDStringField, ); \
3837 OPTIONAL(operands, MDFieldList, );
3838 PARSE_MD_FIELDS();
3839#undef VISIT_MD_FIELDS
3840
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003841 Result = GET_OR_DISTINCT(GenericDINode,
Duncan P. N. Exon Smith4e4aa702015-02-03 21:54:14 +00003842 (Context, tag.Val, header.Val, operands.Val));
3843 return false;
3844}
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003845
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003846/// ParseDISubrange:
3847/// ::= !DISubrange(count: 30, lowerBound: 2)
3848bool LLParser::ParseDISubrange(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smithc7363f12015-02-13 01:10:38 +00003849#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith5c9a1772015-02-18 23:17:51 +00003850 REQUIRED(count, MDSignedField, (-1, -1, INT64_MAX)); \
Duncan P. N. Exon Smithc7363f12015-02-13 01:10:38 +00003851 OPTIONAL(lowerBound, MDSignedField, );
3852 PARSE_MD_FIELDS();
3853#undef VISIT_MD_FIELDS
3854
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003855 Result = GET_OR_DISTINCT(DISubrange, (Context, count.Val, lowerBound.Val));
Duncan P. N. Exon Smithc7363f12015-02-13 01:10:38 +00003856 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003857}
Duncan P. N. Exon Smithc7363f12015-02-13 01:10:38 +00003858
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003859/// ParseDIEnumerator:
3860/// ::= !DIEnumerator(value: 30, name: "SomeKind")
3861bool LLParser::ParseDIEnumerator(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith87754762015-02-13 01:14:11 +00003862#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smithcd8fb602015-02-18 21:16:33 +00003863 REQUIRED(name, MDStringField, ); \
3864 REQUIRED(value, MDSignedField, );
Duncan P. N. Exon Smith87754762015-02-13 01:14:11 +00003865 PARSE_MD_FIELDS();
3866#undef VISIT_MD_FIELDS
3867
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003868 Result = GET_OR_DISTINCT(DIEnumerator, (Context, value.Val, name.Val));
Duncan P. N. Exon Smith87754762015-02-13 01:14:11 +00003869 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003870}
Duncan P. N. Exon Smith87754762015-02-13 01:14:11 +00003871
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003872/// ParseDIBasicType:
3873/// ::= !DIBasicType(tag: DW_TAG_base_type, name: "int", size: 32, align: 32)
3874bool LLParser::ParseDIBasicType(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith09e03f32015-02-13 01:14:58 +00003875#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith16d182a2015-02-28 23:21:38 +00003876 OPTIONAL(tag, DwarfTagField, (dwarf::DW_TAG_base_type)); \
Duncan P. N. Exon Smith09e03f32015-02-13 01:14:58 +00003877 OPTIONAL(name, MDStringField, ); \
Duncan P. N. Exon Smithd34db172015-02-19 23:56:07 +00003878 OPTIONAL(size, MDUnsignedField, (0, UINT64_MAX)); \
Victor Leschuk197aa312016-10-18 14:31:22 +00003879 OPTIONAL(align, MDUnsignedField, (0, UINT32_MAX)); \
Duncan P. N. Exon Smithcd6636c2015-02-13 01:17:35 +00003880 OPTIONAL(encoding, DwarfAttEncodingField, );
Duncan P. N. Exon Smith09e03f32015-02-13 01:14:58 +00003881 PARSE_MD_FIELDS();
3882#undef VISIT_MD_FIELDS
3883
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003884 Result = GET_OR_DISTINCT(DIBasicType, (Context, tag.Val, name.Val, size.Val,
Duncan P. N. Exon Smith09e03f32015-02-13 01:14:58 +00003885 align.Val, encoding.Val));
3886 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003887}
Duncan P. N. Exon Smith09e03f32015-02-13 01:14:58 +00003888
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003889/// ParseDIDerivedType:
3890/// ::= !DIDerivedType(tag: DW_TAG_pointer_type, name: "int", file: !0,
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00003891/// line: 7, scope: !1, baseType: !2, size: 32,
3892/// align: 32, offset: 0, flags: 0, extraData: !3)
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003893bool LLParser::ParseDIDerivedType(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00003894#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
3895 REQUIRED(tag, DwarfTagField, ); \
3896 OPTIONAL(name, MDStringField, ); \
3897 OPTIONAL(file, MDField, ); \
3898 OPTIONAL(line, LineField, ); \
3899 OPTIONAL(scope, MDField, ); \
3900 REQUIRED(baseType, MDField, ); \
Duncan P. N. Exon Smithd34db172015-02-19 23:56:07 +00003901 OPTIONAL(size, MDUnsignedField, (0, UINT64_MAX)); \
Victor Leschuk197aa312016-10-18 14:31:22 +00003902 OPTIONAL(align, MDUnsignedField, (0, UINT32_MAX)); \
Duncan P. N. Exon Smithd34db172015-02-19 23:56:07 +00003903 OPTIONAL(offset, MDUnsignedField, (0, UINT64_MAX)); \
Duncan P. N. Exon Smith70ab3d22015-02-21 01:02:18 +00003904 OPTIONAL(flags, DIFlagField, ); \
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00003905 OPTIONAL(extraData, MDField, );
3906 PARSE_MD_FIELDS();
3907#undef VISIT_MD_FIELDS
3908
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003909 Result = GET_OR_DISTINCT(DIDerivedType,
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00003910 (Context, tag.Val, name.Val, file.Val, line.Val,
3911 scope.Val, baseType.Val, size.Val, align.Val,
3912 offset.Val, flags.Val, extraData.Val));
3913 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003914}
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00003915
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003916bool LLParser::ParseDICompositeType(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00003917#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
3918 REQUIRED(tag, DwarfTagField, ); \
3919 OPTIONAL(name, MDStringField, ); \
3920 OPTIONAL(file, MDField, ); \
3921 OPTIONAL(line, LineField, ); \
3922 OPTIONAL(scope, MDField, ); \
3923 OPTIONAL(baseType, MDField, ); \
Duncan P. N. Exon Smithd34db172015-02-19 23:56:07 +00003924 OPTIONAL(size, MDUnsignedField, (0, UINT64_MAX)); \
Victor Leschuk197aa312016-10-18 14:31:22 +00003925 OPTIONAL(align, MDUnsignedField, (0, UINT32_MAX)); \
Duncan P. N. Exon Smithd34db172015-02-19 23:56:07 +00003926 OPTIONAL(offset, MDUnsignedField, (0, UINT64_MAX)); \
Duncan P. N. Exon Smith70ab3d22015-02-21 01:02:18 +00003927 OPTIONAL(flags, DIFlagField, ); \
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00003928 OPTIONAL(elements, MDField, ); \
Duncan P. N. Exon Smithaece2dc2015-02-13 01:21:25 +00003929 OPTIONAL(runtimeLang, DwarfLangField, ); \
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00003930 OPTIONAL(vtableHolder, MDField, ); \
3931 OPTIONAL(templateParams, MDField, ); \
3932 OPTIONAL(identifier, MDStringField, );
3933 PARSE_MD_FIELDS();
3934#undef VISIT_MD_FIELDS
3935
Duncan P. N. Exon Smith97386022016-04-19 18:00:19 +00003936 // If this has an identifier try to build an ODR type.
3937 if (identifier.Val)
3938 if (auto *CT = DICompositeType::buildODRType(
Duncan P. N. Exon Smith0b0271e2016-04-19 14:55:09 +00003939 Context, *identifier.Val, tag.Val, name.Val, file.Val, line.Val,
3940 scope.Val, baseType.Val, size.Val, align.Val, offset.Val, flags.Val,
3941 elements.Val, runtimeLang.Val, vtableHolder.Val,
3942 templateParams.Val)) {
3943 Result = CT;
3944 return false;
3945 }
Duncan P. N. Exon Smith5ab2be02016-04-17 03:58:21 +00003946
3947 // Create a new node, and save it in the context if it belongs in the type
3948 // map.
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00003949 Result = GET_OR_DISTINCT(
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003950 DICompositeType,
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00003951 (Context, tag.Val, name.Val, file.Val, line.Val, scope.Val, baseType.Val,
3952 size.Val, align.Val, offset.Val, flags.Val, elements.Val,
3953 runtimeLang.Val, vtableHolder.Val, templateParams.Val, identifier.Val));
3954 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003955}
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00003956
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003957bool LLParser::ParseDISubroutineType(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith54e2bc62015-02-13 01:22:59 +00003958#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith70ab3d22015-02-21 01:02:18 +00003959 OPTIONAL(flags, DIFlagField, ); \
Reid Klecknerde3d8b52016-06-08 20:34:29 +00003960 OPTIONAL(cc, DwarfCCField, ); \
Duncan P. N. Exon Smith54e2bc62015-02-13 01:22:59 +00003961 REQUIRED(types, MDField, );
3962 PARSE_MD_FIELDS();
3963#undef VISIT_MD_FIELDS
3964
Reid Klecknerde3d8b52016-06-08 20:34:29 +00003965 Result = GET_OR_DISTINCT(DISubroutineType,
3966 (Context, flags.Val, cc.Val, types.Val));
Duncan P. N. Exon Smith54e2bc62015-02-13 01:22:59 +00003967 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003968}
Duncan P. N. Exon Smithf14b9c72015-02-13 01:19:14 +00003969
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003970/// ParseDIFileType:
3971/// ::= !DIFileType(filename: "path/to/file", directory: "/path/to/dir")
3972bool LLParser::ParseDIFile(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smithf14b9c72015-02-13 01:19:14 +00003973#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
3974 REQUIRED(filename, MDStringField, ); \
3975 REQUIRED(directory, MDStringField, );
3976 PARSE_MD_FIELDS();
3977#undef VISIT_MD_FIELDS
3978
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003979 Result = GET_OR_DISTINCT(DIFile, (Context, filename.Val, directory.Val));
Duncan P. N. Exon Smithf14b9c72015-02-13 01:19:14 +00003980 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003981}
Duncan P. N. Exon Smithf14b9c72015-02-13 01:19:14 +00003982
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003983/// ParseDICompileUnit:
3984/// ::= !DICompileUnit(language: DW_LANG_C99, file: !0, producer: "clang",
Duncan P. N. Exon Smithc1f1acc2015-02-13 01:25:10 +00003985/// isOptimized: true, flags: "-O2", runtimeVersion: 1,
Adrian Prantlb939a252016-03-31 23:56:58 +00003986/// splitDebugFilename: "abc.debug",
Adrian Prantl75819ae2016-04-15 15:57:41 +00003987/// emissionKind: FullDebug, enums: !1, retainedTypes: !2,
Amjad Abouda9bcf162015-12-10 12:56:35 +00003988/// globals: !4, imports: !5, macros: !6, dwoId: 0x0abcd)
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003989bool LLParser::ParseDICompileUnit(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith55ca9642015-08-03 17:26:41 +00003990 if (!IsDistinct)
3991 return Lex.Error("missing 'distinct', required for !DICompileUnit");
3992
Duncan P. N. Exon Smithc1f1acc2015-02-13 01:25:10 +00003993#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
3994 REQUIRED(language, DwarfLangField, ); \
Duncan P. N. Exon Smithcd07efa12015-03-31 00:47:15 +00003995 REQUIRED(file, MDField, (/* AllowNull */ false)); \
Duncan P. N. Exon Smithc1f1acc2015-02-13 01:25:10 +00003996 OPTIONAL(producer, MDStringField, ); \
3997 OPTIONAL(isOptimized, MDBoolField, ); \
3998 OPTIONAL(flags, MDStringField, ); \
3999 OPTIONAL(runtimeVersion, MDUnsignedField, (0, UINT32_MAX)); \
4000 OPTIONAL(splitDebugFilename, MDStringField, ); \
Adrian Prantlb939a252016-03-31 23:56:58 +00004001 OPTIONAL(emissionKind, EmissionKindField, ); \
Duncan P. N. Exon Smithc1f1acc2015-02-13 01:25:10 +00004002 OPTIONAL(enums, MDField, ); \
4003 OPTIONAL(retainedTypes, MDField, ); \
Duncan P. N. Exon Smithc1f1acc2015-02-13 01:25:10 +00004004 OPTIONAL(globals, MDField, ); \
Adrian Prantl1f599f92015-05-21 20:37:30 +00004005 OPTIONAL(imports, MDField, ); \
Amjad Abouda9bcf162015-12-10 12:56:35 +00004006 OPTIONAL(macros, MDField, ); \
David Blaikiea01f2952016-08-24 18:29:49 +00004007 OPTIONAL(dwoId, MDUnsignedField, ); \
4008 OPTIONAL(splitDebugInlining, MDBoolField, = true);
Duncan P. N. Exon Smithc1f1acc2015-02-13 01:25:10 +00004009 PARSE_MD_FIELDS();
4010#undef VISIT_MD_FIELDS
4011
Duncan P. N. Exon Smith55ca9642015-08-03 17:26:41 +00004012 Result = DICompileUnit::getDistinct(
4013 Context, language.Val, file.Val, producer.Val, isOptimized.Val, flags.Val,
4014 runtimeVersion.Val, splitDebugFilename.Val, emissionKind.Val, enums.Val,
David Blaikiea01f2952016-08-24 18:29:49 +00004015 retainedTypes.Val, globals.Val, imports.Val, macros.Val, dwoId.Val,
4016 splitDebugInlining.Val);
Duncan P. N. Exon Smithc1f1acc2015-02-13 01:25:10 +00004017 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00004018}
Duncan P. N. Exon Smithc1f1acc2015-02-13 01:25:10 +00004019
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004020/// ParseDISubprogram:
4021/// ::= !DISubprogram(scope: !0, name: "foo", linkageName: "_Zfoo",
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00004022/// file: !1, line: 7, type: !2, isLocal: false,
4023/// isDefinition: true, scopeLine: 8, containingType: !3,
Duncan P. N. Exon Smith890533e2015-02-13 01:28:16 +00004024/// virtuality: DW_VIRTUALTIY_pure_virtual,
Reid Klecknerb5af11d2016-07-01 02:41:21 +00004025/// virtualIndex: 10, thisAdjustment: 4, flags: 11,
Peter Collingbourned4bff302015-11-05 22:03:56 +00004026/// isOptimized: false, templateParams: !4, declaration: !5,
4027/// variables: !6)
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004028bool LLParser::ParseDISubprogram(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith814b8e92015-08-28 20:26:49 +00004029 auto Loc = Lex.getLoc();
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00004030#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
4031 OPTIONAL(scope, MDField, ); \
Duncan P. N. Exon Smith3eea1962015-03-16 19:01:54 +00004032 OPTIONAL(name, MDStringField, ); \
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00004033 OPTIONAL(linkageName, MDStringField, ); \
4034 OPTIONAL(file, MDField, ); \
4035 OPTIONAL(line, LineField, ); \
4036 OPTIONAL(type, MDField, ); \
4037 OPTIONAL(isLocal, MDBoolField, ); \
4038 OPTIONAL(isDefinition, MDBoolField, (true)); \
4039 OPTIONAL(scopeLine, LineField, ); \
4040 OPTIONAL(containingType, MDField, ); \
Duncan P. N. Exon Smith890533e2015-02-13 01:28:16 +00004041 OPTIONAL(virtuality, DwarfVirtualityField, ); \
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00004042 OPTIONAL(virtualIndex, MDUnsignedField, (0, UINT32_MAX)); \
Reid Klecknerb5af11d2016-07-01 02:41:21 +00004043 OPTIONAL(thisAdjustment, MDSignedField, (0, INT32_MIN, INT32_MAX)); \
Duncan P. N. Exon Smith70ab3d22015-02-21 01:02:18 +00004044 OPTIONAL(flags, DIFlagField, ); \
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00004045 OPTIONAL(isOptimized, MDBoolField, ); \
Adrian Prantl75819ae2016-04-15 15:57:41 +00004046 OPTIONAL(unit, MDField, ); \
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00004047 OPTIONAL(templateParams, MDField, ); \
4048 OPTIONAL(declaration, MDField, ); \
4049 OPTIONAL(variables, MDField, );
4050 PARSE_MD_FIELDS();
4051#undef VISIT_MD_FIELDS
4052
Duncan P. N. Exon Smith814b8e92015-08-28 20:26:49 +00004053 if (isDefinition.Val && !IsDistinct)
4054 return Lex.Error(
4055 Loc,
4056 "missing 'distinct', required for !DISubprogram when 'isDefinition'");
4057
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00004058 Result = GET_OR_DISTINCT(
Adrian Prantl75819ae2016-04-15 15:57:41 +00004059 DISubprogram, (Context, scope.Val, name.Val, linkageName.Val, file.Val,
4060 line.Val, type.Val, isLocal.Val, isDefinition.Val,
4061 scopeLine.Val, containingType.Val, virtuality.Val,
Reid Klecknerb5af11d2016-07-01 02:41:21 +00004062 virtualIndex.Val, thisAdjustment.Val, flags.Val,
4063 isOptimized.Val, unit.Val, templateParams.Val,
4064 declaration.Val, variables.Val));
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00004065 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00004066}
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00004067
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004068/// ParseDILexicalBlock:
4069/// ::= !DILexicalBlock(scope: !0, file: !2, line: 7, column: 9)
4070bool LLParser::ParseDILexicalBlock(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smitha96d4092015-02-13 01:29:28 +00004071#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith0e202b92015-03-30 16:37:48 +00004072 REQUIRED(scope, MDField, (/* AllowNull */ false)); \
Duncan P. N. Exon Smitha96d4092015-02-13 01:29:28 +00004073 OPTIONAL(file, MDField, ); \
4074 OPTIONAL(line, LineField, ); \
4075 OPTIONAL(column, ColumnField, );
4076 PARSE_MD_FIELDS();
4077#undef VISIT_MD_FIELDS
4078
4079 Result = GET_OR_DISTINCT(
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004080 DILexicalBlock, (Context, scope.Val, file.Val, line.Val, column.Val));
Duncan P. N. Exon Smitha96d4092015-02-13 01:29:28 +00004081 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00004082}
Duncan P. N. Exon Smitha96d4092015-02-13 01:29:28 +00004083
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004084/// ParseDILexicalBlockFile:
4085/// ::= !DILexicalBlockFile(scope: !0, file: !2, discriminator: 9)
4086bool LLParser::ParseDILexicalBlockFile(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith06a07022015-02-13 01:30:42 +00004087#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith0e202b92015-03-30 16:37:48 +00004088 REQUIRED(scope, MDField, (/* AllowNull */ false)); \
Duncan P. N. Exon Smith06a07022015-02-13 01:30:42 +00004089 OPTIONAL(file, MDField, ); \
4090 REQUIRED(discriminator, MDUnsignedField, (0, UINT32_MAX));
4091 PARSE_MD_FIELDS();
4092#undef VISIT_MD_FIELDS
4093
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004094 Result = GET_OR_DISTINCT(DILexicalBlockFile,
Duncan P. N. Exon Smith06a07022015-02-13 01:30:42 +00004095 (Context, scope.Val, file.Val, discriminator.Val));
4096 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00004097}
Duncan P. N. Exon Smith06a07022015-02-13 01:30:42 +00004098
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004099/// ParseDINamespace:
4100/// ::= !DINamespace(scope: !0, file: !2, name: "SomeNamespace", line: 9)
4101bool LLParser::ParseDINamespace(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smithe1460002015-02-13 01:32:09 +00004102#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
4103 REQUIRED(scope, MDField, ); \
4104 OPTIONAL(file, MDField, ); \
4105 OPTIONAL(name, MDStringField, ); \
Adrian Prantldbfda632016-11-03 19:42:02 +00004106 OPTIONAL(line, LineField, ); \
4107 OPTIONAL(exportSymbols, MDBoolField, );
Duncan P. N. Exon Smithe1460002015-02-13 01:32:09 +00004108 PARSE_MD_FIELDS();
4109#undef VISIT_MD_FIELDS
4110
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004111 Result = GET_OR_DISTINCT(DINamespace,
Adrian Prantldbfda632016-11-03 19:42:02 +00004112 (Context, scope.Val, file.Val, name.Val, line.Val, exportSymbols.Val));
Duncan P. N. Exon Smithe1460002015-02-13 01:32:09 +00004113 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00004114}
Duncan P. N. Exon Smithe1460002015-02-13 01:32:09 +00004115
Amjad Abouda9bcf162015-12-10 12:56:35 +00004116/// ParseDIMacro:
4117/// ::= !DIMacro(macinfo: type, line: 9, name: "SomeMacro", value: "SomeValue")
4118bool LLParser::ParseDIMacro(MDNode *&Result, bool IsDistinct) {
4119#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
4120 REQUIRED(type, DwarfMacinfoTypeField, ); \
4121 REQUIRED(line, LineField, ); \
4122 REQUIRED(name, MDStringField, ); \
4123 OPTIONAL(value, MDStringField, );
4124 PARSE_MD_FIELDS();
4125#undef VISIT_MD_FIELDS
4126
4127 Result = GET_OR_DISTINCT(DIMacro,
4128 (Context, type.Val, line.Val, name.Val, value.Val));
4129 return false;
4130}
4131
4132/// ParseDIMacroFile:
4133/// ::= !DIMacroFile(line: 9, file: !2, nodes: !3)
4134bool LLParser::ParseDIMacroFile(MDNode *&Result, bool IsDistinct) {
4135#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
4136 OPTIONAL(type, DwarfMacinfoTypeField, (dwarf::DW_MACINFO_start_file)); \
4137 REQUIRED(line, LineField, ); \
4138 REQUIRED(file, MDField, ); \
4139 OPTIONAL(nodes, MDField, );
4140 PARSE_MD_FIELDS();
4141#undef VISIT_MD_FIELDS
4142
4143 Result = GET_OR_DISTINCT(DIMacroFile,
4144 (Context, type.Val, line.Val, file.Val, nodes.Val));
4145 return false;
4146}
4147
Adrian Prantlab1243f2015-06-29 23:03:47 +00004148/// ParseDIModule:
4149/// ::= !DIModule(scope: !0, name: "SomeModule", configMacros: "-DNDEBUG",
4150/// includePath: "/usr/include", isysroot: "/")
4151bool LLParser::ParseDIModule(MDNode *&Result, bool IsDistinct) {
4152#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
4153 REQUIRED(scope, MDField, ); \
4154 REQUIRED(name, MDStringField, ); \
4155 OPTIONAL(configMacros, MDStringField, ); \
4156 OPTIONAL(includePath, MDStringField, ); \
4157 OPTIONAL(isysroot, MDStringField, );
4158 PARSE_MD_FIELDS();
4159#undef VISIT_MD_FIELDS
4160
4161 Result = GET_OR_DISTINCT(DIModule, (Context, scope.Val, name.Val,
4162 configMacros.Val, includePath.Val, isysroot.Val));
4163 return false;
4164}
4165
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004166/// ParseDITemplateTypeParameter:
4167/// ::= !DITemplateTypeParameter(name: "Ty", type: !1)
4168bool LLParser::ParseDITemplateTypeParameter(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith2847f382015-02-13 01:34:32 +00004169#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith2847f382015-02-13 01:34:32 +00004170 OPTIONAL(name, MDStringField, ); \
4171 REQUIRED(type, MDField, );
4172 PARSE_MD_FIELDS();
4173#undef VISIT_MD_FIELDS
4174
Duncan P. N. Exon Smith3d62bba2015-02-19 00:37:21 +00004175 Result =
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004176 GET_OR_DISTINCT(DITemplateTypeParameter, (Context, name.Val, type.Val));
Duncan P. N. Exon Smith2847f382015-02-13 01:34:32 +00004177 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00004178}
Duncan P. N. Exon Smith2847f382015-02-13 01:34:32 +00004179
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004180/// ParseDITemplateValueParameter:
4181/// ::= !DITemplateValueParameter(tag: DW_TAG_template_value_parameter,
Duncan P. N. Exon Smith3d62bba2015-02-19 00:37:21 +00004182/// name: "V", type: !1, value: i32 7)
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004183bool LLParser::ParseDITemplateValueParameter(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith2847f382015-02-13 01:34:32 +00004184#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith16d182a2015-02-28 23:21:38 +00004185 OPTIONAL(tag, DwarfTagField, (dwarf::DW_TAG_template_value_parameter)); \
Duncan P. N. Exon Smith2847f382015-02-13 01:34:32 +00004186 OPTIONAL(name, MDStringField, ); \
Duncan P. N. Exon Smith16d182a2015-02-28 23:21:38 +00004187 OPTIONAL(type, MDField, ); \
Duncan P. N. Exon Smith2847f382015-02-13 01:34:32 +00004188 REQUIRED(value, MDField, );
4189 PARSE_MD_FIELDS();
4190#undef VISIT_MD_FIELDS
4191
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004192 Result = GET_OR_DISTINCT(DITemplateValueParameter,
Duncan P. N. Exon Smith3d62bba2015-02-19 00:37:21 +00004193 (Context, tag.Val, name.Val, type.Val, value.Val));
Duncan P. N. Exon Smith2847f382015-02-13 01:34:32 +00004194 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00004195}
Duncan P. N. Exon Smith2847f382015-02-13 01:34:32 +00004196
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004197/// ParseDIGlobalVariable:
4198/// ::= !DIGlobalVariable(scope: !0, name: "foo", linkageName: "foo",
Duncan P. N. Exon Smithc8f810a2015-02-13 01:35:40 +00004199/// file: !1, line: 7, type: !2, isLocal: false,
Adrian Prantlbceaaa92016-12-20 02:09:43 +00004200/// isDefinition: true, declaration: !3, align: 8)
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004201bool LLParser::ParseDIGlobalVariable(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smithc8f810a2015-02-13 01:35:40 +00004202#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith94d58f82015-03-31 01:28:22 +00004203 REQUIRED(name, MDStringField, (/* AllowEmpty */ false)); \
Duncan P. N. Exon Smithc8f810a2015-02-13 01:35:40 +00004204 OPTIONAL(scope, MDField, ); \
Duncan P. N. Exon Smithc8f810a2015-02-13 01:35:40 +00004205 OPTIONAL(linkageName, MDStringField, ); \
4206 OPTIONAL(file, MDField, ); \
4207 OPTIONAL(line, LineField, ); \
4208 OPTIONAL(type, MDField, ); \
4209 OPTIONAL(isLocal, MDBoolField, ); \
4210 OPTIONAL(isDefinition, MDBoolField, (true)); \
Victor Leschuk2ede1262016-10-20 00:13:12 +00004211 OPTIONAL(declaration, MDField, ); \
4212 OPTIONAL(align, MDUnsignedField, (0, UINT32_MAX));
Duncan P. N. Exon Smithc8f810a2015-02-13 01:35:40 +00004213 PARSE_MD_FIELDS();
4214#undef VISIT_MD_FIELDS
4215
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004216 Result = GET_OR_DISTINCT(DIGlobalVariable,
Duncan P. N. Exon Smithc8f810a2015-02-13 01:35:40 +00004217 (Context, scope.Val, name.Val, linkageName.Val,
4218 file.Val, line.Val, type.Val, isLocal.Val,
Adrian Prantlbceaaa92016-12-20 02:09:43 +00004219 isDefinition.Val, declaration.Val, align.Val));
Duncan P. N. Exon Smithc8f810a2015-02-13 01:35:40 +00004220 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00004221}
Duncan P. N. Exon Smithc8f810a2015-02-13 01:35:40 +00004222
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004223/// ParseDILocalVariable:
Duncan P. N. Exon Smithed013cd2015-07-31 18:58:39 +00004224/// ::= !DILocalVariable(arg: 7, scope: !0, name: "foo",
Victor Leschuk2ede1262016-10-20 00:13:12 +00004225/// file: !1, line: 7, type: !2, arg: 2, flags: 7,
4226/// align: 8)
Duncan P. N. Exon Smithed013cd2015-07-31 18:58:39 +00004227/// ::= !DILocalVariable(scope: !0, name: "foo",
Victor Leschuk2ede1262016-10-20 00:13:12 +00004228/// file: !1, line: 7, type: !2, arg: 2, flags: 7,
4229/// align: 8)
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004230bool LLParser::ParseDILocalVariable(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith72fe2d02015-02-13 01:39:44 +00004231#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smithe2c61d92015-03-27 17:56:39 +00004232 REQUIRED(scope, MDField, (/* AllowNull */ false)); \
Duncan P. N. Exon Smith72fe2d02015-02-13 01:39:44 +00004233 OPTIONAL(name, MDStringField, ); \
Duncan P. N. Exon Smithed013cd2015-07-31 18:58:39 +00004234 OPTIONAL(arg, MDUnsignedField, (0, UINT16_MAX)); \
Duncan P. N. Exon Smith72fe2d02015-02-13 01:39:44 +00004235 OPTIONAL(file, MDField, ); \
4236 OPTIONAL(line, LineField, ); \
4237 OPTIONAL(type, MDField, ); \
Victor Leschuk2ede1262016-10-20 00:13:12 +00004238 OPTIONAL(flags, DIFlagField, ); \
4239 OPTIONAL(align, MDUnsignedField, (0, UINT32_MAX));
Duncan P. N. Exon Smith72fe2d02015-02-13 01:39:44 +00004240 PARSE_MD_FIELDS();
4241#undef VISIT_MD_FIELDS
4242
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004243 Result = GET_OR_DISTINCT(DILocalVariable,
Duncan P. N. Exon Smithed013cd2015-07-31 18:58:39 +00004244 (Context, scope.Val, name.Val, file.Val, line.Val,
Victor Leschuk2ede1262016-10-20 00:13:12 +00004245 type.Val, arg.Val, flags.Val, align.Val));
Duncan P. N. Exon Smith72fe2d02015-02-13 01:39:44 +00004246 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00004247}
Duncan P. N. Exon Smith72fe2d02015-02-13 01:39:44 +00004248
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004249/// ParseDIExpression:
4250/// ::= !DIExpression(0, 7, -1)
4251bool LLParser::ParseDIExpression(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith0c5c0122015-02-13 01:42:09 +00004252 assert(Lex.getKind() == lltok::MetadataVar && "Expected metadata type name");
4253 Lex.Lex();
4254
4255 if (ParseToken(lltok::lparen, "expected '(' here"))
4256 return true;
4257
4258 SmallVector<uint64_t, 8> Elements;
4259 if (Lex.getKind() != lltok::rparen)
4260 do {
4261 if (Lex.getKind() == lltok::DwarfOp) {
4262 if (unsigned Op = dwarf::getOperationEncoding(Lex.getStrVal())) {
4263 Lex.Lex();
4264 Elements.push_back(Op);
4265 continue;
4266 }
4267 return TokError(Twine("invalid DWARF op '") + Lex.getStrVal() + "'");
4268 }
4269
4270 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned())
4271 return TokError("expected unsigned integer");
4272
4273 auto &U = Lex.getAPSIntVal();
4274 if (U.ugt(UINT64_MAX))
4275 return TokError("element too large, limit is " + Twine(UINT64_MAX));
4276 Elements.push_back(U.getZExtValue());
4277 Lex.Lex();
4278 } while (EatIfPresent(lltok::comma));
4279
4280 if (ParseToken(lltok::rparen, "expected ')' here"))
4281 return true;
4282
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004283 Result = GET_OR_DISTINCT(DIExpression, (Context, Elements));
Duncan P. N. Exon Smith0c5c0122015-02-13 01:42:09 +00004284 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00004285}
Duncan P. N. Exon Smith0c5c0122015-02-13 01:42:09 +00004286
Adrian Prantlbceaaa92016-12-20 02:09:43 +00004287/// ParseDIGlobalVariableExpression:
4288/// ::= !DIGlobalVariableExpression(var: !0, expr: !1)
4289bool LLParser::ParseDIGlobalVariableExpression(MDNode *&Result,
4290 bool IsDistinct) {
4291#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
4292 REQUIRED(var, MDField, ); \
4293 OPTIONAL(expr, MDField, );
4294 PARSE_MD_FIELDS();
4295#undef VISIT_MD_FIELDS
4296
4297 Result =
4298 GET_OR_DISTINCT(DIGlobalVariableExpression, (Context, var.Val, expr.Val));
4299 return false;
4300}
4301
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004302/// ParseDIObjCProperty:
4303/// ::= !DIObjCProperty(name: "foo", file: !1, line: 7, setter: "setFoo",
Duncan P. N. Exon Smithd45ce962015-02-13 01:43:22 +00004304/// getter: "getFoo", attributes: 7, type: !2)
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004305bool LLParser::ParseDIObjCProperty(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smithd45ce962015-02-13 01:43:22 +00004306#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith3eea1962015-03-16 19:01:54 +00004307 OPTIONAL(name, MDStringField, ); \
Duncan P. N. Exon Smithd45ce962015-02-13 01:43:22 +00004308 OPTIONAL(file, MDField, ); \
4309 OPTIONAL(line, LineField, ); \
4310 OPTIONAL(setter, MDStringField, ); \
4311 OPTIONAL(getter, MDStringField, ); \
4312 OPTIONAL(attributes, MDUnsignedField, (0, UINT32_MAX)); \
4313 OPTIONAL(type, MDField, );
4314 PARSE_MD_FIELDS();
4315#undef VISIT_MD_FIELDS
4316
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004317 Result = GET_OR_DISTINCT(DIObjCProperty,
Duncan P. N. Exon Smithd45ce962015-02-13 01:43:22 +00004318 (Context, name.Val, file.Val, line.Val, setter.Val,
4319 getter.Val, attributes.Val, type.Val));
4320 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00004321}
Duncan P. N. Exon Smithd45ce962015-02-13 01:43:22 +00004322
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004323/// ParseDIImportedEntity:
4324/// ::= !DIImportedEntity(tag: DW_TAG_imported_module, scope: !0, entity: !1,
Duncan P. N. Exon Smith1c931162015-02-13 01:46:02 +00004325/// line: 7, name: "foo")
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004326bool LLParser::ParseDIImportedEntity(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith1c931162015-02-13 01:46:02 +00004327#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
4328 REQUIRED(tag, DwarfTagField, ); \
4329 REQUIRED(scope, MDField, ); \
4330 OPTIONAL(entity, MDField, ); \
4331 OPTIONAL(line, LineField, ); \
4332 OPTIONAL(name, MDStringField, );
4333 PARSE_MD_FIELDS();
4334#undef VISIT_MD_FIELDS
4335
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004336 Result = GET_OR_DISTINCT(DIImportedEntity, (Context, tag.Val, scope.Val,
Duncan P. N. Exon Smith1c931162015-02-13 01:46:02 +00004337 entity.Val, line.Val, name.Val));
4338 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00004339}
Duncan P. N. Exon Smith1c931162015-02-13 01:46:02 +00004340
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00004341#undef PARSE_MD_FIELD
Duncan P. N. Exon Smith2a6b5fc2015-01-19 23:44:41 +00004342#undef NOP_FIELD
4343#undef REQUIRE_FIELD
4344#undef DECLARE_FIELD
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00004345
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00004346/// ParseMetadataAsValue
4347/// ::= metadata i32 %local
4348/// ::= metadata i32 @global
4349/// ::= metadata i32 7
4350/// ::= metadata !0
4351/// ::= metadata !{...}
4352/// ::= metadata !"string"
4353bool LLParser::ParseMetadataAsValue(Value *&V, PerFunctionState &PFS) {
4354 // Note: the type 'metadata' has already been parsed.
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00004355 Metadata *MD;
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00004356 if (ParseMetadata(MD, &PFS))
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00004357 return true;
4358
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00004359 V = MetadataAsValue::get(Context, MD);
4360 return false;
4361}
4362
4363/// ParseValueAsMetadata
4364/// ::= i32 %local
4365/// ::= i32 @global
4366/// ::= i32 7
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00004367bool LLParser::ParseValueAsMetadata(Metadata *&MD, const Twine &TypeMsg,
4368 PerFunctionState *PFS) {
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00004369 Type *Ty;
4370 LocTy Loc;
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00004371 if (ParseType(Ty, TypeMsg, Loc))
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00004372 return true;
4373 if (Ty->isMetadataTy())
4374 return Error(Loc, "invalid metadata-value-metadata roundtrip");
4375
4376 Value *V;
4377 if (ParseValue(Ty, V, PFS))
4378 return true;
4379
4380 MD = ValueAsMetadata::get(V);
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00004381 return false;
4382}
4383
4384/// ParseMetadata
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00004385/// ::= i32 %local
4386/// ::= i32 @global
4387/// ::= i32 7
Dan Gohman8939ba332010-07-14 18:26:50 +00004388/// ::= !42
4389/// ::= !{...}
4390/// ::= !"string"
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004391/// ::= !DILocation(...)
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00004392bool LLParser::ParseMetadata(Metadata *&MD, PerFunctionState *PFS) {
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00004393 if (Lex.getKind() == lltok::MetadataVar) {
4394 MDNode *N;
4395 if (ParseSpecializedMDNode(N))
4396 return true;
4397 MD = N;
4398 return false;
4399 }
4400
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00004401 // ValueAsMetadata:
4402 // <type> <value>
4403 if (Lex.getKind() != lltok::exclaim)
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00004404 return ParseValueAsMetadata(MD, "expected metadata operand", PFS);
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00004405
4406 // '!'.
4407 assert(Lex.getKind() == lltok::exclaim && "Expected '!' here");
4408 Lex.Lex();
Dan Gohman8939ba332010-07-14 18:26:50 +00004409
Duncan P. N. Exon Smith62a79192015-01-12 22:24:50 +00004410 // MDString:
4411 // ::= '!' STRINGCONSTANT
4412 if (Lex.getKind() == lltok::StringConstant) {
4413 MDString *S;
4414 if (ParseMDString(S))
4415 return true;
4416 MD = S;
4417 return false;
4418 }
4419
Dan Gohman8939ba332010-07-14 18:26:50 +00004420 // MDNode:
4421 // !{ ... }
Duncan P. N. Exon Smithf825dae2015-01-12 22:26:48 +00004422 // !7
Duncan P. N. Exon Smith62a79192015-01-12 22:24:50 +00004423 MDNode *N;
Duncan P. N. Exon Smithf825dae2015-01-12 22:26:48 +00004424 if (ParseMDNodeTail(N))
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00004425 return true;
Duncan P. N. Exon Smith62a79192015-01-12 22:24:50 +00004426 MD = N;
Dan Gohman8939ba332010-07-14 18:26:50 +00004427 return false;
4428}
4429
Victor Hernandez9d75c962010-01-11 22:31:58 +00004430//===----------------------------------------------------------------------===//
4431// Function Parsing.
4432//===----------------------------------------------------------------------===//
4433
Chris Lattner229907c2011-07-18 04:54:35 +00004434bool LLParser::ConvertValIDToValue(Type *Ty, ValID &ID, Value *&V,
David Majnemer8a1c45d2015-12-12 05:38:55 +00004435 PerFunctionState *PFS) {
Duncan Sands19d0b472010-02-16 11:11:14 +00004436 if (Ty->isFunctionTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00004437 return Error(ID.Loc, "functions are not values, refer to them as pointers");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004438
Chris Lattnerac161bf2009-01-02 07:01:27 +00004439 switch (ID.Kind) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00004440 case ValID::t_LocalID:
Victor Hernandez9d75c962010-01-11 22:31:58 +00004441 if (!PFS) return Error(ID.Loc, "invalid use of function-local name");
David Majnemer8a1c45d2015-12-12 05:38:55 +00004442 V = PFS->GetVal(ID.UIntVal, Ty, ID.Loc);
Craig Topper2617dcc2014-04-15 06:32:26 +00004443 return V == nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004444 case ValID::t_LocalName:
Victor Hernandez9d75c962010-01-11 22:31:58 +00004445 if (!PFS) return Error(ID.Loc, "invalid use of function-local name");
David Majnemer8a1c45d2015-12-12 05:38:55 +00004446 V = PFS->GetVal(ID.StrVal, Ty, ID.Loc);
Craig Topper2617dcc2014-04-15 06:32:26 +00004447 return V == nullptr;
Victor Hernandez9d75c962010-01-11 22:31:58 +00004448 case ValID::t_InlineAsm: {
Karl Schimpf44876c52015-09-03 16:18:32 +00004449 if (!ID.FTy || !InlineAsm::Verify(ID.FTy, ID.StrVal2))
Victor Hernandez9d75c962010-01-11 22:31:58 +00004450 return Error(ID.Loc, "invalid type for inline asm constraint string");
David Blaikie41ba2b42015-07-27 23:32:19 +00004451 V = InlineAsm::get(ID.FTy, ID.StrVal, ID.StrVal2, ID.UIntVal & 1,
4452 (ID.UIntVal >> 1) & 1,
4453 (InlineAsm::AsmDialect(ID.UIntVal >> 2)));
Victor Hernandez9d75c962010-01-11 22:31:58 +00004454 return false;
4455 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00004456 case ValID::t_GlobalName:
4457 V = GetGlobalVal(ID.StrVal, Ty, ID.Loc);
Craig Topper2617dcc2014-04-15 06:32:26 +00004458 return V == nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004459 case ValID::t_GlobalID:
4460 V = GetGlobalVal(ID.UIntVal, Ty, ID.Loc);
Craig Topper2617dcc2014-04-15 06:32:26 +00004461 return V == nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004462 case ValID::t_APSInt:
Duncan Sands19d0b472010-02-16 11:11:14 +00004463 if (!Ty->isIntegerTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00004464 return Error(ID.Loc, "integer constant must have integer type");
Jay Foad583abbc2010-12-07 08:25:19 +00004465 ID.APSIntVal = ID.APSIntVal.extOrTrunc(Ty->getPrimitiveSizeInBits());
Owen Andersonedb4a702009-07-24 23:12:02 +00004466 V = ConstantInt::get(Context, ID.APSIntVal);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004467 return false;
4468 case ValID::t_APFloat:
Duncan Sands9dff9be2010-02-15 16:12:20 +00004469 if (!Ty->isFloatingPointTy() ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00004470 !ConstantFP::isValueValidForType(Ty, ID.APFloatVal))
4471 return Error(ID.Loc, "floating point constant invalid for type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004472
Dan Gohman518cda42011-12-17 00:04:22 +00004473 // The lexer has no type info, so builds all half, float, and double FP
4474 // constants as double. Fix this here. Long double does not need this.
Stephan Bergmann17c7f702016-12-14 11:57:17 +00004475 if (&ID.APFloatVal.getSemantics() == &APFloat::IEEEdouble()) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00004476 bool Ignored;
Dan Gohman518cda42011-12-17 00:04:22 +00004477 if (Ty->isHalfTy())
Stephan Bergmann17c7f702016-12-14 11:57:17 +00004478 ID.APFloatVal.convert(APFloat::IEEEhalf(), APFloat::rmNearestTiesToEven,
Dan Gohman518cda42011-12-17 00:04:22 +00004479 &Ignored);
4480 else if (Ty->isFloatTy())
Stephan Bergmann17c7f702016-12-14 11:57:17 +00004481 ID.APFloatVal.convert(APFloat::IEEEsingle(), APFloat::rmNearestTiesToEven,
Dan Gohman518cda42011-12-17 00:04:22 +00004482 &Ignored);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004483 }
Owen Anderson69c464d2009-07-27 20:59:43 +00004484 V = ConstantFP::get(Context, ID.APFloatVal);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004485
Chris Lattner8f57d29e2009-01-05 18:24:23 +00004486 if (V->getType() != Ty)
4487 return Error(ID.Loc, "floating point constant does not have type '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00004488 getTypeString(Ty) + "'");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004489
Chris Lattnerac161bf2009-01-02 07:01:27 +00004490 return false;
4491 case ValID::t_Null:
Duncan Sands19d0b472010-02-16 11:11:14 +00004492 if (!Ty->isPointerTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00004493 return Error(ID.Loc, "null must be a pointer type");
Owen Andersonb292b8c2009-07-30 23:03:37 +00004494 V = ConstantPointerNull::get(cast<PointerType>(Ty));
Chris Lattnerac161bf2009-01-02 07:01:27 +00004495 return false;
4496 case ValID::t_Undef:
Chris Lattnerffa07782009-01-05 08:13:38 +00004497 // FIXME: LabelTy should not be a first-class type.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004498 if (!Ty->isFirstClassType() || Ty->isLabelTy())
Chris Lattnerffa07782009-01-05 08:13:38 +00004499 return Error(ID.Loc, "invalid type for undef constant");
Owen Andersonb292b8c2009-07-30 23:03:37 +00004500 V = UndefValue::get(Ty);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004501 return false;
Chris Lattner998fa0a2009-01-05 07:52:51 +00004502 case ValID::t_EmptyArray:
Duncan Sands19d0b472010-02-16 11:11:14 +00004503 if (!Ty->isArrayTy() || cast<ArrayType>(Ty)->getNumElements() != 0)
Chris Lattner998fa0a2009-01-05 07:52:51 +00004504 return Error(ID.Loc, "invalid empty array initializer");
Owen Andersonb292b8c2009-07-30 23:03:37 +00004505 V = UndefValue::get(Ty);
Chris Lattner998fa0a2009-01-05 07:52:51 +00004506 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004507 case ValID::t_Zero:
Chris Lattnerffa07782009-01-05 08:13:38 +00004508 // FIXME: LabelTy should not be a first-class type.
Chris Lattnerfdd87902009-10-05 05:54:46 +00004509 if (!Ty->isFirstClassType() || Ty->isLabelTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00004510 return Error(ID.Loc, "invalid type for null constant");
Owen Anderson5a1acd92009-07-31 20:28:14 +00004511 V = Constant::getNullValue(Ty);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004512 return false;
David Majnemerf0f224d2015-11-11 21:57:16 +00004513 case ValID::t_None:
4514 if (!Ty->isTokenTy())
4515 return Error(ID.Loc, "invalid type for none constant");
4516 V = Constant::getNullValue(Ty);
4517 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004518 case ValID::t_Constant:
Chris Lattner13ee7952010-08-28 04:09:24 +00004519 if (ID.ConstantVal->getType() != Ty)
Chris Lattnerac161bf2009-01-02 07:01:27 +00004520 return Error(ID.Loc, "constant expression type mismatch");
Chris Lattner392be582010-02-12 20:49:41 +00004521
Chris Lattnerac161bf2009-01-02 07:01:27 +00004522 V = ID.ConstantVal;
4523 return false;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004524 case ValID::t_ConstantStruct:
4525 case ValID::t_PackedConstantStruct:
Chris Lattner229907c2011-07-18 04:54:35 +00004526 if (StructType *ST = dyn_cast<StructType>(Ty)) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004527 if (ST->getNumElements() != ID.UIntVal)
4528 return Error(ID.Loc,
4529 "initializer with struct type has wrong # elements");
4530 if (ST->isPacked() != (ID.Kind == ValID::t_PackedConstantStruct))
4531 return Error(ID.Loc, "packed'ness of initializer and type don't match");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004532
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004533 // Verify that the elements are compatible with the structtype.
4534 for (unsigned i = 0, e = ID.UIntVal; i != e; ++i)
4535 if (ID.ConstantStructElts[i]->getType() != ST->getElementType(i))
4536 return Error(ID.Loc, "element " + Twine(i) +
4537 " of struct initializer doesn't match struct element type");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004538
David Blaikieadbda4b2015-08-03 20:08:41 +00004539 V = ConstantStruct::get(
4540 ST, makeArrayRef(ID.ConstantStructElts.get(), ID.UIntVal));
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004541 } else
4542 return Error(ID.Loc, "constant expression type mismatch");
4543 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004544 }
Chandler Carruthf3e85022012-01-10 18:08:01 +00004545 llvm_unreachable("Invalid ValID");
Chris Lattnerac161bf2009-01-02 07:01:27 +00004546}
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004547
Alex Lorenzd2255952015-07-17 22:07:03 +00004548bool LLParser::parseConstantValue(Type *Ty, Constant *&C) {
4549 C = nullptr;
4550 ValID ID;
4551 auto Loc = Lex.getLoc();
4552 if (ParseValID(ID, /*PFS=*/nullptr))
4553 return true;
4554 switch (ID.Kind) {
4555 case ValID::t_APSInt:
4556 case ValID::t_APFloat:
Alex Lorenzb9a68db2015-09-09 13:44:33 +00004557 case ValID::t_Undef:
Alex Lorenzd2255952015-07-17 22:07:03 +00004558 case ValID::t_Constant:
4559 case ValID::t_ConstantStruct:
4560 case ValID::t_PackedConstantStruct: {
4561 Value *V;
4562 if (ConvertValIDToValue(Ty, ID, V, /*PFS=*/nullptr))
4563 return true;
4564 assert(isa<Constant>(V) && "Expected a constant value");
4565 C = cast<Constant>(V);
4566 return false;
4567 }
4568 default:
4569 return Error(Loc, "expected a constant value");
4570 }
4571}
4572
David Majnemer8a1c45d2015-12-12 05:38:55 +00004573bool LLParser::ParseValue(Type *Ty, Value *&V, PerFunctionState *PFS) {
Craig Topper2617dcc2014-04-15 06:32:26 +00004574 V = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004575 ValID ID;
David Majnemer8a1c45d2015-12-12 05:38:55 +00004576 return ParseValID(ID, PFS) || ConvertValIDToValue(Ty, ID, V, PFS);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004577}
4578
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004579bool LLParser::ParseTypeAndValue(Value *&V, PerFunctionState *PFS) {
Craig Topper2617dcc2014-04-15 06:32:26 +00004580 Type *Ty = nullptr;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004581 return ParseType(Ty) ||
4582 ParseValue(Ty, V, PFS);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004583}
4584
Chris Lattner3ed871f2009-10-27 19:13:16 +00004585bool LLParser::ParseTypeAndBasicBlock(BasicBlock *&BB, LocTy &Loc,
4586 PerFunctionState &PFS) {
4587 Value *V;
4588 Loc = Lex.getLoc();
4589 if (ParseTypeAndValue(V, PFS)) return true;
4590 if (!isa<BasicBlock>(V))
4591 return Error(Loc, "expected a basic block");
4592 BB = cast<BasicBlock>(V);
4593 return false;
4594}
4595
Chris Lattnerac161bf2009-01-02 07:01:27 +00004596/// FunctionHeader
4597/// ::= OptionalLinkage OptionalVisibility OptionalCallingConv OptRetAttrs
Rafael Espindola45e6c192011-01-08 16:42:36 +00004598/// OptUnnamedAddr Type GlobalName '(' ArgList ')' OptFuncAttrs OptSection
David Majnemer7fddecc2015-06-17 20:52:32 +00004599/// OptionalAlign OptGC OptionalPrefix OptionalPrologue OptPersonalityFn
Chris Lattnerac161bf2009-01-02 07:01:27 +00004600bool LLParser::ParseFunctionHeader(Function *&Fn, bool isDefine) {
4601 // Parse the linkage.
4602 LocTy LinkageLoc = Lex.getLoc();
4603 unsigned Linkage;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004604
Kostya Serebryanya5054ad2012-01-20 17:56:17 +00004605 unsigned Visibility;
Nico Rieck7157bb72014-01-14 15:22:47 +00004606 unsigned DLLStorageClass;
Bill Wendling50d27842012-10-15 20:35:56 +00004607 AttrBuilder RetAttrs;
Alexey Samsonov17a9cff2014-09-10 18:00:17 +00004608 unsigned CC;
Rafael Espindola2615c9e2016-05-12 12:37:52 +00004609 bool HasLinkage;
Craig Topper2617dcc2014-04-15 06:32:26 +00004610 Type *RetType = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004611 LocTy RetTypeLoc = Lex.getLoc();
Rafael Espindola2615c9e2016-05-12 12:37:52 +00004612 if (ParseOptionalLinkage(Linkage, HasLinkage, Visibility, DLLStorageClass) ||
4613 ParseOptionalCallingConv(CC) || ParseOptionalReturnAttrs(RetAttrs) ||
Chris Lattnerf880ca22009-03-09 04:49:14 +00004614 ParseType(RetType, RetTypeLoc, true /*void allowed*/))
Chris Lattnerac161bf2009-01-02 07:01:27 +00004615 return true;
4616
4617 // Verify that the linkage is ok.
4618 switch ((GlobalValue::LinkageTypes)Linkage) {
4619 case GlobalValue::ExternalLinkage:
4620 break; // always ok.
Duncan Sandse2881052009-03-11 08:08:06 +00004621 case GlobalValue::ExternalWeakLinkage:
Chris Lattnerac161bf2009-01-02 07:01:27 +00004622 if (isDefine)
4623 return Error(LinkageLoc, "invalid linkage for function definition");
4624 break;
Rafael Espindola6de96a12009-01-15 20:18:42 +00004625 case GlobalValue::PrivateLinkage:
Chris Lattnerac161bf2009-01-02 07:01:27 +00004626 case GlobalValue::InternalLinkage:
Nick Lewycky8019af62009-04-13 07:02:02 +00004627 case GlobalValue::AvailableExternallyLinkage:
Duncan Sands12da8ce2009-03-07 15:45:40 +00004628 case GlobalValue::LinkOnceAnyLinkage:
4629 case GlobalValue::LinkOnceODRLinkage:
4630 case GlobalValue::WeakAnyLinkage:
4631 case GlobalValue::WeakODRLinkage:
Chris Lattnerac161bf2009-01-02 07:01:27 +00004632 if (!isDefine)
4633 return Error(LinkageLoc, "invalid linkage for function declaration");
4634 break;
4635 case GlobalValue::AppendingLinkage:
Duncan Sands4581beb2009-03-11 20:14:15 +00004636 case GlobalValue::CommonLinkage:
Chris Lattnerac161bf2009-01-02 07:01:27 +00004637 return Error(LinkageLoc, "invalid function linkage type");
4638 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004639
Duncan P. N. Exon Smithb80de102014-05-07 22:57:20 +00004640 if (!isValidVisibilityForLinkage(Visibility, Linkage))
4641 return Error(LinkageLoc,
4642 "symbol with local linkage must have default visibility");
4643
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004644 if (!FunctionType::isValidReturnType(RetType))
Chris Lattnerac161bf2009-01-02 07:01:27 +00004645 return Error(RetTypeLoc, "invalid function return type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004646
Chris Lattnerac161bf2009-01-02 07:01:27 +00004647 LocTy NameLoc = Lex.getLoc();
Chris Lattner778c62c2009-02-18 21:48:13 +00004648
4649 std::string FunctionName;
4650 if (Lex.getKind() == lltok::GlobalVar) {
4651 FunctionName = Lex.getStrVal();
4652 } else if (Lex.getKind() == lltok::GlobalID) { // @42 is ok.
4653 unsigned NameID = Lex.getUIntVal();
4654
4655 if (NameID != NumberedVals.size())
4656 return TokError("function expected to be numbered '%" +
Benjamin Kramerc7583112010-09-27 17:42:11 +00004657 Twine(NumberedVals.size()) + "'");
Chris Lattner778c62c2009-02-18 21:48:13 +00004658 } else {
4659 return TokError("expected function name");
4660 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004661
Chris Lattner3822f632009-01-02 08:05:26 +00004662 Lex.Lex();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004663
Chris Lattner3822f632009-01-02 08:05:26 +00004664 if (Lex.getKind() != lltok::lparen)
Chris Lattnerac161bf2009-01-02 07:01:27 +00004665 return TokError("expected '(' in function argument list");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004666
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004667 SmallVector<ArgInfo, 8> ArgList;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004668 bool isVarArg;
Bill Wendling50d27842012-10-15 20:35:56 +00004669 AttrBuilder FuncAttrs;
Bill Wendlingb32b0412013-02-08 06:32:06 +00004670 std::vector<unsigned> FwdRefAttrGrps;
Michael Gottesman41748d72013-06-27 00:25:01 +00004671 LocTy BuiltinLoc;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004672 std::string Section;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004673 unsigned Alignment;
Chris Lattner3822f632009-01-02 08:05:26 +00004674 std::string GC;
Peter Collingbourne96efdd62016-06-14 21:01:22 +00004675 GlobalValue::UnnamedAddr UnnamedAddr = GlobalValue::UnnamedAddr::None;
Rafael Espindola563eb4b2011-01-25 19:09:56 +00004676 LocTy UnnamedAddrLoc;
Craig Topper2617dcc2014-04-15 06:32:26 +00004677 Constant *Prefix = nullptr;
Peter Collingbourne51d2de72014-12-03 02:08:38 +00004678 Constant *Prologue = nullptr;
David Majnemer7fddecc2015-06-17 20:52:32 +00004679 Constant *PersonalityFn = nullptr;
David Majnemerdad0a642014-06-27 18:19:56 +00004680 Comdat *C;
Chris Lattner3822f632009-01-02 08:05:26 +00004681
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004682 if (ParseArgumentList(ArgList, isVarArg) ||
Peter Collingbourne96efdd62016-06-14 21:01:22 +00004683 ParseOptionalUnnamedAddr(UnnamedAddr) ||
Bill Wendling09bd1f72013-02-22 00:12:35 +00004684 ParseFnAttributeValuePairs(FuncAttrs, FwdRefAttrGrps, false,
Michael Gottesman41748d72013-06-27 00:25:01 +00004685 BuiltinLoc) ||
Chris Lattner3822f632009-01-02 08:05:26 +00004686 (EatIfPresent(lltok::kw_section) &&
4687 ParseStringConstant(Section)) ||
Rafael Espindola83a362c2015-01-06 22:55:16 +00004688 parseOptionalComdat(FunctionName, C) ||
Chris Lattner3822f632009-01-02 08:05:26 +00004689 ParseOptionalAlignment(Alignment) ||
4690 (EatIfPresent(lltok::kw_gc) &&
Peter Collingbourne3fa50f92013-09-16 01:08:15 +00004691 ParseStringConstant(GC)) ||
4692 (EatIfPresent(lltok::kw_prefix) &&
Peter Collingbourne51d2de72014-12-03 02:08:38 +00004693 ParseGlobalTypeAndValue(Prefix)) ||
4694 (EatIfPresent(lltok::kw_prologue) &&
David Majnemer7fddecc2015-06-17 20:52:32 +00004695 ParseGlobalTypeAndValue(Prologue)) ||
4696 (EatIfPresent(lltok::kw_personality) &&
4697 ParseGlobalTypeAndValue(PersonalityFn)))
Chris Lattner3822f632009-01-02 08:05:26 +00004698 return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004699
Michael Gottesman41748d72013-06-27 00:25:01 +00004700 if (FuncAttrs.contains(Attribute::Builtin))
4701 return Error(BuiltinLoc, "'builtin' attribute not valid on function");
Bill Wendling09bd1f72013-02-22 00:12:35 +00004702
Chris Lattnerac161bf2009-01-02 07:01:27 +00004703 // If the alignment was parsed as an attribute, move to the alignment field.
Bill Wendlingc6daefa2012-10-08 23:27:46 +00004704 if (FuncAttrs.hasAlignmentAttr()) {
Bill Wendling9be77592012-09-21 15:26:31 +00004705 Alignment = FuncAttrs.getAlignment();
Bill Wendling3d7b0b82012-12-19 07:18:57 +00004706 FuncAttrs.removeAttribute(Attribute::Alignment);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004707 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004708
Chris Lattnerac161bf2009-01-02 07:01:27 +00004709 // Okay, if we got here, the function is syntactically valid. Convert types
4710 // and do semantic checks.
Jay Foadb804a2b2011-07-12 14:06:48 +00004711 std::vector<Type*> ParamTypeList;
Bill Wendlingf5075a42013-01-27 02:24:02 +00004712 SmallVector<AttributeSet, 8> Attrs;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004713
Bill Wendling3bef2dd2012-09-19 23:54:18 +00004714 if (RetAttrs.hasAttributes())
Bill Wendlingf5075a42013-01-27 02:24:02 +00004715 Attrs.push_back(AttributeSet::get(RetType->getContext(),
4716 AttributeSet::ReturnIndex,
4717 RetAttrs));
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004718
Chris Lattnerac161bf2009-01-02 07:01:27 +00004719 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004720 ParamTypeList.push_back(ArgList[i].Ty);
Bill Wendlingfe0021a2013-01-31 00:29:54 +00004721 if (ArgList[i].Attrs.hasAttributes(i + 1)) {
4722 AttrBuilder B(ArgList[i].Attrs, i + 1);
Bill Wendlingf5075a42013-01-27 02:24:02 +00004723 Attrs.push_back(AttributeSet::get(RetType->getContext(), i + 1, B));
4724 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00004725 }
4726
Bill Wendling3bef2dd2012-09-19 23:54:18 +00004727 if (FuncAttrs.hasAttributes())
Bill Wendlingf5075a42013-01-27 02:24:02 +00004728 Attrs.push_back(AttributeSet::get(RetType->getContext(),
4729 AttributeSet::FunctionIndex,
4730 FuncAttrs));
Chris Lattnerac161bf2009-01-02 07:01:27 +00004731
Bill Wendlinge94d8432012-12-07 23:16:57 +00004732 AttributeSet PAL = AttributeSet::get(Context, Attrs);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004733
Bill Wendling749a43d2012-12-30 13:50:49 +00004734 if (PAL.hasAttribute(1, Attribute::StructRet) && !RetType->isVoidTy())
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004735 return Error(RetTypeLoc, "functions with 'sret' argument must return void");
4736
Chris Lattner229907c2011-07-18 04:54:35 +00004737 FunctionType *FT =
Owen Anderson4056ca92009-07-29 22:17:13 +00004738 FunctionType::get(RetType, ParamTypeList, isVarArg);
Chris Lattner229907c2011-07-18 04:54:35 +00004739 PointerType *PFT = PointerType::getUnqual(FT);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004740
Craig Topper2617dcc2014-04-15 06:32:26 +00004741 Fn = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004742 if (!FunctionName.empty()) {
4743 // If this was a definition of a forward reference, remove the definition
4744 // from the forward reference table and fill in the forward ref.
David Blaikie9ebdc692015-09-21 21:07:50 +00004745 auto FRVI = ForwardRefVals.find(FunctionName);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004746 if (FRVI != ForwardRefVals.end()) {
4747 Fn = M->getFunction(FunctionName);
Nick Lewycky686d7cb2012-10-11 00:38:25 +00004748 if (!Fn)
4749 return Error(FRVI->second.second, "invalid forward reference to "
4750 "function as global value!");
Chris Lattnerc239eb72010-04-20 04:49:11 +00004751 if (Fn->getType() != PFT)
4752 return Error(FRVI->second.second, "invalid forward reference to "
4753 "function '" + FunctionName + "' with wrong type!");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004754
Chris Lattnerac161bf2009-01-02 07:01:27 +00004755 ForwardRefVals.erase(FRVI);
4756 } else if ((Fn = M->getFunction(FunctionName))) {
Chris Lattner5756c162011-06-17 07:06:44 +00004757 // Reject redefinitions.
4758 return Error(NameLoc, "invalid redefinition of function '" +
4759 FunctionName + "'");
Chris Lattnere38317f2009-10-25 23:22:50 +00004760 } else if (M->getNamedValue(FunctionName)) {
4761 return Error(NameLoc, "redefinition of function '@" + FunctionName + "'");
Chris Lattnerac161bf2009-01-02 07:01:27 +00004762 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004763
Dan Gohman399d6ae2009-08-29 23:37:49 +00004764 } else {
Chris Lattnerac161bf2009-01-02 07:01:27 +00004765 // If this is a definition of a forward referenced function, make sure the
4766 // types agree.
David Blaikie9ebdc692015-09-21 21:07:50 +00004767 auto I = ForwardRefValIDs.find(NumberedVals.size());
Chris Lattnerac161bf2009-01-02 07:01:27 +00004768 if (I != ForwardRefValIDs.end()) {
4769 Fn = cast<Function>(I->second.first);
4770 if (Fn->getType() != PFT)
4771 return Error(NameLoc, "type of definition and forward reference of '@" +
Benjamin Kramerc7583112010-09-27 17:42:11 +00004772 Twine(NumberedVals.size()) + "' disagree");
Chris Lattnerac161bf2009-01-02 07:01:27 +00004773 ForwardRefValIDs.erase(I);
4774 }
4775 }
4776
Craig Topper2617dcc2014-04-15 06:32:26 +00004777 if (!Fn)
Chris Lattnerac161bf2009-01-02 07:01:27 +00004778 Fn = Function::Create(FT, GlobalValue::ExternalLinkage, FunctionName, M);
4779 else // Move the forward-reference to the correct spot in the module.
4780 M->getFunctionList().splice(M->end(), M->getFunctionList(), Fn);
4781
4782 if (FunctionName.empty())
4783 NumberedVals.push_back(Fn);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004784
Chris Lattnerac161bf2009-01-02 07:01:27 +00004785 Fn->setLinkage((GlobalValue::LinkageTypes)Linkage);
4786 Fn->setVisibility((GlobalValue::VisibilityTypes)Visibility);
Nico Rieck7157bb72014-01-14 15:22:47 +00004787 Fn->setDLLStorageClass((GlobalValue::DLLStorageClassTypes)DLLStorageClass);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004788 Fn->setCallingConv(CC);
4789 Fn->setAttributes(PAL);
Rafael Espindola45e6c192011-01-08 16:42:36 +00004790 Fn->setUnnamedAddr(UnnamedAddr);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004791 Fn->setAlignment(Alignment);
4792 Fn->setSection(Section);
David Majnemerdad0a642014-06-27 18:19:56 +00004793 Fn->setComdat(C);
David Majnemer7fddecc2015-06-17 20:52:32 +00004794 Fn->setPersonalityFn(PersonalityFn);
Benjamin Kramer728f4442016-05-29 10:46:35 +00004795 if (!GC.empty()) Fn->setGC(GC);
Peter Collingbourne3fa50f92013-09-16 01:08:15 +00004796 Fn->setPrefixData(Prefix);
Peter Collingbourne51d2de72014-12-03 02:08:38 +00004797 Fn->setPrologueData(Prologue);
Bill Wendlingb32b0412013-02-08 06:32:06 +00004798 ForwardRefAttrGroups[Fn] = FwdRefAttrGrps;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004799
Chris Lattnerac161bf2009-01-02 07:01:27 +00004800 // Add all of the arguments we parsed to the function.
4801 Function::arg_iterator ArgIt = Fn->arg_begin();
4802 for (unsigned i = 0, e = ArgList.size(); i != e; ++i, ++ArgIt) {
4803 // If the argument has a name, insert it into the argument symbol table.
4804 if (ArgList[i].Name.empty()) continue;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004805
Chris Lattnerac161bf2009-01-02 07:01:27 +00004806 // Set the name, if it conflicted, it will be auto-renamed.
4807 ArgIt->setName(ArgList[i].Name);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004808
Benjamin Kramer1dc34b42010-10-16 11:28:23 +00004809 if (ArgIt->getName() != ArgList[i].Name)
Chris Lattnerac161bf2009-01-02 07:01:27 +00004810 return Error(ArgList[i].Loc, "redefinition of argument '%" +
4811 ArgList[i].Name + "'");
4812 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004813
Duncan P. N. Exon Smith17169902014-08-19 00:13:19 +00004814 if (isDefine)
4815 return false;
4816
Robin Morisset039781e2014-08-29 21:53:01 +00004817 // Check the declaration has no block address forward references.
Duncan P. N. Exon Smith17169902014-08-19 00:13:19 +00004818 ValID ID;
4819 if (FunctionName.empty()) {
4820 ID.Kind = ValID::t_GlobalID;
4821 ID.UIntVal = NumberedVals.size() - 1;
4822 } else {
4823 ID.Kind = ValID::t_GlobalName;
4824 ID.StrVal = FunctionName;
4825 }
4826 auto Blocks = ForwardRefBlockAddresses.find(ID);
4827 if (Blocks != ForwardRefBlockAddresses.end())
4828 return Error(Blocks->first.Loc,
4829 "cannot take blockaddress inside a declaration");
Chris Lattnerac161bf2009-01-02 07:01:27 +00004830 return false;
4831}
4832
Duncan P. N. Exon Smith17169902014-08-19 00:13:19 +00004833bool LLParser::PerFunctionState::resolveForwardRefBlockAddresses() {
4834 ValID ID;
4835 if (FunctionNumber == -1) {
4836 ID.Kind = ValID::t_GlobalName;
4837 ID.StrVal = F.getName();
4838 } else {
4839 ID.Kind = ValID::t_GlobalID;
4840 ID.UIntVal = FunctionNumber;
4841 }
4842
4843 auto Blocks = P.ForwardRefBlockAddresses.find(ID);
4844 if (Blocks == P.ForwardRefBlockAddresses.end())
4845 return false;
4846
4847 for (const auto &I : Blocks->second) {
4848 const ValID &BBID = I.first;
4849 GlobalValue *GV = I.second;
4850
4851 assert((BBID.Kind == ValID::t_LocalID || BBID.Kind == ValID::t_LocalName) &&
4852 "Expected local id or name");
4853 BasicBlock *BB;
4854 if (BBID.Kind == ValID::t_LocalName)
4855 BB = GetBB(BBID.StrVal, BBID.Loc);
4856 else
4857 BB = GetBB(BBID.UIntVal, BBID.Loc);
4858 if (!BB)
4859 return P.Error(BBID.Loc, "referenced value is not a basic block");
4860
4861 GV->replaceAllUsesWith(BlockAddress::get(&F, BB));
4862 GV->eraseFromParent();
4863 }
4864
4865 P.ForwardRefBlockAddresses.erase(Blocks);
4866 return false;
4867}
Chris Lattnerac161bf2009-01-02 07:01:27 +00004868
4869/// ParseFunctionBody
Duncan P. N. Exon Smith0a448fb2014-08-19 21:30:15 +00004870/// ::= '{' BasicBlock+ UseListOrderDirective* '}'
Chris Lattnerac161bf2009-01-02 07:01:27 +00004871bool LLParser::ParseFunctionBody(Function &Fn) {
Chris Lattner4649a732011-06-17 06:42:57 +00004872 if (Lex.getKind() != lltok::lbrace)
Chris Lattnerac161bf2009-01-02 07:01:27 +00004873 return TokError("expected '{' in function body");
4874 Lex.Lex(); // eat the {.
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004875
Chris Lattner3432c622009-10-28 03:39:23 +00004876 int FunctionNumber = -1;
4877 if (!Fn.hasName()) FunctionNumber = NumberedVals.size()-1;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004878
Chris Lattner3432c622009-10-28 03:39:23 +00004879 PerFunctionState PFS(*this, Fn, FunctionNumber);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004880
Duncan P. N. Exon Smith17169902014-08-19 00:13:19 +00004881 // Resolve block addresses and allow basic blocks to be forward-declared
4882 // within this function.
4883 if (PFS.resolveForwardRefBlockAddresses())
4884 return true;
4885 SaveAndRestore<PerFunctionState *> ScopeExit(BlockAddressPFS, &PFS);
4886
Chris Lattnerbbddd962010-01-09 19:20:07 +00004887 // We need at least one basic block.
Duncan P. N. Exon Smith0a448fb2014-08-19 21:30:15 +00004888 if (Lex.getKind() == lltok::rbrace || Lex.getKind() == lltok::kw_uselistorder)
Chris Lattnerbbddd962010-01-09 19:20:07 +00004889 return TokError("function body requires at least one basic block");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004890
Duncan P. N. Exon Smith0a448fb2014-08-19 21:30:15 +00004891 while (Lex.getKind() != lltok::rbrace &&
4892 Lex.getKind() != lltok::kw_uselistorder)
Chris Lattnerac161bf2009-01-02 07:01:27 +00004893 if (ParseBasicBlock(PFS)) return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004894
Duncan P. N. Exon Smith0a448fb2014-08-19 21:30:15 +00004895 while (Lex.getKind() != lltok::rbrace)
4896 if (ParseUseListOrder(&PFS))
4897 return true;
4898
Chris Lattnerac161bf2009-01-02 07:01:27 +00004899 // Eat the }.
4900 Lex.Lex();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004901
Chris Lattnerac161bf2009-01-02 07:01:27 +00004902 // Verify function is ok.
Chris Lattner3432c622009-10-28 03:39:23 +00004903 return PFS.FinishFunction();
Chris Lattnerac161bf2009-01-02 07:01:27 +00004904}
4905
4906/// ParseBasicBlock
4907/// ::= LabelStr? Instruction*
4908bool LLParser::ParseBasicBlock(PerFunctionState &PFS) {
4909 // If this basic block starts out with a name, remember it.
4910 std::string Name;
4911 LocTy NameLoc = Lex.getLoc();
4912 if (Lex.getKind() == lltok::LabelStr) {
4913 Name = Lex.getStrVal();
4914 Lex.Lex();
4915 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004916
Chris Lattnerac161bf2009-01-02 07:01:27 +00004917 BasicBlock *BB = PFS.DefineBB(Name, NameLoc);
Owen Anderson576a9a22015-03-02 05:25:09 +00004918 if (!BB)
4919 return Error(NameLoc,
4920 "unable to create block named '" + Name + "'");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004921
Chris Lattnerac161bf2009-01-02 07:01:27 +00004922 std::string NameStr;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004923
Chris Lattnerac161bf2009-01-02 07:01:27 +00004924 // Parse the instructions in this block until we get a terminator.
4925 Instruction *Inst;
4926 do {
4927 // This instruction may have three possibilities for a name: a) none
4928 // specified, b) name specified "%foo =", c) number specified: "%4 =".
4929 LocTy NameLoc = Lex.getLoc();
4930 int NameID = -1;
4931 NameStr = "";
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004932
Chris Lattnerac161bf2009-01-02 07:01:27 +00004933 if (Lex.getKind() == lltok::LocalVarID) {
4934 NameID = Lex.getUIntVal();
4935 Lex.Lex();
4936 if (ParseToken(lltok::equal, "expected '=' after instruction id"))
4937 return true;
Chris Lattnerdef19492011-06-17 06:36:20 +00004938 } else if (Lex.getKind() == lltok::LocalVar) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00004939 NameStr = Lex.getStrVal();
4940 Lex.Lex();
4941 if (ParseToken(lltok::equal, "expected '=' after instruction name"))
4942 return true;
4943 }
Devang Patelea8a4b92009-09-17 23:04:48 +00004944
Chris Lattner77b89dc2009-12-30 05:23:43 +00004945 switch (ParseInstruction(Inst, BB, PFS)) {
Craig Toppera2886c22012-02-07 05:05:23 +00004946 default: llvm_unreachable("Unknown ParseInstruction result!");
Chris Lattner77b89dc2009-12-30 05:23:43 +00004947 case InstError: return true;
4948 case InstNormal:
Chris Lattner2e664bd2010-04-07 04:08:57 +00004949 BB->getInstList().push_back(Inst);
4950
Chris Lattner77b89dc2009-12-30 05:23:43 +00004951 // With a normal result, we check to see if the instruction is followed by
4952 // a comma and metadata.
4953 if (EatIfPresent(lltok::comma))
Duncan P. N. Exon Smith27d702c2015-04-24 21:29:36 +00004954 if (ParseInstructionMetadata(*Inst))
Chris Lattner77b89dc2009-12-30 05:23:43 +00004955 return true;
4956 break;
4957 case InstExtraComma:
Chris Lattner2e664bd2010-04-07 04:08:57 +00004958 BB->getInstList().push_back(Inst);
4959
Chris Lattner77b89dc2009-12-30 05:23:43 +00004960 // If the instruction parser ate an extra comma at the end of it, it
4961 // *must* be followed by metadata.
Duncan P. N. Exon Smith27d702c2015-04-24 21:29:36 +00004962 if (ParseInstructionMetadata(*Inst))
Chris Lattner77b89dc2009-12-30 05:23:43 +00004963 return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004964 break;
Chris Lattner77b89dc2009-12-30 05:23:43 +00004965 }
Devang Patelea8a4b92009-09-17 23:04:48 +00004966
Chris Lattnerac161bf2009-01-02 07:01:27 +00004967 // Set the name on the instruction.
4968 if (PFS.SetInstName(NameID, NameStr, NameLoc, Inst)) return true;
4969 } while (!isa<TerminatorInst>(Inst));
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004970
Chris Lattnerac161bf2009-01-02 07:01:27 +00004971 return false;
4972}
4973
4974//===----------------------------------------------------------------------===//
4975// Instruction Parsing.
4976//===----------------------------------------------------------------------===//
4977
4978/// ParseInstruction - Parse one of the many different instructions.
4979///
Chris Lattner77b89dc2009-12-30 05:23:43 +00004980int LLParser::ParseInstruction(Instruction *&Inst, BasicBlock *BB,
4981 PerFunctionState &PFS) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00004982 lltok::Kind Token = Lex.getKind();
4983 if (Token == lltok::Eof)
4984 return TokError("found end of file when expecting more instructions");
4985 LocTy Loc = Lex.getLoc();
Chris Lattner89d856e2009-03-01 00:53:13 +00004986 unsigned KeywordVal = Lex.getUIntVal();
Chris Lattnerac161bf2009-01-02 07:01:27 +00004987 Lex.Lex(); // Eat the keyword.
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004988
Chris Lattnerac161bf2009-01-02 07:01:27 +00004989 switch (Token) {
4990 default: return Error(Loc, "expected instruction opcode");
4991 // Terminator Instructions.
Owen Anderson55f1c092009-08-13 21:58:54 +00004992 case lltok::kw_unreachable: Inst = new UnreachableInst(Context); return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004993 case lltok::kw_ret: return ParseRet(Inst, BB, PFS);
4994 case lltok::kw_br: return ParseBr(Inst, PFS);
4995 case lltok::kw_switch: return ParseSwitch(Inst, PFS);
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00004996 case lltok::kw_indirectbr: return ParseIndirectBr(Inst, PFS);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004997 case lltok::kw_invoke: return ParseInvoke(Inst, PFS);
Bill Wendlingf891bf82011-07-31 06:30:59 +00004998 case lltok::kw_resume: return ParseResume(Inst, PFS);
David Majnemer654e1302015-07-31 17:58:14 +00004999 case lltok::kw_cleanupret: return ParseCleanupRet(Inst, PFS);
5000 case lltok::kw_catchret: return ParseCatchRet(Inst, PFS);
David Majnemer8a1c45d2015-12-12 05:38:55 +00005001 case lltok::kw_catchswitch: return ParseCatchSwitch(Inst, PFS);
5002 case lltok::kw_catchpad: return ParseCatchPad(Inst, PFS);
David Majnemer8a1c45d2015-12-12 05:38:55 +00005003 case lltok::kw_cleanuppad: return ParseCleanupPad(Inst, PFS);
Chris Lattnerac161bf2009-01-02 07:01:27 +00005004 // Binary Operators.
5005 case lltok::kw_add:
5006 case lltok::kw_sub:
Chris Lattnera676c0f2011-02-07 16:40:21 +00005007 case lltok::kw_mul:
5008 case lltok::kw_shl: {
Chris Lattnera676c0f2011-02-07 16:40:21 +00005009 bool NUW = EatIfPresent(lltok::kw_nuw);
5010 bool NSW = EatIfPresent(lltok::kw_nsw);
5011 if (!NUW) NUW = EatIfPresent(lltok::kw_nuw);
Michael Ilseman26ee2b82012-11-15 22:34:00 +00005012
Chris Lattnera676c0f2011-02-07 16:40:21 +00005013 if (ParseArithmetic(Inst, PFS, KeywordVal, 1)) return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00005014
Chris Lattnera676c0f2011-02-07 16:40:21 +00005015 if (NUW) cast<BinaryOperator>(Inst)->setHasNoUnsignedWrap(true);
5016 if (NSW) cast<BinaryOperator>(Inst)->setHasNoSignedWrap(true);
5017 return false;
Dan Gohman9c7f8082009-07-27 16:11:46 +00005018 }
Dan Gohmana5b96452009-06-04 22:49:04 +00005019 case lltok::kw_fadd:
5020 case lltok::kw_fsub:
Michael Ilseman92053172012-11-27 00:42:44 +00005021 case lltok::kw_fmul:
5022 case lltok::kw_fdiv:
5023 case lltok::kw_frem: {
5024 FastMathFlags FMF = EatFastMathFlagsIfPresent();
5025 int Res = ParseArithmetic(Inst, PFS, KeywordVal, 2);
5026 if (Res != 0)
5027 return Res;
5028 if (FMF.any())
5029 Inst->setFastMathFlags(FMF);
5030 return 0;
5031 }
Dan Gohmana5b96452009-06-04 22:49:04 +00005032
Chris Lattner35315d02011-02-06 21:44:57 +00005033 case lltok::kw_sdiv:
Chris Lattnera676c0f2011-02-07 16:40:21 +00005034 case lltok::kw_udiv:
5035 case lltok::kw_lshr:
5036 case lltok::kw_ashr: {
5037 bool Exact = EatIfPresent(lltok::kw_exact);
5038
5039 if (ParseArithmetic(Inst, PFS, KeywordVal, 1)) return true;
5040 if (Exact) cast<BinaryOperator>(Inst)->setIsExact(true);
5041 return false;
Dan Gohman9c7f8082009-07-27 16:11:46 +00005042 }
5043
Chris Lattnerac161bf2009-01-02 07:01:27 +00005044 case lltok::kw_urem:
Chris Lattner89d856e2009-03-01 00:53:13 +00005045 case lltok::kw_srem: return ParseArithmetic(Inst, PFS, KeywordVal, 1);
Chris Lattnerac161bf2009-01-02 07:01:27 +00005046 case lltok::kw_and:
5047 case lltok::kw_or:
Chris Lattner89d856e2009-03-01 00:53:13 +00005048 case lltok::kw_xor: return ParseLogical(Inst, PFS, KeywordVal);
James Molloy88eb5352015-07-10 12:52:00 +00005049 case lltok::kw_icmp: return ParseCompare(Inst, PFS, KeywordVal);
5050 case lltok::kw_fcmp: {
5051 FastMathFlags FMF = EatFastMathFlagsIfPresent();
5052 int Res = ParseCompare(Inst, PFS, KeywordVal);
5053 if (Res != 0)
5054 return Res;
5055 if (FMF.any())
5056 Inst->setFastMathFlags(FMF);
5057 return 0;
5058 }
5059
Chris Lattnerac161bf2009-01-02 07:01:27 +00005060 // Casts.
5061 case lltok::kw_trunc:
5062 case lltok::kw_zext:
5063 case lltok::kw_sext:
5064 case lltok::kw_fptrunc:
5065 case lltok::kw_fpext:
5066 case lltok::kw_bitcast:
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00005067 case lltok::kw_addrspacecast:
Chris Lattnerac161bf2009-01-02 07:01:27 +00005068 case lltok::kw_uitofp:
5069 case lltok::kw_sitofp:
5070 case lltok::kw_fptoui:
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005071 case lltok::kw_fptosi:
Chris Lattnerac161bf2009-01-02 07:01:27 +00005072 case lltok::kw_inttoptr:
Chris Lattner89d856e2009-03-01 00:53:13 +00005073 case lltok::kw_ptrtoint: return ParseCast(Inst, PFS, KeywordVal);
Chris Lattnerac161bf2009-01-02 07:01:27 +00005074 // Other.
5075 case lltok::kw_select: return ParseSelect(Inst, PFS);
Chris Lattnerb55ab542009-01-05 08:18:44 +00005076 case lltok::kw_va_arg: return ParseVA_Arg(Inst, PFS);
Chris Lattnerac161bf2009-01-02 07:01:27 +00005077 case lltok::kw_extractelement: return ParseExtractElement(Inst, PFS);
5078 case lltok::kw_insertelement: return ParseInsertElement(Inst, PFS);
5079 case lltok::kw_shufflevector: return ParseShuffleVector(Inst, PFS);
5080 case lltok::kw_phi: return ParsePHI(Inst, PFS);
Bill Wendlingfae14752011-08-12 20:24:12 +00005081 case lltok::kw_landingpad: return ParseLandingPad(Inst, PFS);
Reid Kleckner5772b772014-04-24 20:14:34 +00005082 // Call.
5083 case lltok::kw_call: return ParseCall(Inst, PFS, CallInst::TCK_None);
5084 case lltok::kw_tail: return ParseCall(Inst, PFS, CallInst::TCK_Tail);
5085 case lltok::kw_musttail: return ParseCall(Inst, PFS, CallInst::TCK_MustTail);
Akira Hatanaka5cfcce122015-11-06 23:55:38 +00005086 case lltok::kw_notail: return ParseCall(Inst, PFS, CallInst::TCK_NoTail);
Chris Lattnerac161bf2009-01-02 07:01:27 +00005087 // Memory.
Victor Hernandezc7d6a832009-10-17 00:00:19 +00005088 case lltok::kw_alloca: return ParseAlloc(Inst, PFS);
Chris Lattnerbc639292011-11-27 06:56:53 +00005089 case lltok::kw_load: return ParseLoad(Inst, PFS);
5090 case lltok::kw_store: return ParseStore(Inst, PFS);
Eli Friedman02e737b2011-08-12 22:50:01 +00005091 case lltok::kw_cmpxchg: return ParseCmpXchg(Inst, PFS);
5092 case lltok::kw_atomicrmw: return ParseAtomicRMW(Inst, PFS);
Eli Friedmanfee02c62011-07-25 23:16:38 +00005093 case lltok::kw_fence: return ParseFence(Inst, PFS);
Chris Lattnerac161bf2009-01-02 07:01:27 +00005094 case lltok::kw_getelementptr: return ParseGetElementPtr(Inst, PFS);
5095 case lltok::kw_extractvalue: return ParseExtractValue(Inst, PFS);
5096 case lltok::kw_insertvalue: return ParseInsertValue(Inst, PFS);
5097 }
5098}
5099
5100/// ParseCmpPredicate - Parse an integer or fp predicate, based on Kind.
5101bool LLParser::ParseCmpPredicate(unsigned &P, unsigned Opc) {
Nick Lewyckya21d3da2009-07-08 03:04:38 +00005102 if (Opc == Instruction::FCmp) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00005103 switch (Lex.getKind()) {
David Tweeda11edf02013-01-07 13:32:38 +00005104 default: return TokError("expected fcmp predicate (e.g. 'oeq')");
Chris Lattnerac161bf2009-01-02 07:01:27 +00005105 case lltok::kw_oeq: P = CmpInst::FCMP_OEQ; break;
5106 case lltok::kw_one: P = CmpInst::FCMP_ONE; break;
5107 case lltok::kw_olt: P = CmpInst::FCMP_OLT; break;
5108 case lltok::kw_ogt: P = CmpInst::FCMP_OGT; break;
5109 case lltok::kw_ole: P = CmpInst::FCMP_OLE; break;
5110 case lltok::kw_oge: P = CmpInst::FCMP_OGE; break;
5111 case lltok::kw_ord: P = CmpInst::FCMP_ORD; break;
5112 case lltok::kw_uno: P = CmpInst::FCMP_UNO; break;
5113 case lltok::kw_ueq: P = CmpInst::FCMP_UEQ; break;
5114 case lltok::kw_une: P = CmpInst::FCMP_UNE; break;
5115 case lltok::kw_ult: P = CmpInst::FCMP_ULT; break;
5116 case lltok::kw_ugt: P = CmpInst::FCMP_UGT; break;
5117 case lltok::kw_ule: P = CmpInst::FCMP_ULE; break;
5118 case lltok::kw_uge: P = CmpInst::FCMP_UGE; break;
5119 case lltok::kw_true: P = CmpInst::FCMP_TRUE; break;
5120 case lltok::kw_false: P = CmpInst::FCMP_FALSE; break;
5121 }
5122 } else {
5123 switch (Lex.getKind()) {
David Tweeda11edf02013-01-07 13:32:38 +00005124 default: return TokError("expected icmp predicate (e.g. 'eq')");
Chris Lattnerac161bf2009-01-02 07:01:27 +00005125 case lltok::kw_eq: P = CmpInst::ICMP_EQ; break;
5126 case lltok::kw_ne: P = CmpInst::ICMP_NE; break;
5127 case lltok::kw_slt: P = CmpInst::ICMP_SLT; break;
5128 case lltok::kw_sgt: P = CmpInst::ICMP_SGT; break;
5129 case lltok::kw_sle: P = CmpInst::ICMP_SLE; break;
5130 case lltok::kw_sge: P = CmpInst::ICMP_SGE; break;
5131 case lltok::kw_ult: P = CmpInst::ICMP_ULT; break;
5132 case lltok::kw_ugt: P = CmpInst::ICMP_UGT; break;
5133 case lltok::kw_ule: P = CmpInst::ICMP_ULE; break;
5134 case lltok::kw_uge: P = CmpInst::ICMP_UGE; break;
5135 }
5136 }
5137 Lex.Lex();
5138 return false;
5139}
5140
5141//===----------------------------------------------------------------------===//
5142// Terminator Instructions.
5143//===----------------------------------------------------------------------===//
5144
5145/// ParseRet - Parse a return instruction.
Chris Lattner596760d2009-12-29 21:25:40 +00005146/// ::= 'ret' void (',' !dbg, !1)*
5147/// ::= 'ret' TypeAndValue (',' !dbg, !1)*
Chris Lattner33de4272011-06-17 06:49:41 +00005148bool LLParser::ParseRet(Instruction *&Inst, BasicBlock *BB,
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00005149 PerFunctionState &PFS) {
5150 SMLoc TypeLoc = Lex.getLoc();
Craig Topper2617dcc2014-04-15 06:32:26 +00005151 Type *Ty = nullptr;
Chris Lattnerf880ca22009-03-09 04:49:14 +00005152 if (ParseType(Ty, true /*void allowed*/)) return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005153
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00005154 Type *ResType = PFS.getFunction().getReturnType();
Michael Ilseman26ee2b82012-11-15 22:34:00 +00005155
Chris Lattnerfdd87902009-10-05 05:54:46 +00005156 if (Ty->isVoidTy()) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00005157 if (!ResType->isVoidTy())
5158 return Error(TypeLoc, "value doesn't match function result type '" +
5159 getTypeString(ResType) + "'");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00005160
Owen Anderson55f1c092009-08-13 21:58:54 +00005161 Inst = ReturnInst::Create(Context);
Chris Lattnerac161bf2009-01-02 07:01:27 +00005162 return false;
5163 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005164
Chris Lattnerac161bf2009-01-02 07:01:27 +00005165 Value *RV;
5166 if (ParseValue(Ty, RV, PFS)) return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005167
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00005168 if (ResType != RV->getType())
5169 return Error(TypeLoc, "value doesn't match function result type '" +
5170 getTypeString(ResType) + "'");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00005171
Owen Anderson55f1c092009-08-13 21:58:54 +00005172 Inst = ReturnInst::Create(Context, RV);
Chris Lattner33de4272011-06-17 06:49:41 +00005173 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005174}
5175
Chris Lattnerac161bf2009-01-02 07:01:27 +00005176/// ParseBr
5177/// ::= 'br' TypeAndValue
5178/// ::= 'br' TypeAndValue ',' TypeAndValue ',' TypeAndValue
5179bool LLParser::ParseBr(Instruction *&Inst, PerFunctionState &PFS) {
5180 LocTy Loc, Loc2;
Chris Lattner3ed871f2009-10-27 19:13:16 +00005181 Value *Op0;
5182 BasicBlock *Op1, *Op2;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005183 if (ParseTypeAndValue(Op0, Loc, PFS)) return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005184
Chris Lattnerac161bf2009-01-02 07:01:27 +00005185 if (BasicBlock *BB = dyn_cast<BasicBlock>(Op0)) {
5186 Inst = BranchInst::Create(BB);
5187 return false;
5188 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005189
Owen Anderson55f1c092009-08-13 21:58:54 +00005190 if (Op0->getType() != Type::getInt1Ty(Context))
Chris Lattnerac161bf2009-01-02 07:01:27 +00005191 return Error(Loc, "branch condition must have 'i1' type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005192
Chris Lattnerac161bf2009-01-02 07:01:27 +00005193 if (ParseToken(lltok::comma, "expected ',' after branch condition") ||
Chris Lattner3ed871f2009-10-27 19:13:16 +00005194 ParseTypeAndBasicBlock(Op1, Loc, PFS) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00005195 ParseToken(lltok::comma, "expected ',' after true destination") ||
Chris Lattner3ed871f2009-10-27 19:13:16 +00005196 ParseTypeAndBasicBlock(Op2, Loc2, PFS))
Chris Lattnerac161bf2009-01-02 07:01:27 +00005197 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005198
Chris Lattner3ed871f2009-10-27 19:13:16 +00005199 Inst = BranchInst::Create(Op1, Op2, Op0);
Chris Lattnerac161bf2009-01-02 07:01:27 +00005200 return false;
5201}
5202
5203/// ParseSwitch
5204/// Instruction
5205/// ::= 'switch' TypeAndValue ',' TypeAndValue '[' JumpTable ']'
5206/// JumpTable
5207/// ::= (TypeAndValue ',' TypeAndValue)*
5208bool LLParser::ParseSwitch(Instruction *&Inst, PerFunctionState &PFS) {
5209 LocTy CondLoc, BBLoc;
Chris Lattner3ed871f2009-10-27 19:13:16 +00005210 Value *Cond;
5211 BasicBlock *DefaultBB;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005212 if (ParseTypeAndValue(Cond, CondLoc, PFS) ||
5213 ParseToken(lltok::comma, "expected ',' after switch condition") ||
Chris Lattner3ed871f2009-10-27 19:13:16 +00005214 ParseTypeAndBasicBlock(DefaultBB, BBLoc, PFS) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00005215 ParseToken(lltok::lsquare, "expected '[' with switch table"))
5216 return true;
5217
Duncan Sands19d0b472010-02-16 11:11:14 +00005218 if (!Cond->getType()->isIntegerTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00005219 return Error(CondLoc, "switch condition must have integer type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005220
Chris Lattnerac161bf2009-01-02 07:01:27 +00005221 // Parse the jump table pairs.
5222 SmallPtrSet<Value*, 32> SeenCases;
5223 SmallVector<std::pair<ConstantInt*, BasicBlock*>, 32> Table;
5224 while (Lex.getKind() != lltok::rsquare) {
Chris Lattner3ed871f2009-10-27 19:13:16 +00005225 Value *Constant;
5226 BasicBlock *DestBB;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005227
Chris Lattnerac161bf2009-01-02 07:01:27 +00005228 if (ParseTypeAndValue(Constant, CondLoc, PFS) ||
5229 ParseToken(lltok::comma, "expected ',' after case value") ||
Chris Lattner3ed871f2009-10-27 19:13:16 +00005230 ParseTypeAndBasicBlock(DestBB, PFS))
Chris Lattnerac161bf2009-01-02 07:01:27 +00005231 return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00005232
David Blaikie70573dc2014-11-19 07:49:26 +00005233 if (!SeenCases.insert(Constant).second)
Chris Lattnerac161bf2009-01-02 07:01:27 +00005234 return Error(CondLoc, "duplicate case value in switch");
5235 if (!isa<ConstantInt>(Constant))
5236 return Error(CondLoc, "case value is not a constant integer");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005237
Chris Lattner3ed871f2009-10-27 19:13:16 +00005238 Table.push_back(std::make_pair(cast<ConstantInt>(Constant), DestBB));
Chris Lattnerac161bf2009-01-02 07:01:27 +00005239 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005240
Chris Lattnerac161bf2009-01-02 07:01:27 +00005241 Lex.Lex(); // Eat the ']'.
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005242
Chris Lattner3ed871f2009-10-27 19:13:16 +00005243 SwitchInst *SI = SwitchInst::Create(Cond, DefaultBB, Table.size());
Chris Lattnerac161bf2009-01-02 07:01:27 +00005244 for (unsigned i = 0, e = Table.size(); i != e; ++i)
5245 SI->addCase(Table[i].first, Table[i].second);
5246 Inst = SI;
5247 return false;
5248}
5249
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00005250/// ParseIndirectBr
Chris Lattner3ed871f2009-10-27 19:13:16 +00005251/// Instruction
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00005252/// ::= 'indirectbr' TypeAndValue ',' '[' LabelList ']'
5253bool LLParser::ParseIndirectBr(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattner3ed871f2009-10-27 19:13:16 +00005254 LocTy AddrLoc;
5255 Value *Address;
5256 if (ParseTypeAndValue(Address, AddrLoc, PFS) ||
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00005257 ParseToken(lltok::comma, "expected ',' after indirectbr address") ||
5258 ParseToken(lltok::lsquare, "expected '[' with indirectbr"))
Chris Lattner3ed871f2009-10-27 19:13:16 +00005259 return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00005260
Duncan Sands19d0b472010-02-16 11:11:14 +00005261 if (!Address->getType()->isPointerTy())
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00005262 return Error(AddrLoc, "indirectbr address must have pointer type");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00005263
Chris Lattner3ed871f2009-10-27 19:13:16 +00005264 // Parse the destination list.
5265 SmallVector<BasicBlock*, 16> DestList;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00005266
Chris Lattner3ed871f2009-10-27 19:13:16 +00005267 if (Lex.getKind() != lltok::rsquare) {
5268 BasicBlock *DestBB;
5269 if (ParseTypeAndBasicBlock(DestBB, PFS))
5270 return true;
5271 DestList.push_back(DestBB);
Michael Ilseman26ee2b82012-11-15 22:34:00 +00005272
Chris Lattner3ed871f2009-10-27 19:13:16 +00005273 while (EatIfPresent(lltok::comma)) {
5274 if (ParseTypeAndBasicBlock(DestBB, PFS))
5275 return true;
5276 DestList.push_back(DestBB);
5277 }
5278 }
Michael Ilseman26ee2b82012-11-15 22:34:00 +00005279
Chris Lattner3ed871f2009-10-27 19:13:16 +00005280 if (ParseToken(lltok::rsquare, "expected ']' at end of block list"))
5281 return true;
5282
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00005283 IndirectBrInst *IBI = IndirectBrInst::Create(Address, DestList.size());
Chris Lattner3ed871f2009-10-27 19:13:16 +00005284 for (unsigned i = 0, e = DestList.size(); i != e; ++i)
5285 IBI->addDestination(DestList[i]);
5286 Inst = IBI;
5287 return false;
5288}
5289
Chris Lattnerac161bf2009-01-02 07:01:27 +00005290/// ParseInvoke
5291/// ::= 'invoke' OptionalCallingConv OptionalAttrs Type Value ParamList
5292/// OptionalAttrs 'to' TypeAndValue 'unwind' TypeAndValue
5293bool LLParser::ParseInvoke(Instruction *&Inst, PerFunctionState &PFS) {
5294 LocTy CallLoc = Lex.getLoc();
Bill Wendling50d27842012-10-15 20:35:56 +00005295 AttrBuilder RetAttrs, FnAttrs;
Bill Wendlingb32b0412013-02-08 06:32:06 +00005296 std::vector<unsigned> FwdRefAttrGrps;
Bill Wendling09bd1f72013-02-22 00:12:35 +00005297 LocTy NoBuiltinLoc;
Alexey Samsonov17a9cff2014-09-10 18:00:17 +00005298 unsigned CC;
Craig Topper2617dcc2014-04-15 06:32:26 +00005299 Type *RetType = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005300 LocTy RetTypeLoc;
5301 ValID CalleeID;
5302 SmallVector<ParamInfo, 16> ArgList;
Sanjoy Dasb513a9f2015-09-24 23:34:52 +00005303 SmallVector<OperandBundleDef, 2> BundleList;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005304
Chris Lattner3ed871f2009-10-27 19:13:16 +00005305 BasicBlock *NormalBB, *UnwindBB;
Sanjoy Dasb513a9f2015-09-24 23:34:52 +00005306 if (ParseOptionalCallingConv(CC) || ParseOptionalReturnAttrs(RetAttrs) ||
Chris Lattnerf880ca22009-03-09 04:49:14 +00005307 ParseType(RetType, RetTypeLoc, true /*void allowed*/) ||
Sanjoy Dasb513a9f2015-09-24 23:34:52 +00005308 ParseValID(CalleeID) || ParseParameterList(ArgList, PFS) ||
Bill Wendling09bd1f72013-02-22 00:12:35 +00005309 ParseFnAttributeValuePairs(FnAttrs, FwdRefAttrGrps, false,
5310 NoBuiltinLoc) ||
Sanjoy Dasb513a9f2015-09-24 23:34:52 +00005311 ParseOptionalOperandBundles(BundleList, PFS) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00005312 ParseToken(lltok::kw_to, "expected 'to' in invoke") ||
Chris Lattner3ed871f2009-10-27 19:13:16 +00005313 ParseTypeAndBasicBlock(NormalBB, PFS) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00005314 ParseToken(lltok::kw_unwind, "expected 'unwind' in invoke") ||
Chris Lattner3ed871f2009-10-27 19:13:16 +00005315 ParseTypeAndBasicBlock(UnwindBB, PFS))
Chris Lattnerac161bf2009-01-02 07:01:27 +00005316 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005317
Chris Lattnerac161bf2009-01-02 07:01:27 +00005318 // If RetType is a non-function pointer type, then this is the short syntax
5319 // for the call, which means that RetType is just the return type. Infer the
5320 // rest of the function argument types from the arguments that are present.
David Blaikie445e3fb2015-04-24 19:32:54 +00005321 FunctionType *Ty = dyn_cast<FunctionType>(RetType);
5322 if (!Ty) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00005323 // Pull out the types of all of the arguments...
Jay Foadb804a2b2011-07-12 14:06:48 +00005324 std::vector<Type*> ParamTypes;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005325 for (unsigned i = 0, e = ArgList.size(); i != e; ++i)
5326 ParamTypes.push_back(ArgList[i].V->getType());
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005327
Chris Lattnerac161bf2009-01-02 07:01:27 +00005328 if (!FunctionType::isValidReturnType(RetType))
5329 return Error(RetTypeLoc, "Invalid result type for LLVM function");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005330
Owen Anderson4056ca92009-07-29 22:17:13 +00005331 Ty = FunctionType::get(RetType, ParamTypes, false);
Chris Lattnerac161bf2009-01-02 07:01:27 +00005332 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005333
David Blaikie41ba2b42015-07-27 23:32:19 +00005334 CalleeID.FTy = Ty;
5335
Chris Lattnerac161bf2009-01-02 07:01:27 +00005336 // Look up the callee.
5337 Value *Callee;
David Blaikie445e3fb2015-04-24 19:32:54 +00005338 if (ConvertValIDToValue(PointerType::getUnqual(Ty), CalleeID, Callee, &PFS))
5339 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005340
Bill Wendling3d7b0b82012-12-19 07:18:57 +00005341 // Set up the Attribute for the function.
Bill Wendlingf5075a42013-01-27 02:24:02 +00005342 SmallVector<AttributeSet, 8> Attrs;
Bill Wendling3bef2dd2012-09-19 23:54:18 +00005343 if (RetAttrs.hasAttributes())
Bill Wendlingf5075a42013-01-27 02:24:02 +00005344 Attrs.push_back(AttributeSet::get(RetType->getContext(),
5345 AttributeSet::ReturnIndex,
5346 RetAttrs));
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005347
Chris Lattnerac161bf2009-01-02 07:01:27 +00005348 SmallVector<Value*, 8> Args;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005349
Chris Lattnerac161bf2009-01-02 07:01:27 +00005350 // Loop through FunctionType's arguments and ensure they are specified
5351 // correctly. Also, gather any parameter attributes.
5352 FunctionType::param_iterator I = Ty->param_begin();
5353 FunctionType::param_iterator E = Ty->param_end();
5354 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
Craig Topper2617dcc2014-04-15 06:32:26 +00005355 Type *ExpectedTy = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005356 if (I != E) {
5357 ExpectedTy = *I++;
5358 } else if (!Ty->isVarArg()) {
5359 return Error(ArgList[i].Loc, "too many arguments specified");
5360 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005361
Chris Lattnerac161bf2009-01-02 07:01:27 +00005362 if (ExpectedTy && ExpectedTy != ArgList[i].V->getType())
5363 return Error(ArgList[i].Loc, "argument is not of expected type '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00005364 getTypeString(ExpectedTy) + "'");
Chris Lattnerac161bf2009-01-02 07:01:27 +00005365 Args.push_back(ArgList[i].V);
Bill Wendlingfe0021a2013-01-31 00:29:54 +00005366 if (ArgList[i].Attrs.hasAttributes(i + 1)) {
5367 AttrBuilder B(ArgList[i].Attrs, i + 1);
Bill Wendlingf5075a42013-01-27 02:24:02 +00005368 Attrs.push_back(AttributeSet::get(RetType->getContext(), i + 1, B));
5369 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00005370 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005371
Chris Lattnerac161bf2009-01-02 07:01:27 +00005372 if (I != E)
5373 return Error(CallLoc, "not enough parameters specified for call");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005374
David Majnemer8d22abd2015-02-23 00:01:32 +00005375 if (FnAttrs.hasAttributes()) {
5376 if (FnAttrs.hasAlignmentAttr())
5377 return Error(CallLoc, "invoke instructions may not have an alignment");
5378
Bill Wendlingf5075a42013-01-27 02:24:02 +00005379 Attrs.push_back(AttributeSet::get(RetType->getContext(),
5380 AttributeSet::FunctionIndex,
5381 FnAttrs));
David Majnemer8d22abd2015-02-23 00:01:32 +00005382 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005383
Bill Wendling3d7b0b82012-12-19 07:18:57 +00005384 // Finish off the Attribute and check them
Bill Wendlinge94d8432012-12-07 23:16:57 +00005385 AttributeSet PAL = AttributeSet::get(Context, Attrs);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005386
Sanjoy Dasb513a9f2015-09-24 23:34:52 +00005387 InvokeInst *II =
5388 InvokeInst::Create(Ty, Callee, NormalBB, UnwindBB, Args, BundleList);
Chris Lattnerac161bf2009-01-02 07:01:27 +00005389 II->setCallingConv(CC);
5390 II->setAttributes(PAL);
Bill Wendlingb32b0412013-02-08 06:32:06 +00005391 ForwardRefAttrGroups[II] = FwdRefAttrGrps;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005392 Inst = II;
5393 return false;
5394}
5395
Bill Wendlingf891bf82011-07-31 06:30:59 +00005396/// ParseResume
5397/// ::= 'resume' TypeAndValue
5398bool LLParser::ParseResume(Instruction *&Inst, PerFunctionState &PFS) {
5399 Value *Exn; LocTy ExnLoc;
Bill Wendlingf891bf82011-07-31 06:30:59 +00005400 if (ParseTypeAndValue(Exn, ExnLoc, PFS))
5401 return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005402
Bill Wendlingf891bf82011-07-31 06:30:59 +00005403 ResumeInst *RI = ResumeInst::Create(Exn);
5404 Inst = RI;
5405 return false;
5406}
Chris Lattnerac161bf2009-01-02 07:01:27 +00005407
David Majnemer654e1302015-07-31 17:58:14 +00005408bool LLParser::ParseExceptionArgs(SmallVectorImpl<Value *> &Args,
5409 PerFunctionState &PFS) {
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00005410 if (ParseToken(lltok::lsquare, "expected '[' in catchpad/cleanuppad"))
David Majnemer654e1302015-07-31 17:58:14 +00005411 return true;
5412
5413 while (Lex.getKind() != lltok::rsquare) {
5414 // If this isn't the first argument, we need a comma.
5415 if (!Args.empty() &&
5416 ParseToken(lltok::comma, "expected ',' in argument list"))
5417 return true;
5418
5419 // Parse the argument.
5420 LocTy ArgLoc;
5421 Type *ArgTy = nullptr;
5422 if (ParseType(ArgTy, ArgLoc))
5423 return true;
5424
5425 Value *V;
5426 if (ArgTy->isMetadataTy()) {
5427 if (ParseMetadataAsValue(V, PFS))
5428 return true;
5429 } else {
5430 if (ParseValue(ArgTy, V, PFS))
5431 return true;
5432 }
5433 Args.push_back(V);
5434 }
5435
5436 Lex.Lex(); // Lex the ']'.
5437 return false;
5438}
5439
5440/// ParseCleanupRet
David Majnemer8a1c45d2015-12-12 05:38:55 +00005441/// ::= 'cleanupret' from Value unwind ('to' 'caller' | TypeAndValue)
David Majnemer654e1302015-07-31 17:58:14 +00005442bool LLParser::ParseCleanupRet(Instruction *&Inst, PerFunctionState &PFS) {
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00005443 Value *CleanupPad = nullptr;
David Majnemer654e1302015-07-31 17:58:14 +00005444
David Majnemer8a1c45d2015-12-12 05:38:55 +00005445 if (ParseToken(lltok::kw_from, "expected 'from' after cleanupret"))
5446 return true;
5447
5448 if (ParseValue(Type::getTokenTy(Context), CleanupPad, PFS))
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00005449 return true;
David Majnemer654e1302015-07-31 17:58:14 +00005450
5451 if (ParseToken(lltok::kw_unwind, "expected 'unwind' in cleanupret"))
5452 return true;
5453
5454 BasicBlock *UnwindBB = nullptr;
5455 if (Lex.getKind() == lltok::kw_to) {
5456 Lex.Lex();
5457 if (ParseToken(lltok::kw_caller, "expected 'caller' in cleanupret"))
5458 return true;
5459 } else {
5460 if (ParseTypeAndBasicBlock(UnwindBB, PFS)) {
5461 return true;
5462 }
5463 }
5464
David Majnemer8a1c45d2015-12-12 05:38:55 +00005465 Inst = CleanupReturnInst::Create(CleanupPad, UnwindBB);
David Majnemer654e1302015-07-31 17:58:14 +00005466 return false;
5467}
5468
5469/// ParseCatchRet
David Majnemer8a1c45d2015-12-12 05:38:55 +00005470/// ::= 'catchret' from Parent Value 'to' TypeAndValue
David Majnemer654e1302015-07-31 17:58:14 +00005471bool LLParser::ParseCatchRet(Instruction *&Inst, PerFunctionState &PFS) {
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00005472 Value *CatchPad = nullptr;
David Majnemer0bc0eef2015-08-15 02:46:08 +00005473
David Majnemer8a1c45d2015-12-12 05:38:55 +00005474 if (ParseToken(lltok::kw_from, "expected 'from' after catchret"))
5475 return true;
5476
5477 if (ParseValue(Type::getTokenTy(Context), CatchPad, PFS))
David Majnemer0bc0eef2015-08-15 02:46:08 +00005478 return true;
5479
David Majnemer0bc0eef2015-08-15 02:46:08 +00005480 BasicBlock *BB;
5481 if (ParseToken(lltok::kw_to, "expected 'to' in catchret") ||
5482 ParseTypeAndBasicBlock(BB, PFS))
5483 return true;
5484
David Majnemer8a1c45d2015-12-12 05:38:55 +00005485 Inst = CatchReturnInst::Create(CatchPad, BB);
5486 return false;
5487}
5488
5489/// ParseCatchSwitch
5490/// ::= 'catchswitch' within Parent
5491bool LLParser::ParseCatchSwitch(Instruction *&Inst, PerFunctionState &PFS) {
5492 Value *ParentPad;
5493 LocTy BBLoc;
5494
5495 if (ParseToken(lltok::kw_within, "expected 'within' after catchswitch"))
5496 return true;
5497
5498 if (Lex.getKind() != lltok::kw_none && Lex.getKind() != lltok::LocalVar &&
5499 Lex.getKind() != lltok::LocalVarID)
5500 return TokError("expected scope value for catchswitch");
5501
5502 if (ParseValue(Type::getTokenTy(Context), ParentPad, PFS))
5503 return true;
5504
5505 if (ParseToken(lltok::lsquare, "expected '[' with catchswitch labels"))
5506 return true;
5507
5508 SmallVector<BasicBlock *, 32> Table;
5509 do {
5510 BasicBlock *DestBB;
5511 if (ParseTypeAndBasicBlock(DestBB, PFS))
5512 return true;
5513 Table.push_back(DestBB);
5514 } while (EatIfPresent(lltok::comma));
5515
5516 if (ParseToken(lltok::rsquare, "expected ']' after catchswitch labels"))
5517 return true;
5518
5519 if (ParseToken(lltok::kw_unwind,
5520 "expected 'unwind' after catchswitch scope"))
5521 return true;
5522
5523 BasicBlock *UnwindBB = nullptr;
5524 if (EatIfPresent(lltok::kw_to)) {
5525 if (ParseToken(lltok::kw_caller, "expected 'caller' in catchswitch"))
5526 return true;
5527 } else {
5528 if (ParseTypeAndBasicBlock(UnwindBB, PFS))
5529 return true;
5530 }
5531
5532 auto *CatchSwitch =
5533 CatchSwitchInst::Create(ParentPad, UnwindBB, Table.size());
5534 for (BasicBlock *DestBB : Table)
5535 CatchSwitch->addHandler(DestBB);
5536 Inst = CatchSwitch;
David Majnemer654e1302015-07-31 17:58:14 +00005537 return false;
5538}
5539
5540/// ParseCatchPad
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00005541/// ::= 'catchpad' ParamList 'to' TypeAndValue 'unwind' TypeAndValue
David Majnemer654e1302015-07-31 17:58:14 +00005542bool LLParser::ParseCatchPad(Instruction *&Inst, PerFunctionState &PFS) {
David Majnemer8a1c45d2015-12-12 05:38:55 +00005543 Value *CatchSwitch = nullptr;
5544
5545 if (ParseToken(lltok::kw_within, "expected 'within' after catchpad"))
5546 return true;
5547
5548 if (Lex.getKind() != lltok::LocalVar && Lex.getKind() != lltok::LocalVarID)
5549 return TokError("expected scope value for catchpad");
5550
5551 if (ParseValue(Type::getTokenTy(Context), CatchSwitch, PFS))
5552 return true;
5553
David Majnemer654e1302015-07-31 17:58:14 +00005554 SmallVector<Value *, 8> Args;
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00005555 if (ParseExceptionArgs(Args, PFS))
David Majnemer654e1302015-07-31 17:58:14 +00005556 return true;
5557
David Majnemer8a1c45d2015-12-12 05:38:55 +00005558 Inst = CatchPadInst::Create(CatchSwitch, Args);
David Majnemer654e1302015-07-31 17:58:14 +00005559 return false;
5560}
5561
David Majnemer654e1302015-07-31 17:58:14 +00005562/// ParseCleanupPad
David Majnemer8a1c45d2015-12-12 05:38:55 +00005563/// ::= 'cleanuppad' within Parent ParamList
David Majnemer654e1302015-07-31 17:58:14 +00005564bool LLParser::ParseCleanupPad(Instruction *&Inst, PerFunctionState &PFS) {
David Majnemer8a1c45d2015-12-12 05:38:55 +00005565 Value *ParentPad = nullptr;
5566
5567 if (ParseToken(lltok::kw_within, "expected 'within' after cleanuppad"))
5568 return true;
5569
5570 if (Lex.getKind() != lltok::kw_none && Lex.getKind() != lltok::LocalVar &&
5571 Lex.getKind() != lltok::LocalVarID)
5572 return TokError("expected scope value for cleanuppad");
5573
5574 if (ParseValue(Type::getTokenTy(Context), ParentPad, PFS))
5575 return true;
5576
David Majnemer654e1302015-07-31 17:58:14 +00005577 SmallVector<Value *, 8> Args;
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00005578 if (ParseExceptionArgs(Args, PFS))
David Majnemer654e1302015-07-31 17:58:14 +00005579 return true;
5580
David Majnemer8a1c45d2015-12-12 05:38:55 +00005581 Inst = CleanupPadInst::Create(ParentPad, Args);
Joseph Tremoulet9ce71f72015-09-03 09:09:43 +00005582 return false;
5583}
5584
Chris Lattnerac161bf2009-01-02 07:01:27 +00005585//===----------------------------------------------------------------------===//
5586// Binary Operators.
5587//===----------------------------------------------------------------------===//
5588
5589/// ParseArithmetic
Chris Lattnereeefa9a2009-01-05 08:24:46 +00005590/// ::= ArithmeticOps TypeAndValue ',' Value
5591///
5592/// If OperandType is 0, then any FP or integer operand is allowed. If it is 1,
5593/// then any integer operand is allowed, if it is 2, any fp operand is allowed.
Chris Lattnerac161bf2009-01-02 07:01:27 +00005594bool LLParser::ParseArithmetic(Instruction *&Inst, PerFunctionState &PFS,
Chris Lattnereeefa9a2009-01-05 08:24:46 +00005595 unsigned Opc, unsigned OperandType) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00005596 LocTy Loc; Value *LHS, *RHS;
5597 if (ParseTypeAndValue(LHS, Loc, PFS) ||
5598 ParseToken(lltok::comma, "expected ',' in arithmetic operation") ||
5599 ParseValue(LHS->getType(), RHS, PFS))
5600 return true;
5601
Chris Lattnereeefa9a2009-01-05 08:24:46 +00005602 bool Valid;
5603 switch (OperandType) {
Torok Edwinfbcc6632009-07-14 16:55:14 +00005604 default: llvm_unreachable("Unknown operand type!");
Chris Lattnereeefa9a2009-01-05 08:24:46 +00005605 case 0: // int or FP.
Duncan Sands9dff9be2010-02-15 16:12:20 +00005606 Valid = LHS->getType()->isIntOrIntVectorTy() ||
5607 LHS->getType()->isFPOrFPVectorTy();
Chris Lattnereeefa9a2009-01-05 08:24:46 +00005608 break;
Duncan Sands9dff9be2010-02-15 16:12:20 +00005609 case 1: Valid = LHS->getType()->isIntOrIntVectorTy(); break;
5610 case 2: Valid = LHS->getType()->isFPOrFPVectorTy(); break;
Chris Lattnereeefa9a2009-01-05 08:24:46 +00005611 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005612
Chris Lattnereeefa9a2009-01-05 08:24:46 +00005613 if (!Valid)
5614 return Error(Loc, "invalid operand type for instruction");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005615
Chris Lattnerac161bf2009-01-02 07:01:27 +00005616 Inst = BinaryOperator::Create((Instruction::BinaryOps)Opc, LHS, RHS);
5617 return false;
5618}
5619
5620/// ParseLogical
5621/// ::= ArithmeticOps TypeAndValue ',' Value {
5622bool LLParser::ParseLogical(Instruction *&Inst, PerFunctionState &PFS,
5623 unsigned Opc) {
5624 LocTy Loc; Value *LHS, *RHS;
5625 if (ParseTypeAndValue(LHS, Loc, PFS) ||
5626 ParseToken(lltok::comma, "expected ',' in logical operation") ||
5627 ParseValue(LHS->getType(), RHS, PFS))
5628 return true;
5629
Duncan Sands9dff9be2010-02-15 16:12:20 +00005630 if (!LHS->getType()->isIntOrIntVectorTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00005631 return Error(Loc,"instruction requires integer or integer vector operands");
5632
5633 Inst = BinaryOperator::Create((Instruction::BinaryOps)Opc, LHS, RHS);
5634 return false;
5635}
5636
Chris Lattnerac161bf2009-01-02 07:01:27 +00005637/// ParseCompare
5638/// ::= 'icmp' IPredicates TypeAndValue ',' Value
5639/// ::= 'fcmp' FPredicates TypeAndValue ',' Value
Chris Lattnerac161bf2009-01-02 07:01:27 +00005640bool LLParser::ParseCompare(Instruction *&Inst, PerFunctionState &PFS,
5641 unsigned Opc) {
5642 // Parse the integer/fp comparison predicate.
5643 LocTy Loc;
5644 unsigned Pred;
5645 Value *LHS, *RHS;
5646 if (ParseCmpPredicate(Pred, Opc) ||
5647 ParseTypeAndValue(LHS, Loc, PFS) ||
5648 ParseToken(lltok::comma, "expected ',' after compare value") ||
5649 ParseValue(LHS->getType(), RHS, PFS))
5650 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005651
Chris Lattnerac161bf2009-01-02 07:01:27 +00005652 if (Opc == Instruction::FCmp) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00005653 if (!LHS->getType()->isFPOrFPVectorTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00005654 return Error(Loc, "fcmp requires floating point operands");
Dan Gohmanad1f0a12009-08-25 23:17:54 +00005655 Inst = new FCmpInst(CmpInst::Predicate(Pred), LHS, RHS);
Nick Lewyckya21d3da2009-07-08 03:04:38 +00005656 } else {
5657 assert(Opc == Instruction::ICmp && "Unknown opcode for CmpInst!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00005658 if (!LHS->getType()->isIntOrIntVectorTy() &&
Nadav Rotem3924cb02011-12-05 06:29:09 +00005659 !LHS->getType()->getScalarType()->isPointerTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00005660 return Error(Loc, "icmp requires integer operands");
Dan Gohmanad1f0a12009-08-25 23:17:54 +00005661 Inst = new ICmpInst(CmpInst::Predicate(Pred), LHS, RHS);
Chris Lattnerac161bf2009-01-02 07:01:27 +00005662 }
5663 return false;
5664}
5665
5666//===----------------------------------------------------------------------===//
5667// Other Instructions.
5668//===----------------------------------------------------------------------===//
5669
5670
5671/// ParseCast
5672/// ::= CastOpc TypeAndValue 'to' Type
5673bool LLParser::ParseCast(Instruction *&Inst, PerFunctionState &PFS,
5674 unsigned Opc) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00005675 LocTy Loc;
5676 Value *Op;
Craig Topper2617dcc2014-04-15 06:32:26 +00005677 Type *DestTy = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005678 if (ParseTypeAndValue(Op, Loc, PFS) ||
5679 ParseToken(lltok::kw_to, "expected 'to' after cast value") ||
5680 ParseType(DestTy))
5681 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005682
Chris Lattner89d856e2009-03-01 00:53:13 +00005683 if (!CastInst::castIsValid((Instruction::CastOps)Opc, Op, DestTy)) {
5684 CastInst::castIsValid((Instruction::CastOps)Opc, Op, DestTy);
Chris Lattnerac161bf2009-01-02 07:01:27 +00005685 return Error(Loc, "invalid cast opcode for cast from '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00005686 getTypeString(Op->getType()) + "' to '" +
5687 getTypeString(DestTy) + "'");
Chris Lattner89d856e2009-03-01 00:53:13 +00005688 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00005689 Inst = CastInst::Create((Instruction::CastOps)Opc, Op, DestTy);
5690 return false;
5691}
5692
5693/// ParseSelect
5694/// ::= 'select' TypeAndValue ',' TypeAndValue ',' TypeAndValue
5695bool LLParser::ParseSelect(Instruction *&Inst, PerFunctionState &PFS) {
5696 LocTy Loc;
5697 Value *Op0, *Op1, *Op2;
5698 if (ParseTypeAndValue(Op0, Loc, PFS) ||
5699 ParseToken(lltok::comma, "expected ',' after select condition") ||
5700 ParseTypeAndValue(Op1, PFS) ||
5701 ParseToken(lltok::comma, "expected ',' after select value") ||
5702 ParseTypeAndValue(Op2, PFS))
5703 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005704
Chris Lattnerac161bf2009-01-02 07:01:27 +00005705 if (const char *Reason = SelectInst::areInvalidOperands(Op0, Op1, Op2))
5706 return Error(Loc, Reason);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005707
Chris Lattnerac161bf2009-01-02 07:01:27 +00005708 Inst = SelectInst::Create(Op0, Op1, Op2);
5709 return false;
5710}
5711
Chris Lattnerb55ab542009-01-05 08:18:44 +00005712/// ParseVA_Arg
5713/// ::= 'va_arg' TypeAndValue ',' Type
5714bool LLParser::ParseVA_Arg(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00005715 Value *Op;
Craig Topper2617dcc2014-04-15 06:32:26 +00005716 Type *EltTy = nullptr;
Chris Lattnerb55ab542009-01-05 08:18:44 +00005717 LocTy TypeLoc;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005718 if (ParseTypeAndValue(Op, PFS) ||
5719 ParseToken(lltok::comma, "expected ',' after vaarg operand") ||
Chris Lattnerb55ab542009-01-05 08:18:44 +00005720 ParseType(EltTy, TypeLoc))
Chris Lattnerac161bf2009-01-02 07:01:27 +00005721 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005722
Chris Lattnerb55ab542009-01-05 08:18:44 +00005723 if (!EltTy->isFirstClassType())
5724 return Error(TypeLoc, "va_arg requires operand with first class type");
Chris Lattnerac161bf2009-01-02 07:01:27 +00005725
5726 Inst = new VAArgInst(Op, EltTy);
5727 return false;
5728}
5729
5730/// ParseExtractElement
5731/// ::= 'extractelement' TypeAndValue ',' TypeAndValue
5732bool LLParser::ParseExtractElement(Instruction *&Inst, PerFunctionState &PFS) {
5733 LocTy Loc;
5734 Value *Op0, *Op1;
5735 if (ParseTypeAndValue(Op0, Loc, PFS) ||
5736 ParseToken(lltok::comma, "expected ',' after extract value") ||
5737 ParseTypeAndValue(Op1, PFS))
5738 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005739
Chris Lattnerac161bf2009-01-02 07:01:27 +00005740 if (!ExtractElementInst::isValidOperands(Op0, Op1))
5741 return Error(Loc, "invalid extractelement operands");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005742
Eric Christopherc9742252009-07-25 02:28:41 +00005743 Inst = ExtractElementInst::Create(Op0, Op1);
Chris Lattnerac161bf2009-01-02 07:01:27 +00005744 return false;
5745}
5746
5747/// ParseInsertElement
5748/// ::= 'insertelement' TypeAndValue ',' TypeAndValue ',' TypeAndValue
5749bool LLParser::ParseInsertElement(Instruction *&Inst, PerFunctionState &PFS) {
5750 LocTy Loc;
5751 Value *Op0, *Op1, *Op2;
5752 if (ParseTypeAndValue(Op0, Loc, PFS) ||
5753 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
5754 ParseTypeAndValue(Op1, PFS) ||
5755 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
5756 ParseTypeAndValue(Op2, PFS))
5757 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005758
Chris Lattnerac161bf2009-01-02 07:01:27 +00005759 if (!InsertElementInst::isValidOperands(Op0, Op1, Op2))
Eric Christopherfef8db62009-07-23 01:01:32 +00005760 return Error(Loc, "invalid insertelement operands");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005761
Chris Lattnerac161bf2009-01-02 07:01:27 +00005762 Inst = InsertElementInst::Create(Op0, Op1, Op2);
5763 return false;
5764}
5765
5766/// ParseShuffleVector
5767/// ::= 'shufflevector' TypeAndValue ',' TypeAndValue ',' TypeAndValue
5768bool LLParser::ParseShuffleVector(Instruction *&Inst, PerFunctionState &PFS) {
5769 LocTy Loc;
5770 Value *Op0, *Op1, *Op2;
5771 if (ParseTypeAndValue(Op0, Loc, PFS) ||
5772 ParseToken(lltok::comma, "expected ',' after shuffle mask") ||
5773 ParseTypeAndValue(Op1, PFS) ||
5774 ParseToken(lltok::comma, "expected ',' after shuffle value") ||
5775 ParseTypeAndValue(Op2, PFS))
5776 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005777
Chris Lattnerac161bf2009-01-02 07:01:27 +00005778 if (!ShuffleVectorInst::isValidOperands(Op0, Op1, Op2))
Pete Cooperc1a6f982012-02-01 23:43:12 +00005779 return Error(Loc, "invalid shufflevector operands");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005780
Chris Lattnerac161bf2009-01-02 07:01:27 +00005781 Inst = new ShuffleVectorInst(Op0, Op1, Op2);
5782 return false;
5783}
5784
5785/// ParsePHI
Chris Lattnerc05471e2009-10-18 05:27:44 +00005786/// ::= 'phi' Type '[' Value ',' Value ']' (',' '[' Value ',' Value ']')*
Chris Lattnerf4f03422009-12-30 05:27:33 +00005787int LLParser::ParsePHI(Instruction *&Inst, PerFunctionState &PFS) {
Craig Topper2617dcc2014-04-15 06:32:26 +00005788 Type *Ty = nullptr; LocTy TypeLoc;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005789 Value *Op0, *Op1;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005790
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00005791 if (ParseType(Ty, TypeLoc) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00005792 ParseToken(lltok::lsquare, "expected '[' in phi value list") ||
5793 ParseValue(Ty, Op0, PFS) ||
5794 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
Owen Anderson55f1c092009-08-13 21:58:54 +00005795 ParseValue(Type::getLabelTy(Context), Op1, PFS) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00005796 ParseToken(lltok::rsquare, "expected ']' in phi value list"))
5797 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005798
Chris Lattnerf4f03422009-12-30 05:27:33 +00005799 bool AteExtraComma = false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005800 SmallVector<std::pair<Value*, BasicBlock*>, 16> PHIVals;
Eugene Zelenko1804a772016-08-25 00:45:04 +00005801
5802 while (true) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00005803 PHIVals.push_back(std::make_pair(Op0, cast<BasicBlock>(Op1)));
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005804
Chris Lattner3822f632009-01-02 08:05:26 +00005805 if (!EatIfPresent(lltok::comma))
Chris Lattnerac161bf2009-01-02 07:01:27 +00005806 break;
5807
Chris Lattnerf4f03422009-12-30 05:27:33 +00005808 if (Lex.getKind() == lltok::MetadataVar) {
5809 AteExtraComma = true;
Devang Patel8f842d32009-10-16 18:45:49 +00005810 break;
Chris Lattnerf4f03422009-12-30 05:27:33 +00005811 }
Devang Patel8f842d32009-10-16 18:45:49 +00005812
Chris Lattner3822f632009-01-02 08:05:26 +00005813 if (ParseToken(lltok::lsquare, "expected '[' in phi value list") ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00005814 ParseValue(Ty, Op0, PFS) ||
5815 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
Owen Anderson55f1c092009-08-13 21:58:54 +00005816 ParseValue(Type::getLabelTy(Context), Op1, PFS) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00005817 ParseToken(lltok::rsquare, "expected ']' in phi value list"))
5818 return true;
5819 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005820
Chris Lattnerac161bf2009-01-02 07:01:27 +00005821 if (!Ty->isFirstClassType())
5822 return Error(TypeLoc, "phi node must have first class type");
5823
Jay Foad52131342011-03-30 11:28:46 +00005824 PHINode *PN = PHINode::Create(Ty, PHIVals.size());
Chris Lattnerac161bf2009-01-02 07:01:27 +00005825 for (unsigned i = 0, e = PHIVals.size(); i != e; ++i)
5826 PN->addIncoming(PHIVals[i].first, PHIVals[i].second);
5827 Inst = PN;
Chris Lattnerf4f03422009-12-30 05:27:33 +00005828 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005829}
5830
Bill Wendlingfae14752011-08-12 20:24:12 +00005831/// ParseLandingPad
5832/// ::= 'landingpad' Type 'personality' TypeAndValue 'cleanup'? Clause+
5833/// Clause
5834/// ::= 'catch' TypeAndValue
5835/// ::= 'filter'
5836/// ::= 'filter' TypeAndValue ( ',' TypeAndValue )*
5837bool LLParser::ParseLandingPad(Instruction *&Inst, PerFunctionState &PFS) {
Craig Topper2617dcc2014-04-15 06:32:26 +00005838 Type *Ty = nullptr; LocTy TyLoc;
Bill Wendlingfae14752011-08-12 20:24:12 +00005839
David Majnemer7fddecc2015-06-17 20:52:32 +00005840 if (ParseType(Ty, TyLoc))
Bill Wendlingfae14752011-08-12 20:24:12 +00005841 return true;
5842
David Majnemer7fddecc2015-06-17 20:52:32 +00005843 std::unique_ptr<LandingPadInst> LP(LandingPadInst::Create(Ty, 0));
Bill Wendlingfae14752011-08-12 20:24:12 +00005844 LP->setCleanup(EatIfPresent(lltok::kw_cleanup));
5845
5846 while (Lex.getKind() == lltok::kw_catch || Lex.getKind() == lltok::kw_filter){
5847 LandingPadInst::ClauseType CT;
5848 if (EatIfPresent(lltok::kw_catch))
5849 CT = LandingPadInst::Catch;
5850 else if (EatIfPresent(lltok::kw_filter))
5851 CT = LandingPadInst::Filter;
5852 else
5853 return TokError("expected 'catch' or 'filter' clause type");
5854
Rafael Espindola4dc5dfc2014-06-04 18:51:31 +00005855 Value *V;
5856 LocTy VLoc;
Owen Andersonf8f259d2015-03-09 07:13:42 +00005857 if (ParseTypeAndValue(V, VLoc, PFS))
Bill Wendlingfae14752011-08-12 20:24:12 +00005858 return true;
Bill Wendlingfae14752011-08-12 20:24:12 +00005859
Bill Wendlinga52aa3c2011-08-12 20:52:25 +00005860 // A 'catch' type expects a non-array constant. A filter clause expects an
5861 // array constant.
5862 if (CT == LandingPadInst::Catch) {
5863 if (isa<ArrayType>(V->getType()))
5864 Error(VLoc, "'catch' clause has an invalid type");
5865 } else {
5866 if (!isa<ArrayType>(V->getType()))
5867 Error(VLoc, "'filter' clause has an invalid type");
5868 }
5869
Owen Andersonf8f259d2015-03-09 07:13:42 +00005870 Constant *CV = dyn_cast<Constant>(V);
5871 if (!CV)
5872 return Error(VLoc, "clause argument must be a constant");
5873 LP->addClause(CV);
Bill Wendlingfae14752011-08-12 20:24:12 +00005874 }
5875
Owen Andersonf8f259d2015-03-09 07:13:42 +00005876 Inst = LP.release();
Bill Wendlingfae14752011-08-12 20:24:12 +00005877 return false;
5878}
5879
Chris Lattnerac161bf2009-01-02 07:01:27 +00005880/// ParseCall
Sanjay Patelfa54ace2015-12-14 21:59:03 +00005881/// ::= 'call' OptionalFastMathFlags OptionalCallingConv
5882/// OptionalAttrs Type Value ParameterList OptionalAttrs
5883/// ::= 'tail' 'call' OptionalFastMathFlags OptionalCallingConv
5884/// OptionalAttrs Type Value ParameterList OptionalAttrs
5885/// ::= 'musttail' 'call' OptionalFastMathFlags OptionalCallingConv
5886/// OptionalAttrs Type Value ParameterList OptionalAttrs
5887/// ::= 'notail' 'call' OptionalFastMathFlags OptionalCallingConv
5888/// OptionalAttrs Type Value ParameterList OptionalAttrs
Chris Lattnerac161bf2009-01-02 07:01:27 +00005889bool LLParser::ParseCall(Instruction *&Inst, PerFunctionState &PFS,
Reid Kleckner5772b772014-04-24 20:14:34 +00005890 CallInst::TailCallKind TCK) {
Bill Wendling50d27842012-10-15 20:35:56 +00005891 AttrBuilder RetAttrs, FnAttrs;
Bill Wendlingb32b0412013-02-08 06:32:06 +00005892 std::vector<unsigned> FwdRefAttrGrps;
Michael Gottesman41748d72013-06-27 00:25:01 +00005893 LocTy BuiltinLoc;
Alexey Samsonov17a9cff2014-09-10 18:00:17 +00005894 unsigned CC;
Craig Topper2617dcc2014-04-15 06:32:26 +00005895 Type *RetType = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005896 LocTy RetTypeLoc;
5897 ValID CalleeID;
5898 SmallVector<ParamInfo, 16> ArgList;
Sanjoy Dasb513a9f2015-09-24 23:34:52 +00005899 SmallVector<OperandBundleDef, 2> BundleList;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005900 LocTy CallLoc = Lex.getLoc();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005901
Sanjay Patelfa54ace2015-12-14 21:59:03 +00005902 if (TCK != CallInst::TCK_None &&
5903 ParseToken(lltok::kw_call,
5904 "expected 'tail call', 'musttail call', or 'notail call'"))
5905 return true;
5906
5907 FastMathFlags FMF = EatFastMathFlagsIfPresent();
5908
5909 if (ParseOptionalCallingConv(CC) || ParseOptionalReturnAttrs(RetAttrs) ||
Chris Lattnerf880ca22009-03-09 04:49:14 +00005910 ParseType(RetType, RetTypeLoc, true /*void allowed*/) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00005911 ParseValID(CalleeID) ||
Reid Kleckner83498642014-08-26 00:33:28 +00005912 ParseParameterList(ArgList, PFS, TCK == CallInst::TCK_MustTail,
5913 PFS.getFunction().isVarArg()) ||
Sanjoy Dasb513a9f2015-09-24 23:34:52 +00005914 ParseFnAttributeValuePairs(FnAttrs, FwdRefAttrGrps, false, BuiltinLoc) ||
5915 ParseOptionalOperandBundles(BundleList, PFS))
Chris Lattnerac161bf2009-01-02 07:01:27 +00005916 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005917
Sanjay Patelfa54ace2015-12-14 21:59:03 +00005918 if (FMF.any() && !RetType->isFPOrFPVectorTy())
5919 return Error(CallLoc, "fast-math-flags specified for call without "
5920 "floating-point scalar or vector return type");
5921
Chris Lattnerac161bf2009-01-02 07:01:27 +00005922 // If RetType is a non-function pointer type, then this is the short syntax
5923 // for the call, which means that RetType is just the return type. Infer the
5924 // rest of the function argument types from the arguments that are present.
David Blaikie23af6482015-04-16 23:24:18 +00005925 FunctionType *Ty = dyn_cast<FunctionType>(RetType);
5926 if (!Ty) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00005927 // Pull out the types of all of the arguments...
Jay Foadb804a2b2011-07-12 14:06:48 +00005928 std::vector<Type*> ParamTypes;
Eli Friedman6cf51412010-07-24 23:06:59 +00005929 for (unsigned i = 0, e = ArgList.size(); i != e; ++i)
5930 ParamTypes.push_back(ArgList[i].V->getType());
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005931
Chris Lattnerac161bf2009-01-02 07:01:27 +00005932 if (!FunctionType::isValidReturnType(RetType))
5933 return Error(RetTypeLoc, "Invalid result type for LLVM function");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005934
Owen Anderson4056ca92009-07-29 22:17:13 +00005935 Ty = FunctionType::get(RetType, ParamTypes, false);
Chris Lattnerac161bf2009-01-02 07:01:27 +00005936 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005937
David Blaikie41ba2b42015-07-27 23:32:19 +00005938 CalleeID.FTy = Ty;
5939
Chris Lattnerac161bf2009-01-02 07:01:27 +00005940 // Look up the callee.
5941 Value *Callee;
David Blaikie23af6482015-04-16 23:24:18 +00005942 if (ConvertValIDToValue(PointerType::getUnqual(Ty), CalleeID, Callee, &PFS))
5943 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005944
Bill Wendling3d7b0b82012-12-19 07:18:57 +00005945 // Set up the Attribute for the function.
Bill Wendlingf5075a42013-01-27 02:24:02 +00005946 SmallVector<AttributeSet, 8> Attrs;
Bill Wendling3bef2dd2012-09-19 23:54:18 +00005947 if (RetAttrs.hasAttributes())
Bill Wendlingf5075a42013-01-27 02:24:02 +00005948 Attrs.push_back(AttributeSet::get(RetType->getContext(),
5949 AttributeSet::ReturnIndex,
5950 RetAttrs));
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005951
Chris Lattnerac161bf2009-01-02 07:01:27 +00005952 SmallVector<Value*, 8> Args;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005953
Chris Lattnerac161bf2009-01-02 07:01:27 +00005954 // Loop through FunctionType's arguments and ensure they are specified
5955 // correctly. Also, gather any parameter attributes.
5956 FunctionType::param_iterator I = Ty->param_begin();
5957 FunctionType::param_iterator E = Ty->param_end();
5958 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
Craig Topper2617dcc2014-04-15 06:32:26 +00005959 Type *ExpectedTy = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005960 if (I != E) {
5961 ExpectedTy = *I++;
5962 } else if (!Ty->isVarArg()) {
5963 return Error(ArgList[i].Loc, "too many arguments specified");
5964 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005965
Chris Lattnerac161bf2009-01-02 07:01:27 +00005966 if (ExpectedTy && ExpectedTy != ArgList[i].V->getType())
5967 return Error(ArgList[i].Loc, "argument is not of expected type '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00005968 getTypeString(ExpectedTy) + "'");
Chris Lattnerac161bf2009-01-02 07:01:27 +00005969 Args.push_back(ArgList[i].V);
Bill Wendlingfe0021a2013-01-31 00:29:54 +00005970 if (ArgList[i].Attrs.hasAttributes(i + 1)) {
5971 AttrBuilder B(ArgList[i].Attrs, i + 1);
Bill Wendlingf5075a42013-01-27 02:24:02 +00005972 Attrs.push_back(AttributeSet::get(RetType->getContext(), i + 1, B));
5973 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00005974 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005975
Chris Lattnerac161bf2009-01-02 07:01:27 +00005976 if (I != E)
5977 return Error(CallLoc, "not enough parameters specified for call");
5978
David Majnemer8d22abd2015-02-23 00:01:32 +00005979 if (FnAttrs.hasAttributes()) {
5980 if (FnAttrs.hasAlignmentAttr())
5981 return Error(CallLoc, "call instructions may not have an alignment");
5982
Bill Wendlingf5075a42013-01-27 02:24:02 +00005983 Attrs.push_back(AttributeSet::get(RetType->getContext(),
5984 AttributeSet::FunctionIndex,
5985 FnAttrs));
David Majnemer8d22abd2015-02-23 00:01:32 +00005986 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00005987
Bill Wendling3d7b0b82012-12-19 07:18:57 +00005988 // Finish off the Attribute and check them
Bill Wendlinge94d8432012-12-07 23:16:57 +00005989 AttributeSet PAL = AttributeSet::get(Context, Attrs);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005990
Sanjoy Dasb513a9f2015-09-24 23:34:52 +00005991 CallInst *CI = CallInst::Create(Ty, Callee, Args, BundleList);
Reid Kleckner5772b772014-04-24 20:14:34 +00005992 CI->setTailCallKind(TCK);
Chris Lattnerac161bf2009-01-02 07:01:27 +00005993 CI->setCallingConv(CC);
Sanjay Patelfa54ace2015-12-14 21:59:03 +00005994 if (FMF.any())
5995 CI->setFastMathFlags(FMF);
Chris Lattnerac161bf2009-01-02 07:01:27 +00005996 CI->setAttributes(PAL);
Bill Wendlingb32b0412013-02-08 06:32:06 +00005997 ForwardRefAttrGroups[CI] = FwdRefAttrGrps;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005998 Inst = CI;
5999 return false;
6000}
6001
6002//===----------------------------------------------------------------------===//
6003// Memory Instructions.
6004//===----------------------------------------------------------------------===//
6005
6006/// ParseAlloc
Manman Ren9bfd0d02016-04-01 21:41:15 +00006007/// ::= 'alloca' 'inalloca'? 'swifterror'? Type (',' TypeAndValue)?
6008/// (',' 'align' i32)?
Chris Lattner78103722011-06-17 03:16:47 +00006009int LLParser::ParseAlloc(Instruction *&Inst, PerFunctionState &PFS) {
Craig Topper2617dcc2014-04-15 06:32:26 +00006010 Value *Size = nullptr;
David Majnemera3b0eb22015-02-16 08:38:03 +00006011 LocTy SizeLoc, TyLoc;
Chris Lattnerac161bf2009-01-02 07:01:27 +00006012 unsigned Alignment = 0;
Craig Topper2617dcc2014-04-15 06:32:26 +00006013 Type *Ty = nullptr;
David Majnemerc4ab61c2014-03-09 06:41:58 +00006014
6015 bool IsInAlloca = EatIfPresent(lltok::kw_inalloca);
Manman Ren9bfd0d02016-04-01 21:41:15 +00006016 bool IsSwiftError = EatIfPresent(lltok::kw_swifterror);
David Majnemerc4ab61c2014-03-09 06:41:58 +00006017
David Majnemera3b0eb22015-02-16 08:38:03 +00006018 if (ParseType(Ty, TyLoc)) return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00006019
David Majnemera3b0eb22015-02-16 08:38:03 +00006020 if (Ty->isFunctionTy() || !PointerType::isValidElementType(Ty))
6021 return Error(TyLoc, "invalid type for alloca");
David Majnemerfad5a312015-02-11 09:13:11 +00006022
Chris Lattnerb2f39502009-12-30 05:44:30 +00006023 bool AteExtraComma = false;
Chris Lattner3822f632009-01-02 08:05:26 +00006024 if (EatIfPresent(lltok::comma)) {
David Majnemerc4ab61c2014-03-09 06:41:58 +00006025 if (Lex.getKind() == lltok::kw_align) {
6026 if (ParseOptionalAlignment(Alignment)) return true;
6027 } else if (Lex.getKind() == lltok::MetadataVar) {
6028 AteExtraComma = true;
6029 } else {
6030 if (ParseTypeAndValue(Size, SizeLoc, PFS) ||
6031 ParseOptionalCommaAlign(Alignment, AteExtraComma))
6032 return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00006033 }
6034 }
6035
Dan Gohman2140a742010-05-28 01:14:11 +00006036 if (Size && !Size->getType()->isIntegerTy())
6037 return Error(SizeLoc, "element count must have integer type");
Chris Lattnerac161bf2009-01-02 07:01:27 +00006038
Reid Kleckner436c42e2014-01-17 23:58:17 +00006039 AllocaInst *AI = new AllocaInst(Ty, Size, Alignment);
6040 AI->setUsedWithInAlloca(IsInAlloca);
Manman Ren9bfd0d02016-04-01 21:41:15 +00006041 AI->setSwiftError(IsSwiftError);
Reid Kleckner436c42e2014-01-17 23:58:17 +00006042 Inst = AI;
Chris Lattner78103722011-06-17 03:16:47 +00006043 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerac161bf2009-01-02 07:01:27 +00006044}
6045
6046/// ParseLoad
Eli Friedman02e737b2011-08-12 22:50:01 +00006047/// ::= 'load' 'volatile'? TypeAndValue (',' 'align' i32)?
Michael Ilseman26ee2b82012-11-15 22:34:00 +00006048/// ::= 'load' 'atomic' 'volatile'? TypeAndValue
Eli Friedman02e737b2011-08-12 22:50:01 +00006049/// 'singlethread'? AtomicOrdering (',' 'align' i32)?
Chris Lattnerbc639292011-11-27 06:56:53 +00006050int LLParser::ParseLoad(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00006051 Value *Val; LocTy Loc;
Devang Patelea8a4b92009-09-17 23:04:48 +00006052 unsigned Alignment = 0;
Chris Lattnerb2f39502009-12-30 05:44:30 +00006053 bool AteExtraComma = false;
Eli Friedman02e737b2011-08-12 22:50:01 +00006054 bool isAtomic = false;
JF Bastien800f87a2016-04-06 21:19:33 +00006055 AtomicOrdering Ordering = AtomicOrdering::NotAtomic;
Eli Friedman59b66882011-08-09 23:02:53 +00006056 SynchronizationScope Scope = CrossThread;
Eli Friedman02e737b2011-08-12 22:50:01 +00006057
6058 if (Lex.getKind() == lltok::kw_atomic) {
Eli Friedman02e737b2011-08-12 22:50:01 +00006059 isAtomic = true;
6060 Lex.Lex();
6061 }
6062
Chris Lattnerbc639292011-11-27 06:56:53 +00006063 bool isVolatile = false;
Eli Friedman02e737b2011-08-12 22:50:01 +00006064 if (Lex.getKind() == lltok::kw_volatile) {
Eli Friedman02e737b2011-08-12 22:50:01 +00006065 isVolatile = true;
6066 Lex.Lex();
6067 }
6068
David Blaikie15d9a4c2015-04-06 20:59:48 +00006069 Type *Ty;
David Blaikiea79ac142015-02-27 21:17:42 +00006070 LocTy ExplicitTypeLoc = Lex.getLoc();
6071 if (ParseType(Ty) ||
6072 ParseToken(lltok::comma, "expected comma after load's type") ||
6073 ParseTypeAndValue(Val, Loc, PFS) ||
Eli Friedman59b66882011-08-09 23:02:53 +00006074 ParseScopeAndOrdering(isAtomic, Scope, Ordering) ||
Chris Lattnerb2f39502009-12-30 05:44:30 +00006075 ParseOptionalCommaAlign(Alignment, AteExtraComma))
6076 return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00006077
David Blaikie15d9a4c2015-04-06 20:59:48 +00006078 if (!Val->getType()->isPointerTy() || !Ty->isFirstClassType())
Chris Lattnerac161bf2009-01-02 07:01:27 +00006079 return Error(Loc, "load operand must be a pointer to a first class type");
Eli Friedman59b66882011-08-09 23:02:53 +00006080 if (isAtomic && !Alignment)
6081 return Error(Loc, "atomic load must have explicit non-zero alignment");
JF Bastien800f87a2016-04-06 21:19:33 +00006082 if (Ordering == AtomicOrdering::Release ||
6083 Ordering == AtomicOrdering::AcquireRelease)
Eli Friedman59b66882011-08-09 23:02:53 +00006084 return Error(Loc, "atomic load cannot use Release ordering");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00006085
David Blaikiea79ac142015-02-27 21:17:42 +00006086 if (Ty != cast<PointerType>(Val->getType())->getElementType())
6087 return Error(ExplicitTypeLoc,
6088 "explicit pointee type doesn't match operand's pointee type");
6089
David Blaikie15d9a4c2015-04-06 20:59:48 +00006090 Inst = new LoadInst(Ty, Val, "", isVolatile, Alignment, Ordering, Scope);
Chris Lattnerb2f39502009-12-30 05:44:30 +00006091 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerac161bf2009-01-02 07:01:27 +00006092}
6093
6094/// ParseStore
Eli Friedman02e737b2011-08-12 22:50:01 +00006095
6096/// ::= 'store' 'volatile'? TypeAndValue ',' TypeAndValue (',' 'align' i32)?
6097/// ::= 'store' 'atomic' 'volatile'? TypeAndValue ',' TypeAndValue
Eli Friedman59b66882011-08-09 23:02:53 +00006098/// 'singlethread'? AtomicOrdering (',' 'align' i32)?
Chris Lattnerbc639292011-11-27 06:56:53 +00006099int LLParser::ParseStore(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00006100 Value *Val, *Ptr; LocTy Loc, PtrLoc;
Devang Patelea8a4b92009-09-17 23:04:48 +00006101 unsigned Alignment = 0;
Chris Lattnerb2f39502009-12-30 05:44:30 +00006102 bool AteExtraComma = false;
Eli Friedman02e737b2011-08-12 22:50:01 +00006103 bool isAtomic = false;
JF Bastien800f87a2016-04-06 21:19:33 +00006104 AtomicOrdering Ordering = AtomicOrdering::NotAtomic;
Eli Friedman59b66882011-08-09 23:02:53 +00006105 SynchronizationScope Scope = CrossThread;
Eli Friedman02e737b2011-08-12 22:50:01 +00006106
6107 if (Lex.getKind() == lltok::kw_atomic) {
Eli Friedman02e737b2011-08-12 22:50:01 +00006108 isAtomic = true;
6109 Lex.Lex();
6110 }
6111
Chris Lattnerbc639292011-11-27 06:56:53 +00006112 bool isVolatile = false;
Eli Friedman02e737b2011-08-12 22:50:01 +00006113 if (Lex.getKind() == lltok::kw_volatile) {
Eli Friedman02e737b2011-08-12 22:50:01 +00006114 isVolatile = true;
6115 Lex.Lex();
6116 }
6117
Chris Lattnerac161bf2009-01-02 07:01:27 +00006118 if (ParseTypeAndValue(Val, Loc, PFS) ||
6119 ParseToken(lltok::comma, "expected ',' after store operand") ||
Chris Lattnerb2f39502009-12-30 05:44:30 +00006120 ParseTypeAndValue(Ptr, PtrLoc, PFS) ||
Eli Friedman59b66882011-08-09 23:02:53 +00006121 ParseScopeAndOrdering(isAtomic, Scope, Ordering) ||
Chris Lattnerb2f39502009-12-30 05:44:30 +00006122 ParseOptionalCommaAlign(Alignment, AteExtraComma))
Chris Lattnerac161bf2009-01-02 07:01:27 +00006123 return true;
Devang Patelea8a4b92009-09-17 23:04:48 +00006124
Duncan Sands19d0b472010-02-16 11:11:14 +00006125 if (!Ptr->getType()->isPointerTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00006126 return Error(PtrLoc, "store operand must be a pointer");
6127 if (!Val->getType()->isFirstClassType())
6128 return Error(Loc, "store operand must be a first class value");
6129 if (cast<PointerType>(Ptr->getType())->getElementType() != Val->getType())
6130 return Error(Loc, "stored value and pointer type do not match");
Eli Friedman59b66882011-08-09 23:02:53 +00006131 if (isAtomic && !Alignment)
6132 return Error(Loc, "atomic store must have explicit non-zero alignment");
JF Bastien800f87a2016-04-06 21:19:33 +00006133 if (Ordering == AtomicOrdering::Acquire ||
6134 Ordering == AtomicOrdering::AcquireRelease)
Eli Friedman59b66882011-08-09 23:02:53 +00006135 return Error(Loc, "atomic store cannot use Acquire ordering");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00006136
Eli Friedman59b66882011-08-09 23:02:53 +00006137 Inst = new StoreInst(Val, Ptr, isVolatile, Alignment, Ordering, Scope);
Chris Lattnerb2f39502009-12-30 05:44:30 +00006138 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerac161bf2009-01-02 07:01:27 +00006139}
6140
Eli Friedmanc9a551e2011-07-28 21:48:00 +00006141/// ParseCmpXchg
Tim Northover420a2162014-06-13 14:24:07 +00006142/// ::= 'cmpxchg' 'weak'? 'volatile'? TypeAndValue ',' TypeAndValue ','
6143/// TypeAndValue 'singlethread'? AtomicOrdering AtomicOrdering
Eli Friedman02e737b2011-08-12 22:50:01 +00006144int LLParser::ParseCmpXchg(Instruction *&Inst, PerFunctionState &PFS) {
Eli Friedmanc9a551e2011-07-28 21:48:00 +00006145 Value *Ptr, *Cmp, *New; LocTy PtrLoc, CmpLoc, NewLoc;
6146 bool AteExtraComma = false;
JF Bastien800f87a2016-04-06 21:19:33 +00006147 AtomicOrdering SuccessOrdering = AtomicOrdering::NotAtomic;
6148 AtomicOrdering FailureOrdering = AtomicOrdering::NotAtomic;
Eli Friedmanc9a551e2011-07-28 21:48:00 +00006149 SynchronizationScope Scope = CrossThread;
Eli Friedman02e737b2011-08-12 22:50:01 +00006150 bool isVolatile = false;
Tim Northover420a2162014-06-13 14:24:07 +00006151 bool isWeak = false;
6152
6153 if (EatIfPresent(lltok::kw_weak))
6154 isWeak = true;
Eli Friedman02e737b2011-08-12 22:50:01 +00006155
6156 if (EatIfPresent(lltok::kw_volatile))
6157 isVolatile = true;
6158
Eli Friedmanc9a551e2011-07-28 21:48:00 +00006159 if (ParseTypeAndValue(Ptr, PtrLoc, PFS) ||
6160 ParseToken(lltok::comma, "expected ',' after cmpxchg address") ||
6161 ParseTypeAndValue(Cmp, CmpLoc, PFS) ||
6162 ParseToken(lltok::comma, "expected ',' after cmpxchg cmp operand") ||
6163 ParseTypeAndValue(New, NewLoc, PFS) ||
Tim Northovere94a5182014-03-11 10:48:52 +00006164 ParseScopeAndOrdering(true /*Always atomic*/, Scope, SuccessOrdering) ||
6165 ParseOrdering(FailureOrdering))
Eli Friedmanc9a551e2011-07-28 21:48:00 +00006166 return true;
6167
JF Bastien800f87a2016-04-06 21:19:33 +00006168 if (SuccessOrdering == AtomicOrdering::Unordered ||
6169 FailureOrdering == AtomicOrdering::Unordered)
Eli Friedmanc9a551e2011-07-28 21:48:00 +00006170 return TokError("cmpxchg cannot be unordered");
JF Bastien800f87a2016-04-06 21:19:33 +00006171 if (isStrongerThan(FailureOrdering, SuccessOrdering))
6172 return TokError("cmpxchg failure argument shall be no stronger than the "
6173 "success argument");
6174 if (FailureOrdering == AtomicOrdering::Release ||
6175 FailureOrdering == AtomicOrdering::AcquireRelease)
6176 return TokError(
6177 "cmpxchg failure ordering cannot include release semantics");
Eli Friedmanc9a551e2011-07-28 21:48:00 +00006178 if (!Ptr->getType()->isPointerTy())
6179 return Error(PtrLoc, "cmpxchg operand must be a pointer");
6180 if (cast<PointerType>(Ptr->getType())->getElementType() != Cmp->getType())
6181 return Error(CmpLoc, "compare value and pointer type do not match");
6182 if (cast<PointerType>(Ptr->getType())->getElementType() != New->getType())
6183 return Error(NewLoc, "new value and pointer type do not match");
Philip Reames1960cfd2016-02-19 00:06:41 +00006184 if (!New->getType()->isFirstClassType())
6185 return Error(NewLoc, "cmpxchg operand must be a first class value");
Tim Northover420a2162014-06-13 14:24:07 +00006186 AtomicCmpXchgInst *CXI = new AtomicCmpXchgInst(
6187 Ptr, Cmp, New, SuccessOrdering, FailureOrdering, Scope);
Eli Friedmanc9a551e2011-07-28 21:48:00 +00006188 CXI->setVolatile(isVolatile);
Tim Northover420a2162014-06-13 14:24:07 +00006189 CXI->setWeak(isWeak);
Eli Friedmanc9a551e2011-07-28 21:48:00 +00006190 Inst = CXI;
6191 return AteExtraComma ? InstExtraComma : InstNormal;
6192}
6193
6194/// ParseAtomicRMW
Eli Friedman02e737b2011-08-12 22:50:01 +00006195/// ::= 'atomicrmw' 'volatile'? BinOp TypeAndValue ',' TypeAndValue
6196/// 'singlethread'? AtomicOrdering
6197int LLParser::ParseAtomicRMW(Instruction *&Inst, PerFunctionState &PFS) {
Eli Friedmanc9a551e2011-07-28 21:48:00 +00006198 Value *Ptr, *Val; LocTy PtrLoc, ValLoc;
6199 bool AteExtraComma = false;
JF Bastien800f87a2016-04-06 21:19:33 +00006200 AtomicOrdering Ordering = AtomicOrdering::NotAtomic;
Eli Friedmanc9a551e2011-07-28 21:48:00 +00006201 SynchronizationScope Scope = CrossThread;
Eli Friedman02e737b2011-08-12 22:50:01 +00006202 bool isVolatile = false;
Eli Friedmanc9a551e2011-07-28 21:48:00 +00006203 AtomicRMWInst::BinOp Operation;
Eli Friedman02e737b2011-08-12 22:50:01 +00006204
6205 if (EatIfPresent(lltok::kw_volatile))
6206 isVolatile = true;
6207
Eli Friedmanc9a551e2011-07-28 21:48:00 +00006208 switch (Lex.getKind()) {
6209 default: return TokError("expected binary operation in atomicrmw");
6210 case lltok::kw_xchg: Operation = AtomicRMWInst::Xchg; break;
6211 case lltok::kw_add: Operation = AtomicRMWInst::Add; break;
6212 case lltok::kw_sub: Operation = AtomicRMWInst::Sub; break;
6213 case lltok::kw_and: Operation = AtomicRMWInst::And; break;
6214 case lltok::kw_nand: Operation = AtomicRMWInst::Nand; break;
6215 case lltok::kw_or: Operation = AtomicRMWInst::Or; break;
6216 case lltok::kw_xor: Operation = AtomicRMWInst::Xor; break;
6217 case lltok::kw_max: Operation = AtomicRMWInst::Max; break;
6218 case lltok::kw_min: Operation = AtomicRMWInst::Min; break;
6219 case lltok::kw_umax: Operation = AtomicRMWInst::UMax; break;
6220 case lltok::kw_umin: Operation = AtomicRMWInst::UMin; break;
6221 }
6222 Lex.Lex(); // Eat the operation.
6223
6224 if (ParseTypeAndValue(Ptr, PtrLoc, PFS) ||
6225 ParseToken(lltok::comma, "expected ',' after atomicrmw address") ||
6226 ParseTypeAndValue(Val, ValLoc, PFS) ||
6227 ParseScopeAndOrdering(true /*Always atomic*/, Scope, Ordering))
6228 return true;
6229
JF Bastien800f87a2016-04-06 21:19:33 +00006230 if (Ordering == AtomicOrdering::Unordered)
Eli Friedmanc9a551e2011-07-28 21:48:00 +00006231 return TokError("atomicrmw cannot be unordered");
6232 if (!Ptr->getType()->isPointerTy())
6233 return Error(PtrLoc, "atomicrmw operand must be a pointer");
6234 if (cast<PointerType>(Ptr->getType())->getElementType() != Val->getType())
6235 return Error(ValLoc, "atomicrmw value and pointer type do not match");
6236 if (!Val->getType()->isIntegerTy())
6237 return Error(ValLoc, "atomicrmw operand must be an integer");
6238 unsigned Size = Val->getType()->getPrimitiveSizeInBits();
6239 if (Size < 8 || (Size & (Size - 1)))
6240 return Error(ValLoc, "atomicrmw operand must be power-of-two byte-sized"
6241 " integer");
6242
6243 AtomicRMWInst *RMWI =
6244 new AtomicRMWInst(Operation, Ptr, Val, Ordering, Scope);
6245 RMWI->setVolatile(isVolatile);
6246 Inst = RMWI;
6247 return AteExtraComma ? InstExtraComma : InstNormal;
6248}
6249
Eli Friedmanfee02c62011-07-25 23:16:38 +00006250/// ParseFence
6251/// ::= 'fence' 'singlethread'? AtomicOrdering
6252int LLParser::ParseFence(Instruction *&Inst, PerFunctionState &PFS) {
JF Bastien800f87a2016-04-06 21:19:33 +00006253 AtomicOrdering Ordering = AtomicOrdering::NotAtomic;
Eli Friedmanfee02c62011-07-25 23:16:38 +00006254 SynchronizationScope Scope = CrossThread;
6255 if (ParseScopeAndOrdering(true /*Always atomic*/, Scope, Ordering))
6256 return true;
6257
JF Bastien800f87a2016-04-06 21:19:33 +00006258 if (Ordering == AtomicOrdering::Unordered)
Eli Friedmanfee02c62011-07-25 23:16:38 +00006259 return TokError("fence cannot be unordered");
JF Bastien800f87a2016-04-06 21:19:33 +00006260 if (Ordering == AtomicOrdering::Monotonic)
Eli Friedmanfee02c62011-07-25 23:16:38 +00006261 return TokError("fence cannot be monotonic");
6262
6263 Inst = new FenceInst(Context, Ordering, Scope);
6264 return InstNormal;
6265}
6266
Chris Lattnerac161bf2009-01-02 07:01:27 +00006267/// ParseGetElementPtr
Dan Gohman1639c392009-07-27 21:53:46 +00006268/// ::= 'getelementptr' 'inbounds'? TypeAndValue (',' TypeAndValue)*
Chris Lattnerf4f03422009-12-30 05:27:33 +00006269int LLParser::ParseGetElementPtr(Instruction *&Inst, PerFunctionState &PFS) {
Craig Topper2617dcc2014-04-15 06:32:26 +00006270 Value *Ptr = nullptr;
6271 Value *Val = nullptr;
Nadav Rotem3924cb02011-12-05 06:29:09 +00006272 LocTy Loc, EltLoc;
Dan Gohman1639c392009-07-27 21:53:46 +00006273
Dan Gohman16cbbe42009-07-29 15:58:36 +00006274 bool InBounds = EatIfPresent(lltok::kw_inbounds);
Dan Gohman1639c392009-07-27 21:53:46 +00006275
David Blaikie79e6c742015-02-27 19:29:02 +00006276 Type *Ty = nullptr;
6277 LocTy ExplicitTypeLoc = Lex.getLoc();
6278 if (ParseType(Ty) ||
6279 ParseToken(lltok::comma, "expected comma after getelementptr's type") ||
6280 ParseTypeAndValue(Ptr, Loc, PFS))
6281 return true;
6282
Eli Benderskyd9806682013-04-22 17:03:42 +00006283 Type *BaseType = Ptr->getType();
6284 PointerType *BasePointerType = dyn_cast<PointerType>(BaseType->getScalarType());
6285 if (!BasePointerType)
Chris Lattnerac161bf2009-01-02 07:01:27 +00006286 return Error(Loc, "base of getelementptr must be a pointer");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00006287
David Blaikie8d757942015-03-09 23:08:44 +00006288 if (Ty != BasePointerType->getElementType())
6289 return Error(ExplicitTypeLoc,
6290 "explicit pointee type doesn't match operand's pointee type");
6291
Chris Lattnerac161bf2009-01-02 07:01:27 +00006292 SmallVector<Value*, 16> Indices;
Chris Lattnerf4f03422009-12-30 05:27:33 +00006293 bool AteExtraComma = false;
Elena Demikhovsky37a4da82015-07-09 07:42:48 +00006294 // GEP returns a vector of pointers if at least one of parameters is a vector.
6295 // All vector parameters should have the same vector width.
6296 unsigned GEPWidth = BaseType->isVectorTy() ?
6297 BaseType->getVectorNumElements() : 0;
6298
Chris Lattner3822f632009-01-02 08:05:26 +00006299 while (EatIfPresent(lltok::comma)) {
Chris Lattnerf4f03422009-12-30 05:27:33 +00006300 if (Lex.getKind() == lltok::MetadataVar) {
6301 AteExtraComma = true;
Devang Patel52b17452009-10-13 18:49:55 +00006302 break;
Chris Lattnerf4f03422009-12-30 05:27:33 +00006303 }
Chris Lattner3822f632009-01-02 08:05:26 +00006304 if (ParseTypeAndValue(Val, EltLoc, PFS)) return true;
Nadav Rotem3924cb02011-12-05 06:29:09 +00006305 if (!Val->getType()->getScalarType()->isIntegerTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00006306 return Error(EltLoc, "getelementptr index must be an integer");
Elena Demikhovsky37a4da82015-07-09 07:42:48 +00006307
Nadav Rotem3924cb02011-12-05 06:29:09 +00006308 if (Val->getType()->isVectorTy()) {
Elena Demikhovsky37a4da82015-07-09 07:42:48 +00006309 unsigned ValNumEl = Val->getType()->getVectorNumElements();
6310 if (GEPWidth && GEPWidth != ValNumEl)
Nadav Rotem3924cb02011-12-05 06:29:09 +00006311 return Error(EltLoc,
6312 "getelementptr vector index has a wrong number of elements");
Elena Demikhovsky37a4da82015-07-09 07:42:48 +00006313 GEPWidth = ValNumEl;
Nadav Rotem3924cb02011-12-05 06:29:09 +00006314 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00006315 Indices.push_back(Val);
6316 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00006317
Craig Toppere3dcce92015-08-01 22:20:21 +00006318 SmallPtrSet<Type*, 4> Visited;
David Blaikied33bad32015-04-17 22:32:13 +00006319 if (!Indices.empty() && !Ty->isSized(&Visited))
Eli Benderskyd9806682013-04-22 17:03:42 +00006320 return Error(Loc, "base element of getelementptr must be sized");
6321
David Blaikied33bad32015-04-17 22:32:13 +00006322 if (!GetElementPtrInst::getIndexedType(Ty, Indices))
Chris Lattnerac161bf2009-01-02 07:01:27 +00006323 return Error(Loc, "invalid getelementptr indices");
David Blaikiecd7b97e2015-03-14 21:11:24 +00006324 Inst = GetElementPtrInst::Create(Ty, Ptr, Indices);
Dan Gohman1639c392009-07-27 21:53:46 +00006325 if (InBounds)
Dan Gohman1b849082009-09-07 23:54:19 +00006326 cast<GetElementPtrInst>(Inst)->setIsInBounds(true);
Chris Lattnerf4f03422009-12-30 05:27:33 +00006327 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerac161bf2009-01-02 07:01:27 +00006328}
6329
6330/// ParseExtractValue
6331/// ::= 'extractvalue' TypeAndValue (',' uint32)+
Chris Lattnerf4f03422009-12-30 05:27:33 +00006332int LLParser::ParseExtractValue(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00006333 Value *Val; LocTy Loc;
6334 SmallVector<unsigned, 4> Indices;
Chris Lattnerf4f03422009-12-30 05:27:33 +00006335 bool AteExtraComma;
Chris Lattnerac161bf2009-01-02 07:01:27 +00006336 if (ParseTypeAndValue(Val, Loc, PFS) ||
Chris Lattnerf4f03422009-12-30 05:27:33 +00006337 ParseIndexList(Indices, AteExtraComma))
Chris Lattnerac161bf2009-01-02 07:01:27 +00006338 return true;
6339
Chris Lattner392be582010-02-12 20:49:41 +00006340 if (!Val->getType()->isAggregateType())
6341 return Error(Loc, "extractvalue operand must be aggregate type");
Chris Lattnerac161bf2009-01-02 07:01:27 +00006342
Jay Foad57aa6362011-07-13 10:26:04 +00006343 if (!ExtractValueInst::getIndexedType(Val->getType(), Indices))
Chris Lattnerac161bf2009-01-02 07:01:27 +00006344 return Error(Loc, "invalid indices for extractvalue");
Jay Foad57aa6362011-07-13 10:26:04 +00006345 Inst = ExtractValueInst::Create(Val, Indices);
Chris Lattnerf4f03422009-12-30 05:27:33 +00006346 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerac161bf2009-01-02 07:01:27 +00006347}
6348
6349/// ParseInsertValue
6350/// ::= 'insertvalue' TypeAndValue ',' TypeAndValue (',' uint32)+
Chris Lattnerf4f03422009-12-30 05:27:33 +00006351int LLParser::ParseInsertValue(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00006352 Value *Val0, *Val1; LocTy Loc0, Loc1;
6353 SmallVector<unsigned, 4> Indices;
Chris Lattnerf4f03422009-12-30 05:27:33 +00006354 bool AteExtraComma;
Chris Lattnerac161bf2009-01-02 07:01:27 +00006355 if (ParseTypeAndValue(Val0, Loc0, PFS) ||
6356 ParseToken(lltok::comma, "expected comma after insertvalue operand") ||
6357 ParseTypeAndValue(Val1, Loc1, PFS) ||
Chris Lattnerf4f03422009-12-30 05:27:33 +00006358 ParseIndexList(Indices, AteExtraComma))
Chris Lattnerac161bf2009-01-02 07:01:27 +00006359 return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00006360
Chris Lattner392be582010-02-12 20:49:41 +00006361 if (!Val0->getType()->isAggregateType())
6362 return Error(Loc0, "insertvalue operand must be aggregate type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00006363
David Majnemer30074532015-02-11 07:43:58 +00006364 Type *IndexedType = ExtractValueInst::getIndexedType(Val0->getType(), Indices);
6365 if (!IndexedType)
Chris Lattnerac161bf2009-01-02 07:01:27 +00006366 return Error(Loc0, "invalid indices for insertvalue");
David Majnemer30074532015-02-11 07:43:58 +00006367 if (IndexedType != Val1->getType())
6368 return Error(Loc1, "insertvalue operand and field disagree in type: '" +
6369 getTypeString(Val1->getType()) + "' instead of '" +
6370 getTypeString(IndexedType) + "'");
Jay Foad57aa6362011-07-13 10:26:04 +00006371 Inst = InsertValueInst::Create(Val0, Val1, Indices);
Chris Lattnerf4f03422009-12-30 05:27:33 +00006372 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerac161bf2009-01-02 07:01:27 +00006373}
Nick Lewycky49f89192009-04-04 07:22:01 +00006374
6375//===----------------------------------------------------------------------===//
6376// Embedded metadata.
6377//===----------------------------------------------------------------------===//
6378
6379/// ParseMDNodeVector
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00006380/// ::= { Element (',' Element)* }
Nick Lewyckyb8f9b7a2009-05-10 20:57:05 +00006381/// Element
6382/// ::= 'null' | TypeAndValue
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00006383bool LLParser::ParseMDNodeVector(SmallVectorImpl<Metadata *> &Elts) {
David Majnemer06f960d2014-12-11 20:44:09 +00006384 if (ParseToken(lltok::lbrace, "expected '{' here"))
6385 return true;
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00006386
Dan Gohman1e0213a2010-07-13 19:33:27 +00006387 // Check for an empty list.
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00006388 if (EatIfPresent(lltok::rbrace))
Dan Gohman1e0213a2010-07-13 19:33:27 +00006389 return false;
6390
Nick Lewycky49f89192009-04-04 07:22:01 +00006391 do {
Chris Lattnera01ddfc2009-12-30 04:42:57 +00006392 // Null is a special case since it is typeless.
6393 if (EatIfPresent(lltok::kw_null)) {
Craig Topper2617dcc2014-04-15 06:32:26 +00006394 Elts.push_back(nullptr);
Chris Lattnera01ddfc2009-12-30 04:42:57 +00006395 continue;
Nick Lewyckyb8f9b7a2009-05-10 20:57:05 +00006396 }
Michael Ilseman26ee2b82012-11-15 22:34:00 +00006397
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00006398 Metadata *MD;
6399 if (ParseMetadata(MD, nullptr))
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00006400 return true;
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00006401 Elts.push_back(MD);
Nick Lewycky49f89192009-04-04 07:22:01 +00006402 } while (EatIfPresent(lltok::comma));
6403
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00006404 return ParseToken(lltok::rbrace, "expected end of metadata node");
Nick Lewycky49f89192009-04-04 07:22:01 +00006405}
Duncan P. N. Exon Smith0a448fb2014-08-19 21:30:15 +00006406
6407//===----------------------------------------------------------------------===//
6408// Use-list order directives.
6409//===----------------------------------------------------------------------===//
6410bool LLParser::sortUseListOrder(Value *V, ArrayRef<unsigned> Indexes,
6411 SMLoc Loc) {
6412 if (V->use_empty())
6413 return Error(Loc, "value has no uses");
6414
6415 unsigned NumUses = 0;
6416 SmallDenseMap<const Use *, unsigned, 16> Order;
6417 for (const Use &U : V->uses()) {
6418 if (++NumUses > Indexes.size())
6419 break;
6420 Order[&U] = Indexes[NumUses - 1];
6421 }
6422 if (NumUses < 2)
6423 return Error(Loc, "value only has one use");
6424 if (Order.size() != Indexes.size() || NumUses > Indexes.size())
6425 return Error(Loc, "wrong number of indexes, expected " +
6426 Twine(std::distance(V->use_begin(), V->use_end())));
6427
6428 V->sortUseList([&](const Use &L, const Use &R) {
6429 return Order.lookup(&L) < Order.lookup(&R);
6430 });
6431 return false;
6432}
6433
6434/// ParseUseListOrderIndexes
6435/// ::= '{' uint32 (',' uint32)+ '}'
6436bool LLParser::ParseUseListOrderIndexes(SmallVectorImpl<unsigned> &Indexes) {
6437 SMLoc Loc = Lex.getLoc();
6438 if (ParseToken(lltok::lbrace, "expected '{' here"))
6439 return true;
6440 if (Lex.getKind() == lltok::rbrace)
6441 return Lex.Error("expected non-empty list of uselistorder indexes");
6442
6443 // Use Offset, Max, and IsOrdered to check consistency of indexes. The
6444 // indexes should be distinct numbers in the range [0, size-1], and should
6445 // not be in order.
6446 unsigned Offset = 0;
6447 unsigned Max = 0;
6448 bool IsOrdered = true;
6449 assert(Indexes.empty() && "Expected empty order vector");
6450 do {
6451 unsigned Index;
6452 if (ParseUInt32(Index))
6453 return true;
6454
6455 // Update consistency checks.
6456 Offset += Index - Indexes.size();
6457 Max = std::max(Max, Index);
6458 IsOrdered &= Index == Indexes.size();
6459
6460 Indexes.push_back(Index);
6461 } while (EatIfPresent(lltok::comma));
6462
6463 if (ParseToken(lltok::rbrace, "expected '}' here"))
6464 return true;
6465
6466 if (Indexes.size() < 2)
6467 return Error(Loc, "expected >= 2 uselistorder indexes");
6468 if (Offset != 0 || Max >= Indexes.size())
6469 return Error(Loc, "expected distinct uselistorder indexes in range [0, size)");
6470 if (IsOrdered)
6471 return Error(Loc, "expected uselistorder indexes to change the order");
6472
6473 return false;
6474}
6475
6476/// ParseUseListOrder
6477/// ::= 'uselistorder' Type Value ',' UseListOrderIndexes
6478bool LLParser::ParseUseListOrder(PerFunctionState *PFS) {
6479 SMLoc Loc = Lex.getLoc();
6480 if (ParseToken(lltok::kw_uselistorder, "expected uselistorder directive"))
6481 return true;
6482
6483 Value *V;
6484 SmallVector<unsigned, 16> Indexes;
6485 if (ParseTypeAndValue(V, PFS) ||
6486 ParseToken(lltok::comma, "expected comma in uselistorder directive") ||
6487 ParseUseListOrderIndexes(Indexes))
6488 return true;
6489
6490 return sortUseListOrder(V, Indexes, Loc);
6491}
6492
6493/// ParseUseListOrderBB
6494/// ::= 'uselistorder_bb' @foo ',' %bar ',' UseListOrderIndexes
6495bool LLParser::ParseUseListOrderBB() {
6496 assert(Lex.getKind() == lltok::kw_uselistorder_bb);
6497 SMLoc Loc = Lex.getLoc();
6498 Lex.Lex();
6499
6500 ValID Fn, Label;
6501 SmallVector<unsigned, 16> Indexes;
6502 if (ParseValID(Fn) ||
6503 ParseToken(lltok::comma, "expected comma in uselistorder_bb directive") ||
6504 ParseValID(Label) ||
6505 ParseToken(lltok::comma, "expected comma in uselistorder_bb directive") ||
6506 ParseUseListOrderIndexes(Indexes))
6507 return true;
6508
6509 // Check the function.
6510 GlobalValue *GV;
6511 if (Fn.Kind == ValID::t_GlobalName)
6512 GV = M->getNamedValue(Fn.StrVal);
6513 else if (Fn.Kind == ValID::t_GlobalID)
6514 GV = Fn.UIntVal < NumberedVals.size() ? NumberedVals[Fn.UIntVal] : nullptr;
6515 else
6516 return Error(Fn.Loc, "expected function name in uselistorder_bb");
6517 if (!GV)
6518 return Error(Fn.Loc, "invalid function forward reference in uselistorder_bb");
6519 auto *F = dyn_cast<Function>(GV);
6520 if (!F)
6521 return Error(Fn.Loc, "expected function name in uselistorder_bb");
6522 if (F->isDeclaration())
6523 return Error(Fn.Loc, "invalid declaration in uselistorder_bb");
6524
6525 // Check the basic block.
6526 if (Label.Kind == ValID::t_LocalID)
6527 return Error(Label.Loc, "invalid numeric label in uselistorder_bb");
6528 if (Label.Kind != ValID::t_LocalName)
6529 return Error(Label.Loc, "expected basic block name in uselistorder_bb");
Mehdi Aminia53d49e2016-09-17 06:00:02 +00006530 Value *V = F->getValueSymbolTable()->lookup(Label.StrVal);
Duncan P. N. Exon Smith0a448fb2014-08-19 21:30:15 +00006531 if (!V)
6532 return Error(Label.Loc, "invalid basic block in uselistorder_bb");
6533 if (!isa<BasicBlock>(V))
6534 return Error(Label.Loc, "expected basic block in uselistorder_bb");
6535
6536 return sortUseListOrder(V, Indexes, Loc);
6537}