blob: 6f425721c1bd821570c021df9b1f1fb927a04074 [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"
David Blaikieadbda4b2015-08-03 20:08:41 +000018#include "llvm/ADT/STLExtras.h"
Chandler Carruth6bda14b2017-06-06 11:49:48 +000019#include "llvm/ADT/SmallPtrSet.h"
Alex Lorenz8955f7d2015-06-23 17:10:10 +000020#include "llvm/AsmParser/SlotMapping.h"
Zachary Turner264b5d92017-06-07 03:48:56 +000021#include "llvm/BinaryFormat/Dwarf.h"
Eugene Zelenko1804a772016-08-25 00:45:04 +000022#include "llvm/IR/Argument.h"
Chandler Carruth91065212014-03-05 10:34:14 +000023#include "llvm/IR/AutoUpgrade.h"
Eugene Zelenko1804a772016-08-25 00:45:04 +000024#include "llvm/IR/BasicBlock.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000025#include "llvm/IR/CallingConv.h"
Eugene Zelenko1804a772016-08-25 00:45:04 +000026#include "llvm/IR/Comdat.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000027#include "llvm/IR/Constants.h"
Duncan P. N. Exon Smithd9901ff2015-02-02 18:53:21 +000028#include "llvm/IR/DebugInfoMetadata.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000029#include "llvm/IR/DerivedTypes.h"
Eugene Zelenko1804a772016-08-25 00:45:04 +000030#include "llvm/IR/Function.h"
31#include "llvm/IR/GlobalIFunc.h"
32#include "llvm/IR/GlobalObject.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000033#include "llvm/IR/InlineAsm.h"
Eugene Zelenko1804a772016-08-25 00:45:04 +000034#include "llvm/IR/Instruction.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000035#include "llvm/IR/Instructions.h"
Artur Pilipenko6c7a8ab2016-06-24 15:10:29 +000036#include "llvm/IR/Intrinsics.h"
Manman Ren209b17c2013-09-28 00:22:27 +000037#include "llvm/IR/LLVMContext.h"
Eugene Zelenko1804a772016-08-25 00:45:04 +000038#include "llvm/IR/Metadata.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000039#include "llvm/IR/Module.h"
40#include "llvm/IR/Operator.h"
Eugene Zelenko1804a772016-08-25 00:45:04 +000041#include "llvm/IR/Type.h"
42#include "llvm/IR/Value.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000043#include "llvm/IR/ValueSymbolTable.h"
Eugene Zelenko1804a772016-08-25 00:45:04 +000044#include "llvm/Support/Casting.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.
Saleem Abdulrasool17995672016-12-27 18:35:22 +0000124 for (const auto &RAG : ForwardRefAttrGroups) {
125 Value *V = RAG.first;
126 const std::vector<unsigned> &Attrs = RAG.second;
Bill Wendlingb32b0412013-02-08 06:32:06 +0000127 AttrBuilder B;
128
Saleem Abdulrasool17995672016-12-27 18:35:22 +0000129 for (const auto &Attr : Attrs)
130 B.merge(NumberedAttrBuilders[Attr]);
Bill Wendlingb32b0412013-02-08 06:32:06 +0000131
132 if (Function *Fn = dyn_cast<Function>(V)) {
Reid Klecknerb5180542017-03-21 16:57:19 +0000133 AttributeList AS = Fn->getAttributes();
Reid Klecknereb9dd5b2017-04-10 23:31:05 +0000134 AttrBuilder FnAttrs(AS.getFnAttributes());
135 AS = AS.removeAttributes(Context, AttributeList::FunctionIndex);
Bill Wendlingb32b0412013-02-08 06:32:06 +0000136
137 FnAttrs.merge(B);
138
139 // If the alignment was parsed as an attribute, move to the alignment
140 // field.
141 if (FnAttrs.hasAlignmentAttr()) {
142 Fn->setAlignment(FnAttrs.getAlignment());
143 FnAttrs.removeAttribute(Attribute::Alignment);
144 }
145
Reid Kleckner9d16fa02017-04-19 17:28:52 +0000146 AS = AS.addAttributes(Context, AttributeList::FunctionIndex,
147 AttributeSet::get(Context, FnAttrs));
Bill Wendlingb32b0412013-02-08 06:32:06 +0000148 Fn->setAttributes(AS);
149 } else if (CallInst *CI = dyn_cast<CallInst>(V)) {
Reid Klecknerb5180542017-03-21 16:57:19 +0000150 AttributeList AS = CI->getAttributes();
Reid Klecknereb9dd5b2017-04-10 23:31:05 +0000151 AttrBuilder FnAttrs(AS.getFnAttributes());
152 AS = AS.removeAttributes(Context, AttributeList::FunctionIndex);
Bill Wendling59dce372013-02-12 10:13:06 +0000153 FnAttrs.merge(B);
Reid Kleckner9d16fa02017-04-19 17:28:52 +0000154 AS = AS.addAttributes(Context, AttributeList::FunctionIndex,
155 AttributeSet::get(Context, FnAttrs));
Bill Wendlingb32b0412013-02-08 06:32:06 +0000156 CI->setAttributes(AS);
157 } else if (InvokeInst *II = dyn_cast<InvokeInst>(V)) {
Reid Klecknerb5180542017-03-21 16:57:19 +0000158 AttributeList AS = II->getAttributes();
Reid Klecknereb9dd5b2017-04-10 23:31:05 +0000159 AttrBuilder FnAttrs(AS.getFnAttributes());
160 AS = AS.removeAttributes(Context, AttributeList::FunctionIndex);
Bill Wendling59dce372013-02-12 10:13:06 +0000161 FnAttrs.merge(B);
Reid Kleckner9d16fa02017-04-19 17:28:52 +0000162 AS = AS.addAttributes(Context, AttributeList::FunctionIndex,
163 AttributeSet::get(Context, FnAttrs));
Bill Wendlingb32b0412013-02-08 06:32:06 +0000164 II->setAttributes(AS);
Javed Absarf3d79042017-05-11 12:28:08 +0000165 } else if (auto *GV = dyn_cast<GlobalVariable>(V)) {
166 AttrBuilder Attrs(GV->getAttributes());
167 Attrs.merge(B);
168 GV->setAttributes(AttributeSet::get(Context,Attrs));
Bill Wendlingb32b0412013-02-08 06:32:06 +0000169 } else {
170 llvm_unreachable("invalid object with forward attribute group reference");
171 }
172 }
Michael Ilseman26ee2b82012-11-15 22:34:00 +0000173
Duncan P. N. Exon Smith17169902014-08-19 00:13:19 +0000174 // If there are entries in ForwardRefBlockAddresses at this point, the
175 // function was never defined.
176 if (!ForwardRefBlockAddresses.empty())
177 return Error(ForwardRefBlockAddresses.begin()->first.Loc,
178 "expected function name in blockaddress");
Michael Ilseman26ee2b82012-11-15 22:34:00 +0000179
David Majnemer19b51052015-02-11 07:43:56 +0000180 for (const auto &NT : NumberedTypes)
181 if (NT.second.second.isValid())
182 return Error(NT.second.second,
183 "use of undefined type '%" + Twine(NT.first) + "'");
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000184
185 for (StringMap<std::pair<Type*, LocTy> >::iterator I =
186 NamedTypes.begin(), E = NamedTypes.end(); I != E; ++I)
187 if (I->second.second.isValid())
188 return Error(I->second.second,
189 "use of undefined type named '" + I->getKey() + "'");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000190
David Majnemerdad0a642014-06-27 18:19:56 +0000191 if (!ForwardRefComdats.empty())
192 return Error(ForwardRefComdats.begin()->second,
193 "use of undefined comdat '$" +
194 ForwardRefComdats.begin()->first + "'");
195
Chris Lattnerac161bf2009-01-02 07:01:27 +0000196 if (!ForwardRefVals.empty())
197 return Error(ForwardRefVals.begin()->second.second,
198 "use of undefined value '@" + ForwardRefVals.begin()->first +
199 "'");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000200
Chris Lattnerac161bf2009-01-02 07:01:27 +0000201 if (!ForwardRefValIDs.empty())
202 return Error(ForwardRefValIDs.begin()->second.second,
203 "use of undefined value '@" +
Benjamin Kramerc7583112010-09-27 17:42:11 +0000204 Twine(ForwardRefValIDs.begin()->first) + "'");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000205
Devang Pateld2541152009-07-08 19:23:54 +0000206 if (!ForwardRefMDNodes.empty())
207 return Error(ForwardRefMDNodes.begin()->second.second,
208 "use of undefined metadata '!" +
Benjamin Kramerc7583112010-09-27 17:42:11 +0000209 Twine(ForwardRefMDNodes.begin()->first) + "'");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000210
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000211 // Resolve metadata cycles.
David Majnemer19b51052015-02-11 07:43:56 +0000212 for (auto &N : NumberedMetadata) {
213 if (N.second && !N.second->isResolved())
214 N.second->resolveCycles();
215 }
Devang Pateld2541152009-07-08 19:23:54 +0000216
Mehdi Aminie4709272016-09-14 22:29:59 +0000217 for (auto *Inst : InstsWithTBAATag) {
218 MDNode *MD = Inst->getMetadata(LLVMContext::MD_tbaa);
219 assert(MD && "UpgradeInstWithTBAATag should have a TBAA tag");
220 auto *UpgradedMD = UpgradeTBAANode(*MD);
221 if (MD != UpgradedMD)
222 Inst->setMetadata(LLVMContext::MD_tbaa, UpgradedMD);
223 }
Duncan P. N. Exon Smith29883862016-04-06 02:06:40 +0000224
Chris Lattnerac161bf2009-01-02 07:01:27 +0000225 // Look for intrinsic functions and CallInst that need to be upgraded
226 for (Module::iterator FI = M->begin(), FE = M->end(); FI != FE; )
Duncan P. N. Exon Smithac331fb2015-10-20 01:12:49 +0000227 UpgradeCallsToIntrinsic(&*FI++); // must be post-increment, as we remove
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000228
Artur Pilipenko6c7a8ab2016-06-24 15:10:29 +0000229 // Some types could be renamed during loading if several modules are
230 // loaded in the same LLVMContext (LTO scenario). In this case we should
231 // remangle intrinsics names as well.
232 for (Module::iterator FI = M->begin(), FE = M->end(); FI != FE; ) {
233 Function *F = &*FI++;
234 if (auto Remangled = Intrinsic::remangleIntrinsicFunction(F)) {
235 F->replaceAllUsesWith(Remangled.getValue());
236 F->eraseFromParent();
237 }
238 }
239
Adrian Prantla8b2ddb2017-10-02 18:31:29 +0000240 if (UpgradeDebugInfo)
241 llvm::UpgradeDebugInfo(*M);
Manman Ren8b4306c2013-12-02 21:29:56 +0000242
Manman Renb5d7ff42016-05-25 23:14:48 +0000243 UpgradeModuleFlags(*M);
Saleem Abdulrasool46a59fd2017-10-06 18:06:59 +0000244 UpgradeSectionAttributes(*M);
Manman Renb5d7ff42016-05-25 23:14:48 +0000245
Alex Lorenz8955f7d2015-06-23 17:10:10 +0000246 if (!Slots)
247 return false;
248 // Initialize the slot mapping.
249 // Because by this point we've parsed and validated everything, we can "steal"
250 // the mapping from LLParser as it doesn't need it anymore.
251 Slots->GlobalValues = std::move(NumberedVals);
252 Slots->MetadataNodes = std::move(NumberedMetadata);
Alex Lorenz1de2acd2015-08-21 21:32:39 +0000253 for (const auto &I : NamedTypes)
254 Slots->NamedTypes.insert(std::make_pair(I.getKey(), I.second.first));
255 for (const auto &I : NumberedTypes)
256 Slots->Types.insert(std::make_pair(I.first, I.second.first));
Alex Lorenz8955f7d2015-06-23 17:10:10 +0000257
Chris Lattnerac161bf2009-01-02 07:01:27 +0000258 return false;
259}
260
261//===----------------------------------------------------------------------===//
262// Top-Level Entities
263//===----------------------------------------------------------------------===//
264
265bool LLParser::ParseTopLevelEntities() {
Eugene Zelenko1804a772016-08-25 00:45:04 +0000266 while (true) {
Chris Lattnerac161bf2009-01-02 07:01:27 +0000267 switch (Lex.getKind()) {
268 default: return TokError("expected top-level entity");
269 case lltok::Eof: return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000270 case lltok::kw_declare: if (ParseDeclare()) return true; break;
271 case lltok::kw_define: if (ParseDefine()) return true; break;
272 case lltok::kw_module: if (ParseModuleAsm()) return true; break;
273 case lltok::kw_target: if (ParseTargetDefinition()) return true; break;
Teresa Johnson83c517c2016-03-30 18:15:08 +0000274 case lltok::kw_source_filename:
275 if (ParseSourceFileName())
276 return true;
277 break;
Bill Wendling706d3d62012-11-28 08:41:48 +0000278 case lltok::kw_deplibs: if (ParseDepLibs()) return true; break;
Dan Gohman466876b2009-08-12 23:32:33 +0000279 case lltok::LocalVarID: if (ParseUnnamedType()) return true; break;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000280 case lltok::LocalVar: if (ParseNamedType()) return true; break;
Dan Gohman466876b2009-08-12 23:32:33 +0000281 case lltok::GlobalID: if (ParseUnnamedGlobal()) return true; break;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000282 case lltok::GlobalVar: if (ParseNamedGlobal()) return true; break;
David Majnemerdad0a642014-06-27 18:19:56 +0000283 case lltok::ComdatVar: if (parseComdat()) return true; break;
Chris Lattner1eed2d62009-12-30 04:56:59 +0000284 case lltok::exclaim: if (ParseStandaloneMetadata()) return true; break;
Bill Wendling63b88192013-02-06 06:52:58 +0000285 case lltok::MetadataVar:if (ParseNamedMetadata()) return true; break;
Bill Wendlinga7c38772013-02-09 15:48:49 +0000286 case lltok::kw_attributes: if (ParseUnnamedAttrGrp()) return true; break;
Duncan P. N. Exon Smith0a448fb2014-08-19 21:30:15 +0000287 case lltok::kw_uselistorder: if (ParseUseListOrder()) return true; break;
288 case lltok::kw_uselistorder_bb:
Davide Italianof4e16612016-08-26 18:05:03 +0000289 if (ParseUseListOrderBB())
290 return true;
291 break;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000292 }
293 }
294}
295
Chris Lattnerac161bf2009-01-02 07:01:27 +0000296/// toplevelentity
297/// ::= 'module' 'asm' STRINGCONSTANT
298bool LLParser::ParseModuleAsm() {
299 assert(Lex.getKind() == lltok::kw_module);
300 Lex.Lex();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000301
302 std::string AsmStr;
Chris Lattner3822f632009-01-02 08:05:26 +0000303 if (ParseToken(lltok::kw_asm, "expected 'module asm'") ||
304 ParseStringConstant(AsmStr)) return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000305
Rafael Espindola1e49a6d2011-03-02 04:14:42 +0000306 M->appendModuleInlineAsm(AsmStr);
Chris Lattnerac161bf2009-01-02 07:01:27 +0000307 return false;
308}
309
310/// toplevelentity
311/// ::= 'target' 'triple' '=' STRINGCONSTANT
312/// ::= 'target' 'datalayout' '=' STRINGCONSTANT
313bool LLParser::ParseTargetDefinition() {
314 assert(Lex.getKind() == lltok::kw_target);
Chris Lattner3822f632009-01-02 08:05:26 +0000315 std::string Str;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000316 switch (Lex.Lex()) {
317 default: return TokError("unknown target property");
318 case lltok::kw_triple:
319 Lex.Lex();
Chris Lattner3822f632009-01-02 08:05:26 +0000320 if (ParseToken(lltok::equal, "expected '=' after target triple") ||
321 ParseStringConstant(Str))
Chris Lattnerac161bf2009-01-02 07:01:27 +0000322 return true;
Chris Lattner3822f632009-01-02 08:05:26 +0000323 M->setTargetTriple(Str);
Chris Lattnerac161bf2009-01-02 07:01:27 +0000324 return false;
325 case lltok::kw_datalayout:
326 Lex.Lex();
Chris Lattner3822f632009-01-02 08:05:26 +0000327 if (ParseToken(lltok::equal, "expected '=' after target datalayout") ||
328 ParseStringConstant(Str))
Chris Lattnerac161bf2009-01-02 07:01:27 +0000329 return true;
Chris Lattner3822f632009-01-02 08:05:26 +0000330 M->setDataLayout(Str);
Chris Lattnerac161bf2009-01-02 07:01:27 +0000331 return false;
332 }
333}
334
Bill Wendling706d3d62012-11-28 08:41:48 +0000335/// toplevelentity
Teresa Johnson83c517c2016-03-30 18:15:08 +0000336/// ::= 'source_filename' '=' STRINGCONSTANT
337bool LLParser::ParseSourceFileName() {
338 assert(Lex.getKind() == lltok::kw_source_filename);
339 std::string Str;
340 Lex.Lex();
341 if (ParseToken(lltok::equal, "expected '=' after source_filename") ||
342 ParseStringConstant(Str))
343 return true;
344 M->setSourceFileName(Str);
345 return false;
346}
347
348/// toplevelentity
Bill Wendling706d3d62012-11-28 08:41:48 +0000349/// ::= 'deplibs' '=' '[' ']'
350/// ::= 'deplibs' '=' '[' STRINGCONSTANT (',' STRINGCONSTANT)* ']'
351/// FIXME: Remove in 4.0. Currently parse, but ignore.
352bool LLParser::ParseDepLibs() {
353 assert(Lex.getKind() == lltok::kw_deplibs);
354 Lex.Lex();
355 if (ParseToken(lltok::equal, "expected '=' after deplibs") ||
356 ParseToken(lltok::lsquare, "expected '=' after deplibs"))
357 return true;
358
359 if (EatIfPresent(lltok::rsquare))
360 return false;
361
362 do {
363 std::string Str;
364 if (ParseStringConstant(Str)) return true;
365 } while (EatIfPresent(lltok::comma));
366
367 return ParseToken(lltok::rsquare, "expected ']' at end of list");
368}
369
Dan Gohman466876b2009-08-12 23:32:33 +0000370/// ParseUnnamedType:
Dan Gohman466876b2009-08-12 23:32:33 +0000371/// ::= LocalVarID '=' 'type' type
Chris Lattnerac161bf2009-01-02 07:01:27 +0000372bool LLParser::ParseUnnamedType() {
Chris Lattner07037362011-06-18 23:51:31 +0000373 LocTy TypeLoc = Lex.getLoc();
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000374 unsigned TypeID = Lex.getUIntVal();
Chris Lattner8936d2b2011-06-19 00:03:46 +0000375 Lex.Lex(); // eat LocalVarID;
376
377 if (ParseToken(lltok::equal, "expected '=' after name") ||
378 ParseToken(lltok::kw_type, "expected 'type' after '='"))
379 return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000380
Craig Topper2617dcc2014-04-15 06:32:26 +0000381 Type *Result = nullptr;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000382 if (ParseStructDefinition(TypeLoc, "",
383 NumberedTypes[TypeID], Result)) return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +0000384
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000385 if (!isa<StructType>(Result)) {
386 std::pair<Type*, LocTy> &Entry = NumberedTypes[TypeID];
387 if (Entry.first)
388 return Error(TypeLoc, "non-struct types may not be recursive");
389 Entry.first = Result;
390 Entry.second = SMLoc();
Chris Lattnerac161bf2009-01-02 07:01:27 +0000391 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000392
Chris Lattnerac161bf2009-01-02 07:01:27 +0000393 return false;
394}
395
396/// toplevelentity
397/// ::= LocalVar '=' 'type' type
398bool LLParser::ParseNamedType() {
399 std::string Name = Lex.getStrVal();
400 LocTy NameLoc = Lex.getLoc();
Chris Lattner3822f632009-01-02 08:05:26 +0000401 Lex.Lex(); // eat LocalVar.
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000402
Chris Lattner3822f632009-01-02 08:05:26 +0000403 if (ParseToken(lltok::equal, "expected '=' after name") ||
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000404 ParseToken(lltok::kw_type, "expected 'type' after name"))
Chris Lattner3822f632009-01-02 08:05:26 +0000405 return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +0000406
Craig Topper2617dcc2014-04-15 06:32:26 +0000407 Type *Result = nullptr;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000408 if (ParseStructDefinition(NameLoc, Name,
409 NamedTypes[Name], Result)) return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +0000410
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000411 if (!isa<StructType>(Result)) {
412 std::pair<Type*, LocTy> &Entry = NamedTypes[Name];
413 if (Entry.first)
414 return Error(NameLoc, "non-struct types may not be recursive");
415 Entry.first = Result;
416 Entry.second = SMLoc();
Chris Lattnerac161bf2009-01-02 07:01:27 +0000417 }
Michael Ilseman26ee2b82012-11-15 22:34:00 +0000418
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000419 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000420}
421
Chris Lattnerac161bf2009-01-02 07:01:27 +0000422/// toplevelentity
423/// ::= 'declare' FunctionHeader
424bool LLParser::ParseDeclare() {
425 assert(Lex.getKind() == lltok::kw_declare);
426 Lex.Lex();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000427
Peter Collingbourne21521892016-06-21 23:42:48 +0000428 std::vector<std::pair<unsigned, MDNode *>> MDs;
429 while (Lex.getKind() == lltok::MetadataVar) {
430 unsigned MDK;
431 MDNode *N;
432 if (ParseMetadataAttachment(MDK, N))
433 return true;
434 MDs.push_back({MDK, N});
435 }
436
Chris Lattnerac161bf2009-01-02 07:01:27 +0000437 Function *F;
Peter Collingbourne21521892016-06-21 23:42:48 +0000438 if (ParseFunctionHeader(F, false))
439 return true;
440 for (auto &MD : MDs)
441 F->addMetadata(MD.first, *MD.second);
442 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000443}
444
445/// toplevelentity
Duncan P. N. Exon Smith3d4cd752015-04-24 22:04:41 +0000446/// ::= 'define' FunctionHeader (!dbg !56)* '{' ...
Chris Lattnerac161bf2009-01-02 07:01:27 +0000447bool LLParser::ParseDefine() {
448 assert(Lex.getKind() == lltok::kw_define);
449 Lex.Lex();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000450
Chris Lattnerac161bf2009-01-02 07:01:27 +0000451 Function *F;
Chris Lattner3822f632009-01-02 08:05:26 +0000452 return ParseFunctionHeader(F, true) ||
Duncan P. N. Exon Smith3d4cd752015-04-24 22:04:41 +0000453 ParseOptionalFunctionMetadata(*F) ||
Chris Lattner3822f632009-01-02 08:05:26 +0000454 ParseFunctionBody(*F);
Chris Lattnerac161bf2009-01-02 07:01:27 +0000455}
456
Chris Lattner3822f632009-01-02 08:05:26 +0000457/// ParseGlobalType
458/// ::= 'constant'
459/// ::= 'global'
Chris Lattnerac161bf2009-01-02 07:01:27 +0000460bool LLParser::ParseGlobalType(bool &IsConstant) {
461 if (Lex.getKind() == lltok::kw_constant)
462 IsConstant = true;
463 else if (Lex.getKind() == lltok::kw_global)
464 IsConstant = false;
Duncan Sandsd1de45a2009-02-10 16:24:55 +0000465 else {
466 IsConstant = false;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000467 return TokError("expected 'global' or 'constant'");
Duncan Sandsd1de45a2009-02-10 16:24:55 +0000468 }
Chris Lattnerac161bf2009-01-02 07:01:27 +0000469 Lex.Lex();
470 return false;
471}
472
Peter Collingbourne96efdd62016-06-14 21:01:22 +0000473bool LLParser::ParseOptionalUnnamedAddr(
474 GlobalVariable::UnnamedAddr &UnnamedAddr) {
475 if (EatIfPresent(lltok::kw_unnamed_addr))
476 UnnamedAddr = GlobalValue::UnnamedAddr::Global;
477 else if (EatIfPresent(lltok::kw_local_unnamed_addr))
478 UnnamedAddr = GlobalValue::UnnamedAddr::Local;
479 else
480 UnnamedAddr = GlobalValue::UnnamedAddr::None;
481 return false;
482}
483
Dan Gohman466876b2009-08-12 23:32:33 +0000484/// ParseUnnamedGlobal:
Dmitry Polukhina1feff72016-04-07 12:32:19 +0000485/// OptionalVisibility (ALIAS | IFUNC) ...
Sean Fertilec70d28b2017-10-26 15:00:26 +0000486/// OptionalLinkage OptionalPreemptionSpecifier OptionalVisibility
487/// OptionalDLLStorageClass
Nico Rieck7157bb72014-01-14 15:22:47 +0000488/// ... -> global variable
Dmitry Polukhina1feff72016-04-07 12:32:19 +0000489/// GlobalID '=' OptionalVisibility (ALIAS | IFUNC) ...
Sean Fertilec70d28b2017-10-26 15:00:26 +0000490/// GlobalID '=' OptionalLinkage OptionalPreemptionSpecifier OptionalVisibility
491/// OptionalDLLStorageClass
Nico Rieck7157bb72014-01-14 15:22:47 +0000492/// ... -> global variable
Dan Gohman466876b2009-08-12 23:32:33 +0000493bool LLParser::ParseUnnamedGlobal() {
494 unsigned VarID = NumberedVals.size();
495 std::string Name;
496 LocTy NameLoc = Lex.getLoc();
497
498 // Handle the GlobalID form.
499 if (Lex.getKind() == lltok::GlobalID) {
500 if (Lex.getUIntVal() != VarID)
501 return Error(Lex.getLoc(), "variable expected to be numbered '%" +
Benjamin Kramerc7583112010-09-27 17:42:11 +0000502 Twine(VarID) + "'");
Dan Gohman466876b2009-08-12 23:32:33 +0000503 Lex.Lex(); // eat GlobalID;
504
505 if (ParseToken(lltok::equal, "expected '=' after name"))
506 return true;
507 }
508
509 bool HasLinkage;
Nico Rieck7157bb72014-01-14 15:22:47 +0000510 unsigned Linkage, Visibility, DLLStorageClass;
Sean Fertilec70d28b2017-10-26 15:00:26 +0000511 bool DSOLocal;
Rafael Espindola59f7eba2014-05-28 18:15:43 +0000512 GlobalVariable::ThreadLocalMode TLM;
Peter Collingbourne96efdd62016-06-14 21:01:22 +0000513 GlobalVariable::UnnamedAddr UnnamedAddr;
Sean Fertilec70d28b2017-10-26 15:00:26 +0000514 if (ParseOptionalLinkage(Linkage, HasLinkage, Visibility, DLLStorageClass,
515 DSOLocal) ||
Peter Collingbourne96efdd62016-06-14 21:01:22 +0000516 ParseOptionalThreadLocal(TLM) || ParseOptionalUnnamedAddr(UnnamedAddr))
Dan Gohman466876b2009-08-12 23:32:33 +0000517 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000518
Dmitry Polukhina1feff72016-04-07 12:32:19 +0000519 if (Lex.getKind() != lltok::kw_alias && Lex.getKind() != lltok::kw_ifunc)
Nico Rieck7157bb72014-01-14 15:22:47 +0000520 return ParseGlobal(Name, NameLoc, Linkage, HasLinkage, Visibility,
Sean Fertilec70d28b2017-10-26 15:00:26 +0000521 DLLStorageClass, DSOLocal, TLM, UnnamedAddr);
Dmitry Polukhina3d5b0b2016-04-05 08:47:51 +0000522
523 return parseIndirectSymbol(Name, NameLoc, Linkage, Visibility,
Sean Fertilec70d28b2017-10-26 15:00:26 +0000524 DLLStorageClass, DSOLocal, TLM, UnnamedAddr);
Dan Gohman466876b2009-08-12 23:32:33 +0000525}
526
Chris Lattnerac161bf2009-01-02 07:01:27 +0000527/// ParseNamedGlobal:
Dmitry Polukhina1feff72016-04-07 12:32:19 +0000528/// GlobalVar '=' OptionalVisibility (ALIAS | IFUNC) ...
Sean Fertilec70d28b2017-10-26 15:00:26 +0000529/// GlobalVar '=' OptionalLinkage OptionalPreemptionSpecifier
530/// OptionalVisibility OptionalDLLStorageClass
Nico Rieck7157bb72014-01-14 15:22:47 +0000531/// ... -> global variable
Chris Lattnerac161bf2009-01-02 07:01:27 +0000532bool LLParser::ParseNamedGlobal() {
533 assert(Lex.getKind() == lltok::GlobalVar);
534 LocTy NameLoc = Lex.getLoc();
535 std::string Name = Lex.getStrVal();
536 Lex.Lex();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000537
Chris Lattnerac161bf2009-01-02 07:01:27 +0000538 bool HasLinkage;
Nico Rieck7157bb72014-01-14 15:22:47 +0000539 unsigned Linkage, Visibility, DLLStorageClass;
Sean Fertilec70d28b2017-10-26 15:00:26 +0000540 bool DSOLocal;
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") ||
Sean Fertilec70d28b2017-10-26 15:00:26 +0000544 ParseOptionalLinkage(Linkage, HasLinkage, Visibility, DLLStorageClass,
545 DSOLocal) ||
Peter Collingbourne96efdd62016-06-14 21:01:22 +0000546 ParseOptionalThreadLocal(TLM) || ParseOptionalUnnamedAddr(UnnamedAddr))
Chris Lattnerac161bf2009-01-02 07:01:27 +0000547 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000548
Dmitry Polukhina1feff72016-04-07 12:32:19 +0000549 if (Lex.getKind() != lltok::kw_alias && Lex.getKind() != lltok::kw_ifunc)
Nico Rieck7157bb72014-01-14 15:22:47 +0000550 return ParseGlobal(Name, NameLoc, Linkage, HasLinkage, Visibility,
Sean Fertilec70d28b2017-10-26 15:00:26 +0000551 DLLStorageClass, DSOLocal, TLM, UnnamedAddr);
Rafael Espindola464fe022014-07-30 22:51:54 +0000552
Dmitry Polukhina3d5b0b2016-04-05 08:47:51 +0000553 return parseIndirectSymbol(Name, NameLoc, Linkage, Visibility,
Sean Fertilec70d28b2017-10-26 15:00:26 +0000554 DLLStorageClass, DSOLocal, TLM, UnnamedAddr);
Chris Lattnerac161bf2009-01-02 07:01:27 +0000555}
556
David Majnemerdad0a642014-06-27 18:19:56 +0000557bool LLParser::parseComdat() {
558 assert(Lex.getKind() == lltok::ComdatVar);
559 std::string Name = Lex.getStrVal();
560 LocTy NameLoc = Lex.getLoc();
561 Lex.Lex();
562
563 if (ParseToken(lltok::equal, "expected '=' here"))
564 return true;
565
566 if (ParseToken(lltok::kw_comdat, "expected comdat keyword"))
567 return TokError("expected comdat type");
568
569 Comdat::SelectionKind SK;
570 switch (Lex.getKind()) {
571 default:
572 return TokError("unknown selection kind");
573 case lltok::kw_any:
574 SK = Comdat::Any;
575 break;
576 case lltok::kw_exactmatch:
577 SK = Comdat::ExactMatch;
578 break;
579 case lltok::kw_largest:
580 SK = Comdat::Largest;
581 break;
582 case lltok::kw_noduplicates:
583 SK = Comdat::NoDuplicates;
584 break;
585 case lltok::kw_samesize:
586 SK = Comdat::SameSize;
587 break;
588 }
589 Lex.Lex();
590
591 // See if the comdat was forward referenced, if so, use the comdat.
592 Module::ComdatSymTabType &ComdatSymTab = M->getComdatSymbolTable();
593 Module::ComdatSymTabType::iterator I = ComdatSymTab.find(Name);
594 if (I != ComdatSymTab.end() && !ForwardRefComdats.erase(Name))
595 return Error(NameLoc, "redefinition of comdat '$" + Name + "'");
596
597 Comdat *C;
598 if (I != ComdatSymTab.end())
599 C = &I->second;
600 else
601 C = M->getOrInsertComdat(Name);
602 C->setSelectionKind(SK);
603
604 return false;
605}
606
Devang Patel8ff0f8d2009-07-20 19:00:08 +0000607// MDString:
608// ::= '!' STRINGCONSTANT
Chris Lattner1797fc72009-12-29 21:53:55 +0000609bool LLParser::ParseMDString(MDString *&Result) {
Devang Patel8ff0f8d2009-07-20 19:00:08 +0000610 std::string Str;
611 if (ParseStringConstant(Str)) return true;
Chris Lattner1797fc72009-12-29 21:53:55 +0000612 Result = MDString::get(Context, Str);
Devang Patel8ff0f8d2009-07-20 19:00:08 +0000613 return false;
614}
615
616// MDNode:
617// ::= '!' MDNodeNumber
Chris Lattner6dac02a2009-12-30 04:15:23 +0000618bool LLParser::ParseMDNodeID(MDNode *&Result) {
Devang Patel8ff0f8d2009-07-20 19:00:08 +0000619 // !{ ..., !42, ... }
Duncan P. N. Exon Smith29883862016-04-06 02:06:40 +0000620 LocTy IDLoc = Lex.getLoc();
Devang Patel8ff0f8d2009-07-20 19:00:08 +0000621 unsigned MID = 0;
Duncan P. N. Exon Smitha8d9a022015-01-12 21:14:38 +0000622 if (ParseUInt32(MID))
623 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000624
Chris Lattner8eff0152010-04-01 05:14:45 +0000625 // If not a forward reference, just return it now.
David Majnemer19b51052015-02-11 07:43:56 +0000626 if (NumberedMetadata.count(MID)) {
Duncan P. N. Exon Smitha8d9a022015-01-12 21:14:38 +0000627 Result = NumberedMetadata[MID];
628 return false;
629 }
Devang Patel8ff0f8d2009-07-20 19:00:08 +0000630
Chris Lattner8eff0152010-04-01 05:14:45 +0000631 // Otherwise, create MDNode forward reference.
Duncan P. N. Exon Smith7d823132015-01-19 21:30:18 +0000632 auto &FwdRef = ForwardRefMDNodes[MID];
Duncan P. N. Exon Smith29883862016-04-06 02:06:40 +0000633 FwdRef = std::make_pair(MDTuple::getTemporary(Context, None), IDLoc);
Michael Ilseman26ee2b82012-11-15 22:34:00 +0000634
Duncan P. N. Exon Smith7d823132015-01-19 21:30:18 +0000635 Result = FwdRef.first.get();
636 NumberedMetadata[MID].reset(Result);
Devang Patel8ff0f8d2009-07-20 19:00:08 +0000637 return false;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000638}
Devang Patel8ff0f8d2009-07-20 19:00:08 +0000639
Chris Lattnerf2fe7ff2009-12-29 22:35:39 +0000640/// ParseNamedMetadata:
Devang Patelbe626972009-07-29 00:34:02 +0000641/// !foo = !{ !1, !2 }
642bool LLParser::ParseNamedMetadata() {
Chris Lattnereafe4de2009-12-30 05:02:06 +0000643 assert(Lex.getKind() == lltok::MetadataVar);
Devang Patelbe626972009-07-29 00:34:02 +0000644 std::string Name = Lex.getStrVal();
Chris Lattnereafe4de2009-12-30 05:02:06 +0000645 Lex.Lex();
Devang Patelbe626972009-07-29 00:34:02 +0000646
Chris Lattnerf2fe7ff2009-12-29 22:35:39 +0000647 if (ParseToken(lltok::equal, "expected '=' here") ||
Chris Lattner1eed2d62009-12-30 04:56:59 +0000648 ParseToken(lltok::exclaim, "Expected '!' here") ||
Chris Lattnerf2fe7ff2009-12-29 22:35:39 +0000649 ParseToken(lltok::lbrace, "Expected '{' here"))
Devang Patelbe626972009-07-29 00:34:02 +0000650 return true;
651
Dan Gohman2637cc12010-07-21 23:38:33 +0000652 NamedMDNode *NMD = M->getOrInsertNamedMetadata(Name);
Dan Gohmanafd69cf2010-07-13 19:42:44 +0000653 if (Lex.getKind() != lltok::rbrace)
654 do {
Craig Topper2617dcc2014-04-15 06:32:26 +0000655 MDNode *N = nullptr;
Reid Kleckner6d353342017-08-23 20:31:27 +0000656 // Parse DIExpressions inline as a special case. They are still MDNodes,
657 // so they can still appear in named metadata. Remove this logic if they
658 // become plain Metadata.
659 if (Lex.getKind() == lltok::MetadataVar &&
660 Lex.getStrVal() == "DIExpression") {
661 if (ParseDIExpression(N, /*IsDistinct=*/false))
662 return true;
663 } else if (ParseToken(lltok::exclaim, "Expected '!' here") ||
664 ParseMDNodeID(N)) {
665 return true;
666 }
Dan Gohman2637cc12010-07-21 23:38:33 +0000667 NMD->addOperand(N);
Dan Gohmanafd69cf2010-07-13 19:42:44 +0000668 } while (EatIfPresent(lltok::comma));
Devang Patelbe626972009-07-29 00:34:02 +0000669
Rafael Espindolac7818fb2015-05-26 20:37:36 +0000670 return ParseToken(lltok::rbrace, "expected end of metadata node");
Devang Patelbe626972009-07-29 00:34:02 +0000671}
672
Devang Patel39e64d42009-07-01 19:21:12 +0000673/// ParseStandaloneMetadata:
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000674/// !42 = !{...}
Devang Patel39e64d42009-07-01 19:21:12 +0000675bool LLParser::ParseStandaloneMetadata() {
Chris Lattner1eed2d62009-12-30 04:56:59 +0000676 assert(Lex.getKind() == lltok::exclaim);
Devang Patel39e64d42009-07-01 19:21:12 +0000677 Lex.Lex();
678 unsigned MetadataID = 0;
Devang Patel39e64d42009-07-01 19:21:12 +0000679
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000680 MDNode *Init;
Chris Lattner278bc952009-12-29 22:40:21 +0000681 if (ParseUInt32(MetadataID) ||
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +0000682 ParseToken(lltok::equal, "expected '=' here"))
683 return true;
684
685 // Detect common error, from old metadata syntax.
686 if (Lex.getKind() == lltok::Type)
687 return TokError("unexpected type in metadata definition");
688
Duncan P. N. Exon Smith090a19b2015-01-08 22:38:29 +0000689 bool IsDistinct = EatIfPresent(lltok::kw_distinct);
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +0000690 if (Lex.getKind() == lltok::MetadataVar) {
691 if (ParseSpecializedMDNode(Init, IsDistinct))
692 return true;
693 } else if (ParseToken(lltok::exclaim, "Expected '!' here") ||
694 ParseMDTuple(Init, IsDistinct))
Devang Patele059ba6e2009-07-23 01:07:34 +0000695 return true;
696
Chris Lattnerfc58af22009-12-30 04:51:58 +0000697 // See if this was forward referenced, if so, handle it.
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000698 auto FI = ForwardRefMDNodes.find(MetadataID);
Devang Pateld2541152009-07-08 19:23:54 +0000699 if (FI != ForwardRefMDNodes.end()) {
Duncan P. N. Exon Smith7d823132015-01-19 21:30:18 +0000700 FI->second.first->replaceAllUsesWith(Init);
Devang Pateld2541152009-07-08 19:23:54 +0000701 ForwardRefMDNodes.erase(FI);
Michael Ilseman26ee2b82012-11-15 22:34:00 +0000702
Chris Lattnerfc58af22009-12-30 04:51:58 +0000703 assert(NumberedMetadata[MetadataID] == Init && "Tracking VH didn't work");
704 } else {
David Majnemer19b51052015-02-11 07:43:56 +0000705 if (NumberedMetadata.count(MetadataID))
Chris Lattnerfc58af22009-12-30 04:51:58 +0000706 return TokError("Metadata id is already used");
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000707 NumberedMetadata[MetadataID].reset(Init);
Devang Pateld2541152009-07-08 19:23:54 +0000708 }
709
Devang Patel39e64d42009-07-01 19:21:12 +0000710 return false;
711}
712
Duncan P. N. Exon Smithb80de102014-05-07 22:57:20 +0000713static bool isValidVisibilityForLinkage(unsigned V, unsigned L) {
714 return !GlobalValue::isLocalLinkage((GlobalValue::LinkageTypes)L) ||
715 (GlobalValue::VisibilityTypes)V == GlobalValue::DefaultVisibility;
716}
717
Rafael Espindolae4b02312018-01-11 22:15:05 +0000718// If there was an explicit dso_local, update GV. In the absence of an explicit
719// dso_local we keep the default value.
720static void maybeSetDSOLocal(bool DSOLocal, GlobalValue &GV) {
721 if (DSOLocal)
722 GV.setDSOLocal(true);
723}
724
Dmitry Polukhina3d5b0b2016-04-05 08:47:51 +0000725/// parseIndirectSymbol:
Sean Fertilec70d28b2017-10-26 15:00:26 +0000726/// ::= GlobalVar '=' OptionalLinkage OptionalPreemptionSpecifier
727/// OptionalVisibility OptionalDLLStorageClass
728/// OptionalThreadLocal OptionalUnnamedAddr
729// 'alias|ifunc' IndirectSymbol
Rafael Espindola6b238632014-05-16 19:35:39 +0000730///
Dmitry Polukhina3d5b0b2016-04-05 08:47:51 +0000731/// IndirectSymbol
Chris Lattner4c73d7a2009-04-25 21:26:00 +0000732/// ::= TypeAndValue
Chris Lattnerac161bf2009-01-02 07:01:27 +0000733///
Eric Christopher536f0a92015-05-28 23:07:39 +0000734/// Everything through OptionalUnnamedAddr has already been parsed.
Chris Lattnerac161bf2009-01-02 07:01:27 +0000735///
Sean Fertilec70d28b2017-10-26 15:00:26 +0000736bool LLParser::parseIndirectSymbol(const std::string &Name, LocTy NameLoc,
737 unsigned L, unsigned Visibility,
738 unsigned DLLStorageClass, bool DSOLocal,
739 GlobalVariable::ThreadLocalMode TLM,
740 GlobalVariable::UnnamedAddr UnnamedAddr) {
Dmitry Polukhina3d5b0b2016-04-05 08:47:51 +0000741 bool IsAlias;
742 if (Lex.getKind() == lltok::kw_alias)
743 IsAlias = true;
Dmitry Polukhina1feff72016-04-07 12:32:19 +0000744 else if (Lex.getKind() == lltok::kw_ifunc)
745 IsAlias = false;
Dmitry Polukhina3d5b0b2016-04-05 08:47:51 +0000746 else
Dmitry Polukhina1feff72016-04-07 12:32:19 +0000747 llvm_unreachable("Not an alias or ifunc!");
Chris Lattnerac161bf2009-01-02 07:01:27 +0000748 Lex.Lex();
Chris Lattnerac161bf2009-01-02 07:01:27 +0000749
Rafael Espindola78527052013-10-06 15:10:43 +0000750 GlobalValue::LinkageTypes Linkage = (GlobalValue::LinkageTypes) L;
751
Dmitry Polukhina3d5b0b2016-04-05 08:47:51 +0000752 if(IsAlias && !GlobalAlias::isValidLinkage(Linkage))
Rafael Espindola464fe022014-07-30 22:51:54 +0000753 return Error(NameLoc, "invalid linkage type for alias");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000754
Duncan P. N. Exon Smithb80de102014-05-07 22:57:20 +0000755 if (!isValidVisibilityForLinkage(Visibility, L))
Rafael Espindola464fe022014-07-30 22:51:54 +0000756 return Error(NameLoc,
Duncan P. N. Exon Smithb80de102014-05-07 22:57:20 +0000757 "symbol with local linkage must have default visibility");
758
Sean Fertilec70d28b2017-10-26 15:00:26 +0000759 if (DSOLocal && !IsAlias) {
760 return Error(NameLoc,
761 "dso_local is invalid on ifunc");
762 }
763
David Blaikie2f408302015-09-11 03:22:04 +0000764 Type *Ty;
765 LocTy ExplicitTypeLoc = Lex.getLoc();
766 if (ParseType(Ty) ||
Dmitry Polukhina1feff72016-04-07 12:32:19 +0000767 ParseToken(lltok::comma, "expected comma after alias or ifunc's type"))
David Blaikie2f408302015-09-11 03:22:04 +0000768 return true;
769
Rafael Espindola64c1e182014-06-03 02:41:57 +0000770 Constant *Aliasee;
771 LocTy AliaseeLoc = Lex.getLoc();
772 if (Lex.getKind() != lltok::kw_bitcast &&
773 Lex.getKind() != lltok::kw_getelementptr &&
774 Lex.getKind() != lltok::kw_addrspacecast &&
775 Lex.getKind() != lltok::kw_inttoptr) {
776 if (ParseGlobalTypeAndValue(Aliasee))
Rafael Espindola6b238632014-05-16 19:35:39 +0000777 return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000778 } else {
Rafael Espindola64c1e182014-06-03 02:41:57 +0000779 // The bitcast dest type is not present, it is implied by the dest type.
780 ValID ID;
781 if (ParseValID(ID))
782 return true;
783 if (ID.Kind != ValID::t_Constant)
784 return Error(AliaseeLoc, "invalid aliasee");
785 Aliasee = ID.ConstantVal;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000786 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000787
Rafael Espindola64c1e182014-06-03 02:41:57 +0000788 Type *AliaseeType = Aliasee->getType();
789 auto *PTy = dyn_cast<PointerType>(AliaseeType);
790 if (!PTy)
Dmitry Polukhina1feff72016-04-07 12:32:19 +0000791 return Error(AliaseeLoc, "An alias or ifunc must have pointer type");
David Blaikie16a2f3e2015-09-14 18:01:59 +0000792 unsigned AddrSpace = PTy->getAddressSpace();
Chris Lattnerac161bf2009-01-02 07:01:27 +0000793
Dmitry Polukhina3d5b0b2016-04-05 08:47:51 +0000794 if (IsAlias && Ty != PTy->getElementType())
David Blaikie2f408302015-09-11 03:22:04 +0000795 return Error(
796 ExplicitTypeLoc,
797 "explicit pointee type doesn't match operand's pointee type");
798
Dmitry Polukhina3d5b0b2016-04-05 08:47:51 +0000799 if (!IsAlias && !PTy->getElementType()->isFunctionTy())
800 return Error(
801 ExplicitTypeLoc,
802 "explicit pointee type should be a function type");
803
Peter Collingbourne463ff6d2015-11-25 02:54:07 +0000804 GlobalValue *GVal = nullptr;
805
806 // See if the alias was forward referenced, if so, prepare to replace the
807 // forward reference.
808 if (!Name.empty()) {
809 GVal = M->getNamedValue(Name);
810 if (GVal) {
811 if (!ForwardRefVals.erase(Name))
812 return Error(NameLoc, "redefinition of global '@" + Name + "'");
813 }
814 } else {
815 auto I = ForwardRefValIDs.find(NumberedVals.size());
816 if (I != ForwardRefValIDs.end()) {
817 GVal = I->second.first;
818 ForwardRefValIDs.erase(I);
819 }
820 }
821
Chris Lattnerac161bf2009-01-02 07:01:27 +0000822 // Okay, create the alias but do not insert it into the module yet.
Dmitry Polukhina3d5b0b2016-04-05 08:47:51 +0000823 std::unique_ptr<GlobalIndirectSymbol> GA;
824 if (IsAlias)
825 GA.reset(GlobalAlias::create(Ty, AddrSpace,
826 (GlobalValue::LinkageTypes)Linkage, Name,
827 Aliasee, /*Parent*/ nullptr));
828 else
Dmitry Polukhina1feff72016-04-07 12:32:19 +0000829 GA.reset(GlobalIFunc::create(Ty, AddrSpace,
830 (GlobalValue::LinkageTypes)Linkage, Name,
831 Aliasee, /*Parent*/ nullptr));
Rafael Espindola59f7eba2014-05-28 18:15:43 +0000832 GA->setThreadLocalMode(TLM);
Chris Lattnerac161bf2009-01-02 07:01:27 +0000833 GA->setVisibility((GlobalValue::VisibilityTypes)Visibility);
Nico Rieck7157bb72014-01-14 15:22:47 +0000834 GA->setDLLStorageClass((GlobalValue::DLLStorageClassTypes)DLLStorageClass);
Rafael Espindola42a4c9f2014-06-06 01:20:28 +0000835 GA->setUnnamedAddr(UnnamedAddr);
Rafael Espindolae4b02312018-01-11 22:15:05 +0000836 maybeSetDSOLocal(DSOLocal, *GA);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000837
Rafael Espindola54fc2982015-06-17 17:53:31 +0000838 if (Name.empty())
839 NumberedVals.push_back(GA.get());
840
Peter Collingbourne463ff6d2015-11-25 02:54:07 +0000841 if (GVal) {
842 // Verify that types agree.
843 if (GVal->getType() != GA->getType())
844 return Error(
845 ExplicitTypeLoc,
846 "forward reference and definition of alias have different types");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000847
Chris Lattnerac161bf2009-01-02 07:01:27 +0000848 // If they agree, just RAUW the old value with the alias and remove the
849 // forward ref info.
Peter Collingbourne463ff6d2015-11-25 02:54:07 +0000850 GVal->replaceAllUsesWith(GA.get());
851 GVal->eraseFromParent();
Chris Lattnerac161bf2009-01-02 07:01:27 +0000852 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000853
Chris Lattnerac161bf2009-01-02 07:01:27 +0000854 // Insert into the module, we know its name won't collide now.
Dmitry Polukhina3d5b0b2016-04-05 08:47:51 +0000855 if (IsAlias)
856 M->getAliasList().push_back(cast<GlobalAlias>(GA.get()));
857 else
Dmitry Polukhina1feff72016-04-07 12:32:19 +0000858 M->getIFuncList().push_back(cast<GlobalIFunc>(GA.get()));
Benjamin Kramer1dc34b42010-10-16 11:28:23 +0000859 assert(GA->getName() == Name && "Should not be a name conflict!");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000860
Rafael Espindolaaa273822014-05-09 21:49:17 +0000861 // The module owns this now
862 GA.release();
863
Chris Lattnerac161bf2009-01-02 07:01:27 +0000864 return false;
865}
866
867/// ParseGlobal
Sean Fertilec70d28b2017-10-26 15:00:26 +0000868/// ::= GlobalVar '=' OptionalLinkage OptionalPreemptionSpecifier
869/// OptionalVisibility OptionalDLLStorageClass
Eric Christopher536f0a92015-05-28 23:07:39 +0000870/// OptionalThreadLocal OptionalUnnamedAddr OptionalAddrSpace
Javed Absarf3d79042017-05-11 12:28:08 +0000871/// OptionalExternallyInitialized GlobalType Type Const OptionalAttrs
Sean Fertilec70d28b2017-10-26 15:00:26 +0000872/// ::= OptionalLinkage OptionalPreemptionSpecifier OptionalVisibility
873/// OptionalDLLStorageClass OptionalThreadLocal OptionalUnnamedAddr
874/// OptionalAddrSpace OptionalExternallyInitialized GlobalType Type
875/// Const OptionalAttrs
Chris Lattnerac161bf2009-01-02 07:01:27 +0000876///
Eric Christopher536f0a92015-05-28 23:07:39 +0000877/// Everything up to and including OptionalUnnamedAddr has been parsed
David Majnemerc4ab61c2014-03-09 06:41:58 +0000878/// already.
Chris Lattnerac161bf2009-01-02 07:01:27 +0000879///
880bool LLParser::ParseGlobal(const std::string &Name, LocTy NameLoc,
881 unsigned Linkage, bool HasLinkage,
Rafael Espindola59f7eba2014-05-28 18:15:43 +0000882 unsigned Visibility, unsigned DLLStorageClass,
Sean Fertilec70d28b2017-10-26 15:00:26 +0000883 bool DSOLocal, GlobalVariable::ThreadLocalMode TLM,
Peter Collingbourne96efdd62016-06-14 21:01:22 +0000884 GlobalVariable::UnnamedAddr UnnamedAddr) {
Duncan P. N. Exon Smithb80de102014-05-07 22:57:20 +0000885 if (!isValidVisibilityForLinkage(Visibility, Linkage))
886 return Error(NameLoc,
887 "symbol with local linkage must have default visibility");
888
Chris Lattnerac161bf2009-01-02 07:01:27 +0000889 unsigned AddrSpace;
Rafael Espindola42a4c9f2014-06-06 01:20:28 +0000890 bool IsConstant, IsExternallyInitialized;
Michael Gottesman27e7ef32013-02-05 05:57:38 +0000891 LocTy IsExternallyInitializedLoc;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000892 LocTy TyLoc;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000893
Craig Topper2617dcc2014-04-15 06:32:26 +0000894 Type *Ty = nullptr;
Rafael Espindola59f7eba2014-05-28 18:15:43 +0000895 if (ParseOptionalAddrSpace(AddrSpace) ||
Michael Gottesman27e7ef32013-02-05 05:57:38 +0000896 ParseOptionalToken(lltok::kw_externally_initialized,
897 IsExternallyInitialized,
898 &IsExternallyInitializedLoc) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +0000899 ParseGlobalType(IsConstant) ||
900 ParseType(Ty, TyLoc))
901 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000902
Chris Lattnerac161bf2009-01-02 07:01:27 +0000903 // If the linkage is specified and is external, then no initializer is
904 // present.
Craig Topper2617dcc2014-04-15 06:32:26 +0000905 Constant *Init = nullptr;
Rafael Espindola4787ba32016-05-11 13:51:39 +0000906 if (!HasLinkage ||
907 !GlobalValue::isValidDeclarationLinkage(
908 (GlobalValue::LinkageTypes)Linkage)) {
Chris Lattnerac161bf2009-01-02 07:01:27 +0000909 if (ParseGlobalValue(Ty, Init))
910 return true;
911 }
912
David Majnemer49b3d9b2015-02-16 08:41:08 +0000913 if (Ty->isFunctionTy() || !PointerType::isValidElementType(Ty))
Chris Lattnerc9e1b482009-02-08 20:00:15 +0000914 return Error(TyLoc, "invalid type for global variable");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000915
David Majnemer598bd052014-12-09 05:56:09 +0000916 GlobalValue *GVal = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000917
918 // See if the global was forward referenced, if so, use the global.
Chris Lattner1f386b82009-02-02 07:24:28 +0000919 if (!Name.empty()) {
David Majnemer598bd052014-12-09 05:56:09 +0000920 GVal = M->getNamedValue(Name);
921 if (GVal) {
Peter Collingbourne463ff6d2015-11-25 02:54:07 +0000922 if (!ForwardRefVals.erase(Name))
Chris Lattnere38317f2009-10-25 23:22:50 +0000923 return Error(NameLoc, "redefinition of global '@" + Name + "'");
Chris Lattnere38317f2009-10-25 23:22:50 +0000924 }
Chris Lattnerac161bf2009-01-02 07:01:27 +0000925 } else {
David Blaikie9ebdc692015-09-21 21:07:50 +0000926 auto I = ForwardRefValIDs.find(NumberedVals.size());
Chris Lattnerac161bf2009-01-02 07:01:27 +0000927 if (I != ForwardRefValIDs.end()) {
David Majnemer598bd052014-12-09 05:56:09 +0000928 GVal = I->second.first;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000929 ForwardRefValIDs.erase(I);
930 }
931 }
932
David Majnemer598bd052014-12-09 05:56:09 +0000933 GlobalVariable *GV;
934 if (!GVal) {
Craig Topper2617dcc2014-04-15 06:32:26 +0000935 GV = new GlobalVariable(*M, Ty, false, GlobalValue::ExternalLinkage, nullptr,
936 Name, nullptr, GlobalVariable::NotThreadLocal,
Hans Wennborgcbe34b42012-06-23 11:37:03 +0000937 AddrSpace);
Chris Lattnerac161bf2009-01-02 07:01:27 +0000938 } else {
David Blaikie8f27ae42015-05-13 22:55:01 +0000939 if (GVal->getValueType() != Ty)
Chris Lattnerac161bf2009-01-02 07:01:27 +0000940 return Error(TyLoc,
941 "forward reference and definition of global have different types");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000942
David Majnemer598bd052014-12-09 05:56:09 +0000943 GV = cast<GlobalVariable>(GVal);
944
Chris Lattnerac161bf2009-01-02 07:01:27 +0000945 // Move the forward-reference to the correct spot in the module.
946 M->getGlobalList().splice(M->global_end(), M->getGlobalList(), GV);
947 }
948
949 if (Name.empty())
950 NumberedVals.push_back(GV);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000951
Chris Lattnerac161bf2009-01-02 07:01:27 +0000952 // Set the parsed properties on the global.
953 if (Init)
954 GV->setInitializer(Init);
955 GV->setConstant(IsConstant);
956 GV->setLinkage((GlobalValue::LinkageTypes)Linkage);
Rafael Espindolae4b02312018-01-11 22:15:05 +0000957 maybeSetDSOLocal(DSOLocal, *GV);
Chris Lattnerac161bf2009-01-02 07:01:27 +0000958 GV->setVisibility((GlobalValue::VisibilityTypes)Visibility);
Nico Rieck7157bb72014-01-14 15:22:47 +0000959 GV->setDLLStorageClass((GlobalValue::DLLStorageClassTypes)DLLStorageClass);
Michael Gottesman27e7ef32013-02-05 05:57:38 +0000960 GV->setExternallyInitialized(IsExternallyInitialized);
Hans Wennborgcbe34b42012-06-23 11:37:03 +0000961 GV->setThreadLocalMode(TLM);
Rafael Espindola45e6c192011-01-08 16:42:36 +0000962 GV->setUnnamedAddr(UnnamedAddr);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000963
Chris Lattnerac161bf2009-01-02 07:01:27 +0000964 // Parse attributes on the global.
965 while (Lex.getKind() == lltok::comma) {
966 Lex.Lex();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000967
Chris Lattnerac161bf2009-01-02 07:01:27 +0000968 if (Lex.getKind() == lltok::kw_section) {
969 Lex.Lex();
970 GV->setSection(Lex.getStrVal());
971 if (ParseToken(lltok::StringConstant, "expected global section string"))
972 return true;
973 } else if (Lex.getKind() == lltok::kw_align) {
974 unsigned Alignment;
975 if (ParseOptionalAlignment(Alignment)) return true;
976 GV->setAlignment(Alignment);
Peter Collingbournecceae7f2016-05-31 23:01:54 +0000977 } else if (Lex.getKind() == lltok::MetadataVar) {
978 if (ParseGlobalObjectMetadataAttachment(*GV))
979 return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000980 } else {
David Majnemerdad0a642014-06-27 18:19:56 +0000981 Comdat *C;
Rafael Espindola83a362c2015-01-06 22:55:16 +0000982 if (parseOptionalComdat(Name, C))
David Majnemerdad0a642014-06-27 18:19:56 +0000983 return true;
984 if (C)
985 GV->setComdat(C);
986 else
987 return TokError("unknown global variable property!");
Chris Lattnerac161bf2009-01-02 07:01:27 +0000988 }
989 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000990
Javed Absarf3d79042017-05-11 12:28:08 +0000991 AttrBuilder Attrs;
992 LocTy BuiltinLoc;
993 std::vector<unsigned> FwdRefAttrGrps;
994 if (ParseFnAttributeValuePairs(Attrs, FwdRefAttrGrps, false, BuiltinLoc))
995 return true;
996 if (Attrs.hasAttributes() || !FwdRefAttrGrps.empty()) {
997 GV->setAttributes(AttributeSet::get(Context, Attrs));
998 ForwardRefAttrGroups[GV] = FwdRefAttrGrps;
999 }
1000
Chris Lattnerac161bf2009-01-02 07:01:27 +00001001 return false;
1002}
1003
Bill Wendling63b88192013-02-06 06:52:58 +00001004/// ParseUnnamedAttrGrp
Bill Wendlinga7c38772013-02-09 15:48:49 +00001005/// ::= 'attributes' AttrGrpID '=' '{' AttrValPair+ '}'
Bill Wendling63b88192013-02-06 06:52:58 +00001006bool LLParser::ParseUnnamedAttrGrp() {
Bill Wendlinga7c38772013-02-09 15:48:49 +00001007 assert(Lex.getKind() == lltok::kw_attributes);
Bill Wendling63b88192013-02-06 06:52:58 +00001008 LocTy AttrGrpLoc = Lex.getLoc();
Bill Wendlinga7c38772013-02-09 15:48:49 +00001009 Lex.Lex();
1010
David Majnemerb39e22b2014-12-09 18:33:57 +00001011 if (Lex.getKind() != lltok::AttrGrpID)
1012 return TokError("expected attribute group id");
1013
Bill Wendling63b88192013-02-06 06:52:58 +00001014 unsigned VarID = Lex.getUIntVal();
Bill Wendlingb32b0412013-02-08 06:32:06 +00001015 std::vector<unsigned> unused;
Michael Gottesman41748d72013-06-27 00:25:01 +00001016 LocTy BuiltinLoc;
Bill Wendling63b88192013-02-06 06:52:58 +00001017 Lex.Lex();
1018
1019 if (ParseToken(lltok::equal, "expected '=' here") ||
Bill Wendling63b88192013-02-06 06:52:58 +00001020 ParseToken(lltok::lbrace, "expected '{' here") ||
Bill Wendling09bd1f72013-02-22 00:12:35 +00001021 ParseFnAttributeValuePairs(NumberedAttrBuilders[VarID], unused, true,
Michael Gottesman41748d72013-06-27 00:25:01 +00001022 BuiltinLoc) ||
Bill Wendling63b88192013-02-06 06:52:58 +00001023 ParseToken(lltok::rbrace, "expected end of attribute group"))
1024 return true;
1025
Bill Wendlingb32b0412013-02-08 06:32:06 +00001026 if (!NumberedAttrBuilders[VarID].hasAttributes())
Bill Wendling63b88192013-02-06 06:52:58 +00001027 return Error(AttrGrpLoc, "attribute group has no attributes");
1028
1029 return false;
1030}
1031
Bill Wendling8b0321d2013-02-08 00:52:31 +00001032/// ParseFnAttributeValuePairs
Bill Wendling63b88192013-02-06 06:52:58 +00001033/// ::= <attr> | <attr> '=' <value>
Bill Wendlingb32b0412013-02-08 06:32:06 +00001034bool LLParser::ParseFnAttributeValuePairs(AttrBuilder &B,
1035 std::vector<unsigned> &FwdRefAttrGrps,
Michael Gottesman41748d72013-06-27 00:25:01 +00001036 bool inAttrGrp, LocTy &BuiltinLoc) {
Bill Wendling8b0321d2013-02-08 00:52:31 +00001037 bool HaveError = false;
1038
1039 B.clear();
1040
Bill Wendling63b88192013-02-06 06:52:58 +00001041 while (true) {
1042 lltok::Kind Token = Lex.getKind();
Michael Gottesman41748d72013-06-27 00:25:01 +00001043 if (Token == lltok::kw_builtin)
1044 BuiltinLoc = Lex.getLoc();
Bill Wendling63b88192013-02-06 06:52:58 +00001045 switch (Token) {
1046 default:
Bill Wendling8b0321d2013-02-08 00:52:31 +00001047 if (!inAttrGrp) return HaveError;
Bill Wendling63b88192013-02-06 06:52:58 +00001048 return Error(Lex.getLoc(), "unterminated attribute group");
1049 case lltok::rbrace:
1050 // Finished.
1051 return false;
1052
Bill Wendlingb32b0412013-02-08 06:32:06 +00001053 case lltok::AttrGrpID: {
1054 // Allow a function to reference an attribute group:
1055 //
1056 // define void @foo() #1 { ... }
1057 if (inAttrGrp)
1058 HaveError |=
1059 Error(Lex.getLoc(),
1060 "cannot have an attribute group reference in an attribute group");
1061
1062 unsigned AttrGrpNum = Lex.getUIntVal();
1063 if (inAttrGrp) break;
1064
1065 // Save the reference to the attribute group. We'll fill it in later.
1066 FwdRefAttrGrps.push_back(AttrGrpNum);
1067 break;
1068 }
Bill Wendling63b88192013-02-06 06:52:58 +00001069 // Target-dependent attributes:
1070 case lltok::StringConstant: {
Artur Pilipenko17376c42015-08-03 14:31:49 +00001071 if (ParseStringAttribute(B))
Bill Wendling63b88192013-02-06 06:52:58 +00001072 return true;
Bill Wendlingb1ea9802013-02-10 10:12:50 +00001073 continue;
Bill Wendling63b88192013-02-06 06:52:58 +00001074 }
1075
1076 // Target-independent attributes:
1077 case lltok::kw_align: {
Bill Wendlingc62789f2013-04-18 18:30:16 +00001078 // As a hack, we allow function alignment to be initially parsed as an
1079 // attribute on a function declaration/definition or added to an attribute
1080 // group and later moved to the alignment field.
Bill Wendling63b88192013-02-06 06:52:58 +00001081 unsigned Alignment;
Bill Wendling8b0321d2013-02-08 00:52:31 +00001082 if (inAttrGrp) {
Bill Wendling44b08bf2013-02-10 23:15:51 +00001083 Lex.Lex();
Bill Wendling8b0321d2013-02-08 00:52:31 +00001084 if (ParseToken(lltok::equal, "expected '=' here") ||
1085 ParseUInt32(Alignment))
1086 return true;
1087 } else {
1088 if (ParseOptionalAlignment(Alignment))
1089 return true;
1090 }
Bill Wendling63b88192013-02-06 06:52:58 +00001091 B.addAlignmentAttr(Alignment);
Bill Wendling8b0321d2013-02-08 00:52:31 +00001092 continue;
Bill Wendling63b88192013-02-06 06:52:58 +00001093 }
1094 case lltok::kw_alignstack: {
1095 unsigned Alignment;
Bill Wendling8b0321d2013-02-08 00:52:31 +00001096 if (inAttrGrp) {
Bill Wendling44b08bf2013-02-10 23:15:51 +00001097 Lex.Lex();
Bill Wendling8b0321d2013-02-08 00:52:31 +00001098 if (ParseToken(lltok::equal, "expected '=' here") ||
1099 ParseUInt32(Alignment))
1100 return true;
1101 } else {
1102 if (ParseOptionalStackAlignment(Alignment))
1103 return true;
1104 }
Bill Wendling63b88192013-02-06 06:52:58 +00001105 B.addStackAlignmentAttr(Alignment);
Bill Wendling8b0321d2013-02-08 00:52:31 +00001106 continue;
Bill Wendling63b88192013-02-06 06:52:58 +00001107 }
George Burgess IV278199f2016-04-12 01:05:35 +00001108 case lltok::kw_allocsize: {
1109 unsigned ElemSizeArg;
1110 Optional<unsigned> NumElemsArg;
1111 // inAttrGrp doesn't matter; we only support allocsize(a[, b])
1112 if (parseAllocSizeArguments(ElemSizeArg, NumElemsArg))
1113 return true;
1114 B.addAllocSizeAttr(ElemSizeArg, NumElemsArg);
1115 continue;
1116 }
Igor Laevsky39d662f2015-07-11 10:30:36 +00001117 case lltok::kw_alwaysinline: B.addAttribute(Attribute::AlwaysInline); break;
1118 case lltok::kw_argmemonly: B.addAttribute(Attribute::ArgMemOnly); break;
1119 case lltok::kw_builtin: B.addAttribute(Attribute::Builtin); break;
1120 case lltok::kw_cold: B.addAttribute(Attribute::Cold); break;
1121 case lltok::kw_convergent: B.addAttribute(Attribute::Convergent); break;
Vaivaswatha Nagarajfb3f4902015-12-16 16:16:19 +00001122 case lltok::kw_inaccessiblememonly:
1123 B.addAttribute(Attribute::InaccessibleMemOnly); break;
1124 case lltok::kw_inaccessiblemem_or_argmemonly:
1125 B.addAttribute(Attribute::InaccessibleMemOrArgMemOnly); break;
Igor Laevsky39d662f2015-07-11 10:30:36 +00001126 case lltok::kw_inlinehint: B.addAttribute(Attribute::InlineHint); break;
1127 case lltok::kw_jumptable: B.addAttribute(Attribute::JumpTable); break;
1128 case lltok::kw_minsize: B.addAttribute(Attribute::MinSize); break;
1129 case lltok::kw_naked: B.addAttribute(Attribute::Naked); break;
1130 case lltok::kw_nobuiltin: B.addAttribute(Attribute::NoBuiltin); break;
1131 case lltok::kw_noduplicate: B.addAttribute(Attribute::NoDuplicate); break;
1132 case lltok::kw_noimplicitfloat:
1133 B.addAttribute(Attribute::NoImplicitFloat); break;
1134 case lltok::kw_noinline: B.addAttribute(Attribute::NoInline); break;
1135 case lltok::kw_nonlazybind: B.addAttribute(Attribute::NonLazyBind); break;
1136 case lltok::kw_noredzone: B.addAttribute(Attribute::NoRedZone); break;
1137 case lltok::kw_noreturn: B.addAttribute(Attribute::NoReturn); break;
James Molloye6f87ca2015-11-06 10:32:53 +00001138 case lltok::kw_norecurse: B.addAttribute(Attribute::NoRecurse); break;
Igor Laevsky39d662f2015-07-11 10:30:36 +00001139 case lltok::kw_nounwind: B.addAttribute(Attribute::NoUnwind); break;
1140 case lltok::kw_optnone: B.addAttribute(Attribute::OptimizeNone); break;
1141 case lltok::kw_optsize: B.addAttribute(Attribute::OptimizeForSize); break;
1142 case lltok::kw_readnone: B.addAttribute(Attribute::ReadNone); break;
1143 case lltok::kw_readonly: B.addAttribute(Attribute::ReadOnly); break;
1144 case lltok::kw_returns_twice:
1145 B.addAttribute(Attribute::ReturnsTwice); break;
Matt Arsenaultb19b57e2017-04-28 20:25:27 +00001146 case lltok::kw_speculatable: B.addAttribute(Attribute::Speculatable); break;
Igor Laevsky39d662f2015-07-11 10:30:36 +00001147 case lltok::kw_ssp: B.addAttribute(Attribute::StackProtect); break;
1148 case lltok::kw_sspreq: B.addAttribute(Attribute::StackProtectReq); break;
1149 case lltok::kw_sspstrong:
1150 B.addAttribute(Attribute::StackProtectStrong); break;
1151 case lltok::kw_safestack: B.addAttribute(Attribute::SafeStack); break;
1152 case lltok::kw_sanitize_address:
1153 B.addAttribute(Attribute::SanitizeAddress); break;
Evgeniy Stepanovc667c1f2017-12-09 00:21:41 +00001154 case lltok::kw_sanitize_hwaddress:
1155 B.addAttribute(Attribute::SanitizeHWAddress); break;
Igor Laevsky39d662f2015-07-11 10:30:36 +00001156 case lltok::kw_sanitize_thread:
1157 B.addAttribute(Attribute::SanitizeThread); break;
1158 case lltok::kw_sanitize_memory:
1159 B.addAttribute(Attribute::SanitizeMemory); break;
Andrew Kaylor53a5fbb2017-08-14 21:15:13 +00001160 case lltok::kw_strictfp: B.addAttribute(Attribute::StrictFP); break;
Igor Laevsky39d662f2015-07-11 10:30:36 +00001161 case lltok::kw_uwtable: B.addAttribute(Attribute::UWTable); break;
Nicolai Haehnle84c9f992016-07-04 08:01:29 +00001162 case lltok::kw_writeonly: B.addAttribute(Attribute::WriteOnly); break;
Bill Wendling8b0321d2013-02-08 00:52:31 +00001163
1164 // Error handling.
1165 case lltok::kw_inreg:
1166 case lltok::kw_signext:
1167 case lltok::kw_zeroext:
1168 HaveError |=
1169 Error(Lex.getLoc(),
1170 "invalid use of attribute on a function");
1171 break;
1172 case lltok::kw_byval:
Hal Finkelb0407ba2014-07-18 15:51:28 +00001173 case lltok::kw_dereferenceable:
Sanjoy Das31ea6d12015-04-16 20:29:50 +00001174 case lltok::kw_dereferenceable_or_null:
Reid Klecknera534a382013-12-19 02:14:12 +00001175 case lltok::kw_inalloca:
Bill Wendling8b0321d2013-02-08 00:52:31 +00001176 case lltok::kw_nest:
1177 case lltok::kw_noalias:
1178 case lltok::kw_nocapture:
Nick Lewyckyd52b1522014-05-20 01:23:40 +00001179 case lltok::kw_nonnull:
Stephen Linb8bd2322013-04-20 05:14:40 +00001180 case lltok::kw_returned:
Bill Wendling8b0321d2013-02-08 00:52:31 +00001181 case lltok::kw_sret:
Manman Ren9bfd0d02016-04-01 21:41:15 +00001182 case lltok::kw_swifterror:
Manman Renf46262e2016-03-29 17:37:21 +00001183 case lltok::kw_swiftself:
Bill Wendling8b0321d2013-02-08 00:52:31 +00001184 HaveError |=
1185 Error(Lex.getLoc(),
1186 "invalid use of parameter-only attribute on a function");
1187 break;
Bill Wendling63b88192013-02-06 06:52:58 +00001188 }
1189
1190 Lex.Lex();
1191 }
1192}
Chris Lattnerac161bf2009-01-02 07:01:27 +00001193
1194//===----------------------------------------------------------------------===//
1195// GlobalValue Reference/Resolution Routines.
1196//===----------------------------------------------------------------------===//
1197
Karl Schimpf77729782015-09-03 18:06:44 +00001198static inline GlobalValue *createGlobalFwdRef(Module *M, PointerType *PTy,
1199 const std::string &Name) {
1200 if (auto *FT = dyn_cast<FunctionType>(PTy->getElementType()))
1201 return Function::Create(FT, GlobalValue::ExternalWeakLinkage, Name, M);
1202 else
1203 return new GlobalVariable(*M, PTy->getElementType(), false,
1204 GlobalValue::ExternalWeakLinkage, nullptr, Name,
1205 nullptr, GlobalVariable::NotThreadLocal,
1206 PTy->getAddressSpace());
1207}
1208
Chris Lattnerac161bf2009-01-02 07:01:27 +00001209/// GetGlobalVal - Get a value with the specified name or ID, creating a
1210/// forward reference record if needed. This can return null if the value
1211/// exists but does not have the right type.
Chris Lattner229907c2011-07-18 04:54:35 +00001212GlobalValue *LLParser::GetGlobalVal(const std::string &Name, Type *Ty,
Chris Lattnerac161bf2009-01-02 07:01:27 +00001213 LocTy Loc) {
Chris Lattner229907c2011-07-18 04:54:35 +00001214 PointerType *PTy = dyn_cast<PointerType>(Ty);
Craig Topper2617dcc2014-04-15 06:32:26 +00001215 if (!PTy) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00001216 Error(Loc, "global variable reference must have pointer type");
Craig Topper2617dcc2014-04-15 06:32:26 +00001217 return nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001218 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001219
Chris Lattnerac161bf2009-01-02 07:01:27 +00001220 // Look this name up in the normal function symbol table.
1221 GlobalValue *Val =
1222 cast_or_null<GlobalValue>(M->getValueSymbolTable().lookup(Name));
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001223
Chris Lattnerac161bf2009-01-02 07:01:27 +00001224 // If this is a forward reference for the value, see if we already created a
1225 // forward ref record.
Craig Topper2617dcc2014-04-15 06:32:26 +00001226 if (!Val) {
David Blaikie9ebdc692015-09-21 21:07:50 +00001227 auto I = ForwardRefVals.find(Name);
Chris Lattnerac161bf2009-01-02 07:01:27 +00001228 if (I != ForwardRefVals.end())
1229 Val = I->second.first;
1230 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001231
Chris Lattnerac161bf2009-01-02 07:01:27 +00001232 // If we have the value in the symbol table or fwd-ref table, return it.
1233 if (Val) {
1234 if (Val->getType() == Ty) return Val;
1235 Error(Loc, "'@" + Name + "' defined with type '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00001236 getTypeString(Val->getType()) + "'");
Craig Topper2617dcc2014-04-15 06:32:26 +00001237 return nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001238 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001239
Chris Lattnerac161bf2009-01-02 07:01:27 +00001240 // Otherwise, create a new forward reference for this value and remember it.
Karl Schimpf77729782015-09-03 18:06:44 +00001241 GlobalValue *FwdVal = createGlobalFwdRef(M, PTy, Name);
Chris Lattnerac161bf2009-01-02 07:01:27 +00001242 ForwardRefVals[Name] = std::make_pair(FwdVal, Loc);
1243 return FwdVal;
1244}
1245
Chris Lattner229907c2011-07-18 04:54:35 +00001246GlobalValue *LLParser::GetGlobalVal(unsigned ID, Type *Ty, LocTy Loc) {
1247 PointerType *PTy = dyn_cast<PointerType>(Ty);
Craig Topper2617dcc2014-04-15 06:32:26 +00001248 if (!PTy) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00001249 Error(Loc, "global variable reference must have pointer type");
Craig Topper2617dcc2014-04-15 06:32:26 +00001250 return nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001251 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001252
Craig Topper2617dcc2014-04-15 06:32:26 +00001253 GlobalValue *Val = ID < NumberedVals.size() ? NumberedVals[ID] : nullptr;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001254
Chris Lattnerac161bf2009-01-02 07:01:27 +00001255 // If this is a forward reference for the value, see if we already created a
1256 // forward ref record.
Craig Topper2617dcc2014-04-15 06:32:26 +00001257 if (!Val) {
David Blaikie9ebdc692015-09-21 21:07:50 +00001258 auto I = ForwardRefValIDs.find(ID);
Chris Lattnerac161bf2009-01-02 07:01:27 +00001259 if (I != ForwardRefValIDs.end())
1260 Val = I->second.first;
1261 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001262
Chris Lattnerac161bf2009-01-02 07:01:27 +00001263 // If we have the value in the symbol table or fwd-ref table, return it.
1264 if (Val) {
1265 if (Val->getType() == Ty) return Val;
Benjamin Kramerc7583112010-09-27 17:42:11 +00001266 Error(Loc, "'@" + Twine(ID) + "' defined with type '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00001267 getTypeString(Val->getType()) + "'");
Craig Topper2617dcc2014-04-15 06:32:26 +00001268 return nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001269 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001270
Chris Lattnerac161bf2009-01-02 07:01:27 +00001271 // Otherwise, create a new forward reference for this value and remember it.
Karl Schimpf77729782015-09-03 18:06:44 +00001272 GlobalValue *FwdVal = createGlobalFwdRef(M, PTy, "");
Chris Lattnerac161bf2009-01-02 07:01:27 +00001273 ForwardRefValIDs[ID] = std::make_pair(FwdVal, Loc);
1274 return FwdVal;
1275}
1276
Chris Lattnerac161bf2009-01-02 07:01:27 +00001277//===----------------------------------------------------------------------===//
David Majnemerdad0a642014-06-27 18:19:56 +00001278// Comdat Reference/Resolution Routines.
1279//===----------------------------------------------------------------------===//
1280
1281Comdat *LLParser::getComdat(const std::string &Name, LocTy Loc) {
1282 // Look this name up in the comdat symbol table.
1283 Module::ComdatSymTabType &ComdatSymTab = M->getComdatSymbolTable();
1284 Module::ComdatSymTabType::iterator I = ComdatSymTab.find(Name);
1285 if (I != ComdatSymTab.end())
1286 return &I->second;
1287
1288 // Otherwise, create a new forward reference for this value and remember it.
1289 Comdat *C = M->getOrInsertComdat(Name);
1290 ForwardRefComdats[Name] = Loc;
1291 return C;
1292}
1293
David Majnemerdad0a642014-06-27 18:19:56 +00001294//===----------------------------------------------------------------------===//
Chris Lattnerac161bf2009-01-02 07:01:27 +00001295// Helper Routines.
1296//===----------------------------------------------------------------------===//
1297
1298/// ParseToken - If the current token has the specified kind, eat it and return
1299/// success. Otherwise, emit the specified error and return failure.
1300bool LLParser::ParseToken(lltok::Kind T, const char *ErrMsg) {
1301 if (Lex.getKind() != T)
1302 return TokError(ErrMsg);
1303 Lex.Lex();
1304 return false;
1305}
1306
Chris Lattner3822f632009-01-02 08:05:26 +00001307/// ParseStringConstant
1308/// ::= StringConstant
1309bool LLParser::ParseStringConstant(std::string &Result) {
1310 if (Lex.getKind() != lltok::StringConstant)
1311 return TokError("expected string constant");
1312 Result = Lex.getStrVal();
1313 Lex.Lex();
1314 return false;
1315}
1316
1317/// ParseUInt32
1318/// ::= uint32
Leny Kholodov5fcc4182016-09-06 10:46:28 +00001319bool LLParser::ParseUInt32(uint32_t &Val) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00001320 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned())
1321 return TokError("expected integer");
1322 uint64_t Val64 = Lex.getAPSIntVal().getLimitedValue(0xFFFFFFFFULL+1);
1323 if (Val64 != unsigned(Val64))
1324 return TokError("expected 32-bit integer (too large)");
1325 Val = Val64;
1326 Lex.Lex();
1327 return false;
1328}
1329
Hal Finkelb0407ba2014-07-18 15:51:28 +00001330/// ParseUInt64
1331/// ::= uint64
1332bool LLParser::ParseUInt64(uint64_t &Val) {
1333 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned())
1334 return TokError("expected integer");
1335 Val = Lex.getAPSIntVal().getLimitedValue();
1336 Lex.Lex();
1337 return false;
1338}
1339
Hans Wennborgcbe34b42012-06-23 11:37:03 +00001340/// ParseTLSModel
1341/// := 'localdynamic'
1342/// := 'initialexec'
1343/// := 'localexec'
1344bool LLParser::ParseTLSModel(GlobalVariable::ThreadLocalMode &TLM) {
1345 switch (Lex.getKind()) {
1346 default:
1347 return TokError("expected localdynamic, initialexec or localexec");
1348 case lltok::kw_localdynamic:
1349 TLM = GlobalVariable::LocalDynamicTLSModel;
1350 break;
1351 case lltok::kw_initialexec:
1352 TLM = GlobalVariable::InitialExecTLSModel;
1353 break;
1354 case lltok::kw_localexec:
1355 TLM = GlobalVariable::LocalExecTLSModel;
1356 break;
1357 }
1358
1359 Lex.Lex();
1360 return false;
1361}
1362
1363/// ParseOptionalThreadLocal
1364/// := /*empty*/
1365/// := 'thread_local'
1366/// := 'thread_local' '(' tlsmodel ')'
1367bool LLParser::ParseOptionalThreadLocal(GlobalVariable::ThreadLocalMode &TLM) {
1368 TLM = GlobalVariable::NotThreadLocal;
1369 if (!EatIfPresent(lltok::kw_thread_local))
1370 return false;
1371
1372 TLM = GlobalVariable::GeneralDynamicTLSModel;
1373 if (Lex.getKind() == lltok::lparen) {
1374 Lex.Lex();
1375 return ParseTLSModel(TLM) ||
1376 ParseToken(lltok::rparen, "expected ')' after thread local model");
1377 }
1378 return false;
1379}
Chris Lattnerac161bf2009-01-02 07:01:27 +00001380
1381/// ParseOptionalAddrSpace
1382/// := /*empty*/
1383/// := 'addrspace' '(' uint32 ')'
1384bool LLParser::ParseOptionalAddrSpace(unsigned &AddrSpace) {
1385 AddrSpace = 0;
Chris Lattner3822f632009-01-02 08:05:26 +00001386 if (!EatIfPresent(lltok::kw_addrspace))
Chris Lattnerac161bf2009-01-02 07:01:27 +00001387 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001388 return ParseToken(lltok::lparen, "expected '(' in address space") ||
Chris Lattner3822f632009-01-02 08:05:26 +00001389 ParseUInt32(AddrSpace) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00001390 ParseToken(lltok::rparen, "expected ')' in address space");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001391}
Chris Lattnerac161bf2009-01-02 07:01:27 +00001392
Artur Pilipenko17376c42015-08-03 14:31:49 +00001393/// ParseStringAttribute
1394/// := StringConstant
1395/// := StringConstant '=' StringConstant
1396bool LLParser::ParseStringAttribute(AttrBuilder &B) {
1397 std::string Attr = Lex.getStrVal();
1398 Lex.Lex();
1399 std::string Val;
1400 if (EatIfPresent(lltok::equal) && ParseStringConstant(Val))
1401 return true;
1402 B.addAttribute(Attr, Val);
1403 return false;
1404}
1405
Bill Wendling34c2eb22012-12-04 23:40:58 +00001406/// ParseOptionalParamAttrs - Parse a potentially empty list of parameter attributes.
1407bool LLParser::ParseOptionalParamAttrs(AttrBuilder &B) {
1408 bool HaveError = false;
1409
1410 B.clear();
1411
Eugene Zelenko1804a772016-08-25 00:45:04 +00001412 while (true) {
Bill Wendling34c2eb22012-12-04 23:40:58 +00001413 lltok::Kind Token = Lex.getKind();
1414 switch (Token) {
1415 default: // End of attributes.
1416 return HaveError;
Artur Pilipenko17376c42015-08-03 14:31:49 +00001417 case lltok::StringConstant: {
1418 if (ParseStringAttribute(B))
1419 return true;
1420 continue;
1421 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00001422 case lltok::kw_align: {
1423 unsigned Alignment;
1424 if (ParseOptionalAlignment(Alignment))
1425 return true;
Bill Wendling68d24012012-10-08 22:20:14 +00001426 B.addAlignmentAttr(Alignment);
Chris Lattnerac161bf2009-01-02 07:01:27 +00001427 continue;
1428 }
Bill Wendling3d7b0b82012-12-19 07:18:57 +00001429 case lltok::kw_byval: B.addAttribute(Attribute::ByVal); break;
Hal Finkelb0407ba2014-07-18 15:51:28 +00001430 case lltok::kw_dereferenceable: {
1431 uint64_t Bytes;
Sanjoy Das31ea6d12015-04-16 20:29:50 +00001432 if (ParseOptionalDerefAttrBytes(lltok::kw_dereferenceable, Bytes))
Hal Finkelb0407ba2014-07-18 15:51:28 +00001433 return true;
1434 B.addDereferenceableAttr(Bytes);
1435 continue;
1436 }
Sanjoy Das31ea6d12015-04-16 20:29:50 +00001437 case lltok::kw_dereferenceable_or_null: {
1438 uint64_t Bytes;
1439 if (ParseOptionalDerefAttrBytes(lltok::kw_dereferenceable_or_null, Bytes))
1440 return true;
1441 B.addDereferenceableOrNullAttr(Bytes);
1442 continue;
1443 }
Reid Klecknera534a382013-12-19 02:14:12 +00001444 case lltok::kw_inalloca: B.addAttribute(Attribute::InAlloca); break;
Bill Wendling3d7b0b82012-12-19 07:18:57 +00001445 case lltok::kw_inreg: B.addAttribute(Attribute::InReg); break;
1446 case lltok::kw_nest: B.addAttribute(Attribute::Nest); break;
1447 case lltok::kw_noalias: B.addAttribute(Attribute::NoAlias); break;
1448 case lltok::kw_nocapture: B.addAttribute(Attribute::NoCapture); break;
Nick Lewyckyd52b1522014-05-20 01:23:40 +00001449 case lltok::kw_nonnull: B.addAttribute(Attribute::NonNull); break;
Nick Lewyckyc2ec0722013-07-06 00:29:58 +00001450 case lltok::kw_readnone: B.addAttribute(Attribute::ReadNone); break;
1451 case lltok::kw_readonly: B.addAttribute(Attribute::ReadOnly); break;
Stephen Linb8bd2322013-04-20 05:14:40 +00001452 case lltok::kw_returned: B.addAttribute(Attribute::Returned); break;
Bill Wendling3d7b0b82012-12-19 07:18:57 +00001453 case lltok::kw_signext: B.addAttribute(Attribute::SExt); break;
1454 case lltok::kw_sret: B.addAttribute(Attribute::StructRet); break;
Manman Ren9bfd0d02016-04-01 21:41:15 +00001455 case lltok::kw_swifterror: B.addAttribute(Attribute::SwiftError); break;
Manman Renf46262e2016-03-29 17:37:21 +00001456 case lltok::kw_swiftself: B.addAttribute(Attribute::SwiftSelf); break;
Nicolai Haehnle84c9f992016-07-04 08:01:29 +00001457 case lltok::kw_writeonly: B.addAttribute(Attribute::WriteOnly); break;
Bill Wendling3d7b0b82012-12-19 07:18:57 +00001458 case lltok::kw_zeroext: B.addAttribute(Attribute::ZExt); break;
Charles Davisbe5557e2010-02-12 00:31:15 +00001459
Stephen Lin7577ed52013-04-20 13:16:13 +00001460 case lltok::kw_alignstack:
1461 case lltok::kw_alwaysinline:
Igor Laevsky39d662f2015-07-11 10:30:36 +00001462 case lltok::kw_argmemonly:
Michael Gottesman41748d72013-06-27 00:25:01 +00001463 case lltok::kw_builtin:
Stephen Lin7577ed52013-04-20 13:16:13 +00001464 case lltok::kw_inlinehint:
Tom Roeder44cb65f2014-06-05 19:29:43 +00001465 case lltok::kw_jumptable:
Stephen Lin7577ed52013-04-20 13:16:13 +00001466 case lltok::kw_minsize:
1467 case lltok::kw_naked:
1468 case lltok::kw_nobuiltin:
1469 case lltok::kw_noduplicate:
1470 case lltok::kw_noimplicitfloat:
1471 case lltok::kw_noinline:
1472 case lltok::kw_nonlazybind:
1473 case lltok::kw_noredzone:
1474 case lltok::kw_noreturn:
1475 case lltok::kw_nounwind:
Andrea Di Biagio377496b2013-08-23 11:53:55 +00001476 case lltok::kw_optnone:
Stephen Lin7577ed52013-04-20 13:16:13 +00001477 case lltok::kw_optsize:
Stephen Lin7577ed52013-04-20 13:16:13 +00001478 case lltok::kw_returns_twice:
1479 case lltok::kw_sanitize_address:
Evgeniy Stepanovc667c1f2017-12-09 00:21:41 +00001480 case lltok::kw_sanitize_hwaddress:
Stephen Lin7577ed52013-04-20 13:16:13 +00001481 case lltok::kw_sanitize_memory:
1482 case lltok::kw_sanitize_thread:
1483 case lltok::kw_ssp:
1484 case lltok::kw_sspreq:
1485 case lltok::kw_sspstrong:
Peter Collingbourne82437bf2015-06-15 21:07:11 +00001486 case lltok::kw_safestack:
Andrew Kaylor53a5fbb2017-08-14 21:15:13 +00001487 case lltok::kw_strictfp:
Stephen Lin7577ed52013-04-20 13:16:13 +00001488 case lltok::kw_uwtable:
Bill Wendling34c2eb22012-12-04 23:40:58 +00001489 HaveError |= Error(Lex.getLoc(), "invalid use of function-only attribute");
1490 break;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001491 }
Bill Wendling0be9c402012-09-28 22:30:18 +00001492
Bill Wendling34c2eb22012-12-04 23:40:58 +00001493 Lex.Lex();
1494 }
1495}
1496
1497/// ParseOptionalReturnAttrs - Parse a potentially empty list of return attributes.
1498bool LLParser::ParseOptionalReturnAttrs(AttrBuilder &B) {
1499 bool HaveError = false;
1500
1501 B.clear();
1502
Eugene Zelenko1804a772016-08-25 00:45:04 +00001503 while (true) {
Bill Wendling34c2eb22012-12-04 23:40:58 +00001504 lltok::Kind Token = Lex.getKind();
Bill Wendling0be9c402012-09-28 22:30:18 +00001505 switch (Token) {
Bill Wendling34c2eb22012-12-04 23:40:58 +00001506 default: // End of attributes.
1507 return HaveError;
Artur Pilipenko17376c42015-08-03 14:31:49 +00001508 case lltok::StringConstant: {
1509 if (ParseStringAttribute(B))
1510 return true;
1511 continue;
1512 }
Hal Finkelb0407ba2014-07-18 15:51:28 +00001513 case lltok::kw_dereferenceable: {
1514 uint64_t Bytes;
Sanjoy Das31ea6d12015-04-16 20:29:50 +00001515 if (ParseOptionalDerefAttrBytes(lltok::kw_dereferenceable, Bytes))
Hal Finkelb0407ba2014-07-18 15:51:28 +00001516 return true;
1517 B.addDereferenceableAttr(Bytes);
1518 continue;
1519 }
Sanjoy Das31ea6d12015-04-16 20:29:50 +00001520 case lltok::kw_dereferenceable_or_null: {
1521 uint64_t Bytes;
1522 if (ParseOptionalDerefAttrBytes(lltok::kw_dereferenceable_or_null, Bytes))
1523 return true;
1524 B.addDereferenceableOrNullAttr(Bytes);
1525 continue;
1526 }
Artur Pilipenko84bc62f2015-09-18 12:33:31 +00001527 case lltok::kw_align: {
1528 unsigned Alignment;
1529 if (ParseOptionalAlignment(Alignment))
1530 return true;
1531 B.addAlignmentAttr(Alignment);
1532 continue;
1533 }
Bill Wendling3d7b0b82012-12-19 07:18:57 +00001534 case lltok::kw_inreg: B.addAttribute(Attribute::InReg); break;
1535 case lltok::kw_noalias: B.addAttribute(Attribute::NoAlias); break;
Nick Lewyckyd52b1522014-05-20 01:23:40 +00001536 case lltok::kw_nonnull: B.addAttribute(Attribute::NonNull); break;
Bill Wendling3d7b0b82012-12-19 07:18:57 +00001537 case lltok::kw_signext: B.addAttribute(Attribute::SExt); break;
1538 case lltok::kw_zeroext: B.addAttribute(Attribute::ZExt); break;
Bill Wendling0be9c402012-09-28 22:30:18 +00001539
Bill Wendling34c2eb22012-12-04 23:40:58 +00001540 // Error handling.
Chandler Carruth9f6b59a2013-04-09 19:46:46 +00001541 case lltok::kw_byval:
Reid Klecknera534a382013-12-19 02:14:12 +00001542 case lltok::kw_inalloca:
Chandler Carruth9f6b59a2013-04-09 19:46:46 +00001543 case lltok::kw_nest:
1544 case lltok::kw_nocapture:
Stephen Linb8bd2322013-04-20 05:14:40 +00001545 case lltok::kw_returned:
Chandler Carruth9f6b59a2013-04-09 19:46:46 +00001546 case lltok::kw_sret:
Manman Ren9bfd0d02016-04-01 21:41:15 +00001547 case lltok::kw_swifterror:
Manman Renf46262e2016-03-29 17:37:21 +00001548 case lltok::kw_swiftself:
Bill Wendling34c2eb22012-12-04 23:40:58 +00001549 HaveError |= Error(Lex.getLoc(), "invalid use of parameter-only attribute");
Bill Wendling0be9c402012-09-28 22:30:18 +00001550 break;
James Molloy4f6fb952012-12-20 16:04:27 +00001551
Chandler Carruth9f6b59a2013-04-09 19:46:46 +00001552 case lltok::kw_alignstack:
1553 case lltok::kw_alwaysinline:
Igor Laevsky39d662f2015-07-11 10:30:36 +00001554 case lltok::kw_argmemonly:
Michael Gottesman41748d72013-06-27 00:25:01 +00001555 case lltok::kw_builtin:
Diego Novilloc6399532013-05-24 12:26:52 +00001556 case lltok::kw_cold:
Chandler Carruth9f6b59a2013-04-09 19:46:46 +00001557 case lltok::kw_inlinehint:
Tom Roeder44cb65f2014-06-05 19:29:43 +00001558 case lltok::kw_jumptable:
Chandler Carruth9f6b59a2013-04-09 19:46:46 +00001559 case lltok::kw_minsize:
1560 case lltok::kw_naked:
1561 case lltok::kw_nobuiltin:
1562 case lltok::kw_noduplicate:
1563 case lltok::kw_noimplicitfloat:
1564 case lltok::kw_noinline:
1565 case lltok::kw_nonlazybind:
1566 case lltok::kw_noredzone:
1567 case lltok::kw_noreturn:
1568 case lltok::kw_nounwind:
Andrea Di Biagio377496b2013-08-23 11:53:55 +00001569 case lltok::kw_optnone:
Chandler Carruth9f6b59a2013-04-09 19:46:46 +00001570 case lltok::kw_optsize:
Chandler Carruth9f6b59a2013-04-09 19:46:46 +00001571 case lltok::kw_returns_twice:
1572 case lltok::kw_sanitize_address:
Evgeniy Stepanovc667c1f2017-12-09 00:21:41 +00001573 case lltok::kw_sanitize_hwaddress:
Chandler Carruth9f6b59a2013-04-09 19:46:46 +00001574 case lltok::kw_sanitize_memory:
1575 case lltok::kw_sanitize_thread:
1576 case lltok::kw_ssp:
1577 case lltok::kw_sspreq:
1578 case lltok::kw_sspstrong:
Peter Collingbourne82437bf2015-06-15 21:07:11 +00001579 case lltok::kw_safestack:
Andrew Kaylor53a5fbb2017-08-14 21:15:13 +00001580 case lltok::kw_strictfp:
Chandler Carruth9f6b59a2013-04-09 19:46:46 +00001581 case lltok::kw_uwtable:
Bill Wendling34c2eb22012-12-04 23:40:58 +00001582 HaveError |= Error(Lex.getLoc(), "invalid use of function-only attribute");
Bill Wendling0be9c402012-09-28 22:30:18 +00001583 break;
Nick Lewyckyc2ec0722013-07-06 00:29:58 +00001584
1585 case lltok::kw_readnone:
1586 case lltok::kw_readonly:
1587 HaveError |= Error(Lex.getLoc(), "invalid use of attribute on return type");
Bill Wendling0be9c402012-09-28 22:30:18 +00001588 }
1589
Chris Lattnerac161bf2009-01-02 07:01:27 +00001590 Lex.Lex();
1591 }
1592}
1593
Rafael Espindolac6269912016-05-10 17:16:45 +00001594static unsigned parseOptionalLinkageAux(lltok::Kind Kind, bool &HasLinkage) {
1595 HasLinkage = true;
1596 switch (Kind) {
1597 default:
1598 HasLinkage = false;
1599 return GlobalValue::ExternalLinkage;
1600 case lltok::kw_private:
1601 return GlobalValue::PrivateLinkage;
1602 case lltok::kw_internal:
1603 return GlobalValue::InternalLinkage;
1604 case lltok::kw_weak:
1605 return GlobalValue::WeakAnyLinkage;
1606 case lltok::kw_weak_odr:
1607 return GlobalValue::WeakODRLinkage;
1608 case lltok::kw_linkonce:
1609 return GlobalValue::LinkOnceAnyLinkage;
1610 case lltok::kw_linkonce_odr:
1611 return GlobalValue::LinkOnceODRLinkage;
1612 case lltok::kw_available_externally:
1613 return GlobalValue::AvailableExternallyLinkage;
1614 case lltok::kw_appending:
1615 return GlobalValue::AppendingLinkage;
1616 case lltok::kw_common:
1617 return GlobalValue::CommonLinkage;
1618 case lltok::kw_extern_weak:
1619 return GlobalValue::ExternalWeakLinkage;
1620 case lltok::kw_external:
1621 return GlobalValue::ExternalLinkage;
1622 }
1623}
1624
Chris Lattnerac161bf2009-01-02 07:01:27 +00001625/// ParseOptionalLinkage
1626/// ::= /*empty*/
Rafael Espindola6de96a12009-01-15 20:18:42 +00001627/// ::= 'private'
Chris Lattnerac161bf2009-01-02 07:01:27 +00001628/// ::= 'internal'
1629/// ::= 'weak'
Duncan Sands12da8ce2009-03-07 15:45:40 +00001630/// ::= 'weak_odr'
Chris Lattnerac161bf2009-01-02 07:01:27 +00001631/// ::= 'linkonce'
Duncan Sands12da8ce2009-03-07 15:45:40 +00001632/// ::= 'linkonce_odr'
Bill Wendling03bcd6e2010-07-01 21:55:59 +00001633/// ::= 'available_externally'
Chris Lattnerac161bf2009-01-02 07:01:27 +00001634/// ::= 'appending'
Chris Lattnerac161bf2009-01-02 07:01:27 +00001635/// ::= 'common'
Chris Lattnerac161bf2009-01-02 07:01:27 +00001636/// ::= 'extern_weak'
1637/// ::= 'external'
Rafael Espindola2615c9e2016-05-12 12:37:52 +00001638bool LLParser::ParseOptionalLinkage(unsigned &Res, bool &HasLinkage,
1639 unsigned &Visibility,
Sean Fertilec70d28b2017-10-26 15:00:26 +00001640 unsigned &DLLStorageClass,
1641 bool &DSOLocal) {
Rafael Espindolac6269912016-05-10 17:16:45 +00001642 Res = parseOptionalLinkageAux(Lex.getKind(), HasLinkage);
1643 if (HasLinkage)
1644 Lex.Lex();
Sean Fertilec70d28b2017-10-26 15:00:26 +00001645 ParseOptionalDSOLocal(DSOLocal);
Rafael Espindola2615c9e2016-05-12 12:37:52 +00001646 ParseOptionalVisibility(Visibility);
1647 ParseOptionalDLLStorageClass(DLLStorageClass);
Sean Fertilec70d28b2017-10-26 15:00:26 +00001648
1649 if (DSOLocal && DLLStorageClass == GlobalValue::DLLImportStorageClass) {
1650 return Error(Lex.getLoc(), "dso_location and DLL-StorageClass mismatch");
1651 }
1652
Chris Lattnerac161bf2009-01-02 07:01:27 +00001653 return false;
1654}
1655
Sean Fertilec70d28b2017-10-26 15:00:26 +00001656void LLParser::ParseOptionalDSOLocal(bool &DSOLocal) {
1657 switch (Lex.getKind()) {
1658 default:
1659 DSOLocal = false;
1660 break;
1661 case lltok::kw_dso_local:
1662 DSOLocal = true;
1663 Lex.Lex();
1664 break;
1665 case lltok::kw_dso_preemptable:
1666 DSOLocal = false;
1667 Lex.Lex();
1668 break;
1669 }
1670}
1671
Chris Lattnerac161bf2009-01-02 07:01:27 +00001672/// ParseOptionalVisibility
1673/// ::= /*empty*/
1674/// ::= 'default'
1675/// ::= 'hidden'
1676/// ::= 'protected'
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001677///
Rafael Espindola2615c9e2016-05-12 12:37:52 +00001678void LLParser::ParseOptionalVisibility(unsigned &Res) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00001679 switch (Lex.getKind()) {
Rafael Espindola2615c9e2016-05-12 12:37:52 +00001680 default:
1681 Res = GlobalValue::DefaultVisibility;
1682 return;
1683 case lltok::kw_default:
1684 Res = GlobalValue::DefaultVisibility;
1685 break;
1686 case lltok::kw_hidden:
1687 Res = GlobalValue::HiddenVisibility;
1688 break;
1689 case lltok::kw_protected:
1690 Res = GlobalValue::ProtectedVisibility;
1691 break;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001692 }
1693 Lex.Lex();
Chris Lattnerac161bf2009-01-02 07:01:27 +00001694}
1695
Nico Rieck7157bb72014-01-14 15:22:47 +00001696/// ParseOptionalDLLStorageClass
1697/// ::= /*empty*/
1698/// ::= 'dllimport'
1699/// ::= 'dllexport'
1700///
Rafael Espindola2615c9e2016-05-12 12:37:52 +00001701void LLParser::ParseOptionalDLLStorageClass(unsigned &Res) {
Nico Rieck7157bb72014-01-14 15:22:47 +00001702 switch (Lex.getKind()) {
Rafael Espindola2615c9e2016-05-12 12:37:52 +00001703 default:
1704 Res = GlobalValue::DefaultStorageClass;
1705 return;
1706 case lltok::kw_dllimport:
1707 Res = GlobalValue::DLLImportStorageClass;
1708 break;
1709 case lltok::kw_dllexport:
1710 Res = GlobalValue::DLLExportStorageClass;
1711 break;
Nico Rieck7157bb72014-01-14 15:22:47 +00001712 }
1713 Lex.Lex();
Nico Rieck7157bb72014-01-14 15:22:47 +00001714}
1715
Chris Lattnerac161bf2009-01-02 07:01:27 +00001716/// ParseOptionalCallingConv
1717/// ::= /*empty*/
1718/// ::= 'ccc'
1719/// ::= 'fastcc'
Reid Kleckner35fc3632014-12-01 21:04:44 +00001720/// ::= 'intel_ocl_bicc'
Chris Lattnerac161bf2009-01-02 07:01:27 +00001721/// ::= 'coldcc'
1722/// ::= 'x86_stdcallcc'
1723/// ::= 'x86_fastcallcc'
Anton Korobeynikov8f35fab2010-05-16 09:08:45 +00001724/// ::= 'x86_thiscallcc'
Reid Kleckner9ccce992014-10-28 01:29:26 +00001725/// ::= 'x86_vectorcallcc'
Anton Korobeynikova8fd40b2009-06-16 18:50:49 +00001726/// ::= 'arm_apcscc'
1727/// ::= 'arm_aapcscc'
1728/// ::= 'arm_aapcs_vfpcc'
Anton Korobeynikov27a0ecf2009-12-07 02:27:35 +00001729/// ::= 'msp430_intrcc'
Dylan McKay4fd0d4a2016-03-03 10:08:02 +00001730/// ::= 'avr_intrcc'
1731/// ::= 'avr_signalcc'
Che-Liang Chiou29947902010-09-25 07:46:17 +00001732/// ::= 'ptx_kernel'
1733/// ::= 'ptx_device'
Micah Villmow48c8ddc2012-10-01 17:01:31 +00001734/// ::= 'spir_func'
1735/// ::= 'spir_kernel'
Charles Davise8f297c2013-07-12 06:02:35 +00001736/// ::= 'x86_64_sysvcc'
Martin Storsjo2f24e932017-07-17 20:05:19 +00001737/// ::= 'win64cc'
Andrew Tricka3a11de2013-10-31 22:12:01 +00001738/// ::= 'webkit_jscc'
Juergen Ributzka9969d3e2013-11-08 23:28:16 +00001739/// ::= 'anyregcc'
Juergen Ributzkae6250132014-01-17 19:47:03 +00001740/// ::= 'preserve_mostcc'
1741/// ::= 'preserve_allcc'
Reid Kleckner35fc3632014-12-01 21:04:44 +00001742/// ::= 'ghccc'
Manman Renf8bdd882016-04-05 22:41:47 +00001743/// ::= 'swiftcc'
Amjad Aboud60b5e1b2015-12-21 14:07:14 +00001744/// ::= 'x86_intrcc'
Maksim Panchenkocce239c2015-09-29 22:09:16 +00001745/// ::= 'hhvmcc'
1746/// ::= 'hhvm_ccc'
Manman Ren19c7bbe2015-12-04 17:40:13 +00001747/// ::= 'cxx_fast_tlscc'
Nicolai Haehnledf3a20c2016-04-06 19:40:20 +00001748/// ::= 'amdgpu_vs'
Tim Renoufef1ae8f2017-09-29 09:51:22 +00001749/// ::= 'amdgpu_ls'
Marek Olsaka302a7362017-05-02 15:41:10 +00001750/// ::= 'amdgpu_hs'
Tim Renoufef1ae8f2017-09-29 09:51:22 +00001751/// ::= 'amdgpu_es'
Nicolai Haehnledf3a20c2016-04-06 19:40:20 +00001752/// ::= 'amdgpu_gs'
1753/// ::= 'amdgpu_ps'
1754/// ::= 'amdgpu_cs'
Nikolay Haustov1f7732a2016-05-06 09:07:29 +00001755/// ::= 'amdgpu_kernel'
Chris Lattnerac161bf2009-01-02 07:01:27 +00001756/// ::= 'cc' UINT
Anton Korobeynikova8fd40b2009-06-16 18:50:49 +00001757///
Alexey Samsonov17a9cff2014-09-10 18:00:17 +00001758bool LLParser::ParseOptionalCallingConv(unsigned &CC) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00001759 switch (Lex.getKind()) {
1760 default: CC = CallingConv::C; return false;
1761 case lltok::kw_ccc: CC = CallingConv::C; break;
1762 case lltok::kw_fastcc: CC = CallingConv::Fast; break;
1763 case lltok::kw_coldcc: CC = CallingConv::Cold; break;
1764 case lltok::kw_x86_stdcallcc: CC = CallingConv::X86_StdCall; break;
1765 case lltok::kw_x86_fastcallcc: CC = CallingConv::X86_FastCall; break;
Oren Ben Simhon92ccbf22016-10-13 07:53:43 +00001766 case lltok::kw_x86_regcallcc: CC = CallingConv::X86_RegCall; break;
Anton Korobeynikov8f35fab2010-05-16 09:08:45 +00001767 case lltok::kw_x86_thiscallcc: CC = CallingConv::X86_ThisCall; break;
Reid Kleckner9ccce992014-10-28 01:29:26 +00001768 case lltok::kw_x86_vectorcallcc:CC = CallingConv::X86_VectorCall; break;
Anton Korobeynikova8fd40b2009-06-16 18:50:49 +00001769 case lltok::kw_arm_apcscc: CC = CallingConv::ARM_APCS; break;
1770 case lltok::kw_arm_aapcscc: CC = CallingConv::ARM_AAPCS; break;
1771 case lltok::kw_arm_aapcs_vfpcc:CC = CallingConv::ARM_AAPCS_VFP; break;
Anton Korobeynikov27a0ecf2009-12-07 02:27:35 +00001772 case lltok::kw_msp430_intrcc: CC = CallingConv::MSP430_INTR; break;
Dylan McKay4fd0d4a2016-03-03 10:08:02 +00001773 case lltok::kw_avr_intrcc: CC = CallingConv::AVR_INTR; break;
1774 case lltok::kw_avr_signalcc: CC = CallingConv::AVR_SIGNAL; break;
Che-Liang Chiou29947902010-09-25 07:46:17 +00001775 case lltok::kw_ptx_kernel: CC = CallingConv::PTX_Kernel; break;
1776 case lltok::kw_ptx_device: CC = CallingConv::PTX_Device; break;
Micah Villmow48c8ddc2012-10-01 17:01:31 +00001777 case lltok::kw_spir_kernel: CC = CallingConv::SPIR_KERNEL; break;
1778 case lltok::kw_spir_func: CC = CallingConv::SPIR_FUNC; break;
Elena Demikhovskyd6afb032012-10-24 14:46:16 +00001779 case lltok::kw_intel_ocl_bicc: CC = CallingConv::Intel_OCL_BI; break;
Charles Davise8f297c2013-07-12 06:02:35 +00001780 case lltok::kw_x86_64_sysvcc: CC = CallingConv::X86_64_SysV; break;
Martin Storsjo2f24e932017-07-17 20:05:19 +00001781 case lltok::kw_win64cc: CC = CallingConv::Win64; break;
Andrew Tricka3a11de2013-10-31 22:12:01 +00001782 case lltok::kw_webkit_jscc: CC = CallingConv::WebKit_JS; break;
Juergen Ributzka9969d3e2013-11-08 23:28:16 +00001783 case lltok::kw_anyregcc: CC = CallingConv::AnyReg; break;
Juergen Ributzkae6250132014-01-17 19:47:03 +00001784 case lltok::kw_preserve_mostcc:CC = CallingConv::PreserveMost; break;
1785 case lltok::kw_preserve_allcc: CC = CallingConv::PreserveAll; break;
Reid Kleckner35fc3632014-12-01 21:04:44 +00001786 case lltok::kw_ghccc: CC = CallingConv::GHC; break;
Manman Renf8bdd882016-04-05 22:41:47 +00001787 case lltok::kw_swiftcc: CC = CallingConv::Swift; break;
Amjad Aboud60b5e1b2015-12-21 14:07:14 +00001788 case lltok::kw_x86_intrcc: CC = CallingConv::X86_INTR; break;
Maksim Panchenkocce239c2015-09-29 22:09:16 +00001789 case lltok::kw_hhvmcc: CC = CallingConv::HHVM; break;
1790 case lltok::kw_hhvm_ccc: CC = CallingConv::HHVM_C; break;
Manman Ren19c7bbe2015-12-04 17:40:13 +00001791 case lltok::kw_cxx_fast_tlscc: CC = CallingConv::CXX_FAST_TLS; break;
Nicolai Haehnledf3a20c2016-04-06 19:40:20 +00001792 case lltok::kw_amdgpu_vs: CC = CallingConv::AMDGPU_VS; break;
Tim Renoufef1ae8f2017-09-29 09:51:22 +00001793 case lltok::kw_amdgpu_ls: CC = CallingConv::AMDGPU_LS; break;
Marek Olsaka302a7362017-05-02 15:41:10 +00001794 case lltok::kw_amdgpu_hs: CC = CallingConv::AMDGPU_HS; break;
Tim Renoufef1ae8f2017-09-29 09:51:22 +00001795 case lltok::kw_amdgpu_es: CC = CallingConv::AMDGPU_ES; break;
Nicolai Haehnledf3a20c2016-04-06 19:40:20 +00001796 case lltok::kw_amdgpu_gs: CC = CallingConv::AMDGPU_GS; break;
1797 case lltok::kw_amdgpu_ps: CC = CallingConv::AMDGPU_PS; break;
1798 case lltok::kw_amdgpu_cs: CC = CallingConv::AMDGPU_CS; break;
Nikolay Haustov1f7732a2016-05-06 09:07:29 +00001799 case lltok::kw_amdgpu_kernel: CC = CallingConv::AMDGPU_KERNEL; break;
Sandeep Patel68c5f472009-09-02 08:44:58 +00001800 case lltok::kw_cc: {
Sandeep Patel68c5f472009-09-02 08:44:58 +00001801 Lex.Lex();
Alexey Samsonov17a9cff2014-09-10 18:00:17 +00001802 return ParseUInt32(CC);
Sandeep Patel68c5f472009-09-02 08:44:58 +00001803 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00001804 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001805
Chris Lattnerac161bf2009-01-02 07:01:27 +00001806 Lex.Lex();
1807 return false;
1808}
1809
Duncan P. N. Exon Smith19717ea2015-04-24 21:21:57 +00001810/// ParseMetadataAttachment
1811/// ::= !dbg !42
1812bool LLParser::ParseMetadataAttachment(unsigned &Kind, MDNode *&MD) {
1813 assert(Lex.getKind() == lltok::MetadataVar && "Expected metadata attachment");
1814
1815 std::string Name = Lex.getStrVal();
1816 Kind = M->getMDKindID(Name);
1817 Lex.Lex();
1818
1819 return ParseMDNode(MD);
1820}
1821
Chris Lattner5c427632009-12-30 05:31:19 +00001822/// ParseInstructionMetadata
Chris Lattner596760d2009-12-29 21:25:40 +00001823/// ::= !dbg !42 (',' !dbg !57)*
Duncan P. N. Exon Smith27d702c2015-04-24 21:29:36 +00001824bool LLParser::ParseInstructionMetadata(Instruction &Inst) {
Chris Lattner5c427632009-12-30 05:31:19 +00001825 do {
1826 if (Lex.getKind() != lltok::MetadataVar)
1827 return TokError("expected metadata after comma");
Devang Patelba4a6fd2009-09-29 00:01:14 +00001828
Duncan P. N. Exon Smith19717ea2015-04-24 21:21:57 +00001829 unsigned MDK;
Duncan P. N. Exon Smithf825dae2015-01-12 22:26:48 +00001830 MDNode *N;
Duncan P. N. Exon Smith19717ea2015-04-24 21:21:57 +00001831 if (ParseMetadataAttachment(MDK, N))
Chris Lattner1eed2d62009-12-30 04:56:59 +00001832 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001833
Duncan P. N. Exon Smith27d702c2015-04-24 21:29:36 +00001834 Inst.setMetadata(MDK, N);
Manman Ren209b17c2013-09-28 00:22:27 +00001835 if (MDK == LLVMContext::MD_tbaa)
Duncan P. N. Exon Smith27d702c2015-04-24 21:29:36 +00001836 InstsWithTBAATag.push_back(&Inst);
Manman Ren209b17c2013-09-28 00:22:27 +00001837
Chris Lattner596760d2009-12-29 21:25:40 +00001838 // If this is the end of the list, we're done.
Chris Lattner5c427632009-12-30 05:31:19 +00001839 } while (EatIfPresent(lltok::comma));
1840 return false;
Devang Patelea8a4b92009-09-17 23:04:48 +00001841}
1842
Peter Collingbournecceae7f2016-05-31 23:01:54 +00001843/// ParseGlobalObjectMetadataAttachment
1844/// ::= !dbg !57
1845bool LLParser::ParseGlobalObjectMetadataAttachment(GlobalObject &GO) {
1846 unsigned MDK;
1847 MDNode *N;
1848 if (ParseMetadataAttachment(MDK, N))
1849 return true;
1850
Peter Collingbourne382d81c2016-06-01 01:17:57 +00001851 GO.addMetadata(MDK, *N);
Peter Collingbournecceae7f2016-05-31 23:01:54 +00001852 return false;
1853}
1854
Duncan P. N. Exon Smith3d4cd752015-04-24 22:04:41 +00001855/// ParseOptionalFunctionMetadata
1856/// ::= (!dbg !57)*
1857bool LLParser::ParseOptionalFunctionMetadata(Function &F) {
Peter Collingbournecceae7f2016-05-31 23:01:54 +00001858 while (Lex.getKind() == lltok::MetadataVar)
1859 if (ParseGlobalObjectMetadataAttachment(F))
Duncan P. N. Exon Smith3d4cd752015-04-24 22:04:41 +00001860 return true;
Duncan P. N. Exon Smith3d4cd752015-04-24 22:04:41 +00001861 return false;
1862}
1863
Chris Lattnerac161bf2009-01-02 07:01:27 +00001864/// ParseOptionalAlignment
1865/// ::= /* empty */
1866/// ::= 'align' 4
1867bool LLParser::ParseOptionalAlignment(unsigned &Alignment) {
1868 Alignment = 0;
Chris Lattner3822f632009-01-02 08:05:26 +00001869 if (!EatIfPresent(lltok::kw_align))
1870 return false;
Chris Lattnerd11f5142009-01-05 07:46:05 +00001871 LocTy AlignLoc = Lex.getLoc();
1872 if (ParseUInt32(Alignment)) return true;
1873 if (!isPowerOf2_32(Alignment))
1874 return Error(AlignLoc, "alignment is not a power of two");
Dan Gohmand566d2c2010-07-30 21:07:05 +00001875 if (Alignment > Value::MaximumAlignment)
Dan Gohmana7e5a242010-07-28 20:12:04 +00001876 return Error(AlignLoc, "huge alignments are not supported yet");
Chris Lattnerd11f5142009-01-05 07:46:05 +00001877 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001878}
1879
Sanjoy Das31ea6d12015-04-16 20:29:50 +00001880/// ParseOptionalDerefAttrBytes
Hal Finkelb0407ba2014-07-18 15:51:28 +00001881/// ::= /* empty */
Sanjoy Das31ea6d12015-04-16 20:29:50 +00001882/// ::= AttrKind '(' 4 ')'
1883///
1884/// where AttrKind is either 'dereferenceable' or 'dereferenceable_or_null'.
1885bool LLParser::ParseOptionalDerefAttrBytes(lltok::Kind AttrKind,
1886 uint64_t &Bytes) {
1887 assert((AttrKind == lltok::kw_dereferenceable ||
1888 AttrKind == lltok::kw_dereferenceable_or_null) &&
1889 "contract!");
1890
Hal Finkelb0407ba2014-07-18 15:51:28 +00001891 Bytes = 0;
Sanjoy Das31ea6d12015-04-16 20:29:50 +00001892 if (!EatIfPresent(AttrKind))
Hal Finkelb0407ba2014-07-18 15:51:28 +00001893 return false;
1894 LocTy ParenLoc = Lex.getLoc();
1895 if (!EatIfPresent(lltok::lparen))
1896 return Error(ParenLoc, "expected '('");
1897 LocTy DerefLoc = Lex.getLoc();
1898 if (ParseUInt64(Bytes)) return true;
1899 ParenLoc = Lex.getLoc();
1900 if (!EatIfPresent(lltok::rparen))
1901 return Error(ParenLoc, "expected ')'");
1902 if (!Bytes)
1903 return Error(DerefLoc, "dereferenceable bytes must be non-zero");
1904 return false;
1905}
1906
Chris Lattnerb2f39502009-12-30 05:44:30 +00001907/// ParseOptionalCommaAlign
Michael Ilseman26ee2b82012-11-15 22:34:00 +00001908/// ::=
Chris Lattnerb2f39502009-12-30 05:44:30 +00001909/// ::= ',' align 4
1910///
1911/// This returns with AteExtraComma set to true if it ate an excess comma at the
1912/// end.
1913bool LLParser::ParseOptionalCommaAlign(unsigned &Alignment,
1914 bool &AteExtraComma) {
1915 AteExtraComma = false;
1916 while (EatIfPresent(lltok::comma)) {
1917 // Metadata at the end is an early exit.
Chris Lattnereafe4de2009-12-30 05:02:06 +00001918 if (Lex.getKind() == lltok::MetadataVar) {
Chris Lattnerb2f39502009-12-30 05:44:30 +00001919 AteExtraComma = true;
1920 return false;
1921 }
Michael Ilseman26ee2b82012-11-15 22:34:00 +00001922
Chris Lattner95b0ff42010-04-23 00:50:50 +00001923 if (Lex.getKind() != lltok::kw_align)
1924 return Error(Lex.getLoc(), "expected metadata or 'align'");
Duncan Sands4c5c8582010-10-21 16:07:10 +00001925
Chris Lattner95b0ff42010-04-23 00:50:50 +00001926 if (ParseOptionalAlignment(Alignment)) return true;
Chris Lattnerb2f39502009-12-30 05:44:30 +00001927 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001928
Devang Patelea8a4b92009-09-17 23:04:48 +00001929 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001930}
1931
Matt Arsenault3c1fc762017-04-10 22:27:50 +00001932/// ParseOptionalCommaAddrSpace
1933/// ::=
1934/// ::= ',' addrspace(1)
1935///
1936/// This returns with AteExtraComma set to true if it ate an excess comma at the
1937/// end.
1938bool LLParser::ParseOptionalCommaAddrSpace(unsigned &AddrSpace,
1939 LocTy &Loc,
1940 bool &AteExtraComma) {
1941 AteExtraComma = false;
1942 while (EatIfPresent(lltok::comma)) {
1943 // Metadata at the end is an early exit.
1944 if (Lex.getKind() == lltok::MetadataVar) {
1945 AteExtraComma = true;
1946 return false;
1947 }
1948
1949 Loc = Lex.getLoc();
1950 if (Lex.getKind() != lltok::kw_addrspace)
1951 return Error(Lex.getLoc(), "expected metadata or 'addrspace'");
1952
1953 if (ParseOptionalAddrSpace(AddrSpace))
1954 return true;
1955 }
1956
1957 return false;
1958}
1959
George Burgess IV278199f2016-04-12 01:05:35 +00001960bool LLParser::parseAllocSizeArguments(unsigned &BaseSizeArg,
1961 Optional<unsigned> &HowManyArg) {
1962 Lex.Lex();
1963
1964 auto StartParen = Lex.getLoc();
1965 if (!EatIfPresent(lltok::lparen))
1966 return Error(StartParen, "expected '('");
1967
1968 if (ParseUInt32(BaseSizeArg))
1969 return true;
1970
1971 if (EatIfPresent(lltok::comma)) {
1972 auto HowManyAt = Lex.getLoc();
1973 unsigned HowMany;
1974 if (ParseUInt32(HowMany))
1975 return true;
1976 if (HowMany == BaseSizeArg)
1977 return Error(HowManyAt,
1978 "'allocsize' indices can't refer to the same parameter");
1979 HowManyArg = HowMany;
1980 } else
1981 HowManyArg = None;
1982
1983 auto EndParen = Lex.getLoc();
1984 if (!EatIfPresent(lltok::rparen))
1985 return Error(EndParen, "expected ')'");
1986 return false;
1987}
1988
Eli Friedmanfee02c62011-07-25 23:16:38 +00001989/// ParseScopeAndOrdering
Konstantin Zhuravlyovbb80d3e2017-07-11 22:23:00 +00001990/// if isAtomic: ::= SyncScope? AtomicOrdering
Eli Friedmanfee02c62011-07-25 23:16:38 +00001991/// else: ::=
1992///
1993/// This sets Scope and Ordering to the parsed values.
Konstantin Zhuravlyovbb80d3e2017-07-11 22:23:00 +00001994bool LLParser::ParseScopeAndOrdering(bool isAtomic, SyncScope::ID &SSID,
Eli Friedmanfee02c62011-07-25 23:16:38 +00001995 AtomicOrdering &Ordering) {
1996 if (!isAtomic)
1997 return false;
1998
Konstantin Zhuravlyovbb80d3e2017-07-11 22:23:00 +00001999 return ParseScope(SSID) || ParseOrdering(Ordering);
2000}
Tim Northovere94a5182014-03-11 10:48:52 +00002001
Konstantin Zhuravlyovbb80d3e2017-07-11 22:23:00 +00002002/// ParseScope
2003/// ::= syncscope("singlethread" | "<target scope>")?
2004///
2005/// This sets synchronization scope ID to the ID of the parsed value.
2006bool LLParser::ParseScope(SyncScope::ID &SSID) {
2007 SSID = SyncScope::System;
2008 if (EatIfPresent(lltok::kw_syncscope)) {
2009 auto StartParenAt = Lex.getLoc();
2010 if (!EatIfPresent(lltok::lparen))
2011 return Error(StartParenAt, "Expected '(' in syncscope");
2012
2013 std::string SSN;
2014 auto SSNAt = Lex.getLoc();
2015 if (ParseStringConstant(SSN))
2016 return Error(SSNAt, "Expected synchronization scope name");
2017
2018 auto EndParenAt = Lex.getLoc();
2019 if (!EatIfPresent(lltok::rparen))
2020 return Error(EndParenAt, "Expected ')' in syncscope");
2021
2022 SSID = Context.getOrInsertSyncScopeID(SSN);
2023 }
2024
2025 return false;
Tim Northovere94a5182014-03-11 10:48:52 +00002026}
2027
2028/// ParseOrdering
2029/// ::= AtomicOrdering
2030///
2031/// This sets Ordering to the parsed value.
2032bool LLParser::ParseOrdering(AtomicOrdering &Ordering) {
Eli Friedmanfee02c62011-07-25 23:16:38 +00002033 switch (Lex.getKind()) {
2034 default: return TokError("Expected ordering on atomic instruction");
JF Bastien800f87a2016-04-06 21:19:33 +00002035 case lltok::kw_unordered: Ordering = AtomicOrdering::Unordered; break;
2036 case lltok::kw_monotonic: Ordering = AtomicOrdering::Monotonic; break;
2037 // Not specified yet:
2038 // case lltok::kw_consume: Ordering = AtomicOrdering::Consume; break;
2039 case lltok::kw_acquire: Ordering = AtomicOrdering::Acquire; break;
2040 case lltok::kw_release: Ordering = AtomicOrdering::Release; break;
2041 case lltok::kw_acq_rel: Ordering = AtomicOrdering::AcquireRelease; break;
2042 case lltok::kw_seq_cst:
2043 Ordering = AtomicOrdering::SequentiallyConsistent;
2044 break;
Eli Friedmanfee02c62011-07-25 23:16:38 +00002045 }
2046 Lex.Lex();
2047 return false;
2048}
2049
Charles Davisbe5557e2010-02-12 00:31:15 +00002050/// ParseOptionalStackAlignment
2051/// ::= /* empty */
2052/// ::= 'alignstack' '(' 4 ')'
2053bool LLParser::ParseOptionalStackAlignment(unsigned &Alignment) {
2054 Alignment = 0;
2055 if (!EatIfPresent(lltok::kw_alignstack))
2056 return false;
2057 LocTy ParenLoc = Lex.getLoc();
2058 if (!EatIfPresent(lltok::lparen))
2059 return Error(ParenLoc, "expected '('");
2060 LocTy AlignLoc = Lex.getLoc();
2061 if (ParseUInt32(Alignment)) return true;
2062 ParenLoc = Lex.getLoc();
2063 if (!EatIfPresent(lltok::rparen))
2064 return Error(ParenLoc, "expected ')'");
2065 if (!isPowerOf2_32(Alignment))
2066 return Error(AlignLoc, "stack alignment is not a power of two");
2067 return false;
2068}
Devang Patelea8a4b92009-09-17 23:04:48 +00002069
Chris Lattner28f1eeb2009-12-30 05:14:00 +00002070/// ParseIndexList - This parses the index list for an insert/extractvalue
2071/// instruction. This sets AteExtraComma in the case where we eat an extra
2072/// comma at the end of the line and find that it is followed by metadata.
2073/// Clients that don't allow metadata can call the version of this function that
2074/// only takes one argument.
2075///
Chris Lattnerac161bf2009-01-02 07:01:27 +00002076/// ParseIndexList
2077/// ::= (',' uint32)+
Chris Lattner28f1eeb2009-12-30 05:14:00 +00002078///
2079bool LLParser::ParseIndexList(SmallVectorImpl<unsigned> &Indices,
2080 bool &AteExtraComma) {
2081 AteExtraComma = false;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002082
Chris Lattnerac161bf2009-01-02 07:01:27 +00002083 if (Lex.getKind() != lltok::comma)
2084 return TokError("expected ',' as start of index list");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002085
Chris Lattner3822f632009-01-02 08:05:26 +00002086 while (EatIfPresent(lltok::comma)) {
Chris Lattner28f1eeb2009-12-30 05:14:00 +00002087 if (Lex.getKind() == lltok::MetadataVar) {
David Majnemer7ccc34d2015-02-16 09:18:13 +00002088 if (Indices.empty()) return TokError("expected index");
Chris Lattner28f1eeb2009-12-30 05:14:00 +00002089 AteExtraComma = true;
2090 return false;
2091 }
Nick Lewycky83e47112010-09-29 23:32:20 +00002092 unsigned Idx = 0;
Chris Lattner3822f632009-01-02 08:05:26 +00002093 if (ParseUInt32(Idx)) return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002094 Indices.push_back(Idx);
2095 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002096
Chris Lattnerac161bf2009-01-02 07:01:27 +00002097 return false;
2098}
2099
2100//===----------------------------------------------------------------------===//
2101// Type Parsing.
2102//===----------------------------------------------------------------------===//
2103
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002104/// ParseType - Parse a type.
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00002105bool LLParser::ParseType(Type *&Result, const Twine &Msg, bool AllowVoid) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002106 SMLoc TypeLoc = Lex.getLoc();
Chris Lattnerac161bf2009-01-02 07:01:27 +00002107 switch (Lex.getKind()) {
2108 default:
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00002109 return TokError(Msg);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002110 case lltok::Type:
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002111 // Type ::= 'float' | 'void' (etc)
Chris Lattnerac161bf2009-01-02 07:01:27 +00002112 Result = Lex.getTyVal();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002113 Lex.Lex();
Chris Lattnerac161bf2009-01-02 07:01:27 +00002114 break;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002115 case lltok::lbrace:
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002116 // Type ::= StructType
2117 if (ParseAnonStructType(Result, false))
Chris Lattnerac161bf2009-01-02 07:01:27 +00002118 return true;
2119 break;
2120 case lltok::lsquare:
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002121 // Type ::= '[' ... ']'
Chris Lattnerac161bf2009-01-02 07:01:27 +00002122 Lex.Lex(); // eat the lsquare.
2123 if (ParseArrayVectorType(Result, false))
2124 return true;
2125 break;
2126 case lltok::less: // Either vector or packed struct.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002127 // Type ::= '<' ... '>'
Chris Lattner3822f632009-01-02 08:05:26 +00002128 Lex.Lex();
2129 if (Lex.getKind() == lltok::lbrace) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002130 if (ParseAnonStructType(Result, true) ||
Chris Lattner3822f632009-01-02 08:05:26 +00002131 ParseToken(lltok::greater, "expected '>' at end of packed struct"))
Chris Lattnerac161bf2009-01-02 07:01:27 +00002132 return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002133 } else if (ParseArrayVectorType(Result, true))
2134 return true;
2135 break;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002136 case lltok::LocalVar: {
2137 // Type ::= %foo
2138 std::pair<Type*, LocTy> &Entry = NamedTypes[Lex.getStrVal()];
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002139
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002140 // If the type hasn't been defined yet, create a forward definition and
2141 // remember where that forward def'n was seen (in case it never is defined).
Craig Topper2617dcc2014-04-15 06:32:26 +00002142 if (!Entry.first) {
Chris Lattner335d3992011-08-12 18:06:37 +00002143 Entry.first = StructType::create(Context, Lex.getStrVal());
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002144 Entry.second = Lex.getLoc();
Chris Lattnerac161bf2009-01-02 07:01:27 +00002145 }
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002146 Result = Entry.first;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002147 Lex.Lex();
2148 break;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002149 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002150
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002151 case lltok::LocalVarID: {
2152 // Type ::= %4
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002153 std::pair<Type*, LocTy> &Entry = NumberedTypes[Lex.getUIntVal()];
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002154
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002155 // If the type hasn't been defined yet, create a forward definition and
2156 // remember where that forward def'n was seen (in case it never is defined).
Craig Topper2617dcc2014-04-15 06:32:26 +00002157 if (!Entry.first) {
Chris Lattner335d3992011-08-12 18:06:37 +00002158 Entry.first = StructType::create(Context);
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002159 Entry.second = Lex.getLoc();
Chris Lattnerac161bf2009-01-02 07:01:27 +00002160 }
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002161 Result = Entry.first;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002162 Lex.Lex();
2163 break;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002164 }
2165 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002166
2167 // Parse the type suffixes.
Eugene Zelenko1804a772016-08-25 00:45:04 +00002168 while (true) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002169 switch (Lex.getKind()) {
2170 // End of type.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002171 default:
2172 if (!AllowVoid && Result->isVoidTy())
2173 return Error(TypeLoc, "void type only allowed for function results");
2174 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002175
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002176 // Type ::= Type '*'
Chris Lattnerac161bf2009-01-02 07:01:27 +00002177 case lltok::star:
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002178 if (Result->isLabelTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00002179 return TokError("basic block pointers are invalid");
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002180 if (Result->isVoidTy())
2181 return TokError("pointers to void are invalid - use i8* instead");
2182 if (!PointerType::isValidElementType(Result))
Nick Lewycky0aa6a742009-06-07 07:26:46 +00002183 return TokError("pointer to this type is invalid");
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002184 Result = PointerType::getUnqual(Result);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002185 Lex.Lex();
2186 break;
2187
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002188 // Type ::= Type 'addrspace' '(' uint32 ')' '*'
Chris Lattnerac161bf2009-01-02 07:01:27 +00002189 case lltok::kw_addrspace: {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002190 if (Result->isLabelTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00002191 return TokError("basic block pointers are invalid");
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002192 if (Result->isVoidTy())
Dan Gohman9280a682009-02-09 17:41:21 +00002193 return TokError("pointers to void are invalid; use i8* instead");
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002194 if (!PointerType::isValidElementType(Result))
Nick Lewycky0aa6a742009-06-07 07:26:46 +00002195 return TokError("pointer to this type is invalid");
Chris Lattnerac161bf2009-01-02 07:01:27 +00002196 unsigned AddrSpace;
2197 if (ParseOptionalAddrSpace(AddrSpace) ||
2198 ParseToken(lltok::star, "expected '*' in address space"))
2199 return true;
2200
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002201 Result = PointerType::get(Result, AddrSpace);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002202 break;
2203 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002204
Chris Lattnerac161bf2009-01-02 07:01:27 +00002205 /// Types '(' ArgTypeListI ')' OptFuncAttrs
2206 case lltok::lparen:
2207 if (ParseFunctionType(Result))
2208 return true;
2209 break;
2210 }
2211 }
2212}
2213
2214/// ParseParameterList
2215/// ::= '(' ')'
2216/// ::= '(' Arg (',' Arg)* ')'
2217/// Arg
2218/// ::= Type OptionalAttributes Value OptionalAttributes
2219bool LLParser::ParseParameterList(SmallVectorImpl<ParamInfo> &ArgList,
Reid Kleckner83498642014-08-26 00:33:28 +00002220 PerFunctionState &PFS, bool IsMustTailCall,
2221 bool InVarArgsFunc) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002222 if (ParseToken(lltok::lparen, "expected '(' in call"))
2223 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002224
Chris Lattnerac161bf2009-01-02 07:01:27 +00002225 while (Lex.getKind() != lltok::rparen) {
2226 // If this isn't the first argument, we need a comma.
2227 if (!ArgList.empty() &&
2228 ParseToken(lltok::comma, "expected ',' in argument list"))
2229 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002230
Reid Kleckner83498642014-08-26 00:33:28 +00002231 // Parse an ellipsis if this is a musttail call in a variadic function.
2232 if (Lex.getKind() == lltok::dotdotdot) {
2233 const char *Msg = "unexpected ellipsis in argument list for ";
2234 if (!IsMustTailCall)
2235 return TokError(Twine(Msg) + "non-musttail call");
2236 if (!InVarArgsFunc)
2237 return TokError(Twine(Msg) + "musttail call in non-varargs function");
2238 Lex.Lex(); // Lex the '...', it is purely for readability.
2239 return ParseToken(lltok::rparen, "expected ')' at end of argument list");
2240 }
2241
Chris Lattnerac161bf2009-01-02 07:01:27 +00002242 // Parse the argument.
2243 LocTy ArgLoc;
Craig Topper2617dcc2014-04-15 06:32:26 +00002244 Type *ArgTy = nullptr;
Bill Wendling50d27842012-10-15 20:35:56 +00002245 AttrBuilder ArgAttrs;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002246 Value *V;
Victor Hernandezfa232232009-12-03 23:40:58 +00002247 if (ParseType(ArgTy, ArgLoc))
Chris Lattnerac161bf2009-01-02 07:01:27 +00002248 return true;
Victor Hernandezfa232232009-12-03 23:40:58 +00002249
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00002250 if (ArgTy->isMetadataTy()) {
2251 if (ParseMetadataAsValue(V, PFS))
2252 return true;
2253 } else {
2254 // Otherwise, handle normal operands.
2255 if (ParseOptionalParamAttrs(ArgAttrs) || ParseValue(ArgTy, V, PFS))
2256 return true;
2257 }
Reid Klecknerb5180542017-03-21 16:57:19 +00002258 ArgList.push_back(ParamInfo(
Reid Klecknerc2cb5602017-04-12 00:38:00 +00002259 ArgLoc, V, AttributeSet::get(V->getContext(), ArgAttrs)));
Chris Lattnerac161bf2009-01-02 07:01:27 +00002260 }
2261
Reid Kleckner83498642014-08-26 00:33:28 +00002262 if (IsMustTailCall && InVarArgsFunc)
2263 return TokError("expected '...' at end of argument list for musttail call "
2264 "in varargs function");
2265
Chris Lattnerac161bf2009-01-02 07:01:27 +00002266 Lex.Lex(); // Lex the ')'.
2267 return false;
2268}
2269
Sanjoy Dasb513a9f2015-09-24 23:34:52 +00002270/// ParseOptionalOperandBundles
2271/// ::= /*empty*/
2272/// ::= '[' OperandBundle [, OperandBundle ]* ']'
2273///
2274/// OperandBundle
2275/// ::= bundle-tag '(' ')'
2276/// ::= bundle-tag '(' Type Value [, Type Value ]* ')'
2277///
2278/// bundle-tag ::= String Constant
2279bool LLParser::ParseOptionalOperandBundles(
2280 SmallVectorImpl<OperandBundleDef> &BundleList, PerFunctionState &PFS) {
2281 LocTy BeginLoc = Lex.getLoc();
2282 if (!EatIfPresent(lltok::lsquare))
2283 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002284
Sanjoy Dasb513a9f2015-09-24 23:34:52 +00002285 while (Lex.getKind() != lltok::rsquare) {
2286 // If this isn't the first operand bundle, we need a comma.
2287 if (!BundleList.empty() &&
2288 ParseToken(lltok::comma, "expected ',' in input list"))
2289 return true;
2290
2291 std::string Tag;
2292 if (ParseStringConstant(Tag))
2293 return true;
2294
Sanjoy Dasb513a9f2015-09-24 23:34:52 +00002295 if (ParseToken(lltok::lparen, "expected '(' in operand bundle"))
2296 return true;
2297
Sanjoy Dasf79d3442015-11-18 08:30:07 +00002298 std::vector<Value *> Inputs;
Sanjoy Dasb513a9f2015-09-24 23:34:52 +00002299 while (Lex.getKind() != lltok::rparen) {
2300 // If this isn't the first input, we need a comma.
Sanjoy Dasf79d3442015-11-18 08:30:07 +00002301 if (!Inputs.empty() &&
Sanjoy Dasb513a9f2015-09-24 23:34:52 +00002302 ParseToken(lltok::comma, "expected ',' in input list"))
2303 return true;
2304
2305 Type *Ty = nullptr;
2306 Value *Input = nullptr;
2307 if (ParseType(Ty) || ParseValue(Ty, Input, PFS))
2308 return true;
Sanjoy Dasf79d3442015-11-18 08:30:07 +00002309 Inputs.push_back(Input);
Sanjoy Dasb513a9f2015-09-24 23:34:52 +00002310 }
2311
Sanjoy Dasf79d3442015-11-18 08:30:07 +00002312 BundleList.emplace_back(std::move(Tag), std::move(Inputs));
2313
Sanjoy Dasb513a9f2015-09-24 23:34:52 +00002314 Lex.Lex(); // Lex the ')'.
2315 }
2316
2317 if (BundleList.empty())
2318 return Error(BeginLoc, "operand bundle set must not be empty");
2319
2320 Lex.Lex(); // Lex the ']'.
2321 return false;
2322}
Chris Lattnerac161bf2009-01-02 07:01:27 +00002323
Chris Lattner2ed06b42009-01-05 18:34:07 +00002324/// ParseArgumentList - Parse the argument list for a function type or function
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002325/// prototype.
Chris Lattnerac161bf2009-01-02 07:01:27 +00002326/// ::= '(' ArgTypeListI ')'
2327/// ArgTypeListI
2328/// ::= /*empty*/
2329/// ::= '...'
2330/// ::= ArgTypeList ',' '...'
2331/// ::= ArgType (',' ArgType)*
Chris Lattner2ed06b42009-01-05 18:34:07 +00002332///
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002333bool LLParser::ParseArgumentList(SmallVectorImpl<ArgInfo> &ArgList,
2334 bool &isVarArg){
Chris Lattnerac161bf2009-01-02 07:01:27 +00002335 isVarArg = false;
2336 assert(Lex.getKind() == lltok::lparen);
2337 Lex.Lex(); // eat the (.
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002338
Chris Lattnerac161bf2009-01-02 07:01:27 +00002339 if (Lex.getKind() == lltok::rparen) {
2340 // empty
2341 } else if (Lex.getKind() == lltok::dotdotdot) {
2342 isVarArg = true;
2343 Lex.Lex();
2344 } else {
2345 LocTy TypeLoc = Lex.getLoc();
Craig Topper2617dcc2014-04-15 06:32:26 +00002346 Type *ArgTy = nullptr;
Bill Wendling50d27842012-10-15 20:35:56 +00002347 AttrBuilder Attrs;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002348 std::string Name;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002349
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002350 if (ParseType(ArgTy) ||
Bill Wendling34c2eb22012-12-04 23:40:58 +00002351 ParseOptionalParamAttrs(Attrs)) return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002352
Chris Lattnerfdd87902009-10-05 05:54:46 +00002353 if (ArgTy->isVoidTy())
Chris Lattnerf880ca22009-03-09 04:49:14 +00002354 return Error(TypeLoc, "argument can not have void type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002355
Chris Lattnerdef19492011-06-17 06:36:20 +00002356 if (Lex.getKind() == lltok::LocalVar) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002357 Name = Lex.getStrVal();
2358 Lex.Lex();
2359 }
Chris Lattner3822f632009-01-02 08:05:26 +00002360
Nick Lewycky0aa6a742009-06-07 07:26:46 +00002361 if (!FunctionType::isValidArgumentType(ArgTy))
Chris Lattner3822f632009-01-02 08:05:26 +00002362 return Error(TypeLoc, "invalid type for function argument");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002363
Reid Klecknereb9dd5b2017-04-10 23:31:05 +00002364 ArgList.emplace_back(TypeLoc, ArgTy,
Reid Klecknerc2cb5602017-04-12 00:38:00 +00002365 AttributeSet::get(ArgTy->getContext(), Attrs),
Benjamin Kramerf5e2fc42015-05-29 19:43:39 +00002366 std::move(Name));
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002367
Chris Lattner3822f632009-01-02 08:05:26 +00002368 while (EatIfPresent(lltok::comma)) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002369 // Handle ... at end of arg list.
Chris Lattner3822f632009-01-02 08:05:26 +00002370 if (EatIfPresent(lltok::dotdotdot)) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002371 isVarArg = true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002372 break;
2373 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002374
Chris Lattnerac161bf2009-01-02 07:01:27 +00002375 // Otherwise must be an argument type.
2376 TypeLoc = Lex.getLoc();
Bill Wendling34c2eb22012-12-04 23:40:58 +00002377 if (ParseType(ArgTy) || ParseOptionalParamAttrs(Attrs)) return true;
Chris Lattner3822f632009-01-02 08:05:26 +00002378
Chris Lattnerfdd87902009-10-05 05:54:46 +00002379 if (ArgTy->isVoidTy())
Chris Lattnerf880ca22009-03-09 04:49:14 +00002380 return Error(TypeLoc, "argument can not have void type");
2381
Chris Lattnerdef19492011-06-17 06:36:20 +00002382 if (Lex.getKind() == lltok::LocalVar) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002383 Name = Lex.getStrVal();
2384 Lex.Lex();
2385 } else {
2386 Name = "";
2387 }
Chris Lattner3822f632009-01-02 08:05:26 +00002388
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002389 if (!ArgTy->isFirstClassType())
Chris Lattner3822f632009-01-02 08:05:26 +00002390 return Error(TypeLoc, "invalid type for function argument");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002391
Reid Klecknereb9dd5b2017-04-10 23:31:05 +00002392 ArgList.emplace_back(TypeLoc, ArgTy,
Reid Klecknerc2cb5602017-04-12 00:38:00 +00002393 AttributeSet::get(ArgTy->getContext(), Attrs),
Reid Klecknereb9dd5b2017-04-10 23:31:05 +00002394 std::move(Name));
Chris Lattnerac161bf2009-01-02 07:01:27 +00002395 }
2396 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002397
Chris Lattner3822f632009-01-02 08:05:26 +00002398 return ParseToken(lltok::rparen, "expected ')' at end of argument list");
Chris Lattnerac161bf2009-01-02 07:01:27 +00002399}
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002400
Chris Lattnerac161bf2009-01-02 07:01:27 +00002401/// ParseFunctionType
2402/// ::= Type ArgumentList OptionalAttrs
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002403bool LLParser::ParseFunctionType(Type *&Result) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002404 assert(Lex.getKind() == lltok::lparen);
2405
Chris Lattnerce473c72009-01-05 08:04:33 +00002406 if (!FunctionType::isValidReturnType(Result))
2407 return TokError("invalid function return type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002408
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002409 SmallVector<ArgInfo, 8> ArgList;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002410 bool isVarArg;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002411 if (ParseArgumentList(ArgList, isVarArg))
Chris Lattnerac161bf2009-01-02 07:01:27 +00002412 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002413
Chris Lattnerac161bf2009-01-02 07:01:27 +00002414 // Reject names on the arguments lists.
2415 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
2416 if (!ArgList[i].Name.empty())
2417 return Error(ArgList[i].Loc, "argument name invalid in function type");
Reid Klecknerc2cb5602017-04-12 00:38:00 +00002418 if (ArgList[i].Attrs.hasAttributes())
Chris Lattner6bc5c892011-06-17 17:37:13 +00002419 return Error(ArgList[i].Loc,
2420 "argument attributes invalid in function type");
Chris Lattnerac161bf2009-01-02 07:01:27 +00002421 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002422
Jay Foadb804a2b2011-07-12 14:06:48 +00002423 SmallVector<Type*, 16> ArgListTy;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002424 for (unsigned i = 0, e = ArgList.size(); i != e; ++i)
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002425 ArgListTy.push_back(ArgList[i].Ty);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002426
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002427 Result = FunctionType::get(Result, ArgListTy, isVarArg);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002428 return false;
2429}
2430
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002431/// ParseAnonStructType - Parse an anonymous struct type, which is inlined into
2432/// other structs.
2433bool LLParser::ParseAnonStructType(Type *&Result, bool Packed) {
2434 SmallVector<Type*, 8> Elts;
2435 if (ParseStructBody(Elts)) return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002436
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002437 Result = StructType::get(Context, Elts, Packed);
2438 return false;
2439}
2440
2441/// ParseStructDefinition - Parse a struct in a 'type' definition.
2442bool LLParser::ParseStructDefinition(SMLoc TypeLoc, StringRef Name,
2443 std::pair<Type*, LocTy> &Entry,
2444 Type *&ResultTy) {
2445 // If the type was already defined, diagnose the redefinition.
2446 if (Entry.first && !Entry.second.isValid())
2447 return Error(TypeLoc, "redefinition of type");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002448
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002449 // If we have opaque, just return without filling in the definition for the
2450 // struct. This counts as a definition as far as the .ll file goes.
2451 if (EatIfPresent(lltok::kw_opaque)) {
2452 // This type is being defined, so clear the location to indicate this.
2453 Entry.second = SMLoc();
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002454
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002455 // If this type number has never been uttered, create it.
Craig Topper2617dcc2014-04-15 06:32:26 +00002456 if (!Entry.first)
Chris Lattner335d3992011-08-12 18:06:37 +00002457 Entry.first = StructType::create(Context, Name);
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002458 ResultTy = Entry.first;
2459 return false;
2460 }
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002461
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002462 // If the type starts with '<', then it is either a packed struct or a vector.
2463 bool isPacked = EatIfPresent(lltok::less);
2464
2465 // If we don't have a struct, then we have a random type alias, which we
2466 // accept for compatibility with old files. These types are not allowed to be
2467 // forward referenced and not allowed to be recursive.
2468 if (Lex.getKind() != lltok::lbrace) {
2469 if (Entry.first)
2470 return Error(TypeLoc, "forward references to non-struct type");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002471
Craig Topper2617dcc2014-04-15 06:32:26 +00002472 ResultTy = nullptr;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002473 if (isPacked)
2474 return ParseArrayVectorType(ResultTy, true);
2475 return ParseType(ResultTy);
2476 }
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002477
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002478 // This type is being defined, so clear the location to indicate this.
2479 Entry.second = SMLoc();
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002480
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002481 // If this type number has never been uttered, create it.
Craig Topper2617dcc2014-04-15 06:32:26 +00002482 if (!Entry.first)
Chris Lattner335d3992011-08-12 18:06:37 +00002483 Entry.first = StructType::create(Context, Name);
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002484
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002485 StructType *STy = cast<StructType>(Entry.first);
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002486
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002487 SmallVector<Type*, 8> Body;
2488 if (ParseStructBody(Body) ||
2489 (isPacked && ParseToken(lltok::greater, "expected '>' in packed struct")))
2490 return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002491
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002492 STy->setBody(Body, isPacked);
2493 ResultTy = STy;
2494 return false;
2495}
2496
Chris Lattnerac161bf2009-01-02 07:01:27 +00002497/// ParseStructType: Handles packed and unpacked types. </> parsed elsewhere.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002498/// StructType
Chris Lattnerac161bf2009-01-02 07:01:27 +00002499/// ::= '{' '}'
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002500/// ::= '{' Type (',' Type)* '}'
Chris Lattnerac161bf2009-01-02 07:01:27 +00002501/// ::= '<' '{' '}' '>'
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002502/// ::= '<' '{' Type (',' Type)* '}' '>'
2503bool LLParser::ParseStructBody(SmallVectorImpl<Type*> &Body) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002504 assert(Lex.getKind() == lltok::lbrace);
2505 Lex.Lex(); // Consume the '{'
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002506
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002507 // Handle the empty struct.
2508 if (EatIfPresent(lltok::rbrace))
Chris Lattnerac161bf2009-01-02 07:01:27 +00002509 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002510
Chris Lattnerf880ca22009-03-09 04:49:14 +00002511 LocTy EltTyLoc = Lex.getLoc();
Craig Topper2617dcc2014-04-15 06:32:26 +00002512 Type *Ty = nullptr;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002513 if (ParseType(Ty)) return true;
2514 Body.push_back(Ty);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002515
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002516 if (!StructType::isValidElementType(Ty))
Nick Lewycky0aa6a742009-06-07 07:26:46 +00002517 return Error(EltTyLoc, "invalid element type for struct");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002518
Chris Lattner3822f632009-01-02 08:05:26 +00002519 while (EatIfPresent(lltok::comma)) {
Chris Lattnerf880ca22009-03-09 04:49:14 +00002520 EltTyLoc = Lex.getLoc();
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002521 if (ParseType(Ty)) return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002522
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002523 if (!StructType::isValidElementType(Ty))
Nick Lewycky0aa6a742009-06-07 07:26:46 +00002524 return Error(EltTyLoc, "invalid element type for struct");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002525
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002526 Body.push_back(Ty);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002527 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002528
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002529 return ParseToken(lltok::rbrace, "expected '}' at end of struct");
Chris Lattnerac161bf2009-01-02 07:01:27 +00002530}
2531
2532/// ParseArrayVectorType - Parse an array or vector type, assuming the first
2533/// token has already been consumed.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002534/// Type
Chris Lattnerac161bf2009-01-02 07:01:27 +00002535/// ::= '[' APSINTVAL 'x' Types ']'
2536/// ::= '<' APSINTVAL 'x' Types '>'
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002537bool LLParser::ParseArrayVectorType(Type *&Result, bool isVector) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002538 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned() ||
2539 Lex.getAPSIntVal().getBitWidth() > 64)
2540 return TokError("expected number in address space");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002541
Chris Lattnerac161bf2009-01-02 07:01:27 +00002542 LocTy SizeLoc = Lex.getLoc();
2543 uint64_t Size = Lex.getAPSIntVal().getZExtValue();
Chris Lattner3822f632009-01-02 08:05:26 +00002544 Lex.Lex();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002545
Chris Lattner3822f632009-01-02 08:05:26 +00002546 if (ParseToken(lltok::kw_x, "expected 'x' after element count"))
2547 return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002548
2549 LocTy TypeLoc = Lex.getLoc();
Craig Topper2617dcc2014-04-15 06:32:26 +00002550 Type *EltTy = nullptr;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002551 if (ParseType(EltTy)) return true;
Chris Lattnerf880ca22009-03-09 04:49:14 +00002552
Chris Lattner3822f632009-01-02 08:05:26 +00002553 if (ParseToken(isVector ? lltok::greater : lltok::rsquare,
2554 "expected end of sequential type"))
2555 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002556
Chris Lattnerac161bf2009-01-02 07:01:27 +00002557 if (isVector) {
Chris Lattnerbb1fe8a2009-02-28 18:12:41 +00002558 if (Size == 0)
2559 return Error(SizeLoc, "zero element vector is illegal");
Chris Lattnerac161bf2009-01-02 07:01:27 +00002560 if ((unsigned)Size != Size)
2561 return Error(SizeLoc, "size too large for vector");
Nick Lewycky0aa6a742009-06-07 07:26:46 +00002562 if (!VectorType::isValidElementType(EltTy))
Duncan Sandse6beec62012-11-13 12:59:33 +00002563 return Error(TypeLoc, "invalid vector element type");
Owen Anderson4056ca92009-07-29 22:17:13 +00002564 Result = VectorType::get(EltTy, unsigned(Size));
Chris Lattnerac161bf2009-01-02 07:01:27 +00002565 } else {
Nick Lewycky0aa6a742009-06-07 07:26:46 +00002566 if (!ArrayType::isValidElementType(EltTy))
Chris Lattnerac161bf2009-01-02 07:01:27 +00002567 return Error(TypeLoc, "invalid array element type");
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002568 Result = ArrayType::get(EltTy, Size);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002569 }
2570 return false;
2571}
2572
2573//===----------------------------------------------------------------------===//
2574// Function Semantic Analysis.
2575//===----------------------------------------------------------------------===//
2576
Chris Lattner3432c622009-10-28 03:39:23 +00002577LLParser::PerFunctionState::PerFunctionState(LLParser &p, Function &f,
2578 int functionNumber)
2579 : P(p), F(f), FunctionNumber(functionNumber) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002580
2581 // Insert unnamed arguments into the NumberedVals list.
Duncan P. N. Exon Smithac331fb2015-10-20 01:12:49 +00002582 for (Argument &A : F.args())
2583 if (!A.hasName())
2584 NumberedVals.push_back(&A);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002585}
2586
2587LLParser::PerFunctionState::~PerFunctionState() {
2588 // If there were any forward referenced non-basicblock values, delete them.
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002589
David Blaikie9ebdc692015-09-21 21:07:50 +00002590 for (const auto &P : ForwardRefVals) {
2591 if (isa<BasicBlock>(P.second.first))
2592 continue;
2593 P.second.first->replaceAllUsesWith(
2594 UndefValue::get(P.second.first->getType()));
Reid Kleckner96ab8722017-05-18 17:24:10 +00002595 P.second.first->deleteValue();
David Blaikie9ebdc692015-09-21 21:07:50 +00002596 }
2597
2598 for (const auto &P : ForwardRefValIDs) {
2599 if (isa<BasicBlock>(P.second.first))
2600 continue;
2601 P.second.first->replaceAllUsesWith(
2602 UndefValue::get(P.second.first->getType()));
Reid Kleckner96ab8722017-05-18 17:24:10 +00002603 P.second.first->deleteValue();
David Blaikie9ebdc692015-09-21 21:07:50 +00002604 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00002605}
2606
Chris Lattner3432c622009-10-28 03:39:23 +00002607bool LLParser::PerFunctionState::FinishFunction() {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002608 if (!ForwardRefVals.empty())
2609 return P.Error(ForwardRefVals.begin()->second.second,
2610 "use of undefined value '%" + ForwardRefVals.begin()->first +
2611 "'");
2612 if (!ForwardRefValIDs.empty())
2613 return P.Error(ForwardRefValIDs.begin()->second.second,
2614 "use of undefined value '%" +
Benjamin Kramerc7583112010-09-27 17:42:11 +00002615 Twine(ForwardRefValIDs.begin()->first) + "'");
Chris Lattnerac161bf2009-01-02 07:01:27 +00002616 return false;
2617}
2618
Chris Lattnerac161bf2009-01-02 07:01:27 +00002619/// GetVal - Get a value with the specified name or ID, creating a
2620/// forward reference record if needed. This can return null if the value
2621/// exists but does not have the right type.
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00002622Value *LLParser::PerFunctionState::GetVal(const std::string &Name, Type *Ty,
David Majnemer8a1c45d2015-12-12 05:38:55 +00002623 LocTy Loc) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002624 // Look this name up in the normal function symbol table.
Mehdi Aminia53d49e2016-09-17 06:00:02 +00002625 Value *Val = F.getValueSymbolTable()->lookup(Name);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002626
Chris Lattnerac161bf2009-01-02 07:01:27 +00002627 // If this is a forward reference for the value, see if we already created a
2628 // forward ref record.
Craig Topper2617dcc2014-04-15 06:32:26 +00002629 if (!Val) {
David Blaikie9ebdc692015-09-21 21:07:50 +00002630 auto I = ForwardRefVals.find(Name);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002631 if (I != ForwardRefVals.end())
2632 Val = I->second.first;
2633 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002634
Chris Lattnerac161bf2009-01-02 07:01:27 +00002635 // If we have the value in the symbol table or fwd-ref table, return it.
2636 if (Val) {
2637 if (Val->getType() == Ty) return Val;
Chris Lattnerfdd87902009-10-05 05:54:46 +00002638 if (Ty->isLabelTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00002639 P.Error(Loc, "'%" + Name + "' is not a basic block");
2640 else
2641 P.Error(Loc, "'%" + Name + "' defined with type '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00002642 getTypeString(Val->getType()) + "'");
Craig Topper2617dcc2014-04-15 06:32:26 +00002643 return nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002644 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002645
Chris Lattnerac161bf2009-01-02 07:01:27 +00002646 // Don't make placeholders with invalid type.
Duncan P. N. Exon Smith6a6e9cb2014-08-05 18:22:58 +00002647 if (!Ty->isFirstClassType()) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002648 P.Error(Loc, "invalid use of a non-first-class type");
Craig Topper2617dcc2014-04-15 06:32:26 +00002649 return nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002650 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002651
Chris Lattnerac161bf2009-01-02 07:01:27 +00002652 // Otherwise, create a new forward reference for this value and remember it.
2653 Value *FwdVal;
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00002654 if (Ty->isLabelTy()) {
Owen Anderson55f1c092009-08-13 21:58:54 +00002655 FwdVal = BasicBlock::Create(F.getContext(), Name, &F);
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00002656 } else {
David Majnemer8a1c45d2015-12-12 05:38:55 +00002657 FwdVal = new Argument(Ty, Name);
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00002658 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002659
Chris Lattnerac161bf2009-01-02 07:01:27 +00002660 ForwardRefVals[Name] = std::make_pair(FwdVal, Loc);
2661 return FwdVal;
2662}
2663
David Majnemer8a1c45d2015-12-12 05:38:55 +00002664Value *LLParser::PerFunctionState::GetVal(unsigned ID, Type *Ty, LocTy Loc) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002665 // Look this name up in the normal function symbol table.
Craig Topper2617dcc2014-04-15 06:32:26 +00002666 Value *Val = ID < NumberedVals.size() ? NumberedVals[ID] : nullptr;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002667
Chris Lattnerac161bf2009-01-02 07:01:27 +00002668 // If this is a forward reference for the value, see if we already created a
2669 // forward ref record.
Craig Topper2617dcc2014-04-15 06:32:26 +00002670 if (!Val) {
David Blaikie9ebdc692015-09-21 21:07:50 +00002671 auto I = ForwardRefValIDs.find(ID);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002672 if (I != ForwardRefValIDs.end())
2673 Val = I->second.first;
2674 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002675
Chris Lattnerac161bf2009-01-02 07:01:27 +00002676 // If we have the value in the symbol table or fwd-ref table, return it.
2677 if (Val) {
2678 if (Val->getType() == Ty) return Val;
Chris Lattnerfdd87902009-10-05 05:54:46 +00002679 if (Ty->isLabelTy())
Benjamin Kramerc7583112010-09-27 17:42:11 +00002680 P.Error(Loc, "'%" + Twine(ID) + "' is not a basic block");
Chris Lattnerac161bf2009-01-02 07:01:27 +00002681 else
Benjamin Kramerc7583112010-09-27 17:42:11 +00002682 P.Error(Loc, "'%" + Twine(ID) + "' defined with type '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00002683 getTypeString(Val->getType()) + "'");
Craig Topper2617dcc2014-04-15 06:32:26 +00002684 return nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002685 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002686
Duncan P. N. Exon Smith6a6e9cb2014-08-05 18:22:58 +00002687 if (!Ty->isFirstClassType()) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002688 P.Error(Loc, "invalid use of a non-first-class type");
Craig Topper2617dcc2014-04-15 06:32:26 +00002689 return nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002690 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002691
Chris Lattnerac161bf2009-01-02 07:01:27 +00002692 // Otherwise, create a new forward reference for this value and remember it.
2693 Value *FwdVal;
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00002694 if (Ty->isLabelTy()) {
Owen Anderson55f1c092009-08-13 21:58:54 +00002695 FwdVal = BasicBlock::Create(F.getContext(), "", &F);
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00002696 } else {
David Majnemer8a1c45d2015-12-12 05:38:55 +00002697 FwdVal = new Argument(Ty);
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00002698 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002699
Chris Lattnerac161bf2009-01-02 07:01:27 +00002700 ForwardRefValIDs[ID] = std::make_pair(FwdVal, Loc);
2701 return FwdVal;
2702}
2703
2704/// SetInstName - After an instruction is parsed and inserted into its
2705/// basic block, this installs its name.
2706bool LLParser::PerFunctionState::SetInstName(int NameID,
2707 const std::string &NameStr,
2708 LocTy NameLoc, Instruction *Inst) {
2709 // If this instruction has void type, it cannot have a name or ID specified.
Chris Lattnerfdd87902009-10-05 05:54:46 +00002710 if (Inst->getType()->isVoidTy()) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002711 if (NameID != -1 || !NameStr.empty())
2712 return P.Error(NameLoc, "instructions returning void cannot have a name");
2713 return false;
2714 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002715
Chris Lattnerac161bf2009-01-02 07:01:27 +00002716 // If this was a numbered instruction, verify that the instruction is the
2717 // expected value and resolve any forward references.
2718 if (NameStr.empty()) {
2719 // If neither a name nor an ID was specified, just use the next ID.
2720 if (NameID == -1)
2721 NameID = NumberedVals.size();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002722
Chris Lattnerac161bf2009-01-02 07:01:27 +00002723 if (unsigned(NameID) != NumberedVals.size())
2724 return P.Error(NameLoc, "instruction expected to be numbered '%" +
Benjamin Kramerc7583112010-09-27 17:42:11 +00002725 Twine(NumberedVals.size()) + "'");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002726
David Blaikie9ebdc692015-09-21 21:07:50 +00002727 auto FI = ForwardRefValIDs.find(NameID);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002728 if (FI != ForwardRefValIDs.end()) {
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00002729 Value *Sentinel = FI->second.first;
2730 if (Sentinel->getType() != Inst->getType())
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002731 return P.Error(NameLoc, "instruction forward referenced with type '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00002732 getTypeString(FI->second.first->getType()) + "'");
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00002733
2734 Sentinel->replaceAllUsesWith(Inst);
Reid Kleckner96ab8722017-05-18 17:24:10 +00002735 Sentinel->deleteValue();
Chris Lattnerac161bf2009-01-02 07:01:27 +00002736 ForwardRefValIDs.erase(FI);
2737 }
2738
2739 NumberedVals.push_back(Inst);
2740 return false;
2741 }
2742
2743 // Otherwise, the instruction had a name. Resolve forward refs and set it.
David Blaikie9ebdc692015-09-21 21:07:50 +00002744 auto FI = ForwardRefVals.find(NameStr);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002745 if (FI != ForwardRefVals.end()) {
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00002746 Value *Sentinel = FI->second.first;
2747 if (Sentinel->getType() != Inst->getType())
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002748 return P.Error(NameLoc, "instruction forward referenced with type '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00002749 getTypeString(FI->second.first->getType()) + "'");
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00002750
2751 Sentinel->replaceAllUsesWith(Inst);
Reid Kleckner96ab8722017-05-18 17:24:10 +00002752 Sentinel->deleteValue();
Chris Lattnerac161bf2009-01-02 07:01:27 +00002753 ForwardRefVals.erase(FI);
2754 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002755
Chris Lattnerac161bf2009-01-02 07:01:27 +00002756 // Set the name on the instruction.
2757 Inst->setName(NameStr);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002758
Benjamin Kramer1dc34b42010-10-16 11:28:23 +00002759 if (Inst->getName() != NameStr)
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002760 return P.Error(NameLoc, "multiple definition of local value named '" +
Chris Lattnerac161bf2009-01-02 07:01:27 +00002761 NameStr + "'");
2762 return false;
2763}
2764
2765/// GetBB - Get a basic block with the specified name or ID, creating a
2766/// forward reference record if needed.
2767BasicBlock *LLParser::PerFunctionState::GetBB(const std::string &Name,
2768 LocTy Loc) {
Owen Anderson576a9a22015-03-02 05:25:09 +00002769 return dyn_cast_or_null<BasicBlock>(GetVal(Name,
2770 Type::getLabelTy(F.getContext()), Loc));
Chris Lattnerac161bf2009-01-02 07:01:27 +00002771}
2772
2773BasicBlock *LLParser::PerFunctionState::GetBB(unsigned ID, LocTy Loc) {
Owen Anderson576a9a22015-03-02 05:25:09 +00002774 return dyn_cast_or_null<BasicBlock>(GetVal(ID,
2775 Type::getLabelTy(F.getContext()), Loc));
Chris Lattnerac161bf2009-01-02 07:01:27 +00002776}
2777
2778/// DefineBB - Define the specified basic block, which is either named or
2779/// unnamed. If there is an error, this returns null otherwise it returns
2780/// the block being defined.
2781BasicBlock *LLParser::PerFunctionState::DefineBB(const std::string &Name,
2782 LocTy Loc) {
2783 BasicBlock *BB;
2784 if (Name.empty())
2785 BB = GetBB(NumberedVals.size(), Loc);
2786 else
2787 BB = GetBB(Name, Loc);
Craig Topper2617dcc2014-04-15 06:32:26 +00002788 if (!BB) return nullptr; // Already diagnosed error.
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002789
Chris Lattnerac161bf2009-01-02 07:01:27 +00002790 // Move the block to the end of the function. Forward ref'd blocks are
2791 // inserted wherever they happen to be referenced.
2792 F.getBasicBlockList().splice(F.end(), F.getBasicBlockList(), BB);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002793
Chris Lattnerac161bf2009-01-02 07:01:27 +00002794 // Remove the block from forward ref sets.
2795 if (Name.empty()) {
2796 ForwardRefValIDs.erase(NumberedVals.size());
2797 NumberedVals.push_back(BB);
2798 } else {
2799 // BB forward references are already in the function symbol table.
2800 ForwardRefVals.erase(Name);
2801 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002802
Chris Lattnerac161bf2009-01-02 07:01:27 +00002803 return BB;
2804}
2805
2806//===----------------------------------------------------------------------===//
2807// Constants.
2808//===----------------------------------------------------------------------===//
2809
2810/// ParseValID - Parse an abstract value that doesn't necessarily have a
2811/// type implied. For example, if we parse "4" we don't know what integer type
2812/// it has. The value will later be combined with its type and checked for
Victor Hernandezb8fd1522010-01-10 07:14:18 +00002813/// sanity. PFS is used to convert function-local operands of metadata (since
2814/// metadata operands are not just parsed here but also converted to values).
2815/// PFS can be null when we are not parsing metadata values inside a function.
Victor Hernandezdc6e65a2010-01-05 22:22:14 +00002816bool LLParser::ParseValID(ValID &ID, PerFunctionState *PFS) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002817 ID.Loc = Lex.getLoc();
2818 switch (Lex.getKind()) {
2819 default: return TokError("expected value token");
2820 case lltok::GlobalID: // @42
2821 ID.UIntVal = Lex.getUIntVal();
2822 ID.Kind = ValID::t_GlobalID;
2823 break;
2824 case lltok::GlobalVar: // @foo
2825 ID.StrVal = Lex.getStrVal();
2826 ID.Kind = ValID::t_GlobalName;
2827 break;
2828 case lltok::LocalVarID: // %42
2829 ID.UIntVal = Lex.getUIntVal();
2830 ID.Kind = ValID::t_LocalID;
2831 break;
2832 case lltok::LocalVar: // %foo
Chris Lattnerac161bf2009-01-02 07:01:27 +00002833 ID.StrVal = Lex.getStrVal();
2834 ID.Kind = ValID::t_LocalName;
2835 break;
2836 case lltok::APSInt:
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002837 ID.APSIntVal = Lex.getAPSIntVal();
Chris Lattnerac161bf2009-01-02 07:01:27 +00002838 ID.Kind = ValID::t_APSInt;
2839 break;
2840 case lltok::APFloat:
2841 ID.APFloatVal = Lex.getAPFloatVal();
2842 ID.Kind = ValID::t_APFloat;
2843 break;
2844 case lltok::kw_true:
Owen Anderson23a204d2009-07-31 17:39:07 +00002845 ID.ConstantVal = ConstantInt::getTrue(Context);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002846 ID.Kind = ValID::t_Constant;
2847 break;
2848 case lltok::kw_false:
Owen Anderson23a204d2009-07-31 17:39:07 +00002849 ID.ConstantVal = ConstantInt::getFalse(Context);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002850 ID.Kind = ValID::t_Constant;
2851 break;
2852 case lltok::kw_null: ID.Kind = ValID::t_Null; break;
2853 case lltok::kw_undef: ID.Kind = ValID::t_Undef; break;
2854 case lltok::kw_zeroinitializer: ID.Kind = ValID::t_Zero; break;
David Majnemerf0f224d2015-11-11 21:57:16 +00002855 case lltok::kw_none: ID.Kind = ValID::t_None; break;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002856
Chris Lattnerac161bf2009-01-02 07:01:27 +00002857 case lltok::lbrace: {
2858 // ValID ::= '{' ConstVector '}'
2859 Lex.Lex();
2860 SmallVector<Constant*, 16> Elts;
2861 if (ParseGlobalValueVector(Elts) ||
2862 ParseToken(lltok::rbrace, "expected end of struct constant"))
2863 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002864
David Blaikieadbda4b2015-08-03 20:08:41 +00002865 ID.ConstantStructElts = make_unique<Constant *[]>(Elts.size());
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002866 ID.UIntVal = Elts.size();
David Blaikieadbda4b2015-08-03 20:08:41 +00002867 memcpy(ID.ConstantStructElts.get(), Elts.data(),
2868 Elts.size() * sizeof(Elts[0]));
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002869 ID.Kind = ValID::t_ConstantStruct;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002870 return false;
2871 }
2872 case lltok::less: {
2873 // ValID ::= '<' ConstVector '>' --> Vector.
2874 // ValID ::= '<' '{' ConstVector '}' '>' --> Packed Struct.
2875 Lex.Lex();
Chris Lattner3822f632009-01-02 08:05:26 +00002876 bool isPackedStruct = EatIfPresent(lltok::lbrace);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002877
Chris Lattnerac161bf2009-01-02 07:01:27 +00002878 SmallVector<Constant*, 16> Elts;
2879 LocTy FirstEltLoc = Lex.getLoc();
2880 if (ParseGlobalValueVector(Elts) ||
2881 (isPackedStruct &&
2882 ParseToken(lltok::rbrace, "expected end of packed struct")) ||
2883 ParseToken(lltok::greater, "expected end of constant"))
2884 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002885
Chris Lattnerac161bf2009-01-02 07:01:27 +00002886 if (isPackedStruct) {
David Blaikieadbda4b2015-08-03 20:08:41 +00002887 ID.ConstantStructElts = make_unique<Constant *[]>(Elts.size());
2888 memcpy(ID.ConstantStructElts.get(), Elts.data(),
2889 Elts.size() * sizeof(Elts[0]));
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002890 ID.UIntVal = Elts.size();
2891 ID.Kind = ValID::t_PackedConstantStruct;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002892 return false;
2893 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002894
Chris Lattnerac161bf2009-01-02 07:01:27 +00002895 if (Elts.empty())
2896 return Error(ID.Loc, "constant vector must not be empty");
2897
Duncan Sands9dff9be2010-02-15 16:12:20 +00002898 if (!Elts[0]->getType()->isIntegerTy() &&
Nadav Rotem3924cb02011-12-05 06:29:09 +00002899 !Elts[0]->getType()->isFloatingPointTy() &&
2900 !Elts[0]->getType()->isPointerTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00002901 return Error(FirstEltLoc,
Nadav Rotem3924cb02011-12-05 06:29:09 +00002902 "vector elements must have integer, pointer or floating point type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002903
Chris Lattnerac161bf2009-01-02 07:01:27 +00002904 // Verify that all the vector elements have the same type.
2905 for (unsigned i = 1, e = Elts.size(); i != e; ++i)
2906 if (Elts[i]->getType() != Elts[0]->getType())
2907 return Error(FirstEltLoc,
Benjamin Kramerc7583112010-09-27 17:42:11 +00002908 "vector element #" + Twine(i) +
Chris Lattner0f214eb2011-06-18 21:18:23 +00002909 " is not of type '" + getTypeString(Elts[0]->getType()));
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002910
Chris Lattner69229312011-02-15 00:14:00 +00002911 ID.ConstantVal = ConstantVector::get(Elts);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002912 ID.Kind = ValID::t_Constant;
2913 return false;
2914 }
2915 case lltok::lsquare: { // Array Constant
2916 Lex.Lex();
2917 SmallVector<Constant*, 16> Elts;
2918 LocTy FirstEltLoc = Lex.getLoc();
2919 if (ParseGlobalValueVector(Elts) ||
2920 ParseToken(lltok::rsquare, "expected end of array constant"))
2921 return true;
2922
2923 // Handle empty element.
2924 if (Elts.empty()) {
2925 // Use undef instead of an array because it's inconvenient to determine
2926 // the element type at this point, there being no elements to examine.
Chris Lattner998fa0a2009-01-05 07:52:51 +00002927 ID.Kind = ValID::t_EmptyArray;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002928 return false;
2929 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002930
Chris Lattnerac161bf2009-01-02 07:01:27 +00002931 if (!Elts[0]->getType()->isFirstClassType())
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002932 return Error(FirstEltLoc, "invalid array element type: " +
Chris Lattner0f214eb2011-06-18 21:18:23 +00002933 getTypeString(Elts[0]->getType()));
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002934
Owen Anderson4056ca92009-07-29 22:17:13 +00002935 ArrayType *ATy = ArrayType::get(Elts[0]->getType(), Elts.size());
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002936
Chris Lattnerac161bf2009-01-02 07:01:27 +00002937 // Verify all elements are correct type!
Chris Lattner59d0e3b2009-01-02 08:49:06 +00002938 for (unsigned i = 0, e = Elts.size(); i != e; ++i) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002939 if (Elts[i]->getType() != Elts[0]->getType())
2940 return Error(FirstEltLoc,
Benjamin Kramerc7583112010-09-27 17:42:11 +00002941 "array element #" + Twine(i) +
Chris Lattner0f214eb2011-06-18 21:18:23 +00002942 " is not of type '" + getTypeString(Elts[0]->getType()));
Chris Lattnerac161bf2009-01-02 07:01:27 +00002943 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002944
Jay Foad83be3612011-06-22 09:24:39 +00002945 ID.ConstantVal = ConstantArray::get(ATy, Elts);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002946 ID.Kind = ValID::t_Constant;
2947 return false;
2948 }
2949 case lltok::kw_c: // c "foo"
2950 Lex.Lex();
Chris Lattnercf9e8f62012-02-05 02:29:43 +00002951 ID.ConstantVal = ConstantDataArray::getString(Context, Lex.getStrVal(),
2952 false);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002953 if (ParseToken(lltok::StringConstant, "expected string")) return true;
2954 ID.Kind = ValID::t_Constant;
2955 return false;
2956
2957 case lltok::kw_asm: {
Chad Rosier6f9c3852013-02-14 20:44:07 +00002958 // ValID ::= 'asm' SideEffect? AlignStack? IntelDialect? STRINGCONSTANT ','
2959 // STRINGCONSTANT
Chad Rosierd8c76102012-09-05 19:00:49 +00002960 bool HasSideEffect, AlignStack, AsmDialect;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002961 Lex.Lex();
2962 if (ParseOptionalToken(lltok::kw_sideeffect, HasSideEffect) ||
Dale Johannesen1cfb9582009-10-21 23:28:00 +00002963 ParseOptionalToken(lltok::kw_alignstack, AlignStack) ||
Chad Rosierd8c76102012-09-05 19:00:49 +00002964 ParseOptionalToken(lltok::kw_inteldialect, AsmDialect) ||
Chris Lattner3822f632009-01-02 08:05:26 +00002965 ParseStringConstant(ID.StrVal) ||
2966 ParseToken(lltok::comma, "expected comma in inline asm expression") ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00002967 ParseToken(lltok::StringConstant, "expected constraint string"))
2968 return true;
2969 ID.StrVal2 = Lex.getStrVal();
Chad Rosierf42fad62012-09-05 00:08:17 +00002970 ID.UIntVal = unsigned(HasSideEffect) | (unsigned(AlignStack)<<1) |
Chad Rosierd8c76102012-09-05 19:00:49 +00002971 (unsigned(AsmDialect)<<2);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002972 ID.Kind = ValID::t_InlineAsm;
2973 return false;
2974 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002975
Chris Lattner3432c622009-10-28 03:39:23 +00002976 case lltok::kw_blockaddress: {
2977 // ValID ::= 'blockaddress' '(' @foo ',' %bar ')'
2978 Lex.Lex();
2979
2980 ValID Fn, Label;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002981
Chris Lattner3432c622009-10-28 03:39:23 +00002982 if (ParseToken(lltok::lparen, "expected '(' in block address expression") ||
2983 ParseValID(Fn) ||
2984 ParseToken(lltok::comma, "expected comma in block address expression")||
2985 ParseValID(Label) ||
2986 ParseToken(lltok::rparen, "expected ')' in block address expression"))
2987 return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002988
Chris Lattner3432c622009-10-28 03:39:23 +00002989 if (Fn.Kind != ValID::t_GlobalID && Fn.Kind != ValID::t_GlobalName)
2990 return Error(Fn.Loc, "expected function name in blockaddress");
Chris Lattneraa99c942009-11-01 01:27:45 +00002991 if (Label.Kind != ValID::t_LocalID && Label.Kind != ValID::t_LocalName)
Chris Lattner3432c622009-10-28 03:39:23 +00002992 return Error(Label.Loc, "expected basic block name in blockaddress");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002993
Duncan P. N. Exon Smith17169902014-08-19 00:13:19 +00002994 // Try to find the function (but skip it if it's forward-referenced).
2995 GlobalValue *GV = nullptr;
2996 if (Fn.Kind == ValID::t_GlobalID) {
2997 if (Fn.UIntVal < NumberedVals.size())
2998 GV = NumberedVals[Fn.UIntVal];
2999 } else if (!ForwardRefVals.count(Fn.StrVal)) {
3000 GV = M->getNamedValue(Fn.StrVal);
3001 }
3002 Function *F = nullptr;
3003 if (GV) {
3004 // Confirm that it's actually a function with a definition.
3005 if (!isa<Function>(GV))
3006 return Error(Fn.Loc, "expected function name in blockaddress");
3007 F = cast<Function>(GV);
3008 if (F->isDeclaration())
3009 return Error(Fn.Loc, "cannot take blockaddress inside a declaration");
3010 }
3011
3012 if (!F) {
3013 // Make a global variable as a placeholder for this reference.
David Blaikieb9cc6592015-03-04 01:40:07 +00003014 GlobalValue *&FwdRef =
David Blaikie871b4112015-08-03 20:55:00 +00003015 ForwardRefBlockAddresses.insert(std::make_pair(
3016 std::move(Fn),
3017 std::map<ValID, GlobalValue *>()))
David Blaikieb9cc6592015-03-04 01:40:07 +00003018 .first->second.insert(std::make_pair(std::move(Label), nullptr))
3019 .first->second;
Duncan P. N. Exon Smith17169902014-08-19 00:13:19 +00003020 if (!FwdRef)
3021 FwdRef = new GlobalVariable(*M, Type::getInt8Ty(Context), false,
3022 GlobalValue::InternalLinkage, nullptr, "");
3023 ID.ConstantVal = FwdRef;
3024 ID.Kind = ValID::t_Constant;
3025 return false;
3026 }
3027
3028 // We found the function; now find the basic block. Don't use PFS, since we
3029 // might be inside a constant expression.
3030 BasicBlock *BB;
3031 if (BlockAddressPFS && F == &BlockAddressPFS->getFunction()) {
3032 if (Label.Kind == ValID::t_LocalID)
3033 BB = BlockAddressPFS->GetBB(Label.UIntVal, Label.Loc);
3034 else
3035 BB = BlockAddressPFS->GetBB(Label.StrVal, Label.Loc);
3036 if (!BB)
3037 return Error(Label.Loc, "referenced value is not a basic block");
3038 } else {
3039 if (Label.Kind == ValID::t_LocalID)
3040 return Error(Label.Loc, "cannot take address of numeric label after "
3041 "the function is defined");
3042 BB = dyn_cast_or_null<BasicBlock>(
Mehdi Aminia53d49e2016-09-17 06:00:02 +00003043 F->getValueSymbolTable()->lookup(Label.StrVal));
Duncan P. N. Exon Smith17169902014-08-19 00:13:19 +00003044 if (!BB)
3045 return Error(Label.Loc, "referenced value is not a basic block");
3046 }
3047
3048 ID.ConstantVal = BlockAddress::get(F, BB);
Chris Lattner3432c622009-10-28 03:39:23 +00003049 ID.Kind = ValID::t_Constant;
3050 return false;
3051 }
Michael Ilseman26ee2b82012-11-15 22:34:00 +00003052
Chris Lattnerac161bf2009-01-02 07:01:27 +00003053 case lltok::kw_trunc:
3054 case lltok::kw_zext:
3055 case lltok::kw_sext:
3056 case lltok::kw_fptrunc:
3057 case lltok::kw_fpext:
3058 case lltok::kw_bitcast:
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00003059 case lltok::kw_addrspacecast:
Chris Lattnerac161bf2009-01-02 07:01:27 +00003060 case lltok::kw_uitofp:
3061 case lltok::kw_sitofp:
3062 case lltok::kw_fptoui:
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003063 case lltok::kw_fptosi:
Chris Lattnerac161bf2009-01-02 07:01:27 +00003064 case lltok::kw_inttoptr:
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003065 case lltok::kw_ptrtoint: {
Chris Lattnerac161bf2009-01-02 07:01:27 +00003066 unsigned Opc = Lex.getUIntVal();
Craig Topper2617dcc2014-04-15 06:32:26 +00003067 Type *DestTy = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00003068 Constant *SrcVal;
3069 Lex.Lex();
3070 if (ParseToken(lltok::lparen, "expected '(' after constantexpr cast") ||
3071 ParseGlobalTypeAndValue(SrcVal) ||
Dan Gohman0b5d0422009-06-15 21:52:11 +00003072 ParseToken(lltok::kw_to, "expected 'to' in constantexpr cast") ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00003073 ParseType(DestTy) ||
3074 ParseToken(lltok::rparen, "expected ')' at end of constantexpr cast"))
3075 return true;
3076 if (!CastInst::castIsValid((Instruction::CastOps)Opc, SrcVal, DestTy))
3077 return Error(ID.Loc, "invalid cast opcode for cast from '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00003078 getTypeString(SrcVal->getType()) + "' to '" +
3079 getTypeString(DestTy) + "'");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003080 ID.ConstantVal = ConstantExpr::getCast((Instruction::CastOps)Opc,
Owen Anderson02a9da32009-07-01 23:57:11 +00003081 SrcVal, DestTy);
Chris Lattnerac161bf2009-01-02 07:01:27 +00003082 ID.Kind = ValID::t_Constant;
3083 return false;
3084 }
3085 case lltok::kw_extractvalue: {
3086 Lex.Lex();
3087 Constant *Val;
3088 SmallVector<unsigned, 4> Indices;
3089 if (ParseToken(lltok::lparen, "expected '(' in extractvalue constantexpr")||
3090 ParseGlobalTypeAndValue(Val) ||
3091 ParseIndexList(Indices) ||
3092 ParseToken(lltok::rparen, "expected ')' in extractvalue constantexpr"))
3093 return true;
Devang Patel1cb51162009-11-03 19:06:07 +00003094
Chris Lattner392be582010-02-12 20:49:41 +00003095 if (!Val->getType()->isAggregateType())
3096 return Error(ID.Loc, "extractvalue operand must be aggregate type");
Jay Foad57aa6362011-07-13 10:26:04 +00003097 if (!ExtractValueInst::getIndexedType(Val->getType(), Indices))
Chris Lattnerac161bf2009-01-02 07:01:27 +00003098 return Error(ID.Loc, "invalid indices for extractvalue");
Jay Foad57aa6362011-07-13 10:26:04 +00003099 ID.ConstantVal = ConstantExpr::getExtractValue(Val, Indices);
Chris Lattnerac161bf2009-01-02 07:01:27 +00003100 ID.Kind = ValID::t_Constant;
3101 return false;
3102 }
3103 case lltok::kw_insertvalue: {
3104 Lex.Lex();
3105 Constant *Val0, *Val1;
3106 SmallVector<unsigned, 4> Indices;
3107 if (ParseToken(lltok::lparen, "expected '(' in insertvalue constantexpr")||
3108 ParseGlobalTypeAndValue(Val0) ||
3109 ParseToken(lltok::comma, "expected comma in insertvalue constantexpr")||
3110 ParseGlobalTypeAndValue(Val1) ||
3111 ParseIndexList(Indices) ||
3112 ParseToken(lltok::rparen, "expected ')' in insertvalue constantexpr"))
3113 return true;
Chris Lattner392be582010-02-12 20:49:41 +00003114 if (!Val0->getType()->isAggregateType())
3115 return Error(ID.Loc, "insertvalue operand must be aggregate type");
David Majnemereba692d2015-02-23 07:13:52 +00003116 Type *IndexedType =
3117 ExtractValueInst::getIndexedType(Val0->getType(), Indices);
3118 if (!IndexedType)
Chris Lattnerac161bf2009-01-02 07:01:27 +00003119 return Error(ID.Loc, "invalid indices for insertvalue");
David Majnemereba692d2015-02-23 07:13:52 +00003120 if (IndexedType != Val1->getType())
3121 return Error(ID.Loc, "insertvalue operand and field disagree in type: '" +
3122 getTypeString(Val1->getType()) +
3123 "' instead of '" + getTypeString(IndexedType) +
3124 "'");
Jay Foad57aa6362011-07-13 10:26:04 +00003125 ID.ConstantVal = ConstantExpr::getInsertValue(Val0, Val1, Indices);
Chris Lattnerac161bf2009-01-02 07:01:27 +00003126 ID.Kind = ValID::t_Constant;
3127 return false;
3128 }
3129 case lltok::kw_icmp:
Nick Lewyckya21d3da2009-07-08 03:04:38 +00003130 case lltok::kw_fcmp: {
Chris Lattnerac161bf2009-01-02 07:01:27 +00003131 unsigned PredVal, Opc = Lex.getUIntVal();
3132 Constant *Val0, *Val1;
3133 Lex.Lex();
3134 if (ParseCmpPredicate(PredVal, Opc) ||
3135 ParseToken(lltok::lparen, "expected '(' in compare constantexpr") ||
3136 ParseGlobalTypeAndValue(Val0) ||
3137 ParseToken(lltok::comma, "expected comma in compare constantexpr") ||
3138 ParseGlobalTypeAndValue(Val1) ||
3139 ParseToken(lltok::rparen, "expected ')' in compare constantexpr"))
3140 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003141
Chris Lattnerac161bf2009-01-02 07:01:27 +00003142 if (Val0->getType() != Val1->getType())
3143 return Error(ID.Loc, "compare operands must have the same type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003144
Chris Lattnerac161bf2009-01-02 07:01:27 +00003145 CmpInst::Predicate Pred = (CmpInst::Predicate)PredVal;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003146
Chris Lattnerac161bf2009-01-02 07:01:27 +00003147 if (Opc == Instruction::FCmp) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00003148 if (!Val0->getType()->isFPOrFPVectorTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00003149 return Error(ID.Loc, "fcmp requires floating point operands");
Owen Anderson487375e2009-07-29 18:55:55 +00003150 ID.ConstantVal = ConstantExpr::getFCmp(Pred, Val0, Val1);
Nick Lewyckya21d3da2009-07-08 03:04:38 +00003151 } else {
3152 assert(Opc == Instruction::ICmp && "Unexpected opcode for CmpInst!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00003153 if (!Val0->getType()->isIntOrIntVectorTy() &&
Craig Topper95d23472017-07-09 07:04:00 +00003154 !Val0->getType()->isPtrOrPtrVectorTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00003155 return Error(ID.Loc, "icmp requires pointer or integer operands");
Owen Anderson487375e2009-07-29 18:55:55 +00003156 ID.ConstantVal = ConstantExpr::getICmp(Pred, Val0, Val1);
Chris Lattnerac161bf2009-01-02 07:01:27 +00003157 }
3158 ID.Kind = ValID::t_Constant;
3159 return false;
3160 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003161
Chris Lattnerac161bf2009-01-02 07:01:27 +00003162 // Binary Operators.
3163 case lltok::kw_add:
Dan Gohmana5b96452009-06-04 22:49:04 +00003164 case lltok::kw_fadd:
Chris Lattnerac161bf2009-01-02 07:01:27 +00003165 case lltok::kw_sub:
Dan Gohmana5b96452009-06-04 22:49:04 +00003166 case lltok::kw_fsub:
Chris Lattnerac161bf2009-01-02 07:01:27 +00003167 case lltok::kw_mul:
Dan Gohmana5b96452009-06-04 22:49:04 +00003168 case lltok::kw_fmul:
Chris Lattnerac161bf2009-01-02 07:01:27 +00003169 case lltok::kw_udiv:
3170 case lltok::kw_sdiv:
3171 case lltok::kw_fdiv:
3172 case lltok::kw_urem:
3173 case lltok::kw_srem:
Chris Lattnera676c0f2011-02-07 16:40:21 +00003174 case lltok::kw_frem:
3175 case lltok::kw_shl:
3176 case lltok::kw_lshr:
3177 case lltok::kw_ashr: {
Dan Gohman9c7f8082009-07-27 16:11:46 +00003178 bool NUW = false;
3179 bool NSW = false;
3180 bool Exact = false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00003181 unsigned Opc = Lex.getUIntVal();
3182 Constant *Val0, *Val1;
3183 Lex.Lex();
Dan Gohman9c7f8082009-07-27 16:11:46 +00003184 LocTy ModifierLoc = Lex.getLoc();
Chris Lattnera676c0f2011-02-07 16:40:21 +00003185 if (Opc == Instruction::Add || Opc == Instruction::Sub ||
3186 Opc == Instruction::Mul || Opc == Instruction::Shl) {
Dan Gohman9c7f8082009-07-27 16:11:46 +00003187 if (EatIfPresent(lltok::kw_nuw))
3188 NUW = true;
3189 if (EatIfPresent(lltok::kw_nsw)) {
3190 NSW = true;
3191 if (EatIfPresent(lltok::kw_nuw))
3192 NUW = true;
3193 }
Chris Lattnera676c0f2011-02-07 16:40:21 +00003194 } else if (Opc == Instruction::SDiv || Opc == Instruction::UDiv ||
3195 Opc == Instruction::LShr || Opc == Instruction::AShr) {
Dan Gohman9c7f8082009-07-27 16:11:46 +00003196 if (EatIfPresent(lltok::kw_exact))
3197 Exact = true;
3198 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00003199 if (ParseToken(lltok::lparen, "expected '(' in binary constantexpr") ||
3200 ParseGlobalTypeAndValue(Val0) ||
3201 ParseToken(lltok::comma, "expected comma in binary constantexpr") ||
3202 ParseGlobalTypeAndValue(Val1) ||
3203 ParseToken(lltok::rparen, "expected ')' in binary constantexpr"))
3204 return true;
3205 if (Val0->getType() != Val1->getType())
3206 return Error(ID.Loc, "operands of constexpr must have same type");
Duncan Sands9dff9be2010-02-15 16:12:20 +00003207 if (!Val0->getType()->isIntOrIntVectorTy()) {
Dan Gohman9c7f8082009-07-27 16:11:46 +00003208 if (NUW)
3209 return Error(ModifierLoc, "nuw only applies to integer operations");
3210 if (NSW)
3211 return Error(ModifierLoc, "nsw only applies to integer operations");
3212 }
Dan Gohmana2414ea2010-05-03 22:44:19 +00003213 // Check that the type is valid for the operator.
3214 switch (Opc) {
3215 case Instruction::Add:
3216 case Instruction::Sub:
3217 case Instruction::Mul:
3218 case Instruction::UDiv:
3219 case Instruction::SDiv:
3220 case Instruction::URem:
3221 case Instruction::SRem:
Chris Lattnera676c0f2011-02-07 16:40:21 +00003222 case Instruction::Shl:
3223 case Instruction::AShr:
3224 case Instruction::LShr:
Dan Gohmana2414ea2010-05-03 22:44:19 +00003225 if (!Val0->getType()->isIntOrIntVectorTy())
3226 return Error(ID.Loc, "constexpr requires integer operands");
3227 break;
3228 case Instruction::FAdd:
3229 case Instruction::FSub:
3230 case Instruction::FMul:
3231 case Instruction::FDiv:
3232 case Instruction::FRem:
3233 if (!Val0->getType()->isFPOrFPVectorTy())
3234 return Error(ID.Loc, "constexpr requires fp operands");
3235 break;
3236 default: llvm_unreachable("Unknown binary operator!");
3237 }
Dan Gohman1b849082009-09-07 23:54:19 +00003238 unsigned Flags = 0;
3239 if (NUW) Flags |= OverflowingBinaryOperator::NoUnsignedWrap;
3240 if (NSW) Flags |= OverflowingBinaryOperator::NoSignedWrap;
Chris Lattner35315d02011-02-06 21:44:57 +00003241 if (Exact) Flags |= PossiblyExactOperator::IsExact;
Dan Gohman1b849082009-09-07 23:54:19 +00003242 Constant *C = ConstantExpr::get(Opc, Val0, Val1, Flags);
Dan Gohman9c7f8082009-07-27 16:11:46 +00003243 ID.ConstantVal = C;
Chris Lattnerac161bf2009-01-02 07:01:27 +00003244 ID.Kind = ValID::t_Constant;
3245 return false;
3246 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003247
Chris Lattnerac161bf2009-01-02 07:01:27 +00003248 // Logical Operations
Chris Lattnerac161bf2009-01-02 07:01:27 +00003249 case lltok::kw_and:
3250 case lltok::kw_or:
3251 case lltok::kw_xor: {
3252 unsigned Opc = Lex.getUIntVal();
3253 Constant *Val0, *Val1;
3254 Lex.Lex();
3255 if (ParseToken(lltok::lparen, "expected '(' in logical constantexpr") ||
3256 ParseGlobalTypeAndValue(Val0) ||
3257 ParseToken(lltok::comma, "expected comma in logical constantexpr") ||
3258 ParseGlobalTypeAndValue(Val1) ||
3259 ParseToken(lltok::rparen, "expected ')' in logical constantexpr"))
3260 return true;
3261 if (Val0->getType() != Val1->getType())
3262 return Error(ID.Loc, "operands of constexpr must have same type");
Duncan Sands9dff9be2010-02-15 16:12:20 +00003263 if (!Val0->getType()->isIntOrIntVectorTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00003264 return Error(ID.Loc,
3265 "constexpr requires integer or integer vector operands");
Owen Anderson487375e2009-07-29 18:55:55 +00003266 ID.ConstantVal = ConstantExpr::get(Opc, Val0, Val1);
Chris Lattnerac161bf2009-01-02 07:01:27 +00003267 ID.Kind = ValID::t_Constant;
3268 return false;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003269 }
3270
Chris Lattnerac161bf2009-01-02 07:01:27 +00003271 case lltok::kw_getelementptr:
3272 case lltok::kw_shufflevector:
3273 case lltok::kw_insertelement:
3274 case lltok::kw_extractelement:
3275 case lltok::kw_select: {
3276 unsigned Opc = Lex.getUIntVal();
3277 SmallVector<Constant*, 16> Elts;
Dan Gohman1639c392009-07-27 21:53:46 +00003278 bool InBounds = false;
David Blaikief72d05b2015-03-13 18:20:45 +00003279 Type *Ty;
Chris Lattnerac161bf2009-01-02 07:01:27 +00003280 Lex.Lex();
David Blaikief72d05b2015-03-13 18:20:45 +00003281
Dan Gohman1639c392009-07-27 21:53:46 +00003282 if (Opc == Instruction::GetElementPtr)
Dan Gohman16cbbe42009-07-29 15:58:36 +00003283 InBounds = EatIfPresent(lltok::kw_inbounds);
David Blaikief72d05b2015-03-13 18:20:45 +00003284
3285 if (ParseToken(lltok::lparen, "expected '(' in constantexpr"))
3286 return true;
3287
3288 LocTy ExplicitTypeLoc = Lex.getLoc();
3289 if (Opc == Instruction::GetElementPtr) {
3290 if (ParseType(Ty) ||
3291 ParseToken(lltok::comma, "expected comma after getelementptr's type"))
3292 return true;
3293 }
3294
Peter Collingbourned93620b2016-11-10 22:34:55 +00003295 Optional<unsigned> InRangeOp;
3296 if (ParseGlobalValueVector(
3297 Elts, Opc == Instruction::GetElementPtr ? &InRangeOp : nullptr) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00003298 ParseToken(lltok::rparen, "expected ')' in constantexpr"))
3299 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003300
Chris Lattnerac161bf2009-01-02 07:01:27 +00003301 if (Opc == Instruction::GetElementPtr) {
Nadav Rotem3924cb02011-12-05 06:29:09 +00003302 if (Elts.size() == 0 ||
Craig Topper95d23472017-07-09 07:04:00 +00003303 !Elts[0]->getType()->isPtrOrPtrVectorTy())
David Majnemer00303b62015-02-22 23:14:52 +00003304 return Error(ID.Loc, "base of getelementptr must be a pointer");
3305
3306 Type *BaseType = Elts[0]->getType();
3307 auto *BasePointerType = cast<PointerType>(BaseType->getScalarType());
David Blaikief72d05b2015-03-13 18:20:45 +00003308 if (Ty != BasePointerType->getElementType())
3309 return Error(
3310 ExplicitTypeLoc,
3311 "explicit pointee type doesn't match operand's pointee type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003312
Michael Kuperstein88f15ee2016-12-21 18:29:47 +00003313 unsigned GEPWidth =
3314 BaseType->isVectorTy() ? BaseType->getVectorNumElements() : 0;
3315
Jay Foaded8db7d2011-07-21 14:31:17 +00003316 ArrayRef<Constant *> Indices(Elts.begin() + 1, Elts.end());
David Majnemer00303b62015-02-22 23:14:52 +00003317 for (Constant *Val : Indices) {
3318 Type *ValTy = Val->getType();
Craig Topper95d23472017-07-09 07:04:00 +00003319 if (!ValTy->isIntOrIntVectorTy())
David Majnemer00303b62015-02-22 23:14:52 +00003320 return Error(ID.Loc, "getelementptr index must be an integer");
David Majnemer00303b62015-02-22 23:14:52 +00003321 if (ValTy->isVectorTy()) {
Elena Demikhovsky37a4da82015-07-09 07:42:48 +00003322 unsigned ValNumEl = ValTy->getVectorNumElements();
Michael Kuperstein88f15ee2016-12-21 18:29:47 +00003323 if (GEPWidth && (ValNumEl != GEPWidth))
David Majnemer00303b62015-02-22 23:14:52 +00003324 return Error(
3325 ID.Loc,
3326 "getelementptr vector index has a wrong number of elements");
Michael Kuperstein88f15ee2016-12-21 18:29:47 +00003327 // GEPWidth may have been unknown because the base is a scalar,
3328 // but it is known now.
3329 GEPWidth = ValNumEl;
David Majnemer00303b62015-02-22 23:14:52 +00003330 }
3331 }
3332
Craig Toppere3dcce92015-08-01 22:20:21 +00003333 SmallPtrSet<Type*, 4> Visited;
David Blaikiee169e822015-04-22 16:37:35 +00003334 if (!Indices.empty() && !Ty->isSized(&Visited))
David Majnemer00303b62015-02-22 23:14:52 +00003335 return Error(ID.Loc, "base element of getelementptr must be sized");
3336
David Blaikie4a2e73b2015-04-02 18:55:32 +00003337 if (!GetElementPtrInst::getIndexedType(Ty, Indices))
David Majnemer00303b62015-02-22 23:14:52 +00003338 return Error(ID.Loc, "invalid getelementptr indices");
Peter Collingbourned93620b2016-11-10 22:34:55 +00003339
3340 if (InRangeOp) {
3341 if (*InRangeOp == 0)
3342 return Error(ID.Loc,
3343 "inrange keyword may not appear on pointer operand");
3344 --*InRangeOp;
3345 }
3346
3347 ID.ConstantVal = ConstantExpr::getGetElementPtr(Ty, Elts[0], Indices,
3348 InBounds, InRangeOp);
Chris Lattnerac161bf2009-01-02 07:01:27 +00003349 } else if (Opc == Instruction::Select) {
3350 if (Elts.size() != 3)
3351 return Error(ID.Loc, "expected three operands to select");
3352 if (const char *Reason = SelectInst::areInvalidOperands(Elts[0], Elts[1],
3353 Elts[2]))
3354 return Error(ID.Loc, Reason);
Owen Anderson487375e2009-07-29 18:55:55 +00003355 ID.ConstantVal = ConstantExpr::getSelect(Elts[0], Elts[1], Elts[2]);
Chris Lattnerac161bf2009-01-02 07:01:27 +00003356 } else if (Opc == Instruction::ShuffleVector) {
3357 if (Elts.size() != 3)
3358 return Error(ID.Loc, "expected three operands to shufflevector");
3359 if (!ShuffleVectorInst::isValidOperands(Elts[0], Elts[1], Elts[2]))
3360 return Error(ID.Loc, "invalid operands to shufflevector");
Owen Anderson02a9da32009-07-01 23:57:11 +00003361 ID.ConstantVal =
Owen Anderson487375e2009-07-29 18:55:55 +00003362 ConstantExpr::getShuffleVector(Elts[0], Elts[1],Elts[2]);
Chris Lattnerac161bf2009-01-02 07:01:27 +00003363 } else if (Opc == Instruction::ExtractElement) {
3364 if (Elts.size() != 2)
3365 return Error(ID.Loc, "expected two operands to extractelement");
3366 if (!ExtractElementInst::isValidOperands(Elts[0], Elts[1]))
3367 return Error(ID.Loc, "invalid extractelement operands");
Owen Anderson487375e2009-07-29 18:55:55 +00003368 ID.ConstantVal = ConstantExpr::getExtractElement(Elts[0], Elts[1]);
Chris Lattnerac161bf2009-01-02 07:01:27 +00003369 } else {
3370 assert(Opc == Instruction::InsertElement && "Unknown opcode");
3371 if (Elts.size() != 3)
3372 return Error(ID.Loc, "expected three operands to insertelement");
3373 if (!InsertElementInst::isValidOperands(Elts[0], Elts[1], Elts[2]))
3374 return Error(ID.Loc, "invalid insertelement operands");
Owen Anderson02a9da32009-07-01 23:57:11 +00003375 ID.ConstantVal =
Owen Anderson487375e2009-07-29 18:55:55 +00003376 ConstantExpr::getInsertElement(Elts[0], Elts[1],Elts[2]);
Chris Lattnerac161bf2009-01-02 07:01:27 +00003377 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003378
Chris Lattnerac161bf2009-01-02 07:01:27 +00003379 ID.Kind = ValID::t_Constant;
3380 return false;
3381 }
3382 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003383
Chris Lattnerac161bf2009-01-02 07:01:27 +00003384 Lex.Lex();
3385 return false;
3386}
3387
3388/// ParseGlobalValue - Parse a global value with the specified type.
Chris Lattner229907c2011-07-18 04:54:35 +00003389bool LLParser::ParseGlobalValue(Type *Ty, Constant *&C) {
Craig Topper2617dcc2014-04-15 06:32:26 +00003390 C = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00003391 ValID ID;
Craig Topper2617dcc2014-04-15 06:32:26 +00003392 Value *V = nullptr;
Victor Hernandez9d75c962010-01-11 22:31:58 +00003393 bool Parsed = ParseValID(ID) ||
Craig Topper2617dcc2014-04-15 06:32:26 +00003394 ConvertValIDToValue(Ty, ID, V, nullptr);
Victor Hernandez9d75c962010-01-11 22:31:58 +00003395 if (V && !(C = dyn_cast<Constant>(V)))
3396 return Error(ID.Loc, "global values must be constants");
3397 return Parsed;
Chris Lattnerac161bf2009-01-02 07:01:27 +00003398}
3399
Victor Hernandez9d75c962010-01-11 22:31:58 +00003400bool LLParser::ParseGlobalTypeAndValue(Constant *&V) {
Craig Topper2617dcc2014-04-15 06:32:26 +00003401 Type *Ty = nullptr;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00003402 return ParseType(Ty) ||
3403 ParseGlobalValue(Ty, V);
Victor Hernandez9d75c962010-01-11 22:31:58 +00003404}
3405
Rafael Espindola83a362c2015-01-06 22:55:16 +00003406bool LLParser::parseOptionalComdat(StringRef GlobalName, Comdat *&C) {
David Majnemerdad0a642014-06-27 18:19:56 +00003407 C = nullptr;
Rafael Espindola83a362c2015-01-06 22:55:16 +00003408
3409 LocTy KwLoc = Lex.getLoc();
David Majnemerdad0a642014-06-27 18:19:56 +00003410 if (!EatIfPresent(lltok::kw_comdat))
3411 return false;
Rafael Espindola83a362c2015-01-06 22:55:16 +00003412
3413 if (EatIfPresent(lltok::lparen)) {
3414 if (Lex.getKind() != lltok::ComdatVar)
3415 return TokError("expected comdat variable");
3416 C = getComdat(Lex.getStrVal(), Lex.getLoc());
3417 Lex.Lex();
3418 if (ParseToken(lltok::rparen, "expected ')' after comdat var"))
3419 return true;
3420 } else {
3421 if (GlobalName.empty())
3422 return TokError("comdat cannot be unnamed");
3423 C = getComdat(GlobalName, KwLoc);
3424 }
3425
David Majnemerdad0a642014-06-27 18:19:56 +00003426 return false;
3427}
3428
Victor Hernandez9d75c962010-01-11 22:31:58 +00003429/// ParseGlobalValueVector
3430/// ::= /*empty*/
Peter Collingbourned93620b2016-11-10 22:34:55 +00003431/// ::= [inrange] TypeAndValue (',' [inrange] TypeAndValue)*
3432bool LLParser::ParseGlobalValueVector(SmallVectorImpl<Constant *> &Elts,
3433 Optional<unsigned> *InRangeOp) {
Victor Hernandez9d75c962010-01-11 22:31:58 +00003434 // Empty list.
3435 if (Lex.getKind() == lltok::rbrace ||
3436 Lex.getKind() == lltok::rsquare ||
3437 Lex.getKind() == lltok::greater ||
3438 Lex.getKind() == lltok::rparen)
3439 return false;
3440
Peter Collingbourned93620b2016-11-10 22:34:55 +00003441 do {
3442 if (InRangeOp && !*InRangeOp && EatIfPresent(lltok::kw_inrange))
3443 *InRangeOp = Elts.size();
Victor Hernandez9d75c962010-01-11 22:31:58 +00003444
Peter Collingbourned93620b2016-11-10 22:34:55 +00003445 Constant *C;
Victor Hernandez9d75c962010-01-11 22:31:58 +00003446 if (ParseGlobalTypeAndValue(C)) return true;
3447 Elts.push_back(C);
Peter Collingbourned93620b2016-11-10 22:34:55 +00003448 } while (EatIfPresent(lltok::comma));
Victor Hernandez9d75c962010-01-11 22:31:58 +00003449
3450 return false;
3451}
3452
Duncan P. N. Exon Smith58ef9d12015-01-12 21:23:11 +00003453bool LLParser::ParseMDTuple(MDNode *&MD, bool IsDistinct) {
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00003454 SmallVector<Metadata *, 16> Elts;
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00003455 if (ParseMDNodeVector(Elts))
Dan Gohmanc828c542010-08-24 02:24:03 +00003456 return true;
3457
Duncan P. N. Exon Smith0b31dd12015-01-12 22:27:39 +00003458 MD = (IsDistinct ? MDTuple::getDistinct : MDTuple::get)(Context, Elts);
Dan Gohmanc828c542010-08-24 02:24:03 +00003459 return false;
3460}
3461
Duncan P. N. Exon Smithf825dae2015-01-12 22:26:48 +00003462/// MDNode:
3463/// ::= !{ ... }
3464/// ::= !7
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003465/// ::= !DILocation(...)
Duncan P. N. Exon Smithf825dae2015-01-12 22:26:48 +00003466bool LLParser::ParseMDNode(MDNode *&N) {
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003467 if (Lex.getKind() == lltok::MetadataVar)
3468 return ParseSpecializedMDNode(N);
3469
Duncan P. N. Exon Smithf825dae2015-01-12 22:26:48 +00003470 return ParseToken(lltok::exclaim, "expected '!' here") ||
3471 ParseMDNodeTail(N);
3472}
3473
3474bool LLParser::ParseMDNodeTail(MDNode *&N) {
3475 // !{ ... }
3476 if (Lex.getKind() == lltok::lbrace)
3477 return ParseMDTuple(N);
3478
3479 // !42
3480 return ParseMDNodeID(N);
3481}
3482
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003483namespace {
3484
3485/// Structure to represent an optional metadata field.
3486template <class FieldTy> struct MDFieldImpl {
3487 typedef MDFieldImpl ImplTy;
3488 FieldTy Val;
3489 bool Seen;
3490
3491 void assign(FieldTy Val) {
3492 Seen = true;
3493 this->Val = std::move(Val);
3494 }
3495
3496 explicit MDFieldImpl(FieldTy Default)
3497 : Val(std::move(Default)), Seen(false) {}
3498};
Duncan P. N. Exon Smithc7363f12015-02-13 01:10:38 +00003499
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003500struct MDUnsignedField : public MDFieldImpl<uint64_t> {
3501 uint64_t Max;
3502
3503 MDUnsignedField(uint64_t Default = 0, uint64_t Max = UINT64_MAX)
3504 : ImplTy(Default), Max(Max) {}
3505};
Eugene Zelenko1804a772016-08-25 00:45:04 +00003506
Duncan P. N. Exon Smith9c93dc62015-02-04 22:59:18 +00003507struct LineField : public MDUnsignedField {
Duncan P. N. Exon Smithaf677eb2015-02-06 22:50:13 +00003508 LineField() : MDUnsignedField(0, UINT32_MAX) {}
Duncan P. N. Exon Smith9c93dc62015-02-04 22:59:18 +00003509};
Eugene Zelenko1804a772016-08-25 00:45:04 +00003510
Duncan P. N. Exon Smith9c93dc62015-02-04 22:59:18 +00003511struct ColumnField : public MDUnsignedField {
3512 ColumnField() : MDUnsignedField(0, UINT16_MAX) {}
3513};
Eugene Zelenko1804a772016-08-25 00:45:04 +00003514
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003515struct DwarfTagField : public MDUnsignedField {
Duncan P. N. Exon Smitha81f7e12015-02-06 22:29:35 +00003516 DwarfTagField() : MDUnsignedField(0, dwarf::DW_TAG_hi_user) {}
Duncan P. N. Exon Smith16d182a2015-02-28 23:21:38 +00003517 DwarfTagField(dwarf::Tag DefaultTag)
3518 : MDUnsignedField(DefaultTag, dwarf::DW_TAG_hi_user) {}
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003519};
Eugene Zelenko1804a772016-08-25 00:45:04 +00003520
Amjad Abouda9bcf162015-12-10 12:56:35 +00003521struct DwarfMacinfoTypeField : public MDUnsignedField {
3522 DwarfMacinfoTypeField() : MDUnsignedField(0, dwarf::DW_MACINFO_vendor_ext) {}
3523 DwarfMacinfoTypeField(dwarf::MacinfoRecordType DefaultType)
3524 : MDUnsignedField(DefaultType, dwarf::DW_MACINFO_vendor_ext) {}
3525};
Eugene Zelenko1804a772016-08-25 00:45:04 +00003526
Duncan P. N. Exon Smithcd6636c2015-02-13 01:17:35 +00003527struct DwarfAttEncodingField : public MDUnsignedField {
3528 DwarfAttEncodingField() : MDUnsignedField(0, dwarf::DW_ATE_hi_user) {}
3529};
Eugene Zelenko1804a772016-08-25 00:45:04 +00003530
Duncan P. N. Exon Smith890533e2015-02-13 01:28:16 +00003531struct DwarfVirtualityField : public MDUnsignedField {
3532 DwarfVirtualityField() : MDUnsignedField(0, dwarf::DW_VIRTUALITY_max) {}
3533};
Eugene Zelenko1804a772016-08-25 00:45:04 +00003534
Duncan P. N. Exon Smithaece2dc2015-02-13 01:21:25 +00003535struct DwarfLangField : public MDUnsignedField {
3536 DwarfLangField() : MDUnsignedField(0, dwarf::DW_LANG_hi_user) {}
3537};
Eugene Zelenko1804a772016-08-25 00:45:04 +00003538
Reid Klecknerde3d8b52016-06-08 20:34:29 +00003539struct DwarfCCField : public MDUnsignedField {
3540 DwarfCCField() : MDUnsignedField(0, dwarf::DW_CC_hi_user) {}
3541};
Eugene Zelenko1804a772016-08-25 00:45:04 +00003542
Adrian Prantlb939a252016-03-31 23:56:58 +00003543struct EmissionKindField : public MDUnsignedField {
3544 EmissionKindField() : MDUnsignedField(0, DICompileUnit::LastEmissionKind) {}
3545};
Duncan P. N. Exon Smithc7363f12015-02-13 01:10:38 +00003546
Leny Kholodov5fcc4182016-09-06 10:46:28 +00003547struct DIFlagField : public MDFieldImpl<DINode::DIFlags> {
3548 DIFlagField() : MDFieldImpl(DINode::FlagZero) {}
Duncan P. N. Exon Smith70ab3d22015-02-21 01:02:18 +00003549};
3550
Duncan P. N. Exon Smithc7363f12015-02-13 01:10:38 +00003551struct MDSignedField : public MDFieldImpl<int64_t> {
3552 int64_t Min;
3553 int64_t Max;
3554
3555 MDSignedField(int64_t Default = 0)
3556 : ImplTy(Default), Min(INT64_MIN), Max(INT64_MAX) {}
3557 MDSignedField(int64_t Default, int64_t Min, int64_t Max)
3558 : ImplTy(Default), Min(Min), Max(Max) {}
3559};
3560
Duncan P. N. Exon Smithaece2dc2015-02-13 01:21:25 +00003561struct MDBoolField : public MDFieldImpl<bool> {
3562 MDBoolField(bool Default = false) : ImplTy(Default) {}
3563};
Eugene Zelenko1804a772016-08-25 00:45:04 +00003564
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003565struct MDField : public MDFieldImpl<Metadata *> {
Duncan P. N. Exon Smithe2c61d92015-03-27 17:56:39 +00003566 bool AllowNull;
3567
3568 MDField(bool AllowNull = true) : ImplTy(nullptr), AllowNull(AllowNull) {}
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003569};
Eugene Zelenko1804a772016-08-25 00:45:04 +00003570
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003571struct MDConstant : public MDFieldImpl<ConstantAsMetadata *> {
3572 MDConstant() : ImplTy(nullptr) {}
3573};
Eugene Zelenko1804a772016-08-25 00:45:04 +00003574
Duncan P. N. Exon Smith3d2afaa2015-03-27 17:29:58 +00003575struct MDStringField : public MDFieldImpl<MDString *> {
Duncan P. N. Exon Smith94d58f82015-03-31 01:28:22 +00003576 bool AllowEmpty;
3577 MDStringField(bool AllowEmpty = true)
3578 : ImplTy(nullptr), AllowEmpty(AllowEmpty) {}
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003579};
Eugene Zelenko1804a772016-08-25 00:45:04 +00003580
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003581struct MDFieldList : public MDFieldImpl<SmallVector<Metadata *, 4>> {
3582 MDFieldList() : ImplTy(SmallVector<Metadata *, 4>()) {}
3583};
3584
Amjad Aboud7faeecc2016-12-25 10:12:09 +00003585struct ChecksumKindField : public MDFieldImpl<DIFile::ChecksumKind> {
3586 ChecksumKindField() : ImplTy(DIFile::CSK_None) {}
3587 ChecksumKindField(DIFile::ChecksumKind CSKind) : ImplTy(CSKind) {}
3588};
3589
Eugene Zelenko1804a772016-08-25 00:45:04 +00003590} // end anonymous namespace
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003591
Duncan P. N. Exon Smith2f09c462015-02-04 22:13:28 +00003592namespace llvm {
3593
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003594template <>
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003595bool LLParser::ParseMDField(LocTy Loc, StringRef Name,
Duncan P. N. Exon Smith39b10c22015-02-04 21:57:52 +00003596 MDUnsignedField &Result) {
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003597 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned())
3598 return TokError("expected unsigned integer");
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003599
Duncan P. N. Exon Smith39b10c22015-02-04 21:57:52 +00003600 auto &U = Lex.getAPSIntVal();
3601 if (U.ugt(Result.Max))
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003602 return TokError("value for '" + Name + "' too large, limit is " +
3603 Twine(Result.Max));
Duncan P. N. Exon Smith39b10c22015-02-04 21:57:52 +00003604 Result.assign(U.getZExtValue());
3605 assert(Result.Val <= Result.Max && "Expected value in range");
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003606 Lex.Lex();
3607 return false;
3608}
3609
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003610template <>
Duncan P. N. Exon Smith9c93dc62015-02-04 22:59:18 +00003611bool LLParser::ParseMDField(LocTy Loc, StringRef Name, LineField &Result) {
3612 return ParseMDField(Loc, Name, static_cast<MDUnsignedField &>(Result));
3613}
3614template <>
3615bool LLParser::ParseMDField(LocTy Loc, StringRef Name, ColumnField &Result) {
3616 return ParseMDField(Loc, Name, static_cast<MDUnsignedField &>(Result));
3617}
3618
3619template <>
Duncan P. N. Exon Smith97486072015-02-03 21:56:01 +00003620bool LLParser::ParseMDField(LocTy Loc, StringRef Name, DwarfTagField &Result) {
3621 if (Lex.getKind() == lltok::APSInt)
Duncan P. N. Exon Smith39b10c22015-02-04 21:57:52 +00003622 return ParseMDField(Loc, Name, static_cast<MDUnsignedField &>(Result));
Duncan P. N. Exon Smith97486072015-02-03 21:56:01 +00003623
Duncan P. N. Exon Smith97486072015-02-03 21:56:01 +00003624 if (Lex.getKind() != lltok::DwarfTag)
3625 return TokError("expected DWARF tag");
3626
3627 unsigned Tag = dwarf::getTag(Lex.getStrVal());
3628 if (Tag == dwarf::DW_TAG_invalid)
3629 return TokError("invalid DWARF tag" + Twine(" '") + Lex.getStrVal() + "'");
Duncan P. N. Exon Smithfad631a2015-02-04 22:02:18 +00003630 assert(Tag <= Result.Max && "Expected valid DWARF tag");
Duncan P. N. Exon Smith97486072015-02-03 21:56:01 +00003631
3632 Result.assign(Tag);
3633 Lex.Lex();
3634 return false;
3635}
3636
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003637template <>
Duncan P. N. Exon Smith890533e2015-02-13 01:28:16 +00003638bool LLParser::ParseMDField(LocTy Loc, StringRef Name,
Amjad Abouda9bcf162015-12-10 12:56:35 +00003639 DwarfMacinfoTypeField &Result) {
3640 if (Lex.getKind() == lltok::APSInt)
3641 return ParseMDField(Loc, Name, static_cast<MDUnsignedField &>(Result));
3642
3643 if (Lex.getKind() != lltok::DwarfMacinfo)
3644 return TokError("expected DWARF macinfo type");
3645
3646 unsigned Macinfo = dwarf::getMacinfo(Lex.getStrVal());
3647 if (Macinfo == dwarf::DW_MACINFO_invalid)
3648 return TokError(
3649 "invalid DWARF macinfo type" + Twine(" '") + Lex.getStrVal() + "'");
3650 assert(Macinfo <= Result.Max && "Expected valid DWARF macinfo type");
3651
3652 Result.assign(Macinfo);
3653 Lex.Lex();
3654 return false;
3655}
3656
3657template <>
3658bool LLParser::ParseMDField(LocTy Loc, StringRef Name,
Duncan P. N. Exon Smith890533e2015-02-13 01:28:16 +00003659 DwarfVirtualityField &Result) {
3660 if (Lex.getKind() == lltok::APSInt)
3661 return ParseMDField(Loc, Name, static_cast<MDUnsignedField &>(Result));
3662
3663 if (Lex.getKind() != lltok::DwarfVirtuality)
3664 return TokError("expected DWARF virtuality code");
3665
3666 unsigned Virtuality = dwarf::getVirtuality(Lex.getStrVal());
Peter Collingbournea1f86252016-03-17 23:58:03 +00003667 if (Virtuality == dwarf::DW_VIRTUALITY_invalid)
Duncan P. N. Exon Smith890533e2015-02-13 01:28:16 +00003668 return TokError("invalid DWARF virtuality code" + Twine(" '") +
3669 Lex.getStrVal() + "'");
3670 assert(Virtuality <= Result.Max && "Expected valid DWARF virtuality code");
3671 Result.assign(Virtuality);
3672 Lex.Lex();
3673 return false;
3674}
3675
3676template <>
Duncan P. N. Exon Smithaece2dc2015-02-13 01:21:25 +00003677bool LLParser::ParseMDField(LocTy Loc, StringRef Name, DwarfLangField &Result) {
3678 if (Lex.getKind() == lltok::APSInt)
3679 return ParseMDField(Loc, Name, static_cast<MDUnsignedField &>(Result));
3680
3681 if (Lex.getKind() != lltok::DwarfLang)
3682 return TokError("expected DWARF language");
3683
3684 unsigned Lang = dwarf::getLanguage(Lex.getStrVal());
3685 if (!Lang)
3686 return TokError("invalid DWARF language" + Twine(" '") + Lex.getStrVal() +
3687 "'");
3688 assert(Lang <= Result.Max && "Expected valid DWARF language");
3689 Result.assign(Lang);
3690 Lex.Lex();
3691 return false;
3692}
3693
3694template <>
Reid Klecknerde3d8b52016-06-08 20:34:29 +00003695bool LLParser::ParseMDField(LocTy Loc, StringRef Name, DwarfCCField &Result) {
3696 if (Lex.getKind() == lltok::APSInt)
3697 return ParseMDField(Loc, Name, static_cast<MDUnsignedField &>(Result));
3698
3699 if (Lex.getKind() != lltok::DwarfCC)
3700 return TokError("expected DWARF calling convention");
3701
3702 unsigned CC = dwarf::getCallingConvention(Lex.getStrVal());
3703 if (!CC)
3704 return TokError("invalid DWARF calling convention" + Twine(" '") + Lex.getStrVal() +
3705 "'");
3706 assert(CC <= Result.Max && "Expected valid DWARF calling convention");
3707 Result.assign(CC);
3708 Lex.Lex();
3709 return false;
3710}
3711
3712template <>
Adrian Prantlb939a252016-03-31 23:56:58 +00003713bool LLParser::ParseMDField(LocTy Loc, StringRef Name, EmissionKindField &Result) {
3714 if (Lex.getKind() == lltok::APSInt)
3715 return ParseMDField(Loc, Name, static_cast<MDUnsignedField &>(Result));
3716
3717 if (Lex.getKind() != lltok::EmissionKind)
3718 return TokError("expected emission kind");
3719
3720 auto Kind = DICompileUnit::getEmissionKind(Lex.getStrVal());
3721 if (!Kind)
3722 return TokError("invalid emission kind" + Twine(" '") + Lex.getStrVal() +
3723 "'");
3724 assert(*Kind <= Result.Max && "Expected valid emission kind");
3725 Result.assign(*Kind);
3726 Lex.Lex();
3727 return false;
3728}
3729
3730template <>
Duncan P. N. Exon Smithc7363f12015-02-13 01:10:38 +00003731bool LLParser::ParseMDField(LocTy Loc, StringRef Name,
Duncan P. N. Exon Smithcd6636c2015-02-13 01:17:35 +00003732 DwarfAttEncodingField &Result) {
3733 if (Lex.getKind() == lltok::APSInt)
3734 return ParseMDField(Loc, Name, static_cast<MDUnsignedField &>(Result));
3735
3736 if (Lex.getKind() != lltok::DwarfAttEncoding)
3737 return TokError("expected DWARF type attribute encoding");
3738
3739 unsigned Encoding = dwarf::getAttributeEncoding(Lex.getStrVal());
3740 if (!Encoding)
3741 return TokError("invalid DWARF type attribute encoding" + Twine(" '") +
3742 Lex.getStrVal() + "'");
3743 assert(Encoding <= Result.Max && "Expected valid DWARF language");
3744 Result.assign(Encoding);
3745 Lex.Lex();
3746 return false;
3747}
3748
Duncan P. N. Exon Smith70ab3d22015-02-21 01:02:18 +00003749/// DIFlagField
3750/// ::= uint32
3751/// ::= DIFlagVector
3752/// ::= DIFlagVector '|' DIFlagFwdDecl '|' uint32 '|' DIFlagPublic
3753template <>
3754bool LLParser::ParseMDField(LocTy Loc, StringRef Name, DIFlagField &Result) {
Duncan P. N. Exon Smith70ab3d22015-02-21 01:02:18 +00003755
3756 // Parser for a single flag.
Leny Kholodov5fcc4182016-09-06 10:46:28 +00003757 auto parseFlag = [&](DINode::DIFlags &Val) {
3758 if (Lex.getKind() == lltok::APSInt && !Lex.getAPSIntVal().isSigned()) {
3759 uint32_t TempVal = static_cast<uint32_t>(Val);
3760 bool Res = ParseUInt32(TempVal);
3761 Val = static_cast<DINode::DIFlags>(TempVal);
3762 return Res;
3763 }
Duncan P. N. Exon Smith70ab3d22015-02-21 01:02:18 +00003764
3765 if (Lex.getKind() != lltok::DIFlag)
3766 return TokError("expected debug info flag");
3767
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003768 Val = DINode::getFlag(Lex.getStrVal());
Duncan P. N. Exon Smith70ab3d22015-02-21 01:02:18 +00003769 if (!Val)
3770 return TokError(Twine("invalid debug info flag flag '") +
3771 Lex.getStrVal() + "'");
3772 Lex.Lex();
3773 return false;
3774 };
3775
3776 // Parse the flags and combine them together.
Leny Kholodov5fcc4182016-09-06 10:46:28 +00003777 DINode::DIFlags Combined = DINode::FlagZero;
Duncan P. N. Exon Smith70ab3d22015-02-21 01:02:18 +00003778 do {
Leny Kholodov5fcc4182016-09-06 10:46:28 +00003779 DINode::DIFlags Val;
Duncan P. N. Exon Smith70ab3d22015-02-21 01:02:18 +00003780 if (parseFlag(Val))
3781 return true;
3782 Combined |= Val;
3783 } while (EatIfPresent(lltok::bar));
3784
3785 Result.assign(Combined);
3786 return false;
3787}
3788
Duncan P. N. Exon Smithcd6636c2015-02-13 01:17:35 +00003789template <>
3790bool LLParser::ParseMDField(LocTy Loc, StringRef Name,
Duncan P. N. Exon Smithc7363f12015-02-13 01:10:38 +00003791 MDSignedField &Result) {
3792 if (Lex.getKind() != lltok::APSInt)
3793 return TokError("expected signed integer");
3794
3795 auto &S = Lex.getAPSIntVal();
3796 if (S < Result.Min)
3797 return TokError("value for '" + Name + "' too small, limit is " +
3798 Twine(Result.Min));
3799 if (S > Result.Max)
3800 return TokError("value for '" + Name + "' too large, limit is " +
3801 Twine(Result.Max));
3802 Result.assign(S.getExtValue());
3803 assert(Result.Val >= Result.Min && "Expected value in range");
3804 assert(Result.Val <= Result.Max && "Expected value in range");
3805 Lex.Lex();
3806 return false;
3807}
3808
3809template <>
Duncan P. N. Exon Smithaece2dc2015-02-13 01:21:25 +00003810bool LLParser::ParseMDField(LocTy Loc, StringRef Name, MDBoolField &Result) {
3811 switch (Lex.getKind()) {
3812 default:
3813 return TokError("expected 'true' or 'false'");
3814 case lltok::kw_true:
3815 Result.assign(true);
3816 break;
3817 case lltok::kw_false:
3818 Result.assign(false);
3819 break;
3820 }
3821 Lex.Lex();
3822 return false;
3823}
3824
3825template <>
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003826bool LLParser::ParseMDField(LocTy Loc, StringRef Name, MDField &Result) {
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003827 if (Lex.getKind() == lltok::kw_null) {
Duncan P. N. Exon Smithe2c61d92015-03-27 17:56:39 +00003828 if (!Result.AllowNull)
3829 return TokError("'" + Name + "' cannot be null");
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003830 Lex.Lex();
3831 Result.assign(nullptr);
3832 return false;
3833 }
3834
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003835 Metadata *MD;
3836 if (ParseMetadata(MD, nullptr))
3837 return true;
3838
3839 Result.assign(MD);
3840 return false;
3841}
3842
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003843template <>
Duncan P. N. Exon Smith4e4aa702015-02-03 21:54:14 +00003844bool LLParser::ParseMDField(LocTy Loc, StringRef Name, MDStringField &Result) {
Duncan P. N. Exon Smith94d58f82015-03-31 01:28:22 +00003845 LocTy ValueLoc = Lex.getLoc();
Duncan P. N. Exon Smith4e4aa702015-02-03 21:54:14 +00003846 std::string S;
3847 if (ParseStringConstant(S))
3848 return true;
3849
Duncan P. N. Exon Smith94d58f82015-03-31 01:28:22 +00003850 if (!Result.AllowEmpty && S.empty())
3851 return Error(ValueLoc, "'" + Name + "' cannot be empty");
3852
Duncan P. N. Exon Smith3d2afaa2015-03-27 17:29:58 +00003853 Result.assign(S.empty() ? nullptr : MDString::get(Context, S));
Duncan P. N. Exon Smith4e4aa702015-02-03 21:54:14 +00003854 return false;
3855}
3856
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003857template <>
Duncan P. N. Exon Smith4e4aa702015-02-03 21:54:14 +00003858bool LLParser::ParseMDField(LocTy Loc, StringRef Name, MDFieldList &Result) {
3859 SmallVector<Metadata *, 4> MDs;
3860 if (ParseMDNodeVector(MDs))
3861 return true;
3862
3863 Result.assign(std::move(MDs));
3864 return false;
3865}
3866
Amjad Aboud7faeecc2016-12-25 10:12:09 +00003867template <>
3868bool LLParser::ParseMDField(LocTy Loc, StringRef Name,
3869 ChecksumKindField &Result) {
3870 if (Lex.getKind() != lltok::ChecksumKind)
3871 return TokError(
3872 "invalid checksum kind" + Twine(" '") + Lex.getStrVal() + "'");
3873
3874 DIFile::ChecksumKind CSKind = DIFile::getChecksumKind(Lex.getStrVal());
3875
3876 Result.assign(CSKind);
3877 Lex.Lex();
3878 return false;
3879}
3880
Duncan P. N. Exon Smith2f09c462015-02-04 22:13:28 +00003881} // end namespace llvm
3882
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003883template <class ParserTy>
Duncan P. N. Exon Smith66ca92e2015-01-19 23:39:32 +00003884bool LLParser::ParseMDFieldsImplBody(ParserTy parseField) {
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003885 do {
3886 if (Lex.getKind() != lltok::LabelStr)
3887 return TokError("expected field label here");
3888
3889 if (parseField())
3890 return true;
3891 } while (EatIfPresent(lltok::comma));
3892
Duncan P. N. Exon Smith66ca92e2015-01-19 23:39:32 +00003893 return false;
3894}
3895
3896template <class ParserTy>
3897bool LLParser::ParseMDFieldsImpl(ParserTy parseField, LocTy &ClosingLoc) {
3898 assert(Lex.getKind() == lltok::MetadataVar && "Expected metadata type name");
3899 Lex.Lex();
3900
3901 if (ParseToken(lltok::lparen, "expected '(' here"))
3902 return true;
3903 if (Lex.getKind() != lltok::rparen)
3904 if (ParseMDFieldsImplBody(parseField))
3905 return true;
3906
Duncan P. N. Exon Smith13890af2015-01-19 23:32:36 +00003907 ClosingLoc = Lex.getLoc();
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003908 return ParseToken(lltok::rparen, "expected ')' here");
3909}
3910
Duncan P. N. Exon Smitha7477282015-01-20 02:42:29 +00003911template <class FieldTy>
3912bool LLParser::ParseMDField(StringRef Name, FieldTy &Result) {
3913 if (Result.Seen)
3914 return TokError("field '" + Name + "' cannot be specified more than once");
3915
3916 LocTy Loc = Lex.getLoc();
3917 Lex.Lex();
3918 return ParseMDField(Loc, Name, Result);
3919}
3920
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003921bool LLParser::ParseSpecializedMDNode(MDNode *&N, bool IsDistinct) {
3922 assert(Lex.getKind() == lltok::MetadataVar && "Expected metadata type name");
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003923
3924#define HANDLE_SPECIALIZED_MDNODE_LEAF(CLASS) \
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003925 if (Lex.getStrVal() == #CLASS) \
3926 return Parse##CLASS(N, IsDistinct);
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003927#include "llvm/IR/Metadata.def"
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003928
3929 return TokError("expected metadata type");
3930}
3931
Duncan P. N. Exon Smith2a6b5fc2015-01-19 23:44:41 +00003932#define DECLARE_FIELD(NAME, TYPE, INIT) TYPE NAME INIT
3933#define NOP_FIELD(NAME, TYPE, INIT)
3934#define REQUIRE_FIELD(NAME, TYPE, INIT) \
3935 if (!NAME.Seen) \
3936 return Error(ClosingLoc, "missing required field '" #NAME "'");
3937#define PARSE_MD_FIELD(NAME, TYPE, DEFAULT) \
Duncan P. N. Exon Smitha7477282015-01-20 02:42:29 +00003938 if (Lex.getStrVal() == #NAME) \
3939 return ParseMDField(#NAME, NAME);
Duncan P. N. Exon Smith2a6b5fc2015-01-19 23:44:41 +00003940#define PARSE_MD_FIELDS() \
3941 VISIT_MD_FIELDS(DECLARE_FIELD, DECLARE_FIELD) \
3942 do { \
3943 LocTy ClosingLoc; \
3944 if (ParseMDFieldsImpl([&]() -> bool { \
3945 VISIT_MD_FIELDS(PARSE_MD_FIELD, PARSE_MD_FIELD) \
3946 return TokError(Twine("invalid field '") + Lex.getStrVal() + "'"); \
3947 }, ClosingLoc)) \
3948 return true; \
3949 VISIT_MD_FIELDS(NOP_FIELD, REQUIRE_FIELD) \
3950 } while (false)
Duncan P. N. Exon Smith4e4aa702015-02-03 21:54:14 +00003951#define GET_OR_DISTINCT(CLASS, ARGS) \
3952 (IsDistinct ? CLASS::getDistinct ARGS : CLASS::get ARGS)
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003953
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003954/// ParseDILocationFields:
3955/// ::= !DILocation(line: 43, column: 8, scope: !5, inlinedAt: !6)
3956bool LLParser::ParseDILocation(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith2a6b5fc2015-01-19 23:44:41 +00003957#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith9c93dc62015-02-04 22:59:18 +00003958 OPTIONAL(line, LineField, ); \
3959 OPTIONAL(column, ColumnField, ); \
Duncan P. N. Exon Smithe2c61d92015-03-27 17:56:39 +00003960 REQUIRED(scope, MDField, (/* AllowNull */ false)); \
Duncan P. N. Exon Smith2a6b5fc2015-01-19 23:44:41 +00003961 OPTIONAL(inlinedAt, MDField, );
3962 PARSE_MD_FIELDS();
3963#undef VISIT_MD_FIELDS
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003964
Duncan P. N. Exon Smith26489982015-03-26 22:05:04 +00003965 Result = GET_OR_DISTINCT(
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003966 DILocation, (Context, line.Val, column.Val, scope.Val, inlinedAt.Val));
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003967 return false;
3968}
Duncan P. N. Exon Smith4e4aa702015-02-03 21:54:14 +00003969
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003970/// ParseGenericDINode:
3971/// ::= !GenericDINode(tag: 15, header: "...", operands: {...})
3972bool LLParser::ParseGenericDINode(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith4e4aa702015-02-03 21:54:14 +00003973#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith97486072015-02-03 21:56:01 +00003974 REQUIRED(tag, DwarfTagField, ); \
Duncan P. N. Exon Smith4e4aa702015-02-03 21:54:14 +00003975 OPTIONAL(header, MDStringField, ); \
3976 OPTIONAL(operands, MDFieldList, );
3977 PARSE_MD_FIELDS();
3978#undef VISIT_MD_FIELDS
3979
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003980 Result = GET_OR_DISTINCT(GenericDINode,
Duncan P. N. Exon Smith4e4aa702015-02-03 21:54:14 +00003981 (Context, tag.Val, header.Val, operands.Val));
3982 return false;
3983}
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003984
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003985/// ParseDISubrange:
3986/// ::= !DISubrange(count: 30, lowerBound: 2)
3987bool LLParser::ParseDISubrange(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smithc7363f12015-02-13 01:10:38 +00003988#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith5c9a1772015-02-18 23:17:51 +00003989 REQUIRED(count, MDSignedField, (-1, -1, INT64_MAX)); \
Duncan P. N. Exon Smithc7363f12015-02-13 01:10:38 +00003990 OPTIONAL(lowerBound, MDSignedField, );
3991 PARSE_MD_FIELDS();
3992#undef VISIT_MD_FIELDS
3993
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003994 Result = GET_OR_DISTINCT(DISubrange, (Context, count.Val, lowerBound.Val));
Duncan P. N. Exon Smithc7363f12015-02-13 01:10:38 +00003995 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003996}
Duncan P. N. Exon Smithc7363f12015-02-13 01:10:38 +00003997
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003998/// ParseDIEnumerator:
3999/// ::= !DIEnumerator(value: 30, name: "SomeKind")
4000bool LLParser::ParseDIEnumerator(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith87754762015-02-13 01:14:11 +00004001#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smithcd8fb602015-02-18 21:16:33 +00004002 REQUIRED(name, MDStringField, ); \
4003 REQUIRED(value, MDSignedField, );
Duncan P. N. Exon Smith87754762015-02-13 01:14:11 +00004004 PARSE_MD_FIELDS();
4005#undef VISIT_MD_FIELDS
4006
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004007 Result = GET_OR_DISTINCT(DIEnumerator, (Context, value.Val, name.Val));
Duncan P. N. Exon Smith87754762015-02-13 01:14:11 +00004008 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00004009}
Duncan P. N. Exon Smith87754762015-02-13 01:14:11 +00004010
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004011/// ParseDIBasicType:
4012/// ::= !DIBasicType(tag: DW_TAG_base_type, name: "int", size: 32, align: 32)
4013bool LLParser::ParseDIBasicType(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith09e03f32015-02-13 01:14:58 +00004014#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith16d182a2015-02-28 23:21:38 +00004015 OPTIONAL(tag, DwarfTagField, (dwarf::DW_TAG_base_type)); \
Duncan P. N. Exon Smith09e03f32015-02-13 01:14:58 +00004016 OPTIONAL(name, MDStringField, ); \
Duncan P. N. Exon Smithd34db172015-02-19 23:56:07 +00004017 OPTIONAL(size, MDUnsignedField, (0, UINT64_MAX)); \
Victor Leschuk197aa312016-10-18 14:31:22 +00004018 OPTIONAL(align, MDUnsignedField, (0, UINT32_MAX)); \
Duncan P. N. Exon Smithcd6636c2015-02-13 01:17:35 +00004019 OPTIONAL(encoding, DwarfAttEncodingField, );
Duncan P. N. Exon Smith09e03f32015-02-13 01:14:58 +00004020 PARSE_MD_FIELDS();
4021#undef VISIT_MD_FIELDS
4022
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004023 Result = GET_OR_DISTINCT(DIBasicType, (Context, tag.Val, name.Val, size.Val,
Duncan P. N. Exon Smith09e03f32015-02-13 01:14:58 +00004024 align.Val, encoding.Val));
4025 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00004026}
Duncan P. N. Exon Smith09e03f32015-02-13 01:14:58 +00004027
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004028/// ParseDIDerivedType:
4029/// ::= !DIDerivedType(tag: DW_TAG_pointer_type, name: "int", file: !0,
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00004030/// line: 7, scope: !1, baseType: !2, size: 32,
Konstantin Zhuravlyovd5561e02017-03-08 23:55:44 +00004031/// align: 32, offset: 0, flags: 0, extraData: !3,
4032/// dwarfAddressSpace: 3)
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004033bool LLParser::ParseDIDerivedType(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00004034#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
4035 REQUIRED(tag, DwarfTagField, ); \
4036 OPTIONAL(name, MDStringField, ); \
4037 OPTIONAL(file, MDField, ); \
4038 OPTIONAL(line, LineField, ); \
4039 OPTIONAL(scope, MDField, ); \
4040 REQUIRED(baseType, MDField, ); \
Duncan P. N. Exon Smithd34db172015-02-19 23:56:07 +00004041 OPTIONAL(size, MDUnsignedField, (0, UINT64_MAX)); \
Victor Leschuk197aa312016-10-18 14:31:22 +00004042 OPTIONAL(align, MDUnsignedField, (0, UINT32_MAX)); \
Duncan P. N. Exon Smithd34db172015-02-19 23:56:07 +00004043 OPTIONAL(offset, MDUnsignedField, (0, UINT64_MAX)); \
Duncan P. N. Exon Smith70ab3d22015-02-21 01:02:18 +00004044 OPTIONAL(flags, DIFlagField, ); \
Konstantin Zhuravlyovd5561e02017-03-08 23:55:44 +00004045 OPTIONAL(extraData, MDField, ); \
4046 OPTIONAL(dwarfAddressSpace, MDUnsignedField, (UINT32_MAX, UINT32_MAX));
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00004047 PARSE_MD_FIELDS();
4048#undef VISIT_MD_FIELDS
4049
Konstantin Zhuravlyovd5561e02017-03-08 23:55:44 +00004050 Optional<unsigned> DWARFAddressSpace;
4051 if (dwarfAddressSpace.Val != UINT32_MAX)
4052 DWARFAddressSpace = dwarfAddressSpace.Val;
4053
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004054 Result = GET_OR_DISTINCT(DIDerivedType,
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00004055 (Context, tag.Val, name.Val, file.Val, line.Val,
4056 scope.Val, baseType.Val, size.Val, align.Val,
Konstantin Zhuravlyovd5561e02017-03-08 23:55:44 +00004057 offset.Val, DWARFAddressSpace, flags.Val,
4058 extraData.Val));
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00004059 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00004060}
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00004061
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004062bool LLParser::ParseDICompositeType(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00004063#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
4064 REQUIRED(tag, DwarfTagField, ); \
4065 OPTIONAL(name, MDStringField, ); \
4066 OPTIONAL(file, MDField, ); \
4067 OPTIONAL(line, LineField, ); \
4068 OPTIONAL(scope, MDField, ); \
4069 OPTIONAL(baseType, MDField, ); \
Duncan P. N. Exon Smithd34db172015-02-19 23:56:07 +00004070 OPTIONAL(size, MDUnsignedField, (0, UINT64_MAX)); \
Victor Leschuk197aa312016-10-18 14:31:22 +00004071 OPTIONAL(align, MDUnsignedField, (0, UINT32_MAX)); \
Duncan P. N. Exon Smithd34db172015-02-19 23:56:07 +00004072 OPTIONAL(offset, MDUnsignedField, (0, UINT64_MAX)); \
Duncan P. N. Exon Smith70ab3d22015-02-21 01:02:18 +00004073 OPTIONAL(flags, DIFlagField, ); \
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00004074 OPTIONAL(elements, MDField, ); \
Duncan P. N. Exon Smithaece2dc2015-02-13 01:21:25 +00004075 OPTIONAL(runtimeLang, DwarfLangField, ); \
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00004076 OPTIONAL(vtableHolder, MDField, ); \
4077 OPTIONAL(templateParams, MDField, ); \
4078 OPTIONAL(identifier, MDStringField, );
4079 PARSE_MD_FIELDS();
4080#undef VISIT_MD_FIELDS
4081
Duncan P. N. Exon Smith97386022016-04-19 18:00:19 +00004082 // If this has an identifier try to build an ODR type.
4083 if (identifier.Val)
4084 if (auto *CT = DICompositeType::buildODRType(
Duncan P. N. Exon Smith0b0271e2016-04-19 14:55:09 +00004085 Context, *identifier.Val, tag.Val, name.Val, file.Val, line.Val,
4086 scope.Val, baseType.Val, size.Val, align.Val, offset.Val, flags.Val,
4087 elements.Val, runtimeLang.Val, vtableHolder.Val,
4088 templateParams.Val)) {
4089 Result = CT;
4090 return false;
4091 }
Duncan P. N. Exon Smith5ab2be02016-04-17 03:58:21 +00004092
4093 // Create a new node, and save it in the context if it belongs in the type
4094 // map.
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00004095 Result = GET_OR_DISTINCT(
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004096 DICompositeType,
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00004097 (Context, tag.Val, name.Val, file.Val, line.Val, scope.Val, baseType.Val,
4098 size.Val, align.Val, offset.Val, flags.Val, elements.Val,
4099 runtimeLang.Val, vtableHolder.Val, templateParams.Val, identifier.Val));
4100 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00004101}
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00004102
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004103bool LLParser::ParseDISubroutineType(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith54e2bc62015-02-13 01:22:59 +00004104#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith70ab3d22015-02-21 01:02:18 +00004105 OPTIONAL(flags, DIFlagField, ); \
Reid Klecknerde3d8b52016-06-08 20:34:29 +00004106 OPTIONAL(cc, DwarfCCField, ); \
Duncan P. N. Exon Smith54e2bc62015-02-13 01:22:59 +00004107 REQUIRED(types, MDField, );
4108 PARSE_MD_FIELDS();
4109#undef VISIT_MD_FIELDS
4110
Reid Klecknerde3d8b52016-06-08 20:34:29 +00004111 Result = GET_OR_DISTINCT(DISubroutineType,
4112 (Context, flags.Val, cc.Val, types.Val));
Duncan P. N. Exon Smith54e2bc62015-02-13 01:22:59 +00004113 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00004114}
Duncan P. N. Exon Smithf14b9c72015-02-13 01:19:14 +00004115
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004116/// ParseDIFileType:
Amjad Aboud7faeecc2016-12-25 10:12:09 +00004117/// ::= !DIFileType(filename: "path/to/file", directory: "/path/to/dir"
4118/// checksumkind: CSK_MD5,
4119/// checksum: "000102030405060708090a0b0c0d0e0f")
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004120bool LLParser::ParseDIFile(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smithf14b9c72015-02-13 01:19:14 +00004121#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
4122 REQUIRED(filename, MDStringField, ); \
Amjad Aboud7faeecc2016-12-25 10:12:09 +00004123 REQUIRED(directory, MDStringField, ); \
4124 OPTIONAL(checksumkind, ChecksumKindField, ); \
4125 OPTIONAL(checksum, MDStringField, );
Duncan P. N. Exon Smithf14b9c72015-02-13 01:19:14 +00004126 PARSE_MD_FIELDS();
4127#undef VISIT_MD_FIELDS
4128
Amjad Aboud7faeecc2016-12-25 10:12:09 +00004129 Result = GET_OR_DISTINCT(DIFile, (Context, filename.Val, directory.Val,
4130 checksumkind.Val, checksum.Val));
Duncan P. N. Exon Smithf14b9c72015-02-13 01:19:14 +00004131 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00004132}
Duncan P. N. Exon Smithf14b9c72015-02-13 01:19:14 +00004133
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004134/// ParseDICompileUnit:
4135/// ::= !DICompileUnit(language: DW_LANG_C99, file: !0, producer: "clang",
Duncan P. N. Exon Smithc1f1acc2015-02-13 01:25:10 +00004136/// isOptimized: true, flags: "-O2", runtimeVersion: 1,
Adrian Prantlb939a252016-03-31 23:56:58 +00004137/// splitDebugFilename: "abc.debug",
Adrian Prantl75819ae2016-04-15 15:57:41 +00004138/// emissionKind: FullDebug, enums: !1, retainedTypes: !2,
Amjad Abouda9bcf162015-12-10 12:56:35 +00004139/// globals: !4, imports: !5, macros: !6, dwoId: 0x0abcd)
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004140bool LLParser::ParseDICompileUnit(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith55ca9642015-08-03 17:26:41 +00004141 if (!IsDistinct)
4142 return Lex.Error("missing 'distinct', required for !DICompileUnit");
4143
Duncan P. N. Exon Smithc1f1acc2015-02-13 01:25:10 +00004144#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
4145 REQUIRED(language, DwarfLangField, ); \
Duncan P. N. Exon Smithcd07efa12015-03-31 00:47:15 +00004146 REQUIRED(file, MDField, (/* AllowNull */ false)); \
Duncan P. N. Exon Smithc1f1acc2015-02-13 01:25:10 +00004147 OPTIONAL(producer, MDStringField, ); \
4148 OPTIONAL(isOptimized, MDBoolField, ); \
4149 OPTIONAL(flags, MDStringField, ); \
4150 OPTIONAL(runtimeVersion, MDUnsignedField, (0, UINT32_MAX)); \
4151 OPTIONAL(splitDebugFilename, MDStringField, ); \
Adrian Prantlb939a252016-03-31 23:56:58 +00004152 OPTIONAL(emissionKind, EmissionKindField, ); \
Duncan P. N. Exon Smithc1f1acc2015-02-13 01:25:10 +00004153 OPTIONAL(enums, MDField, ); \
4154 OPTIONAL(retainedTypes, MDField, ); \
Duncan P. N. Exon Smithc1f1acc2015-02-13 01:25:10 +00004155 OPTIONAL(globals, MDField, ); \
Adrian Prantl1f599f92015-05-21 20:37:30 +00004156 OPTIONAL(imports, MDField, ); \
Amjad Abouda9bcf162015-12-10 12:56:35 +00004157 OPTIONAL(macros, MDField, ); \
David Blaikiea01f2952016-08-24 18:29:49 +00004158 OPTIONAL(dwoId, MDUnsignedField, ); \
Dehao Chen0944a8c2017-02-01 22:45:09 +00004159 OPTIONAL(splitDebugInlining, MDBoolField, = true); \
Peter Collingbourneb52e2362017-09-12 21:50:41 +00004160 OPTIONAL(debugInfoForProfiling, MDBoolField, = false); \
4161 OPTIONAL(gnuPubnames, MDBoolField, = false);
Duncan P. N. Exon Smithc1f1acc2015-02-13 01:25:10 +00004162 PARSE_MD_FIELDS();
4163#undef VISIT_MD_FIELDS
4164
Duncan P. N. Exon Smith55ca9642015-08-03 17:26:41 +00004165 Result = DICompileUnit::getDistinct(
4166 Context, language.Val, file.Val, producer.Val, isOptimized.Val, flags.Val,
4167 runtimeVersion.Val, splitDebugFilename.Val, emissionKind.Val, enums.Val,
David Blaikiea01f2952016-08-24 18:29:49 +00004168 retainedTypes.Val, globals.Val, imports.Val, macros.Val, dwoId.Val,
Peter Collingbourneb52e2362017-09-12 21:50:41 +00004169 splitDebugInlining.Val, debugInfoForProfiling.Val, gnuPubnames.Val);
Duncan P. N. Exon Smithc1f1acc2015-02-13 01:25:10 +00004170 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00004171}
Duncan P. N. Exon Smithc1f1acc2015-02-13 01:25:10 +00004172
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004173/// ParseDISubprogram:
4174/// ::= !DISubprogram(scope: !0, name: "foo", linkageName: "_Zfoo",
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00004175/// file: !1, line: 7, type: !2, isLocal: false,
4176/// isDefinition: true, scopeLine: 8, containingType: !3,
Duncan P. N. Exon Smith890533e2015-02-13 01:28:16 +00004177/// virtuality: DW_VIRTUALTIY_pure_virtual,
Reid Klecknerb5af11d2016-07-01 02:41:21 +00004178/// virtualIndex: 10, thisAdjustment: 4, flags: 11,
Peter Collingbourned4bff302015-11-05 22:03:56 +00004179/// isOptimized: false, templateParams: !4, declaration: !5,
Adrian Prantl1d12b882017-04-26 22:56:44 +00004180/// variables: !6, thrownTypes: !7)
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004181bool LLParser::ParseDISubprogram(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith814b8e92015-08-28 20:26:49 +00004182 auto Loc = Lex.getLoc();
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00004183#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
4184 OPTIONAL(scope, MDField, ); \
Duncan P. N. Exon Smith3eea1962015-03-16 19:01:54 +00004185 OPTIONAL(name, MDStringField, ); \
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00004186 OPTIONAL(linkageName, MDStringField, ); \
4187 OPTIONAL(file, MDField, ); \
4188 OPTIONAL(line, LineField, ); \
4189 OPTIONAL(type, MDField, ); \
4190 OPTIONAL(isLocal, MDBoolField, ); \
4191 OPTIONAL(isDefinition, MDBoolField, (true)); \
4192 OPTIONAL(scopeLine, LineField, ); \
4193 OPTIONAL(containingType, MDField, ); \
Duncan P. N. Exon Smith890533e2015-02-13 01:28:16 +00004194 OPTIONAL(virtuality, DwarfVirtualityField, ); \
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00004195 OPTIONAL(virtualIndex, MDUnsignedField, (0, UINT32_MAX)); \
Reid Klecknerb5af11d2016-07-01 02:41:21 +00004196 OPTIONAL(thisAdjustment, MDSignedField, (0, INT32_MIN, INT32_MAX)); \
Duncan P. N. Exon Smith70ab3d22015-02-21 01:02:18 +00004197 OPTIONAL(flags, DIFlagField, ); \
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00004198 OPTIONAL(isOptimized, MDBoolField, ); \
Adrian Prantl75819ae2016-04-15 15:57:41 +00004199 OPTIONAL(unit, MDField, ); \
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00004200 OPTIONAL(templateParams, MDField, ); \
4201 OPTIONAL(declaration, MDField, ); \
Adrian Prantl1d12b882017-04-26 22:56:44 +00004202 OPTIONAL(variables, MDField, ); \
4203 OPTIONAL(thrownTypes, MDField, );
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00004204 PARSE_MD_FIELDS();
4205#undef VISIT_MD_FIELDS
4206
Duncan P. N. Exon Smith814b8e92015-08-28 20:26:49 +00004207 if (isDefinition.Val && !IsDistinct)
4208 return Lex.Error(
4209 Loc,
4210 "missing 'distinct', required for !DISubprogram when 'isDefinition'");
4211
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00004212 Result = GET_OR_DISTINCT(
Adrian Prantl1d12b882017-04-26 22:56:44 +00004213 DISubprogram,
4214 (Context, scope.Val, name.Val, linkageName.Val, file.Val, line.Val,
4215 type.Val, isLocal.Val, isDefinition.Val, scopeLine.Val,
4216 containingType.Val, virtuality.Val, virtualIndex.Val, thisAdjustment.Val,
4217 flags.Val, isOptimized.Val, unit.Val, templateParams.Val,
4218 declaration.Val, variables.Val, thrownTypes.Val));
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00004219 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00004220}
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00004221
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004222/// ParseDILexicalBlock:
4223/// ::= !DILexicalBlock(scope: !0, file: !2, line: 7, column: 9)
4224bool LLParser::ParseDILexicalBlock(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smitha96d4092015-02-13 01:29:28 +00004225#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith0e202b92015-03-30 16:37:48 +00004226 REQUIRED(scope, MDField, (/* AllowNull */ false)); \
Duncan P. N. Exon Smitha96d4092015-02-13 01:29:28 +00004227 OPTIONAL(file, MDField, ); \
4228 OPTIONAL(line, LineField, ); \
4229 OPTIONAL(column, ColumnField, );
4230 PARSE_MD_FIELDS();
4231#undef VISIT_MD_FIELDS
4232
4233 Result = GET_OR_DISTINCT(
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004234 DILexicalBlock, (Context, scope.Val, file.Val, line.Val, column.Val));
Duncan P. N. Exon Smitha96d4092015-02-13 01:29:28 +00004235 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00004236}
Duncan P. N. Exon Smitha96d4092015-02-13 01:29:28 +00004237
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004238/// ParseDILexicalBlockFile:
4239/// ::= !DILexicalBlockFile(scope: !0, file: !2, discriminator: 9)
4240bool LLParser::ParseDILexicalBlockFile(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith06a07022015-02-13 01:30:42 +00004241#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith0e202b92015-03-30 16:37:48 +00004242 REQUIRED(scope, MDField, (/* AllowNull */ false)); \
Duncan P. N. Exon Smith06a07022015-02-13 01:30:42 +00004243 OPTIONAL(file, MDField, ); \
4244 REQUIRED(discriminator, MDUnsignedField, (0, UINT32_MAX));
4245 PARSE_MD_FIELDS();
4246#undef VISIT_MD_FIELDS
4247
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004248 Result = GET_OR_DISTINCT(DILexicalBlockFile,
Duncan P. N. Exon Smith06a07022015-02-13 01:30:42 +00004249 (Context, scope.Val, file.Val, discriminator.Val));
4250 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00004251}
Duncan P. N. Exon Smith06a07022015-02-13 01:30:42 +00004252
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004253/// ParseDINamespace:
4254/// ::= !DINamespace(scope: !0, file: !2, name: "SomeNamespace", line: 9)
4255bool LLParser::ParseDINamespace(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smithe1460002015-02-13 01:32:09 +00004256#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
4257 REQUIRED(scope, MDField, ); \
Duncan P. N. Exon Smithe1460002015-02-13 01:32:09 +00004258 OPTIONAL(name, MDStringField, ); \
Adrian Prantldbfda632016-11-03 19:42:02 +00004259 OPTIONAL(exportSymbols, MDBoolField, );
Duncan P. N. Exon Smithe1460002015-02-13 01:32:09 +00004260 PARSE_MD_FIELDS();
4261#undef VISIT_MD_FIELDS
4262
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004263 Result = GET_OR_DISTINCT(DINamespace,
Adrian Prantlfed4f392017-04-28 22:25:46 +00004264 (Context, scope.Val, name.Val, exportSymbols.Val));
Duncan P. N. Exon Smithe1460002015-02-13 01:32:09 +00004265 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00004266}
Duncan P. N. Exon Smithe1460002015-02-13 01:32:09 +00004267
Amjad Abouda9bcf162015-12-10 12:56:35 +00004268/// ParseDIMacro:
4269/// ::= !DIMacro(macinfo: type, line: 9, name: "SomeMacro", value: "SomeValue")
4270bool LLParser::ParseDIMacro(MDNode *&Result, bool IsDistinct) {
4271#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
4272 REQUIRED(type, DwarfMacinfoTypeField, ); \
Adrian Prantl58c19102016-12-22 00:29:00 +00004273 OPTIONAL(line, LineField, ); \
Amjad Abouda9bcf162015-12-10 12:56:35 +00004274 REQUIRED(name, MDStringField, ); \
4275 OPTIONAL(value, MDStringField, );
4276 PARSE_MD_FIELDS();
4277#undef VISIT_MD_FIELDS
4278
4279 Result = GET_OR_DISTINCT(DIMacro,
4280 (Context, type.Val, line.Val, name.Val, value.Val));
4281 return false;
4282}
4283
4284/// ParseDIMacroFile:
4285/// ::= !DIMacroFile(line: 9, file: !2, nodes: !3)
4286bool LLParser::ParseDIMacroFile(MDNode *&Result, bool IsDistinct) {
4287#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
4288 OPTIONAL(type, DwarfMacinfoTypeField, (dwarf::DW_MACINFO_start_file)); \
Adrian Prantl58c19102016-12-22 00:29:00 +00004289 OPTIONAL(line, LineField, ); \
Amjad Abouda9bcf162015-12-10 12:56:35 +00004290 REQUIRED(file, MDField, ); \
4291 OPTIONAL(nodes, MDField, );
4292 PARSE_MD_FIELDS();
4293#undef VISIT_MD_FIELDS
4294
4295 Result = GET_OR_DISTINCT(DIMacroFile,
4296 (Context, type.Val, line.Val, file.Val, nodes.Val));
4297 return false;
4298}
4299
Adrian Prantlab1243f2015-06-29 23:03:47 +00004300/// ParseDIModule:
4301/// ::= !DIModule(scope: !0, name: "SomeModule", configMacros: "-DNDEBUG",
4302/// includePath: "/usr/include", isysroot: "/")
4303bool LLParser::ParseDIModule(MDNode *&Result, bool IsDistinct) {
4304#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
4305 REQUIRED(scope, MDField, ); \
4306 REQUIRED(name, MDStringField, ); \
4307 OPTIONAL(configMacros, MDStringField, ); \
4308 OPTIONAL(includePath, MDStringField, ); \
4309 OPTIONAL(isysroot, MDStringField, );
4310 PARSE_MD_FIELDS();
4311#undef VISIT_MD_FIELDS
4312
4313 Result = GET_OR_DISTINCT(DIModule, (Context, scope.Val, name.Val,
4314 configMacros.Val, includePath.Val, isysroot.Val));
4315 return false;
4316}
4317
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004318/// ParseDITemplateTypeParameter:
4319/// ::= !DITemplateTypeParameter(name: "Ty", type: !1)
4320bool LLParser::ParseDITemplateTypeParameter(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith2847f382015-02-13 01:34:32 +00004321#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith2847f382015-02-13 01:34:32 +00004322 OPTIONAL(name, MDStringField, ); \
4323 REQUIRED(type, MDField, );
4324 PARSE_MD_FIELDS();
4325#undef VISIT_MD_FIELDS
4326
Duncan P. N. Exon Smith3d62bba2015-02-19 00:37:21 +00004327 Result =
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004328 GET_OR_DISTINCT(DITemplateTypeParameter, (Context, name.Val, type.Val));
Duncan P. N. Exon Smith2847f382015-02-13 01:34:32 +00004329 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00004330}
Duncan P. N. Exon Smith2847f382015-02-13 01:34:32 +00004331
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004332/// ParseDITemplateValueParameter:
4333/// ::= !DITemplateValueParameter(tag: DW_TAG_template_value_parameter,
Duncan P. N. Exon Smith3d62bba2015-02-19 00:37:21 +00004334/// name: "V", type: !1, value: i32 7)
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004335bool LLParser::ParseDITemplateValueParameter(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith2847f382015-02-13 01:34:32 +00004336#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith16d182a2015-02-28 23:21:38 +00004337 OPTIONAL(tag, DwarfTagField, (dwarf::DW_TAG_template_value_parameter)); \
Duncan P. N. Exon Smith2847f382015-02-13 01:34:32 +00004338 OPTIONAL(name, MDStringField, ); \
Duncan P. N. Exon Smith16d182a2015-02-28 23:21:38 +00004339 OPTIONAL(type, MDField, ); \
Duncan P. N. Exon Smith2847f382015-02-13 01:34:32 +00004340 REQUIRED(value, MDField, );
4341 PARSE_MD_FIELDS();
4342#undef VISIT_MD_FIELDS
4343
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004344 Result = GET_OR_DISTINCT(DITemplateValueParameter,
Duncan P. N. Exon Smith3d62bba2015-02-19 00:37:21 +00004345 (Context, tag.Val, name.Val, type.Val, value.Val));
Duncan P. N. Exon Smith2847f382015-02-13 01:34:32 +00004346 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00004347}
Duncan P. N. Exon Smith2847f382015-02-13 01:34:32 +00004348
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004349/// ParseDIGlobalVariable:
4350/// ::= !DIGlobalVariable(scope: !0, name: "foo", linkageName: "foo",
Duncan P. N. Exon Smithc8f810a2015-02-13 01:35:40 +00004351/// file: !1, line: 7, type: !2, isLocal: false,
Adrian Prantlbceaaa92016-12-20 02:09:43 +00004352/// isDefinition: true, declaration: !3, align: 8)
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004353bool LLParser::ParseDIGlobalVariable(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smithc8f810a2015-02-13 01:35:40 +00004354#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith94d58f82015-03-31 01:28:22 +00004355 REQUIRED(name, MDStringField, (/* AllowEmpty */ false)); \
Duncan P. N. Exon Smithc8f810a2015-02-13 01:35:40 +00004356 OPTIONAL(scope, MDField, ); \
Duncan P. N. Exon Smithc8f810a2015-02-13 01:35:40 +00004357 OPTIONAL(linkageName, MDStringField, ); \
4358 OPTIONAL(file, MDField, ); \
4359 OPTIONAL(line, LineField, ); \
4360 OPTIONAL(type, MDField, ); \
4361 OPTIONAL(isLocal, MDBoolField, ); \
4362 OPTIONAL(isDefinition, MDBoolField, (true)); \
Victor Leschuk2ede1262016-10-20 00:13:12 +00004363 OPTIONAL(declaration, MDField, ); \
4364 OPTIONAL(align, MDUnsignedField, (0, UINT32_MAX));
Duncan P. N. Exon Smithc8f810a2015-02-13 01:35:40 +00004365 PARSE_MD_FIELDS();
4366#undef VISIT_MD_FIELDS
4367
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004368 Result = GET_OR_DISTINCT(DIGlobalVariable,
Duncan P. N. Exon Smithc8f810a2015-02-13 01:35:40 +00004369 (Context, scope.Val, name.Val, linkageName.Val,
4370 file.Val, line.Val, type.Val, isLocal.Val,
Adrian Prantlbceaaa92016-12-20 02:09:43 +00004371 isDefinition.Val, declaration.Val, align.Val));
Duncan P. N. Exon Smithc8f810a2015-02-13 01:35:40 +00004372 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00004373}
Duncan P. N. Exon Smithc8f810a2015-02-13 01:35:40 +00004374
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004375/// ParseDILocalVariable:
Duncan P. N. Exon Smithed013cd2015-07-31 18:58:39 +00004376/// ::= !DILocalVariable(arg: 7, scope: !0, name: "foo",
Victor Leschuk2ede1262016-10-20 00:13:12 +00004377/// file: !1, line: 7, type: !2, arg: 2, flags: 7,
4378/// align: 8)
Duncan P. N. Exon Smithed013cd2015-07-31 18:58:39 +00004379/// ::= !DILocalVariable(scope: !0, name: "foo",
Victor Leschuk2ede1262016-10-20 00:13:12 +00004380/// file: !1, line: 7, type: !2, arg: 2, flags: 7,
4381/// align: 8)
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004382bool LLParser::ParseDILocalVariable(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith72fe2d02015-02-13 01:39:44 +00004383#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smithe2c61d92015-03-27 17:56:39 +00004384 REQUIRED(scope, MDField, (/* AllowNull */ false)); \
Duncan P. N. Exon Smith72fe2d02015-02-13 01:39:44 +00004385 OPTIONAL(name, MDStringField, ); \
Duncan P. N. Exon Smithed013cd2015-07-31 18:58:39 +00004386 OPTIONAL(arg, MDUnsignedField, (0, UINT16_MAX)); \
Duncan P. N. Exon Smith72fe2d02015-02-13 01:39:44 +00004387 OPTIONAL(file, MDField, ); \
4388 OPTIONAL(line, LineField, ); \
4389 OPTIONAL(type, MDField, ); \
Victor Leschuk2ede1262016-10-20 00:13:12 +00004390 OPTIONAL(flags, DIFlagField, ); \
4391 OPTIONAL(align, MDUnsignedField, (0, UINT32_MAX));
Duncan P. N. Exon Smith72fe2d02015-02-13 01:39:44 +00004392 PARSE_MD_FIELDS();
4393#undef VISIT_MD_FIELDS
4394
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004395 Result = GET_OR_DISTINCT(DILocalVariable,
Duncan P. N. Exon Smithed013cd2015-07-31 18:58:39 +00004396 (Context, scope.Val, name.Val, file.Val, line.Val,
Victor Leschuk2ede1262016-10-20 00:13:12 +00004397 type.Val, arg.Val, flags.Val, align.Val));
Duncan P. N. Exon Smith72fe2d02015-02-13 01:39:44 +00004398 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00004399}
Duncan P. N. Exon Smith72fe2d02015-02-13 01:39:44 +00004400
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004401/// ParseDIExpression:
4402/// ::= !DIExpression(0, 7, -1)
4403bool LLParser::ParseDIExpression(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith0c5c0122015-02-13 01:42:09 +00004404 assert(Lex.getKind() == lltok::MetadataVar && "Expected metadata type name");
4405 Lex.Lex();
4406
4407 if (ParseToken(lltok::lparen, "expected '(' here"))
4408 return true;
4409
4410 SmallVector<uint64_t, 8> Elements;
4411 if (Lex.getKind() != lltok::rparen)
4412 do {
4413 if (Lex.getKind() == lltok::DwarfOp) {
4414 if (unsigned Op = dwarf::getOperationEncoding(Lex.getStrVal())) {
4415 Lex.Lex();
4416 Elements.push_back(Op);
4417 continue;
4418 }
4419 return TokError(Twine("invalid DWARF op '") + Lex.getStrVal() + "'");
4420 }
4421
4422 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned())
4423 return TokError("expected unsigned integer");
4424
4425 auto &U = Lex.getAPSIntVal();
4426 if (U.ugt(UINT64_MAX))
4427 return TokError("element too large, limit is " + Twine(UINT64_MAX));
4428 Elements.push_back(U.getZExtValue());
4429 Lex.Lex();
4430 } while (EatIfPresent(lltok::comma));
4431
4432 if (ParseToken(lltok::rparen, "expected ')' here"))
4433 return true;
4434
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004435 Result = GET_OR_DISTINCT(DIExpression, (Context, Elements));
Duncan P. N. Exon Smith0c5c0122015-02-13 01:42:09 +00004436 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00004437}
Duncan P. N. Exon Smith0c5c0122015-02-13 01:42:09 +00004438
Adrian Prantlbceaaa92016-12-20 02:09:43 +00004439/// ParseDIGlobalVariableExpression:
4440/// ::= !DIGlobalVariableExpression(var: !0, expr: !1)
4441bool LLParser::ParseDIGlobalVariableExpression(MDNode *&Result,
4442 bool IsDistinct) {
4443#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
4444 REQUIRED(var, MDField, ); \
Adrian Prantl05782212017-08-30 18:06:51 +00004445 REQUIRED(expr, MDField, );
Adrian Prantlbceaaa92016-12-20 02:09:43 +00004446 PARSE_MD_FIELDS();
4447#undef VISIT_MD_FIELDS
4448
4449 Result =
4450 GET_OR_DISTINCT(DIGlobalVariableExpression, (Context, var.Val, expr.Val));
4451 return false;
4452}
4453
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004454/// ParseDIObjCProperty:
4455/// ::= !DIObjCProperty(name: "foo", file: !1, line: 7, setter: "setFoo",
Duncan P. N. Exon Smithd45ce962015-02-13 01:43:22 +00004456/// getter: "getFoo", attributes: 7, type: !2)
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004457bool LLParser::ParseDIObjCProperty(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smithd45ce962015-02-13 01:43:22 +00004458#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith3eea1962015-03-16 19:01:54 +00004459 OPTIONAL(name, MDStringField, ); \
Duncan P. N. Exon Smithd45ce962015-02-13 01:43:22 +00004460 OPTIONAL(file, MDField, ); \
4461 OPTIONAL(line, LineField, ); \
4462 OPTIONAL(setter, MDStringField, ); \
4463 OPTIONAL(getter, MDStringField, ); \
4464 OPTIONAL(attributes, MDUnsignedField, (0, UINT32_MAX)); \
4465 OPTIONAL(type, MDField, );
4466 PARSE_MD_FIELDS();
4467#undef VISIT_MD_FIELDS
4468
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004469 Result = GET_OR_DISTINCT(DIObjCProperty,
Duncan P. N. Exon Smithd45ce962015-02-13 01:43:22 +00004470 (Context, name.Val, file.Val, line.Val, setter.Val,
4471 getter.Val, attributes.Val, type.Val));
4472 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00004473}
Duncan P. N. Exon Smithd45ce962015-02-13 01:43:22 +00004474
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004475/// ParseDIImportedEntity:
4476/// ::= !DIImportedEntity(tag: DW_TAG_imported_module, scope: !0, entity: !1,
Duncan P. N. Exon Smith1c931162015-02-13 01:46:02 +00004477/// line: 7, name: "foo")
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004478bool LLParser::ParseDIImportedEntity(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith1c931162015-02-13 01:46:02 +00004479#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
4480 REQUIRED(tag, DwarfTagField, ); \
4481 REQUIRED(scope, MDField, ); \
4482 OPTIONAL(entity, MDField, ); \
Adrian Prantld63bfd22017-07-19 00:09:54 +00004483 OPTIONAL(file, MDField, ); \
Duncan P. N. Exon Smith1c931162015-02-13 01:46:02 +00004484 OPTIONAL(line, LineField, ); \
4485 OPTIONAL(name, MDStringField, );
4486 PARSE_MD_FIELDS();
4487#undef VISIT_MD_FIELDS
4488
Adrian Prantld63bfd22017-07-19 00:09:54 +00004489 Result = GET_OR_DISTINCT(
4490 DIImportedEntity,
4491 (Context, tag.Val, scope.Val, entity.Val, file.Val, line.Val, name.Val));
Duncan P. N. Exon Smith1c931162015-02-13 01:46:02 +00004492 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00004493}
Duncan P. N. Exon Smith1c931162015-02-13 01:46:02 +00004494
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00004495#undef PARSE_MD_FIELD
Duncan P. N. Exon Smith2a6b5fc2015-01-19 23:44:41 +00004496#undef NOP_FIELD
4497#undef REQUIRE_FIELD
4498#undef DECLARE_FIELD
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00004499
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00004500/// ParseMetadataAsValue
4501/// ::= metadata i32 %local
4502/// ::= metadata i32 @global
4503/// ::= metadata i32 7
4504/// ::= metadata !0
4505/// ::= metadata !{...}
4506/// ::= metadata !"string"
4507bool LLParser::ParseMetadataAsValue(Value *&V, PerFunctionState &PFS) {
4508 // Note: the type 'metadata' has already been parsed.
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00004509 Metadata *MD;
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00004510 if (ParseMetadata(MD, &PFS))
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00004511 return true;
4512
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00004513 V = MetadataAsValue::get(Context, MD);
4514 return false;
4515}
4516
4517/// ParseValueAsMetadata
4518/// ::= i32 %local
4519/// ::= i32 @global
4520/// ::= i32 7
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00004521bool LLParser::ParseValueAsMetadata(Metadata *&MD, const Twine &TypeMsg,
4522 PerFunctionState *PFS) {
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00004523 Type *Ty;
4524 LocTy Loc;
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00004525 if (ParseType(Ty, TypeMsg, Loc))
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00004526 return true;
4527 if (Ty->isMetadataTy())
4528 return Error(Loc, "invalid metadata-value-metadata roundtrip");
4529
4530 Value *V;
4531 if (ParseValue(Ty, V, PFS))
4532 return true;
4533
4534 MD = ValueAsMetadata::get(V);
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00004535 return false;
4536}
4537
4538/// ParseMetadata
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00004539/// ::= i32 %local
4540/// ::= i32 @global
4541/// ::= i32 7
Dan Gohman8939ba332010-07-14 18:26:50 +00004542/// ::= !42
4543/// ::= !{...}
4544/// ::= !"string"
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004545/// ::= !DILocation(...)
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00004546bool LLParser::ParseMetadata(Metadata *&MD, PerFunctionState *PFS) {
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00004547 if (Lex.getKind() == lltok::MetadataVar) {
4548 MDNode *N;
4549 if (ParseSpecializedMDNode(N))
4550 return true;
4551 MD = N;
4552 return false;
4553 }
4554
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00004555 // ValueAsMetadata:
4556 // <type> <value>
4557 if (Lex.getKind() != lltok::exclaim)
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00004558 return ParseValueAsMetadata(MD, "expected metadata operand", PFS);
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00004559
4560 // '!'.
4561 assert(Lex.getKind() == lltok::exclaim && "Expected '!' here");
4562 Lex.Lex();
Dan Gohman8939ba332010-07-14 18:26:50 +00004563
Duncan P. N. Exon Smith62a79192015-01-12 22:24:50 +00004564 // MDString:
4565 // ::= '!' STRINGCONSTANT
4566 if (Lex.getKind() == lltok::StringConstant) {
4567 MDString *S;
4568 if (ParseMDString(S))
4569 return true;
4570 MD = S;
4571 return false;
4572 }
4573
Dan Gohman8939ba332010-07-14 18:26:50 +00004574 // MDNode:
4575 // !{ ... }
Duncan P. N. Exon Smithf825dae2015-01-12 22:26:48 +00004576 // !7
Duncan P. N. Exon Smith62a79192015-01-12 22:24:50 +00004577 MDNode *N;
Duncan P. N. Exon Smithf825dae2015-01-12 22:26:48 +00004578 if (ParseMDNodeTail(N))
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00004579 return true;
Duncan P. N. Exon Smith62a79192015-01-12 22:24:50 +00004580 MD = N;
Dan Gohman8939ba332010-07-14 18:26:50 +00004581 return false;
4582}
4583
Victor Hernandez9d75c962010-01-11 22:31:58 +00004584//===----------------------------------------------------------------------===//
4585// Function Parsing.
4586//===----------------------------------------------------------------------===//
4587
Chris Lattner229907c2011-07-18 04:54:35 +00004588bool LLParser::ConvertValIDToValue(Type *Ty, ValID &ID, Value *&V,
David Majnemer8a1c45d2015-12-12 05:38:55 +00004589 PerFunctionState *PFS) {
Duncan Sands19d0b472010-02-16 11:11:14 +00004590 if (Ty->isFunctionTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00004591 return Error(ID.Loc, "functions are not values, refer to them as pointers");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004592
Chris Lattnerac161bf2009-01-02 07:01:27 +00004593 switch (ID.Kind) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00004594 case ValID::t_LocalID:
Victor Hernandez9d75c962010-01-11 22:31:58 +00004595 if (!PFS) return Error(ID.Loc, "invalid use of function-local name");
David Majnemer8a1c45d2015-12-12 05:38:55 +00004596 V = PFS->GetVal(ID.UIntVal, Ty, ID.Loc);
Craig Topper2617dcc2014-04-15 06:32:26 +00004597 return V == nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004598 case ValID::t_LocalName:
Victor Hernandez9d75c962010-01-11 22:31:58 +00004599 if (!PFS) return Error(ID.Loc, "invalid use of function-local name");
David Majnemer8a1c45d2015-12-12 05:38:55 +00004600 V = PFS->GetVal(ID.StrVal, Ty, ID.Loc);
Craig Topper2617dcc2014-04-15 06:32:26 +00004601 return V == nullptr;
Victor Hernandez9d75c962010-01-11 22:31:58 +00004602 case ValID::t_InlineAsm: {
Karl Schimpf44876c52015-09-03 16:18:32 +00004603 if (!ID.FTy || !InlineAsm::Verify(ID.FTy, ID.StrVal2))
Victor Hernandez9d75c962010-01-11 22:31:58 +00004604 return Error(ID.Loc, "invalid type for inline asm constraint string");
David Blaikie41ba2b42015-07-27 23:32:19 +00004605 V = InlineAsm::get(ID.FTy, ID.StrVal, ID.StrVal2, ID.UIntVal & 1,
4606 (ID.UIntVal >> 1) & 1,
4607 (InlineAsm::AsmDialect(ID.UIntVal >> 2)));
Victor Hernandez9d75c962010-01-11 22:31:58 +00004608 return false;
4609 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00004610 case ValID::t_GlobalName:
4611 V = GetGlobalVal(ID.StrVal, Ty, ID.Loc);
Craig Topper2617dcc2014-04-15 06:32:26 +00004612 return V == nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004613 case ValID::t_GlobalID:
4614 V = GetGlobalVal(ID.UIntVal, Ty, ID.Loc);
Craig Topper2617dcc2014-04-15 06:32:26 +00004615 return V == nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004616 case ValID::t_APSInt:
Duncan Sands19d0b472010-02-16 11:11:14 +00004617 if (!Ty->isIntegerTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00004618 return Error(ID.Loc, "integer constant must have integer type");
Jay Foad583abbc2010-12-07 08:25:19 +00004619 ID.APSIntVal = ID.APSIntVal.extOrTrunc(Ty->getPrimitiveSizeInBits());
Owen Andersonedb4a702009-07-24 23:12:02 +00004620 V = ConstantInt::get(Context, ID.APSIntVal);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004621 return false;
4622 case ValID::t_APFloat:
Duncan Sands9dff9be2010-02-15 16:12:20 +00004623 if (!Ty->isFloatingPointTy() ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00004624 !ConstantFP::isValueValidForType(Ty, ID.APFloatVal))
4625 return Error(ID.Loc, "floating point constant invalid for type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004626
Dan Gohman518cda42011-12-17 00:04:22 +00004627 // The lexer has no type info, so builds all half, float, and double FP
4628 // constants as double. Fix this here. Long double does not need this.
Stephan Bergmann17c7f702016-12-14 11:57:17 +00004629 if (&ID.APFloatVal.getSemantics() == &APFloat::IEEEdouble()) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00004630 bool Ignored;
Dan Gohman518cda42011-12-17 00:04:22 +00004631 if (Ty->isHalfTy())
Stephan Bergmann17c7f702016-12-14 11:57:17 +00004632 ID.APFloatVal.convert(APFloat::IEEEhalf(), APFloat::rmNearestTiesToEven,
Dan Gohman518cda42011-12-17 00:04:22 +00004633 &Ignored);
4634 else if (Ty->isFloatTy())
Stephan Bergmann17c7f702016-12-14 11:57:17 +00004635 ID.APFloatVal.convert(APFloat::IEEEsingle(), APFloat::rmNearestTiesToEven,
Dan Gohman518cda42011-12-17 00:04:22 +00004636 &Ignored);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004637 }
Owen Anderson69c464d2009-07-27 20:59:43 +00004638 V = ConstantFP::get(Context, ID.APFloatVal);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004639
Chris Lattner8f57d29e2009-01-05 18:24:23 +00004640 if (V->getType() != Ty)
4641 return Error(ID.Loc, "floating point constant does not have type '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00004642 getTypeString(Ty) + "'");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004643
Chris Lattnerac161bf2009-01-02 07:01:27 +00004644 return false;
4645 case ValID::t_Null:
Duncan Sands19d0b472010-02-16 11:11:14 +00004646 if (!Ty->isPointerTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00004647 return Error(ID.Loc, "null must be a pointer type");
Owen Andersonb292b8c2009-07-30 23:03:37 +00004648 V = ConstantPointerNull::get(cast<PointerType>(Ty));
Chris Lattnerac161bf2009-01-02 07:01:27 +00004649 return false;
4650 case ValID::t_Undef:
Chris Lattnerffa07782009-01-05 08:13:38 +00004651 // FIXME: LabelTy should not be a first-class type.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004652 if (!Ty->isFirstClassType() || Ty->isLabelTy())
Chris Lattnerffa07782009-01-05 08:13:38 +00004653 return Error(ID.Loc, "invalid type for undef constant");
Owen Andersonb292b8c2009-07-30 23:03:37 +00004654 V = UndefValue::get(Ty);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004655 return false;
Chris Lattner998fa0a2009-01-05 07:52:51 +00004656 case ValID::t_EmptyArray:
Duncan Sands19d0b472010-02-16 11:11:14 +00004657 if (!Ty->isArrayTy() || cast<ArrayType>(Ty)->getNumElements() != 0)
Chris Lattner998fa0a2009-01-05 07:52:51 +00004658 return Error(ID.Loc, "invalid empty array initializer");
Owen Andersonb292b8c2009-07-30 23:03:37 +00004659 V = UndefValue::get(Ty);
Chris Lattner998fa0a2009-01-05 07:52:51 +00004660 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004661 case ValID::t_Zero:
Chris Lattnerffa07782009-01-05 08:13:38 +00004662 // FIXME: LabelTy should not be a first-class type.
Chris Lattnerfdd87902009-10-05 05:54:46 +00004663 if (!Ty->isFirstClassType() || Ty->isLabelTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00004664 return Error(ID.Loc, "invalid type for null constant");
Owen Anderson5a1acd92009-07-31 20:28:14 +00004665 V = Constant::getNullValue(Ty);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004666 return false;
David Majnemerf0f224d2015-11-11 21:57:16 +00004667 case ValID::t_None:
4668 if (!Ty->isTokenTy())
4669 return Error(ID.Loc, "invalid type for none constant");
4670 V = Constant::getNullValue(Ty);
4671 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004672 case ValID::t_Constant:
Chris Lattner13ee7952010-08-28 04:09:24 +00004673 if (ID.ConstantVal->getType() != Ty)
Chris Lattnerac161bf2009-01-02 07:01:27 +00004674 return Error(ID.Loc, "constant expression type mismatch");
Chris Lattner392be582010-02-12 20:49:41 +00004675
Chris Lattnerac161bf2009-01-02 07:01:27 +00004676 V = ID.ConstantVal;
4677 return false;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004678 case ValID::t_ConstantStruct:
4679 case ValID::t_PackedConstantStruct:
Chris Lattner229907c2011-07-18 04:54:35 +00004680 if (StructType *ST = dyn_cast<StructType>(Ty)) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004681 if (ST->getNumElements() != ID.UIntVal)
4682 return Error(ID.Loc,
4683 "initializer with struct type has wrong # elements");
4684 if (ST->isPacked() != (ID.Kind == ValID::t_PackedConstantStruct))
4685 return Error(ID.Loc, "packed'ness of initializer and type don't match");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004686
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004687 // Verify that the elements are compatible with the structtype.
4688 for (unsigned i = 0, e = ID.UIntVal; i != e; ++i)
4689 if (ID.ConstantStructElts[i]->getType() != ST->getElementType(i))
4690 return Error(ID.Loc, "element " + Twine(i) +
4691 " of struct initializer doesn't match struct element type");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004692
David Blaikieadbda4b2015-08-03 20:08:41 +00004693 V = ConstantStruct::get(
4694 ST, makeArrayRef(ID.ConstantStructElts.get(), ID.UIntVal));
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004695 } else
4696 return Error(ID.Loc, "constant expression type mismatch");
4697 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004698 }
Chandler Carruthf3e85022012-01-10 18:08:01 +00004699 llvm_unreachable("Invalid ValID");
Chris Lattnerac161bf2009-01-02 07:01:27 +00004700}
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004701
Alex Lorenzd2255952015-07-17 22:07:03 +00004702bool LLParser::parseConstantValue(Type *Ty, Constant *&C) {
4703 C = nullptr;
4704 ValID ID;
4705 auto Loc = Lex.getLoc();
4706 if (ParseValID(ID, /*PFS=*/nullptr))
4707 return true;
4708 switch (ID.Kind) {
4709 case ValID::t_APSInt:
4710 case ValID::t_APFloat:
Alex Lorenzb9a68db2015-09-09 13:44:33 +00004711 case ValID::t_Undef:
Alex Lorenzd2255952015-07-17 22:07:03 +00004712 case ValID::t_Constant:
4713 case ValID::t_ConstantStruct:
4714 case ValID::t_PackedConstantStruct: {
4715 Value *V;
4716 if (ConvertValIDToValue(Ty, ID, V, /*PFS=*/nullptr))
4717 return true;
4718 assert(isa<Constant>(V) && "Expected a constant value");
4719 C = cast<Constant>(V);
4720 return false;
4721 }
Eric Christopherb9c56d12017-03-30 22:34:20 +00004722 case ValID::t_Null:
4723 C = Constant::getNullValue(Ty);
4724 return false;
Alex Lorenzd2255952015-07-17 22:07:03 +00004725 default:
4726 return Error(Loc, "expected a constant value");
4727 }
4728}
4729
David Majnemer8a1c45d2015-12-12 05:38:55 +00004730bool LLParser::ParseValue(Type *Ty, Value *&V, PerFunctionState *PFS) {
Craig Topper2617dcc2014-04-15 06:32:26 +00004731 V = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004732 ValID ID;
David Majnemer8a1c45d2015-12-12 05:38:55 +00004733 return ParseValID(ID, PFS) || ConvertValIDToValue(Ty, ID, V, PFS);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004734}
4735
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004736bool LLParser::ParseTypeAndValue(Value *&V, PerFunctionState *PFS) {
Craig Topper2617dcc2014-04-15 06:32:26 +00004737 Type *Ty = nullptr;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004738 return ParseType(Ty) ||
4739 ParseValue(Ty, V, PFS);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004740}
4741
Chris Lattner3ed871f2009-10-27 19:13:16 +00004742bool LLParser::ParseTypeAndBasicBlock(BasicBlock *&BB, LocTy &Loc,
4743 PerFunctionState &PFS) {
4744 Value *V;
4745 Loc = Lex.getLoc();
4746 if (ParseTypeAndValue(V, PFS)) return true;
4747 if (!isa<BasicBlock>(V))
4748 return Error(Loc, "expected a basic block");
4749 BB = cast<BasicBlock>(V);
4750 return false;
4751}
4752
Chris Lattnerac161bf2009-01-02 07:01:27 +00004753/// FunctionHeader
Sean Fertilec70d28b2017-10-26 15:00:26 +00004754/// ::= OptionalLinkage OptionalPreemptionSpecifier OptionalVisibility
4755/// OptionalCallingConv OptRetAttrs OptUnnamedAddr Type GlobalName
4756/// '(' ArgList ')' OptFuncAttrs OptSection OptionalAlign OptGC
4757/// OptionalPrefix OptionalPrologue OptPersonalityFn
Chris Lattnerac161bf2009-01-02 07:01:27 +00004758bool LLParser::ParseFunctionHeader(Function *&Fn, bool isDefine) {
4759 // Parse the linkage.
4760 LocTy LinkageLoc = Lex.getLoc();
4761 unsigned Linkage;
Kostya Serebryanya5054ad2012-01-20 17:56:17 +00004762 unsigned Visibility;
Nico Rieck7157bb72014-01-14 15:22:47 +00004763 unsigned DLLStorageClass;
Sean Fertilec70d28b2017-10-26 15:00:26 +00004764 bool DSOLocal;
Bill Wendling50d27842012-10-15 20:35:56 +00004765 AttrBuilder RetAttrs;
Alexey Samsonov17a9cff2014-09-10 18:00:17 +00004766 unsigned CC;
Rafael Espindola2615c9e2016-05-12 12:37:52 +00004767 bool HasLinkage;
Craig Topper2617dcc2014-04-15 06:32:26 +00004768 Type *RetType = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004769 LocTy RetTypeLoc = Lex.getLoc();
Sean Fertilec70d28b2017-10-26 15:00:26 +00004770 if (ParseOptionalLinkage(Linkage, HasLinkage, Visibility, DLLStorageClass,
4771 DSOLocal) ||
Rafael Espindola2615c9e2016-05-12 12:37:52 +00004772 ParseOptionalCallingConv(CC) || ParseOptionalReturnAttrs(RetAttrs) ||
Chris Lattnerf880ca22009-03-09 04:49:14 +00004773 ParseType(RetType, RetTypeLoc, true /*void allowed*/))
Chris Lattnerac161bf2009-01-02 07:01:27 +00004774 return true;
4775
4776 // Verify that the linkage is ok.
4777 switch ((GlobalValue::LinkageTypes)Linkage) {
4778 case GlobalValue::ExternalLinkage:
4779 break; // always ok.
Duncan Sandse2881052009-03-11 08:08:06 +00004780 case GlobalValue::ExternalWeakLinkage:
Chris Lattnerac161bf2009-01-02 07:01:27 +00004781 if (isDefine)
4782 return Error(LinkageLoc, "invalid linkage for function definition");
4783 break;
Rafael Espindola6de96a12009-01-15 20:18:42 +00004784 case GlobalValue::PrivateLinkage:
Chris Lattnerac161bf2009-01-02 07:01:27 +00004785 case GlobalValue::InternalLinkage:
Nick Lewycky8019af62009-04-13 07:02:02 +00004786 case GlobalValue::AvailableExternallyLinkage:
Duncan Sands12da8ce2009-03-07 15:45:40 +00004787 case GlobalValue::LinkOnceAnyLinkage:
4788 case GlobalValue::LinkOnceODRLinkage:
4789 case GlobalValue::WeakAnyLinkage:
4790 case GlobalValue::WeakODRLinkage:
Chris Lattnerac161bf2009-01-02 07:01:27 +00004791 if (!isDefine)
4792 return Error(LinkageLoc, "invalid linkage for function declaration");
4793 break;
4794 case GlobalValue::AppendingLinkage:
Duncan Sands4581beb2009-03-11 20:14:15 +00004795 case GlobalValue::CommonLinkage:
Chris Lattnerac161bf2009-01-02 07:01:27 +00004796 return Error(LinkageLoc, "invalid function linkage type");
4797 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004798
Duncan P. N. Exon Smithb80de102014-05-07 22:57:20 +00004799 if (!isValidVisibilityForLinkage(Visibility, Linkage))
4800 return Error(LinkageLoc,
4801 "symbol with local linkage must have default visibility");
4802
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004803 if (!FunctionType::isValidReturnType(RetType))
Chris Lattnerac161bf2009-01-02 07:01:27 +00004804 return Error(RetTypeLoc, "invalid function return type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004805
Chris Lattnerac161bf2009-01-02 07:01:27 +00004806 LocTy NameLoc = Lex.getLoc();
Chris Lattner778c62c2009-02-18 21:48:13 +00004807
4808 std::string FunctionName;
4809 if (Lex.getKind() == lltok::GlobalVar) {
4810 FunctionName = Lex.getStrVal();
4811 } else if (Lex.getKind() == lltok::GlobalID) { // @42 is ok.
4812 unsigned NameID = Lex.getUIntVal();
4813
4814 if (NameID != NumberedVals.size())
4815 return TokError("function expected to be numbered '%" +
Benjamin Kramerc7583112010-09-27 17:42:11 +00004816 Twine(NumberedVals.size()) + "'");
Chris Lattner778c62c2009-02-18 21:48:13 +00004817 } else {
4818 return TokError("expected function name");
4819 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004820
Chris Lattner3822f632009-01-02 08:05:26 +00004821 Lex.Lex();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004822
Chris Lattner3822f632009-01-02 08:05:26 +00004823 if (Lex.getKind() != lltok::lparen)
Chris Lattnerac161bf2009-01-02 07:01:27 +00004824 return TokError("expected '(' in function argument list");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004825
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004826 SmallVector<ArgInfo, 8> ArgList;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004827 bool isVarArg;
Bill Wendling50d27842012-10-15 20:35:56 +00004828 AttrBuilder FuncAttrs;
Bill Wendlingb32b0412013-02-08 06:32:06 +00004829 std::vector<unsigned> FwdRefAttrGrps;
Michael Gottesman41748d72013-06-27 00:25:01 +00004830 LocTy BuiltinLoc;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004831 std::string Section;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004832 unsigned Alignment;
Chris Lattner3822f632009-01-02 08:05:26 +00004833 std::string GC;
Peter Collingbourne96efdd62016-06-14 21:01:22 +00004834 GlobalValue::UnnamedAddr UnnamedAddr = GlobalValue::UnnamedAddr::None;
Craig Topper2617dcc2014-04-15 06:32:26 +00004835 Constant *Prefix = nullptr;
Peter Collingbourne51d2de72014-12-03 02:08:38 +00004836 Constant *Prologue = nullptr;
David Majnemer7fddecc2015-06-17 20:52:32 +00004837 Constant *PersonalityFn = nullptr;
David Majnemerdad0a642014-06-27 18:19:56 +00004838 Comdat *C;
Chris Lattner3822f632009-01-02 08:05:26 +00004839
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004840 if (ParseArgumentList(ArgList, isVarArg) ||
Peter Collingbourne96efdd62016-06-14 21:01:22 +00004841 ParseOptionalUnnamedAddr(UnnamedAddr) ||
Bill Wendling09bd1f72013-02-22 00:12:35 +00004842 ParseFnAttributeValuePairs(FuncAttrs, FwdRefAttrGrps, false,
Michael Gottesman41748d72013-06-27 00:25:01 +00004843 BuiltinLoc) ||
Chris Lattner3822f632009-01-02 08:05:26 +00004844 (EatIfPresent(lltok::kw_section) &&
4845 ParseStringConstant(Section)) ||
Rafael Espindola83a362c2015-01-06 22:55:16 +00004846 parseOptionalComdat(FunctionName, C) ||
Chris Lattner3822f632009-01-02 08:05:26 +00004847 ParseOptionalAlignment(Alignment) ||
4848 (EatIfPresent(lltok::kw_gc) &&
Peter Collingbourne3fa50f92013-09-16 01:08:15 +00004849 ParseStringConstant(GC)) ||
4850 (EatIfPresent(lltok::kw_prefix) &&
Peter Collingbourne51d2de72014-12-03 02:08:38 +00004851 ParseGlobalTypeAndValue(Prefix)) ||
4852 (EatIfPresent(lltok::kw_prologue) &&
David Majnemer7fddecc2015-06-17 20:52:32 +00004853 ParseGlobalTypeAndValue(Prologue)) ||
4854 (EatIfPresent(lltok::kw_personality) &&
4855 ParseGlobalTypeAndValue(PersonalityFn)))
Chris Lattner3822f632009-01-02 08:05:26 +00004856 return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004857
Michael Gottesman41748d72013-06-27 00:25:01 +00004858 if (FuncAttrs.contains(Attribute::Builtin))
4859 return Error(BuiltinLoc, "'builtin' attribute not valid on function");
Bill Wendling09bd1f72013-02-22 00:12:35 +00004860
Chris Lattnerac161bf2009-01-02 07:01:27 +00004861 // If the alignment was parsed as an attribute, move to the alignment field.
Bill Wendlingc6daefa2012-10-08 23:27:46 +00004862 if (FuncAttrs.hasAlignmentAttr()) {
Bill Wendling9be77592012-09-21 15:26:31 +00004863 Alignment = FuncAttrs.getAlignment();
Bill Wendling3d7b0b82012-12-19 07:18:57 +00004864 FuncAttrs.removeAttribute(Attribute::Alignment);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004865 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004866
Chris Lattnerac161bf2009-01-02 07:01:27 +00004867 // Okay, if we got here, the function is syntactically valid. Convert types
4868 // and do semantic checks.
Jay Foadb804a2b2011-07-12 14:06:48 +00004869 std::vector<Type*> ParamTypeList;
Reid Klecknerc2cb5602017-04-12 00:38:00 +00004870 SmallVector<AttributeSet, 8> Attrs;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004871
Chris Lattnerac161bf2009-01-02 07:01:27 +00004872 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004873 ParamTypeList.push_back(ArgList[i].Ty);
Reid Klecknereb9dd5b2017-04-10 23:31:05 +00004874 Attrs.push_back(ArgList[i].Attrs);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004875 }
4876
Reid Kleckner7f720332017-04-13 00:58:09 +00004877 AttributeList PAL =
4878 AttributeList::get(Context, AttributeSet::get(Context, FuncAttrs),
4879 AttributeSet::get(Context, RetAttrs), Attrs);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004880
Bill Wendling749a43d2012-12-30 13:50:49 +00004881 if (PAL.hasAttribute(1, Attribute::StructRet) && !RetType->isVoidTy())
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004882 return Error(RetTypeLoc, "functions with 'sret' argument must return void");
4883
Chris Lattner229907c2011-07-18 04:54:35 +00004884 FunctionType *FT =
Owen Anderson4056ca92009-07-29 22:17:13 +00004885 FunctionType::get(RetType, ParamTypeList, isVarArg);
Chris Lattner229907c2011-07-18 04:54:35 +00004886 PointerType *PFT = PointerType::getUnqual(FT);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004887
Craig Topper2617dcc2014-04-15 06:32:26 +00004888 Fn = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004889 if (!FunctionName.empty()) {
4890 // If this was a definition of a forward reference, remove the definition
4891 // from the forward reference table and fill in the forward ref.
David Blaikie9ebdc692015-09-21 21:07:50 +00004892 auto FRVI = ForwardRefVals.find(FunctionName);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004893 if (FRVI != ForwardRefVals.end()) {
4894 Fn = M->getFunction(FunctionName);
Nick Lewycky686d7cb2012-10-11 00:38:25 +00004895 if (!Fn)
4896 return Error(FRVI->second.second, "invalid forward reference to "
4897 "function as global value!");
Chris Lattnerc239eb72010-04-20 04:49:11 +00004898 if (Fn->getType() != PFT)
4899 return Error(FRVI->second.second, "invalid forward reference to "
4900 "function '" + FunctionName + "' with wrong type!");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004901
Chris Lattnerac161bf2009-01-02 07:01:27 +00004902 ForwardRefVals.erase(FRVI);
4903 } else if ((Fn = M->getFunction(FunctionName))) {
Chris Lattner5756c162011-06-17 07:06:44 +00004904 // Reject redefinitions.
4905 return Error(NameLoc, "invalid redefinition of function '" +
4906 FunctionName + "'");
Chris Lattnere38317f2009-10-25 23:22:50 +00004907 } else if (M->getNamedValue(FunctionName)) {
4908 return Error(NameLoc, "redefinition of function '@" + FunctionName + "'");
Chris Lattnerac161bf2009-01-02 07:01:27 +00004909 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004910
Dan Gohman399d6ae2009-08-29 23:37:49 +00004911 } else {
Chris Lattnerac161bf2009-01-02 07:01:27 +00004912 // If this is a definition of a forward referenced function, make sure the
4913 // types agree.
David Blaikie9ebdc692015-09-21 21:07:50 +00004914 auto I = ForwardRefValIDs.find(NumberedVals.size());
Chris Lattnerac161bf2009-01-02 07:01:27 +00004915 if (I != ForwardRefValIDs.end()) {
4916 Fn = cast<Function>(I->second.first);
4917 if (Fn->getType() != PFT)
4918 return Error(NameLoc, "type of definition and forward reference of '@" +
Benjamin Kramerc7583112010-09-27 17:42:11 +00004919 Twine(NumberedVals.size()) + "' disagree");
Chris Lattnerac161bf2009-01-02 07:01:27 +00004920 ForwardRefValIDs.erase(I);
4921 }
4922 }
4923
Craig Topper2617dcc2014-04-15 06:32:26 +00004924 if (!Fn)
Chris Lattnerac161bf2009-01-02 07:01:27 +00004925 Fn = Function::Create(FT, GlobalValue::ExternalLinkage, FunctionName, M);
4926 else // Move the forward-reference to the correct spot in the module.
4927 M->getFunctionList().splice(M->end(), M->getFunctionList(), Fn);
4928
4929 if (FunctionName.empty())
4930 NumberedVals.push_back(Fn);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004931
Chris Lattnerac161bf2009-01-02 07:01:27 +00004932 Fn->setLinkage((GlobalValue::LinkageTypes)Linkage);
Rafael Espindolae4b02312018-01-11 22:15:05 +00004933 maybeSetDSOLocal(DSOLocal, *Fn);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004934 Fn->setVisibility((GlobalValue::VisibilityTypes)Visibility);
Nico Rieck7157bb72014-01-14 15:22:47 +00004935 Fn->setDLLStorageClass((GlobalValue::DLLStorageClassTypes)DLLStorageClass);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004936 Fn->setCallingConv(CC);
4937 Fn->setAttributes(PAL);
Rafael Espindola45e6c192011-01-08 16:42:36 +00004938 Fn->setUnnamedAddr(UnnamedAddr);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004939 Fn->setAlignment(Alignment);
4940 Fn->setSection(Section);
David Majnemerdad0a642014-06-27 18:19:56 +00004941 Fn->setComdat(C);
David Majnemer7fddecc2015-06-17 20:52:32 +00004942 Fn->setPersonalityFn(PersonalityFn);
Benjamin Kramer728f4442016-05-29 10:46:35 +00004943 if (!GC.empty()) Fn->setGC(GC);
Peter Collingbourne3fa50f92013-09-16 01:08:15 +00004944 Fn->setPrefixData(Prefix);
Peter Collingbourne51d2de72014-12-03 02:08:38 +00004945 Fn->setPrologueData(Prologue);
Bill Wendlingb32b0412013-02-08 06:32:06 +00004946 ForwardRefAttrGroups[Fn] = FwdRefAttrGrps;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004947
Chris Lattnerac161bf2009-01-02 07:01:27 +00004948 // Add all of the arguments we parsed to the function.
4949 Function::arg_iterator ArgIt = Fn->arg_begin();
4950 for (unsigned i = 0, e = ArgList.size(); i != e; ++i, ++ArgIt) {
4951 // If the argument has a name, insert it into the argument symbol table.
4952 if (ArgList[i].Name.empty()) continue;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004953
Chris Lattnerac161bf2009-01-02 07:01:27 +00004954 // Set the name, if it conflicted, it will be auto-renamed.
4955 ArgIt->setName(ArgList[i].Name);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004956
Benjamin Kramer1dc34b42010-10-16 11:28:23 +00004957 if (ArgIt->getName() != ArgList[i].Name)
Chris Lattnerac161bf2009-01-02 07:01:27 +00004958 return Error(ArgList[i].Loc, "redefinition of argument '%" +
4959 ArgList[i].Name + "'");
4960 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004961
Duncan P. N. Exon Smith17169902014-08-19 00:13:19 +00004962 if (isDefine)
4963 return false;
4964
Robin Morisset039781e2014-08-29 21:53:01 +00004965 // Check the declaration has no block address forward references.
Duncan P. N. Exon Smith17169902014-08-19 00:13:19 +00004966 ValID ID;
4967 if (FunctionName.empty()) {
4968 ID.Kind = ValID::t_GlobalID;
4969 ID.UIntVal = NumberedVals.size() - 1;
4970 } else {
4971 ID.Kind = ValID::t_GlobalName;
4972 ID.StrVal = FunctionName;
4973 }
4974 auto Blocks = ForwardRefBlockAddresses.find(ID);
4975 if (Blocks != ForwardRefBlockAddresses.end())
4976 return Error(Blocks->first.Loc,
4977 "cannot take blockaddress inside a declaration");
Chris Lattnerac161bf2009-01-02 07:01:27 +00004978 return false;
4979}
4980
Duncan P. N. Exon Smith17169902014-08-19 00:13:19 +00004981bool LLParser::PerFunctionState::resolveForwardRefBlockAddresses() {
4982 ValID ID;
4983 if (FunctionNumber == -1) {
4984 ID.Kind = ValID::t_GlobalName;
4985 ID.StrVal = F.getName();
4986 } else {
4987 ID.Kind = ValID::t_GlobalID;
4988 ID.UIntVal = FunctionNumber;
4989 }
4990
4991 auto Blocks = P.ForwardRefBlockAddresses.find(ID);
4992 if (Blocks == P.ForwardRefBlockAddresses.end())
4993 return false;
4994
4995 for (const auto &I : Blocks->second) {
4996 const ValID &BBID = I.first;
4997 GlobalValue *GV = I.second;
4998
4999 assert((BBID.Kind == ValID::t_LocalID || BBID.Kind == ValID::t_LocalName) &&
5000 "Expected local id or name");
5001 BasicBlock *BB;
5002 if (BBID.Kind == ValID::t_LocalName)
5003 BB = GetBB(BBID.StrVal, BBID.Loc);
5004 else
5005 BB = GetBB(BBID.UIntVal, BBID.Loc);
5006 if (!BB)
5007 return P.Error(BBID.Loc, "referenced value is not a basic block");
5008
5009 GV->replaceAllUsesWith(BlockAddress::get(&F, BB));
5010 GV->eraseFromParent();
5011 }
5012
5013 P.ForwardRefBlockAddresses.erase(Blocks);
5014 return false;
5015}
Chris Lattnerac161bf2009-01-02 07:01:27 +00005016
5017/// ParseFunctionBody
Duncan P. N. Exon Smith0a448fb2014-08-19 21:30:15 +00005018/// ::= '{' BasicBlock+ UseListOrderDirective* '}'
Chris Lattnerac161bf2009-01-02 07:01:27 +00005019bool LLParser::ParseFunctionBody(Function &Fn) {
Chris Lattner4649a732011-06-17 06:42:57 +00005020 if (Lex.getKind() != lltok::lbrace)
Chris Lattnerac161bf2009-01-02 07:01:27 +00005021 return TokError("expected '{' in function body");
5022 Lex.Lex(); // eat the {.
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005023
Chris Lattner3432c622009-10-28 03:39:23 +00005024 int FunctionNumber = -1;
5025 if (!Fn.hasName()) FunctionNumber = NumberedVals.size()-1;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00005026
Chris Lattner3432c622009-10-28 03:39:23 +00005027 PerFunctionState PFS(*this, Fn, FunctionNumber);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005028
Duncan P. N. Exon Smith17169902014-08-19 00:13:19 +00005029 // Resolve block addresses and allow basic blocks to be forward-declared
5030 // within this function.
5031 if (PFS.resolveForwardRefBlockAddresses())
5032 return true;
5033 SaveAndRestore<PerFunctionState *> ScopeExit(BlockAddressPFS, &PFS);
5034
Chris Lattnerbbddd962010-01-09 19:20:07 +00005035 // We need at least one basic block.
Duncan P. N. Exon Smith0a448fb2014-08-19 21:30:15 +00005036 if (Lex.getKind() == lltok::rbrace || Lex.getKind() == lltok::kw_uselistorder)
Chris Lattnerbbddd962010-01-09 19:20:07 +00005037 return TokError("function body requires at least one basic block");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00005038
Duncan P. N. Exon Smith0a448fb2014-08-19 21:30:15 +00005039 while (Lex.getKind() != lltok::rbrace &&
5040 Lex.getKind() != lltok::kw_uselistorder)
Chris Lattnerac161bf2009-01-02 07:01:27 +00005041 if (ParseBasicBlock(PFS)) return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005042
Duncan P. N. Exon Smith0a448fb2014-08-19 21:30:15 +00005043 while (Lex.getKind() != lltok::rbrace)
5044 if (ParseUseListOrder(&PFS))
5045 return true;
5046
Chris Lattnerac161bf2009-01-02 07:01:27 +00005047 // Eat the }.
5048 Lex.Lex();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005049
Chris Lattnerac161bf2009-01-02 07:01:27 +00005050 // Verify function is ok.
Chris Lattner3432c622009-10-28 03:39:23 +00005051 return PFS.FinishFunction();
Chris Lattnerac161bf2009-01-02 07:01:27 +00005052}
5053
5054/// ParseBasicBlock
5055/// ::= LabelStr? Instruction*
5056bool LLParser::ParseBasicBlock(PerFunctionState &PFS) {
5057 // If this basic block starts out with a name, remember it.
5058 std::string Name;
5059 LocTy NameLoc = Lex.getLoc();
5060 if (Lex.getKind() == lltok::LabelStr) {
5061 Name = Lex.getStrVal();
5062 Lex.Lex();
5063 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005064
Chris Lattnerac161bf2009-01-02 07:01:27 +00005065 BasicBlock *BB = PFS.DefineBB(Name, NameLoc);
Owen Anderson576a9a22015-03-02 05:25:09 +00005066 if (!BB)
5067 return Error(NameLoc,
5068 "unable to create block named '" + Name + "'");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005069
Chris Lattnerac161bf2009-01-02 07:01:27 +00005070 std::string NameStr;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005071
Chris Lattnerac161bf2009-01-02 07:01:27 +00005072 // Parse the instructions in this block until we get a terminator.
5073 Instruction *Inst;
5074 do {
5075 // This instruction may have three possibilities for a name: a) none
5076 // specified, b) name specified "%foo =", c) number specified: "%4 =".
5077 LocTy NameLoc = Lex.getLoc();
5078 int NameID = -1;
5079 NameStr = "";
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005080
Chris Lattnerac161bf2009-01-02 07:01:27 +00005081 if (Lex.getKind() == lltok::LocalVarID) {
5082 NameID = Lex.getUIntVal();
5083 Lex.Lex();
5084 if (ParseToken(lltok::equal, "expected '=' after instruction id"))
5085 return true;
Chris Lattnerdef19492011-06-17 06:36:20 +00005086 } else if (Lex.getKind() == lltok::LocalVar) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00005087 NameStr = Lex.getStrVal();
5088 Lex.Lex();
5089 if (ParseToken(lltok::equal, "expected '=' after instruction name"))
5090 return true;
5091 }
Devang Patelea8a4b92009-09-17 23:04:48 +00005092
Chris Lattner77b89dc2009-12-30 05:23:43 +00005093 switch (ParseInstruction(Inst, BB, PFS)) {
Craig Toppera2886c22012-02-07 05:05:23 +00005094 default: llvm_unreachable("Unknown ParseInstruction result!");
Chris Lattner77b89dc2009-12-30 05:23:43 +00005095 case InstError: return true;
5096 case InstNormal:
Chris Lattner2e664bd2010-04-07 04:08:57 +00005097 BB->getInstList().push_back(Inst);
5098
Chris Lattner77b89dc2009-12-30 05:23:43 +00005099 // With a normal result, we check to see if the instruction is followed by
5100 // a comma and metadata.
5101 if (EatIfPresent(lltok::comma))
Duncan P. N. Exon Smith27d702c2015-04-24 21:29:36 +00005102 if (ParseInstructionMetadata(*Inst))
Chris Lattner77b89dc2009-12-30 05:23:43 +00005103 return true;
5104 break;
5105 case InstExtraComma:
Chris Lattner2e664bd2010-04-07 04:08:57 +00005106 BB->getInstList().push_back(Inst);
5107
Chris Lattner77b89dc2009-12-30 05:23:43 +00005108 // If the instruction parser ate an extra comma at the end of it, it
5109 // *must* be followed by metadata.
Duncan P. N. Exon Smith27d702c2015-04-24 21:29:36 +00005110 if (ParseInstructionMetadata(*Inst))
Chris Lattner77b89dc2009-12-30 05:23:43 +00005111 return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00005112 break;
Chris Lattner77b89dc2009-12-30 05:23:43 +00005113 }
Devang Patelea8a4b92009-09-17 23:04:48 +00005114
Chris Lattnerac161bf2009-01-02 07:01:27 +00005115 // Set the name on the instruction.
5116 if (PFS.SetInstName(NameID, NameStr, NameLoc, Inst)) return true;
5117 } while (!isa<TerminatorInst>(Inst));
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005118
Chris Lattnerac161bf2009-01-02 07:01:27 +00005119 return false;
5120}
5121
5122//===----------------------------------------------------------------------===//
5123// Instruction Parsing.
5124//===----------------------------------------------------------------------===//
5125
5126/// ParseInstruction - Parse one of the many different instructions.
5127///
Chris Lattner77b89dc2009-12-30 05:23:43 +00005128int LLParser::ParseInstruction(Instruction *&Inst, BasicBlock *BB,
5129 PerFunctionState &PFS) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00005130 lltok::Kind Token = Lex.getKind();
5131 if (Token == lltok::Eof)
5132 return TokError("found end of file when expecting more instructions");
5133 LocTy Loc = Lex.getLoc();
Chris Lattner89d856e2009-03-01 00:53:13 +00005134 unsigned KeywordVal = Lex.getUIntVal();
Chris Lattnerac161bf2009-01-02 07:01:27 +00005135 Lex.Lex(); // Eat the keyword.
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005136
Chris Lattnerac161bf2009-01-02 07:01:27 +00005137 switch (Token) {
5138 default: return Error(Loc, "expected instruction opcode");
5139 // Terminator Instructions.
Owen Anderson55f1c092009-08-13 21:58:54 +00005140 case lltok::kw_unreachable: Inst = new UnreachableInst(Context); return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005141 case lltok::kw_ret: return ParseRet(Inst, BB, PFS);
5142 case lltok::kw_br: return ParseBr(Inst, PFS);
5143 case lltok::kw_switch: return ParseSwitch(Inst, PFS);
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00005144 case lltok::kw_indirectbr: return ParseIndirectBr(Inst, PFS);
Chris Lattnerac161bf2009-01-02 07:01:27 +00005145 case lltok::kw_invoke: return ParseInvoke(Inst, PFS);
Bill Wendlingf891bf82011-07-31 06:30:59 +00005146 case lltok::kw_resume: return ParseResume(Inst, PFS);
David Majnemer654e1302015-07-31 17:58:14 +00005147 case lltok::kw_cleanupret: return ParseCleanupRet(Inst, PFS);
5148 case lltok::kw_catchret: return ParseCatchRet(Inst, PFS);
David Majnemer8a1c45d2015-12-12 05:38:55 +00005149 case lltok::kw_catchswitch: return ParseCatchSwitch(Inst, PFS);
5150 case lltok::kw_catchpad: return ParseCatchPad(Inst, PFS);
David Majnemer8a1c45d2015-12-12 05:38:55 +00005151 case lltok::kw_cleanuppad: return ParseCleanupPad(Inst, PFS);
Chris Lattnerac161bf2009-01-02 07:01:27 +00005152 // Binary Operators.
5153 case lltok::kw_add:
5154 case lltok::kw_sub:
Chris Lattnera676c0f2011-02-07 16:40:21 +00005155 case lltok::kw_mul:
5156 case lltok::kw_shl: {
Chris Lattnera676c0f2011-02-07 16:40:21 +00005157 bool NUW = EatIfPresent(lltok::kw_nuw);
5158 bool NSW = EatIfPresent(lltok::kw_nsw);
5159 if (!NUW) NUW = EatIfPresent(lltok::kw_nuw);
Michael Ilseman26ee2b82012-11-15 22:34:00 +00005160
Chris Lattnera676c0f2011-02-07 16:40:21 +00005161 if (ParseArithmetic(Inst, PFS, KeywordVal, 1)) return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00005162
Chris Lattnera676c0f2011-02-07 16:40:21 +00005163 if (NUW) cast<BinaryOperator>(Inst)->setHasNoUnsignedWrap(true);
5164 if (NSW) cast<BinaryOperator>(Inst)->setHasNoSignedWrap(true);
5165 return false;
Dan Gohman9c7f8082009-07-27 16:11:46 +00005166 }
Dan Gohmana5b96452009-06-04 22:49:04 +00005167 case lltok::kw_fadd:
5168 case lltok::kw_fsub:
Michael Ilseman92053172012-11-27 00:42:44 +00005169 case lltok::kw_fmul:
5170 case lltok::kw_fdiv:
5171 case lltok::kw_frem: {
5172 FastMathFlags FMF = EatFastMathFlagsIfPresent();
5173 int Res = ParseArithmetic(Inst, PFS, KeywordVal, 2);
5174 if (Res != 0)
5175 return Res;
5176 if (FMF.any())
5177 Inst->setFastMathFlags(FMF);
5178 return 0;
5179 }
Dan Gohmana5b96452009-06-04 22:49:04 +00005180
Chris Lattner35315d02011-02-06 21:44:57 +00005181 case lltok::kw_sdiv:
Chris Lattnera676c0f2011-02-07 16:40:21 +00005182 case lltok::kw_udiv:
5183 case lltok::kw_lshr:
5184 case lltok::kw_ashr: {
5185 bool Exact = EatIfPresent(lltok::kw_exact);
5186
5187 if (ParseArithmetic(Inst, PFS, KeywordVal, 1)) return true;
5188 if (Exact) cast<BinaryOperator>(Inst)->setIsExact(true);
5189 return false;
Dan Gohman9c7f8082009-07-27 16:11:46 +00005190 }
5191
Chris Lattnerac161bf2009-01-02 07:01:27 +00005192 case lltok::kw_urem:
Chris Lattner89d856e2009-03-01 00:53:13 +00005193 case lltok::kw_srem: return ParseArithmetic(Inst, PFS, KeywordVal, 1);
Chris Lattnerac161bf2009-01-02 07:01:27 +00005194 case lltok::kw_and:
5195 case lltok::kw_or:
Chris Lattner89d856e2009-03-01 00:53:13 +00005196 case lltok::kw_xor: return ParseLogical(Inst, PFS, KeywordVal);
James Molloy88eb5352015-07-10 12:52:00 +00005197 case lltok::kw_icmp: return ParseCompare(Inst, PFS, KeywordVal);
5198 case lltok::kw_fcmp: {
5199 FastMathFlags FMF = EatFastMathFlagsIfPresent();
5200 int Res = ParseCompare(Inst, PFS, KeywordVal);
5201 if (Res != 0)
5202 return Res;
5203 if (FMF.any())
5204 Inst->setFastMathFlags(FMF);
5205 return 0;
5206 }
5207
Chris Lattnerac161bf2009-01-02 07:01:27 +00005208 // Casts.
5209 case lltok::kw_trunc:
5210 case lltok::kw_zext:
5211 case lltok::kw_sext:
5212 case lltok::kw_fptrunc:
5213 case lltok::kw_fpext:
5214 case lltok::kw_bitcast:
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00005215 case lltok::kw_addrspacecast:
Chris Lattnerac161bf2009-01-02 07:01:27 +00005216 case lltok::kw_uitofp:
5217 case lltok::kw_sitofp:
5218 case lltok::kw_fptoui:
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005219 case lltok::kw_fptosi:
Chris Lattnerac161bf2009-01-02 07:01:27 +00005220 case lltok::kw_inttoptr:
Chris Lattner89d856e2009-03-01 00:53:13 +00005221 case lltok::kw_ptrtoint: return ParseCast(Inst, PFS, KeywordVal);
Chris Lattnerac161bf2009-01-02 07:01:27 +00005222 // Other.
5223 case lltok::kw_select: return ParseSelect(Inst, PFS);
Chris Lattnerb55ab542009-01-05 08:18:44 +00005224 case lltok::kw_va_arg: return ParseVA_Arg(Inst, PFS);
Chris Lattnerac161bf2009-01-02 07:01:27 +00005225 case lltok::kw_extractelement: return ParseExtractElement(Inst, PFS);
5226 case lltok::kw_insertelement: return ParseInsertElement(Inst, PFS);
5227 case lltok::kw_shufflevector: return ParseShuffleVector(Inst, PFS);
5228 case lltok::kw_phi: return ParsePHI(Inst, PFS);
Bill Wendlingfae14752011-08-12 20:24:12 +00005229 case lltok::kw_landingpad: return ParseLandingPad(Inst, PFS);
Reid Kleckner5772b772014-04-24 20:14:34 +00005230 // Call.
5231 case lltok::kw_call: return ParseCall(Inst, PFS, CallInst::TCK_None);
5232 case lltok::kw_tail: return ParseCall(Inst, PFS, CallInst::TCK_Tail);
5233 case lltok::kw_musttail: return ParseCall(Inst, PFS, CallInst::TCK_MustTail);
Akira Hatanaka5cfcce122015-11-06 23:55:38 +00005234 case lltok::kw_notail: return ParseCall(Inst, PFS, CallInst::TCK_NoTail);
Chris Lattnerac161bf2009-01-02 07:01:27 +00005235 // Memory.
Victor Hernandezc7d6a832009-10-17 00:00:19 +00005236 case lltok::kw_alloca: return ParseAlloc(Inst, PFS);
Chris Lattnerbc639292011-11-27 06:56:53 +00005237 case lltok::kw_load: return ParseLoad(Inst, PFS);
5238 case lltok::kw_store: return ParseStore(Inst, PFS);
Eli Friedman02e737b2011-08-12 22:50:01 +00005239 case lltok::kw_cmpxchg: return ParseCmpXchg(Inst, PFS);
5240 case lltok::kw_atomicrmw: return ParseAtomicRMW(Inst, PFS);
Eli Friedmanfee02c62011-07-25 23:16:38 +00005241 case lltok::kw_fence: return ParseFence(Inst, PFS);
Chris Lattnerac161bf2009-01-02 07:01:27 +00005242 case lltok::kw_getelementptr: return ParseGetElementPtr(Inst, PFS);
5243 case lltok::kw_extractvalue: return ParseExtractValue(Inst, PFS);
5244 case lltok::kw_insertvalue: return ParseInsertValue(Inst, PFS);
5245 }
5246}
5247
5248/// ParseCmpPredicate - Parse an integer or fp predicate, based on Kind.
5249bool LLParser::ParseCmpPredicate(unsigned &P, unsigned Opc) {
Nick Lewyckya21d3da2009-07-08 03:04:38 +00005250 if (Opc == Instruction::FCmp) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00005251 switch (Lex.getKind()) {
David Tweeda11edf02013-01-07 13:32:38 +00005252 default: return TokError("expected fcmp predicate (e.g. 'oeq')");
Chris Lattnerac161bf2009-01-02 07:01:27 +00005253 case lltok::kw_oeq: P = CmpInst::FCMP_OEQ; break;
5254 case lltok::kw_one: P = CmpInst::FCMP_ONE; break;
5255 case lltok::kw_olt: P = CmpInst::FCMP_OLT; break;
5256 case lltok::kw_ogt: P = CmpInst::FCMP_OGT; break;
5257 case lltok::kw_ole: P = CmpInst::FCMP_OLE; break;
5258 case lltok::kw_oge: P = CmpInst::FCMP_OGE; break;
5259 case lltok::kw_ord: P = CmpInst::FCMP_ORD; break;
5260 case lltok::kw_uno: P = CmpInst::FCMP_UNO; break;
5261 case lltok::kw_ueq: P = CmpInst::FCMP_UEQ; break;
5262 case lltok::kw_une: P = CmpInst::FCMP_UNE; break;
5263 case lltok::kw_ult: P = CmpInst::FCMP_ULT; break;
5264 case lltok::kw_ugt: P = CmpInst::FCMP_UGT; break;
5265 case lltok::kw_ule: P = CmpInst::FCMP_ULE; break;
5266 case lltok::kw_uge: P = CmpInst::FCMP_UGE; break;
5267 case lltok::kw_true: P = CmpInst::FCMP_TRUE; break;
5268 case lltok::kw_false: P = CmpInst::FCMP_FALSE; break;
5269 }
5270 } else {
5271 switch (Lex.getKind()) {
David Tweeda11edf02013-01-07 13:32:38 +00005272 default: return TokError("expected icmp predicate (e.g. 'eq')");
Chris Lattnerac161bf2009-01-02 07:01:27 +00005273 case lltok::kw_eq: P = CmpInst::ICMP_EQ; break;
5274 case lltok::kw_ne: P = CmpInst::ICMP_NE; break;
5275 case lltok::kw_slt: P = CmpInst::ICMP_SLT; break;
5276 case lltok::kw_sgt: P = CmpInst::ICMP_SGT; break;
5277 case lltok::kw_sle: P = CmpInst::ICMP_SLE; break;
5278 case lltok::kw_sge: P = CmpInst::ICMP_SGE; break;
5279 case lltok::kw_ult: P = CmpInst::ICMP_ULT; break;
5280 case lltok::kw_ugt: P = CmpInst::ICMP_UGT; break;
5281 case lltok::kw_ule: P = CmpInst::ICMP_ULE; break;
5282 case lltok::kw_uge: P = CmpInst::ICMP_UGE; break;
5283 }
5284 }
5285 Lex.Lex();
5286 return false;
5287}
5288
5289//===----------------------------------------------------------------------===//
5290// Terminator Instructions.
5291//===----------------------------------------------------------------------===//
5292
5293/// ParseRet - Parse a return instruction.
Chris Lattner596760d2009-12-29 21:25:40 +00005294/// ::= 'ret' void (',' !dbg, !1)*
5295/// ::= 'ret' TypeAndValue (',' !dbg, !1)*
Chris Lattner33de4272011-06-17 06:49:41 +00005296bool LLParser::ParseRet(Instruction *&Inst, BasicBlock *BB,
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00005297 PerFunctionState &PFS) {
5298 SMLoc TypeLoc = Lex.getLoc();
Craig Topper2617dcc2014-04-15 06:32:26 +00005299 Type *Ty = nullptr;
Chris Lattnerf880ca22009-03-09 04:49:14 +00005300 if (ParseType(Ty, true /*void allowed*/)) return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005301
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00005302 Type *ResType = PFS.getFunction().getReturnType();
Michael Ilseman26ee2b82012-11-15 22:34:00 +00005303
Chris Lattnerfdd87902009-10-05 05:54:46 +00005304 if (Ty->isVoidTy()) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00005305 if (!ResType->isVoidTy())
5306 return Error(TypeLoc, "value doesn't match function result type '" +
5307 getTypeString(ResType) + "'");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00005308
Owen Anderson55f1c092009-08-13 21:58:54 +00005309 Inst = ReturnInst::Create(Context);
Chris Lattnerac161bf2009-01-02 07:01:27 +00005310 return false;
5311 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005312
Chris Lattnerac161bf2009-01-02 07:01:27 +00005313 Value *RV;
5314 if (ParseValue(Ty, RV, PFS)) return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005315
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00005316 if (ResType != RV->getType())
5317 return Error(TypeLoc, "value doesn't match function result type '" +
5318 getTypeString(ResType) + "'");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00005319
Owen Anderson55f1c092009-08-13 21:58:54 +00005320 Inst = ReturnInst::Create(Context, RV);
Chris Lattner33de4272011-06-17 06:49:41 +00005321 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005322}
5323
Chris Lattnerac161bf2009-01-02 07:01:27 +00005324/// ParseBr
5325/// ::= 'br' TypeAndValue
5326/// ::= 'br' TypeAndValue ',' TypeAndValue ',' TypeAndValue
5327bool LLParser::ParseBr(Instruction *&Inst, PerFunctionState &PFS) {
5328 LocTy Loc, Loc2;
Chris Lattner3ed871f2009-10-27 19:13:16 +00005329 Value *Op0;
5330 BasicBlock *Op1, *Op2;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005331 if (ParseTypeAndValue(Op0, Loc, PFS)) return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005332
Chris Lattnerac161bf2009-01-02 07:01:27 +00005333 if (BasicBlock *BB = dyn_cast<BasicBlock>(Op0)) {
5334 Inst = BranchInst::Create(BB);
5335 return false;
5336 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005337
Owen Anderson55f1c092009-08-13 21:58:54 +00005338 if (Op0->getType() != Type::getInt1Ty(Context))
Chris Lattnerac161bf2009-01-02 07:01:27 +00005339 return Error(Loc, "branch condition must have 'i1' type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005340
Chris Lattnerac161bf2009-01-02 07:01:27 +00005341 if (ParseToken(lltok::comma, "expected ',' after branch condition") ||
Chris Lattner3ed871f2009-10-27 19:13:16 +00005342 ParseTypeAndBasicBlock(Op1, Loc, PFS) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00005343 ParseToken(lltok::comma, "expected ',' after true destination") ||
Chris Lattner3ed871f2009-10-27 19:13:16 +00005344 ParseTypeAndBasicBlock(Op2, Loc2, PFS))
Chris Lattnerac161bf2009-01-02 07:01:27 +00005345 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005346
Chris Lattner3ed871f2009-10-27 19:13:16 +00005347 Inst = BranchInst::Create(Op1, Op2, Op0);
Chris Lattnerac161bf2009-01-02 07:01:27 +00005348 return false;
5349}
5350
5351/// ParseSwitch
5352/// Instruction
5353/// ::= 'switch' TypeAndValue ',' TypeAndValue '[' JumpTable ']'
5354/// JumpTable
5355/// ::= (TypeAndValue ',' TypeAndValue)*
5356bool LLParser::ParseSwitch(Instruction *&Inst, PerFunctionState &PFS) {
5357 LocTy CondLoc, BBLoc;
Chris Lattner3ed871f2009-10-27 19:13:16 +00005358 Value *Cond;
5359 BasicBlock *DefaultBB;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005360 if (ParseTypeAndValue(Cond, CondLoc, PFS) ||
5361 ParseToken(lltok::comma, "expected ',' after switch condition") ||
Chris Lattner3ed871f2009-10-27 19:13:16 +00005362 ParseTypeAndBasicBlock(DefaultBB, BBLoc, PFS) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00005363 ParseToken(lltok::lsquare, "expected '[' with switch table"))
5364 return true;
5365
Duncan Sands19d0b472010-02-16 11:11:14 +00005366 if (!Cond->getType()->isIntegerTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00005367 return Error(CondLoc, "switch condition must have integer type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005368
Chris Lattnerac161bf2009-01-02 07:01:27 +00005369 // Parse the jump table pairs.
5370 SmallPtrSet<Value*, 32> SeenCases;
5371 SmallVector<std::pair<ConstantInt*, BasicBlock*>, 32> Table;
5372 while (Lex.getKind() != lltok::rsquare) {
Chris Lattner3ed871f2009-10-27 19:13:16 +00005373 Value *Constant;
5374 BasicBlock *DestBB;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005375
Chris Lattnerac161bf2009-01-02 07:01:27 +00005376 if (ParseTypeAndValue(Constant, CondLoc, PFS) ||
5377 ParseToken(lltok::comma, "expected ',' after case value") ||
Chris Lattner3ed871f2009-10-27 19:13:16 +00005378 ParseTypeAndBasicBlock(DestBB, PFS))
Chris Lattnerac161bf2009-01-02 07:01:27 +00005379 return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00005380
David Blaikie70573dc2014-11-19 07:49:26 +00005381 if (!SeenCases.insert(Constant).second)
Chris Lattnerac161bf2009-01-02 07:01:27 +00005382 return Error(CondLoc, "duplicate case value in switch");
5383 if (!isa<ConstantInt>(Constant))
5384 return Error(CondLoc, "case value is not a constant integer");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005385
Chris Lattner3ed871f2009-10-27 19:13:16 +00005386 Table.push_back(std::make_pair(cast<ConstantInt>(Constant), DestBB));
Chris Lattnerac161bf2009-01-02 07:01:27 +00005387 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005388
Chris Lattnerac161bf2009-01-02 07:01:27 +00005389 Lex.Lex(); // Eat the ']'.
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005390
Chris Lattner3ed871f2009-10-27 19:13:16 +00005391 SwitchInst *SI = SwitchInst::Create(Cond, DefaultBB, Table.size());
Chris Lattnerac161bf2009-01-02 07:01:27 +00005392 for (unsigned i = 0, e = Table.size(); i != e; ++i)
5393 SI->addCase(Table[i].first, Table[i].second);
5394 Inst = SI;
5395 return false;
5396}
5397
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00005398/// ParseIndirectBr
Chris Lattner3ed871f2009-10-27 19:13:16 +00005399/// Instruction
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00005400/// ::= 'indirectbr' TypeAndValue ',' '[' LabelList ']'
5401bool LLParser::ParseIndirectBr(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattner3ed871f2009-10-27 19:13:16 +00005402 LocTy AddrLoc;
5403 Value *Address;
5404 if (ParseTypeAndValue(Address, AddrLoc, PFS) ||
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00005405 ParseToken(lltok::comma, "expected ',' after indirectbr address") ||
5406 ParseToken(lltok::lsquare, "expected '[' with indirectbr"))
Chris Lattner3ed871f2009-10-27 19:13:16 +00005407 return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00005408
Duncan Sands19d0b472010-02-16 11:11:14 +00005409 if (!Address->getType()->isPointerTy())
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00005410 return Error(AddrLoc, "indirectbr address must have pointer type");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00005411
Chris Lattner3ed871f2009-10-27 19:13:16 +00005412 // Parse the destination list.
5413 SmallVector<BasicBlock*, 16> DestList;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00005414
Chris Lattner3ed871f2009-10-27 19:13:16 +00005415 if (Lex.getKind() != lltok::rsquare) {
5416 BasicBlock *DestBB;
5417 if (ParseTypeAndBasicBlock(DestBB, PFS))
5418 return true;
5419 DestList.push_back(DestBB);
Michael Ilseman26ee2b82012-11-15 22:34:00 +00005420
Chris Lattner3ed871f2009-10-27 19:13:16 +00005421 while (EatIfPresent(lltok::comma)) {
5422 if (ParseTypeAndBasicBlock(DestBB, PFS))
5423 return true;
5424 DestList.push_back(DestBB);
5425 }
5426 }
Michael Ilseman26ee2b82012-11-15 22:34:00 +00005427
Chris Lattner3ed871f2009-10-27 19:13:16 +00005428 if (ParseToken(lltok::rsquare, "expected ']' at end of block list"))
5429 return true;
5430
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00005431 IndirectBrInst *IBI = IndirectBrInst::Create(Address, DestList.size());
Chris Lattner3ed871f2009-10-27 19:13:16 +00005432 for (unsigned i = 0, e = DestList.size(); i != e; ++i)
5433 IBI->addDestination(DestList[i]);
5434 Inst = IBI;
5435 return false;
5436}
5437
Chris Lattnerac161bf2009-01-02 07:01:27 +00005438/// ParseInvoke
5439/// ::= 'invoke' OptionalCallingConv OptionalAttrs Type Value ParamList
5440/// OptionalAttrs 'to' TypeAndValue 'unwind' TypeAndValue
5441bool LLParser::ParseInvoke(Instruction *&Inst, PerFunctionState &PFS) {
5442 LocTy CallLoc = Lex.getLoc();
Bill Wendling50d27842012-10-15 20:35:56 +00005443 AttrBuilder RetAttrs, FnAttrs;
Bill Wendlingb32b0412013-02-08 06:32:06 +00005444 std::vector<unsigned> FwdRefAttrGrps;
Bill Wendling09bd1f72013-02-22 00:12:35 +00005445 LocTy NoBuiltinLoc;
Alexey Samsonov17a9cff2014-09-10 18:00:17 +00005446 unsigned CC;
Craig Topper2617dcc2014-04-15 06:32:26 +00005447 Type *RetType = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005448 LocTy RetTypeLoc;
5449 ValID CalleeID;
5450 SmallVector<ParamInfo, 16> ArgList;
Sanjoy Dasb513a9f2015-09-24 23:34:52 +00005451 SmallVector<OperandBundleDef, 2> BundleList;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005452
Chris Lattner3ed871f2009-10-27 19:13:16 +00005453 BasicBlock *NormalBB, *UnwindBB;
Sanjoy Dasb513a9f2015-09-24 23:34:52 +00005454 if (ParseOptionalCallingConv(CC) || ParseOptionalReturnAttrs(RetAttrs) ||
Chris Lattnerf880ca22009-03-09 04:49:14 +00005455 ParseType(RetType, RetTypeLoc, true /*void allowed*/) ||
Sanjoy Dasb513a9f2015-09-24 23:34:52 +00005456 ParseValID(CalleeID) || ParseParameterList(ArgList, PFS) ||
Bill Wendling09bd1f72013-02-22 00:12:35 +00005457 ParseFnAttributeValuePairs(FnAttrs, FwdRefAttrGrps, false,
5458 NoBuiltinLoc) ||
Sanjoy Dasb513a9f2015-09-24 23:34:52 +00005459 ParseOptionalOperandBundles(BundleList, PFS) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00005460 ParseToken(lltok::kw_to, "expected 'to' in invoke") ||
Chris Lattner3ed871f2009-10-27 19:13:16 +00005461 ParseTypeAndBasicBlock(NormalBB, PFS) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00005462 ParseToken(lltok::kw_unwind, "expected 'unwind' in invoke") ||
Chris Lattner3ed871f2009-10-27 19:13:16 +00005463 ParseTypeAndBasicBlock(UnwindBB, PFS))
Chris Lattnerac161bf2009-01-02 07:01:27 +00005464 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005465
Chris Lattnerac161bf2009-01-02 07:01:27 +00005466 // If RetType is a non-function pointer type, then this is the short syntax
5467 // for the call, which means that RetType is just the return type. Infer the
5468 // rest of the function argument types from the arguments that are present.
David Blaikie445e3fb2015-04-24 19:32:54 +00005469 FunctionType *Ty = dyn_cast<FunctionType>(RetType);
5470 if (!Ty) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00005471 // Pull out the types of all of the arguments...
Jay Foadb804a2b2011-07-12 14:06:48 +00005472 std::vector<Type*> ParamTypes;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005473 for (unsigned i = 0, e = ArgList.size(); i != e; ++i)
5474 ParamTypes.push_back(ArgList[i].V->getType());
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005475
Chris Lattnerac161bf2009-01-02 07:01:27 +00005476 if (!FunctionType::isValidReturnType(RetType))
5477 return Error(RetTypeLoc, "Invalid result type for LLVM function");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005478
Owen Anderson4056ca92009-07-29 22:17:13 +00005479 Ty = FunctionType::get(RetType, ParamTypes, false);
Chris Lattnerac161bf2009-01-02 07:01:27 +00005480 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005481
David Blaikie41ba2b42015-07-27 23:32:19 +00005482 CalleeID.FTy = Ty;
5483
Chris Lattnerac161bf2009-01-02 07:01:27 +00005484 // Look up the callee.
5485 Value *Callee;
David Blaikie445e3fb2015-04-24 19:32:54 +00005486 if (ConvertValIDToValue(PointerType::getUnqual(Ty), CalleeID, Callee, &PFS))
5487 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005488
Bill Wendling3d7b0b82012-12-19 07:18:57 +00005489 // Set up the Attribute for the function.
Reid Kleckner7f720332017-04-13 00:58:09 +00005490 SmallVector<Value *, 8> Args;
5491 SmallVector<AttributeSet, 8> ArgAttrs;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005492
Chris Lattnerac161bf2009-01-02 07:01:27 +00005493 // Loop through FunctionType's arguments and ensure they are specified
5494 // correctly. Also, gather any parameter attributes.
5495 FunctionType::param_iterator I = Ty->param_begin();
5496 FunctionType::param_iterator E = Ty->param_end();
5497 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
Craig Topper2617dcc2014-04-15 06:32:26 +00005498 Type *ExpectedTy = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005499 if (I != E) {
5500 ExpectedTy = *I++;
5501 } else if (!Ty->isVarArg()) {
5502 return Error(ArgList[i].Loc, "too many arguments specified");
5503 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005504
Chris Lattnerac161bf2009-01-02 07:01:27 +00005505 if (ExpectedTy && ExpectedTy != ArgList[i].V->getType())
5506 return Error(ArgList[i].Loc, "argument is not of expected type '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00005507 getTypeString(ExpectedTy) + "'");
Chris Lattnerac161bf2009-01-02 07:01:27 +00005508 Args.push_back(ArgList[i].V);
Reid Kleckner7f720332017-04-13 00:58:09 +00005509 ArgAttrs.push_back(ArgList[i].Attrs);
Chris Lattnerac161bf2009-01-02 07:01:27 +00005510 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005511
Chris Lattnerac161bf2009-01-02 07:01:27 +00005512 if (I != E)
5513 return Error(CallLoc, "not enough parameters specified for call");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005514
Reid Klecknereb9dd5b2017-04-10 23:31:05 +00005515 if (FnAttrs.hasAlignmentAttr())
5516 return Error(CallLoc, "invoke instructions may not have an alignment");
David Majnemer8d22abd2015-02-23 00:01:32 +00005517
Bill Wendling3d7b0b82012-12-19 07:18:57 +00005518 // Finish off the Attribute and check them
Reid Kleckner7f720332017-04-13 00:58:09 +00005519 AttributeList PAL =
5520 AttributeList::get(Context, AttributeSet::get(Context, FnAttrs),
5521 AttributeSet::get(Context, RetAttrs), ArgAttrs);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005522
Sanjoy Dasb513a9f2015-09-24 23:34:52 +00005523 InvokeInst *II =
5524 InvokeInst::Create(Ty, Callee, NormalBB, UnwindBB, Args, BundleList);
Chris Lattnerac161bf2009-01-02 07:01:27 +00005525 II->setCallingConv(CC);
5526 II->setAttributes(PAL);
Bill Wendlingb32b0412013-02-08 06:32:06 +00005527 ForwardRefAttrGroups[II] = FwdRefAttrGrps;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005528 Inst = II;
5529 return false;
5530}
5531
Bill Wendlingf891bf82011-07-31 06:30:59 +00005532/// ParseResume
5533/// ::= 'resume' TypeAndValue
5534bool LLParser::ParseResume(Instruction *&Inst, PerFunctionState &PFS) {
5535 Value *Exn; LocTy ExnLoc;
Bill Wendlingf891bf82011-07-31 06:30:59 +00005536 if (ParseTypeAndValue(Exn, ExnLoc, PFS))
5537 return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005538
Bill Wendlingf891bf82011-07-31 06:30:59 +00005539 ResumeInst *RI = ResumeInst::Create(Exn);
5540 Inst = RI;
5541 return false;
5542}
Chris Lattnerac161bf2009-01-02 07:01:27 +00005543
David Majnemer654e1302015-07-31 17:58:14 +00005544bool LLParser::ParseExceptionArgs(SmallVectorImpl<Value *> &Args,
5545 PerFunctionState &PFS) {
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00005546 if (ParseToken(lltok::lsquare, "expected '[' in catchpad/cleanuppad"))
David Majnemer654e1302015-07-31 17:58:14 +00005547 return true;
5548
5549 while (Lex.getKind() != lltok::rsquare) {
5550 // If this isn't the first argument, we need a comma.
5551 if (!Args.empty() &&
5552 ParseToken(lltok::comma, "expected ',' in argument list"))
5553 return true;
5554
5555 // Parse the argument.
5556 LocTy ArgLoc;
5557 Type *ArgTy = nullptr;
5558 if (ParseType(ArgTy, ArgLoc))
5559 return true;
5560
5561 Value *V;
5562 if (ArgTy->isMetadataTy()) {
5563 if (ParseMetadataAsValue(V, PFS))
5564 return true;
5565 } else {
5566 if (ParseValue(ArgTy, V, PFS))
5567 return true;
5568 }
5569 Args.push_back(V);
5570 }
5571
5572 Lex.Lex(); // Lex the ']'.
5573 return false;
5574}
5575
5576/// ParseCleanupRet
David Majnemer8a1c45d2015-12-12 05:38:55 +00005577/// ::= 'cleanupret' from Value unwind ('to' 'caller' | TypeAndValue)
David Majnemer654e1302015-07-31 17:58:14 +00005578bool LLParser::ParseCleanupRet(Instruction *&Inst, PerFunctionState &PFS) {
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00005579 Value *CleanupPad = nullptr;
David Majnemer654e1302015-07-31 17:58:14 +00005580
David Majnemer8a1c45d2015-12-12 05:38:55 +00005581 if (ParseToken(lltok::kw_from, "expected 'from' after cleanupret"))
5582 return true;
5583
5584 if (ParseValue(Type::getTokenTy(Context), CleanupPad, PFS))
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00005585 return true;
David Majnemer654e1302015-07-31 17:58:14 +00005586
5587 if (ParseToken(lltok::kw_unwind, "expected 'unwind' in cleanupret"))
5588 return true;
5589
5590 BasicBlock *UnwindBB = nullptr;
5591 if (Lex.getKind() == lltok::kw_to) {
5592 Lex.Lex();
5593 if (ParseToken(lltok::kw_caller, "expected 'caller' in cleanupret"))
5594 return true;
5595 } else {
5596 if (ParseTypeAndBasicBlock(UnwindBB, PFS)) {
5597 return true;
5598 }
5599 }
5600
David Majnemer8a1c45d2015-12-12 05:38:55 +00005601 Inst = CleanupReturnInst::Create(CleanupPad, UnwindBB);
David Majnemer654e1302015-07-31 17:58:14 +00005602 return false;
5603}
5604
5605/// ParseCatchRet
David Majnemer8a1c45d2015-12-12 05:38:55 +00005606/// ::= 'catchret' from Parent Value 'to' TypeAndValue
David Majnemer654e1302015-07-31 17:58:14 +00005607bool LLParser::ParseCatchRet(Instruction *&Inst, PerFunctionState &PFS) {
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00005608 Value *CatchPad = nullptr;
David Majnemer0bc0eef2015-08-15 02:46:08 +00005609
David Majnemer8a1c45d2015-12-12 05:38:55 +00005610 if (ParseToken(lltok::kw_from, "expected 'from' after catchret"))
5611 return true;
5612
5613 if (ParseValue(Type::getTokenTy(Context), CatchPad, PFS))
David Majnemer0bc0eef2015-08-15 02:46:08 +00005614 return true;
5615
David Majnemer0bc0eef2015-08-15 02:46:08 +00005616 BasicBlock *BB;
5617 if (ParseToken(lltok::kw_to, "expected 'to' in catchret") ||
5618 ParseTypeAndBasicBlock(BB, PFS))
5619 return true;
5620
David Majnemer8a1c45d2015-12-12 05:38:55 +00005621 Inst = CatchReturnInst::Create(CatchPad, BB);
5622 return false;
5623}
5624
5625/// ParseCatchSwitch
5626/// ::= 'catchswitch' within Parent
5627bool LLParser::ParseCatchSwitch(Instruction *&Inst, PerFunctionState &PFS) {
5628 Value *ParentPad;
David Majnemer8a1c45d2015-12-12 05:38:55 +00005629
5630 if (ParseToken(lltok::kw_within, "expected 'within' after catchswitch"))
5631 return true;
5632
5633 if (Lex.getKind() != lltok::kw_none && Lex.getKind() != lltok::LocalVar &&
5634 Lex.getKind() != lltok::LocalVarID)
5635 return TokError("expected scope value for catchswitch");
5636
5637 if (ParseValue(Type::getTokenTy(Context), ParentPad, PFS))
5638 return true;
5639
5640 if (ParseToken(lltok::lsquare, "expected '[' with catchswitch labels"))
5641 return true;
5642
5643 SmallVector<BasicBlock *, 32> Table;
5644 do {
5645 BasicBlock *DestBB;
5646 if (ParseTypeAndBasicBlock(DestBB, PFS))
5647 return true;
5648 Table.push_back(DestBB);
5649 } while (EatIfPresent(lltok::comma));
5650
5651 if (ParseToken(lltok::rsquare, "expected ']' after catchswitch labels"))
5652 return true;
5653
5654 if (ParseToken(lltok::kw_unwind,
5655 "expected 'unwind' after catchswitch scope"))
5656 return true;
5657
5658 BasicBlock *UnwindBB = nullptr;
5659 if (EatIfPresent(lltok::kw_to)) {
5660 if (ParseToken(lltok::kw_caller, "expected 'caller' in catchswitch"))
5661 return true;
5662 } else {
5663 if (ParseTypeAndBasicBlock(UnwindBB, PFS))
5664 return true;
5665 }
5666
5667 auto *CatchSwitch =
5668 CatchSwitchInst::Create(ParentPad, UnwindBB, Table.size());
5669 for (BasicBlock *DestBB : Table)
5670 CatchSwitch->addHandler(DestBB);
5671 Inst = CatchSwitch;
David Majnemer654e1302015-07-31 17:58:14 +00005672 return false;
5673}
5674
5675/// ParseCatchPad
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00005676/// ::= 'catchpad' ParamList 'to' TypeAndValue 'unwind' TypeAndValue
David Majnemer654e1302015-07-31 17:58:14 +00005677bool LLParser::ParseCatchPad(Instruction *&Inst, PerFunctionState &PFS) {
David Majnemer8a1c45d2015-12-12 05:38:55 +00005678 Value *CatchSwitch = nullptr;
5679
5680 if (ParseToken(lltok::kw_within, "expected 'within' after catchpad"))
5681 return true;
5682
5683 if (Lex.getKind() != lltok::LocalVar && Lex.getKind() != lltok::LocalVarID)
5684 return TokError("expected scope value for catchpad");
5685
5686 if (ParseValue(Type::getTokenTy(Context), CatchSwitch, PFS))
5687 return true;
5688
David Majnemer654e1302015-07-31 17:58:14 +00005689 SmallVector<Value *, 8> Args;
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00005690 if (ParseExceptionArgs(Args, PFS))
David Majnemer654e1302015-07-31 17:58:14 +00005691 return true;
5692
David Majnemer8a1c45d2015-12-12 05:38:55 +00005693 Inst = CatchPadInst::Create(CatchSwitch, Args);
David Majnemer654e1302015-07-31 17:58:14 +00005694 return false;
5695}
5696
David Majnemer654e1302015-07-31 17:58:14 +00005697/// ParseCleanupPad
David Majnemer8a1c45d2015-12-12 05:38:55 +00005698/// ::= 'cleanuppad' within Parent ParamList
David Majnemer654e1302015-07-31 17:58:14 +00005699bool LLParser::ParseCleanupPad(Instruction *&Inst, PerFunctionState &PFS) {
David Majnemer8a1c45d2015-12-12 05:38:55 +00005700 Value *ParentPad = nullptr;
5701
5702 if (ParseToken(lltok::kw_within, "expected 'within' after cleanuppad"))
5703 return true;
5704
5705 if (Lex.getKind() != lltok::kw_none && Lex.getKind() != lltok::LocalVar &&
5706 Lex.getKind() != lltok::LocalVarID)
5707 return TokError("expected scope value for cleanuppad");
5708
5709 if (ParseValue(Type::getTokenTy(Context), ParentPad, PFS))
5710 return true;
5711
David Majnemer654e1302015-07-31 17:58:14 +00005712 SmallVector<Value *, 8> Args;
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00005713 if (ParseExceptionArgs(Args, PFS))
David Majnemer654e1302015-07-31 17:58:14 +00005714 return true;
5715
David Majnemer8a1c45d2015-12-12 05:38:55 +00005716 Inst = CleanupPadInst::Create(ParentPad, Args);
Joseph Tremoulet9ce71f72015-09-03 09:09:43 +00005717 return false;
5718}
5719
Chris Lattnerac161bf2009-01-02 07:01:27 +00005720//===----------------------------------------------------------------------===//
5721// Binary Operators.
5722//===----------------------------------------------------------------------===//
5723
5724/// ParseArithmetic
Chris Lattnereeefa9a2009-01-05 08:24:46 +00005725/// ::= ArithmeticOps TypeAndValue ',' Value
5726///
5727/// If OperandType is 0, then any FP or integer operand is allowed. If it is 1,
5728/// then any integer operand is allowed, if it is 2, any fp operand is allowed.
Chris Lattnerac161bf2009-01-02 07:01:27 +00005729bool LLParser::ParseArithmetic(Instruction *&Inst, PerFunctionState &PFS,
Chris Lattnereeefa9a2009-01-05 08:24:46 +00005730 unsigned Opc, unsigned OperandType) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00005731 LocTy Loc; Value *LHS, *RHS;
5732 if (ParseTypeAndValue(LHS, Loc, PFS) ||
5733 ParseToken(lltok::comma, "expected ',' in arithmetic operation") ||
5734 ParseValue(LHS->getType(), RHS, PFS))
5735 return true;
5736
Chris Lattnereeefa9a2009-01-05 08:24:46 +00005737 bool Valid;
5738 switch (OperandType) {
Torok Edwinfbcc6632009-07-14 16:55:14 +00005739 default: llvm_unreachable("Unknown operand type!");
Chris Lattnereeefa9a2009-01-05 08:24:46 +00005740 case 0: // int or FP.
Duncan Sands9dff9be2010-02-15 16:12:20 +00005741 Valid = LHS->getType()->isIntOrIntVectorTy() ||
5742 LHS->getType()->isFPOrFPVectorTy();
Chris Lattnereeefa9a2009-01-05 08:24:46 +00005743 break;
Duncan Sands9dff9be2010-02-15 16:12:20 +00005744 case 1: Valid = LHS->getType()->isIntOrIntVectorTy(); break;
5745 case 2: Valid = LHS->getType()->isFPOrFPVectorTy(); break;
Chris Lattnereeefa9a2009-01-05 08:24:46 +00005746 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005747
Chris Lattnereeefa9a2009-01-05 08:24:46 +00005748 if (!Valid)
5749 return Error(Loc, "invalid operand type for instruction");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005750
Chris Lattnerac161bf2009-01-02 07:01:27 +00005751 Inst = BinaryOperator::Create((Instruction::BinaryOps)Opc, LHS, RHS);
5752 return false;
5753}
5754
5755/// ParseLogical
5756/// ::= ArithmeticOps TypeAndValue ',' Value {
5757bool LLParser::ParseLogical(Instruction *&Inst, PerFunctionState &PFS,
5758 unsigned Opc) {
5759 LocTy Loc; Value *LHS, *RHS;
5760 if (ParseTypeAndValue(LHS, Loc, PFS) ||
5761 ParseToken(lltok::comma, "expected ',' in logical operation") ||
5762 ParseValue(LHS->getType(), RHS, PFS))
5763 return true;
5764
Duncan Sands9dff9be2010-02-15 16:12:20 +00005765 if (!LHS->getType()->isIntOrIntVectorTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00005766 return Error(Loc,"instruction requires integer or integer vector operands");
5767
5768 Inst = BinaryOperator::Create((Instruction::BinaryOps)Opc, LHS, RHS);
5769 return false;
5770}
5771
Chris Lattnerac161bf2009-01-02 07:01:27 +00005772/// ParseCompare
5773/// ::= 'icmp' IPredicates TypeAndValue ',' Value
5774/// ::= 'fcmp' FPredicates TypeAndValue ',' Value
Chris Lattnerac161bf2009-01-02 07:01:27 +00005775bool LLParser::ParseCompare(Instruction *&Inst, PerFunctionState &PFS,
5776 unsigned Opc) {
5777 // Parse the integer/fp comparison predicate.
5778 LocTy Loc;
5779 unsigned Pred;
5780 Value *LHS, *RHS;
5781 if (ParseCmpPredicate(Pred, Opc) ||
5782 ParseTypeAndValue(LHS, Loc, PFS) ||
5783 ParseToken(lltok::comma, "expected ',' after compare value") ||
5784 ParseValue(LHS->getType(), RHS, PFS))
5785 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005786
Chris Lattnerac161bf2009-01-02 07:01:27 +00005787 if (Opc == Instruction::FCmp) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00005788 if (!LHS->getType()->isFPOrFPVectorTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00005789 return Error(Loc, "fcmp requires floating point operands");
Dan Gohmanad1f0a12009-08-25 23:17:54 +00005790 Inst = new FCmpInst(CmpInst::Predicate(Pred), LHS, RHS);
Nick Lewyckya21d3da2009-07-08 03:04:38 +00005791 } else {
5792 assert(Opc == Instruction::ICmp && "Unknown opcode for CmpInst!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00005793 if (!LHS->getType()->isIntOrIntVectorTy() &&
Craig Topper95d23472017-07-09 07:04:00 +00005794 !LHS->getType()->isPtrOrPtrVectorTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00005795 return Error(Loc, "icmp requires integer operands");
Dan Gohmanad1f0a12009-08-25 23:17:54 +00005796 Inst = new ICmpInst(CmpInst::Predicate(Pred), LHS, RHS);
Chris Lattnerac161bf2009-01-02 07:01:27 +00005797 }
5798 return false;
5799}
5800
5801//===----------------------------------------------------------------------===//
5802// Other Instructions.
5803//===----------------------------------------------------------------------===//
5804
5805
5806/// ParseCast
5807/// ::= CastOpc TypeAndValue 'to' Type
5808bool LLParser::ParseCast(Instruction *&Inst, PerFunctionState &PFS,
5809 unsigned Opc) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00005810 LocTy Loc;
5811 Value *Op;
Craig Topper2617dcc2014-04-15 06:32:26 +00005812 Type *DestTy = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005813 if (ParseTypeAndValue(Op, Loc, PFS) ||
5814 ParseToken(lltok::kw_to, "expected 'to' after cast value") ||
5815 ParseType(DestTy))
5816 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005817
Chris Lattner89d856e2009-03-01 00:53:13 +00005818 if (!CastInst::castIsValid((Instruction::CastOps)Opc, Op, DestTy)) {
5819 CastInst::castIsValid((Instruction::CastOps)Opc, Op, DestTy);
Chris Lattnerac161bf2009-01-02 07:01:27 +00005820 return Error(Loc, "invalid cast opcode for cast from '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00005821 getTypeString(Op->getType()) + "' to '" +
5822 getTypeString(DestTy) + "'");
Chris Lattner89d856e2009-03-01 00:53:13 +00005823 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00005824 Inst = CastInst::Create((Instruction::CastOps)Opc, Op, DestTy);
5825 return false;
5826}
5827
5828/// ParseSelect
5829/// ::= 'select' TypeAndValue ',' TypeAndValue ',' TypeAndValue
5830bool LLParser::ParseSelect(Instruction *&Inst, PerFunctionState &PFS) {
5831 LocTy Loc;
5832 Value *Op0, *Op1, *Op2;
5833 if (ParseTypeAndValue(Op0, Loc, PFS) ||
5834 ParseToken(lltok::comma, "expected ',' after select condition") ||
5835 ParseTypeAndValue(Op1, PFS) ||
5836 ParseToken(lltok::comma, "expected ',' after select value") ||
5837 ParseTypeAndValue(Op2, PFS))
5838 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005839
Chris Lattnerac161bf2009-01-02 07:01:27 +00005840 if (const char *Reason = SelectInst::areInvalidOperands(Op0, Op1, Op2))
5841 return Error(Loc, Reason);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005842
Chris Lattnerac161bf2009-01-02 07:01:27 +00005843 Inst = SelectInst::Create(Op0, Op1, Op2);
5844 return false;
5845}
5846
Chris Lattnerb55ab542009-01-05 08:18:44 +00005847/// ParseVA_Arg
5848/// ::= 'va_arg' TypeAndValue ',' Type
5849bool LLParser::ParseVA_Arg(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00005850 Value *Op;
Craig Topper2617dcc2014-04-15 06:32:26 +00005851 Type *EltTy = nullptr;
Chris Lattnerb55ab542009-01-05 08:18:44 +00005852 LocTy TypeLoc;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005853 if (ParseTypeAndValue(Op, PFS) ||
5854 ParseToken(lltok::comma, "expected ',' after vaarg operand") ||
Chris Lattnerb55ab542009-01-05 08:18:44 +00005855 ParseType(EltTy, TypeLoc))
Chris Lattnerac161bf2009-01-02 07:01:27 +00005856 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005857
Chris Lattnerb55ab542009-01-05 08:18:44 +00005858 if (!EltTy->isFirstClassType())
5859 return Error(TypeLoc, "va_arg requires operand with first class type");
Chris Lattnerac161bf2009-01-02 07:01:27 +00005860
5861 Inst = new VAArgInst(Op, EltTy);
5862 return false;
5863}
5864
5865/// ParseExtractElement
5866/// ::= 'extractelement' TypeAndValue ',' TypeAndValue
5867bool LLParser::ParseExtractElement(Instruction *&Inst, PerFunctionState &PFS) {
5868 LocTy Loc;
5869 Value *Op0, *Op1;
5870 if (ParseTypeAndValue(Op0, Loc, PFS) ||
5871 ParseToken(lltok::comma, "expected ',' after extract value") ||
5872 ParseTypeAndValue(Op1, PFS))
5873 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005874
Chris Lattnerac161bf2009-01-02 07:01:27 +00005875 if (!ExtractElementInst::isValidOperands(Op0, Op1))
5876 return Error(Loc, "invalid extractelement operands");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005877
Eric Christopherc9742252009-07-25 02:28:41 +00005878 Inst = ExtractElementInst::Create(Op0, Op1);
Chris Lattnerac161bf2009-01-02 07:01:27 +00005879 return false;
5880}
5881
5882/// ParseInsertElement
5883/// ::= 'insertelement' TypeAndValue ',' TypeAndValue ',' TypeAndValue
5884bool LLParser::ParseInsertElement(Instruction *&Inst, PerFunctionState &PFS) {
5885 LocTy Loc;
5886 Value *Op0, *Op1, *Op2;
5887 if (ParseTypeAndValue(Op0, Loc, PFS) ||
5888 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
5889 ParseTypeAndValue(Op1, PFS) ||
5890 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
5891 ParseTypeAndValue(Op2, PFS))
5892 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005893
Chris Lattnerac161bf2009-01-02 07:01:27 +00005894 if (!InsertElementInst::isValidOperands(Op0, Op1, Op2))
Eric Christopherfef8db62009-07-23 01:01:32 +00005895 return Error(Loc, "invalid insertelement operands");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005896
Chris Lattnerac161bf2009-01-02 07:01:27 +00005897 Inst = InsertElementInst::Create(Op0, Op1, Op2);
5898 return false;
5899}
5900
5901/// ParseShuffleVector
5902/// ::= 'shufflevector' TypeAndValue ',' TypeAndValue ',' TypeAndValue
5903bool LLParser::ParseShuffleVector(Instruction *&Inst, PerFunctionState &PFS) {
5904 LocTy Loc;
5905 Value *Op0, *Op1, *Op2;
5906 if (ParseTypeAndValue(Op0, Loc, PFS) ||
5907 ParseToken(lltok::comma, "expected ',' after shuffle mask") ||
5908 ParseTypeAndValue(Op1, PFS) ||
5909 ParseToken(lltok::comma, "expected ',' after shuffle value") ||
5910 ParseTypeAndValue(Op2, PFS))
5911 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005912
Chris Lattnerac161bf2009-01-02 07:01:27 +00005913 if (!ShuffleVectorInst::isValidOperands(Op0, Op1, Op2))
Pete Cooperc1a6f982012-02-01 23:43:12 +00005914 return Error(Loc, "invalid shufflevector operands");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005915
Chris Lattnerac161bf2009-01-02 07:01:27 +00005916 Inst = new ShuffleVectorInst(Op0, Op1, Op2);
5917 return false;
5918}
5919
5920/// ParsePHI
Chris Lattnerc05471e2009-10-18 05:27:44 +00005921/// ::= 'phi' Type '[' Value ',' Value ']' (',' '[' Value ',' Value ']')*
Chris Lattnerf4f03422009-12-30 05:27:33 +00005922int LLParser::ParsePHI(Instruction *&Inst, PerFunctionState &PFS) {
Craig Topper2617dcc2014-04-15 06:32:26 +00005923 Type *Ty = nullptr; LocTy TypeLoc;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005924 Value *Op0, *Op1;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005925
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00005926 if (ParseType(Ty, TypeLoc) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00005927 ParseToken(lltok::lsquare, "expected '[' in phi value list") ||
5928 ParseValue(Ty, Op0, PFS) ||
5929 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
Owen Anderson55f1c092009-08-13 21:58:54 +00005930 ParseValue(Type::getLabelTy(Context), Op1, PFS) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00005931 ParseToken(lltok::rsquare, "expected ']' in phi value list"))
5932 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005933
Chris Lattnerf4f03422009-12-30 05:27:33 +00005934 bool AteExtraComma = false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005935 SmallVector<std::pair<Value*, BasicBlock*>, 16> PHIVals;
Eugene Zelenko1804a772016-08-25 00:45:04 +00005936
5937 while (true) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00005938 PHIVals.push_back(std::make_pair(Op0, cast<BasicBlock>(Op1)));
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005939
Chris Lattner3822f632009-01-02 08:05:26 +00005940 if (!EatIfPresent(lltok::comma))
Chris Lattnerac161bf2009-01-02 07:01:27 +00005941 break;
5942
Chris Lattnerf4f03422009-12-30 05:27:33 +00005943 if (Lex.getKind() == lltok::MetadataVar) {
5944 AteExtraComma = true;
Devang Patel8f842d32009-10-16 18:45:49 +00005945 break;
Chris Lattnerf4f03422009-12-30 05:27:33 +00005946 }
Devang Patel8f842d32009-10-16 18:45:49 +00005947
Chris Lattner3822f632009-01-02 08:05:26 +00005948 if (ParseToken(lltok::lsquare, "expected '[' in phi value list") ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00005949 ParseValue(Ty, Op0, PFS) ||
5950 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
Owen Anderson55f1c092009-08-13 21:58:54 +00005951 ParseValue(Type::getLabelTy(Context), Op1, PFS) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00005952 ParseToken(lltok::rsquare, "expected ']' in phi value list"))
5953 return true;
5954 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005955
Chris Lattnerac161bf2009-01-02 07:01:27 +00005956 if (!Ty->isFirstClassType())
5957 return Error(TypeLoc, "phi node must have first class type");
5958
Jay Foad52131342011-03-30 11:28:46 +00005959 PHINode *PN = PHINode::Create(Ty, PHIVals.size());
Chris Lattnerac161bf2009-01-02 07:01:27 +00005960 for (unsigned i = 0, e = PHIVals.size(); i != e; ++i)
5961 PN->addIncoming(PHIVals[i].first, PHIVals[i].second);
5962 Inst = PN;
Chris Lattnerf4f03422009-12-30 05:27:33 +00005963 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005964}
5965
Bill Wendlingfae14752011-08-12 20:24:12 +00005966/// ParseLandingPad
5967/// ::= 'landingpad' Type 'personality' TypeAndValue 'cleanup'? Clause+
5968/// Clause
5969/// ::= 'catch' TypeAndValue
5970/// ::= 'filter'
5971/// ::= 'filter' TypeAndValue ( ',' TypeAndValue )*
5972bool LLParser::ParseLandingPad(Instruction *&Inst, PerFunctionState &PFS) {
Craig Topper2617dcc2014-04-15 06:32:26 +00005973 Type *Ty = nullptr; LocTy TyLoc;
Bill Wendlingfae14752011-08-12 20:24:12 +00005974
David Majnemer7fddecc2015-06-17 20:52:32 +00005975 if (ParseType(Ty, TyLoc))
Bill Wendlingfae14752011-08-12 20:24:12 +00005976 return true;
5977
David Majnemer7fddecc2015-06-17 20:52:32 +00005978 std::unique_ptr<LandingPadInst> LP(LandingPadInst::Create(Ty, 0));
Bill Wendlingfae14752011-08-12 20:24:12 +00005979 LP->setCleanup(EatIfPresent(lltok::kw_cleanup));
5980
5981 while (Lex.getKind() == lltok::kw_catch || Lex.getKind() == lltok::kw_filter){
5982 LandingPadInst::ClauseType CT;
5983 if (EatIfPresent(lltok::kw_catch))
5984 CT = LandingPadInst::Catch;
5985 else if (EatIfPresent(lltok::kw_filter))
5986 CT = LandingPadInst::Filter;
5987 else
5988 return TokError("expected 'catch' or 'filter' clause type");
5989
Rafael Espindola4dc5dfc2014-06-04 18:51:31 +00005990 Value *V;
5991 LocTy VLoc;
Owen Andersonf8f259d2015-03-09 07:13:42 +00005992 if (ParseTypeAndValue(V, VLoc, PFS))
Bill Wendlingfae14752011-08-12 20:24:12 +00005993 return true;
Bill Wendlingfae14752011-08-12 20:24:12 +00005994
Bill Wendlinga52aa3c2011-08-12 20:52:25 +00005995 // A 'catch' type expects a non-array constant. A filter clause expects an
5996 // array constant.
5997 if (CT == LandingPadInst::Catch) {
5998 if (isa<ArrayType>(V->getType()))
5999 Error(VLoc, "'catch' clause has an invalid type");
6000 } else {
6001 if (!isa<ArrayType>(V->getType()))
6002 Error(VLoc, "'filter' clause has an invalid type");
6003 }
6004
Owen Andersonf8f259d2015-03-09 07:13:42 +00006005 Constant *CV = dyn_cast<Constant>(V);
6006 if (!CV)
6007 return Error(VLoc, "clause argument must be a constant");
6008 LP->addClause(CV);
Bill Wendlingfae14752011-08-12 20:24:12 +00006009 }
6010
Owen Andersonf8f259d2015-03-09 07:13:42 +00006011 Inst = LP.release();
Bill Wendlingfae14752011-08-12 20:24:12 +00006012 return false;
6013}
6014
Chris Lattnerac161bf2009-01-02 07:01:27 +00006015/// ParseCall
Sanjay Patelfa54ace2015-12-14 21:59:03 +00006016/// ::= 'call' OptionalFastMathFlags OptionalCallingConv
6017/// OptionalAttrs Type Value ParameterList OptionalAttrs
6018/// ::= 'tail' 'call' OptionalFastMathFlags OptionalCallingConv
6019/// OptionalAttrs Type Value ParameterList OptionalAttrs
6020/// ::= 'musttail' 'call' OptionalFastMathFlags OptionalCallingConv
6021/// OptionalAttrs Type Value ParameterList OptionalAttrs
6022/// ::= 'notail' 'call' OptionalFastMathFlags OptionalCallingConv
6023/// OptionalAttrs Type Value ParameterList OptionalAttrs
Chris Lattnerac161bf2009-01-02 07:01:27 +00006024bool LLParser::ParseCall(Instruction *&Inst, PerFunctionState &PFS,
Reid Kleckner5772b772014-04-24 20:14:34 +00006025 CallInst::TailCallKind TCK) {
Bill Wendling50d27842012-10-15 20:35:56 +00006026 AttrBuilder RetAttrs, FnAttrs;
Bill Wendlingb32b0412013-02-08 06:32:06 +00006027 std::vector<unsigned> FwdRefAttrGrps;
Michael Gottesman41748d72013-06-27 00:25:01 +00006028 LocTy BuiltinLoc;
Alexey Samsonov17a9cff2014-09-10 18:00:17 +00006029 unsigned CC;
Craig Topper2617dcc2014-04-15 06:32:26 +00006030 Type *RetType = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00006031 LocTy RetTypeLoc;
6032 ValID CalleeID;
6033 SmallVector<ParamInfo, 16> ArgList;
Sanjoy Dasb513a9f2015-09-24 23:34:52 +00006034 SmallVector<OperandBundleDef, 2> BundleList;
Chris Lattnerac161bf2009-01-02 07:01:27 +00006035 LocTy CallLoc = Lex.getLoc();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00006036
Sanjay Patelfa54ace2015-12-14 21:59:03 +00006037 if (TCK != CallInst::TCK_None &&
6038 ParseToken(lltok::kw_call,
6039 "expected 'tail call', 'musttail call', or 'notail call'"))
6040 return true;
6041
6042 FastMathFlags FMF = EatFastMathFlagsIfPresent();
6043
6044 if (ParseOptionalCallingConv(CC) || ParseOptionalReturnAttrs(RetAttrs) ||
Chris Lattnerf880ca22009-03-09 04:49:14 +00006045 ParseType(RetType, RetTypeLoc, true /*void allowed*/) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00006046 ParseValID(CalleeID) ||
Reid Kleckner83498642014-08-26 00:33:28 +00006047 ParseParameterList(ArgList, PFS, TCK == CallInst::TCK_MustTail,
6048 PFS.getFunction().isVarArg()) ||
Sanjoy Dasb513a9f2015-09-24 23:34:52 +00006049 ParseFnAttributeValuePairs(FnAttrs, FwdRefAttrGrps, false, BuiltinLoc) ||
6050 ParseOptionalOperandBundles(BundleList, PFS))
Chris Lattnerac161bf2009-01-02 07:01:27 +00006051 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00006052
Sanjay Patelfa54ace2015-12-14 21:59:03 +00006053 if (FMF.any() && !RetType->isFPOrFPVectorTy())
6054 return Error(CallLoc, "fast-math-flags specified for call without "
6055 "floating-point scalar or vector return type");
6056
Chris Lattnerac161bf2009-01-02 07:01:27 +00006057 // If RetType is a non-function pointer type, then this is the short syntax
6058 // for the call, which means that RetType is just the return type. Infer the
6059 // rest of the function argument types from the arguments that are present.
David Blaikie23af6482015-04-16 23:24:18 +00006060 FunctionType *Ty = dyn_cast<FunctionType>(RetType);
6061 if (!Ty) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00006062 // Pull out the types of all of the arguments...
Jay Foadb804a2b2011-07-12 14:06:48 +00006063 std::vector<Type*> ParamTypes;
Eli Friedman6cf51412010-07-24 23:06:59 +00006064 for (unsigned i = 0, e = ArgList.size(); i != e; ++i)
6065 ParamTypes.push_back(ArgList[i].V->getType());
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00006066
Chris Lattnerac161bf2009-01-02 07:01:27 +00006067 if (!FunctionType::isValidReturnType(RetType))
6068 return Error(RetTypeLoc, "Invalid result type for LLVM function");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00006069
Owen Anderson4056ca92009-07-29 22:17:13 +00006070 Ty = FunctionType::get(RetType, ParamTypes, false);
Chris Lattnerac161bf2009-01-02 07:01:27 +00006071 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00006072
David Blaikie41ba2b42015-07-27 23:32:19 +00006073 CalleeID.FTy = Ty;
6074
Chris Lattnerac161bf2009-01-02 07:01:27 +00006075 // Look up the callee.
6076 Value *Callee;
David Blaikie23af6482015-04-16 23:24:18 +00006077 if (ConvertValIDToValue(PointerType::getUnqual(Ty), CalleeID, Callee, &PFS))
6078 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00006079
Bill Wendling3d7b0b82012-12-19 07:18:57 +00006080 // Set up the Attribute for the function.
Reid Klecknerc2cb5602017-04-12 00:38:00 +00006081 SmallVector<AttributeSet, 8> Attrs;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00006082
Chris Lattnerac161bf2009-01-02 07:01:27 +00006083 SmallVector<Value*, 8> Args;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00006084
Chris Lattnerac161bf2009-01-02 07:01:27 +00006085 // Loop through FunctionType's arguments and ensure they are specified
6086 // correctly. Also, gather any parameter attributes.
6087 FunctionType::param_iterator I = Ty->param_begin();
6088 FunctionType::param_iterator E = Ty->param_end();
6089 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
Craig Topper2617dcc2014-04-15 06:32:26 +00006090 Type *ExpectedTy = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00006091 if (I != E) {
6092 ExpectedTy = *I++;
6093 } else if (!Ty->isVarArg()) {
6094 return Error(ArgList[i].Loc, "too many arguments specified");
6095 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00006096
Chris Lattnerac161bf2009-01-02 07:01:27 +00006097 if (ExpectedTy && ExpectedTy != ArgList[i].V->getType())
6098 return Error(ArgList[i].Loc, "argument is not of expected type '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00006099 getTypeString(ExpectedTy) + "'");
Chris Lattnerac161bf2009-01-02 07:01:27 +00006100 Args.push_back(ArgList[i].V);
Reid Klecknereb9dd5b2017-04-10 23:31:05 +00006101 Attrs.push_back(ArgList[i].Attrs);
Chris Lattnerac161bf2009-01-02 07:01:27 +00006102 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00006103
Chris Lattnerac161bf2009-01-02 07:01:27 +00006104 if (I != E)
6105 return Error(CallLoc, "not enough parameters specified for call");
6106
Reid Klecknereb9dd5b2017-04-10 23:31:05 +00006107 if (FnAttrs.hasAlignmentAttr())
6108 return Error(CallLoc, "call instructions may not have an alignment");
David Majnemer8d22abd2015-02-23 00:01:32 +00006109
Bill Wendling3d7b0b82012-12-19 07:18:57 +00006110 // Finish off the Attribute and check them
Reid Kleckner7f720332017-04-13 00:58:09 +00006111 AttributeList PAL =
6112 AttributeList::get(Context, AttributeSet::get(Context, FnAttrs),
6113 AttributeSet::get(Context, RetAttrs), Attrs);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00006114
Sanjoy Dasb513a9f2015-09-24 23:34:52 +00006115 CallInst *CI = CallInst::Create(Ty, Callee, Args, BundleList);
Reid Kleckner5772b772014-04-24 20:14:34 +00006116 CI->setTailCallKind(TCK);
Chris Lattnerac161bf2009-01-02 07:01:27 +00006117 CI->setCallingConv(CC);
Sanjay Patelfa54ace2015-12-14 21:59:03 +00006118 if (FMF.any())
6119 CI->setFastMathFlags(FMF);
Chris Lattnerac161bf2009-01-02 07:01:27 +00006120 CI->setAttributes(PAL);
Bill Wendlingb32b0412013-02-08 06:32:06 +00006121 ForwardRefAttrGroups[CI] = FwdRefAttrGrps;
Chris Lattnerac161bf2009-01-02 07:01:27 +00006122 Inst = CI;
6123 return false;
6124}
6125
6126//===----------------------------------------------------------------------===//
6127// Memory Instructions.
6128//===----------------------------------------------------------------------===//
6129
6130/// ParseAlloc
Manman Ren9bfd0d02016-04-01 21:41:15 +00006131/// ::= 'alloca' 'inalloca'? 'swifterror'? Type (',' TypeAndValue)?
Yaxun Liuadde4e42017-10-14 03:23:18 +00006132/// (',' 'align' i32)? (',', 'addrspace(n))?
Chris Lattner78103722011-06-17 03:16:47 +00006133int LLParser::ParseAlloc(Instruction *&Inst, PerFunctionState &PFS) {
Craig Topper2617dcc2014-04-15 06:32:26 +00006134 Value *Size = nullptr;
Matt Arsenault3c1fc762017-04-10 22:27:50 +00006135 LocTy SizeLoc, TyLoc, ASLoc;
Chris Lattnerac161bf2009-01-02 07:01:27 +00006136 unsigned Alignment = 0;
Matt Arsenault3c1fc762017-04-10 22:27:50 +00006137 unsigned AddrSpace = 0;
Craig Topper2617dcc2014-04-15 06:32:26 +00006138 Type *Ty = nullptr;
David Majnemerc4ab61c2014-03-09 06:41:58 +00006139
6140 bool IsInAlloca = EatIfPresent(lltok::kw_inalloca);
Manman Ren9bfd0d02016-04-01 21:41:15 +00006141 bool IsSwiftError = EatIfPresent(lltok::kw_swifterror);
David Majnemerc4ab61c2014-03-09 06:41:58 +00006142
David Majnemera3b0eb22015-02-16 08:38:03 +00006143 if (ParseType(Ty, TyLoc)) return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00006144
David Majnemera3b0eb22015-02-16 08:38:03 +00006145 if (Ty->isFunctionTy() || !PointerType::isValidElementType(Ty))
6146 return Error(TyLoc, "invalid type for alloca");
David Majnemerfad5a312015-02-11 09:13:11 +00006147
Chris Lattnerb2f39502009-12-30 05:44:30 +00006148 bool AteExtraComma = false;
Chris Lattner3822f632009-01-02 08:05:26 +00006149 if (EatIfPresent(lltok::comma)) {
David Majnemerc4ab61c2014-03-09 06:41:58 +00006150 if (Lex.getKind() == lltok::kw_align) {
Matt Arsenault3c1fc762017-04-10 22:27:50 +00006151 if (ParseOptionalAlignment(Alignment))
6152 return true;
6153 if (ParseOptionalCommaAddrSpace(AddrSpace, ASLoc, AteExtraComma))
6154 return true;
6155 } else if (Lex.getKind() == lltok::kw_addrspace) {
6156 ASLoc = Lex.getLoc();
6157 if (ParseOptionalAddrSpace(AddrSpace))
6158 return true;
David Majnemerc4ab61c2014-03-09 06:41:58 +00006159 } else if (Lex.getKind() == lltok::MetadataVar) {
6160 AteExtraComma = true;
6161 } else {
Yaxun Liuadde4e42017-10-14 03:23:18 +00006162 if (ParseTypeAndValue(Size, SizeLoc, PFS))
David Majnemerc4ab61c2014-03-09 06:41:58 +00006163 return true;
Yaxun Liuadde4e42017-10-14 03:23:18 +00006164 if (EatIfPresent(lltok::comma)) {
6165 if (Lex.getKind() == lltok::kw_align) {
6166 if (ParseOptionalAlignment(Alignment))
6167 return true;
6168 if (ParseOptionalCommaAddrSpace(AddrSpace, ASLoc, AteExtraComma))
6169 return true;
6170 } else if (Lex.getKind() == lltok::kw_addrspace) {
6171 ASLoc = Lex.getLoc();
6172 if (ParseOptionalAddrSpace(AddrSpace))
6173 return true;
6174 } else if (Lex.getKind() == lltok::MetadataVar) {
6175 AteExtraComma = true;
6176 }
6177 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00006178 }
6179 }
6180
Dan Gohman2140a742010-05-28 01:14:11 +00006181 if (Size && !Size->getType()->isIntegerTy())
6182 return Error(SizeLoc, "element count must have integer type");
Chris Lattnerac161bf2009-01-02 07:01:27 +00006183
Matt Arsenault3c1fc762017-04-10 22:27:50 +00006184 const DataLayout &DL = M->getDataLayout();
6185 unsigned AS = DL.getAllocaAddrSpace();
6186 if (AS != AddrSpace) {
6187 // TODO: In the future it should be possible to specify addrspace per-alloca.
6188 return Error(ASLoc, "address space must match datalayout");
6189 }
6190
6191 AllocaInst *AI = new AllocaInst(Ty, AS, Size, Alignment);
Reid Kleckner436c42e2014-01-17 23:58:17 +00006192 AI->setUsedWithInAlloca(IsInAlloca);
Manman Ren9bfd0d02016-04-01 21:41:15 +00006193 AI->setSwiftError(IsSwiftError);
Reid Kleckner436c42e2014-01-17 23:58:17 +00006194 Inst = AI;
Chris Lattner78103722011-06-17 03:16:47 +00006195 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerac161bf2009-01-02 07:01:27 +00006196}
6197
6198/// ParseLoad
Eli Friedman02e737b2011-08-12 22:50:01 +00006199/// ::= 'load' 'volatile'? TypeAndValue (',' 'align' i32)?
Michael Ilseman26ee2b82012-11-15 22:34:00 +00006200/// ::= 'load' 'atomic' 'volatile'? TypeAndValue
Eli Friedman02e737b2011-08-12 22:50:01 +00006201/// 'singlethread'? AtomicOrdering (',' 'align' i32)?
Chris Lattnerbc639292011-11-27 06:56:53 +00006202int LLParser::ParseLoad(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00006203 Value *Val; LocTy Loc;
Devang Patelea8a4b92009-09-17 23:04:48 +00006204 unsigned Alignment = 0;
Chris Lattnerb2f39502009-12-30 05:44:30 +00006205 bool AteExtraComma = false;
Eli Friedman02e737b2011-08-12 22:50:01 +00006206 bool isAtomic = false;
JF Bastien800f87a2016-04-06 21:19:33 +00006207 AtomicOrdering Ordering = AtomicOrdering::NotAtomic;
Konstantin Zhuravlyovbb80d3e2017-07-11 22:23:00 +00006208 SyncScope::ID SSID = SyncScope::System;
Eli Friedman02e737b2011-08-12 22:50:01 +00006209
6210 if (Lex.getKind() == lltok::kw_atomic) {
Eli Friedman02e737b2011-08-12 22:50:01 +00006211 isAtomic = true;
6212 Lex.Lex();
6213 }
6214
Chris Lattnerbc639292011-11-27 06:56:53 +00006215 bool isVolatile = false;
Eli Friedman02e737b2011-08-12 22:50:01 +00006216 if (Lex.getKind() == lltok::kw_volatile) {
Eli Friedman02e737b2011-08-12 22:50:01 +00006217 isVolatile = true;
6218 Lex.Lex();
6219 }
6220
David Blaikie15d9a4c2015-04-06 20:59:48 +00006221 Type *Ty;
David Blaikiea79ac142015-02-27 21:17:42 +00006222 LocTy ExplicitTypeLoc = Lex.getLoc();
6223 if (ParseType(Ty) ||
6224 ParseToken(lltok::comma, "expected comma after load's type") ||
6225 ParseTypeAndValue(Val, Loc, PFS) ||
Konstantin Zhuravlyovbb80d3e2017-07-11 22:23:00 +00006226 ParseScopeAndOrdering(isAtomic, SSID, Ordering) ||
Chris Lattnerb2f39502009-12-30 05:44:30 +00006227 ParseOptionalCommaAlign(Alignment, AteExtraComma))
6228 return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00006229
David Blaikie15d9a4c2015-04-06 20:59:48 +00006230 if (!Val->getType()->isPointerTy() || !Ty->isFirstClassType())
Chris Lattnerac161bf2009-01-02 07:01:27 +00006231 return Error(Loc, "load operand must be a pointer to a first class type");
Eli Friedman59b66882011-08-09 23:02:53 +00006232 if (isAtomic && !Alignment)
6233 return Error(Loc, "atomic load must have explicit non-zero alignment");
JF Bastien800f87a2016-04-06 21:19:33 +00006234 if (Ordering == AtomicOrdering::Release ||
6235 Ordering == AtomicOrdering::AcquireRelease)
Eli Friedman59b66882011-08-09 23:02:53 +00006236 return Error(Loc, "atomic load cannot use Release ordering");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00006237
David Blaikiea79ac142015-02-27 21:17:42 +00006238 if (Ty != cast<PointerType>(Val->getType())->getElementType())
6239 return Error(ExplicitTypeLoc,
6240 "explicit pointee type doesn't match operand's pointee type");
6241
Konstantin Zhuravlyovbb80d3e2017-07-11 22:23:00 +00006242 Inst = new LoadInst(Ty, Val, "", isVolatile, Alignment, Ordering, SSID);
Chris Lattnerb2f39502009-12-30 05:44:30 +00006243 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerac161bf2009-01-02 07:01:27 +00006244}
6245
6246/// ParseStore
Eli Friedman02e737b2011-08-12 22:50:01 +00006247
6248/// ::= 'store' 'volatile'? TypeAndValue ',' TypeAndValue (',' 'align' i32)?
6249/// ::= 'store' 'atomic' 'volatile'? TypeAndValue ',' TypeAndValue
Eli Friedman59b66882011-08-09 23:02:53 +00006250/// 'singlethread'? AtomicOrdering (',' 'align' i32)?
Chris Lattnerbc639292011-11-27 06:56:53 +00006251int LLParser::ParseStore(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00006252 Value *Val, *Ptr; LocTy Loc, PtrLoc;
Devang Patelea8a4b92009-09-17 23:04:48 +00006253 unsigned Alignment = 0;
Chris Lattnerb2f39502009-12-30 05:44:30 +00006254 bool AteExtraComma = false;
Eli Friedman02e737b2011-08-12 22:50:01 +00006255 bool isAtomic = false;
JF Bastien800f87a2016-04-06 21:19:33 +00006256 AtomicOrdering Ordering = AtomicOrdering::NotAtomic;
Konstantin Zhuravlyovbb80d3e2017-07-11 22:23:00 +00006257 SyncScope::ID SSID = SyncScope::System;
Eli Friedman02e737b2011-08-12 22:50:01 +00006258
6259 if (Lex.getKind() == lltok::kw_atomic) {
Eli Friedman02e737b2011-08-12 22:50:01 +00006260 isAtomic = true;
6261 Lex.Lex();
6262 }
6263
Chris Lattnerbc639292011-11-27 06:56:53 +00006264 bool isVolatile = false;
Eli Friedman02e737b2011-08-12 22:50:01 +00006265 if (Lex.getKind() == lltok::kw_volatile) {
Eli Friedman02e737b2011-08-12 22:50:01 +00006266 isVolatile = true;
6267 Lex.Lex();
6268 }
6269
Chris Lattnerac161bf2009-01-02 07:01:27 +00006270 if (ParseTypeAndValue(Val, Loc, PFS) ||
6271 ParseToken(lltok::comma, "expected ',' after store operand") ||
Chris Lattnerb2f39502009-12-30 05:44:30 +00006272 ParseTypeAndValue(Ptr, PtrLoc, PFS) ||
Konstantin Zhuravlyovbb80d3e2017-07-11 22:23:00 +00006273 ParseScopeAndOrdering(isAtomic, SSID, Ordering) ||
Chris Lattnerb2f39502009-12-30 05:44:30 +00006274 ParseOptionalCommaAlign(Alignment, AteExtraComma))
Chris Lattnerac161bf2009-01-02 07:01:27 +00006275 return true;
Devang Patelea8a4b92009-09-17 23:04:48 +00006276
Duncan Sands19d0b472010-02-16 11:11:14 +00006277 if (!Ptr->getType()->isPointerTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00006278 return Error(PtrLoc, "store operand must be a pointer");
6279 if (!Val->getType()->isFirstClassType())
6280 return Error(Loc, "store operand must be a first class value");
6281 if (cast<PointerType>(Ptr->getType())->getElementType() != Val->getType())
6282 return Error(Loc, "stored value and pointer type do not match");
Eli Friedman59b66882011-08-09 23:02:53 +00006283 if (isAtomic && !Alignment)
6284 return Error(Loc, "atomic store must have explicit non-zero alignment");
JF Bastien800f87a2016-04-06 21:19:33 +00006285 if (Ordering == AtomicOrdering::Acquire ||
6286 Ordering == AtomicOrdering::AcquireRelease)
Eli Friedman59b66882011-08-09 23:02:53 +00006287 return Error(Loc, "atomic store cannot use Acquire ordering");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00006288
Konstantin Zhuravlyovbb80d3e2017-07-11 22:23:00 +00006289 Inst = new StoreInst(Val, Ptr, isVolatile, Alignment, Ordering, SSID);
Chris Lattnerb2f39502009-12-30 05:44:30 +00006290 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerac161bf2009-01-02 07:01:27 +00006291}
6292
Eli Friedmanc9a551e2011-07-28 21:48:00 +00006293/// ParseCmpXchg
Tim Northover420a2162014-06-13 14:24:07 +00006294/// ::= 'cmpxchg' 'weak'? 'volatile'? TypeAndValue ',' TypeAndValue ','
6295/// TypeAndValue 'singlethread'? AtomicOrdering AtomicOrdering
Eli Friedman02e737b2011-08-12 22:50:01 +00006296int LLParser::ParseCmpXchg(Instruction *&Inst, PerFunctionState &PFS) {
Eli Friedmanc9a551e2011-07-28 21:48:00 +00006297 Value *Ptr, *Cmp, *New; LocTy PtrLoc, CmpLoc, NewLoc;
6298 bool AteExtraComma = false;
JF Bastien800f87a2016-04-06 21:19:33 +00006299 AtomicOrdering SuccessOrdering = AtomicOrdering::NotAtomic;
6300 AtomicOrdering FailureOrdering = AtomicOrdering::NotAtomic;
Konstantin Zhuravlyovbb80d3e2017-07-11 22:23:00 +00006301 SyncScope::ID SSID = SyncScope::System;
Eli Friedman02e737b2011-08-12 22:50:01 +00006302 bool isVolatile = false;
Tim Northover420a2162014-06-13 14:24:07 +00006303 bool isWeak = false;
6304
6305 if (EatIfPresent(lltok::kw_weak))
6306 isWeak = true;
Eli Friedman02e737b2011-08-12 22:50:01 +00006307
6308 if (EatIfPresent(lltok::kw_volatile))
6309 isVolatile = true;
6310
Eli Friedmanc9a551e2011-07-28 21:48:00 +00006311 if (ParseTypeAndValue(Ptr, PtrLoc, PFS) ||
6312 ParseToken(lltok::comma, "expected ',' after cmpxchg address") ||
6313 ParseTypeAndValue(Cmp, CmpLoc, PFS) ||
6314 ParseToken(lltok::comma, "expected ',' after cmpxchg cmp operand") ||
6315 ParseTypeAndValue(New, NewLoc, PFS) ||
Konstantin Zhuravlyovbb80d3e2017-07-11 22:23:00 +00006316 ParseScopeAndOrdering(true /*Always atomic*/, SSID, SuccessOrdering) ||
Tim Northovere94a5182014-03-11 10:48:52 +00006317 ParseOrdering(FailureOrdering))
Eli Friedmanc9a551e2011-07-28 21:48:00 +00006318 return true;
6319
JF Bastien800f87a2016-04-06 21:19:33 +00006320 if (SuccessOrdering == AtomicOrdering::Unordered ||
6321 FailureOrdering == AtomicOrdering::Unordered)
Eli Friedmanc9a551e2011-07-28 21:48:00 +00006322 return TokError("cmpxchg cannot be unordered");
JF Bastien800f87a2016-04-06 21:19:33 +00006323 if (isStrongerThan(FailureOrdering, SuccessOrdering))
6324 return TokError("cmpxchg failure argument shall be no stronger than the "
6325 "success argument");
6326 if (FailureOrdering == AtomicOrdering::Release ||
6327 FailureOrdering == AtomicOrdering::AcquireRelease)
6328 return TokError(
6329 "cmpxchg failure ordering cannot include release semantics");
Eli Friedmanc9a551e2011-07-28 21:48:00 +00006330 if (!Ptr->getType()->isPointerTy())
6331 return Error(PtrLoc, "cmpxchg operand must be a pointer");
6332 if (cast<PointerType>(Ptr->getType())->getElementType() != Cmp->getType())
6333 return Error(CmpLoc, "compare value and pointer type do not match");
6334 if (cast<PointerType>(Ptr->getType())->getElementType() != New->getType())
6335 return Error(NewLoc, "new value and pointer type do not match");
Philip Reames1960cfd2016-02-19 00:06:41 +00006336 if (!New->getType()->isFirstClassType())
6337 return Error(NewLoc, "cmpxchg operand must be a first class value");
Tim Northover420a2162014-06-13 14:24:07 +00006338 AtomicCmpXchgInst *CXI = new AtomicCmpXchgInst(
Konstantin Zhuravlyovbb80d3e2017-07-11 22:23:00 +00006339 Ptr, Cmp, New, SuccessOrdering, FailureOrdering, SSID);
Eli Friedmanc9a551e2011-07-28 21:48:00 +00006340 CXI->setVolatile(isVolatile);
Tim Northover420a2162014-06-13 14:24:07 +00006341 CXI->setWeak(isWeak);
Eli Friedmanc9a551e2011-07-28 21:48:00 +00006342 Inst = CXI;
6343 return AteExtraComma ? InstExtraComma : InstNormal;
6344}
6345
6346/// ParseAtomicRMW
Eli Friedman02e737b2011-08-12 22:50:01 +00006347/// ::= 'atomicrmw' 'volatile'? BinOp TypeAndValue ',' TypeAndValue
6348/// 'singlethread'? AtomicOrdering
6349int LLParser::ParseAtomicRMW(Instruction *&Inst, PerFunctionState &PFS) {
Eli Friedmanc9a551e2011-07-28 21:48:00 +00006350 Value *Ptr, *Val; LocTy PtrLoc, ValLoc;
6351 bool AteExtraComma = false;
JF Bastien800f87a2016-04-06 21:19:33 +00006352 AtomicOrdering Ordering = AtomicOrdering::NotAtomic;
Konstantin Zhuravlyovbb80d3e2017-07-11 22:23:00 +00006353 SyncScope::ID SSID = SyncScope::System;
Eli Friedman02e737b2011-08-12 22:50:01 +00006354 bool isVolatile = false;
Eli Friedmanc9a551e2011-07-28 21:48:00 +00006355 AtomicRMWInst::BinOp Operation;
Eli Friedman02e737b2011-08-12 22:50:01 +00006356
6357 if (EatIfPresent(lltok::kw_volatile))
6358 isVolatile = true;
6359
Eli Friedmanc9a551e2011-07-28 21:48:00 +00006360 switch (Lex.getKind()) {
6361 default: return TokError("expected binary operation in atomicrmw");
6362 case lltok::kw_xchg: Operation = AtomicRMWInst::Xchg; break;
6363 case lltok::kw_add: Operation = AtomicRMWInst::Add; break;
6364 case lltok::kw_sub: Operation = AtomicRMWInst::Sub; break;
6365 case lltok::kw_and: Operation = AtomicRMWInst::And; break;
6366 case lltok::kw_nand: Operation = AtomicRMWInst::Nand; break;
6367 case lltok::kw_or: Operation = AtomicRMWInst::Or; break;
6368 case lltok::kw_xor: Operation = AtomicRMWInst::Xor; break;
6369 case lltok::kw_max: Operation = AtomicRMWInst::Max; break;
6370 case lltok::kw_min: Operation = AtomicRMWInst::Min; break;
6371 case lltok::kw_umax: Operation = AtomicRMWInst::UMax; break;
6372 case lltok::kw_umin: Operation = AtomicRMWInst::UMin; break;
6373 }
6374 Lex.Lex(); // Eat the operation.
6375
6376 if (ParseTypeAndValue(Ptr, PtrLoc, PFS) ||
6377 ParseToken(lltok::comma, "expected ',' after atomicrmw address") ||
6378 ParseTypeAndValue(Val, ValLoc, PFS) ||
Konstantin Zhuravlyovbb80d3e2017-07-11 22:23:00 +00006379 ParseScopeAndOrdering(true /*Always atomic*/, SSID, Ordering))
Eli Friedmanc9a551e2011-07-28 21:48:00 +00006380 return true;
6381
JF Bastien800f87a2016-04-06 21:19:33 +00006382 if (Ordering == AtomicOrdering::Unordered)
Eli Friedmanc9a551e2011-07-28 21:48:00 +00006383 return TokError("atomicrmw cannot be unordered");
6384 if (!Ptr->getType()->isPointerTy())
6385 return Error(PtrLoc, "atomicrmw operand must be a pointer");
6386 if (cast<PointerType>(Ptr->getType())->getElementType() != Val->getType())
6387 return Error(ValLoc, "atomicrmw value and pointer type do not match");
6388 if (!Val->getType()->isIntegerTy())
6389 return Error(ValLoc, "atomicrmw operand must be an integer");
6390 unsigned Size = Val->getType()->getPrimitiveSizeInBits();
6391 if (Size < 8 || (Size & (Size - 1)))
6392 return Error(ValLoc, "atomicrmw operand must be power-of-two byte-sized"
6393 " integer");
6394
6395 AtomicRMWInst *RMWI =
Konstantin Zhuravlyovbb80d3e2017-07-11 22:23:00 +00006396 new AtomicRMWInst(Operation, Ptr, Val, Ordering, SSID);
Eli Friedmanc9a551e2011-07-28 21:48:00 +00006397 RMWI->setVolatile(isVolatile);
6398 Inst = RMWI;
6399 return AteExtraComma ? InstExtraComma : InstNormal;
6400}
6401
Eli Friedmanfee02c62011-07-25 23:16:38 +00006402/// ParseFence
6403/// ::= 'fence' 'singlethread'? AtomicOrdering
6404int LLParser::ParseFence(Instruction *&Inst, PerFunctionState &PFS) {
JF Bastien800f87a2016-04-06 21:19:33 +00006405 AtomicOrdering Ordering = AtomicOrdering::NotAtomic;
Konstantin Zhuravlyovbb80d3e2017-07-11 22:23:00 +00006406 SyncScope::ID SSID = SyncScope::System;
6407 if (ParseScopeAndOrdering(true /*Always atomic*/, SSID, Ordering))
Eli Friedmanfee02c62011-07-25 23:16:38 +00006408 return true;
6409
JF Bastien800f87a2016-04-06 21:19:33 +00006410 if (Ordering == AtomicOrdering::Unordered)
Eli Friedmanfee02c62011-07-25 23:16:38 +00006411 return TokError("fence cannot be unordered");
JF Bastien800f87a2016-04-06 21:19:33 +00006412 if (Ordering == AtomicOrdering::Monotonic)
Eli Friedmanfee02c62011-07-25 23:16:38 +00006413 return TokError("fence cannot be monotonic");
6414
Konstantin Zhuravlyovbb80d3e2017-07-11 22:23:00 +00006415 Inst = new FenceInst(Context, Ordering, SSID);
Eli Friedmanfee02c62011-07-25 23:16:38 +00006416 return InstNormal;
6417}
6418
Chris Lattnerac161bf2009-01-02 07:01:27 +00006419/// ParseGetElementPtr
Dan Gohman1639c392009-07-27 21:53:46 +00006420/// ::= 'getelementptr' 'inbounds'? TypeAndValue (',' TypeAndValue)*
Chris Lattnerf4f03422009-12-30 05:27:33 +00006421int LLParser::ParseGetElementPtr(Instruction *&Inst, PerFunctionState &PFS) {
Craig Topper2617dcc2014-04-15 06:32:26 +00006422 Value *Ptr = nullptr;
6423 Value *Val = nullptr;
Nadav Rotem3924cb02011-12-05 06:29:09 +00006424 LocTy Loc, EltLoc;
Dan Gohman1639c392009-07-27 21:53:46 +00006425
Dan Gohman16cbbe42009-07-29 15:58:36 +00006426 bool InBounds = EatIfPresent(lltok::kw_inbounds);
Dan Gohman1639c392009-07-27 21:53:46 +00006427
David Blaikie79e6c742015-02-27 19:29:02 +00006428 Type *Ty = nullptr;
6429 LocTy ExplicitTypeLoc = Lex.getLoc();
6430 if (ParseType(Ty) ||
6431 ParseToken(lltok::comma, "expected comma after getelementptr's type") ||
6432 ParseTypeAndValue(Ptr, Loc, PFS))
6433 return true;
6434
Eli Benderskyd9806682013-04-22 17:03:42 +00006435 Type *BaseType = Ptr->getType();
6436 PointerType *BasePointerType = dyn_cast<PointerType>(BaseType->getScalarType());
6437 if (!BasePointerType)
Chris Lattnerac161bf2009-01-02 07:01:27 +00006438 return Error(Loc, "base of getelementptr must be a pointer");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00006439
David Blaikie8d757942015-03-09 23:08:44 +00006440 if (Ty != BasePointerType->getElementType())
6441 return Error(ExplicitTypeLoc,
6442 "explicit pointee type doesn't match operand's pointee type");
6443
Chris Lattnerac161bf2009-01-02 07:01:27 +00006444 SmallVector<Value*, 16> Indices;
Chris Lattnerf4f03422009-12-30 05:27:33 +00006445 bool AteExtraComma = false;
Elena Demikhovsky37a4da82015-07-09 07:42:48 +00006446 // GEP returns a vector of pointers if at least one of parameters is a vector.
6447 // All vector parameters should have the same vector width.
6448 unsigned GEPWidth = BaseType->isVectorTy() ?
6449 BaseType->getVectorNumElements() : 0;
6450
Chris Lattner3822f632009-01-02 08:05:26 +00006451 while (EatIfPresent(lltok::comma)) {
Chris Lattnerf4f03422009-12-30 05:27:33 +00006452 if (Lex.getKind() == lltok::MetadataVar) {
6453 AteExtraComma = true;
Devang Patel52b17452009-10-13 18:49:55 +00006454 break;
Chris Lattnerf4f03422009-12-30 05:27:33 +00006455 }
Chris Lattner3822f632009-01-02 08:05:26 +00006456 if (ParseTypeAndValue(Val, EltLoc, PFS)) return true;
Craig Topper95d23472017-07-09 07:04:00 +00006457 if (!Val->getType()->isIntOrIntVectorTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00006458 return Error(EltLoc, "getelementptr index must be an integer");
Elena Demikhovsky37a4da82015-07-09 07:42:48 +00006459
Nadav Rotem3924cb02011-12-05 06:29:09 +00006460 if (Val->getType()->isVectorTy()) {
Elena Demikhovsky37a4da82015-07-09 07:42:48 +00006461 unsigned ValNumEl = Val->getType()->getVectorNumElements();
6462 if (GEPWidth && GEPWidth != ValNumEl)
Nadav Rotem3924cb02011-12-05 06:29:09 +00006463 return Error(EltLoc,
6464 "getelementptr vector index has a wrong number of elements");
Elena Demikhovsky37a4da82015-07-09 07:42:48 +00006465 GEPWidth = ValNumEl;
Nadav Rotem3924cb02011-12-05 06:29:09 +00006466 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00006467 Indices.push_back(Val);
6468 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00006469
Craig Toppere3dcce92015-08-01 22:20:21 +00006470 SmallPtrSet<Type*, 4> Visited;
David Blaikied33bad32015-04-17 22:32:13 +00006471 if (!Indices.empty() && !Ty->isSized(&Visited))
Eli Benderskyd9806682013-04-22 17:03:42 +00006472 return Error(Loc, "base element of getelementptr must be sized");
6473
David Blaikied33bad32015-04-17 22:32:13 +00006474 if (!GetElementPtrInst::getIndexedType(Ty, Indices))
Chris Lattnerac161bf2009-01-02 07:01:27 +00006475 return Error(Loc, "invalid getelementptr indices");
David Blaikiecd7b97e2015-03-14 21:11:24 +00006476 Inst = GetElementPtrInst::Create(Ty, Ptr, Indices);
Dan Gohman1639c392009-07-27 21:53:46 +00006477 if (InBounds)
Dan Gohman1b849082009-09-07 23:54:19 +00006478 cast<GetElementPtrInst>(Inst)->setIsInBounds(true);
Chris Lattnerf4f03422009-12-30 05:27:33 +00006479 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerac161bf2009-01-02 07:01:27 +00006480}
6481
6482/// ParseExtractValue
6483/// ::= 'extractvalue' TypeAndValue (',' uint32)+
Chris Lattnerf4f03422009-12-30 05:27:33 +00006484int LLParser::ParseExtractValue(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00006485 Value *Val; LocTy Loc;
6486 SmallVector<unsigned, 4> Indices;
Chris Lattnerf4f03422009-12-30 05:27:33 +00006487 bool AteExtraComma;
Chris Lattnerac161bf2009-01-02 07:01:27 +00006488 if (ParseTypeAndValue(Val, Loc, PFS) ||
Chris Lattnerf4f03422009-12-30 05:27:33 +00006489 ParseIndexList(Indices, AteExtraComma))
Chris Lattnerac161bf2009-01-02 07:01:27 +00006490 return true;
6491
Chris Lattner392be582010-02-12 20:49:41 +00006492 if (!Val->getType()->isAggregateType())
6493 return Error(Loc, "extractvalue operand must be aggregate type");
Chris Lattnerac161bf2009-01-02 07:01:27 +00006494
Jay Foad57aa6362011-07-13 10:26:04 +00006495 if (!ExtractValueInst::getIndexedType(Val->getType(), Indices))
Chris Lattnerac161bf2009-01-02 07:01:27 +00006496 return Error(Loc, "invalid indices for extractvalue");
Jay Foad57aa6362011-07-13 10:26:04 +00006497 Inst = ExtractValueInst::Create(Val, Indices);
Chris Lattnerf4f03422009-12-30 05:27:33 +00006498 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerac161bf2009-01-02 07:01:27 +00006499}
6500
6501/// ParseInsertValue
6502/// ::= 'insertvalue' TypeAndValue ',' TypeAndValue (',' uint32)+
Chris Lattnerf4f03422009-12-30 05:27:33 +00006503int LLParser::ParseInsertValue(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00006504 Value *Val0, *Val1; LocTy Loc0, Loc1;
6505 SmallVector<unsigned, 4> Indices;
Chris Lattnerf4f03422009-12-30 05:27:33 +00006506 bool AteExtraComma;
Chris Lattnerac161bf2009-01-02 07:01:27 +00006507 if (ParseTypeAndValue(Val0, Loc0, PFS) ||
6508 ParseToken(lltok::comma, "expected comma after insertvalue operand") ||
6509 ParseTypeAndValue(Val1, Loc1, PFS) ||
Chris Lattnerf4f03422009-12-30 05:27:33 +00006510 ParseIndexList(Indices, AteExtraComma))
Chris Lattnerac161bf2009-01-02 07:01:27 +00006511 return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00006512
Chris Lattner392be582010-02-12 20:49:41 +00006513 if (!Val0->getType()->isAggregateType())
6514 return Error(Loc0, "insertvalue operand must be aggregate type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00006515
David Majnemer30074532015-02-11 07:43:58 +00006516 Type *IndexedType = ExtractValueInst::getIndexedType(Val0->getType(), Indices);
6517 if (!IndexedType)
Chris Lattnerac161bf2009-01-02 07:01:27 +00006518 return Error(Loc0, "invalid indices for insertvalue");
David Majnemer30074532015-02-11 07:43:58 +00006519 if (IndexedType != Val1->getType())
6520 return Error(Loc1, "insertvalue operand and field disagree in type: '" +
6521 getTypeString(Val1->getType()) + "' instead of '" +
6522 getTypeString(IndexedType) + "'");
Jay Foad57aa6362011-07-13 10:26:04 +00006523 Inst = InsertValueInst::Create(Val0, Val1, Indices);
Chris Lattnerf4f03422009-12-30 05:27:33 +00006524 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerac161bf2009-01-02 07:01:27 +00006525}
Nick Lewycky49f89192009-04-04 07:22:01 +00006526
6527//===----------------------------------------------------------------------===//
6528// Embedded metadata.
6529//===----------------------------------------------------------------------===//
6530
6531/// ParseMDNodeVector
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00006532/// ::= { Element (',' Element)* }
Nick Lewyckyb8f9b7a2009-05-10 20:57:05 +00006533/// Element
6534/// ::= 'null' | TypeAndValue
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00006535bool LLParser::ParseMDNodeVector(SmallVectorImpl<Metadata *> &Elts) {
David Majnemer06f960d2014-12-11 20:44:09 +00006536 if (ParseToken(lltok::lbrace, "expected '{' here"))
6537 return true;
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00006538
Dan Gohman1e0213a2010-07-13 19:33:27 +00006539 // Check for an empty list.
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00006540 if (EatIfPresent(lltok::rbrace))
Dan Gohman1e0213a2010-07-13 19:33:27 +00006541 return false;
6542
Nick Lewycky49f89192009-04-04 07:22:01 +00006543 do {
Chris Lattnera01ddfc2009-12-30 04:42:57 +00006544 // Null is a special case since it is typeless.
6545 if (EatIfPresent(lltok::kw_null)) {
Craig Topper2617dcc2014-04-15 06:32:26 +00006546 Elts.push_back(nullptr);
Chris Lattnera01ddfc2009-12-30 04:42:57 +00006547 continue;
Nick Lewyckyb8f9b7a2009-05-10 20:57:05 +00006548 }
Michael Ilseman26ee2b82012-11-15 22:34:00 +00006549
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00006550 Metadata *MD;
6551 if (ParseMetadata(MD, nullptr))
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00006552 return true;
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00006553 Elts.push_back(MD);
Nick Lewycky49f89192009-04-04 07:22:01 +00006554 } while (EatIfPresent(lltok::comma));
6555
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00006556 return ParseToken(lltok::rbrace, "expected end of metadata node");
Nick Lewycky49f89192009-04-04 07:22:01 +00006557}
Duncan P. N. Exon Smith0a448fb2014-08-19 21:30:15 +00006558
6559//===----------------------------------------------------------------------===//
6560// Use-list order directives.
6561//===----------------------------------------------------------------------===//
6562bool LLParser::sortUseListOrder(Value *V, ArrayRef<unsigned> Indexes,
6563 SMLoc Loc) {
6564 if (V->use_empty())
6565 return Error(Loc, "value has no uses");
6566
6567 unsigned NumUses = 0;
6568 SmallDenseMap<const Use *, unsigned, 16> Order;
6569 for (const Use &U : V->uses()) {
6570 if (++NumUses > Indexes.size())
6571 break;
6572 Order[&U] = Indexes[NumUses - 1];
6573 }
6574 if (NumUses < 2)
6575 return Error(Loc, "value only has one use");
6576 if (Order.size() != Indexes.size() || NumUses > Indexes.size())
6577 return Error(Loc, "wrong number of indexes, expected " +
6578 Twine(std::distance(V->use_begin(), V->use_end())));
6579
6580 V->sortUseList([&](const Use &L, const Use &R) {
6581 return Order.lookup(&L) < Order.lookup(&R);
6582 });
6583 return false;
6584}
6585
6586/// ParseUseListOrderIndexes
6587/// ::= '{' uint32 (',' uint32)+ '}'
6588bool LLParser::ParseUseListOrderIndexes(SmallVectorImpl<unsigned> &Indexes) {
6589 SMLoc Loc = Lex.getLoc();
6590 if (ParseToken(lltok::lbrace, "expected '{' here"))
6591 return true;
6592 if (Lex.getKind() == lltok::rbrace)
6593 return Lex.Error("expected non-empty list of uselistorder indexes");
6594
6595 // Use Offset, Max, and IsOrdered to check consistency of indexes. The
6596 // indexes should be distinct numbers in the range [0, size-1], and should
6597 // not be in order.
6598 unsigned Offset = 0;
6599 unsigned Max = 0;
6600 bool IsOrdered = true;
6601 assert(Indexes.empty() && "Expected empty order vector");
6602 do {
6603 unsigned Index;
6604 if (ParseUInt32(Index))
6605 return true;
6606
6607 // Update consistency checks.
6608 Offset += Index - Indexes.size();
6609 Max = std::max(Max, Index);
6610 IsOrdered &= Index == Indexes.size();
6611
6612 Indexes.push_back(Index);
6613 } while (EatIfPresent(lltok::comma));
6614
6615 if (ParseToken(lltok::rbrace, "expected '}' here"))
6616 return true;
6617
6618 if (Indexes.size() < 2)
6619 return Error(Loc, "expected >= 2 uselistorder indexes");
6620 if (Offset != 0 || Max >= Indexes.size())
6621 return Error(Loc, "expected distinct uselistorder indexes in range [0, size)");
6622 if (IsOrdered)
6623 return Error(Loc, "expected uselistorder indexes to change the order");
6624
6625 return false;
6626}
6627
6628/// ParseUseListOrder
6629/// ::= 'uselistorder' Type Value ',' UseListOrderIndexes
6630bool LLParser::ParseUseListOrder(PerFunctionState *PFS) {
6631 SMLoc Loc = Lex.getLoc();
6632 if (ParseToken(lltok::kw_uselistorder, "expected uselistorder directive"))
6633 return true;
6634
6635 Value *V;
6636 SmallVector<unsigned, 16> Indexes;
6637 if (ParseTypeAndValue(V, PFS) ||
6638 ParseToken(lltok::comma, "expected comma in uselistorder directive") ||
6639 ParseUseListOrderIndexes(Indexes))
6640 return true;
6641
6642 return sortUseListOrder(V, Indexes, Loc);
6643}
6644
6645/// ParseUseListOrderBB
6646/// ::= 'uselistorder_bb' @foo ',' %bar ',' UseListOrderIndexes
6647bool LLParser::ParseUseListOrderBB() {
6648 assert(Lex.getKind() == lltok::kw_uselistorder_bb);
6649 SMLoc Loc = Lex.getLoc();
6650 Lex.Lex();
6651
6652 ValID Fn, Label;
6653 SmallVector<unsigned, 16> Indexes;
6654 if (ParseValID(Fn) ||
6655 ParseToken(lltok::comma, "expected comma in uselistorder_bb directive") ||
6656 ParseValID(Label) ||
6657 ParseToken(lltok::comma, "expected comma in uselistorder_bb directive") ||
6658 ParseUseListOrderIndexes(Indexes))
6659 return true;
6660
6661 // Check the function.
6662 GlobalValue *GV;
6663 if (Fn.Kind == ValID::t_GlobalName)
6664 GV = M->getNamedValue(Fn.StrVal);
6665 else if (Fn.Kind == ValID::t_GlobalID)
6666 GV = Fn.UIntVal < NumberedVals.size() ? NumberedVals[Fn.UIntVal] : nullptr;
6667 else
6668 return Error(Fn.Loc, "expected function name in uselistorder_bb");
6669 if (!GV)
6670 return Error(Fn.Loc, "invalid function forward reference in uselistorder_bb");
6671 auto *F = dyn_cast<Function>(GV);
6672 if (!F)
6673 return Error(Fn.Loc, "expected function name in uselistorder_bb");
6674 if (F->isDeclaration())
6675 return Error(Fn.Loc, "invalid declaration in uselistorder_bb");
6676
6677 // Check the basic block.
6678 if (Label.Kind == ValID::t_LocalID)
6679 return Error(Label.Loc, "invalid numeric label in uselistorder_bb");
6680 if (Label.Kind != ValID::t_LocalName)
6681 return Error(Label.Loc, "expected basic block name in uselistorder_bb");
Mehdi Aminia53d49e2016-09-17 06:00:02 +00006682 Value *V = F->getValueSymbolTable()->lookup(Label.StrVal);
Duncan P. N. Exon Smith0a448fb2014-08-19 21:30:15 +00006683 if (!V)
6684 return Error(Label.Loc, "invalid basic block in uselistorder_bb");
6685 if (!isa<BasicBlock>(V))
6686 return Error(Label.Loc, "expected basic block in uselistorder_bb");
6687
6688 return sortUseListOrder(V, Indexes, Loc);
6689}