blob: 828f873d37bc943d761d314fcc1d0517dabd3533 [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
Manman Ren8b4306c2013-12-02 21:29:56 +0000240 UpgradeDebugInfo(*M);
241
Manman Renb5d7ff42016-05-25 23:14:48 +0000242 UpgradeModuleFlags(*M);
243
Alex Lorenz8955f7d2015-06-23 17:10:10 +0000244 if (!Slots)
245 return false;
246 // Initialize the slot mapping.
247 // Because by this point we've parsed and validated everything, we can "steal"
248 // the mapping from LLParser as it doesn't need it anymore.
249 Slots->GlobalValues = std::move(NumberedVals);
250 Slots->MetadataNodes = std::move(NumberedMetadata);
Alex Lorenz1de2acd2015-08-21 21:32:39 +0000251 for (const auto &I : NamedTypes)
252 Slots->NamedTypes.insert(std::make_pair(I.getKey(), I.second.first));
253 for (const auto &I : NumberedTypes)
254 Slots->Types.insert(std::make_pair(I.first, I.second.first));
Alex Lorenz8955f7d2015-06-23 17:10:10 +0000255
Chris Lattnerac161bf2009-01-02 07:01:27 +0000256 return false;
257}
258
259//===----------------------------------------------------------------------===//
260// Top-Level Entities
261//===----------------------------------------------------------------------===//
262
263bool LLParser::ParseTopLevelEntities() {
Eugene Zelenko1804a772016-08-25 00:45:04 +0000264 while (true) {
Chris Lattnerac161bf2009-01-02 07:01:27 +0000265 switch (Lex.getKind()) {
266 default: return TokError("expected top-level entity");
267 case lltok::Eof: return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000268 case lltok::kw_declare: if (ParseDeclare()) return true; break;
269 case lltok::kw_define: if (ParseDefine()) return true; break;
270 case lltok::kw_module: if (ParseModuleAsm()) return true; break;
271 case lltok::kw_target: if (ParseTargetDefinition()) return true; break;
Teresa Johnson83c517c2016-03-30 18:15:08 +0000272 case lltok::kw_source_filename:
273 if (ParseSourceFileName())
274 return true;
275 break;
Bill Wendling706d3d62012-11-28 08:41:48 +0000276 case lltok::kw_deplibs: if (ParseDepLibs()) return true; break;
Dan Gohman466876b2009-08-12 23:32:33 +0000277 case lltok::LocalVarID: if (ParseUnnamedType()) return true; break;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000278 case lltok::LocalVar: if (ParseNamedType()) return true; break;
Dan Gohman466876b2009-08-12 23:32:33 +0000279 case lltok::GlobalID: if (ParseUnnamedGlobal()) return true; break;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000280 case lltok::GlobalVar: if (ParseNamedGlobal()) return true; break;
David Majnemerdad0a642014-06-27 18:19:56 +0000281 case lltok::ComdatVar: if (parseComdat()) return true; break;
Chris Lattner1eed2d62009-12-30 04:56:59 +0000282 case lltok::exclaim: if (ParseStandaloneMetadata()) return true; break;
Bill Wendling63b88192013-02-06 06:52:58 +0000283 case lltok::MetadataVar:if (ParseNamedMetadata()) return true; break;
Bill Wendlinga7c38772013-02-09 15:48:49 +0000284 case lltok::kw_attributes: if (ParseUnnamedAttrGrp()) return true; break;
Duncan P. N. Exon Smith0a448fb2014-08-19 21:30:15 +0000285 case lltok::kw_uselistorder: if (ParseUseListOrder()) return true; break;
286 case lltok::kw_uselistorder_bb:
Davide Italianof4e16612016-08-26 18:05:03 +0000287 if (ParseUseListOrderBB())
288 return true;
289 break;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000290 }
291 }
292}
293
Chris Lattnerac161bf2009-01-02 07:01:27 +0000294/// toplevelentity
295/// ::= 'module' 'asm' STRINGCONSTANT
296bool LLParser::ParseModuleAsm() {
297 assert(Lex.getKind() == lltok::kw_module);
298 Lex.Lex();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000299
300 std::string AsmStr;
Chris Lattner3822f632009-01-02 08:05:26 +0000301 if (ParseToken(lltok::kw_asm, "expected 'module asm'") ||
302 ParseStringConstant(AsmStr)) return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000303
Rafael Espindola1e49a6d2011-03-02 04:14:42 +0000304 M->appendModuleInlineAsm(AsmStr);
Chris Lattnerac161bf2009-01-02 07:01:27 +0000305 return false;
306}
307
308/// toplevelentity
309/// ::= 'target' 'triple' '=' STRINGCONSTANT
310/// ::= 'target' 'datalayout' '=' STRINGCONSTANT
311bool LLParser::ParseTargetDefinition() {
312 assert(Lex.getKind() == lltok::kw_target);
Chris Lattner3822f632009-01-02 08:05:26 +0000313 std::string Str;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000314 switch (Lex.Lex()) {
315 default: return TokError("unknown target property");
316 case lltok::kw_triple:
317 Lex.Lex();
Chris Lattner3822f632009-01-02 08:05:26 +0000318 if (ParseToken(lltok::equal, "expected '=' after target triple") ||
319 ParseStringConstant(Str))
Chris Lattnerac161bf2009-01-02 07:01:27 +0000320 return true;
Chris Lattner3822f632009-01-02 08:05:26 +0000321 M->setTargetTriple(Str);
Chris Lattnerac161bf2009-01-02 07:01:27 +0000322 return false;
323 case lltok::kw_datalayout:
324 Lex.Lex();
Chris Lattner3822f632009-01-02 08:05:26 +0000325 if (ParseToken(lltok::equal, "expected '=' after target datalayout") ||
326 ParseStringConstant(Str))
Chris Lattnerac161bf2009-01-02 07:01:27 +0000327 return true;
Chris Lattner3822f632009-01-02 08:05:26 +0000328 M->setDataLayout(Str);
Chris Lattnerac161bf2009-01-02 07:01:27 +0000329 return false;
330 }
331}
332
Bill Wendling706d3d62012-11-28 08:41:48 +0000333/// toplevelentity
Teresa Johnson83c517c2016-03-30 18:15:08 +0000334/// ::= 'source_filename' '=' STRINGCONSTANT
335bool LLParser::ParseSourceFileName() {
336 assert(Lex.getKind() == lltok::kw_source_filename);
337 std::string Str;
338 Lex.Lex();
339 if (ParseToken(lltok::equal, "expected '=' after source_filename") ||
340 ParseStringConstant(Str))
341 return true;
342 M->setSourceFileName(Str);
343 return false;
344}
345
346/// toplevelentity
Bill Wendling706d3d62012-11-28 08:41:48 +0000347/// ::= 'deplibs' '=' '[' ']'
348/// ::= 'deplibs' '=' '[' STRINGCONSTANT (',' STRINGCONSTANT)* ']'
349/// FIXME: Remove in 4.0. Currently parse, but ignore.
350bool LLParser::ParseDepLibs() {
351 assert(Lex.getKind() == lltok::kw_deplibs);
352 Lex.Lex();
353 if (ParseToken(lltok::equal, "expected '=' after deplibs") ||
354 ParseToken(lltok::lsquare, "expected '=' after deplibs"))
355 return true;
356
357 if (EatIfPresent(lltok::rsquare))
358 return false;
359
360 do {
361 std::string Str;
362 if (ParseStringConstant(Str)) return true;
363 } while (EatIfPresent(lltok::comma));
364
365 return ParseToken(lltok::rsquare, "expected ']' at end of list");
366}
367
Dan Gohman466876b2009-08-12 23:32:33 +0000368/// ParseUnnamedType:
Dan Gohman466876b2009-08-12 23:32:33 +0000369/// ::= LocalVarID '=' 'type' type
Chris Lattnerac161bf2009-01-02 07:01:27 +0000370bool LLParser::ParseUnnamedType() {
Chris Lattner07037362011-06-18 23:51:31 +0000371 LocTy TypeLoc = Lex.getLoc();
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000372 unsigned TypeID = Lex.getUIntVal();
Chris Lattner8936d2b2011-06-19 00:03:46 +0000373 Lex.Lex(); // eat LocalVarID;
374
375 if (ParseToken(lltok::equal, "expected '=' after name") ||
376 ParseToken(lltok::kw_type, "expected 'type' after '='"))
377 return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000378
Craig Topper2617dcc2014-04-15 06:32:26 +0000379 Type *Result = nullptr;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000380 if (ParseStructDefinition(TypeLoc, "",
381 NumberedTypes[TypeID], Result)) return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +0000382
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000383 if (!isa<StructType>(Result)) {
384 std::pair<Type*, LocTy> &Entry = NumberedTypes[TypeID];
385 if (Entry.first)
386 return Error(TypeLoc, "non-struct types may not be recursive");
387 Entry.first = Result;
388 Entry.second = SMLoc();
Chris Lattnerac161bf2009-01-02 07:01:27 +0000389 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000390
Chris Lattnerac161bf2009-01-02 07:01:27 +0000391 return false;
392}
393
394/// toplevelentity
395/// ::= LocalVar '=' 'type' type
396bool LLParser::ParseNamedType() {
397 std::string Name = Lex.getStrVal();
398 LocTy NameLoc = Lex.getLoc();
Chris Lattner3822f632009-01-02 08:05:26 +0000399 Lex.Lex(); // eat LocalVar.
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000400
Chris Lattner3822f632009-01-02 08:05:26 +0000401 if (ParseToken(lltok::equal, "expected '=' after name") ||
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000402 ParseToken(lltok::kw_type, "expected 'type' after name"))
Chris Lattner3822f632009-01-02 08:05:26 +0000403 return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +0000404
Craig Topper2617dcc2014-04-15 06:32:26 +0000405 Type *Result = nullptr;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000406 if (ParseStructDefinition(NameLoc, Name,
407 NamedTypes[Name], Result)) return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +0000408
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000409 if (!isa<StructType>(Result)) {
410 std::pair<Type*, LocTy> &Entry = NamedTypes[Name];
411 if (Entry.first)
412 return Error(NameLoc, "non-struct types may not be recursive");
413 Entry.first = Result;
414 Entry.second = SMLoc();
Chris Lattnerac161bf2009-01-02 07:01:27 +0000415 }
Michael Ilseman26ee2b82012-11-15 22:34:00 +0000416
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000417 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000418}
419
Chris Lattnerac161bf2009-01-02 07:01:27 +0000420/// toplevelentity
421/// ::= 'declare' FunctionHeader
422bool LLParser::ParseDeclare() {
423 assert(Lex.getKind() == lltok::kw_declare);
424 Lex.Lex();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000425
Peter Collingbourne21521892016-06-21 23:42:48 +0000426 std::vector<std::pair<unsigned, MDNode *>> MDs;
427 while (Lex.getKind() == lltok::MetadataVar) {
428 unsigned MDK;
429 MDNode *N;
430 if (ParseMetadataAttachment(MDK, N))
431 return true;
432 MDs.push_back({MDK, N});
433 }
434
Chris Lattnerac161bf2009-01-02 07:01:27 +0000435 Function *F;
Peter Collingbourne21521892016-06-21 23:42:48 +0000436 if (ParseFunctionHeader(F, false))
437 return true;
438 for (auto &MD : MDs)
439 F->addMetadata(MD.first, *MD.second);
440 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000441}
442
443/// toplevelentity
Duncan P. N. Exon Smith3d4cd752015-04-24 22:04:41 +0000444/// ::= 'define' FunctionHeader (!dbg !56)* '{' ...
Chris Lattnerac161bf2009-01-02 07:01:27 +0000445bool LLParser::ParseDefine() {
446 assert(Lex.getKind() == lltok::kw_define);
447 Lex.Lex();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000448
Chris Lattnerac161bf2009-01-02 07:01:27 +0000449 Function *F;
Chris Lattner3822f632009-01-02 08:05:26 +0000450 return ParseFunctionHeader(F, true) ||
Duncan P. N. Exon Smith3d4cd752015-04-24 22:04:41 +0000451 ParseOptionalFunctionMetadata(*F) ||
Chris Lattner3822f632009-01-02 08:05:26 +0000452 ParseFunctionBody(*F);
Chris Lattnerac161bf2009-01-02 07:01:27 +0000453}
454
Chris Lattner3822f632009-01-02 08:05:26 +0000455/// ParseGlobalType
456/// ::= 'constant'
457/// ::= 'global'
Chris Lattnerac161bf2009-01-02 07:01:27 +0000458bool LLParser::ParseGlobalType(bool &IsConstant) {
459 if (Lex.getKind() == lltok::kw_constant)
460 IsConstant = true;
461 else if (Lex.getKind() == lltok::kw_global)
462 IsConstant = false;
Duncan Sandsd1de45a2009-02-10 16:24:55 +0000463 else {
464 IsConstant = false;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000465 return TokError("expected 'global' or 'constant'");
Duncan Sandsd1de45a2009-02-10 16:24:55 +0000466 }
Chris Lattnerac161bf2009-01-02 07:01:27 +0000467 Lex.Lex();
468 return false;
469}
470
Peter Collingbourne96efdd62016-06-14 21:01:22 +0000471bool LLParser::ParseOptionalUnnamedAddr(
472 GlobalVariable::UnnamedAddr &UnnamedAddr) {
473 if (EatIfPresent(lltok::kw_unnamed_addr))
474 UnnamedAddr = GlobalValue::UnnamedAddr::Global;
475 else if (EatIfPresent(lltok::kw_local_unnamed_addr))
476 UnnamedAddr = GlobalValue::UnnamedAddr::Local;
477 else
478 UnnamedAddr = GlobalValue::UnnamedAddr::None;
479 return false;
480}
481
Dan Gohman466876b2009-08-12 23:32:33 +0000482/// ParseUnnamedGlobal:
Dmitry Polukhina1feff72016-04-07 12:32:19 +0000483/// OptionalVisibility (ALIAS | IFUNC) ...
Nico Rieck7157bb72014-01-14 15:22:47 +0000484/// OptionalLinkage OptionalVisibility OptionalDLLStorageClass
485/// ... -> global variable
Dmitry Polukhina1feff72016-04-07 12:32:19 +0000486/// GlobalID '=' OptionalVisibility (ALIAS | IFUNC) ...
Nico Rieck7157bb72014-01-14 15:22:47 +0000487/// GlobalID '=' OptionalLinkage OptionalVisibility OptionalDLLStorageClass
488/// ... -> global variable
Dan Gohman466876b2009-08-12 23:32:33 +0000489bool LLParser::ParseUnnamedGlobal() {
490 unsigned VarID = NumberedVals.size();
491 std::string Name;
492 LocTy NameLoc = Lex.getLoc();
493
494 // Handle the GlobalID form.
495 if (Lex.getKind() == lltok::GlobalID) {
496 if (Lex.getUIntVal() != VarID)
497 return Error(Lex.getLoc(), "variable expected to be numbered '%" +
Benjamin Kramerc7583112010-09-27 17:42:11 +0000498 Twine(VarID) + "'");
Dan Gohman466876b2009-08-12 23:32:33 +0000499 Lex.Lex(); // eat GlobalID;
500
501 if (ParseToken(lltok::equal, "expected '=' after name"))
502 return true;
503 }
504
505 bool HasLinkage;
Nico Rieck7157bb72014-01-14 15:22:47 +0000506 unsigned Linkage, Visibility, DLLStorageClass;
Rafael Espindola59f7eba2014-05-28 18:15:43 +0000507 GlobalVariable::ThreadLocalMode TLM;
Peter Collingbourne96efdd62016-06-14 21:01:22 +0000508 GlobalVariable::UnnamedAddr UnnamedAddr;
Rafael Espindola2615c9e2016-05-12 12:37:52 +0000509 if (ParseOptionalLinkage(Linkage, HasLinkage, Visibility, DLLStorageClass) ||
Peter Collingbourne96efdd62016-06-14 21:01:22 +0000510 ParseOptionalThreadLocal(TLM) || ParseOptionalUnnamedAddr(UnnamedAddr))
Dan Gohman466876b2009-08-12 23:32:33 +0000511 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000512
Dmitry Polukhina1feff72016-04-07 12:32:19 +0000513 if (Lex.getKind() != lltok::kw_alias && Lex.getKind() != lltok::kw_ifunc)
Nico Rieck7157bb72014-01-14 15:22:47 +0000514 return ParseGlobal(Name, NameLoc, Linkage, HasLinkage, Visibility,
Rafael Espindola42a4c9f2014-06-06 01:20:28 +0000515 DLLStorageClass, TLM, UnnamedAddr);
Dmitry Polukhina3d5b0b2016-04-05 08:47:51 +0000516
517 return parseIndirectSymbol(Name, NameLoc, Linkage, Visibility,
518 DLLStorageClass, TLM, UnnamedAddr);
Dan Gohman466876b2009-08-12 23:32:33 +0000519}
520
Chris Lattnerac161bf2009-01-02 07:01:27 +0000521/// ParseNamedGlobal:
Dmitry Polukhina1feff72016-04-07 12:32:19 +0000522/// GlobalVar '=' OptionalVisibility (ALIAS | IFUNC) ...
Nico Rieck7157bb72014-01-14 15:22:47 +0000523/// GlobalVar '=' OptionalLinkage OptionalVisibility OptionalDLLStorageClass
524/// ... -> global variable
Chris Lattnerac161bf2009-01-02 07:01:27 +0000525bool LLParser::ParseNamedGlobal() {
526 assert(Lex.getKind() == lltok::GlobalVar);
527 LocTy NameLoc = Lex.getLoc();
528 std::string Name = Lex.getStrVal();
529 Lex.Lex();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000530
Chris Lattnerac161bf2009-01-02 07:01:27 +0000531 bool HasLinkage;
Nico Rieck7157bb72014-01-14 15:22:47 +0000532 unsigned Linkage, Visibility, DLLStorageClass;
Rafael Espindola59f7eba2014-05-28 18:15:43 +0000533 GlobalVariable::ThreadLocalMode TLM;
Peter Collingbourne96efdd62016-06-14 21:01:22 +0000534 GlobalVariable::UnnamedAddr UnnamedAddr;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000535 if (ParseToken(lltok::equal, "expected '=' in global variable") ||
Rafael Espindola2615c9e2016-05-12 12:37:52 +0000536 ParseOptionalLinkage(Linkage, HasLinkage, Visibility, DLLStorageClass) ||
Peter Collingbourne96efdd62016-06-14 21:01:22 +0000537 ParseOptionalThreadLocal(TLM) || ParseOptionalUnnamedAddr(UnnamedAddr))
Chris Lattnerac161bf2009-01-02 07:01:27 +0000538 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000539
Dmitry Polukhina1feff72016-04-07 12:32:19 +0000540 if (Lex.getKind() != lltok::kw_alias && Lex.getKind() != lltok::kw_ifunc)
Nico Rieck7157bb72014-01-14 15:22:47 +0000541 return ParseGlobal(Name, NameLoc, Linkage, HasLinkage, Visibility,
Rafael Espindola42a4c9f2014-06-06 01:20:28 +0000542 DLLStorageClass, TLM, UnnamedAddr);
Rafael Espindola464fe022014-07-30 22:51:54 +0000543
Dmitry Polukhina3d5b0b2016-04-05 08:47:51 +0000544 return parseIndirectSymbol(Name, NameLoc, Linkage, Visibility,
545 DLLStorageClass, TLM, UnnamedAddr);
Chris Lattnerac161bf2009-01-02 07:01:27 +0000546}
547
David Majnemerdad0a642014-06-27 18:19:56 +0000548bool LLParser::parseComdat() {
549 assert(Lex.getKind() == lltok::ComdatVar);
550 std::string Name = Lex.getStrVal();
551 LocTy NameLoc = Lex.getLoc();
552 Lex.Lex();
553
554 if (ParseToken(lltok::equal, "expected '=' here"))
555 return true;
556
557 if (ParseToken(lltok::kw_comdat, "expected comdat keyword"))
558 return TokError("expected comdat type");
559
560 Comdat::SelectionKind SK;
561 switch (Lex.getKind()) {
562 default:
563 return TokError("unknown selection kind");
564 case lltok::kw_any:
565 SK = Comdat::Any;
566 break;
567 case lltok::kw_exactmatch:
568 SK = Comdat::ExactMatch;
569 break;
570 case lltok::kw_largest:
571 SK = Comdat::Largest;
572 break;
573 case lltok::kw_noduplicates:
574 SK = Comdat::NoDuplicates;
575 break;
576 case lltok::kw_samesize:
577 SK = Comdat::SameSize;
578 break;
579 }
580 Lex.Lex();
581
582 // See if the comdat was forward referenced, if so, use the comdat.
583 Module::ComdatSymTabType &ComdatSymTab = M->getComdatSymbolTable();
584 Module::ComdatSymTabType::iterator I = ComdatSymTab.find(Name);
585 if (I != ComdatSymTab.end() && !ForwardRefComdats.erase(Name))
586 return Error(NameLoc, "redefinition of comdat '$" + Name + "'");
587
588 Comdat *C;
589 if (I != ComdatSymTab.end())
590 C = &I->second;
591 else
592 C = M->getOrInsertComdat(Name);
593 C->setSelectionKind(SK);
594
595 return false;
596}
597
Devang Patel8ff0f8d2009-07-20 19:00:08 +0000598// MDString:
599// ::= '!' STRINGCONSTANT
Chris Lattner1797fc72009-12-29 21:53:55 +0000600bool LLParser::ParseMDString(MDString *&Result) {
Devang Patel8ff0f8d2009-07-20 19:00:08 +0000601 std::string Str;
602 if (ParseStringConstant(Str)) return true;
Chris Lattner1797fc72009-12-29 21:53:55 +0000603 Result = MDString::get(Context, Str);
Devang Patel8ff0f8d2009-07-20 19:00:08 +0000604 return false;
605}
606
607// MDNode:
608// ::= '!' MDNodeNumber
Chris Lattner6dac02a2009-12-30 04:15:23 +0000609bool LLParser::ParseMDNodeID(MDNode *&Result) {
Devang Patel8ff0f8d2009-07-20 19:00:08 +0000610 // !{ ..., !42, ... }
Duncan P. N. Exon Smith29883862016-04-06 02:06:40 +0000611 LocTy IDLoc = Lex.getLoc();
Devang Patel8ff0f8d2009-07-20 19:00:08 +0000612 unsigned MID = 0;
Duncan P. N. Exon Smitha8d9a022015-01-12 21:14:38 +0000613 if (ParseUInt32(MID))
614 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000615
Chris Lattner8eff0152010-04-01 05:14:45 +0000616 // If not a forward reference, just return it now.
David Majnemer19b51052015-02-11 07:43:56 +0000617 if (NumberedMetadata.count(MID)) {
Duncan P. N. Exon Smitha8d9a022015-01-12 21:14:38 +0000618 Result = NumberedMetadata[MID];
619 return false;
620 }
Devang Patel8ff0f8d2009-07-20 19:00:08 +0000621
Chris Lattner8eff0152010-04-01 05:14:45 +0000622 // Otherwise, create MDNode forward reference.
Duncan P. N. Exon Smith7d823132015-01-19 21:30:18 +0000623 auto &FwdRef = ForwardRefMDNodes[MID];
Duncan P. N. Exon Smith29883862016-04-06 02:06:40 +0000624 FwdRef = std::make_pair(MDTuple::getTemporary(Context, None), IDLoc);
Michael Ilseman26ee2b82012-11-15 22:34:00 +0000625
Duncan P. N. Exon Smith7d823132015-01-19 21:30:18 +0000626 Result = FwdRef.first.get();
627 NumberedMetadata[MID].reset(Result);
Devang Patel8ff0f8d2009-07-20 19:00:08 +0000628 return false;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000629}
Devang Patel8ff0f8d2009-07-20 19:00:08 +0000630
Chris Lattnerf2fe7ff2009-12-29 22:35:39 +0000631/// ParseNamedMetadata:
Devang Patelbe626972009-07-29 00:34:02 +0000632/// !foo = !{ !1, !2 }
633bool LLParser::ParseNamedMetadata() {
Chris Lattnereafe4de2009-12-30 05:02:06 +0000634 assert(Lex.getKind() == lltok::MetadataVar);
Devang Patelbe626972009-07-29 00:34:02 +0000635 std::string Name = Lex.getStrVal();
Chris Lattnereafe4de2009-12-30 05:02:06 +0000636 Lex.Lex();
Devang Patelbe626972009-07-29 00:34:02 +0000637
Chris Lattnerf2fe7ff2009-12-29 22:35:39 +0000638 if (ParseToken(lltok::equal, "expected '=' here") ||
Chris Lattner1eed2d62009-12-30 04:56:59 +0000639 ParseToken(lltok::exclaim, "Expected '!' here") ||
Chris Lattnerf2fe7ff2009-12-29 22:35:39 +0000640 ParseToken(lltok::lbrace, "Expected '{' here"))
Devang Patelbe626972009-07-29 00:34:02 +0000641 return true;
642
Dan Gohman2637cc12010-07-21 23:38:33 +0000643 NamedMDNode *NMD = M->getOrInsertNamedMetadata(Name);
Dan Gohmanafd69cf2010-07-13 19:42:44 +0000644 if (Lex.getKind() != lltok::rbrace)
645 do {
Dan Gohmanafd69cf2010-07-13 19:42:44 +0000646 if (ParseToken(lltok::exclaim, "Expected '!' here"))
647 return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +0000648
Craig Topper2617dcc2014-04-15 06:32:26 +0000649 MDNode *N = nullptr;
Dan Gohmanafd69cf2010-07-13 19:42:44 +0000650 if (ParseMDNodeID(N)) return true;
Dan Gohman2637cc12010-07-21 23:38:33 +0000651 NMD->addOperand(N);
Dan Gohmanafd69cf2010-07-13 19:42:44 +0000652 } while (EatIfPresent(lltok::comma));
Devang Patelbe626972009-07-29 00:34:02 +0000653
Rafael Espindolac7818fb2015-05-26 20:37:36 +0000654 return ParseToken(lltok::rbrace, "expected end of metadata node");
Devang Patelbe626972009-07-29 00:34:02 +0000655}
656
Devang Patel39e64d42009-07-01 19:21:12 +0000657/// ParseStandaloneMetadata:
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000658/// !42 = !{...}
Devang Patel39e64d42009-07-01 19:21:12 +0000659bool LLParser::ParseStandaloneMetadata() {
Chris Lattner1eed2d62009-12-30 04:56:59 +0000660 assert(Lex.getKind() == lltok::exclaim);
Devang Patel39e64d42009-07-01 19:21:12 +0000661 Lex.Lex();
662 unsigned MetadataID = 0;
Devang Patel39e64d42009-07-01 19:21:12 +0000663
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000664 MDNode *Init;
Chris Lattner278bc952009-12-29 22:40:21 +0000665 if (ParseUInt32(MetadataID) ||
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +0000666 ParseToken(lltok::equal, "expected '=' here"))
667 return true;
668
669 // Detect common error, from old metadata syntax.
670 if (Lex.getKind() == lltok::Type)
671 return TokError("unexpected type in metadata definition");
672
Duncan P. N. Exon Smith090a19b2015-01-08 22:38:29 +0000673 bool IsDistinct = EatIfPresent(lltok::kw_distinct);
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +0000674 if (Lex.getKind() == lltok::MetadataVar) {
675 if (ParseSpecializedMDNode(Init, IsDistinct))
676 return true;
677 } else if (ParseToken(lltok::exclaim, "Expected '!' here") ||
678 ParseMDTuple(Init, IsDistinct))
Devang Patele059ba6e2009-07-23 01:07:34 +0000679 return true;
680
Chris Lattnerfc58af22009-12-30 04:51:58 +0000681 // See if this was forward referenced, if so, handle it.
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000682 auto FI = ForwardRefMDNodes.find(MetadataID);
Devang Pateld2541152009-07-08 19:23:54 +0000683 if (FI != ForwardRefMDNodes.end()) {
Duncan P. N. Exon Smith7d823132015-01-19 21:30:18 +0000684 FI->second.first->replaceAllUsesWith(Init);
Devang Pateld2541152009-07-08 19:23:54 +0000685 ForwardRefMDNodes.erase(FI);
Michael Ilseman26ee2b82012-11-15 22:34:00 +0000686
Chris Lattnerfc58af22009-12-30 04:51:58 +0000687 assert(NumberedMetadata[MetadataID] == Init && "Tracking VH didn't work");
688 } else {
David Majnemer19b51052015-02-11 07:43:56 +0000689 if (NumberedMetadata.count(MetadataID))
Chris Lattnerfc58af22009-12-30 04:51:58 +0000690 return TokError("Metadata id is already used");
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000691 NumberedMetadata[MetadataID].reset(Init);
Devang Pateld2541152009-07-08 19:23:54 +0000692 }
693
Devang Patel39e64d42009-07-01 19:21:12 +0000694 return false;
695}
696
Duncan P. N. Exon Smithb80de102014-05-07 22:57:20 +0000697static bool isValidVisibilityForLinkage(unsigned V, unsigned L) {
698 return !GlobalValue::isLocalLinkage((GlobalValue::LinkageTypes)L) ||
699 (GlobalValue::VisibilityTypes)V == GlobalValue::DefaultVisibility;
700}
701
Dmitry Polukhina3d5b0b2016-04-05 08:47:51 +0000702/// parseIndirectSymbol:
Rafael Espindola464fe022014-07-30 22:51:54 +0000703/// ::= GlobalVar '=' OptionalLinkage OptionalVisibility
704/// OptionalDLLStorageClass OptionalThreadLocal
Dmitry Polukhina1feff72016-04-07 12:32:19 +0000705/// OptionalUnnamedAddr 'alias|ifunc' IndirectSymbol
Rafael Espindola6b238632014-05-16 19:35:39 +0000706///
Dmitry Polukhina3d5b0b2016-04-05 08:47:51 +0000707/// IndirectSymbol
Chris Lattner4c73d7a2009-04-25 21:26:00 +0000708/// ::= TypeAndValue
Chris Lattnerac161bf2009-01-02 07:01:27 +0000709///
Eric Christopher536f0a92015-05-28 23:07:39 +0000710/// Everything through OptionalUnnamedAddr has already been parsed.
Chris Lattnerac161bf2009-01-02 07:01:27 +0000711///
Peter Collingbourne96efdd62016-06-14 21:01:22 +0000712bool LLParser::parseIndirectSymbol(
713 const std::string &Name, LocTy NameLoc, unsigned L, unsigned Visibility,
714 unsigned DLLStorageClass, GlobalVariable::ThreadLocalMode TLM,
715 GlobalVariable::UnnamedAddr UnnamedAddr) {
Dmitry Polukhina3d5b0b2016-04-05 08:47:51 +0000716 bool IsAlias;
717 if (Lex.getKind() == lltok::kw_alias)
718 IsAlias = true;
Dmitry Polukhina1feff72016-04-07 12:32:19 +0000719 else if (Lex.getKind() == lltok::kw_ifunc)
720 IsAlias = false;
Dmitry Polukhina3d5b0b2016-04-05 08:47:51 +0000721 else
Dmitry Polukhina1feff72016-04-07 12:32:19 +0000722 llvm_unreachable("Not an alias or ifunc!");
Chris Lattnerac161bf2009-01-02 07:01:27 +0000723 Lex.Lex();
Chris Lattnerac161bf2009-01-02 07:01:27 +0000724
Rafael Espindola78527052013-10-06 15:10:43 +0000725 GlobalValue::LinkageTypes Linkage = (GlobalValue::LinkageTypes) L;
726
Dmitry Polukhina3d5b0b2016-04-05 08:47:51 +0000727 if(IsAlias && !GlobalAlias::isValidLinkage(Linkage))
Rafael Espindola464fe022014-07-30 22:51:54 +0000728 return Error(NameLoc, "invalid linkage type for alias");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000729
Duncan P. N. Exon Smithb80de102014-05-07 22:57:20 +0000730 if (!isValidVisibilityForLinkage(Visibility, L))
Rafael Espindola464fe022014-07-30 22:51:54 +0000731 return Error(NameLoc,
Duncan P. N. Exon Smithb80de102014-05-07 22:57:20 +0000732 "symbol with local linkage must have default visibility");
733
David Blaikie2f408302015-09-11 03:22:04 +0000734 Type *Ty;
735 LocTy ExplicitTypeLoc = Lex.getLoc();
736 if (ParseType(Ty) ||
Dmitry Polukhina1feff72016-04-07 12:32:19 +0000737 ParseToken(lltok::comma, "expected comma after alias or ifunc's type"))
David Blaikie2f408302015-09-11 03:22:04 +0000738 return true;
739
Rafael Espindola64c1e182014-06-03 02:41:57 +0000740 Constant *Aliasee;
741 LocTy AliaseeLoc = Lex.getLoc();
742 if (Lex.getKind() != lltok::kw_bitcast &&
743 Lex.getKind() != lltok::kw_getelementptr &&
744 Lex.getKind() != lltok::kw_addrspacecast &&
745 Lex.getKind() != lltok::kw_inttoptr) {
746 if (ParseGlobalTypeAndValue(Aliasee))
Rafael Espindola6b238632014-05-16 19:35:39 +0000747 return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000748 } else {
Rafael Espindola64c1e182014-06-03 02:41:57 +0000749 // The bitcast dest type is not present, it is implied by the dest type.
750 ValID ID;
751 if (ParseValID(ID))
752 return true;
753 if (ID.Kind != ValID::t_Constant)
754 return Error(AliaseeLoc, "invalid aliasee");
755 Aliasee = ID.ConstantVal;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000756 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000757
Rafael Espindola64c1e182014-06-03 02:41:57 +0000758 Type *AliaseeType = Aliasee->getType();
759 auto *PTy = dyn_cast<PointerType>(AliaseeType);
760 if (!PTy)
Dmitry Polukhina1feff72016-04-07 12:32:19 +0000761 return Error(AliaseeLoc, "An alias or ifunc must have pointer type");
David Blaikie16a2f3e2015-09-14 18:01:59 +0000762 unsigned AddrSpace = PTy->getAddressSpace();
Chris Lattnerac161bf2009-01-02 07:01:27 +0000763
Dmitry Polukhina3d5b0b2016-04-05 08:47:51 +0000764 if (IsAlias && Ty != PTy->getElementType())
David Blaikie2f408302015-09-11 03:22:04 +0000765 return Error(
766 ExplicitTypeLoc,
767 "explicit pointee type doesn't match operand's pointee type");
768
Dmitry Polukhina3d5b0b2016-04-05 08:47:51 +0000769 if (!IsAlias && !PTy->getElementType()->isFunctionTy())
770 return Error(
771 ExplicitTypeLoc,
772 "explicit pointee type should be a function type");
773
Peter Collingbourne463ff6d2015-11-25 02:54:07 +0000774 GlobalValue *GVal = nullptr;
775
776 // See if the alias was forward referenced, if so, prepare to replace the
777 // forward reference.
778 if (!Name.empty()) {
779 GVal = M->getNamedValue(Name);
780 if (GVal) {
781 if (!ForwardRefVals.erase(Name))
782 return Error(NameLoc, "redefinition of global '@" + Name + "'");
783 }
784 } else {
785 auto I = ForwardRefValIDs.find(NumberedVals.size());
786 if (I != ForwardRefValIDs.end()) {
787 GVal = I->second.first;
788 ForwardRefValIDs.erase(I);
789 }
790 }
791
Chris Lattnerac161bf2009-01-02 07:01:27 +0000792 // Okay, create the alias but do not insert it into the module yet.
Dmitry Polukhina3d5b0b2016-04-05 08:47:51 +0000793 std::unique_ptr<GlobalIndirectSymbol> GA;
794 if (IsAlias)
795 GA.reset(GlobalAlias::create(Ty, AddrSpace,
796 (GlobalValue::LinkageTypes)Linkage, Name,
797 Aliasee, /*Parent*/ nullptr));
798 else
Dmitry Polukhina1feff72016-04-07 12:32:19 +0000799 GA.reset(GlobalIFunc::create(Ty, AddrSpace,
800 (GlobalValue::LinkageTypes)Linkage, Name,
801 Aliasee, /*Parent*/ nullptr));
Rafael Espindola59f7eba2014-05-28 18:15:43 +0000802 GA->setThreadLocalMode(TLM);
Chris Lattnerac161bf2009-01-02 07:01:27 +0000803 GA->setVisibility((GlobalValue::VisibilityTypes)Visibility);
Nico Rieck7157bb72014-01-14 15:22:47 +0000804 GA->setDLLStorageClass((GlobalValue::DLLStorageClassTypes)DLLStorageClass);
Rafael Espindola42a4c9f2014-06-06 01:20:28 +0000805 GA->setUnnamedAddr(UnnamedAddr);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000806
Rafael Espindola54fc2982015-06-17 17:53:31 +0000807 if (Name.empty())
808 NumberedVals.push_back(GA.get());
809
Peter Collingbourne463ff6d2015-11-25 02:54:07 +0000810 if (GVal) {
811 // Verify that types agree.
812 if (GVal->getType() != GA->getType())
813 return Error(
814 ExplicitTypeLoc,
815 "forward reference and definition of alias have different types");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000816
Chris Lattnerac161bf2009-01-02 07:01:27 +0000817 // If they agree, just RAUW the old value with the alias and remove the
818 // forward ref info.
Peter Collingbourne463ff6d2015-11-25 02:54:07 +0000819 GVal->replaceAllUsesWith(GA.get());
820 GVal->eraseFromParent();
Chris Lattnerac161bf2009-01-02 07:01:27 +0000821 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000822
Chris Lattnerac161bf2009-01-02 07:01:27 +0000823 // Insert into the module, we know its name won't collide now.
Dmitry Polukhina3d5b0b2016-04-05 08:47:51 +0000824 if (IsAlias)
825 M->getAliasList().push_back(cast<GlobalAlias>(GA.get()));
826 else
Dmitry Polukhina1feff72016-04-07 12:32:19 +0000827 M->getIFuncList().push_back(cast<GlobalIFunc>(GA.get()));
Benjamin Kramer1dc34b42010-10-16 11:28:23 +0000828 assert(GA->getName() == Name && "Should not be a name conflict!");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000829
Rafael Espindolaaa273822014-05-09 21:49:17 +0000830 // The module owns this now
831 GA.release();
832
Chris Lattnerac161bf2009-01-02 07:01:27 +0000833 return false;
834}
835
836/// ParseGlobal
Nico Rieck7157bb72014-01-14 15:22:47 +0000837/// ::= GlobalVar '=' OptionalLinkage OptionalVisibility OptionalDLLStorageClass
Eric Christopher536f0a92015-05-28 23:07:39 +0000838/// OptionalThreadLocal OptionalUnnamedAddr OptionalAddrSpace
Javed Absarf3d79042017-05-11 12:28:08 +0000839/// OptionalExternallyInitialized GlobalType Type Const OptionalAttrs
Nico Rieck7157bb72014-01-14 15:22:47 +0000840/// ::= OptionalLinkage OptionalVisibility OptionalDLLStorageClass
Eric Christopher536f0a92015-05-28 23:07:39 +0000841/// OptionalThreadLocal OptionalUnnamedAddr OptionalAddrSpace
Javed Absarf3d79042017-05-11 12:28:08 +0000842/// OptionalExternallyInitialized GlobalType Type Const OptionalAttrs
Chris Lattnerac161bf2009-01-02 07:01:27 +0000843///
Eric Christopher536f0a92015-05-28 23:07:39 +0000844/// Everything up to and including OptionalUnnamedAddr has been parsed
David Majnemerc4ab61c2014-03-09 06:41:58 +0000845/// already.
Chris Lattnerac161bf2009-01-02 07:01:27 +0000846///
847bool LLParser::ParseGlobal(const std::string &Name, LocTy NameLoc,
848 unsigned Linkage, bool HasLinkage,
Rafael Espindola59f7eba2014-05-28 18:15:43 +0000849 unsigned Visibility, unsigned DLLStorageClass,
Rafael Espindola42a4c9f2014-06-06 01:20:28 +0000850 GlobalVariable::ThreadLocalMode TLM,
Peter Collingbourne96efdd62016-06-14 21:01:22 +0000851 GlobalVariable::UnnamedAddr UnnamedAddr) {
Duncan P. N. Exon Smithb80de102014-05-07 22:57:20 +0000852 if (!isValidVisibilityForLinkage(Visibility, Linkage))
853 return Error(NameLoc,
854 "symbol with local linkage must have default visibility");
855
Chris Lattnerac161bf2009-01-02 07:01:27 +0000856 unsigned AddrSpace;
Rafael Espindola42a4c9f2014-06-06 01:20:28 +0000857 bool IsConstant, IsExternallyInitialized;
Michael Gottesman27e7ef32013-02-05 05:57:38 +0000858 LocTy IsExternallyInitializedLoc;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000859 LocTy TyLoc;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000860
Craig Topper2617dcc2014-04-15 06:32:26 +0000861 Type *Ty = nullptr;
Rafael Espindola59f7eba2014-05-28 18:15:43 +0000862 if (ParseOptionalAddrSpace(AddrSpace) ||
Michael Gottesman27e7ef32013-02-05 05:57:38 +0000863 ParseOptionalToken(lltok::kw_externally_initialized,
864 IsExternallyInitialized,
865 &IsExternallyInitializedLoc) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +0000866 ParseGlobalType(IsConstant) ||
867 ParseType(Ty, TyLoc))
868 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000869
Chris Lattnerac161bf2009-01-02 07:01:27 +0000870 // If the linkage is specified and is external, then no initializer is
871 // present.
Craig Topper2617dcc2014-04-15 06:32:26 +0000872 Constant *Init = nullptr;
Rafael Espindola4787ba32016-05-11 13:51:39 +0000873 if (!HasLinkage ||
874 !GlobalValue::isValidDeclarationLinkage(
875 (GlobalValue::LinkageTypes)Linkage)) {
Chris Lattnerac161bf2009-01-02 07:01:27 +0000876 if (ParseGlobalValue(Ty, Init))
877 return true;
878 }
879
David Majnemer49b3d9b2015-02-16 08:41:08 +0000880 if (Ty->isFunctionTy() || !PointerType::isValidElementType(Ty))
Chris Lattnerc9e1b482009-02-08 20:00:15 +0000881 return Error(TyLoc, "invalid type for global variable");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000882
David Majnemer598bd052014-12-09 05:56:09 +0000883 GlobalValue *GVal = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000884
885 // See if the global was forward referenced, if so, use the global.
Chris Lattner1f386b82009-02-02 07:24:28 +0000886 if (!Name.empty()) {
David Majnemer598bd052014-12-09 05:56:09 +0000887 GVal = M->getNamedValue(Name);
888 if (GVal) {
Peter Collingbourne463ff6d2015-11-25 02:54:07 +0000889 if (!ForwardRefVals.erase(Name))
Chris Lattnere38317f2009-10-25 23:22:50 +0000890 return Error(NameLoc, "redefinition of global '@" + Name + "'");
Chris Lattnere38317f2009-10-25 23:22:50 +0000891 }
Chris Lattnerac161bf2009-01-02 07:01:27 +0000892 } else {
David Blaikie9ebdc692015-09-21 21:07:50 +0000893 auto I = ForwardRefValIDs.find(NumberedVals.size());
Chris Lattnerac161bf2009-01-02 07:01:27 +0000894 if (I != ForwardRefValIDs.end()) {
David Majnemer598bd052014-12-09 05:56:09 +0000895 GVal = I->second.first;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000896 ForwardRefValIDs.erase(I);
897 }
898 }
899
David Majnemer598bd052014-12-09 05:56:09 +0000900 GlobalVariable *GV;
901 if (!GVal) {
Craig Topper2617dcc2014-04-15 06:32:26 +0000902 GV = new GlobalVariable(*M, Ty, false, GlobalValue::ExternalLinkage, nullptr,
903 Name, nullptr, GlobalVariable::NotThreadLocal,
Hans Wennborgcbe34b42012-06-23 11:37:03 +0000904 AddrSpace);
Chris Lattnerac161bf2009-01-02 07:01:27 +0000905 } else {
David Blaikie8f27ae42015-05-13 22:55:01 +0000906 if (GVal->getValueType() != Ty)
Chris Lattnerac161bf2009-01-02 07:01:27 +0000907 return Error(TyLoc,
908 "forward reference and definition of global have different types");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000909
David Majnemer598bd052014-12-09 05:56:09 +0000910 GV = cast<GlobalVariable>(GVal);
911
Chris Lattnerac161bf2009-01-02 07:01:27 +0000912 // Move the forward-reference to the correct spot in the module.
913 M->getGlobalList().splice(M->global_end(), M->getGlobalList(), GV);
914 }
915
916 if (Name.empty())
917 NumberedVals.push_back(GV);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000918
Chris Lattnerac161bf2009-01-02 07:01:27 +0000919 // Set the parsed properties on the global.
920 if (Init)
921 GV->setInitializer(Init);
922 GV->setConstant(IsConstant);
923 GV->setLinkage((GlobalValue::LinkageTypes)Linkage);
924 GV->setVisibility((GlobalValue::VisibilityTypes)Visibility);
Nico Rieck7157bb72014-01-14 15:22:47 +0000925 GV->setDLLStorageClass((GlobalValue::DLLStorageClassTypes)DLLStorageClass);
Michael Gottesman27e7ef32013-02-05 05:57:38 +0000926 GV->setExternallyInitialized(IsExternallyInitialized);
Hans Wennborgcbe34b42012-06-23 11:37:03 +0000927 GV->setThreadLocalMode(TLM);
Rafael Espindola45e6c192011-01-08 16:42:36 +0000928 GV->setUnnamedAddr(UnnamedAddr);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000929
Chris Lattnerac161bf2009-01-02 07:01:27 +0000930 // Parse attributes on the global.
931 while (Lex.getKind() == lltok::comma) {
932 Lex.Lex();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000933
Chris Lattnerac161bf2009-01-02 07:01:27 +0000934 if (Lex.getKind() == lltok::kw_section) {
935 Lex.Lex();
936 GV->setSection(Lex.getStrVal());
937 if (ParseToken(lltok::StringConstant, "expected global section string"))
938 return true;
939 } else if (Lex.getKind() == lltok::kw_align) {
940 unsigned Alignment;
941 if (ParseOptionalAlignment(Alignment)) return true;
942 GV->setAlignment(Alignment);
Peter Collingbournecceae7f2016-05-31 23:01:54 +0000943 } else if (Lex.getKind() == lltok::MetadataVar) {
944 if (ParseGlobalObjectMetadataAttachment(*GV))
945 return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000946 } else {
David Majnemerdad0a642014-06-27 18:19:56 +0000947 Comdat *C;
Rafael Espindola83a362c2015-01-06 22:55:16 +0000948 if (parseOptionalComdat(Name, C))
David Majnemerdad0a642014-06-27 18:19:56 +0000949 return true;
950 if (C)
951 GV->setComdat(C);
952 else
953 return TokError("unknown global variable property!");
Chris Lattnerac161bf2009-01-02 07:01:27 +0000954 }
955 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000956
Javed Absarf3d79042017-05-11 12:28:08 +0000957 AttrBuilder Attrs;
958 LocTy BuiltinLoc;
959 std::vector<unsigned> FwdRefAttrGrps;
960 if (ParseFnAttributeValuePairs(Attrs, FwdRefAttrGrps, false, BuiltinLoc))
961 return true;
962 if (Attrs.hasAttributes() || !FwdRefAttrGrps.empty()) {
963 GV->setAttributes(AttributeSet::get(Context, Attrs));
964 ForwardRefAttrGroups[GV] = FwdRefAttrGrps;
965 }
966
Chris Lattnerac161bf2009-01-02 07:01:27 +0000967 return false;
968}
969
Bill Wendling63b88192013-02-06 06:52:58 +0000970/// ParseUnnamedAttrGrp
Bill Wendlinga7c38772013-02-09 15:48:49 +0000971/// ::= 'attributes' AttrGrpID '=' '{' AttrValPair+ '}'
Bill Wendling63b88192013-02-06 06:52:58 +0000972bool LLParser::ParseUnnamedAttrGrp() {
Bill Wendlinga7c38772013-02-09 15:48:49 +0000973 assert(Lex.getKind() == lltok::kw_attributes);
Bill Wendling63b88192013-02-06 06:52:58 +0000974 LocTy AttrGrpLoc = Lex.getLoc();
Bill Wendlinga7c38772013-02-09 15:48:49 +0000975 Lex.Lex();
976
David Majnemerb39e22b2014-12-09 18:33:57 +0000977 if (Lex.getKind() != lltok::AttrGrpID)
978 return TokError("expected attribute group id");
979
Bill Wendling63b88192013-02-06 06:52:58 +0000980 unsigned VarID = Lex.getUIntVal();
Bill Wendlingb32b0412013-02-08 06:32:06 +0000981 std::vector<unsigned> unused;
Michael Gottesman41748d72013-06-27 00:25:01 +0000982 LocTy BuiltinLoc;
Bill Wendling63b88192013-02-06 06:52:58 +0000983 Lex.Lex();
984
985 if (ParseToken(lltok::equal, "expected '=' here") ||
Bill Wendling63b88192013-02-06 06:52:58 +0000986 ParseToken(lltok::lbrace, "expected '{' here") ||
Bill Wendling09bd1f72013-02-22 00:12:35 +0000987 ParseFnAttributeValuePairs(NumberedAttrBuilders[VarID], unused, true,
Michael Gottesman41748d72013-06-27 00:25:01 +0000988 BuiltinLoc) ||
Bill Wendling63b88192013-02-06 06:52:58 +0000989 ParseToken(lltok::rbrace, "expected end of attribute group"))
990 return true;
991
Bill Wendlingb32b0412013-02-08 06:32:06 +0000992 if (!NumberedAttrBuilders[VarID].hasAttributes())
Bill Wendling63b88192013-02-06 06:52:58 +0000993 return Error(AttrGrpLoc, "attribute group has no attributes");
994
995 return false;
996}
997
Bill Wendling8b0321d2013-02-08 00:52:31 +0000998/// ParseFnAttributeValuePairs
Bill Wendling63b88192013-02-06 06:52:58 +0000999/// ::= <attr> | <attr> '=' <value>
Bill Wendlingb32b0412013-02-08 06:32:06 +00001000bool LLParser::ParseFnAttributeValuePairs(AttrBuilder &B,
1001 std::vector<unsigned> &FwdRefAttrGrps,
Michael Gottesman41748d72013-06-27 00:25:01 +00001002 bool inAttrGrp, LocTy &BuiltinLoc) {
Bill Wendling8b0321d2013-02-08 00:52:31 +00001003 bool HaveError = false;
1004
1005 B.clear();
1006
Bill Wendling63b88192013-02-06 06:52:58 +00001007 while (true) {
1008 lltok::Kind Token = Lex.getKind();
Michael Gottesman41748d72013-06-27 00:25:01 +00001009 if (Token == lltok::kw_builtin)
1010 BuiltinLoc = Lex.getLoc();
Bill Wendling63b88192013-02-06 06:52:58 +00001011 switch (Token) {
1012 default:
Bill Wendling8b0321d2013-02-08 00:52:31 +00001013 if (!inAttrGrp) return HaveError;
Bill Wendling63b88192013-02-06 06:52:58 +00001014 return Error(Lex.getLoc(), "unterminated attribute group");
1015 case lltok::rbrace:
1016 // Finished.
1017 return false;
1018
Bill Wendlingb32b0412013-02-08 06:32:06 +00001019 case lltok::AttrGrpID: {
1020 // Allow a function to reference an attribute group:
1021 //
1022 // define void @foo() #1 { ... }
1023 if (inAttrGrp)
1024 HaveError |=
1025 Error(Lex.getLoc(),
1026 "cannot have an attribute group reference in an attribute group");
1027
1028 unsigned AttrGrpNum = Lex.getUIntVal();
1029 if (inAttrGrp) break;
1030
1031 // Save the reference to the attribute group. We'll fill it in later.
1032 FwdRefAttrGrps.push_back(AttrGrpNum);
1033 break;
1034 }
Bill Wendling63b88192013-02-06 06:52:58 +00001035 // Target-dependent attributes:
1036 case lltok::StringConstant: {
Artur Pilipenko17376c42015-08-03 14:31:49 +00001037 if (ParseStringAttribute(B))
Bill Wendling63b88192013-02-06 06:52:58 +00001038 return true;
Bill Wendlingb1ea9802013-02-10 10:12:50 +00001039 continue;
Bill Wendling63b88192013-02-06 06:52:58 +00001040 }
1041
1042 // Target-independent attributes:
1043 case lltok::kw_align: {
Bill Wendlingc62789f2013-04-18 18:30:16 +00001044 // As a hack, we allow function alignment to be initially parsed as an
1045 // attribute on a function declaration/definition or added to an attribute
1046 // group and later moved to the alignment field.
Bill Wendling63b88192013-02-06 06:52:58 +00001047 unsigned Alignment;
Bill Wendling8b0321d2013-02-08 00:52:31 +00001048 if (inAttrGrp) {
Bill Wendling44b08bf2013-02-10 23:15:51 +00001049 Lex.Lex();
Bill Wendling8b0321d2013-02-08 00:52:31 +00001050 if (ParseToken(lltok::equal, "expected '=' here") ||
1051 ParseUInt32(Alignment))
1052 return true;
1053 } else {
1054 if (ParseOptionalAlignment(Alignment))
1055 return true;
1056 }
Bill Wendling63b88192013-02-06 06:52:58 +00001057 B.addAlignmentAttr(Alignment);
Bill Wendling8b0321d2013-02-08 00:52:31 +00001058 continue;
Bill Wendling63b88192013-02-06 06:52:58 +00001059 }
1060 case lltok::kw_alignstack: {
1061 unsigned Alignment;
Bill Wendling8b0321d2013-02-08 00:52:31 +00001062 if (inAttrGrp) {
Bill Wendling44b08bf2013-02-10 23:15:51 +00001063 Lex.Lex();
Bill Wendling8b0321d2013-02-08 00:52:31 +00001064 if (ParseToken(lltok::equal, "expected '=' here") ||
1065 ParseUInt32(Alignment))
1066 return true;
1067 } else {
1068 if (ParseOptionalStackAlignment(Alignment))
1069 return true;
1070 }
Bill Wendling63b88192013-02-06 06:52:58 +00001071 B.addStackAlignmentAttr(Alignment);
Bill Wendling8b0321d2013-02-08 00:52:31 +00001072 continue;
Bill Wendling63b88192013-02-06 06:52:58 +00001073 }
George Burgess IV278199f2016-04-12 01:05:35 +00001074 case lltok::kw_allocsize: {
1075 unsigned ElemSizeArg;
1076 Optional<unsigned> NumElemsArg;
1077 // inAttrGrp doesn't matter; we only support allocsize(a[, b])
1078 if (parseAllocSizeArguments(ElemSizeArg, NumElemsArg))
1079 return true;
1080 B.addAllocSizeAttr(ElemSizeArg, NumElemsArg);
1081 continue;
1082 }
Igor Laevsky39d662f2015-07-11 10:30:36 +00001083 case lltok::kw_alwaysinline: B.addAttribute(Attribute::AlwaysInline); break;
1084 case lltok::kw_argmemonly: B.addAttribute(Attribute::ArgMemOnly); break;
1085 case lltok::kw_builtin: B.addAttribute(Attribute::Builtin); break;
1086 case lltok::kw_cold: B.addAttribute(Attribute::Cold); break;
1087 case lltok::kw_convergent: B.addAttribute(Attribute::Convergent); break;
Vaivaswatha Nagarajfb3f4902015-12-16 16:16:19 +00001088 case lltok::kw_inaccessiblememonly:
1089 B.addAttribute(Attribute::InaccessibleMemOnly); break;
1090 case lltok::kw_inaccessiblemem_or_argmemonly:
1091 B.addAttribute(Attribute::InaccessibleMemOrArgMemOnly); break;
Igor Laevsky39d662f2015-07-11 10:30:36 +00001092 case lltok::kw_inlinehint: B.addAttribute(Attribute::InlineHint); break;
1093 case lltok::kw_jumptable: B.addAttribute(Attribute::JumpTable); break;
1094 case lltok::kw_minsize: B.addAttribute(Attribute::MinSize); break;
1095 case lltok::kw_naked: B.addAttribute(Attribute::Naked); break;
1096 case lltok::kw_nobuiltin: B.addAttribute(Attribute::NoBuiltin); break;
1097 case lltok::kw_noduplicate: B.addAttribute(Attribute::NoDuplicate); break;
1098 case lltok::kw_noimplicitfloat:
1099 B.addAttribute(Attribute::NoImplicitFloat); break;
1100 case lltok::kw_noinline: B.addAttribute(Attribute::NoInline); break;
1101 case lltok::kw_nonlazybind: B.addAttribute(Attribute::NonLazyBind); break;
1102 case lltok::kw_noredzone: B.addAttribute(Attribute::NoRedZone); break;
1103 case lltok::kw_noreturn: B.addAttribute(Attribute::NoReturn); break;
James Molloye6f87ca2015-11-06 10:32:53 +00001104 case lltok::kw_norecurse: B.addAttribute(Attribute::NoRecurse); break;
Igor Laevsky39d662f2015-07-11 10:30:36 +00001105 case lltok::kw_nounwind: B.addAttribute(Attribute::NoUnwind); break;
1106 case lltok::kw_optnone: B.addAttribute(Attribute::OptimizeNone); break;
1107 case lltok::kw_optsize: B.addAttribute(Attribute::OptimizeForSize); break;
1108 case lltok::kw_readnone: B.addAttribute(Attribute::ReadNone); break;
1109 case lltok::kw_readonly: B.addAttribute(Attribute::ReadOnly); break;
1110 case lltok::kw_returns_twice:
1111 B.addAttribute(Attribute::ReturnsTwice); break;
Matt Arsenaultb19b57e2017-04-28 20:25:27 +00001112 case lltok::kw_speculatable: B.addAttribute(Attribute::Speculatable); break;
Igor Laevsky39d662f2015-07-11 10:30:36 +00001113 case lltok::kw_ssp: B.addAttribute(Attribute::StackProtect); break;
1114 case lltok::kw_sspreq: B.addAttribute(Attribute::StackProtectReq); break;
1115 case lltok::kw_sspstrong:
1116 B.addAttribute(Attribute::StackProtectStrong); break;
1117 case lltok::kw_safestack: B.addAttribute(Attribute::SafeStack); break;
1118 case lltok::kw_sanitize_address:
1119 B.addAttribute(Attribute::SanitizeAddress); break;
1120 case lltok::kw_sanitize_thread:
1121 B.addAttribute(Attribute::SanitizeThread); break;
1122 case lltok::kw_sanitize_memory:
1123 B.addAttribute(Attribute::SanitizeMemory); break;
Andrew Kaylor53a5fbb2017-08-14 21:15:13 +00001124 case lltok::kw_strictfp: B.addAttribute(Attribute::StrictFP); break;
Igor Laevsky39d662f2015-07-11 10:30:36 +00001125 case lltok::kw_uwtable: B.addAttribute(Attribute::UWTable); break;
Nicolai Haehnle84c9f992016-07-04 08:01:29 +00001126 case lltok::kw_writeonly: B.addAttribute(Attribute::WriteOnly); break;
Bill Wendling8b0321d2013-02-08 00:52:31 +00001127
1128 // Error handling.
1129 case lltok::kw_inreg:
1130 case lltok::kw_signext:
1131 case lltok::kw_zeroext:
1132 HaveError |=
1133 Error(Lex.getLoc(),
1134 "invalid use of attribute on a function");
1135 break;
1136 case lltok::kw_byval:
Hal Finkelb0407ba2014-07-18 15:51:28 +00001137 case lltok::kw_dereferenceable:
Sanjoy Das31ea6d12015-04-16 20:29:50 +00001138 case lltok::kw_dereferenceable_or_null:
Reid Klecknera534a382013-12-19 02:14:12 +00001139 case lltok::kw_inalloca:
Bill Wendling8b0321d2013-02-08 00:52:31 +00001140 case lltok::kw_nest:
1141 case lltok::kw_noalias:
1142 case lltok::kw_nocapture:
Nick Lewyckyd52b1522014-05-20 01:23:40 +00001143 case lltok::kw_nonnull:
Stephen Linb8bd2322013-04-20 05:14:40 +00001144 case lltok::kw_returned:
Bill Wendling8b0321d2013-02-08 00:52:31 +00001145 case lltok::kw_sret:
Manman Ren9bfd0d02016-04-01 21:41:15 +00001146 case lltok::kw_swifterror:
Manman Renf46262e2016-03-29 17:37:21 +00001147 case lltok::kw_swiftself:
Bill Wendling8b0321d2013-02-08 00:52:31 +00001148 HaveError |=
1149 Error(Lex.getLoc(),
1150 "invalid use of parameter-only attribute on a function");
1151 break;
Bill Wendling63b88192013-02-06 06:52:58 +00001152 }
1153
1154 Lex.Lex();
1155 }
1156}
Chris Lattnerac161bf2009-01-02 07:01:27 +00001157
1158//===----------------------------------------------------------------------===//
1159// GlobalValue Reference/Resolution Routines.
1160//===----------------------------------------------------------------------===//
1161
Karl Schimpf77729782015-09-03 18:06:44 +00001162static inline GlobalValue *createGlobalFwdRef(Module *M, PointerType *PTy,
1163 const std::string &Name) {
1164 if (auto *FT = dyn_cast<FunctionType>(PTy->getElementType()))
1165 return Function::Create(FT, GlobalValue::ExternalWeakLinkage, Name, M);
1166 else
1167 return new GlobalVariable(*M, PTy->getElementType(), false,
1168 GlobalValue::ExternalWeakLinkage, nullptr, Name,
1169 nullptr, GlobalVariable::NotThreadLocal,
1170 PTy->getAddressSpace());
1171}
1172
Chris Lattnerac161bf2009-01-02 07:01:27 +00001173/// GetGlobalVal - Get a value with the specified name or ID, creating a
1174/// forward reference record if needed. This can return null if the value
1175/// exists but does not have the right type.
Chris Lattner229907c2011-07-18 04:54:35 +00001176GlobalValue *LLParser::GetGlobalVal(const std::string &Name, Type *Ty,
Chris Lattnerac161bf2009-01-02 07:01:27 +00001177 LocTy Loc) {
Chris Lattner229907c2011-07-18 04:54:35 +00001178 PointerType *PTy = dyn_cast<PointerType>(Ty);
Craig Topper2617dcc2014-04-15 06:32:26 +00001179 if (!PTy) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00001180 Error(Loc, "global variable reference must have pointer type");
Craig Topper2617dcc2014-04-15 06:32:26 +00001181 return nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001182 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001183
Chris Lattnerac161bf2009-01-02 07:01:27 +00001184 // Look this name up in the normal function symbol table.
1185 GlobalValue *Val =
1186 cast_or_null<GlobalValue>(M->getValueSymbolTable().lookup(Name));
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001187
Chris Lattnerac161bf2009-01-02 07:01:27 +00001188 // If this is a forward reference for the value, see if we already created a
1189 // forward ref record.
Craig Topper2617dcc2014-04-15 06:32:26 +00001190 if (!Val) {
David Blaikie9ebdc692015-09-21 21:07:50 +00001191 auto I = ForwardRefVals.find(Name);
Chris Lattnerac161bf2009-01-02 07:01:27 +00001192 if (I != ForwardRefVals.end())
1193 Val = I->second.first;
1194 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001195
Chris Lattnerac161bf2009-01-02 07:01:27 +00001196 // If we have the value in the symbol table or fwd-ref table, return it.
1197 if (Val) {
1198 if (Val->getType() == Ty) return Val;
1199 Error(Loc, "'@" + Name + "' defined with type '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00001200 getTypeString(Val->getType()) + "'");
Craig Topper2617dcc2014-04-15 06:32:26 +00001201 return nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001202 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001203
Chris Lattnerac161bf2009-01-02 07:01:27 +00001204 // Otherwise, create a new forward reference for this value and remember it.
Karl Schimpf77729782015-09-03 18:06:44 +00001205 GlobalValue *FwdVal = createGlobalFwdRef(M, PTy, Name);
Chris Lattnerac161bf2009-01-02 07:01:27 +00001206 ForwardRefVals[Name] = std::make_pair(FwdVal, Loc);
1207 return FwdVal;
1208}
1209
Chris Lattner229907c2011-07-18 04:54:35 +00001210GlobalValue *LLParser::GetGlobalVal(unsigned ID, Type *Ty, LocTy Loc) {
1211 PointerType *PTy = dyn_cast<PointerType>(Ty);
Craig Topper2617dcc2014-04-15 06:32:26 +00001212 if (!PTy) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00001213 Error(Loc, "global variable reference must have pointer type");
Craig Topper2617dcc2014-04-15 06:32:26 +00001214 return nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001215 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001216
Craig Topper2617dcc2014-04-15 06:32:26 +00001217 GlobalValue *Val = ID < NumberedVals.size() ? NumberedVals[ID] : nullptr;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001218
Chris Lattnerac161bf2009-01-02 07:01:27 +00001219 // If this is a forward reference for the value, see if we already created a
1220 // forward ref record.
Craig Topper2617dcc2014-04-15 06:32:26 +00001221 if (!Val) {
David Blaikie9ebdc692015-09-21 21:07:50 +00001222 auto I = ForwardRefValIDs.find(ID);
Chris Lattnerac161bf2009-01-02 07:01:27 +00001223 if (I != ForwardRefValIDs.end())
1224 Val = I->second.first;
1225 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001226
Chris Lattnerac161bf2009-01-02 07:01:27 +00001227 // If we have the value in the symbol table or fwd-ref table, return it.
1228 if (Val) {
1229 if (Val->getType() == Ty) return Val;
Benjamin Kramerc7583112010-09-27 17:42:11 +00001230 Error(Loc, "'@" + Twine(ID) + "' defined with type '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00001231 getTypeString(Val->getType()) + "'");
Craig Topper2617dcc2014-04-15 06:32:26 +00001232 return nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001233 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001234
Chris Lattnerac161bf2009-01-02 07:01:27 +00001235 // Otherwise, create a new forward reference for this value and remember it.
Karl Schimpf77729782015-09-03 18:06:44 +00001236 GlobalValue *FwdVal = createGlobalFwdRef(M, PTy, "");
Chris Lattnerac161bf2009-01-02 07:01:27 +00001237 ForwardRefValIDs[ID] = std::make_pair(FwdVal, Loc);
1238 return FwdVal;
1239}
1240
Chris Lattnerac161bf2009-01-02 07:01:27 +00001241//===----------------------------------------------------------------------===//
David Majnemerdad0a642014-06-27 18:19:56 +00001242// Comdat Reference/Resolution Routines.
1243//===----------------------------------------------------------------------===//
1244
1245Comdat *LLParser::getComdat(const std::string &Name, LocTy Loc) {
1246 // Look this name up in the comdat symbol table.
1247 Module::ComdatSymTabType &ComdatSymTab = M->getComdatSymbolTable();
1248 Module::ComdatSymTabType::iterator I = ComdatSymTab.find(Name);
1249 if (I != ComdatSymTab.end())
1250 return &I->second;
1251
1252 // Otherwise, create a new forward reference for this value and remember it.
1253 Comdat *C = M->getOrInsertComdat(Name);
1254 ForwardRefComdats[Name] = Loc;
1255 return C;
1256}
1257
David Majnemerdad0a642014-06-27 18:19:56 +00001258//===----------------------------------------------------------------------===//
Chris Lattnerac161bf2009-01-02 07:01:27 +00001259// Helper Routines.
1260//===----------------------------------------------------------------------===//
1261
1262/// ParseToken - If the current token has the specified kind, eat it and return
1263/// success. Otherwise, emit the specified error and return failure.
1264bool LLParser::ParseToken(lltok::Kind T, const char *ErrMsg) {
1265 if (Lex.getKind() != T)
1266 return TokError(ErrMsg);
1267 Lex.Lex();
1268 return false;
1269}
1270
Chris Lattner3822f632009-01-02 08:05:26 +00001271/// ParseStringConstant
1272/// ::= StringConstant
1273bool LLParser::ParseStringConstant(std::string &Result) {
1274 if (Lex.getKind() != lltok::StringConstant)
1275 return TokError("expected string constant");
1276 Result = Lex.getStrVal();
1277 Lex.Lex();
1278 return false;
1279}
1280
1281/// ParseUInt32
1282/// ::= uint32
Leny Kholodov5fcc4182016-09-06 10:46:28 +00001283bool LLParser::ParseUInt32(uint32_t &Val) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00001284 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned())
1285 return TokError("expected integer");
1286 uint64_t Val64 = Lex.getAPSIntVal().getLimitedValue(0xFFFFFFFFULL+1);
1287 if (Val64 != unsigned(Val64))
1288 return TokError("expected 32-bit integer (too large)");
1289 Val = Val64;
1290 Lex.Lex();
1291 return false;
1292}
1293
Hal Finkelb0407ba2014-07-18 15:51:28 +00001294/// ParseUInt64
1295/// ::= uint64
1296bool LLParser::ParseUInt64(uint64_t &Val) {
1297 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned())
1298 return TokError("expected integer");
1299 Val = Lex.getAPSIntVal().getLimitedValue();
1300 Lex.Lex();
1301 return false;
1302}
1303
Hans Wennborgcbe34b42012-06-23 11:37:03 +00001304/// ParseTLSModel
1305/// := 'localdynamic'
1306/// := 'initialexec'
1307/// := 'localexec'
1308bool LLParser::ParseTLSModel(GlobalVariable::ThreadLocalMode &TLM) {
1309 switch (Lex.getKind()) {
1310 default:
1311 return TokError("expected localdynamic, initialexec or localexec");
1312 case lltok::kw_localdynamic:
1313 TLM = GlobalVariable::LocalDynamicTLSModel;
1314 break;
1315 case lltok::kw_initialexec:
1316 TLM = GlobalVariable::InitialExecTLSModel;
1317 break;
1318 case lltok::kw_localexec:
1319 TLM = GlobalVariable::LocalExecTLSModel;
1320 break;
1321 }
1322
1323 Lex.Lex();
1324 return false;
1325}
1326
1327/// ParseOptionalThreadLocal
1328/// := /*empty*/
1329/// := 'thread_local'
1330/// := 'thread_local' '(' tlsmodel ')'
1331bool LLParser::ParseOptionalThreadLocal(GlobalVariable::ThreadLocalMode &TLM) {
1332 TLM = GlobalVariable::NotThreadLocal;
1333 if (!EatIfPresent(lltok::kw_thread_local))
1334 return false;
1335
1336 TLM = GlobalVariable::GeneralDynamicTLSModel;
1337 if (Lex.getKind() == lltok::lparen) {
1338 Lex.Lex();
1339 return ParseTLSModel(TLM) ||
1340 ParseToken(lltok::rparen, "expected ')' after thread local model");
1341 }
1342 return false;
1343}
Chris Lattnerac161bf2009-01-02 07:01:27 +00001344
1345/// ParseOptionalAddrSpace
1346/// := /*empty*/
1347/// := 'addrspace' '(' uint32 ')'
1348bool LLParser::ParseOptionalAddrSpace(unsigned &AddrSpace) {
1349 AddrSpace = 0;
Chris Lattner3822f632009-01-02 08:05:26 +00001350 if (!EatIfPresent(lltok::kw_addrspace))
Chris Lattnerac161bf2009-01-02 07:01:27 +00001351 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001352 return ParseToken(lltok::lparen, "expected '(' in address space") ||
Chris Lattner3822f632009-01-02 08:05:26 +00001353 ParseUInt32(AddrSpace) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00001354 ParseToken(lltok::rparen, "expected ')' in address space");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001355}
Chris Lattnerac161bf2009-01-02 07:01:27 +00001356
Artur Pilipenko17376c42015-08-03 14:31:49 +00001357/// ParseStringAttribute
1358/// := StringConstant
1359/// := StringConstant '=' StringConstant
1360bool LLParser::ParseStringAttribute(AttrBuilder &B) {
1361 std::string Attr = Lex.getStrVal();
1362 Lex.Lex();
1363 std::string Val;
1364 if (EatIfPresent(lltok::equal) && ParseStringConstant(Val))
1365 return true;
1366 B.addAttribute(Attr, Val);
1367 return false;
1368}
1369
Bill Wendling34c2eb22012-12-04 23:40:58 +00001370/// ParseOptionalParamAttrs - Parse a potentially empty list of parameter attributes.
1371bool LLParser::ParseOptionalParamAttrs(AttrBuilder &B) {
1372 bool HaveError = false;
1373
1374 B.clear();
1375
Eugene Zelenko1804a772016-08-25 00:45:04 +00001376 while (true) {
Bill Wendling34c2eb22012-12-04 23:40:58 +00001377 lltok::Kind Token = Lex.getKind();
1378 switch (Token) {
1379 default: // End of attributes.
1380 return HaveError;
Artur Pilipenko17376c42015-08-03 14:31:49 +00001381 case lltok::StringConstant: {
1382 if (ParseStringAttribute(B))
1383 return true;
1384 continue;
1385 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00001386 case lltok::kw_align: {
1387 unsigned Alignment;
1388 if (ParseOptionalAlignment(Alignment))
1389 return true;
Bill Wendling68d24012012-10-08 22:20:14 +00001390 B.addAlignmentAttr(Alignment);
Chris Lattnerac161bf2009-01-02 07:01:27 +00001391 continue;
1392 }
Bill Wendling3d7b0b82012-12-19 07:18:57 +00001393 case lltok::kw_byval: B.addAttribute(Attribute::ByVal); break;
Hal Finkelb0407ba2014-07-18 15:51:28 +00001394 case lltok::kw_dereferenceable: {
1395 uint64_t Bytes;
Sanjoy Das31ea6d12015-04-16 20:29:50 +00001396 if (ParseOptionalDerefAttrBytes(lltok::kw_dereferenceable, Bytes))
Hal Finkelb0407ba2014-07-18 15:51:28 +00001397 return true;
1398 B.addDereferenceableAttr(Bytes);
1399 continue;
1400 }
Sanjoy Das31ea6d12015-04-16 20:29:50 +00001401 case lltok::kw_dereferenceable_or_null: {
1402 uint64_t Bytes;
1403 if (ParseOptionalDerefAttrBytes(lltok::kw_dereferenceable_or_null, Bytes))
1404 return true;
1405 B.addDereferenceableOrNullAttr(Bytes);
1406 continue;
1407 }
Reid Klecknera534a382013-12-19 02:14:12 +00001408 case lltok::kw_inalloca: B.addAttribute(Attribute::InAlloca); break;
Bill Wendling3d7b0b82012-12-19 07:18:57 +00001409 case lltok::kw_inreg: B.addAttribute(Attribute::InReg); break;
1410 case lltok::kw_nest: B.addAttribute(Attribute::Nest); break;
1411 case lltok::kw_noalias: B.addAttribute(Attribute::NoAlias); break;
1412 case lltok::kw_nocapture: B.addAttribute(Attribute::NoCapture); break;
Nick Lewyckyd52b1522014-05-20 01:23:40 +00001413 case lltok::kw_nonnull: B.addAttribute(Attribute::NonNull); break;
Nick Lewyckyc2ec0722013-07-06 00:29:58 +00001414 case lltok::kw_readnone: B.addAttribute(Attribute::ReadNone); break;
1415 case lltok::kw_readonly: B.addAttribute(Attribute::ReadOnly); break;
Stephen Linb8bd2322013-04-20 05:14:40 +00001416 case lltok::kw_returned: B.addAttribute(Attribute::Returned); break;
Bill Wendling3d7b0b82012-12-19 07:18:57 +00001417 case lltok::kw_signext: B.addAttribute(Attribute::SExt); break;
1418 case lltok::kw_sret: B.addAttribute(Attribute::StructRet); break;
Manman Ren9bfd0d02016-04-01 21:41:15 +00001419 case lltok::kw_swifterror: B.addAttribute(Attribute::SwiftError); break;
Manman Renf46262e2016-03-29 17:37:21 +00001420 case lltok::kw_swiftself: B.addAttribute(Attribute::SwiftSelf); break;
Nicolai Haehnle84c9f992016-07-04 08:01:29 +00001421 case lltok::kw_writeonly: B.addAttribute(Attribute::WriteOnly); break;
Bill Wendling3d7b0b82012-12-19 07:18:57 +00001422 case lltok::kw_zeroext: B.addAttribute(Attribute::ZExt); break;
Charles Davisbe5557e2010-02-12 00:31:15 +00001423
Stephen Lin7577ed52013-04-20 13:16:13 +00001424 case lltok::kw_alignstack:
1425 case lltok::kw_alwaysinline:
Igor Laevsky39d662f2015-07-11 10:30:36 +00001426 case lltok::kw_argmemonly:
Michael Gottesman41748d72013-06-27 00:25:01 +00001427 case lltok::kw_builtin:
Stephen Lin7577ed52013-04-20 13:16:13 +00001428 case lltok::kw_inlinehint:
Tom Roeder44cb65f2014-06-05 19:29:43 +00001429 case lltok::kw_jumptable:
Stephen Lin7577ed52013-04-20 13:16:13 +00001430 case lltok::kw_minsize:
1431 case lltok::kw_naked:
1432 case lltok::kw_nobuiltin:
1433 case lltok::kw_noduplicate:
1434 case lltok::kw_noimplicitfloat:
1435 case lltok::kw_noinline:
1436 case lltok::kw_nonlazybind:
1437 case lltok::kw_noredzone:
1438 case lltok::kw_noreturn:
1439 case lltok::kw_nounwind:
Andrea Di Biagio377496b2013-08-23 11:53:55 +00001440 case lltok::kw_optnone:
Stephen Lin7577ed52013-04-20 13:16:13 +00001441 case lltok::kw_optsize:
Stephen Lin7577ed52013-04-20 13:16:13 +00001442 case lltok::kw_returns_twice:
1443 case lltok::kw_sanitize_address:
1444 case lltok::kw_sanitize_memory:
1445 case lltok::kw_sanitize_thread:
1446 case lltok::kw_ssp:
1447 case lltok::kw_sspreq:
1448 case lltok::kw_sspstrong:
Peter Collingbourne82437bf2015-06-15 21:07:11 +00001449 case lltok::kw_safestack:
Andrew Kaylor53a5fbb2017-08-14 21:15:13 +00001450 case lltok::kw_strictfp:
Stephen Lin7577ed52013-04-20 13:16:13 +00001451 case lltok::kw_uwtable:
Bill Wendling34c2eb22012-12-04 23:40:58 +00001452 HaveError |= Error(Lex.getLoc(), "invalid use of function-only attribute");
1453 break;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001454 }
Bill Wendling0be9c402012-09-28 22:30:18 +00001455
Bill Wendling34c2eb22012-12-04 23:40:58 +00001456 Lex.Lex();
1457 }
1458}
1459
1460/// ParseOptionalReturnAttrs - Parse a potentially empty list of return attributes.
1461bool LLParser::ParseOptionalReturnAttrs(AttrBuilder &B) {
1462 bool HaveError = false;
1463
1464 B.clear();
1465
Eugene Zelenko1804a772016-08-25 00:45:04 +00001466 while (true) {
Bill Wendling34c2eb22012-12-04 23:40:58 +00001467 lltok::Kind Token = Lex.getKind();
Bill Wendling0be9c402012-09-28 22:30:18 +00001468 switch (Token) {
Bill Wendling34c2eb22012-12-04 23:40:58 +00001469 default: // End of attributes.
1470 return HaveError;
Artur Pilipenko17376c42015-08-03 14:31:49 +00001471 case lltok::StringConstant: {
1472 if (ParseStringAttribute(B))
1473 return true;
1474 continue;
1475 }
Hal Finkelb0407ba2014-07-18 15:51:28 +00001476 case lltok::kw_dereferenceable: {
1477 uint64_t Bytes;
Sanjoy Das31ea6d12015-04-16 20:29:50 +00001478 if (ParseOptionalDerefAttrBytes(lltok::kw_dereferenceable, Bytes))
Hal Finkelb0407ba2014-07-18 15:51:28 +00001479 return true;
1480 B.addDereferenceableAttr(Bytes);
1481 continue;
1482 }
Sanjoy Das31ea6d12015-04-16 20:29:50 +00001483 case lltok::kw_dereferenceable_or_null: {
1484 uint64_t Bytes;
1485 if (ParseOptionalDerefAttrBytes(lltok::kw_dereferenceable_or_null, Bytes))
1486 return true;
1487 B.addDereferenceableOrNullAttr(Bytes);
1488 continue;
1489 }
Artur Pilipenko84bc62f2015-09-18 12:33:31 +00001490 case lltok::kw_align: {
1491 unsigned Alignment;
1492 if (ParseOptionalAlignment(Alignment))
1493 return true;
1494 B.addAlignmentAttr(Alignment);
1495 continue;
1496 }
Bill Wendling3d7b0b82012-12-19 07:18:57 +00001497 case lltok::kw_inreg: B.addAttribute(Attribute::InReg); break;
1498 case lltok::kw_noalias: B.addAttribute(Attribute::NoAlias); break;
Nick Lewyckyd52b1522014-05-20 01:23:40 +00001499 case lltok::kw_nonnull: B.addAttribute(Attribute::NonNull); break;
Bill Wendling3d7b0b82012-12-19 07:18:57 +00001500 case lltok::kw_signext: B.addAttribute(Attribute::SExt); break;
1501 case lltok::kw_zeroext: B.addAttribute(Attribute::ZExt); break;
Bill Wendling0be9c402012-09-28 22:30:18 +00001502
Bill Wendling34c2eb22012-12-04 23:40:58 +00001503 // Error handling.
Chandler Carruth9f6b59a2013-04-09 19:46:46 +00001504 case lltok::kw_byval:
Reid Klecknera534a382013-12-19 02:14:12 +00001505 case lltok::kw_inalloca:
Chandler Carruth9f6b59a2013-04-09 19:46:46 +00001506 case lltok::kw_nest:
1507 case lltok::kw_nocapture:
Stephen Linb8bd2322013-04-20 05:14:40 +00001508 case lltok::kw_returned:
Chandler Carruth9f6b59a2013-04-09 19:46:46 +00001509 case lltok::kw_sret:
Manman Ren9bfd0d02016-04-01 21:41:15 +00001510 case lltok::kw_swifterror:
Manman Renf46262e2016-03-29 17:37:21 +00001511 case lltok::kw_swiftself:
Bill Wendling34c2eb22012-12-04 23:40:58 +00001512 HaveError |= Error(Lex.getLoc(), "invalid use of parameter-only attribute");
Bill Wendling0be9c402012-09-28 22:30:18 +00001513 break;
James Molloy4f6fb952012-12-20 16:04:27 +00001514
Chandler Carruth9f6b59a2013-04-09 19:46:46 +00001515 case lltok::kw_alignstack:
1516 case lltok::kw_alwaysinline:
Igor Laevsky39d662f2015-07-11 10:30:36 +00001517 case lltok::kw_argmemonly:
Michael Gottesman41748d72013-06-27 00:25:01 +00001518 case lltok::kw_builtin:
Diego Novilloc6399532013-05-24 12:26:52 +00001519 case lltok::kw_cold:
Chandler Carruth9f6b59a2013-04-09 19:46:46 +00001520 case lltok::kw_inlinehint:
Tom Roeder44cb65f2014-06-05 19:29:43 +00001521 case lltok::kw_jumptable:
Chandler Carruth9f6b59a2013-04-09 19:46:46 +00001522 case lltok::kw_minsize:
1523 case lltok::kw_naked:
1524 case lltok::kw_nobuiltin:
1525 case lltok::kw_noduplicate:
1526 case lltok::kw_noimplicitfloat:
1527 case lltok::kw_noinline:
1528 case lltok::kw_nonlazybind:
1529 case lltok::kw_noredzone:
1530 case lltok::kw_noreturn:
1531 case lltok::kw_nounwind:
Andrea Di Biagio377496b2013-08-23 11:53:55 +00001532 case lltok::kw_optnone:
Chandler Carruth9f6b59a2013-04-09 19:46:46 +00001533 case lltok::kw_optsize:
Chandler Carruth9f6b59a2013-04-09 19:46:46 +00001534 case lltok::kw_returns_twice:
1535 case lltok::kw_sanitize_address:
1536 case lltok::kw_sanitize_memory:
1537 case lltok::kw_sanitize_thread:
1538 case lltok::kw_ssp:
1539 case lltok::kw_sspreq:
1540 case lltok::kw_sspstrong:
Peter Collingbourne82437bf2015-06-15 21:07:11 +00001541 case lltok::kw_safestack:
Andrew Kaylor53a5fbb2017-08-14 21:15:13 +00001542 case lltok::kw_strictfp:
Chandler Carruth9f6b59a2013-04-09 19:46:46 +00001543 case lltok::kw_uwtable:
Bill Wendling34c2eb22012-12-04 23:40:58 +00001544 HaveError |= Error(Lex.getLoc(), "invalid use of function-only attribute");
Bill Wendling0be9c402012-09-28 22:30:18 +00001545 break;
Nick Lewyckyc2ec0722013-07-06 00:29:58 +00001546
1547 case lltok::kw_readnone:
1548 case lltok::kw_readonly:
1549 HaveError |= Error(Lex.getLoc(), "invalid use of attribute on return type");
Bill Wendling0be9c402012-09-28 22:30:18 +00001550 }
1551
Chris Lattnerac161bf2009-01-02 07:01:27 +00001552 Lex.Lex();
1553 }
1554}
1555
Rafael Espindolac6269912016-05-10 17:16:45 +00001556static unsigned parseOptionalLinkageAux(lltok::Kind Kind, bool &HasLinkage) {
1557 HasLinkage = true;
1558 switch (Kind) {
1559 default:
1560 HasLinkage = false;
1561 return GlobalValue::ExternalLinkage;
1562 case lltok::kw_private:
1563 return GlobalValue::PrivateLinkage;
1564 case lltok::kw_internal:
1565 return GlobalValue::InternalLinkage;
1566 case lltok::kw_weak:
1567 return GlobalValue::WeakAnyLinkage;
1568 case lltok::kw_weak_odr:
1569 return GlobalValue::WeakODRLinkage;
1570 case lltok::kw_linkonce:
1571 return GlobalValue::LinkOnceAnyLinkage;
1572 case lltok::kw_linkonce_odr:
1573 return GlobalValue::LinkOnceODRLinkage;
1574 case lltok::kw_available_externally:
1575 return GlobalValue::AvailableExternallyLinkage;
1576 case lltok::kw_appending:
1577 return GlobalValue::AppendingLinkage;
1578 case lltok::kw_common:
1579 return GlobalValue::CommonLinkage;
1580 case lltok::kw_extern_weak:
1581 return GlobalValue::ExternalWeakLinkage;
1582 case lltok::kw_external:
1583 return GlobalValue::ExternalLinkage;
1584 }
1585}
1586
Chris Lattnerac161bf2009-01-02 07:01:27 +00001587/// ParseOptionalLinkage
1588/// ::= /*empty*/
Rafael Espindola6de96a12009-01-15 20:18:42 +00001589/// ::= 'private'
Chris Lattnerac161bf2009-01-02 07:01:27 +00001590/// ::= 'internal'
1591/// ::= 'weak'
Duncan Sands12da8ce2009-03-07 15:45:40 +00001592/// ::= 'weak_odr'
Chris Lattnerac161bf2009-01-02 07:01:27 +00001593/// ::= 'linkonce'
Duncan Sands12da8ce2009-03-07 15:45:40 +00001594/// ::= 'linkonce_odr'
Bill Wendling03bcd6e2010-07-01 21:55:59 +00001595/// ::= 'available_externally'
Chris Lattnerac161bf2009-01-02 07:01:27 +00001596/// ::= 'appending'
Chris Lattnerac161bf2009-01-02 07:01:27 +00001597/// ::= 'common'
Chris Lattnerac161bf2009-01-02 07:01:27 +00001598/// ::= 'extern_weak'
1599/// ::= 'external'
Rafael Espindola2615c9e2016-05-12 12:37:52 +00001600bool LLParser::ParseOptionalLinkage(unsigned &Res, bool &HasLinkage,
1601 unsigned &Visibility,
1602 unsigned &DLLStorageClass) {
Rafael Espindolac6269912016-05-10 17:16:45 +00001603 Res = parseOptionalLinkageAux(Lex.getKind(), HasLinkage);
1604 if (HasLinkage)
1605 Lex.Lex();
Rafael Espindola2615c9e2016-05-12 12:37:52 +00001606 ParseOptionalVisibility(Visibility);
1607 ParseOptionalDLLStorageClass(DLLStorageClass);
Chris Lattnerac161bf2009-01-02 07:01:27 +00001608 return false;
1609}
1610
1611/// ParseOptionalVisibility
1612/// ::= /*empty*/
1613/// ::= 'default'
1614/// ::= 'hidden'
1615/// ::= 'protected'
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001616///
Rafael Espindola2615c9e2016-05-12 12:37:52 +00001617void LLParser::ParseOptionalVisibility(unsigned &Res) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00001618 switch (Lex.getKind()) {
Rafael Espindola2615c9e2016-05-12 12:37:52 +00001619 default:
1620 Res = GlobalValue::DefaultVisibility;
1621 return;
1622 case lltok::kw_default:
1623 Res = GlobalValue::DefaultVisibility;
1624 break;
1625 case lltok::kw_hidden:
1626 Res = GlobalValue::HiddenVisibility;
1627 break;
1628 case lltok::kw_protected:
1629 Res = GlobalValue::ProtectedVisibility;
1630 break;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001631 }
1632 Lex.Lex();
Chris Lattnerac161bf2009-01-02 07:01:27 +00001633}
1634
Nico Rieck7157bb72014-01-14 15:22:47 +00001635/// ParseOptionalDLLStorageClass
1636/// ::= /*empty*/
1637/// ::= 'dllimport'
1638/// ::= 'dllexport'
1639///
Rafael Espindola2615c9e2016-05-12 12:37:52 +00001640void LLParser::ParseOptionalDLLStorageClass(unsigned &Res) {
Nico Rieck7157bb72014-01-14 15:22:47 +00001641 switch (Lex.getKind()) {
Rafael Espindola2615c9e2016-05-12 12:37:52 +00001642 default:
1643 Res = GlobalValue::DefaultStorageClass;
1644 return;
1645 case lltok::kw_dllimport:
1646 Res = GlobalValue::DLLImportStorageClass;
1647 break;
1648 case lltok::kw_dllexport:
1649 Res = GlobalValue::DLLExportStorageClass;
1650 break;
Nico Rieck7157bb72014-01-14 15:22:47 +00001651 }
1652 Lex.Lex();
Nico Rieck7157bb72014-01-14 15:22:47 +00001653}
1654
Chris Lattnerac161bf2009-01-02 07:01:27 +00001655/// ParseOptionalCallingConv
1656/// ::= /*empty*/
1657/// ::= 'ccc'
1658/// ::= 'fastcc'
Reid Kleckner35fc3632014-12-01 21:04:44 +00001659/// ::= 'intel_ocl_bicc'
Chris Lattnerac161bf2009-01-02 07:01:27 +00001660/// ::= 'coldcc'
1661/// ::= 'x86_stdcallcc'
1662/// ::= 'x86_fastcallcc'
Anton Korobeynikov8f35fab2010-05-16 09:08:45 +00001663/// ::= 'x86_thiscallcc'
Reid Kleckner9ccce992014-10-28 01:29:26 +00001664/// ::= 'x86_vectorcallcc'
Anton Korobeynikova8fd40b2009-06-16 18:50:49 +00001665/// ::= 'arm_apcscc'
1666/// ::= 'arm_aapcscc'
1667/// ::= 'arm_aapcs_vfpcc'
Anton Korobeynikov27a0ecf2009-12-07 02:27:35 +00001668/// ::= 'msp430_intrcc'
Dylan McKay4fd0d4a2016-03-03 10:08:02 +00001669/// ::= 'avr_intrcc'
1670/// ::= 'avr_signalcc'
Che-Liang Chiou29947902010-09-25 07:46:17 +00001671/// ::= 'ptx_kernel'
1672/// ::= 'ptx_device'
Micah Villmow48c8ddc2012-10-01 17:01:31 +00001673/// ::= 'spir_func'
1674/// ::= 'spir_kernel'
Charles Davise8f297c2013-07-12 06:02:35 +00001675/// ::= 'x86_64_sysvcc'
Martin Storsjo2f24e932017-07-17 20:05:19 +00001676/// ::= 'win64cc'
Andrew Tricka3a11de2013-10-31 22:12:01 +00001677/// ::= 'webkit_jscc'
Juergen Ributzka9969d3e2013-11-08 23:28:16 +00001678/// ::= 'anyregcc'
Juergen Ributzkae6250132014-01-17 19:47:03 +00001679/// ::= 'preserve_mostcc'
1680/// ::= 'preserve_allcc'
Reid Kleckner35fc3632014-12-01 21:04:44 +00001681/// ::= 'ghccc'
Manman Renf8bdd882016-04-05 22:41:47 +00001682/// ::= 'swiftcc'
Amjad Aboud60b5e1b2015-12-21 14:07:14 +00001683/// ::= 'x86_intrcc'
Maksim Panchenkocce239c2015-09-29 22:09:16 +00001684/// ::= 'hhvmcc'
1685/// ::= 'hhvm_ccc'
Manman Ren19c7bbe2015-12-04 17:40:13 +00001686/// ::= 'cxx_fast_tlscc'
Nicolai Haehnledf3a20c2016-04-06 19:40:20 +00001687/// ::= 'amdgpu_vs'
Marek Olsaka302a7362017-05-02 15:41:10 +00001688/// ::= 'amdgpu_hs'
Nicolai Haehnledf3a20c2016-04-06 19:40:20 +00001689/// ::= 'amdgpu_gs'
1690/// ::= 'amdgpu_ps'
1691/// ::= 'amdgpu_cs'
Nikolay Haustov1f7732a2016-05-06 09:07:29 +00001692/// ::= 'amdgpu_kernel'
Chris Lattnerac161bf2009-01-02 07:01:27 +00001693/// ::= 'cc' UINT
Anton Korobeynikova8fd40b2009-06-16 18:50:49 +00001694///
Alexey Samsonov17a9cff2014-09-10 18:00:17 +00001695bool LLParser::ParseOptionalCallingConv(unsigned &CC) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00001696 switch (Lex.getKind()) {
1697 default: CC = CallingConv::C; return false;
1698 case lltok::kw_ccc: CC = CallingConv::C; break;
1699 case lltok::kw_fastcc: CC = CallingConv::Fast; break;
1700 case lltok::kw_coldcc: CC = CallingConv::Cold; break;
1701 case lltok::kw_x86_stdcallcc: CC = CallingConv::X86_StdCall; break;
1702 case lltok::kw_x86_fastcallcc: CC = CallingConv::X86_FastCall; break;
Oren Ben Simhon92ccbf22016-10-13 07:53:43 +00001703 case lltok::kw_x86_regcallcc: CC = CallingConv::X86_RegCall; break;
Anton Korobeynikov8f35fab2010-05-16 09:08:45 +00001704 case lltok::kw_x86_thiscallcc: CC = CallingConv::X86_ThisCall; break;
Reid Kleckner9ccce992014-10-28 01:29:26 +00001705 case lltok::kw_x86_vectorcallcc:CC = CallingConv::X86_VectorCall; break;
Anton Korobeynikova8fd40b2009-06-16 18:50:49 +00001706 case lltok::kw_arm_apcscc: CC = CallingConv::ARM_APCS; break;
1707 case lltok::kw_arm_aapcscc: CC = CallingConv::ARM_AAPCS; break;
1708 case lltok::kw_arm_aapcs_vfpcc:CC = CallingConv::ARM_AAPCS_VFP; break;
Anton Korobeynikov27a0ecf2009-12-07 02:27:35 +00001709 case lltok::kw_msp430_intrcc: CC = CallingConv::MSP430_INTR; break;
Dylan McKay4fd0d4a2016-03-03 10:08:02 +00001710 case lltok::kw_avr_intrcc: CC = CallingConv::AVR_INTR; break;
1711 case lltok::kw_avr_signalcc: CC = CallingConv::AVR_SIGNAL; break;
Che-Liang Chiou29947902010-09-25 07:46:17 +00001712 case lltok::kw_ptx_kernel: CC = CallingConv::PTX_Kernel; break;
1713 case lltok::kw_ptx_device: CC = CallingConv::PTX_Device; break;
Micah Villmow48c8ddc2012-10-01 17:01:31 +00001714 case lltok::kw_spir_kernel: CC = CallingConv::SPIR_KERNEL; break;
1715 case lltok::kw_spir_func: CC = CallingConv::SPIR_FUNC; break;
Elena Demikhovskyd6afb032012-10-24 14:46:16 +00001716 case lltok::kw_intel_ocl_bicc: CC = CallingConv::Intel_OCL_BI; break;
Charles Davise8f297c2013-07-12 06:02:35 +00001717 case lltok::kw_x86_64_sysvcc: CC = CallingConv::X86_64_SysV; break;
Martin Storsjo2f24e932017-07-17 20:05:19 +00001718 case lltok::kw_win64cc: CC = CallingConv::Win64; break;
Andrew Tricka3a11de2013-10-31 22:12:01 +00001719 case lltok::kw_webkit_jscc: CC = CallingConv::WebKit_JS; break;
Juergen Ributzka9969d3e2013-11-08 23:28:16 +00001720 case lltok::kw_anyregcc: CC = CallingConv::AnyReg; break;
Juergen Ributzkae6250132014-01-17 19:47:03 +00001721 case lltok::kw_preserve_mostcc:CC = CallingConv::PreserveMost; break;
1722 case lltok::kw_preserve_allcc: CC = CallingConv::PreserveAll; break;
Reid Kleckner35fc3632014-12-01 21:04:44 +00001723 case lltok::kw_ghccc: CC = CallingConv::GHC; break;
Manman Renf8bdd882016-04-05 22:41:47 +00001724 case lltok::kw_swiftcc: CC = CallingConv::Swift; break;
Amjad Aboud60b5e1b2015-12-21 14:07:14 +00001725 case lltok::kw_x86_intrcc: CC = CallingConv::X86_INTR; break;
Maksim Panchenkocce239c2015-09-29 22:09:16 +00001726 case lltok::kw_hhvmcc: CC = CallingConv::HHVM; break;
1727 case lltok::kw_hhvm_ccc: CC = CallingConv::HHVM_C; break;
Manman Ren19c7bbe2015-12-04 17:40:13 +00001728 case lltok::kw_cxx_fast_tlscc: CC = CallingConv::CXX_FAST_TLS; break;
Nicolai Haehnledf3a20c2016-04-06 19:40:20 +00001729 case lltok::kw_amdgpu_vs: CC = CallingConv::AMDGPU_VS; break;
Marek Olsaka302a7362017-05-02 15:41:10 +00001730 case lltok::kw_amdgpu_hs: CC = CallingConv::AMDGPU_HS; break;
Nicolai Haehnledf3a20c2016-04-06 19:40:20 +00001731 case lltok::kw_amdgpu_gs: CC = CallingConv::AMDGPU_GS; break;
1732 case lltok::kw_amdgpu_ps: CC = CallingConv::AMDGPU_PS; break;
1733 case lltok::kw_amdgpu_cs: CC = CallingConv::AMDGPU_CS; break;
Nikolay Haustov1f7732a2016-05-06 09:07:29 +00001734 case lltok::kw_amdgpu_kernel: CC = CallingConv::AMDGPU_KERNEL; break;
Sandeep Patel68c5f472009-09-02 08:44:58 +00001735 case lltok::kw_cc: {
Sandeep Patel68c5f472009-09-02 08:44:58 +00001736 Lex.Lex();
Alexey Samsonov17a9cff2014-09-10 18:00:17 +00001737 return ParseUInt32(CC);
Sandeep Patel68c5f472009-09-02 08:44:58 +00001738 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00001739 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001740
Chris Lattnerac161bf2009-01-02 07:01:27 +00001741 Lex.Lex();
1742 return false;
1743}
1744
Duncan P. N. Exon Smith19717ea2015-04-24 21:21:57 +00001745/// ParseMetadataAttachment
1746/// ::= !dbg !42
1747bool LLParser::ParseMetadataAttachment(unsigned &Kind, MDNode *&MD) {
1748 assert(Lex.getKind() == lltok::MetadataVar && "Expected metadata attachment");
1749
1750 std::string Name = Lex.getStrVal();
1751 Kind = M->getMDKindID(Name);
1752 Lex.Lex();
1753
1754 return ParseMDNode(MD);
1755}
1756
Chris Lattner5c427632009-12-30 05:31:19 +00001757/// ParseInstructionMetadata
Chris Lattner596760d2009-12-29 21:25:40 +00001758/// ::= !dbg !42 (',' !dbg !57)*
Duncan P. N. Exon Smith27d702c2015-04-24 21:29:36 +00001759bool LLParser::ParseInstructionMetadata(Instruction &Inst) {
Chris Lattner5c427632009-12-30 05:31:19 +00001760 do {
1761 if (Lex.getKind() != lltok::MetadataVar)
1762 return TokError("expected metadata after comma");
Devang Patelba4a6fd2009-09-29 00:01:14 +00001763
Duncan P. N. Exon Smith19717ea2015-04-24 21:21:57 +00001764 unsigned MDK;
Duncan P. N. Exon Smithf825dae2015-01-12 22:26:48 +00001765 MDNode *N;
Duncan P. N. Exon Smith19717ea2015-04-24 21:21:57 +00001766 if (ParseMetadataAttachment(MDK, N))
Chris Lattner1eed2d62009-12-30 04:56:59 +00001767 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001768
Duncan P. N. Exon Smith27d702c2015-04-24 21:29:36 +00001769 Inst.setMetadata(MDK, N);
Manman Ren209b17c2013-09-28 00:22:27 +00001770 if (MDK == LLVMContext::MD_tbaa)
Duncan P. N. Exon Smith27d702c2015-04-24 21:29:36 +00001771 InstsWithTBAATag.push_back(&Inst);
Manman Ren209b17c2013-09-28 00:22:27 +00001772
Chris Lattner596760d2009-12-29 21:25:40 +00001773 // If this is the end of the list, we're done.
Chris Lattner5c427632009-12-30 05:31:19 +00001774 } while (EatIfPresent(lltok::comma));
1775 return false;
Devang Patelea8a4b92009-09-17 23:04:48 +00001776}
1777
Peter Collingbournecceae7f2016-05-31 23:01:54 +00001778/// ParseGlobalObjectMetadataAttachment
1779/// ::= !dbg !57
1780bool LLParser::ParseGlobalObjectMetadataAttachment(GlobalObject &GO) {
1781 unsigned MDK;
1782 MDNode *N;
1783 if (ParseMetadataAttachment(MDK, N))
1784 return true;
1785
Peter Collingbourne382d81c2016-06-01 01:17:57 +00001786 GO.addMetadata(MDK, *N);
Peter Collingbournecceae7f2016-05-31 23:01:54 +00001787 return false;
1788}
1789
Duncan P. N. Exon Smith3d4cd752015-04-24 22:04:41 +00001790/// ParseOptionalFunctionMetadata
1791/// ::= (!dbg !57)*
1792bool LLParser::ParseOptionalFunctionMetadata(Function &F) {
Peter Collingbournecceae7f2016-05-31 23:01:54 +00001793 while (Lex.getKind() == lltok::MetadataVar)
1794 if (ParseGlobalObjectMetadataAttachment(F))
Duncan P. N. Exon Smith3d4cd752015-04-24 22:04:41 +00001795 return true;
Duncan P. N. Exon Smith3d4cd752015-04-24 22:04:41 +00001796 return false;
1797}
1798
Chris Lattnerac161bf2009-01-02 07:01:27 +00001799/// ParseOptionalAlignment
1800/// ::= /* empty */
1801/// ::= 'align' 4
1802bool LLParser::ParseOptionalAlignment(unsigned &Alignment) {
1803 Alignment = 0;
Chris Lattner3822f632009-01-02 08:05:26 +00001804 if (!EatIfPresent(lltok::kw_align))
1805 return false;
Chris Lattnerd11f5142009-01-05 07:46:05 +00001806 LocTy AlignLoc = Lex.getLoc();
1807 if (ParseUInt32(Alignment)) return true;
1808 if (!isPowerOf2_32(Alignment))
1809 return Error(AlignLoc, "alignment is not a power of two");
Dan Gohmand566d2c2010-07-30 21:07:05 +00001810 if (Alignment > Value::MaximumAlignment)
Dan Gohmana7e5a242010-07-28 20:12:04 +00001811 return Error(AlignLoc, "huge alignments are not supported yet");
Chris Lattnerd11f5142009-01-05 07:46:05 +00001812 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001813}
1814
Sanjoy Das31ea6d12015-04-16 20:29:50 +00001815/// ParseOptionalDerefAttrBytes
Hal Finkelb0407ba2014-07-18 15:51:28 +00001816/// ::= /* empty */
Sanjoy Das31ea6d12015-04-16 20:29:50 +00001817/// ::= AttrKind '(' 4 ')'
1818///
1819/// where AttrKind is either 'dereferenceable' or 'dereferenceable_or_null'.
1820bool LLParser::ParseOptionalDerefAttrBytes(lltok::Kind AttrKind,
1821 uint64_t &Bytes) {
1822 assert((AttrKind == lltok::kw_dereferenceable ||
1823 AttrKind == lltok::kw_dereferenceable_or_null) &&
1824 "contract!");
1825
Hal Finkelb0407ba2014-07-18 15:51:28 +00001826 Bytes = 0;
Sanjoy Das31ea6d12015-04-16 20:29:50 +00001827 if (!EatIfPresent(AttrKind))
Hal Finkelb0407ba2014-07-18 15:51:28 +00001828 return false;
1829 LocTy ParenLoc = Lex.getLoc();
1830 if (!EatIfPresent(lltok::lparen))
1831 return Error(ParenLoc, "expected '('");
1832 LocTy DerefLoc = Lex.getLoc();
1833 if (ParseUInt64(Bytes)) return true;
1834 ParenLoc = Lex.getLoc();
1835 if (!EatIfPresent(lltok::rparen))
1836 return Error(ParenLoc, "expected ')'");
1837 if (!Bytes)
1838 return Error(DerefLoc, "dereferenceable bytes must be non-zero");
1839 return false;
1840}
1841
Chris Lattnerb2f39502009-12-30 05:44:30 +00001842/// ParseOptionalCommaAlign
Michael Ilseman26ee2b82012-11-15 22:34:00 +00001843/// ::=
Chris Lattnerb2f39502009-12-30 05:44:30 +00001844/// ::= ',' align 4
1845///
1846/// This returns with AteExtraComma set to true if it ate an excess comma at the
1847/// end.
1848bool LLParser::ParseOptionalCommaAlign(unsigned &Alignment,
1849 bool &AteExtraComma) {
1850 AteExtraComma = false;
1851 while (EatIfPresent(lltok::comma)) {
1852 // Metadata at the end is an early exit.
Chris Lattnereafe4de2009-12-30 05:02:06 +00001853 if (Lex.getKind() == lltok::MetadataVar) {
Chris Lattnerb2f39502009-12-30 05:44:30 +00001854 AteExtraComma = true;
1855 return false;
1856 }
Michael Ilseman26ee2b82012-11-15 22:34:00 +00001857
Chris Lattner95b0ff42010-04-23 00:50:50 +00001858 if (Lex.getKind() != lltok::kw_align)
1859 return Error(Lex.getLoc(), "expected metadata or 'align'");
Duncan Sands4c5c8582010-10-21 16:07:10 +00001860
Chris Lattner95b0ff42010-04-23 00:50:50 +00001861 if (ParseOptionalAlignment(Alignment)) return true;
Chris Lattnerb2f39502009-12-30 05:44:30 +00001862 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001863
Devang Patelea8a4b92009-09-17 23:04:48 +00001864 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001865}
1866
Matt Arsenault3c1fc762017-04-10 22:27:50 +00001867/// ParseOptionalCommaAddrSpace
1868/// ::=
1869/// ::= ',' addrspace(1)
1870///
1871/// This returns with AteExtraComma set to true if it ate an excess comma at the
1872/// end.
1873bool LLParser::ParseOptionalCommaAddrSpace(unsigned &AddrSpace,
1874 LocTy &Loc,
1875 bool &AteExtraComma) {
1876 AteExtraComma = false;
1877 while (EatIfPresent(lltok::comma)) {
1878 // Metadata at the end is an early exit.
1879 if (Lex.getKind() == lltok::MetadataVar) {
1880 AteExtraComma = true;
1881 return false;
1882 }
1883
1884 Loc = Lex.getLoc();
1885 if (Lex.getKind() != lltok::kw_addrspace)
1886 return Error(Lex.getLoc(), "expected metadata or 'addrspace'");
1887
1888 if (ParseOptionalAddrSpace(AddrSpace))
1889 return true;
1890 }
1891
1892 return false;
1893}
1894
George Burgess IV278199f2016-04-12 01:05:35 +00001895bool LLParser::parseAllocSizeArguments(unsigned &BaseSizeArg,
1896 Optional<unsigned> &HowManyArg) {
1897 Lex.Lex();
1898
1899 auto StartParen = Lex.getLoc();
1900 if (!EatIfPresent(lltok::lparen))
1901 return Error(StartParen, "expected '('");
1902
1903 if (ParseUInt32(BaseSizeArg))
1904 return true;
1905
1906 if (EatIfPresent(lltok::comma)) {
1907 auto HowManyAt = Lex.getLoc();
1908 unsigned HowMany;
1909 if (ParseUInt32(HowMany))
1910 return true;
1911 if (HowMany == BaseSizeArg)
1912 return Error(HowManyAt,
1913 "'allocsize' indices can't refer to the same parameter");
1914 HowManyArg = HowMany;
1915 } else
1916 HowManyArg = None;
1917
1918 auto EndParen = Lex.getLoc();
1919 if (!EatIfPresent(lltok::rparen))
1920 return Error(EndParen, "expected ')'");
1921 return false;
1922}
1923
Eli Friedmanfee02c62011-07-25 23:16:38 +00001924/// ParseScopeAndOrdering
Konstantin Zhuravlyovbb80d3e2017-07-11 22:23:00 +00001925/// if isAtomic: ::= SyncScope? AtomicOrdering
Eli Friedmanfee02c62011-07-25 23:16:38 +00001926/// else: ::=
1927///
1928/// This sets Scope and Ordering to the parsed values.
Konstantin Zhuravlyovbb80d3e2017-07-11 22:23:00 +00001929bool LLParser::ParseScopeAndOrdering(bool isAtomic, SyncScope::ID &SSID,
Eli Friedmanfee02c62011-07-25 23:16:38 +00001930 AtomicOrdering &Ordering) {
1931 if (!isAtomic)
1932 return false;
1933
Konstantin Zhuravlyovbb80d3e2017-07-11 22:23:00 +00001934 return ParseScope(SSID) || ParseOrdering(Ordering);
1935}
Tim Northovere94a5182014-03-11 10:48:52 +00001936
Konstantin Zhuravlyovbb80d3e2017-07-11 22:23:00 +00001937/// ParseScope
1938/// ::= syncscope("singlethread" | "<target scope>")?
1939///
1940/// This sets synchronization scope ID to the ID of the parsed value.
1941bool LLParser::ParseScope(SyncScope::ID &SSID) {
1942 SSID = SyncScope::System;
1943 if (EatIfPresent(lltok::kw_syncscope)) {
1944 auto StartParenAt = Lex.getLoc();
1945 if (!EatIfPresent(lltok::lparen))
1946 return Error(StartParenAt, "Expected '(' in syncscope");
1947
1948 std::string SSN;
1949 auto SSNAt = Lex.getLoc();
1950 if (ParseStringConstant(SSN))
1951 return Error(SSNAt, "Expected synchronization scope name");
1952
1953 auto EndParenAt = Lex.getLoc();
1954 if (!EatIfPresent(lltok::rparen))
1955 return Error(EndParenAt, "Expected ')' in syncscope");
1956
1957 SSID = Context.getOrInsertSyncScopeID(SSN);
1958 }
1959
1960 return false;
Tim Northovere94a5182014-03-11 10:48:52 +00001961}
1962
1963/// ParseOrdering
1964/// ::= AtomicOrdering
1965///
1966/// This sets Ordering to the parsed value.
1967bool LLParser::ParseOrdering(AtomicOrdering &Ordering) {
Eli Friedmanfee02c62011-07-25 23:16:38 +00001968 switch (Lex.getKind()) {
1969 default: return TokError("Expected ordering on atomic instruction");
JF Bastien800f87a2016-04-06 21:19:33 +00001970 case lltok::kw_unordered: Ordering = AtomicOrdering::Unordered; break;
1971 case lltok::kw_monotonic: Ordering = AtomicOrdering::Monotonic; break;
1972 // Not specified yet:
1973 // case lltok::kw_consume: Ordering = AtomicOrdering::Consume; break;
1974 case lltok::kw_acquire: Ordering = AtomicOrdering::Acquire; break;
1975 case lltok::kw_release: Ordering = AtomicOrdering::Release; break;
1976 case lltok::kw_acq_rel: Ordering = AtomicOrdering::AcquireRelease; break;
1977 case lltok::kw_seq_cst:
1978 Ordering = AtomicOrdering::SequentiallyConsistent;
1979 break;
Eli Friedmanfee02c62011-07-25 23:16:38 +00001980 }
1981 Lex.Lex();
1982 return false;
1983}
1984
Charles Davisbe5557e2010-02-12 00:31:15 +00001985/// ParseOptionalStackAlignment
1986/// ::= /* empty */
1987/// ::= 'alignstack' '(' 4 ')'
1988bool LLParser::ParseOptionalStackAlignment(unsigned &Alignment) {
1989 Alignment = 0;
1990 if (!EatIfPresent(lltok::kw_alignstack))
1991 return false;
1992 LocTy ParenLoc = Lex.getLoc();
1993 if (!EatIfPresent(lltok::lparen))
1994 return Error(ParenLoc, "expected '('");
1995 LocTy AlignLoc = Lex.getLoc();
1996 if (ParseUInt32(Alignment)) return true;
1997 ParenLoc = Lex.getLoc();
1998 if (!EatIfPresent(lltok::rparen))
1999 return Error(ParenLoc, "expected ')'");
2000 if (!isPowerOf2_32(Alignment))
2001 return Error(AlignLoc, "stack alignment is not a power of two");
2002 return false;
2003}
Devang Patelea8a4b92009-09-17 23:04:48 +00002004
Chris Lattner28f1eeb2009-12-30 05:14:00 +00002005/// ParseIndexList - This parses the index list for an insert/extractvalue
2006/// instruction. This sets AteExtraComma in the case where we eat an extra
2007/// comma at the end of the line and find that it is followed by metadata.
2008/// Clients that don't allow metadata can call the version of this function that
2009/// only takes one argument.
2010///
Chris Lattnerac161bf2009-01-02 07:01:27 +00002011/// ParseIndexList
2012/// ::= (',' uint32)+
Chris Lattner28f1eeb2009-12-30 05:14:00 +00002013///
2014bool LLParser::ParseIndexList(SmallVectorImpl<unsigned> &Indices,
2015 bool &AteExtraComma) {
2016 AteExtraComma = false;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002017
Chris Lattnerac161bf2009-01-02 07:01:27 +00002018 if (Lex.getKind() != lltok::comma)
2019 return TokError("expected ',' as start of index list");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002020
Chris Lattner3822f632009-01-02 08:05:26 +00002021 while (EatIfPresent(lltok::comma)) {
Chris Lattner28f1eeb2009-12-30 05:14:00 +00002022 if (Lex.getKind() == lltok::MetadataVar) {
David Majnemer7ccc34d2015-02-16 09:18:13 +00002023 if (Indices.empty()) return TokError("expected index");
Chris Lattner28f1eeb2009-12-30 05:14:00 +00002024 AteExtraComma = true;
2025 return false;
2026 }
Nick Lewycky83e47112010-09-29 23:32:20 +00002027 unsigned Idx = 0;
Chris Lattner3822f632009-01-02 08:05:26 +00002028 if (ParseUInt32(Idx)) return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002029 Indices.push_back(Idx);
2030 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002031
Chris Lattnerac161bf2009-01-02 07:01:27 +00002032 return false;
2033}
2034
2035//===----------------------------------------------------------------------===//
2036// Type Parsing.
2037//===----------------------------------------------------------------------===//
2038
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002039/// ParseType - Parse a type.
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00002040bool LLParser::ParseType(Type *&Result, const Twine &Msg, bool AllowVoid) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002041 SMLoc TypeLoc = Lex.getLoc();
Chris Lattnerac161bf2009-01-02 07:01:27 +00002042 switch (Lex.getKind()) {
2043 default:
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00002044 return TokError(Msg);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002045 case lltok::Type:
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002046 // Type ::= 'float' | 'void' (etc)
Chris Lattnerac161bf2009-01-02 07:01:27 +00002047 Result = Lex.getTyVal();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002048 Lex.Lex();
Chris Lattnerac161bf2009-01-02 07:01:27 +00002049 break;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002050 case lltok::lbrace:
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002051 // Type ::= StructType
2052 if (ParseAnonStructType(Result, false))
Chris Lattnerac161bf2009-01-02 07:01:27 +00002053 return true;
2054 break;
2055 case lltok::lsquare:
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002056 // Type ::= '[' ... ']'
Chris Lattnerac161bf2009-01-02 07:01:27 +00002057 Lex.Lex(); // eat the lsquare.
2058 if (ParseArrayVectorType(Result, false))
2059 return true;
2060 break;
2061 case lltok::less: // Either vector or packed struct.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002062 // Type ::= '<' ... '>'
Chris Lattner3822f632009-01-02 08:05:26 +00002063 Lex.Lex();
2064 if (Lex.getKind() == lltok::lbrace) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002065 if (ParseAnonStructType(Result, true) ||
Chris Lattner3822f632009-01-02 08:05:26 +00002066 ParseToken(lltok::greater, "expected '>' at end of packed struct"))
Chris Lattnerac161bf2009-01-02 07:01:27 +00002067 return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002068 } else if (ParseArrayVectorType(Result, true))
2069 return true;
2070 break;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002071 case lltok::LocalVar: {
2072 // Type ::= %foo
2073 std::pair<Type*, LocTy> &Entry = NamedTypes[Lex.getStrVal()];
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002074
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002075 // If the type hasn't been defined yet, create a forward definition and
2076 // remember where that forward def'n was seen (in case it never is defined).
Craig Topper2617dcc2014-04-15 06:32:26 +00002077 if (!Entry.first) {
Chris Lattner335d3992011-08-12 18:06:37 +00002078 Entry.first = StructType::create(Context, Lex.getStrVal());
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002079 Entry.second = Lex.getLoc();
Chris Lattnerac161bf2009-01-02 07:01:27 +00002080 }
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002081 Result = Entry.first;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002082 Lex.Lex();
2083 break;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002084 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002085
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002086 case lltok::LocalVarID: {
2087 // Type ::= %4
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002088 std::pair<Type*, LocTy> &Entry = NumberedTypes[Lex.getUIntVal()];
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002089
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002090 // If the type hasn't been defined yet, create a forward definition and
2091 // remember where that forward def'n was seen (in case it never is defined).
Craig Topper2617dcc2014-04-15 06:32:26 +00002092 if (!Entry.first) {
Chris Lattner335d3992011-08-12 18:06:37 +00002093 Entry.first = StructType::create(Context);
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002094 Entry.second = Lex.getLoc();
Chris Lattnerac161bf2009-01-02 07:01:27 +00002095 }
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002096 Result = Entry.first;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002097 Lex.Lex();
2098 break;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002099 }
2100 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002101
2102 // Parse the type suffixes.
Eugene Zelenko1804a772016-08-25 00:45:04 +00002103 while (true) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002104 switch (Lex.getKind()) {
2105 // End of type.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002106 default:
2107 if (!AllowVoid && Result->isVoidTy())
2108 return Error(TypeLoc, "void type only allowed for function results");
2109 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002110
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002111 // Type ::= Type '*'
Chris Lattnerac161bf2009-01-02 07:01:27 +00002112 case lltok::star:
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002113 if (Result->isLabelTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00002114 return TokError("basic block pointers are invalid");
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002115 if (Result->isVoidTy())
2116 return TokError("pointers to void are invalid - use i8* instead");
2117 if (!PointerType::isValidElementType(Result))
Nick Lewycky0aa6a742009-06-07 07:26:46 +00002118 return TokError("pointer to this type is invalid");
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002119 Result = PointerType::getUnqual(Result);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002120 Lex.Lex();
2121 break;
2122
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002123 // Type ::= Type 'addrspace' '(' uint32 ')' '*'
Chris Lattnerac161bf2009-01-02 07:01:27 +00002124 case lltok::kw_addrspace: {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002125 if (Result->isLabelTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00002126 return TokError("basic block pointers are invalid");
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002127 if (Result->isVoidTy())
Dan Gohman9280a682009-02-09 17:41:21 +00002128 return TokError("pointers to void are invalid; use i8* instead");
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002129 if (!PointerType::isValidElementType(Result))
Nick Lewycky0aa6a742009-06-07 07:26:46 +00002130 return TokError("pointer to this type is invalid");
Chris Lattnerac161bf2009-01-02 07:01:27 +00002131 unsigned AddrSpace;
2132 if (ParseOptionalAddrSpace(AddrSpace) ||
2133 ParseToken(lltok::star, "expected '*' in address space"))
2134 return true;
2135
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002136 Result = PointerType::get(Result, AddrSpace);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002137 break;
2138 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002139
Chris Lattnerac161bf2009-01-02 07:01:27 +00002140 /// Types '(' ArgTypeListI ')' OptFuncAttrs
2141 case lltok::lparen:
2142 if (ParseFunctionType(Result))
2143 return true;
2144 break;
2145 }
2146 }
2147}
2148
2149/// ParseParameterList
2150/// ::= '(' ')'
2151/// ::= '(' Arg (',' Arg)* ')'
2152/// Arg
2153/// ::= Type OptionalAttributes Value OptionalAttributes
2154bool LLParser::ParseParameterList(SmallVectorImpl<ParamInfo> &ArgList,
Reid Kleckner83498642014-08-26 00:33:28 +00002155 PerFunctionState &PFS, bool IsMustTailCall,
2156 bool InVarArgsFunc) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002157 if (ParseToken(lltok::lparen, "expected '(' in call"))
2158 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002159
Chris Lattnerac161bf2009-01-02 07:01:27 +00002160 while (Lex.getKind() != lltok::rparen) {
2161 // If this isn't the first argument, we need a comma.
2162 if (!ArgList.empty() &&
2163 ParseToken(lltok::comma, "expected ',' in argument list"))
2164 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002165
Reid Kleckner83498642014-08-26 00:33:28 +00002166 // Parse an ellipsis if this is a musttail call in a variadic function.
2167 if (Lex.getKind() == lltok::dotdotdot) {
2168 const char *Msg = "unexpected ellipsis in argument list for ";
2169 if (!IsMustTailCall)
2170 return TokError(Twine(Msg) + "non-musttail call");
2171 if (!InVarArgsFunc)
2172 return TokError(Twine(Msg) + "musttail call in non-varargs function");
2173 Lex.Lex(); // Lex the '...', it is purely for readability.
2174 return ParseToken(lltok::rparen, "expected ')' at end of argument list");
2175 }
2176
Chris Lattnerac161bf2009-01-02 07:01:27 +00002177 // Parse the argument.
2178 LocTy ArgLoc;
Craig Topper2617dcc2014-04-15 06:32:26 +00002179 Type *ArgTy = nullptr;
Bill Wendling50d27842012-10-15 20:35:56 +00002180 AttrBuilder ArgAttrs;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002181 Value *V;
Victor Hernandezfa232232009-12-03 23:40:58 +00002182 if (ParseType(ArgTy, ArgLoc))
Chris Lattnerac161bf2009-01-02 07:01:27 +00002183 return true;
Victor Hernandezfa232232009-12-03 23:40:58 +00002184
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00002185 if (ArgTy->isMetadataTy()) {
2186 if (ParseMetadataAsValue(V, PFS))
2187 return true;
2188 } else {
2189 // Otherwise, handle normal operands.
2190 if (ParseOptionalParamAttrs(ArgAttrs) || ParseValue(ArgTy, V, PFS))
2191 return true;
2192 }
Reid Klecknerb5180542017-03-21 16:57:19 +00002193 ArgList.push_back(ParamInfo(
Reid Klecknerc2cb5602017-04-12 00:38:00 +00002194 ArgLoc, V, AttributeSet::get(V->getContext(), ArgAttrs)));
Chris Lattnerac161bf2009-01-02 07:01:27 +00002195 }
2196
Reid Kleckner83498642014-08-26 00:33:28 +00002197 if (IsMustTailCall && InVarArgsFunc)
2198 return TokError("expected '...' at end of argument list for musttail call "
2199 "in varargs function");
2200
Chris Lattnerac161bf2009-01-02 07:01:27 +00002201 Lex.Lex(); // Lex the ')'.
2202 return false;
2203}
2204
Sanjoy Dasb513a9f2015-09-24 23:34:52 +00002205/// ParseOptionalOperandBundles
2206/// ::= /*empty*/
2207/// ::= '[' OperandBundle [, OperandBundle ]* ']'
2208///
2209/// OperandBundle
2210/// ::= bundle-tag '(' ')'
2211/// ::= bundle-tag '(' Type Value [, Type Value ]* ')'
2212///
2213/// bundle-tag ::= String Constant
2214bool LLParser::ParseOptionalOperandBundles(
2215 SmallVectorImpl<OperandBundleDef> &BundleList, PerFunctionState &PFS) {
2216 LocTy BeginLoc = Lex.getLoc();
2217 if (!EatIfPresent(lltok::lsquare))
2218 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002219
Sanjoy Dasb513a9f2015-09-24 23:34:52 +00002220 while (Lex.getKind() != lltok::rsquare) {
2221 // If this isn't the first operand bundle, we need a comma.
2222 if (!BundleList.empty() &&
2223 ParseToken(lltok::comma, "expected ',' in input list"))
2224 return true;
2225
2226 std::string Tag;
2227 if (ParseStringConstant(Tag))
2228 return true;
2229
Sanjoy Dasb513a9f2015-09-24 23:34:52 +00002230 if (ParseToken(lltok::lparen, "expected '(' in operand bundle"))
2231 return true;
2232
Sanjoy Dasf79d3442015-11-18 08:30:07 +00002233 std::vector<Value *> Inputs;
Sanjoy Dasb513a9f2015-09-24 23:34:52 +00002234 while (Lex.getKind() != lltok::rparen) {
2235 // If this isn't the first input, we need a comma.
Sanjoy Dasf79d3442015-11-18 08:30:07 +00002236 if (!Inputs.empty() &&
Sanjoy Dasb513a9f2015-09-24 23:34:52 +00002237 ParseToken(lltok::comma, "expected ',' in input list"))
2238 return true;
2239
2240 Type *Ty = nullptr;
2241 Value *Input = nullptr;
2242 if (ParseType(Ty) || ParseValue(Ty, Input, PFS))
2243 return true;
Sanjoy Dasf79d3442015-11-18 08:30:07 +00002244 Inputs.push_back(Input);
Sanjoy Dasb513a9f2015-09-24 23:34:52 +00002245 }
2246
Sanjoy Dasf79d3442015-11-18 08:30:07 +00002247 BundleList.emplace_back(std::move(Tag), std::move(Inputs));
2248
Sanjoy Dasb513a9f2015-09-24 23:34:52 +00002249 Lex.Lex(); // Lex the ')'.
2250 }
2251
2252 if (BundleList.empty())
2253 return Error(BeginLoc, "operand bundle set must not be empty");
2254
2255 Lex.Lex(); // Lex the ']'.
2256 return false;
2257}
Chris Lattnerac161bf2009-01-02 07:01:27 +00002258
Chris Lattner2ed06b42009-01-05 18:34:07 +00002259/// ParseArgumentList - Parse the argument list for a function type or function
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002260/// prototype.
Chris Lattnerac161bf2009-01-02 07:01:27 +00002261/// ::= '(' ArgTypeListI ')'
2262/// ArgTypeListI
2263/// ::= /*empty*/
2264/// ::= '...'
2265/// ::= ArgTypeList ',' '...'
2266/// ::= ArgType (',' ArgType)*
Chris Lattner2ed06b42009-01-05 18:34:07 +00002267///
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002268bool LLParser::ParseArgumentList(SmallVectorImpl<ArgInfo> &ArgList,
2269 bool &isVarArg){
Chris Lattnerac161bf2009-01-02 07:01:27 +00002270 isVarArg = false;
2271 assert(Lex.getKind() == lltok::lparen);
2272 Lex.Lex(); // eat the (.
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002273
Chris Lattnerac161bf2009-01-02 07:01:27 +00002274 if (Lex.getKind() == lltok::rparen) {
2275 // empty
2276 } else if (Lex.getKind() == lltok::dotdotdot) {
2277 isVarArg = true;
2278 Lex.Lex();
2279 } else {
2280 LocTy TypeLoc = Lex.getLoc();
Craig Topper2617dcc2014-04-15 06:32:26 +00002281 Type *ArgTy = nullptr;
Bill Wendling50d27842012-10-15 20:35:56 +00002282 AttrBuilder Attrs;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002283 std::string Name;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002284
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002285 if (ParseType(ArgTy) ||
Bill Wendling34c2eb22012-12-04 23:40:58 +00002286 ParseOptionalParamAttrs(Attrs)) return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002287
Chris Lattnerfdd87902009-10-05 05:54:46 +00002288 if (ArgTy->isVoidTy())
Chris Lattnerf880ca22009-03-09 04:49:14 +00002289 return Error(TypeLoc, "argument can not have void type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002290
Chris Lattnerdef19492011-06-17 06:36:20 +00002291 if (Lex.getKind() == lltok::LocalVar) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002292 Name = Lex.getStrVal();
2293 Lex.Lex();
2294 }
Chris Lattner3822f632009-01-02 08:05:26 +00002295
Nick Lewycky0aa6a742009-06-07 07:26:46 +00002296 if (!FunctionType::isValidArgumentType(ArgTy))
Chris Lattner3822f632009-01-02 08:05:26 +00002297 return Error(TypeLoc, "invalid type for function argument");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002298
Reid Klecknereb9dd5b2017-04-10 23:31:05 +00002299 ArgList.emplace_back(TypeLoc, ArgTy,
Reid Klecknerc2cb5602017-04-12 00:38:00 +00002300 AttributeSet::get(ArgTy->getContext(), Attrs),
Benjamin Kramerf5e2fc42015-05-29 19:43:39 +00002301 std::move(Name));
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002302
Chris Lattner3822f632009-01-02 08:05:26 +00002303 while (EatIfPresent(lltok::comma)) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002304 // Handle ... at end of arg list.
Chris Lattner3822f632009-01-02 08:05:26 +00002305 if (EatIfPresent(lltok::dotdotdot)) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002306 isVarArg = true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002307 break;
2308 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002309
Chris Lattnerac161bf2009-01-02 07:01:27 +00002310 // Otherwise must be an argument type.
2311 TypeLoc = Lex.getLoc();
Bill Wendling34c2eb22012-12-04 23:40:58 +00002312 if (ParseType(ArgTy) || ParseOptionalParamAttrs(Attrs)) return true;
Chris Lattner3822f632009-01-02 08:05:26 +00002313
Chris Lattnerfdd87902009-10-05 05:54:46 +00002314 if (ArgTy->isVoidTy())
Chris Lattnerf880ca22009-03-09 04:49:14 +00002315 return Error(TypeLoc, "argument can not have void type");
2316
Chris Lattnerdef19492011-06-17 06:36:20 +00002317 if (Lex.getKind() == lltok::LocalVar) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002318 Name = Lex.getStrVal();
2319 Lex.Lex();
2320 } else {
2321 Name = "";
2322 }
Chris Lattner3822f632009-01-02 08:05:26 +00002323
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002324 if (!ArgTy->isFirstClassType())
Chris Lattner3822f632009-01-02 08:05:26 +00002325 return Error(TypeLoc, "invalid type for function argument");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002326
Reid Klecknereb9dd5b2017-04-10 23:31:05 +00002327 ArgList.emplace_back(TypeLoc, ArgTy,
Reid Klecknerc2cb5602017-04-12 00:38:00 +00002328 AttributeSet::get(ArgTy->getContext(), Attrs),
Reid Klecknereb9dd5b2017-04-10 23:31:05 +00002329 std::move(Name));
Chris Lattnerac161bf2009-01-02 07:01:27 +00002330 }
2331 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002332
Chris Lattner3822f632009-01-02 08:05:26 +00002333 return ParseToken(lltok::rparen, "expected ')' at end of argument list");
Chris Lattnerac161bf2009-01-02 07:01:27 +00002334}
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002335
Chris Lattnerac161bf2009-01-02 07:01:27 +00002336/// ParseFunctionType
2337/// ::= Type ArgumentList OptionalAttrs
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002338bool LLParser::ParseFunctionType(Type *&Result) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002339 assert(Lex.getKind() == lltok::lparen);
2340
Chris Lattnerce473c72009-01-05 08:04:33 +00002341 if (!FunctionType::isValidReturnType(Result))
2342 return TokError("invalid function return type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002343
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002344 SmallVector<ArgInfo, 8> ArgList;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002345 bool isVarArg;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002346 if (ParseArgumentList(ArgList, isVarArg))
Chris Lattnerac161bf2009-01-02 07:01:27 +00002347 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002348
Chris Lattnerac161bf2009-01-02 07:01:27 +00002349 // Reject names on the arguments lists.
2350 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
2351 if (!ArgList[i].Name.empty())
2352 return Error(ArgList[i].Loc, "argument name invalid in function type");
Reid Klecknerc2cb5602017-04-12 00:38:00 +00002353 if (ArgList[i].Attrs.hasAttributes())
Chris Lattner6bc5c892011-06-17 17:37:13 +00002354 return Error(ArgList[i].Loc,
2355 "argument attributes invalid in function type");
Chris Lattnerac161bf2009-01-02 07:01:27 +00002356 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002357
Jay Foadb804a2b2011-07-12 14:06:48 +00002358 SmallVector<Type*, 16> ArgListTy;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002359 for (unsigned i = 0, e = ArgList.size(); i != e; ++i)
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002360 ArgListTy.push_back(ArgList[i].Ty);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002361
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002362 Result = FunctionType::get(Result, ArgListTy, isVarArg);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002363 return false;
2364}
2365
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002366/// ParseAnonStructType - Parse an anonymous struct type, which is inlined into
2367/// other structs.
2368bool LLParser::ParseAnonStructType(Type *&Result, bool Packed) {
2369 SmallVector<Type*, 8> Elts;
2370 if (ParseStructBody(Elts)) return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002371
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002372 Result = StructType::get(Context, Elts, Packed);
2373 return false;
2374}
2375
2376/// ParseStructDefinition - Parse a struct in a 'type' definition.
2377bool LLParser::ParseStructDefinition(SMLoc TypeLoc, StringRef Name,
2378 std::pair<Type*, LocTy> &Entry,
2379 Type *&ResultTy) {
2380 // If the type was already defined, diagnose the redefinition.
2381 if (Entry.first && !Entry.second.isValid())
2382 return Error(TypeLoc, "redefinition of type");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002383
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002384 // If we have opaque, just return without filling in the definition for the
2385 // struct. This counts as a definition as far as the .ll file goes.
2386 if (EatIfPresent(lltok::kw_opaque)) {
2387 // This type is being defined, so clear the location to indicate this.
2388 Entry.second = SMLoc();
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002389
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002390 // If this type number has never been uttered, create it.
Craig Topper2617dcc2014-04-15 06:32:26 +00002391 if (!Entry.first)
Chris Lattner335d3992011-08-12 18:06:37 +00002392 Entry.first = StructType::create(Context, Name);
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002393 ResultTy = Entry.first;
2394 return false;
2395 }
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002396
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002397 // If the type starts with '<', then it is either a packed struct or a vector.
2398 bool isPacked = EatIfPresent(lltok::less);
2399
2400 // If we don't have a struct, then we have a random type alias, which we
2401 // accept for compatibility with old files. These types are not allowed to be
2402 // forward referenced and not allowed to be recursive.
2403 if (Lex.getKind() != lltok::lbrace) {
2404 if (Entry.first)
2405 return Error(TypeLoc, "forward references to non-struct type");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002406
Craig Topper2617dcc2014-04-15 06:32:26 +00002407 ResultTy = nullptr;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002408 if (isPacked)
2409 return ParseArrayVectorType(ResultTy, true);
2410 return ParseType(ResultTy);
2411 }
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002412
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002413 // This type is being defined, so clear the location to indicate this.
2414 Entry.second = SMLoc();
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002415
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002416 // If this type number has never been uttered, create it.
Craig Topper2617dcc2014-04-15 06:32:26 +00002417 if (!Entry.first)
Chris Lattner335d3992011-08-12 18:06:37 +00002418 Entry.first = StructType::create(Context, Name);
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002419
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002420 StructType *STy = cast<StructType>(Entry.first);
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002421
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002422 SmallVector<Type*, 8> Body;
2423 if (ParseStructBody(Body) ||
2424 (isPacked && ParseToken(lltok::greater, "expected '>' in packed struct")))
2425 return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002426
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002427 STy->setBody(Body, isPacked);
2428 ResultTy = STy;
2429 return false;
2430}
2431
Chris Lattnerac161bf2009-01-02 07:01:27 +00002432/// ParseStructType: Handles packed and unpacked types. </> parsed elsewhere.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002433/// StructType
Chris Lattnerac161bf2009-01-02 07:01:27 +00002434/// ::= '{' '}'
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002435/// ::= '{' Type (',' Type)* '}'
Chris Lattnerac161bf2009-01-02 07:01:27 +00002436/// ::= '<' '{' '}' '>'
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002437/// ::= '<' '{' Type (',' Type)* '}' '>'
2438bool LLParser::ParseStructBody(SmallVectorImpl<Type*> &Body) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002439 assert(Lex.getKind() == lltok::lbrace);
2440 Lex.Lex(); // Consume the '{'
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002441
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002442 // Handle the empty struct.
2443 if (EatIfPresent(lltok::rbrace))
Chris Lattnerac161bf2009-01-02 07:01:27 +00002444 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002445
Chris Lattnerf880ca22009-03-09 04:49:14 +00002446 LocTy EltTyLoc = Lex.getLoc();
Craig Topper2617dcc2014-04-15 06:32:26 +00002447 Type *Ty = nullptr;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002448 if (ParseType(Ty)) return true;
2449 Body.push_back(Ty);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002450
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002451 if (!StructType::isValidElementType(Ty))
Nick Lewycky0aa6a742009-06-07 07:26:46 +00002452 return Error(EltTyLoc, "invalid element type for struct");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002453
Chris Lattner3822f632009-01-02 08:05:26 +00002454 while (EatIfPresent(lltok::comma)) {
Chris Lattnerf880ca22009-03-09 04:49:14 +00002455 EltTyLoc = Lex.getLoc();
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002456 if (ParseType(Ty)) return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002457
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002458 if (!StructType::isValidElementType(Ty))
Nick Lewycky0aa6a742009-06-07 07:26:46 +00002459 return Error(EltTyLoc, "invalid element type for struct");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002460
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002461 Body.push_back(Ty);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002462 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002463
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002464 return ParseToken(lltok::rbrace, "expected '}' at end of struct");
Chris Lattnerac161bf2009-01-02 07:01:27 +00002465}
2466
2467/// ParseArrayVectorType - Parse an array or vector type, assuming the first
2468/// token has already been consumed.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002469/// Type
Chris Lattnerac161bf2009-01-02 07:01:27 +00002470/// ::= '[' APSINTVAL 'x' Types ']'
2471/// ::= '<' APSINTVAL 'x' Types '>'
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002472bool LLParser::ParseArrayVectorType(Type *&Result, bool isVector) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002473 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned() ||
2474 Lex.getAPSIntVal().getBitWidth() > 64)
2475 return TokError("expected number in address space");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002476
Chris Lattnerac161bf2009-01-02 07:01:27 +00002477 LocTy SizeLoc = Lex.getLoc();
2478 uint64_t Size = Lex.getAPSIntVal().getZExtValue();
Chris Lattner3822f632009-01-02 08:05:26 +00002479 Lex.Lex();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002480
Chris Lattner3822f632009-01-02 08:05:26 +00002481 if (ParseToken(lltok::kw_x, "expected 'x' after element count"))
2482 return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002483
2484 LocTy TypeLoc = Lex.getLoc();
Craig Topper2617dcc2014-04-15 06:32:26 +00002485 Type *EltTy = nullptr;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002486 if (ParseType(EltTy)) return true;
Chris Lattnerf880ca22009-03-09 04:49:14 +00002487
Chris Lattner3822f632009-01-02 08:05:26 +00002488 if (ParseToken(isVector ? lltok::greater : lltok::rsquare,
2489 "expected end of sequential type"))
2490 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002491
Chris Lattnerac161bf2009-01-02 07:01:27 +00002492 if (isVector) {
Chris Lattnerbb1fe8a2009-02-28 18:12:41 +00002493 if (Size == 0)
2494 return Error(SizeLoc, "zero element vector is illegal");
Chris Lattnerac161bf2009-01-02 07:01:27 +00002495 if ((unsigned)Size != Size)
2496 return Error(SizeLoc, "size too large for vector");
Nick Lewycky0aa6a742009-06-07 07:26:46 +00002497 if (!VectorType::isValidElementType(EltTy))
Duncan Sandse6beec62012-11-13 12:59:33 +00002498 return Error(TypeLoc, "invalid vector element type");
Owen Anderson4056ca92009-07-29 22:17:13 +00002499 Result = VectorType::get(EltTy, unsigned(Size));
Chris Lattnerac161bf2009-01-02 07:01:27 +00002500 } else {
Nick Lewycky0aa6a742009-06-07 07:26:46 +00002501 if (!ArrayType::isValidElementType(EltTy))
Chris Lattnerac161bf2009-01-02 07:01:27 +00002502 return Error(TypeLoc, "invalid array element type");
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002503 Result = ArrayType::get(EltTy, Size);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002504 }
2505 return false;
2506}
2507
2508//===----------------------------------------------------------------------===//
2509// Function Semantic Analysis.
2510//===----------------------------------------------------------------------===//
2511
Chris Lattner3432c622009-10-28 03:39:23 +00002512LLParser::PerFunctionState::PerFunctionState(LLParser &p, Function &f,
2513 int functionNumber)
2514 : P(p), F(f), FunctionNumber(functionNumber) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002515
2516 // Insert unnamed arguments into the NumberedVals list.
Duncan P. N. Exon Smithac331fb2015-10-20 01:12:49 +00002517 for (Argument &A : F.args())
2518 if (!A.hasName())
2519 NumberedVals.push_back(&A);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002520}
2521
2522LLParser::PerFunctionState::~PerFunctionState() {
2523 // If there were any forward referenced non-basicblock values, delete them.
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002524
David Blaikie9ebdc692015-09-21 21:07:50 +00002525 for (const auto &P : ForwardRefVals) {
2526 if (isa<BasicBlock>(P.second.first))
2527 continue;
2528 P.second.first->replaceAllUsesWith(
2529 UndefValue::get(P.second.first->getType()));
Reid Kleckner96ab8722017-05-18 17:24:10 +00002530 P.second.first->deleteValue();
David Blaikie9ebdc692015-09-21 21:07:50 +00002531 }
2532
2533 for (const auto &P : ForwardRefValIDs) {
2534 if (isa<BasicBlock>(P.second.first))
2535 continue;
2536 P.second.first->replaceAllUsesWith(
2537 UndefValue::get(P.second.first->getType()));
Reid Kleckner96ab8722017-05-18 17:24:10 +00002538 P.second.first->deleteValue();
David Blaikie9ebdc692015-09-21 21:07:50 +00002539 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00002540}
2541
Chris Lattner3432c622009-10-28 03:39:23 +00002542bool LLParser::PerFunctionState::FinishFunction() {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002543 if (!ForwardRefVals.empty())
2544 return P.Error(ForwardRefVals.begin()->second.second,
2545 "use of undefined value '%" + ForwardRefVals.begin()->first +
2546 "'");
2547 if (!ForwardRefValIDs.empty())
2548 return P.Error(ForwardRefValIDs.begin()->second.second,
2549 "use of undefined value '%" +
Benjamin Kramerc7583112010-09-27 17:42:11 +00002550 Twine(ForwardRefValIDs.begin()->first) + "'");
Chris Lattnerac161bf2009-01-02 07:01:27 +00002551 return false;
2552}
2553
Chris Lattnerac161bf2009-01-02 07:01:27 +00002554/// GetVal - Get a value with the specified name or ID, creating a
2555/// forward reference record if needed. This can return null if the value
2556/// exists but does not have the right type.
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00002557Value *LLParser::PerFunctionState::GetVal(const std::string &Name, Type *Ty,
David Majnemer8a1c45d2015-12-12 05:38:55 +00002558 LocTy Loc) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002559 // Look this name up in the normal function symbol table.
Mehdi Aminia53d49e2016-09-17 06:00:02 +00002560 Value *Val = F.getValueSymbolTable()->lookup(Name);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002561
Chris Lattnerac161bf2009-01-02 07:01:27 +00002562 // If this is a forward reference for the value, see if we already created a
2563 // forward ref record.
Craig Topper2617dcc2014-04-15 06:32:26 +00002564 if (!Val) {
David Blaikie9ebdc692015-09-21 21:07:50 +00002565 auto I = ForwardRefVals.find(Name);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002566 if (I != ForwardRefVals.end())
2567 Val = I->second.first;
2568 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002569
Chris Lattnerac161bf2009-01-02 07:01:27 +00002570 // If we have the value in the symbol table or fwd-ref table, return it.
2571 if (Val) {
2572 if (Val->getType() == Ty) return Val;
Chris Lattnerfdd87902009-10-05 05:54:46 +00002573 if (Ty->isLabelTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00002574 P.Error(Loc, "'%" + Name + "' is not a basic block");
2575 else
2576 P.Error(Loc, "'%" + Name + "' defined with type '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00002577 getTypeString(Val->getType()) + "'");
Craig Topper2617dcc2014-04-15 06:32:26 +00002578 return nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002579 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002580
Chris Lattnerac161bf2009-01-02 07:01:27 +00002581 // Don't make placeholders with invalid type.
Duncan P. N. Exon Smith6a6e9cb2014-08-05 18:22:58 +00002582 if (!Ty->isFirstClassType()) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002583 P.Error(Loc, "invalid use of a non-first-class type");
Craig Topper2617dcc2014-04-15 06:32:26 +00002584 return nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002585 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002586
Chris Lattnerac161bf2009-01-02 07:01:27 +00002587 // Otherwise, create a new forward reference for this value and remember it.
2588 Value *FwdVal;
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00002589 if (Ty->isLabelTy()) {
Owen Anderson55f1c092009-08-13 21:58:54 +00002590 FwdVal = BasicBlock::Create(F.getContext(), Name, &F);
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00002591 } else {
David Majnemer8a1c45d2015-12-12 05:38:55 +00002592 FwdVal = new Argument(Ty, Name);
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00002593 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002594
Chris Lattnerac161bf2009-01-02 07:01:27 +00002595 ForwardRefVals[Name] = std::make_pair(FwdVal, Loc);
2596 return FwdVal;
2597}
2598
David Majnemer8a1c45d2015-12-12 05:38:55 +00002599Value *LLParser::PerFunctionState::GetVal(unsigned ID, Type *Ty, LocTy Loc) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002600 // Look this name up in the normal function symbol table.
Craig Topper2617dcc2014-04-15 06:32:26 +00002601 Value *Val = ID < NumberedVals.size() ? NumberedVals[ID] : nullptr;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002602
Chris Lattnerac161bf2009-01-02 07:01:27 +00002603 // If this is a forward reference for the value, see if we already created a
2604 // forward ref record.
Craig Topper2617dcc2014-04-15 06:32:26 +00002605 if (!Val) {
David Blaikie9ebdc692015-09-21 21:07:50 +00002606 auto I = ForwardRefValIDs.find(ID);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002607 if (I != ForwardRefValIDs.end())
2608 Val = I->second.first;
2609 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002610
Chris Lattnerac161bf2009-01-02 07:01:27 +00002611 // If we have the value in the symbol table or fwd-ref table, return it.
2612 if (Val) {
2613 if (Val->getType() == Ty) return Val;
Chris Lattnerfdd87902009-10-05 05:54:46 +00002614 if (Ty->isLabelTy())
Benjamin Kramerc7583112010-09-27 17:42:11 +00002615 P.Error(Loc, "'%" + Twine(ID) + "' is not a basic block");
Chris Lattnerac161bf2009-01-02 07:01:27 +00002616 else
Benjamin Kramerc7583112010-09-27 17:42:11 +00002617 P.Error(Loc, "'%" + Twine(ID) + "' defined with type '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00002618 getTypeString(Val->getType()) + "'");
Craig Topper2617dcc2014-04-15 06:32:26 +00002619 return nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002620 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002621
Duncan P. N. Exon Smith6a6e9cb2014-08-05 18:22:58 +00002622 if (!Ty->isFirstClassType()) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002623 P.Error(Loc, "invalid use of a non-first-class type");
Craig Topper2617dcc2014-04-15 06:32:26 +00002624 return nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002625 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002626
Chris Lattnerac161bf2009-01-02 07:01:27 +00002627 // Otherwise, create a new forward reference for this value and remember it.
2628 Value *FwdVal;
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00002629 if (Ty->isLabelTy()) {
Owen Anderson55f1c092009-08-13 21:58:54 +00002630 FwdVal = BasicBlock::Create(F.getContext(), "", &F);
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00002631 } else {
David Majnemer8a1c45d2015-12-12 05:38:55 +00002632 FwdVal = new Argument(Ty);
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00002633 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002634
Chris Lattnerac161bf2009-01-02 07:01:27 +00002635 ForwardRefValIDs[ID] = std::make_pair(FwdVal, Loc);
2636 return FwdVal;
2637}
2638
2639/// SetInstName - After an instruction is parsed and inserted into its
2640/// basic block, this installs its name.
2641bool LLParser::PerFunctionState::SetInstName(int NameID,
2642 const std::string &NameStr,
2643 LocTy NameLoc, Instruction *Inst) {
2644 // If this instruction has void type, it cannot have a name or ID specified.
Chris Lattnerfdd87902009-10-05 05:54:46 +00002645 if (Inst->getType()->isVoidTy()) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002646 if (NameID != -1 || !NameStr.empty())
2647 return P.Error(NameLoc, "instructions returning void cannot have a name");
2648 return false;
2649 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002650
Chris Lattnerac161bf2009-01-02 07:01:27 +00002651 // If this was a numbered instruction, verify that the instruction is the
2652 // expected value and resolve any forward references.
2653 if (NameStr.empty()) {
2654 // If neither a name nor an ID was specified, just use the next ID.
2655 if (NameID == -1)
2656 NameID = NumberedVals.size();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002657
Chris Lattnerac161bf2009-01-02 07:01:27 +00002658 if (unsigned(NameID) != NumberedVals.size())
2659 return P.Error(NameLoc, "instruction expected to be numbered '%" +
Benjamin Kramerc7583112010-09-27 17:42:11 +00002660 Twine(NumberedVals.size()) + "'");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002661
David Blaikie9ebdc692015-09-21 21:07:50 +00002662 auto FI = ForwardRefValIDs.find(NameID);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002663 if (FI != ForwardRefValIDs.end()) {
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00002664 Value *Sentinel = FI->second.first;
2665 if (Sentinel->getType() != Inst->getType())
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002666 return P.Error(NameLoc, "instruction forward referenced with type '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00002667 getTypeString(FI->second.first->getType()) + "'");
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00002668
2669 Sentinel->replaceAllUsesWith(Inst);
Reid Kleckner96ab8722017-05-18 17:24:10 +00002670 Sentinel->deleteValue();
Chris Lattnerac161bf2009-01-02 07:01:27 +00002671 ForwardRefValIDs.erase(FI);
2672 }
2673
2674 NumberedVals.push_back(Inst);
2675 return false;
2676 }
2677
2678 // Otherwise, the instruction had a name. Resolve forward refs and set it.
David Blaikie9ebdc692015-09-21 21:07:50 +00002679 auto FI = ForwardRefVals.find(NameStr);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002680 if (FI != ForwardRefVals.end()) {
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00002681 Value *Sentinel = FI->second.first;
2682 if (Sentinel->getType() != Inst->getType())
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002683 return P.Error(NameLoc, "instruction forward referenced with type '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00002684 getTypeString(FI->second.first->getType()) + "'");
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00002685
2686 Sentinel->replaceAllUsesWith(Inst);
Reid Kleckner96ab8722017-05-18 17:24:10 +00002687 Sentinel->deleteValue();
Chris Lattnerac161bf2009-01-02 07:01:27 +00002688 ForwardRefVals.erase(FI);
2689 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002690
Chris Lattnerac161bf2009-01-02 07:01:27 +00002691 // Set the name on the instruction.
2692 Inst->setName(NameStr);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002693
Benjamin Kramer1dc34b42010-10-16 11:28:23 +00002694 if (Inst->getName() != NameStr)
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002695 return P.Error(NameLoc, "multiple definition of local value named '" +
Chris Lattnerac161bf2009-01-02 07:01:27 +00002696 NameStr + "'");
2697 return false;
2698}
2699
2700/// GetBB - Get a basic block with the specified name or ID, creating a
2701/// forward reference record if needed.
2702BasicBlock *LLParser::PerFunctionState::GetBB(const std::string &Name,
2703 LocTy Loc) {
Owen Anderson576a9a22015-03-02 05:25:09 +00002704 return dyn_cast_or_null<BasicBlock>(GetVal(Name,
2705 Type::getLabelTy(F.getContext()), Loc));
Chris Lattnerac161bf2009-01-02 07:01:27 +00002706}
2707
2708BasicBlock *LLParser::PerFunctionState::GetBB(unsigned ID, LocTy Loc) {
Owen Anderson576a9a22015-03-02 05:25:09 +00002709 return dyn_cast_or_null<BasicBlock>(GetVal(ID,
2710 Type::getLabelTy(F.getContext()), Loc));
Chris Lattnerac161bf2009-01-02 07:01:27 +00002711}
2712
2713/// DefineBB - Define the specified basic block, which is either named or
2714/// unnamed. If there is an error, this returns null otherwise it returns
2715/// the block being defined.
2716BasicBlock *LLParser::PerFunctionState::DefineBB(const std::string &Name,
2717 LocTy Loc) {
2718 BasicBlock *BB;
2719 if (Name.empty())
2720 BB = GetBB(NumberedVals.size(), Loc);
2721 else
2722 BB = GetBB(Name, Loc);
Craig Topper2617dcc2014-04-15 06:32:26 +00002723 if (!BB) return nullptr; // Already diagnosed error.
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002724
Chris Lattnerac161bf2009-01-02 07:01:27 +00002725 // Move the block to the end of the function. Forward ref'd blocks are
2726 // inserted wherever they happen to be referenced.
2727 F.getBasicBlockList().splice(F.end(), F.getBasicBlockList(), BB);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002728
Chris Lattnerac161bf2009-01-02 07:01:27 +00002729 // Remove the block from forward ref sets.
2730 if (Name.empty()) {
2731 ForwardRefValIDs.erase(NumberedVals.size());
2732 NumberedVals.push_back(BB);
2733 } else {
2734 // BB forward references are already in the function symbol table.
2735 ForwardRefVals.erase(Name);
2736 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002737
Chris Lattnerac161bf2009-01-02 07:01:27 +00002738 return BB;
2739}
2740
2741//===----------------------------------------------------------------------===//
2742// Constants.
2743//===----------------------------------------------------------------------===//
2744
2745/// ParseValID - Parse an abstract value that doesn't necessarily have a
2746/// type implied. For example, if we parse "4" we don't know what integer type
2747/// it has. The value will later be combined with its type and checked for
Victor Hernandezb8fd1522010-01-10 07:14:18 +00002748/// sanity. PFS is used to convert function-local operands of metadata (since
2749/// metadata operands are not just parsed here but also converted to values).
2750/// PFS can be null when we are not parsing metadata values inside a function.
Victor Hernandezdc6e65a2010-01-05 22:22:14 +00002751bool LLParser::ParseValID(ValID &ID, PerFunctionState *PFS) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002752 ID.Loc = Lex.getLoc();
2753 switch (Lex.getKind()) {
2754 default: return TokError("expected value token");
2755 case lltok::GlobalID: // @42
2756 ID.UIntVal = Lex.getUIntVal();
2757 ID.Kind = ValID::t_GlobalID;
2758 break;
2759 case lltok::GlobalVar: // @foo
2760 ID.StrVal = Lex.getStrVal();
2761 ID.Kind = ValID::t_GlobalName;
2762 break;
2763 case lltok::LocalVarID: // %42
2764 ID.UIntVal = Lex.getUIntVal();
2765 ID.Kind = ValID::t_LocalID;
2766 break;
2767 case lltok::LocalVar: // %foo
Chris Lattnerac161bf2009-01-02 07:01:27 +00002768 ID.StrVal = Lex.getStrVal();
2769 ID.Kind = ValID::t_LocalName;
2770 break;
2771 case lltok::APSInt:
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002772 ID.APSIntVal = Lex.getAPSIntVal();
Chris Lattnerac161bf2009-01-02 07:01:27 +00002773 ID.Kind = ValID::t_APSInt;
2774 break;
2775 case lltok::APFloat:
2776 ID.APFloatVal = Lex.getAPFloatVal();
2777 ID.Kind = ValID::t_APFloat;
2778 break;
2779 case lltok::kw_true:
Owen Anderson23a204d2009-07-31 17:39:07 +00002780 ID.ConstantVal = ConstantInt::getTrue(Context);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002781 ID.Kind = ValID::t_Constant;
2782 break;
2783 case lltok::kw_false:
Owen Anderson23a204d2009-07-31 17:39:07 +00002784 ID.ConstantVal = ConstantInt::getFalse(Context);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002785 ID.Kind = ValID::t_Constant;
2786 break;
2787 case lltok::kw_null: ID.Kind = ValID::t_Null; break;
2788 case lltok::kw_undef: ID.Kind = ValID::t_Undef; break;
2789 case lltok::kw_zeroinitializer: ID.Kind = ValID::t_Zero; break;
David Majnemerf0f224d2015-11-11 21:57:16 +00002790 case lltok::kw_none: ID.Kind = ValID::t_None; break;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002791
Chris Lattnerac161bf2009-01-02 07:01:27 +00002792 case lltok::lbrace: {
2793 // ValID ::= '{' ConstVector '}'
2794 Lex.Lex();
2795 SmallVector<Constant*, 16> Elts;
2796 if (ParseGlobalValueVector(Elts) ||
2797 ParseToken(lltok::rbrace, "expected end of struct constant"))
2798 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002799
David Blaikieadbda4b2015-08-03 20:08:41 +00002800 ID.ConstantStructElts = make_unique<Constant *[]>(Elts.size());
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002801 ID.UIntVal = Elts.size();
David Blaikieadbda4b2015-08-03 20:08:41 +00002802 memcpy(ID.ConstantStructElts.get(), Elts.data(),
2803 Elts.size() * sizeof(Elts[0]));
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002804 ID.Kind = ValID::t_ConstantStruct;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002805 return false;
2806 }
2807 case lltok::less: {
2808 // ValID ::= '<' ConstVector '>' --> Vector.
2809 // ValID ::= '<' '{' ConstVector '}' '>' --> Packed Struct.
2810 Lex.Lex();
Chris Lattner3822f632009-01-02 08:05:26 +00002811 bool isPackedStruct = EatIfPresent(lltok::lbrace);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002812
Chris Lattnerac161bf2009-01-02 07:01:27 +00002813 SmallVector<Constant*, 16> Elts;
2814 LocTy FirstEltLoc = Lex.getLoc();
2815 if (ParseGlobalValueVector(Elts) ||
2816 (isPackedStruct &&
2817 ParseToken(lltok::rbrace, "expected end of packed struct")) ||
2818 ParseToken(lltok::greater, "expected end of constant"))
2819 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002820
Chris Lattnerac161bf2009-01-02 07:01:27 +00002821 if (isPackedStruct) {
David Blaikieadbda4b2015-08-03 20:08:41 +00002822 ID.ConstantStructElts = make_unique<Constant *[]>(Elts.size());
2823 memcpy(ID.ConstantStructElts.get(), Elts.data(),
2824 Elts.size() * sizeof(Elts[0]));
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002825 ID.UIntVal = Elts.size();
2826 ID.Kind = ValID::t_PackedConstantStruct;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002827 return false;
2828 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002829
Chris Lattnerac161bf2009-01-02 07:01:27 +00002830 if (Elts.empty())
2831 return Error(ID.Loc, "constant vector must not be empty");
2832
Duncan Sands9dff9be2010-02-15 16:12:20 +00002833 if (!Elts[0]->getType()->isIntegerTy() &&
Nadav Rotem3924cb02011-12-05 06:29:09 +00002834 !Elts[0]->getType()->isFloatingPointTy() &&
2835 !Elts[0]->getType()->isPointerTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00002836 return Error(FirstEltLoc,
Nadav Rotem3924cb02011-12-05 06:29:09 +00002837 "vector elements must have integer, pointer or floating point type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002838
Chris Lattnerac161bf2009-01-02 07:01:27 +00002839 // Verify that all the vector elements have the same type.
2840 for (unsigned i = 1, e = Elts.size(); i != e; ++i)
2841 if (Elts[i]->getType() != Elts[0]->getType())
2842 return Error(FirstEltLoc,
Benjamin Kramerc7583112010-09-27 17:42:11 +00002843 "vector element #" + Twine(i) +
Chris Lattner0f214eb2011-06-18 21:18:23 +00002844 " is not of type '" + getTypeString(Elts[0]->getType()));
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002845
Chris Lattner69229312011-02-15 00:14:00 +00002846 ID.ConstantVal = ConstantVector::get(Elts);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002847 ID.Kind = ValID::t_Constant;
2848 return false;
2849 }
2850 case lltok::lsquare: { // Array Constant
2851 Lex.Lex();
2852 SmallVector<Constant*, 16> Elts;
2853 LocTy FirstEltLoc = Lex.getLoc();
2854 if (ParseGlobalValueVector(Elts) ||
2855 ParseToken(lltok::rsquare, "expected end of array constant"))
2856 return true;
2857
2858 // Handle empty element.
2859 if (Elts.empty()) {
2860 // Use undef instead of an array because it's inconvenient to determine
2861 // the element type at this point, there being no elements to examine.
Chris Lattner998fa0a2009-01-05 07:52:51 +00002862 ID.Kind = ValID::t_EmptyArray;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002863 return false;
2864 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002865
Chris Lattnerac161bf2009-01-02 07:01:27 +00002866 if (!Elts[0]->getType()->isFirstClassType())
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002867 return Error(FirstEltLoc, "invalid array element type: " +
Chris Lattner0f214eb2011-06-18 21:18:23 +00002868 getTypeString(Elts[0]->getType()));
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002869
Owen Anderson4056ca92009-07-29 22:17:13 +00002870 ArrayType *ATy = ArrayType::get(Elts[0]->getType(), Elts.size());
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002871
Chris Lattnerac161bf2009-01-02 07:01:27 +00002872 // Verify all elements are correct type!
Chris Lattner59d0e3b2009-01-02 08:49:06 +00002873 for (unsigned i = 0, e = Elts.size(); i != e; ++i) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002874 if (Elts[i]->getType() != Elts[0]->getType())
2875 return Error(FirstEltLoc,
Benjamin Kramerc7583112010-09-27 17:42:11 +00002876 "array element #" + Twine(i) +
Chris Lattner0f214eb2011-06-18 21:18:23 +00002877 " is not of type '" + getTypeString(Elts[0]->getType()));
Chris Lattnerac161bf2009-01-02 07:01:27 +00002878 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002879
Jay Foad83be3612011-06-22 09:24:39 +00002880 ID.ConstantVal = ConstantArray::get(ATy, Elts);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002881 ID.Kind = ValID::t_Constant;
2882 return false;
2883 }
2884 case lltok::kw_c: // c "foo"
2885 Lex.Lex();
Chris Lattnercf9e8f62012-02-05 02:29:43 +00002886 ID.ConstantVal = ConstantDataArray::getString(Context, Lex.getStrVal(),
2887 false);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002888 if (ParseToken(lltok::StringConstant, "expected string")) return true;
2889 ID.Kind = ValID::t_Constant;
2890 return false;
2891
2892 case lltok::kw_asm: {
Chad Rosier6f9c3852013-02-14 20:44:07 +00002893 // ValID ::= 'asm' SideEffect? AlignStack? IntelDialect? STRINGCONSTANT ','
2894 // STRINGCONSTANT
Chad Rosierd8c76102012-09-05 19:00:49 +00002895 bool HasSideEffect, AlignStack, AsmDialect;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002896 Lex.Lex();
2897 if (ParseOptionalToken(lltok::kw_sideeffect, HasSideEffect) ||
Dale Johannesen1cfb9582009-10-21 23:28:00 +00002898 ParseOptionalToken(lltok::kw_alignstack, AlignStack) ||
Chad Rosierd8c76102012-09-05 19:00:49 +00002899 ParseOptionalToken(lltok::kw_inteldialect, AsmDialect) ||
Chris Lattner3822f632009-01-02 08:05:26 +00002900 ParseStringConstant(ID.StrVal) ||
2901 ParseToken(lltok::comma, "expected comma in inline asm expression") ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00002902 ParseToken(lltok::StringConstant, "expected constraint string"))
2903 return true;
2904 ID.StrVal2 = Lex.getStrVal();
Chad Rosierf42fad62012-09-05 00:08:17 +00002905 ID.UIntVal = unsigned(HasSideEffect) | (unsigned(AlignStack)<<1) |
Chad Rosierd8c76102012-09-05 19:00:49 +00002906 (unsigned(AsmDialect)<<2);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002907 ID.Kind = ValID::t_InlineAsm;
2908 return false;
2909 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002910
Chris Lattner3432c622009-10-28 03:39:23 +00002911 case lltok::kw_blockaddress: {
2912 // ValID ::= 'blockaddress' '(' @foo ',' %bar ')'
2913 Lex.Lex();
2914
2915 ValID Fn, Label;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002916
Chris Lattner3432c622009-10-28 03:39:23 +00002917 if (ParseToken(lltok::lparen, "expected '(' in block address expression") ||
2918 ParseValID(Fn) ||
2919 ParseToken(lltok::comma, "expected comma in block address expression")||
2920 ParseValID(Label) ||
2921 ParseToken(lltok::rparen, "expected ')' in block address expression"))
2922 return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002923
Chris Lattner3432c622009-10-28 03:39:23 +00002924 if (Fn.Kind != ValID::t_GlobalID && Fn.Kind != ValID::t_GlobalName)
2925 return Error(Fn.Loc, "expected function name in blockaddress");
Chris Lattneraa99c942009-11-01 01:27:45 +00002926 if (Label.Kind != ValID::t_LocalID && Label.Kind != ValID::t_LocalName)
Chris Lattner3432c622009-10-28 03:39:23 +00002927 return Error(Label.Loc, "expected basic block name in blockaddress");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002928
Duncan P. N. Exon Smith17169902014-08-19 00:13:19 +00002929 // Try to find the function (but skip it if it's forward-referenced).
2930 GlobalValue *GV = nullptr;
2931 if (Fn.Kind == ValID::t_GlobalID) {
2932 if (Fn.UIntVal < NumberedVals.size())
2933 GV = NumberedVals[Fn.UIntVal];
2934 } else if (!ForwardRefVals.count(Fn.StrVal)) {
2935 GV = M->getNamedValue(Fn.StrVal);
2936 }
2937 Function *F = nullptr;
2938 if (GV) {
2939 // Confirm that it's actually a function with a definition.
2940 if (!isa<Function>(GV))
2941 return Error(Fn.Loc, "expected function name in blockaddress");
2942 F = cast<Function>(GV);
2943 if (F->isDeclaration())
2944 return Error(Fn.Loc, "cannot take blockaddress inside a declaration");
2945 }
2946
2947 if (!F) {
2948 // Make a global variable as a placeholder for this reference.
David Blaikieb9cc6592015-03-04 01:40:07 +00002949 GlobalValue *&FwdRef =
David Blaikie871b4112015-08-03 20:55:00 +00002950 ForwardRefBlockAddresses.insert(std::make_pair(
2951 std::move(Fn),
2952 std::map<ValID, GlobalValue *>()))
David Blaikieb9cc6592015-03-04 01:40:07 +00002953 .first->second.insert(std::make_pair(std::move(Label), nullptr))
2954 .first->second;
Duncan P. N. Exon Smith17169902014-08-19 00:13:19 +00002955 if (!FwdRef)
2956 FwdRef = new GlobalVariable(*M, Type::getInt8Ty(Context), false,
2957 GlobalValue::InternalLinkage, nullptr, "");
2958 ID.ConstantVal = FwdRef;
2959 ID.Kind = ValID::t_Constant;
2960 return false;
2961 }
2962
2963 // We found the function; now find the basic block. Don't use PFS, since we
2964 // might be inside a constant expression.
2965 BasicBlock *BB;
2966 if (BlockAddressPFS && F == &BlockAddressPFS->getFunction()) {
2967 if (Label.Kind == ValID::t_LocalID)
2968 BB = BlockAddressPFS->GetBB(Label.UIntVal, Label.Loc);
2969 else
2970 BB = BlockAddressPFS->GetBB(Label.StrVal, Label.Loc);
2971 if (!BB)
2972 return Error(Label.Loc, "referenced value is not a basic block");
2973 } else {
2974 if (Label.Kind == ValID::t_LocalID)
2975 return Error(Label.Loc, "cannot take address of numeric label after "
2976 "the function is defined");
2977 BB = dyn_cast_or_null<BasicBlock>(
Mehdi Aminia53d49e2016-09-17 06:00:02 +00002978 F->getValueSymbolTable()->lookup(Label.StrVal));
Duncan P. N. Exon Smith17169902014-08-19 00:13:19 +00002979 if (!BB)
2980 return Error(Label.Loc, "referenced value is not a basic block");
2981 }
2982
2983 ID.ConstantVal = BlockAddress::get(F, BB);
Chris Lattner3432c622009-10-28 03:39:23 +00002984 ID.Kind = ValID::t_Constant;
2985 return false;
2986 }
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002987
Chris Lattnerac161bf2009-01-02 07:01:27 +00002988 case lltok::kw_trunc:
2989 case lltok::kw_zext:
2990 case lltok::kw_sext:
2991 case lltok::kw_fptrunc:
2992 case lltok::kw_fpext:
2993 case lltok::kw_bitcast:
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002994 case lltok::kw_addrspacecast:
Chris Lattnerac161bf2009-01-02 07:01:27 +00002995 case lltok::kw_uitofp:
2996 case lltok::kw_sitofp:
2997 case lltok::kw_fptoui:
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002998 case lltok::kw_fptosi:
Chris Lattnerac161bf2009-01-02 07:01:27 +00002999 case lltok::kw_inttoptr:
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003000 case lltok::kw_ptrtoint: {
Chris Lattnerac161bf2009-01-02 07:01:27 +00003001 unsigned Opc = Lex.getUIntVal();
Craig Topper2617dcc2014-04-15 06:32:26 +00003002 Type *DestTy = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00003003 Constant *SrcVal;
3004 Lex.Lex();
3005 if (ParseToken(lltok::lparen, "expected '(' after constantexpr cast") ||
3006 ParseGlobalTypeAndValue(SrcVal) ||
Dan Gohman0b5d0422009-06-15 21:52:11 +00003007 ParseToken(lltok::kw_to, "expected 'to' in constantexpr cast") ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00003008 ParseType(DestTy) ||
3009 ParseToken(lltok::rparen, "expected ')' at end of constantexpr cast"))
3010 return true;
3011 if (!CastInst::castIsValid((Instruction::CastOps)Opc, SrcVal, DestTy))
3012 return Error(ID.Loc, "invalid cast opcode for cast from '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00003013 getTypeString(SrcVal->getType()) + "' to '" +
3014 getTypeString(DestTy) + "'");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003015 ID.ConstantVal = ConstantExpr::getCast((Instruction::CastOps)Opc,
Owen Anderson02a9da32009-07-01 23:57:11 +00003016 SrcVal, DestTy);
Chris Lattnerac161bf2009-01-02 07:01:27 +00003017 ID.Kind = ValID::t_Constant;
3018 return false;
3019 }
3020 case lltok::kw_extractvalue: {
3021 Lex.Lex();
3022 Constant *Val;
3023 SmallVector<unsigned, 4> Indices;
3024 if (ParseToken(lltok::lparen, "expected '(' in extractvalue constantexpr")||
3025 ParseGlobalTypeAndValue(Val) ||
3026 ParseIndexList(Indices) ||
3027 ParseToken(lltok::rparen, "expected ')' in extractvalue constantexpr"))
3028 return true;
Devang Patel1cb51162009-11-03 19:06:07 +00003029
Chris Lattner392be582010-02-12 20:49:41 +00003030 if (!Val->getType()->isAggregateType())
3031 return Error(ID.Loc, "extractvalue operand must be aggregate type");
Jay Foad57aa6362011-07-13 10:26:04 +00003032 if (!ExtractValueInst::getIndexedType(Val->getType(), Indices))
Chris Lattnerac161bf2009-01-02 07:01:27 +00003033 return Error(ID.Loc, "invalid indices for extractvalue");
Jay Foad57aa6362011-07-13 10:26:04 +00003034 ID.ConstantVal = ConstantExpr::getExtractValue(Val, Indices);
Chris Lattnerac161bf2009-01-02 07:01:27 +00003035 ID.Kind = ValID::t_Constant;
3036 return false;
3037 }
3038 case lltok::kw_insertvalue: {
3039 Lex.Lex();
3040 Constant *Val0, *Val1;
3041 SmallVector<unsigned, 4> Indices;
3042 if (ParseToken(lltok::lparen, "expected '(' in insertvalue constantexpr")||
3043 ParseGlobalTypeAndValue(Val0) ||
3044 ParseToken(lltok::comma, "expected comma in insertvalue constantexpr")||
3045 ParseGlobalTypeAndValue(Val1) ||
3046 ParseIndexList(Indices) ||
3047 ParseToken(lltok::rparen, "expected ')' in insertvalue constantexpr"))
3048 return true;
Chris Lattner392be582010-02-12 20:49:41 +00003049 if (!Val0->getType()->isAggregateType())
3050 return Error(ID.Loc, "insertvalue operand must be aggregate type");
David Majnemereba692d2015-02-23 07:13:52 +00003051 Type *IndexedType =
3052 ExtractValueInst::getIndexedType(Val0->getType(), Indices);
3053 if (!IndexedType)
Chris Lattnerac161bf2009-01-02 07:01:27 +00003054 return Error(ID.Loc, "invalid indices for insertvalue");
David Majnemereba692d2015-02-23 07:13:52 +00003055 if (IndexedType != Val1->getType())
3056 return Error(ID.Loc, "insertvalue operand and field disagree in type: '" +
3057 getTypeString(Val1->getType()) +
3058 "' instead of '" + getTypeString(IndexedType) +
3059 "'");
Jay Foad57aa6362011-07-13 10:26:04 +00003060 ID.ConstantVal = ConstantExpr::getInsertValue(Val0, Val1, Indices);
Chris Lattnerac161bf2009-01-02 07:01:27 +00003061 ID.Kind = ValID::t_Constant;
3062 return false;
3063 }
3064 case lltok::kw_icmp:
Nick Lewyckya21d3da2009-07-08 03:04:38 +00003065 case lltok::kw_fcmp: {
Chris Lattnerac161bf2009-01-02 07:01:27 +00003066 unsigned PredVal, Opc = Lex.getUIntVal();
3067 Constant *Val0, *Val1;
3068 Lex.Lex();
3069 if (ParseCmpPredicate(PredVal, Opc) ||
3070 ParseToken(lltok::lparen, "expected '(' in compare constantexpr") ||
3071 ParseGlobalTypeAndValue(Val0) ||
3072 ParseToken(lltok::comma, "expected comma in compare constantexpr") ||
3073 ParseGlobalTypeAndValue(Val1) ||
3074 ParseToken(lltok::rparen, "expected ')' in compare constantexpr"))
3075 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003076
Chris Lattnerac161bf2009-01-02 07:01:27 +00003077 if (Val0->getType() != Val1->getType())
3078 return Error(ID.Loc, "compare operands must have the same type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003079
Chris Lattnerac161bf2009-01-02 07:01:27 +00003080 CmpInst::Predicate Pred = (CmpInst::Predicate)PredVal;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003081
Chris Lattnerac161bf2009-01-02 07:01:27 +00003082 if (Opc == Instruction::FCmp) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00003083 if (!Val0->getType()->isFPOrFPVectorTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00003084 return Error(ID.Loc, "fcmp requires floating point operands");
Owen Anderson487375e2009-07-29 18:55:55 +00003085 ID.ConstantVal = ConstantExpr::getFCmp(Pred, Val0, Val1);
Nick Lewyckya21d3da2009-07-08 03:04:38 +00003086 } else {
3087 assert(Opc == Instruction::ICmp && "Unexpected opcode for CmpInst!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00003088 if (!Val0->getType()->isIntOrIntVectorTy() &&
Craig Topper95d23472017-07-09 07:04:00 +00003089 !Val0->getType()->isPtrOrPtrVectorTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00003090 return Error(ID.Loc, "icmp requires pointer or integer operands");
Owen Anderson487375e2009-07-29 18:55:55 +00003091 ID.ConstantVal = ConstantExpr::getICmp(Pred, Val0, Val1);
Chris Lattnerac161bf2009-01-02 07:01:27 +00003092 }
3093 ID.Kind = ValID::t_Constant;
3094 return false;
3095 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003096
Chris Lattnerac161bf2009-01-02 07:01:27 +00003097 // Binary Operators.
3098 case lltok::kw_add:
Dan Gohmana5b96452009-06-04 22:49:04 +00003099 case lltok::kw_fadd:
Chris Lattnerac161bf2009-01-02 07:01:27 +00003100 case lltok::kw_sub:
Dan Gohmana5b96452009-06-04 22:49:04 +00003101 case lltok::kw_fsub:
Chris Lattnerac161bf2009-01-02 07:01:27 +00003102 case lltok::kw_mul:
Dan Gohmana5b96452009-06-04 22:49:04 +00003103 case lltok::kw_fmul:
Chris Lattnerac161bf2009-01-02 07:01:27 +00003104 case lltok::kw_udiv:
3105 case lltok::kw_sdiv:
3106 case lltok::kw_fdiv:
3107 case lltok::kw_urem:
3108 case lltok::kw_srem:
Chris Lattnera676c0f2011-02-07 16:40:21 +00003109 case lltok::kw_frem:
3110 case lltok::kw_shl:
3111 case lltok::kw_lshr:
3112 case lltok::kw_ashr: {
Dan Gohman9c7f8082009-07-27 16:11:46 +00003113 bool NUW = false;
3114 bool NSW = false;
3115 bool Exact = false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00003116 unsigned Opc = Lex.getUIntVal();
3117 Constant *Val0, *Val1;
3118 Lex.Lex();
Dan Gohman9c7f8082009-07-27 16:11:46 +00003119 LocTy ModifierLoc = Lex.getLoc();
Chris Lattnera676c0f2011-02-07 16:40:21 +00003120 if (Opc == Instruction::Add || Opc == Instruction::Sub ||
3121 Opc == Instruction::Mul || Opc == Instruction::Shl) {
Dan Gohman9c7f8082009-07-27 16:11:46 +00003122 if (EatIfPresent(lltok::kw_nuw))
3123 NUW = true;
3124 if (EatIfPresent(lltok::kw_nsw)) {
3125 NSW = true;
3126 if (EatIfPresent(lltok::kw_nuw))
3127 NUW = true;
3128 }
Chris Lattnera676c0f2011-02-07 16:40:21 +00003129 } else if (Opc == Instruction::SDiv || Opc == Instruction::UDiv ||
3130 Opc == Instruction::LShr || Opc == Instruction::AShr) {
Dan Gohman9c7f8082009-07-27 16:11:46 +00003131 if (EatIfPresent(lltok::kw_exact))
3132 Exact = true;
3133 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00003134 if (ParseToken(lltok::lparen, "expected '(' in binary constantexpr") ||
3135 ParseGlobalTypeAndValue(Val0) ||
3136 ParseToken(lltok::comma, "expected comma in binary constantexpr") ||
3137 ParseGlobalTypeAndValue(Val1) ||
3138 ParseToken(lltok::rparen, "expected ')' in binary constantexpr"))
3139 return true;
3140 if (Val0->getType() != Val1->getType())
3141 return Error(ID.Loc, "operands of constexpr must have same type");
Duncan Sands9dff9be2010-02-15 16:12:20 +00003142 if (!Val0->getType()->isIntOrIntVectorTy()) {
Dan Gohman9c7f8082009-07-27 16:11:46 +00003143 if (NUW)
3144 return Error(ModifierLoc, "nuw only applies to integer operations");
3145 if (NSW)
3146 return Error(ModifierLoc, "nsw only applies to integer operations");
3147 }
Dan Gohmana2414ea2010-05-03 22:44:19 +00003148 // Check that the type is valid for the operator.
3149 switch (Opc) {
3150 case Instruction::Add:
3151 case Instruction::Sub:
3152 case Instruction::Mul:
3153 case Instruction::UDiv:
3154 case Instruction::SDiv:
3155 case Instruction::URem:
3156 case Instruction::SRem:
Chris Lattnera676c0f2011-02-07 16:40:21 +00003157 case Instruction::Shl:
3158 case Instruction::AShr:
3159 case Instruction::LShr:
Dan Gohmana2414ea2010-05-03 22:44:19 +00003160 if (!Val0->getType()->isIntOrIntVectorTy())
3161 return Error(ID.Loc, "constexpr requires integer operands");
3162 break;
3163 case Instruction::FAdd:
3164 case Instruction::FSub:
3165 case Instruction::FMul:
3166 case Instruction::FDiv:
3167 case Instruction::FRem:
3168 if (!Val0->getType()->isFPOrFPVectorTy())
3169 return Error(ID.Loc, "constexpr requires fp operands");
3170 break;
3171 default: llvm_unreachable("Unknown binary operator!");
3172 }
Dan Gohman1b849082009-09-07 23:54:19 +00003173 unsigned Flags = 0;
3174 if (NUW) Flags |= OverflowingBinaryOperator::NoUnsignedWrap;
3175 if (NSW) Flags |= OverflowingBinaryOperator::NoSignedWrap;
Chris Lattner35315d02011-02-06 21:44:57 +00003176 if (Exact) Flags |= PossiblyExactOperator::IsExact;
Dan Gohman1b849082009-09-07 23:54:19 +00003177 Constant *C = ConstantExpr::get(Opc, Val0, Val1, Flags);
Dan Gohman9c7f8082009-07-27 16:11:46 +00003178 ID.ConstantVal = C;
Chris Lattnerac161bf2009-01-02 07:01:27 +00003179 ID.Kind = ValID::t_Constant;
3180 return false;
3181 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003182
Chris Lattnerac161bf2009-01-02 07:01:27 +00003183 // Logical Operations
Chris Lattnerac161bf2009-01-02 07:01:27 +00003184 case lltok::kw_and:
3185 case lltok::kw_or:
3186 case lltok::kw_xor: {
3187 unsigned Opc = Lex.getUIntVal();
3188 Constant *Val0, *Val1;
3189 Lex.Lex();
3190 if (ParseToken(lltok::lparen, "expected '(' in logical constantexpr") ||
3191 ParseGlobalTypeAndValue(Val0) ||
3192 ParseToken(lltok::comma, "expected comma in logical constantexpr") ||
3193 ParseGlobalTypeAndValue(Val1) ||
3194 ParseToken(lltok::rparen, "expected ')' in logical constantexpr"))
3195 return true;
3196 if (Val0->getType() != Val1->getType())
3197 return Error(ID.Loc, "operands of constexpr must have same type");
Duncan Sands9dff9be2010-02-15 16:12:20 +00003198 if (!Val0->getType()->isIntOrIntVectorTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00003199 return Error(ID.Loc,
3200 "constexpr requires integer or integer vector operands");
Owen Anderson487375e2009-07-29 18:55:55 +00003201 ID.ConstantVal = ConstantExpr::get(Opc, Val0, Val1);
Chris Lattnerac161bf2009-01-02 07:01:27 +00003202 ID.Kind = ValID::t_Constant;
3203 return false;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003204 }
3205
Chris Lattnerac161bf2009-01-02 07:01:27 +00003206 case lltok::kw_getelementptr:
3207 case lltok::kw_shufflevector:
3208 case lltok::kw_insertelement:
3209 case lltok::kw_extractelement:
3210 case lltok::kw_select: {
3211 unsigned Opc = Lex.getUIntVal();
3212 SmallVector<Constant*, 16> Elts;
Dan Gohman1639c392009-07-27 21:53:46 +00003213 bool InBounds = false;
David Blaikief72d05b2015-03-13 18:20:45 +00003214 Type *Ty;
Chris Lattnerac161bf2009-01-02 07:01:27 +00003215 Lex.Lex();
David Blaikief72d05b2015-03-13 18:20:45 +00003216
Dan Gohman1639c392009-07-27 21:53:46 +00003217 if (Opc == Instruction::GetElementPtr)
Dan Gohman16cbbe42009-07-29 15:58:36 +00003218 InBounds = EatIfPresent(lltok::kw_inbounds);
David Blaikief72d05b2015-03-13 18:20:45 +00003219
3220 if (ParseToken(lltok::lparen, "expected '(' in constantexpr"))
3221 return true;
3222
3223 LocTy ExplicitTypeLoc = Lex.getLoc();
3224 if (Opc == Instruction::GetElementPtr) {
3225 if (ParseType(Ty) ||
3226 ParseToken(lltok::comma, "expected comma after getelementptr's type"))
3227 return true;
3228 }
3229
Peter Collingbourned93620b2016-11-10 22:34:55 +00003230 Optional<unsigned> InRangeOp;
3231 if (ParseGlobalValueVector(
3232 Elts, Opc == Instruction::GetElementPtr ? &InRangeOp : nullptr) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00003233 ParseToken(lltok::rparen, "expected ')' in constantexpr"))
3234 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003235
Chris Lattnerac161bf2009-01-02 07:01:27 +00003236 if (Opc == Instruction::GetElementPtr) {
Nadav Rotem3924cb02011-12-05 06:29:09 +00003237 if (Elts.size() == 0 ||
Craig Topper95d23472017-07-09 07:04:00 +00003238 !Elts[0]->getType()->isPtrOrPtrVectorTy())
David Majnemer00303b62015-02-22 23:14:52 +00003239 return Error(ID.Loc, "base of getelementptr must be a pointer");
3240
3241 Type *BaseType = Elts[0]->getType();
3242 auto *BasePointerType = cast<PointerType>(BaseType->getScalarType());
David Blaikief72d05b2015-03-13 18:20:45 +00003243 if (Ty != BasePointerType->getElementType())
3244 return Error(
3245 ExplicitTypeLoc,
3246 "explicit pointee type doesn't match operand's pointee type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003247
Michael Kuperstein88f15ee2016-12-21 18:29:47 +00003248 unsigned GEPWidth =
3249 BaseType->isVectorTy() ? BaseType->getVectorNumElements() : 0;
3250
Jay Foaded8db7d2011-07-21 14:31:17 +00003251 ArrayRef<Constant *> Indices(Elts.begin() + 1, Elts.end());
David Majnemer00303b62015-02-22 23:14:52 +00003252 for (Constant *Val : Indices) {
3253 Type *ValTy = Val->getType();
Craig Topper95d23472017-07-09 07:04:00 +00003254 if (!ValTy->isIntOrIntVectorTy())
David Majnemer00303b62015-02-22 23:14:52 +00003255 return Error(ID.Loc, "getelementptr index must be an integer");
David Majnemer00303b62015-02-22 23:14:52 +00003256 if (ValTy->isVectorTy()) {
Elena Demikhovsky37a4da82015-07-09 07:42:48 +00003257 unsigned ValNumEl = ValTy->getVectorNumElements();
Michael Kuperstein88f15ee2016-12-21 18:29:47 +00003258 if (GEPWidth && (ValNumEl != GEPWidth))
David Majnemer00303b62015-02-22 23:14:52 +00003259 return Error(
3260 ID.Loc,
3261 "getelementptr vector index has a wrong number of elements");
Michael Kuperstein88f15ee2016-12-21 18:29:47 +00003262 // GEPWidth may have been unknown because the base is a scalar,
3263 // but it is known now.
3264 GEPWidth = ValNumEl;
David Majnemer00303b62015-02-22 23:14:52 +00003265 }
3266 }
3267
Craig Toppere3dcce92015-08-01 22:20:21 +00003268 SmallPtrSet<Type*, 4> Visited;
David Blaikiee169e822015-04-22 16:37:35 +00003269 if (!Indices.empty() && !Ty->isSized(&Visited))
David Majnemer00303b62015-02-22 23:14:52 +00003270 return Error(ID.Loc, "base element of getelementptr must be sized");
3271
David Blaikie4a2e73b2015-04-02 18:55:32 +00003272 if (!GetElementPtrInst::getIndexedType(Ty, Indices))
David Majnemer00303b62015-02-22 23:14:52 +00003273 return Error(ID.Loc, "invalid getelementptr indices");
Peter Collingbourned93620b2016-11-10 22:34:55 +00003274
3275 if (InRangeOp) {
3276 if (*InRangeOp == 0)
3277 return Error(ID.Loc,
3278 "inrange keyword may not appear on pointer operand");
3279 --*InRangeOp;
3280 }
3281
3282 ID.ConstantVal = ConstantExpr::getGetElementPtr(Ty, Elts[0], Indices,
3283 InBounds, InRangeOp);
Chris Lattnerac161bf2009-01-02 07:01:27 +00003284 } else if (Opc == Instruction::Select) {
3285 if (Elts.size() != 3)
3286 return Error(ID.Loc, "expected three operands to select");
3287 if (const char *Reason = SelectInst::areInvalidOperands(Elts[0], Elts[1],
3288 Elts[2]))
3289 return Error(ID.Loc, Reason);
Owen Anderson487375e2009-07-29 18:55:55 +00003290 ID.ConstantVal = ConstantExpr::getSelect(Elts[0], Elts[1], Elts[2]);
Chris Lattnerac161bf2009-01-02 07:01:27 +00003291 } else if (Opc == Instruction::ShuffleVector) {
3292 if (Elts.size() != 3)
3293 return Error(ID.Loc, "expected three operands to shufflevector");
3294 if (!ShuffleVectorInst::isValidOperands(Elts[0], Elts[1], Elts[2]))
3295 return Error(ID.Loc, "invalid operands to shufflevector");
Owen Anderson02a9da32009-07-01 23:57:11 +00003296 ID.ConstantVal =
Owen Anderson487375e2009-07-29 18:55:55 +00003297 ConstantExpr::getShuffleVector(Elts[0], Elts[1],Elts[2]);
Chris Lattnerac161bf2009-01-02 07:01:27 +00003298 } else if (Opc == Instruction::ExtractElement) {
3299 if (Elts.size() != 2)
3300 return Error(ID.Loc, "expected two operands to extractelement");
3301 if (!ExtractElementInst::isValidOperands(Elts[0], Elts[1]))
3302 return Error(ID.Loc, "invalid extractelement operands");
Owen Anderson487375e2009-07-29 18:55:55 +00003303 ID.ConstantVal = ConstantExpr::getExtractElement(Elts[0], Elts[1]);
Chris Lattnerac161bf2009-01-02 07:01:27 +00003304 } else {
3305 assert(Opc == Instruction::InsertElement && "Unknown opcode");
3306 if (Elts.size() != 3)
3307 return Error(ID.Loc, "expected three operands to insertelement");
3308 if (!InsertElementInst::isValidOperands(Elts[0], Elts[1], Elts[2]))
3309 return Error(ID.Loc, "invalid insertelement operands");
Owen Anderson02a9da32009-07-01 23:57:11 +00003310 ID.ConstantVal =
Owen Anderson487375e2009-07-29 18:55:55 +00003311 ConstantExpr::getInsertElement(Elts[0], Elts[1],Elts[2]);
Chris Lattnerac161bf2009-01-02 07:01:27 +00003312 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003313
Chris Lattnerac161bf2009-01-02 07:01:27 +00003314 ID.Kind = ValID::t_Constant;
3315 return false;
3316 }
3317 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003318
Chris Lattnerac161bf2009-01-02 07:01:27 +00003319 Lex.Lex();
3320 return false;
3321}
3322
3323/// ParseGlobalValue - Parse a global value with the specified type.
Chris Lattner229907c2011-07-18 04:54:35 +00003324bool LLParser::ParseGlobalValue(Type *Ty, Constant *&C) {
Craig Topper2617dcc2014-04-15 06:32:26 +00003325 C = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00003326 ValID ID;
Craig Topper2617dcc2014-04-15 06:32:26 +00003327 Value *V = nullptr;
Victor Hernandez9d75c962010-01-11 22:31:58 +00003328 bool Parsed = ParseValID(ID) ||
Craig Topper2617dcc2014-04-15 06:32:26 +00003329 ConvertValIDToValue(Ty, ID, V, nullptr);
Victor Hernandez9d75c962010-01-11 22:31:58 +00003330 if (V && !(C = dyn_cast<Constant>(V)))
3331 return Error(ID.Loc, "global values must be constants");
3332 return Parsed;
Chris Lattnerac161bf2009-01-02 07:01:27 +00003333}
3334
Victor Hernandez9d75c962010-01-11 22:31:58 +00003335bool LLParser::ParseGlobalTypeAndValue(Constant *&V) {
Craig Topper2617dcc2014-04-15 06:32:26 +00003336 Type *Ty = nullptr;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00003337 return ParseType(Ty) ||
3338 ParseGlobalValue(Ty, V);
Victor Hernandez9d75c962010-01-11 22:31:58 +00003339}
3340
Rafael Espindola83a362c2015-01-06 22:55:16 +00003341bool LLParser::parseOptionalComdat(StringRef GlobalName, Comdat *&C) {
David Majnemerdad0a642014-06-27 18:19:56 +00003342 C = nullptr;
Rafael Espindola83a362c2015-01-06 22:55:16 +00003343
3344 LocTy KwLoc = Lex.getLoc();
David Majnemerdad0a642014-06-27 18:19:56 +00003345 if (!EatIfPresent(lltok::kw_comdat))
3346 return false;
Rafael Espindola83a362c2015-01-06 22:55:16 +00003347
3348 if (EatIfPresent(lltok::lparen)) {
3349 if (Lex.getKind() != lltok::ComdatVar)
3350 return TokError("expected comdat variable");
3351 C = getComdat(Lex.getStrVal(), Lex.getLoc());
3352 Lex.Lex();
3353 if (ParseToken(lltok::rparen, "expected ')' after comdat var"))
3354 return true;
3355 } else {
3356 if (GlobalName.empty())
3357 return TokError("comdat cannot be unnamed");
3358 C = getComdat(GlobalName, KwLoc);
3359 }
3360
David Majnemerdad0a642014-06-27 18:19:56 +00003361 return false;
3362}
3363
Victor Hernandez9d75c962010-01-11 22:31:58 +00003364/// ParseGlobalValueVector
3365/// ::= /*empty*/
Peter Collingbourned93620b2016-11-10 22:34:55 +00003366/// ::= [inrange] TypeAndValue (',' [inrange] TypeAndValue)*
3367bool LLParser::ParseGlobalValueVector(SmallVectorImpl<Constant *> &Elts,
3368 Optional<unsigned> *InRangeOp) {
Victor Hernandez9d75c962010-01-11 22:31:58 +00003369 // Empty list.
3370 if (Lex.getKind() == lltok::rbrace ||
3371 Lex.getKind() == lltok::rsquare ||
3372 Lex.getKind() == lltok::greater ||
3373 Lex.getKind() == lltok::rparen)
3374 return false;
3375
Peter Collingbourned93620b2016-11-10 22:34:55 +00003376 do {
3377 if (InRangeOp && !*InRangeOp && EatIfPresent(lltok::kw_inrange))
3378 *InRangeOp = Elts.size();
Victor Hernandez9d75c962010-01-11 22:31:58 +00003379
Peter Collingbourned93620b2016-11-10 22:34:55 +00003380 Constant *C;
Victor Hernandez9d75c962010-01-11 22:31:58 +00003381 if (ParseGlobalTypeAndValue(C)) return true;
3382 Elts.push_back(C);
Peter Collingbourned93620b2016-11-10 22:34:55 +00003383 } while (EatIfPresent(lltok::comma));
Victor Hernandez9d75c962010-01-11 22:31:58 +00003384
3385 return false;
3386}
3387
Duncan P. N. Exon Smith58ef9d12015-01-12 21:23:11 +00003388bool LLParser::ParseMDTuple(MDNode *&MD, bool IsDistinct) {
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00003389 SmallVector<Metadata *, 16> Elts;
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00003390 if (ParseMDNodeVector(Elts))
Dan Gohmanc828c542010-08-24 02:24:03 +00003391 return true;
3392
Duncan P. N. Exon Smith0b31dd12015-01-12 22:27:39 +00003393 MD = (IsDistinct ? MDTuple::getDistinct : MDTuple::get)(Context, Elts);
Dan Gohmanc828c542010-08-24 02:24:03 +00003394 return false;
3395}
3396
Duncan P. N. Exon Smithf825dae2015-01-12 22:26:48 +00003397/// MDNode:
3398/// ::= !{ ... }
3399/// ::= !7
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003400/// ::= !DILocation(...)
Duncan P. N. Exon Smithf825dae2015-01-12 22:26:48 +00003401bool LLParser::ParseMDNode(MDNode *&N) {
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003402 if (Lex.getKind() == lltok::MetadataVar)
3403 return ParseSpecializedMDNode(N);
3404
Duncan P. N. Exon Smithf825dae2015-01-12 22:26:48 +00003405 return ParseToken(lltok::exclaim, "expected '!' here") ||
3406 ParseMDNodeTail(N);
3407}
3408
3409bool LLParser::ParseMDNodeTail(MDNode *&N) {
3410 // !{ ... }
3411 if (Lex.getKind() == lltok::lbrace)
3412 return ParseMDTuple(N);
3413
3414 // !42
3415 return ParseMDNodeID(N);
3416}
3417
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003418namespace {
3419
3420/// Structure to represent an optional metadata field.
3421template <class FieldTy> struct MDFieldImpl {
3422 typedef MDFieldImpl ImplTy;
3423 FieldTy Val;
3424 bool Seen;
3425
3426 void assign(FieldTy Val) {
3427 Seen = true;
3428 this->Val = std::move(Val);
3429 }
3430
3431 explicit MDFieldImpl(FieldTy Default)
3432 : Val(std::move(Default)), Seen(false) {}
3433};
Duncan P. N. Exon Smithc7363f12015-02-13 01:10:38 +00003434
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003435struct MDUnsignedField : public MDFieldImpl<uint64_t> {
3436 uint64_t Max;
3437
3438 MDUnsignedField(uint64_t Default = 0, uint64_t Max = UINT64_MAX)
3439 : ImplTy(Default), Max(Max) {}
3440};
Eugene Zelenko1804a772016-08-25 00:45:04 +00003441
Duncan P. N. Exon Smith9c93dc62015-02-04 22:59:18 +00003442struct LineField : public MDUnsignedField {
Duncan P. N. Exon Smithaf677eb2015-02-06 22:50:13 +00003443 LineField() : MDUnsignedField(0, UINT32_MAX) {}
Duncan P. N. Exon Smith9c93dc62015-02-04 22:59:18 +00003444};
Eugene Zelenko1804a772016-08-25 00:45:04 +00003445
Duncan P. N. Exon Smith9c93dc62015-02-04 22:59:18 +00003446struct ColumnField : public MDUnsignedField {
3447 ColumnField() : MDUnsignedField(0, UINT16_MAX) {}
3448};
Eugene Zelenko1804a772016-08-25 00:45:04 +00003449
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003450struct DwarfTagField : public MDUnsignedField {
Duncan P. N. Exon Smitha81f7e12015-02-06 22:29:35 +00003451 DwarfTagField() : MDUnsignedField(0, dwarf::DW_TAG_hi_user) {}
Duncan P. N. Exon Smith16d182a2015-02-28 23:21:38 +00003452 DwarfTagField(dwarf::Tag DefaultTag)
3453 : MDUnsignedField(DefaultTag, dwarf::DW_TAG_hi_user) {}
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003454};
Eugene Zelenko1804a772016-08-25 00:45:04 +00003455
Amjad Abouda9bcf162015-12-10 12:56:35 +00003456struct DwarfMacinfoTypeField : public MDUnsignedField {
3457 DwarfMacinfoTypeField() : MDUnsignedField(0, dwarf::DW_MACINFO_vendor_ext) {}
3458 DwarfMacinfoTypeField(dwarf::MacinfoRecordType DefaultType)
3459 : MDUnsignedField(DefaultType, dwarf::DW_MACINFO_vendor_ext) {}
3460};
Eugene Zelenko1804a772016-08-25 00:45:04 +00003461
Duncan P. N. Exon Smithcd6636c2015-02-13 01:17:35 +00003462struct DwarfAttEncodingField : public MDUnsignedField {
3463 DwarfAttEncodingField() : MDUnsignedField(0, dwarf::DW_ATE_hi_user) {}
3464};
Eugene Zelenko1804a772016-08-25 00:45:04 +00003465
Duncan P. N. Exon Smith890533e2015-02-13 01:28:16 +00003466struct DwarfVirtualityField : public MDUnsignedField {
3467 DwarfVirtualityField() : MDUnsignedField(0, dwarf::DW_VIRTUALITY_max) {}
3468};
Eugene Zelenko1804a772016-08-25 00:45:04 +00003469
Duncan P. N. Exon Smithaece2dc2015-02-13 01:21:25 +00003470struct DwarfLangField : public MDUnsignedField {
3471 DwarfLangField() : MDUnsignedField(0, dwarf::DW_LANG_hi_user) {}
3472};
Eugene Zelenko1804a772016-08-25 00:45:04 +00003473
Reid Klecknerde3d8b52016-06-08 20:34:29 +00003474struct DwarfCCField : public MDUnsignedField {
3475 DwarfCCField() : MDUnsignedField(0, dwarf::DW_CC_hi_user) {}
3476};
Eugene Zelenko1804a772016-08-25 00:45:04 +00003477
Adrian Prantlb939a252016-03-31 23:56:58 +00003478struct EmissionKindField : public MDUnsignedField {
3479 EmissionKindField() : MDUnsignedField(0, DICompileUnit::LastEmissionKind) {}
3480};
Duncan P. N. Exon Smithc7363f12015-02-13 01:10:38 +00003481
Leny Kholodov5fcc4182016-09-06 10:46:28 +00003482struct DIFlagField : public MDFieldImpl<DINode::DIFlags> {
3483 DIFlagField() : MDFieldImpl(DINode::FlagZero) {}
Duncan P. N. Exon Smith70ab3d22015-02-21 01:02:18 +00003484};
3485
Duncan P. N. Exon Smithc7363f12015-02-13 01:10:38 +00003486struct MDSignedField : public MDFieldImpl<int64_t> {
3487 int64_t Min;
3488 int64_t Max;
3489
3490 MDSignedField(int64_t Default = 0)
3491 : ImplTy(Default), Min(INT64_MIN), Max(INT64_MAX) {}
3492 MDSignedField(int64_t Default, int64_t Min, int64_t Max)
3493 : ImplTy(Default), Min(Min), Max(Max) {}
3494};
3495
Duncan P. N. Exon Smithaece2dc2015-02-13 01:21:25 +00003496struct MDBoolField : public MDFieldImpl<bool> {
3497 MDBoolField(bool Default = false) : ImplTy(Default) {}
3498};
Eugene Zelenko1804a772016-08-25 00:45:04 +00003499
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003500struct MDField : public MDFieldImpl<Metadata *> {
Duncan P. N. Exon Smithe2c61d92015-03-27 17:56:39 +00003501 bool AllowNull;
3502
3503 MDField(bool AllowNull = true) : ImplTy(nullptr), AllowNull(AllowNull) {}
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003504};
Eugene Zelenko1804a772016-08-25 00:45:04 +00003505
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003506struct MDConstant : public MDFieldImpl<ConstantAsMetadata *> {
3507 MDConstant() : ImplTy(nullptr) {}
3508};
Eugene Zelenko1804a772016-08-25 00:45:04 +00003509
Duncan P. N. Exon Smith3d2afaa2015-03-27 17:29:58 +00003510struct MDStringField : public MDFieldImpl<MDString *> {
Duncan P. N. Exon Smith94d58f82015-03-31 01:28:22 +00003511 bool AllowEmpty;
3512 MDStringField(bool AllowEmpty = true)
3513 : ImplTy(nullptr), AllowEmpty(AllowEmpty) {}
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003514};
Eugene Zelenko1804a772016-08-25 00:45:04 +00003515
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003516struct MDFieldList : public MDFieldImpl<SmallVector<Metadata *, 4>> {
3517 MDFieldList() : ImplTy(SmallVector<Metadata *, 4>()) {}
3518};
3519
Amjad Aboud7faeecc2016-12-25 10:12:09 +00003520struct ChecksumKindField : public MDFieldImpl<DIFile::ChecksumKind> {
3521 ChecksumKindField() : ImplTy(DIFile::CSK_None) {}
3522 ChecksumKindField(DIFile::ChecksumKind CSKind) : ImplTy(CSKind) {}
3523};
3524
Eugene Zelenko1804a772016-08-25 00:45:04 +00003525} // end anonymous namespace
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003526
Duncan P. N. Exon Smith2f09c462015-02-04 22:13:28 +00003527namespace llvm {
3528
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003529template <>
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003530bool LLParser::ParseMDField(LocTy Loc, StringRef Name,
Duncan P. N. Exon Smith39b10c22015-02-04 21:57:52 +00003531 MDUnsignedField &Result) {
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003532 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned())
3533 return TokError("expected unsigned integer");
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003534
Duncan P. N. Exon Smith39b10c22015-02-04 21:57:52 +00003535 auto &U = Lex.getAPSIntVal();
3536 if (U.ugt(Result.Max))
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003537 return TokError("value for '" + Name + "' too large, limit is " +
3538 Twine(Result.Max));
Duncan P. N. Exon Smith39b10c22015-02-04 21:57:52 +00003539 Result.assign(U.getZExtValue());
3540 assert(Result.Val <= Result.Max && "Expected value in range");
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003541 Lex.Lex();
3542 return false;
3543}
3544
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003545template <>
Duncan P. N. Exon Smith9c93dc62015-02-04 22:59:18 +00003546bool LLParser::ParseMDField(LocTy Loc, StringRef Name, LineField &Result) {
3547 return ParseMDField(Loc, Name, static_cast<MDUnsignedField &>(Result));
3548}
3549template <>
3550bool LLParser::ParseMDField(LocTy Loc, StringRef Name, ColumnField &Result) {
3551 return ParseMDField(Loc, Name, static_cast<MDUnsignedField &>(Result));
3552}
3553
3554template <>
Duncan P. N. Exon Smith97486072015-02-03 21:56:01 +00003555bool LLParser::ParseMDField(LocTy Loc, StringRef Name, DwarfTagField &Result) {
3556 if (Lex.getKind() == lltok::APSInt)
Duncan P. N. Exon Smith39b10c22015-02-04 21:57:52 +00003557 return ParseMDField(Loc, Name, static_cast<MDUnsignedField &>(Result));
Duncan P. N. Exon Smith97486072015-02-03 21:56:01 +00003558
Duncan P. N. Exon Smith97486072015-02-03 21:56:01 +00003559 if (Lex.getKind() != lltok::DwarfTag)
3560 return TokError("expected DWARF tag");
3561
3562 unsigned Tag = dwarf::getTag(Lex.getStrVal());
3563 if (Tag == dwarf::DW_TAG_invalid)
3564 return TokError("invalid DWARF tag" + Twine(" '") + Lex.getStrVal() + "'");
Duncan P. N. Exon Smithfad631a2015-02-04 22:02:18 +00003565 assert(Tag <= Result.Max && "Expected valid DWARF tag");
Duncan P. N. Exon Smith97486072015-02-03 21:56:01 +00003566
3567 Result.assign(Tag);
3568 Lex.Lex();
3569 return false;
3570}
3571
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003572template <>
Duncan P. N. Exon Smith890533e2015-02-13 01:28:16 +00003573bool LLParser::ParseMDField(LocTy Loc, StringRef Name,
Amjad Abouda9bcf162015-12-10 12:56:35 +00003574 DwarfMacinfoTypeField &Result) {
3575 if (Lex.getKind() == lltok::APSInt)
3576 return ParseMDField(Loc, Name, static_cast<MDUnsignedField &>(Result));
3577
3578 if (Lex.getKind() != lltok::DwarfMacinfo)
3579 return TokError("expected DWARF macinfo type");
3580
3581 unsigned Macinfo = dwarf::getMacinfo(Lex.getStrVal());
3582 if (Macinfo == dwarf::DW_MACINFO_invalid)
3583 return TokError(
3584 "invalid DWARF macinfo type" + Twine(" '") + Lex.getStrVal() + "'");
3585 assert(Macinfo <= Result.Max && "Expected valid DWARF macinfo type");
3586
3587 Result.assign(Macinfo);
3588 Lex.Lex();
3589 return false;
3590}
3591
3592template <>
3593bool LLParser::ParseMDField(LocTy Loc, StringRef Name,
Duncan P. N. Exon Smith890533e2015-02-13 01:28:16 +00003594 DwarfVirtualityField &Result) {
3595 if (Lex.getKind() == lltok::APSInt)
3596 return ParseMDField(Loc, Name, static_cast<MDUnsignedField &>(Result));
3597
3598 if (Lex.getKind() != lltok::DwarfVirtuality)
3599 return TokError("expected DWARF virtuality code");
3600
3601 unsigned Virtuality = dwarf::getVirtuality(Lex.getStrVal());
Peter Collingbournea1f86252016-03-17 23:58:03 +00003602 if (Virtuality == dwarf::DW_VIRTUALITY_invalid)
Duncan P. N. Exon Smith890533e2015-02-13 01:28:16 +00003603 return TokError("invalid DWARF virtuality code" + Twine(" '") +
3604 Lex.getStrVal() + "'");
3605 assert(Virtuality <= Result.Max && "Expected valid DWARF virtuality code");
3606 Result.assign(Virtuality);
3607 Lex.Lex();
3608 return false;
3609}
3610
3611template <>
Duncan P. N. Exon Smithaece2dc2015-02-13 01:21:25 +00003612bool LLParser::ParseMDField(LocTy Loc, StringRef Name, DwarfLangField &Result) {
3613 if (Lex.getKind() == lltok::APSInt)
3614 return ParseMDField(Loc, Name, static_cast<MDUnsignedField &>(Result));
3615
3616 if (Lex.getKind() != lltok::DwarfLang)
3617 return TokError("expected DWARF language");
3618
3619 unsigned Lang = dwarf::getLanguage(Lex.getStrVal());
3620 if (!Lang)
3621 return TokError("invalid DWARF language" + Twine(" '") + Lex.getStrVal() +
3622 "'");
3623 assert(Lang <= Result.Max && "Expected valid DWARF language");
3624 Result.assign(Lang);
3625 Lex.Lex();
3626 return false;
3627}
3628
3629template <>
Reid Klecknerde3d8b52016-06-08 20:34:29 +00003630bool LLParser::ParseMDField(LocTy Loc, StringRef Name, DwarfCCField &Result) {
3631 if (Lex.getKind() == lltok::APSInt)
3632 return ParseMDField(Loc, Name, static_cast<MDUnsignedField &>(Result));
3633
3634 if (Lex.getKind() != lltok::DwarfCC)
3635 return TokError("expected DWARF calling convention");
3636
3637 unsigned CC = dwarf::getCallingConvention(Lex.getStrVal());
3638 if (!CC)
3639 return TokError("invalid DWARF calling convention" + Twine(" '") + Lex.getStrVal() +
3640 "'");
3641 assert(CC <= Result.Max && "Expected valid DWARF calling convention");
3642 Result.assign(CC);
3643 Lex.Lex();
3644 return false;
3645}
3646
3647template <>
Adrian Prantlb939a252016-03-31 23:56:58 +00003648bool LLParser::ParseMDField(LocTy Loc, StringRef Name, EmissionKindField &Result) {
3649 if (Lex.getKind() == lltok::APSInt)
3650 return ParseMDField(Loc, Name, static_cast<MDUnsignedField &>(Result));
3651
3652 if (Lex.getKind() != lltok::EmissionKind)
3653 return TokError("expected emission kind");
3654
3655 auto Kind = DICompileUnit::getEmissionKind(Lex.getStrVal());
3656 if (!Kind)
3657 return TokError("invalid emission kind" + Twine(" '") + Lex.getStrVal() +
3658 "'");
3659 assert(*Kind <= Result.Max && "Expected valid emission kind");
3660 Result.assign(*Kind);
3661 Lex.Lex();
3662 return false;
3663}
3664
3665template <>
Duncan P. N. Exon Smithc7363f12015-02-13 01:10:38 +00003666bool LLParser::ParseMDField(LocTy Loc, StringRef Name,
Duncan P. N. Exon Smithcd6636c2015-02-13 01:17:35 +00003667 DwarfAttEncodingField &Result) {
3668 if (Lex.getKind() == lltok::APSInt)
3669 return ParseMDField(Loc, Name, static_cast<MDUnsignedField &>(Result));
3670
3671 if (Lex.getKind() != lltok::DwarfAttEncoding)
3672 return TokError("expected DWARF type attribute encoding");
3673
3674 unsigned Encoding = dwarf::getAttributeEncoding(Lex.getStrVal());
3675 if (!Encoding)
3676 return TokError("invalid DWARF type attribute encoding" + Twine(" '") +
3677 Lex.getStrVal() + "'");
3678 assert(Encoding <= Result.Max && "Expected valid DWARF language");
3679 Result.assign(Encoding);
3680 Lex.Lex();
3681 return false;
3682}
3683
Duncan P. N. Exon Smith70ab3d22015-02-21 01:02:18 +00003684/// DIFlagField
3685/// ::= uint32
3686/// ::= DIFlagVector
3687/// ::= DIFlagVector '|' DIFlagFwdDecl '|' uint32 '|' DIFlagPublic
3688template <>
3689bool LLParser::ParseMDField(LocTy Loc, StringRef Name, DIFlagField &Result) {
Duncan P. N. Exon Smith70ab3d22015-02-21 01:02:18 +00003690
3691 // Parser for a single flag.
Leny Kholodov5fcc4182016-09-06 10:46:28 +00003692 auto parseFlag = [&](DINode::DIFlags &Val) {
3693 if (Lex.getKind() == lltok::APSInt && !Lex.getAPSIntVal().isSigned()) {
3694 uint32_t TempVal = static_cast<uint32_t>(Val);
3695 bool Res = ParseUInt32(TempVal);
3696 Val = static_cast<DINode::DIFlags>(TempVal);
3697 return Res;
3698 }
Duncan P. N. Exon Smith70ab3d22015-02-21 01:02:18 +00003699
3700 if (Lex.getKind() != lltok::DIFlag)
3701 return TokError("expected debug info flag");
3702
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003703 Val = DINode::getFlag(Lex.getStrVal());
Duncan P. N. Exon Smith70ab3d22015-02-21 01:02:18 +00003704 if (!Val)
3705 return TokError(Twine("invalid debug info flag flag '") +
3706 Lex.getStrVal() + "'");
3707 Lex.Lex();
3708 return false;
3709 };
3710
3711 // Parse the flags and combine them together.
Leny Kholodov5fcc4182016-09-06 10:46:28 +00003712 DINode::DIFlags Combined = DINode::FlagZero;
Duncan P. N. Exon Smith70ab3d22015-02-21 01:02:18 +00003713 do {
Leny Kholodov5fcc4182016-09-06 10:46:28 +00003714 DINode::DIFlags Val;
Duncan P. N. Exon Smith70ab3d22015-02-21 01:02:18 +00003715 if (parseFlag(Val))
3716 return true;
3717 Combined |= Val;
3718 } while (EatIfPresent(lltok::bar));
3719
3720 Result.assign(Combined);
3721 return false;
3722}
3723
Duncan P. N. Exon Smithcd6636c2015-02-13 01:17:35 +00003724template <>
3725bool LLParser::ParseMDField(LocTy Loc, StringRef Name,
Duncan P. N. Exon Smithc7363f12015-02-13 01:10:38 +00003726 MDSignedField &Result) {
3727 if (Lex.getKind() != lltok::APSInt)
3728 return TokError("expected signed integer");
3729
3730 auto &S = Lex.getAPSIntVal();
3731 if (S < Result.Min)
3732 return TokError("value for '" + Name + "' too small, limit is " +
3733 Twine(Result.Min));
3734 if (S > Result.Max)
3735 return TokError("value for '" + Name + "' too large, limit is " +
3736 Twine(Result.Max));
3737 Result.assign(S.getExtValue());
3738 assert(Result.Val >= Result.Min && "Expected value in range");
3739 assert(Result.Val <= Result.Max && "Expected value in range");
3740 Lex.Lex();
3741 return false;
3742}
3743
3744template <>
Duncan P. N. Exon Smithaece2dc2015-02-13 01:21:25 +00003745bool LLParser::ParseMDField(LocTy Loc, StringRef Name, MDBoolField &Result) {
3746 switch (Lex.getKind()) {
3747 default:
3748 return TokError("expected 'true' or 'false'");
3749 case lltok::kw_true:
3750 Result.assign(true);
3751 break;
3752 case lltok::kw_false:
3753 Result.assign(false);
3754 break;
3755 }
3756 Lex.Lex();
3757 return false;
3758}
3759
3760template <>
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003761bool LLParser::ParseMDField(LocTy Loc, StringRef Name, MDField &Result) {
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003762 if (Lex.getKind() == lltok::kw_null) {
Duncan P. N. Exon Smithe2c61d92015-03-27 17:56:39 +00003763 if (!Result.AllowNull)
3764 return TokError("'" + Name + "' cannot be null");
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003765 Lex.Lex();
3766 Result.assign(nullptr);
3767 return false;
3768 }
3769
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003770 Metadata *MD;
3771 if (ParseMetadata(MD, nullptr))
3772 return true;
3773
3774 Result.assign(MD);
3775 return false;
3776}
3777
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003778template <>
Duncan P. N. Exon Smith4e4aa702015-02-03 21:54:14 +00003779bool LLParser::ParseMDField(LocTy Loc, StringRef Name, MDStringField &Result) {
Duncan P. N. Exon Smith94d58f82015-03-31 01:28:22 +00003780 LocTy ValueLoc = Lex.getLoc();
Duncan P. N. Exon Smith4e4aa702015-02-03 21:54:14 +00003781 std::string S;
3782 if (ParseStringConstant(S))
3783 return true;
3784
Duncan P. N. Exon Smith94d58f82015-03-31 01:28:22 +00003785 if (!Result.AllowEmpty && S.empty())
3786 return Error(ValueLoc, "'" + Name + "' cannot be empty");
3787
Duncan P. N. Exon Smith3d2afaa2015-03-27 17:29:58 +00003788 Result.assign(S.empty() ? nullptr : MDString::get(Context, S));
Duncan P. N. Exon Smith4e4aa702015-02-03 21:54:14 +00003789 return false;
3790}
3791
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003792template <>
Duncan P. N. Exon Smith4e4aa702015-02-03 21:54:14 +00003793bool LLParser::ParseMDField(LocTy Loc, StringRef Name, MDFieldList &Result) {
3794 SmallVector<Metadata *, 4> MDs;
3795 if (ParseMDNodeVector(MDs))
3796 return true;
3797
3798 Result.assign(std::move(MDs));
3799 return false;
3800}
3801
Amjad Aboud7faeecc2016-12-25 10:12:09 +00003802template <>
3803bool LLParser::ParseMDField(LocTy Loc, StringRef Name,
3804 ChecksumKindField &Result) {
3805 if (Lex.getKind() != lltok::ChecksumKind)
3806 return TokError(
3807 "invalid checksum kind" + Twine(" '") + Lex.getStrVal() + "'");
3808
3809 DIFile::ChecksumKind CSKind = DIFile::getChecksumKind(Lex.getStrVal());
3810
3811 Result.assign(CSKind);
3812 Lex.Lex();
3813 return false;
3814}
3815
Duncan P. N. Exon Smith2f09c462015-02-04 22:13:28 +00003816} // end namespace llvm
3817
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003818template <class ParserTy>
Duncan P. N. Exon Smith66ca92e2015-01-19 23:39:32 +00003819bool LLParser::ParseMDFieldsImplBody(ParserTy parseField) {
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003820 do {
3821 if (Lex.getKind() != lltok::LabelStr)
3822 return TokError("expected field label here");
3823
3824 if (parseField())
3825 return true;
3826 } while (EatIfPresent(lltok::comma));
3827
Duncan P. N. Exon Smith66ca92e2015-01-19 23:39:32 +00003828 return false;
3829}
3830
3831template <class ParserTy>
3832bool LLParser::ParseMDFieldsImpl(ParserTy parseField, LocTy &ClosingLoc) {
3833 assert(Lex.getKind() == lltok::MetadataVar && "Expected metadata type name");
3834 Lex.Lex();
3835
3836 if (ParseToken(lltok::lparen, "expected '(' here"))
3837 return true;
3838 if (Lex.getKind() != lltok::rparen)
3839 if (ParseMDFieldsImplBody(parseField))
3840 return true;
3841
Duncan P. N. Exon Smith13890af2015-01-19 23:32:36 +00003842 ClosingLoc = Lex.getLoc();
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003843 return ParseToken(lltok::rparen, "expected ')' here");
3844}
3845
Duncan P. N. Exon Smitha7477282015-01-20 02:42:29 +00003846template <class FieldTy>
3847bool LLParser::ParseMDField(StringRef Name, FieldTy &Result) {
3848 if (Result.Seen)
3849 return TokError("field '" + Name + "' cannot be specified more than once");
3850
3851 LocTy Loc = Lex.getLoc();
3852 Lex.Lex();
3853 return ParseMDField(Loc, Name, Result);
3854}
3855
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003856bool LLParser::ParseSpecializedMDNode(MDNode *&N, bool IsDistinct) {
3857 assert(Lex.getKind() == lltok::MetadataVar && "Expected metadata type name");
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003858
3859#define HANDLE_SPECIALIZED_MDNODE_LEAF(CLASS) \
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003860 if (Lex.getStrVal() == #CLASS) \
3861 return Parse##CLASS(N, IsDistinct);
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003862#include "llvm/IR/Metadata.def"
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003863
3864 return TokError("expected metadata type");
3865}
3866
Duncan P. N. Exon Smith2a6b5fc2015-01-19 23:44:41 +00003867#define DECLARE_FIELD(NAME, TYPE, INIT) TYPE NAME INIT
3868#define NOP_FIELD(NAME, TYPE, INIT)
3869#define REQUIRE_FIELD(NAME, TYPE, INIT) \
3870 if (!NAME.Seen) \
3871 return Error(ClosingLoc, "missing required field '" #NAME "'");
3872#define PARSE_MD_FIELD(NAME, TYPE, DEFAULT) \
Duncan P. N. Exon Smitha7477282015-01-20 02:42:29 +00003873 if (Lex.getStrVal() == #NAME) \
3874 return ParseMDField(#NAME, NAME);
Duncan P. N. Exon Smith2a6b5fc2015-01-19 23:44:41 +00003875#define PARSE_MD_FIELDS() \
3876 VISIT_MD_FIELDS(DECLARE_FIELD, DECLARE_FIELD) \
3877 do { \
3878 LocTy ClosingLoc; \
3879 if (ParseMDFieldsImpl([&]() -> bool { \
3880 VISIT_MD_FIELDS(PARSE_MD_FIELD, PARSE_MD_FIELD) \
3881 return TokError(Twine("invalid field '") + Lex.getStrVal() + "'"); \
3882 }, ClosingLoc)) \
3883 return true; \
3884 VISIT_MD_FIELDS(NOP_FIELD, REQUIRE_FIELD) \
3885 } while (false)
Duncan P. N. Exon Smith4e4aa702015-02-03 21:54:14 +00003886#define GET_OR_DISTINCT(CLASS, ARGS) \
3887 (IsDistinct ? CLASS::getDistinct ARGS : CLASS::get ARGS)
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003888
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003889/// ParseDILocationFields:
3890/// ::= !DILocation(line: 43, column: 8, scope: !5, inlinedAt: !6)
3891bool LLParser::ParseDILocation(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith2a6b5fc2015-01-19 23:44:41 +00003892#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith9c93dc62015-02-04 22:59:18 +00003893 OPTIONAL(line, LineField, ); \
3894 OPTIONAL(column, ColumnField, ); \
Duncan P. N. Exon Smithe2c61d92015-03-27 17:56:39 +00003895 REQUIRED(scope, MDField, (/* AllowNull */ false)); \
Duncan P. N. Exon Smith2a6b5fc2015-01-19 23:44:41 +00003896 OPTIONAL(inlinedAt, MDField, );
3897 PARSE_MD_FIELDS();
3898#undef VISIT_MD_FIELDS
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003899
Duncan P. N. Exon Smith26489982015-03-26 22:05:04 +00003900 Result = GET_OR_DISTINCT(
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003901 DILocation, (Context, line.Val, column.Val, scope.Val, inlinedAt.Val));
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003902 return false;
3903}
Duncan P. N. Exon Smith4e4aa702015-02-03 21:54:14 +00003904
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003905/// ParseGenericDINode:
3906/// ::= !GenericDINode(tag: 15, header: "...", operands: {...})
3907bool LLParser::ParseGenericDINode(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith4e4aa702015-02-03 21:54:14 +00003908#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith97486072015-02-03 21:56:01 +00003909 REQUIRED(tag, DwarfTagField, ); \
Duncan P. N. Exon Smith4e4aa702015-02-03 21:54:14 +00003910 OPTIONAL(header, MDStringField, ); \
3911 OPTIONAL(operands, MDFieldList, );
3912 PARSE_MD_FIELDS();
3913#undef VISIT_MD_FIELDS
3914
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003915 Result = GET_OR_DISTINCT(GenericDINode,
Duncan P. N. Exon Smith4e4aa702015-02-03 21:54:14 +00003916 (Context, tag.Val, header.Val, operands.Val));
3917 return false;
3918}
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003919
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003920/// ParseDISubrange:
3921/// ::= !DISubrange(count: 30, lowerBound: 2)
3922bool LLParser::ParseDISubrange(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smithc7363f12015-02-13 01:10:38 +00003923#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith5c9a1772015-02-18 23:17:51 +00003924 REQUIRED(count, MDSignedField, (-1, -1, INT64_MAX)); \
Duncan P. N. Exon Smithc7363f12015-02-13 01:10:38 +00003925 OPTIONAL(lowerBound, MDSignedField, );
3926 PARSE_MD_FIELDS();
3927#undef VISIT_MD_FIELDS
3928
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003929 Result = GET_OR_DISTINCT(DISubrange, (Context, count.Val, lowerBound.Val));
Duncan P. N. Exon Smithc7363f12015-02-13 01:10:38 +00003930 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003931}
Duncan P. N. Exon Smithc7363f12015-02-13 01:10:38 +00003932
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003933/// ParseDIEnumerator:
3934/// ::= !DIEnumerator(value: 30, name: "SomeKind")
3935bool LLParser::ParseDIEnumerator(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith87754762015-02-13 01:14:11 +00003936#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smithcd8fb602015-02-18 21:16:33 +00003937 REQUIRED(name, MDStringField, ); \
3938 REQUIRED(value, MDSignedField, );
Duncan P. N. Exon Smith87754762015-02-13 01:14:11 +00003939 PARSE_MD_FIELDS();
3940#undef VISIT_MD_FIELDS
3941
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003942 Result = GET_OR_DISTINCT(DIEnumerator, (Context, value.Val, name.Val));
Duncan P. N. Exon Smith87754762015-02-13 01:14:11 +00003943 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003944}
Duncan P. N. Exon Smith87754762015-02-13 01:14:11 +00003945
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003946/// ParseDIBasicType:
3947/// ::= !DIBasicType(tag: DW_TAG_base_type, name: "int", size: 32, align: 32)
3948bool LLParser::ParseDIBasicType(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith09e03f32015-02-13 01:14:58 +00003949#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith16d182a2015-02-28 23:21:38 +00003950 OPTIONAL(tag, DwarfTagField, (dwarf::DW_TAG_base_type)); \
Duncan P. N. Exon Smith09e03f32015-02-13 01:14:58 +00003951 OPTIONAL(name, MDStringField, ); \
Duncan P. N. Exon Smithd34db172015-02-19 23:56:07 +00003952 OPTIONAL(size, MDUnsignedField, (0, UINT64_MAX)); \
Victor Leschuk197aa312016-10-18 14:31:22 +00003953 OPTIONAL(align, MDUnsignedField, (0, UINT32_MAX)); \
Duncan P. N. Exon Smithcd6636c2015-02-13 01:17:35 +00003954 OPTIONAL(encoding, DwarfAttEncodingField, );
Duncan P. N. Exon Smith09e03f32015-02-13 01:14:58 +00003955 PARSE_MD_FIELDS();
3956#undef VISIT_MD_FIELDS
3957
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003958 Result = GET_OR_DISTINCT(DIBasicType, (Context, tag.Val, name.Val, size.Val,
Duncan P. N. Exon Smith09e03f32015-02-13 01:14:58 +00003959 align.Val, encoding.Val));
3960 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003961}
Duncan P. N. Exon Smith09e03f32015-02-13 01:14:58 +00003962
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003963/// ParseDIDerivedType:
3964/// ::= !DIDerivedType(tag: DW_TAG_pointer_type, name: "int", file: !0,
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00003965/// line: 7, scope: !1, baseType: !2, size: 32,
Konstantin Zhuravlyovd5561e02017-03-08 23:55:44 +00003966/// align: 32, offset: 0, flags: 0, extraData: !3,
3967/// dwarfAddressSpace: 3)
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003968bool LLParser::ParseDIDerivedType(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00003969#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
3970 REQUIRED(tag, DwarfTagField, ); \
3971 OPTIONAL(name, MDStringField, ); \
3972 OPTIONAL(file, MDField, ); \
3973 OPTIONAL(line, LineField, ); \
3974 OPTIONAL(scope, MDField, ); \
3975 REQUIRED(baseType, MDField, ); \
Duncan P. N. Exon Smithd34db172015-02-19 23:56:07 +00003976 OPTIONAL(size, MDUnsignedField, (0, UINT64_MAX)); \
Victor Leschuk197aa312016-10-18 14:31:22 +00003977 OPTIONAL(align, MDUnsignedField, (0, UINT32_MAX)); \
Duncan P. N. Exon Smithd34db172015-02-19 23:56:07 +00003978 OPTIONAL(offset, MDUnsignedField, (0, UINT64_MAX)); \
Duncan P. N. Exon Smith70ab3d22015-02-21 01:02:18 +00003979 OPTIONAL(flags, DIFlagField, ); \
Konstantin Zhuravlyovd5561e02017-03-08 23:55:44 +00003980 OPTIONAL(extraData, MDField, ); \
3981 OPTIONAL(dwarfAddressSpace, MDUnsignedField, (UINT32_MAX, UINT32_MAX));
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00003982 PARSE_MD_FIELDS();
3983#undef VISIT_MD_FIELDS
3984
Konstantin Zhuravlyovd5561e02017-03-08 23:55:44 +00003985 Optional<unsigned> DWARFAddressSpace;
3986 if (dwarfAddressSpace.Val != UINT32_MAX)
3987 DWARFAddressSpace = dwarfAddressSpace.Val;
3988
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003989 Result = GET_OR_DISTINCT(DIDerivedType,
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00003990 (Context, tag.Val, name.Val, file.Val, line.Val,
3991 scope.Val, baseType.Val, size.Val, align.Val,
Konstantin Zhuravlyovd5561e02017-03-08 23:55:44 +00003992 offset.Val, DWARFAddressSpace, flags.Val,
3993 extraData.Val));
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00003994 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003995}
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00003996
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003997bool LLParser::ParseDICompositeType(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00003998#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
3999 REQUIRED(tag, DwarfTagField, ); \
4000 OPTIONAL(name, MDStringField, ); \
4001 OPTIONAL(file, MDField, ); \
4002 OPTIONAL(line, LineField, ); \
4003 OPTIONAL(scope, MDField, ); \
4004 OPTIONAL(baseType, MDField, ); \
Duncan P. N. Exon Smithd34db172015-02-19 23:56:07 +00004005 OPTIONAL(size, MDUnsignedField, (0, UINT64_MAX)); \
Victor Leschuk197aa312016-10-18 14:31:22 +00004006 OPTIONAL(align, MDUnsignedField, (0, UINT32_MAX)); \
Duncan P. N. Exon Smithd34db172015-02-19 23:56:07 +00004007 OPTIONAL(offset, MDUnsignedField, (0, UINT64_MAX)); \
Duncan P. N. Exon Smith70ab3d22015-02-21 01:02:18 +00004008 OPTIONAL(flags, DIFlagField, ); \
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00004009 OPTIONAL(elements, MDField, ); \
Duncan P. N. Exon Smithaece2dc2015-02-13 01:21:25 +00004010 OPTIONAL(runtimeLang, DwarfLangField, ); \
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00004011 OPTIONAL(vtableHolder, MDField, ); \
4012 OPTIONAL(templateParams, MDField, ); \
4013 OPTIONAL(identifier, MDStringField, );
4014 PARSE_MD_FIELDS();
4015#undef VISIT_MD_FIELDS
4016
Duncan P. N. Exon Smith97386022016-04-19 18:00:19 +00004017 // If this has an identifier try to build an ODR type.
4018 if (identifier.Val)
4019 if (auto *CT = DICompositeType::buildODRType(
Duncan P. N. Exon Smith0b0271e2016-04-19 14:55:09 +00004020 Context, *identifier.Val, tag.Val, name.Val, file.Val, line.Val,
4021 scope.Val, baseType.Val, size.Val, align.Val, offset.Val, flags.Val,
4022 elements.Val, runtimeLang.Val, vtableHolder.Val,
4023 templateParams.Val)) {
4024 Result = CT;
4025 return false;
4026 }
Duncan P. N. Exon Smith5ab2be02016-04-17 03:58:21 +00004027
4028 // Create a new node, and save it in the context if it belongs in the type
4029 // map.
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00004030 Result = GET_OR_DISTINCT(
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004031 DICompositeType,
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00004032 (Context, tag.Val, name.Val, file.Val, line.Val, scope.Val, baseType.Val,
4033 size.Val, align.Val, offset.Val, flags.Val, elements.Val,
4034 runtimeLang.Val, vtableHolder.Val, templateParams.Val, identifier.Val));
4035 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00004036}
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00004037
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004038bool LLParser::ParseDISubroutineType(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith54e2bc62015-02-13 01:22:59 +00004039#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith70ab3d22015-02-21 01:02:18 +00004040 OPTIONAL(flags, DIFlagField, ); \
Reid Klecknerde3d8b52016-06-08 20:34:29 +00004041 OPTIONAL(cc, DwarfCCField, ); \
Duncan P. N. Exon Smith54e2bc62015-02-13 01:22:59 +00004042 REQUIRED(types, MDField, );
4043 PARSE_MD_FIELDS();
4044#undef VISIT_MD_FIELDS
4045
Reid Klecknerde3d8b52016-06-08 20:34:29 +00004046 Result = GET_OR_DISTINCT(DISubroutineType,
4047 (Context, flags.Val, cc.Val, types.Val));
Duncan P. N. Exon Smith54e2bc62015-02-13 01:22:59 +00004048 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00004049}
Duncan P. N. Exon Smithf14b9c72015-02-13 01:19:14 +00004050
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004051/// ParseDIFileType:
Amjad Aboud7faeecc2016-12-25 10:12:09 +00004052/// ::= !DIFileType(filename: "path/to/file", directory: "/path/to/dir"
4053/// checksumkind: CSK_MD5,
4054/// checksum: "000102030405060708090a0b0c0d0e0f")
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004055bool LLParser::ParseDIFile(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smithf14b9c72015-02-13 01:19:14 +00004056#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
4057 REQUIRED(filename, MDStringField, ); \
Amjad Aboud7faeecc2016-12-25 10:12:09 +00004058 REQUIRED(directory, MDStringField, ); \
4059 OPTIONAL(checksumkind, ChecksumKindField, ); \
4060 OPTIONAL(checksum, MDStringField, );
Duncan P. N. Exon Smithf14b9c72015-02-13 01:19:14 +00004061 PARSE_MD_FIELDS();
4062#undef VISIT_MD_FIELDS
4063
Amjad Aboud7faeecc2016-12-25 10:12:09 +00004064 Result = GET_OR_DISTINCT(DIFile, (Context, filename.Val, directory.Val,
4065 checksumkind.Val, checksum.Val));
Duncan P. N. Exon Smithf14b9c72015-02-13 01:19:14 +00004066 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00004067}
Duncan P. N. Exon Smithf14b9c72015-02-13 01:19:14 +00004068
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004069/// ParseDICompileUnit:
4070/// ::= !DICompileUnit(language: DW_LANG_C99, file: !0, producer: "clang",
Duncan P. N. Exon Smithc1f1acc2015-02-13 01:25:10 +00004071/// isOptimized: true, flags: "-O2", runtimeVersion: 1,
Adrian Prantlb939a252016-03-31 23:56:58 +00004072/// splitDebugFilename: "abc.debug",
Adrian Prantl75819ae2016-04-15 15:57:41 +00004073/// emissionKind: FullDebug, enums: !1, retainedTypes: !2,
Amjad Abouda9bcf162015-12-10 12:56:35 +00004074/// globals: !4, imports: !5, macros: !6, dwoId: 0x0abcd)
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004075bool LLParser::ParseDICompileUnit(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith55ca9642015-08-03 17:26:41 +00004076 if (!IsDistinct)
4077 return Lex.Error("missing 'distinct', required for !DICompileUnit");
4078
Duncan P. N. Exon Smithc1f1acc2015-02-13 01:25:10 +00004079#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
4080 REQUIRED(language, DwarfLangField, ); \
Duncan P. N. Exon Smithcd07efa12015-03-31 00:47:15 +00004081 REQUIRED(file, MDField, (/* AllowNull */ false)); \
Duncan P. N. Exon Smithc1f1acc2015-02-13 01:25:10 +00004082 OPTIONAL(producer, MDStringField, ); \
4083 OPTIONAL(isOptimized, MDBoolField, ); \
4084 OPTIONAL(flags, MDStringField, ); \
4085 OPTIONAL(runtimeVersion, MDUnsignedField, (0, UINT32_MAX)); \
4086 OPTIONAL(splitDebugFilename, MDStringField, ); \
Adrian Prantlb939a252016-03-31 23:56:58 +00004087 OPTIONAL(emissionKind, EmissionKindField, ); \
Duncan P. N. Exon Smithc1f1acc2015-02-13 01:25:10 +00004088 OPTIONAL(enums, MDField, ); \
4089 OPTIONAL(retainedTypes, MDField, ); \
Duncan P. N. Exon Smithc1f1acc2015-02-13 01:25:10 +00004090 OPTIONAL(globals, MDField, ); \
Adrian Prantl1f599f92015-05-21 20:37:30 +00004091 OPTIONAL(imports, MDField, ); \
Amjad Abouda9bcf162015-12-10 12:56:35 +00004092 OPTIONAL(macros, MDField, ); \
David Blaikiea01f2952016-08-24 18:29:49 +00004093 OPTIONAL(dwoId, MDUnsignedField, ); \
Dehao Chen0944a8c2017-02-01 22:45:09 +00004094 OPTIONAL(splitDebugInlining, MDBoolField, = true); \
4095 OPTIONAL(debugInfoForProfiling, MDBoolField, = false);
Duncan P. N. Exon Smithc1f1acc2015-02-13 01:25:10 +00004096 PARSE_MD_FIELDS();
4097#undef VISIT_MD_FIELDS
4098
Duncan P. N. Exon Smith55ca9642015-08-03 17:26:41 +00004099 Result = DICompileUnit::getDistinct(
4100 Context, language.Val, file.Val, producer.Val, isOptimized.Val, flags.Val,
4101 runtimeVersion.Val, splitDebugFilename.Val, emissionKind.Val, enums.Val,
David Blaikiea01f2952016-08-24 18:29:49 +00004102 retainedTypes.Val, globals.Val, imports.Val, macros.Val, dwoId.Val,
Dehao Chen0944a8c2017-02-01 22:45:09 +00004103 splitDebugInlining.Val, debugInfoForProfiling.Val);
Duncan P. N. Exon Smithc1f1acc2015-02-13 01:25:10 +00004104 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00004105}
Duncan P. N. Exon Smithc1f1acc2015-02-13 01:25:10 +00004106
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004107/// ParseDISubprogram:
4108/// ::= !DISubprogram(scope: !0, name: "foo", linkageName: "_Zfoo",
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00004109/// file: !1, line: 7, type: !2, isLocal: false,
4110/// isDefinition: true, scopeLine: 8, containingType: !3,
Duncan P. N. Exon Smith890533e2015-02-13 01:28:16 +00004111/// virtuality: DW_VIRTUALTIY_pure_virtual,
Reid Klecknerb5af11d2016-07-01 02:41:21 +00004112/// virtualIndex: 10, thisAdjustment: 4, flags: 11,
Peter Collingbourned4bff302015-11-05 22:03:56 +00004113/// isOptimized: false, templateParams: !4, declaration: !5,
Adrian Prantl1d12b882017-04-26 22:56:44 +00004114/// variables: !6, thrownTypes: !7)
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004115bool LLParser::ParseDISubprogram(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith814b8e92015-08-28 20:26:49 +00004116 auto Loc = Lex.getLoc();
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00004117#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
4118 OPTIONAL(scope, MDField, ); \
Duncan P. N. Exon Smith3eea1962015-03-16 19:01:54 +00004119 OPTIONAL(name, MDStringField, ); \
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00004120 OPTIONAL(linkageName, MDStringField, ); \
4121 OPTIONAL(file, MDField, ); \
4122 OPTIONAL(line, LineField, ); \
4123 OPTIONAL(type, MDField, ); \
4124 OPTIONAL(isLocal, MDBoolField, ); \
4125 OPTIONAL(isDefinition, MDBoolField, (true)); \
4126 OPTIONAL(scopeLine, LineField, ); \
4127 OPTIONAL(containingType, MDField, ); \
Duncan P. N. Exon Smith890533e2015-02-13 01:28:16 +00004128 OPTIONAL(virtuality, DwarfVirtualityField, ); \
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00004129 OPTIONAL(virtualIndex, MDUnsignedField, (0, UINT32_MAX)); \
Reid Klecknerb5af11d2016-07-01 02:41:21 +00004130 OPTIONAL(thisAdjustment, MDSignedField, (0, INT32_MIN, INT32_MAX)); \
Duncan P. N. Exon Smith70ab3d22015-02-21 01:02:18 +00004131 OPTIONAL(flags, DIFlagField, ); \
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00004132 OPTIONAL(isOptimized, MDBoolField, ); \
Adrian Prantl75819ae2016-04-15 15:57:41 +00004133 OPTIONAL(unit, MDField, ); \
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00004134 OPTIONAL(templateParams, MDField, ); \
4135 OPTIONAL(declaration, MDField, ); \
Adrian Prantl1d12b882017-04-26 22:56:44 +00004136 OPTIONAL(variables, MDField, ); \
4137 OPTIONAL(thrownTypes, MDField, );
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00004138 PARSE_MD_FIELDS();
4139#undef VISIT_MD_FIELDS
4140
Duncan P. N. Exon Smith814b8e92015-08-28 20:26:49 +00004141 if (isDefinition.Val && !IsDistinct)
4142 return Lex.Error(
4143 Loc,
4144 "missing 'distinct', required for !DISubprogram when 'isDefinition'");
4145
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00004146 Result = GET_OR_DISTINCT(
Adrian Prantl1d12b882017-04-26 22:56:44 +00004147 DISubprogram,
4148 (Context, scope.Val, name.Val, linkageName.Val, file.Val, line.Val,
4149 type.Val, isLocal.Val, isDefinition.Val, scopeLine.Val,
4150 containingType.Val, virtuality.Val, virtualIndex.Val, thisAdjustment.Val,
4151 flags.Val, isOptimized.Val, unit.Val, templateParams.Val,
4152 declaration.Val, variables.Val, thrownTypes.Val));
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00004153 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00004154}
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00004155
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004156/// ParseDILexicalBlock:
4157/// ::= !DILexicalBlock(scope: !0, file: !2, line: 7, column: 9)
4158bool LLParser::ParseDILexicalBlock(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smitha96d4092015-02-13 01:29:28 +00004159#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith0e202b92015-03-30 16:37:48 +00004160 REQUIRED(scope, MDField, (/* AllowNull */ false)); \
Duncan P. N. Exon Smitha96d4092015-02-13 01:29:28 +00004161 OPTIONAL(file, MDField, ); \
4162 OPTIONAL(line, LineField, ); \
4163 OPTIONAL(column, ColumnField, );
4164 PARSE_MD_FIELDS();
4165#undef VISIT_MD_FIELDS
4166
4167 Result = GET_OR_DISTINCT(
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004168 DILexicalBlock, (Context, scope.Val, file.Val, line.Val, column.Val));
Duncan P. N. Exon Smitha96d4092015-02-13 01:29:28 +00004169 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00004170}
Duncan P. N. Exon Smitha96d4092015-02-13 01:29:28 +00004171
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004172/// ParseDILexicalBlockFile:
4173/// ::= !DILexicalBlockFile(scope: !0, file: !2, discriminator: 9)
4174bool LLParser::ParseDILexicalBlockFile(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith06a07022015-02-13 01:30:42 +00004175#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith0e202b92015-03-30 16:37:48 +00004176 REQUIRED(scope, MDField, (/* AllowNull */ false)); \
Duncan P. N. Exon Smith06a07022015-02-13 01:30:42 +00004177 OPTIONAL(file, MDField, ); \
4178 REQUIRED(discriminator, MDUnsignedField, (0, UINT32_MAX));
4179 PARSE_MD_FIELDS();
4180#undef VISIT_MD_FIELDS
4181
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004182 Result = GET_OR_DISTINCT(DILexicalBlockFile,
Duncan P. N. Exon Smith06a07022015-02-13 01:30:42 +00004183 (Context, scope.Val, file.Val, discriminator.Val));
4184 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00004185}
Duncan P. N. Exon Smith06a07022015-02-13 01:30:42 +00004186
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004187/// ParseDINamespace:
4188/// ::= !DINamespace(scope: !0, file: !2, name: "SomeNamespace", line: 9)
4189bool LLParser::ParseDINamespace(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smithe1460002015-02-13 01:32:09 +00004190#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
4191 REQUIRED(scope, MDField, ); \
Duncan P. N. Exon Smithe1460002015-02-13 01:32:09 +00004192 OPTIONAL(name, MDStringField, ); \
Adrian Prantldbfda632016-11-03 19:42:02 +00004193 OPTIONAL(exportSymbols, MDBoolField, );
Duncan P. N. Exon Smithe1460002015-02-13 01:32:09 +00004194 PARSE_MD_FIELDS();
4195#undef VISIT_MD_FIELDS
4196
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004197 Result = GET_OR_DISTINCT(DINamespace,
Adrian Prantlfed4f392017-04-28 22:25:46 +00004198 (Context, scope.Val, name.Val, exportSymbols.Val));
Duncan P. N. Exon Smithe1460002015-02-13 01:32:09 +00004199 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00004200}
Duncan P. N. Exon Smithe1460002015-02-13 01:32:09 +00004201
Amjad Abouda9bcf162015-12-10 12:56:35 +00004202/// ParseDIMacro:
4203/// ::= !DIMacro(macinfo: type, line: 9, name: "SomeMacro", value: "SomeValue")
4204bool LLParser::ParseDIMacro(MDNode *&Result, bool IsDistinct) {
4205#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
4206 REQUIRED(type, DwarfMacinfoTypeField, ); \
Adrian Prantl58c19102016-12-22 00:29:00 +00004207 OPTIONAL(line, LineField, ); \
Amjad Abouda9bcf162015-12-10 12:56:35 +00004208 REQUIRED(name, MDStringField, ); \
4209 OPTIONAL(value, MDStringField, );
4210 PARSE_MD_FIELDS();
4211#undef VISIT_MD_FIELDS
4212
4213 Result = GET_OR_DISTINCT(DIMacro,
4214 (Context, type.Val, line.Val, name.Val, value.Val));
4215 return false;
4216}
4217
4218/// ParseDIMacroFile:
4219/// ::= !DIMacroFile(line: 9, file: !2, nodes: !3)
4220bool LLParser::ParseDIMacroFile(MDNode *&Result, bool IsDistinct) {
4221#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
4222 OPTIONAL(type, DwarfMacinfoTypeField, (dwarf::DW_MACINFO_start_file)); \
Adrian Prantl58c19102016-12-22 00:29:00 +00004223 OPTIONAL(line, LineField, ); \
Amjad Abouda9bcf162015-12-10 12:56:35 +00004224 REQUIRED(file, MDField, ); \
4225 OPTIONAL(nodes, MDField, );
4226 PARSE_MD_FIELDS();
4227#undef VISIT_MD_FIELDS
4228
4229 Result = GET_OR_DISTINCT(DIMacroFile,
4230 (Context, type.Val, line.Val, file.Val, nodes.Val));
4231 return false;
4232}
4233
Adrian Prantlab1243f2015-06-29 23:03:47 +00004234/// ParseDIModule:
4235/// ::= !DIModule(scope: !0, name: "SomeModule", configMacros: "-DNDEBUG",
4236/// includePath: "/usr/include", isysroot: "/")
4237bool LLParser::ParseDIModule(MDNode *&Result, bool IsDistinct) {
4238#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
4239 REQUIRED(scope, MDField, ); \
4240 REQUIRED(name, MDStringField, ); \
4241 OPTIONAL(configMacros, MDStringField, ); \
4242 OPTIONAL(includePath, MDStringField, ); \
4243 OPTIONAL(isysroot, MDStringField, );
4244 PARSE_MD_FIELDS();
4245#undef VISIT_MD_FIELDS
4246
4247 Result = GET_OR_DISTINCT(DIModule, (Context, scope.Val, name.Val,
4248 configMacros.Val, includePath.Val, isysroot.Val));
4249 return false;
4250}
4251
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004252/// ParseDITemplateTypeParameter:
4253/// ::= !DITemplateTypeParameter(name: "Ty", type: !1)
4254bool LLParser::ParseDITemplateTypeParameter(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith2847f382015-02-13 01:34:32 +00004255#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith2847f382015-02-13 01:34:32 +00004256 OPTIONAL(name, MDStringField, ); \
4257 REQUIRED(type, MDField, );
4258 PARSE_MD_FIELDS();
4259#undef VISIT_MD_FIELDS
4260
Duncan P. N. Exon Smith3d62bba2015-02-19 00:37:21 +00004261 Result =
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004262 GET_OR_DISTINCT(DITemplateTypeParameter, (Context, name.Val, type.Val));
Duncan P. N. Exon Smith2847f382015-02-13 01:34:32 +00004263 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00004264}
Duncan P. N. Exon Smith2847f382015-02-13 01:34:32 +00004265
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004266/// ParseDITemplateValueParameter:
4267/// ::= !DITemplateValueParameter(tag: DW_TAG_template_value_parameter,
Duncan P. N. Exon Smith3d62bba2015-02-19 00:37:21 +00004268/// name: "V", type: !1, value: i32 7)
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004269bool LLParser::ParseDITemplateValueParameter(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith2847f382015-02-13 01:34:32 +00004270#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith16d182a2015-02-28 23:21:38 +00004271 OPTIONAL(tag, DwarfTagField, (dwarf::DW_TAG_template_value_parameter)); \
Duncan P. N. Exon Smith2847f382015-02-13 01:34:32 +00004272 OPTIONAL(name, MDStringField, ); \
Duncan P. N. Exon Smith16d182a2015-02-28 23:21:38 +00004273 OPTIONAL(type, MDField, ); \
Duncan P. N. Exon Smith2847f382015-02-13 01:34:32 +00004274 REQUIRED(value, MDField, );
4275 PARSE_MD_FIELDS();
4276#undef VISIT_MD_FIELDS
4277
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004278 Result = GET_OR_DISTINCT(DITemplateValueParameter,
Duncan P. N. Exon Smith3d62bba2015-02-19 00:37:21 +00004279 (Context, tag.Val, name.Val, type.Val, value.Val));
Duncan P. N. Exon Smith2847f382015-02-13 01:34:32 +00004280 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00004281}
Duncan P. N. Exon Smith2847f382015-02-13 01:34:32 +00004282
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004283/// ParseDIGlobalVariable:
4284/// ::= !DIGlobalVariable(scope: !0, name: "foo", linkageName: "foo",
Duncan P. N. Exon Smithc8f810a2015-02-13 01:35:40 +00004285/// file: !1, line: 7, type: !2, isLocal: false,
Adrian Prantlbceaaa92016-12-20 02:09:43 +00004286/// isDefinition: true, declaration: !3, align: 8)
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004287bool LLParser::ParseDIGlobalVariable(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smithc8f810a2015-02-13 01:35:40 +00004288#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith94d58f82015-03-31 01:28:22 +00004289 REQUIRED(name, MDStringField, (/* AllowEmpty */ false)); \
Duncan P. N. Exon Smithc8f810a2015-02-13 01:35:40 +00004290 OPTIONAL(scope, MDField, ); \
Duncan P. N. Exon Smithc8f810a2015-02-13 01:35:40 +00004291 OPTIONAL(linkageName, MDStringField, ); \
4292 OPTIONAL(file, MDField, ); \
4293 OPTIONAL(line, LineField, ); \
4294 OPTIONAL(type, MDField, ); \
4295 OPTIONAL(isLocal, MDBoolField, ); \
4296 OPTIONAL(isDefinition, MDBoolField, (true)); \
Victor Leschuk2ede1262016-10-20 00:13:12 +00004297 OPTIONAL(declaration, MDField, ); \
4298 OPTIONAL(align, MDUnsignedField, (0, UINT32_MAX));
Duncan P. N. Exon Smithc8f810a2015-02-13 01:35:40 +00004299 PARSE_MD_FIELDS();
4300#undef VISIT_MD_FIELDS
4301
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004302 Result = GET_OR_DISTINCT(DIGlobalVariable,
Duncan P. N. Exon Smithc8f810a2015-02-13 01:35:40 +00004303 (Context, scope.Val, name.Val, linkageName.Val,
4304 file.Val, line.Val, type.Val, isLocal.Val,
Adrian Prantlbceaaa92016-12-20 02:09:43 +00004305 isDefinition.Val, declaration.Val, align.Val));
Duncan P. N. Exon Smithc8f810a2015-02-13 01:35:40 +00004306 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00004307}
Duncan P. N. Exon Smithc8f810a2015-02-13 01:35:40 +00004308
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004309/// ParseDILocalVariable:
Duncan P. N. Exon Smithed013cd2015-07-31 18:58:39 +00004310/// ::= !DILocalVariable(arg: 7, scope: !0, name: "foo",
Victor Leschuk2ede1262016-10-20 00:13:12 +00004311/// file: !1, line: 7, type: !2, arg: 2, flags: 7,
4312/// align: 8)
Duncan P. N. Exon Smithed013cd2015-07-31 18:58:39 +00004313/// ::= !DILocalVariable(scope: !0, name: "foo",
Victor Leschuk2ede1262016-10-20 00:13:12 +00004314/// file: !1, line: 7, type: !2, arg: 2, flags: 7,
4315/// align: 8)
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004316bool LLParser::ParseDILocalVariable(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith72fe2d02015-02-13 01:39:44 +00004317#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smithe2c61d92015-03-27 17:56:39 +00004318 REQUIRED(scope, MDField, (/* AllowNull */ false)); \
Duncan P. N. Exon Smith72fe2d02015-02-13 01:39:44 +00004319 OPTIONAL(name, MDStringField, ); \
Duncan P. N. Exon Smithed013cd2015-07-31 18:58:39 +00004320 OPTIONAL(arg, MDUnsignedField, (0, UINT16_MAX)); \
Duncan P. N. Exon Smith72fe2d02015-02-13 01:39:44 +00004321 OPTIONAL(file, MDField, ); \
4322 OPTIONAL(line, LineField, ); \
4323 OPTIONAL(type, MDField, ); \
Victor Leschuk2ede1262016-10-20 00:13:12 +00004324 OPTIONAL(flags, DIFlagField, ); \
4325 OPTIONAL(align, MDUnsignedField, (0, UINT32_MAX));
Duncan P. N. Exon Smith72fe2d02015-02-13 01:39:44 +00004326 PARSE_MD_FIELDS();
4327#undef VISIT_MD_FIELDS
4328
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004329 Result = GET_OR_DISTINCT(DILocalVariable,
Duncan P. N. Exon Smithed013cd2015-07-31 18:58:39 +00004330 (Context, scope.Val, name.Val, file.Val, line.Val,
Victor Leschuk2ede1262016-10-20 00:13:12 +00004331 type.Val, arg.Val, flags.Val, align.Val));
Duncan P. N. Exon Smith72fe2d02015-02-13 01:39:44 +00004332 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00004333}
Duncan P. N. Exon Smith72fe2d02015-02-13 01:39:44 +00004334
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004335/// ParseDIExpression:
4336/// ::= !DIExpression(0, 7, -1)
4337bool LLParser::ParseDIExpression(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith0c5c0122015-02-13 01:42:09 +00004338 assert(Lex.getKind() == lltok::MetadataVar && "Expected metadata type name");
4339 Lex.Lex();
4340
4341 if (ParseToken(lltok::lparen, "expected '(' here"))
4342 return true;
4343
4344 SmallVector<uint64_t, 8> Elements;
4345 if (Lex.getKind() != lltok::rparen)
4346 do {
4347 if (Lex.getKind() == lltok::DwarfOp) {
4348 if (unsigned Op = dwarf::getOperationEncoding(Lex.getStrVal())) {
4349 Lex.Lex();
4350 Elements.push_back(Op);
4351 continue;
4352 }
4353 return TokError(Twine("invalid DWARF op '") + Lex.getStrVal() + "'");
4354 }
4355
4356 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned())
4357 return TokError("expected unsigned integer");
4358
4359 auto &U = Lex.getAPSIntVal();
4360 if (U.ugt(UINT64_MAX))
4361 return TokError("element too large, limit is " + Twine(UINT64_MAX));
4362 Elements.push_back(U.getZExtValue());
4363 Lex.Lex();
4364 } while (EatIfPresent(lltok::comma));
4365
4366 if (ParseToken(lltok::rparen, "expected ')' here"))
4367 return true;
4368
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004369 Result = GET_OR_DISTINCT(DIExpression, (Context, Elements));
Duncan P. N. Exon Smith0c5c0122015-02-13 01:42:09 +00004370 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00004371}
Duncan P. N. Exon Smith0c5c0122015-02-13 01:42:09 +00004372
Adrian Prantlbceaaa92016-12-20 02:09:43 +00004373/// ParseDIGlobalVariableExpression:
4374/// ::= !DIGlobalVariableExpression(var: !0, expr: !1)
4375bool LLParser::ParseDIGlobalVariableExpression(MDNode *&Result,
4376 bool IsDistinct) {
4377#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
4378 REQUIRED(var, MDField, ); \
4379 OPTIONAL(expr, MDField, );
4380 PARSE_MD_FIELDS();
4381#undef VISIT_MD_FIELDS
4382
4383 Result =
4384 GET_OR_DISTINCT(DIGlobalVariableExpression, (Context, var.Val, expr.Val));
4385 return false;
4386}
4387
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004388/// ParseDIObjCProperty:
4389/// ::= !DIObjCProperty(name: "foo", file: !1, line: 7, setter: "setFoo",
Duncan P. N. Exon Smithd45ce962015-02-13 01:43:22 +00004390/// getter: "getFoo", attributes: 7, type: !2)
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004391bool LLParser::ParseDIObjCProperty(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smithd45ce962015-02-13 01:43:22 +00004392#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith3eea1962015-03-16 19:01:54 +00004393 OPTIONAL(name, MDStringField, ); \
Duncan P. N. Exon Smithd45ce962015-02-13 01:43:22 +00004394 OPTIONAL(file, MDField, ); \
4395 OPTIONAL(line, LineField, ); \
4396 OPTIONAL(setter, MDStringField, ); \
4397 OPTIONAL(getter, MDStringField, ); \
4398 OPTIONAL(attributes, MDUnsignedField, (0, UINT32_MAX)); \
4399 OPTIONAL(type, MDField, );
4400 PARSE_MD_FIELDS();
4401#undef VISIT_MD_FIELDS
4402
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004403 Result = GET_OR_DISTINCT(DIObjCProperty,
Duncan P. N. Exon Smithd45ce962015-02-13 01:43:22 +00004404 (Context, name.Val, file.Val, line.Val, setter.Val,
4405 getter.Val, attributes.Val, type.Val));
4406 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00004407}
Duncan P. N. Exon Smithd45ce962015-02-13 01:43:22 +00004408
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004409/// ParseDIImportedEntity:
4410/// ::= !DIImportedEntity(tag: DW_TAG_imported_module, scope: !0, entity: !1,
Duncan P. N. Exon Smith1c931162015-02-13 01:46:02 +00004411/// line: 7, name: "foo")
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004412bool LLParser::ParseDIImportedEntity(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith1c931162015-02-13 01:46:02 +00004413#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
4414 REQUIRED(tag, DwarfTagField, ); \
4415 REQUIRED(scope, MDField, ); \
4416 OPTIONAL(entity, MDField, ); \
Adrian Prantld63bfd22017-07-19 00:09:54 +00004417 OPTIONAL(file, MDField, ); \
Duncan P. N. Exon Smith1c931162015-02-13 01:46:02 +00004418 OPTIONAL(line, LineField, ); \
4419 OPTIONAL(name, MDStringField, );
4420 PARSE_MD_FIELDS();
4421#undef VISIT_MD_FIELDS
4422
Adrian Prantld63bfd22017-07-19 00:09:54 +00004423 Result = GET_OR_DISTINCT(
4424 DIImportedEntity,
4425 (Context, tag.Val, scope.Val, entity.Val, file.Val, line.Val, name.Val));
Duncan P. N. Exon Smith1c931162015-02-13 01:46:02 +00004426 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00004427}
Duncan P. N. Exon Smith1c931162015-02-13 01:46:02 +00004428
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00004429#undef PARSE_MD_FIELD
Duncan P. N. Exon Smith2a6b5fc2015-01-19 23:44:41 +00004430#undef NOP_FIELD
4431#undef REQUIRE_FIELD
4432#undef DECLARE_FIELD
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00004433
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00004434/// ParseMetadataAsValue
4435/// ::= metadata i32 %local
4436/// ::= metadata i32 @global
4437/// ::= metadata i32 7
4438/// ::= metadata !0
4439/// ::= metadata !{...}
4440/// ::= metadata !"string"
4441bool LLParser::ParseMetadataAsValue(Value *&V, PerFunctionState &PFS) {
4442 // Note: the type 'metadata' has already been parsed.
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00004443 Metadata *MD;
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00004444 if (ParseMetadata(MD, &PFS))
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00004445 return true;
4446
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00004447 V = MetadataAsValue::get(Context, MD);
4448 return false;
4449}
4450
4451/// ParseValueAsMetadata
4452/// ::= i32 %local
4453/// ::= i32 @global
4454/// ::= i32 7
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00004455bool LLParser::ParseValueAsMetadata(Metadata *&MD, const Twine &TypeMsg,
4456 PerFunctionState *PFS) {
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00004457 Type *Ty;
4458 LocTy Loc;
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00004459 if (ParseType(Ty, TypeMsg, Loc))
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00004460 return true;
4461 if (Ty->isMetadataTy())
4462 return Error(Loc, "invalid metadata-value-metadata roundtrip");
4463
4464 Value *V;
4465 if (ParseValue(Ty, V, PFS))
4466 return true;
4467
4468 MD = ValueAsMetadata::get(V);
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00004469 return false;
4470}
4471
4472/// ParseMetadata
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00004473/// ::= i32 %local
4474/// ::= i32 @global
4475/// ::= i32 7
Dan Gohman8939ba332010-07-14 18:26:50 +00004476/// ::= !42
4477/// ::= !{...}
4478/// ::= !"string"
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004479/// ::= !DILocation(...)
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00004480bool LLParser::ParseMetadata(Metadata *&MD, PerFunctionState *PFS) {
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00004481 if (Lex.getKind() == lltok::MetadataVar) {
4482 MDNode *N;
4483 if (ParseSpecializedMDNode(N))
4484 return true;
4485 MD = N;
4486 return false;
4487 }
4488
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00004489 // ValueAsMetadata:
4490 // <type> <value>
4491 if (Lex.getKind() != lltok::exclaim)
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00004492 return ParseValueAsMetadata(MD, "expected metadata operand", PFS);
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00004493
4494 // '!'.
4495 assert(Lex.getKind() == lltok::exclaim && "Expected '!' here");
4496 Lex.Lex();
Dan Gohman8939ba332010-07-14 18:26:50 +00004497
Duncan P. N. Exon Smith62a79192015-01-12 22:24:50 +00004498 // MDString:
4499 // ::= '!' STRINGCONSTANT
4500 if (Lex.getKind() == lltok::StringConstant) {
4501 MDString *S;
4502 if (ParseMDString(S))
4503 return true;
4504 MD = S;
4505 return false;
4506 }
4507
Dan Gohman8939ba332010-07-14 18:26:50 +00004508 // MDNode:
4509 // !{ ... }
Duncan P. N. Exon Smithf825dae2015-01-12 22:26:48 +00004510 // !7
Duncan P. N. Exon Smith62a79192015-01-12 22:24:50 +00004511 MDNode *N;
Duncan P. N. Exon Smithf825dae2015-01-12 22:26:48 +00004512 if (ParseMDNodeTail(N))
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00004513 return true;
Duncan P. N. Exon Smith62a79192015-01-12 22:24:50 +00004514 MD = N;
Dan Gohman8939ba332010-07-14 18:26:50 +00004515 return false;
4516}
4517
Victor Hernandez9d75c962010-01-11 22:31:58 +00004518//===----------------------------------------------------------------------===//
4519// Function Parsing.
4520//===----------------------------------------------------------------------===//
4521
Chris Lattner229907c2011-07-18 04:54:35 +00004522bool LLParser::ConvertValIDToValue(Type *Ty, ValID &ID, Value *&V,
David Majnemer8a1c45d2015-12-12 05:38:55 +00004523 PerFunctionState *PFS) {
Duncan Sands19d0b472010-02-16 11:11:14 +00004524 if (Ty->isFunctionTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00004525 return Error(ID.Loc, "functions are not values, refer to them as pointers");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004526
Chris Lattnerac161bf2009-01-02 07:01:27 +00004527 switch (ID.Kind) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00004528 case ValID::t_LocalID:
Victor Hernandez9d75c962010-01-11 22:31:58 +00004529 if (!PFS) return Error(ID.Loc, "invalid use of function-local name");
David Majnemer8a1c45d2015-12-12 05:38:55 +00004530 V = PFS->GetVal(ID.UIntVal, Ty, ID.Loc);
Craig Topper2617dcc2014-04-15 06:32:26 +00004531 return V == nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004532 case ValID::t_LocalName:
Victor Hernandez9d75c962010-01-11 22:31:58 +00004533 if (!PFS) return Error(ID.Loc, "invalid use of function-local name");
David Majnemer8a1c45d2015-12-12 05:38:55 +00004534 V = PFS->GetVal(ID.StrVal, Ty, ID.Loc);
Craig Topper2617dcc2014-04-15 06:32:26 +00004535 return V == nullptr;
Victor Hernandez9d75c962010-01-11 22:31:58 +00004536 case ValID::t_InlineAsm: {
Karl Schimpf44876c52015-09-03 16:18:32 +00004537 if (!ID.FTy || !InlineAsm::Verify(ID.FTy, ID.StrVal2))
Victor Hernandez9d75c962010-01-11 22:31:58 +00004538 return Error(ID.Loc, "invalid type for inline asm constraint string");
David Blaikie41ba2b42015-07-27 23:32:19 +00004539 V = InlineAsm::get(ID.FTy, ID.StrVal, ID.StrVal2, ID.UIntVal & 1,
4540 (ID.UIntVal >> 1) & 1,
4541 (InlineAsm::AsmDialect(ID.UIntVal >> 2)));
Victor Hernandez9d75c962010-01-11 22:31:58 +00004542 return false;
4543 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00004544 case ValID::t_GlobalName:
4545 V = GetGlobalVal(ID.StrVal, Ty, ID.Loc);
Craig Topper2617dcc2014-04-15 06:32:26 +00004546 return V == nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004547 case ValID::t_GlobalID:
4548 V = GetGlobalVal(ID.UIntVal, Ty, ID.Loc);
Craig Topper2617dcc2014-04-15 06:32:26 +00004549 return V == nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004550 case ValID::t_APSInt:
Duncan Sands19d0b472010-02-16 11:11:14 +00004551 if (!Ty->isIntegerTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00004552 return Error(ID.Loc, "integer constant must have integer type");
Jay Foad583abbc2010-12-07 08:25:19 +00004553 ID.APSIntVal = ID.APSIntVal.extOrTrunc(Ty->getPrimitiveSizeInBits());
Owen Andersonedb4a702009-07-24 23:12:02 +00004554 V = ConstantInt::get(Context, ID.APSIntVal);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004555 return false;
4556 case ValID::t_APFloat:
Duncan Sands9dff9be2010-02-15 16:12:20 +00004557 if (!Ty->isFloatingPointTy() ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00004558 !ConstantFP::isValueValidForType(Ty, ID.APFloatVal))
4559 return Error(ID.Loc, "floating point constant invalid for type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004560
Dan Gohman518cda42011-12-17 00:04:22 +00004561 // The lexer has no type info, so builds all half, float, and double FP
4562 // constants as double. Fix this here. Long double does not need this.
Stephan Bergmann17c7f702016-12-14 11:57:17 +00004563 if (&ID.APFloatVal.getSemantics() == &APFloat::IEEEdouble()) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00004564 bool Ignored;
Dan Gohman518cda42011-12-17 00:04:22 +00004565 if (Ty->isHalfTy())
Stephan Bergmann17c7f702016-12-14 11:57:17 +00004566 ID.APFloatVal.convert(APFloat::IEEEhalf(), APFloat::rmNearestTiesToEven,
Dan Gohman518cda42011-12-17 00:04:22 +00004567 &Ignored);
4568 else if (Ty->isFloatTy())
Stephan Bergmann17c7f702016-12-14 11:57:17 +00004569 ID.APFloatVal.convert(APFloat::IEEEsingle(), APFloat::rmNearestTiesToEven,
Dan Gohman518cda42011-12-17 00:04:22 +00004570 &Ignored);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004571 }
Owen Anderson69c464d2009-07-27 20:59:43 +00004572 V = ConstantFP::get(Context, ID.APFloatVal);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004573
Chris Lattner8f57d29e2009-01-05 18:24:23 +00004574 if (V->getType() != Ty)
4575 return Error(ID.Loc, "floating point constant does not have type '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00004576 getTypeString(Ty) + "'");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004577
Chris Lattnerac161bf2009-01-02 07:01:27 +00004578 return false;
4579 case ValID::t_Null:
Duncan Sands19d0b472010-02-16 11:11:14 +00004580 if (!Ty->isPointerTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00004581 return Error(ID.Loc, "null must be a pointer type");
Owen Andersonb292b8c2009-07-30 23:03:37 +00004582 V = ConstantPointerNull::get(cast<PointerType>(Ty));
Chris Lattnerac161bf2009-01-02 07:01:27 +00004583 return false;
4584 case ValID::t_Undef:
Chris Lattnerffa07782009-01-05 08:13:38 +00004585 // FIXME: LabelTy should not be a first-class type.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004586 if (!Ty->isFirstClassType() || Ty->isLabelTy())
Chris Lattnerffa07782009-01-05 08:13:38 +00004587 return Error(ID.Loc, "invalid type for undef constant");
Owen Andersonb292b8c2009-07-30 23:03:37 +00004588 V = UndefValue::get(Ty);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004589 return false;
Chris Lattner998fa0a2009-01-05 07:52:51 +00004590 case ValID::t_EmptyArray:
Duncan Sands19d0b472010-02-16 11:11:14 +00004591 if (!Ty->isArrayTy() || cast<ArrayType>(Ty)->getNumElements() != 0)
Chris Lattner998fa0a2009-01-05 07:52:51 +00004592 return Error(ID.Loc, "invalid empty array initializer");
Owen Andersonb292b8c2009-07-30 23:03:37 +00004593 V = UndefValue::get(Ty);
Chris Lattner998fa0a2009-01-05 07:52:51 +00004594 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004595 case ValID::t_Zero:
Chris Lattnerffa07782009-01-05 08:13:38 +00004596 // FIXME: LabelTy should not be a first-class type.
Chris Lattnerfdd87902009-10-05 05:54:46 +00004597 if (!Ty->isFirstClassType() || Ty->isLabelTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00004598 return Error(ID.Loc, "invalid type for null constant");
Owen Anderson5a1acd92009-07-31 20:28:14 +00004599 V = Constant::getNullValue(Ty);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004600 return false;
David Majnemerf0f224d2015-11-11 21:57:16 +00004601 case ValID::t_None:
4602 if (!Ty->isTokenTy())
4603 return Error(ID.Loc, "invalid type for none constant");
4604 V = Constant::getNullValue(Ty);
4605 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004606 case ValID::t_Constant:
Chris Lattner13ee7952010-08-28 04:09:24 +00004607 if (ID.ConstantVal->getType() != Ty)
Chris Lattnerac161bf2009-01-02 07:01:27 +00004608 return Error(ID.Loc, "constant expression type mismatch");
Chris Lattner392be582010-02-12 20:49:41 +00004609
Chris Lattnerac161bf2009-01-02 07:01:27 +00004610 V = ID.ConstantVal;
4611 return false;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004612 case ValID::t_ConstantStruct:
4613 case ValID::t_PackedConstantStruct:
Chris Lattner229907c2011-07-18 04:54:35 +00004614 if (StructType *ST = dyn_cast<StructType>(Ty)) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004615 if (ST->getNumElements() != ID.UIntVal)
4616 return Error(ID.Loc,
4617 "initializer with struct type has wrong # elements");
4618 if (ST->isPacked() != (ID.Kind == ValID::t_PackedConstantStruct))
4619 return Error(ID.Loc, "packed'ness of initializer and type don't match");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004620
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004621 // Verify that the elements are compatible with the structtype.
4622 for (unsigned i = 0, e = ID.UIntVal; i != e; ++i)
4623 if (ID.ConstantStructElts[i]->getType() != ST->getElementType(i))
4624 return Error(ID.Loc, "element " + Twine(i) +
4625 " of struct initializer doesn't match struct element type");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004626
David Blaikieadbda4b2015-08-03 20:08:41 +00004627 V = ConstantStruct::get(
4628 ST, makeArrayRef(ID.ConstantStructElts.get(), ID.UIntVal));
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004629 } else
4630 return Error(ID.Loc, "constant expression type mismatch");
4631 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004632 }
Chandler Carruthf3e85022012-01-10 18:08:01 +00004633 llvm_unreachable("Invalid ValID");
Chris Lattnerac161bf2009-01-02 07:01:27 +00004634}
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004635
Alex Lorenzd2255952015-07-17 22:07:03 +00004636bool LLParser::parseConstantValue(Type *Ty, Constant *&C) {
4637 C = nullptr;
4638 ValID ID;
4639 auto Loc = Lex.getLoc();
4640 if (ParseValID(ID, /*PFS=*/nullptr))
4641 return true;
4642 switch (ID.Kind) {
4643 case ValID::t_APSInt:
4644 case ValID::t_APFloat:
Alex Lorenzb9a68db2015-09-09 13:44:33 +00004645 case ValID::t_Undef:
Alex Lorenzd2255952015-07-17 22:07:03 +00004646 case ValID::t_Constant:
4647 case ValID::t_ConstantStruct:
4648 case ValID::t_PackedConstantStruct: {
4649 Value *V;
4650 if (ConvertValIDToValue(Ty, ID, V, /*PFS=*/nullptr))
4651 return true;
4652 assert(isa<Constant>(V) && "Expected a constant value");
4653 C = cast<Constant>(V);
4654 return false;
4655 }
Eric Christopherb9c56d12017-03-30 22:34:20 +00004656 case ValID::t_Null:
4657 C = Constant::getNullValue(Ty);
4658 return false;
Alex Lorenzd2255952015-07-17 22:07:03 +00004659 default:
4660 return Error(Loc, "expected a constant value");
4661 }
4662}
4663
David Majnemer8a1c45d2015-12-12 05:38:55 +00004664bool LLParser::ParseValue(Type *Ty, Value *&V, PerFunctionState *PFS) {
Craig Topper2617dcc2014-04-15 06:32:26 +00004665 V = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004666 ValID ID;
David Majnemer8a1c45d2015-12-12 05:38:55 +00004667 return ParseValID(ID, PFS) || ConvertValIDToValue(Ty, ID, V, PFS);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004668}
4669
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004670bool LLParser::ParseTypeAndValue(Value *&V, PerFunctionState *PFS) {
Craig Topper2617dcc2014-04-15 06:32:26 +00004671 Type *Ty = nullptr;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004672 return ParseType(Ty) ||
4673 ParseValue(Ty, V, PFS);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004674}
4675
Chris Lattner3ed871f2009-10-27 19:13:16 +00004676bool LLParser::ParseTypeAndBasicBlock(BasicBlock *&BB, LocTy &Loc,
4677 PerFunctionState &PFS) {
4678 Value *V;
4679 Loc = Lex.getLoc();
4680 if (ParseTypeAndValue(V, PFS)) return true;
4681 if (!isa<BasicBlock>(V))
4682 return Error(Loc, "expected a basic block");
4683 BB = cast<BasicBlock>(V);
4684 return false;
4685}
4686
Chris Lattnerac161bf2009-01-02 07:01:27 +00004687/// FunctionHeader
4688/// ::= OptionalLinkage OptionalVisibility OptionalCallingConv OptRetAttrs
Rafael Espindola45e6c192011-01-08 16:42:36 +00004689/// OptUnnamedAddr Type GlobalName '(' ArgList ')' OptFuncAttrs OptSection
David Majnemer7fddecc2015-06-17 20:52:32 +00004690/// OptionalAlign OptGC OptionalPrefix OptionalPrologue OptPersonalityFn
Chris Lattnerac161bf2009-01-02 07:01:27 +00004691bool LLParser::ParseFunctionHeader(Function *&Fn, bool isDefine) {
4692 // Parse the linkage.
4693 LocTy LinkageLoc = Lex.getLoc();
4694 unsigned Linkage;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004695
Kostya Serebryanya5054ad2012-01-20 17:56:17 +00004696 unsigned Visibility;
Nico Rieck7157bb72014-01-14 15:22:47 +00004697 unsigned DLLStorageClass;
Bill Wendling50d27842012-10-15 20:35:56 +00004698 AttrBuilder RetAttrs;
Alexey Samsonov17a9cff2014-09-10 18:00:17 +00004699 unsigned CC;
Rafael Espindola2615c9e2016-05-12 12:37:52 +00004700 bool HasLinkage;
Craig Topper2617dcc2014-04-15 06:32:26 +00004701 Type *RetType = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004702 LocTy RetTypeLoc = Lex.getLoc();
Rafael Espindola2615c9e2016-05-12 12:37:52 +00004703 if (ParseOptionalLinkage(Linkage, HasLinkage, Visibility, DLLStorageClass) ||
4704 ParseOptionalCallingConv(CC) || ParseOptionalReturnAttrs(RetAttrs) ||
Chris Lattnerf880ca22009-03-09 04:49:14 +00004705 ParseType(RetType, RetTypeLoc, true /*void allowed*/))
Chris Lattnerac161bf2009-01-02 07:01:27 +00004706 return true;
4707
4708 // Verify that the linkage is ok.
4709 switch ((GlobalValue::LinkageTypes)Linkage) {
4710 case GlobalValue::ExternalLinkage:
4711 break; // always ok.
Duncan Sandse2881052009-03-11 08:08:06 +00004712 case GlobalValue::ExternalWeakLinkage:
Chris Lattnerac161bf2009-01-02 07:01:27 +00004713 if (isDefine)
4714 return Error(LinkageLoc, "invalid linkage for function definition");
4715 break;
Rafael Espindola6de96a12009-01-15 20:18:42 +00004716 case GlobalValue::PrivateLinkage:
Chris Lattnerac161bf2009-01-02 07:01:27 +00004717 case GlobalValue::InternalLinkage:
Nick Lewycky8019af62009-04-13 07:02:02 +00004718 case GlobalValue::AvailableExternallyLinkage:
Duncan Sands12da8ce2009-03-07 15:45:40 +00004719 case GlobalValue::LinkOnceAnyLinkage:
4720 case GlobalValue::LinkOnceODRLinkage:
4721 case GlobalValue::WeakAnyLinkage:
4722 case GlobalValue::WeakODRLinkage:
Chris Lattnerac161bf2009-01-02 07:01:27 +00004723 if (!isDefine)
4724 return Error(LinkageLoc, "invalid linkage for function declaration");
4725 break;
4726 case GlobalValue::AppendingLinkage:
Duncan Sands4581beb2009-03-11 20:14:15 +00004727 case GlobalValue::CommonLinkage:
Chris Lattnerac161bf2009-01-02 07:01:27 +00004728 return Error(LinkageLoc, "invalid function linkage type");
4729 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004730
Duncan P. N. Exon Smithb80de102014-05-07 22:57:20 +00004731 if (!isValidVisibilityForLinkage(Visibility, Linkage))
4732 return Error(LinkageLoc,
4733 "symbol with local linkage must have default visibility");
4734
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004735 if (!FunctionType::isValidReturnType(RetType))
Chris Lattnerac161bf2009-01-02 07:01:27 +00004736 return Error(RetTypeLoc, "invalid function return type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004737
Chris Lattnerac161bf2009-01-02 07:01:27 +00004738 LocTy NameLoc = Lex.getLoc();
Chris Lattner778c62c2009-02-18 21:48:13 +00004739
4740 std::string FunctionName;
4741 if (Lex.getKind() == lltok::GlobalVar) {
4742 FunctionName = Lex.getStrVal();
4743 } else if (Lex.getKind() == lltok::GlobalID) { // @42 is ok.
4744 unsigned NameID = Lex.getUIntVal();
4745
4746 if (NameID != NumberedVals.size())
4747 return TokError("function expected to be numbered '%" +
Benjamin Kramerc7583112010-09-27 17:42:11 +00004748 Twine(NumberedVals.size()) + "'");
Chris Lattner778c62c2009-02-18 21:48:13 +00004749 } else {
4750 return TokError("expected function name");
4751 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004752
Chris Lattner3822f632009-01-02 08:05:26 +00004753 Lex.Lex();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004754
Chris Lattner3822f632009-01-02 08:05:26 +00004755 if (Lex.getKind() != lltok::lparen)
Chris Lattnerac161bf2009-01-02 07:01:27 +00004756 return TokError("expected '(' in function argument list");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004757
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004758 SmallVector<ArgInfo, 8> ArgList;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004759 bool isVarArg;
Bill Wendling50d27842012-10-15 20:35:56 +00004760 AttrBuilder FuncAttrs;
Bill Wendlingb32b0412013-02-08 06:32:06 +00004761 std::vector<unsigned> FwdRefAttrGrps;
Michael Gottesman41748d72013-06-27 00:25:01 +00004762 LocTy BuiltinLoc;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004763 std::string Section;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004764 unsigned Alignment;
Chris Lattner3822f632009-01-02 08:05:26 +00004765 std::string GC;
Peter Collingbourne96efdd62016-06-14 21:01:22 +00004766 GlobalValue::UnnamedAddr UnnamedAddr = GlobalValue::UnnamedAddr::None;
Rafael Espindola563eb4b2011-01-25 19:09:56 +00004767 LocTy UnnamedAddrLoc;
Craig Topper2617dcc2014-04-15 06:32:26 +00004768 Constant *Prefix = nullptr;
Peter Collingbourne51d2de72014-12-03 02:08:38 +00004769 Constant *Prologue = nullptr;
David Majnemer7fddecc2015-06-17 20:52:32 +00004770 Constant *PersonalityFn = nullptr;
David Majnemerdad0a642014-06-27 18:19:56 +00004771 Comdat *C;
Chris Lattner3822f632009-01-02 08:05:26 +00004772
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004773 if (ParseArgumentList(ArgList, isVarArg) ||
Peter Collingbourne96efdd62016-06-14 21:01:22 +00004774 ParseOptionalUnnamedAddr(UnnamedAddr) ||
Bill Wendling09bd1f72013-02-22 00:12:35 +00004775 ParseFnAttributeValuePairs(FuncAttrs, FwdRefAttrGrps, false,
Michael Gottesman41748d72013-06-27 00:25:01 +00004776 BuiltinLoc) ||
Chris Lattner3822f632009-01-02 08:05:26 +00004777 (EatIfPresent(lltok::kw_section) &&
4778 ParseStringConstant(Section)) ||
Rafael Espindola83a362c2015-01-06 22:55:16 +00004779 parseOptionalComdat(FunctionName, C) ||
Chris Lattner3822f632009-01-02 08:05:26 +00004780 ParseOptionalAlignment(Alignment) ||
4781 (EatIfPresent(lltok::kw_gc) &&
Peter Collingbourne3fa50f92013-09-16 01:08:15 +00004782 ParseStringConstant(GC)) ||
4783 (EatIfPresent(lltok::kw_prefix) &&
Peter Collingbourne51d2de72014-12-03 02:08:38 +00004784 ParseGlobalTypeAndValue(Prefix)) ||
4785 (EatIfPresent(lltok::kw_prologue) &&
David Majnemer7fddecc2015-06-17 20:52:32 +00004786 ParseGlobalTypeAndValue(Prologue)) ||
4787 (EatIfPresent(lltok::kw_personality) &&
4788 ParseGlobalTypeAndValue(PersonalityFn)))
Chris Lattner3822f632009-01-02 08:05:26 +00004789 return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004790
Michael Gottesman41748d72013-06-27 00:25:01 +00004791 if (FuncAttrs.contains(Attribute::Builtin))
4792 return Error(BuiltinLoc, "'builtin' attribute not valid on function");
Bill Wendling09bd1f72013-02-22 00:12:35 +00004793
Chris Lattnerac161bf2009-01-02 07:01:27 +00004794 // If the alignment was parsed as an attribute, move to the alignment field.
Bill Wendlingc6daefa2012-10-08 23:27:46 +00004795 if (FuncAttrs.hasAlignmentAttr()) {
Bill Wendling9be77592012-09-21 15:26:31 +00004796 Alignment = FuncAttrs.getAlignment();
Bill Wendling3d7b0b82012-12-19 07:18:57 +00004797 FuncAttrs.removeAttribute(Attribute::Alignment);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004798 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004799
Chris Lattnerac161bf2009-01-02 07:01:27 +00004800 // Okay, if we got here, the function is syntactically valid. Convert types
4801 // and do semantic checks.
Jay Foadb804a2b2011-07-12 14:06:48 +00004802 std::vector<Type*> ParamTypeList;
Reid Klecknerc2cb5602017-04-12 00:38:00 +00004803 SmallVector<AttributeSet, 8> Attrs;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004804
Chris Lattnerac161bf2009-01-02 07:01:27 +00004805 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004806 ParamTypeList.push_back(ArgList[i].Ty);
Reid Klecknereb9dd5b2017-04-10 23:31:05 +00004807 Attrs.push_back(ArgList[i].Attrs);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004808 }
4809
Reid Kleckner7f720332017-04-13 00:58:09 +00004810 AttributeList PAL =
4811 AttributeList::get(Context, AttributeSet::get(Context, FuncAttrs),
4812 AttributeSet::get(Context, RetAttrs), Attrs);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004813
Bill Wendling749a43d2012-12-30 13:50:49 +00004814 if (PAL.hasAttribute(1, Attribute::StructRet) && !RetType->isVoidTy())
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004815 return Error(RetTypeLoc, "functions with 'sret' argument must return void");
4816
Chris Lattner229907c2011-07-18 04:54:35 +00004817 FunctionType *FT =
Owen Anderson4056ca92009-07-29 22:17:13 +00004818 FunctionType::get(RetType, ParamTypeList, isVarArg);
Chris Lattner229907c2011-07-18 04:54:35 +00004819 PointerType *PFT = PointerType::getUnqual(FT);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004820
Craig Topper2617dcc2014-04-15 06:32:26 +00004821 Fn = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004822 if (!FunctionName.empty()) {
4823 // If this was a definition of a forward reference, remove the definition
4824 // from the forward reference table and fill in the forward ref.
David Blaikie9ebdc692015-09-21 21:07:50 +00004825 auto FRVI = ForwardRefVals.find(FunctionName);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004826 if (FRVI != ForwardRefVals.end()) {
4827 Fn = M->getFunction(FunctionName);
Nick Lewycky686d7cb2012-10-11 00:38:25 +00004828 if (!Fn)
4829 return Error(FRVI->second.second, "invalid forward reference to "
4830 "function as global value!");
Chris Lattnerc239eb72010-04-20 04:49:11 +00004831 if (Fn->getType() != PFT)
4832 return Error(FRVI->second.second, "invalid forward reference to "
4833 "function '" + FunctionName + "' with wrong type!");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004834
Chris Lattnerac161bf2009-01-02 07:01:27 +00004835 ForwardRefVals.erase(FRVI);
4836 } else if ((Fn = M->getFunction(FunctionName))) {
Chris Lattner5756c162011-06-17 07:06:44 +00004837 // Reject redefinitions.
4838 return Error(NameLoc, "invalid redefinition of function '" +
4839 FunctionName + "'");
Chris Lattnere38317f2009-10-25 23:22:50 +00004840 } else if (M->getNamedValue(FunctionName)) {
4841 return Error(NameLoc, "redefinition of function '@" + FunctionName + "'");
Chris Lattnerac161bf2009-01-02 07:01:27 +00004842 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004843
Dan Gohman399d6ae2009-08-29 23:37:49 +00004844 } else {
Chris Lattnerac161bf2009-01-02 07:01:27 +00004845 // If this is a definition of a forward referenced function, make sure the
4846 // types agree.
David Blaikie9ebdc692015-09-21 21:07:50 +00004847 auto I = ForwardRefValIDs.find(NumberedVals.size());
Chris Lattnerac161bf2009-01-02 07:01:27 +00004848 if (I != ForwardRefValIDs.end()) {
4849 Fn = cast<Function>(I->second.first);
4850 if (Fn->getType() != PFT)
4851 return Error(NameLoc, "type of definition and forward reference of '@" +
Benjamin Kramerc7583112010-09-27 17:42:11 +00004852 Twine(NumberedVals.size()) + "' disagree");
Chris Lattnerac161bf2009-01-02 07:01:27 +00004853 ForwardRefValIDs.erase(I);
4854 }
4855 }
4856
Craig Topper2617dcc2014-04-15 06:32:26 +00004857 if (!Fn)
Chris Lattnerac161bf2009-01-02 07:01:27 +00004858 Fn = Function::Create(FT, GlobalValue::ExternalLinkage, FunctionName, M);
4859 else // Move the forward-reference to the correct spot in the module.
4860 M->getFunctionList().splice(M->end(), M->getFunctionList(), Fn);
4861
4862 if (FunctionName.empty())
4863 NumberedVals.push_back(Fn);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004864
Chris Lattnerac161bf2009-01-02 07:01:27 +00004865 Fn->setLinkage((GlobalValue::LinkageTypes)Linkage);
4866 Fn->setVisibility((GlobalValue::VisibilityTypes)Visibility);
Nico Rieck7157bb72014-01-14 15:22:47 +00004867 Fn->setDLLStorageClass((GlobalValue::DLLStorageClassTypes)DLLStorageClass);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004868 Fn->setCallingConv(CC);
4869 Fn->setAttributes(PAL);
Rafael Espindola45e6c192011-01-08 16:42:36 +00004870 Fn->setUnnamedAddr(UnnamedAddr);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004871 Fn->setAlignment(Alignment);
4872 Fn->setSection(Section);
David Majnemerdad0a642014-06-27 18:19:56 +00004873 Fn->setComdat(C);
David Majnemer7fddecc2015-06-17 20:52:32 +00004874 Fn->setPersonalityFn(PersonalityFn);
Benjamin Kramer728f4442016-05-29 10:46:35 +00004875 if (!GC.empty()) Fn->setGC(GC);
Peter Collingbourne3fa50f92013-09-16 01:08:15 +00004876 Fn->setPrefixData(Prefix);
Peter Collingbourne51d2de72014-12-03 02:08:38 +00004877 Fn->setPrologueData(Prologue);
Bill Wendlingb32b0412013-02-08 06:32:06 +00004878 ForwardRefAttrGroups[Fn] = FwdRefAttrGrps;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004879
Chris Lattnerac161bf2009-01-02 07:01:27 +00004880 // Add all of the arguments we parsed to the function.
4881 Function::arg_iterator ArgIt = Fn->arg_begin();
4882 for (unsigned i = 0, e = ArgList.size(); i != e; ++i, ++ArgIt) {
4883 // If the argument has a name, insert it into the argument symbol table.
4884 if (ArgList[i].Name.empty()) continue;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004885
Chris Lattnerac161bf2009-01-02 07:01:27 +00004886 // Set the name, if it conflicted, it will be auto-renamed.
4887 ArgIt->setName(ArgList[i].Name);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004888
Benjamin Kramer1dc34b42010-10-16 11:28:23 +00004889 if (ArgIt->getName() != ArgList[i].Name)
Chris Lattnerac161bf2009-01-02 07:01:27 +00004890 return Error(ArgList[i].Loc, "redefinition of argument '%" +
4891 ArgList[i].Name + "'");
4892 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004893
Duncan P. N. Exon Smith17169902014-08-19 00:13:19 +00004894 if (isDefine)
4895 return false;
4896
Robin Morisset039781e2014-08-29 21:53:01 +00004897 // Check the declaration has no block address forward references.
Duncan P. N. Exon Smith17169902014-08-19 00:13:19 +00004898 ValID ID;
4899 if (FunctionName.empty()) {
4900 ID.Kind = ValID::t_GlobalID;
4901 ID.UIntVal = NumberedVals.size() - 1;
4902 } else {
4903 ID.Kind = ValID::t_GlobalName;
4904 ID.StrVal = FunctionName;
4905 }
4906 auto Blocks = ForwardRefBlockAddresses.find(ID);
4907 if (Blocks != ForwardRefBlockAddresses.end())
4908 return Error(Blocks->first.Loc,
4909 "cannot take blockaddress inside a declaration");
Chris Lattnerac161bf2009-01-02 07:01:27 +00004910 return false;
4911}
4912
Duncan P. N. Exon Smith17169902014-08-19 00:13:19 +00004913bool LLParser::PerFunctionState::resolveForwardRefBlockAddresses() {
4914 ValID ID;
4915 if (FunctionNumber == -1) {
4916 ID.Kind = ValID::t_GlobalName;
4917 ID.StrVal = F.getName();
4918 } else {
4919 ID.Kind = ValID::t_GlobalID;
4920 ID.UIntVal = FunctionNumber;
4921 }
4922
4923 auto Blocks = P.ForwardRefBlockAddresses.find(ID);
4924 if (Blocks == P.ForwardRefBlockAddresses.end())
4925 return false;
4926
4927 for (const auto &I : Blocks->second) {
4928 const ValID &BBID = I.first;
4929 GlobalValue *GV = I.second;
4930
4931 assert((BBID.Kind == ValID::t_LocalID || BBID.Kind == ValID::t_LocalName) &&
4932 "Expected local id or name");
4933 BasicBlock *BB;
4934 if (BBID.Kind == ValID::t_LocalName)
4935 BB = GetBB(BBID.StrVal, BBID.Loc);
4936 else
4937 BB = GetBB(BBID.UIntVal, BBID.Loc);
4938 if (!BB)
4939 return P.Error(BBID.Loc, "referenced value is not a basic block");
4940
4941 GV->replaceAllUsesWith(BlockAddress::get(&F, BB));
4942 GV->eraseFromParent();
4943 }
4944
4945 P.ForwardRefBlockAddresses.erase(Blocks);
4946 return false;
4947}
Chris Lattnerac161bf2009-01-02 07:01:27 +00004948
4949/// ParseFunctionBody
Duncan P. N. Exon Smith0a448fb2014-08-19 21:30:15 +00004950/// ::= '{' BasicBlock+ UseListOrderDirective* '}'
Chris Lattnerac161bf2009-01-02 07:01:27 +00004951bool LLParser::ParseFunctionBody(Function &Fn) {
Chris Lattner4649a732011-06-17 06:42:57 +00004952 if (Lex.getKind() != lltok::lbrace)
Chris Lattnerac161bf2009-01-02 07:01:27 +00004953 return TokError("expected '{' in function body");
4954 Lex.Lex(); // eat the {.
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004955
Chris Lattner3432c622009-10-28 03:39:23 +00004956 int FunctionNumber = -1;
4957 if (!Fn.hasName()) FunctionNumber = NumberedVals.size()-1;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004958
Chris Lattner3432c622009-10-28 03:39:23 +00004959 PerFunctionState PFS(*this, Fn, FunctionNumber);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004960
Duncan P. N. Exon Smith17169902014-08-19 00:13:19 +00004961 // Resolve block addresses and allow basic blocks to be forward-declared
4962 // within this function.
4963 if (PFS.resolveForwardRefBlockAddresses())
4964 return true;
4965 SaveAndRestore<PerFunctionState *> ScopeExit(BlockAddressPFS, &PFS);
4966
Chris Lattnerbbddd962010-01-09 19:20:07 +00004967 // We need at least one basic block.
Duncan P. N. Exon Smith0a448fb2014-08-19 21:30:15 +00004968 if (Lex.getKind() == lltok::rbrace || Lex.getKind() == lltok::kw_uselistorder)
Chris Lattnerbbddd962010-01-09 19:20:07 +00004969 return TokError("function body requires at least one basic block");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004970
Duncan P. N. Exon Smith0a448fb2014-08-19 21:30:15 +00004971 while (Lex.getKind() != lltok::rbrace &&
4972 Lex.getKind() != lltok::kw_uselistorder)
Chris Lattnerac161bf2009-01-02 07:01:27 +00004973 if (ParseBasicBlock(PFS)) return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004974
Duncan P. N. Exon Smith0a448fb2014-08-19 21:30:15 +00004975 while (Lex.getKind() != lltok::rbrace)
4976 if (ParseUseListOrder(&PFS))
4977 return true;
4978
Chris Lattnerac161bf2009-01-02 07:01:27 +00004979 // Eat the }.
4980 Lex.Lex();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004981
Chris Lattnerac161bf2009-01-02 07:01:27 +00004982 // Verify function is ok.
Chris Lattner3432c622009-10-28 03:39:23 +00004983 return PFS.FinishFunction();
Chris Lattnerac161bf2009-01-02 07:01:27 +00004984}
4985
4986/// ParseBasicBlock
4987/// ::= LabelStr? Instruction*
4988bool LLParser::ParseBasicBlock(PerFunctionState &PFS) {
4989 // If this basic block starts out with a name, remember it.
4990 std::string Name;
4991 LocTy NameLoc = Lex.getLoc();
4992 if (Lex.getKind() == lltok::LabelStr) {
4993 Name = Lex.getStrVal();
4994 Lex.Lex();
4995 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004996
Chris Lattnerac161bf2009-01-02 07:01:27 +00004997 BasicBlock *BB = PFS.DefineBB(Name, NameLoc);
Owen Anderson576a9a22015-03-02 05:25:09 +00004998 if (!BB)
4999 return Error(NameLoc,
5000 "unable to create block named '" + Name + "'");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005001
Chris Lattnerac161bf2009-01-02 07:01:27 +00005002 std::string NameStr;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005003
Chris Lattnerac161bf2009-01-02 07:01:27 +00005004 // Parse the instructions in this block until we get a terminator.
5005 Instruction *Inst;
5006 do {
5007 // This instruction may have three possibilities for a name: a) none
5008 // specified, b) name specified "%foo =", c) number specified: "%4 =".
5009 LocTy NameLoc = Lex.getLoc();
5010 int NameID = -1;
5011 NameStr = "";
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005012
Chris Lattnerac161bf2009-01-02 07:01:27 +00005013 if (Lex.getKind() == lltok::LocalVarID) {
5014 NameID = Lex.getUIntVal();
5015 Lex.Lex();
5016 if (ParseToken(lltok::equal, "expected '=' after instruction id"))
5017 return true;
Chris Lattnerdef19492011-06-17 06:36:20 +00005018 } else if (Lex.getKind() == lltok::LocalVar) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00005019 NameStr = Lex.getStrVal();
5020 Lex.Lex();
5021 if (ParseToken(lltok::equal, "expected '=' after instruction name"))
5022 return true;
5023 }
Devang Patelea8a4b92009-09-17 23:04:48 +00005024
Chris Lattner77b89dc2009-12-30 05:23:43 +00005025 switch (ParseInstruction(Inst, BB, PFS)) {
Craig Toppera2886c22012-02-07 05:05:23 +00005026 default: llvm_unreachable("Unknown ParseInstruction result!");
Chris Lattner77b89dc2009-12-30 05:23:43 +00005027 case InstError: return true;
5028 case InstNormal:
Chris Lattner2e664bd2010-04-07 04:08:57 +00005029 BB->getInstList().push_back(Inst);
5030
Chris Lattner77b89dc2009-12-30 05:23:43 +00005031 // With a normal result, we check to see if the instruction is followed by
5032 // a comma and metadata.
5033 if (EatIfPresent(lltok::comma))
Duncan P. N. Exon Smith27d702c2015-04-24 21:29:36 +00005034 if (ParseInstructionMetadata(*Inst))
Chris Lattner77b89dc2009-12-30 05:23:43 +00005035 return true;
5036 break;
5037 case InstExtraComma:
Chris Lattner2e664bd2010-04-07 04:08:57 +00005038 BB->getInstList().push_back(Inst);
5039
Chris Lattner77b89dc2009-12-30 05:23:43 +00005040 // If the instruction parser ate an extra comma at the end of it, it
5041 // *must* be followed by metadata.
Duncan P. N. Exon Smith27d702c2015-04-24 21:29:36 +00005042 if (ParseInstructionMetadata(*Inst))
Chris Lattner77b89dc2009-12-30 05:23:43 +00005043 return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00005044 break;
Chris Lattner77b89dc2009-12-30 05:23:43 +00005045 }
Devang Patelea8a4b92009-09-17 23:04:48 +00005046
Chris Lattnerac161bf2009-01-02 07:01:27 +00005047 // Set the name on the instruction.
5048 if (PFS.SetInstName(NameID, NameStr, NameLoc, Inst)) return true;
5049 } while (!isa<TerminatorInst>(Inst));
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005050
Chris Lattnerac161bf2009-01-02 07:01:27 +00005051 return false;
5052}
5053
5054//===----------------------------------------------------------------------===//
5055// Instruction Parsing.
5056//===----------------------------------------------------------------------===//
5057
5058/// ParseInstruction - Parse one of the many different instructions.
5059///
Chris Lattner77b89dc2009-12-30 05:23:43 +00005060int LLParser::ParseInstruction(Instruction *&Inst, BasicBlock *BB,
5061 PerFunctionState &PFS) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00005062 lltok::Kind Token = Lex.getKind();
5063 if (Token == lltok::Eof)
5064 return TokError("found end of file when expecting more instructions");
5065 LocTy Loc = Lex.getLoc();
Chris Lattner89d856e2009-03-01 00:53:13 +00005066 unsigned KeywordVal = Lex.getUIntVal();
Chris Lattnerac161bf2009-01-02 07:01:27 +00005067 Lex.Lex(); // Eat the keyword.
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005068
Chris Lattnerac161bf2009-01-02 07:01:27 +00005069 switch (Token) {
5070 default: return Error(Loc, "expected instruction opcode");
5071 // Terminator Instructions.
Owen Anderson55f1c092009-08-13 21:58:54 +00005072 case lltok::kw_unreachable: Inst = new UnreachableInst(Context); return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005073 case lltok::kw_ret: return ParseRet(Inst, BB, PFS);
5074 case lltok::kw_br: return ParseBr(Inst, PFS);
5075 case lltok::kw_switch: return ParseSwitch(Inst, PFS);
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00005076 case lltok::kw_indirectbr: return ParseIndirectBr(Inst, PFS);
Chris Lattnerac161bf2009-01-02 07:01:27 +00005077 case lltok::kw_invoke: return ParseInvoke(Inst, PFS);
Bill Wendlingf891bf82011-07-31 06:30:59 +00005078 case lltok::kw_resume: return ParseResume(Inst, PFS);
David Majnemer654e1302015-07-31 17:58:14 +00005079 case lltok::kw_cleanupret: return ParseCleanupRet(Inst, PFS);
5080 case lltok::kw_catchret: return ParseCatchRet(Inst, PFS);
David Majnemer8a1c45d2015-12-12 05:38:55 +00005081 case lltok::kw_catchswitch: return ParseCatchSwitch(Inst, PFS);
5082 case lltok::kw_catchpad: return ParseCatchPad(Inst, PFS);
David Majnemer8a1c45d2015-12-12 05:38:55 +00005083 case lltok::kw_cleanuppad: return ParseCleanupPad(Inst, PFS);
Chris Lattnerac161bf2009-01-02 07:01:27 +00005084 // Binary Operators.
5085 case lltok::kw_add:
5086 case lltok::kw_sub:
Chris Lattnera676c0f2011-02-07 16:40:21 +00005087 case lltok::kw_mul:
5088 case lltok::kw_shl: {
Chris Lattnera676c0f2011-02-07 16:40:21 +00005089 bool NUW = EatIfPresent(lltok::kw_nuw);
5090 bool NSW = EatIfPresent(lltok::kw_nsw);
5091 if (!NUW) NUW = EatIfPresent(lltok::kw_nuw);
Michael Ilseman26ee2b82012-11-15 22:34:00 +00005092
Chris Lattnera676c0f2011-02-07 16:40:21 +00005093 if (ParseArithmetic(Inst, PFS, KeywordVal, 1)) return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00005094
Chris Lattnera676c0f2011-02-07 16:40:21 +00005095 if (NUW) cast<BinaryOperator>(Inst)->setHasNoUnsignedWrap(true);
5096 if (NSW) cast<BinaryOperator>(Inst)->setHasNoSignedWrap(true);
5097 return false;
Dan Gohman9c7f8082009-07-27 16:11:46 +00005098 }
Dan Gohmana5b96452009-06-04 22:49:04 +00005099 case lltok::kw_fadd:
5100 case lltok::kw_fsub:
Michael Ilseman92053172012-11-27 00:42:44 +00005101 case lltok::kw_fmul:
5102 case lltok::kw_fdiv:
5103 case lltok::kw_frem: {
5104 FastMathFlags FMF = EatFastMathFlagsIfPresent();
5105 int Res = ParseArithmetic(Inst, PFS, KeywordVal, 2);
5106 if (Res != 0)
5107 return Res;
5108 if (FMF.any())
5109 Inst->setFastMathFlags(FMF);
5110 return 0;
5111 }
Dan Gohmana5b96452009-06-04 22:49:04 +00005112
Chris Lattner35315d02011-02-06 21:44:57 +00005113 case lltok::kw_sdiv:
Chris Lattnera676c0f2011-02-07 16:40:21 +00005114 case lltok::kw_udiv:
5115 case lltok::kw_lshr:
5116 case lltok::kw_ashr: {
5117 bool Exact = EatIfPresent(lltok::kw_exact);
5118
5119 if (ParseArithmetic(Inst, PFS, KeywordVal, 1)) return true;
5120 if (Exact) cast<BinaryOperator>(Inst)->setIsExact(true);
5121 return false;
Dan Gohman9c7f8082009-07-27 16:11:46 +00005122 }
5123
Chris Lattnerac161bf2009-01-02 07:01:27 +00005124 case lltok::kw_urem:
Chris Lattner89d856e2009-03-01 00:53:13 +00005125 case lltok::kw_srem: return ParseArithmetic(Inst, PFS, KeywordVal, 1);
Chris Lattnerac161bf2009-01-02 07:01:27 +00005126 case lltok::kw_and:
5127 case lltok::kw_or:
Chris Lattner89d856e2009-03-01 00:53:13 +00005128 case lltok::kw_xor: return ParseLogical(Inst, PFS, KeywordVal);
James Molloy88eb5352015-07-10 12:52:00 +00005129 case lltok::kw_icmp: return ParseCompare(Inst, PFS, KeywordVal);
5130 case lltok::kw_fcmp: {
5131 FastMathFlags FMF = EatFastMathFlagsIfPresent();
5132 int Res = ParseCompare(Inst, PFS, KeywordVal);
5133 if (Res != 0)
5134 return Res;
5135 if (FMF.any())
5136 Inst->setFastMathFlags(FMF);
5137 return 0;
5138 }
5139
Chris Lattnerac161bf2009-01-02 07:01:27 +00005140 // Casts.
5141 case lltok::kw_trunc:
5142 case lltok::kw_zext:
5143 case lltok::kw_sext:
5144 case lltok::kw_fptrunc:
5145 case lltok::kw_fpext:
5146 case lltok::kw_bitcast:
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00005147 case lltok::kw_addrspacecast:
Chris Lattnerac161bf2009-01-02 07:01:27 +00005148 case lltok::kw_uitofp:
5149 case lltok::kw_sitofp:
5150 case lltok::kw_fptoui:
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005151 case lltok::kw_fptosi:
Chris Lattnerac161bf2009-01-02 07:01:27 +00005152 case lltok::kw_inttoptr:
Chris Lattner89d856e2009-03-01 00:53:13 +00005153 case lltok::kw_ptrtoint: return ParseCast(Inst, PFS, KeywordVal);
Chris Lattnerac161bf2009-01-02 07:01:27 +00005154 // Other.
5155 case lltok::kw_select: return ParseSelect(Inst, PFS);
Chris Lattnerb55ab542009-01-05 08:18:44 +00005156 case lltok::kw_va_arg: return ParseVA_Arg(Inst, PFS);
Chris Lattnerac161bf2009-01-02 07:01:27 +00005157 case lltok::kw_extractelement: return ParseExtractElement(Inst, PFS);
5158 case lltok::kw_insertelement: return ParseInsertElement(Inst, PFS);
5159 case lltok::kw_shufflevector: return ParseShuffleVector(Inst, PFS);
5160 case lltok::kw_phi: return ParsePHI(Inst, PFS);
Bill Wendlingfae14752011-08-12 20:24:12 +00005161 case lltok::kw_landingpad: return ParseLandingPad(Inst, PFS);
Reid Kleckner5772b772014-04-24 20:14:34 +00005162 // Call.
5163 case lltok::kw_call: return ParseCall(Inst, PFS, CallInst::TCK_None);
5164 case lltok::kw_tail: return ParseCall(Inst, PFS, CallInst::TCK_Tail);
5165 case lltok::kw_musttail: return ParseCall(Inst, PFS, CallInst::TCK_MustTail);
Akira Hatanaka5cfcce122015-11-06 23:55:38 +00005166 case lltok::kw_notail: return ParseCall(Inst, PFS, CallInst::TCK_NoTail);
Chris Lattnerac161bf2009-01-02 07:01:27 +00005167 // Memory.
Victor Hernandezc7d6a832009-10-17 00:00:19 +00005168 case lltok::kw_alloca: return ParseAlloc(Inst, PFS);
Chris Lattnerbc639292011-11-27 06:56:53 +00005169 case lltok::kw_load: return ParseLoad(Inst, PFS);
5170 case lltok::kw_store: return ParseStore(Inst, PFS);
Eli Friedman02e737b2011-08-12 22:50:01 +00005171 case lltok::kw_cmpxchg: return ParseCmpXchg(Inst, PFS);
5172 case lltok::kw_atomicrmw: return ParseAtomicRMW(Inst, PFS);
Eli Friedmanfee02c62011-07-25 23:16:38 +00005173 case lltok::kw_fence: return ParseFence(Inst, PFS);
Chris Lattnerac161bf2009-01-02 07:01:27 +00005174 case lltok::kw_getelementptr: return ParseGetElementPtr(Inst, PFS);
5175 case lltok::kw_extractvalue: return ParseExtractValue(Inst, PFS);
5176 case lltok::kw_insertvalue: return ParseInsertValue(Inst, PFS);
5177 }
5178}
5179
5180/// ParseCmpPredicate - Parse an integer or fp predicate, based on Kind.
5181bool LLParser::ParseCmpPredicate(unsigned &P, unsigned Opc) {
Nick Lewyckya21d3da2009-07-08 03:04:38 +00005182 if (Opc == Instruction::FCmp) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00005183 switch (Lex.getKind()) {
David Tweeda11edf02013-01-07 13:32:38 +00005184 default: return TokError("expected fcmp predicate (e.g. 'oeq')");
Chris Lattnerac161bf2009-01-02 07:01:27 +00005185 case lltok::kw_oeq: P = CmpInst::FCMP_OEQ; break;
5186 case lltok::kw_one: P = CmpInst::FCMP_ONE; break;
5187 case lltok::kw_olt: P = CmpInst::FCMP_OLT; break;
5188 case lltok::kw_ogt: P = CmpInst::FCMP_OGT; break;
5189 case lltok::kw_ole: P = CmpInst::FCMP_OLE; break;
5190 case lltok::kw_oge: P = CmpInst::FCMP_OGE; break;
5191 case lltok::kw_ord: P = CmpInst::FCMP_ORD; break;
5192 case lltok::kw_uno: P = CmpInst::FCMP_UNO; break;
5193 case lltok::kw_ueq: P = CmpInst::FCMP_UEQ; break;
5194 case lltok::kw_une: P = CmpInst::FCMP_UNE; break;
5195 case lltok::kw_ult: P = CmpInst::FCMP_ULT; break;
5196 case lltok::kw_ugt: P = CmpInst::FCMP_UGT; break;
5197 case lltok::kw_ule: P = CmpInst::FCMP_ULE; break;
5198 case lltok::kw_uge: P = CmpInst::FCMP_UGE; break;
5199 case lltok::kw_true: P = CmpInst::FCMP_TRUE; break;
5200 case lltok::kw_false: P = CmpInst::FCMP_FALSE; break;
5201 }
5202 } else {
5203 switch (Lex.getKind()) {
David Tweeda11edf02013-01-07 13:32:38 +00005204 default: return TokError("expected icmp predicate (e.g. 'eq')");
Chris Lattnerac161bf2009-01-02 07:01:27 +00005205 case lltok::kw_eq: P = CmpInst::ICMP_EQ; break;
5206 case lltok::kw_ne: P = CmpInst::ICMP_NE; break;
5207 case lltok::kw_slt: P = CmpInst::ICMP_SLT; break;
5208 case lltok::kw_sgt: P = CmpInst::ICMP_SGT; break;
5209 case lltok::kw_sle: P = CmpInst::ICMP_SLE; break;
5210 case lltok::kw_sge: P = CmpInst::ICMP_SGE; break;
5211 case lltok::kw_ult: P = CmpInst::ICMP_ULT; break;
5212 case lltok::kw_ugt: P = CmpInst::ICMP_UGT; break;
5213 case lltok::kw_ule: P = CmpInst::ICMP_ULE; break;
5214 case lltok::kw_uge: P = CmpInst::ICMP_UGE; break;
5215 }
5216 }
5217 Lex.Lex();
5218 return false;
5219}
5220
5221//===----------------------------------------------------------------------===//
5222// Terminator Instructions.
5223//===----------------------------------------------------------------------===//
5224
5225/// ParseRet - Parse a return instruction.
Chris Lattner596760d2009-12-29 21:25:40 +00005226/// ::= 'ret' void (',' !dbg, !1)*
5227/// ::= 'ret' TypeAndValue (',' !dbg, !1)*
Chris Lattner33de4272011-06-17 06:49:41 +00005228bool LLParser::ParseRet(Instruction *&Inst, BasicBlock *BB,
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00005229 PerFunctionState &PFS) {
5230 SMLoc TypeLoc = Lex.getLoc();
Craig Topper2617dcc2014-04-15 06:32:26 +00005231 Type *Ty = nullptr;
Chris Lattnerf880ca22009-03-09 04:49:14 +00005232 if (ParseType(Ty, true /*void allowed*/)) return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005233
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00005234 Type *ResType = PFS.getFunction().getReturnType();
Michael Ilseman26ee2b82012-11-15 22:34:00 +00005235
Chris Lattnerfdd87902009-10-05 05:54:46 +00005236 if (Ty->isVoidTy()) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00005237 if (!ResType->isVoidTy())
5238 return Error(TypeLoc, "value doesn't match function result type '" +
5239 getTypeString(ResType) + "'");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00005240
Owen Anderson55f1c092009-08-13 21:58:54 +00005241 Inst = ReturnInst::Create(Context);
Chris Lattnerac161bf2009-01-02 07:01:27 +00005242 return false;
5243 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005244
Chris Lattnerac161bf2009-01-02 07:01:27 +00005245 Value *RV;
5246 if (ParseValue(Ty, RV, PFS)) return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005247
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00005248 if (ResType != RV->getType())
5249 return Error(TypeLoc, "value doesn't match function result type '" +
5250 getTypeString(ResType) + "'");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00005251
Owen Anderson55f1c092009-08-13 21:58:54 +00005252 Inst = ReturnInst::Create(Context, RV);
Chris Lattner33de4272011-06-17 06:49:41 +00005253 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005254}
5255
Chris Lattnerac161bf2009-01-02 07:01:27 +00005256/// ParseBr
5257/// ::= 'br' TypeAndValue
5258/// ::= 'br' TypeAndValue ',' TypeAndValue ',' TypeAndValue
5259bool LLParser::ParseBr(Instruction *&Inst, PerFunctionState &PFS) {
5260 LocTy Loc, Loc2;
Chris Lattner3ed871f2009-10-27 19:13:16 +00005261 Value *Op0;
5262 BasicBlock *Op1, *Op2;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005263 if (ParseTypeAndValue(Op0, Loc, PFS)) return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005264
Chris Lattnerac161bf2009-01-02 07:01:27 +00005265 if (BasicBlock *BB = dyn_cast<BasicBlock>(Op0)) {
5266 Inst = BranchInst::Create(BB);
5267 return false;
5268 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005269
Owen Anderson55f1c092009-08-13 21:58:54 +00005270 if (Op0->getType() != Type::getInt1Ty(Context))
Chris Lattnerac161bf2009-01-02 07:01:27 +00005271 return Error(Loc, "branch condition must have 'i1' type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005272
Chris Lattnerac161bf2009-01-02 07:01:27 +00005273 if (ParseToken(lltok::comma, "expected ',' after branch condition") ||
Chris Lattner3ed871f2009-10-27 19:13:16 +00005274 ParseTypeAndBasicBlock(Op1, Loc, PFS) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00005275 ParseToken(lltok::comma, "expected ',' after true destination") ||
Chris Lattner3ed871f2009-10-27 19:13:16 +00005276 ParseTypeAndBasicBlock(Op2, Loc2, PFS))
Chris Lattnerac161bf2009-01-02 07:01:27 +00005277 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005278
Chris Lattner3ed871f2009-10-27 19:13:16 +00005279 Inst = BranchInst::Create(Op1, Op2, Op0);
Chris Lattnerac161bf2009-01-02 07:01:27 +00005280 return false;
5281}
5282
5283/// ParseSwitch
5284/// Instruction
5285/// ::= 'switch' TypeAndValue ',' TypeAndValue '[' JumpTable ']'
5286/// JumpTable
5287/// ::= (TypeAndValue ',' TypeAndValue)*
5288bool LLParser::ParseSwitch(Instruction *&Inst, PerFunctionState &PFS) {
5289 LocTy CondLoc, BBLoc;
Chris Lattner3ed871f2009-10-27 19:13:16 +00005290 Value *Cond;
5291 BasicBlock *DefaultBB;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005292 if (ParseTypeAndValue(Cond, CondLoc, PFS) ||
5293 ParseToken(lltok::comma, "expected ',' after switch condition") ||
Chris Lattner3ed871f2009-10-27 19:13:16 +00005294 ParseTypeAndBasicBlock(DefaultBB, BBLoc, PFS) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00005295 ParseToken(lltok::lsquare, "expected '[' with switch table"))
5296 return true;
5297
Duncan Sands19d0b472010-02-16 11:11:14 +00005298 if (!Cond->getType()->isIntegerTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00005299 return Error(CondLoc, "switch condition must have integer type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005300
Chris Lattnerac161bf2009-01-02 07:01:27 +00005301 // Parse the jump table pairs.
5302 SmallPtrSet<Value*, 32> SeenCases;
5303 SmallVector<std::pair<ConstantInt*, BasicBlock*>, 32> Table;
5304 while (Lex.getKind() != lltok::rsquare) {
Chris Lattner3ed871f2009-10-27 19:13:16 +00005305 Value *Constant;
5306 BasicBlock *DestBB;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005307
Chris Lattnerac161bf2009-01-02 07:01:27 +00005308 if (ParseTypeAndValue(Constant, CondLoc, PFS) ||
5309 ParseToken(lltok::comma, "expected ',' after case value") ||
Chris Lattner3ed871f2009-10-27 19:13:16 +00005310 ParseTypeAndBasicBlock(DestBB, PFS))
Chris Lattnerac161bf2009-01-02 07:01:27 +00005311 return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00005312
David Blaikie70573dc2014-11-19 07:49:26 +00005313 if (!SeenCases.insert(Constant).second)
Chris Lattnerac161bf2009-01-02 07:01:27 +00005314 return Error(CondLoc, "duplicate case value in switch");
5315 if (!isa<ConstantInt>(Constant))
5316 return Error(CondLoc, "case value is not a constant integer");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005317
Chris Lattner3ed871f2009-10-27 19:13:16 +00005318 Table.push_back(std::make_pair(cast<ConstantInt>(Constant), DestBB));
Chris Lattnerac161bf2009-01-02 07:01:27 +00005319 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005320
Chris Lattnerac161bf2009-01-02 07:01:27 +00005321 Lex.Lex(); // Eat the ']'.
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005322
Chris Lattner3ed871f2009-10-27 19:13:16 +00005323 SwitchInst *SI = SwitchInst::Create(Cond, DefaultBB, Table.size());
Chris Lattnerac161bf2009-01-02 07:01:27 +00005324 for (unsigned i = 0, e = Table.size(); i != e; ++i)
5325 SI->addCase(Table[i].first, Table[i].second);
5326 Inst = SI;
5327 return false;
5328}
5329
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00005330/// ParseIndirectBr
Chris Lattner3ed871f2009-10-27 19:13:16 +00005331/// Instruction
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00005332/// ::= 'indirectbr' TypeAndValue ',' '[' LabelList ']'
5333bool LLParser::ParseIndirectBr(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattner3ed871f2009-10-27 19:13:16 +00005334 LocTy AddrLoc;
5335 Value *Address;
5336 if (ParseTypeAndValue(Address, AddrLoc, PFS) ||
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00005337 ParseToken(lltok::comma, "expected ',' after indirectbr address") ||
5338 ParseToken(lltok::lsquare, "expected '[' with indirectbr"))
Chris Lattner3ed871f2009-10-27 19:13:16 +00005339 return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00005340
Duncan Sands19d0b472010-02-16 11:11:14 +00005341 if (!Address->getType()->isPointerTy())
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00005342 return Error(AddrLoc, "indirectbr address must have pointer type");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00005343
Chris Lattner3ed871f2009-10-27 19:13:16 +00005344 // Parse the destination list.
5345 SmallVector<BasicBlock*, 16> DestList;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00005346
Chris Lattner3ed871f2009-10-27 19:13:16 +00005347 if (Lex.getKind() != lltok::rsquare) {
5348 BasicBlock *DestBB;
5349 if (ParseTypeAndBasicBlock(DestBB, PFS))
5350 return true;
5351 DestList.push_back(DestBB);
Michael Ilseman26ee2b82012-11-15 22:34:00 +00005352
Chris Lattner3ed871f2009-10-27 19:13:16 +00005353 while (EatIfPresent(lltok::comma)) {
5354 if (ParseTypeAndBasicBlock(DestBB, PFS))
5355 return true;
5356 DestList.push_back(DestBB);
5357 }
5358 }
Michael Ilseman26ee2b82012-11-15 22:34:00 +00005359
Chris Lattner3ed871f2009-10-27 19:13:16 +00005360 if (ParseToken(lltok::rsquare, "expected ']' at end of block list"))
5361 return true;
5362
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00005363 IndirectBrInst *IBI = IndirectBrInst::Create(Address, DestList.size());
Chris Lattner3ed871f2009-10-27 19:13:16 +00005364 for (unsigned i = 0, e = DestList.size(); i != e; ++i)
5365 IBI->addDestination(DestList[i]);
5366 Inst = IBI;
5367 return false;
5368}
5369
Chris Lattnerac161bf2009-01-02 07:01:27 +00005370/// ParseInvoke
5371/// ::= 'invoke' OptionalCallingConv OptionalAttrs Type Value ParamList
5372/// OptionalAttrs 'to' TypeAndValue 'unwind' TypeAndValue
5373bool LLParser::ParseInvoke(Instruction *&Inst, PerFunctionState &PFS) {
5374 LocTy CallLoc = Lex.getLoc();
Bill Wendling50d27842012-10-15 20:35:56 +00005375 AttrBuilder RetAttrs, FnAttrs;
Bill Wendlingb32b0412013-02-08 06:32:06 +00005376 std::vector<unsigned> FwdRefAttrGrps;
Bill Wendling09bd1f72013-02-22 00:12:35 +00005377 LocTy NoBuiltinLoc;
Alexey Samsonov17a9cff2014-09-10 18:00:17 +00005378 unsigned CC;
Craig Topper2617dcc2014-04-15 06:32:26 +00005379 Type *RetType = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005380 LocTy RetTypeLoc;
5381 ValID CalleeID;
5382 SmallVector<ParamInfo, 16> ArgList;
Sanjoy Dasb513a9f2015-09-24 23:34:52 +00005383 SmallVector<OperandBundleDef, 2> BundleList;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005384
Chris Lattner3ed871f2009-10-27 19:13:16 +00005385 BasicBlock *NormalBB, *UnwindBB;
Sanjoy Dasb513a9f2015-09-24 23:34:52 +00005386 if (ParseOptionalCallingConv(CC) || ParseOptionalReturnAttrs(RetAttrs) ||
Chris Lattnerf880ca22009-03-09 04:49:14 +00005387 ParseType(RetType, RetTypeLoc, true /*void allowed*/) ||
Sanjoy Dasb513a9f2015-09-24 23:34:52 +00005388 ParseValID(CalleeID) || ParseParameterList(ArgList, PFS) ||
Bill Wendling09bd1f72013-02-22 00:12:35 +00005389 ParseFnAttributeValuePairs(FnAttrs, FwdRefAttrGrps, false,
5390 NoBuiltinLoc) ||
Sanjoy Dasb513a9f2015-09-24 23:34:52 +00005391 ParseOptionalOperandBundles(BundleList, PFS) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00005392 ParseToken(lltok::kw_to, "expected 'to' in invoke") ||
Chris Lattner3ed871f2009-10-27 19:13:16 +00005393 ParseTypeAndBasicBlock(NormalBB, PFS) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00005394 ParseToken(lltok::kw_unwind, "expected 'unwind' in invoke") ||
Chris Lattner3ed871f2009-10-27 19:13:16 +00005395 ParseTypeAndBasicBlock(UnwindBB, PFS))
Chris Lattnerac161bf2009-01-02 07:01:27 +00005396 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005397
Chris Lattnerac161bf2009-01-02 07:01:27 +00005398 // If RetType is a non-function pointer type, then this is the short syntax
5399 // for the call, which means that RetType is just the return type. Infer the
5400 // rest of the function argument types from the arguments that are present.
David Blaikie445e3fb2015-04-24 19:32:54 +00005401 FunctionType *Ty = dyn_cast<FunctionType>(RetType);
5402 if (!Ty) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00005403 // Pull out the types of all of the arguments...
Jay Foadb804a2b2011-07-12 14:06:48 +00005404 std::vector<Type*> ParamTypes;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005405 for (unsigned i = 0, e = ArgList.size(); i != e; ++i)
5406 ParamTypes.push_back(ArgList[i].V->getType());
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005407
Chris Lattnerac161bf2009-01-02 07:01:27 +00005408 if (!FunctionType::isValidReturnType(RetType))
5409 return Error(RetTypeLoc, "Invalid result type for LLVM function");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005410
Owen Anderson4056ca92009-07-29 22:17:13 +00005411 Ty = FunctionType::get(RetType, ParamTypes, false);
Chris Lattnerac161bf2009-01-02 07:01:27 +00005412 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005413
David Blaikie41ba2b42015-07-27 23:32:19 +00005414 CalleeID.FTy = Ty;
5415
Chris Lattnerac161bf2009-01-02 07:01:27 +00005416 // Look up the callee.
5417 Value *Callee;
David Blaikie445e3fb2015-04-24 19:32:54 +00005418 if (ConvertValIDToValue(PointerType::getUnqual(Ty), CalleeID, Callee, &PFS))
5419 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005420
Bill Wendling3d7b0b82012-12-19 07:18:57 +00005421 // Set up the Attribute for the function.
Reid Kleckner7f720332017-04-13 00:58:09 +00005422 SmallVector<Value *, 8> Args;
5423 SmallVector<AttributeSet, 8> ArgAttrs;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005424
Chris Lattnerac161bf2009-01-02 07:01:27 +00005425 // Loop through FunctionType's arguments and ensure they are specified
5426 // correctly. Also, gather any parameter attributes.
5427 FunctionType::param_iterator I = Ty->param_begin();
5428 FunctionType::param_iterator E = Ty->param_end();
5429 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
Craig Topper2617dcc2014-04-15 06:32:26 +00005430 Type *ExpectedTy = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005431 if (I != E) {
5432 ExpectedTy = *I++;
5433 } else if (!Ty->isVarArg()) {
5434 return Error(ArgList[i].Loc, "too many arguments specified");
5435 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005436
Chris Lattnerac161bf2009-01-02 07:01:27 +00005437 if (ExpectedTy && ExpectedTy != ArgList[i].V->getType())
5438 return Error(ArgList[i].Loc, "argument is not of expected type '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00005439 getTypeString(ExpectedTy) + "'");
Chris Lattnerac161bf2009-01-02 07:01:27 +00005440 Args.push_back(ArgList[i].V);
Reid Kleckner7f720332017-04-13 00:58:09 +00005441 ArgAttrs.push_back(ArgList[i].Attrs);
Chris Lattnerac161bf2009-01-02 07:01:27 +00005442 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005443
Chris Lattnerac161bf2009-01-02 07:01:27 +00005444 if (I != E)
5445 return Error(CallLoc, "not enough parameters specified for call");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005446
Reid Klecknereb9dd5b2017-04-10 23:31:05 +00005447 if (FnAttrs.hasAlignmentAttr())
5448 return Error(CallLoc, "invoke instructions may not have an alignment");
David Majnemer8d22abd2015-02-23 00:01:32 +00005449
Bill Wendling3d7b0b82012-12-19 07:18:57 +00005450 // Finish off the Attribute and check them
Reid Kleckner7f720332017-04-13 00:58:09 +00005451 AttributeList PAL =
5452 AttributeList::get(Context, AttributeSet::get(Context, FnAttrs),
5453 AttributeSet::get(Context, RetAttrs), ArgAttrs);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005454
Sanjoy Dasb513a9f2015-09-24 23:34:52 +00005455 InvokeInst *II =
5456 InvokeInst::Create(Ty, Callee, NormalBB, UnwindBB, Args, BundleList);
Chris Lattnerac161bf2009-01-02 07:01:27 +00005457 II->setCallingConv(CC);
5458 II->setAttributes(PAL);
Bill Wendlingb32b0412013-02-08 06:32:06 +00005459 ForwardRefAttrGroups[II] = FwdRefAttrGrps;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005460 Inst = II;
5461 return false;
5462}
5463
Bill Wendlingf891bf82011-07-31 06:30:59 +00005464/// ParseResume
5465/// ::= 'resume' TypeAndValue
5466bool LLParser::ParseResume(Instruction *&Inst, PerFunctionState &PFS) {
5467 Value *Exn; LocTy ExnLoc;
Bill Wendlingf891bf82011-07-31 06:30:59 +00005468 if (ParseTypeAndValue(Exn, ExnLoc, PFS))
5469 return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005470
Bill Wendlingf891bf82011-07-31 06:30:59 +00005471 ResumeInst *RI = ResumeInst::Create(Exn);
5472 Inst = RI;
5473 return false;
5474}
Chris Lattnerac161bf2009-01-02 07:01:27 +00005475
David Majnemer654e1302015-07-31 17:58:14 +00005476bool LLParser::ParseExceptionArgs(SmallVectorImpl<Value *> &Args,
5477 PerFunctionState &PFS) {
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00005478 if (ParseToken(lltok::lsquare, "expected '[' in catchpad/cleanuppad"))
David Majnemer654e1302015-07-31 17:58:14 +00005479 return true;
5480
5481 while (Lex.getKind() != lltok::rsquare) {
5482 // If this isn't the first argument, we need a comma.
5483 if (!Args.empty() &&
5484 ParseToken(lltok::comma, "expected ',' in argument list"))
5485 return true;
5486
5487 // Parse the argument.
5488 LocTy ArgLoc;
5489 Type *ArgTy = nullptr;
5490 if (ParseType(ArgTy, ArgLoc))
5491 return true;
5492
5493 Value *V;
5494 if (ArgTy->isMetadataTy()) {
5495 if (ParseMetadataAsValue(V, PFS))
5496 return true;
5497 } else {
5498 if (ParseValue(ArgTy, V, PFS))
5499 return true;
5500 }
5501 Args.push_back(V);
5502 }
5503
5504 Lex.Lex(); // Lex the ']'.
5505 return false;
5506}
5507
5508/// ParseCleanupRet
David Majnemer8a1c45d2015-12-12 05:38:55 +00005509/// ::= 'cleanupret' from Value unwind ('to' 'caller' | TypeAndValue)
David Majnemer654e1302015-07-31 17:58:14 +00005510bool LLParser::ParseCleanupRet(Instruction *&Inst, PerFunctionState &PFS) {
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00005511 Value *CleanupPad = nullptr;
David Majnemer654e1302015-07-31 17:58:14 +00005512
David Majnemer8a1c45d2015-12-12 05:38:55 +00005513 if (ParseToken(lltok::kw_from, "expected 'from' after cleanupret"))
5514 return true;
5515
5516 if (ParseValue(Type::getTokenTy(Context), CleanupPad, PFS))
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00005517 return true;
David Majnemer654e1302015-07-31 17:58:14 +00005518
5519 if (ParseToken(lltok::kw_unwind, "expected 'unwind' in cleanupret"))
5520 return true;
5521
5522 BasicBlock *UnwindBB = nullptr;
5523 if (Lex.getKind() == lltok::kw_to) {
5524 Lex.Lex();
5525 if (ParseToken(lltok::kw_caller, "expected 'caller' in cleanupret"))
5526 return true;
5527 } else {
5528 if (ParseTypeAndBasicBlock(UnwindBB, PFS)) {
5529 return true;
5530 }
5531 }
5532
David Majnemer8a1c45d2015-12-12 05:38:55 +00005533 Inst = CleanupReturnInst::Create(CleanupPad, UnwindBB);
David Majnemer654e1302015-07-31 17:58:14 +00005534 return false;
5535}
5536
5537/// ParseCatchRet
David Majnemer8a1c45d2015-12-12 05:38:55 +00005538/// ::= 'catchret' from Parent Value 'to' TypeAndValue
David Majnemer654e1302015-07-31 17:58:14 +00005539bool LLParser::ParseCatchRet(Instruction *&Inst, PerFunctionState &PFS) {
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00005540 Value *CatchPad = nullptr;
David Majnemer0bc0eef2015-08-15 02:46:08 +00005541
David Majnemer8a1c45d2015-12-12 05:38:55 +00005542 if (ParseToken(lltok::kw_from, "expected 'from' after catchret"))
5543 return true;
5544
5545 if (ParseValue(Type::getTokenTy(Context), CatchPad, PFS))
David Majnemer0bc0eef2015-08-15 02:46:08 +00005546 return true;
5547
David Majnemer0bc0eef2015-08-15 02:46:08 +00005548 BasicBlock *BB;
5549 if (ParseToken(lltok::kw_to, "expected 'to' in catchret") ||
5550 ParseTypeAndBasicBlock(BB, PFS))
5551 return true;
5552
David Majnemer8a1c45d2015-12-12 05:38:55 +00005553 Inst = CatchReturnInst::Create(CatchPad, BB);
5554 return false;
5555}
5556
5557/// ParseCatchSwitch
5558/// ::= 'catchswitch' within Parent
5559bool LLParser::ParseCatchSwitch(Instruction *&Inst, PerFunctionState &PFS) {
5560 Value *ParentPad;
5561 LocTy BBLoc;
5562
5563 if (ParseToken(lltok::kw_within, "expected 'within' after catchswitch"))
5564 return true;
5565
5566 if (Lex.getKind() != lltok::kw_none && Lex.getKind() != lltok::LocalVar &&
5567 Lex.getKind() != lltok::LocalVarID)
5568 return TokError("expected scope value for catchswitch");
5569
5570 if (ParseValue(Type::getTokenTy(Context), ParentPad, PFS))
5571 return true;
5572
5573 if (ParseToken(lltok::lsquare, "expected '[' with catchswitch labels"))
5574 return true;
5575
5576 SmallVector<BasicBlock *, 32> Table;
5577 do {
5578 BasicBlock *DestBB;
5579 if (ParseTypeAndBasicBlock(DestBB, PFS))
5580 return true;
5581 Table.push_back(DestBB);
5582 } while (EatIfPresent(lltok::comma));
5583
5584 if (ParseToken(lltok::rsquare, "expected ']' after catchswitch labels"))
5585 return true;
5586
5587 if (ParseToken(lltok::kw_unwind,
5588 "expected 'unwind' after catchswitch scope"))
5589 return true;
5590
5591 BasicBlock *UnwindBB = nullptr;
5592 if (EatIfPresent(lltok::kw_to)) {
5593 if (ParseToken(lltok::kw_caller, "expected 'caller' in catchswitch"))
5594 return true;
5595 } else {
5596 if (ParseTypeAndBasicBlock(UnwindBB, PFS))
5597 return true;
5598 }
5599
5600 auto *CatchSwitch =
5601 CatchSwitchInst::Create(ParentPad, UnwindBB, Table.size());
5602 for (BasicBlock *DestBB : Table)
5603 CatchSwitch->addHandler(DestBB);
5604 Inst = CatchSwitch;
David Majnemer654e1302015-07-31 17:58:14 +00005605 return false;
5606}
5607
5608/// ParseCatchPad
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00005609/// ::= 'catchpad' ParamList 'to' TypeAndValue 'unwind' TypeAndValue
David Majnemer654e1302015-07-31 17:58:14 +00005610bool LLParser::ParseCatchPad(Instruction *&Inst, PerFunctionState &PFS) {
David Majnemer8a1c45d2015-12-12 05:38:55 +00005611 Value *CatchSwitch = nullptr;
5612
5613 if (ParseToken(lltok::kw_within, "expected 'within' after catchpad"))
5614 return true;
5615
5616 if (Lex.getKind() != lltok::LocalVar && Lex.getKind() != lltok::LocalVarID)
5617 return TokError("expected scope value for catchpad");
5618
5619 if (ParseValue(Type::getTokenTy(Context), CatchSwitch, PFS))
5620 return true;
5621
David Majnemer654e1302015-07-31 17:58:14 +00005622 SmallVector<Value *, 8> Args;
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00005623 if (ParseExceptionArgs(Args, PFS))
David Majnemer654e1302015-07-31 17:58:14 +00005624 return true;
5625
David Majnemer8a1c45d2015-12-12 05:38:55 +00005626 Inst = CatchPadInst::Create(CatchSwitch, Args);
David Majnemer654e1302015-07-31 17:58:14 +00005627 return false;
5628}
5629
David Majnemer654e1302015-07-31 17:58:14 +00005630/// ParseCleanupPad
David Majnemer8a1c45d2015-12-12 05:38:55 +00005631/// ::= 'cleanuppad' within Parent ParamList
David Majnemer654e1302015-07-31 17:58:14 +00005632bool LLParser::ParseCleanupPad(Instruction *&Inst, PerFunctionState &PFS) {
David Majnemer8a1c45d2015-12-12 05:38:55 +00005633 Value *ParentPad = nullptr;
5634
5635 if (ParseToken(lltok::kw_within, "expected 'within' after cleanuppad"))
5636 return true;
5637
5638 if (Lex.getKind() != lltok::kw_none && Lex.getKind() != lltok::LocalVar &&
5639 Lex.getKind() != lltok::LocalVarID)
5640 return TokError("expected scope value for cleanuppad");
5641
5642 if (ParseValue(Type::getTokenTy(Context), ParentPad, PFS))
5643 return true;
5644
David Majnemer654e1302015-07-31 17:58:14 +00005645 SmallVector<Value *, 8> Args;
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00005646 if (ParseExceptionArgs(Args, PFS))
David Majnemer654e1302015-07-31 17:58:14 +00005647 return true;
5648
David Majnemer8a1c45d2015-12-12 05:38:55 +00005649 Inst = CleanupPadInst::Create(ParentPad, Args);
Joseph Tremoulet9ce71f72015-09-03 09:09:43 +00005650 return false;
5651}
5652
Chris Lattnerac161bf2009-01-02 07:01:27 +00005653//===----------------------------------------------------------------------===//
5654// Binary Operators.
5655//===----------------------------------------------------------------------===//
5656
5657/// ParseArithmetic
Chris Lattnereeefa9a2009-01-05 08:24:46 +00005658/// ::= ArithmeticOps TypeAndValue ',' Value
5659///
5660/// If OperandType is 0, then any FP or integer operand is allowed. If it is 1,
5661/// then any integer operand is allowed, if it is 2, any fp operand is allowed.
Chris Lattnerac161bf2009-01-02 07:01:27 +00005662bool LLParser::ParseArithmetic(Instruction *&Inst, PerFunctionState &PFS,
Chris Lattnereeefa9a2009-01-05 08:24:46 +00005663 unsigned Opc, unsigned OperandType) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00005664 LocTy Loc; Value *LHS, *RHS;
5665 if (ParseTypeAndValue(LHS, Loc, PFS) ||
5666 ParseToken(lltok::comma, "expected ',' in arithmetic operation") ||
5667 ParseValue(LHS->getType(), RHS, PFS))
5668 return true;
5669
Chris Lattnereeefa9a2009-01-05 08:24:46 +00005670 bool Valid;
5671 switch (OperandType) {
Torok Edwinfbcc6632009-07-14 16:55:14 +00005672 default: llvm_unreachable("Unknown operand type!");
Chris Lattnereeefa9a2009-01-05 08:24:46 +00005673 case 0: // int or FP.
Duncan Sands9dff9be2010-02-15 16:12:20 +00005674 Valid = LHS->getType()->isIntOrIntVectorTy() ||
5675 LHS->getType()->isFPOrFPVectorTy();
Chris Lattnereeefa9a2009-01-05 08:24:46 +00005676 break;
Duncan Sands9dff9be2010-02-15 16:12:20 +00005677 case 1: Valid = LHS->getType()->isIntOrIntVectorTy(); break;
5678 case 2: Valid = LHS->getType()->isFPOrFPVectorTy(); break;
Chris Lattnereeefa9a2009-01-05 08:24:46 +00005679 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005680
Chris Lattnereeefa9a2009-01-05 08:24:46 +00005681 if (!Valid)
5682 return Error(Loc, "invalid operand type for instruction");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005683
Chris Lattnerac161bf2009-01-02 07:01:27 +00005684 Inst = BinaryOperator::Create((Instruction::BinaryOps)Opc, LHS, RHS);
5685 return false;
5686}
5687
5688/// ParseLogical
5689/// ::= ArithmeticOps TypeAndValue ',' Value {
5690bool LLParser::ParseLogical(Instruction *&Inst, PerFunctionState &PFS,
5691 unsigned Opc) {
5692 LocTy Loc; Value *LHS, *RHS;
5693 if (ParseTypeAndValue(LHS, Loc, PFS) ||
5694 ParseToken(lltok::comma, "expected ',' in logical operation") ||
5695 ParseValue(LHS->getType(), RHS, PFS))
5696 return true;
5697
Duncan Sands9dff9be2010-02-15 16:12:20 +00005698 if (!LHS->getType()->isIntOrIntVectorTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00005699 return Error(Loc,"instruction requires integer or integer vector operands");
5700
5701 Inst = BinaryOperator::Create((Instruction::BinaryOps)Opc, LHS, RHS);
5702 return false;
5703}
5704
Chris Lattnerac161bf2009-01-02 07:01:27 +00005705/// ParseCompare
5706/// ::= 'icmp' IPredicates TypeAndValue ',' Value
5707/// ::= 'fcmp' FPredicates TypeAndValue ',' Value
Chris Lattnerac161bf2009-01-02 07:01:27 +00005708bool LLParser::ParseCompare(Instruction *&Inst, PerFunctionState &PFS,
5709 unsigned Opc) {
5710 // Parse the integer/fp comparison predicate.
5711 LocTy Loc;
5712 unsigned Pred;
5713 Value *LHS, *RHS;
5714 if (ParseCmpPredicate(Pred, Opc) ||
5715 ParseTypeAndValue(LHS, Loc, PFS) ||
5716 ParseToken(lltok::comma, "expected ',' after compare value") ||
5717 ParseValue(LHS->getType(), RHS, PFS))
5718 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005719
Chris Lattnerac161bf2009-01-02 07:01:27 +00005720 if (Opc == Instruction::FCmp) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00005721 if (!LHS->getType()->isFPOrFPVectorTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00005722 return Error(Loc, "fcmp requires floating point operands");
Dan Gohmanad1f0a12009-08-25 23:17:54 +00005723 Inst = new FCmpInst(CmpInst::Predicate(Pred), LHS, RHS);
Nick Lewyckya21d3da2009-07-08 03:04:38 +00005724 } else {
5725 assert(Opc == Instruction::ICmp && "Unknown opcode for CmpInst!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00005726 if (!LHS->getType()->isIntOrIntVectorTy() &&
Craig Topper95d23472017-07-09 07:04:00 +00005727 !LHS->getType()->isPtrOrPtrVectorTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00005728 return Error(Loc, "icmp requires integer operands");
Dan Gohmanad1f0a12009-08-25 23:17:54 +00005729 Inst = new ICmpInst(CmpInst::Predicate(Pred), LHS, RHS);
Chris Lattnerac161bf2009-01-02 07:01:27 +00005730 }
5731 return false;
5732}
5733
5734//===----------------------------------------------------------------------===//
5735// Other Instructions.
5736//===----------------------------------------------------------------------===//
5737
5738
5739/// ParseCast
5740/// ::= CastOpc TypeAndValue 'to' Type
5741bool LLParser::ParseCast(Instruction *&Inst, PerFunctionState &PFS,
5742 unsigned Opc) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00005743 LocTy Loc;
5744 Value *Op;
Craig Topper2617dcc2014-04-15 06:32:26 +00005745 Type *DestTy = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005746 if (ParseTypeAndValue(Op, Loc, PFS) ||
5747 ParseToken(lltok::kw_to, "expected 'to' after cast value") ||
5748 ParseType(DestTy))
5749 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005750
Chris Lattner89d856e2009-03-01 00:53:13 +00005751 if (!CastInst::castIsValid((Instruction::CastOps)Opc, Op, DestTy)) {
5752 CastInst::castIsValid((Instruction::CastOps)Opc, Op, DestTy);
Chris Lattnerac161bf2009-01-02 07:01:27 +00005753 return Error(Loc, "invalid cast opcode for cast from '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00005754 getTypeString(Op->getType()) + "' to '" +
5755 getTypeString(DestTy) + "'");
Chris Lattner89d856e2009-03-01 00:53:13 +00005756 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00005757 Inst = CastInst::Create((Instruction::CastOps)Opc, Op, DestTy);
5758 return false;
5759}
5760
5761/// ParseSelect
5762/// ::= 'select' TypeAndValue ',' TypeAndValue ',' TypeAndValue
5763bool LLParser::ParseSelect(Instruction *&Inst, PerFunctionState &PFS) {
5764 LocTy Loc;
5765 Value *Op0, *Op1, *Op2;
5766 if (ParseTypeAndValue(Op0, Loc, PFS) ||
5767 ParseToken(lltok::comma, "expected ',' after select condition") ||
5768 ParseTypeAndValue(Op1, PFS) ||
5769 ParseToken(lltok::comma, "expected ',' after select value") ||
5770 ParseTypeAndValue(Op2, PFS))
5771 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005772
Chris Lattnerac161bf2009-01-02 07:01:27 +00005773 if (const char *Reason = SelectInst::areInvalidOperands(Op0, Op1, Op2))
5774 return Error(Loc, Reason);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005775
Chris Lattnerac161bf2009-01-02 07:01:27 +00005776 Inst = SelectInst::Create(Op0, Op1, Op2);
5777 return false;
5778}
5779
Chris Lattnerb55ab542009-01-05 08:18:44 +00005780/// ParseVA_Arg
5781/// ::= 'va_arg' TypeAndValue ',' Type
5782bool LLParser::ParseVA_Arg(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00005783 Value *Op;
Craig Topper2617dcc2014-04-15 06:32:26 +00005784 Type *EltTy = nullptr;
Chris Lattnerb55ab542009-01-05 08:18:44 +00005785 LocTy TypeLoc;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005786 if (ParseTypeAndValue(Op, PFS) ||
5787 ParseToken(lltok::comma, "expected ',' after vaarg operand") ||
Chris Lattnerb55ab542009-01-05 08:18:44 +00005788 ParseType(EltTy, TypeLoc))
Chris Lattnerac161bf2009-01-02 07:01:27 +00005789 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005790
Chris Lattnerb55ab542009-01-05 08:18:44 +00005791 if (!EltTy->isFirstClassType())
5792 return Error(TypeLoc, "va_arg requires operand with first class type");
Chris Lattnerac161bf2009-01-02 07:01:27 +00005793
5794 Inst = new VAArgInst(Op, EltTy);
5795 return false;
5796}
5797
5798/// ParseExtractElement
5799/// ::= 'extractelement' TypeAndValue ',' TypeAndValue
5800bool LLParser::ParseExtractElement(Instruction *&Inst, PerFunctionState &PFS) {
5801 LocTy Loc;
5802 Value *Op0, *Op1;
5803 if (ParseTypeAndValue(Op0, Loc, PFS) ||
5804 ParseToken(lltok::comma, "expected ',' after extract value") ||
5805 ParseTypeAndValue(Op1, PFS))
5806 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005807
Chris Lattnerac161bf2009-01-02 07:01:27 +00005808 if (!ExtractElementInst::isValidOperands(Op0, Op1))
5809 return Error(Loc, "invalid extractelement operands");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005810
Eric Christopherc9742252009-07-25 02:28:41 +00005811 Inst = ExtractElementInst::Create(Op0, Op1);
Chris Lattnerac161bf2009-01-02 07:01:27 +00005812 return false;
5813}
5814
5815/// ParseInsertElement
5816/// ::= 'insertelement' TypeAndValue ',' TypeAndValue ',' TypeAndValue
5817bool LLParser::ParseInsertElement(Instruction *&Inst, PerFunctionState &PFS) {
5818 LocTy Loc;
5819 Value *Op0, *Op1, *Op2;
5820 if (ParseTypeAndValue(Op0, Loc, PFS) ||
5821 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
5822 ParseTypeAndValue(Op1, PFS) ||
5823 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
5824 ParseTypeAndValue(Op2, PFS))
5825 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005826
Chris Lattnerac161bf2009-01-02 07:01:27 +00005827 if (!InsertElementInst::isValidOperands(Op0, Op1, Op2))
Eric Christopherfef8db62009-07-23 01:01:32 +00005828 return Error(Loc, "invalid insertelement operands");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005829
Chris Lattnerac161bf2009-01-02 07:01:27 +00005830 Inst = InsertElementInst::Create(Op0, Op1, Op2);
5831 return false;
5832}
5833
5834/// ParseShuffleVector
5835/// ::= 'shufflevector' TypeAndValue ',' TypeAndValue ',' TypeAndValue
5836bool LLParser::ParseShuffleVector(Instruction *&Inst, PerFunctionState &PFS) {
5837 LocTy Loc;
5838 Value *Op0, *Op1, *Op2;
5839 if (ParseTypeAndValue(Op0, Loc, PFS) ||
5840 ParseToken(lltok::comma, "expected ',' after shuffle mask") ||
5841 ParseTypeAndValue(Op1, PFS) ||
5842 ParseToken(lltok::comma, "expected ',' after shuffle value") ||
5843 ParseTypeAndValue(Op2, PFS))
5844 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005845
Chris Lattnerac161bf2009-01-02 07:01:27 +00005846 if (!ShuffleVectorInst::isValidOperands(Op0, Op1, Op2))
Pete Cooperc1a6f982012-02-01 23:43:12 +00005847 return Error(Loc, "invalid shufflevector operands");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005848
Chris Lattnerac161bf2009-01-02 07:01:27 +00005849 Inst = new ShuffleVectorInst(Op0, Op1, Op2);
5850 return false;
5851}
5852
5853/// ParsePHI
Chris Lattnerc05471e2009-10-18 05:27:44 +00005854/// ::= 'phi' Type '[' Value ',' Value ']' (',' '[' Value ',' Value ']')*
Chris Lattnerf4f03422009-12-30 05:27:33 +00005855int LLParser::ParsePHI(Instruction *&Inst, PerFunctionState &PFS) {
Craig Topper2617dcc2014-04-15 06:32:26 +00005856 Type *Ty = nullptr; LocTy TypeLoc;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005857 Value *Op0, *Op1;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005858
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00005859 if (ParseType(Ty, TypeLoc) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00005860 ParseToken(lltok::lsquare, "expected '[' in phi value list") ||
5861 ParseValue(Ty, Op0, PFS) ||
5862 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
Owen Anderson55f1c092009-08-13 21:58:54 +00005863 ParseValue(Type::getLabelTy(Context), Op1, PFS) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00005864 ParseToken(lltok::rsquare, "expected ']' in phi value list"))
5865 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005866
Chris Lattnerf4f03422009-12-30 05:27:33 +00005867 bool AteExtraComma = false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005868 SmallVector<std::pair<Value*, BasicBlock*>, 16> PHIVals;
Eugene Zelenko1804a772016-08-25 00:45:04 +00005869
5870 while (true) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00005871 PHIVals.push_back(std::make_pair(Op0, cast<BasicBlock>(Op1)));
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005872
Chris Lattner3822f632009-01-02 08:05:26 +00005873 if (!EatIfPresent(lltok::comma))
Chris Lattnerac161bf2009-01-02 07:01:27 +00005874 break;
5875
Chris Lattnerf4f03422009-12-30 05:27:33 +00005876 if (Lex.getKind() == lltok::MetadataVar) {
5877 AteExtraComma = true;
Devang Patel8f842d32009-10-16 18:45:49 +00005878 break;
Chris Lattnerf4f03422009-12-30 05:27:33 +00005879 }
Devang Patel8f842d32009-10-16 18:45:49 +00005880
Chris Lattner3822f632009-01-02 08:05:26 +00005881 if (ParseToken(lltok::lsquare, "expected '[' in phi value list") ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00005882 ParseValue(Ty, Op0, PFS) ||
5883 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
Owen Anderson55f1c092009-08-13 21:58:54 +00005884 ParseValue(Type::getLabelTy(Context), Op1, PFS) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00005885 ParseToken(lltok::rsquare, "expected ']' in phi value list"))
5886 return true;
5887 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005888
Chris Lattnerac161bf2009-01-02 07:01:27 +00005889 if (!Ty->isFirstClassType())
5890 return Error(TypeLoc, "phi node must have first class type");
5891
Jay Foad52131342011-03-30 11:28:46 +00005892 PHINode *PN = PHINode::Create(Ty, PHIVals.size());
Chris Lattnerac161bf2009-01-02 07:01:27 +00005893 for (unsigned i = 0, e = PHIVals.size(); i != e; ++i)
5894 PN->addIncoming(PHIVals[i].first, PHIVals[i].second);
5895 Inst = PN;
Chris Lattnerf4f03422009-12-30 05:27:33 +00005896 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005897}
5898
Bill Wendlingfae14752011-08-12 20:24:12 +00005899/// ParseLandingPad
5900/// ::= 'landingpad' Type 'personality' TypeAndValue 'cleanup'? Clause+
5901/// Clause
5902/// ::= 'catch' TypeAndValue
5903/// ::= 'filter'
5904/// ::= 'filter' TypeAndValue ( ',' TypeAndValue )*
5905bool LLParser::ParseLandingPad(Instruction *&Inst, PerFunctionState &PFS) {
Craig Topper2617dcc2014-04-15 06:32:26 +00005906 Type *Ty = nullptr; LocTy TyLoc;
Bill Wendlingfae14752011-08-12 20:24:12 +00005907
David Majnemer7fddecc2015-06-17 20:52:32 +00005908 if (ParseType(Ty, TyLoc))
Bill Wendlingfae14752011-08-12 20:24:12 +00005909 return true;
5910
David Majnemer7fddecc2015-06-17 20:52:32 +00005911 std::unique_ptr<LandingPadInst> LP(LandingPadInst::Create(Ty, 0));
Bill Wendlingfae14752011-08-12 20:24:12 +00005912 LP->setCleanup(EatIfPresent(lltok::kw_cleanup));
5913
5914 while (Lex.getKind() == lltok::kw_catch || Lex.getKind() == lltok::kw_filter){
5915 LandingPadInst::ClauseType CT;
5916 if (EatIfPresent(lltok::kw_catch))
5917 CT = LandingPadInst::Catch;
5918 else if (EatIfPresent(lltok::kw_filter))
5919 CT = LandingPadInst::Filter;
5920 else
5921 return TokError("expected 'catch' or 'filter' clause type");
5922
Rafael Espindola4dc5dfc2014-06-04 18:51:31 +00005923 Value *V;
5924 LocTy VLoc;
Owen Andersonf8f259d2015-03-09 07:13:42 +00005925 if (ParseTypeAndValue(V, VLoc, PFS))
Bill Wendlingfae14752011-08-12 20:24:12 +00005926 return true;
Bill Wendlingfae14752011-08-12 20:24:12 +00005927
Bill Wendlinga52aa3c2011-08-12 20:52:25 +00005928 // A 'catch' type expects a non-array constant. A filter clause expects an
5929 // array constant.
5930 if (CT == LandingPadInst::Catch) {
5931 if (isa<ArrayType>(V->getType()))
5932 Error(VLoc, "'catch' clause has an invalid type");
5933 } else {
5934 if (!isa<ArrayType>(V->getType()))
5935 Error(VLoc, "'filter' clause has an invalid type");
5936 }
5937
Owen Andersonf8f259d2015-03-09 07:13:42 +00005938 Constant *CV = dyn_cast<Constant>(V);
5939 if (!CV)
5940 return Error(VLoc, "clause argument must be a constant");
5941 LP->addClause(CV);
Bill Wendlingfae14752011-08-12 20:24:12 +00005942 }
5943
Owen Andersonf8f259d2015-03-09 07:13:42 +00005944 Inst = LP.release();
Bill Wendlingfae14752011-08-12 20:24:12 +00005945 return false;
5946}
5947
Chris Lattnerac161bf2009-01-02 07:01:27 +00005948/// ParseCall
Sanjay Patelfa54ace2015-12-14 21:59:03 +00005949/// ::= 'call' OptionalFastMathFlags OptionalCallingConv
5950/// OptionalAttrs Type Value ParameterList OptionalAttrs
5951/// ::= 'tail' 'call' OptionalFastMathFlags OptionalCallingConv
5952/// OptionalAttrs Type Value ParameterList OptionalAttrs
5953/// ::= 'musttail' 'call' OptionalFastMathFlags OptionalCallingConv
5954/// OptionalAttrs Type Value ParameterList OptionalAttrs
5955/// ::= 'notail' 'call' OptionalFastMathFlags OptionalCallingConv
5956/// OptionalAttrs Type Value ParameterList OptionalAttrs
Chris Lattnerac161bf2009-01-02 07:01:27 +00005957bool LLParser::ParseCall(Instruction *&Inst, PerFunctionState &PFS,
Reid Kleckner5772b772014-04-24 20:14:34 +00005958 CallInst::TailCallKind TCK) {
Bill Wendling50d27842012-10-15 20:35:56 +00005959 AttrBuilder RetAttrs, FnAttrs;
Bill Wendlingb32b0412013-02-08 06:32:06 +00005960 std::vector<unsigned> FwdRefAttrGrps;
Michael Gottesman41748d72013-06-27 00:25:01 +00005961 LocTy BuiltinLoc;
Alexey Samsonov17a9cff2014-09-10 18:00:17 +00005962 unsigned CC;
Craig Topper2617dcc2014-04-15 06:32:26 +00005963 Type *RetType = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005964 LocTy RetTypeLoc;
5965 ValID CalleeID;
5966 SmallVector<ParamInfo, 16> ArgList;
Sanjoy Dasb513a9f2015-09-24 23:34:52 +00005967 SmallVector<OperandBundleDef, 2> BundleList;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005968 LocTy CallLoc = Lex.getLoc();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005969
Sanjay Patelfa54ace2015-12-14 21:59:03 +00005970 if (TCK != CallInst::TCK_None &&
5971 ParseToken(lltok::kw_call,
5972 "expected 'tail call', 'musttail call', or 'notail call'"))
5973 return true;
5974
5975 FastMathFlags FMF = EatFastMathFlagsIfPresent();
5976
5977 if (ParseOptionalCallingConv(CC) || ParseOptionalReturnAttrs(RetAttrs) ||
Chris Lattnerf880ca22009-03-09 04:49:14 +00005978 ParseType(RetType, RetTypeLoc, true /*void allowed*/) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00005979 ParseValID(CalleeID) ||
Reid Kleckner83498642014-08-26 00:33:28 +00005980 ParseParameterList(ArgList, PFS, TCK == CallInst::TCK_MustTail,
5981 PFS.getFunction().isVarArg()) ||
Sanjoy Dasb513a9f2015-09-24 23:34:52 +00005982 ParseFnAttributeValuePairs(FnAttrs, FwdRefAttrGrps, false, BuiltinLoc) ||
5983 ParseOptionalOperandBundles(BundleList, PFS))
Chris Lattnerac161bf2009-01-02 07:01:27 +00005984 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005985
Sanjay Patelfa54ace2015-12-14 21:59:03 +00005986 if (FMF.any() && !RetType->isFPOrFPVectorTy())
5987 return Error(CallLoc, "fast-math-flags specified for call without "
5988 "floating-point scalar or vector return type");
5989
Chris Lattnerac161bf2009-01-02 07:01:27 +00005990 // If RetType is a non-function pointer type, then this is the short syntax
5991 // for the call, which means that RetType is just the return type. Infer the
5992 // rest of the function argument types from the arguments that are present.
David Blaikie23af6482015-04-16 23:24:18 +00005993 FunctionType *Ty = dyn_cast<FunctionType>(RetType);
5994 if (!Ty) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00005995 // Pull out the types of all of the arguments...
Jay Foadb804a2b2011-07-12 14:06:48 +00005996 std::vector<Type*> ParamTypes;
Eli Friedman6cf51412010-07-24 23:06:59 +00005997 for (unsigned i = 0, e = ArgList.size(); i != e; ++i)
5998 ParamTypes.push_back(ArgList[i].V->getType());
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005999
Chris Lattnerac161bf2009-01-02 07:01:27 +00006000 if (!FunctionType::isValidReturnType(RetType))
6001 return Error(RetTypeLoc, "Invalid result type for LLVM function");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00006002
Owen Anderson4056ca92009-07-29 22:17:13 +00006003 Ty = FunctionType::get(RetType, ParamTypes, false);
Chris Lattnerac161bf2009-01-02 07:01:27 +00006004 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00006005
David Blaikie41ba2b42015-07-27 23:32:19 +00006006 CalleeID.FTy = Ty;
6007
Chris Lattnerac161bf2009-01-02 07:01:27 +00006008 // Look up the callee.
6009 Value *Callee;
David Blaikie23af6482015-04-16 23:24:18 +00006010 if (ConvertValIDToValue(PointerType::getUnqual(Ty), CalleeID, Callee, &PFS))
6011 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00006012
Bill Wendling3d7b0b82012-12-19 07:18:57 +00006013 // Set up the Attribute for the function.
Reid Klecknerc2cb5602017-04-12 00:38:00 +00006014 SmallVector<AttributeSet, 8> Attrs;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00006015
Chris Lattnerac161bf2009-01-02 07:01:27 +00006016 SmallVector<Value*, 8> Args;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00006017
Chris Lattnerac161bf2009-01-02 07:01:27 +00006018 // Loop through FunctionType's arguments and ensure they are specified
6019 // correctly. Also, gather any parameter attributes.
6020 FunctionType::param_iterator I = Ty->param_begin();
6021 FunctionType::param_iterator E = Ty->param_end();
6022 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
Craig Topper2617dcc2014-04-15 06:32:26 +00006023 Type *ExpectedTy = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00006024 if (I != E) {
6025 ExpectedTy = *I++;
6026 } else if (!Ty->isVarArg()) {
6027 return Error(ArgList[i].Loc, "too many arguments specified");
6028 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00006029
Chris Lattnerac161bf2009-01-02 07:01:27 +00006030 if (ExpectedTy && ExpectedTy != ArgList[i].V->getType())
6031 return Error(ArgList[i].Loc, "argument is not of expected type '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00006032 getTypeString(ExpectedTy) + "'");
Chris Lattnerac161bf2009-01-02 07:01:27 +00006033 Args.push_back(ArgList[i].V);
Reid Klecknereb9dd5b2017-04-10 23:31:05 +00006034 Attrs.push_back(ArgList[i].Attrs);
Chris Lattnerac161bf2009-01-02 07:01:27 +00006035 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00006036
Chris Lattnerac161bf2009-01-02 07:01:27 +00006037 if (I != E)
6038 return Error(CallLoc, "not enough parameters specified for call");
6039
Reid Klecknereb9dd5b2017-04-10 23:31:05 +00006040 if (FnAttrs.hasAlignmentAttr())
6041 return Error(CallLoc, "call instructions may not have an alignment");
David Majnemer8d22abd2015-02-23 00:01:32 +00006042
Bill Wendling3d7b0b82012-12-19 07:18:57 +00006043 // Finish off the Attribute and check them
Reid Kleckner7f720332017-04-13 00:58:09 +00006044 AttributeList PAL =
6045 AttributeList::get(Context, AttributeSet::get(Context, FnAttrs),
6046 AttributeSet::get(Context, RetAttrs), Attrs);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00006047
Sanjoy Dasb513a9f2015-09-24 23:34:52 +00006048 CallInst *CI = CallInst::Create(Ty, Callee, Args, BundleList);
Reid Kleckner5772b772014-04-24 20:14:34 +00006049 CI->setTailCallKind(TCK);
Chris Lattnerac161bf2009-01-02 07:01:27 +00006050 CI->setCallingConv(CC);
Sanjay Patelfa54ace2015-12-14 21:59:03 +00006051 if (FMF.any())
6052 CI->setFastMathFlags(FMF);
Chris Lattnerac161bf2009-01-02 07:01:27 +00006053 CI->setAttributes(PAL);
Bill Wendlingb32b0412013-02-08 06:32:06 +00006054 ForwardRefAttrGroups[CI] = FwdRefAttrGrps;
Chris Lattnerac161bf2009-01-02 07:01:27 +00006055 Inst = CI;
6056 return false;
6057}
6058
6059//===----------------------------------------------------------------------===//
6060// Memory Instructions.
6061//===----------------------------------------------------------------------===//
6062
6063/// ParseAlloc
Manman Ren9bfd0d02016-04-01 21:41:15 +00006064/// ::= 'alloca' 'inalloca'? 'swifterror'? Type (',' TypeAndValue)?
6065/// (',' 'align' i32)?
Chris Lattner78103722011-06-17 03:16:47 +00006066int LLParser::ParseAlloc(Instruction *&Inst, PerFunctionState &PFS) {
Craig Topper2617dcc2014-04-15 06:32:26 +00006067 Value *Size = nullptr;
Matt Arsenault3c1fc762017-04-10 22:27:50 +00006068 LocTy SizeLoc, TyLoc, ASLoc;
Chris Lattnerac161bf2009-01-02 07:01:27 +00006069 unsigned Alignment = 0;
Matt Arsenault3c1fc762017-04-10 22:27:50 +00006070 unsigned AddrSpace = 0;
Craig Topper2617dcc2014-04-15 06:32:26 +00006071 Type *Ty = nullptr;
David Majnemerc4ab61c2014-03-09 06:41:58 +00006072
6073 bool IsInAlloca = EatIfPresent(lltok::kw_inalloca);
Manman Ren9bfd0d02016-04-01 21:41:15 +00006074 bool IsSwiftError = EatIfPresent(lltok::kw_swifterror);
David Majnemerc4ab61c2014-03-09 06:41:58 +00006075
David Majnemera3b0eb22015-02-16 08:38:03 +00006076 if (ParseType(Ty, TyLoc)) return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00006077
David Majnemera3b0eb22015-02-16 08:38:03 +00006078 if (Ty->isFunctionTy() || !PointerType::isValidElementType(Ty))
6079 return Error(TyLoc, "invalid type for alloca");
David Majnemerfad5a312015-02-11 09:13:11 +00006080
Chris Lattnerb2f39502009-12-30 05:44:30 +00006081 bool AteExtraComma = false;
Chris Lattner3822f632009-01-02 08:05:26 +00006082 if (EatIfPresent(lltok::comma)) {
David Majnemerc4ab61c2014-03-09 06:41:58 +00006083 if (Lex.getKind() == lltok::kw_align) {
Matt Arsenault3c1fc762017-04-10 22:27:50 +00006084 if (ParseOptionalAlignment(Alignment))
6085 return true;
6086 if (ParseOptionalCommaAddrSpace(AddrSpace, ASLoc, AteExtraComma))
6087 return true;
6088 } else if (Lex.getKind() == lltok::kw_addrspace) {
6089 ASLoc = Lex.getLoc();
6090 if (ParseOptionalAddrSpace(AddrSpace))
6091 return true;
David Majnemerc4ab61c2014-03-09 06:41:58 +00006092 } else if (Lex.getKind() == lltok::MetadataVar) {
6093 AteExtraComma = true;
6094 } else {
6095 if (ParseTypeAndValue(Size, SizeLoc, PFS) ||
Matt Arsenault3c1fc762017-04-10 22:27:50 +00006096 ParseOptionalCommaAlign(Alignment, AteExtraComma) ||
6097 (!AteExtraComma &&
6098 ParseOptionalCommaAddrSpace(AddrSpace, ASLoc, AteExtraComma)))
David Majnemerc4ab61c2014-03-09 06:41:58 +00006099 return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00006100 }
6101 }
6102
Dan Gohman2140a742010-05-28 01:14:11 +00006103 if (Size && !Size->getType()->isIntegerTy())
6104 return Error(SizeLoc, "element count must have integer type");
Chris Lattnerac161bf2009-01-02 07:01:27 +00006105
Matt Arsenault3c1fc762017-04-10 22:27:50 +00006106 const DataLayout &DL = M->getDataLayout();
6107 unsigned AS = DL.getAllocaAddrSpace();
6108 if (AS != AddrSpace) {
6109 // TODO: In the future it should be possible to specify addrspace per-alloca.
6110 return Error(ASLoc, "address space must match datalayout");
6111 }
6112
6113 AllocaInst *AI = new AllocaInst(Ty, AS, Size, Alignment);
Reid Kleckner436c42e2014-01-17 23:58:17 +00006114 AI->setUsedWithInAlloca(IsInAlloca);
Manman Ren9bfd0d02016-04-01 21:41:15 +00006115 AI->setSwiftError(IsSwiftError);
Reid Kleckner436c42e2014-01-17 23:58:17 +00006116 Inst = AI;
Chris Lattner78103722011-06-17 03:16:47 +00006117 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerac161bf2009-01-02 07:01:27 +00006118}
6119
6120/// ParseLoad
Eli Friedman02e737b2011-08-12 22:50:01 +00006121/// ::= 'load' 'volatile'? TypeAndValue (',' 'align' i32)?
Michael Ilseman26ee2b82012-11-15 22:34:00 +00006122/// ::= 'load' 'atomic' 'volatile'? TypeAndValue
Eli Friedman02e737b2011-08-12 22:50:01 +00006123/// 'singlethread'? AtomicOrdering (',' 'align' i32)?
Chris Lattnerbc639292011-11-27 06:56:53 +00006124int LLParser::ParseLoad(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00006125 Value *Val; LocTy Loc;
Devang Patelea8a4b92009-09-17 23:04:48 +00006126 unsigned Alignment = 0;
Chris Lattnerb2f39502009-12-30 05:44:30 +00006127 bool AteExtraComma = false;
Eli Friedman02e737b2011-08-12 22:50:01 +00006128 bool isAtomic = false;
JF Bastien800f87a2016-04-06 21:19:33 +00006129 AtomicOrdering Ordering = AtomicOrdering::NotAtomic;
Konstantin Zhuravlyovbb80d3e2017-07-11 22:23:00 +00006130 SyncScope::ID SSID = SyncScope::System;
Eli Friedman02e737b2011-08-12 22:50:01 +00006131
6132 if (Lex.getKind() == lltok::kw_atomic) {
Eli Friedman02e737b2011-08-12 22:50:01 +00006133 isAtomic = true;
6134 Lex.Lex();
6135 }
6136
Chris Lattnerbc639292011-11-27 06:56:53 +00006137 bool isVolatile = false;
Eli Friedman02e737b2011-08-12 22:50:01 +00006138 if (Lex.getKind() == lltok::kw_volatile) {
Eli Friedman02e737b2011-08-12 22:50:01 +00006139 isVolatile = true;
6140 Lex.Lex();
6141 }
6142
David Blaikie15d9a4c2015-04-06 20:59:48 +00006143 Type *Ty;
David Blaikiea79ac142015-02-27 21:17:42 +00006144 LocTy ExplicitTypeLoc = Lex.getLoc();
6145 if (ParseType(Ty) ||
6146 ParseToken(lltok::comma, "expected comma after load's type") ||
6147 ParseTypeAndValue(Val, Loc, PFS) ||
Konstantin Zhuravlyovbb80d3e2017-07-11 22:23:00 +00006148 ParseScopeAndOrdering(isAtomic, SSID, Ordering) ||
Chris Lattnerb2f39502009-12-30 05:44:30 +00006149 ParseOptionalCommaAlign(Alignment, AteExtraComma))
6150 return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00006151
David Blaikie15d9a4c2015-04-06 20:59:48 +00006152 if (!Val->getType()->isPointerTy() || !Ty->isFirstClassType())
Chris Lattnerac161bf2009-01-02 07:01:27 +00006153 return Error(Loc, "load operand must be a pointer to a first class type");
Eli Friedman59b66882011-08-09 23:02:53 +00006154 if (isAtomic && !Alignment)
6155 return Error(Loc, "atomic load must have explicit non-zero alignment");
JF Bastien800f87a2016-04-06 21:19:33 +00006156 if (Ordering == AtomicOrdering::Release ||
6157 Ordering == AtomicOrdering::AcquireRelease)
Eli Friedman59b66882011-08-09 23:02:53 +00006158 return Error(Loc, "atomic load cannot use Release ordering");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00006159
David Blaikiea79ac142015-02-27 21:17:42 +00006160 if (Ty != cast<PointerType>(Val->getType())->getElementType())
6161 return Error(ExplicitTypeLoc,
6162 "explicit pointee type doesn't match operand's pointee type");
6163
Konstantin Zhuravlyovbb80d3e2017-07-11 22:23:00 +00006164 Inst = new LoadInst(Ty, Val, "", isVolatile, Alignment, Ordering, SSID);
Chris Lattnerb2f39502009-12-30 05:44:30 +00006165 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerac161bf2009-01-02 07:01:27 +00006166}
6167
6168/// ParseStore
Eli Friedman02e737b2011-08-12 22:50:01 +00006169
6170/// ::= 'store' 'volatile'? TypeAndValue ',' TypeAndValue (',' 'align' i32)?
6171/// ::= 'store' 'atomic' 'volatile'? TypeAndValue ',' TypeAndValue
Eli Friedman59b66882011-08-09 23:02:53 +00006172/// 'singlethread'? AtomicOrdering (',' 'align' i32)?
Chris Lattnerbc639292011-11-27 06:56:53 +00006173int LLParser::ParseStore(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00006174 Value *Val, *Ptr; LocTy Loc, PtrLoc;
Devang Patelea8a4b92009-09-17 23:04:48 +00006175 unsigned Alignment = 0;
Chris Lattnerb2f39502009-12-30 05:44:30 +00006176 bool AteExtraComma = false;
Eli Friedman02e737b2011-08-12 22:50:01 +00006177 bool isAtomic = false;
JF Bastien800f87a2016-04-06 21:19:33 +00006178 AtomicOrdering Ordering = AtomicOrdering::NotAtomic;
Konstantin Zhuravlyovbb80d3e2017-07-11 22:23:00 +00006179 SyncScope::ID SSID = SyncScope::System;
Eli Friedman02e737b2011-08-12 22:50:01 +00006180
6181 if (Lex.getKind() == lltok::kw_atomic) {
Eli Friedman02e737b2011-08-12 22:50:01 +00006182 isAtomic = true;
6183 Lex.Lex();
6184 }
6185
Chris Lattnerbc639292011-11-27 06:56:53 +00006186 bool isVolatile = false;
Eli Friedman02e737b2011-08-12 22:50:01 +00006187 if (Lex.getKind() == lltok::kw_volatile) {
Eli Friedman02e737b2011-08-12 22:50:01 +00006188 isVolatile = true;
6189 Lex.Lex();
6190 }
6191
Chris Lattnerac161bf2009-01-02 07:01:27 +00006192 if (ParseTypeAndValue(Val, Loc, PFS) ||
6193 ParseToken(lltok::comma, "expected ',' after store operand") ||
Chris Lattnerb2f39502009-12-30 05:44:30 +00006194 ParseTypeAndValue(Ptr, PtrLoc, PFS) ||
Konstantin Zhuravlyovbb80d3e2017-07-11 22:23:00 +00006195 ParseScopeAndOrdering(isAtomic, SSID, Ordering) ||
Chris Lattnerb2f39502009-12-30 05:44:30 +00006196 ParseOptionalCommaAlign(Alignment, AteExtraComma))
Chris Lattnerac161bf2009-01-02 07:01:27 +00006197 return true;
Devang Patelea8a4b92009-09-17 23:04:48 +00006198
Duncan Sands19d0b472010-02-16 11:11:14 +00006199 if (!Ptr->getType()->isPointerTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00006200 return Error(PtrLoc, "store operand must be a pointer");
6201 if (!Val->getType()->isFirstClassType())
6202 return Error(Loc, "store operand must be a first class value");
6203 if (cast<PointerType>(Ptr->getType())->getElementType() != Val->getType())
6204 return Error(Loc, "stored value and pointer type do not match");
Eli Friedman59b66882011-08-09 23:02:53 +00006205 if (isAtomic && !Alignment)
6206 return Error(Loc, "atomic store must have explicit non-zero alignment");
JF Bastien800f87a2016-04-06 21:19:33 +00006207 if (Ordering == AtomicOrdering::Acquire ||
6208 Ordering == AtomicOrdering::AcquireRelease)
Eli Friedman59b66882011-08-09 23:02:53 +00006209 return Error(Loc, "atomic store cannot use Acquire ordering");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00006210
Konstantin Zhuravlyovbb80d3e2017-07-11 22:23:00 +00006211 Inst = new StoreInst(Val, Ptr, isVolatile, Alignment, Ordering, SSID);
Chris Lattnerb2f39502009-12-30 05:44:30 +00006212 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerac161bf2009-01-02 07:01:27 +00006213}
6214
Eli Friedmanc9a551e2011-07-28 21:48:00 +00006215/// ParseCmpXchg
Tim Northover420a2162014-06-13 14:24:07 +00006216/// ::= 'cmpxchg' 'weak'? 'volatile'? TypeAndValue ',' TypeAndValue ','
6217/// TypeAndValue 'singlethread'? AtomicOrdering AtomicOrdering
Eli Friedman02e737b2011-08-12 22:50:01 +00006218int LLParser::ParseCmpXchg(Instruction *&Inst, PerFunctionState &PFS) {
Eli Friedmanc9a551e2011-07-28 21:48:00 +00006219 Value *Ptr, *Cmp, *New; LocTy PtrLoc, CmpLoc, NewLoc;
6220 bool AteExtraComma = false;
JF Bastien800f87a2016-04-06 21:19:33 +00006221 AtomicOrdering SuccessOrdering = AtomicOrdering::NotAtomic;
6222 AtomicOrdering FailureOrdering = AtomicOrdering::NotAtomic;
Konstantin Zhuravlyovbb80d3e2017-07-11 22:23:00 +00006223 SyncScope::ID SSID = SyncScope::System;
Eli Friedman02e737b2011-08-12 22:50:01 +00006224 bool isVolatile = false;
Tim Northover420a2162014-06-13 14:24:07 +00006225 bool isWeak = false;
6226
6227 if (EatIfPresent(lltok::kw_weak))
6228 isWeak = true;
Eli Friedman02e737b2011-08-12 22:50:01 +00006229
6230 if (EatIfPresent(lltok::kw_volatile))
6231 isVolatile = true;
6232
Eli Friedmanc9a551e2011-07-28 21:48:00 +00006233 if (ParseTypeAndValue(Ptr, PtrLoc, PFS) ||
6234 ParseToken(lltok::comma, "expected ',' after cmpxchg address") ||
6235 ParseTypeAndValue(Cmp, CmpLoc, PFS) ||
6236 ParseToken(lltok::comma, "expected ',' after cmpxchg cmp operand") ||
6237 ParseTypeAndValue(New, NewLoc, PFS) ||
Konstantin Zhuravlyovbb80d3e2017-07-11 22:23:00 +00006238 ParseScopeAndOrdering(true /*Always atomic*/, SSID, SuccessOrdering) ||
Tim Northovere94a5182014-03-11 10:48:52 +00006239 ParseOrdering(FailureOrdering))
Eli Friedmanc9a551e2011-07-28 21:48:00 +00006240 return true;
6241
JF Bastien800f87a2016-04-06 21:19:33 +00006242 if (SuccessOrdering == AtomicOrdering::Unordered ||
6243 FailureOrdering == AtomicOrdering::Unordered)
Eli Friedmanc9a551e2011-07-28 21:48:00 +00006244 return TokError("cmpxchg cannot be unordered");
JF Bastien800f87a2016-04-06 21:19:33 +00006245 if (isStrongerThan(FailureOrdering, SuccessOrdering))
6246 return TokError("cmpxchg failure argument shall be no stronger than the "
6247 "success argument");
6248 if (FailureOrdering == AtomicOrdering::Release ||
6249 FailureOrdering == AtomicOrdering::AcquireRelease)
6250 return TokError(
6251 "cmpxchg failure ordering cannot include release semantics");
Eli Friedmanc9a551e2011-07-28 21:48:00 +00006252 if (!Ptr->getType()->isPointerTy())
6253 return Error(PtrLoc, "cmpxchg operand must be a pointer");
6254 if (cast<PointerType>(Ptr->getType())->getElementType() != Cmp->getType())
6255 return Error(CmpLoc, "compare value and pointer type do not match");
6256 if (cast<PointerType>(Ptr->getType())->getElementType() != New->getType())
6257 return Error(NewLoc, "new value and pointer type do not match");
Philip Reames1960cfd2016-02-19 00:06:41 +00006258 if (!New->getType()->isFirstClassType())
6259 return Error(NewLoc, "cmpxchg operand must be a first class value");
Tim Northover420a2162014-06-13 14:24:07 +00006260 AtomicCmpXchgInst *CXI = new AtomicCmpXchgInst(
Konstantin Zhuravlyovbb80d3e2017-07-11 22:23:00 +00006261 Ptr, Cmp, New, SuccessOrdering, FailureOrdering, SSID);
Eli Friedmanc9a551e2011-07-28 21:48:00 +00006262 CXI->setVolatile(isVolatile);
Tim Northover420a2162014-06-13 14:24:07 +00006263 CXI->setWeak(isWeak);
Eli Friedmanc9a551e2011-07-28 21:48:00 +00006264 Inst = CXI;
6265 return AteExtraComma ? InstExtraComma : InstNormal;
6266}
6267
6268/// ParseAtomicRMW
Eli Friedman02e737b2011-08-12 22:50:01 +00006269/// ::= 'atomicrmw' 'volatile'? BinOp TypeAndValue ',' TypeAndValue
6270/// 'singlethread'? AtomicOrdering
6271int LLParser::ParseAtomicRMW(Instruction *&Inst, PerFunctionState &PFS) {
Eli Friedmanc9a551e2011-07-28 21:48:00 +00006272 Value *Ptr, *Val; LocTy PtrLoc, ValLoc;
6273 bool AteExtraComma = false;
JF Bastien800f87a2016-04-06 21:19:33 +00006274 AtomicOrdering Ordering = AtomicOrdering::NotAtomic;
Konstantin Zhuravlyovbb80d3e2017-07-11 22:23:00 +00006275 SyncScope::ID SSID = SyncScope::System;
Eli Friedman02e737b2011-08-12 22:50:01 +00006276 bool isVolatile = false;
Eli Friedmanc9a551e2011-07-28 21:48:00 +00006277 AtomicRMWInst::BinOp Operation;
Eli Friedman02e737b2011-08-12 22:50:01 +00006278
6279 if (EatIfPresent(lltok::kw_volatile))
6280 isVolatile = true;
6281
Eli Friedmanc9a551e2011-07-28 21:48:00 +00006282 switch (Lex.getKind()) {
6283 default: return TokError("expected binary operation in atomicrmw");
6284 case lltok::kw_xchg: Operation = AtomicRMWInst::Xchg; break;
6285 case lltok::kw_add: Operation = AtomicRMWInst::Add; break;
6286 case lltok::kw_sub: Operation = AtomicRMWInst::Sub; break;
6287 case lltok::kw_and: Operation = AtomicRMWInst::And; break;
6288 case lltok::kw_nand: Operation = AtomicRMWInst::Nand; break;
6289 case lltok::kw_or: Operation = AtomicRMWInst::Or; break;
6290 case lltok::kw_xor: Operation = AtomicRMWInst::Xor; break;
6291 case lltok::kw_max: Operation = AtomicRMWInst::Max; break;
6292 case lltok::kw_min: Operation = AtomicRMWInst::Min; break;
6293 case lltok::kw_umax: Operation = AtomicRMWInst::UMax; break;
6294 case lltok::kw_umin: Operation = AtomicRMWInst::UMin; break;
6295 }
6296 Lex.Lex(); // Eat the operation.
6297
6298 if (ParseTypeAndValue(Ptr, PtrLoc, PFS) ||
6299 ParseToken(lltok::comma, "expected ',' after atomicrmw address") ||
6300 ParseTypeAndValue(Val, ValLoc, PFS) ||
Konstantin Zhuravlyovbb80d3e2017-07-11 22:23:00 +00006301 ParseScopeAndOrdering(true /*Always atomic*/, SSID, Ordering))
Eli Friedmanc9a551e2011-07-28 21:48:00 +00006302 return true;
6303
JF Bastien800f87a2016-04-06 21:19:33 +00006304 if (Ordering == AtomicOrdering::Unordered)
Eli Friedmanc9a551e2011-07-28 21:48:00 +00006305 return TokError("atomicrmw cannot be unordered");
6306 if (!Ptr->getType()->isPointerTy())
6307 return Error(PtrLoc, "atomicrmw operand must be a pointer");
6308 if (cast<PointerType>(Ptr->getType())->getElementType() != Val->getType())
6309 return Error(ValLoc, "atomicrmw value and pointer type do not match");
6310 if (!Val->getType()->isIntegerTy())
6311 return Error(ValLoc, "atomicrmw operand must be an integer");
6312 unsigned Size = Val->getType()->getPrimitiveSizeInBits();
6313 if (Size < 8 || (Size & (Size - 1)))
6314 return Error(ValLoc, "atomicrmw operand must be power-of-two byte-sized"
6315 " integer");
6316
6317 AtomicRMWInst *RMWI =
Konstantin Zhuravlyovbb80d3e2017-07-11 22:23:00 +00006318 new AtomicRMWInst(Operation, Ptr, Val, Ordering, SSID);
Eli Friedmanc9a551e2011-07-28 21:48:00 +00006319 RMWI->setVolatile(isVolatile);
6320 Inst = RMWI;
6321 return AteExtraComma ? InstExtraComma : InstNormal;
6322}
6323
Eli Friedmanfee02c62011-07-25 23:16:38 +00006324/// ParseFence
6325/// ::= 'fence' 'singlethread'? AtomicOrdering
6326int LLParser::ParseFence(Instruction *&Inst, PerFunctionState &PFS) {
JF Bastien800f87a2016-04-06 21:19:33 +00006327 AtomicOrdering Ordering = AtomicOrdering::NotAtomic;
Konstantin Zhuravlyovbb80d3e2017-07-11 22:23:00 +00006328 SyncScope::ID SSID = SyncScope::System;
6329 if (ParseScopeAndOrdering(true /*Always atomic*/, SSID, Ordering))
Eli Friedmanfee02c62011-07-25 23:16:38 +00006330 return true;
6331
JF Bastien800f87a2016-04-06 21:19:33 +00006332 if (Ordering == AtomicOrdering::Unordered)
Eli Friedmanfee02c62011-07-25 23:16:38 +00006333 return TokError("fence cannot be unordered");
JF Bastien800f87a2016-04-06 21:19:33 +00006334 if (Ordering == AtomicOrdering::Monotonic)
Eli Friedmanfee02c62011-07-25 23:16:38 +00006335 return TokError("fence cannot be monotonic");
6336
Konstantin Zhuravlyovbb80d3e2017-07-11 22:23:00 +00006337 Inst = new FenceInst(Context, Ordering, SSID);
Eli Friedmanfee02c62011-07-25 23:16:38 +00006338 return InstNormal;
6339}
6340
Chris Lattnerac161bf2009-01-02 07:01:27 +00006341/// ParseGetElementPtr
Dan Gohman1639c392009-07-27 21:53:46 +00006342/// ::= 'getelementptr' 'inbounds'? TypeAndValue (',' TypeAndValue)*
Chris Lattnerf4f03422009-12-30 05:27:33 +00006343int LLParser::ParseGetElementPtr(Instruction *&Inst, PerFunctionState &PFS) {
Craig Topper2617dcc2014-04-15 06:32:26 +00006344 Value *Ptr = nullptr;
6345 Value *Val = nullptr;
Nadav Rotem3924cb02011-12-05 06:29:09 +00006346 LocTy Loc, EltLoc;
Dan Gohman1639c392009-07-27 21:53:46 +00006347
Dan Gohman16cbbe42009-07-29 15:58:36 +00006348 bool InBounds = EatIfPresent(lltok::kw_inbounds);
Dan Gohman1639c392009-07-27 21:53:46 +00006349
David Blaikie79e6c742015-02-27 19:29:02 +00006350 Type *Ty = nullptr;
6351 LocTy ExplicitTypeLoc = Lex.getLoc();
6352 if (ParseType(Ty) ||
6353 ParseToken(lltok::comma, "expected comma after getelementptr's type") ||
6354 ParseTypeAndValue(Ptr, Loc, PFS))
6355 return true;
6356
Eli Benderskyd9806682013-04-22 17:03:42 +00006357 Type *BaseType = Ptr->getType();
6358 PointerType *BasePointerType = dyn_cast<PointerType>(BaseType->getScalarType());
6359 if (!BasePointerType)
Chris Lattnerac161bf2009-01-02 07:01:27 +00006360 return Error(Loc, "base of getelementptr must be a pointer");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00006361
David Blaikie8d757942015-03-09 23:08:44 +00006362 if (Ty != BasePointerType->getElementType())
6363 return Error(ExplicitTypeLoc,
6364 "explicit pointee type doesn't match operand's pointee type");
6365
Chris Lattnerac161bf2009-01-02 07:01:27 +00006366 SmallVector<Value*, 16> Indices;
Chris Lattnerf4f03422009-12-30 05:27:33 +00006367 bool AteExtraComma = false;
Elena Demikhovsky37a4da82015-07-09 07:42:48 +00006368 // GEP returns a vector of pointers if at least one of parameters is a vector.
6369 // All vector parameters should have the same vector width.
6370 unsigned GEPWidth = BaseType->isVectorTy() ?
6371 BaseType->getVectorNumElements() : 0;
6372
Chris Lattner3822f632009-01-02 08:05:26 +00006373 while (EatIfPresent(lltok::comma)) {
Chris Lattnerf4f03422009-12-30 05:27:33 +00006374 if (Lex.getKind() == lltok::MetadataVar) {
6375 AteExtraComma = true;
Devang Patel52b17452009-10-13 18:49:55 +00006376 break;
Chris Lattnerf4f03422009-12-30 05:27:33 +00006377 }
Chris Lattner3822f632009-01-02 08:05:26 +00006378 if (ParseTypeAndValue(Val, EltLoc, PFS)) return true;
Craig Topper95d23472017-07-09 07:04:00 +00006379 if (!Val->getType()->isIntOrIntVectorTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00006380 return Error(EltLoc, "getelementptr index must be an integer");
Elena Demikhovsky37a4da82015-07-09 07:42:48 +00006381
Nadav Rotem3924cb02011-12-05 06:29:09 +00006382 if (Val->getType()->isVectorTy()) {
Elena Demikhovsky37a4da82015-07-09 07:42:48 +00006383 unsigned ValNumEl = Val->getType()->getVectorNumElements();
6384 if (GEPWidth && GEPWidth != ValNumEl)
Nadav Rotem3924cb02011-12-05 06:29:09 +00006385 return Error(EltLoc,
6386 "getelementptr vector index has a wrong number of elements");
Elena Demikhovsky37a4da82015-07-09 07:42:48 +00006387 GEPWidth = ValNumEl;
Nadav Rotem3924cb02011-12-05 06:29:09 +00006388 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00006389 Indices.push_back(Val);
6390 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00006391
Craig Toppere3dcce92015-08-01 22:20:21 +00006392 SmallPtrSet<Type*, 4> Visited;
David Blaikied33bad32015-04-17 22:32:13 +00006393 if (!Indices.empty() && !Ty->isSized(&Visited))
Eli Benderskyd9806682013-04-22 17:03:42 +00006394 return Error(Loc, "base element of getelementptr must be sized");
6395
David Blaikied33bad32015-04-17 22:32:13 +00006396 if (!GetElementPtrInst::getIndexedType(Ty, Indices))
Chris Lattnerac161bf2009-01-02 07:01:27 +00006397 return Error(Loc, "invalid getelementptr indices");
David Blaikiecd7b97e2015-03-14 21:11:24 +00006398 Inst = GetElementPtrInst::Create(Ty, Ptr, Indices);
Dan Gohman1639c392009-07-27 21:53:46 +00006399 if (InBounds)
Dan Gohman1b849082009-09-07 23:54:19 +00006400 cast<GetElementPtrInst>(Inst)->setIsInBounds(true);
Chris Lattnerf4f03422009-12-30 05:27:33 +00006401 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerac161bf2009-01-02 07:01:27 +00006402}
6403
6404/// ParseExtractValue
6405/// ::= 'extractvalue' TypeAndValue (',' uint32)+
Chris Lattnerf4f03422009-12-30 05:27:33 +00006406int LLParser::ParseExtractValue(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00006407 Value *Val; LocTy Loc;
6408 SmallVector<unsigned, 4> Indices;
Chris Lattnerf4f03422009-12-30 05:27:33 +00006409 bool AteExtraComma;
Chris Lattnerac161bf2009-01-02 07:01:27 +00006410 if (ParseTypeAndValue(Val, Loc, PFS) ||
Chris Lattnerf4f03422009-12-30 05:27:33 +00006411 ParseIndexList(Indices, AteExtraComma))
Chris Lattnerac161bf2009-01-02 07:01:27 +00006412 return true;
6413
Chris Lattner392be582010-02-12 20:49:41 +00006414 if (!Val->getType()->isAggregateType())
6415 return Error(Loc, "extractvalue operand must be aggregate type");
Chris Lattnerac161bf2009-01-02 07:01:27 +00006416
Jay Foad57aa6362011-07-13 10:26:04 +00006417 if (!ExtractValueInst::getIndexedType(Val->getType(), Indices))
Chris Lattnerac161bf2009-01-02 07:01:27 +00006418 return Error(Loc, "invalid indices for extractvalue");
Jay Foad57aa6362011-07-13 10:26:04 +00006419 Inst = ExtractValueInst::Create(Val, Indices);
Chris Lattnerf4f03422009-12-30 05:27:33 +00006420 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerac161bf2009-01-02 07:01:27 +00006421}
6422
6423/// ParseInsertValue
6424/// ::= 'insertvalue' TypeAndValue ',' TypeAndValue (',' uint32)+
Chris Lattnerf4f03422009-12-30 05:27:33 +00006425int LLParser::ParseInsertValue(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00006426 Value *Val0, *Val1; LocTy Loc0, Loc1;
6427 SmallVector<unsigned, 4> Indices;
Chris Lattnerf4f03422009-12-30 05:27:33 +00006428 bool AteExtraComma;
Chris Lattnerac161bf2009-01-02 07:01:27 +00006429 if (ParseTypeAndValue(Val0, Loc0, PFS) ||
6430 ParseToken(lltok::comma, "expected comma after insertvalue operand") ||
6431 ParseTypeAndValue(Val1, Loc1, PFS) ||
Chris Lattnerf4f03422009-12-30 05:27:33 +00006432 ParseIndexList(Indices, AteExtraComma))
Chris Lattnerac161bf2009-01-02 07:01:27 +00006433 return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00006434
Chris Lattner392be582010-02-12 20:49:41 +00006435 if (!Val0->getType()->isAggregateType())
6436 return Error(Loc0, "insertvalue operand must be aggregate type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00006437
David Majnemer30074532015-02-11 07:43:58 +00006438 Type *IndexedType = ExtractValueInst::getIndexedType(Val0->getType(), Indices);
6439 if (!IndexedType)
Chris Lattnerac161bf2009-01-02 07:01:27 +00006440 return Error(Loc0, "invalid indices for insertvalue");
David Majnemer30074532015-02-11 07:43:58 +00006441 if (IndexedType != Val1->getType())
6442 return Error(Loc1, "insertvalue operand and field disagree in type: '" +
6443 getTypeString(Val1->getType()) + "' instead of '" +
6444 getTypeString(IndexedType) + "'");
Jay Foad57aa6362011-07-13 10:26:04 +00006445 Inst = InsertValueInst::Create(Val0, Val1, Indices);
Chris Lattnerf4f03422009-12-30 05:27:33 +00006446 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerac161bf2009-01-02 07:01:27 +00006447}
Nick Lewycky49f89192009-04-04 07:22:01 +00006448
6449//===----------------------------------------------------------------------===//
6450// Embedded metadata.
6451//===----------------------------------------------------------------------===//
6452
6453/// ParseMDNodeVector
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00006454/// ::= { Element (',' Element)* }
Nick Lewyckyb8f9b7a2009-05-10 20:57:05 +00006455/// Element
6456/// ::= 'null' | TypeAndValue
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00006457bool LLParser::ParseMDNodeVector(SmallVectorImpl<Metadata *> &Elts) {
David Majnemer06f960d2014-12-11 20:44:09 +00006458 if (ParseToken(lltok::lbrace, "expected '{' here"))
6459 return true;
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00006460
Dan Gohman1e0213a2010-07-13 19:33:27 +00006461 // Check for an empty list.
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00006462 if (EatIfPresent(lltok::rbrace))
Dan Gohman1e0213a2010-07-13 19:33:27 +00006463 return false;
6464
Nick Lewycky49f89192009-04-04 07:22:01 +00006465 do {
Chris Lattnera01ddfc2009-12-30 04:42:57 +00006466 // Null is a special case since it is typeless.
6467 if (EatIfPresent(lltok::kw_null)) {
Craig Topper2617dcc2014-04-15 06:32:26 +00006468 Elts.push_back(nullptr);
Chris Lattnera01ddfc2009-12-30 04:42:57 +00006469 continue;
Nick Lewyckyb8f9b7a2009-05-10 20:57:05 +00006470 }
Michael Ilseman26ee2b82012-11-15 22:34:00 +00006471
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00006472 Metadata *MD;
6473 if (ParseMetadata(MD, nullptr))
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00006474 return true;
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00006475 Elts.push_back(MD);
Nick Lewycky49f89192009-04-04 07:22:01 +00006476 } while (EatIfPresent(lltok::comma));
6477
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00006478 return ParseToken(lltok::rbrace, "expected end of metadata node");
Nick Lewycky49f89192009-04-04 07:22:01 +00006479}
Duncan P. N. Exon Smith0a448fb2014-08-19 21:30:15 +00006480
6481//===----------------------------------------------------------------------===//
6482// Use-list order directives.
6483//===----------------------------------------------------------------------===//
6484bool LLParser::sortUseListOrder(Value *V, ArrayRef<unsigned> Indexes,
6485 SMLoc Loc) {
6486 if (V->use_empty())
6487 return Error(Loc, "value has no uses");
6488
6489 unsigned NumUses = 0;
6490 SmallDenseMap<const Use *, unsigned, 16> Order;
6491 for (const Use &U : V->uses()) {
6492 if (++NumUses > Indexes.size())
6493 break;
6494 Order[&U] = Indexes[NumUses - 1];
6495 }
6496 if (NumUses < 2)
6497 return Error(Loc, "value only has one use");
6498 if (Order.size() != Indexes.size() || NumUses > Indexes.size())
6499 return Error(Loc, "wrong number of indexes, expected " +
6500 Twine(std::distance(V->use_begin(), V->use_end())));
6501
6502 V->sortUseList([&](const Use &L, const Use &R) {
6503 return Order.lookup(&L) < Order.lookup(&R);
6504 });
6505 return false;
6506}
6507
6508/// ParseUseListOrderIndexes
6509/// ::= '{' uint32 (',' uint32)+ '}'
6510bool LLParser::ParseUseListOrderIndexes(SmallVectorImpl<unsigned> &Indexes) {
6511 SMLoc Loc = Lex.getLoc();
6512 if (ParseToken(lltok::lbrace, "expected '{' here"))
6513 return true;
6514 if (Lex.getKind() == lltok::rbrace)
6515 return Lex.Error("expected non-empty list of uselistorder indexes");
6516
6517 // Use Offset, Max, and IsOrdered to check consistency of indexes. The
6518 // indexes should be distinct numbers in the range [0, size-1], and should
6519 // not be in order.
6520 unsigned Offset = 0;
6521 unsigned Max = 0;
6522 bool IsOrdered = true;
6523 assert(Indexes.empty() && "Expected empty order vector");
6524 do {
6525 unsigned Index;
6526 if (ParseUInt32(Index))
6527 return true;
6528
6529 // Update consistency checks.
6530 Offset += Index - Indexes.size();
6531 Max = std::max(Max, Index);
6532 IsOrdered &= Index == Indexes.size();
6533
6534 Indexes.push_back(Index);
6535 } while (EatIfPresent(lltok::comma));
6536
6537 if (ParseToken(lltok::rbrace, "expected '}' here"))
6538 return true;
6539
6540 if (Indexes.size() < 2)
6541 return Error(Loc, "expected >= 2 uselistorder indexes");
6542 if (Offset != 0 || Max >= Indexes.size())
6543 return Error(Loc, "expected distinct uselistorder indexes in range [0, size)");
6544 if (IsOrdered)
6545 return Error(Loc, "expected uselistorder indexes to change the order");
6546
6547 return false;
6548}
6549
6550/// ParseUseListOrder
6551/// ::= 'uselistorder' Type Value ',' UseListOrderIndexes
6552bool LLParser::ParseUseListOrder(PerFunctionState *PFS) {
6553 SMLoc Loc = Lex.getLoc();
6554 if (ParseToken(lltok::kw_uselistorder, "expected uselistorder directive"))
6555 return true;
6556
6557 Value *V;
6558 SmallVector<unsigned, 16> Indexes;
6559 if (ParseTypeAndValue(V, PFS) ||
6560 ParseToken(lltok::comma, "expected comma in uselistorder directive") ||
6561 ParseUseListOrderIndexes(Indexes))
6562 return true;
6563
6564 return sortUseListOrder(V, Indexes, Loc);
6565}
6566
6567/// ParseUseListOrderBB
6568/// ::= 'uselistorder_bb' @foo ',' %bar ',' UseListOrderIndexes
6569bool LLParser::ParseUseListOrderBB() {
6570 assert(Lex.getKind() == lltok::kw_uselistorder_bb);
6571 SMLoc Loc = Lex.getLoc();
6572 Lex.Lex();
6573
6574 ValID Fn, Label;
6575 SmallVector<unsigned, 16> Indexes;
6576 if (ParseValID(Fn) ||
6577 ParseToken(lltok::comma, "expected comma in uselistorder_bb directive") ||
6578 ParseValID(Label) ||
6579 ParseToken(lltok::comma, "expected comma in uselistorder_bb directive") ||
6580 ParseUseListOrderIndexes(Indexes))
6581 return true;
6582
6583 // Check the function.
6584 GlobalValue *GV;
6585 if (Fn.Kind == ValID::t_GlobalName)
6586 GV = M->getNamedValue(Fn.StrVal);
6587 else if (Fn.Kind == ValID::t_GlobalID)
6588 GV = Fn.UIntVal < NumberedVals.size() ? NumberedVals[Fn.UIntVal] : nullptr;
6589 else
6590 return Error(Fn.Loc, "expected function name in uselistorder_bb");
6591 if (!GV)
6592 return Error(Fn.Loc, "invalid function forward reference in uselistorder_bb");
6593 auto *F = dyn_cast<Function>(GV);
6594 if (!F)
6595 return Error(Fn.Loc, "expected function name in uselistorder_bb");
6596 if (F->isDeclaration())
6597 return Error(Fn.Loc, "invalid declaration in uselistorder_bb");
6598
6599 // Check the basic block.
6600 if (Label.Kind == ValID::t_LocalID)
6601 return Error(Label.Loc, "invalid numeric label in uselistorder_bb");
6602 if (Label.Kind != ValID::t_LocalName)
6603 return Error(Label.Loc, "expected basic block name in uselistorder_bb");
Mehdi Aminia53d49e2016-09-17 06:00:02 +00006604 Value *V = F->getValueSymbolTable()->lookup(Label.StrVal);
Duncan P. N. Exon Smith0a448fb2014-08-19 21:30:15 +00006605 if (!V)
6606 return Error(Label.Loc, "invalid basic block in uselistorder_bb");
6607 if (!isa<BasicBlock>(V))
6608 return Error(Label.Loc, "expected basic block in uselistorder_bb");
6609
6610 return sortUseListOrder(V, Indexes, Loc);
6611}