blob: a1bb860219222b317db97cc2ac21791a0b14eb02 [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 {
Craig Topper2617dcc2014-04-15 06:32:26 +0000646 MDNode *N = nullptr;
Reid Kleckner6d353342017-08-23 20:31:27 +0000647 // Parse DIExpressions inline as a special case. They are still MDNodes,
648 // so they can still appear in named metadata. Remove this logic if they
649 // become plain Metadata.
650 if (Lex.getKind() == lltok::MetadataVar &&
651 Lex.getStrVal() == "DIExpression") {
652 if (ParseDIExpression(N, /*IsDistinct=*/false))
653 return true;
654 } else if (ParseToken(lltok::exclaim, "Expected '!' here") ||
655 ParseMDNodeID(N)) {
656 return true;
657 }
Dan Gohman2637cc12010-07-21 23:38:33 +0000658 NMD->addOperand(N);
Dan Gohmanafd69cf2010-07-13 19:42:44 +0000659 } while (EatIfPresent(lltok::comma));
Devang Patelbe626972009-07-29 00:34:02 +0000660
Rafael Espindolac7818fb2015-05-26 20:37:36 +0000661 return ParseToken(lltok::rbrace, "expected end of metadata node");
Devang Patelbe626972009-07-29 00:34:02 +0000662}
663
Devang Patel39e64d42009-07-01 19:21:12 +0000664/// ParseStandaloneMetadata:
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000665/// !42 = !{...}
Devang Patel39e64d42009-07-01 19:21:12 +0000666bool LLParser::ParseStandaloneMetadata() {
Chris Lattner1eed2d62009-12-30 04:56:59 +0000667 assert(Lex.getKind() == lltok::exclaim);
Devang Patel39e64d42009-07-01 19:21:12 +0000668 Lex.Lex();
669 unsigned MetadataID = 0;
Devang Patel39e64d42009-07-01 19:21:12 +0000670
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000671 MDNode *Init;
Chris Lattner278bc952009-12-29 22:40:21 +0000672 if (ParseUInt32(MetadataID) ||
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +0000673 ParseToken(lltok::equal, "expected '=' here"))
674 return true;
675
676 // Detect common error, from old metadata syntax.
677 if (Lex.getKind() == lltok::Type)
678 return TokError("unexpected type in metadata definition");
679
Duncan P. N. Exon Smith090a19b2015-01-08 22:38:29 +0000680 bool IsDistinct = EatIfPresent(lltok::kw_distinct);
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +0000681 if (Lex.getKind() == lltok::MetadataVar) {
682 if (ParseSpecializedMDNode(Init, IsDistinct))
683 return true;
684 } else if (ParseToken(lltok::exclaim, "Expected '!' here") ||
685 ParseMDTuple(Init, IsDistinct))
Devang Patele059ba6e2009-07-23 01:07:34 +0000686 return true;
687
Chris Lattnerfc58af22009-12-30 04:51:58 +0000688 // See if this was forward referenced, if so, handle it.
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000689 auto FI = ForwardRefMDNodes.find(MetadataID);
Devang Pateld2541152009-07-08 19:23:54 +0000690 if (FI != ForwardRefMDNodes.end()) {
Duncan P. N. Exon Smith7d823132015-01-19 21:30:18 +0000691 FI->second.first->replaceAllUsesWith(Init);
Devang Pateld2541152009-07-08 19:23:54 +0000692 ForwardRefMDNodes.erase(FI);
Michael Ilseman26ee2b82012-11-15 22:34:00 +0000693
Chris Lattnerfc58af22009-12-30 04:51:58 +0000694 assert(NumberedMetadata[MetadataID] == Init && "Tracking VH didn't work");
695 } else {
David Majnemer19b51052015-02-11 07:43:56 +0000696 if (NumberedMetadata.count(MetadataID))
Chris Lattnerfc58af22009-12-30 04:51:58 +0000697 return TokError("Metadata id is already used");
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000698 NumberedMetadata[MetadataID].reset(Init);
Devang Pateld2541152009-07-08 19:23:54 +0000699 }
700
Devang Patel39e64d42009-07-01 19:21:12 +0000701 return false;
702}
703
Duncan P. N. Exon Smithb80de102014-05-07 22:57:20 +0000704static bool isValidVisibilityForLinkage(unsigned V, unsigned L) {
705 return !GlobalValue::isLocalLinkage((GlobalValue::LinkageTypes)L) ||
706 (GlobalValue::VisibilityTypes)V == GlobalValue::DefaultVisibility;
707}
708
Dmitry Polukhina3d5b0b2016-04-05 08:47:51 +0000709/// parseIndirectSymbol:
Rafael Espindola464fe022014-07-30 22:51:54 +0000710/// ::= GlobalVar '=' OptionalLinkage OptionalVisibility
711/// OptionalDLLStorageClass OptionalThreadLocal
Dmitry Polukhina1feff72016-04-07 12:32:19 +0000712/// OptionalUnnamedAddr 'alias|ifunc' IndirectSymbol
Rafael Espindola6b238632014-05-16 19:35:39 +0000713///
Dmitry Polukhina3d5b0b2016-04-05 08:47:51 +0000714/// IndirectSymbol
Chris Lattner4c73d7a2009-04-25 21:26:00 +0000715/// ::= TypeAndValue
Chris Lattnerac161bf2009-01-02 07:01:27 +0000716///
Eric Christopher536f0a92015-05-28 23:07:39 +0000717/// Everything through OptionalUnnamedAddr has already been parsed.
Chris Lattnerac161bf2009-01-02 07:01:27 +0000718///
Peter Collingbourne96efdd62016-06-14 21:01:22 +0000719bool LLParser::parseIndirectSymbol(
720 const std::string &Name, LocTy NameLoc, unsigned L, unsigned Visibility,
721 unsigned DLLStorageClass, GlobalVariable::ThreadLocalMode TLM,
722 GlobalVariable::UnnamedAddr UnnamedAddr) {
Dmitry Polukhina3d5b0b2016-04-05 08:47:51 +0000723 bool IsAlias;
724 if (Lex.getKind() == lltok::kw_alias)
725 IsAlias = true;
Dmitry Polukhina1feff72016-04-07 12:32:19 +0000726 else if (Lex.getKind() == lltok::kw_ifunc)
727 IsAlias = false;
Dmitry Polukhina3d5b0b2016-04-05 08:47:51 +0000728 else
Dmitry Polukhina1feff72016-04-07 12:32:19 +0000729 llvm_unreachable("Not an alias or ifunc!");
Chris Lattnerac161bf2009-01-02 07:01:27 +0000730 Lex.Lex();
Chris Lattnerac161bf2009-01-02 07:01:27 +0000731
Rafael Espindola78527052013-10-06 15:10:43 +0000732 GlobalValue::LinkageTypes Linkage = (GlobalValue::LinkageTypes) L;
733
Dmitry Polukhina3d5b0b2016-04-05 08:47:51 +0000734 if(IsAlias && !GlobalAlias::isValidLinkage(Linkage))
Rafael Espindola464fe022014-07-30 22:51:54 +0000735 return Error(NameLoc, "invalid linkage type for alias");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000736
Duncan P. N. Exon Smithb80de102014-05-07 22:57:20 +0000737 if (!isValidVisibilityForLinkage(Visibility, L))
Rafael Espindola464fe022014-07-30 22:51:54 +0000738 return Error(NameLoc,
Duncan P. N. Exon Smithb80de102014-05-07 22:57:20 +0000739 "symbol with local linkage must have default visibility");
740
David Blaikie2f408302015-09-11 03:22:04 +0000741 Type *Ty;
742 LocTy ExplicitTypeLoc = Lex.getLoc();
743 if (ParseType(Ty) ||
Dmitry Polukhina1feff72016-04-07 12:32:19 +0000744 ParseToken(lltok::comma, "expected comma after alias or ifunc's type"))
David Blaikie2f408302015-09-11 03:22:04 +0000745 return true;
746
Rafael Espindola64c1e182014-06-03 02:41:57 +0000747 Constant *Aliasee;
748 LocTy AliaseeLoc = Lex.getLoc();
749 if (Lex.getKind() != lltok::kw_bitcast &&
750 Lex.getKind() != lltok::kw_getelementptr &&
751 Lex.getKind() != lltok::kw_addrspacecast &&
752 Lex.getKind() != lltok::kw_inttoptr) {
753 if (ParseGlobalTypeAndValue(Aliasee))
Rafael Espindola6b238632014-05-16 19:35:39 +0000754 return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000755 } else {
Rafael Espindola64c1e182014-06-03 02:41:57 +0000756 // The bitcast dest type is not present, it is implied by the dest type.
757 ValID ID;
758 if (ParseValID(ID))
759 return true;
760 if (ID.Kind != ValID::t_Constant)
761 return Error(AliaseeLoc, "invalid aliasee");
762 Aliasee = ID.ConstantVal;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000763 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000764
Rafael Espindola64c1e182014-06-03 02:41:57 +0000765 Type *AliaseeType = Aliasee->getType();
766 auto *PTy = dyn_cast<PointerType>(AliaseeType);
767 if (!PTy)
Dmitry Polukhina1feff72016-04-07 12:32:19 +0000768 return Error(AliaseeLoc, "An alias or ifunc must have pointer type");
David Blaikie16a2f3e2015-09-14 18:01:59 +0000769 unsigned AddrSpace = PTy->getAddressSpace();
Chris Lattnerac161bf2009-01-02 07:01:27 +0000770
Dmitry Polukhina3d5b0b2016-04-05 08:47:51 +0000771 if (IsAlias && Ty != PTy->getElementType())
David Blaikie2f408302015-09-11 03:22:04 +0000772 return Error(
773 ExplicitTypeLoc,
774 "explicit pointee type doesn't match operand's pointee type");
775
Dmitry Polukhina3d5b0b2016-04-05 08:47:51 +0000776 if (!IsAlias && !PTy->getElementType()->isFunctionTy())
777 return Error(
778 ExplicitTypeLoc,
779 "explicit pointee type should be a function type");
780
Peter Collingbourne463ff6d2015-11-25 02:54:07 +0000781 GlobalValue *GVal = nullptr;
782
783 // See if the alias was forward referenced, if so, prepare to replace the
784 // forward reference.
785 if (!Name.empty()) {
786 GVal = M->getNamedValue(Name);
787 if (GVal) {
788 if (!ForwardRefVals.erase(Name))
789 return Error(NameLoc, "redefinition of global '@" + Name + "'");
790 }
791 } else {
792 auto I = ForwardRefValIDs.find(NumberedVals.size());
793 if (I != ForwardRefValIDs.end()) {
794 GVal = I->second.first;
795 ForwardRefValIDs.erase(I);
796 }
797 }
798
Chris Lattnerac161bf2009-01-02 07:01:27 +0000799 // Okay, create the alias but do not insert it into the module yet.
Dmitry Polukhina3d5b0b2016-04-05 08:47:51 +0000800 std::unique_ptr<GlobalIndirectSymbol> GA;
801 if (IsAlias)
802 GA.reset(GlobalAlias::create(Ty, AddrSpace,
803 (GlobalValue::LinkageTypes)Linkage, Name,
804 Aliasee, /*Parent*/ nullptr));
805 else
Dmitry Polukhina1feff72016-04-07 12:32:19 +0000806 GA.reset(GlobalIFunc::create(Ty, AddrSpace,
807 (GlobalValue::LinkageTypes)Linkage, Name,
808 Aliasee, /*Parent*/ nullptr));
Rafael Espindola59f7eba2014-05-28 18:15:43 +0000809 GA->setThreadLocalMode(TLM);
Chris Lattnerac161bf2009-01-02 07:01:27 +0000810 GA->setVisibility((GlobalValue::VisibilityTypes)Visibility);
Nico Rieck7157bb72014-01-14 15:22:47 +0000811 GA->setDLLStorageClass((GlobalValue::DLLStorageClassTypes)DLLStorageClass);
Rafael Espindola42a4c9f2014-06-06 01:20:28 +0000812 GA->setUnnamedAddr(UnnamedAddr);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000813
Rafael Espindola54fc2982015-06-17 17:53:31 +0000814 if (Name.empty())
815 NumberedVals.push_back(GA.get());
816
Peter Collingbourne463ff6d2015-11-25 02:54:07 +0000817 if (GVal) {
818 // Verify that types agree.
819 if (GVal->getType() != GA->getType())
820 return Error(
821 ExplicitTypeLoc,
822 "forward reference and definition of alias have different types");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000823
Chris Lattnerac161bf2009-01-02 07:01:27 +0000824 // If they agree, just RAUW the old value with the alias and remove the
825 // forward ref info.
Peter Collingbourne463ff6d2015-11-25 02:54:07 +0000826 GVal->replaceAllUsesWith(GA.get());
827 GVal->eraseFromParent();
Chris Lattnerac161bf2009-01-02 07:01:27 +0000828 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000829
Chris Lattnerac161bf2009-01-02 07:01:27 +0000830 // Insert into the module, we know its name won't collide now.
Dmitry Polukhina3d5b0b2016-04-05 08:47:51 +0000831 if (IsAlias)
832 M->getAliasList().push_back(cast<GlobalAlias>(GA.get()));
833 else
Dmitry Polukhina1feff72016-04-07 12:32:19 +0000834 M->getIFuncList().push_back(cast<GlobalIFunc>(GA.get()));
Benjamin Kramer1dc34b42010-10-16 11:28:23 +0000835 assert(GA->getName() == Name && "Should not be a name conflict!");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000836
Rafael Espindolaaa273822014-05-09 21:49:17 +0000837 // The module owns this now
838 GA.release();
839
Chris Lattnerac161bf2009-01-02 07:01:27 +0000840 return false;
841}
842
843/// ParseGlobal
Nico Rieck7157bb72014-01-14 15:22:47 +0000844/// ::= GlobalVar '=' OptionalLinkage OptionalVisibility OptionalDLLStorageClass
Eric Christopher536f0a92015-05-28 23:07:39 +0000845/// OptionalThreadLocal OptionalUnnamedAddr OptionalAddrSpace
Javed Absarf3d79042017-05-11 12:28:08 +0000846/// OptionalExternallyInitialized GlobalType Type Const OptionalAttrs
Nico Rieck7157bb72014-01-14 15:22:47 +0000847/// ::= OptionalLinkage OptionalVisibility OptionalDLLStorageClass
Eric Christopher536f0a92015-05-28 23:07:39 +0000848/// OptionalThreadLocal OptionalUnnamedAddr OptionalAddrSpace
Javed Absarf3d79042017-05-11 12:28:08 +0000849/// OptionalExternallyInitialized GlobalType Type Const OptionalAttrs
Chris Lattnerac161bf2009-01-02 07:01:27 +0000850///
Eric Christopher536f0a92015-05-28 23:07:39 +0000851/// Everything up to and including OptionalUnnamedAddr has been parsed
David Majnemerc4ab61c2014-03-09 06:41:58 +0000852/// already.
Chris Lattnerac161bf2009-01-02 07:01:27 +0000853///
854bool LLParser::ParseGlobal(const std::string &Name, LocTy NameLoc,
855 unsigned Linkage, bool HasLinkage,
Rafael Espindola59f7eba2014-05-28 18:15:43 +0000856 unsigned Visibility, unsigned DLLStorageClass,
Rafael Espindola42a4c9f2014-06-06 01:20:28 +0000857 GlobalVariable::ThreadLocalMode TLM,
Peter Collingbourne96efdd62016-06-14 21:01:22 +0000858 GlobalVariable::UnnamedAddr UnnamedAddr) {
Duncan P. N. Exon Smithb80de102014-05-07 22:57:20 +0000859 if (!isValidVisibilityForLinkage(Visibility, Linkage))
860 return Error(NameLoc,
861 "symbol with local linkage must have default visibility");
862
Chris Lattnerac161bf2009-01-02 07:01:27 +0000863 unsigned AddrSpace;
Rafael Espindola42a4c9f2014-06-06 01:20:28 +0000864 bool IsConstant, IsExternallyInitialized;
Michael Gottesman27e7ef32013-02-05 05:57:38 +0000865 LocTy IsExternallyInitializedLoc;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000866 LocTy TyLoc;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000867
Craig Topper2617dcc2014-04-15 06:32:26 +0000868 Type *Ty = nullptr;
Rafael Espindola59f7eba2014-05-28 18:15:43 +0000869 if (ParseOptionalAddrSpace(AddrSpace) ||
Michael Gottesman27e7ef32013-02-05 05:57:38 +0000870 ParseOptionalToken(lltok::kw_externally_initialized,
871 IsExternallyInitialized,
872 &IsExternallyInitializedLoc) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +0000873 ParseGlobalType(IsConstant) ||
874 ParseType(Ty, TyLoc))
875 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000876
Chris Lattnerac161bf2009-01-02 07:01:27 +0000877 // If the linkage is specified and is external, then no initializer is
878 // present.
Craig Topper2617dcc2014-04-15 06:32:26 +0000879 Constant *Init = nullptr;
Rafael Espindola4787ba32016-05-11 13:51:39 +0000880 if (!HasLinkage ||
881 !GlobalValue::isValidDeclarationLinkage(
882 (GlobalValue::LinkageTypes)Linkage)) {
Chris Lattnerac161bf2009-01-02 07:01:27 +0000883 if (ParseGlobalValue(Ty, Init))
884 return true;
885 }
886
David Majnemer49b3d9b2015-02-16 08:41:08 +0000887 if (Ty->isFunctionTy() || !PointerType::isValidElementType(Ty))
Chris Lattnerc9e1b482009-02-08 20:00:15 +0000888 return Error(TyLoc, "invalid type for global variable");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000889
David Majnemer598bd052014-12-09 05:56:09 +0000890 GlobalValue *GVal = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000891
892 // See if the global was forward referenced, if so, use the global.
Chris Lattner1f386b82009-02-02 07:24:28 +0000893 if (!Name.empty()) {
David Majnemer598bd052014-12-09 05:56:09 +0000894 GVal = M->getNamedValue(Name);
895 if (GVal) {
Peter Collingbourne463ff6d2015-11-25 02:54:07 +0000896 if (!ForwardRefVals.erase(Name))
Chris Lattnere38317f2009-10-25 23:22:50 +0000897 return Error(NameLoc, "redefinition of global '@" + Name + "'");
Chris Lattnere38317f2009-10-25 23:22:50 +0000898 }
Chris Lattnerac161bf2009-01-02 07:01:27 +0000899 } else {
David Blaikie9ebdc692015-09-21 21:07:50 +0000900 auto I = ForwardRefValIDs.find(NumberedVals.size());
Chris Lattnerac161bf2009-01-02 07:01:27 +0000901 if (I != ForwardRefValIDs.end()) {
David Majnemer598bd052014-12-09 05:56:09 +0000902 GVal = I->second.first;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000903 ForwardRefValIDs.erase(I);
904 }
905 }
906
David Majnemer598bd052014-12-09 05:56:09 +0000907 GlobalVariable *GV;
908 if (!GVal) {
Craig Topper2617dcc2014-04-15 06:32:26 +0000909 GV = new GlobalVariable(*M, Ty, false, GlobalValue::ExternalLinkage, nullptr,
910 Name, nullptr, GlobalVariable::NotThreadLocal,
Hans Wennborgcbe34b42012-06-23 11:37:03 +0000911 AddrSpace);
Chris Lattnerac161bf2009-01-02 07:01:27 +0000912 } else {
David Blaikie8f27ae42015-05-13 22:55:01 +0000913 if (GVal->getValueType() != Ty)
Chris Lattnerac161bf2009-01-02 07:01:27 +0000914 return Error(TyLoc,
915 "forward reference and definition of global have different types");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000916
David Majnemer598bd052014-12-09 05:56:09 +0000917 GV = cast<GlobalVariable>(GVal);
918
Chris Lattnerac161bf2009-01-02 07:01:27 +0000919 // Move the forward-reference to the correct spot in the module.
920 M->getGlobalList().splice(M->global_end(), M->getGlobalList(), GV);
921 }
922
923 if (Name.empty())
924 NumberedVals.push_back(GV);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000925
Chris Lattnerac161bf2009-01-02 07:01:27 +0000926 // Set the parsed properties on the global.
927 if (Init)
928 GV->setInitializer(Init);
929 GV->setConstant(IsConstant);
930 GV->setLinkage((GlobalValue::LinkageTypes)Linkage);
931 GV->setVisibility((GlobalValue::VisibilityTypes)Visibility);
Nico Rieck7157bb72014-01-14 15:22:47 +0000932 GV->setDLLStorageClass((GlobalValue::DLLStorageClassTypes)DLLStorageClass);
Michael Gottesman27e7ef32013-02-05 05:57:38 +0000933 GV->setExternallyInitialized(IsExternallyInitialized);
Hans Wennborgcbe34b42012-06-23 11:37:03 +0000934 GV->setThreadLocalMode(TLM);
Rafael Espindola45e6c192011-01-08 16:42:36 +0000935 GV->setUnnamedAddr(UnnamedAddr);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000936
Chris Lattnerac161bf2009-01-02 07:01:27 +0000937 // Parse attributes on the global.
938 while (Lex.getKind() == lltok::comma) {
939 Lex.Lex();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000940
Chris Lattnerac161bf2009-01-02 07:01:27 +0000941 if (Lex.getKind() == lltok::kw_section) {
942 Lex.Lex();
943 GV->setSection(Lex.getStrVal());
944 if (ParseToken(lltok::StringConstant, "expected global section string"))
945 return true;
946 } else if (Lex.getKind() == lltok::kw_align) {
947 unsigned Alignment;
948 if (ParseOptionalAlignment(Alignment)) return true;
949 GV->setAlignment(Alignment);
Peter Collingbournecceae7f2016-05-31 23:01:54 +0000950 } else if (Lex.getKind() == lltok::MetadataVar) {
951 if (ParseGlobalObjectMetadataAttachment(*GV))
952 return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000953 } else {
David Majnemerdad0a642014-06-27 18:19:56 +0000954 Comdat *C;
Rafael Espindola83a362c2015-01-06 22:55:16 +0000955 if (parseOptionalComdat(Name, C))
David Majnemerdad0a642014-06-27 18:19:56 +0000956 return true;
957 if (C)
958 GV->setComdat(C);
959 else
960 return TokError("unknown global variable property!");
Chris Lattnerac161bf2009-01-02 07:01:27 +0000961 }
962 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000963
Javed Absarf3d79042017-05-11 12:28:08 +0000964 AttrBuilder Attrs;
965 LocTy BuiltinLoc;
966 std::vector<unsigned> FwdRefAttrGrps;
967 if (ParseFnAttributeValuePairs(Attrs, FwdRefAttrGrps, false, BuiltinLoc))
968 return true;
969 if (Attrs.hasAttributes() || !FwdRefAttrGrps.empty()) {
970 GV->setAttributes(AttributeSet::get(Context, Attrs));
971 ForwardRefAttrGroups[GV] = FwdRefAttrGrps;
972 }
973
Chris Lattnerac161bf2009-01-02 07:01:27 +0000974 return false;
975}
976
Bill Wendling63b88192013-02-06 06:52:58 +0000977/// ParseUnnamedAttrGrp
Bill Wendlinga7c38772013-02-09 15:48:49 +0000978/// ::= 'attributes' AttrGrpID '=' '{' AttrValPair+ '}'
Bill Wendling63b88192013-02-06 06:52:58 +0000979bool LLParser::ParseUnnamedAttrGrp() {
Bill Wendlinga7c38772013-02-09 15:48:49 +0000980 assert(Lex.getKind() == lltok::kw_attributes);
Bill Wendling63b88192013-02-06 06:52:58 +0000981 LocTy AttrGrpLoc = Lex.getLoc();
Bill Wendlinga7c38772013-02-09 15:48:49 +0000982 Lex.Lex();
983
David Majnemerb39e22b2014-12-09 18:33:57 +0000984 if (Lex.getKind() != lltok::AttrGrpID)
985 return TokError("expected attribute group id");
986
Bill Wendling63b88192013-02-06 06:52:58 +0000987 unsigned VarID = Lex.getUIntVal();
Bill Wendlingb32b0412013-02-08 06:32:06 +0000988 std::vector<unsigned> unused;
Michael Gottesman41748d72013-06-27 00:25:01 +0000989 LocTy BuiltinLoc;
Bill Wendling63b88192013-02-06 06:52:58 +0000990 Lex.Lex();
991
992 if (ParseToken(lltok::equal, "expected '=' here") ||
Bill Wendling63b88192013-02-06 06:52:58 +0000993 ParseToken(lltok::lbrace, "expected '{' here") ||
Bill Wendling09bd1f72013-02-22 00:12:35 +0000994 ParseFnAttributeValuePairs(NumberedAttrBuilders[VarID], unused, true,
Michael Gottesman41748d72013-06-27 00:25:01 +0000995 BuiltinLoc) ||
Bill Wendling63b88192013-02-06 06:52:58 +0000996 ParseToken(lltok::rbrace, "expected end of attribute group"))
997 return true;
998
Bill Wendlingb32b0412013-02-08 06:32:06 +0000999 if (!NumberedAttrBuilders[VarID].hasAttributes())
Bill Wendling63b88192013-02-06 06:52:58 +00001000 return Error(AttrGrpLoc, "attribute group has no attributes");
1001
1002 return false;
1003}
1004
Bill Wendling8b0321d2013-02-08 00:52:31 +00001005/// ParseFnAttributeValuePairs
Bill Wendling63b88192013-02-06 06:52:58 +00001006/// ::= <attr> | <attr> '=' <value>
Bill Wendlingb32b0412013-02-08 06:32:06 +00001007bool LLParser::ParseFnAttributeValuePairs(AttrBuilder &B,
1008 std::vector<unsigned> &FwdRefAttrGrps,
Michael Gottesman41748d72013-06-27 00:25:01 +00001009 bool inAttrGrp, LocTy &BuiltinLoc) {
Bill Wendling8b0321d2013-02-08 00:52:31 +00001010 bool HaveError = false;
1011
1012 B.clear();
1013
Bill Wendling63b88192013-02-06 06:52:58 +00001014 while (true) {
1015 lltok::Kind Token = Lex.getKind();
Michael Gottesman41748d72013-06-27 00:25:01 +00001016 if (Token == lltok::kw_builtin)
1017 BuiltinLoc = Lex.getLoc();
Bill Wendling63b88192013-02-06 06:52:58 +00001018 switch (Token) {
1019 default:
Bill Wendling8b0321d2013-02-08 00:52:31 +00001020 if (!inAttrGrp) return HaveError;
Bill Wendling63b88192013-02-06 06:52:58 +00001021 return Error(Lex.getLoc(), "unterminated attribute group");
1022 case lltok::rbrace:
1023 // Finished.
1024 return false;
1025
Bill Wendlingb32b0412013-02-08 06:32:06 +00001026 case lltok::AttrGrpID: {
1027 // Allow a function to reference an attribute group:
1028 //
1029 // define void @foo() #1 { ... }
1030 if (inAttrGrp)
1031 HaveError |=
1032 Error(Lex.getLoc(),
1033 "cannot have an attribute group reference in an attribute group");
1034
1035 unsigned AttrGrpNum = Lex.getUIntVal();
1036 if (inAttrGrp) break;
1037
1038 // Save the reference to the attribute group. We'll fill it in later.
1039 FwdRefAttrGrps.push_back(AttrGrpNum);
1040 break;
1041 }
Bill Wendling63b88192013-02-06 06:52:58 +00001042 // Target-dependent attributes:
1043 case lltok::StringConstant: {
Artur Pilipenko17376c42015-08-03 14:31:49 +00001044 if (ParseStringAttribute(B))
Bill Wendling63b88192013-02-06 06:52:58 +00001045 return true;
Bill Wendlingb1ea9802013-02-10 10:12:50 +00001046 continue;
Bill Wendling63b88192013-02-06 06:52:58 +00001047 }
1048
1049 // Target-independent attributes:
1050 case lltok::kw_align: {
Bill Wendlingc62789f2013-04-18 18:30:16 +00001051 // As a hack, we allow function alignment to be initially parsed as an
1052 // attribute on a function declaration/definition or added to an attribute
1053 // group and later moved to the alignment field.
Bill Wendling63b88192013-02-06 06:52:58 +00001054 unsigned Alignment;
Bill Wendling8b0321d2013-02-08 00:52:31 +00001055 if (inAttrGrp) {
Bill Wendling44b08bf2013-02-10 23:15:51 +00001056 Lex.Lex();
Bill Wendling8b0321d2013-02-08 00:52:31 +00001057 if (ParseToken(lltok::equal, "expected '=' here") ||
1058 ParseUInt32(Alignment))
1059 return true;
1060 } else {
1061 if (ParseOptionalAlignment(Alignment))
1062 return true;
1063 }
Bill Wendling63b88192013-02-06 06:52:58 +00001064 B.addAlignmentAttr(Alignment);
Bill Wendling8b0321d2013-02-08 00:52:31 +00001065 continue;
Bill Wendling63b88192013-02-06 06:52:58 +00001066 }
1067 case lltok::kw_alignstack: {
1068 unsigned Alignment;
Bill Wendling8b0321d2013-02-08 00:52:31 +00001069 if (inAttrGrp) {
Bill Wendling44b08bf2013-02-10 23:15:51 +00001070 Lex.Lex();
Bill Wendling8b0321d2013-02-08 00:52:31 +00001071 if (ParseToken(lltok::equal, "expected '=' here") ||
1072 ParseUInt32(Alignment))
1073 return true;
1074 } else {
1075 if (ParseOptionalStackAlignment(Alignment))
1076 return true;
1077 }
Bill Wendling63b88192013-02-06 06:52:58 +00001078 B.addStackAlignmentAttr(Alignment);
Bill Wendling8b0321d2013-02-08 00:52:31 +00001079 continue;
Bill Wendling63b88192013-02-06 06:52:58 +00001080 }
George Burgess IV278199f2016-04-12 01:05:35 +00001081 case lltok::kw_allocsize: {
1082 unsigned ElemSizeArg;
1083 Optional<unsigned> NumElemsArg;
1084 // inAttrGrp doesn't matter; we only support allocsize(a[, b])
1085 if (parseAllocSizeArguments(ElemSizeArg, NumElemsArg))
1086 return true;
1087 B.addAllocSizeAttr(ElemSizeArg, NumElemsArg);
1088 continue;
1089 }
Igor Laevsky39d662f2015-07-11 10:30:36 +00001090 case lltok::kw_alwaysinline: B.addAttribute(Attribute::AlwaysInline); break;
1091 case lltok::kw_argmemonly: B.addAttribute(Attribute::ArgMemOnly); break;
1092 case lltok::kw_builtin: B.addAttribute(Attribute::Builtin); break;
1093 case lltok::kw_cold: B.addAttribute(Attribute::Cold); break;
1094 case lltok::kw_convergent: B.addAttribute(Attribute::Convergent); break;
Vaivaswatha Nagarajfb3f4902015-12-16 16:16:19 +00001095 case lltok::kw_inaccessiblememonly:
1096 B.addAttribute(Attribute::InaccessibleMemOnly); break;
1097 case lltok::kw_inaccessiblemem_or_argmemonly:
1098 B.addAttribute(Attribute::InaccessibleMemOrArgMemOnly); break;
Igor Laevsky39d662f2015-07-11 10:30:36 +00001099 case lltok::kw_inlinehint: B.addAttribute(Attribute::InlineHint); break;
1100 case lltok::kw_jumptable: B.addAttribute(Attribute::JumpTable); break;
1101 case lltok::kw_minsize: B.addAttribute(Attribute::MinSize); break;
1102 case lltok::kw_naked: B.addAttribute(Attribute::Naked); break;
1103 case lltok::kw_nobuiltin: B.addAttribute(Attribute::NoBuiltin); break;
1104 case lltok::kw_noduplicate: B.addAttribute(Attribute::NoDuplicate); break;
1105 case lltok::kw_noimplicitfloat:
1106 B.addAttribute(Attribute::NoImplicitFloat); break;
1107 case lltok::kw_noinline: B.addAttribute(Attribute::NoInline); break;
1108 case lltok::kw_nonlazybind: B.addAttribute(Attribute::NonLazyBind); break;
1109 case lltok::kw_noredzone: B.addAttribute(Attribute::NoRedZone); break;
1110 case lltok::kw_noreturn: B.addAttribute(Attribute::NoReturn); break;
James Molloye6f87ca2015-11-06 10:32:53 +00001111 case lltok::kw_norecurse: B.addAttribute(Attribute::NoRecurse); break;
Igor Laevsky39d662f2015-07-11 10:30:36 +00001112 case lltok::kw_nounwind: B.addAttribute(Attribute::NoUnwind); break;
1113 case lltok::kw_optnone: B.addAttribute(Attribute::OptimizeNone); break;
1114 case lltok::kw_optsize: B.addAttribute(Attribute::OptimizeForSize); break;
1115 case lltok::kw_readnone: B.addAttribute(Attribute::ReadNone); break;
1116 case lltok::kw_readonly: B.addAttribute(Attribute::ReadOnly); break;
1117 case lltok::kw_returns_twice:
1118 B.addAttribute(Attribute::ReturnsTwice); break;
Matt Arsenaultb19b57e2017-04-28 20:25:27 +00001119 case lltok::kw_speculatable: B.addAttribute(Attribute::Speculatable); break;
Igor Laevsky39d662f2015-07-11 10:30:36 +00001120 case lltok::kw_ssp: B.addAttribute(Attribute::StackProtect); break;
1121 case lltok::kw_sspreq: B.addAttribute(Attribute::StackProtectReq); break;
1122 case lltok::kw_sspstrong:
1123 B.addAttribute(Attribute::StackProtectStrong); break;
1124 case lltok::kw_safestack: B.addAttribute(Attribute::SafeStack); break;
1125 case lltok::kw_sanitize_address:
1126 B.addAttribute(Attribute::SanitizeAddress); break;
1127 case lltok::kw_sanitize_thread:
1128 B.addAttribute(Attribute::SanitizeThread); break;
1129 case lltok::kw_sanitize_memory:
1130 B.addAttribute(Attribute::SanitizeMemory); break;
Andrew Kaylor53a5fbb2017-08-14 21:15:13 +00001131 case lltok::kw_strictfp: B.addAttribute(Attribute::StrictFP); break;
Igor Laevsky39d662f2015-07-11 10:30:36 +00001132 case lltok::kw_uwtable: B.addAttribute(Attribute::UWTable); break;
Nicolai Haehnle84c9f992016-07-04 08:01:29 +00001133 case lltok::kw_writeonly: B.addAttribute(Attribute::WriteOnly); break;
Bill Wendling8b0321d2013-02-08 00:52:31 +00001134
1135 // Error handling.
1136 case lltok::kw_inreg:
1137 case lltok::kw_signext:
1138 case lltok::kw_zeroext:
1139 HaveError |=
1140 Error(Lex.getLoc(),
1141 "invalid use of attribute on a function");
1142 break;
1143 case lltok::kw_byval:
Hal Finkelb0407ba2014-07-18 15:51:28 +00001144 case lltok::kw_dereferenceable:
Sanjoy Das31ea6d12015-04-16 20:29:50 +00001145 case lltok::kw_dereferenceable_or_null:
Reid Klecknera534a382013-12-19 02:14:12 +00001146 case lltok::kw_inalloca:
Bill Wendling8b0321d2013-02-08 00:52:31 +00001147 case lltok::kw_nest:
1148 case lltok::kw_noalias:
1149 case lltok::kw_nocapture:
Nick Lewyckyd52b1522014-05-20 01:23:40 +00001150 case lltok::kw_nonnull:
Stephen Linb8bd2322013-04-20 05:14:40 +00001151 case lltok::kw_returned:
Bill Wendling8b0321d2013-02-08 00:52:31 +00001152 case lltok::kw_sret:
Manman Ren9bfd0d02016-04-01 21:41:15 +00001153 case lltok::kw_swifterror:
Manman Renf46262e2016-03-29 17:37:21 +00001154 case lltok::kw_swiftself:
Bill Wendling8b0321d2013-02-08 00:52:31 +00001155 HaveError |=
1156 Error(Lex.getLoc(),
1157 "invalid use of parameter-only attribute on a function");
1158 break;
Bill Wendling63b88192013-02-06 06:52:58 +00001159 }
1160
1161 Lex.Lex();
1162 }
1163}
Chris Lattnerac161bf2009-01-02 07:01:27 +00001164
1165//===----------------------------------------------------------------------===//
1166// GlobalValue Reference/Resolution Routines.
1167//===----------------------------------------------------------------------===//
1168
Karl Schimpf77729782015-09-03 18:06:44 +00001169static inline GlobalValue *createGlobalFwdRef(Module *M, PointerType *PTy,
1170 const std::string &Name) {
1171 if (auto *FT = dyn_cast<FunctionType>(PTy->getElementType()))
1172 return Function::Create(FT, GlobalValue::ExternalWeakLinkage, Name, M);
1173 else
1174 return new GlobalVariable(*M, PTy->getElementType(), false,
1175 GlobalValue::ExternalWeakLinkage, nullptr, Name,
1176 nullptr, GlobalVariable::NotThreadLocal,
1177 PTy->getAddressSpace());
1178}
1179
Chris Lattnerac161bf2009-01-02 07:01:27 +00001180/// GetGlobalVal - Get a value with the specified name or ID, creating a
1181/// forward reference record if needed. This can return null if the value
1182/// exists but does not have the right type.
Chris Lattner229907c2011-07-18 04:54:35 +00001183GlobalValue *LLParser::GetGlobalVal(const std::string &Name, Type *Ty,
Chris Lattnerac161bf2009-01-02 07:01:27 +00001184 LocTy Loc) {
Chris Lattner229907c2011-07-18 04:54:35 +00001185 PointerType *PTy = dyn_cast<PointerType>(Ty);
Craig Topper2617dcc2014-04-15 06:32:26 +00001186 if (!PTy) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00001187 Error(Loc, "global variable reference must have pointer type");
Craig Topper2617dcc2014-04-15 06:32:26 +00001188 return nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001189 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001190
Chris Lattnerac161bf2009-01-02 07:01:27 +00001191 // Look this name up in the normal function symbol table.
1192 GlobalValue *Val =
1193 cast_or_null<GlobalValue>(M->getValueSymbolTable().lookup(Name));
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001194
Chris Lattnerac161bf2009-01-02 07:01:27 +00001195 // If this is a forward reference for the value, see if we already created a
1196 // forward ref record.
Craig Topper2617dcc2014-04-15 06:32:26 +00001197 if (!Val) {
David Blaikie9ebdc692015-09-21 21:07:50 +00001198 auto I = ForwardRefVals.find(Name);
Chris Lattnerac161bf2009-01-02 07:01:27 +00001199 if (I != ForwardRefVals.end())
1200 Val = I->second.first;
1201 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001202
Chris Lattnerac161bf2009-01-02 07:01:27 +00001203 // If we have the value in the symbol table or fwd-ref table, return it.
1204 if (Val) {
1205 if (Val->getType() == Ty) return Val;
1206 Error(Loc, "'@" + Name + "' defined with type '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00001207 getTypeString(Val->getType()) + "'");
Craig Topper2617dcc2014-04-15 06:32:26 +00001208 return nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001209 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001210
Chris Lattnerac161bf2009-01-02 07:01:27 +00001211 // Otherwise, create a new forward reference for this value and remember it.
Karl Schimpf77729782015-09-03 18:06:44 +00001212 GlobalValue *FwdVal = createGlobalFwdRef(M, PTy, Name);
Chris Lattnerac161bf2009-01-02 07:01:27 +00001213 ForwardRefVals[Name] = std::make_pair(FwdVal, Loc);
1214 return FwdVal;
1215}
1216
Chris Lattner229907c2011-07-18 04:54:35 +00001217GlobalValue *LLParser::GetGlobalVal(unsigned ID, Type *Ty, LocTy Loc) {
1218 PointerType *PTy = dyn_cast<PointerType>(Ty);
Craig Topper2617dcc2014-04-15 06:32:26 +00001219 if (!PTy) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00001220 Error(Loc, "global variable reference must have pointer type");
Craig Topper2617dcc2014-04-15 06:32:26 +00001221 return nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001222 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001223
Craig Topper2617dcc2014-04-15 06:32:26 +00001224 GlobalValue *Val = ID < NumberedVals.size() ? NumberedVals[ID] : nullptr;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001225
Chris Lattnerac161bf2009-01-02 07:01:27 +00001226 // If this is a forward reference for the value, see if we already created a
1227 // forward ref record.
Craig Topper2617dcc2014-04-15 06:32:26 +00001228 if (!Val) {
David Blaikie9ebdc692015-09-21 21:07:50 +00001229 auto I = ForwardRefValIDs.find(ID);
Chris Lattnerac161bf2009-01-02 07:01:27 +00001230 if (I != ForwardRefValIDs.end())
1231 Val = I->second.first;
1232 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001233
Chris Lattnerac161bf2009-01-02 07:01:27 +00001234 // If we have the value in the symbol table or fwd-ref table, return it.
1235 if (Val) {
1236 if (Val->getType() == Ty) return Val;
Benjamin Kramerc7583112010-09-27 17:42:11 +00001237 Error(Loc, "'@" + Twine(ID) + "' defined with type '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00001238 getTypeString(Val->getType()) + "'");
Craig Topper2617dcc2014-04-15 06:32:26 +00001239 return nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001240 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001241
Chris Lattnerac161bf2009-01-02 07:01:27 +00001242 // Otherwise, create a new forward reference for this value and remember it.
Karl Schimpf77729782015-09-03 18:06:44 +00001243 GlobalValue *FwdVal = createGlobalFwdRef(M, PTy, "");
Chris Lattnerac161bf2009-01-02 07:01:27 +00001244 ForwardRefValIDs[ID] = std::make_pair(FwdVal, Loc);
1245 return FwdVal;
1246}
1247
Chris Lattnerac161bf2009-01-02 07:01:27 +00001248//===----------------------------------------------------------------------===//
David Majnemerdad0a642014-06-27 18:19:56 +00001249// Comdat Reference/Resolution Routines.
1250//===----------------------------------------------------------------------===//
1251
1252Comdat *LLParser::getComdat(const std::string &Name, LocTy Loc) {
1253 // Look this name up in the comdat symbol table.
1254 Module::ComdatSymTabType &ComdatSymTab = M->getComdatSymbolTable();
1255 Module::ComdatSymTabType::iterator I = ComdatSymTab.find(Name);
1256 if (I != ComdatSymTab.end())
1257 return &I->second;
1258
1259 // Otherwise, create a new forward reference for this value and remember it.
1260 Comdat *C = M->getOrInsertComdat(Name);
1261 ForwardRefComdats[Name] = Loc;
1262 return C;
1263}
1264
David Majnemerdad0a642014-06-27 18:19:56 +00001265//===----------------------------------------------------------------------===//
Chris Lattnerac161bf2009-01-02 07:01:27 +00001266// Helper Routines.
1267//===----------------------------------------------------------------------===//
1268
1269/// ParseToken - If the current token has the specified kind, eat it and return
1270/// success. Otherwise, emit the specified error and return failure.
1271bool LLParser::ParseToken(lltok::Kind T, const char *ErrMsg) {
1272 if (Lex.getKind() != T)
1273 return TokError(ErrMsg);
1274 Lex.Lex();
1275 return false;
1276}
1277
Chris Lattner3822f632009-01-02 08:05:26 +00001278/// ParseStringConstant
1279/// ::= StringConstant
1280bool LLParser::ParseStringConstant(std::string &Result) {
1281 if (Lex.getKind() != lltok::StringConstant)
1282 return TokError("expected string constant");
1283 Result = Lex.getStrVal();
1284 Lex.Lex();
1285 return false;
1286}
1287
1288/// ParseUInt32
1289/// ::= uint32
Leny Kholodov5fcc4182016-09-06 10:46:28 +00001290bool LLParser::ParseUInt32(uint32_t &Val) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00001291 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned())
1292 return TokError("expected integer");
1293 uint64_t Val64 = Lex.getAPSIntVal().getLimitedValue(0xFFFFFFFFULL+1);
1294 if (Val64 != unsigned(Val64))
1295 return TokError("expected 32-bit integer (too large)");
1296 Val = Val64;
1297 Lex.Lex();
1298 return false;
1299}
1300
Hal Finkelb0407ba2014-07-18 15:51:28 +00001301/// ParseUInt64
1302/// ::= uint64
1303bool LLParser::ParseUInt64(uint64_t &Val) {
1304 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned())
1305 return TokError("expected integer");
1306 Val = Lex.getAPSIntVal().getLimitedValue();
1307 Lex.Lex();
1308 return false;
1309}
1310
Hans Wennborgcbe34b42012-06-23 11:37:03 +00001311/// ParseTLSModel
1312/// := 'localdynamic'
1313/// := 'initialexec'
1314/// := 'localexec'
1315bool LLParser::ParseTLSModel(GlobalVariable::ThreadLocalMode &TLM) {
1316 switch (Lex.getKind()) {
1317 default:
1318 return TokError("expected localdynamic, initialexec or localexec");
1319 case lltok::kw_localdynamic:
1320 TLM = GlobalVariable::LocalDynamicTLSModel;
1321 break;
1322 case lltok::kw_initialexec:
1323 TLM = GlobalVariable::InitialExecTLSModel;
1324 break;
1325 case lltok::kw_localexec:
1326 TLM = GlobalVariable::LocalExecTLSModel;
1327 break;
1328 }
1329
1330 Lex.Lex();
1331 return false;
1332}
1333
1334/// ParseOptionalThreadLocal
1335/// := /*empty*/
1336/// := 'thread_local'
1337/// := 'thread_local' '(' tlsmodel ')'
1338bool LLParser::ParseOptionalThreadLocal(GlobalVariable::ThreadLocalMode &TLM) {
1339 TLM = GlobalVariable::NotThreadLocal;
1340 if (!EatIfPresent(lltok::kw_thread_local))
1341 return false;
1342
1343 TLM = GlobalVariable::GeneralDynamicTLSModel;
1344 if (Lex.getKind() == lltok::lparen) {
1345 Lex.Lex();
1346 return ParseTLSModel(TLM) ||
1347 ParseToken(lltok::rparen, "expected ')' after thread local model");
1348 }
1349 return false;
1350}
Chris Lattnerac161bf2009-01-02 07:01:27 +00001351
1352/// ParseOptionalAddrSpace
1353/// := /*empty*/
1354/// := 'addrspace' '(' uint32 ')'
1355bool LLParser::ParseOptionalAddrSpace(unsigned &AddrSpace) {
1356 AddrSpace = 0;
Chris Lattner3822f632009-01-02 08:05:26 +00001357 if (!EatIfPresent(lltok::kw_addrspace))
Chris Lattnerac161bf2009-01-02 07:01:27 +00001358 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001359 return ParseToken(lltok::lparen, "expected '(' in address space") ||
Chris Lattner3822f632009-01-02 08:05:26 +00001360 ParseUInt32(AddrSpace) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00001361 ParseToken(lltok::rparen, "expected ')' in address space");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001362}
Chris Lattnerac161bf2009-01-02 07:01:27 +00001363
Artur Pilipenko17376c42015-08-03 14:31:49 +00001364/// ParseStringAttribute
1365/// := StringConstant
1366/// := StringConstant '=' StringConstant
1367bool LLParser::ParseStringAttribute(AttrBuilder &B) {
1368 std::string Attr = Lex.getStrVal();
1369 Lex.Lex();
1370 std::string Val;
1371 if (EatIfPresent(lltok::equal) && ParseStringConstant(Val))
1372 return true;
1373 B.addAttribute(Attr, Val);
1374 return false;
1375}
1376
Bill Wendling34c2eb22012-12-04 23:40:58 +00001377/// ParseOptionalParamAttrs - Parse a potentially empty list of parameter attributes.
1378bool LLParser::ParseOptionalParamAttrs(AttrBuilder &B) {
1379 bool HaveError = false;
1380
1381 B.clear();
1382
Eugene Zelenko1804a772016-08-25 00:45:04 +00001383 while (true) {
Bill Wendling34c2eb22012-12-04 23:40:58 +00001384 lltok::Kind Token = Lex.getKind();
1385 switch (Token) {
1386 default: // End of attributes.
1387 return HaveError;
Artur Pilipenko17376c42015-08-03 14:31:49 +00001388 case lltok::StringConstant: {
1389 if (ParseStringAttribute(B))
1390 return true;
1391 continue;
1392 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00001393 case lltok::kw_align: {
1394 unsigned Alignment;
1395 if (ParseOptionalAlignment(Alignment))
1396 return true;
Bill Wendling68d24012012-10-08 22:20:14 +00001397 B.addAlignmentAttr(Alignment);
Chris Lattnerac161bf2009-01-02 07:01:27 +00001398 continue;
1399 }
Bill Wendling3d7b0b82012-12-19 07:18:57 +00001400 case lltok::kw_byval: B.addAttribute(Attribute::ByVal); break;
Hal Finkelb0407ba2014-07-18 15:51:28 +00001401 case lltok::kw_dereferenceable: {
1402 uint64_t Bytes;
Sanjoy Das31ea6d12015-04-16 20:29:50 +00001403 if (ParseOptionalDerefAttrBytes(lltok::kw_dereferenceable, Bytes))
Hal Finkelb0407ba2014-07-18 15:51:28 +00001404 return true;
1405 B.addDereferenceableAttr(Bytes);
1406 continue;
1407 }
Sanjoy Das31ea6d12015-04-16 20:29:50 +00001408 case lltok::kw_dereferenceable_or_null: {
1409 uint64_t Bytes;
1410 if (ParseOptionalDerefAttrBytes(lltok::kw_dereferenceable_or_null, Bytes))
1411 return true;
1412 B.addDereferenceableOrNullAttr(Bytes);
1413 continue;
1414 }
Reid Klecknera534a382013-12-19 02:14:12 +00001415 case lltok::kw_inalloca: B.addAttribute(Attribute::InAlloca); break;
Bill Wendling3d7b0b82012-12-19 07:18:57 +00001416 case lltok::kw_inreg: B.addAttribute(Attribute::InReg); break;
1417 case lltok::kw_nest: B.addAttribute(Attribute::Nest); break;
1418 case lltok::kw_noalias: B.addAttribute(Attribute::NoAlias); break;
1419 case lltok::kw_nocapture: B.addAttribute(Attribute::NoCapture); break;
Nick Lewyckyd52b1522014-05-20 01:23:40 +00001420 case lltok::kw_nonnull: B.addAttribute(Attribute::NonNull); break;
Nick Lewyckyc2ec0722013-07-06 00:29:58 +00001421 case lltok::kw_readnone: B.addAttribute(Attribute::ReadNone); break;
1422 case lltok::kw_readonly: B.addAttribute(Attribute::ReadOnly); break;
Stephen Linb8bd2322013-04-20 05:14:40 +00001423 case lltok::kw_returned: B.addAttribute(Attribute::Returned); break;
Bill Wendling3d7b0b82012-12-19 07:18:57 +00001424 case lltok::kw_signext: B.addAttribute(Attribute::SExt); break;
1425 case lltok::kw_sret: B.addAttribute(Attribute::StructRet); break;
Manman Ren9bfd0d02016-04-01 21:41:15 +00001426 case lltok::kw_swifterror: B.addAttribute(Attribute::SwiftError); break;
Manman Renf46262e2016-03-29 17:37:21 +00001427 case lltok::kw_swiftself: B.addAttribute(Attribute::SwiftSelf); break;
Nicolai Haehnle84c9f992016-07-04 08:01:29 +00001428 case lltok::kw_writeonly: B.addAttribute(Attribute::WriteOnly); break;
Bill Wendling3d7b0b82012-12-19 07:18:57 +00001429 case lltok::kw_zeroext: B.addAttribute(Attribute::ZExt); break;
Charles Davisbe5557e2010-02-12 00:31:15 +00001430
Stephen Lin7577ed52013-04-20 13:16:13 +00001431 case lltok::kw_alignstack:
1432 case lltok::kw_alwaysinline:
Igor Laevsky39d662f2015-07-11 10:30:36 +00001433 case lltok::kw_argmemonly:
Michael Gottesman41748d72013-06-27 00:25:01 +00001434 case lltok::kw_builtin:
Stephen Lin7577ed52013-04-20 13:16:13 +00001435 case lltok::kw_inlinehint:
Tom Roeder44cb65f2014-06-05 19:29:43 +00001436 case lltok::kw_jumptable:
Stephen Lin7577ed52013-04-20 13:16:13 +00001437 case lltok::kw_minsize:
1438 case lltok::kw_naked:
1439 case lltok::kw_nobuiltin:
1440 case lltok::kw_noduplicate:
1441 case lltok::kw_noimplicitfloat:
1442 case lltok::kw_noinline:
1443 case lltok::kw_nonlazybind:
1444 case lltok::kw_noredzone:
1445 case lltok::kw_noreturn:
1446 case lltok::kw_nounwind:
Andrea Di Biagio377496b2013-08-23 11:53:55 +00001447 case lltok::kw_optnone:
Stephen Lin7577ed52013-04-20 13:16:13 +00001448 case lltok::kw_optsize:
Stephen Lin7577ed52013-04-20 13:16:13 +00001449 case lltok::kw_returns_twice:
1450 case lltok::kw_sanitize_address:
1451 case lltok::kw_sanitize_memory:
1452 case lltok::kw_sanitize_thread:
1453 case lltok::kw_ssp:
1454 case lltok::kw_sspreq:
1455 case lltok::kw_sspstrong:
Peter Collingbourne82437bf2015-06-15 21:07:11 +00001456 case lltok::kw_safestack:
Andrew Kaylor53a5fbb2017-08-14 21:15:13 +00001457 case lltok::kw_strictfp:
Stephen Lin7577ed52013-04-20 13:16:13 +00001458 case lltok::kw_uwtable:
Bill Wendling34c2eb22012-12-04 23:40:58 +00001459 HaveError |= Error(Lex.getLoc(), "invalid use of function-only attribute");
1460 break;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001461 }
Bill Wendling0be9c402012-09-28 22:30:18 +00001462
Bill Wendling34c2eb22012-12-04 23:40:58 +00001463 Lex.Lex();
1464 }
1465}
1466
1467/// ParseOptionalReturnAttrs - Parse a potentially empty list of return attributes.
1468bool LLParser::ParseOptionalReturnAttrs(AttrBuilder &B) {
1469 bool HaveError = false;
1470
1471 B.clear();
1472
Eugene Zelenko1804a772016-08-25 00:45:04 +00001473 while (true) {
Bill Wendling34c2eb22012-12-04 23:40:58 +00001474 lltok::Kind Token = Lex.getKind();
Bill Wendling0be9c402012-09-28 22:30:18 +00001475 switch (Token) {
Bill Wendling34c2eb22012-12-04 23:40:58 +00001476 default: // End of attributes.
1477 return HaveError;
Artur Pilipenko17376c42015-08-03 14:31:49 +00001478 case lltok::StringConstant: {
1479 if (ParseStringAttribute(B))
1480 return true;
1481 continue;
1482 }
Hal Finkelb0407ba2014-07-18 15:51:28 +00001483 case lltok::kw_dereferenceable: {
1484 uint64_t Bytes;
Sanjoy Das31ea6d12015-04-16 20:29:50 +00001485 if (ParseOptionalDerefAttrBytes(lltok::kw_dereferenceable, Bytes))
Hal Finkelb0407ba2014-07-18 15:51:28 +00001486 return true;
1487 B.addDereferenceableAttr(Bytes);
1488 continue;
1489 }
Sanjoy Das31ea6d12015-04-16 20:29:50 +00001490 case lltok::kw_dereferenceable_or_null: {
1491 uint64_t Bytes;
1492 if (ParseOptionalDerefAttrBytes(lltok::kw_dereferenceable_or_null, Bytes))
1493 return true;
1494 B.addDereferenceableOrNullAttr(Bytes);
1495 continue;
1496 }
Artur Pilipenko84bc62f2015-09-18 12:33:31 +00001497 case lltok::kw_align: {
1498 unsigned Alignment;
1499 if (ParseOptionalAlignment(Alignment))
1500 return true;
1501 B.addAlignmentAttr(Alignment);
1502 continue;
1503 }
Bill Wendling3d7b0b82012-12-19 07:18:57 +00001504 case lltok::kw_inreg: B.addAttribute(Attribute::InReg); break;
1505 case lltok::kw_noalias: B.addAttribute(Attribute::NoAlias); break;
Nick Lewyckyd52b1522014-05-20 01:23:40 +00001506 case lltok::kw_nonnull: B.addAttribute(Attribute::NonNull); break;
Bill Wendling3d7b0b82012-12-19 07:18:57 +00001507 case lltok::kw_signext: B.addAttribute(Attribute::SExt); break;
1508 case lltok::kw_zeroext: B.addAttribute(Attribute::ZExt); break;
Bill Wendling0be9c402012-09-28 22:30:18 +00001509
Bill Wendling34c2eb22012-12-04 23:40:58 +00001510 // Error handling.
Chandler Carruth9f6b59a2013-04-09 19:46:46 +00001511 case lltok::kw_byval:
Reid Klecknera534a382013-12-19 02:14:12 +00001512 case lltok::kw_inalloca:
Chandler Carruth9f6b59a2013-04-09 19:46:46 +00001513 case lltok::kw_nest:
1514 case lltok::kw_nocapture:
Stephen Linb8bd2322013-04-20 05:14:40 +00001515 case lltok::kw_returned:
Chandler Carruth9f6b59a2013-04-09 19:46:46 +00001516 case lltok::kw_sret:
Manman Ren9bfd0d02016-04-01 21:41:15 +00001517 case lltok::kw_swifterror:
Manman Renf46262e2016-03-29 17:37:21 +00001518 case lltok::kw_swiftself:
Bill Wendling34c2eb22012-12-04 23:40:58 +00001519 HaveError |= Error(Lex.getLoc(), "invalid use of parameter-only attribute");
Bill Wendling0be9c402012-09-28 22:30:18 +00001520 break;
James Molloy4f6fb952012-12-20 16:04:27 +00001521
Chandler Carruth9f6b59a2013-04-09 19:46:46 +00001522 case lltok::kw_alignstack:
1523 case lltok::kw_alwaysinline:
Igor Laevsky39d662f2015-07-11 10:30:36 +00001524 case lltok::kw_argmemonly:
Michael Gottesman41748d72013-06-27 00:25:01 +00001525 case lltok::kw_builtin:
Diego Novilloc6399532013-05-24 12:26:52 +00001526 case lltok::kw_cold:
Chandler Carruth9f6b59a2013-04-09 19:46:46 +00001527 case lltok::kw_inlinehint:
Tom Roeder44cb65f2014-06-05 19:29:43 +00001528 case lltok::kw_jumptable:
Chandler Carruth9f6b59a2013-04-09 19:46:46 +00001529 case lltok::kw_minsize:
1530 case lltok::kw_naked:
1531 case lltok::kw_nobuiltin:
1532 case lltok::kw_noduplicate:
1533 case lltok::kw_noimplicitfloat:
1534 case lltok::kw_noinline:
1535 case lltok::kw_nonlazybind:
1536 case lltok::kw_noredzone:
1537 case lltok::kw_noreturn:
1538 case lltok::kw_nounwind:
Andrea Di Biagio377496b2013-08-23 11:53:55 +00001539 case lltok::kw_optnone:
Chandler Carruth9f6b59a2013-04-09 19:46:46 +00001540 case lltok::kw_optsize:
Chandler Carruth9f6b59a2013-04-09 19:46:46 +00001541 case lltok::kw_returns_twice:
1542 case lltok::kw_sanitize_address:
1543 case lltok::kw_sanitize_memory:
1544 case lltok::kw_sanitize_thread:
1545 case lltok::kw_ssp:
1546 case lltok::kw_sspreq:
1547 case lltok::kw_sspstrong:
Peter Collingbourne82437bf2015-06-15 21:07:11 +00001548 case lltok::kw_safestack:
Andrew Kaylor53a5fbb2017-08-14 21:15:13 +00001549 case lltok::kw_strictfp:
Chandler Carruth9f6b59a2013-04-09 19:46:46 +00001550 case lltok::kw_uwtable:
Bill Wendling34c2eb22012-12-04 23:40:58 +00001551 HaveError |= Error(Lex.getLoc(), "invalid use of function-only attribute");
Bill Wendling0be9c402012-09-28 22:30:18 +00001552 break;
Nick Lewyckyc2ec0722013-07-06 00:29:58 +00001553
1554 case lltok::kw_readnone:
1555 case lltok::kw_readonly:
1556 HaveError |= Error(Lex.getLoc(), "invalid use of attribute on return type");
Bill Wendling0be9c402012-09-28 22:30:18 +00001557 }
1558
Chris Lattnerac161bf2009-01-02 07:01:27 +00001559 Lex.Lex();
1560 }
1561}
1562
Rafael Espindolac6269912016-05-10 17:16:45 +00001563static unsigned parseOptionalLinkageAux(lltok::Kind Kind, bool &HasLinkage) {
1564 HasLinkage = true;
1565 switch (Kind) {
1566 default:
1567 HasLinkage = false;
1568 return GlobalValue::ExternalLinkage;
1569 case lltok::kw_private:
1570 return GlobalValue::PrivateLinkage;
1571 case lltok::kw_internal:
1572 return GlobalValue::InternalLinkage;
1573 case lltok::kw_weak:
1574 return GlobalValue::WeakAnyLinkage;
1575 case lltok::kw_weak_odr:
1576 return GlobalValue::WeakODRLinkage;
1577 case lltok::kw_linkonce:
1578 return GlobalValue::LinkOnceAnyLinkage;
1579 case lltok::kw_linkonce_odr:
1580 return GlobalValue::LinkOnceODRLinkage;
1581 case lltok::kw_available_externally:
1582 return GlobalValue::AvailableExternallyLinkage;
1583 case lltok::kw_appending:
1584 return GlobalValue::AppendingLinkage;
1585 case lltok::kw_common:
1586 return GlobalValue::CommonLinkage;
1587 case lltok::kw_extern_weak:
1588 return GlobalValue::ExternalWeakLinkage;
1589 case lltok::kw_external:
1590 return GlobalValue::ExternalLinkage;
1591 }
1592}
1593
Chris Lattnerac161bf2009-01-02 07:01:27 +00001594/// ParseOptionalLinkage
1595/// ::= /*empty*/
Rafael Espindola6de96a12009-01-15 20:18:42 +00001596/// ::= 'private'
Chris Lattnerac161bf2009-01-02 07:01:27 +00001597/// ::= 'internal'
1598/// ::= 'weak'
Duncan Sands12da8ce2009-03-07 15:45:40 +00001599/// ::= 'weak_odr'
Chris Lattnerac161bf2009-01-02 07:01:27 +00001600/// ::= 'linkonce'
Duncan Sands12da8ce2009-03-07 15:45:40 +00001601/// ::= 'linkonce_odr'
Bill Wendling03bcd6e2010-07-01 21:55:59 +00001602/// ::= 'available_externally'
Chris Lattnerac161bf2009-01-02 07:01:27 +00001603/// ::= 'appending'
Chris Lattnerac161bf2009-01-02 07:01:27 +00001604/// ::= 'common'
Chris Lattnerac161bf2009-01-02 07:01:27 +00001605/// ::= 'extern_weak'
1606/// ::= 'external'
Rafael Espindola2615c9e2016-05-12 12:37:52 +00001607bool LLParser::ParseOptionalLinkage(unsigned &Res, bool &HasLinkage,
1608 unsigned &Visibility,
1609 unsigned &DLLStorageClass) {
Rafael Espindolac6269912016-05-10 17:16:45 +00001610 Res = parseOptionalLinkageAux(Lex.getKind(), HasLinkage);
1611 if (HasLinkage)
1612 Lex.Lex();
Rafael Espindola2615c9e2016-05-12 12:37:52 +00001613 ParseOptionalVisibility(Visibility);
1614 ParseOptionalDLLStorageClass(DLLStorageClass);
Chris Lattnerac161bf2009-01-02 07:01:27 +00001615 return false;
1616}
1617
1618/// ParseOptionalVisibility
1619/// ::= /*empty*/
1620/// ::= 'default'
1621/// ::= 'hidden'
1622/// ::= 'protected'
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001623///
Rafael Espindola2615c9e2016-05-12 12:37:52 +00001624void LLParser::ParseOptionalVisibility(unsigned &Res) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00001625 switch (Lex.getKind()) {
Rafael Espindola2615c9e2016-05-12 12:37:52 +00001626 default:
1627 Res = GlobalValue::DefaultVisibility;
1628 return;
1629 case lltok::kw_default:
1630 Res = GlobalValue::DefaultVisibility;
1631 break;
1632 case lltok::kw_hidden:
1633 Res = GlobalValue::HiddenVisibility;
1634 break;
1635 case lltok::kw_protected:
1636 Res = GlobalValue::ProtectedVisibility;
1637 break;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001638 }
1639 Lex.Lex();
Chris Lattnerac161bf2009-01-02 07:01:27 +00001640}
1641
Nico Rieck7157bb72014-01-14 15:22:47 +00001642/// ParseOptionalDLLStorageClass
1643/// ::= /*empty*/
1644/// ::= 'dllimport'
1645/// ::= 'dllexport'
1646///
Rafael Espindola2615c9e2016-05-12 12:37:52 +00001647void LLParser::ParseOptionalDLLStorageClass(unsigned &Res) {
Nico Rieck7157bb72014-01-14 15:22:47 +00001648 switch (Lex.getKind()) {
Rafael Espindola2615c9e2016-05-12 12:37:52 +00001649 default:
1650 Res = GlobalValue::DefaultStorageClass;
1651 return;
1652 case lltok::kw_dllimport:
1653 Res = GlobalValue::DLLImportStorageClass;
1654 break;
1655 case lltok::kw_dllexport:
1656 Res = GlobalValue::DLLExportStorageClass;
1657 break;
Nico Rieck7157bb72014-01-14 15:22:47 +00001658 }
1659 Lex.Lex();
Nico Rieck7157bb72014-01-14 15:22:47 +00001660}
1661
Chris Lattnerac161bf2009-01-02 07:01:27 +00001662/// ParseOptionalCallingConv
1663/// ::= /*empty*/
1664/// ::= 'ccc'
1665/// ::= 'fastcc'
Reid Kleckner35fc3632014-12-01 21:04:44 +00001666/// ::= 'intel_ocl_bicc'
Chris Lattnerac161bf2009-01-02 07:01:27 +00001667/// ::= 'coldcc'
1668/// ::= 'x86_stdcallcc'
1669/// ::= 'x86_fastcallcc'
Anton Korobeynikov8f35fab2010-05-16 09:08:45 +00001670/// ::= 'x86_thiscallcc'
Reid Kleckner9ccce992014-10-28 01:29:26 +00001671/// ::= 'x86_vectorcallcc'
Anton Korobeynikova8fd40b2009-06-16 18:50:49 +00001672/// ::= 'arm_apcscc'
1673/// ::= 'arm_aapcscc'
1674/// ::= 'arm_aapcs_vfpcc'
Anton Korobeynikov27a0ecf2009-12-07 02:27:35 +00001675/// ::= 'msp430_intrcc'
Dylan McKay4fd0d4a2016-03-03 10:08:02 +00001676/// ::= 'avr_intrcc'
1677/// ::= 'avr_signalcc'
Che-Liang Chiou29947902010-09-25 07:46:17 +00001678/// ::= 'ptx_kernel'
1679/// ::= 'ptx_device'
Micah Villmow48c8ddc2012-10-01 17:01:31 +00001680/// ::= 'spir_func'
1681/// ::= 'spir_kernel'
Charles Davise8f297c2013-07-12 06:02:35 +00001682/// ::= 'x86_64_sysvcc'
Martin Storsjo2f24e932017-07-17 20:05:19 +00001683/// ::= 'win64cc'
Andrew Tricka3a11de2013-10-31 22:12:01 +00001684/// ::= 'webkit_jscc'
Juergen Ributzka9969d3e2013-11-08 23:28:16 +00001685/// ::= 'anyregcc'
Juergen Ributzkae6250132014-01-17 19:47:03 +00001686/// ::= 'preserve_mostcc'
1687/// ::= 'preserve_allcc'
Reid Kleckner35fc3632014-12-01 21:04:44 +00001688/// ::= 'ghccc'
Manman Renf8bdd882016-04-05 22:41:47 +00001689/// ::= 'swiftcc'
Amjad Aboud60b5e1b2015-12-21 14:07:14 +00001690/// ::= 'x86_intrcc'
Maksim Panchenkocce239c2015-09-29 22:09:16 +00001691/// ::= 'hhvmcc'
1692/// ::= 'hhvm_ccc'
Manman Ren19c7bbe2015-12-04 17:40:13 +00001693/// ::= 'cxx_fast_tlscc'
Nicolai Haehnledf3a20c2016-04-06 19:40:20 +00001694/// ::= 'amdgpu_vs'
Marek Olsaka302a7362017-05-02 15:41:10 +00001695/// ::= 'amdgpu_hs'
Nicolai Haehnledf3a20c2016-04-06 19:40:20 +00001696/// ::= 'amdgpu_gs'
1697/// ::= 'amdgpu_ps'
1698/// ::= 'amdgpu_cs'
Nikolay Haustov1f7732a2016-05-06 09:07:29 +00001699/// ::= 'amdgpu_kernel'
Chris Lattnerac161bf2009-01-02 07:01:27 +00001700/// ::= 'cc' UINT
Anton Korobeynikova8fd40b2009-06-16 18:50:49 +00001701///
Alexey Samsonov17a9cff2014-09-10 18:00:17 +00001702bool LLParser::ParseOptionalCallingConv(unsigned &CC) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00001703 switch (Lex.getKind()) {
1704 default: CC = CallingConv::C; return false;
1705 case lltok::kw_ccc: CC = CallingConv::C; break;
1706 case lltok::kw_fastcc: CC = CallingConv::Fast; break;
1707 case lltok::kw_coldcc: CC = CallingConv::Cold; break;
1708 case lltok::kw_x86_stdcallcc: CC = CallingConv::X86_StdCall; break;
1709 case lltok::kw_x86_fastcallcc: CC = CallingConv::X86_FastCall; break;
Oren Ben Simhon92ccbf22016-10-13 07:53:43 +00001710 case lltok::kw_x86_regcallcc: CC = CallingConv::X86_RegCall; break;
Anton Korobeynikov8f35fab2010-05-16 09:08:45 +00001711 case lltok::kw_x86_thiscallcc: CC = CallingConv::X86_ThisCall; break;
Reid Kleckner9ccce992014-10-28 01:29:26 +00001712 case lltok::kw_x86_vectorcallcc:CC = CallingConv::X86_VectorCall; break;
Anton Korobeynikova8fd40b2009-06-16 18:50:49 +00001713 case lltok::kw_arm_apcscc: CC = CallingConv::ARM_APCS; break;
1714 case lltok::kw_arm_aapcscc: CC = CallingConv::ARM_AAPCS; break;
1715 case lltok::kw_arm_aapcs_vfpcc:CC = CallingConv::ARM_AAPCS_VFP; break;
Anton Korobeynikov27a0ecf2009-12-07 02:27:35 +00001716 case lltok::kw_msp430_intrcc: CC = CallingConv::MSP430_INTR; break;
Dylan McKay4fd0d4a2016-03-03 10:08:02 +00001717 case lltok::kw_avr_intrcc: CC = CallingConv::AVR_INTR; break;
1718 case lltok::kw_avr_signalcc: CC = CallingConv::AVR_SIGNAL; break;
Che-Liang Chiou29947902010-09-25 07:46:17 +00001719 case lltok::kw_ptx_kernel: CC = CallingConv::PTX_Kernel; break;
1720 case lltok::kw_ptx_device: CC = CallingConv::PTX_Device; break;
Micah Villmow48c8ddc2012-10-01 17:01:31 +00001721 case lltok::kw_spir_kernel: CC = CallingConv::SPIR_KERNEL; break;
1722 case lltok::kw_spir_func: CC = CallingConv::SPIR_FUNC; break;
Elena Demikhovskyd6afb032012-10-24 14:46:16 +00001723 case lltok::kw_intel_ocl_bicc: CC = CallingConv::Intel_OCL_BI; break;
Charles Davise8f297c2013-07-12 06:02:35 +00001724 case lltok::kw_x86_64_sysvcc: CC = CallingConv::X86_64_SysV; break;
Martin Storsjo2f24e932017-07-17 20:05:19 +00001725 case lltok::kw_win64cc: CC = CallingConv::Win64; break;
Andrew Tricka3a11de2013-10-31 22:12:01 +00001726 case lltok::kw_webkit_jscc: CC = CallingConv::WebKit_JS; break;
Juergen Ributzka9969d3e2013-11-08 23:28:16 +00001727 case lltok::kw_anyregcc: CC = CallingConv::AnyReg; break;
Juergen Ributzkae6250132014-01-17 19:47:03 +00001728 case lltok::kw_preserve_mostcc:CC = CallingConv::PreserveMost; break;
1729 case lltok::kw_preserve_allcc: CC = CallingConv::PreserveAll; break;
Reid Kleckner35fc3632014-12-01 21:04:44 +00001730 case lltok::kw_ghccc: CC = CallingConv::GHC; break;
Manman Renf8bdd882016-04-05 22:41:47 +00001731 case lltok::kw_swiftcc: CC = CallingConv::Swift; break;
Amjad Aboud60b5e1b2015-12-21 14:07:14 +00001732 case lltok::kw_x86_intrcc: CC = CallingConv::X86_INTR; break;
Maksim Panchenkocce239c2015-09-29 22:09:16 +00001733 case lltok::kw_hhvmcc: CC = CallingConv::HHVM; break;
1734 case lltok::kw_hhvm_ccc: CC = CallingConv::HHVM_C; break;
Manman Ren19c7bbe2015-12-04 17:40:13 +00001735 case lltok::kw_cxx_fast_tlscc: CC = CallingConv::CXX_FAST_TLS; break;
Nicolai Haehnledf3a20c2016-04-06 19:40:20 +00001736 case lltok::kw_amdgpu_vs: CC = CallingConv::AMDGPU_VS; break;
Marek Olsaka302a7362017-05-02 15:41:10 +00001737 case lltok::kw_amdgpu_hs: CC = CallingConv::AMDGPU_HS; break;
Nicolai Haehnledf3a20c2016-04-06 19:40:20 +00001738 case lltok::kw_amdgpu_gs: CC = CallingConv::AMDGPU_GS; break;
1739 case lltok::kw_amdgpu_ps: CC = CallingConv::AMDGPU_PS; break;
1740 case lltok::kw_amdgpu_cs: CC = CallingConv::AMDGPU_CS; break;
Nikolay Haustov1f7732a2016-05-06 09:07:29 +00001741 case lltok::kw_amdgpu_kernel: CC = CallingConv::AMDGPU_KERNEL; break;
Sandeep Patel68c5f472009-09-02 08:44:58 +00001742 case lltok::kw_cc: {
Sandeep Patel68c5f472009-09-02 08:44:58 +00001743 Lex.Lex();
Alexey Samsonov17a9cff2014-09-10 18:00:17 +00001744 return ParseUInt32(CC);
Sandeep Patel68c5f472009-09-02 08:44:58 +00001745 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00001746 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001747
Chris Lattnerac161bf2009-01-02 07:01:27 +00001748 Lex.Lex();
1749 return false;
1750}
1751
Duncan P. N. Exon Smith19717ea2015-04-24 21:21:57 +00001752/// ParseMetadataAttachment
1753/// ::= !dbg !42
1754bool LLParser::ParseMetadataAttachment(unsigned &Kind, MDNode *&MD) {
1755 assert(Lex.getKind() == lltok::MetadataVar && "Expected metadata attachment");
1756
1757 std::string Name = Lex.getStrVal();
1758 Kind = M->getMDKindID(Name);
1759 Lex.Lex();
1760
1761 return ParseMDNode(MD);
1762}
1763
Chris Lattner5c427632009-12-30 05:31:19 +00001764/// ParseInstructionMetadata
Chris Lattner596760d2009-12-29 21:25:40 +00001765/// ::= !dbg !42 (',' !dbg !57)*
Duncan P. N. Exon Smith27d702c2015-04-24 21:29:36 +00001766bool LLParser::ParseInstructionMetadata(Instruction &Inst) {
Chris Lattner5c427632009-12-30 05:31:19 +00001767 do {
1768 if (Lex.getKind() != lltok::MetadataVar)
1769 return TokError("expected metadata after comma");
Devang Patelba4a6fd2009-09-29 00:01:14 +00001770
Duncan P. N. Exon Smith19717ea2015-04-24 21:21:57 +00001771 unsigned MDK;
Duncan P. N. Exon Smithf825dae2015-01-12 22:26:48 +00001772 MDNode *N;
Duncan P. N. Exon Smith19717ea2015-04-24 21:21:57 +00001773 if (ParseMetadataAttachment(MDK, N))
Chris Lattner1eed2d62009-12-30 04:56:59 +00001774 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001775
Duncan P. N. Exon Smith27d702c2015-04-24 21:29:36 +00001776 Inst.setMetadata(MDK, N);
Manman Ren209b17c2013-09-28 00:22:27 +00001777 if (MDK == LLVMContext::MD_tbaa)
Duncan P. N. Exon Smith27d702c2015-04-24 21:29:36 +00001778 InstsWithTBAATag.push_back(&Inst);
Manman Ren209b17c2013-09-28 00:22:27 +00001779
Chris Lattner596760d2009-12-29 21:25:40 +00001780 // If this is the end of the list, we're done.
Chris Lattner5c427632009-12-30 05:31:19 +00001781 } while (EatIfPresent(lltok::comma));
1782 return false;
Devang Patelea8a4b92009-09-17 23:04:48 +00001783}
1784
Peter Collingbournecceae7f2016-05-31 23:01:54 +00001785/// ParseGlobalObjectMetadataAttachment
1786/// ::= !dbg !57
1787bool LLParser::ParseGlobalObjectMetadataAttachment(GlobalObject &GO) {
1788 unsigned MDK;
1789 MDNode *N;
1790 if (ParseMetadataAttachment(MDK, N))
1791 return true;
1792
Peter Collingbourne382d81c2016-06-01 01:17:57 +00001793 GO.addMetadata(MDK, *N);
Peter Collingbournecceae7f2016-05-31 23:01:54 +00001794 return false;
1795}
1796
Duncan P. N. Exon Smith3d4cd752015-04-24 22:04:41 +00001797/// ParseOptionalFunctionMetadata
1798/// ::= (!dbg !57)*
1799bool LLParser::ParseOptionalFunctionMetadata(Function &F) {
Peter Collingbournecceae7f2016-05-31 23:01:54 +00001800 while (Lex.getKind() == lltok::MetadataVar)
1801 if (ParseGlobalObjectMetadataAttachment(F))
Duncan P. N. Exon Smith3d4cd752015-04-24 22:04:41 +00001802 return true;
Duncan P. N. Exon Smith3d4cd752015-04-24 22:04:41 +00001803 return false;
1804}
1805
Chris Lattnerac161bf2009-01-02 07:01:27 +00001806/// ParseOptionalAlignment
1807/// ::= /* empty */
1808/// ::= 'align' 4
1809bool LLParser::ParseOptionalAlignment(unsigned &Alignment) {
1810 Alignment = 0;
Chris Lattner3822f632009-01-02 08:05:26 +00001811 if (!EatIfPresent(lltok::kw_align))
1812 return false;
Chris Lattnerd11f5142009-01-05 07:46:05 +00001813 LocTy AlignLoc = Lex.getLoc();
1814 if (ParseUInt32(Alignment)) return true;
1815 if (!isPowerOf2_32(Alignment))
1816 return Error(AlignLoc, "alignment is not a power of two");
Dan Gohmand566d2c2010-07-30 21:07:05 +00001817 if (Alignment > Value::MaximumAlignment)
Dan Gohmana7e5a242010-07-28 20:12:04 +00001818 return Error(AlignLoc, "huge alignments are not supported yet");
Chris Lattnerd11f5142009-01-05 07:46:05 +00001819 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001820}
1821
Sanjoy Das31ea6d12015-04-16 20:29:50 +00001822/// ParseOptionalDerefAttrBytes
Hal Finkelb0407ba2014-07-18 15:51:28 +00001823/// ::= /* empty */
Sanjoy Das31ea6d12015-04-16 20:29:50 +00001824/// ::= AttrKind '(' 4 ')'
1825///
1826/// where AttrKind is either 'dereferenceable' or 'dereferenceable_or_null'.
1827bool LLParser::ParseOptionalDerefAttrBytes(lltok::Kind AttrKind,
1828 uint64_t &Bytes) {
1829 assert((AttrKind == lltok::kw_dereferenceable ||
1830 AttrKind == lltok::kw_dereferenceable_or_null) &&
1831 "contract!");
1832
Hal Finkelb0407ba2014-07-18 15:51:28 +00001833 Bytes = 0;
Sanjoy Das31ea6d12015-04-16 20:29:50 +00001834 if (!EatIfPresent(AttrKind))
Hal Finkelb0407ba2014-07-18 15:51:28 +00001835 return false;
1836 LocTy ParenLoc = Lex.getLoc();
1837 if (!EatIfPresent(lltok::lparen))
1838 return Error(ParenLoc, "expected '('");
1839 LocTy DerefLoc = Lex.getLoc();
1840 if (ParseUInt64(Bytes)) return true;
1841 ParenLoc = Lex.getLoc();
1842 if (!EatIfPresent(lltok::rparen))
1843 return Error(ParenLoc, "expected ')'");
1844 if (!Bytes)
1845 return Error(DerefLoc, "dereferenceable bytes must be non-zero");
1846 return false;
1847}
1848
Chris Lattnerb2f39502009-12-30 05:44:30 +00001849/// ParseOptionalCommaAlign
Michael Ilseman26ee2b82012-11-15 22:34:00 +00001850/// ::=
Chris Lattnerb2f39502009-12-30 05:44:30 +00001851/// ::= ',' align 4
1852///
1853/// This returns with AteExtraComma set to true if it ate an excess comma at the
1854/// end.
1855bool LLParser::ParseOptionalCommaAlign(unsigned &Alignment,
1856 bool &AteExtraComma) {
1857 AteExtraComma = false;
1858 while (EatIfPresent(lltok::comma)) {
1859 // Metadata at the end is an early exit.
Chris Lattnereafe4de2009-12-30 05:02:06 +00001860 if (Lex.getKind() == lltok::MetadataVar) {
Chris Lattnerb2f39502009-12-30 05:44:30 +00001861 AteExtraComma = true;
1862 return false;
1863 }
Michael Ilseman26ee2b82012-11-15 22:34:00 +00001864
Chris Lattner95b0ff42010-04-23 00:50:50 +00001865 if (Lex.getKind() != lltok::kw_align)
1866 return Error(Lex.getLoc(), "expected metadata or 'align'");
Duncan Sands4c5c8582010-10-21 16:07:10 +00001867
Chris Lattner95b0ff42010-04-23 00:50:50 +00001868 if (ParseOptionalAlignment(Alignment)) return true;
Chris Lattnerb2f39502009-12-30 05:44:30 +00001869 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001870
Devang Patelea8a4b92009-09-17 23:04:48 +00001871 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001872}
1873
Matt Arsenault3c1fc762017-04-10 22:27:50 +00001874/// ParseOptionalCommaAddrSpace
1875/// ::=
1876/// ::= ',' addrspace(1)
1877///
1878/// This returns with AteExtraComma set to true if it ate an excess comma at the
1879/// end.
1880bool LLParser::ParseOptionalCommaAddrSpace(unsigned &AddrSpace,
1881 LocTy &Loc,
1882 bool &AteExtraComma) {
1883 AteExtraComma = false;
1884 while (EatIfPresent(lltok::comma)) {
1885 // Metadata at the end is an early exit.
1886 if (Lex.getKind() == lltok::MetadataVar) {
1887 AteExtraComma = true;
1888 return false;
1889 }
1890
1891 Loc = Lex.getLoc();
1892 if (Lex.getKind() != lltok::kw_addrspace)
1893 return Error(Lex.getLoc(), "expected metadata or 'addrspace'");
1894
1895 if (ParseOptionalAddrSpace(AddrSpace))
1896 return true;
1897 }
1898
1899 return false;
1900}
1901
George Burgess IV278199f2016-04-12 01:05:35 +00001902bool LLParser::parseAllocSizeArguments(unsigned &BaseSizeArg,
1903 Optional<unsigned> &HowManyArg) {
1904 Lex.Lex();
1905
1906 auto StartParen = Lex.getLoc();
1907 if (!EatIfPresent(lltok::lparen))
1908 return Error(StartParen, "expected '('");
1909
1910 if (ParseUInt32(BaseSizeArg))
1911 return true;
1912
1913 if (EatIfPresent(lltok::comma)) {
1914 auto HowManyAt = Lex.getLoc();
1915 unsigned HowMany;
1916 if (ParseUInt32(HowMany))
1917 return true;
1918 if (HowMany == BaseSizeArg)
1919 return Error(HowManyAt,
1920 "'allocsize' indices can't refer to the same parameter");
1921 HowManyArg = HowMany;
1922 } else
1923 HowManyArg = None;
1924
1925 auto EndParen = Lex.getLoc();
1926 if (!EatIfPresent(lltok::rparen))
1927 return Error(EndParen, "expected ')'");
1928 return false;
1929}
1930
Eli Friedmanfee02c62011-07-25 23:16:38 +00001931/// ParseScopeAndOrdering
Konstantin Zhuravlyovbb80d3e2017-07-11 22:23:00 +00001932/// if isAtomic: ::= SyncScope? AtomicOrdering
Eli Friedmanfee02c62011-07-25 23:16:38 +00001933/// else: ::=
1934///
1935/// This sets Scope and Ordering to the parsed values.
Konstantin Zhuravlyovbb80d3e2017-07-11 22:23:00 +00001936bool LLParser::ParseScopeAndOrdering(bool isAtomic, SyncScope::ID &SSID,
Eli Friedmanfee02c62011-07-25 23:16:38 +00001937 AtomicOrdering &Ordering) {
1938 if (!isAtomic)
1939 return false;
1940
Konstantin Zhuravlyovbb80d3e2017-07-11 22:23:00 +00001941 return ParseScope(SSID) || ParseOrdering(Ordering);
1942}
Tim Northovere94a5182014-03-11 10:48:52 +00001943
Konstantin Zhuravlyovbb80d3e2017-07-11 22:23:00 +00001944/// ParseScope
1945/// ::= syncscope("singlethread" | "<target scope>")?
1946///
1947/// This sets synchronization scope ID to the ID of the parsed value.
1948bool LLParser::ParseScope(SyncScope::ID &SSID) {
1949 SSID = SyncScope::System;
1950 if (EatIfPresent(lltok::kw_syncscope)) {
1951 auto StartParenAt = Lex.getLoc();
1952 if (!EatIfPresent(lltok::lparen))
1953 return Error(StartParenAt, "Expected '(' in syncscope");
1954
1955 std::string SSN;
1956 auto SSNAt = Lex.getLoc();
1957 if (ParseStringConstant(SSN))
1958 return Error(SSNAt, "Expected synchronization scope name");
1959
1960 auto EndParenAt = Lex.getLoc();
1961 if (!EatIfPresent(lltok::rparen))
1962 return Error(EndParenAt, "Expected ')' in syncscope");
1963
1964 SSID = Context.getOrInsertSyncScopeID(SSN);
1965 }
1966
1967 return false;
Tim Northovere94a5182014-03-11 10:48:52 +00001968}
1969
1970/// ParseOrdering
1971/// ::= AtomicOrdering
1972///
1973/// This sets Ordering to the parsed value.
1974bool LLParser::ParseOrdering(AtomicOrdering &Ordering) {
Eli Friedmanfee02c62011-07-25 23:16:38 +00001975 switch (Lex.getKind()) {
1976 default: return TokError("Expected ordering on atomic instruction");
JF Bastien800f87a2016-04-06 21:19:33 +00001977 case lltok::kw_unordered: Ordering = AtomicOrdering::Unordered; break;
1978 case lltok::kw_monotonic: Ordering = AtomicOrdering::Monotonic; break;
1979 // Not specified yet:
1980 // case lltok::kw_consume: Ordering = AtomicOrdering::Consume; break;
1981 case lltok::kw_acquire: Ordering = AtomicOrdering::Acquire; break;
1982 case lltok::kw_release: Ordering = AtomicOrdering::Release; break;
1983 case lltok::kw_acq_rel: Ordering = AtomicOrdering::AcquireRelease; break;
1984 case lltok::kw_seq_cst:
1985 Ordering = AtomicOrdering::SequentiallyConsistent;
1986 break;
Eli Friedmanfee02c62011-07-25 23:16:38 +00001987 }
1988 Lex.Lex();
1989 return false;
1990}
1991
Charles Davisbe5557e2010-02-12 00:31:15 +00001992/// ParseOptionalStackAlignment
1993/// ::= /* empty */
1994/// ::= 'alignstack' '(' 4 ')'
1995bool LLParser::ParseOptionalStackAlignment(unsigned &Alignment) {
1996 Alignment = 0;
1997 if (!EatIfPresent(lltok::kw_alignstack))
1998 return false;
1999 LocTy ParenLoc = Lex.getLoc();
2000 if (!EatIfPresent(lltok::lparen))
2001 return Error(ParenLoc, "expected '('");
2002 LocTy AlignLoc = Lex.getLoc();
2003 if (ParseUInt32(Alignment)) return true;
2004 ParenLoc = Lex.getLoc();
2005 if (!EatIfPresent(lltok::rparen))
2006 return Error(ParenLoc, "expected ')'");
2007 if (!isPowerOf2_32(Alignment))
2008 return Error(AlignLoc, "stack alignment is not a power of two");
2009 return false;
2010}
Devang Patelea8a4b92009-09-17 23:04:48 +00002011
Chris Lattner28f1eeb2009-12-30 05:14:00 +00002012/// ParseIndexList - This parses the index list for an insert/extractvalue
2013/// instruction. This sets AteExtraComma in the case where we eat an extra
2014/// comma at the end of the line and find that it is followed by metadata.
2015/// Clients that don't allow metadata can call the version of this function that
2016/// only takes one argument.
2017///
Chris Lattnerac161bf2009-01-02 07:01:27 +00002018/// ParseIndexList
2019/// ::= (',' uint32)+
Chris Lattner28f1eeb2009-12-30 05:14:00 +00002020///
2021bool LLParser::ParseIndexList(SmallVectorImpl<unsigned> &Indices,
2022 bool &AteExtraComma) {
2023 AteExtraComma = false;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002024
Chris Lattnerac161bf2009-01-02 07:01:27 +00002025 if (Lex.getKind() != lltok::comma)
2026 return TokError("expected ',' as start of index list");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002027
Chris Lattner3822f632009-01-02 08:05:26 +00002028 while (EatIfPresent(lltok::comma)) {
Chris Lattner28f1eeb2009-12-30 05:14:00 +00002029 if (Lex.getKind() == lltok::MetadataVar) {
David Majnemer7ccc34d2015-02-16 09:18:13 +00002030 if (Indices.empty()) return TokError("expected index");
Chris Lattner28f1eeb2009-12-30 05:14:00 +00002031 AteExtraComma = true;
2032 return false;
2033 }
Nick Lewycky83e47112010-09-29 23:32:20 +00002034 unsigned Idx = 0;
Chris Lattner3822f632009-01-02 08:05:26 +00002035 if (ParseUInt32(Idx)) return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002036 Indices.push_back(Idx);
2037 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002038
Chris Lattnerac161bf2009-01-02 07:01:27 +00002039 return false;
2040}
2041
2042//===----------------------------------------------------------------------===//
2043// Type Parsing.
2044//===----------------------------------------------------------------------===//
2045
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002046/// ParseType - Parse a type.
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00002047bool LLParser::ParseType(Type *&Result, const Twine &Msg, bool AllowVoid) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002048 SMLoc TypeLoc = Lex.getLoc();
Chris Lattnerac161bf2009-01-02 07:01:27 +00002049 switch (Lex.getKind()) {
2050 default:
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00002051 return TokError(Msg);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002052 case lltok::Type:
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002053 // Type ::= 'float' | 'void' (etc)
Chris Lattnerac161bf2009-01-02 07:01:27 +00002054 Result = Lex.getTyVal();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002055 Lex.Lex();
Chris Lattnerac161bf2009-01-02 07:01:27 +00002056 break;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002057 case lltok::lbrace:
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002058 // Type ::= StructType
2059 if (ParseAnonStructType(Result, false))
Chris Lattnerac161bf2009-01-02 07:01:27 +00002060 return true;
2061 break;
2062 case lltok::lsquare:
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002063 // Type ::= '[' ... ']'
Chris Lattnerac161bf2009-01-02 07:01:27 +00002064 Lex.Lex(); // eat the lsquare.
2065 if (ParseArrayVectorType(Result, false))
2066 return true;
2067 break;
2068 case lltok::less: // Either vector or packed struct.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002069 // Type ::= '<' ... '>'
Chris Lattner3822f632009-01-02 08:05:26 +00002070 Lex.Lex();
2071 if (Lex.getKind() == lltok::lbrace) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002072 if (ParseAnonStructType(Result, true) ||
Chris Lattner3822f632009-01-02 08:05:26 +00002073 ParseToken(lltok::greater, "expected '>' at end of packed struct"))
Chris Lattnerac161bf2009-01-02 07:01:27 +00002074 return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002075 } else if (ParseArrayVectorType(Result, true))
2076 return true;
2077 break;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002078 case lltok::LocalVar: {
2079 // Type ::= %foo
2080 std::pair<Type*, LocTy> &Entry = NamedTypes[Lex.getStrVal()];
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002081
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002082 // If the type hasn't been defined yet, create a forward definition and
2083 // remember where that forward def'n was seen (in case it never is defined).
Craig Topper2617dcc2014-04-15 06:32:26 +00002084 if (!Entry.first) {
Chris Lattner335d3992011-08-12 18:06:37 +00002085 Entry.first = StructType::create(Context, Lex.getStrVal());
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002086 Entry.second = Lex.getLoc();
Chris Lattnerac161bf2009-01-02 07:01:27 +00002087 }
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002088 Result = Entry.first;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002089 Lex.Lex();
2090 break;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002091 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002092
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002093 case lltok::LocalVarID: {
2094 // Type ::= %4
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002095 std::pair<Type*, LocTy> &Entry = NumberedTypes[Lex.getUIntVal()];
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002096
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002097 // If the type hasn't been defined yet, create a forward definition and
2098 // remember where that forward def'n was seen (in case it never is defined).
Craig Topper2617dcc2014-04-15 06:32:26 +00002099 if (!Entry.first) {
Chris Lattner335d3992011-08-12 18:06:37 +00002100 Entry.first = StructType::create(Context);
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002101 Entry.second = Lex.getLoc();
Chris Lattnerac161bf2009-01-02 07:01:27 +00002102 }
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002103 Result = Entry.first;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002104 Lex.Lex();
2105 break;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002106 }
2107 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002108
2109 // Parse the type suffixes.
Eugene Zelenko1804a772016-08-25 00:45:04 +00002110 while (true) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002111 switch (Lex.getKind()) {
2112 // End of type.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002113 default:
2114 if (!AllowVoid && Result->isVoidTy())
2115 return Error(TypeLoc, "void type only allowed for function results");
2116 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002117
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002118 // Type ::= Type '*'
Chris Lattnerac161bf2009-01-02 07:01:27 +00002119 case lltok::star:
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002120 if (Result->isLabelTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00002121 return TokError("basic block pointers are invalid");
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002122 if (Result->isVoidTy())
2123 return TokError("pointers to void are invalid - use i8* instead");
2124 if (!PointerType::isValidElementType(Result))
Nick Lewycky0aa6a742009-06-07 07:26:46 +00002125 return TokError("pointer to this type is invalid");
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002126 Result = PointerType::getUnqual(Result);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002127 Lex.Lex();
2128 break;
2129
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002130 // Type ::= Type 'addrspace' '(' uint32 ')' '*'
Chris Lattnerac161bf2009-01-02 07:01:27 +00002131 case lltok::kw_addrspace: {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002132 if (Result->isLabelTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00002133 return TokError("basic block pointers are invalid");
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002134 if (Result->isVoidTy())
Dan Gohman9280a682009-02-09 17:41:21 +00002135 return TokError("pointers to void are invalid; use i8* instead");
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002136 if (!PointerType::isValidElementType(Result))
Nick Lewycky0aa6a742009-06-07 07:26:46 +00002137 return TokError("pointer to this type is invalid");
Chris Lattnerac161bf2009-01-02 07:01:27 +00002138 unsigned AddrSpace;
2139 if (ParseOptionalAddrSpace(AddrSpace) ||
2140 ParseToken(lltok::star, "expected '*' in address space"))
2141 return true;
2142
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002143 Result = PointerType::get(Result, AddrSpace);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002144 break;
2145 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002146
Chris Lattnerac161bf2009-01-02 07:01:27 +00002147 /// Types '(' ArgTypeListI ')' OptFuncAttrs
2148 case lltok::lparen:
2149 if (ParseFunctionType(Result))
2150 return true;
2151 break;
2152 }
2153 }
2154}
2155
2156/// ParseParameterList
2157/// ::= '(' ')'
2158/// ::= '(' Arg (',' Arg)* ')'
2159/// Arg
2160/// ::= Type OptionalAttributes Value OptionalAttributes
2161bool LLParser::ParseParameterList(SmallVectorImpl<ParamInfo> &ArgList,
Reid Kleckner83498642014-08-26 00:33:28 +00002162 PerFunctionState &PFS, bool IsMustTailCall,
2163 bool InVarArgsFunc) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002164 if (ParseToken(lltok::lparen, "expected '(' in call"))
2165 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002166
Chris Lattnerac161bf2009-01-02 07:01:27 +00002167 while (Lex.getKind() != lltok::rparen) {
2168 // If this isn't the first argument, we need a comma.
2169 if (!ArgList.empty() &&
2170 ParseToken(lltok::comma, "expected ',' in argument list"))
2171 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002172
Reid Kleckner83498642014-08-26 00:33:28 +00002173 // Parse an ellipsis if this is a musttail call in a variadic function.
2174 if (Lex.getKind() == lltok::dotdotdot) {
2175 const char *Msg = "unexpected ellipsis in argument list for ";
2176 if (!IsMustTailCall)
2177 return TokError(Twine(Msg) + "non-musttail call");
2178 if (!InVarArgsFunc)
2179 return TokError(Twine(Msg) + "musttail call in non-varargs function");
2180 Lex.Lex(); // Lex the '...', it is purely for readability.
2181 return ParseToken(lltok::rparen, "expected ')' at end of argument list");
2182 }
2183
Chris Lattnerac161bf2009-01-02 07:01:27 +00002184 // Parse the argument.
2185 LocTy ArgLoc;
Craig Topper2617dcc2014-04-15 06:32:26 +00002186 Type *ArgTy = nullptr;
Bill Wendling50d27842012-10-15 20:35:56 +00002187 AttrBuilder ArgAttrs;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002188 Value *V;
Victor Hernandezfa232232009-12-03 23:40:58 +00002189 if (ParseType(ArgTy, ArgLoc))
Chris Lattnerac161bf2009-01-02 07:01:27 +00002190 return true;
Victor Hernandezfa232232009-12-03 23:40:58 +00002191
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00002192 if (ArgTy->isMetadataTy()) {
2193 if (ParseMetadataAsValue(V, PFS))
2194 return true;
2195 } else {
2196 // Otherwise, handle normal operands.
2197 if (ParseOptionalParamAttrs(ArgAttrs) || ParseValue(ArgTy, V, PFS))
2198 return true;
2199 }
Reid Klecknerb5180542017-03-21 16:57:19 +00002200 ArgList.push_back(ParamInfo(
Reid Klecknerc2cb5602017-04-12 00:38:00 +00002201 ArgLoc, V, AttributeSet::get(V->getContext(), ArgAttrs)));
Chris Lattnerac161bf2009-01-02 07:01:27 +00002202 }
2203
Reid Kleckner83498642014-08-26 00:33:28 +00002204 if (IsMustTailCall && InVarArgsFunc)
2205 return TokError("expected '...' at end of argument list for musttail call "
2206 "in varargs function");
2207
Chris Lattnerac161bf2009-01-02 07:01:27 +00002208 Lex.Lex(); // Lex the ')'.
2209 return false;
2210}
2211
Sanjoy Dasb513a9f2015-09-24 23:34:52 +00002212/// ParseOptionalOperandBundles
2213/// ::= /*empty*/
2214/// ::= '[' OperandBundle [, OperandBundle ]* ']'
2215///
2216/// OperandBundle
2217/// ::= bundle-tag '(' ')'
2218/// ::= bundle-tag '(' Type Value [, Type Value ]* ')'
2219///
2220/// bundle-tag ::= String Constant
2221bool LLParser::ParseOptionalOperandBundles(
2222 SmallVectorImpl<OperandBundleDef> &BundleList, PerFunctionState &PFS) {
2223 LocTy BeginLoc = Lex.getLoc();
2224 if (!EatIfPresent(lltok::lsquare))
2225 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002226
Sanjoy Dasb513a9f2015-09-24 23:34:52 +00002227 while (Lex.getKind() != lltok::rsquare) {
2228 // If this isn't the first operand bundle, we need a comma.
2229 if (!BundleList.empty() &&
2230 ParseToken(lltok::comma, "expected ',' in input list"))
2231 return true;
2232
2233 std::string Tag;
2234 if (ParseStringConstant(Tag))
2235 return true;
2236
Sanjoy Dasb513a9f2015-09-24 23:34:52 +00002237 if (ParseToken(lltok::lparen, "expected '(' in operand bundle"))
2238 return true;
2239
Sanjoy Dasf79d3442015-11-18 08:30:07 +00002240 std::vector<Value *> Inputs;
Sanjoy Dasb513a9f2015-09-24 23:34:52 +00002241 while (Lex.getKind() != lltok::rparen) {
2242 // If this isn't the first input, we need a comma.
Sanjoy Dasf79d3442015-11-18 08:30:07 +00002243 if (!Inputs.empty() &&
Sanjoy Dasb513a9f2015-09-24 23:34:52 +00002244 ParseToken(lltok::comma, "expected ',' in input list"))
2245 return true;
2246
2247 Type *Ty = nullptr;
2248 Value *Input = nullptr;
2249 if (ParseType(Ty) || ParseValue(Ty, Input, PFS))
2250 return true;
Sanjoy Dasf79d3442015-11-18 08:30:07 +00002251 Inputs.push_back(Input);
Sanjoy Dasb513a9f2015-09-24 23:34:52 +00002252 }
2253
Sanjoy Dasf79d3442015-11-18 08:30:07 +00002254 BundleList.emplace_back(std::move(Tag), std::move(Inputs));
2255
Sanjoy Dasb513a9f2015-09-24 23:34:52 +00002256 Lex.Lex(); // Lex the ')'.
2257 }
2258
2259 if (BundleList.empty())
2260 return Error(BeginLoc, "operand bundle set must not be empty");
2261
2262 Lex.Lex(); // Lex the ']'.
2263 return false;
2264}
Chris Lattnerac161bf2009-01-02 07:01:27 +00002265
Chris Lattner2ed06b42009-01-05 18:34:07 +00002266/// ParseArgumentList - Parse the argument list for a function type or function
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002267/// prototype.
Chris Lattnerac161bf2009-01-02 07:01:27 +00002268/// ::= '(' ArgTypeListI ')'
2269/// ArgTypeListI
2270/// ::= /*empty*/
2271/// ::= '...'
2272/// ::= ArgTypeList ',' '...'
2273/// ::= ArgType (',' ArgType)*
Chris Lattner2ed06b42009-01-05 18:34:07 +00002274///
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002275bool LLParser::ParseArgumentList(SmallVectorImpl<ArgInfo> &ArgList,
2276 bool &isVarArg){
Chris Lattnerac161bf2009-01-02 07:01:27 +00002277 isVarArg = false;
2278 assert(Lex.getKind() == lltok::lparen);
2279 Lex.Lex(); // eat the (.
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002280
Chris Lattnerac161bf2009-01-02 07:01:27 +00002281 if (Lex.getKind() == lltok::rparen) {
2282 // empty
2283 } else if (Lex.getKind() == lltok::dotdotdot) {
2284 isVarArg = true;
2285 Lex.Lex();
2286 } else {
2287 LocTy TypeLoc = Lex.getLoc();
Craig Topper2617dcc2014-04-15 06:32:26 +00002288 Type *ArgTy = nullptr;
Bill Wendling50d27842012-10-15 20:35:56 +00002289 AttrBuilder Attrs;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002290 std::string Name;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002291
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002292 if (ParseType(ArgTy) ||
Bill Wendling34c2eb22012-12-04 23:40:58 +00002293 ParseOptionalParamAttrs(Attrs)) return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002294
Chris Lattnerfdd87902009-10-05 05:54:46 +00002295 if (ArgTy->isVoidTy())
Chris Lattnerf880ca22009-03-09 04:49:14 +00002296 return Error(TypeLoc, "argument can not have void type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002297
Chris Lattnerdef19492011-06-17 06:36:20 +00002298 if (Lex.getKind() == lltok::LocalVar) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002299 Name = Lex.getStrVal();
2300 Lex.Lex();
2301 }
Chris Lattner3822f632009-01-02 08:05:26 +00002302
Nick Lewycky0aa6a742009-06-07 07:26:46 +00002303 if (!FunctionType::isValidArgumentType(ArgTy))
Chris Lattner3822f632009-01-02 08:05:26 +00002304 return Error(TypeLoc, "invalid type for function argument");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002305
Reid Klecknereb9dd5b2017-04-10 23:31:05 +00002306 ArgList.emplace_back(TypeLoc, ArgTy,
Reid Klecknerc2cb5602017-04-12 00:38:00 +00002307 AttributeSet::get(ArgTy->getContext(), Attrs),
Benjamin Kramerf5e2fc42015-05-29 19:43:39 +00002308 std::move(Name));
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002309
Chris Lattner3822f632009-01-02 08:05:26 +00002310 while (EatIfPresent(lltok::comma)) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002311 // Handle ... at end of arg list.
Chris Lattner3822f632009-01-02 08:05:26 +00002312 if (EatIfPresent(lltok::dotdotdot)) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002313 isVarArg = true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002314 break;
2315 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002316
Chris Lattnerac161bf2009-01-02 07:01:27 +00002317 // Otherwise must be an argument type.
2318 TypeLoc = Lex.getLoc();
Bill Wendling34c2eb22012-12-04 23:40:58 +00002319 if (ParseType(ArgTy) || ParseOptionalParamAttrs(Attrs)) return true;
Chris Lattner3822f632009-01-02 08:05:26 +00002320
Chris Lattnerfdd87902009-10-05 05:54:46 +00002321 if (ArgTy->isVoidTy())
Chris Lattnerf880ca22009-03-09 04:49:14 +00002322 return Error(TypeLoc, "argument can not have void type");
2323
Chris Lattnerdef19492011-06-17 06:36:20 +00002324 if (Lex.getKind() == lltok::LocalVar) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002325 Name = Lex.getStrVal();
2326 Lex.Lex();
2327 } else {
2328 Name = "";
2329 }
Chris Lattner3822f632009-01-02 08:05:26 +00002330
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002331 if (!ArgTy->isFirstClassType())
Chris Lattner3822f632009-01-02 08:05:26 +00002332 return Error(TypeLoc, "invalid type for function argument");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002333
Reid Klecknereb9dd5b2017-04-10 23:31:05 +00002334 ArgList.emplace_back(TypeLoc, ArgTy,
Reid Klecknerc2cb5602017-04-12 00:38:00 +00002335 AttributeSet::get(ArgTy->getContext(), Attrs),
Reid Klecknereb9dd5b2017-04-10 23:31:05 +00002336 std::move(Name));
Chris Lattnerac161bf2009-01-02 07:01:27 +00002337 }
2338 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002339
Chris Lattner3822f632009-01-02 08:05:26 +00002340 return ParseToken(lltok::rparen, "expected ')' at end of argument list");
Chris Lattnerac161bf2009-01-02 07:01:27 +00002341}
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002342
Chris Lattnerac161bf2009-01-02 07:01:27 +00002343/// ParseFunctionType
2344/// ::= Type ArgumentList OptionalAttrs
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002345bool LLParser::ParseFunctionType(Type *&Result) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002346 assert(Lex.getKind() == lltok::lparen);
2347
Chris Lattnerce473c72009-01-05 08:04:33 +00002348 if (!FunctionType::isValidReturnType(Result))
2349 return TokError("invalid function return type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002350
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002351 SmallVector<ArgInfo, 8> ArgList;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002352 bool isVarArg;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002353 if (ParseArgumentList(ArgList, isVarArg))
Chris Lattnerac161bf2009-01-02 07:01:27 +00002354 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002355
Chris Lattnerac161bf2009-01-02 07:01:27 +00002356 // Reject names on the arguments lists.
2357 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
2358 if (!ArgList[i].Name.empty())
2359 return Error(ArgList[i].Loc, "argument name invalid in function type");
Reid Klecknerc2cb5602017-04-12 00:38:00 +00002360 if (ArgList[i].Attrs.hasAttributes())
Chris Lattner6bc5c892011-06-17 17:37:13 +00002361 return Error(ArgList[i].Loc,
2362 "argument attributes invalid in function type");
Chris Lattnerac161bf2009-01-02 07:01:27 +00002363 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002364
Jay Foadb804a2b2011-07-12 14:06:48 +00002365 SmallVector<Type*, 16> ArgListTy;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002366 for (unsigned i = 0, e = ArgList.size(); i != e; ++i)
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002367 ArgListTy.push_back(ArgList[i].Ty);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002368
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002369 Result = FunctionType::get(Result, ArgListTy, isVarArg);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002370 return false;
2371}
2372
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002373/// ParseAnonStructType - Parse an anonymous struct type, which is inlined into
2374/// other structs.
2375bool LLParser::ParseAnonStructType(Type *&Result, bool Packed) {
2376 SmallVector<Type*, 8> Elts;
2377 if (ParseStructBody(Elts)) return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002378
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002379 Result = StructType::get(Context, Elts, Packed);
2380 return false;
2381}
2382
2383/// ParseStructDefinition - Parse a struct in a 'type' definition.
2384bool LLParser::ParseStructDefinition(SMLoc TypeLoc, StringRef Name,
2385 std::pair<Type*, LocTy> &Entry,
2386 Type *&ResultTy) {
2387 // If the type was already defined, diagnose the redefinition.
2388 if (Entry.first && !Entry.second.isValid())
2389 return Error(TypeLoc, "redefinition of type");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002390
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002391 // If we have opaque, just return without filling in the definition for the
2392 // struct. This counts as a definition as far as the .ll file goes.
2393 if (EatIfPresent(lltok::kw_opaque)) {
2394 // This type is being defined, so clear the location to indicate this.
2395 Entry.second = SMLoc();
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002396
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002397 // If this type number has never been uttered, create it.
Craig Topper2617dcc2014-04-15 06:32:26 +00002398 if (!Entry.first)
Chris Lattner335d3992011-08-12 18:06:37 +00002399 Entry.first = StructType::create(Context, Name);
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002400 ResultTy = Entry.first;
2401 return false;
2402 }
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002403
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002404 // If the type starts with '<', then it is either a packed struct or a vector.
2405 bool isPacked = EatIfPresent(lltok::less);
2406
2407 // If we don't have a struct, then we have a random type alias, which we
2408 // accept for compatibility with old files. These types are not allowed to be
2409 // forward referenced and not allowed to be recursive.
2410 if (Lex.getKind() != lltok::lbrace) {
2411 if (Entry.first)
2412 return Error(TypeLoc, "forward references to non-struct type");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002413
Craig Topper2617dcc2014-04-15 06:32:26 +00002414 ResultTy = nullptr;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002415 if (isPacked)
2416 return ParseArrayVectorType(ResultTy, true);
2417 return ParseType(ResultTy);
2418 }
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002419
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002420 // This type is being defined, so clear the location to indicate this.
2421 Entry.second = SMLoc();
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002422
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002423 // If this type number has never been uttered, create it.
Craig Topper2617dcc2014-04-15 06:32:26 +00002424 if (!Entry.first)
Chris Lattner335d3992011-08-12 18:06:37 +00002425 Entry.first = StructType::create(Context, Name);
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002426
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002427 StructType *STy = cast<StructType>(Entry.first);
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002428
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002429 SmallVector<Type*, 8> Body;
2430 if (ParseStructBody(Body) ||
2431 (isPacked && ParseToken(lltok::greater, "expected '>' in packed struct")))
2432 return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002433
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002434 STy->setBody(Body, isPacked);
2435 ResultTy = STy;
2436 return false;
2437}
2438
Chris Lattnerac161bf2009-01-02 07:01:27 +00002439/// ParseStructType: Handles packed and unpacked types. </> parsed elsewhere.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002440/// StructType
Chris Lattnerac161bf2009-01-02 07:01:27 +00002441/// ::= '{' '}'
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002442/// ::= '{' Type (',' Type)* '}'
Chris Lattnerac161bf2009-01-02 07:01:27 +00002443/// ::= '<' '{' '}' '>'
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002444/// ::= '<' '{' Type (',' Type)* '}' '>'
2445bool LLParser::ParseStructBody(SmallVectorImpl<Type*> &Body) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002446 assert(Lex.getKind() == lltok::lbrace);
2447 Lex.Lex(); // Consume the '{'
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002448
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002449 // Handle the empty struct.
2450 if (EatIfPresent(lltok::rbrace))
Chris Lattnerac161bf2009-01-02 07:01:27 +00002451 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002452
Chris Lattnerf880ca22009-03-09 04:49:14 +00002453 LocTy EltTyLoc = Lex.getLoc();
Craig Topper2617dcc2014-04-15 06:32:26 +00002454 Type *Ty = nullptr;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002455 if (ParseType(Ty)) return true;
2456 Body.push_back(Ty);
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 Lattner3822f632009-01-02 08:05:26 +00002461 while (EatIfPresent(lltok::comma)) {
Chris Lattnerf880ca22009-03-09 04:49:14 +00002462 EltTyLoc = Lex.getLoc();
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002463 if (ParseType(Ty)) return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002464
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002465 if (!StructType::isValidElementType(Ty))
Nick Lewycky0aa6a742009-06-07 07:26:46 +00002466 return Error(EltTyLoc, "invalid element type for struct");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002467
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002468 Body.push_back(Ty);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002469 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002470
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002471 return ParseToken(lltok::rbrace, "expected '}' at end of struct");
Chris Lattnerac161bf2009-01-02 07:01:27 +00002472}
2473
2474/// ParseArrayVectorType - Parse an array or vector type, assuming the first
2475/// token has already been consumed.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002476/// Type
Chris Lattnerac161bf2009-01-02 07:01:27 +00002477/// ::= '[' APSINTVAL 'x' Types ']'
2478/// ::= '<' APSINTVAL 'x' Types '>'
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002479bool LLParser::ParseArrayVectorType(Type *&Result, bool isVector) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002480 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned() ||
2481 Lex.getAPSIntVal().getBitWidth() > 64)
2482 return TokError("expected number in address space");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002483
Chris Lattnerac161bf2009-01-02 07:01:27 +00002484 LocTy SizeLoc = Lex.getLoc();
2485 uint64_t Size = Lex.getAPSIntVal().getZExtValue();
Chris Lattner3822f632009-01-02 08:05:26 +00002486 Lex.Lex();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002487
Chris Lattner3822f632009-01-02 08:05:26 +00002488 if (ParseToken(lltok::kw_x, "expected 'x' after element count"))
2489 return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002490
2491 LocTy TypeLoc = Lex.getLoc();
Craig Topper2617dcc2014-04-15 06:32:26 +00002492 Type *EltTy = nullptr;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002493 if (ParseType(EltTy)) return true;
Chris Lattnerf880ca22009-03-09 04:49:14 +00002494
Chris Lattner3822f632009-01-02 08:05:26 +00002495 if (ParseToken(isVector ? lltok::greater : lltok::rsquare,
2496 "expected end of sequential type"))
2497 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002498
Chris Lattnerac161bf2009-01-02 07:01:27 +00002499 if (isVector) {
Chris Lattnerbb1fe8a2009-02-28 18:12:41 +00002500 if (Size == 0)
2501 return Error(SizeLoc, "zero element vector is illegal");
Chris Lattnerac161bf2009-01-02 07:01:27 +00002502 if ((unsigned)Size != Size)
2503 return Error(SizeLoc, "size too large for vector");
Nick Lewycky0aa6a742009-06-07 07:26:46 +00002504 if (!VectorType::isValidElementType(EltTy))
Duncan Sandse6beec62012-11-13 12:59:33 +00002505 return Error(TypeLoc, "invalid vector element type");
Owen Anderson4056ca92009-07-29 22:17:13 +00002506 Result = VectorType::get(EltTy, unsigned(Size));
Chris Lattnerac161bf2009-01-02 07:01:27 +00002507 } else {
Nick Lewycky0aa6a742009-06-07 07:26:46 +00002508 if (!ArrayType::isValidElementType(EltTy))
Chris Lattnerac161bf2009-01-02 07:01:27 +00002509 return Error(TypeLoc, "invalid array element type");
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002510 Result = ArrayType::get(EltTy, Size);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002511 }
2512 return false;
2513}
2514
2515//===----------------------------------------------------------------------===//
2516// Function Semantic Analysis.
2517//===----------------------------------------------------------------------===//
2518
Chris Lattner3432c622009-10-28 03:39:23 +00002519LLParser::PerFunctionState::PerFunctionState(LLParser &p, Function &f,
2520 int functionNumber)
2521 : P(p), F(f), FunctionNumber(functionNumber) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002522
2523 // Insert unnamed arguments into the NumberedVals list.
Duncan P. N. Exon Smithac331fb2015-10-20 01:12:49 +00002524 for (Argument &A : F.args())
2525 if (!A.hasName())
2526 NumberedVals.push_back(&A);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002527}
2528
2529LLParser::PerFunctionState::~PerFunctionState() {
2530 // If there were any forward referenced non-basicblock values, delete them.
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002531
David Blaikie9ebdc692015-09-21 21:07:50 +00002532 for (const auto &P : ForwardRefVals) {
2533 if (isa<BasicBlock>(P.second.first))
2534 continue;
2535 P.second.first->replaceAllUsesWith(
2536 UndefValue::get(P.second.first->getType()));
Reid Kleckner96ab8722017-05-18 17:24:10 +00002537 P.second.first->deleteValue();
David Blaikie9ebdc692015-09-21 21:07:50 +00002538 }
2539
2540 for (const auto &P : ForwardRefValIDs) {
2541 if (isa<BasicBlock>(P.second.first))
2542 continue;
2543 P.second.first->replaceAllUsesWith(
2544 UndefValue::get(P.second.first->getType()));
Reid Kleckner96ab8722017-05-18 17:24:10 +00002545 P.second.first->deleteValue();
David Blaikie9ebdc692015-09-21 21:07:50 +00002546 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00002547}
2548
Chris Lattner3432c622009-10-28 03:39:23 +00002549bool LLParser::PerFunctionState::FinishFunction() {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002550 if (!ForwardRefVals.empty())
2551 return P.Error(ForwardRefVals.begin()->second.second,
2552 "use of undefined value '%" + ForwardRefVals.begin()->first +
2553 "'");
2554 if (!ForwardRefValIDs.empty())
2555 return P.Error(ForwardRefValIDs.begin()->second.second,
2556 "use of undefined value '%" +
Benjamin Kramerc7583112010-09-27 17:42:11 +00002557 Twine(ForwardRefValIDs.begin()->first) + "'");
Chris Lattnerac161bf2009-01-02 07:01:27 +00002558 return false;
2559}
2560
Chris Lattnerac161bf2009-01-02 07:01:27 +00002561/// GetVal - Get a value with the specified name or ID, creating a
2562/// forward reference record if needed. This can return null if the value
2563/// exists but does not have the right type.
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00002564Value *LLParser::PerFunctionState::GetVal(const std::string &Name, Type *Ty,
David Majnemer8a1c45d2015-12-12 05:38:55 +00002565 LocTy Loc) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002566 // Look this name up in the normal function symbol table.
Mehdi Aminia53d49e2016-09-17 06:00:02 +00002567 Value *Val = F.getValueSymbolTable()->lookup(Name);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002568
Chris Lattnerac161bf2009-01-02 07:01:27 +00002569 // If this is a forward reference for the value, see if we already created a
2570 // forward ref record.
Craig Topper2617dcc2014-04-15 06:32:26 +00002571 if (!Val) {
David Blaikie9ebdc692015-09-21 21:07:50 +00002572 auto I = ForwardRefVals.find(Name);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002573 if (I != ForwardRefVals.end())
2574 Val = I->second.first;
2575 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002576
Chris Lattnerac161bf2009-01-02 07:01:27 +00002577 // If we have the value in the symbol table or fwd-ref table, return it.
2578 if (Val) {
2579 if (Val->getType() == Ty) return Val;
Chris Lattnerfdd87902009-10-05 05:54:46 +00002580 if (Ty->isLabelTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00002581 P.Error(Loc, "'%" + Name + "' is not a basic block");
2582 else
2583 P.Error(Loc, "'%" + Name + "' defined with type '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00002584 getTypeString(Val->getType()) + "'");
Craig Topper2617dcc2014-04-15 06:32:26 +00002585 return nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002586 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002587
Chris Lattnerac161bf2009-01-02 07:01:27 +00002588 // Don't make placeholders with invalid type.
Duncan P. N. Exon Smith6a6e9cb2014-08-05 18:22:58 +00002589 if (!Ty->isFirstClassType()) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002590 P.Error(Loc, "invalid use of a non-first-class type");
Craig Topper2617dcc2014-04-15 06:32:26 +00002591 return nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002592 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002593
Chris Lattnerac161bf2009-01-02 07:01:27 +00002594 // Otherwise, create a new forward reference for this value and remember it.
2595 Value *FwdVal;
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00002596 if (Ty->isLabelTy()) {
Owen Anderson55f1c092009-08-13 21:58:54 +00002597 FwdVal = BasicBlock::Create(F.getContext(), Name, &F);
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00002598 } else {
David Majnemer8a1c45d2015-12-12 05:38:55 +00002599 FwdVal = new Argument(Ty, Name);
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00002600 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002601
Chris Lattnerac161bf2009-01-02 07:01:27 +00002602 ForwardRefVals[Name] = std::make_pair(FwdVal, Loc);
2603 return FwdVal;
2604}
2605
David Majnemer8a1c45d2015-12-12 05:38:55 +00002606Value *LLParser::PerFunctionState::GetVal(unsigned ID, Type *Ty, LocTy Loc) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002607 // Look this name up in the normal function symbol table.
Craig Topper2617dcc2014-04-15 06:32:26 +00002608 Value *Val = ID < NumberedVals.size() ? NumberedVals[ID] : nullptr;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002609
Chris Lattnerac161bf2009-01-02 07:01:27 +00002610 // If this is a forward reference for the value, see if we already created a
2611 // forward ref record.
Craig Topper2617dcc2014-04-15 06:32:26 +00002612 if (!Val) {
David Blaikie9ebdc692015-09-21 21:07:50 +00002613 auto I = ForwardRefValIDs.find(ID);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002614 if (I != ForwardRefValIDs.end())
2615 Val = I->second.first;
2616 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002617
Chris Lattnerac161bf2009-01-02 07:01:27 +00002618 // If we have the value in the symbol table or fwd-ref table, return it.
2619 if (Val) {
2620 if (Val->getType() == Ty) return Val;
Chris Lattnerfdd87902009-10-05 05:54:46 +00002621 if (Ty->isLabelTy())
Benjamin Kramerc7583112010-09-27 17:42:11 +00002622 P.Error(Loc, "'%" + Twine(ID) + "' is not a basic block");
Chris Lattnerac161bf2009-01-02 07:01:27 +00002623 else
Benjamin Kramerc7583112010-09-27 17:42:11 +00002624 P.Error(Loc, "'%" + Twine(ID) + "' defined with type '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00002625 getTypeString(Val->getType()) + "'");
Craig Topper2617dcc2014-04-15 06:32:26 +00002626 return nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002627 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002628
Duncan P. N. Exon Smith6a6e9cb2014-08-05 18:22:58 +00002629 if (!Ty->isFirstClassType()) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002630 P.Error(Loc, "invalid use of a non-first-class type");
Craig Topper2617dcc2014-04-15 06:32:26 +00002631 return nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002632 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002633
Chris Lattnerac161bf2009-01-02 07:01:27 +00002634 // Otherwise, create a new forward reference for this value and remember it.
2635 Value *FwdVal;
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00002636 if (Ty->isLabelTy()) {
Owen Anderson55f1c092009-08-13 21:58:54 +00002637 FwdVal = BasicBlock::Create(F.getContext(), "", &F);
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00002638 } else {
David Majnemer8a1c45d2015-12-12 05:38:55 +00002639 FwdVal = new Argument(Ty);
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00002640 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002641
Chris Lattnerac161bf2009-01-02 07:01:27 +00002642 ForwardRefValIDs[ID] = std::make_pair(FwdVal, Loc);
2643 return FwdVal;
2644}
2645
2646/// SetInstName - After an instruction is parsed and inserted into its
2647/// basic block, this installs its name.
2648bool LLParser::PerFunctionState::SetInstName(int NameID,
2649 const std::string &NameStr,
2650 LocTy NameLoc, Instruction *Inst) {
2651 // If this instruction has void type, it cannot have a name or ID specified.
Chris Lattnerfdd87902009-10-05 05:54:46 +00002652 if (Inst->getType()->isVoidTy()) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002653 if (NameID != -1 || !NameStr.empty())
2654 return P.Error(NameLoc, "instructions returning void cannot have a name");
2655 return false;
2656 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002657
Chris Lattnerac161bf2009-01-02 07:01:27 +00002658 // If this was a numbered instruction, verify that the instruction is the
2659 // expected value and resolve any forward references.
2660 if (NameStr.empty()) {
2661 // If neither a name nor an ID was specified, just use the next ID.
2662 if (NameID == -1)
2663 NameID = NumberedVals.size();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002664
Chris Lattnerac161bf2009-01-02 07:01:27 +00002665 if (unsigned(NameID) != NumberedVals.size())
2666 return P.Error(NameLoc, "instruction expected to be numbered '%" +
Benjamin Kramerc7583112010-09-27 17:42:11 +00002667 Twine(NumberedVals.size()) + "'");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002668
David Blaikie9ebdc692015-09-21 21:07:50 +00002669 auto FI = ForwardRefValIDs.find(NameID);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002670 if (FI != ForwardRefValIDs.end()) {
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00002671 Value *Sentinel = FI->second.first;
2672 if (Sentinel->getType() != Inst->getType())
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002673 return P.Error(NameLoc, "instruction forward referenced with type '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00002674 getTypeString(FI->second.first->getType()) + "'");
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00002675
2676 Sentinel->replaceAllUsesWith(Inst);
Reid Kleckner96ab8722017-05-18 17:24:10 +00002677 Sentinel->deleteValue();
Chris Lattnerac161bf2009-01-02 07:01:27 +00002678 ForwardRefValIDs.erase(FI);
2679 }
2680
2681 NumberedVals.push_back(Inst);
2682 return false;
2683 }
2684
2685 // Otherwise, the instruction had a name. Resolve forward refs and set it.
David Blaikie9ebdc692015-09-21 21:07:50 +00002686 auto FI = ForwardRefVals.find(NameStr);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002687 if (FI != ForwardRefVals.end()) {
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00002688 Value *Sentinel = FI->second.first;
2689 if (Sentinel->getType() != Inst->getType())
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002690 return P.Error(NameLoc, "instruction forward referenced with type '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00002691 getTypeString(FI->second.first->getType()) + "'");
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00002692
2693 Sentinel->replaceAllUsesWith(Inst);
Reid Kleckner96ab8722017-05-18 17:24:10 +00002694 Sentinel->deleteValue();
Chris Lattnerac161bf2009-01-02 07:01:27 +00002695 ForwardRefVals.erase(FI);
2696 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002697
Chris Lattnerac161bf2009-01-02 07:01:27 +00002698 // Set the name on the instruction.
2699 Inst->setName(NameStr);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002700
Benjamin Kramer1dc34b42010-10-16 11:28:23 +00002701 if (Inst->getName() != NameStr)
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002702 return P.Error(NameLoc, "multiple definition of local value named '" +
Chris Lattnerac161bf2009-01-02 07:01:27 +00002703 NameStr + "'");
2704 return false;
2705}
2706
2707/// GetBB - Get a basic block with the specified name or ID, creating a
2708/// forward reference record if needed.
2709BasicBlock *LLParser::PerFunctionState::GetBB(const std::string &Name,
2710 LocTy Loc) {
Owen Anderson576a9a22015-03-02 05:25:09 +00002711 return dyn_cast_or_null<BasicBlock>(GetVal(Name,
2712 Type::getLabelTy(F.getContext()), Loc));
Chris Lattnerac161bf2009-01-02 07:01:27 +00002713}
2714
2715BasicBlock *LLParser::PerFunctionState::GetBB(unsigned ID, LocTy Loc) {
Owen Anderson576a9a22015-03-02 05:25:09 +00002716 return dyn_cast_or_null<BasicBlock>(GetVal(ID,
2717 Type::getLabelTy(F.getContext()), Loc));
Chris Lattnerac161bf2009-01-02 07:01:27 +00002718}
2719
2720/// DefineBB - Define the specified basic block, which is either named or
2721/// unnamed. If there is an error, this returns null otherwise it returns
2722/// the block being defined.
2723BasicBlock *LLParser::PerFunctionState::DefineBB(const std::string &Name,
2724 LocTy Loc) {
2725 BasicBlock *BB;
2726 if (Name.empty())
2727 BB = GetBB(NumberedVals.size(), Loc);
2728 else
2729 BB = GetBB(Name, Loc);
Craig Topper2617dcc2014-04-15 06:32:26 +00002730 if (!BB) return nullptr; // Already diagnosed error.
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002731
Chris Lattnerac161bf2009-01-02 07:01:27 +00002732 // Move the block to the end of the function. Forward ref'd blocks are
2733 // inserted wherever they happen to be referenced.
2734 F.getBasicBlockList().splice(F.end(), F.getBasicBlockList(), BB);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002735
Chris Lattnerac161bf2009-01-02 07:01:27 +00002736 // Remove the block from forward ref sets.
2737 if (Name.empty()) {
2738 ForwardRefValIDs.erase(NumberedVals.size());
2739 NumberedVals.push_back(BB);
2740 } else {
2741 // BB forward references are already in the function symbol table.
2742 ForwardRefVals.erase(Name);
2743 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002744
Chris Lattnerac161bf2009-01-02 07:01:27 +00002745 return BB;
2746}
2747
2748//===----------------------------------------------------------------------===//
2749// Constants.
2750//===----------------------------------------------------------------------===//
2751
2752/// ParseValID - Parse an abstract value that doesn't necessarily have a
2753/// type implied. For example, if we parse "4" we don't know what integer type
2754/// it has. The value will later be combined with its type and checked for
Victor Hernandezb8fd1522010-01-10 07:14:18 +00002755/// sanity. PFS is used to convert function-local operands of metadata (since
2756/// metadata operands are not just parsed here but also converted to values).
2757/// PFS can be null when we are not parsing metadata values inside a function.
Victor Hernandezdc6e65a2010-01-05 22:22:14 +00002758bool LLParser::ParseValID(ValID &ID, PerFunctionState *PFS) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002759 ID.Loc = Lex.getLoc();
2760 switch (Lex.getKind()) {
2761 default: return TokError("expected value token");
2762 case lltok::GlobalID: // @42
2763 ID.UIntVal = Lex.getUIntVal();
2764 ID.Kind = ValID::t_GlobalID;
2765 break;
2766 case lltok::GlobalVar: // @foo
2767 ID.StrVal = Lex.getStrVal();
2768 ID.Kind = ValID::t_GlobalName;
2769 break;
2770 case lltok::LocalVarID: // %42
2771 ID.UIntVal = Lex.getUIntVal();
2772 ID.Kind = ValID::t_LocalID;
2773 break;
2774 case lltok::LocalVar: // %foo
Chris Lattnerac161bf2009-01-02 07:01:27 +00002775 ID.StrVal = Lex.getStrVal();
2776 ID.Kind = ValID::t_LocalName;
2777 break;
2778 case lltok::APSInt:
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002779 ID.APSIntVal = Lex.getAPSIntVal();
Chris Lattnerac161bf2009-01-02 07:01:27 +00002780 ID.Kind = ValID::t_APSInt;
2781 break;
2782 case lltok::APFloat:
2783 ID.APFloatVal = Lex.getAPFloatVal();
2784 ID.Kind = ValID::t_APFloat;
2785 break;
2786 case lltok::kw_true:
Owen Anderson23a204d2009-07-31 17:39:07 +00002787 ID.ConstantVal = ConstantInt::getTrue(Context);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002788 ID.Kind = ValID::t_Constant;
2789 break;
2790 case lltok::kw_false:
Owen Anderson23a204d2009-07-31 17:39:07 +00002791 ID.ConstantVal = ConstantInt::getFalse(Context);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002792 ID.Kind = ValID::t_Constant;
2793 break;
2794 case lltok::kw_null: ID.Kind = ValID::t_Null; break;
2795 case lltok::kw_undef: ID.Kind = ValID::t_Undef; break;
2796 case lltok::kw_zeroinitializer: ID.Kind = ValID::t_Zero; break;
David Majnemerf0f224d2015-11-11 21:57:16 +00002797 case lltok::kw_none: ID.Kind = ValID::t_None; break;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002798
Chris Lattnerac161bf2009-01-02 07:01:27 +00002799 case lltok::lbrace: {
2800 // ValID ::= '{' ConstVector '}'
2801 Lex.Lex();
2802 SmallVector<Constant*, 16> Elts;
2803 if (ParseGlobalValueVector(Elts) ||
2804 ParseToken(lltok::rbrace, "expected end of struct constant"))
2805 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002806
David Blaikieadbda4b2015-08-03 20:08:41 +00002807 ID.ConstantStructElts = make_unique<Constant *[]>(Elts.size());
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002808 ID.UIntVal = Elts.size();
David Blaikieadbda4b2015-08-03 20:08:41 +00002809 memcpy(ID.ConstantStructElts.get(), Elts.data(),
2810 Elts.size() * sizeof(Elts[0]));
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002811 ID.Kind = ValID::t_ConstantStruct;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002812 return false;
2813 }
2814 case lltok::less: {
2815 // ValID ::= '<' ConstVector '>' --> Vector.
2816 // ValID ::= '<' '{' ConstVector '}' '>' --> Packed Struct.
2817 Lex.Lex();
Chris Lattner3822f632009-01-02 08:05:26 +00002818 bool isPackedStruct = EatIfPresent(lltok::lbrace);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002819
Chris Lattnerac161bf2009-01-02 07:01:27 +00002820 SmallVector<Constant*, 16> Elts;
2821 LocTy FirstEltLoc = Lex.getLoc();
2822 if (ParseGlobalValueVector(Elts) ||
2823 (isPackedStruct &&
2824 ParseToken(lltok::rbrace, "expected end of packed struct")) ||
2825 ParseToken(lltok::greater, "expected end of constant"))
2826 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002827
Chris Lattnerac161bf2009-01-02 07:01:27 +00002828 if (isPackedStruct) {
David Blaikieadbda4b2015-08-03 20:08:41 +00002829 ID.ConstantStructElts = make_unique<Constant *[]>(Elts.size());
2830 memcpy(ID.ConstantStructElts.get(), Elts.data(),
2831 Elts.size() * sizeof(Elts[0]));
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002832 ID.UIntVal = Elts.size();
2833 ID.Kind = ValID::t_PackedConstantStruct;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002834 return false;
2835 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002836
Chris Lattnerac161bf2009-01-02 07:01:27 +00002837 if (Elts.empty())
2838 return Error(ID.Loc, "constant vector must not be empty");
2839
Duncan Sands9dff9be2010-02-15 16:12:20 +00002840 if (!Elts[0]->getType()->isIntegerTy() &&
Nadav Rotem3924cb02011-12-05 06:29:09 +00002841 !Elts[0]->getType()->isFloatingPointTy() &&
2842 !Elts[0]->getType()->isPointerTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00002843 return Error(FirstEltLoc,
Nadav Rotem3924cb02011-12-05 06:29:09 +00002844 "vector elements must have integer, pointer or floating point type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002845
Chris Lattnerac161bf2009-01-02 07:01:27 +00002846 // Verify that all the vector elements have the same type.
2847 for (unsigned i = 1, e = Elts.size(); i != e; ++i)
2848 if (Elts[i]->getType() != Elts[0]->getType())
2849 return Error(FirstEltLoc,
Benjamin Kramerc7583112010-09-27 17:42:11 +00002850 "vector element #" + Twine(i) +
Chris Lattner0f214eb2011-06-18 21:18:23 +00002851 " is not of type '" + getTypeString(Elts[0]->getType()));
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002852
Chris Lattner69229312011-02-15 00:14:00 +00002853 ID.ConstantVal = ConstantVector::get(Elts);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002854 ID.Kind = ValID::t_Constant;
2855 return false;
2856 }
2857 case lltok::lsquare: { // Array Constant
2858 Lex.Lex();
2859 SmallVector<Constant*, 16> Elts;
2860 LocTy FirstEltLoc = Lex.getLoc();
2861 if (ParseGlobalValueVector(Elts) ||
2862 ParseToken(lltok::rsquare, "expected end of array constant"))
2863 return true;
2864
2865 // Handle empty element.
2866 if (Elts.empty()) {
2867 // Use undef instead of an array because it's inconvenient to determine
2868 // the element type at this point, there being no elements to examine.
Chris Lattner998fa0a2009-01-05 07:52:51 +00002869 ID.Kind = ValID::t_EmptyArray;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002870 return false;
2871 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002872
Chris Lattnerac161bf2009-01-02 07:01:27 +00002873 if (!Elts[0]->getType()->isFirstClassType())
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002874 return Error(FirstEltLoc, "invalid array element type: " +
Chris Lattner0f214eb2011-06-18 21:18:23 +00002875 getTypeString(Elts[0]->getType()));
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002876
Owen Anderson4056ca92009-07-29 22:17:13 +00002877 ArrayType *ATy = ArrayType::get(Elts[0]->getType(), Elts.size());
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002878
Chris Lattnerac161bf2009-01-02 07:01:27 +00002879 // Verify all elements are correct type!
Chris Lattner59d0e3b2009-01-02 08:49:06 +00002880 for (unsigned i = 0, e = Elts.size(); i != e; ++i) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002881 if (Elts[i]->getType() != Elts[0]->getType())
2882 return Error(FirstEltLoc,
Benjamin Kramerc7583112010-09-27 17:42:11 +00002883 "array element #" + Twine(i) +
Chris Lattner0f214eb2011-06-18 21:18:23 +00002884 " is not of type '" + getTypeString(Elts[0]->getType()));
Chris Lattnerac161bf2009-01-02 07:01:27 +00002885 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002886
Jay Foad83be3612011-06-22 09:24:39 +00002887 ID.ConstantVal = ConstantArray::get(ATy, Elts);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002888 ID.Kind = ValID::t_Constant;
2889 return false;
2890 }
2891 case lltok::kw_c: // c "foo"
2892 Lex.Lex();
Chris Lattnercf9e8f62012-02-05 02:29:43 +00002893 ID.ConstantVal = ConstantDataArray::getString(Context, Lex.getStrVal(),
2894 false);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002895 if (ParseToken(lltok::StringConstant, "expected string")) return true;
2896 ID.Kind = ValID::t_Constant;
2897 return false;
2898
2899 case lltok::kw_asm: {
Chad Rosier6f9c3852013-02-14 20:44:07 +00002900 // ValID ::= 'asm' SideEffect? AlignStack? IntelDialect? STRINGCONSTANT ','
2901 // STRINGCONSTANT
Chad Rosierd8c76102012-09-05 19:00:49 +00002902 bool HasSideEffect, AlignStack, AsmDialect;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002903 Lex.Lex();
2904 if (ParseOptionalToken(lltok::kw_sideeffect, HasSideEffect) ||
Dale Johannesen1cfb9582009-10-21 23:28:00 +00002905 ParseOptionalToken(lltok::kw_alignstack, AlignStack) ||
Chad Rosierd8c76102012-09-05 19:00:49 +00002906 ParseOptionalToken(lltok::kw_inteldialect, AsmDialect) ||
Chris Lattner3822f632009-01-02 08:05:26 +00002907 ParseStringConstant(ID.StrVal) ||
2908 ParseToken(lltok::comma, "expected comma in inline asm expression") ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00002909 ParseToken(lltok::StringConstant, "expected constraint string"))
2910 return true;
2911 ID.StrVal2 = Lex.getStrVal();
Chad Rosierf42fad62012-09-05 00:08:17 +00002912 ID.UIntVal = unsigned(HasSideEffect) | (unsigned(AlignStack)<<1) |
Chad Rosierd8c76102012-09-05 19:00:49 +00002913 (unsigned(AsmDialect)<<2);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002914 ID.Kind = ValID::t_InlineAsm;
2915 return false;
2916 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002917
Chris Lattner3432c622009-10-28 03:39:23 +00002918 case lltok::kw_blockaddress: {
2919 // ValID ::= 'blockaddress' '(' @foo ',' %bar ')'
2920 Lex.Lex();
2921
2922 ValID Fn, Label;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002923
Chris Lattner3432c622009-10-28 03:39:23 +00002924 if (ParseToken(lltok::lparen, "expected '(' in block address expression") ||
2925 ParseValID(Fn) ||
2926 ParseToken(lltok::comma, "expected comma in block address expression")||
2927 ParseValID(Label) ||
2928 ParseToken(lltok::rparen, "expected ')' in block address expression"))
2929 return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002930
Chris Lattner3432c622009-10-28 03:39:23 +00002931 if (Fn.Kind != ValID::t_GlobalID && Fn.Kind != ValID::t_GlobalName)
2932 return Error(Fn.Loc, "expected function name in blockaddress");
Chris Lattneraa99c942009-11-01 01:27:45 +00002933 if (Label.Kind != ValID::t_LocalID && Label.Kind != ValID::t_LocalName)
Chris Lattner3432c622009-10-28 03:39:23 +00002934 return Error(Label.Loc, "expected basic block name in blockaddress");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002935
Duncan P. N. Exon Smith17169902014-08-19 00:13:19 +00002936 // Try to find the function (but skip it if it's forward-referenced).
2937 GlobalValue *GV = nullptr;
2938 if (Fn.Kind == ValID::t_GlobalID) {
2939 if (Fn.UIntVal < NumberedVals.size())
2940 GV = NumberedVals[Fn.UIntVal];
2941 } else if (!ForwardRefVals.count(Fn.StrVal)) {
2942 GV = M->getNamedValue(Fn.StrVal);
2943 }
2944 Function *F = nullptr;
2945 if (GV) {
2946 // Confirm that it's actually a function with a definition.
2947 if (!isa<Function>(GV))
2948 return Error(Fn.Loc, "expected function name in blockaddress");
2949 F = cast<Function>(GV);
2950 if (F->isDeclaration())
2951 return Error(Fn.Loc, "cannot take blockaddress inside a declaration");
2952 }
2953
2954 if (!F) {
2955 // Make a global variable as a placeholder for this reference.
David Blaikieb9cc6592015-03-04 01:40:07 +00002956 GlobalValue *&FwdRef =
David Blaikie871b4112015-08-03 20:55:00 +00002957 ForwardRefBlockAddresses.insert(std::make_pair(
2958 std::move(Fn),
2959 std::map<ValID, GlobalValue *>()))
David Blaikieb9cc6592015-03-04 01:40:07 +00002960 .first->second.insert(std::make_pair(std::move(Label), nullptr))
2961 .first->second;
Duncan P. N. Exon Smith17169902014-08-19 00:13:19 +00002962 if (!FwdRef)
2963 FwdRef = new GlobalVariable(*M, Type::getInt8Ty(Context), false,
2964 GlobalValue::InternalLinkage, nullptr, "");
2965 ID.ConstantVal = FwdRef;
2966 ID.Kind = ValID::t_Constant;
2967 return false;
2968 }
2969
2970 // We found the function; now find the basic block. Don't use PFS, since we
2971 // might be inside a constant expression.
2972 BasicBlock *BB;
2973 if (BlockAddressPFS && F == &BlockAddressPFS->getFunction()) {
2974 if (Label.Kind == ValID::t_LocalID)
2975 BB = BlockAddressPFS->GetBB(Label.UIntVal, Label.Loc);
2976 else
2977 BB = BlockAddressPFS->GetBB(Label.StrVal, Label.Loc);
2978 if (!BB)
2979 return Error(Label.Loc, "referenced value is not a basic block");
2980 } else {
2981 if (Label.Kind == ValID::t_LocalID)
2982 return Error(Label.Loc, "cannot take address of numeric label after "
2983 "the function is defined");
2984 BB = dyn_cast_or_null<BasicBlock>(
Mehdi Aminia53d49e2016-09-17 06:00:02 +00002985 F->getValueSymbolTable()->lookup(Label.StrVal));
Duncan P. N. Exon Smith17169902014-08-19 00:13:19 +00002986 if (!BB)
2987 return Error(Label.Loc, "referenced value is not a basic block");
2988 }
2989
2990 ID.ConstantVal = BlockAddress::get(F, BB);
Chris Lattner3432c622009-10-28 03:39:23 +00002991 ID.Kind = ValID::t_Constant;
2992 return false;
2993 }
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002994
Chris Lattnerac161bf2009-01-02 07:01:27 +00002995 case lltok::kw_trunc:
2996 case lltok::kw_zext:
2997 case lltok::kw_sext:
2998 case lltok::kw_fptrunc:
2999 case lltok::kw_fpext:
3000 case lltok::kw_bitcast:
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00003001 case lltok::kw_addrspacecast:
Chris Lattnerac161bf2009-01-02 07:01:27 +00003002 case lltok::kw_uitofp:
3003 case lltok::kw_sitofp:
3004 case lltok::kw_fptoui:
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003005 case lltok::kw_fptosi:
Chris Lattnerac161bf2009-01-02 07:01:27 +00003006 case lltok::kw_inttoptr:
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003007 case lltok::kw_ptrtoint: {
Chris Lattnerac161bf2009-01-02 07:01:27 +00003008 unsigned Opc = Lex.getUIntVal();
Craig Topper2617dcc2014-04-15 06:32:26 +00003009 Type *DestTy = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00003010 Constant *SrcVal;
3011 Lex.Lex();
3012 if (ParseToken(lltok::lparen, "expected '(' after constantexpr cast") ||
3013 ParseGlobalTypeAndValue(SrcVal) ||
Dan Gohman0b5d0422009-06-15 21:52:11 +00003014 ParseToken(lltok::kw_to, "expected 'to' in constantexpr cast") ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00003015 ParseType(DestTy) ||
3016 ParseToken(lltok::rparen, "expected ')' at end of constantexpr cast"))
3017 return true;
3018 if (!CastInst::castIsValid((Instruction::CastOps)Opc, SrcVal, DestTy))
3019 return Error(ID.Loc, "invalid cast opcode for cast from '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00003020 getTypeString(SrcVal->getType()) + "' to '" +
3021 getTypeString(DestTy) + "'");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003022 ID.ConstantVal = ConstantExpr::getCast((Instruction::CastOps)Opc,
Owen Anderson02a9da32009-07-01 23:57:11 +00003023 SrcVal, DestTy);
Chris Lattnerac161bf2009-01-02 07:01:27 +00003024 ID.Kind = ValID::t_Constant;
3025 return false;
3026 }
3027 case lltok::kw_extractvalue: {
3028 Lex.Lex();
3029 Constant *Val;
3030 SmallVector<unsigned, 4> Indices;
3031 if (ParseToken(lltok::lparen, "expected '(' in extractvalue constantexpr")||
3032 ParseGlobalTypeAndValue(Val) ||
3033 ParseIndexList(Indices) ||
3034 ParseToken(lltok::rparen, "expected ')' in extractvalue constantexpr"))
3035 return true;
Devang Patel1cb51162009-11-03 19:06:07 +00003036
Chris Lattner392be582010-02-12 20:49:41 +00003037 if (!Val->getType()->isAggregateType())
3038 return Error(ID.Loc, "extractvalue operand must be aggregate type");
Jay Foad57aa6362011-07-13 10:26:04 +00003039 if (!ExtractValueInst::getIndexedType(Val->getType(), Indices))
Chris Lattnerac161bf2009-01-02 07:01:27 +00003040 return Error(ID.Loc, "invalid indices for extractvalue");
Jay Foad57aa6362011-07-13 10:26:04 +00003041 ID.ConstantVal = ConstantExpr::getExtractValue(Val, Indices);
Chris Lattnerac161bf2009-01-02 07:01:27 +00003042 ID.Kind = ValID::t_Constant;
3043 return false;
3044 }
3045 case lltok::kw_insertvalue: {
3046 Lex.Lex();
3047 Constant *Val0, *Val1;
3048 SmallVector<unsigned, 4> Indices;
3049 if (ParseToken(lltok::lparen, "expected '(' in insertvalue constantexpr")||
3050 ParseGlobalTypeAndValue(Val0) ||
3051 ParseToken(lltok::comma, "expected comma in insertvalue constantexpr")||
3052 ParseGlobalTypeAndValue(Val1) ||
3053 ParseIndexList(Indices) ||
3054 ParseToken(lltok::rparen, "expected ')' in insertvalue constantexpr"))
3055 return true;
Chris Lattner392be582010-02-12 20:49:41 +00003056 if (!Val0->getType()->isAggregateType())
3057 return Error(ID.Loc, "insertvalue operand must be aggregate type");
David Majnemereba692d2015-02-23 07:13:52 +00003058 Type *IndexedType =
3059 ExtractValueInst::getIndexedType(Val0->getType(), Indices);
3060 if (!IndexedType)
Chris Lattnerac161bf2009-01-02 07:01:27 +00003061 return Error(ID.Loc, "invalid indices for insertvalue");
David Majnemereba692d2015-02-23 07:13:52 +00003062 if (IndexedType != Val1->getType())
3063 return Error(ID.Loc, "insertvalue operand and field disagree in type: '" +
3064 getTypeString(Val1->getType()) +
3065 "' instead of '" + getTypeString(IndexedType) +
3066 "'");
Jay Foad57aa6362011-07-13 10:26:04 +00003067 ID.ConstantVal = ConstantExpr::getInsertValue(Val0, Val1, Indices);
Chris Lattnerac161bf2009-01-02 07:01:27 +00003068 ID.Kind = ValID::t_Constant;
3069 return false;
3070 }
3071 case lltok::kw_icmp:
Nick Lewyckya21d3da2009-07-08 03:04:38 +00003072 case lltok::kw_fcmp: {
Chris Lattnerac161bf2009-01-02 07:01:27 +00003073 unsigned PredVal, Opc = Lex.getUIntVal();
3074 Constant *Val0, *Val1;
3075 Lex.Lex();
3076 if (ParseCmpPredicate(PredVal, Opc) ||
3077 ParseToken(lltok::lparen, "expected '(' in compare constantexpr") ||
3078 ParseGlobalTypeAndValue(Val0) ||
3079 ParseToken(lltok::comma, "expected comma in compare constantexpr") ||
3080 ParseGlobalTypeAndValue(Val1) ||
3081 ParseToken(lltok::rparen, "expected ')' in compare constantexpr"))
3082 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003083
Chris Lattnerac161bf2009-01-02 07:01:27 +00003084 if (Val0->getType() != Val1->getType())
3085 return Error(ID.Loc, "compare operands must have the same type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003086
Chris Lattnerac161bf2009-01-02 07:01:27 +00003087 CmpInst::Predicate Pred = (CmpInst::Predicate)PredVal;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003088
Chris Lattnerac161bf2009-01-02 07:01:27 +00003089 if (Opc == Instruction::FCmp) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00003090 if (!Val0->getType()->isFPOrFPVectorTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00003091 return Error(ID.Loc, "fcmp requires floating point operands");
Owen Anderson487375e2009-07-29 18:55:55 +00003092 ID.ConstantVal = ConstantExpr::getFCmp(Pred, Val0, Val1);
Nick Lewyckya21d3da2009-07-08 03:04:38 +00003093 } else {
3094 assert(Opc == Instruction::ICmp && "Unexpected opcode for CmpInst!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00003095 if (!Val0->getType()->isIntOrIntVectorTy() &&
Craig Topper95d23472017-07-09 07:04:00 +00003096 !Val0->getType()->isPtrOrPtrVectorTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00003097 return Error(ID.Loc, "icmp requires pointer or integer operands");
Owen Anderson487375e2009-07-29 18:55:55 +00003098 ID.ConstantVal = ConstantExpr::getICmp(Pred, Val0, Val1);
Chris Lattnerac161bf2009-01-02 07:01:27 +00003099 }
3100 ID.Kind = ValID::t_Constant;
3101 return false;
3102 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003103
Chris Lattnerac161bf2009-01-02 07:01:27 +00003104 // Binary Operators.
3105 case lltok::kw_add:
Dan Gohmana5b96452009-06-04 22:49:04 +00003106 case lltok::kw_fadd:
Chris Lattnerac161bf2009-01-02 07:01:27 +00003107 case lltok::kw_sub:
Dan Gohmana5b96452009-06-04 22:49:04 +00003108 case lltok::kw_fsub:
Chris Lattnerac161bf2009-01-02 07:01:27 +00003109 case lltok::kw_mul:
Dan Gohmana5b96452009-06-04 22:49:04 +00003110 case lltok::kw_fmul:
Chris Lattnerac161bf2009-01-02 07:01:27 +00003111 case lltok::kw_udiv:
3112 case lltok::kw_sdiv:
3113 case lltok::kw_fdiv:
3114 case lltok::kw_urem:
3115 case lltok::kw_srem:
Chris Lattnera676c0f2011-02-07 16:40:21 +00003116 case lltok::kw_frem:
3117 case lltok::kw_shl:
3118 case lltok::kw_lshr:
3119 case lltok::kw_ashr: {
Dan Gohman9c7f8082009-07-27 16:11:46 +00003120 bool NUW = false;
3121 bool NSW = false;
3122 bool Exact = false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00003123 unsigned Opc = Lex.getUIntVal();
3124 Constant *Val0, *Val1;
3125 Lex.Lex();
Dan Gohman9c7f8082009-07-27 16:11:46 +00003126 LocTy ModifierLoc = Lex.getLoc();
Chris Lattnera676c0f2011-02-07 16:40:21 +00003127 if (Opc == Instruction::Add || Opc == Instruction::Sub ||
3128 Opc == Instruction::Mul || Opc == Instruction::Shl) {
Dan Gohman9c7f8082009-07-27 16:11:46 +00003129 if (EatIfPresent(lltok::kw_nuw))
3130 NUW = true;
3131 if (EatIfPresent(lltok::kw_nsw)) {
3132 NSW = true;
3133 if (EatIfPresent(lltok::kw_nuw))
3134 NUW = true;
3135 }
Chris Lattnera676c0f2011-02-07 16:40:21 +00003136 } else if (Opc == Instruction::SDiv || Opc == Instruction::UDiv ||
3137 Opc == Instruction::LShr || Opc == Instruction::AShr) {
Dan Gohman9c7f8082009-07-27 16:11:46 +00003138 if (EatIfPresent(lltok::kw_exact))
3139 Exact = true;
3140 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00003141 if (ParseToken(lltok::lparen, "expected '(' in binary constantexpr") ||
3142 ParseGlobalTypeAndValue(Val0) ||
3143 ParseToken(lltok::comma, "expected comma in binary constantexpr") ||
3144 ParseGlobalTypeAndValue(Val1) ||
3145 ParseToken(lltok::rparen, "expected ')' in binary constantexpr"))
3146 return true;
3147 if (Val0->getType() != Val1->getType())
3148 return Error(ID.Loc, "operands of constexpr must have same type");
Duncan Sands9dff9be2010-02-15 16:12:20 +00003149 if (!Val0->getType()->isIntOrIntVectorTy()) {
Dan Gohman9c7f8082009-07-27 16:11:46 +00003150 if (NUW)
3151 return Error(ModifierLoc, "nuw only applies to integer operations");
3152 if (NSW)
3153 return Error(ModifierLoc, "nsw only applies to integer operations");
3154 }
Dan Gohmana2414ea2010-05-03 22:44:19 +00003155 // Check that the type is valid for the operator.
3156 switch (Opc) {
3157 case Instruction::Add:
3158 case Instruction::Sub:
3159 case Instruction::Mul:
3160 case Instruction::UDiv:
3161 case Instruction::SDiv:
3162 case Instruction::URem:
3163 case Instruction::SRem:
Chris Lattnera676c0f2011-02-07 16:40:21 +00003164 case Instruction::Shl:
3165 case Instruction::AShr:
3166 case Instruction::LShr:
Dan Gohmana2414ea2010-05-03 22:44:19 +00003167 if (!Val0->getType()->isIntOrIntVectorTy())
3168 return Error(ID.Loc, "constexpr requires integer operands");
3169 break;
3170 case Instruction::FAdd:
3171 case Instruction::FSub:
3172 case Instruction::FMul:
3173 case Instruction::FDiv:
3174 case Instruction::FRem:
3175 if (!Val0->getType()->isFPOrFPVectorTy())
3176 return Error(ID.Loc, "constexpr requires fp operands");
3177 break;
3178 default: llvm_unreachable("Unknown binary operator!");
3179 }
Dan Gohman1b849082009-09-07 23:54:19 +00003180 unsigned Flags = 0;
3181 if (NUW) Flags |= OverflowingBinaryOperator::NoUnsignedWrap;
3182 if (NSW) Flags |= OverflowingBinaryOperator::NoSignedWrap;
Chris Lattner35315d02011-02-06 21:44:57 +00003183 if (Exact) Flags |= PossiblyExactOperator::IsExact;
Dan Gohman1b849082009-09-07 23:54:19 +00003184 Constant *C = ConstantExpr::get(Opc, Val0, Val1, Flags);
Dan Gohman9c7f8082009-07-27 16:11:46 +00003185 ID.ConstantVal = C;
Chris Lattnerac161bf2009-01-02 07:01:27 +00003186 ID.Kind = ValID::t_Constant;
3187 return false;
3188 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003189
Chris Lattnerac161bf2009-01-02 07:01:27 +00003190 // Logical Operations
Chris Lattnerac161bf2009-01-02 07:01:27 +00003191 case lltok::kw_and:
3192 case lltok::kw_or:
3193 case lltok::kw_xor: {
3194 unsigned Opc = Lex.getUIntVal();
3195 Constant *Val0, *Val1;
3196 Lex.Lex();
3197 if (ParseToken(lltok::lparen, "expected '(' in logical constantexpr") ||
3198 ParseGlobalTypeAndValue(Val0) ||
3199 ParseToken(lltok::comma, "expected comma in logical constantexpr") ||
3200 ParseGlobalTypeAndValue(Val1) ||
3201 ParseToken(lltok::rparen, "expected ')' in logical constantexpr"))
3202 return true;
3203 if (Val0->getType() != Val1->getType())
3204 return Error(ID.Loc, "operands of constexpr must have same type");
Duncan Sands9dff9be2010-02-15 16:12:20 +00003205 if (!Val0->getType()->isIntOrIntVectorTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00003206 return Error(ID.Loc,
3207 "constexpr requires integer or integer vector operands");
Owen Anderson487375e2009-07-29 18:55:55 +00003208 ID.ConstantVal = ConstantExpr::get(Opc, Val0, Val1);
Chris Lattnerac161bf2009-01-02 07:01:27 +00003209 ID.Kind = ValID::t_Constant;
3210 return false;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003211 }
3212
Chris Lattnerac161bf2009-01-02 07:01:27 +00003213 case lltok::kw_getelementptr:
3214 case lltok::kw_shufflevector:
3215 case lltok::kw_insertelement:
3216 case lltok::kw_extractelement:
3217 case lltok::kw_select: {
3218 unsigned Opc = Lex.getUIntVal();
3219 SmallVector<Constant*, 16> Elts;
Dan Gohman1639c392009-07-27 21:53:46 +00003220 bool InBounds = false;
David Blaikief72d05b2015-03-13 18:20:45 +00003221 Type *Ty;
Chris Lattnerac161bf2009-01-02 07:01:27 +00003222 Lex.Lex();
David Blaikief72d05b2015-03-13 18:20:45 +00003223
Dan Gohman1639c392009-07-27 21:53:46 +00003224 if (Opc == Instruction::GetElementPtr)
Dan Gohman16cbbe42009-07-29 15:58:36 +00003225 InBounds = EatIfPresent(lltok::kw_inbounds);
David Blaikief72d05b2015-03-13 18:20:45 +00003226
3227 if (ParseToken(lltok::lparen, "expected '(' in constantexpr"))
3228 return true;
3229
3230 LocTy ExplicitTypeLoc = Lex.getLoc();
3231 if (Opc == Instruction::GetElementPtr) {
3232 if (ParseType(Ty) ||
3233 ParseToken(lltok::comma, "expected comma after getelementptr's type"))
3234 return true;
3235 }
3236
Peter Collingbourned93620b2016-11-10 22:34:55 +00003237 Optional<unsigned> InRangeOp;
3238 if (ParseGlobalValueVector(
3239 Elts, Opc == Instruction::GetElementPtr ? &InRangeOp : nullptr) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00003240 ParseToken(lltok::rparen, "expected ')' in constantexpr"))
3241 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003242
Chris Lattnerac161bf2009-01-02 07:01:27 +00003243 if (Opc == Instruction::GetElementPtr) {
Nadav Rotem3924cb02011-12-05 06:29:09 +00003244 if (Elts.size() == 0 ||
Craig Topper95d23472017-07-09 07:04:00 +00003245 !Elts[0]->getType()->isPtrOrPtrVectorTy())
David Majnemer00303b62015-02-22 23:14:52 +00003246 return Error(ID.Loc, "base of getelementptr must be a pointer");
3247
3248 Type *BaseType = Elts[0]->getType();
3249 auto *BasePointerType = cast<PointerType>(BaseType->getScalarType());
David Blaikief72d05b2015-03-13 18:20:45 +00003250 if (Ty != BasePointerType->getElementType())
3251 return Error(
3252 ExplicitTypeLoc,
3253 "explicit pointee type doesn't match operand's pointee type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003254
Michael Kuperstein88f15ee2016-12-21 18:29:47 +00003255 unsigned GEPWidth =
3256 BaseType->isVectorTy() ? BaseType->getVectorNumElements() : 0;
3257
Jay Foaded8db7d2011-07-21 14:31:17 +00003258 ArrayRef<Constant *> Indices(Elts.begin() + 1, Elts.end());
David Majnemer00303b62015-02-22 23:14:52 +00003259 for (Constant *Val : Indices) {
3260 Type *ValTy = Val->getType();
Craig Topper95d23472017-07-09 07:04:00 +00003261 if (!ValTy->isIntOrIntVectorTy())
David Majnemer00303b62015-02-22 23:14:52 +00003262 return Error(ID.Loc, "getelementptr index must be an integer");
David Majnemer00303b62015-02-22 23:14:52 +00003263 if (ValTy->isVectorTy()) {
Elena Demikhovsky37a4da82015-07-09 07:42:48 +00003264 unsigned ValNumEl = ValTy->getVectorNumElements();
Michael Kuperstein88f15ee2016-12-21 18:29:47 +00003265 if (GEPWidth && (ValNumEl != GEPWidth))
David Majnemer00303b62015-02-22 23:14:52 +00003266 return Error(
3267 ID.Loc,
3268 "getelementptr vector index has a wrong number of elements");
Michael Kuperstein88f15ee2016-12-21 18:29:47 +00003269 // GEPWidth may have been unknown because the base is a scalar,
3270 // but it is known now.
3271 GEPWidth = ValNumEl;
David Majnemer00303b62015-02-22 23:14:52 +00003272 }
3273 }
3274
Craig Toppere3dcce92015-08-01 22:20:21 +00003275 SmallPtrSet<Type*, 4> Visited;
David Blaikiee169e822015-04-22 16:37:35 +00003276 if (!Indices.empty() && !Ty->isSized(&Visited))
David Majnemer00303b62015-02-22 23:14:52 +00003277 return Error(ID.Loc, "base element of getelementptr must be sized");
3278
David Blaikie4a2e73b2015-04-02 18:55:32 +00003279 if (!GetElementPtrInst::getIndexedType(Ty, Indices))
David Majnemer00303b62015-02-22 23:14:52 +00003280 return Error(ID.Loc, "invalid getelementptr indices");
Peter Collingbourned93620b2016-11-10 22:34:55 +00003281
3282 if (InRangeOp) {
3283 if (*InRangeOp == 0)
3284 return Error(ID.Loc,
3285 "inrange keyword may not appear on pointer operand");
3286 --*InRangeOp;
3287 }
3288
3289 ID.ConstantVal = ConstantExpr::getGetElementPtr(Ty, Elts[0], Indices,
3290 InBounds, InRangeOp);
Chris Lattnerac161bf2009-01-02 07:01:27 +00003291 } else if (Opc == Instruction::Select) {
3292 if (Elts.size() != 3)
3293 return Error(ID.Loc, "expected three operands to select");
3294 if (const char *Reason = SelectInst::areInvalidOperands(Elts[0], Elts[1],
3295 Elts[2]))
3296 return Error(ID.Loc, Reason);
Owen Anderson487375e2009-07-29 18:55:55 +00003297 ID.ConstantVal = ConstantExpr::getSelect(Elts[0], Elts[1], Elts[2]);
Chris Lattnerac161bf2009-01-02 07:01:27 +00003298 } else if (Opc == Instruction::ShuffleVector) {
3299 if (Elts.size() != 3)
3300 return Error(ID.Loc, "expected three operands to shufflevector");
3301 if (!ShuffleVectorInst::isValidOperands(Elts[0], Elts[1], Elts[2]))
3302 return Error(ID.Loc, "invalid operands to shufflevector");
Owen Anderson02a9da32009-07-01 23:57:11 +00003303 ID.ConstantVal =
Owen Anderson487375e2009-07-29 18:55:55 +00003304 ConstantExpr::getShuffleVector(Elts[0], Elts[1],Elts[2]);
Chris Lattnerac161bf2009-01-02 07:01:27 +00003305 } else if (Opc == Instruction::ExtractElement) {
3306 if (Elts.size() != 2)
3307 return Error(ID.Loc, "expected two operands to extractelement");
3308 if (!ExtractElementInst::isValidOperands(Elts[0], Elts[1]))
3309 return Error(ID.Loc, "invalid extractelement operands");
Owen Anderson487375e2009-07-29 18:55:55 +00003310 ID.ConstantVal = ConstantExpr::getExtractElement(Elts[0], Elts[1]);
Chris Lattnerac161bf2009-01-02 07:01:27 +00003311 } else {
3312 assert(Opc == Instruction::InsertElement && "Unknown opcode");
3313 if (Elts.size() != 3)
3314 return Error(ID.Loc, "expected three operands to insertelement");
3315 if (!InsertElementInst::isValidOperands(Elts[0], Elts[1], Elts[2]))
3316 return Error(ID.Loc, "invalid insertelement operands");
Owen Anderson02a9da32009-07-01 23:57:11 +00003317 ID.ConstantVal =
Owen Anderson487375e2009-07-29 18:55:55 +00003318 ConstantExpr::getInsertElement(Elts[0], Elts[1],Elts[2]);
Chris Lattnerac161bf2009-01-02 07:01:27 +00003319 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003320
Chris Lattnerac161bf2009-01-02 07:01:27 +00003321 ID.Kind = ValID::t_Constant;
3322 return false;
3323 }
3324 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003325
Chris Lattnerac161bf2009-01-02 07:01:27 +00003326 Lex.Lex();
3327 return false;
3328}
3329
3330/// ParseGlobalValue - Parse a global value with the specified type.
Chris Lattner229907c2011-07-18 04:54:35 +00003331bool LLParser::ParseGlobalValue(Type *Ty, Constant *&C) {
Craig Topper2617dcc2014-04-15 06:32:26 +00003332 C = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00003333 ValID ID;
Craig Topper2617dcc2014-04-15 06:32:26 +00003334 Value *V = nullptr;
Victor Hernandez9d75c962010-01-11 22:31:58 +00003335 bool Parsed = ParseValID(ID) ||
Craig Topper2617dcc2014-04-15 06:32:26 +00003336 ConvertValIDToValue(Ty, ID, V, nullptr);
Victor Hernandez9d75c962010-01-11 22:31:58 +00003337 if (V && !(C = dyn_cast<Constant>(V)))
3338 return Error(ID.Loc, "global values must be constants");
3339 return Parsed;
Chris Lattnerac161bf2009-01-02 07:01:27 +00003340}
3341
Victor Hernandez9d75c962010-01-11 22:31:58 +00003342bool LLParser::ParseGlobalTypeAndValue(Constant *&V) {
Craig Topper2617dcc2014-04-15 06:32:26 +00003343 Type *Ty = nullptr;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00003344 return ParseType(Ty) ||
3345 ParseGlobalValue(Ty, V);
Victor Hernandez9d75c962010-01-11 22:31:58 +00003346}
3347
Rafael Espindola83a362c2015-01-06 22:55:16 +00003348bool LLParser::parseOptionalComdat(StringRef GlobalName, Comdat *&C) {
David Majnemerdad0a642014-06-27 18:19:56 +00003349 C = nullptr;
Rafael Espindola83a362c2015-01-06 22:55:16 +00003350
3351 LocTy KwLoc = Lex.getLoc();
David Majnemerdad0a642014-06-27 18:19:56 +00003352 if (!EatIfPresent(lltok::kw_comdat))
3353 return false;
Rafael Espindola83a362c2015-01-06 22:55:16 +00003354
3355 if (EatIfPresent(lltok::lparen)) {
3356 if (Lex.getKind() != lltok::ComdatVar)
3357 return TokError("expected comdat variable");
3358 C = getComdat(Lex.getStrVal(), Lex.getLoc());
3359 Lex.Lex();
3360 if (ParseToken(lltok::rparen, "expected ')' after comdat var"))
3361 return true;
3362 } else {
3363 if (GlobalName.empty())
3364 return TokError("comdat cannot be unnamed");
3365 C = getComdat(GlobalName, KwLoc);
3366 }
3367
David Majnemerdad0a642014-06-27 18:19:56 +00003368 return false;
3369}
3370
Victor Hernandez9d75c962010-01-11 22:31:58 +00003371/// ParseGlobalValueVector
3372/// ::= /*empty*/
Peter Collingbourned93620b2016-11-10 22:34:55 +00003373/// ::= [inrange] TypeAndValue (',' [inrange] TypeAndValue)*
3374bool LLParser::ParseGlobalValueVector(SmallVectorImpl<Constant *> &Elts,
3375 Optional<unsigned> *InRangeOp) {
Victor Hernandez9d75c962010-01-11 22:31:58 +00003376 // Empty list.
3377 if (Lex.getKind() == lltok::rbrace ||
3378 Lex.getKind() == lltok::rsquare ||
3379 Lex.getKind() == lltok::greater ||
3380 Lex.getKind() == lltok::rparen)
3381 return false;
3382
Peter Collingbourned93620b2016-11-10 22:34:55 +00003383 do {
3384 if (InRangeOp && !*InRangeOp && EatIfPresent(lltok::kw_inrange))
3385 *InRangeOp = Elts.size();
Victor Hernandez9d75c962010-01-11 22:31:58 +00003386
Peter Collingbourned93620b2016-11-10 22:34:55 +00003387 Constant *C;
Victor Hernandez9d75c962010-01-11 22:31:58 +00003388 if (ParseGlobalTypeAndValue(C)) return true;
3389 Elts.push_back(C);
Peter Collingbourned93620b2016-11-10 22:34:55 +00003390 } while (EatIfPresent(lltok::comma));
Victor Hernandez9d75c962010-01-11 22:31:58 +00003391
3392 return false;
3393}
3394
Duncan P. N. Exon Smith58ef9d12015-01-12 21:23:11 +00003395bool LLParser::ParseMDTuple(MDNode *&MD, bool IsDistinct) {
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00003396 SmallVector<Metadata *, 16> Elts;
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00003397 if (ParseMDNodeVector(Elts))
Dan Gohmanc828c542010-08-24 02:24:03 +00003398 return true;
3399
Duncan P. N. Exon Smith0b31dd12015-01-12 22:27:39 +00003400 MD = (IsDistinct ? MDTuple::getDistinct : MDTuple::get)(Context, Elts);
Dan Gohmanc828c542010-08-24 02:24:03 +00003401 return false;
3402}
3403
Duncan P. N. Exon Smithf825dae2015-01-12 22:26:48 +00003404/// MDNode:
3405/// ::= !{ ... }
3406/// ::= !7
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003407/// ::= !DILocation(...)
Duncan P. N. Exon Smithf825dae2015-01-12 22:26:48 +00003408bool LLParser::ParseMDNode(MDNode *&N) {
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003409 if (Lex.getKind() == lltok::MetadataVar)
3410 return ParseSpecializedMDNode(N);
3411
Duncan P. N. Exon Smithf825dae2015-01-12 22:26:48 +00003412 return ParseToken(lltok::exclaim, "expected '!' here") ||
3413 ParseMDNodeTail(N);
3414}
3415
3416bool LLParser::ParseMDNodeTail(MDNode *&N) {
3417 // !{ ... }
3418 if (Lex.getKind() == lltok::lbrace)
3419 return ParseMDTuple(N);
3420
3421 // !42
3422 return ParseMDNodeID(N);
3423}
3424
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003425namespace {
3426
3427/// Structure to represent an optional metadata field.
3428template <class FieldTy> struct MDFieldImpl {
3429 typedef MDFieldImpl ImplTy;
3430 FieldTy Val;
3431 bool Seen;
3432
3433 void assign(FieldTy Val) {
3434 Seen = true;
3435 this->Val = std::move(Val);
3436 }
3437
3438 explicit MDFieldImpl(FieldTy Default)
3439 : Val(std::move(Default)), Seen(false) {}
3440};
Duncan P. N. Exon Smithc7363f12015-02-13 01:10:38 +00003441
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003442struct MDUnsignedField : public MDFieldImpl<uint64_t> {
3443 uint64_t Max;
3444
3445 MDUnsignedField(uint64_t Default = 0, uint64_t Max = UINT64_MAX)
3446 : ImplTy(Default), Max(Max) {}
3447};
Eugene Zelenko1804a772016-08-25 00:45:04 +00003448
Duncan P. N. Exon Smith9c93dc62015-02-04 22:59:18 +00003449struct LineField : public MDUnsignedField {
Duncan P. N. Exon Smithaf677eb2015-02-06 22:50:13 +00003450 LineField() : MDUnsignedField(0, UINT32_MAX) {}
Duncan P. N. Exon Smith9c93dc62015-02-04 22:59:18 +00003451};
Eugene Zelenko1804a772016-08-25 00:45:04 +00003452
Duncan P. N. Exon Smith9c93dc62015-02-04 22:59:18 +00003453struct ColumnField : public MDUnsignedField {
3454 ColumnField() : MDUnsignedField(0, UINT16_MAX) {}
3455};
Eugene Zelenko1804a772016-08-25 00:45:04 +00003456
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003457struct DwarfTagField : public MDUnsignedField {
Duncan P. N. Exon Smitha81f7e12015-02-06 22:29:35 +00003458 DwarfTagField() : MDUnsignedField(0, dwarf::DW_TAG_hi_user) {}
Duncan P. N. Exon Smith16d182a2015-02-28 23:21:38 +00003459 DwarfTagField(dwarf::Tag DefaultTag)
3460 : MDUnsignedField(DefaultTag, dwarf::DW_TAG_hi_user) {}
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003461};
Eugene Zelenko1804a772016-08-25 00:45:04 +00003462
Amjad Abouda9bcf162015-12-10 12:56:35 +00003463struct DwarfMacinfoTypeField : public MDUnsignedField {
3464 DwarfMacinfoTypeField() : MDUnsignedField(0, dwarf::DW_MACINFO_vendor_ext) {}
3465 DwarfMacinfoTypeField(dwarf::MacinfoRecordType DefaultType)
3466 : MDUnsignedField(DefaultType, dwarf::DW_MACINFO_vendor_ext) {}
3467};
Eugene Zelenko1804a772016-08-25 00:45:04 +00003468
Duncan P. N. Exon Smithcd6636c2015-02-13 01:17:35 +00003469struct DwarfAttEncodingField : public MDUnsignedField {
3470 DwarfAttEncodingField() : MDUnsignedField(0, dwarf::DW_ATE_hi_user) {}
3471};
Eugene Zelenko1804a772016-08-25 00:45:04 +00003472
Duncan P. N. Exon Smith890533e2015-02-13 01:28:16 +00003473struct DwarfVirtualityField : public MDUnsignedField {
3474 DwarfVirtualityField() : MDUnsignedField(0, dwarf::DW_VIRTUALITY_max) {}
3475};
Eugene Zelenko1804a772016-08-25 00:45:04 +00003476
Duncan P. N. Exon Smithaece2dc2015-02-13 01:21:25 +00003477struct DwarfLangField : public MDUnsignedField {
3478 DwarfLangField() : MDUnsignedField(0, dwarf::DW_LANG_hi_user) {}
3479};
Eugene Zelenko1804a772016-08-25 00:45:04 +00003480
Reid Klecknerde3d8b52016-06-08 20:34:29 +00003481struct DwarfCCField : public MDUnsignedField {
3482 DwarfCCField() : MDUnsignedField(0, dwarf::DW_CC_hi_user) {}
3483};
Eugene Zelenko1804a772016-08-25 00:45:04 +00003484
Adrian Prantlb939a252016-03-31 23:56:58 +00003485struct EmissionKindField : public MDUnsignedField {
3486 EmissionKindField() : MDUnsignedField(0, DICompileUnit::LastEmissionKind) {}
3487};
Duncan P. N. Exon Smithc7363f12015-02-13 01:10:38 +00003488
Leny Kholodov5fcc4182016-09-06 10:46:28 +00003489struct DIFlagField : public MDFieldImpl<DINode::DIFlags> {
3490 DIFlagField() : MDFieldImpl(DINode::FlagZero) {}
Duncan P. N. Exon Smith70ab3d22015-02-21 01:02:18 +00003491};
3492
Duncan P. N. Exon Smithc7363f12015-02-13 01:10:38 +00003493struct MDSignedField : public MDFieldImpl<int64_t> {
3494 int64_t Min;
3495 int64_t Max;
3496
3497 MDSignedField(int64_t Default = 0)
3498 : ImplTy(Default), Min(INT64_MIN), Max(INT64_MAX) {}
3499 MDSignedField(int64_t Default, int64_t Min, int64_t Max)
3500 : ImplTy(Default), Min(Min), Max(Max) {}
3501};
3502
Duncan P. N. Exon Smithaece2dc2015-02-13 01:21:25 +00003503struct MDBoolField : public MDFieldImpl<bool> {
3504 MDBoolField(bool Default = false) : ImplTy(Default) {}
3505};
Eugene Zelenko1804a772016-08-25 00:45:04 +00003506
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003507struct MDField : public MDFieldImpl<Metadata *> {
Duncan P. N. Exon Smithe2c61d92015-03-27 17:56:39 +00003508 bool AllowNull;
3509
3510 MDField(bool AllowNull = true) : ImplTy(nullptr), AllowNull(AllowNull) {}
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003511};
Eugene Zelenko1804a772016-08-25 00:45:04 +00003512
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003513struct MDConstant : public MDFieldImpl<ConstantAsMetadata *> {
3514 MDConstant() : ImplTy(nullptr) {}
3515};
Eugene Zelenko1804a772016-08-25 00:45:04 +00003516
Duncan P. N. Exon Smith3d2afaa2015-03-27 17:29:58 +00003517struct MDStringField : public MDFieldImpl<MDString *> {
Duncan P. N. Exon Smith94d58f82015-03-31 01:28:22 +00003518 bool AllowEmpty;
3519 MDStringField(bool AllowEmpty = true)
3520 : ImplTy(nullptr), AllowEmpty(AllowEmpty) {}
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003521};
Eugene Zelenko1804a772016-08-25 00:45:04 +00003522
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003523struct MDFieldList : public MDFieldImpl<SmallVector<Metadata *, 4>> {
3524 MDFieldList() : ImplTy(SmallVector<Metadata *, 4>()) {}
3525};
3526
Amjad Aboud7faeecc2016-12-25 10:12:09 +00003527struct ChecksumKindField : public MDFieldImpl<DIFile::ChecksumKind> {
3528 ChecksumKindField() : ImplTy(DIFile::CSK_None) {}
3529 ChecksumKindField(DIFile::ChecksumKind CSKind) : ImplTy(CSKind) {}
3530};
3531
Eugene Zelenko1804a772016-08-25 00:45:04 +00003532} // end anonymous namespace
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003533
Duncan P. N. Exon Smith2f09c462015-02-04 22:13:28 +00003534namespace llvm {
3535
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003536template <>
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003537bool LLParser::ParseMDField(LocTy Loc, StringRef Name,
Duncan P. N. Exon Smith39b10c22015-02-04 21:57:52 +00003538 MDUnsignedField &Result) {
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003539 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned())
3540 return TokError("expected unsigned integer");
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003541
Duncan P. N. Exon Smith39b10c22015-02-04 21:57:52 +00003542 auto &U = Lex.getAPSIntVal();
3543 if (U.ugt(Result.Max))
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003544 return TokError("value for '" + Name + "' too large, limit is " +
3545 Twine(Result.Max));
Duncan P. N. Exon Smith39b10c22015-02-04 21:57:52 +00003546 Result.assign(U.getZExtValue());
3547 assert(Result.Val <= Result.Max && "Expected value in range");
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003548 Lex.Lex();
3549 return false;
3550}
3551
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003552template <>
Duncan P. N. Exon Smith9c93dc62015-02-04 22:59:18 +00003553bool LLParser::ParseMDField(LocTy Loc, StringRef Name, LineField &Result) {
3554 return ParseMDField(Loc, Name, static_cast<MDUnsignedField &>(Result));
3555}
3556template <>
3557bool LLParser::ParseMDField(LocTy Loc, StringRef Name, ColumnField &Result) {
3558 return ParseMDField(Loc, Name, static_cast<MDUnsignedField &>(Result));
3559}
3560
3561template <>
Duncan P. N. Exon Smith97486072015-02-03 21:56:01 +00003562bool LLParser::ParseMDField(LocTy Loc, StringRef Name, DwarfTagField &Result) {
3563 if (Lex.getKind() == lltok::APSInt)
Duncan P. N. Exon Smith39b10c22015-02-04 21:57:52 +00003564 return ParseMDField(Loc, Name, static_cast<MDUnsignedField &>(Result));
Duncan P. N. Exon Smith97486072015-02-03 21:56:01 +00003565
Duncan P. N. Exon Smith97486072015-02-03 21:56:01 +00003566 if (Lex.getKind() != lltok::DwarfTag)
3567 return TokError("expected DWARF tag");
3568
3569 unsigned Tag = dwarf::getTag(Lex.getStrVal());
3570 if (Tag == dwarf::DW_TAG_invalid)
3571 return TokError("invalid DWARF tag" + Twine(" '") + Lex.getStrVal() + "'");
Duncan P. N. Exon Smithfad631a2015-02-04 22:02:18 +00003572 assert(Tag <= Result.Max && "Expected valid DWARF tag");
Duncan P. N. Exon Smith97486072015-02-03 21:56:01 +00003573
3574 Result.assign(Tag);
3575 Lex.Lex();
3576 return false;
3577}
3578
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003579template <>
Duncan P. N. Exon Smith890533e2015-02-13 01:28:16 +00003580bool LLParser::ParseMDField(LocTy Loc, StringRef Name,
Amjad Abouda9bcf162015-12-10 12:56:35 +00003581 DwarfMacinfoTypeField &Result) {
3582 if (Lex.getKind() == lltok::APSInt)
3583 return ParseMDField(Loc, Name, static_cast<MDUnsignedField &>(Result));
3584
3585 if (Lex.getKind() != lltok::DwarfMacinfo)
3586 return TokError("expected DWARF macinfo type");
3587
3588 unsigned Macinfo = dwarf::getMacinfo(Lex.getStrVal());
3589 if (Macinfo == dwarf::DW_MACINFO_invalid)
3590 return TokError(
3591 "invalid DWARF macinfo type" + Twine(" '") + Lex.getStrVal() + "'");
3592 assert(Macinfo <= Result.Max && "Expected valid DWARF macinfo type");
3593
3594 Result.assign(Macinfo);
3595 Lex.Lex();
3596 return false;
3597}
3598
3599template <>
3600bool LLParser::ParseMDField(LocTy Loc, StringRef Name,
Duncan P. N. Exon Smith890533e2015-02-13 01:28:16 +00003601 DwarfVirtualityField &Result) {
3602 if (Lex.getKind() == lltok::APSInt)
3603 return ParseMDField(Loc, Name, static_cast<MDUnsignedField &>(Result));
3604
3605 if (Lex.getKind() != lltok::DwarfVirtuality)
3606 return TokError("expected DWARF virtuality code");
3607
3608 unsigned Virtuality = dwarf::getVirtuality(Lex.getStrVal());
Peter Collingbournea1f86252016-03-17 23:58:03 +00003609 if (Virtuality == dwarf::DW_VIRTUALITY_invalid)
Duncan P. N. Exon Smith890533e2015-02-13 01:28:16 +00003610 return TokError("invalid DWARF virtuality code" + Twine(" '") +
3611 Lex.getStrVal() + "'");
3612 assert(Virtuality <= Result.Max && "Expected valid DWARF virtuality code");
3613 Result.assign(Virtuality);
3614 Lex.Lex();
3615 return false;
3616}
3617
3618template <>
Duncan P. N. Exon Smithaece2dc2015-02-13 01:21:25 +00003619bool LLParser::ParseMDField(LocTy Loc, StringRef Name, DwarfLangField &Result) {
3620 if (Lex.getKind() == lltok::APSInt)
3621 return ParseMDField(Loc, Name, static_cast<MDUnsignedField &>(Result));
3622
3623 if (Lex.getKind() != lltok::DwarfLang)
3624 return TokError("expected DWARF language");
3625
3626 unsigned Lang = dwarf::getLanguage(Lex.getStrVal());
3627 if (!Lang)
3628 return TokError("invalid DWARF language" + Twine(" '") + Lex.getStrVal() +
3629 "'");
3630 assert(Lang <= Result.Max && "Expected valid DWARF language");
3631 Result.assign(Lang);
3632 Lex.Lex();
3633 return false;
3634}
3635
3636template <>
Reid Klecknerde3d8b52016-06-08 20:34:29 +00003637bool LLParser::ParseMDField(LocTy Loc, StringRef Name, DwarfCCField &Result) {
3638 if (Lex.getKind() == lltok::APSInt)
3639 return ParseMDField(Loc, Name, static_cast<MDUnsignedField &>(Result));
3640
3641 if (Lex.getKind() != lltok::DwarfCC)
3642 return TokError("expected DWARF calling convention");
3643
3644 unsigned CC = dwarf::getCallingConvention(Lex.getStrVal());
3645 if (!CC)
3646 return TokError("invalid DWARF calling convention" + Twine(" '") + Lex.getStrVal() +
3647 "'");
3648 assert(CC <= Result.Max && "Expected valid DWARF calling convention");
3649 Result.assign(CC);
3650 Lex.Lex();
3651 return false;
3652}
3653
3654template <>
Adrian Prantlb939a252016-03-31 23:56:58 +00003655bool LLParser::ParseMDField(LocTy Loc, StringRef Name, EmissionKindField &Result) {
3656 if (Lex.getKind() == lltok::APSInt)
3657 return ParseMDField(Loc, Name, static_cast<MDUnsignedField &>(Result));
3658
3659 if (Lex.getKind() != lltok::EmissionKind)
3660 return TokError("expected emission kind");
3661
3662 auto Kind = DICompileUnit::getEmissionKind(Lex.getStrVal());
3663 if (!Kind)
3664 return TokError("invalid emission kind" + Twine(" '") + Lex.getStrVal() +
3665 "'");
3666 assert(*Kind <= Result.Max && "Expected valid emission kind");
3667 Result.assign(*Kind);
3668 Lex.Lex();
3669 return false;
3670}
3671
3672template <>
Duncan P. N. Exon Smithc7363f12015-02-13 01:10:38 +00003673bool LLParser::ParseMDField(LocTy Loc, StringRef Name,
Duncan P. N. Exon Smithcd6636c2015-02-13 01:17:35 +00003674 DwarfAttEncodingField &Result) {
3675 if (Lex.getKind() == lltok::APSInt)
3676 return ParseMDField(Loc, Name, static_cast<MDUnsignedField &>(Result));
3677
3678 if (Lex.getKind() != lltok::DwarfAttEncoding)
3679 return TokError("expected DWARF type attribute encoding");
3680
3681 unsigned Encoding = dwarf::getAttributeEncoding(Lex.getStrVal());
3682 if (!Encoding)
3683 return TokError("invalid DWARF type attribute encoding" + Twine(" '") +
3684 Lex.getStrVal() + "'");
3685 assert(Encoding <= Result.Max && "Expected valid DWARF language");
3686 Result.assign(Encoding);
3687 Lex.Lex();
3688 return false;
3689}
3690
Duncan P. N. Exon Smith70ab3d22015-02-21 01:02:18 +00003691/// DIFlagField
3692/// ::= uint32
3693/// ::= DIFlagVector
3694/// ::= DIFlagVector '|' DIFlagFwdDecl '|' uint32 '|' DIFlagPublic
3695template <>
3696bool LLParser::ParseMDField(LocTy Loc, StringRef Name, DIFlagField &Result) {
Duncan P. N. Exon Smith70ab3d22015-02-21 01:02:18 +00003697
3698 // Parser for a single flag.
Leny Kholodov5fcc4182016-09-06 10:46:28 +00003699 auto parseFlag = [&](DINode::DIFlags &Val) {
3700 if (Lex.getKind() == lltok::APSInt && !Lex.getAPSIntVal().isSigned()) {
3701 uint32_t TempVal = static_cast<uint32_t>(Val);
3702 bool Res = ParseUInt32(TempVal);
3703 Val = static_cast<DINode::DIFlags>(TempVal);
3704 return Res;
3705 }
Duncan P. N. Exon Smith70ab3d22015-02-21 01:02:18 +00003706
3707 if (Lex.getKind() != lltok::DIFlag)
3708 return TokError("expected debug info flag");
3709
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003710 Val = DINode::getFlag(Lex.getStrVal());
Duncan P. N. Exon Smith70ab3d22015-02-21 01:02:18 +00003711 if (!Val)
3712 return TokError(Twine("invalid debug info flag flag '") +
3713 Lex.getStrVal() + "'");
3714 Lex.Lex();
3715 return false;
3716 };
3717
3718 // Parse the flags and combine them together.
Leny Kholodov5fcc4182016-09-06 10:46:28 +00003719 DINode::DIFlags Combined = DINode::FlagZero;
Duncan P. N. Exon Smith70ab3d22015-02-21 01:02:18 +00003720 do {
Leny Kholodov5fcc4182016-09-06 10:46:28 +00003721 DINode::DIFlags Val;
Duncan P. N. Exon Smith70ab3d22015-02-21 01:02:18 +00003722 if (parseFlag(Val))
3723 return true;
3724 Combined |= Val;
3725 } while (EatIfPresent(lltok::bar));
3726
3727 Result.assign(Combined);
3728 return false;
3729}
3730
Duncan P. N. Exon Smithcd6636c2015-02-13 01:17:35 +00003731template <>
3732bool LLParser::ParseMDField(LocTy Loc, StringRef Name,
Duncan P. N. Exon Smithc7363f12015-02-13 01:10:38 +00003733 MDSignedField &Result) {
3734 if (Lex.getKind() != lltok::APSInt)
3735 return TokError("expected signed integer");
3736
3737 auto &S = Lex.getAPSIntVal();
3738 if (S < Result.Min)
3739 return TokError("value for '" + Name + "' too small, limit is " +
3740 Twine(Result.Min));
3741 if (S > Result.Max)
3742 return TokError("value for '" + Name + "' too large, limit is " +
3743 Twine(Result.Max));
3744 Result.assign(S.getExtValue());
3745 assert(Result.Val >= Result.Min && "Expected value in range");
3746 assert(Result.Val <= Result.Max && "Expected value in range");
3747 Lex.Lex();
3748 return false;
3749}
3750
3751template <>
Duncan P. N. Exon Smithaece2dc2015-02-13 01:21:25 +00003752bool LLParser::ParseMDField(LocTy Loc, StringRef Name, MDBoolField &Result) {
3753 switch (Lex.getKind()) {
3754 default:
3755 return TokError("expected 'true' or 'false'");
3756 case lltok::kw_true:
3757 Result.assign(true);
3758 break;
3759 case lltok::kw_false:
3760 Result.assign(false);
3761 break;
3762 }
3763 Lex.Lex();
3764 return false;
3765}
3766
3767template <>
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003768bool LLParser::ParseMDField(LocTy Loc, StringRef Name, MDField &Result) {
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003769 if (Lex.getKind() == lltok::kw_null) {
Duncan P. N. Exon Smithe2c61d92015-03-27 17:56:39 +00003770 if (!Result.AllowNull)
3771 return TokError("'" + Name + "' cannot be null");
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003772 Lex.Lex();
3773 Result.assign(nullptr);
3774 return false;
3775 }
3776
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003777 Metadata *MD;
3778 if (ParseMetadata(MD, nullptr))
3779 return true;
3780
3781 Result.assign(MD);
3782 return false;
3783}
3784
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003785template <>
Duncan P. N. Exon Smith4e4aa702015-02-03 21:54:14 +00003786bool LLParser::ParseMDField(LocTy Loc, StringRef Name, MDStringField &Result) {
Duncan P. N. Exon Smith94d58f82015-03-31 01:28:22 +00003787 LocTy ValueLoc = Lex.getLoc();
Duncan P. N. Exon Smith4e4aa702015-02-03 21:54:14 +00003788 std::string S;
3789 if (ParseStringConstant(S))
3790 return true;
3791
Duncan P. N. Exon Smith94d58f82015-03-31 01:28:22 +00003792 if (!Result.AllowEmpty && S.empty())
3793 return Error(ValueLoc, "'" + Name + "' cannot be empty");
3794
Duncan P. N. Exon Smith3d2afaa2015-03-27 17:29:58 +00003795 Result.assign(S.empty() ? nullptr : MDString::get(Context, S));
Duncan P. N. Exon Smith4e4aa702015-02-03 21:54:14 +00003796 return false;
3797}
3798
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003799template <>
Duncan P. N. Exon Smith4e4aa702015-02-03 21:54:14 +00003800bool LLParser::ParseMDField(LocTy Loc, StringRef Name, MDFieldList &Result) {
3801 SmallVector<Metadata *, 4> MDs;
3802 if (ParseMDNodeVector(MDs))
3803 return true;
3804
3805 Result.assign(std::move(MDs));
3806 return false;
3807}
3808
Amjad Aboud7faeecc2016-12-25 10:12:09 +00003809template <>
3810bool LLParser::ParseMDField(LocTy Loc, StringRef Name,
3811 ChecksumKindField &Result) {
3812 if (Lex.getKind() != lltok::ChecksumKind)
3813 return TokError(
3814 "invalid checksum kind" + Twine(" '") + Lex.getStrVal() + "'");
3815
3816 DIFile::ChecksumKind CSKind = DIFile::getChecksumKind(Lex.getStrVal());
3817
3818 Result.assign(CSKind);
3819 Lex.Lex();
3820 return false;
3821}
3822
Duncan P. N. Exon Smith2f09c462015-02-04 22:13:28 +00003823} // end namespace llvm
3824
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003825template <class ParserTy>
Duncan P. N. Exon Smith66ca92e2015-01-19 23:39:32 +00003826bool LLParser::ParseMDFieldsImplBody(ParserTy parseField) {
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003827 do {
3828 if (Lex.getKind() != lltok::LabelStr)
3829 return TokError("expected field label here");
3830
3831 if (parseField())
3832 return true;
3833 } while (EatIfPresent(lltok::comma));
3834
Duncan P. N. Exon Smith66ca92e2015-01-19 23:39:32 +00003835 return false;
3836}
3837
3838template <class ParserTy>
3839bool LLParser::ParseMDFieldsImpl(ParserTy parseField, LocTy &ClosingLoc) {
3840 assert(Lex.getKind() == lltok::MetadataVar && "Expected metadata type name");
3841 Lex.Lex();
3842
3843 if (ParseToken(lltok::lparen, "expected '(' here"))
3844 return true;
3845 if (Lex.getKind() != lltok::rparen)
3846 if (ParseMDFieldsImplBody(parseField))
3847 return true;
3848
Duncan P. N. Exon Smith13890af2015-01-19 23:32:36 +00003849 ClosingLoc = Lex.getLoc();
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003850 return ParseToken(lltok::rparen, "expected ')' here");
3851}
3852
Duncan P. N. Exon Smitha7477282015-01-20 02:42:29 +00003853template <class FieldTy>
3854bool LLParser::ParseMDField(StringRef Name, FieldTy &Result) {
3855 if (Result.Seen)
3856 return TokError("field '" + Name + "' cannot be specified more than once");
3857
3858 LocTy Loc = Lex.getLoc();
3859 Lex.Lex();
3860 return ParseMDField(Loc, Name, Result);
3861}
3862
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003863bool LLParser::ParseSpecializedMDNode(MDNode *&N, bool IsDistinct) {
3864 assert(Lex.getKind() == lltok::MetadataVar && "Expected metadata type name");
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003865
3866#define HANDLE_SPECIALIZED_MDNODE_LEAF(CLASS) \
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003867 if (Lex.getStrVal() == #CLASS) \
3868 return Parse##CLASS(N, IsDistinct);
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003869#include "llvm/IR/Metadata.def"
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003870
3871 return TokError("expected metadata type");
3872}
3873
Duncan P. N. Exon Smith2a6b5fc2015-01-19 23:44:41 +00003874#define DECLARE_FIELD(NAME, TYPE, INIT) TYPE NAME INIT
3875#define NOP_FIELD(NAME, TYPE, INIT)
3876#define REQUIRE_FIELD(NAME, TYPE, INIT) \
3877 if (!NAME.Seen) \
3878 return Error(ClosingLoc, "missing required field '" #NAME "'");
3879#define PARSE_MD_FIELD(NAME, TYPE, DEFAULT) \
Duncan P. N. Exon Smitha7477282015-01-20 02:42:29 +00003880 if (Lex.getStrVal() == #NAME) \
3881 return ParseMDField(#NAME, NAME);
Duncan P. N. Exon Smith2a6b5fc2015-01-19 23:44:41 +00003882#define PARSE_MD_FIELDS() \
3883 VISIT_MD_FIELDS(DECLARE_FIELD, DECLARE_FIELD) \
3884 do { \
3885 LocTy ClosingLoc; \
3886 if (ParseMDFieldsImpl([&]() -> bool { \
3887 VISIT_MD_FIELDS(PARSE_MD_FIELD, PARSE_MD_FIELD) \
3888 return TokError(Twine("invalid field '") + Lex.getStrVal() + "'"); \
3889 }, ClosingLoc)) \
3890 return true; \
3891 VISIT_MD_FIELDS(NOP_FIELD, REQUIRE_FIELD) \
3892 } while (false)
Duncan P. N. Exon Smith4e4aa702015-02-03 21:54:14 +00003893#define GET_OR_DISTINCT(CLASS, ARGS) \
3894 (IsDistinct ? CLASS::getDistinct ARGS : CLASS::get ARGS)
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003895
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003896/// ParseDILocationFields:
3897/// ::= !DILocation(line: 43, column: 8, scope: !5, inlinedAt: !6)
3898bool LLParser::ParseDILocation(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith2a6b5fc2015-01-19 23:44:41 +00003899#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith9c93dc62015-02-04 22:59:18 +00003900 OPTIONAL(line, LineField, ); \
3901 OPTIONAL(column, ColumnField, ); \
Duncan P. N. Exon Smithe2c61d92015-03-27 17:56:39 +00003902 REQUIRED(scope, MDField, (/* AllowNull */ false)); \
Duncan P. N. Exon Smith2a6b5fc2015-01-19 23:44:41 +00003903 OPTIONAL(inlinedAt, MDField, );
3904 PARSE_MD_FIELDS();
3905#undef VISIT_MD_FIELDS
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003906
Duncan P. N. Exon Smith26489982015-03-26 22:05:04 +00003907 Result = GET_OR_DISTINCT(
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003908 DILocation, (Context, line.Val, column.Val, scope.Val, inlinedAt.Val));
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003909 return false;
3910}
Duncan P. N. Exon Smith4e4aa702015-02-03 21:54:14 +00003911
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003912/// ParseGenericDINode:
3913/// ::= !GenericDINode(tag: 15, header: "...", operands: {...})
3914bool LLParser::ParseGenericDINode(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith4e4aa702015-02-03 21:54:14 +00003915#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith97486072015-02-03 21:56:01 +00003916 REQUIRED(tag, DwarfTagField, ); \
Duncan P. N. Exon Smith4e4aa702015-02-03 21:54:14 +00003917 OPTIONAL(header, MDStringField, ); \
3918 OPTIONAL(operands, MDFieldList, );
3919 PARSE_MD_FIELDS();
3920#undef VISIT_MD_FIELDS
3921
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003922 Result = GET_OR_DISTINCT(GenericDINode,
Duncan P. N. Exon Smith4e4aa702015-02-03 21:54:14 +00003923 (Context, tag.Val, header.Val, operands.Val));
3924 return false;
3925}
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003926
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003927/// ParseDISubrange:
3928/// ::= !DISubrange(count: 30, lowerBound: 2)
3929bool LLParser::ParseDISubrange(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smithc7363f12015-02-13 01:10:38 +00003930#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith5c9a1772015-02-18 23:17:51 +00003931 REQUIRED(count, MDSignedField, (-1, -1, INT64_MAX)); \
Duncan P. N. Exon Smithc7363f12015-02-13 01:10:38 +00003932 OPTIONAL(lowerBound, MDSignedField, );
3933 PARSE_MD_FIELDS();
3934#undef VISIT_MD_FIELDS
3935
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003936 Result = GET_OR_DISTINCT(DISubrange, (Context, count.Val, lowerBound.Val));
Duncan P. N. Exon Smithc7363f12015-02-13 01:10:38 +00003937 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003938}
Duncan P. N. Exon Smithc7363f12015-02-13 01:10:38 +00003939
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003940/// ParseDIEnumerator:
3941/// ::= !DIEnumerator(value: 30, name: "SomeKind")
3942bool LLParser::ParseDIEnumerator(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith87754762015-02-13 01:14:11 +00003943#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smithcd8fb602015-02-18 21:16:33 +00003944 REQUIRED(name, MDStringField, ); \
3945 REQUIRED(value, MDSignedField, );
Duncan P. N. Exon Smith87754762015-02-13 01:14:11 +00003946 PARSE_MD_FIELDS();
3947#undef VISIT_MD_FIELDS
3948
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003949 Result = GET_OR_DISTINCT(DIEnumerator, (Context, value.Val, name.Val));
Duncan P. N. Exon Smith87754762015-02-13 01:14:11 +00003950 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003951}
Duncan P. N. Exon Smith87754762015-02-13 01:14:11 +00003952
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003953/// ParseDIBasicType:
3954/// ::= !DIBasicType(tag: DW_TAG_base_type, name: "int", size: 32, align: 32)
3955bool LLParser::ParseDIBasicType(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith09e03f32015-02-13 01:14:58 +00003956#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith16d182a2015-02-28 23:21:38 +00003957 OPTIONAL(tag, DwarfTagField, (dwarf::DW_TAG_base_type)); \
Duncan P. N. Exon Smith09e03f32015-02-13 01:14:58 +00003958 OPTIONAL(name, MDStringField, ); \
Duncan P. N. Exon Smithd34db172015-02-19 23:56:07 +00003959 OPTIONAL(size, MDUnsignedField, (0, UINT64_MAX)); \
Victor Leschuk197aa312016-10-18 14:31:22 +00003960 OPTIONAL(align, MDUnsignedField, (0, UINT32_MAX)); \
Duncan P. N. Exon Smithcd6636c2015-02-13 01:17:35 +00003961 OPTIONAL(encoding, DwarfAttEncodingField, );
Duncan P. N. Exon Smith09e03f32015-02-13 01:14:58 +00003962 PARSE_MD_FIELDS();
3963#undef VISIT_MD_FIELDS
3964
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003965 Result = GET_OR_DISTINCT(DIBasicType, (Context, tag.Val, name.Val, size.Val,
Duncan P. N. Exon Smith09e03f32015-02-13 01:14:58 +00003966 align.Val, encoding.Val));
3967 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003968}
Duncan P. N. Exon Smith09e03f32015-02-13 01:14:58 +00003969
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003970/// ParseDIDerivedType:
3971/// ::= !DIDerivedType(tag: DW_TAG_pointer_type, name: "int", file: !0,
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00003972/// line: 7, scope: !1, baseType: !2, size: 32,
Konstantin Zhuravlyovd5561e02017-03-08 23:55:44 +00003973/// align: 32, offset: 0, flags: 0, extraData: !3,
3974/// dwarfAddressSpace: 3)
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003975bool LLParser::ParseDIDerivedType(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00003976#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
3977 REQUIRED(tag, DwarfTagField, ); \
3978 OPTIONAL(name, MDStringField, ); \
3979 OPTIONAL(file, MDField, ); \
3980 OPTIONAL(line, LineField, ); \
3981 OPTIONAL(scope, MDField, ); \
3982 REQUIRED(baseType, MDField, ); \
Duncan P. N. Exon Smithd34db172015-02-19 23:56:07 +00003983 OPTIONAL(size, MDUnsignedField, (0, UINT64_MAX)); \
Victor Leschuk197aa312016-10-18 14:31:22 +00003984 OPTIONAL(align, MDUnsignedField, (0, UINT32_MAX)); \
Duncan P. N. Exon Smithd34db172015-02-19 23:56:07 +00003985 OPTIONAL(offset, MDUnsignedField, (0, UINT64_MAX)); \
Duncan P. N. Exon Smith70ab3d22015-02-21 01:02:18 +00003986 OPTIONAL(flags, DIFlagField, ); \
Konstantin Zhuravlyovd5561e02017-03-08 23:55:44 +00003987 OPTIONAL(extraData, MDField, ); \
3988 OPTIONAL(dwarfAddressSpace, MDUnsignedField, (UINT32_MAX, UINT32_MAX));
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00003989 PARSE_MD_FIELDS();
3990#undef VISIT_MD_FIELDS
3991
Konstantin Zhuravlyovd5561e02017-03-08 23:55:44 +00003992 Optional<unsigned> DWARFAddressSpace;
3993 if (dwarfAddressSpace.Val != UINT32_MAX)
3994 DWARFAddressSpace = dwarfAddressSpace.Val;
3995
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003996 Result = GET_OR_DISTINCT(DIDerivedType,
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00003997 (Context, tag.Val, name.Val, file.Val, line.Val,
3998 scope.Val, baseType.Val, size.Val, align.Val,
Konstantin Zhuravlyovd5561e02017-03-08 23:55:44 +00003999 offset.Val, DWARFAddressSpace, flags.Val,
4000 extraData.Val));
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00004001 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00004002}
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00004003
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004004bool LLParser::ParseDICompositeType(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00004005#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
4006 REQUIRED(tag, DwarfTagField, ); \
4007 OPTIONAL(name, MDStringField, ); \
4008 OPTIONAL(file, MDField, ); \
4009 OPTIONAL(line, LineField, ); \
4010 OPTIONAL(scope, MDField, ); \
4011 OPTIONAL(baseType, MDField, ); \
Duncan P. N. Exon Smithd34db172015-02-19 23:56:07 +00004012 OPTIONAL(size, MDUnsignedField, (0, UINT64_MAX)); \
Victor Leschuk197aa312016-10-18 14:31:22 +00004013 OPTIONAL(align, MDUnsignedField, (0, UINT32_MAX)); \
Duncan P. N. Exon Smithd34db172015-02-19 23:56:07 +00004014 OPTIONAL(offset, MDUnsignedField, (0, UINT64_MAX)); \
Duncan P. N. Exon Smith70ab3d22015-02-21 01:02:18 +00004015 OPTIONAL(flags, DIFlagField, ); \
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00004016 OPTIONAL(elements, MDField, ); \
Duncan P. N. Exon Smithaece2dc2015-02-13 01:21:25 +00004017 OPTIONAL(runtimeLang, DwarfLangField, ); \
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00004018 OPTIONAL(vtableHolder, MDField, ); \
4019 OPTIONAL(templateParams, MDField, ); \
4020 OPTIONAL(identifier, MDStringField, );
4021 PARSE_MD_FIELDS();
4022#undef VISIT_MD_FIELDS
4023
Duncan P. N. Exon Smith97386022016-04-19 18:00:19 +00004024 // If this has an identifier try to build an ODR type.
4025 if (identifier.Val)
4026 if (auto *CT = DICompositeType::buildODRType(
Duncan P. N. Exon Smith0b0271e2016-04-19 14:55:09 +00004027 Context, *identifier.Val, tag.Val, name.Val, file.Val, line.Val,
4028 scope.Val, baseType.Val, size.Val, align.Val, offset.Val, flags.Val,
4029 elements.Val, runtimeLang.Val, vtableHolder.Val,
4030 templateParams.Val)) {
4031 Result = CT;
4032 return false;
4033 }
Duncan P. N. Exon Smith5ab2be02016-04-17 03:58:21 +00004034
4035 // Create a new node, and save it in the context if it belongs in the type
4036 // map.
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00004037 Result = GET_OR_DISTINCT(
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004038 DICompositeType,
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00004039 (Context, tag.Val, name.Val, file.Val, line.Val, scope.Val, baseType.Val,
4040 size.Val, align.Val, offset.Val, flags.Val, elements.Val,
4041 runtimeLang.Val, vtableHolder.Val, templateParams.Val, identifier.Val));
4042 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00004043}
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00004044
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004045bool LLParser::ParseDISubroutineType(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith54e2bc62015-02-13 01:22:59 +00004046#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith70ab3d22015-02-21 01:02:18 +00004047 OPTIONAL(flags, DIFlagField, ); \
Reid Klecknerde3d8b52016-06-08 20:34:29 +00004048 OPTIONAL(cc, DwarfCCField, ); \
Duncan P. N. Exon Smith54e2bc62015-02-13 01:22:59 +00004049 REQUIRED(types, MDField, );
4050 PARSE_MD_FIELDS();
4051#undef VISIT_MD_FIELDS
4052
Reid Klecknerde3d8b52016-06-08 20:34:29 +00004053 Result = GET_OR_DISTINCT(DISubroutineType,
4054 (Context, flags.Val, cc.Val, types.Val));
Duncan P. N. Exon Smith54e2bc62015-02-13 01:22:59 +00004055 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00004056}
Duncan P. N. Exon Smithf14b9c72015-02-13 01:19:14 +00004057
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004058/// ParseDIFileType:
Amjad Aboud7faeecc2016-12-25 10:12:09 +00004059/// ::= !DIFileType(filename: "path/to/file", directory: "/path/to/dir"
4060/// checksumkind: CSK_MD5,
4061/// checksum: "000102030405060708090a0b0c0d0e0f")
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004062bool LLParser::ParseDIFile(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smithf14b9c72015-02-13 01:19:14 +00004063#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
4064 REQUIRED(filename, MDStringField, ); \
Amjad Aboud7faeecc2016-12-25 10:12:09 +00004065 REQUIRED(directory, MDStringField, ); \
4066 OPTIONAL(checksumkind, ChecksumKindField, ); \
4067 OPTIONAL(checksum, MDStringField, );
Duncan P. N. Exon Smithf14b9c72015-02-13 01:19:14 +00004068 PARSE_MD_FIELDS();
4069#undef VISIT_MD_FIELDS
4070
Amjad Aboud7faeecc2016-12-25 10:12:09 +00004071 Result = GET_OR_DISTINCT(DIFile, (Context, filename.Val, directory.Val,
4072 checksumkind.Val, checksum.Val));
Duncan P. N. Exon Smithf14b9c72015-02-13 01:19:14 +00004073 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00004074}
Duncan P. N. Exon Smithf14b9c72015-02-13 01:19:14 +00004075
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004076/// ParseDICompileUnit:
4077/// ::= !DICompileUnit(language: DW_LANG_C99, file: !0, producer: "clang",
Duncan P. N. Exon Smithc1f1acc2015-02-13 01:25:10 +00004078/// isOptimized: true, flags: "-O2", runtimeVersion: 1,
Adrian Prantlb939a252016-03-31 23:56:58 +00004079/// splitDebugFilename: "abc.debug",
Adrian Prantl75819ae2016-04-15 15:57:41 +00004080/// emissionKind: FullDebug, enums: !1, retainedTypes: !2,
Amjad Abouda9bcf162015-12-10 12:56:35 +00004081/// globals: !4, imports: !5, macros: !6, dwoId: 0x0abcd)
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004082bool LLParser::ParseDICompileUnit(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith55ca9642015-08-03 17:26:41 +00004083 if (!IsDistinct)
4084 return Lex.Error("missing 'distinct', required for !DICompileUnit");
4085
Duncan P. N. Exon Smithc1f1acc2015-02-13 01:25:10 +00004086#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
4087 REQUIRED(language, DwarfLangField, ); \
Duncan P. N. Exon Smithcd07efa12015-03-31 00:47:15 +00004088 REQUIRED(file, MDField, (/* AllowNull */ false)); \
Duncan P. N. Exon Smithc1f1acc2015-02-13 01:25:10 +00004089 OPTIONAL(producer, MDStringField, ); \
4090 OPTIONAL(isOptimized, MDBoolField, ); \
4091 OPTIONAL(flags, MDStringField, ); \
4092 OPTIONAL(runtimeVersion, MDUnsignedField, (0, UINT32_MAX)); \
4093 OPTIONAL(splitDebugFilename, MDStringField, ); \
Adrian Prantlb939a252016-03-31 23:56:58 +00004094 OPTIONAL(emissionKind, EmissionKindField, ); \
Duncan P. N. Exon Smithc1f1acc2015-02-13 01:25:10 +00004095 OPTIONAL(enums, MDField, ); \
4096 OPTIONAL(retainedTypes, MDField, ); \
Duncan P. N. Exon Smithc1f1acc2015-02-13 01:25:10 +00004097 OPTIONAL(globals, MDField, ); \
Adrian Prantl1f599f92015-05-21 20:37:30 +00004098 OPTIONAL(imports, MDField, ); \
Amjad Abouda9bcf162015-12-10 12:56:35 +00004099 OPTIONAL(macros, MDField, ); \
David Blaikiea01f2952016-08-24 18:29:49 +00004100 OPTIONAL(dwoId, MDUnsignedField, ); \
Dehao Chen0944a8c2017-02-01 22:45:09 +00004101 OPTIONAL(splitDebugInlining, MDBoolField, = true); \
4102 OPTIONAL(debugInfoForProfiling, MDBoolField, = false);
Duncan P. N. Exon Smithc1f1acc2015-02-13 01:25:10 +00004103 PARSE_MD_FIELDS();
4104#undef VISIT_MD_FIELDS
4105
Duncan P. N. Exon Smith55ca9642015-08-03 17:26:41 +00004106 Result = DICompileUnit::getDistinct(
4107 Context, language.Val, file.Val, producer.Val, isOptimized.Val, flags.Val,
4108 runtimeVersion.Val, splitDebugFilename.Val, emissionKind.Val, enums.Val,
David Blaikiea01f2952016-08-24 18:29:49 +00004109 retainedTypes.Val, globals.Val, imports.Val, macros.Val, dwoId.Val,
Dehao Chen0944a8c2017-02-01 22:45:09 +00004110 splitDebugInlining.Val, debugInfoForProfiling.Val);
Duncan P. N. Exon Smithc1f1acc2015-02-13 01:25:10 +00004111 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00004112}
Duncan P. N. Exon Smithc1f1acc2015-02-13 01:25:10 +00004113
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004114/// ParseDISubprogram:
4115/// ::= !DISubprogram(scope: !0, name: "foo", linkageName: "_Zfoo",
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00004116/// file: !1, line: 7, type: !2, isLocal: false,
4117/// isDefinition: true, scopeLine: 8, containingType: !3,
Duncan P. N. Exon Smith890533e2015-02-13 01:28:16 +00004118/// virtuality: DW_VIRTUALTIY_pure_virtual,
Reid Klecknerb5af11d2016-07-01 02:41:21 +00004119/// virtualIndex: 10, thisAdjustment: 4, flags: 11,
Peter Collingbourned4bff302015-11-05 22:03:56 +00004120/// isOptimized: false, templateParams: !4, declaration: !5,
Adrian Prantl1d12b882017-04-26 22:56:44 +00004121/// variables: !6, thrownTypes: !7)
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004122bool LLParser::ParseDISubprogram(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith814b8e92015-08-28 20:26:49 +00004123 auto Loc = Lex.getLoc();
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00004124#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
4125 OPTIONAL(scope, MDField, ); \
Duncan P. N. Exon Smith3eea1962015-03-16 19:01:54 +00004126 OPTIONAL(name, MDStringField, ); \
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00004127 OPTIONAL(linkageName, MDStringField, ); \
4128 OPTIONAL(file, MDField, ); \
4129 OPTIONAL(line, LineField, ); \
4130 OPTIONAL(type, MDField, ); \
4131 OPTIONAL(isLocal, MDBoolField, ); \
4132 OPTIONAL(isDefinition, MDBoolField, (true)); \
4133 OPTIONAL(scopeLine, LineField, ); \
4134 OPTIONAL(containingType, MDField, ); \
Duncan P. N. Exon Smith890533e2015-02-13 01:28:16 +00004135 OPTIONAL(virtuality, DwarfVirtualityField, ); \
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00004136 OPTIONAL(virtualIndex, MDUnsignedField, (0, UINT32_MAX)); \
Reid Klecknerb5af11d2016-07-01 02:41:21 +00004137 OPTIONAL(thisAdjustment, MDSignedField, (0, INT32_MIN, INT32_MAX)); \
Duncan P. N. Exon Smith70ab3d22015-02-21 01:02:18 +00004138 OPTIONAL(flags, DIFlagField, ); \
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00004139 OPTIONAL(isOptimized, MDBoolField, ); \
Adrian Prantl75819ae2016-04-15 15:57:41 +00004140 OPTIONAL(unit, MDField, ); \
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00004141 OPTIONAL(templateParams, MDField, ); \
4142 OPTIONAL(declaration, MDField, ); \
Adrian Prantl1d12b882017-04-26 22:56:44 +00004143 OPTIONAL(variables, MDField, ); \
4144 OPTIONAL(thrownTypes, MDField, );
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00004145 PARSE_MD_FIELDS();
4146#undef VISIT_MD_FIELDS
4147
Duncan P. N. Exon Smith814b8e92015-08-28 20:26:49 +00004148 if (isDefinition.Val && !IsDistinct)
4149 return Lex.Error(
4150 Loc,
4151 "missing 'distinct', required for !DISubprogram when 'isDefinition'");
4152
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00004153 Result = GET_OR_DISTINCT(
Adrian Prantl1d12b882017-04-26 22:56:44 +00004154 DISubprogram,
4155 (Context, scope.Val, name.Val, linkageName.Val, file.Val, line.Val,
4156 type.Val, isLocal.Val, isDefinition.Val, scopeLine.Val,
4157 containingType.Val, virtuality.Val, virtualIndex.Val, thisAdjustment.Val,
4158 flags.Val, isOptimized.Val, unit.Val, templateParams.Val,
4159 declaration.Val, variables.Val, thrownTypes.Val));
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00004160 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00004161}
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00004162
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004163/// ParseDILexicalBlock:
4164/// ::= !DILexicalBlock(scope: !0, file: !2, line: 7, column: 9)
4165bool LLParser::ParseDILexicalBlock(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smitha96d4092015-02-13 01:29:28 +00004166#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith0e202b92015-03-30 16:37:48 +00004167 REQUIRED(scope, MDField, (/* AllowNull */ false)); \
Duncan P. N. Exon Smitha96d4092015-02-13 01:29:28 +00004168 OPTIONAL(file, MDField, ); \
4169 OPTIONAL(line, LineField, ); \
4170 OPTIONAL(column, ColumnField, );
4171 PARSE_MD_FIELDS();
4172#undef VISIT_MD_FIELDS
4173
4174 Result = GET_OR_DISTINCT(
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004175 DILexicalBlock, (Context, scope.Val, file.Val, line.Val, column.Val));
Duncan P. N. Exon Smitha96d4092015-02-13 01:29:28 +00004176 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00004177}
Duncan P. N. Exon Smitha96d4092015-02-13 01:29:28 +00004178
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004179/// ParseDILexicalBlockFile:
4180/// ::= !DILexicalBlockFile(scope: !0, file: !2, discriminator: 9)
4181bool LLParser::ParseDILexicalBlockFile(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith06a07022015-02-13 01:30:42 +00004182#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith0e202b92015-03-30 16:37:48 +00004183 REQUIRED(scope, MDField, (/* AllowNull */ false)); \
Duncan P. N. Exon Smith06a07022015-02-13 01:30:42 +00004184 OPTIONAL(file, MDField, ); \
4185 REQUIRED(discriminator, MDUnsignedField, (0, UINT32_MAX));
4186 PARSE_MD_FIELDS();
4187#undef VISIT_MD_FIELDS
4188
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004189 Result = GET_OR_DISTINCT(DILexicalBlockFile,
Duncan P. N. Exon Smith06a07022015-02-13 01:30:42 +00004190 (Context, scope.Val, file.Val, discriminator.Val));
4191 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00004192}
Duncan P. N. Exon Smith06a07022015-02-13 01:30:42 +00004193
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004194/// ParseDINamespace:
4195/// ::= !DINamespace(scope: !0, file: !2, name: "SomeNamespace", line: 9)
4196bool LLParser::ParseDINamespace(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smithe1460002015-02-13 01:32:09 +00004197#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
4198 REQUIRED(scope, MDField, ); \
Duncan P. N. Exon Smithe1460002015-02-13 01:32:09 +00004199 OPTIONAL(name, MDStringField, ); \
Adrian Prantldbfda632016-11-03 19:42:02 +00004200 OPTIONAL(exportSymbols, MDBoolField, );
Duncan P. N. Exon Smithe1460002015-02-13 01:32:09 +00004201 PARSE_MD_FIELDS();
4202#undef VISIT_MD_FIELDS
4203
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004204 Result = GET_OR_DISTINCT(DINamespace,
Adrian Prantlfed4f392017-04-28 22:25:46 +00004205 (Context, scope.Val, name.Val, exportSymbols.Val));
Duncan P. N. Exon Smithe1460002015-02-13 01:32:09 +00004206 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00004207}
Duncan P. N. Exon Smithe1460002015-02-13 01:32:09 +00004208
Amjad Abouda9bcf162015-12-10 12:56:35 +00004209/// ParseDIMacro:
4210/// ::= !DIMacro(macinfo: type, line: 9, name: "SomeMacro", value: "SomeValue")
4211bool LLParser::ParseDIMacro(MDNode *&Result, bool IsDistinct) {
4212#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
4213 REQUIRED(type, DwarfMacinfoTypeField, ); \
Adrian Prantl58c19102016-12-22 00:29:00 +00004214 OPTIONAL(line, LineField, ); \
Amjad Abouda9bcf162015-12-10 12:56:35 +00004215 REQUIRED(name, MDStringField, ); \
4216 OPTIONAL(value, MDStringField, );
4217 PARSE_MD_FIELDS();
4218#undef VISIT_MD_FIELDS
4219
4220 Result = GET_OR_DISTINCT(DIMacro,
4221 (Context, type.Val, line.Val, name.Val, value.Val));
4222 return false;
4223}
4224
4225/// ParseDIMacroFile:
4226/// ::= !DIMacroFile(line: 9, file: !2, nodes: !3)
4227bool LLParser::ParseDIMacroFile(MDNode *&Result, bool IsDistinct) {
4228#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
4229 OPTIONAL(type, DwarfMacinfoTypeField, (dwarf::DW_MACINFO_start_file)); \
Adrian Prantl58c19102016-12-22 00:29:00 +00004230 OPTIONAL(line, LineField, ); \
Amjad Abouda9bcf162015-12-10 12:56:35 +00004231 REQUIRED(file, MDField, ); \
4232 OPTIONAL(nodes, MDField, );
4233 PARSE_MD_FIELDS();
4234#undef VISIT_MD_FIELDS
4235
4236 Result = GET_OR_DISTINCT(DIMacroFile,
4237 (Context, type.Val, line.Val, file.Val, nodes.Val));
4238 return false;
4239}
4240
Adrian Prantlab1243f2015-06-29 23:03:47 +00004241/// ParseDIModule:
4242/// ::= !DIModule(scope: !0, name: "SomeModule", configMacros: "-DNDEBUG",
4243/// includePath: "/usr/include", isysroot: "/")
4244bool LLParser::ParseDIModule(MDNode *&Result, bool IsDistinct) {
4245#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
4246 REQUIRED(scope, MDField, ); \
4247 REQUIRED(name, MDStringField, ); \
4248 OPTIONAL(configMacros, MDStringField, ); \
4249 OPTIONAL(includePath, MDStringField, ); \
4250 OPTIONAL(isysroot, MDStringField, );
4251 PARSE_MD_FIELDS();
4252#undef VISIT_MD_FIELDS
4253
4254 Result = GET_OR_DISTINCT(DIModule, (Context, scope.Val, name.Val,
4255 configMacros.Val, includePath.Val, isysroot.Val));
4256 return false;
4257}
4258
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004259/// ParseDITemplateTypeParameter:
4260/// ::= !DITemplateTypeParameter(name: "Ty", type: !1)
4261bool LLParser::ParseDITemplateTypeParameter(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith2847f382015-02-13 01:34:32 +00004262#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith2847f382015-02-13 01:34:32 +00004263 OPTIONAL(name, MDStringField, ); \
4264 REQUIRED(type, MDField, );
4265 PARSE_MD_FIELDS();
4266#undef VISIT_MD_FIELDS
4267
Duncan P. N. Exon Smith3d62bba2015-02-19 00:37:21 +00004268 Result =
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004269 GET_OR_DISTINCT(DITemplateTypeParameter, (Context, name.Val, type.Val));
Duncan P. N. Exon Smith2847f382015-02-13 01:34:32 +00004270 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00004271}
Duncan P. N. Exon Smith2847f382015-02-13 01:34:32 +00004272
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004273/// ParseDITemplateValueParameter:
4274/// ::= !DITemplateValueParameter(tag: DW_TAG_template_value_parameter,
Duncan P. N. Exon Smith3d62bba2015-02-19 00:37:21 +00004275/// name: "V", type: !1, value: i32 7)
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004276bool LLParser::ParseDITemplateValueParameter(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith2847f382015-02-13 01:34:32 +00004277#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith16d182a2015-02-28 23:21:38 +00004278 OPTIONAL(tag, DwarfTagField, (dwarf::DW_TAG_template_value_parameter)); \
Duncan P. N. Exon Smith2847f382015-02-13 01:34:32 +00004279 OPTIONAL(name, MDStringField, ); \
Duncan P. N. Exon Smith16d182a2015-02-28 23:21:38 +00004280 OPTIONAL(type, MDField, ); \
Duncan P. N. Exon Smith2847f382015-02-13 01:34:32 +00004281 REQUIRED(value, MDField, );
4282 PARSE_MD_FIELDS();
4283#undef VISIT_MD_FIELDS
4284
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004285 Result = GET_OR_DISTINCT(DITemplateValueParameter,
Duncan P. N. Exon Smith3d62bba2015-02-19 00:37:21 +00004286 (Context, tag.Val, name.Val, type.Val, value.Val));
Duncan P. N. Exon Smith2847f382015-02-13 01:34:32 +00004287 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00004288}
Duncan P. N. Exon Smith2847f382015-02-13 01:34:32 +00004289
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004290/// ParseDIGlobalVariable:
4291/// ::= !DIGlobalVariable(scope: !0, name: "foo", linkageName: "foo",
Duncan P. N. Exon Smithc8f810a2015-02-13 01:35:40 +00004292/// file: !1, line: 7, type: !2, isLocal: false,
Adrian Prantlbceaaa92016-12-20 02:09:43 +00004293/// isDefinition: true, declaration: !3, align: 8)
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004294bool LLParser::ParseDIGlobalVariable(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smithc8f810a2015-02-13 01:35:40 +00004295#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith94d58f82015-03-31 01:28:22 +00004296 REQUIRED(name, MDStringField, (/* AllowEmpty */ false)); \
Duncan P. N. Exon Smithc8f810a2015-02-13 01:35:40 +00004297 OPTIONAL(scope, MDField, ); \
Duncan P. N. Exon Smithc8f810a2015-02-13 01:35:40 +00004298 OPTIONAL(linkageName, MDStringField, ); \
4299 OPTIONAL(file, MDField, ); \
4300 OPTIONAL(line, LineField, ); \
4301 OPTIONAL(type, MDField, ); \
4302 OPTIONAL(isLocal, MDBoolField, ); \
4303 OPTIONAL(isDefinition, MDBoolField, (true)); \
Victor Leschuk2ede1262016-10-20 00:13:12 +00004304 OPTIONAL(declaration, MDField, ); \
4305 OPTIONAL(align, MDUnsignedField, (0, UINT32_MAX));
Duncan P. N. Exon Smithc8f810a2015-02-13 01:35:40 +00004306 PARSE_MD_FIELDS();
4307#undef VISIT_MD_FIELDS
4308
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004309 Result = GET_OR_DISTINCT(DIGlobalVariable,
Duncan P. N. Exon Smithc8f810a2015-02-13 01:35:40 +00004310 (Context, scope.Val, name.Val, linkageName.Val,
4311 file.Val, line.Val, type.Val, isLocal.Val,
Adrian Prantlbceaaa92016-12-20 02:09:43 +00004312 isDefinition.Val, declaration.Val, align.Val));
Duncan P. N. Exon Smithc8f810a2015-02-13 01:35:40 +00004313 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00004314}
Duncan P. N. Exon Smithc8f810a2015-02-13 01:35:40 +00004315
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004316/// ParseDILocalVariable:
Duncan P. N. Exon Smithed013cd2015-07-31 18:58:39 +00004317/// ::= !DILocalVariable(arg: 7, scope: !0, name: "foo",
Victor Leschuk2ede1262016-10-20 00:13:12 +00004318/// file: !1, line: 7, type: !2, arg: 2, flags: 7,
4319/// align: 8)
Duncan P. N. Exon Smithed013cd2015-07-31 18:58:39 +00004320/// ::= !DILocalVariable(scope: !0, name: "foo",
Victor Leschuk2ede1262016-10-20 00:13:12 +00004321/// file: !1, line: 7, type: !2, arg: 2, flags: 7,
4322/// align: 8)
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004323bool LLParser::ParseDILocalVariable(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith72fe2d02015-02-13 01:39:44 +00004324#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smithe2c61d92015-03-27 17:56:39 +00004325 REQUIRED(scope, MDField, (/* AllowNull */ false)); \
Duncan P. N. Exon Smith72fe2d02015-02-13 01:39:44 +00004326 OPTIONAL(name, MDStringField, ); \
Duncan P. N. Exon Smithed013cd2015-07-31 18:58:39 +00004327 OPTIONAL(arg, MDUnsignedField, (0, UINT16_MAX)); \
Duncan P. N. Exon Smith72fe2d02015-02-13 01:39:44 +00004328 OPTIONAL(file, MDField, ); \
4329 OPTIONAL(line, LineField, ); \
4330 OPTIONAL(type, MDField, ); \
Victor Leschuk2ede1262016-10-20 00:13:12 +00004331 OPTIONAL(flags, DIFlagField, ); \
4332 OPTIONAL(align, MDUnsignedField, (0, UINT32_MAX));
Duncan P. N. Exon Smith72fe2d02015-02-13 01:39:44 +00004333 PARSE_MD_FIELDS();
4334#undef VISIT_MD_FIELDS
4335
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004336 Result = GET_OR_DISTINCT(DILocalVariable,
Duncan P. N. Exon Smithed013cd2015-07-31 18:58:39 +00004337 (Context, scope.Val, name.Val, file.Val, line.Val,
Victor Leschuk2ede1262016-10-20 00:13:12 +00004338 type.Val, arg.Val, flags.Val, align.Val));
Duncan P. N. Exon Smith72fe2d02015-02-13 01:39:44 +00004339 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00004340}
Duncan P. N. Exon Smith72fe2d02015-02-13 01:39:44 +00004341
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004342/// ParseDIExpression:
4343/// ::= !DIExpression(0, 7, -1)
4344bool LLParser::ParseDIExpression(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith0c5c0122015-02-13 01:42:09 +00004345 assert(Lex.getKind() == lltok::MetadataVar && "Expected metadata type name");
4346 Lex.Lex();
4347
4348 if (ParseToken(lltok::lparen, "expected '(' here"))
4349 return true;
4350
4351 SmallVector<uint64_t, 8> Elements;
4352 if (Lex.getKind() != lltok::rparen)
4353 do {
4354 if (Lex.getKind() == lltok::DwarfOp) {
4355 if (unsigned Op = dwarf::getOperationEncoding(Lex.getStrVal())) {
4356 Lex.Lex();
4357 Elements.push_back(Op);
4358 continue;
4359 }
4360 return TokError(Twine("invalid DWARF op '") + Lex.getStrVal() + "'");
4361 }
4362
4363 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned())
4364 return TokError("expected unsigned integer");
4365
4366 auto &U = Lex.getAPSIntVal();
4367 if (U.ugt(UINT64_MAX))
4368 return TokError("element too large, limit is " + Twine(UINT64_MAX));
4369 Elements.push_back(U.getZExtValue());
4370 Lex.Lex();
4371 } while (EatIfPresent(lltok::comma));
4372
4373 if (ParseToken(lltok::rparen, "expected ')' here"))
4374 return true;
4375
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004376 Result = GET_OR_DISTINCT(DIExpression, (Context, Elements));
Duncan P. N. Exon Smith0c5c0122015-02-13 01:42:09 +00004377 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00004378}
Duncan P. N. Exon Smith0c5c0122015-02-13 01:42:09 +00004379
Adrian Prantlbceaaa92016-12-20 02:09:43 +00004380/// ParseDIGlobalVariableExpression:
4381/// ::= !DIGlobalVariableExpression(var: !0, expr: !1)
4382bool LLParser::ParseDIGlobalVariableExpression(MDNode *&Result,
4383 bool IsDistinct) {
4384#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
4385 REQUIRED(var, MDField, ); \
Adrian Prantl05782212017-08-30 18:06:51 +00004386 REQUIRED(expr, MDField, );
Adrian Prantlbceaaa92016-12-20 02:09:43 +00004387 PARSE_MD_FIELDS();
4388#undef VISIT_MD_FIELDS
4389
4390 Result =
4391 GET_OR_DISTINCT(DIGlobalVariableExpression, (Context, var.Val, expr.Val));
4392 return false;
4393}
4394
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004395/// ParseDIObjCProperty:
4396/// ::= !DIObjCProperty(name: "foo", file: !1, line: 7, setter: "setFoo",
Duncan P. N. Exon Smithd45ce962015-02-13 01:43:22 +00004397/// getter: "getFoo", attributes: 7, type: !2)
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004398bool LLParser::ParseDIObjCProperty(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smithd45ce962015-02-13 01:43:22 +00004399#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith3eea1962015-03-16 19:01:54 +00004400 OPTIONAL(name, MDStringField, ); \
Duncan P. N. Exon Smithd45ce962015-02-13 01:43:22 +00004401 OPTIONAL(file, MDField, ); \
4402 OPTIONAL(line, LineField, ); \
4403 OPTIONAL(setter, MDStringField, ); \
4404 OPTIONAL(getter, MDStringField, ); \
4405 OPTIONAL(attributes, MDUnsignedField, (0, UINT32_MAX)); \
4406 OPTIONAL(type, MDField, );
4407 PARSE_MD_FIELDS();
4408#undef VISIT_MD_FIELDS
4409
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004410 Result = GET_OR_DISTINCT(DIObjCProperty,
Duncan P. N. Exon Smithd45ce962015-02-13 01:43:22 +00004411 (Context, name.Val, file.Val, line.Val, setter.Val,
4412 getter.Val, attributes.Val, type.Val));
4413 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00004414}
Duncan P. N. Exon Smithd45ce962015-02-13 01:43:22 +00004415
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004416/// ParseDIImportedEntity:
4417/// ::= !DIImportedEntity(tag: DW_TAG_imported_module, scope: !0, entity: !1,
Duncan P. N. Exon Smith1c931162015-02-13 01:46:02 +00004418/// line: 7, name: "foo")
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004419bool LLParser::ParseDIImportedEntity(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith1c931162015-02-13 01:46:02 +00004420#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
4421 REQUIRED(tag, DwarfTagField, ); \
4422 REQUIRED(scope, MDField, ); \
4423 OPTIONAL(entity, MDField, ); \
Adrian Prantld63bfd22017-07-19 00:09:54 +00004424 OPTIONAL(file, MDField, ); \
Duncan P. N. Exon Smith1c931162015-02-13 01:46:02 +00004425 OPTIONAL(line, LineField, ); \
4426 OPTIONAL(name, MDStringField, );
4427 PARSE_MD_FIELDS();
4428#undef VISIT_MD_FIELDS
4429
Adrian Prantld63bfd22017-07-19 00:09:54 +00004430 Result = GET_OR_DISTINCT(
4431 DIImportedEntity,
4432 (Context, tag.Val, scope.Val, entity.Val, file.Val, line.Val, name.Val));
Duncan P. N. Exon Smith1c931162015-02-13 01:46:02 +00004433 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00004434}
Duncan P. N. Exon Smith1c931162015-02-13 01:46:02 +00004435
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00004436#undef PARSE_MD_FIELD
Duncan P. N. Exon Smith2a6b5fc2015-01-19 23:44:41 +00004437#undef NOP_FIELD
4438#undef REQUIRE_FIELD
4439#undef DECLARE_FIELD
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00004440
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00004441/// ParseMetadataAsValue
4442/// ::= metadata i32 %local
4443/// ::= metadata i32 @global
4444/// ::= metadata i32 7
4445/// ::= metadata !0
4446/// ::= metadata !{...}
4447/// ::= metadata !"string"
4448bool LLParser::ParseMetadataAsValue(Value *&V, PerFunctionState &PFS) {
4449 // Note: the type 'metadata' has already been parsed.
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00004450 Metadata *MD;
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00004451 if (ParseMetadata(MD, &PFS))
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00004452 return true;
4453
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00004454 V = MetadataAsValue::get(Context, MD);
4455 return false;
4456}
4457
4458/// ParseValueAsMetadata
4459/// ::= i32 %local
4460/// ::= i32 @global
4461/// ::= i32 7
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00004462bool LLParser::ParseValueAsMetadata(Metadata *&MD, const Twine &TypeMsg,
4463 PerFunctionState *PFS) {
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00004464 Type *Ty;
4465 LocTy Loc;
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00004466 if (ParseType(Ty, TypeMsg, Loc))
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00004467 return true;
4468 if (Ty->isMetadataTy())
4469 return Error(Loc, "invalid metadata-value-metadata roundtrip");
4470
4471 Value *V;
4472 if (ParseValue(Ty, V, PFS))
4473 return true;
4474
4475 MD = ValueAsMetadata::get(V);
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00004476 return false;
4477}
4478
4479/// ParseMetadata
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00004480/// ::= i32 %local
4481/// ::= i32 @global
4482/// ::= i32 7
Dan Gohman8939ba332010-07-14 18:26:50 +00004483/// ::= !42
4484/// ::= !{...}
4485/// ::= !"string"
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004486/// ::= !DILocation(...)
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00004487bool LLParser::ParseMetadata(Metadata *&MD, PerFunctionState *PFS) {
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00004488 if (Lex.getKind() == lltok::MetadataVar) {
4489 MDNode *N;
4490 if (ParseSpecializedMDNode(N))
4491 return true;
4492 MD = N;
4493 return false;
4494 }
4495
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00004496 // ValueAsMetadata:
4497 // <type> <value>
4498 if (Lex.getKind() != lltok::exclaim)
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00004499 return ParseValueAsMetadata(MD, "expected metadata operand", PFS);
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00004500
4501 // '!'.
4502 assert(Lex.getKind() == lltok::exclaim && "Expected '!' here");
4503 Lex.Lex();
Dan Gohman8939ba332010-07-14 18:26:50 +00004504
Duncan P. N. Exon Smith62a79192015-01-12 22:24:50 +00004505 // MDString:
4506 // ::= '!' STRINGCONSTANT
4507 if (Lex.getKind() == lltok::StringConstant) {
4508 MDString *S;
4509 if (ParseMDString(S))
4510 return true;
4511 MD = S;
4512 return false;
4513 }
4514
Dan Gohman8939ba332010-07-14 18:26:50 +00004515 // MDNode:
4516 // !{ ... }
Duncan P. N. Exon Smithf825dae2015-01-12 22:26:48 +00004517 // !7
Duncan P. N. Exon Smith62a79192015-01-12 22:24:50 +00004518 MDNode *N;
Duncan P. N. Exon Smithf825dae2015-01-12 22:26:48 +00004519 if (ParseMDNodeTail(N))
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00004520 return true;
Duncan P. N. Exon Smith62a79192015-01-12 22:24:50 +00004521 MD = N;
Dan Gohman8939ba332010-07-14 18:26:50 +00004522 return false;
4523}
4524
Victor Hernandez9d75c962010-01-11 22:31:58 +00004525//===----------------------------------------------------------------------===//
4526// Function Parsing.
4527//===----------------------------------------------------------------------===//
4528
Chris Lattner229907c2011-07-18 04:54:35 +00004529bool LLParser::ConvertValIDToValue(Type *Ty, ValID &ID, Value *&V,
David Majnemer8a1c45d2015-12-12 05:38:55 +00004530 PerFunctionState *PFS) {
Duncan Sands19d0b472010-02-16 11:11:14 +00004531 if (Ty->isFunctionTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00004532 return Error(ID.Loc, "functions are not values, refer to them as pointers");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004533
Chris Lattnerac161bf2009-01-02 07:01:27 +00004534 switch (ID.Kind) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00004535 case ValID::t_LocalID:
Victor Hernandez9d75c962010-01-11 22:31:58 +00004536 if (!PFS) return Error(ID.Loc, "invalid use of function-local name");
David Majnemer8a1c45d2015-12-12 05:38:55 +00004537 V = PFS->GetVal(ID.UIntVal, Ty, ID.Loc);
Craig Topper2617dcc2014-04-15 06:32:26 +00004538 return V == nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004539 case ValID::t_LocalName:
Victor Hernandez9d75c962010-01-11 22:31:58 +00004540 if (!PFS) return Error(ID.Loc, "invalid use of function-local name");
David Majnemer8a1c45d2015-12-12 05:38:55 +00004541 V = PFS->GetVal(ID.StrVal, Ty, ID.Loc);
Craig Topper2617dcc2014-04-15 06:32:26 +00004542 return V == nullptr;
Victor Hernandez9d75c962010-01-11 22:31:58 +00004543 case ValID::t_InlineAsm: {
Karl Schimpf44876c52015-09-03 16:18:32 +00004544 if (!ID.FTy || !InlineAsm::Verify(ID.FTy, ID.StrVal2))
Victor Hernandez9d75c962010-01-11 22:31:58 +00004545 return Error(ID.Loc, "invalid type for inline asm constraint string");
David Blaikie41ba2b42015-07-27 23:32:19 +00004546 V = InlineAsm::get(ID.FTy, ID.StrVal, ID.StrVal2, ID.UIntVal & 1,
4547 (ID.UIntVal >> 1) & 1,
4548 (InlineAsm::AsmDialect(ID.UIntVal >> 2)));
Victor Hernandez9d75c962010-01-11 22:31:58 +00004549 return false;
4550 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00004551 case ValID::t_GlobalName:
4552 V = GetGlobalVal(ID.StrVal, Ty, ID.Loc);
Craig Topper2617dcc2014-04-15 06:32:26 +00004553 return V == nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004554 case ValID::t_GlobalID:
4555 V = GetGlobalVal(ID.UIntVal, Ty, ID.Loc);
Craig Topper2617dcc2014-04-15 06:32:26 +00004556 return V == nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004557 case ValID::t_APSInt:
Duncan Sands19d0b472010-02-16 11:11:14 +00004558 if (!Ty->isIntegerTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00004559 return Error(ID.Loc, "integer constant must have integer type");
Jay Foad583abbc2010-12-07 08:25:19 +00004560 ID.APSIntVal = ID.APSIntVal.extOrTrunc(Ty->getPrimitiveSizeInBits());
Owen Andersonedb4a702009-07-24 23:12:02 +00004561 V = ConstantInt::get(Context, ID.APSIntVal);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004562 return false;
4563 case ValID::t_APFloat:
Duncan Sands9dff9be2010-02-15 16:12:20 +00004564 if (!Ty->isFloatingPointTy() ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00004565 !ConstantFP::isValueValidForType(Ty, ID.APFloatVal))
4566 return Error(ID.Loc, "floating point constant invalid for type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004567
Dan Gohman518cda42011-12-17 00:04:22 +00004568 // The lexer has no type info, so builds all half, float, and double FP
4569 // constants as double. Fix this here. Long double does not need this.
Stephan Bergmann17c7f702016-12-14 11:57:17 +00004570 if (&ID.APFloatVal.getSemantics() == &APFloat::IEEEdouble()) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00004571 bool Ignored;
Dan Gohman518cda42011-12-17 00:04:22 +00004572 if (Ty->isHalfTy())
Stephan Bergmann17c7f702016-12-14 11:57:17 +00004573 ID.APFloatVal.convert(APFloat::IEEEhalf(), APFloat::rmNearestTiesToEven,
Dan Gohman518cda42011-12-17 00:04:22 +00004574 &Ignored);
4575 else if (Ty->isFloatTy())
Stephan Bergmann17c7f702016-12-14 11:57:17 +00004576 ID.APFloatVal.convert(APFloat::IEEEsingle(), APFloat::rmNearestTiesToEven,
Dan Gohman518cda42011-12-17 00:04:22 +00004577 &Ignored);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004578 }
Owen Anderson69c464d2009-07-27 20:59:43 +00004579 V = ConstantFP::get(Context, ID.APFloatVal);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004580
Chris Lattner8f57d29e2009-01-05 18:24:23 +00004581 if (V->getType() != Ty)
4582 return Error(ID.Loc, "floating point constant does not have type '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00004583 getTypeString(Ty) + "'");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004584
Chris Lattnerac161bf2009-01-02 07:01:27 +00004585 return false;
4586 case ValID::t_Null:
Duncan Sands19d0b472010-02-16 11:11:14 +00004587 if (!Ty->isPointerTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00004588 return Error(ID.Loc, "null must be a pointer type");
Owen Andersonb292b8c2009-07-30 23:03:37 +00004589 V = ConstantPointerNull::get(cast<PointerType>(Ty));
Chris Lattnerac161bf2009-01-02 07:01:27 +00004590 return false;
4591 case ValID::t_Undef:
Chris Lattnerffa07782009-01-05 08:13:38 +00004592 // FIXME: LabelTy should not be a first-class type.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004593 if (!Ty->isFirstClassType() || Ty->isLabelTy())
Chris Lattnerffa07782009-01-05 08:13:38 +00004594 return Error(ID.Loc, "invalid type for undef constant");
Owen Andersonb292b8c2009-07-30 23:03:37 +00004595 V = UndefValue::get(Ty);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004596 return false;
Chris Lattner998fa0a2009-01-05 07:52:51 +00004597 case ValID::t_EmptyArray:
Duncan Sands19d0b472010-02-16 11:11:14 +00004598 if (!Ty->isArrayTy() || cast<ArrayType>(Ty)->getNumElements() != 0)
Chris Lattner998fa0a2009-01-05 07:52:51 +00004599 return Error(ID.Loc, "invalid empty array initializer");
Owen Andersonb292b8c2009-07-30 23:03:37 +00004600 V = UndefValue::get(Ty);
Chris Lattner998fa0a2009-01-05 07:52:51 +00004601 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004602 case ValID::t_Zero:
Chris Lattnerffa07782009-01-05 08:13:38 +00004603 // FIXME: LabelTy should not be a first-class type.
Chris Lattnerfdd87902009-10-05 05:54:46 +00004604 if (!Ty->isFirstClassType() || Ty->isLabelTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00004605 return Error(ID.Loc, "invalid type for null constant");
Owen Anderson5a1acd92009-07-31 20:28:14 +00004606 V = Constant::getNullValue(Ty);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004607 return false;
David Majnemerf0f224d2015-11-11 21:57:16 +00004608 case ValID::t_None:
4609 if (!Ty->isTokenTy())
4610 return Error(ID.Loc, "invalid type for none constant");
4611 V = Constant::getNullValue(Ty);
4612 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004613 case ValID::t_Constant:
Chris Lattner13ee7952010-08-28 04:09:24 +00004614 if (ID.ConstantVal->getType() != Ty)
Chris Lattnerac161bf2009-01-02 07:01:27 +00004615 return Error(ID.Loc, "constant expression type mismatch");
Chris Lattner392be582010-02-12 20:49:41 +00004616
Chris Lattnerac161bf2009-01-02 07:01:27 +00004617 V = ID.ConstantVal;
4618 return false;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004619 case ValID::t_ConstantStruct:
4620 case ValID::t_PackedConstantStruct:
Chris Lattner229907c2011-07-18 04:54:35 +00004621 if (StructType *ST = dyn_cast<StructType>(Ty)) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004622 if (ST->getNumElements() != ID.UIntVal)
4623 return Error(ID.Loc,
4624 "initializer with struct type has wrong # elements");
4625 if (ST->isPacked() != (ID.Kind == ValID::t_PackedConstantStruct))
4626 return Error(ID.Loc, "packed'ness of initializer and type don't match");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004627
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004628 // Verify that the elements are compatible with the structtype.
4629 for (unsigned i = 0, e = ID.UIntVal; i != e; ++i)
4630 if (ID.ConstantStructElts[i]->getType() != ST->getElementType(i))
4631 return Error(ID.Loc, "element " + Twine(i) +
4632 " of struct initializer doesn't match struct element type");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004633
David Blaikieadbda4b2015-08-03 20:08:41 +00004634 V = ConstantStruct::get(
4635 ST, makeArrayRef(ID.ConstantStructElts.get(), ID.UIntVal));
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004636 } else
4637 return Error(ID.Loc, "constant expression type mismatch");
4638 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004639 }
Chandler Carruthf3e85022012-01-10 18:08:01 +00004640 llvm_unreachable("Invalid ValID");
Chris Lattnerac161bf2009-01-02 07:01:27 +00004641}
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004642
Alex Lorenzd2255952015-07-17 22:07:03 +00004643bool LLParser::parseConstantValue(Type *Ty, Constant *&C) {
4644 C = nullptr;
4645 ValID ID;
4646 auto Loc = Lex.getLoc();
4647 if (ParseValID(ID, /*PFS=*/nullptr))
4648 return true;
4649 switch (ID.Kind) {
4650 case ValID::t_APSInt:
4651 case ValID::t_APFloat:
Alex Lorenzb9a68db2015-09-09 13:44:33 +00004652 case ValID::t_Undef:
Alex Lorenzd2255952015-07-17 22:07:03 +00004653 case ValID::t_Constant:
4654 case ValID::t_ConstantStruct:
4655 case ValID::t_PackedConstantStruct: {
4656 Value *V;
4657 if (ConvertValIDToValue(Ty, ID, V, /*PFS=*/nullptr))
4658 return true;
4659 assert(isa<Constant>(V) && "Expected a constant value");
4660 C = cast<Constant>(V);
4661 return false;
4662 }
Eric Christopherb9c56d12017-03-30 22:34:20 +00004663 case ValID::t_Null:
4664 C = Constant::getNullValue(Ty);
4665 return false;
Alex Lorenzd2255952015-07-17 22:07:03 +00004666 default:
4667 return Error(Loc, "expected a constant value");
4668 }
4669}
4670
David Majnemer8a1c45d2015-12-12 05:38:55 +00004671bool LLParser::ParseValue(Type *Ty, Value *&V, PerFunctionState *PFS) {
Craig Topper2617dcc2014-04-15 06:32:26 +00004672 V = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004673 ValID ID;
David Majnemer8a1c45d2015-12-12 05:38:55 +00004674 return ParseValID(ID, PFS) || ConvertValIDToValue(Ty, ID, V, PFS);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004675}
4676
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004677bool LLParser::ParseTypeAndValue(Value *&V, PerFunctionState *PFS) {
Craig Topper2617dcc2014-04-15 06:32:26 +00004678 Type *Ty = nullptr;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004679 return ParseType(Ty) ||
4680 ParseValue(Ty, V, PFS);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004681}
4682
Chris Lattner3ed871f2009-10-27 19:13:16 +00004683bool LLParser::ParseTypeAndBasicBlock(BasicBlock *&BB, LocTy &Loc,
4684 PerFunctionState &PFS) {
4685 Value *V;
4686 Loc = Lex.getLoc();
4687 if (ParseTypeAndValue(V, PFS)) return true;
4688 if (!isa<BasicBlock>(V))
4689 return Error(Loc, "expected a basic block");
4690 BB = cast<BasicBlock>(V);
4691 return false;
4692}
4693
Chris Lattnerac161bf2009-01-02 07:01:27 +00004694/// FunctionHeader
4695/// ::= OptionalLinkage OptionalVisibility OptionalCallingConv OptRetAttrs
Rafael Espindola45e6c192011-01-08 16:42:36 +00004696/// OptUnnamedAddr Type GlobalName '(' ArgList ')' OptFuncAttrs OptSection
David Majnemer7fddecc2015-06-17 20:52:32 +00004697/// OptionalAlign OptGC OptionalPrefix OptionalPrologue OptPersonalityFn
Chris Lattnerac161bf2009-01-02 07:01:27 +00004698bool LLParser::ParseFunctionHeader(Function *&Fn, bool isDefine) {
4699 // Parse the linkage.
4700 LocTy LinkageLoc = Lex.getLoc();
4701 unsigned Linkage;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004702
Kostya Serebryanya5054ad2012-01-20 17:56:17 +00004703 unsigned Visibility;
Nico Rieck7157bb72014-01-14 15:22:47 +00004704 unsigned DLLStorageClass;
Bill Wendling50d27842012-10-15 20:35:56 +00004705 AttrBuilder RetAttrs;
Alexey Samsonov17a9cff2014-09-10 18:00:17 +00004706 unsigned CC;
Rafael Espindola2615c9e2016-05-12 12:37:52 +00004707 bool HasLinkage;
Craig Topper2617dcc2014-04-15 06:32:26 +00004708 Type *RetType = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004709 LocTy RetTypeLoc = Lex.getLoc();
Rafael Espindola2615c9e2016-05-12 12:37:52 +00004710 if (ParseOptionalLinkage(Linkage, HasLinkage, Visibility, DLLStorageClass) ||
4711 ParseOptionalCallingConv(CC) || ParseOptionalReturnAttrs(RetAttrs) ||
Chris Lattnerf880ca22009-03-09 04:49:14 +00004712 ParseType(RetType, RetTypeLoc, true /*void allowed*/))
Chris Lattnerac161bf2009-01-02 07:01:27 +00004713 return true;
4714
4715 // Verify that the linkage is ok.
4716 switch ((GlobalValue::LinkageTypes)Linkage) {
4717 case GlobalValue::ExternalLinkage:
4718 break; // always ok.
Duncan Sandse2881052009-03-11 08:08:06 +00004719 case GlobalValue::ExternalWeakLinkage:
Chris Lattnerac161bf2009-01-02 07:01:27 +00004720 if (isDefine)
4721 return Error(LinkageLoc, "invalid linkage for function definition");
4722 break;
Rafael Espindola6de96a12009-01-15 20:18:42 +00004723 case GlobalValue::PrivateLinkage:
Chris Lattnerac161bf2009-01-02 07:01:27 +00004724 case GlobalValue::InternalLinkage:
Nick Lewycky8019af62009-04-13 07:02:02 +00004725 case GlobalValue::AvailableExternallyLinkage:
Duncan Sands12da8ce2009-03-07 15:45:40 +00004726 case GlobalValue::LinkOnceAnyLinkage:
4727 case GlobalValue::LinkOnceODRLinkage:
4728 case GlobalValue::WeakAnyLinkage:
4729 case GlobalValue::WeakODRLinkage:
Chris Lattnerac161bf2009-01-02 07:01:27 +00004730 if (!isDefine)
4731 return Error(LinkageLoc, "invalid linkage for function declaration");
4732 break;
4733 case GlobalValue::AppendingLinkage:
Duncan Sands4581beb2009-03-11 20:14:15 +00004734 case GlobalValue::CommonLinkage:
Chris Lattnerac161bf2009-01-02 07:01:27 +00004735 return Error(LinkageLoc, "invalid function linkage type");
4736 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004737
Duncan P. N. Exon Smithb80de102014-05-07 22:57:20 +00004738 if (!isValidVisibilityForLinkage(Visibility, Linkage))
4739 return Error(LinkageLoc,
4740 "symbol with local linkage must have default visibility");
4741
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004742 if (!FunctionType::isValidReturnType(RetType))
Chris Lattnerac161bf2009-01-02 07:01:27 +00004743 return Error(RetTypeLoc, "invalid function return type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004744
Chris Lattnerac161bf2009-01-02 07:01:27 +00004745 LocTy NameLoc = Lex.getLoc();
Chris Lattner778c62c2009-02-18 21:48:13 +00004746
4747 std::string FunctionName;
4748 if (Lex.getKind() == lltok::GlobalVar) {
4749 FunctionName = Lex.getStrVal();
4750 } else if (Lex.getKind() == lltok::GlobalID) { // @42 is ok.
4751 unsigned NameID = Lex.getUIntVal();
4752
4753 if (NameID != NumberedVals.size())
4754 return TokError("function expected to be numbered '%" +
Benjamin Kramerc7583112010-09-27 17:42:11 +00004755 Twine(NumberedVals.size()) + "'");
Chris Lattner778c62c2009-02-18 21:48:13 +00004756 } else {
4757 return TokError("expected function name");
4758 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004759
Chris Lattner3822f632009-01-02 08:05:26 +00004760 Lex.Lex();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004761
Chris Lattner3822f632009-01-02 08:05:26 +00004762 if (Lex.getKind() != lltok::lparen)
Chris Lattnerac161bf2009-01-02 07:01:27 +00004763 return TokError("expected '(' in function argument list");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004764
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004765 SmallVector<ArgInfo, 8> ArgList;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004766 bool isVarArg;
Bill Wendling50d27842012-10-15 20:35:56 +00004767 AttrBuilder FuncAttrs;
Bill Wendlingb32b0412013-02-08 06:32:06 +00004768 std::vector<unsigned> FwdRefAttrGrps;
Michael Gottesman41748d72013-06-27 00:25:01 +00004769 LocTy BuiltinLoc;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004770 std::string Section;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004771 unsigned Alignment;
Chris Lattner3822f632009-01-02 08:05:26 +00004772 std::string GC;
Peter Collingbourne96efdd62016-06-14 21:01:22 +00004773 GlobalValue::UnnamedAddr UnnamedAddr = GlobalValue::UnnamedAddr::None;
Rafael Espindola563eb4b2011-01-25 19:09:56 +00004774 LocTy UnnamedAddrLoc;
Craig Topper2617dcc2014-04-15 06:32:26 +00004775 Constant *Prefix = nullptr;
Peter Collingbourne51d2de72014-12-03 02:08:38 +00004776 Constant *Prologue = nullptr;
David Majnemer7fddecc2015-06-17 20:52:32 +00004777 Constant *PersonalityFn = nullptr;
David Majnemerdad0a642014-06-27 18:19:56 +00004778 Comdat *C;
Chris Lattner3822f632009-01-02 08:05:26 +00004779
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004780 if (ParseArgumentList(ArgList, isVarArg) ||
Peter Collingbourne96efdd62016-06-14 21:01:22 +00004781 ParseOptionalUnnamedAddr(UnnamedAddr) ||
Bill Wendling09bd1f72013-02-22 00:12:35 +00004782 ParseFnAttributeValuePairs(FuncAttrs, FwdRefAttrGrps, false,
Michael Gottesman41748d72013-06-27 00:25:01 +00004783 BuiltinLoc) ||
Chris Lattner3822f632009-01-02 08:05:26 +00004784 (EatIfPresent(lltok::kw_section) &&
4785 ParseStringConstant(Section)) ||
Rafael Espindola83a362c2015-01-06 22:55:16 +00004786 parseOptionalComdat(FunctionName, C) ||
Chris Lattner3822f632009-01-02 08:05:26 +00004787 ParseOptionalAlignment(Alignment) ||
4788 (EatIfPresent(lltok::kw_gc) &&
Peter Collingbourne3fa50f92013-09-16 01:08:15 +00004789 ParseStringConstant(GC)) ||
4790 (EatIfPresent(lltok::kw_prefix) &&
Peter Collingbourne51d2de72014-12-03 02:08:38 +00004791 ParseGlobalTypeAndValue(Prefix)) ||
4792 (EatIfPresent(lltok::kw_prologue) &&
David Majnemer7fddecc2015-06-17 20:52:32 +00004793 ParseGlobalTypeAndValue(Prologue)) ||
4794 (EatIfPresent(lltok::kw_personality) &&
4795 ParseGlobalTypeAndValue(PersonalityFn)))
Chris Lattner3822f632009-01-02 08:05:26 +00004796 return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004797
Michael Gottesman41748d72013-06-27 00:25:01 +00004798 if (FuncAttrs.contains(Attribute::Builtin))
4799 return Error(BuiltinLoc, "'builtin' attribute not valid on function");
Bill Wendling09bd1f72013-02-22 00:12:35 +00004800
Chris Lattnerac161bf2009-01-02 07:01:27 +00004801 // If the alignment was parsed as an attribute, move to the alignment field.
Bill Wendlingc6daefa2012-10-08 23:27:46 +00004802 if (FuncAttrs.hasAlignmentAttr()) {
Bill Wendling9be77592012-09-21 15:26:31 +00004803 Alignment = FuncAttrs.getAlignment();
Bill Wendling3d7b0b82012-12-19 07:18:57 +00004804 FuncAttrs.removeAttribute(Attribute::Alignment);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004805 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004806
Chris Lattnerac161bf2009-01-02 07:01:27 +00004807 // Okay, if we got here, the function is syntactically valid. Convert types
4808 // and do semantic checks.
Jay Foadb804a2b2011-07-12 14:06:48 +00004809 std::vector<Type*> ParamTypeList;
Reid Klecknerc2cb5602017-04-12 00:38:00 +00004810 SmallVector<AttributeSet, 8> Attrs;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004811
Chris Lattnerac161bf2009-01-02 07:01:27 +00004812 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004813 ParamTypeList.push_back(ArgList[i].Ty);
Reid Klecknereb9dd5b2017-04-10 23:31:05 +00004814 Attrs.push_back(ArgList[i].Attrs);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004815 }
4816
Reid Kleckner7f720332017-04-13 00:58:09 +00004817 AttributeList PAL =
4818 AttributeList::get(Context, AttributeSet::get(Context, FuncAttrs),
4819 AttributeSet::get(Context, RetAttrs), Attrs);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004820
Bill Wendling749a43d2012-12-30 13:50:49 +00004821 if (PAL.hasAttribute(1, Attribute::StructRet) && !RetType->isVoidTy())
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004822 return Error(RetTypeLoc, "functions with 'sret' argument must return void");
4823
Chris Lattner229907c2011-07-18 04:54:35 +00004824 FunctionType *FT =
Owen Anderson4056ca92009-07-29 22:17:13 +00004825 FunctionType::get(RetType, ParamTypeList, isVarArg);
Chris Lattner229907c2011-07-18 04:54:35 +00004826 PointerType *PFT = PointerType::getUnqual(FT);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004827
Craig Topper2617dcc2014-04-15 06:32:26 +00004828 Fn = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004829 if (!FunctionName.empty()) {
4830 // If this was a definition of a forward reference, remove the definition
4831 // from the forward reference table and fill in the forward ref.
David Blaikie9ebdc692015-09-21 21:07:50 +00004832 auto FRVI = ForwardRefVals.find(FunctionName);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004833 if (FRVI != ForwardRefVals.end()) {
4834 Fn = M->getFunction(FunctionName);
Nick Lewycky686d7cb2012-10-11 00:38:25 +00004835 if (!Fn)
4836 return Error(FRVI->second.second, "invalid forward reference to "
4837 "function as global value!");
Chris Lattnerc239eb72010-04-20 04:49:11 +00004838 if (Fn->getType() != PFT)
4839 return Error(FRVI->second.second, "invalid forward reference to "
4840 "function '" + FunctionName + "' with wrong type!");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004841
Chris Lattnerac161bf2009-01-02 07:01:27 +00004842 ForwardRefVals.erase(FRVI);
4843 } else if ((Fn = M->getFunction(FunctionName))) {
Chris Lattner5756c162011-06-17 07:06:44 +00004844 // Reject redefinitions.
4845 return Error(NameLoc, "invalid redefinition of function '" +
4846 FunctionName + "'");
Chris Lattnere38317f2009-10-25 23:22:50 +00004847 } else if (M->getNamedValue(FunctionName)) {
4848 return Error(NameLoc, "redefinition of function '@" + FunctionName + "'");
Chris Lattnerac161bf2009-01-02 07:01:27 +00004849 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004850
Dan Gohman399d6ae2009-08-29 23:37:49 +00004851 } else {
Chris Lattnerac161bf2009-01-02 07:01:27 +00004852 // If this is a definition of a forward referenced function, make sure the
4853 // types agree.
David Blaikie9ebdc692015-09-21 21:07:50 +00004854 auto I = ForwardRefValIDs.find(NumberedVals.size());
Chris Lattnerac161bf2009-01-02 07:01:27 +00004855 if (I != ForwardRefValIDs.end()) {
4856 Fn = cast<Function>(I->second.first);
4857 if (Fn->getType() != PFT)
4858 return Error(NameLoc, "type of definition and forward reference of '@" +
Benjamin Kramerc7583112010-09-27 17:42:11 +00004859 Twine(NumberedVals.size()) + "' disagree");
Chris Lattnerac161bf2009-01-02 07:01:27 +00004860 ForwardRefValIDs.erase(I);
4861 }
4862 }
4863
Craig Topper2617dcc2014-04-15 06:32:26 +00004864 if (!Fn)
Chris Lattnerac161bf2009-01-02 07:01:27 +00004865 Fn = Function::Create(FT, GlobalValue::ExternalLinkage, FunctionName, M);
4866 else // Move the forward-reference to the correct spot in the module.
4867 M->getFunctionList().splice(M->end(), M->getFunctionList(), Fn);
4868
4869 if (FunctionName.empty())
4870 NumberedVals.push_back(Fn);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004871
Chris Lattnerac161bf2009-01-02 07:01:27 +00004872 Fn->setLinkage((GlobalValue::LinkageTypes)Linkage);
4873 Fn->setVisibility((GlobalValue::VisibilityTypes)Visibility);
Nico Rieck7157bb72014-01-14 15:22:47 +00004874 Fn->setDLLStorageClass((GlobalValue::DLLStorageClassTypes)DLLStorageClass);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004875 Fn->setCallingConv(CC);
4876 Fn->setAttributes(PAL);
Rafael Espindola45e6c192011-01-08 16:42:36 +00004877 Fn->setUnnamedAddr(UnnamedAddr);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004878 Fn->setAlignment(Alignment);
4879 Fn->setSection(Section);
David Majnemerdad0a642014-06-27 18:19:56 +00004880 Fn->setComdat(C);
David Majnemer7fddecc2015-06-17 20:52:32 +00004881 Fn->setPersonalityFn(PersonalityFn);
Benjamin Kramer728f4442016-05-29 10:46:35 +00004882 if (!GC.empty()) Fn->setGC(GC);
Peter Collingbourne3fa50f92013-09-16 01:08:15 +00004883 Fn->setPrefixData(Prefix);
Peter Collingbourne51d2de72014-12-03 02:08:38 +00004884 Fn->setPrologueData(Prologue);
Bill Wendlingb32b0412013-02-08 06:32:06 +00004885 ForwardRefAttrGroups[Fn] = FwdRefAttrGrps;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004886
Chris Lattnerac161bf2009-01-02 07:01:27 +00004887 // Add all of the arguments we parsed to the function.
4888 Function::arg_iterator ArgIt = Fn->arg_begin();
4889 for (unsigned i = 0, e = ArgList.size(); i != e; ++i, ++ArgIt) {
4890 // If the argument has a name, insert it into the argument symbol table.
4891 if (ArgList[i].Name.empty()) continue;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004892
Chris Lattnerac161bf2009-01-02 07:01:27 +00004893 // Set the name, if it conflicted, it will be auto-renamed.
4894 ArgIt->setName(ArgList[i].Name);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004895
Benjamin Kramer1dc34b42010-10-16 11:28:23 +00004896 if (ArgIt->getName() != ArgList[i].Name)
Chris Lattnerac161bf2009-01-02 07:01:27 +00004897 return Error(ArgList[i].Loc, "redefinition of argument '%" +
4898 ArgList[i].Name + "'");
4899 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004900
Duncan P. N. Exon Smith17169902014-08-19 00:13:19 +00004901 if (isDefine)
4902 return false;
4903
Robin Morisset039781e2014-08-29 21:53:01 +00004904 // Check the declaration has no block address forward references.
Duncan P. N. Exon Smith17169902014-08-19 00:13:19 +00004905 ValID ID;
4906 if (FunctionName.empty()) {
4907 ID.Kind = ValID::t_GlobalID;
4908 ID.UIntVal = NumberedVals.size() - 1;
4909 } else {
4910 ID.Kind = ValID::t_GlobalName;
4911 ID.StrVal = FunctionName;
4912 }
4913 auto Blocks = ForwardRefBlockAddresses.find(ID);
4914 if (Blocks != ForwardRefBlockAddresses.end())
4915 return Error(Blocks->first.Loc,
4916 "cannot take blockaddress inside a declaration");
Chris Lattnerac161bf2009-01-02 07:01:27 +00004917 return false;
4918}
4919
Duncan P. N. Exon Smith17169902014-08-19 00:13:19 +00004920bool LLParser::PerFunctionState::resolveForwardRefBlockAddresses() {
4921 ValID ID;
4922 if (FunctionNumber == -1) {
4923 ID.Kind = ValID::t_GlobalName;
4924 ID.StrVal = F.getName();
4925 } else {
4926 ID.Kind = ValID::t_GlobalID;
4927 ID.UIntVal = FunctionNumber;
4928 }
4929
4930 auto Blocks = P.ForwardRefBlockAddresses.find(ID);
4931 if (Blocks == P.ForwardRefBlockAddresses.end())
4932 return false;
4933
4934 for (const auto &I : Blocks->second) {
4935 const ValID &BBID = I.first;
4936 GlobalValue *GV = I.second;
4937
4938 assert((BBID.Kind == ValID::t_LocalID || BBID.Kind == ValID::t_LocalName) &&
4939 "Expected local id or name");
4940 BasicBlock *BB;
4941 if (BBID.Kind == ValID::t_LocalName)
4942 BB = GetBB(BBID.StrVal, BBID.Loc);
4943 else
4944 BB = GetBB(BBID.UIntVal, BBID.Loc);
4945 if (!BB)
4946 return P.Error(BBID.Loc, "referenced value is not a basic block");
4947
4948 GV->replaceAllUsesWith(BlockAddress::get(&F, BB));
4949 GV->eraseFromParent();
4950 }
4951
4952 P.ForwardRefBlockAddresses.erase(Blocks);
4953 return false;
4954}
Chris Lattnerac161bf2009-01-02 07:01:27 +00004955
4956/// ParseFunctionBody
Duncan P. N. Exon Smith0a448fb2014-08-19 21:30:15 +00004957/// ::= '{' BasicBlock+ UseListOrderDirective* '}'
Chris Lattnerac161bf2009-01-02 07:01:27 +00004958bool LLParser::ParseFunctionBody(Function &Fn) {
Chris Lattner4649a732011-06-17 06:42:57 +00004959 if (Lex.getKind() != lltok::lbrace)
Chris Lattnerac161bf2009-01-02 07:01:27 +00004960 return TokError("expected '{' in function body");
4961 Lex.Lex(); // eat the {.
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004962
Chris Lattner3432c622009-10-28 03:39:23 +00004963 int FunctionNumber = -1;
4964 if (!Fn.hasName()) FunctionNumber = NumberedVals.size()-1;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004965
Chris Lattner3432c622009-10-28 03:39:23 +00004966 PerFunctionState PFS(*this, Fn, FunctionNumber);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004967
Duncan P. N. Exon Smith17169902014-08-19 00:13:19 +00004968 // Resolve block addresses and allow basic blocks to be forward-declared
4969 // within this function.
4970 if (PFS.resolveForwardRefBlockAddresses())
4971 return true;
4972 SaveAndRestore<PerFunctionState *> ScopeExit(BlockAddressPFS, &PFS);
4973
Chris Lattnerbbddd962010-01-09 19:20:07 +00004974 // We need at least one basic block.
Duncan P. N. Exon Smith0a448fb2014-08-19 21:30:15 +00004975 if (Lex.getKind() == lltok::rbrace || Lex.getKind() == lltok::kw_uselistorder)
Chris Lattnerbbddd962010-01-09 19:20:07 +00004976 return TokError("function body requires at least one basic block");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004977
Duncan P. N. Exon Smith0a448fb2014-08-19 21:30:15 +00004978 while (Lex.getKind() != lltok::rbrace &&
4979 Lex.getKind() != lltok::kw_uselistorder)
Chris Lattnerac161bf2009-01-02 07:01:27 +00004980 if (ParseBasicBlock(PFS)) return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004981
Duncan P. N. Exon Smith0a448fb2014-08-19 21:30:15 +00004982 while (Lex.getKind() != lltok::rbrace)
4983 if (ParseUseListOrder(&PFS))
4984 return true;
4985
Chris Lattnerac161bf2009-01-02 07:01:27 +00004986 // Eat the }.
4987 Lex.Lex();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004988
Chris Lattnerac161bf2009-01-02 07:01:27 +00004989 // Verify function is ok.
Chris Lattner3432c622009-10-28 03:39:23 +00004990 return PFS.FinishFunction();
Chris Lattnerac161bf2009-01-02 07:01:27 +00004991}
4992
4993/// ParseBasicBlock
4994/// ::= LabelStr? Instruction*
4995bool LLParser::ParseBasicBlock(PerFunctionState &PFS) {
4996 // If this basic block starts out with a name, remember it.
4997 std::string Name;
4998 LocTy NameLoc = Lex.getLoc();
4999 if (Lex.getKind() == lltok::LabelStr) {
5000 Name = Lex.getStrVal();
5001 Lex.Lex();
5002 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005003
Chris Lattnerac161bf2009-01-02 07:01:27 +00005004 BasicBlock *BB = PFS.DefineBB(Name, NameLoc);
Owen Anderson576a9a22015-03-02 05:25:09 +00005005 if (!BB)
5006 return Error(NameLoc,
5007 "unable to create block named '" + Name + "'");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005008
Chris Lattnerac161bf2009-01-02 07:01:27 +00005009 std::string NameStr;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005010
Chris Lattnerac161bf2009-01-02 07:01:27 +00005011 // Parse the instructions in this block until we get a terminator.
5012 Instruction *Inst;
5013 do {
5014 // This instruction may have three possibilities for a name: a) none
5015 // specified, b) name specified "%foo =", c) number specified: "%4 =".
5016 LocTy NameLoc = Lex.getLoc();
5017 int NameID = -1;
5018 NameStr = "";
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005019
Chris Lattnerac161bf2009-01-02 07:01:27 +00005020 if (Lex.getKind() == lltok::LocalVarID) {
5021 NameID = Lex.getUIntVal();
5022 Lex.Lex();
5023 if (ParseToken(lltok::equal, "expected '=' after instruction id"))
5024 return true;
Chris Lattnerdef19492011-06-17 06:36:20 +00005025 } else if (Lex.getKind() == lltok::LocalVar) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00005026 NameStr = Lex.getStrVal();
5027 Lex.Lex();
5028 if (ParseToken(lltok::equal, "expected '=' after instruction name"))
5029 return true;
5030 }
Devang Patelea8a4b92009-09-17 23:04:48 +00005031
Chris Lattner77b89dc2009-12-30 05:23:43 +00005032 switch (ParseInstruction(Inst, BB, PFS)) {
Craig Toppera2886c22012-02-07 05:05:23 +00005033 default: llvm_unreachable("Unknown ParseInstruction result!");
Chris Lattner77b89dc2009-12-30 05:23:43 +00005034 case InstError: return true;
5035 case InstNormal:
Chris Lattner2e664bd2010-04-07 04:08:57 +00005036 BB->getInstList().push_back(Inst);
5037
Chris Lattner77b89dc2009-12-30 05:23:43 +00005038 // With a normal result, we check to see if the instruction is followed by
5039 // a comma and metadata.
5040 if (EatIfPresent(lltok::comma))
Duncan P. N. Exon Smith27d702c2015-04-24 21:29:36 +00005041 if (ParseInstructionMetadata(*Inst))
Chris Lattner77b89dc2009-12-30 05:23:43 +00005042 return true;
5043 break;
5044 case InstExtraComma:
Chris Lattner2e664bd2010-04-07 04:08:57 +00005045 BB->getInstList().push_back(Inst);
5046
Chris Lattner77b89dc2009-12-30 05:23:43 +00005047 // If the instruction parser ate an extra comma at the end of it, it
5048 // *must* be followed by metadata.
Duncan P. N. Exon Smith27d702c2015-04-24 21:29:36 +00005049 if (ParseInstructionMetadata(*Inst))
Chris Lattner77b89dc2009-12-30 05:23:43 +00005050 return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00005051 break;
Chris Lattner77b89dc2009-12-30 05:23:43 +00005052 }
Devang Patelea8a4b92009-09-17 23:04:48 +00005053
Chris Lattnerac161bf2009-01-02 07:01:27 +00005054 // Set the name on the instruction.
5055 if (PFS.SetInstName(NameID, NameStr, NameLoc, Inst)) return true;
5056 } while (!isa<TerminatorInst>(Inst));
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005057
Chris Lattnerac161bf2009-01-02 07:01:27 +00005058 return false;
5059}
5060
5061//===----------------------------------------------------------------------===//
5062// Instruction Parsing.
5063//===----------------------------------------------------------------------===//
5064
5065/// ParseInstruction - Parse one of the many different instructions.
5066///
Chris Lattner77b89dc2009-12-30 05:23:43 +00005067int LLParser::ParseInstruction(Instruction *&Inst, BasicBlock *BB,
5068 PerFunctionState &PFS) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00005069 lltok::Kind Token = Lex.getKind();
5070 if (Token == lltok::Eof)
5071 return TokError("found end of file when expecting more instructions");
5072 LocTy Loc = Lex.getLoc();
Chris Lattner89d856e2009-03-01 00:53:13 +00005073 unsigned KeywordVal = Lex.getUIntVal();
Chris Lattnerac161bf2009-01-02 07:01:27 +00005074 Lex.Lex(); // Eat the keyword.
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005075
Chris Lattnerac161bf2009-01-02 07:01:27 +00005076 switch (Token) {
5077 default: return Error(Loc, "expected instruction opcode");
5078 // Terminator Instructions.
Owen Anderson55f1c092009-08-13 21:58:54 +00005079 case lltok::kw_unreachable: Inst = new UnreachableInst(Context); return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005080 case lltok::kw_ret: return ParseRet(Inst, BB, PFS);
5081 case lltok::kw_br: return ParseBr(Inst, PFS);
5082 case lltok::kw_switch: return ParseSwitch(Inst, PFS);
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00005083 case lltok::kw_indirectbr: return ParseIndirectBr(Inst, PFS);
Chris Lattnerac161bf2009-01-02 07:01:27 +00005084 case lltok::kw_invoke: return ParseInvoke(Inst, PFS);
Bill Wendlingf891bf82011-07-31 06:30:59 +00005085 case lltok::kw_resume: return ParseResume(Inst, PFS);
David Majnemer654e1302015-07-31 17:58:14 +00005086 case lltok::kw_cleanupret: return ParseCleanupRet(Inst, PFS);
5087 case lltok::kw_catchret: return ParseCatchRet(Inst, PFS);
David Majnemer8a1c45d2015-12-12 05:38:55 +00005088 case lltok::kw_catchswitch: return ParseCatchSwitch(Inst, PFS);
5089 case lltok::kw_catchpad: return ParseCatchPad(Inst, PFS);
David Majnemer8a1c45d2015-12-12 05:38:55 +00005090 case lltok::kw_cleanuppad: return ParseCleanupPad(Inst, PFS);
Chris Lattnerac161bf2009-01-02 07:01:27 +00005091 // Binary Operators.
5092 case lltok::kw_add:
5093 case lltok::kw_sub:
Chris Lattnera676c0f2011-02-07 16:40:21 +00005094 case lltok::kw_mul:
5095 case lltok::kw_shl: {
Chris Lattnera676c0f2011-02-07 16:40:21 +00005096 bool NUW = EatIfPresent(lltok::kw_nuw);
5097 bool NSW = EatIfPresent(lltok::kw_nsw);
5098 if (!NUW) NUW = EatIfPresent(lltok::kw_nuw);
Michael Ilseman26ee2b82012-11-15 22:34:00 +00005099
Chris Lattnera676c0f2011-02-07 16:40:21 +00005100 if (ParseArithmetic(Inst, PFS, KeywordVal, 1)) return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00005101
Chris Lattnera676c0f2011-02-07 16:40:21 +00005102 if (NUW) cast<BinaryOperator>(Inst)->setHasNoUnsignedWrap(true);
5103 if (NSW) cast<BinaryOperator>(Inst)->setHasNoSignedWrap(true);
5104 return false;
Dan Gohman9c7f8082009-07-27 16:11:46 +00005105 }
Dan Gohmana5b96452009-06-04 22:49:04 +00005106 case lltok::kw_fadd:
5107 case lltok::kw_fsub:
Michael Ilseman92053172012-11-27 00:42:44 +00005108 case lltok::kw_fmul:
5109 case lltok::kw_fdiv:
5110 case lltok::kw_frem: {
5111 FastMathFlags FMF = EatFastMathFlagsIfPresent();
5112 int Res = ParseArithmetic(Inst, PFS, KeywordVal, 2);
5113 if (Res != 0)
5114 return Res;
5115 if (FMF.any())
5116 Inst->setFastMathFlags(FMF);
5117 return 0;
5118 }
Dan Gohmana5b96452009-06-04 22:49:04 +00005119
Chris Lattner35315d02011-02-06 21:44:57 +00005120 case lltok::kw_sdiv:
Chris Lattnera676c0f2011-02-07 16:40:21 +00005121 case lltok::kw_udiv:
5122 case lltok::kw_lshr:
5123 case lltok::kw_ashr: {
5124 bool Exact = EatIfPresent(lltok::kw_exact);
5125
5126 if (ParseArithmetic(Inst, PFS, KeywordVal, 1)) return true;
5127 if (Exact) cast<BinaryOperator>(Inst)->setIsExact(true);
5128 return false;
Dan Gohman9c7f8082009-07-27 16:11:46 +00005129 }
5130
Chris Lattnerac161bf2009-01-02 07:01:27 +00005131 case lltok::kw_urem:
Chris Lattner89d856e2009-03-01 00:53:13 +00005132 case lltok::kw_srem: return ParseArithmetic(Inst, PFS, KeywordVal, 1);
Chris Lattnerac161bf2009-01-02 07:01:27 +00005133 case lltok::kw_and:
5134 case lltok::kw_or:
Chris Lattner89d856e2009-03-01 00:53:13 +00005135 case lltok::kw_xor: return ParseLogical(Inst, PFS, KeywordVal);
James Molloy88eb5352015-07-10 12:52:00 +00005136 case lltok::kw_icmp: return ParseCompare(Inst, PFS, KeywordVal);
5137 case lltok::kw_fcmp: {
5138 FastMathFlags FMF = EatFastMathFlagsIfPresent();
5139 int Res = ParseCompare(Inst, PFS, KeywordVal);
5140 if (Res != 0)
5141 return Res;
5142 if (FMF.any())
5143 Inst->setFastMathFlags(FMF);
5144 return 0;
5145 }
5146
Chris Lattnerac161bf2009-01-02 07:01:27 +00005147 // Casts.
5148 case lltok::kw_trunc:
5149 case lltok::kw_zext:
5150 case lltok::kw_sext:
5151 case lltok::kw_fptrunc:
5152 case lltok::kw_fpext:
5153 case lltok::kw_bitcast:
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00005154 case lltok::kw_addrspacecast:
Chris Lattnerac161bf2009-01-02 07:01:27 +00005155 case lltok::kw_uitofp:
5156 case lltok::kw_sitofp:
5157 case lltok::kw_fptoui:
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005158 case lltok::kw_fptosi:
Chris Lattnerac161bf2009-01-02 07:01:27 +00005159 case lltok::kw_inttoptr:
Chris Lattner89d856e2009-03-01 00:53:13 +00005160 case lltok::kw_ptrtoint: return ParseCast(Inst, PFS, KeywordVal);
Chris Lattnerac161bf2009-01-02 07:01:27 +00005161 // Other.
5162 case lltok::kw_select: return ParseSelect(Inst, PFS);
Chris Lattnerb55ab542009-01-05 08:18:44 +00005163 case lltok::kw_va_arg: return ParseVA_Arg(Inst, PFS);
Chris Lattnerac161bf2009-01-02 07:01:27 +00005164 case lltok::kw_extractelement: return ParseExtractElement(Inst, PFS);
5165 case lltok::kw_insertelement: return ParseInsertElement(Inst, PFS);
5166 case lltok::kw_shufflevector: return ParseShuffleVector(Inst, PFS);
5167 case lltok::kw_phi: return ParsePHI(Inst, PFS);
Bill Wendlingfae14752011-08-12 20:24:12 +00005168 case lltok::kw_landingpad: return ParseLandingPad(Inst, PFS);
Reid Kleckner5772b772014-04-24 20:14:34 +00005169 // Call.
5170 case lltok::kw_call: return ParseCall(Inst, PFS, CallInst::TCK_None);
5171 case lltok::kw_tail: return ParseCall(Inst, PFS, CallInst::TCK_Tail);
5172 case lltok::kw_musttail: return ParseCall(Inst, PFS, CallInst::TCK_MustTail);
Akira Hatanaka5cfcce122015-11-06 23:55:38 +00005173 case lltok::kw_notail: return ParseCall(Inst, PFS, CallInst::TCK_NoTail);
Chris Lattnerac161bf2009-01-02 07:01:27 +00005174 // Memory.
Victor Hernandezc7d6a832009-10-17 00:00:19 +00005175 case lltok::kw_alloca: return ParseAlloc(Inst, PFS);
Chris Lattnerbc639292011-11-27 06:56:53 +00005176 case lltok::kw_load: return ParseLoad(Inst, PFS);
5177 case lltok::kw_store: return ParseStore(Inst, PFS);
Eli Friedman02e737b2011-08-12 22:50:01 +00005178 case lltok::kw_cmpxchg: return ParseCmpXchg(Inst, PFS);
5179 case lltok::kw_atomicrmw: return ParseAtomicRMW(Inst, PFS);
Eli Friedmanfee02c62011-07-25 23:16:38 +00005180 case lltok::kw_fence: return ParseFence(Inst, PFS);
Chris Lattnerac161bf2009-01-02 07:01:27 +00005181 case lltok::kw_getelementptr: return ParseGetElementPtr(Inst, PFS);
5182 case lltok::kw_extractvalue: return ParseExtractValue(Inst, PFS);
5183 case lltok::kw_insertvalue: return ParseInsertValue(Inst, PFS);
5184 }
5185}
5186
5187/// ParseCmpPredicate - Parse an integer or fp predicate, based on Kind.
5188bool LLParser::ParseCmpPredicate(unsigned &P, unsigned Opc) {
Nick Lewyckya21d3da2009-07-08 03:04:38 +00005189 if (Opc == Instruction::FCmp) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00005190 switch (Lex.getKind()) {
David Tweeda11edf02013-01-07 13:32:38 +00005191 default: return TokError("expected fcmp predicate (e.g. 'oeq')");
Chris Lattnerac161bf2009-01-02 07:01:27 +00005192 case lltok::kw_oeq: P = CmpInst::FCMP_OEQ; break;
5193 case lltok::kw_one: P = CmpInst::FCMP_ONE; break;
5194 case lltok::kw_olt: P = CmpInst::FCMP_OLT; break;
5195 case lltok::kw_ogt: P = CmpInst::FCMP_OGT; break;
5196 case lltok::kw_ole: P = CmpInst::FCMP_OLE; break;
5197 case lltok::kw_oge: P = CmpInst::FCMP_OGE; break;
5198 case lltok::kw_ord: P = CmpInst::FCMP_ORD; break;
5199 case lltok::kw_uno: P = CmpInst::FCMP_UNO; break;
5200 case lltok::kw_ueq: P = CmpInst::FCMP_UEQ; break;
5201 case lltok::kw_une: P = CmpInst::FCMP_UNE; break;
5202 case lltok::kw_ult: P = CmpInst::FCMP_ULT; break;
5203 case lltok::kw_ugt: P = CmpInst::FCMP_UGT; break;
5204 case lltok::kw_ule: P = CmpInst::FCMP_ULE; break;
5205 case lltok::kw_uge: P = CmpInst::FCMP_UGE; break;
5206 case lltok::kw_true: P = CmpInst::FCMP_TRUE; break;
5207 case lltok::kw_false: P = CmpInst::FCMP_FALSE; break;
5208 }
5209 } else {
5210 switch (Lex.getKind()) {
David Tweeda11edf02013-01-07 13:32:38 +00005211 default: return TokError("expected icmp predicate (e.g. 'eq')");
Chris Lattnerac161bf2009-01-02 07:01:27 +00005212 case lltok::kw_eq: P = CmpInst::ICMP_EQ; break;
5213 case lltok::kw_ne: P = CmpInst::ICMP_NE; break;
5214 case lltok::kw_slt: P = CmpInst::ICMP_SLT; break;
5215 case lltok::kw_sgt: P = CmpInst::ICMP_SGT; break;
5216 case lltok::kw_sle: P = CmpInst::ICMP_SLE; break;
5217 case lltok::kw_sge: P = CmpInst::ICMP_SGE; break;
5218 case lltok::kw_ult: P = CmpInst::ICMP_ULT; break;
5219 case lltok::kw_ugt: P = CmpInst::ICMP_UGT; break;
5220 case lltok::kw_ule: P = CmpInst::ICMP_ULE; break;
5221 case lltok::kw_uge: P = CmpInst::ICMP_UGE; break;
5222 }
5223 }
5224 Lex.Lex();
5225 return false;
5226}
5227
5228//===----------------------------------------------------------------------===//
5229// Terminator Instructions.
5230//===----------------------------------------------------------------------===//
5231
5232/// ParseRet - Parse a return instruction.
Chris Lattner596760d2009-12-29 21:25:40 +00005233/// ::= 'ret' void (',' !dbg, !1)*
5234/// ::= 'ret' TypeAndValue (',' !dbg, !1)*
Chris Lattner33de4272011-06-17 06:49:41 +00005235bool LLParser::ParseRet(Instruction *&Inst, BasicBlock *BB,
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00005236 PerFunctionState &PFS) {
5237 SMLoc TypeLoc = Lex.getLoc();
Craig Topper2617dcc2014-04-15 06:32:26 +00005238 Type *Ty = nullptr;
Chris Lattnerf880ca22009-03-09 04:49:14 +00005239 if (ParseType(Ty, true /*void allowed*/)) return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005240
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00005241 Type *ResType = PFS.getFunction().getReturnType();
Michael Ilseman26ee2b82012-11-15 22:34:00 +00005242
Chris Lattnerfdd87902009-10-05 05:54:46 +00005243 if (Ty->isVoidTy()) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00005244 if (!ResType->isVoidTy())
5245 return Error(TypeLoc, "value doesn't match function result type '" +
5246 getTypeString(ResType) + "'");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00005247
Owen Anderson55f1c092009-08-13 21:58:54 +00005248 Inst = ReturnInst::Create(Context);
Chris Lattnerac161bf2009-01-02 07:01:27 +00005249 return false;
5250 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005251
Chris Lattnerac161bf2009-01-02 07:01:27 +00005252 Value *RV;
5253 if (ParseValue(Ty, RV, PFS)) return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005254
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00005255 if (ResType != RV->getType())
5256 return Error(TypeLoc, "value doesn't match function result type '" +
5257 getTypeString(ResType) + "'");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00005258
Owen Anderson55f1c092009-08-13 21:58:54 +00005259 Inst = ReturnInst::Create(Context, RV);
Chris Lattner33de4272011-06-17 06:49:41 +00005260 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005261}
5262
Chris Lattnerac161bf2009-01-02 07:01:27 +00005263/// ParseBr
5264/// ::= 'br' TypeAndValue
5265/// ::= 'br' TypeAndValue ',' TypeAndValue ',' TypeAndValue
5266bool LLParser::ParseBr(Instruction *&Inst, PerFunctionState &PFS) {
5267 LocTy Loc, Loc2;
Chris Lattner3ed871f2009-10-27 19:13:16 +00005268 Value *Op0;
5269 BasicBlock *Op1, *Op2;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005270 if (ParseTypeAndValue(Op0, Loc, PFS)) return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005271
Chris Lattnerac161bf2009-01-02 07:01:27 +00005272 if (BasicBlock *BB = dyn_cast<BasicBlock>(Op0)) {
5273 Inst = BranchInst::Create(BB);
5274 return false;
5275 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005276
Owen Anderson55f1c092009-08-13 21:58:54 +00005277 if (Op0->getType() != Type::getInt1Ty(Context))
Chris Lattnerac161bf2009-01-02 07:01:27 +00005278 return Error(Loc, "branch condition must have 'i1' type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005279
Chris Lattnerac161bf2009-01-02 07:01:27 +00005280 if (ParseToken(lltok::comma, "expected ',' after branch condition") ||
Chris Lattner3ed871f2009-10-27 19:13:16 +00005281 ParseTypeAndBasicBlock(Op1, Loc, PFS) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00005282 ParseToken(lltok::comma, "expected ',' after true destination") ||
Chris Lattner3ed871f2009-10-27 19:13:16 +00005283 ParseTypeAndBasicBlock(Op2, Loc2, PFS))
Chris Lattnerac161bf2009-01-02 07:01:27 +00005284 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005285
Chris Lattner3ed871f2009-10-27 19:13:16 +00005286 Inst = BranchInst::Create(Op1, Op2, Op0);
Chris Lattnerac161bf2009-01-02 07:01:27 +00005287 return false;
5288}
5289
5290/// ParseSwitch
5291/// Instruction
5292/// ::= 'switch' TypeAndValue ',' TypeAndValue '[' JumpTable ']'
5293/// JumpTable
5294/// ::= (TypeAndValue ',' TypeAndValue)*
5295bool LLParser::ParseSwitch(Instruction *&Inst, PerFunctionState &PFS) {
5296 LocTy CondLoc, BBLoc;
Chris Lattner3ed871f2009-10-27 19:13:16 +00005297 Value *Cond;
5298 BasicBlock *DefaultBB;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005299 if (ParseTypeAndValue(Cond, CondLoc, PFS) ||
5300 ParseToken(lltok::comma, "expected ',' after switch condition") ||
Chris Lattner3ed871f2009-10-27 19:13:16 +00005301 ParseTypeAndBasicBlock(DefaultBB, BBLoc, PFS) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00005302 ParseToken(lltok::lsquare, "expected '[' with switch table"))
5303 return true;
5304
Duncan Sands19d0b472010-02-16 11:11:14 +00005305 if (!Cond->getType()->isIntegerTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00005306 return Error(CondLoc, "switch condition must have integer type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005307
Chris Lattnerac161bf2009-01-02 07:01:27 +00005308 // Parse the jump table pairs.
5309 SmallPtrSet<Value*, 32> SeenCases;
5310 SmallVector<std::pair<ConstantInt*, BasicBlock*>, 32> Table;
5311 while (Lex.getKind() != lltok::rsquare) {
Chris Lattner3ed871f2009-10-27 19:13:16 +00005312 Value *Constant;
5313 BasicBlock *DestBB;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005314
Chris Lattnerac161bf2009-01-02 07:01:27 +00005315 if (ParseTypeAndValue(Constant, CondLoc, PFS) ||
5316 ParseToken(lltok::comma, "expected ',' after case value") ||
Chris Lattner3ed871f2009-10-27 19:13:16 +00005317 ParseTypeAndBasicBlock(DestBB, PFS))
Chris Lattnerac161bf2009-01-02 07:01:27 +00005318 return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00005319
David Blaikie70573dc2014-11-19 07:49:26 +00005320 if (!SeenCases.insert(Constant).second)
Chris Lattnerac161bf2009-01-02 07:01:27 +00005321 return Error(CondLoc, "duplicate case value in switch");
5322 if (!isa<ConstantInt>(Constant))
5323 return Error(CondLoc, "case value is not a constant integer");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005324
Chris Lattner3ed871f2009-10-27 19:13:16 +00005325 Table.push_back(std::make_pair(cast<ConstantInt>(Constant), DestBB));
Chris Lattnerac161bf2009-01-02 07:01:27 +00005326 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005327
Chris Lattnerac161bf2009-01-02 07:01:27 +00005328 Lex.Lex(); // Eat the ']'.
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005329
Chris Lattner3ed871f2009-10-27 19:13:16 +00005330 SwitchInst *SI = SwitchInst::Create(Cond, DefaultBB, Table.size());
Chris Lattnerac161bf2009-01-02 07:01:27 +00005331 for (unsigned i = 0, e = Table.size(); i != e; ++i)
5332 SI->addCase(Table[i].first, Table[i].second);
5333 Inst = SI;
5334 return false;
5335}
5336
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00005337/// ParseIndirectBr
Chris Lattner3ed871f2009-10-27 19:13:16 +00005338/// Instruction
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00005339/// ::= 'indirectbr' TypeAndValue ',' '[' LabelList ']'
5340bool LLParser::ParseIndirectBr(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattner3ed871f2009-10-27 19:13:16 +00005341 LocTy AddrLoc;
5342 Value *Address;
5343 if (ParseTypeAndValue(Address, AddrLoc, PFS) ||
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00005344 ParseToken(lltok::comma, "expected ',' after indirectbr address") ||
5345 ParseToken(lltok::lsquare, "expected '[' with indirectbr"))
Chris Lattner3ed871f2009-10-27 19:13:16 +00005346 return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00005347
Duncan Sands19d0b472010-02-16 11:11:14 +00005348 if (!Address->getType()->isPointerTy())
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00005349 return Error(AddrLoc, "indirectbr address must have pointer type");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00005350
Chris Lattner3ed871f2009-10-27 19:13:16 +00005351 // Parse the destination list.
5352 SmallVector<BasicBlock*, 16> DestList;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00005353
Chris Lattner3ed871f2009-10-27 19:13:16 +00005354 if (Lex.getKind() != lltok::rsquare) {
5355 BasicBlock *DestBB;
5356 if (ParseTypeAndBasicBlock(DestBB, PFS))
5357 return true;
5358 DestList.push_back(DestBB);
Michael Ilseman26ee2b82012-11-15 22:34:00 +00005359
Chris Lattner3ed871f2009-10-27 19:13:16 +00005360 while (EatIfPresent(lltok::comma)) {
5361 if (ParseTypeAndBasicBlock(DestBB, PFS))
5362 return true;
5363 DestList.push_back(DestBB);
5364 }
5365 }
Michael Ilseman26ee2b82012-11-15 22:34:00 +00005366
Chris Lattner3ed871f2009-10-27 19:13:16 +00005367 if (ParseToken(lltok::rsquare, "expected ']' at end of block list"))
5368 return true;
5369
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00005370 IndirectBrInst *IBI = IndirectBrInst::Create(Address, DestList.size());
Chris Lattner3ed871f2009-10-27 19:13:16 +00005371 for (unsigned i = 0, e = DestList.size(); i != e; ++i)
5372 IBI->addDestination(DestList[i]);
5373 Inst = IBI;
5374 return false;
5375}
5376
Chris Lattnerac161bf2009-01-02 07:01:27 +00005377/// ParseInvoke
5378/// ::= 'invoke' OptionalCallingConv OptionalAttrs Type Value ParamList
5379/// OptionalAttrs 'to' TypeAndValue 'unwind' TypeAndValue
5380bool LLParser::ParseInvoke(Instruction *&Inst, PerFunctionState &PFS) {
5381 LocTy CallLoc = Lex.getLoc();
Bill Wendling50d27842012-10-15 20:35:56 +00005382 AttrBuilder RetAttrs, FnAttrs;
Bill Wendlingb32b0412013-02-08 06:32:06 +00005383 std::vector<unsigned> FwdRefAttrGrps;
Bill Wendling09bd1f72013-02-22 00:12:35 +00005384 LocTy NoBuiltinLoc;
Alexey Samsonov17a9cff2014-09-10 18:00:17 +00005385 unsigned CC;
Craig Topper2617dcc2014-04-15 06:32:26 +00005386 Type *RetType = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005387 LocTy RetTypeLoc;
5388 ValID CalleeID;
5389 SmallVector<ParamInfo, 16> ArgList;
Sanjoy Dasb513a9f2015-09-24 23:34:52 +00005390 SmallVector<OperandBundleDef, 2> BundleList;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005391
Chris Lattner3ed871f2009-10-27 19:13:16 +00005392 BasicBlock *NormalBB, *UnwindBB;
Sanjoy Dasb513a9f2015-09-24 23:34:52 +00005393 if (ParseOptionalCallingConv(CC) || ParseOptionalReturnAttrs(RetAttrs) ||
Chris Lattnerf880ca22009-03-09 04:49:14 +00005394 ParseType(RetType, RetTypeLoc, true /*void allowed*/) ||
Sanjoy Dasb513a9f2015-09-24 23:34:52 +00005395 ParseValID(CalleeID) || ParseParameterList(ArgList, PFS) ||
Bill Wendling09bd1f72013-02-22 00:12:35 +00005396 ParseFnAttributeValuePairs(FnAttrs, FwdRefAttrGrps, false,
5397 NoBuiltinLoc) ||
Sanjoy Dasb513a9f2015-09-24 23:34:52 +00005398 ParseOptionalOperandBundles(BundleList, PFS) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00005399 ParseToken(lltok::kw_to, "expected 'to' in invoke") ||
Chris Lattner3ed871f2009-10-27 19:13:16 +00005400 ParseTypeAndBasicBlock(NormalBB, PFS) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00005401 ParseToken(lltok::kw_unwind, "expected 'unwind' in invoke") ||
Chris Lattner3ed871f2009-10-27 19:13:16 +00005402 ParseTypeAndBasicBlock(UnwindBB, PFS))
Chris Lattnerac161bf2009-01-02 07:01:27 +00005403 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005404
Chris Lattnerac161bf2009-01-02 07:01:27 +00005405 // If RetType is a non-function pointer type, then this is the short syntax
5406 // for the call, which means that RetType is just the return type. Infer the
5407 // rest of the function argument types from the arguments that are present.
David Blaikie445e3fb2015-04-24 19:32:54 +00005408 FunctionType *Ty = dyn_cast<FunctionType>(RetType);
5409 if (!Ty) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00005410 // Pull out the types of all of the arguments...
Jay Foadb804a2b2011-07-12 14:06:48 +00005411 std::vector<Type*> ParamTypes;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005412 for (unsigned i = 0, e = ArgList.size(); i != e; ++i)
5413 ParamTypes.push_back(ArgList[i].V->getType());
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005414
Chris Lattnerac161bf2009-01-02 07:01:27 +00005415 if (!FunctionType::isValidReturnType(RetType))
5416 return Error(RetTypeLoc, "Invalid result type for LLVM function");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005417
Owen Anderson4056ca92009-07-29 22:17:13 +00005418 Ty = FunctionType::get(RetType, ParamTypes, false);
Chris Lattnerac161bf2009-01-02 07:01:27 +00005419 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005420
David Blaikie41ba2b42015-07-27 23:32:19 +00005421 CalleeID.FTy = Ty;
5422
Chris Lattnerac161bf2009-01-02 07:01:27 +00005423 // Look up the callee.
5424 Value *Callee;
David Blaikie445e3fb2015-04-24 19:32:54 +00005425 if (ConvertValIDToValue(PointerType::getUnqual(Ty), CalleeID, Callee, &PFS))
5426 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005427
Bill Wendling3d7b0b82012-12-19 07:18:57 +00005428 // Set up the Attribute for the function.
Reid Kleckner7f720332017-04-13 00:58:09 +00005429 SmallVector<Value *, 8> Args;
5430 SmallVector<AttributeSet, 8> ArgAttrs;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005431
Chris Lattnerac161bf2009-01-02 07:01:27 +00005432 // Loop through FunctionType's arguments and ensure they are specified
5433 // correctly. Also, gather any parameter attributes.
5434 FunctionType::param_iterator I = Ty->param_begin();
5435 FunctionType::param_iterator E = Ty->param_end();
5436 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
Craig Topper2617dcc2014-04-15 06:32:26 +00005437 Type *ExpectedTy = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005438 if (I != E) {
5439 ExpectedTy = *I++;
5440 } else if (!Ty->isVarArg()) {
5441 return Error(ArgList[i].Loc, "too many arguments specified");
5442 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005443
Chris Lattnerac161bf2009-01-02 07:01:27 +00005444 if (ExpectedTy && ExpectedTy != ArgList[i].V->getType())
5445 return Error(ArgList[i].Loc, "argument is not of expected type '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00005446 getTypeString(ExpectedTy) + "'");
Chris Lattnerac161bf2009-01-02 07:01:27 +00005447 Args.push_back(ArgList[i].V);
Reid Kleckner7f720332017-04-13 00:58:09 +00005448 ArgAttrs.push_back(ArgList[i].Attrs);
Chris Lattnerac161bf2009-01-02 07:01:27 +00005449 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005450
Chris Lattnerac161bf2009-01-02 07:01:27 +00005451 if (I != E)
5452 return Error(CallLoc, "not enough parameters specified for call");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005453
Reid Klecknereb9dd5b2017-04-10 23:31:05 +00005454 if (FnAttrs.hasAlignmentAttr())
5455 return Error(CallLoc, "invoke instructions may not have an alignment");
David Majnemer8d22abd2015-02-23 00:01:32 +00005456
Bill Wendling3d7b0b82012-12-19 07:18:57 +00005457 // Finish off the Attribute and check them
Reid Kleckner7f720332017-04-13 00:58:09 +00005458 AttributeList PAL =
5459 AttributeList::get(Context, AttributeSet::get(Context, FnAttrs),
5460 AttributeSet::get(Context, RetAttrs), ArgAttrs);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005461
Sanjoy Dasb513a9f2015-09-24 23:34:52 +00005462 InvokeInst *II =
5463 InvokeInst::Create(Ty, Callee, NormalBB, UnwindBB, Args, BundleList);
Chris Lattnerac161bf2009-01-02 07:01:27 +00005464 II->setCallingConv(CC);
5465 II->setAttributes(PAL);
Bill Wendlingb32b0412013-02-08 06:32:06 +00005466 ForwardRefAttrGroups[II] = FwdRefAttrGrps;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005467 Inst = II;
5468 return false;
5469}
5470
Bill Wendlingf891bf82011-07-31 06:30:59 +00005471/// ParseResume
5472/// ::= 'resume' TypeAndValue
5473bool LLParser::ParseResume(Instruction *&Inst, PerFunctionState &PFS) {
5474 Value *Exn; LocTy ExnLoc;
Bill Wendlingf891bf82011-07-31 06:30:59 +00005475 if (ParseTypeAndValue(Exn, ExnLoc, PFS))
5476 return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005477
Bill Wendlingf891bf82011-07-31 06:30:59 +00005478 ResumeInst *RI = ResumeInst::Create(Exn);
5479 Inst = RI;
5480 return false;
5481}
Chris Lattnerac161bf2009-01-02 07:01:27 +00005482
David Majnemer654e1302015-07-31 17:58:14 +00005483bool LLParser::ParseExceptionArgs(SmallVectorImpl<Value *> &Args,
5484 PerFunctionState &PFS) {
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00005485 if (ParseToken(lltok::lsquare, "expected '[' in catchpad/cleanuppad"))
David Majnemer654e1302015-07-31 17:58:14 +00005486 return true;
5487
5488 while (Lex.getKind() != lltok::rsquare) {
5489 // If this isn't the first argument, we need a comma.
5490 if (!Args.empty() &&
5491 ParseToken(lltok::comma, "expected ',' in argument list"))
5492 return true;
5493
5494 // Parse the argument.
5495 LocTy ArgLoc;
5496 Type *ArgTy = nullptr;
5497 if (ParseType(ArgTy, ArgLoc))
5498 return true;
5499
5500 Value *V;
5501 if (ArgTy->isMetadataTy()) {
5502 if (ParseMetadataAsValue(V, PFS))
5503 return true;
5504 } else {
5505 if (ParseValue(ArgTy, V, PFS))
5506 return true;
5507 }
5508 Args.push_back(V);
5509 }
5510
5511 Lex.Lex(); // Lex the ']'.
5512 return false;
5513}
5514
5515/// ParseCleanupRet
David Majnemer8a1c45d2015-12-12 05:38:55 +00005516/// ::= 'cleanupret' from Value unwind ('to' 'caller' | TypeAndValue)
David Majnemer654e1302015-07-31 17:58:14 +00005517bool LLParser::ParseCleanupRet(Instruction *&Inst, PerFunctionState &PFS) {
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00005518 Value *CleanupPad = nullptr;
David Majnemer654e1302015-07-31 17:58:14 +00005519
David Majnemer8a1c45d2015-12-12 05:38:55 +00005520 if (ParseToken(lltok::kw_from, "expected 'from' after cleanupret"))
5521 return true;
5522
5523 if (ParseValue(Type::getTokenTy(Context), CleanupPad, PFS))
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00005524 return true;
David Majnemer654e1302015-07-31 17:58:14 +00005525
5526 if (ParseToken(lltok::kw_unwind, "expected 'unwind' in cleanupret"))
5527 return true;
5528
5529 BasicBlock *UnwindBB = nullptr;
5530 if (Lex.getKind() == lltok::kw_to) {
5531 Lex.Lex();
5532 if (ParseToken(lltok::kw_caller, "expected 'caller' in cleanupret"))
5533 return true;
5534 } else {
5535 if (ParseTypeAndBasicBlock(UnwindBB, PFS)) {
5536 return true;
5537 }
5538 }
5539
David Majnemer8a1c45d2015-12-12 05:38:55 +00005540 Inst = CleanupReturnInst::Create(CleanupPad, UnwindBB);
David Majnemer654e1302015-07-31 17:58:14 +00005541 return false;
5542}
5543
5544/// ParseCatchRet
David Majnemer8a1c45d2015-12-12 05:38:55 +00005545/// ::= 'catchret' from Parent Value 'to' TypeAndValue
David Majnemer654e1302015-07-31 17:58:14 +00005546bool LLParser::ParseCatchRet(Instruction *&Inst, PerFunctionState &PFS) {
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00005547 Value *CatchPad = nullptr;
David Majnemer0bc0eef2015-08-15 02:46:08 +00005548
David Majnemer8a1c45d2015-12-12 05:38:55 +00005549 if (ParseToken(lltok::kw_from, "expected 'from' after catchret"))
5550 return true;
5551
5552 if (ParseValue(Type::getTokenTy(Context), CatchPad, PFS))
David Majnemer0bc0eef2015-08-15 02:46:08 +00005553 return true;
5554
David Majnemer0bc0eef2015-08-15 02:46:08 +00005555 BasicBlock *BB;
5556 if (ParseToken(lltok::kw_to, "expected 'to' in catchret") ||
5557 ParseTypeAndBasicBlock(BB, PFS))
5558 return true;
5559
David Majnemer8a1c45d2015-12-12 05:38:55 +00005560 Inst = CatchReturnInst::Create(CatchPad, BB);
5561 return false;
5562}
5563
5564/// ParseCatchSwitch
5565/// ::= 'catchswitch' within Parent
5566bool LLParser::ParseCatchSwitch(Instruction *&Inst, PerFunctionState &PFS) {
5567 Value *ParentPad;
5568 LocTy BBLoc;
5569
5570 if (ParseToken(lltok::kw_within, "expected 'within' after catchswitch"))
5571 return true;
5572
5573 if (Lex.getKind() != lltok::kw_none && Lex.getKind() != lltok::LocalVar &&
5574 Lex.getKind() != lltok::LocalVarID)
5575 return TokError("expected scope value for catchswitch");
5576
5577 if (ParseValue(Type::getTokenTy(Context), ParentPad, PFS))
5578 return true;
5579
5580 if (ParseToken(lltok::lsquare, "expected '[' with catchswitch labels"))
5581 return true;
5582
5583 SmallVector<BasicBlock *, 32> Table;
5584 do {
5585 BasicBlock *DestBB;
5586 if (ParseTypeAndBasicBlock(DestBB, PFS))
5587 return true;
5588 Table.push_back(DestBB);
5589 } while (EatIfPresent(lltok::comma));
5590
5591 if (ParseToken(lltok::rsquare, "expected ']' after catchswitch labels"))
5592 return true;
5593
5594 if (ParseToken(lltok::kw_unwind,
5595 "expected 'unwind' after catchswitch scope"))
5596 return true;
5597
5598 BasicBlock *UnwindBB = nullptr;
5599 if (EatIfPresent(lltok::kw_to)) {
5600 if (ParseToken(lltok::kw_caller, "expected 'caller' in catchswitch"))
5601 return true;
5602 } else {
5603 if (ParseTypeAndBasicBlock(UnwindBB, PFS))
5604 return true;
5605 }
5606
5607 auto *CatchSwitch =
5608 CatchSwitchInst::Create(ParentPad, UnwindBB, Table.size());
5609 for (BasicBlock *DestBB : Table)
5610 CatchSwitch->addHandler(DestBB);
5611 Inst = CatchSwitch;
David Majnemer654e1302015-07-31 17:58:14 +00005612 return false;
5613}
5614
5615/// ParseCatchPad
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00005616/// ::= 'catchpad' ParamList 'to' TypeAndValue 'unwind' TypeAndValue
David Majnemer654e1302015-07-31 17:58:14 +00005617bool LLParser::ParseCatchPad(Instruction *&Inst, PerFunctionState &PFS) {
David Majnemer8a1c45d2015-12-12 05:38:55 +00005618 Value *CatchSwitch = nullptr;
5619
5620 if (ParseToken(lltok::kw_within, "expected 'within' after catchpad"))
5621 return true;
5622
5623 if (Lex.getKind() != lltok::LocalVar && Lex.getKind() != lltok::LocalVarID)
5624 return TokError("expected scope value for catchpad");
5625
5626 if (ParseValue(Type::getTokenTy(Context), CatchSwitch, PFS))
5627 return true;
5628
David Majnemer654e1302015-07-31 17:58:14 +00005629 SmallVector<Value *, 8> Args;
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00005630 if (ParseExceptionArgs(Args, PFS))
David Majnemer654e1302015-07-31 17:58:14 +00005631 return true;
5632
David Majnemer8a1c45d2015-12-12 05:38:55 +00005633 Inst = CatchPadInst::Create(CatchSwitch, Args);
David Majnemer654e1302015-07-31 17:58:14 +00005634 return false;
5635}
5636
David Majnemer654e1302015-07-31 17:58:14 +00005637/// ParseCleanupPad
David Majnemer8a1c45d2015-12-12 05:38:55 +00005638/// ::= 'cleanuppad' within Parent ParamList
David Majnemer654e1302015-07-31 17:58:14 +00005639bool LLParser::ParseCleanupPad(Instruction *&Inst, PerFunctionState &PFS) {
David Majnemer8a1c45d2015-12-12 05:38:55 +00005640 Value *ParentPad = nullptr;
5641
5642 if (ParseToken(lltok::kw_within, "expected 'within' after cleanuppad"))
5643 return true;
5644
5645 if (Lex.getKind() != lltok::kw_none && Lex.getKind() != lltok::LocalVar &&
5646 Lex.getKind() != lltok::LocalVarID)
5647 return TokError("expected scope value for cleanuppad");
5648
5649 if (ParseValue(Type::getTokenTy(Context), ParentPad, PFS))
5650 return true;
5651
David Majnemer654e1302015-07-31 17:58:14 +00005652 SmallVector<Value *, 8> Args;
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00005653 if (ParseExceptionArgs(Args, PFS))
David Majnemer654e1302015-07-31 17:58:14 +00005654 return true;
5655
David Majnemer8a1c45d2015-12-12 05:38:55 +00005656 Inst = CleanupPadInst::Create(ParentPad, Args);
Joseph Tremoulet9ce71f72015-09-03 09:09:43 +00005657 return false;
5658}
5659
Chris Lattnerac161bf2009-01-02 07:01:27 +00005660//===----------------------------------------------------------------------===//
5661// Binary Operators.
5662//===----------------------------------------------------------------------===//
5663
5664/// ParseArithmetic
Chris Lattnereeefa9a2009-01-05 08:24:46 +00005665/// ::= ArithmeticOps TypeAndValue ',' Value
5666///
5667/// If OperandType is 0, then any FP or integer operand is allowed. If it is 1,
5668/// then any integer operand is allowed, if it is 2, any fp operand is allowed.
Chris Lattnerac161bf2009-01-02 07:01:27 +00005669bool LLParser::ParseArithmetic(Instruction *&Inst, PerFunctionState &PFS,
Chris Lattnereeefa9a2009-01-05 08:24:46 +00005670 unsigned Opc, unsigned OperandType) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00005671 LocTy Loc; Value *LHS, *RHS;
5672 if (ParseTypeAndValue(LHS, Loc, PFS) ||
5673 ParseToken(lltok::comma, "expected ',' in arithmetic operation") ||
5674 ParseValue(LHS->getType(), RHS, PFS))
5675 return true;
5676
Chris Lattnereeefa9a2009-01-05 08:24:46 +00005677 bool Valid;
5678 switch (OperandType) {
Torok Edwinfbcc6632009-07-14 16:55:14 +00005679 default: llvm_unreachable("Unknown operand type!");
Chris Lattnereeefa9a2009-01-05 08:24:46 +00005680 case 0: // int or FP.
Duncan Sands9dff9be2010-02-15 16:12:20 +00005681 Valid = LHS->getType()->isIntOrIntVectorTy() ||
5682 LHS->getType()->isFPOrFPVectorTy();
Chris Lattnereeefa9a2009-01-05 08:24:46 +00005683 break;
Duncan Sands9dff9be2010-02-15 16:12:20 +00005684 case 1: Valid = LHS->getType()->isIntOrIntVectorTy(); break;
5685 case 2: Valid = LHS->getType()->isFPOrFPVectorTy(); break;
Chris Lattnereeefa9a2009-01-05 08:24:46 +00005686 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005687
Chris Lattnereeefa9a2009-01-05 08:24:46 +00005688 if (!Valid)
5689 return Error(Loc, "invalid operand type for instruction");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005690
Chris Lattnerac161bf2009-01-02 07:01:27 +00005691 Inst = BinaryOperator::Create((Instruction::BinaryOps)Opc, LHS, RHS);
5692 return false;
5693}
5694
5695/// ParseLogical
5696/// ::= ArithmeticOps TypeAndValue ',' Value {
5697bool LLParser::ParseLogical(Instruction *&Inst, PerFunctionState &PFS,
5698 unsigned Opc) {
5699 LocTy Loc; Value *LHS, *RHS;
5700 if (ParseTypeAndValue(LHS, Loc, PFS) ||
5701 ParseToken(lltok::comma, "expected ',' in logical operation") ||
5702 ParseValue(LHS->getType(), RHS, PFS))
5703 return true;
5704
Duncan Sands9dff9be2010-02-15 16:12:20 +00005705 if (!LHS->getType()->isIntOrIntVectorTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00005706 return Error(Loc,"instruction requires integer or integer vector operands");
5707
5708 Inst = BinaryOperator::Create((Instruction::BinaryOps)Opc, LHS, RHS);
5709 return false;
5710}
5711
Chris Lattnerac161bf2009-01-02 07:01:27 +00005712/// ParseCompare
5713/// ::= 'icmp' IPredicates TypeAndValue ',' Value
5714/// ::= 'fcmp' FPredicates TypeAndValue ',' Value
Chris Lattnerac161bf2009-01-02 07:01:27 +00005715bool LLParser::ParseCompare(Instruction *&Inst, PerFunctionState &PFS,
5716 unsigned Opc) {
5717 // Parse the integer/fp comparison predicate.
5718 LocTy Loc;
5719 unsigned Pred;
5720 Value *LHS, *RHS;
5721 if (ParseCmpPredicate(Pred, Opc) ||
5722 ParseTypeAndValue(LHS, Loc, PFS) ||
5723 ParseToken(lltok::comma, "expected ',' after compare value") ||
5724 ParseValue(LHS->getType(), RHS, PFS))
5725 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005726
Chris Lattnerac161bf2009-01-02 07:01:27 +00005727 if (Opc == Instruction::FCmp) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00005728 if (!LHS->getType()->isFPOrFPVectorTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00005729 return Error(Loc, "fcmp requires floating point operands");
Dan Gohmanad1f0a12009-08-25 23:17:54 +00005730 Inst = new FCmpInst(CmpInst::Predicate(Pred), LHS, RHS);
Nick Lewyckya21d3da2009-07-08 03:04:38 +00005731 } else {
5732 assert(Opc == Instruction::ICmp && "Unknown opcode for CmpInst!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00005733 if (!LHS->getType()->isIntOrIntVectorTy() &&
Craig Topper95d23472017-07-09 07:04:00 +00005734 !LHS->getType()->isPtrOrPtrVectorTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00005735 return Error(Loc, "icmp requires integer operands");
Dan Gohmanad1f0a12009-08-25 23:17:54 +00005736 Inst = new ICmpInst(CmpInst::Predicate(Pred), LHS, RHS);
Chris Lattnerac161bf2009-01-02 07:01:27 +00005737 }
5738 return false;
5739}
5740
5741//===----------------------------------------------------------------------===//
5742// Other Instructions.
5743//===----------------------------------------------------------------------===//
5744
5745
5746/// ParseCast
5747/// ::= CastOpc TypeAndValue 'to' Type
5748bool LLParser::ParseCast(Instruction *&Inst, PerFunctionState &PFS,
5749 unsigned Opc) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00005750 LocTy Loc;
5751 Value *Op;
Craig Topper2617dcc2014-04-15 06:32:26 +00005752 Type *DestTy = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005753 if (ParseTypeAndValue(Op, Loc, PFS) ||
5754 ParseToken(lltok::kw_to, "expected 'to' after cast value") ||
5755 ParseType(DestTy))
5756 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005757
Chris Lattner89d856e2009-03-01 00:53:13 +00005758 if (!CastInst::castIsValid((Instruction::CastOps)Opc, Op, DestTy)) {
5759 CastInst::castIsValid((Instruction::CastOps)Opc, Op, DestTy);
Chris Lattnerac161bf2009-01-02 07:01:27 +00005760 return Error(Loc, "invalid cast opcode for cast from '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00005761 getTypeString(Op->getType()) + "' to '" +
5762 getTypeString(DestTy) + "'");
Chris Lattner89d856e2009-03-01 00:53:13 +00005763 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00005764 Inst = CastInst::Create((Instruction::CastOps)Opc, Op, DestTy);
5765 return false;
5766}
5767
5768/// ParseSelect
5769/// ::= 'select' TypeAndValue ',' TypeAndValue ',' TypeAndValue
5770bool LLParser::ParseSelect(Instruction *&Inst, PerFunctionState &PFS) {
5771 LocTy Loc;
5772 Value *Op0, *Op1, *Op2;
5773 if (ParseTypeAndValue(Op0, Loc, PFS) ||
5774 ParseToken(lltok::comma, "expected ',' after select condition") ||
5775 ParseTypeAndValue(Op1, PFS) ||
5776 ParseToken(lltok::comma, "expected ',' after select value") ||
5777 ParseTypeAndValue(Op2, PFS))
5778 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005779
Chris Lattnerac161bf2009-01-02 07:01:27 +00005780 if (const char *Reason = SelectInst::areInvalidOperands(Op0, Op1, Op2))
5781 return Error(Loc, Reason);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005782
Chris Lattnerac161bf2009-01-02 07:01:27 +00005783 Inst = SelectInst::Create(Op0, Op1, Op2);
5784 return false;
5785}
5786
Chris Lattnerb55ab542009-01-05 08:18:44 +00005787/// ParseVA_Arg
5788/// ::= 'va_arg' TypeAndValue ',' Type
5789bool LLParser::ParseVA_Arg(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00005790 Value *Op;
Craig Topper2617dcc2014-04-15 06:32:26 +00005791 Type *EltTy = nullptr;
Chris Lattnerb55ab542009-01-05 08:18:44 +00005792 LocTy TypeLoc;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005793 if (ParseTypeAndValue(Op, PFS) ||
5794 ParseToken(lltok::comma, "expected ',' after vaarg operand") ||
Chris Lattnerb55ab542009-01-05 08:18:44 +00005795 ParseType(EltTy, TypeLoc))
Chris Lattnerac161bf2009-01-02 07:01:27 +00005796 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005797
Chris Lattnerb55ab542009-01-05 08:18:44 +00005798 if (!EltTy->isFirstClassType())
5799 return Error(TypeLoc, "va_arg requires operand with first class type");
Chris Lattnerac161bf2009-01-02 07:01:27 +00005800
5801 Inst = new VAArgInst(Op, EltTy);
5802 return false;
5803}
5804
5805/// ParseExtractElement
5806/// ::= 'extractelement' TypeAndValue ',' TypeAndValue
5807bool LLParser::ParseExtractElement(Instruction *&Inst, PerFunctionState &PFS) {
5808 LocTy Loc;
5809 Value *Op0, *Op1;
5810 if (ParseTypeAndValue(Op0, Loc, PFS) ||
5811 ParseToken(lltok::comma, "expected ',' after extract value") ||
5812 ParseTypeAndValue(Op1, PFS))
5813 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005814
Chris Lattnerac161bf2009-01-02 07:01:27 +00005815 if (!ExtractElementInst::isValidOperands(Op0, Op1))
5816 return Error(Loc, "invalid extractelement operands");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005817
Eric Christopherc9742252009-07-25 02:28:41 +00005818 Inst = ExtractElementInst::Create(Op0, Op1);
Chris Lattnerac161bf2009-01-02 07:01:27 +00005819 return false;
5820}
5821
5822/// ParseInsertElement
5823/// ::= 'insertelement' TypeAndValue ',' TypeAndValue ',' TypeAndValue
5824bool LLParser::ParseInsertElement(Instruction *&Inst, PerFunctionState &PFS) {
5825 LocTy Loc;
5826 Value *Op0, *Op1, *Op2;
5827 if (ParseTypeAndValue(Op0, Loc, PFS) ||
5828 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
5829 ParseTypeAndValue(Op1, PFS) ||
5830 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
5831 ParseTypeAndValue(Op2, PFS))
5832 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005833
Chris Lattnerac161bf2009-01-02 07:01:27 +00005834 if (!InsertElementInst::isValidOperands(Op0, Op1, Op2))
Eric Christopherfef8db62009-07-23 01:01:32 +00005835 return Error(Loc, "invalid insertelement operands");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005836
Chris Lattnerac161bf2009-01-02 07:01:27 +00005837 Inst = InsertElementInst::Create(Op0, Op1, Op2);
5838 return false;
5839}
5840
5841/// ParseShuffleVector
5842/// ::= 'shufflevector' TypeAndValue ',' TypeAndValue ',' TypeAndValue
5843bool LLParser::ParseShuffleVector(Instruction *&Inst, PerFunctionState &PFS) {
5844 LocTy Loc;
5845 Value *Op0, *Op1, *Op2;
5846 if (ParseTypeAndValue(Op0, Loc, PFS) ||
5847 ParseToken(lltok::comma, "expected ',' after shuffle mask") ||
5848 ParseTypeAndValue(Op1, PFS) ||
5849 ParseToken(lltok::comma, "expected ',' after shuffle value") ||
5850 ParseTypeAndValue(Op2, PFS))
5851 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005852
Chris Lattnerac161bf2009-01-02 07:01:27 +00005853 if (!ShuffleVectorInst::isValidOperands(Op0, Op1, Op2))
Pete Cooperc1a6f982012-02-01 23:43:12 +00005854 return Error(Loc, "invalid shufflevector operands");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005855
Chris Lattnerac161bf2009-01-02 07:01:27 +00005856 Inst = new ShuffleVectorInst(Op0, Op1, Op2);
5857 return false;
5858}
5859
5860/// ParsePHI
Chris Lattnerc05471e2009-10-18 05:27:44 +00005861/// ::= 'phi' Type '[' Value ',' Value ']' (',' '[' Value ',' Value ']')*
Chris Lattnerf4f03422009-12-30 05:27:33 +00005862int LLParser::ParsePHI(Instruction *&Inst, PerFunctionState &PFS) {
Craig Topper2617dcc2014-04-15 06:32:26 +00005863 Type *Ty = nullptr; LocTy TypeLoc;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005864 Value *Op0, *Op1;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005865
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00005866 if (ParseType(Ty, TypeLoc) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00005867 ParseToken(lltok::lsquare, "expected '[' in phi value list") ||
5868 ParseValue(Ty, Op0, PFS) ||
5869 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
Owen Anderson55f1c092009-08-13 21:58:54 +00005870 ParseValue(Type::getLabelTy(Context), Op1, PFS) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00005871 ParseToken(lltok::rsquare, "expected ']' in phi value list"))
5872 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005873
Chris Lattnerf4f03422009-12-30 05:27:33 +00005874 bool AteExtraComma = false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005875 SmallVector<std::pair<Value*, BasicBlock*>, 16> PHIVals;
Eugene Zelenko1804a772016-08-25 00:45:04 +00005876
5877 while (true) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00005878 PHIVals.push_back(std::make_pair(Op0, cast<BasicBlock>(Op1)));
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005879
Chris Lattner3822f632009-01-02 08:05:26 +00005880 if (!EatIfPresent(lltok::comma))
Chris Lattnerac161bf2009-01-02 07:01:27 +00005881 break;
5882
Chris Lattnerf4f03422009-12-30 05:27:33 +00005883 if (Lex.getKind() == lltok::MetadataVar) {
5884 AteExtraComma = true;
Devang Patel8f842d32009-10-16 18:45:49 +00005885 break;
Chris Lattnerf4f03422009-12-30 05:27:33 +00005886 }
Devang Patel8f842d32009-10-16 18:45:49 +00005887
Chris Lattner3822f632009-01-02 08:05:26 +00005888 if (ParseToken(lltok::lsquare, "expected '[' in phi value list") ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00005889 ParseValue(Ty, Op0, PFS) ||
5890 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
Owen Anderson55f1c092009-08-13 21:58:54 +00005891 ParseValue(Type::getLabelTy(Context), Op1, PFS) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00005892 ParseToken(lltok::rsquare, "expected ']' in phi value list"))
5893 return true;
5894 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005895
Chris Lattnerac161bf2009-01-02 07:01:27 +00005896 if (!Ty->isFirstClassType())
5897 return Error(TypeLoc, "phi node must have first class type");
5898
Jay Foad52131342011-03-30 11:28:46 +00005899 PHINode *PN = PHINode::Create(Ty, PHIVals.size());
Chris Lattnerac161bf2009-01-02 07:01:27 +00005900 for (unsigned i = 0, e = PHIVals.size(); i != e; ++i)
5901 PN->addIncoming(PHIVals[i].first, PHIVals[i].second);
5902 Inst = PN;
Chris Lattnerf4f03422009-12-30 05:27:33 +00005903 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005904}
5905
Bill Wendlingfae14752011-08-12 20:24:12 +00005906/// ParseLandingPad
5907/// ::= 'landingpad' Type 'personality' TypeAndValue 'cleanup'? Clause+
5908/// Clause
5909/// ::= 'catch' TypeAndValue
5910/// ::= 'filter'
5911/// ::= 'filter' TypeAndValue ( ',' TypeAndValue )*
5912bool LLParser::ParseLandingPad(Instruction *&Inst, PerFunctionState &PFS) {
Craig Topper2617dcc2014-04-15 06:32:26 +00005913 Type *Ty = nullptr; LocTy TyLoc;
Bill Wendlingfae14752011-08-12 20:24:12 +00005914
David Majnemer7fddecc2015-06-17 20:52:32 +00005915 if (ParseType(Ty, TyLoc))
Bill Wendlingfae14752011-08-12 20:24:12 +00005916 return true;
5917
David Majnemer7fddecc2015-06-17 20:52:32 +00005918 std::unique_ptr<LandingPadInst> LP(LandingPadInst::Create(Ty, 0));
Bill Wendlingfae14752011-08-12 20:24:12 +00005919 LP->setCleanup(EatIfPresent(lltok::kw_cleanup));
5920
5921 while (Lex.getKind() == lltok::kw_catch || Lex.getKind() == lltok::kw_filter){
5922 LandingPadInst::ClauseType CT;
5923 if (EatIfPresent(lltok::kw_catch))
5924 CT = LandingPadInst::Catch;
5925 else if (EatIfPresent(lltok::kw_filter))
5926 CT = LandingPadInst::Filter;
5927 else
5928 return TokError("expected 'catch' or 'filter' clause type");
5929
Rafael Espindola4dc5dfc2014-06-04 18:51:31 +00005930 Value *V;
5931 LocTy VLoc;
Owen Andersonf8f259d2015-03-09 07:13:42 +00005932 if (ParseTypeAndValue(V, VLoc, PFS))
Bill Wendlingfae14752011-08-12 20:24:12 +00005933 return true;
Bill Wendlingfae14752011-08-12 20:24:12 +00005934
Bill Wendlinga52aa3c2011-08-12 20:52:25 +00005935 // A 'catch' type expects a non-array constant. A filter clause expects an
5936 // array constant.
5937 if (CT == LandingPadInst::Catch) {
5938 if (isa<ArrayType>(V->getType()))
5939 Error(VLoc, "'catch' clause has an invalid type");
5940 } else {
5941 if (!isa<ArrayType>(V->getType()))
5942 Error(VLoc, "'filter' clause has an invalid type");
5943 }
5944
Owen Andersonf8f259d2015-03-09 07:13:42 +00005945 Constant *CV = dyn_cast<Constant>(V);
5946 if (!CV)
5947 return Error(VLoc, "clause argument must be a constant");
5948 LP->addClause(CV);
Bill Wendlingfae14752011-08-12 20:24:12 +00005949 }
5950
Owen Andersonf8f259d2015-03-09 07:13:42 +00005951 Inst = LP.release();
Bill Wendlingfae14752011-08-12 20:24:12 +00005952 return false;
5953}
5954
Chris Lattnerac161bf2009-01-02 07:01:27 +00005955/// ParseCall
Sanjay Patelfa54ace2015-12-14 21:59:03 +00005956/// ::= 'call' OptionalFastMathFlags OptionalCallingConv
5957/// OptionalAttrs Type Value ParameterList OptionalAttrs
5958/// ::= 'tail' 'call' OptionalFastMathFlags OptionalCallingConv
5959/// OptionalAttrs Type Value ParameterList OptionalAttrs
5960/// ::= 'musttail' 'call' OptionalFastMathFlags OptionalCallingConv
5961/// OptionalAttrs Type Value ParameterList OptionalAttrs
5962/// ::= 'notail' 'call' OptionalFastMathFlags OptionalCallingConv
5963/// OptionalAttrs Type Value ParameterList OptionalAttrs
Chris Lattnerac161bf2009-01-02 07:01:27 +00005964bool LLParser::ParseCall(Instruction *&Inst, PerFunctionState &PFS,
Reid Kleckner5772b772014-04-24 20:14:34 +00005965 CallInst::TailCallKind TCK) {
Bill Wendling50d27842012-10-15 20:35:56 +00005966 AttrBuilder RetAttrs, FnAttrs;
Bill Wendlingb32b0412013-02-08 06:32:06 +00005967 std::vector<unsigned> FwdRefAttrGrps;
Michael Gottesman41748d72013-06-27 00:25:01 +00005968 LocTy BuiltinLoc;
Alexey Samsonov17a9cff2014-09-10 18:00:17 +00005969 unsigned CC;
Craig Topper2617dcc2014-04-15 06:32:26 +00005970 Type *RetType = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005971 LocTy RetTypeLoc;
5972 ValID CalleeID;
5973 SmallVector<ParamInfo, 16> ArgList;
Sanjoy Dasb513a9f2015-09-24 23:34:52 +00005974 SmallVector<OperandBundleDef, 2> BundleList;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005975 LocTy CallLoc = Lex.getLoc();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005976
Sanjay Patelfa54ace2015-12-14 21:59:03 +00005977 if (TCK != CallInst::TCK_None &&
5978 ParseToken(lltok::kw_call,
5979 "expected 'tail call', 'musttail call', or 'notail call'"))
5980 return true;
5981
5982 FastMathFlags FMF = EatFastMathFlagsIfPresent();
5983
5984 if (ParseOptionalCallingConv(CC) || ParseOptionalReturnAttrs(RetAttrs) ||
Chris Lattnerf880ca22009-03-09 04:49:14 +00005985 ParseType(RetType, RetTypeLoc, true /*void allowed*/) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00005986 ParseValID(CalleeID) ||
Reid Kleckner83498642014-08-26 00:33:28 +00005987 ParseParameterList(ArgList, PFS, TCK == CallInst::TCK_MustTail,
5988 PFS.getFunction().isVarArg()) ||
Sanjoy Dasb513a9f2015-09-24 23:34:52 +00005989 ParseFnAttributeValuePairs(FnAttrs, FwdRefAttrGrps, false, BuiltinLoc) ||
5990 ParseOptionalOperandBundles(BundleList, PFS))
Chris Lattnerac161bf2009-01-02 07:01:27 +00005991 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005992
Sanjay Patelfa54ace2015-12-14 21:59:03 +00005993 if (FMF.any() && !RetType->isFPOrFPVectorTy())
5994 return Error(CallLoc, "fast-math-flags specified for call without "
5995 "floating-point scalar or vector return type");
5996
Chris Lattnerac161bf2009-01-02 07:01:27 +00005997 // If RetType is a non-function pointer type, then this is the short syntax
5998 // for the call, which means that RetType is just the return type. Infer the
5999 // rest of the function argument types from the arguments that are present.
David Blaikie23af6482015-04-16 23:24:18 +00006000 FunctionType *Ty = dyn_cast<FunctionType>(RetType);
6001 if (!Ty) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00006002 // Pull out the types of all of the arguments...
Jay Foadb804a2b2011-07-12 14:06:48 +00006003 std::vector<Type*> ParamTypes;
Eli Friedman6cf51412010-07-24 23:06:59 +00006004 for (unsigned i = 0, e = ArgList.size(); i != e; ++i)
6005 ParamTypes.push_back(ArgList[i].V->getType());
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00006006
Chris Lattnerac161bf2009-01-02 07:01:27 +00006007 if (!FunctionType::isValidReturnType(RetType))
6008 return Error(RetTypeLoc, "Invalid result type for LLVM function");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00006009
Owen Anderson4056ca92009-07-29 22:17:13 +00006010 Ty = FunctionType::get(RetType, ParamTypes, false);
Chris Lattnerac161bf2009-01-02 07:01:27 +00006011 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00006012
David Blaikie41ba2b42015-07-27 23:32:19 +00006013 CalleeID.FTy = Ty;
6014
Chris Lattnerac161bf2009-01-02 07:01:27 +00006015 // Look up the callee.
6016 Value *Callee;
David Blaikie23af6482015-04-16 23:24:18 +00006017 if (ConvertValIDToValue(PointerType::getUnqual(Ty), CalleeID, Callee, &PFS))
6018 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00006019
Bill Wendling3d7b0b82012-12-19 07:18:57 +00006020 // Set up the Attribute for the function.
Reid Klecknerc2cb5602017-04-12 00:38:00 +00006021 SmallVector<AttributeSet, 8> Attrs;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00006022
Chris Lattnerac161bf2009-01-02 07:01:27 +00006023 SmallVector<Value*, 8> Args;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00006024
Chris Lattnerac161bf2009-01-02 07:01:27 +00006025 // Loop through FunctionType's arguments and ensure they are specified
6026 // correctly. Also, gather any parameter attributes.
6027 FunctionType::param_iterator I = Ty->param_begin();
6028 FunctionType::param_iterator E = Ty->param_end();
6029 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
Craig Topper2617dcc2014-04-15 06:32:26 +00006030 Type *ExpectedTy = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00006031 if (I != E) {
6032 ExpectedTy = *I++;
6033 } else if (!Ty->isVarArg()) {
6034 return Error(ArgList[i].Loc, "too many arguments specified");
6035 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00006036
Chris Lattnerac161bf2009-01-02 07:01:27 +00006037 if (ExpectedTy && ExpectedTy != ArgList[i].V->getType())
6038 return Error(ArgList[i].Loc, "argument is not of expected type '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00006039 getTypeString(ExpectedTy) + "'");
Chris Lattnerac161bf2009-01-02 07:01:27 +00006040 Args.push_back(ArgList[i].V);
Reid Klecknereb9dd5b2017-04-10 23:31:05 +00006041 Attrs.push_back(ArgList[i].Attrs);
Chris Lattnerac161bf2009-01-02 07:01:27 +00006042 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00006043
Chris Lattnerac161bf2009-01-02 07:01:27 +00006044 if (I != E)
6045 return Error(CallLoc, "not enough parameters specified for call");
6046
Reid Klecknereb9dd5b2017-04-10 23:31:05 +00006047 if (FnAttrs.hasAlignmentAttr())
6048 return Error(CallLoc, "call instructions may not have an alignment");
David Majnemer8d22abd2015-02-23 00:01:32 +00006049
Bill Wendling3d7b0b82012-12-19 07:18:57 +00006050 // Finish off the Attribute and check them
Reid Kleckner7f720332017-04-13 00:58:09 +00006051 AttributeList PAL =
6052 AttributeList::get(Context, AttributeSet::get(Context, FnAttrs),
6053 AttributeSet::get(Context, RetAttrs), Attrs);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00006054
Sanjoy Dasb513a9f2015-09-24 23:34:52 +00006055 CallInst *CI = CallInst::Create(Ty, Callee, Args, BundleList);
Reid Kleckner5772b772014-04-24 20:14:34 +00006056 CI->setTailCallKind(TCK);
Chris Lattnerac161bf2009-01-02 07:01:27 +00006057 CI->setCallingConv(CC);
Sanjay Patelfa54ace2015-12-14 21:59:03 +00006058 if (FMF.any())
6059 CI->setFastMathFlags(FMF);
Chris Lattnerac161bf2009-01-02 07:01:27 +00006060 CI->setAttributes(PAL);
Bill Wendlingb32b0412013-02-08 06:32:06 +00006061 ForwardRefAttrGroups[CI] = FwdRefAttrGrps;
Chris Lattnerac161bf2009-01-02 07:01:27 +00006062 Inst = CI;
6063 return false;
6064}
6065
6066//===----------------------------------------------------------------------===//
6067// Memory Instructions.
6068//===----------------------------------------------------------------------===//
6069
6070/// ParseAlloc
Manman Ren9bfd0d02016-04-01 21:41:15 +00006071/// ::= 'alloca' 'inalloca'? 'swifterror'? Type (',' TypeAndValue)?
6072/// (',' 'align' i32)?
Chris Lattner78103722011-06-17 03:16:47 +00006073int LLParser::ParseAlloc(Instruction *&Inst, PerFunctionState &PFS) {
Craig Topper2617dcc2014-04-15 06:32:26 +00006074 Value *Size = nullptr;
Matt Arsenault3c1fc762017-04-10 22:27:50 +00006075 LocTy SizeLoc, TyLoc, ASLoc;
Chris Lattnerac161bf2009-01-02 07:01:27 +00006076 unsigned Alignment = 0;
Matt Arsenault3c1fc762017-04-10 22:27:50 +00006077 unsigned AddrSpace = 0;
Craig Topper2617dcc2014-04-15 06:32:26 +00006078 Type *Ty = nullptr;
David Majnemerc4ab61c2014-03-09 06:41:58 +00006079
6080 bool IsInAlloca = EatIfPresent(lltok::kw_inalloca);
Manman Ren9bfd0d02016-04-01 21:41:15 +00006081 bool IsSwiftError = EatIfPresent(lltok::kw_swifterror);
David Majnemerc4ab61c2014-03-09 06:41:58 +00006082
David Majnemera3b0eb22015-02-16 08:38:03 +00006083 if (ParseType(Ty, TyLoc)) return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00006084
David Majnemera3b0eb22015-02-16 08:38:03 +00006085 if (Ty->isFunctionTy() || !PointerType::isValidElementType(Ty))
6086 return Error(TyLoc, "invalid type for alloca");
David Majnemerfad5a312015-02-11 09:13:11 +00006087
Chris Lattnerb2f39502009-12-30 05:44:30 +00006088 bool AteExtraComma = false;
Chris Lattner3822f632009-01-02 08:05:26 +00006089 if (EatIfPresent(lltok::comma)) {
David Majnemerc4ab61c2014-03-09 06:41:58 +00006090 if (Lex.getKind() == lltok::kw_align) {
Matt Arsenault3c1fc762017-04-10 22:27:50 +00006091 if (ParseOptionalAlignment(Alignment))
6092 return true;
6093 if (ParseOptionalCommaAddrSpace(AddrSpace, ASLoc, AteExtraComma))
6094 return true;
6095 } else if (Lex.getKind() == lltok::kw_addrspace) {
6096 ASLoc = Lex.getLoc();
6097 if (ParseOptionalAddrSpace(AddrSpace))
6098 return true;
David Majnemerc4ab61c2014-03-09 06:41:58 +00006099 } else if (Lex.getKind() == lltok::MetadataVar) {
6100 AteExtraComma = true;
6101 } else {
6102 if (ParseTypeAndValue(Size, SizeLoc, PFS) ||
Matt Arsenault3c1fc762017-04-10 22:27:50 +00006103 ParseOptionalCommaAlign(Alignment, AteExtraComma) ||
6104 (!AteExtraComma &&
6105 ParseOptionalCommaAddrSpace(AddrSpace, ASLoc, AteExtraComma)))
David Majnemerc4ab61c2014-03-09 06:41:58 +00006106 return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00006107 }
6108 }
6109
Dan Gohman2140a742010-05-28 01:14:11 +00006110 if (Size && !Size->getType()->isIntegerTy())
6111 return Error(SizeLoc, "element count must have integer type");
Chris Lattnerac161bf2009-01-02 07:01:27 +00006112
Matt Arsenault3c1fc762017-04-10 22:27:50 +00006113 const DataLayout &DL = M->getDataLayout();
6114 unsigned AS = DL.getAllocaAddrSpace();
6115 if (AS != AddrSpace) {
6116 // TODO: In the future it should be possible to specify addrspace per-alloca.
6117 return Error(ASLoc, "address space must match datalayout");
6118 }
6119
6120 AllocaInst *AI = new AllocaInst(Ty, AS, Size, Alignment);
Reid Kleckner436c42e2014-01-17 23:58:17 +00006121 AI->setUsedWithInAlloca(IsInAlloca);
Manman Ren9bfd0d02016-04-01 21:41:15 +00006122 AI->setSwiftError(IsSwiftError);
Reid Kleckner436c42e2014-01-17 23:58:17 +00006123 Inst = AI;
Chris Lattner78103722011-06-17 03:16:47 +00006124 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerac161bf2009-01-02 07:01:27 +00006125}
6126
6127/// ParseLoad
Eli Friedman02e737b2011-08-12 22:50:01 +00006128/// ::= 'load' 'volatile'? TypeAndValue (',' 'align' i32)?
Michael Ilseman26ee2b82012-11-15 22:34:00 +00006129/// ::= 'load' 'atomic' 'volatile'? TypeAndValue
Eli Friedman02e737b2011-08-12 22:50:01 +00006130/// 'singlethread'? AtomicOrdering (',' 'align' i32)?
Chris Lattnerbc639292011-11-27 06:56:53 +00006131int LLParser::ParseLoad(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00006132 Value *Val; LocTy Loc;
Devang Patelea8a4b92009-09-17 23:04:48 +00006133 unsigned Alignment = 0;
Chris Lattnerb2f39502009-12-30 05:44:30 +00006134 bool AteExtraComma = false;
Eli Friedman02e737b2011-08-12 22:50:01 +00006135 bool isAtomic = false;
JF Bastien800f87a2016-04-06 21:19:33 +00006136 AtomicOrdering Ordering = AtomicOrdering::NotAtomic;
Konstantin Zhuravlyovbb80d3e2017-07-11 22:23:00 +00006137 SyncScope::ID SSID = SyncScope::System;
Eli Friedman02e737b2011-08-12 22:50:01 +00006138
6139 if (Lex.getKind() == lltok::kw_atomic) {
Eli Friedman02e737b2011-08-12 22:50:01 +00006140 isAtomic = true;
6141 Lex.Lex();
6142 }
6143
Chris Lattnerbc639292011-11-27 06:56:53 +00006144 bool isVolatile = false;
Eli Friedman02e737b2011-08-12 22:50:01 +00006145 if (Lex.getKind() == lltok::kw_volatile) {
Eli Friedman02e737b2011-08-12 22:50:01 +00006146 isVolatile = true;
6147 Lex.Lex();
6148 }
6149
David Blaikie15d9a4c2015-04-06 20:59:48 +00006150 Type *Ty;
David Blaikiea79ac142015-02-27 21:17:42 +00006151 LocTy ExplicitTypeLoc = Lex.getLoc();
6152 if (ParseType(Ty) ||
6153 ParseToken(lltok::comma, "expected comma after load's type") ||
6154 ParseTypeAndValue(Val, Loc, PFS) ||
Konstantin Zhuravlyovbb80d3e2017-07-11 22:23:00 +00006155 ParseScopeAndOrdering(isAtomic, SSID, Ordering) ||
Chris Lattnerb2f39502009-12-30 05:44:30 +00006156 ParseOptionalCommaAlign(Alignment, AteExtraComma))
6157 return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00006158
David Blaikie15d9a4c2015-04-06 20:59:48 +00006159 if (!Val->getType()->isPointerTy() || !Ty->isFirstClassType())
Chris Lattnerac161bf2009-01-02 07:01:27 +00006160 return Error(Loc, "load operand must be a pointer to a first class type");
Eli Friedman59b66882011-08-09 23:02:53 +00006161 if (isAtomic && !Alignment)
6162 return Error(Loc, "atomic load must have explicit non-zero alignment");
JF Bastien800f87a2016-04-06 21:19:33 +00006163 if (Ordering == AtomicOrdering::Release ||
6164 Ordering == AtomicOrdering::AcquireRelease)
Eli Friedman59b66882011-08-09 23:02:53 +00006165 return Error(Loc, "atomic load cannot use Release ordering");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00006166
David Blaikiea79ac142015-02-27 21:17:42 +00006167 if (Ty != cast<PointerType>(Val->getType())->getElementType())
6168 return Error(ExplicitTypeLoc,
6169 "explicit pointee type doesn't match operand's pointee type");
6170
Konstantin Zhuravlyovbb80d3e2017-07-11 22:23:00 +00006171 Inst = new LoadInst(Ty, Val, "", isVolatile, Alignment, Ordering, SSID);
Chris Lattnerb2f39502009-12-30 05:44:30 +00006172 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerac161bf2009-01-02 07:01:27 +00006173}
6174
6175/// ParseStore
Eli Friedman02e737b2011-08-12 22:50:01 +00006176
6177/// ::= 'store' 'volatile'? TypeAndValue ',' TypeAndValue (',' 'align' i32)?
6178/// ::= 'store' 'atomic' 'volatile'? TypeAndValue ',' TypeAndValue
Eli Friedman59b66882011-08-09 23:02:53 +00006179/// 'singlethread'? AtomicOrdering (',' 'align' i32)?
Chris Lattnerbc639292011-11-27 06:56:53 +00006180int LLParser::ParseStore(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00006181 Value *Val, *Ptr; LocTy Loc, PtrLoc;
Devang Patelea8a4b92009-09-17 23:04:48 +00006182 unsigned Alignment = 0;
Chris Lattnerb2f39502009-12-30 05:44:30 +00006183 bool AteExtraComma = false;
Eli Friedman02e737b2011-08-12 22:50:01 +00006184 bool isAtomic = false;
JF Bastien800f87a2016-04-06 21:19:33 +00006185 AtomicOrdering Ordering = AtomicOrdering::NotAtomic;
Konstantin Zhuravlyovbb80d3e2017-07-11 22:23:00 +00006186 SyncScope::ID SSID = SyncScope::System;
Eli Friedman02e737b2011-08-12 22:50:01 +00006187
6188 if (Lex.getKind() == lltok::kw_atomic) {
Eli Friedman02e737b2011-08-12 22:50:01 +00006189 isAtomic = true;
6190 Lex.Lex();
6191 }
6192
Chris Lattnerbc639292011-11-27 06:56:53 +00006193 bool isVolatile = false;
Eli Friedman02e737b2011-08-12 22:50:01 +00006194 if (Lex.getKind() == lltok::kw_volatile) {
Eli Friedman02e737b2011-08-12 22:50:01 +00006195 isVolatile = true;
6196 Lex.Lex();
6197 }
6198
Chris Lattnerac161bf2009-01-02 07:01:27 +00006199 if (ParseTypeAndValue(Val, Loc, PFS) ||
6200 ParseToken(lltok::comma, "expected ',' after store operand") ||
Chris Lattnerb2f39502009-12-30 05:44:30 +00006201 ParseTypeAndValue(Ptr, PtrLoc, PFS) ||
Konstantin Zhuravlyovbb80d3e2017-07-11 22:23:00 +00006202 ParseScopeAndOrdering(isAtomic, SSID, Ordering) ||
Chris Lattnerb2f39502009-12-30 05:44:30 +00006203 ParseOptionalCommaAlign(Alignment, AteExtraComma))
Chris Lattnerac161bf2009-01-02 07:01:27 +00006204 return true;
Devang Patelea8a4b92009-09-17 23:04:48 +00006205
Duncan Sands19d0b472010-02-16 11:11:14 +00006206 if (!Ptr->getType()->isPointerTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00006207 return Error(PtrLoc, "store operand must be a pointer");
6208 if (!Val->getType()->isFirstClassType())
6209 return Error(Loc, "store operand must be a first class value");
6210 if (cast<PointerType>(Ptr->getType())->getElementType() != Val->getType())
6211 return Error(Loc, "stored value and pointer type do not match");
Eli Friedman59b66882011-08-09 23:02:53 +00006212 if (isAtomic && !Alignment)
6213 return Error(Loc, "atomic store must have explicit non-zero alignment");
JF Bastien800f87a2016-04-06 21:19:33 +00006214 if (Ordering == AtomicOrdering::Acquire ||
6215 Ordering == AtomicOrdering::AcquireRelease)
Eli Friedman59b66882011-08-09 23:02:53 +00006216 return Error(Loc, "atomic store cannot use Acquire ordering");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00006217
Konstantin Zhuravlyovbb80d3e2017-07-11 22:23:00 +00006218 Inst = new StoreInst(Val, Ptr, isVolatile, Alignment, Ordering, SSID);
Chris Lattnerb2f39502009-12-30 05:44:30 +00006219 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerac161bf2009-01-02 07:01:27 +00006220}
6221
Eli Friedmanc9a551e2011-07-28 21:48:00 +00006222/// ParseCmpXchg
Tim Northover420a2162014-06-13 14:24:07 +00006223/// ::= 'cmpxchg' 'weak'? 'volatile'? TypeAndValue ',' TypeAndValue ','
6224/// TypeAndValue 'singlethread'? AtomicOrdering AtomicOrdering
Eli Friedman02e737b2011-08-12 22:50:01 +00006225int LLParser::ParseCmpXchg(Instruction *&Inst, PerFunctionState &PFS) {
Eli Friedmanc9a551e2011-07-28 21:48:00 +00006226 Value *Ptr, *Cmp, *New; LocTy PtrLoc, CmpLoc, NewLoc;
6227 bool AteExtraComma = false;
JF Bastien800f87a2016-04-06 21:19:33 +00006228 AtomicOrdering SuccessOrdering = AtomicOrdering::NotAtomic;
6229 AtomicOrdering FailureOrdering = AtomicOrdering::NotAtomic;
Konstantin Zhuravlyovbb80d3e2017-07-11 22:23:00 +00006230 SyncScope::ID SSID = SyncScope::System;
Eli Friedman02e737b2011-08-12 22:50:01 +00006231 bool isVolatile = false;
Tim Northover420a2162014-06-13 14:24:07 +00006232 bool isWeak = false;
6233
6234 if (EatIfPresent(lltok::kw_weak))
6235 isWeak = true;
Eli Friedman02e737b2011-08-12 22:50:01 +00006236
6237 if (EatIfPresent(lltok::kw_volatile))
6238 isVolatile = true;
6239
Eli Friedmanc9a551e2011-07-28 21:48:00 +00006240 if (ParseTypeAndValue(Ptr, PtrLoc, PFS) ||
6241 ParseToken(lltok::comma, "expected ',' after cmpxchg address") ||
6242 ParseTypeAndValue(Cmp, CmpLoc, PFS) ||
6243 ParseToken(lltok::comma, "expected ',' after cmpxchg cmp operand") ||
6244 ParseTypeAndValue(New, NewLoc, PFS) ||
Konstantin Zhuravlyovbb80d3e2017-07-11 22:23:00 +00006245 ParseScopeAndOrdering(true /*Always atomic*/, SSID, SuccessOrdering) ||
Tim Northovere94a5182014-03-11 10:48:52 +00006246 ParseOrdering(FailureOrdering))
Eli Friedmanc9a551e2011-07-28 21:48:00 +00006247 return true;
6248
JF Bastien800f87a2016-04-06 21:19:33 +00006249 if (SuccessOrdering == AtomicOrdering::Unordered ||
6250 FailureOrdering == AtomicOrdering::Unordered)
Eli Friedmanc9a551e2011-07-28 21:48:00 +00006251 return TokError("cmpxchg cannot be unordered");
JF Bastien800f87a2016-04-06 21:19:33 +00006252 if (isStrongerThan(FailureOrdering, SuccessOrdering))
6253 return TokError("cmpxchg failure argument shall be no stronger than the "
6254 "success argument");
6255 if (FailureOrdering == AtomicOrdering::Release ||
6256 FailureOrdering == AtomicOrdering::AcquireRelease)
6257 return TokError(
6258 "cmpxchg failure ordering cannot include release semantics");
Eli Friedmanc9a551e2011-07-28 21:48:00 +00006259 if (!Ptr->getType()->isPointerTy())
6260 return Error(PtrLoc, "cmpxchg operand must be a pointer");
6261 if (cast<PointerType>(Ptr->getType())->getElementType() != Cmp->getType())
6262 return Error(CmpLoc, "compare value and pointer type do not match");
6263 if (cast<PointerType>(Ptr->getType())->getElementType() != New->getType())
6264 return Error(NewLoc, "new value and pointer type do not match");
Philip Reames1960cfd2016-02-19 00:06:41 +00006265 if (!New->getType()->isFirstClassType())
6266 return Error(NewLoc, "cmpxchg operand must be a first class value");
Tim Northover420a2162014-06-13 14:24:07 +00006267 AtomicCmpXchgInst *CXI = new AtomicCmpXchgInst(
Konstantin Zhuravlyovbb80d3e2017-07-11 22:23:00 +00006268 Ptr, Cmp, New, SuccessOrdering, FailureOrdering, SSID);
Eli Friedmanc9a551e2011-07-28 21:48:00 +00006269 CXI->setVolatile(isVolatile);
Tim Northover420a2162014-06-13 14:24:07 +00006270 CXI->setWeak(isWeak);
Eli Friedmanc9a551e2011-07-28 21:48:00 +00006271 Inst = CXI;
6272 return AteExtraComma ? InstExtraComma : InstNormal;
6273}
6274
6275/// ParseAtomicRMW
Eli Friedman02e737b2011-08-12 22:50:01 +00006276/// ::= 'atomicrmw' 'volatile'? BinOp TypeAndValue ',' TypeAndValue
6277/// 'singlethread'? AtomicOrdering
6278int LLParser::ParseAtomicRMW(Instruction *&Inst, PerFunctionState &PFS) {
Eli Friedmanc9a551e2011-07-28 21:48:00 +00006279 Value *Ptr, *Val; LocTy PtrLoc, ValLoc;
6280 bool AteExtraComma = false;
JF Bastien800f87a2016-04-06 21:19:33 +00006281 AtomicOrdering Ordering = AtomicOrdering::NotAtomic;
Konstantin Zhuravlyovbb80d3e2017-07-11 22:23:00 +00006282 SyncScope::ID SSID = SyncScope::System;
Eli Friedman02e737b2011-08-12 22:50:01 +00006283 bool isVolatile = false;
Eli Friedmanc9a551e2011-07-28 21:48:00 +00006284 AtomicRMWInst::BinOp Operation;
Eli Friedman02e737b2011-08-12 22:50:01 +00006285
6286 if (EatIfPresent(lltok::kw_volatile))
6287 isVolatile = true;
6288
Eli Friedmanc9a551e2011-07-28 21:48:00 +00006289 switch (Lex.getKind()) {
6290 default: return TokError("expected binary operation in atomicrmw");
6291 case lltok::kw_xchg: Operation = AtomicRMWInst::Xchg; break;
6292 case lltok::kw_add: Operation = AtomicRMWInst::Add; break;
6293 case lltok::kw_sub: Operation = AtomicRMWInst::Sub; break;
6294 case lltok::kw_and: Operation = AtomicRMWInst::And; break;
6295 case lltok::kw_nand: Operation = AtomicRMWInst::Nand; break;
6296 case lltok::kw_or: Operation = AtomicRMWInst::Or; break;
6297 case lltok::kw_xor: Operation = AtomicRMWInst::Xor; break;
6298 case lltok::kw_max: Operation = AtomicRMWInst::Max; break;
6299 case lltok::kw_min: Operation = AtomicRMWInst::Min; break;
6300 case lltok::kw_umax: Operation = AtomicRMWInst::UMax; break;
6301 case lltok::kw_umin: Operation = AtomicRMWInst::UMin; break;
6302 }
6303 Lex.Lex(); // Eat the operation.
6304
6305 if (ParseTypeAndValue(Ptr, PtrLoc, PFS) ||
6306 ParseToken(lltok::comma, "expected ',' after atomicrmw address") ||
6307 ParseTypeAndValue(Val, ValLoc, PFS) ||
Konstantin Zhuravlyovbb80d3e2017-07-11 22:23:00 +00006308 ParseScopeAndOrdering(true /*Always atomic*/, SSID, Ordering))
Eli Friedmanc9a551e2011-07-28 21:48:00 +00006309 return true;
6310
JF Bastien800f87a2016-04-06 21:19:33 +00006311 if (Ordering == AtomicOrdering::Unordered)
Eli Friedmanc9a551e2011-07-28 21:48:00 +00006312 return TokError("atomicrmw cannot be unordered");
6313 if (!Ptr->getType()->isPointerTy())
6314 return Error(PtrLoc, "atomicrmw operand must be a pointer");
6315 if (cast<PointerType>(Ptr->getType())->getElementType() != Val->getType())
6316 return Error(ValLoc, "atomicrmw value and pointer type do not match");
6317 if (!Val->getType()->isIntegerTy())
6318 return Error(ValLoc, "atomicrmw operand must be an integer");
6319 unsigned Size = Val->getType()->getPrimitiveSizeInBits();
6320 if (Size < 8 || (Size & (Size - 1)))
6321 return Error(ValLoc, "atomicrmw operand must be power-of-two byte-sized"
6322 " integer");
6323
6324 AtomicRMWInst *RMWI =
Konstantin Zhuravlyovbb80d3e2017-07-11 22:23:00 +00006325 new AtomicRMWInst(Operation, Ptr, Val, Ordering, SSID);
Eli Friedmanc9a551e2011-07-28 21:48:00 +00006326 RMWI->setVolatile(isVolatile);
6327 Inst = RMWI;
6328 return AteExtraComma ? InstExtraComma : InstNormal;
6329}
6330
Eli Friedmanfee02c62011-07-25 23:16:38 +00006331/// ParseFence
6332/// ::= 'fence' 'singlethread'? AtomicOrdering
6333int LLParser::ParseFence(Instruction *&Inst, PerFunctionState &PFS) {
JF Bastien800f87a2016-04-06 21:19:33 +00006334 AtomicOrdering Ordering = AtomicOrdering::NotAtomic;
Konstantin Zhuravlyovbb80d3e2017-07-11 22:23:00 +00006335 SyncScope::ID SSID = SyncScope::System;
6336 if (ParseScopeAndOrdering(true /*Always atomic*/, SSID, Ordering))
Eli Friedmanfee02c62011-07-25 23:16:38 +00006337 return true;
6338
JF Bastien800f87a2016-04-06 21:19:33 +00006339 if (Ordering == AtomicOrdering::Unordered)
Eli Friedmanfee02c62011-07-25 23:16:38 +00006340 return TokError("fence cannot be unordered");
JF Bastien800f87a2016-04-06 21:19:33 +00006341 if (Ordering == AtomicOrdering::Monotonic)
Eli Friedmanfee02c62011-07-25 23:16:38 +00006342 return TokError("fence cannot be monotonic");
6343
Konstantin Zhuravlyovbb80d3e2017-07-11 22:23:00 +00006344 Inst = new FenceInst(Context, Ordering, SSID);
Eli Friedmanfee02c62011-07-25 23:16:38 +00006345 return InstNormal;
6346}
6347
Chris Lattnerac161bf2009-01-02 07:01:27 +00006348/// ParseGetElementPtr
Dan Gohman1639c392009-07-27 21:53:46 +00006349/// ::= 'getelementptr' 'inbounds'? TypeAndValue (',' TypeAndValue)*
Chris Lattnerf4f03422009-12-30 05:27:33 +00006350int LLParser::ParseGetElementPtr(Instruction *&Inst, PerFunctionState &PFS) {
Craig Topper2617dcc2014-04-15 06:32:26 +00006351 Value *Ptr = nullptr;
6352 Value *Val = nullptr;
Nadav Rotem3924cb02011-12-05 06:29:09 +00006353 LocTy Loc, EltLoc;
Dan Gohman1639c392009-07-27 21:53:46 +00006354
Dan Gohman16cbbe42009-07-29 15:58:36 +00006355 bool InBounds = EatIfPresent(lltok::kw_inbounds);
Dan Gohman1639c392009-07-27 21:53:46 +00006356
David Blaikie79e6c742015-02-27 19:29:02 +00006357 Type *Ty = nullptr;
6358 LocTy ExplicitTypeLoc = Lex.getLoc();
6359 if (ParseType(Ty) ||
6360 ParseToken(lltok::comma, "expected comma after getelementptr's type") ||
6361 ParseTypeAndValue(Ptr, Loc, PFS))
6362 return true;
6363
Eli Benderskyd9806682013-04-22 17:03:42 +00006364 Type *BaseType = Ptr->getType();
6365 PointerType *BasePointerType = dyn_cast<PointerType>(BaseType->getScalarType());
6366 if (!BasePointerType)
Chris Lattnerac161bf2009-01-02 07:01:27 +00006367 return Error(Loc, "base of getelementptr must be a pointer");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00006368
David Blaikie8d757942015-03-09 23:08:44 +00006369 if (Ty != BasePointerType->getElementType())
6370 return Error(ExplicitTypeLoc,
6371 "explicit pointee type doesn't match operand's pointee type");
6372
Chris Lattnerac161bf2009-01-02 07:01:27 +00006373 SmallVector<Value*, 16> Indices;
Chris Lattnerf4f03422009-12-30 05:27:33 +00006374 bool AteExtraComma = false;
Elena Demikhovsky37a4da82015-07-09 07:42:48 +00006375 // GEP returns a vector of pointers if at least one of parameters is a vector.
6376 // All vector parameters should have the same vector width.
6377 unsigned GEPWidth = BaseType->isVectorTy() ?
6378 BaseType->getVectorNumElements() : 0;
6379
Chris Lattner3822f632009-01-02 08:05:26 +00006380 while (EatIfPresent(lltok::comma)) {
Chris Lattnerf4f03422009-12-30 05:27:33 +00006381 if (Lex.getKind() == lltok::MetadataVar) {
6382 AteExtraComma = true;
Devang Patel52b17452009-10-13 18:49:55 +00006383 break;
Chris Lattnerf4f03422009-12-30 05:27:33 +00006384 }
Chris Lattner3822f632009-01-02 08:05:26 +00006385 if (ParseTypeAndValue(Val, EltLoc, PFS)) return true;
Craig Topper95d23472017-07-09 07:04:00 +00006386 if (!Val->getType()->isIntOrIntVectorTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00006387 return Error(EltLoc, "getelementptr index must be an integer");
Elena Demikhovsky37a4da82015-07-09 07:42:48 +00006388
Nadav Rotem3924cb02011-12-05 06:29:09 +00006389 if (Val->getType()->isVectorTy()) {
Elena Demikhovsky37a4da82015-07-09 07:42:48 +00006390 unsigned ValNumEl = Val->getType()->getVectorNumElements();
6391 if (GEPWidth && GEPWidth != ValNumEl)
Nadav Rotem3924cb02011-12-05 06:29:09 +00006392 return Error(EltLoc,
6393 "getelementptr vector index has a wrong number of elements");
Elena Demikhovsky37a4da82015-07-09 07:42:48 +00006394 GEPWidth = ValNumEl;
Nadav Rotem3924cb02011-12-05 06:29:09 +00006395 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00006396 Indices.push_back(Val);
6397 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00006398
Craig Toppere3dcce92015-08-01 22:20:21 +00006399 SmallPtrSet<Type*, 4> Visited;
David Blaikied33bad32015-04-17 22:32:13 +00006400 if (!Indices.empty() && !Ty->isSized(&Visited))
Eli Benderskyd9806682013-04-22 17:03:42 +00006401 return Error(Loc, "base element of getelementptr must be sized");
6402
David Blaikied33bad32015-04-17 22:32:13 +00006403 if (!GetElementPtrInst::getIndexedType(Ty, Indices))
Chris Lattnerac161bf2009-01-02 07:01:27 +00006404 return Error(Loc, "invalid getelementptr indices");
David Blaikiecd7b97e2015-03-14 21:11:24 +00006405 Inst = GetElementPtrInst::Create(Ty, Ptr, Indices);
Dan Gohman1639c392009-07-27 21:53:46 +00006406 if (InBounds)
Dan Gohman1b849082009-09-07 23:54:19 +00006407 cast<GetElementPtrInst>(Inst)->setIsInBounds(true);
Chris Lattnerf4f03422009-12-30 05:27:33 +00006408 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerac161bf2009-01-02 07:01:27 +00006409}
6410
6411/// ParseExtractValue
6412/// ::= 'extractvalue' TypeAndValue (',' uint32)+
Chris Lattnerf4f03422009-12-30 05:27:33 +00006413int LLParser::ParseExtractValue(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00006414 Value *Val; LocTy Loc;
6415 SmallVector<unsigned, 4> Indices;
Chris Lattnerf4f03422009-12-30 05:27:33 +00006416 bool AteExtraComma;
Chris Lattnerac161bf2009-01-02 07:01:27 +00006417 if (ParseTypeAndValue(Val, Loc, PFS) ||
Chris Lattnerf4f03422009-12-30 05:27:33 +00006418 ParseIndexList(Indices, AteExtraComma))
Chris Lattnerac161bf2009-01-02 07:01:27 +00006419 return true;
6420
Chris Lattner392be582010-02-12 20:49:41 +00006421 if (!Val->getType()->isAggregateType())
6422 return Error(Loc, "extractvalue operand must be aggregate type");
Chris Lattnerac161bf2009-01-02 07:01:27 +00006423
Jay Foad57aa6362011-07-13 10:26:04 +00006424 if (!ExtractValueInst::getIndexedType(Val->getType(), Indices))
Chris Lattnerac161bf2009-01-02 07:01:27 +00006425 return Error(Loc, "invalid indices for extractvalue");
Jay Foad57aa6362011-07-13 10:26:04 +00006426 Inst = ExtractValueInst::Create(Val, Indices);
Chris Lattnerf4f03422009-12-30 05:27:33 +00006427 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerac161bf2009-01-02 07:01:27 +00006428}
6429
6430/// ParseInsertValue
6431/// ::= 'insertvalue' TypeAndValue ',' TypeAndValue (',' uint32)+
Chris Lattnerf4f03422009-12-30 05:27:33 +00006432int LLParser::ParseInsertValue(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00006433 Value *Val0, *Val1; LocTy Loc0, Loc1;
6434 SmallVector<unsigned, 4> Indices;
Chris Lattnerf4f03422009-12-30 05:27:33 +00006435 bool AteExtraComma;
Chris Lattnerac161bf2009-01-02 07:01:27 +00006436 if (ParseTypeAndValue(Val0, Loc0, PFS) ||
6437 ParseToken(lltok::comma, "expected comma after insertvalue operand") ||
6438 ParseTypeAndValue(Val1, Loc1, PFS) ||
Chris Lattnerf4f03422009-12-30 05:27:33 +00006439 ParseIndexList(Indices, AteExtraComma))
Chris Lattnerac161bf2009-01-02 07:01:27 +00006440 return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00006441
Chris Lattner392be582010-02-12 20:49:41 +00006442 if (!Val0->getType()->isAggregateType())
6443 return Error(Loc0, "insertvalue operand must be aggregate type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00006444
David Majnemer30074532015-02-11 07:43:58 +00006445 Type *IndexedType = ExtractValueInst::getIndexedType(Val0->getType(), Indices);
6446 if (!IndexedType)
Chris Lattnerac161bf2009-01-02 07:01:27 +00006447 return Error(Loc0, "invalid indices for insertvalue");
David Majnemer30074532015-02-11 07:43:58 +00006448 if (IndexedType != Val1->getType())
6449 return Error(Loc1, "insertvalue operand and field disagree in type: '" +
6450 getTypeString(Val1->getType()) + "' instead of '" +
6451 getTypeString(IndexedType) + "'");
Jay Foad57aa6362011-07-13 10:26:04 +00006452 Inst = InsertValueInst::Create(Val0, Val1, Indices);
Chris Lattnerf4f03422009-12-30 05:27:33 +00006453 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerac161bf2009-01-02 07:01:27 +00006454}
Nick Lewycky49f89192009-04-04 07:22:01 +00006455
6456//===----------------------------------------------------------------------===//
6457// Embedded metadata.
6458//===----------------------------------------------------------------------===//
6459
6460/// ParseMDNodeVector
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00006461/// ::= { Element (',' Element)* }
Nick Lewyckyb8f9b7a2009-05-10 20:57:05 +00006462/// Element
6463/// ::= 'null' | TypeAndValue
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00006464bool LLParser::ParseMDNodeVector(SmallVectorImpl<Metadata *> &Elts) {
David Majnemer06f960d2014-12-11 20:44:09 +00006465 if (ParseToken(lltok::lbrace, "expected '{' here"))
6466 return true;
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00006467
Dan Gohman1e0213a2010-07-13 19:33:27 +00006468 // Check for an empty list.
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00006469 if (EatIfPresent(lltok::rbrace))
Dan Gohman1e0213a2010-07-13 19:33:27 +00006470 return false;
6471
Nick Lewycky49f89192009-04-04 07:22:01 +00006472 do {
Chris Lattnera01ddfc2009-12-30 04:42:57 +00006473 // Null is a special case since it is typeless.
6474 if (EatIfPresent(lltok::kw_null)) {
Craig Topper2617dcc2014-04-15 06:32:26 +00006475 Elts.push_back(nullptr);
Chris Lattnera01ddfc2009-12-30 04:42:57 +00006476 continue;
Nick Lewyckyb8f9b7a2009-05-10 20:57:05 +00006477 }
Michael Ilseman26ee2b82012-11-15 22:34:00 +00006478
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00006479 Metadata *MD;
6480 if (ParseMetadata(MD, nullptr))
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00006481 return true;
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00006482 Elts.push_back(MD);
Nick Lewycky49f89192009-04-04 07:22:01 +00006483 } while (EatIfPresent(lltok::comma));
6484
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00006485 return ParseToken(lltok::rbrace, "expected end of metadata node");
Nick Lewycky49f89192009-04-04 07:22:01 +00006486}
Duncan P. N. Exon Smith0a448fb2014-08-19 21:30:15 +00006487
6488//===----------------------------------------------------------------------===//
6489// Use-list order directives.
6490//===----------------------------------------------------------------------===//
6491bool LLParser::sortUseListOrder(Value *V, ArrayRef<unsigned> Indexes,
6492 SMLoc Loc) {
6493 if (V->use_empty())
6494 return Error(Loc, "value has no uses");
6495
6496 unsigned NumUses = 0;
6497 SmallDenseMap<const Use *, unsigned, 16> Order;
6498 for (const Use &U : V->uses()) {
6499 if (++NumUses > Indexes.size())
6500 break;
6501 Order[&U] = Indexes[NumUses - 1];
6502 }
6503 if (NumUses < 2)
6504 return Error(Loc, "value only has one use");
6505 if (Order.size() != Indexes.size() || NumUses > Indexes.size())
6506 return Error(Loc, "wrong number of indexes, expected " +
6507 Twine(std::distance(V->use_begin(), V->use_end())));
6508
6509 V->sortUseList([&](const Use &L, const Use &R) {
6510 return Order.lookup(&L) < Order.lookup(&R);
6511 });
6512 return false;
6513}
6514
6515/// ParseUseListOrderIndexes
6516/// ::= '{' uint32 (',' uint32)+ '}'
6517bool LLParser::ParseUseListOrderIndexes(SmallVectorImpl<unsigned> &Indexes) {
6518 SMLoc Loc = Lex.getLoc();
6519 if (ParseToken(lltok::lbrace, "expected '{' here"))
6520 return true;
6521 if (Lex.getKind() == lltok::rbrace)
6522 return Lex.Error("expected non-empty list of uselistorder indexes");
6523
6524 // Use Offset, Max, and IsOrdered to check consistency of indexes. The
6525 // indexes should be distinct numbers in the range [0, size-1], and should
6526 // not be in order.
6527 unsigned Offset = 0;
6528 unsigned Max = 0;
6529 bool IsOrdered = true;
6530 assert(Indexes.empty() && "Expected empty order vector");
6531 do {
6532 unsigned Index;
6533 if (ParseUInt32(Index))
6534 return true;
6535
6536 // Update consistency checks.
6537 Offset += Index - Indexes.size();
6538 Max = std::max(Max, Index);
6539 IsOrdered &= Index == Indexes.size();
6540
6541 Indexes.push_back(Index);
6542 } while (EatIfPresent(lltok::comma));
6543
6544 if (ParseToken(lltok::rbrace, "expected '}' here"))
6545 return true;
6546
6547 if (Indexes.size() < 2)
6548 return Error(Loc, "expected >= 2 uselistorder indexes");
6549 if (Offset != 0 || Max >= Indexes.size())
6550 return Error(Loc, "expected distinct uselistorder indexes in range [0, size)");
6551 if (IsOrdered)
6552 return Error(Loc, "expected uselistorder indexes to change the order");
6553
6554 return false;
6555}
6556
6557/// ParseUseListOrder
6558/// ::= 'uselistorder' Type Value ',' UseListOrderIndexes
6559bool LLParser::ParseUseListOrder(PerFunctionState *PFS) {
6560 SMLoc Loc = Lex.getLoc();
6561 if (ParseToken(lltok::kw_uselistorder, "expected uselistorder directive"))
6562 return true;
6563
6564 Value *V;
6565 SmallVector<unsigned, 16> Indexes;
6566 if (ParseTypeAndValue(V, PFS) ||
6567 ParseToken(lltok::comma, "expected comma in uselistorder directive") ||
6568 ParseUseListOrderIndexes(Indexes))
6569 return true;
6570
6571 return sortUseListOrder(V, Indexes, Loc);
6572}
6573
6574/// ParseUseListOrderBB
6575/// ::= 'uselistorder_bb' @foo ',' %bar ',' UseListOrderIndexes
6576bool LLParser::ParseUseListOrderBB() {
6577 assert(Lex.getKind() == lltok::kw_uselistorder_bb);
6578 SMLoc Loc = Lex.getLoc();
6579 Lex.Lex();
6580
6581 ValID Fn, Label;
6582 SmallVector<unsigned, 16> Indexes;
6583 if (ParseValID(Fn) ||
6584 ParseToken(lltok::comma, "expected comma in uselistorder_bb directive") ||
6585 ParseValID(Label) ||
6586 ParseToken(lltok::comma, "expected comma in uselistorder_bb directive") ||
6587 ParseUseListOrderIndexes(Indexes))
6588 return true;
6589
6590 // Check the function.
6591 GlobalValue *GV;
6592 if (Fn.Kind == ValID::t_GlobalName)
6593 GV = M->getNamedValue(Fn.StrVal);
6594 else if (Fn.Kind == ValID::t_GlobalID)
6595 GV = Fn.UIntVal < NumberedVals.size() ? NumberedVals[Fn.UIntVal] : nullptr;
6596 else
6597 return Error(Fn.Loc, "expected function name in uselistorder_bb");
6598 if (!GV)
6599 return Error(Fn.Loc, "invalid function forward reference in uselistorder_bb");
6600 auto *F = dyn_cast<Function>(GV);
6601 if (!F)
6602 return Error(Fn.Loc, "expected function name in uselistorder_bb");
6603 if (F->isDeclaration())
6604 return Error(Fn.Loc, "invalid declaration in uselistorder_bb");
6605
6606 // Check the basic block.
6607 if (Label.Kind == ValID::t_LocalID)
6608 return Error(Label.Loc, "invalid numeric label in uselistorder_bb");
6609 if (Label.Kind != ValID::t_LocalName)
6610 return Error(Label.Loc, "expected basic block name in uselistorder_bb");
Mehdi Aminia53d49e2016-09-17 06:00:02 +00006611 Value *V = F->getValueSymbolTable()->lookup(Label.StrVal);
Duncan P. N. Exon Smith0a448fb2014-08-19 21:30:15 +00006612 if (!V)
6613 return Error(Label.Loc, "invalid basic block in uselistorder_bb");
6614 if (!isa<BasicBlock>(V))
6615 return Error(Label.Loc, "expected basic block in uselistorder_bb");
6616
6617 return sortUseListOrder(V, Indexes, Loc);
6618}